commit f140c92dddba7d9c3583b3b68c95f15d26b4b47e Author: kubbo <390378816@qq.com> Date: Thu Jul 10 23:55:26 2025 +0800 init diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 0000000..99ff94f --- /dev/null +++ b/404.html @@ -0,0 +1,26 @@ + + + + + + +404 + + + + +

404,您请求的文件不存在!

+ + diff --git a/api.php b/api.php new file mode 100644 index 0000000..8212cb0 --- /dev/null +++ b/api.php @@ -0,0 +1,1013 @@ + '登录', 1 => '注册', 2 => '找回密码']; + +$act = input('act'); +$do = input('do'); + +switch ($act) { + case 'reg': + $fromMicroClient = 'microClient' == $do; + + $type = intval(input('type')); + $account = input('account'); + $password = input('password'); + $serverId = 0; + $email = ''; + $agent_id = 0; + + if (!in_array($type, [0, 1, 2])) + returnJson(['code' => 1, 'msg' => '参数错误!请刷新页面重试~'], $fromMicroClient); + + if (!$account) + returnJson(['code' => 1, 'msg' => '请输入' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix']], $fromMicroClient); + if (6 > strlen($account) && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account'])))) || 16 < strlen($account)) + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '长度为6-16个字符'], $fromMicroClient); + + if (!$password) + returnJson(['code' => 1, 'msg' => '请输入' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix']], $fromMicroClient); + if (6 > strlen($password) || 16 < strlen($password)) + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '长度为6-16个字符'], $fromMicroClient); + + $ip = get_ip(); + + // 检查IP是否被封 + if ($_CONFIG['deny_ip']) { + $deny_ip = array_unique(explode(',', trim($_CONFIG['deny_ip']))); + if (!empty($deny_ip) && in_array($ip, $deny_ip)) { + returnJson(['code' => 1, 'msg' => '当前未开放访问!'], $fromMicroClient); // 当前IP已禁用 + } + } + + $md5Pwd = md5($password . PASSWORD_KEY); + $time = time(); + + // 做一下从微端登录/注册的兼容 start -------------------------------------------------- + if ($fromMicroClient) { + // 关闭验证码 + $_CONFIG['code_open'] = 0; + // 连接数据库 + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error], $fromMicroClient); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + // 先查询账号是否存在 + $stmt = $mySQLi->prepare('select password from player where username=?'); + $stmt->bind_param('s', $account); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + // 如果帐号存在但密码错误表示登录模式 + if (!empty($row)) { + if ($md5Pwd != $row['password']) { + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '或' . $_CONFIG['password_name_suffix'] . '不正确!'], $fromMicroClient); + } + $type = 0; + } else { // 否则表示注册模式 + $type = 1; + $_CONFIG['reg_code_open'] = 0; + } + } + // 做一下从微端登录/注册的兼容 end -------------------------------------------------- + + // 提前检查条件 + switch ($type) { + case 1: // 注册 + // 是否开放注册 + if (!$_CONFIG['reg_open']) { + returnJson(['code' => 1, 'msg' => '内部测试中,未开放注册,如需体验请联系客服。'], $fromMicroClient); + } + // 检查保留帐号 + if ($_CONFIG['retain_account']) { + $retain_account = array_unique(explode(',', trim($_CONFIG['retain_account']))); + if (!empty($retain_account) && in_array($account, $retain_account)) { + returnJson(['code' => 1, 'msg' => '抱歉!此' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '已被占用,请更换。'], $fromMicroClient); + } + } + + $password2 = input('password2'); + $serverId = intval(input('serverId')); + $email = input('email'); + if ($_CONFIG['code_open'] && $_CONFIG['reg_code_open']) { + $code = input('code'); + } + + if (!$fromMicroClient) { + if (!$password2) + returnJson(['code' => 1, 'msg' => '请再次输入' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix']], $fromMicroClient); + if (6 > strlen($password2) || 16 < strlen($password2)) + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '长度为6-16个字符'], $fromMicroClient); + if ($password2 != $password) + returnJson(['code' => 1, 'msg' => '两次输入的' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '不一致!'], $fromMicroClient); + } + if (!$serverId) + returnJson(['code' => 1, 'msg' => '请选择区服!'], $fromMicroClient); + if ($_CONFIG['code_open']) { + if ($_CONFIG['reg_code_open'] && !$email) + returnJson(['code' => 1, 'msg' => '请输入邮箱地址!'], $fromMicroClient); + if ($email && !filter_var($email, FILTER_VALIDATE_EMAIL)) + returnJson(['code' => 1, 'msg' => '邮箱地址格式错误!'], $fromMicroClient); + + if ($_CONFIG['reg_code_open']) { + if (!$code) + returnJson(['code' => 1, 'msg' => '请输入邮箱验证码!'], $fromMicroClient); + if (strlen($code) != $_CONFIG['code_length']) + returnJson(['code' => 1, 'msg' => '验证码长度为6位数字!'], $fromMicroClient); + } + } + + $agent_id = intval(input('agent_id')); + break; + case 0: // 登录 + // 是否开放登录 + if (!$_CONFIG['login_open'] && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account']))))) { + returnJson(['code' => 1, 'msg' => '内部测试中,未开放登录,如需体验请联系客服。'], $fromMicroClient); + } + break; + case 2: // 找回密码 + if (!$_CONFIG['code_open']) { + returnJson(['code' => 1, 'msg' => '验证码系统尚未开启!']); + } + + $password2 = input('password2'); + $email = input('email'); + $code = input('code'); + + if (!$password2) + returnJson(['code' => 1, 'msg' => '请输入' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix']]); + if (6 > strlen($password2) || 16 < strlen($password2)) + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '长度为6-16个字符']); + if ($password2 != $password) + returnJson(['code' => 1, 'msg' => '两次输入的' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '不一致!']); + + if (!$email) + returnJson(['code' => 1, 'msg' => '请输入邮箱地址!']); + if (!filter_var($email, FILTER_VALIDATE_EMAIL)) + returnJson(['code' => 1, 'msg' => '邮箱地址格式错误!']); + + if (!$code) + returnJson(['code' => 1, 'msg' => '请输入邮箱验证码!']); + if (strlen($code) != $_CONFIG['code_length']) + returnJson(['code' => 1, 'msg' => '验证码长度为6位数字!']); + break; + } + + if (!isset($mySQLi)) { + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error], $fromMicroClient); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + } + + // 限制每日注册数量上限 + if (1 == $type && $_CONFIG['day_max_reg']) { + $stmt2 = $mySQLi->prepare("SELECT id FROM player WHERE reg_ip = ? AND FROM_UNIXTIME(reg_time, '%Y-%m-%d') = CURDATE()"); + $stmt2->bind_param('s', $ip); + $stmt2->execute(); + $result2 = $stmt2->get_result(); + $row2 = $result2->fetch_array(); + $regNum = $result2->num_rows; + $result2->free_result(); + $stmt2->close(); + if ($regNum >= $_CONFIG['day_max_reg']) { + $mySQLi->close(); + returnJson(['code' => 10, 'msg' => '您今日注册量已达上限,请明日再试~'], $fromMicroClient); + } + } + + if (2 != $type) { + $field = ['id']; + if (0 == $type) { + $field[] = 'password'; + } + $stmt = $mySQLi->prepare('select ' . implode(', ', $field) . ' from player where username=?'); + $stmt->bind_param('s', $account); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + } + + // 创建账号 + if (1 == $type) { + if (!empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '此' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '已被其他勇士占用!请更换。'], $fromMicroClient); + } + + // test + //returnJson(['code' => 1, 'msg' => 'test register: '.$email], $fromMicroClient); + + if ($email) { + // 检查邮箱地址是否被占用 + $stmt = $mySQLi->prepare('select id from player where email=?'); + $stmt->bind_param('s', $email); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (!empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '此邮箱地址已被其他勇士占用!请更换。', $fromMicroClient]); + } + + // 获取验证码记录 + if ($_CONFIG['code_open'] && $_CONFIG['reg_code_open']) { + $stmt = $mySQLi->prepare('select id, code from verify where account=? and email=? and type=?'); + $stmt->bind_param('ssi', $account, $email, $type); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (empty($row) || $code != $row['code']) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '验证码无效!'], $fromMicroClient); + } + } + } + + $device = isMobile() ? 1 : 0; + $os = getOS(); + $browse = getBrowse(); + + //echo $account.', '.$md5Pwd.', '.$email.', '.$device.', '.getOS().', '.getBrowse().', '.$time.', '.$ip;exit; + + $stmt1 = $mySQLi->prepare('insert into `player` (username, password, server_id, email, agent_id, device, os, browse, reg_time, reg_ip) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'); + $stmt1->bind_param('ssisiissis', $account, $md5Pwd, $serverId, $email, $agent_id, $device, $os, $browse, $time, $ip); + $stmt1->execute(); + $rowNum = $stmt1->affected_rows; + $stmt1->close(); + if (0 < $rowNum) { + // 删除验证码 + if ($_CONFIG['code_open'] && $_CONFIG['reg_code_open']) { + $stmt = $mySQLi->prepare('DELETE FROM verify WHERE id = ? and type=?'); + $stmt->bind_param('ii', $row['id'], $type); + $stmt->execute(); + $stmt->close(); + } + + // 代理人 + if (0 < $agent_id) { + // 检查代理人是否存在 + $stmt = $mySQLi->prepare('select id from `agent` where id = ?'); + $stmt->bind_param('i', $agent_id); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + // 如果代理人存在 + if (!empty($row)) { + // 更新代理人邀请统计 + $stmt = $mySQLi->prepare('UPDATE `agent` SET invite_count = invite_count + 1 WHERE id = ?'); + $stmt->bind_param('i', $agent_id); + $stmt->execute(); + $stmt->close(); + } + } + + $mySQLi->close(); + + setcookie('account', $account, $_CONFIG['session_time']); + setcookie('password', $password, $_CONFIG['session_time']); + setcookie('token', $md5Pwd, $_CONFIG['session_time']); + $_SESSION['account'] = $account; + $_SESSION['password'] = $password; + $_SESSION['token'] = $md5Pwd; + + $msgLast = '

'; + $msgLast .= $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . ':' . $account; + $msgLast .= '
'; + $msgLast .= $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . ':' . $password; + $msgLast .= '
'; + $msgLast .= '邮箱地址:' . $email; + + $msg = '恭喜勇士!获得玛法' . $_CONFIG['account_name'] . ',请牢记' . $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '!准备开启玛法之旅..' . (!$fromMicroClient ? $msgLast : ''); + $resData = [ + 'code' => 0, + 'msg' => $msg, + 'token' => $md5Pwd + ]; + if ($fromMicroClient) { + $resData['url'] = '/play?account=' . $account . '&token=' . $md5Pwd; + } + returnJson($resData, $fromMicroClient); + } else { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . '获取失败,请重试~'], $fromMicroClient); + } + } elseif (0 == $type) { // 登录 + $mySQLi->close(); + if (empty($row) || $md5Pwd !== $row['password']) { + returnJson(['code' => 1, 'msg' => '传送员无法匹配此' . $_CONFIG['account_name'] . ',请检查!'], $fromMicroClient); + } else { + setcookie('account', $account, $_CONFIG['session_time']); + setcookie('password', $password, $_CONFIG['session_time']); + setcookie('token', $md5Pwd, $_CONFIG['session_time']); + $_SESSION['account'] = $account; + $_SESSION['password'] = $password; + $_SESSION['token'] = $md5Pwd; + + $resData = ['code' => 0, 'msg' => '欢迎来到清渊传奇,正在传送…', 'token' => $md5Pwd]; + if ($fromMicroClient) { + $resData['url'] = '/play?account=' . $account . '&token=' . $md5Pwd; + } + returnJson($resData, $fromMicroClient); + } + } elseif (2 == $type) { // 重置密码 + if (!$_CONFIG['code_open']) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '验证码系统尚未开启!']); + } + + // 检查邮箱地址是否存在 + $stmt = $mySQLi->prepare('select email from player where username=? and email=?'); + $stmt->bind_param('ss', $account, $email); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '传送员无法匹配此' . $_CONFIG['account_name'] . ',请检查!']); + } + + // 检查验证码 + $stmt = $mySQLi->prepare('select id, code from verify where email=? and type=?'); + $stmt->bind_param('si', $email, $type); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (empty($row) || $code != $row['code']) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '验证码不正确!']); + } + + // 修改密码 + $stmt = $mySQLi->prepare('UPDATE `player` SET password = ? WHERE username=? and email=?'); + $stmt->bind_param('sss', $md5Pwd, $account, $email); + $stmt->execute(); + $stmt->close(); + + // 删除验证码 + $stmt = $mySQLi->prepare('DELETE FROM verify WHERE id = ? and type= ?'); + $stmt->bind_param('ii', $row['id'], $type); + $stmt->execute(); + $stmt->close(); + + $mySQLi->close(); + returnJson(['code' => 0, 'msg' => $_CONFIG['account_name'] . $_CONFIG['password_name_suffix'] . '修改成功!']); + } + break; + case 'getCode': // 发送验证码到邮箱 + if (!$_CONFIG['code_open']) { + returnJson(['code' => 1, 'msg' => '验证码系统尚未开启!']); + } + + $type = intval(input('type')); + $account = input('account'); + $email = input('email'); + + if (!in_array($type, [1, 2])) + returnJson(['code' => 1, 'msg' => '参数错误!请刷新页面重试~']); + + if (!$account) + returnJson(['code' => 1, 'msg' => '请输入' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix']]); + if (6 > strlen($account) && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account'])))) || 16 < strlen($account)) + returnJson(['code' => 1, 'msg' => $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '长度为6-16个字符']); + + if (!$email) + returnJson(['code' => 1, 'msg' => '请输入邮箱地址!']); + if (!filter_var($email, FILTER_VALIDATE_EMAIL)) + returnJson(['code' => 1, 'msg' => '邮箱地址格式错误!']); + + $ip = get_ip(); + + // 检查IP是否被封 + if ($_CONFIG['deny_ip']) { + $deny_ip = array_unique(explode(',', trim($_CONFIG['deny_ip']))); + if (!empty($deny_ip) && in_array($ip, $deny_ip)) { + returnJson(['code' => 1, 'msg' => '当前未开放访问!']); // 当前IP已禁用 + } + } + + if (1 == $type) { + // 是否开放注册 + if (!$_CONFIG['reg_open']) { + returnJson(['code' => 1, 'msg' => '内部测试中,未开放注册,如需体验请联系客服。']); + } + // 检查保留帐号 + if ($_CONFIG['retain_account']) { + $retain_account = array_unique(explode(',', trim($_CONFIG['retain_account']))); + if (!empty($retain_account) && in_array($account, $retain_account)) { + returnJson(['code' => 1, 'msg' => '抱歉!此' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '已被占用,请更换。']); + } + } + } + + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + + if (1 == $type) { + // 限制每日注册数量上限 + if ($_CONFIG['day_max_reg']) { + $stmt2 = $mySQLi->prepare("SELECT id FROM player WHERE reg_ip = ? AND FROM_UNIXTIME(reg_time, '%Y-%m-%d') = CURDATE()"); + $stmt2->bind_param('s', $ip); + $stmt2->execute(); + $result2 = $stmt2->get_result(); + $row2 = $result2->fetch_array(); + $regNum = $result2->num_rows; + $result2->free_result(); + $stmt2->close(); + if ($regNum >= $_CONFIG['day_max_reg']) { + $mySQLi->close(); + returnJson(['code' => 10, 'msg' => '您今日注册量已达上限,请明日再试~']); + } + } + } + + if (1 == $type) { // 注册时 + // 检查帐号是否被占用 + $stmt = $mySQLi->prepare('select id from player where username=?'); + $stmt->bind_param('s', $account); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (!empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '此' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . '已被其他勇士占用!请更换。']); + } + // 检查邮箱地址是否被占用 + $stmt = $mySQLi->prepare('select id from player where email=?'); + $stmt->bind_param('s', $email); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (!empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '此邮箱地址已被其他勇士占用!请更换。']); + } + } else if (2 == $type) { // 找回密码时:检查帐号和邮箱地址是否存在 + $stmt = $mySQLi->prepare('select id from player where username=? and email=?'); + $stmt->bind_param('ss', $account, $email); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + if (empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '传送员无法匹配此' . $_CONFIG['account_name'] . ',请检查!']); + } + } + + // 获取验证码记录 + $stmt = $mySQLi->prepare('select id, time from verify where account=? and email=? and type=?'); + $stmt->bind_param('ssi', $account, $email, $type); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + $result->free_result(); + $stmt->close(); + + $sendInterval = $_CONFIG['code_send_interval']; + $nowTime = time(); + $leftTime = ($sendInterval - ($nowTime - $row['time'])); + + // 检查发送时间间隔 + if (!empty($row) && $nowTime - $row['time'] < $sendInterval) { + $mySQLi->close(); + returnJson([ + 'code' => 1, + 'msg' => '操作频繁!请' . $leftTime . '秒后发送~', + 'time' => $leftTime + ]); + } + + $code = getRandomString($_CONFIG['code_length'], $_CONFIG['code_data_type']); + + if ('email' == $_CONFIG['code_type']) { + // 邮件主题 + $subject = '【' . $_CONFIG['game_name'] . '】' . $typeNames[$type]; + // 邮件正文 + $message = '
'; + $message .= '
'; + $message .= $subject . '

'; + $message .= '您的' . $_CONFIG['account_name'] . $_CONFIG['account_name_suffix'] . ':' . $account . '
'; + $message .= '您的验证码:' . $code . '

'; + $message .= '用于' . $typeNames[$type] . '验证,5分钟内使用有效。

'; + $message .= '' . $_CONFIG['game_name'] . ' ' . $_CONFIG['game_description'] . '
'; + $message .= '' . $_CONFIG['web_url'] . '

'; + $message .= '如有疑问请联系客服QQ:' . $_CONFIG['kf_qq'] . ' / 客服微信:' . $_CONFIG['kf_wx']; + $message .= '
'; + $message .= '
'; + + require_once 'php/PHPMailer/PHPMailer.php'; + require_once 'php/PHPMailer/SMTP.php'; + + $mail = new PHPMailer(); + // 是否启用smtp的debug进行调试 开发环境建议开启 生产环境注释掉即可 默认关闭debug调试模式 + $mail->SMTPDebug = 0; + // 使用smtp鉴权方式发送邮件 + $mail->isSMTP(); + // smtp需要鉴权 这个必须是true + $mail->SMTPAuth = true; + $mail->Host = $_CONFIG['mail_host']; + // 设置使用ssl加密方式登录鉴权 + $mail->SMTPSecure = 'ssl'; + $mail->Port = $_CONFIG['mail_port']; + $mail->CharSet = $_CONFIG['mail_charset']; + $mail->FromName = $_CONFIG['game_name']; + $mail->Username = $_CONFIG['mail_from']; + $mail->Password = $_CONFIG['mail_password']; + $mail->From = $_CONFIG['mail_from']; + $mail->isHTML(true); + // 设置收件人邮箱地址 + $mail->addAddress($email); + // 添加多个收件人 则多次调用方法即可 + //$mail->addAddress('317743968@qq.com'); + $mail->Subject = $subject; + $mail->Body = $message; + //$mail->addAttachment('./example.pdf'); + $status = $mail->send(); + } elseif ('mobile' == $_CONFIG['code_type']) { + $status = 0; + } + + // 检查发送时间间隔 + if (!$status) { + $mySQLi->close(); + returnJson([ + 'code' => 1, + 'msg' => '验证码发送失败!请重试~', + 'time' => $leftTime + ]); + } + + // 插入验证记录 + if (empty($row)) { + $stmt1 = $mySQLi->prepare('insert into `verify` (account, type, email, code, time, ip) values(?, ?, ?, ?, ?, ?)'); + $stmt1->bind_param('sisiis', $account, $type, $email, $code, $nowTime, $ip); + $stmt1->execute(); + $rowNum = $stmt1->affected_rows; + $stmt1->close(); + if (!$rowNum) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '验证码发送失败!请重试~']); + } + } else { + $stmt1 = $mySQLi->prepare('UPDATE `verify` SET code=?, time=? WHERE id=? and type=?'); + $stmt1->bind_param('siii', $code, $nowTime, $row['id'], $type); + $stmt1->execute(); + $stmt1->close(); + $mySQLi->close(); + } + + returnJson(['code' => 0, 'msg' => '验证码已经发送到您的邮箱:' . $email . ',请查收!', 'time' => $sendInterval]); + break; + case 'check': // 验证帐号 + switch ($do) { + case 'verify': + $account = input('account'); + $token = input('token'); + + if (!$account || 6 > strlen($account) && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account'])))) || 16 < strlen($account) || !$token || 32 != strlen($token)) + returnJson(['code' => 1, 'msg' => 'account or password error']); + + // 是否开放登录 + if (!$_CONFIG['login_open'] && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account']))))) + returnJson(['code' => 1, 'msg' => '内部测试中,未开放登录,如需体验请联系客服。']); + + // 检查IP是否被封 + if ($_CONFIG['deny_ip']) { + $ip = get_ip(); + $deny_ip = array_unique(explode(',', trim($_CONFIG['deny_ip']))); + if (!empty($deny_ip) && in_array($ip, $deny_ip)) { + returnJson(['code' => 1, 'msg' => '当前未开放访问!']); // 当前IP已禁用 + } + } + + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + + $stmt = $mySQLi->prepare('select id from player where username=? and password=?'); + $stmt->bind_param('ss', $account, $token); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(); + + $result->free_result(); + $stmt->close(); + $mySQLi->close(); + + if (!$row) + returnJson(['code' => 1, 'msg' => 'account no exist']); + + // 验证成功 + returnJson(['code' => 0]); + break; + default: + echo 'success'; + } + break; + case 'enter_game': + if (!isPost()) + returnJson(['code' => 1, 'msg' => 'request error']); + + $srvId = intval(input('srvId')); + $account = input('account'); + $token = input('token'); + + if (!$srvId || !$account || !$token || 32 != strlen($token)) + returnJson(['code' => 1, 'msg' => 'param error']); + + // 是否开放登录 + if (!$_CONFIG['login_open'] && !in_array($account, array_unique(explode(',', trim($_CONFIG['admin_account']))))) { + returnJson(['code' => 1, 'msg' => '内部测试中,未开放登录,如需体验请联系客服。']); + } + + $time = time(); + $ip = get_ip(); + + // 检查IP是否被封 + if ($_CONFIG['deny_ip']) { + $deny_ip = array_unique(explode(',', trim($_CONFIG['deny_ip']))); + if (!empty($deny_ip) && in_array($ip, $deny_ip)) { + returnJson(['code' => 1, 'msg' => '当前未开放访问!']); // 当前IP已禁用 + } + } + + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + + // 检查帐号是否存在 + $stmt = $mySQLi->prepare('select id from player where username=? and password=?'); + $stmt->bind_param('ss', $account, $token); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(); + + $result->free_result(); + $stmt->close(); + + if (empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => 'account no exist']); + } + + // 更新登录时间和登录IP + $stmt = $mySQLi->prepare('UPDATE `player` SET login_time = ?, login_ip = ? WHERE username=?'); + $stmt->bind_param('iss', $time, $ip, $account); + $stmt->execute(); + + $stmt->close(); + $mySQLi->close(); + + // TODO: login server history + + returnJson(['code' => 0]); + break; + case 'game': // 游戏接口 + switch ($do) { + case 'withdraw': // 提现 + if (!isPost()) + returnJson(['code' => 1, 'msg' => 'request error']); + if (!in_array($_CONFIG['withdraw']['type'], array_keys($_CONFIG['currency_list']))) + returnJson(['code' => 1, 'msg' => 'currency error']); + + $serverId = intval(substr(input('server_id'), 1)); + $account = input('account'); + $token = input('token'); + $roleId = intval(input('role_id')); + $roleName = input('role_name'); + $payType = intval(input('pay_type')); + $payAccount = input('pay_account'); + $amount = intval(input('amount')); + + /* 检查参数 ---------------------------------------------------------------------------------------------------- */ + + if (!$serverId || !$account || !$roleId || !$roleName || !$payAccount || !$amount) + returnJson(['code' => 1, 'msg' => '参数错误!']); + if (26 < strlen($account)) + returnJson(['code' => 1, 'msg' => '参数错误!']); + if (!$token || 32 != strlen($token)) + returnJson(['code' => 1, 'msg' => '参数错误!']); + if (24 < strlen($roleName)) + returnJson(['code' => 1, 'msg' => '参数错误!']); + if (!in_array($payType, [0, 1])) + returnJson(['code' => 1, 'msg' => '收款账户类型不正确!']); + if (30 < strlen($payAccount)) + returnJson(['code' => 1, 'msg' => '收款账户格式不正确!']); + + // 检查是否开启提现功能 + //if($_CONFIG['withdraw']['sid'] != $serverId) returnJson(['code' => 1, 'msg' => '尚未开启提现功能!']); + // 检查最低提现数量 + if ($_CONFIG['withdraw']['ratio'] > $amount) + returnJson(['code' => 1, 'msg' => '最低提现数量为' . $_CONFIG['withdraw']['ratio']]); + // 限制一次提现人民币最低20元 + $maxNum = $_CONFIG['withdraw']['ratio'] * 20; + if ($maxNum > $amount) + returnJson(['code' => 1, 'msg' => '单次提现数量不能低于' . $maxNum]); + + $time = time(); + $accountId = 0; + $currencyName = $_CONFIG['currency_list'][$_CONFIG['withdraw']['type']]; + $currencyField = $_CONFIG['currency_field'][$_CONFIG['withdraw']['type']]; + + /* 连接帐号数据库 ---------------------------------------------------------------------------------------------------- */ + + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + + /* 检查帐号是否存在 ---------------------------------------------------------------------------------------------------- */ + + $stmt = $mySQLi->prepare('select id from player where username=? and password=?'); + $stmt->bind_param('ss', $account, $token); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(MYSQLI_ASSOC); + + $result->free_result(); + $stmt->close(); + + if (empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => '账号不存在!']); + } + + /* 限制提现时间间隔 ---------------------------------------------------------------------------------------------------- */ + + $withdrawMinTime = 30; + $stmt = $mySQLi->prepare('select time from withdraw where server_id = ? and role_id = ? order by id desc limit 1'); + $stmt->bind_param('ii', $serverId, $roleId); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(MYSQLI_ASSOC); + + $result->free_result(); + $stmt->close(); + + // test + //$mySQLi->close(); + //print_r($row);exit; + + if (!empty($row) && $time - $row['time'] < $withdrawMinTime) { + $mySQLi->close(); + $msg = '请等待 ' . ($time - $row['time']) . ' 秒后再试~'; + returnJson(['code' => 1, 'msg' => $msg]); + } + + /* 连接区服数据库 ---------------------------------------------------------------------------------------------------- */ + + $dbActor = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], 'mir_actor_s' . $serverId, $mir_actor_s1_port); + if ($dbActor->connect_errno) + exit($dbActor->connect_error); + $dbActor->set_charset($_CONFIG_DB['db_charset']); + + /* 检查提现货币数量是否足够 ---------------------------------------------------------------------------------------------------- */ + + $stmt = $dbActor->prepare("select $currencyField from actors where actorid=?"); + $stmt->bind_param('i', $roleId); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(MYSQLI_ASSOC); + + $result->free_result(); + $stmt->close(); + + if (empty($row)) { + $mySQLi->close(); + $dbActor->close(); + returnJson(['code' => 1, 'msg' => '找不到角色!']); + } + if ($row[$currencyField] < $amount) { + $mySQLi->close(); + $dbActor->close(); + returnJson(['code' => 1, 'msg' => "您帐户的" . $currencyName . "不足!\n\n查询可能有延迟,\n请稍候再试~"]); + } + + /* 插入提现记录 ---------------------------------------------------------------------------------------------------- */ + + $money = floor($amount / $_CONFIG['withdraw']['ratio']); + $stmt = $mySQLi->prepare('insert into `withdraw` (account, account_id, server_id, role_id, pay_type, pay_account, amount, money, time) values(?, ?, ?, ?, ?, ?, ?, ?, ?)'); + if (!$stmt) { + $mySQLi->close(); + $dbActor->close(); + returnJson(['code' => 1, 'msg' => $mySQLi->errno . '-' . $mySQLi->error]); + } + $stmt->bind_param('siiiisiii', $account, $accountId, $serverId, $roleId, $payType, $payAccount, $amount, $money, $time); + $stmt->execute(); + $wid = $stmt->insert_id; + $stmt->close(); + + if (empty($wid)) { + writeLog('提现扣除失败:' . $amount . $currencyName . '=' . $money . '元, s' . $serverId . ' ' . $roleName . ',插入失败'); + $mySQLi->close(); + $dbActor->close(); + returnJson(['code' => 1, 'msg' => '提现记录插入失败!']); + } + + /* 扣除提现货币 ---------------------------------------------------------------------------------------------------- */ + + $cmdUrl = get_http_type() . $_CONFIG['host'] . ':111/?'; + $operid = 10030; + $command = $roleName . '|' . $_CONFIG['withdraw']['type'] . '|' . $amount; + $post_data = ['operid' => $operid, 'server_num' => $serverId, 'user' => $account, 'spid' => $_CONFIG['spid'], 'command' => $command]; + $url = $cmdUrl . http_build_query($post_data); + $result = curl($url, $post_data); + //echo $url; + //print_r($result);exit; + $arr = $result ? explode(',', $result) : []; + $code = !empty($arr) && 1 == $arr[0] ? 0 : 1; + if (1 == $code) { + writeLog('提现扣除失败:' . $amount . $currencyName . '=' . $money . '元, s' . $serverId . ' ' . $roleName); + $mySQLi->close(); + $dbActor->close(); + returnJson(['code' => 1, 'msg' => '提现请求失败!请稍候再试~', 'result' => $result]); + } + + writeLog('提现成功:' . $amount . $currencyName . '=' . $money . '元, s' . $serverId . ' ' . $roleName); + + /* 更新提现状态 ---------------------------------------------------------------------------------------------------- */ + + $withdrawStatus = 1; // 货币扣除成功,可以打钱 + $stmt = $mySQLi->prepare('UPDATE `withdraw` SET status = ? WHERE id = ?'); + $stmt->bind_param('si', $withdrawStatus, $wid); + $stmt->execute(); + + $stmt->close(); + $mySQLi->close(); + $dbActor->close(); + + returnJson(['code' => 0, 'msg' => "成功提现:$amount$currencyName\n收益人民币:{$money}元\n\n请留意您的收款账户余额。"]); + break; + default: + // + } + returnJson(['code' => 0]); + break; + case 'report': // 上报信息 + switch ($do) { + case 'game_profile': + // + break; + case 'chat': // 上报聊天 + if (!isPost()) + returnJson(['code' => 1, 'msg' => 'request error']); + + $serverId = intval(substr(input('server_id'), 1)); + $account = input('account'); + $token = input('token'); + $roleId = intval(input('role_id')); + $channelId = intval(input('channel_id')); + $content = input('content'); + $cross = 1 == input('cross') ? 1 : 0; + + if (!$serverId || !$account || !$roleId || !$content) + returnJson(['code' => 1, 'msg' => 'param error']); + if (26 < strlen($account)) + returnJson(['code' => 1, 'msg' => 'param error']); + if (!$token || 32 != strlen($token)) + returnJson(['code' => 1, 'msg' => 'param error']); + if (10 < $channelId) + returnJson(['code' => 1, 'msg' => 'param error']); + if (255 < strlen($content)) + returnJson(['code' => 1, 'msg' => 'param error']); + + // 检查帐号是否存在 + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + + $stmt = $mySQLi->prepare('select id from player where username=? and password=?'); + $stmt->bind_param('ss', $account, $token); + $stmt->execute(); + + $result = $stmt->get_result(); + $row = $result->fetch_array(); + + $result->free_result(); + $stmt->close(); + + if (empty($row)) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => 'account no exist']); + } + + $time = time(); + $accountId = 0; + + // 插入聊天记录 + $stmt = $mySQLi->prepare('insert into `chat` (account, account_id, server_id, role_id, channel_id, content, is_cross, time) values(?, ?, ?, ?, ?, ?, ?, ?)'); + if (!$stmt) { + $mySQLi->close(); + returnJson(['code' => 1, 'msg' => $mySQLi->errno . '-' . $mySQLi->error]); + } + $stmt->bind_param('siiisssi', $account, $accountId, $serverId, $roleId, $channelId, $content, $cross, $time); + $stmt->execute(); + + $stmt->close(); + $mySQLi->close(); + break; + default: + // + } + returnJson(['code' => 0]); + break; + case 'misc': + switch ($do) { + case 'agree': + exit($_CONFIG['agree']); + break; + } + case 'bind': + $tpType = 'linuxdo'; + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + $stmt = $mySQLi->prepare('insert into `player_connect_threeparty` (username, type, connect_id) values(?, ?, ?)'); + $stmt->bind_param('sss', input('account'), $tpType, input('connect_id')); + $stmt->execute(); + $stmt->close(); + $stmt = $mySQLi->prepare('select password from player where username=?'); + $stmt->bind_param('s', input('account')); + $stmt->execute(); + $result = $stmt->get_result(); + $data = $result->fetch_array(); + $result->free_result(); + returnJson($data); + $stmt->close(); + $mySQLi->close(); + break; + case 'link': + $connectId = input('connect_id'); + $tpType = 'linuxdo'; + $mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($mySQLi->connect_errno) + returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); + $mySQLi->set_charset($_CONFIG_DB['db_charset']); + $stmt = $mySQLi->prepare('select username from player_connect_threeparty where type=? and connect_id=? limit 1'); + $stmt->bind_param('ss', $tpType, $connectId); + $stmt->execute(); + $result = $stmt->get_result(); + $row = $result->fetch_array(); + if (!empty($row)) { + $getPlayer = $mySQLi->prepare('select username,password from player where username=? limit 1'); + $getPlayer->bind_param('s', $row['username']); + $getPlayer->execute(); + $res = $getPlayer->get_result(); + $account = $res->fetch_array(); + returnJson(['code' => 0, 'data' => $account]); + $res->free_result(); + $getPlayer->close(); + } else { + returnJson(['code' => '1']); + } + $stmt->close(); + $mySQLi->close(); + break; + default: + echo 'success'; +} diff --git a/config.php b/config.php new file mode 100644 index 0000000..b617717 --- /dev/null +++ b/config.php @@ -0,0 +1,437 @@ + '121.36.201.12', + 'db_port' => 32506, + 'db_name' => 'mir_web', + 'db_user' => 'root', + 'db_password' => 'mysql_Adkijc', + 'db_charset' => 'utf8', +]; +$mir_actor_s1_port = 32506; + +// LINUXDO三方登录 +$_LINUXDO_CONNECT = [ + 'client_id'=>'tfKevot5lSwB5A5gcqPQMMhaXDLjib0P', + 'client_secret'=>'95KWP8sbRIUu5df7gBo5fIztz6ISmvfa' +]; + +// 网站IP+端口 +$_host = $protocol.$_SERVER['HTTP_HOST']; +$_port = 80; + +// 主配置 +$_CONFIG = [ + 'web_url' => 'http://'.$_host.(80 != $_port ? ':'.$_port : ''), + + 'host' => $_host, // 网站IP + 'port' => $_port, // 网站端口 + + // 游戏IP+端口 + 'game_host' => $_host, // 游戏服务器IP + 'game_port' => 9000, // 游戏网关起始端口,1区则9001 + + 'game_name' => '清渊传奇', // 游戏名字 + 'game_first_name' => '清渊', // 游戏名字前缀 + 'game_description' => '经典复古 爽快耐玩', // 游戏描述 + + 'copyright' => '2022 © XX信息科技有限公司', + + + // 请勿更改 + 'spid' => 1, + 'pf' => 'yfbx', + 'pf_id' => 10001, + + // 提现配置 + 'withdraw' => [ + 'sid' => 1, // 开启提现的区ID,0表示关闭提现功能 + 'type' => 3, // 提现的货币类型:2=金币,3=银两,4=元宝 + 'ratio' => 10000 // 提现比例:10000货币值=1元 + ], + + // 游戏货币配置 + 'currency_list' => [2 => '金币', 3 => '银两', 4 => '元宝'], // 货币列表 + 'currency_field' => [2 => 'bindcoin', 3 => 'bindyuanbao', 4 => 'nonbindyuanbao'], // 货币字段名(请勿更改) + + // 客服信息 + 'kf_qq' => '123456', + 'kf_wx' => '123456', + + // 帐号密码别名 + 'account_name' => '通行证', + 'account_name_suffix' => '号', + 'password_name_suffix' => '密文', + + 'admin_account' => 'admin', // 管理员帐号 + + 'reg_open' => 1, // 是否开放注册 + 'login_open' => 1, // 是否开放登录 + + 'day_max_reg' => 1, // 单个玩家每日注册帐号数量上限 + + //'allow_ip' => '', // 允许访问的IP + 'deny_ip' => '127.0.0.1', // 禁用IP + + 'code_open' => 1, // 验证码(总开关)是否开启:用于注册/找回密码验证 + 'reg_code_open' => 0, // 注册是否需要验证码 + 'code_type' => 'email', // email=邮件,mobile=手机短信(未实现) + 'code_length' => 6, // 验证码最大长度,请勿设置大于6 + 'code_data_type' => 'NUMBER', // 验证码字符类型:NUMBER=纯数字,CHAR=大小写字母,ALL=大小写字母+数字+符号 + 'code_send_interval' => 60, // 发送验证码时间间隔(秒) + + // 发送邮件配置 + 'mail_from' => 'admin@163.com', // 发件人邮箱 + 'mail_password' => '123456', // 发件人邮箱密码 + 'mail_host' => 'smtp.163.com', // 发件SMTP服务器 + 'mail_port' => 465, // 发件SMTP服务器端口 + 'mail_charset' => 'UTF-8', + + // 注册保留帐号 + 'retain_account' => 'administror,admin', + + // 登录过期时间(默认30天) + 'session_time' => time() + (86400 * 30), + + 'agree' => '
+前言
+本《用户服务协议》(以下简称“本协议”)是由您(以下称为“用户”)与广东夜风信息技术有限公司(以下称为“夜风”)就夜风在其和/或其关联公司的游戏平台上所提供的产品和服务(包括夜风的网站以及夜风现在正在提供和将来可能向用户提供的游戏服务和其他网络服务,以下统称为“产品和服务”)所订立的协议。

+重要须知:
+1、本协议在用户获得及使用夜风游戏产品和服务之日签订并生效。本协议的订立、履行、解释及争议的解决均适用中华人民共和国法律并排除其他一切冲突法的适用。本协议订立于广东省广州市天河区。如双方就本协议的内容或其执行发生任何争议(包括但不限于合同或者其他财产性权益纠纷),双方应友好协商解决;协商不成时,双方同意交由夜风所在地有管辖权的人民法院管辖并处理。
+2、请用户仔细阅读本协议内容(特别是加粗字体的内容)。如用户不同意本协议的任意内容,请不要注册或使用夜风提供的任何产品和服务。如用户通过进入注册程序并勾选“我已阅读并同意用户服务协议与隐私协议”,即表示用户与夜风已达成协议,自愿接受本协议及《用户隐私协议》的所有内容。此后,用户不得以未阅读/未同意本协议及《用户隐私协议》的内容作任何形式的抗辩。
+3、请注意,夜风可能适时对本协议进行修改与更新,用户同意将随时留意查看本协议的最新版本。请在使用夜风的产品(或服务)前,仔细阅读并了解本协议,以确保对本协议的最新版本始终保持了解。用户不同意或不接受本协议条款内容的,请不要继续使用夜风游戏提供的产品和服务,否则视为用户同意接受修订后的本协议内容。
+4、夜风游戏特别提醒用户认真阅读本协议的全部条款,特别是其中免除或者限制夜风游戏责任的条款(该等条款通常含有“不负责”、“不保证”等词汇)、限制用户权利的条款(该等条款通常含有“不得”、“不应”、“不允许”、“禁止”等词汇)、法律适用和争议解决条款,这些条款应在中国法律所允许的范围内最大程度地适用,该类条款通常用红色字体标示。
+5、如果用户未满18周岁,请在法定监护人的陪同下阅读本协议,并特别注意未成年人使用条款。如未成年人继续使用夜风游戏提供的游戏及服务的,视为未成年人用户已取得法定监护人对该用户享用夜风游戏提供的游戏和服务、向夜风游戏支付费用的行为,以及对本协议全部条款的同意。

+一、服务内容
+1.1. 夜风产品和服务的具体内容由夜风根据实际情况提供,例如网络游戏、手机软件、论坛(BBS)、聊天室、电子邮件等。夜风保留随时变更、中断或终止部分或全部产品和服务的权利。
+1.2. 夜风在提供产品和服务时,可能会对部分用户收取一定的费用。在此情况下,相关页面上会有明确的提示。如用户不同意支付该等费用,可选择不接受相应的产品和服务。
+1.3. 夜风通过服务器端设备接入互联网为用户提供产品和服务,除此之外与产品和服务有关的设备(如电脑、手机、调制解调器及其他与接入互联网有关的装置)及所需的费用(如为接入互联网而支付的电话费及上网费)均应由用户自行负担。
+1.4. 用户应使用正版软件接受产品和服务,软件费用由用户自行负担。
+二、帐号名称和密码
+2.1. 用户阅读并同意本协议,成功完成注册后,即成为夜风的注册用户,取得夜风用户帐号(以下称“夜风帐号”)。夜风帐号名称在注册之后不可变更,而帐号对应的密码则可以通过夜风提供的客户服务进行修改。
+2.2. 用户对于夜风帐号及密码的保管以及使用该帐号和密码所进行的一切行为负有完全的责任。夜风禁止用户将夜风帐号或密码进行销售、转让或出借、共享给他人使用。因为用户的保管疏忽或任何第三方行为,导致用户的夜风帐号或密码遭他人非法使用,以及因此而产生的任何后果,夜风均不承担任何责任。
+2.3. 用户发现其夜风帐号或密码被他人非法使用或有使用异常情况的,应及时根据夜风不时公布的处理方式通知夜风,并有权请求夜风采取措施暂停该帐号的登录和使用。夜风根据用户身份核对结果,有权决定是否暂停用户帐号的登录和使用。
+2.4. 如果用户选择通过“快速游戏”、“游客”或其他类似便捷模式(下称“游客模式”),在未注册用户帐号的前提下快速登录游戏的,请用户登录后及时绑定用户帐号;如用户未绑定用户帐号的,则一旦用户选择卸载、重装夜风的产品或游戏软件的,或用户的移动智能设备、电脑损坏导致产品或游戏软件无法正常启动的,用户在游客模式下的全部游戏数据、游戏记录等内容将无法查询、恢复。
+三、帐号注册信息
+3.1. 提供注册信息
+(1)在申请夜风帐号时(或注册后补充信息时),用户应当向夜风提供最新、详细及真实准确的个人注册信息。前述个人注册信息包括:用户的夜风帐号名称、密码及注册夜风帐号(或补充、更新帐号信息时)输入的所有信息。用户在此承诺:用户应依据相关法律法规的规定及夜风提供的相关指引以其真实身份注册成为夜风的用户,并保证所提供的个人身份资料信息真实、完整、有效,依据法律规定和必备条款约定对所提供的信息承担相应的法律责任,未进行实名认证的用户部分夜风账号功能将可能被限制。夜风应当为用户提供帐号注册人证明、原始注册信息等必要的协助和支持,并根据需要向有关行政机关和司法机关提供相关证据信息资料。
+(2)所有由用户提供的个人注册信息将可能被夜风用来作为认定夜风帐号的关联性以及辨别用户身份的唯一依据。用户同意应夜风的要求,随时提供该等信息的证明材料,以便夜风核实用户身份。
+(3)如果用户提供给夜风的信息不准确,或不真实,或非法无效,或已变更而未及时更新,或有任何误导之嫌,夜风有权中止或终止该用户使用夜风的任何服务,直至用户提供符合要求的信息。夜风采取中止措施应当通知用户并告知中止期间,中止期间应该是合理的,中止期间届满夜风应当及时恢复对用户的服务。
+(4)夜风有权审查用户注册所提供的身份信息是否真实、有效,并应积极地采取技术与管理等合理措施保障用户帐号的安全、有效;用户有义务妥善保管其帐号及密码,并正确、安全地使用其帐号及密码。任何一方未尽上述义务导致帐号密码遗失、帐号被盗等情形而给对方或他人的权利造成损害的,应当承担由此产生的法律责任。
+3.2. 查询注册信息
+用户有权随时通过登录夜风官方网站,在“用户中心”页面访问和查阅用户注册信息及个人信息。
+3.3. 修改注册信息
+用户有权随时通过登录夜风官方网站,在“用户中心”页面,或通过夜风公布的其他途径,更新或修改用户申请注册时所提供的信息。夜风应当及时、有效地为其提供该项服务。但是,用户在注册夜风帐号时(或注册后补充信息时)填写的真实姓名、证件号码,以及夜风帐号名称本身在帐号注册成功后(或补充信息后)如无特殊原因将无法进行修改,请用户慎重填写各类注册信息。
+3.4. 用户同意,与其夜风帐号相关的一切资料、数据和记录(包括但不限于登录记录、登录后行为记录、点卡信息等)均以夜风系统记录的数据为准。
+四、信息披露与保护
+4.1. 本协议第三条所描述的注册信息,以及用户在使用产品和服务时存储在夜风控制范围内的非公开信息(以下合称“用户信息”),应按照本条约定进行披露及保护。
+4.2. 为了向用户提供更好的产品和服务,在用户自愿选择使用夜风的产品和服务的情况下,或者明示同意提供信息的情况下,夜风可能会收集用户信息,并可能对这些信息进行分析和整合。在用户使用夜风的产品和服务时,服务器可能会自动记录部分用户信息,这些信息都将成为夜风商业秘密的一部分。
+4.3. 保护用户(特别是未成年人用户)的隐私是夜风的一项基本原则。夜风一贯积极地采取技术与管理等方面的合理措施保障用户信息的安全、保密。
+4.4. 除本条所列下述情形之外,夜风保证不对外公开或向第三方披露、提供用户信息。但以下情形除外:
+(1)用户(或者用户的监护人)要求或同意夜风披露用户信息;
+(2)有关法律法规要求夜风披露用户信息;
+(3)司法机关或行政机关基于法定程序要求夜风披露用户信息;
+(4)为保护夜风的合法权益(知识产权和其他权益)向用户提起诉讼或者仲裁时需要披露用户信息;
+(5)在紧急情况下为保护其他用户和社会公众的利益,需要披露用户信息;
+(6)根据本协议其他条款的规定,夜风游戏认为确有必要披露用户信息的其他情况。
+4.5. 为了向用户正常地提供产品和服务,夜风可能需要向夜风的技术服务商、夜风的关联公司或其他第三方传送部分用户信息,在这些第三方承诺其具有合法经营资质并将承担至少与夜风同等的保密义务的前提下,夜风将向这些第三方传送用户信息,用户对此予以理解和同意。
+4.6. 在不透露单个用户隐私资料的前提下,夜风有权对整个用户信息数据库进行技术分析并对已进行分析、整理后的用户数据库进行商业上的利用。
+4.7. 夜风将采取行业内通用的、合理可行的方式保护用户的个人信息的安全。夜风使用通常可以获得的安全技术和程序来保护用户的个人信息不被未经授权地访问、使用或泄漏,包括但不限于:防火墙和数据备份措施;数据中心的访问权限限制;对移动终端的识别性信息进行加密处理等。
+五、用户的基本权利
+5.1. 用户可以根据本协议以及夜风不时公布和变更的其他规则使用夜风提供的产品和服务。
+5.2. 用户可以自愿选择通过手机绑定夜风提供的页面,从而在第一时间获得夜风提供的游戏活动、优惠信息等内容。
+5.3. 用户有权在使用夜风提供的产品和服务期间监督夜风及夜风的工作人员是否按照夜风所公布的标准向用户提供产品和服务,也可以随时向夜风提出与产品和服务有关的意见和建议。
+5.4. 如果用户不同意本协议条款,或对夜风后来修改、更新的条款有异议,或对夜风所提供的产品和服务不满意,用户可以随时选择停止使用夜风的产品和服务。如果用户选择停止使用夜风的产品和服务,夜风不再对用户承担任何义务和责任。
+六、用户行为守则
+6.1. 用户同意按照包括本协议在内的、夜风不时发布或变更的各类规则规范自己的行为,从而接受并使用夜风的产品和服务。用户对登录后其所持帐号产生的行为依法享有权利和承担责任。用户进一步同意,在违反这些规则时,按照本协议第六条第14款、第15款、第十四条及其他相关条款的规定承担违规后果和违约责任。
+6.2. 用户在使用夜风帐号期间,须遵守与互联网信息发布相关的法律、法规及通常适用的互联网一般道德和礼仪的规范,用户将自行承担用户所发布的信息内容产生的全部责任。用户发布的各类信息,不得包含以下内容:
+(1)违背宪法所确定的基本原则的;
+(2)危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;
+(3)损害国家荣誉和利益的;
+(4)煽动民族仇恨、民族歧视,破坏民族团结的;
+(5)破坏国家宗教政策,宣扬邪教和封建迷信的;
+(6)散布谣言,扰乱社会秩序,破坏社会稳定的;
+(7)传播淫秽、色情、赌博、暴力、凶杀、恐怖信息或者教唆犯罪的;
+(8)侮辱、诽谤或恶意用言语攻击他人,侵害他人合法权益的;
+(9)侵犯任何第三者的知识产权,版权或公众/私人权利的;
+(10)违反社会公德、人文道德、风俗习惯的;
+(11)破坏游戏正常秩序的;
+(12)含有法律、行政法规禁止的其他内容的。
+6.3. 用户的夜风帐号名称及游戏中的人物、帮派等名称应当遵守合法、健康的原则,不允许使用包括但不限于涉及种族、宗教、政治、国家领导人、淫秽、低俗、诽谤、恐吓、欺诈性的、攻击性的、污辱性的、可能引起误会的、违禁药品等内容的名称。
+6.4. 用户应当对自己在游戏中的言行负责,尤其不得:
+(1)通过任何方式、行为散布或传播低俗、不雅、违背公序良俗的信息;
+(2)通过任何方式、行为冒充平台或游戏系统向其他用户散布或传播虚假信息;
+(3)通过任何方式或途径引起纷争;
+(4)通过任何方式、行为散布或传播、使用私服、木马、外挂、病毒及此类信息;
+(5)通过任何方式、行为散布或传播代练的信息;
+(6)通过任何方式、行为传播或进行游戏帐号、虚拟货币、虚拟道具的在非夜风游戏认可的平台上进行交易(又称“线下交易”);
+(7)大量传播相同的、类似的短语或无意义的文字,或者任何与夜风平台及其游戏无关的信息;
+(8)宣扬、鼓动任何游戏虚拟世界之外的暴力行为;
+(9)泄露其它用户、非用户或夜风平台相关的任何游戏世界和现实世界信息;
+(10)宣传或发布违法信息、违反社会公德的信息,或不利于精神文明建设的信息,包括但不限于色情、赌博、邪教、恐怖主义等内容;
+(11)通过任何方式、行为散布任何种类的广告信息及广告链接;
+(12)发布诋毁或攻击夜风的言论或信息;
+(13)其他不符合法律法规、社会公德或游戏规则的言论或行为。
+6.5. 用户不得干扰、阻碍夜风正常地提供产品和服务,尤其不得:
+(1)攻击、侵入夜风的网站服务器或使网站服务器过载;
+(2)破解、修改夜风提供的客户端程序;
+(3)攻击、侵入夜风的游戏服务器或游戏服务器端程序或使游戏服务器过载;
+(4)不合理地干扰或阻碍他人使用夜风所提供的产品和服务;
+(5)利用程序的漏洞和错误(Bug)破坏游戏的正常进行或传播该漏洞或错误(Bug);
+(6)直接或间接利用游戏Bug(包括游戏系统、程序、设定等方面存在的漏洞或不合理的现象)、程序漏洞、非法手段获利或扰乱游戏秩序、违反游戏规则,或者通过非法手段利用游戏Bug、程序漏洞修改游戏数据以达到个人目的;
+(7)制作、使用、发布、传播任何形式的妨碍游戏公平性的辅助工具或程序(指用于在游戏中获取优势,但不属于夜风平台或各游戏软件的一部分的任何文件或程序),包括作弊性质的外挂以及相关辅助性质的外挂等(包括但不限于自动打怪、自动练级、自动吃药、自动完成任务、加速性质或超出游戏设定范围等操作);
+(8)擅自修改客户端程序,使之改变或者新增或者减少夜风平台所预先设定的功能,或者导致客户端向服务器发送的数据出现异常的一切行为;
+(9)在夜风提供的游戏或服务内恶意拉人或从事任何不正当竞争行为,包括但不限于恶意发布与夜风相关运营游戏开服信息、开服活动、以及一切开服入驻奖励政策、渠道充值溢价返利、或攻击性及诽谤性质言论或使用含有淫秽、色情、赌博、暴力、迷信等不健康/违法内容的文字、图片、音频、视频等方式诱导其他用户或利用公会将夜风原有用户引导入其他非夜风运营的游戏或提供的服务内。
+6.6. 用户不得扰乱游戏秩序,尤其不得:
+(1)长时间停留在特殊地点或敏感地区(包括但不限于活动报名人、“移民使者”、传送人、传送点等处),干扰其他用户游戏;
+(2)进行恶意PK、清场、敲诈、勒索等行为;
+(3)扬言进行或煽动其他用户或非用户参与非正常游戏内容的行为(包括但不限于游行、聚众闹事等);
+(4)以相似昵称的人物冒充他人好友、冒充NPC或官方角色等方式在游戏内外进行欺诈。
+6.7. 用户可以与游戏管理员(以下称为“GM”)进行交流,但在与GM交流时,不得做出以下行为:
+(1)冒充系统或GM;
+(2)欺骗或试图欺骗GM,包括但不限于误导GM、拒绝提供信息、提供虚假信息以及任何试图“诈骗”GM的行为;
+(3)违反或忽视GM做出的提示。在游戏中,为了确保大多数用户的共同利益,维护正常的游戏秩序,GM可能会提示用户执行某些操作或停止执行某些操作,用户不得忽视或阻挠该项工作的进行;
+(4)干扰GM工作。干扰GM工作包括但不限于:向GM索取任何游戏虚拟物品(包括但不限于虚拟货币、游戏道具等),频繁呼叫GM或发送无实质性内容的请求,反复向GM发送已解答或解决问题的帮助请求;
+(5)辱骂、威胁或恶意攻击GM。
+6.8. 用户必须保管好自己的帐号和密码,由于用户的原因导致帐号和密码泄密而造成的后果均将由用户自行承担。
+6.9. 牟取不正当利益行为处理规则
+用户承诺不以营利为目的从事游戏行为或交易虚拟物品,任何以营利为目的从事游戏行为或交易虚拟物品的情形将被视为牟取不正当利益,包括但不限于用户:
+(1)注册多个用户帐号和/或游戏角色ID,以营利为目的进行游戏行为;
+(2)从事游戏内单一或系列产出玩法,将获得的虚拟物品出售获利;
+(3)利用不同服务器的虚拟物品价值差异,在不同服务器买卖虚拟物品获利;
+(4)充当游戏帐号、虚拟物品交易中介收取费用获利;
+(5)在非夜风公司提供或认可的交易平台上交易用户帐号或虚拟物品获利;
+(6)将游戏内获得的虚拟物品用于出售获利而不注重本身角色实力的提升,角色多个技能、修炼、装备、召唤兽水平与角色等级相差较大的;
+(7)利用游戏行为和游戏内容组织或参与赌博、实施或参与实施盗窃他人财产或虚拟物品等涉嫌违法犯罪行为的;
+(8)其他任何不以正常的游戏娱乐互动需要为目的的游戏内牟利行为。

+6.10. 用户不得利用夜风提供的产品和服务从事以下活动:
+(1)未经允许,进入夜风计算机信息网络系统或者使用计算机信息网络系统资源的;
+(2)未经允许,对计算机信息网络功能进行删除、修改或者增加的;
+(3)未经允许,对进入计算机信息网络中存储、处理或者传输的数据和应用程序进行删除、修改或者增加的;
+(4)故意制作、传播计算机病毒等破坏性程序的;
+(5)其他危害计算机信息网络安全的行为。
+6.11. 用户同意以游戏程序中的监测数据作为判断用户是否有通过使用外挂程序等方法进行的游戏作弊行为的依据。
+6.12. 如果夜风发现用户行为或者数据异常,可以观察及记录该用户行为,并以观察和记录的结果作为判断用户是否实施了违反本协议用户行为守则的依据。
+夜风积极保护用户的帐号、虚拟物品及虚拟货币的安全,为此,夜风对盗号及盗号相关行为展开严厉的打击。夜风发现或者怀疑存在包括但不限于以下的盗号及盗号相关行为时,有权视情况按照本协议第6.13、第6.14款、第十四条及其他相关条款的规定处理,同时,夜风保留进一步追诉的权利:(1)盗取帐号;(2)盗取虚拟物品;(3)盗取虚拟货币;(4)盗取帐号或/及密码;(5)异常IP下的物品转移;(6)其他盗号及盗号相关行为。为了维护游戏的公平与秩序,即使用户没有主动的参与盗号,但是用户的物品来源于盗号或者盗号相关行为的,夜风也有权自行判断回收、冻结涉及盗号的物品及帐号。用户应该配合夜风对盗号及盗号相关行为的调查。用户应该自觉维护游戏的秩序,夜风发现或者怀疑存在虚假的盗号投诉时,有权视情况按照本协议第6.13款、第6.14款、第十四条及其他相关条款的规定处理。
+6.13. 若用户实施违反本条所述用户行为守则的行为,夜风有权视行为严重程度,向该用户采取以下一项或处罚措施,该用户应承担该等不利后果:
+(1)警告:警告是针对轻微违反游戏政策而做出的教育导向,它是用于正常管理游戏运行的一种方式。
+(2)禁言:关闭违规用户的部分或全部聊天频道,强制暂停违规用户角色的线上对话功能,使该角色无法与其他用户对话,直到此次处罚到期或取消。
+(3)强制离线:强制让违规用户离开当前游戏,结束该用户当前游戏程序的执行。
+(4)封停帐号:暂停或永久终止违规用户使用夜风帐号登录某款游戏的权利。
+(5)暂时隔离:将违规用户的游戏角色转移至特殊游戏场景,限制其局部游戏操作,直到此次处罚到期或取消。
+(6)删除档案:将违规用户在某个游戏世界中的人物档案删除,不让该人物再出现在游戏世界。
+(7)删除帐号:永久终止违规用户通过夜风帐号登录夜风平台的权利,包括但不限于用户注册信息、角色信息、等级物品、游戏货币等游戏数据库中的全部数据都将被永久封禁。
+(8)收回游戏虚拟物品:对于违规用户因欺诈或其他违规行为而获取的游戏虚拟物品,包括但不限于游戏虚拟货币、虚拟物品,进行收回。
+(9)修改名称:强制修改违规用户论坛昵称、游戏人物或帮派等的名称。
+(10)解散组织:解散违规用户成立的帮派、公会等组织。
+(11)倒扣数值:针对游戏角色游戏数值进行扣除,包括但不限于游戏角色等级、金钱、经验等。
+(12)封禁IP:暂时或永久禁止违规用户在某一异常IP登录某款游戏的某个服务器。
+(13)撤销交易:撤销用户通过夜风授权或指定的交易平台/网站进行的违规交易将交易双方付出的游戏虚拟物品予以还原。
+(14)交易限制:暂时冻结用户在夜风授权/指定的交易平台中进行的违规交易所涉及的游戏虚拟物品或游戏账号,并持续考察用户在指定期限内的游戏内行为。如指定期限内其无再次违规的,到期将自动解冻相应的游戏虚拟物品或游戏账号;如指定期限内用户再次违规的,或在夜风认定违规行为存在时,夜风有权扣除用户游戏账号及/或游戏虚物品。
+(15)承担法律责任:违规用户的不当行为对他人或者夜风造成损害,或者与现行法律规定相违背的,违规用户应依法承担相应的民事、行政和/或刑事责任,例如,用户在进行游戏过程中侵犯第三方知识产权或其他权利而导致被权利人索赔的,由用户直接承担责任。
+6.14.若用户实施违反本条所述用户行为守则的行为,夜风还有权要求违规用户向夜风承担违约责任,包括但不限于恢复原状,消除影响,对给夜风造成的直接及间接损失或额外的成本支出进行赔偿,以及在夜风首先承担了因违规用户行为导致的行政处罚或侵权损害赔偿责任后,由夜风向违规用户追偿。
+6.15. 用户只可在游戏内或者通过夜风授权/指定的交易平台(如有,夜风将通过官网公告、游戏内公告、手机短信或其他可明确通知用户的方式进行通知)进行游戏虚拟物品或游戏账号交易。对于用户在任何非夜风事先认可的平台进行其他交易的相关行为(包括但不限于用户通过第三方进行充值或游戏内虚拟物品的购买、游戏账户的买卖等),夜风将予以严厉打击和处罚。一经查证属实,夜风有权视具体情况根据本协议采取一种或多种处理措施,情节严重的,夜风保留追究用户法律责任的权利。
+七、游戏管理
+7.1. 游戏管理员
+(1)游戏管理员即GM(Game Master),指维护和管理游戏虚拟世界秩序的夜风在线工作人员。
+(2)GM不会干预游戏的正常秩序,不会以任何方式索要用户的个人资料和密码,不负责解决用户之间的私人纠纷或回答游戏的攻略、诀窍等问题。
+(3)用户在游戏中应当尊重、理解并配合GM的工作,如有任何意见,应通过专用信箱向客户服务中心申诉和举报。
+7.2. 游戏信息转移。夜风有权根据产品和服务的提供状况,安排拆分或合并游戏服务器。用户知晓并同意,夜风有权根据自身经营安排将用户在游戏中的人物信息、角色档案转移到其它游戏服务器。此等转移行为并不影响用户继续使用夜风游戏服务,因此不属于违约情形。
+7.3. 家长监护系统。夜风遵从国家政策,在游戏中开设“未成年人家长监护系统”,若父母(监护人)同意未成年人(尤其是十岁以下子女)使用产品和服务,必须以父母(监护人)名义申请注册夜风帐号。在使用产品和服务时,父母(监护人)应以监护人身份判断产品和服务是否适合未成年人。如果用户未满18周岁(或夜风无法识别用户的年龄),则用户将受到“未成年人家长监护系统”的约束。在监护人提供充分证据证明账号的实际使用人为未成年人时,夜风将有权根据有关规则以及监护人的要求,对用户创建或使用夜风帐号关联的游戏帐号进行限制,包括但不限于临时或永久冻结帐号,部分或者全部终止提供夜风各项产品和服务。
+7.4. 防沉迷系统
+(1)如果用户未满法定年龄(或夜风无法识别用户的年龄,例如未填写实名身份信息被系统默认为未成年用户的),则用户在游戏内的活动将受到“游戏防沉迷系统”监测;如果用户拥有一个以上夜风帐号,则该“游戏防沉迷系统”将同时适用于该用户的所有夜风帐号;
+(2)“游戏防沉迷系统”通过按照连续游戏时间来逐级扣减游戏内收益的方式,对用户长时间连续游戏的行为进行规制;
+(3)用户需提供真实完整的信息以便夜风识别用户的身份并向有关部门提交实名认证信息,如因提供的资料不真实而产生的后果由用户自行承担。
+7.5. 在现有的技术条件下,夜风将尽合理的商业努力并根据有关监管部门的要求开发并维护“未成年人家长监护系统”、“游戏防沉迷系统”与实名认证系统,按“现状”提供给用户使用。由于技术不可避免的局限性以及系统运作各环节受外界的影响,夜风不保证各个系统不存在任何漏洞,不保证各系统能随时正常运作,亦不保证监护或认证效果完全满足用户的需求。夜风不提供任何适用法律明确规定之外的明示或默示担保,并不对此承担任何责任。
+八、资费政策
+8.1. 夜风产品和服务的收费信息以及有关的资费标准、收费方式、购买方式及其他有关资费政策的信息,在夜风相关平台或游戏网站(包括但不限于夜风官网和相应游戏官方网站等网站)上作出说明。
+8.2. 夜风有权决定夜风所提供的产品和服务的资费标准和收费方式,夜风可能会就不同的产品和服务制定不同的资费标准和收费方式,也可能按照夜风所提供的产品和服务的不同阶段确定不同的资费标准和收费方式。另外,夜风也可能不时地修改夜风的资费政策。夜风会将有关产品和服务的收费信息以及与该产品和服务有关的资费标准、收费方式、购买方式或其他有关资费政策的信息放置在该产品和服务相关网页的显著位置。
+8.3. 对于夜风的收费产品和服务,用户应该按照夜风确定的资费政策购买夜风的产品和服务。如果用户未按夜风确定的资费政策购买夜风的产品和服务,夜风可以立即停止向用户提供该产品和服务。
+8.4. 除非法律另有明文规定,否则用户不得要求夜风返还用户已经支付予夜风的任何资费(以下简称“退款”),无论该等资费是否已被消费。夜风有权决定是否、何时、以何种方式向用户退款。夜风同意退款的,用户应补偿支付时使用信用卡、手机等支付渠道产生的费用,夜风有权在返还用户的资费中直接扣收。夜风在产品和服务提供过程中赠送的充值金额、虚拟货币、虚拟道具等,不予退款或变现。
+九、虚拟物品
+9.1. 夜风(包括但不限于游戏平台、游戏、论坛)所提供的各种虚拟物品,不限于金币、银两、道具、装备等,其所有权归夜风或其合作方所有。用户只能在合乎法律和游戏规则的情况下拥有对虚拟物品的使用权。用户一旦购买了虚拟道具的使用权,将视为已经进入消费过程,不得以任何理由要求退还该虚拟道具或要求夜风退还相应款项。
+9.2. 夜风提供的服务或游戏中的各类虚拟物品,如对使用期限无特殊标识的,均默认用户可在获得使用权后持续使用,直至夜风提供的相应服务或游戏终止;如对使用期限有特殊标识的,则其使用期限以特殊标识的期限为准(但最迟不超过夜风提供相应服务或游戏终止的时间超过使用期限的,夜风有权不另行通知用户而随时收回其使用权(该使用期限不因任何原因而中断、中止)。
+9.3. 除服务器大规模断线外,由于地方网络问题、个人操作问题等非可归责于夜风的原因导致造成的角色被删或回档、虚拟物品或金钱的损失,夜风无需向用户承担任何责任。
+9.4. 鉴于网上交易的复杂性,夜风不支持用户自行进行虚拟物品买卖的线下交易及线下交易相关行为(包括但不限于参与线下交易、协助线下交易者操作及转移游戏虚拟物品等一系列行为),并且不保护用户自行进行线下交易产生的任何交易结果,用户之间进行线下交易行为发生的任何问题、纠纷,包括但不限于被虚假交易信息诈骗金钱或者游戏虚拟物品的,均与夜风无关,用户将自行负责,夜风不负责赔偿或追回因受骗造成的损失。
+9.5. 夜风不支持线下交易,不认可用户线下交易所产生的交易结果,用户通过非夜风指定或夜风授权的平台/网站进行线下交易所获得的游戏虚拟物品将被认定为来源不符合游戏规则;夜风有权按照本协议第六条的约定,对线下交易及线下交易相关行为涉及的游戏虚拟物品、游戏角色与夜风帐号采取相应的措施。
+十、服务方式、内容的变动与个人资料转移
+10.1. 夜风将尽力持续地向用户提供产品和服务,但是在适用法律许可的最大范围内,并不排除夜风可能会停止提供任何产品和服务的可能性,也不排除任何改变游戏服务或其他网络服务的服务方式、服务内容的可能性。
+10.2. 为增加并丰富夜风提供的游戏及其他网络服务的内容,游戏和游戏平台在运行时可能不定期更新并调整其包含的功能。在游戏和游戏平台更新后,一切游戏和游戏平台内的操作、内容、设定,将以游戏和游戏平台中的公告内容为准。
+10.3. 如果夜风停止提供某一项产品和服务,或改变某一项产品和服务的方式或内容,夜风将会事先通知用户,并尽力寻找适当的服务提供者以接替夜风继续提供产品和服务。
+10.4. 在本条第3款所述情况下且在适用法律许可的最大范围内,则夜风可能会将用户的个人资料(包括有关的帐号和密码信息及个人资料)转移给该继续提供服务的一方,用户在此同意夜风有权做此转移和提供,并且同意在夜风完成转移和提供之后,夜风将不再对用户原有资料承担任何义务和责任。但是,夜风并不保证夜风届时一定能够找到适当的服务提供者或服务方式以代替夜风继续提供产品和服务,也不保证夜风找到的服务提供者所提供的产品和服务或者改变的游戏方式能够满足用户的要求。
+10.5. 用户可授权夜风指定或授权的交易平台/网站向夜风申请查询或操作用户游戏账号,经交易平台/网站的申请,夜风可以对用户账号进行查询、冻结、转移、更新、更改或解封等操作,并将相关操作内容及结果反馈给交易平台。但用户知悉并确认,夜风依据交易平台的申请进行任何操作行为或产生的任何操作结果不承担责任。
+十一、服务中断或终止
+11.1. 如发生下列任何一种情形,夜风有权随时中断或终止向用户提供本协议项下的游戏服务和其他网络服务,对于因而产生的不便和损失,夜风不承担任何责任:
+(1)用户提供的个人资料不真实;
+(2)用户违反本协议中规定的用户行为准则。
+11.2. 用户清楚知悉夜风帐号存在有效期(有效期以夜风公司对外公布为准),并同意不定时登录夜风帐号以延续其有效期,用户清楚知悉夜风有权对超过有效期的夜风帐号进行注销并删除该帐号中的信息内容。
+(1)用户在注册帐号后,若在6个月内该帐号无登录使用记录,且该帐号从无任何充值记录的,夜风有权注销该帐号并删除该帐号中的信息内容。
+(2)关于夜风所提供的不同产品和服务注销帐户/角色的其他条件,请参见各个产品和服务的具体规定,或相关产品和服务的官方网站上的具体规定。
+11.3. 为了保障游戏及游戏平台网站和服务器的正常运行,夜风需要定期或不定期对游戏及游戏平台网站和服务器进行停机维护,或针对突发事件进行紧急停机维护。因上述情况而造成的正常服务中断、中止,用户予以理解并同意,夜风应尽力避免服务中断并将中断时间限制在最短时间内。
+11.4. 在适用法律许可的最大范围内,发生下列情形之一时,为了游戏网站和服务器的持续稳定运行,夜风有权不经提前通知,终止或中断游戏服务器所提供的全部或部分服务,对因此而产生的不便或损失,夜风对用户或第三人均不承担任何责任:
+(1)定期检查或施工,更新软硬件等;
+(2)服务器遭受损害,无法正常运作;
+(3)突发性的软硬件设备与电子通信设备故障;
+(4)网络提供商线路或其他故障;
+(5)在紧急情况下依照法律的规定或为用户及第三者之人身安全;
+(6)第三方原因或其他不可抗力的情形。
+11.5. 在适用法律许可的最大范围内,不管产品和服务由于任何原因终止,在夜风发布终止运营公告后,用户应在公告期内采取相应的措施自行处理游戏及游戏平台上的虚拟物品。产品和服务终止运营后,用户不得因终止服务而要求夜风承担除用户已经购买但尚未使用的游戏虚拟货币以外任何形式的赔偿或补偿责任,包括但不限于因不再能继续使用游戏帐号、游戏内虚拟物品等而要求的赔偿。
+十二、有限保证及免责声明
+12.1. 对于夜风的产品和服务,夜风仅作本条所述有限保证,该有限保证取代任何文档、包装或其他资料中的任何其他明示或默示的保证(若有)。
+12.2. 夜风仅以“现有状况且包含所有错误”的形式提供相关的产品、软件或程序及任何支持服务,并仅保证:
+(1)夜风所提供的产品和服务能基本符合夜风正式公布的要求;
+(2)夜风所提供的相关产品和服务基本与夜风正式公布的服务承诺相符;
+(3)夜风仅在法律允许的合理范围内尽力解决夜风在提供产品和服务过程中所遇到的任何问题。
+12.3. 在适用法律允许的最大范围内,夜风明确表示不提供任何其他类型的保证,不论是明示的或默示的,包括但不限于适销性、适用性、可靠性、准确性、完整性以及无错误的任何默示保证和责任。
+12.4. 在适用法律允许的最大范围内,夜风并不担保夜风所提供的产品和服务一定能满足用户的要求,也不担保提供的产品和服务不会被中断,并且不担保产品和服务的及时性、安全性及不受干扰,亦不担保无错误发生,以及信息能准确、及时、顺利地传送。
+12.5. 用户理解并同意:通过夜风的产品和服务取得的任何信息、资料,是否信任及使用,完全取决于用户自己,并由用户承担由该等信任及使用带来的系统受损、资料丢失以及其它任何风险。夜风对在产品和服务中提及的任何第三方发出的信息(包括但不限于任何商品购物服务、交易进程、招聘信息等),都不作担保。
+12.6. 如有系统故障、安全漏洞(Security Vulnerability)、程序缺陷(Bug)、程序出错等问题,夜风有权把游戏的资料还原到一定日期,以维护游戏之平衡。用户不得因此要求补偿或赔偿。
+12.7. 在适用法律允许的最大范围内,夜风对用户因使用夜风的产品和服务引起的任何间接、偶然、意外、特殊或继起的损害(包括但不限于人身伤害、隐私泄漏、因未能履行包括诚信或合理谨慎在内的任何责任、因过失和因任何其他金钱上的损失或其他损失而造成的损害赔偿)不负责任,这些损害可能来自:用户或他人不正当使用产品和服务、在网上购买商品或类似服务、在非夜风指定或授权的网上进行交易、非法使用服务或用户传送的信息有所变动。
+12.8. 夜风对本协议项下涉及的境内外基础电信运营商的固定及移动通信网络的故障,各类技术缺陷、覆盖范围限制、不可抗力、计算机病毒、黑客攻击、用户所在位置、用户关机、合作方因素、他人故意或过失行为或其他非夜风技术能力范围内的原因造成的服务中断、用户发送的数据或短信息的内容丢失、出现乱码、错误接收、无法接收、迟延接收等等,均不承担责任。
+12.9. 由于用户个人失误、错误、不当操作、未进行实名制认证等导致的任何后果,由用户自行承担责任,夜风不予任何赔偿或补偿。
+12.10. 用户在非夜风事先认可的第三方交易平台进行交易,产生的交易行为、交易结果或与交易平台产生的任何纠纷、法律责任或用户个人账号及虚拟财产风险均与夜风无关。
+十三、知识产权及信息所有权
+13.1. 夜风向用户通过产品和服务提供的游戏软件(包括具备客户端软件及不具备客户端软件的游戏)、其他软件、信息、作品及资料,其著作权、专利权、商标专用权及其它知识产权,均为夜风或其相应权利人所有。除非事先经夜风书面合法授权,或法律另有明文规定,任何人不得擅自以任何形式使用、复制、传播、伪造、模仿、修改、改编、翻译、汇编、出版、进行反编译或反汇编等反向工程,否则夜风有权立即终止向用户提供产品和服务,并依法追究其知识产权侵权责任,要求用户赔偿夜风的一切损失。
+13.2. 用户在使用产品和服务过程中产生并储存于夜风服务器中的任何数据信息(包括但不限于帐号数据信息、角色数据信息、等级物品数据信息等,但用户的姓名、身份证号、电话号码等个人身份数据信息除外)属于游戏或游戏平台的一部分,由夜风所有并进行管理,用户有权在遵守游戏规则的前提下通过夜风指定的途径对属于自身帐号的数据信息进行修改、转移、处分。
+13.3. 为保证准确及避免争议,本协议涉及到的有关技术方面的数据、信息,用户同意以夜风服务器所储存的数据作为判断标准,夜风保证该数据的真实性。
+十四、损害赔偿
+用户若违反本协议或可适用的法律法规,导致夜风的母公司、子公司、其他关联公司、附属机构及其人员,受雇人、代理人及其他一切相关履行辅助人员因此受到损害或支出任何衍生费用(包括但不限于支付上述法律主体须就用户的违约或违法行为所进行的一切辩护或索偿诉讼及相关和解之法律费用),用户应承担补偿相关费用及支付损害赔偿的责任。
+十五、协议的终止
+用户应遵守本协议及有关法律法规的规定。夜风有权判断用户是否违反本协议。若夜风认定用户违反本协议或任何法律法规,夜风无需向用户进行事先通知的情况下,立即暂停或终止用户的帐号并删除用户帐号中的所有相关资料、档案及任何记录,以及限制、停止或取消用户的使用资格。
+十六、修改和解释权
+16.1. 为了向用户及时、更好地提供产品和服务,基于对夜风本身、用户及市场状况不断变化的考虑,在法律最大适用范围内,夜风保留随时修改、新增、删除本协议条款的权利。修改、新增、删除本协议条款时,夜风将于官方网站公告修改、新增、删除的事实,而不另行对用户进行个别通知。若用户不同意夜风所修改、新增、删除的内容,可立即停止使用夜风所提供的服务。若用户继续使用夜风提供的服务,则视同用户同意并接受本协议条款修改、新增、删除后的内容,且不得因此而要求任何补偿或赔偿。
+16.2. 未经夜风事先书面同意,用户不得转让其在本协议项下的权利或义务。夜风有权通过夜风的子公司或其他关联公司行使其在本协议项下的权利或履行本协议项下的义务。
+十七、广告与外部链接
+17.1. 夜风的产品和服务中可能包含他人的商业广告或其它活动促销的广告。这些内容由广告商或商品/服务提供者提供并承担相应责任,夜风仅提供刊登内容的媒介。用户通过夜风或夜风所链接的网站所购买的该等服务或商品,其交易行为仅存于用户与该等商品或服务的提供者之间,与夜风无关,夜风无需就用户与该商品或服务的提供者之间所产生的交易行为承担任何法律责任。
+17.2. 用户可能在使用夜风的产品和服务过程中链接到第三方的站点。第三方的站点不由夜风控制,并且夜风也不对任何第三方站点的内容、第三方站点包含的任何链接、第三方站点的任何更改或更新负责。夜风仅为了提供便利的目的而向用户提供这些到第三方站点的链接,夜风所提供的这些链接并不意味着夜风认可该第三方站点,不意味着夜风担保其真实性、完整性、实时性或可信度。这些个人、公司或组织与夜风间亦不存在任何雇用、委任、代理、合伙或其它类似的关系。用户需要检查并遵守该第三方站点的相关规定。
+17.3. 用户理解并同意夜风通过电子邮件、短信或者其他方式向用户发送产品和服务或其他相关商业信息。
+十八、其他约定
+18.1. 本协议的订立、效力、解释、履行及争议解决适用中华人民共和国法律。如果本协议的任何内容与法律相抵触,应以法律规定为准。
+18.2. 本协议的任何条款部分或全部无效的,不影响其它条款的效力。
+18.3.夜风需要向用户发送的通知等均可以通过夜风官网(mir.317743968.cn)公告、电子邮件、页面公告、电话或其他夜风认为合适的方式进行发送。如本协议内容条款变更、夜风提供的产品或服务内容/方式变更、或其他重要通知等,夜风将会以上述形式向用户发送通知。通知一经发送即视为送达,用户应及时查看相关内容。
+
+
+
+
+

+隐私协议

+

+
+前言

+
+本《用户隐私协议》(以下简称“本协议”)是由您(以下称为“用户”)与广东夜风信息技术有限公司(以下称为“夜风”)就夜风在其和/或其关联公司的游戏平台上所提供的产品和服务(包括夜风的网站以及夜风现在正在提供和将来可能向用户提供的游戏服务和其他网络服务,以下统称为“产品和服务”)所订立的协议。
+用户在使用夜风的产品和服务时,夜风有权依本协议约定收集和使用用户的相关信息。

+重要须知
+1、本协议应根据中华人民共和国法律解释与管辖并排除其他一切冲突法的适用。本协议订立于广东省广州市天河区,有关与用户和夜风之间发生的任何形式的争议均应友好协商解决。协商不能解决的,任一方均有权将争议提交至夜风所在地有管辖权的人民法院提起诉讼解决。
+2如果用户不同意本协议的任意条款,则不得注册或(继续)使用夜风提供的任何产品和服务。用户一旦点击确认“同意”(或其他具有同样含义的词,如“接受”等)进行注册、开始使用及/或继续使用夜风游戏服务,即表示用户与夜风已达成协议,自愿接受本协议的所有内容。此后,用户不得以未阅读/未同意本协议的内容作任何形式的抗辩。
+3、请注意,夜风有权适时对本协议进行修改与更新,请用户随时留意查看本协议的最新版本。如用户不同意变更后的内容,用户可以选择停止使用夜风的产品或服务;如用户仍然继续使用夜风的产品或服务的,即表示同意夜风按照修订后的《用户隐私协议》收集、使用、储存和分享用户的信息。
+4、夜风游戏特别提醒用户认真阅读本协议的全部条款,特别是以加粗字体标示的内容,此类条款应在中国法律所允许的范围内最大程度地适用。

+一、夜风收集的信息
+个人信息是指以电子或者其他方式记录的能够单独或者与其他信息结合识别特定自然人身份或者反映特定自然人活动情况的各种信息,具体如下:
+1.1用户在使用夜风服务时主动提供的信息
+1.1.1用户在注册账户或使用夜风的服务时,向夜风提供的相关个人信息,包括但不限于姓名、QQ号、微信号、电话号码、电子邮箱、银行卡号、身份证号、护照号等
+1.1.2 用户在使用服务时上传的信息,例如上传的头像,分享的照片、拍摄的视频等。
+1.1.3 用户通过夜风的客服或参加夜风举办的活动时所提交的信息,例如,用户参与夜风线上或线下活动时填写的调查问卷或者提交的材料中可能包含用户的姓名、电话号码、生日、籍贯、性别、兴趣爱好、QQ号、微信号、电子邮箱、银行卡号、身份证号、家庭地址等信息。
+夜风的部分服务可能需要用户提供特定的个人敏感信息来实现特定功能。若用户选择不提供该类信息,则可能无法正常使用服务中的特定功能,但不影响用户使用服务中的其他功能。若用户主动提供用户的个人敏感信息,即表示用户同意夜风按本协议所述目的和方式来处理用户的个人敏感信息。
+1.2夜风在用户使用服务时获取的信息
+1.2.1 日志信息当用户使用夜风的服务时,夜风可能会自动收集登录时间、登录地址、服务使用日志、操作日志等相关信息并存储为服务日志信息。
+(1) 设备信息例如,设备型号、操作系统版本、唯一设备标识符、电池、信号强度等信息。
+(2) 软件信息例如,软件的版本号、浏览器类型。为确保操作环境的安全或提供服务所需,夜风会收集有关用户使用的移动应用和其他软件的信息。
+(3) IP地址
+(4) 服务日志信息例如,用户在使用夜风服务时搜索、查看的信息、服务故障信息、引荐网址等信息。
+(5) 通讯日志信息例如,用户在使用夜风服务时曾经通讯的账户、通讯时间和时长。
+1.2.2 位置信息当用户使用与位置有关的服务时,夜风可能会记录用户设备所在的位置信息,包括定位信息、行程信息,以便为用户提供相关服务。
+(1) 在用户使用服务时,夜风可能会通过IP地址、GPS、WIFI、基站等途径获取用户的地理位置信息。
+(2) 用户或其他用户在使用服务时提供的信息中可能包含用户所在地理位置信息,例如用户提供的帐号信息中可能包含的用户所在地区信息,用户或其他人共享的照片包含的地理标记信息。
+1.2.3支付信息为便于用户在支付相关订单时,综合判断用户账户及交易风险、进行身份验证、检测及防范安全事件,夜风可能会在交易过程中收集用户的虚拟财产相关信息(仅限交易记录、虚拟货币、虚拟交易、游戏类兑换码、口令密码等)
+1.2.4其他相关信息为了帮助用户更好地使用夜风的产品或服务,夜风会收集相关信息。例如,夜风收集的好友列表、群列表信息、声纹特征值信息。为确保用户使用夜风的产品和服务时能与用户认识的人进行联系,如用户选择开启导入通讯录功能,夜风可能对用户联系人的姓名和电话号码进行加密,并仅收集加密后的信息。
+1.3其他用户分享的信息中含有用户的信息,例如,其他用户发布的照片或分享的视频中可能包含用户的信息。
+1.4从第三方合作伙伴获取的信息
+夜风可能会根据第三方合作伙伴的规定或用户的授权获得用户在使用第三方合作伙伴服务时所产生或分享的信息。例如,用户使用夜风游戏帐户登录第三方合作伙伴服务时,夜风会获得用户登录第三方合作伙伴服务的名称、登录时间,方便用户进行授权管理。
+本协议只适用于夜风提供的服务,不适用于任何第三方提供的服务或第三方的用户信息使用规则,夜风对任何第三方使用用户提供的信息不承担任何责任。请用户仔细阅读第三方合作伙伴服务的用户协议或隐私协议。
+二、夜风如何使用收集的信息
+2.1夜风严格遵守法律法规的规定及与用户的约定,将收集的信息用于以下用途:
+2.1.1向用户发送注册确认;
+2.1.2了解和管理账户;
+2.1.3回应用户的客户服务要求;
+2.1.4了解用户的企业和产品需求以确定适用的产品和服务;
+2.1.5基于市场营销和促销的目的联系用户,并为用户提供更多有关夜风产品或服务的信息;
+2.1.6进行研究和分析,提升夜风的网站和服务质量; 
+2.1.7提升用户使用网站的体验和服务质量;
+2.1.8帮助夜风有效地管理网站内容;
+2.1.9分析群体性用户的站内活动情况以及整个用户群的社会信息。
+三、个人信息的授权与同意
+用户十分清楚,为了使用夜风的数据统计和分析之目的,用户需要夜风收集、存储、加工来自于用户的个人信息。因此,用户必须承诺: 
+(1)用户允许夜风出于提供服务的目的使用; 
+(2)用户允许夜风对已收集的数据进行匿名的、聚合性的处理和转移(包括可能的国际间转移); 
+(3)用户允许夜风对已收集的数据进行匿名的和聚合性的处理后,为互联网定向广告目的转移给非关联方使用
+(4)用户允许夜风与第三方合作以多种形式将夜风游戏平台中经过处理、加工后的数据用于商业化使用。这些合作包括但不限于:与广告平台、广告联盟或者其他广告经营者合作,将数据用于优化广告投放和提升营销效果;
+(5)用户允许夜风将用户个人信息及用户账号信息与夜风指定/授权的交易平台/网站进行同步,但夜风指定/授权的交易平台/网站应承担与夜风同等要求的信息安全保障及保密责任。
+四、夜风如何向其他方披露和共享信息
+4.1除非本协议已说明的情况外,用户的数据不会被以可识别具体个人真实身份信息的形式向第三方披露和共享。但以下情况除外:
+(1)获得用户的事先同意/允许;
+(2)因司法、行政等合法程序的要求;
+(3)在有限的情况下,夜风有可能聘请第三方供应商、顾问或其他服务商为夜风提供必要的维护、支持和服务,但夜风应要求该等第三方与夜风签署必要的条款保护数据安全和保密性的;
+(4)在紧急情况下,经合理判断是为了保护夜风、夜风的代理人、客户、终端用户或其他人的合法权益和安全的;
+(5)夜风为维护自己或其他用户的合法权益而向用户提起诉讼或者仲裁的;
+(6)夜风正在或拟进行企业并购、重组、出售全部或部分股份和/或资产等重大变化,包括但不限于尽职调查过程。
+4.2经用户同意合法收集的个人信息,通过信息系统、算法等非人工自动决策技术实现标签化或画像处理,从而做出的自动决策决定(如商业化信息推送等),此行为构成数据的不可识别化,不应视为夜风向任何第三方共享、转让或披露用户的任何个人信息。 
+五、重要提示
+5.1用户可以通过夜风的服务与用户的好友、家人及其他用户分享用户的相关信息。例如,用户在夜风游戏平台中公开分享的文字和照片。请注意,这其中可能包含用户的个人身份信息、个人财产信息等敏感信息;请用户谨慎考虑披露用户的相关个人敏感信息
+5.2用户可通过夜风提供服务中的隐私设置来控制分享信息的范围,也可通过服务中的设置或夜风提供的指引删除公开分享的信息。但请用户注意,这些信息仍可能由其他用户或不受夜风控制的非关联第三方独立地保存。
+六、个人信息保护措施
+6.1夜风采取的数据保密措施
+6.1.1用户知悉并了解,互联网传输或电子存储方法并非百分之百安全,夜风将尽到合理努力保障数据安全,但仍可能存在用户数据被盗、被非法拥有或者被滥用而给用户带来人身、财产和声誉等方面损失的风险,用户自愿承担相应风险。
+6.1.2夜风将采用行业内通行的、合理的、标准的安全防护措施来保护夜风所储存的信息的安全性和保密性。包括但不限于:防火墙和数据备份措施;数据中心的访问权限限制;对移动终端的识别性信息进行加密处理等。
+6.1.3夜风已经建立健全数据安全管理体系,包括对用户信息进行分级分类、加密保存、数据访问权限划分,指定内部数据管理制度和操作规程,从数据的获取、使用、销毁都有严格的流程要求,避免用户隐私数据被非法使用。 
+6.2应急处置与预警
+6.2.1若不幸发生个人信息安全事件的,夜风将按照法律法规要求,及时通过平台内通知/用户预留的联系方式等向用户告知安全事件的基本情况和可能的影响、夜风已采取或将采取的应急响应及其他有关处置措施、对用户的补救措施等。若难以逐一告知个人信息主体时,夜风将采取合理、有效的方式发布公告并将主动向有关监管部门上报个人信息安全事件的处置情况。
+6.2.2若用户发现用户的个人信息泄漏时,请立即与夜风联系,以便夜风及时采取相应的措施。
+七、未成年人保护
+夜风非常重视对未成年人个人信息的保护。根据相关法律法规的规定,若用户为18周岁以下的未成年人,在使用夜风游戏的产品或服务前,应事先取得用户的家长或法定监护人的同意。若用户是未成年人的监护人,在对用户所监护未成年人的个人信息有相关疑问时,请与夜风联系。
+八、免责条款
+除本协议约定的情形外,下列情况夜风亦无需承担任何责任:
+8.1 因用户将用户账号及密码告知他人、用户通过非夜风认可的交易平台进行虚拟物品道具交易、用户未保管好自己的密码或与他人共享夜风游戏账号、游戏角色、用户使用第三方软件或任何其他非夜风的过错导致的任何个人信息资料泄露;
+8.2 任何由于黑客攻击、计算机病毒侵入或发作、电信部门技术调整导致的影响、因政府管制而造成的暂时性关闭、由于第三方原因(包括不可抗力,例如国际出口的主干链路及国际出口电信提供商一方出现故障、火灾、水灾、雷击、地震、洪水、台风、龙卷风、火山爆发、瘟疫和传染病流行、罢工、战争或暴力行为或类似事件)及其他非因夜风过错而造成的用户个人信息资料泄露、丢失、被盗用或被篡改等,以及由此给用户和第三方造成的任何损失;
+8.3 由于与夜风和/或其关联公司链接的其它网站所造成的用户个人信息资料泄露及由此而导致的任何法律争议和后果;
+8.4 任何个人用户,包括未成年人用户向夜风提供错误、不完整、不实信息等造成不能通过认证、不能正常使用夜风的产品服务或遭受任何其他损失。
+九、用户信息访问、更正、删除
+9.1 用户可通过服务中的设置或夜风的指引访问用户个人信息,并根据夜风的管理方式和指引自行对相关信息进行查询、更正、补充、删除、改变授权范围等操作。
+9.2 用户在查询、更正、补充、删除、前述信息或改变授权范围时,夜风可能要求用户完成身份认证,以保障用户账号及个人信息的安全。
+9.3 若用户更正、删除相关的信息或改变授权范围导致夜风不能正常提供服务的,因而产生的不便和损失,夜风不承担任何责任。
+9.4 若用户继续使用夜风提供的服务的,夜风为了能够正常提供服务,将会重新收集用户信息。
+十、用户账号注销
+10.1 在符合夜风用户服务协议的约定的条件及国家相关法律法规规定的情况下,用户的服务账号可能被注销或者删除。
+10.2 当用户决定不再使用夜风提供的任何服务,可通过服务中的设置或夜风的指引注销或者删除账号。
+10.3 夜风将在用户注销账号后及时删除该的账号中的信息内容或按照服务协议的约定进行匿名化处理。
+10.4 用户十分明确并清楚,账号注销后,账号中的信息将不能再恢复,由此造成的不便和损失,夜风不承担任何责任。
+十一、投诉与反馈
+  用户对本协议有任何疑问的,应通过服务中的设置夜风官方网站上的客服信箱(317743968@qq.com)发送邮件或通过客服中心提供的信息向夜风进行咨询、申诉或举报,用户应同时向夜风提供相应的证据材料。夜风在收到用户材料后,原则上会在15天内回复处理意见或者结果。若有特殊情况需要延长的,以夜风的具体处理时间为准(若有特殊情况,夜风会另行通知用户)。
+十二、适用范围
+    夜风的所有服务均适用本协议。但某些服务有其特定的隐私指引/声明,该特定隐私指引/声明更具体地说明夜风在该服务中如何处理用户的信息。如本协议与特定服务的隐私指引/声明有不一致之处,请以该特定隐私指引/声明为准。
+十三、变更
+本隐私协议内容如发生任何实质性变更,夜风会在变更后于官方网站显著位置或服务页面的显著位置进行公示,如用户不同意变更后的内容,用户可以选择停止使用夜风的产品或服务并注销用户账号;如用户继续使用夜风的产品或服务的,即表示用户同意并接受修订后的《用户隐私协议》的约束。
+
', +]; diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..f989a42 Binary files /dev/null and b/favicon.ico differ diff --git a/function.php b/function.php new file mode 100644 index 0000000..48ccbb9 --- /dev/null +++ b/function.php @@ -0,0 +1,317 @@ +alert('{$data['msg']}');window.location.href = '/microClient/index';"; + } else { + echo ""; + } + if(isset($data['code'])) { + if(0 == $data['code']) { + $data['code'] = 1; + } else { + $data['code'] = 0; + } + } + exit; + } + exit(json_encode($data)); +} + +function isLogin() { + global $_SESSION; + + if(isset($_SESSION['account']) && $_SESSION['account']) { + return true; + } + return false; +} + +function logout() { + global $_SESSION; + + if(empty($_SESSION)) return false; + + $_SESSION = []; + session_destroy(); + + return true; +} + +function loginAdmin($token = '') { + global $_CONFIG, $_SESSION; + + if(!$token) return false; + + if(!isset($_SESSION['admin']) || !$_SESSION['admin']) { + setcookie('admin', $token, $_CONFIG['session_time']); + $_SESSION['admin'] = $token; + } + + return true; +} + +function logoutAdmin() { + global $_SESSION; + + if(empty($_SESSION)) return false; + + setcookie('admin', ''); + + $_SESSION = []; + session_destroy(); + + return true; +} + +// 推送日志 +function writeLog($message, $type = 'gm') { + $date = date('Y-m-d'); + + $path = __DIR__.'/log/'.date('Y-m').'/'.date('d').'/'; + mkdirs($path); + + $file = 'log_'.md5($date.BASE_KEY).'.log'; + $message .= ', IP: '.get_ip(); + file_put_contents($path.$file, '['.date('Y-m-d H:i:s').'] '.$message.PHP_EOL, FILE_APPEND); +} + +function isPost() { + return 'POST' == $_SERVER['REQUEST_METHOD']; +} + +function get_http_type() { + return ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://'; +} + +function get_ip() { + if (isset($_SERVER)) { + if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + $realip = $_SERVER['HTTP_X_FORWARDED_FOR']; + } else if (isset($_SERVER['HTTP_CLIENT_IP'])) { + $realip = $_SERVER['HTTP_CLIENT_IP']; + } else { + $realip = $_SERVER['REMOTE_ADDR']; + } + } else { + if (getenv('HTTP_X_FORWARDED_FOR')) { + $realip = getenv('HTTP_X_FORWARDED_FOR'); + } else if (getenv('HTTP_CLIENT_IP')) { + $realip = getenv('HTTP_CLIENT_IP'); + } else { + $realip = getenv('REMOTE_ADDR'); + } + } + return $realip; +} + +function isMobile() { + // 如果有HTTP_X_WAP_PROFILE则一定是移动设备 + if (isset ($_SERVER['HTTP_X_WAP_PROFILE'])) { + return true; + } + // 如果via信息含有wap则一定是移动设备,部分服务商会屏蔽该信息 + if (isset ($_SERVER['HTTP_VIA'])) { + // 找不到为flase,否则为true + return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false; + } + // 脑残法,判断手机发送的客户端标志,兼容性有待提高 + if (isset ($_SERVER['HTTP_USER_AGENT'])) { + $clientkeywords = ['nokia', 'sony', 'ericsson', 'mot', 'samsung', 'htc', 'sgh', 'lg', 'sharp', 'sie-', 'philips', 'panasonic', 'alcatel', 'lenovo', 'iphone', 'ipod', 'blackberry', 'meizu', 'android', 'netfront', 'symbian', 'ucweb', 'windowsce', 'palm', 'operamini', 'operamobi', 'openwave', 'nexusone', 'cldc', 'midp', 'wap', 'mobile']; + // 从HTTP_USER_AGENT中查找手机浏览器的关键字 + if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) { + return true; + } + } + // 协议法,因为有可能不准确,放到最后判断 + if (isset ($_SERVER['HTTP_ACCEPT'])) { + // 如果只支持wml并且不支持html那一定是移动设备 + // 如果支持wml和html但是wml在html之前则是移动设备 + if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'text/html') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'text/html')))) { + return true; + } + } + return false; +} + +/** + * 获得访客操作系统 + */ +function getOS($str = '') { + $str = $str ? $str : (isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''); + if (isset($str)) { + if (preg_match('/win/i', $str)) { + $val = 'Windows'; + } else if (preg_match('/mac/i', $str)) { + $val = 'MAC'; + } else if (preg_match('/linux/i', $str)) { + $val = 'Linux'; + } else if (preg_match('/unix/i', $str)) { + $val = 'Unix'; + } else if (preg_match('/bsd/i', $str)) { + $val = 'BSD'; + } else { + $val = 'Other'; + } + return $val; + } else { + return 'unknow'; + } +} + +/** + * 获得访问者浏览器 + */ +function getBrowse($str = '') { + $str = $str ? $str : $_SERVER['HTTP_USER_AGENT']; + if (isset($str)) { + if (preg_match('/MSIE/i', $str)) { + $val = 'MSIE'; + } else if (preg_match('/Firefox/i', $str)) { + $val = 'Firefox'; + } else if (preg_match('/Chrome/i', $str)) { + $val = 'Chrome'; + } else if (preg_match('/Safari/i', $str)) { + $val = 'Safari'; + } else if (preg_match('/Opera/i', $str)) { + $val = 'Opera'; + } else { + $val = 'Other'; + } + return $val; + } else { + return 'unknow'; + } +} + +/** + * 生成指定位数的随机字符 + * + * @static + * @access public + * @param int $len 长度 + * @param string $format 格式 + * @return string + * @author 317743968 <2019/07/25> + */ +function getRandomString($len = 6, $format = 'ALL') { + switch($format) { + case 'ALL': + $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-@#~'; + break; + case 'CHAR': + $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';//-@#~ + break; + case 'NUMBER': + $chars = '0123456789'; + break; + default: + $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-@#~'; + break; + } + + mt_srand((double) microtime() * 1000000 * getmypid()); + + $string = ''; + while(strlen($string) < $len) { + $string .= substr($chars, (mt_rand() % strlen($chars)), 1); + } + + return $string; +} + +/** + * 个性化时间函数 + * @param string $time 时间戳 + * @return string + */ +function time_tran($time) { + $newtime = time() - $time; + if ($newtime < 60) { + $str = '刚刚'; + }elseif ($newtime < 60 * 60) { + $min = floor($newtime/60); + $str = ''.$min.'分钟前'; + }elseif ($newtime < 60 * 60 * 24) { + $h = floor($newtime/(60*60)); + $str = ''.$h.'小时前'; + }else{ + $newtime = strtotime(date('Y-m-d', time())) - strtotime(date('Y-m-d', $time)); + if ($newtime < 60 * 60 * 24 * 3) { + $d = floor($newtime/(60*60*24)); + $str = ''.($d == 1 ? '昨天' : '前天').''; + }elseif ($newtime < 60 * 60 * 24 * 30) { + $str = ''.floor($newtime / (60*60*24)).'天前'; + }elseif ($newtime < 60 * 60 * 24 * 30 * 12) { + $str = floor($newtime / (60*60*24*30)).'月前'; + }else{ + $str = '一年前'; + } + } + return $str; +} + +//创建文件夹 +function mkdirs($dir, $mode = 0777) { + if (is_dir($dir) || @mkdir($dir, $mode)) { + return true; + } + if (!mkdirs(dirname($dir), $mode)) { + return false; + } + return @mkdir($dir, $mode); +} + +function curl($url, $post_data = null, $method = 'post') { + //初始化 + $curl = curl_init(); + + //设置抓取的url + curl_setopt($curl, CURLOPT_URL, $url); + + //设置头文件的信息作为数据流输出 + //curl_setopt($curl, CURLOPT_HEADER, 1); + + //设置获取的信息以文件流的形式返回,而不是直接输出。 + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + + //防止CURL出错 + curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); + + //不验证ssl证书 + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); + + if ($method == 'post') { + //设置post方式提交 + curl_setopt($curl, CURLOPT_POST, 1); + //设置post数据 + curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data); + } + + //执行命令 + $data = curl_exec($curl); + + if($data === false) die('Curl error: '.curl_error($curl)); + + //关闭URL请求 + curl_close($curl); + + return $data; +} diff --git a/home.html b/home.html new file mode 100644 index 0000000..f7425c2 --- /dev/null +++ b/home.html @@ -0,0 +1,515 @@ + + + + + + 传奇霸主_传奇霸主官网_传奇霸主微端下载 + + + + + + + + + + + + + + + + +
+
+
本游戏适合18岁以上玩家进入 +
+
+
+
+
+
+
+ + 在线客服 +
+
所有游戏
+ +
+
+ + 传奇世界 + +
+ 《传奇世界》是一款ARPG角色扮演类网页游戏。宏大的世界观,将上古神话背景与游戏体验做了完美的结合,只有不断历练自己才能通过各种挑战,顺利击杀精英、逼退对手,获得珍稀奖励、给力装备,为征战之途做好万全的准备。 +
+
+
+
+
+
+
+
+ + + +
+
+
+ + + + +
+ + + 查看更多 + + + + +
+
+
+ +
+
+ +
+ +
+
+
+
+
+ +

职业技能:

+

职业属性:近战物理攻击

+

上手难度: + + + + + +

+
+
+ + +
+
+
+ +
+
+ +
+
+
+
+
+
+ +

职业技能:

+

职业属性:远程魔法攻击

+

上手难度: + + + + + +

+
+
+ + +
+
+
+ +
+
+ +
+
+
+
+
+
+ +

职业技能:

+

职业属性:远程道术攻击

+

上手难度: + + + + + +

+
+
+ + +
+
+
+ +
+
+ +
+
+
+
+
+ + + +
+
+
+
+
+ + +
+ +
+
+ +
+
+ +
+ + + + +

您的意见非常宝贵,请在这里留下给我们的建议,

+

我们将在后续做出相关改进。

+ + +
+
+
+ + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9a82be1 --- /dev/null +++ b/index.html @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + 清渊传奇 经典复古 轻松打金 + + + + + + +
+
+ + +
+
+ + + + +
+ +
+ + +
+
+ + +
+
+ + + + + + \ No newline at end of file diff --git a/index.nginx-debian.html b/index.nginx-debian.html new file mode 100644 index 0000000..2ca3b95 --- /dev/null +++ b/index.nginx-debian.html @@ -0,0 +1,25 @@ + + + +Welcome to nginx! + + + +

Welcome to nginx!

+

If you see this page, the nginx web server is successfully installed and +working. Further configuration is required.

+ +

For online documentation and support please refer to +nginx.org.
+Commercial support is available at +nginx.com.

+ +

Thank you for using nginx.

+ + diff --git a/ios.html b/ios.html new file mode 100644 index 0000000..e30dacf --- /dev/null +++ b/ios.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/js/assetsmanager.min_f5f8ba18.js b/js/assetsmanager.min_f5f8ba18.js new file mode 100644 index 0000000..f779432 --- /dev/null +++ b/js/assetsmanager.min_f5f8ba18.js @@ -0,0 +1 @@ +var __reflect=this&&this.__reflect||function(e,r,t){e.__class__=r,t?t.push(r):t=[r],e.__types__=e.__types__?t.concat(e.__types__):t},__extends=this&&this.__extends||function(e,r){function t(){this.constructor=e}for(var o in r)r.hasOwnProperty(o)&&(e[o]=r[o]);t.prototype=r.prototype,e.prototype=new t},__decorate=this&&this.__decorate||function(e,r,t,o){var n,i=arguments.length,a=3>i?r:null===o?o=Object.getOwnPropertyDescriptor(r,t):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,r,t,o);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(3>i?n(a):i>3?n(r,t,a):n(r,t))||a);return i>3&&a&&Object.defineProperty(r,t,a),a},RES;!function(e){e.checkNull=function(e,r,t){var o=t.value;t.value=function(){for(var e=[],t=0;t=0?"legacyResourceConfig":"resourceConfig",o={type:t,root:r,url:e,name:e}}e.resourceNameSelector=function(e){return e},e.getResourceInfo=r;var o;e.setConfigURL=t;var n=function(){function t(){}return t.prototype.init=function(){return this.config||(this.config={alias:{},groups:{},resourceRoot:o.root,mergeSelector:null,fileSystem:null,loadGroup:[]}),e.queue.pushResItem(o)["catch"](function(r){return e.isCompatible||r.__resource_manager_error__||(r.error?console.error(r.error.stack):console.error(r.stack),r=new e.ResourceManagerError(1002)),e.host.remove(o),Promise.reject(r)})},t.prototype.getGroupByName=function(r){var t=this.config.groups[r],o=[];if(!t)return o;for(var n=0,i=t;n=0&&(t=e.substr(r+1),e=e.substr(0,r));var o=this.getResource(e);return o?{r:o,key:e,subkey:t}:null},t.prototype.getKeyByAlias=function(e){return this.config.alias[e]?this.config.alias[e]:e},t.prototype.getResource=function(e){var t=this.config.alias[e];t||(t=e);var o=r(t);return o?o:null},t.prototype.createGroup=function(e,r,t){if(void 0===t&&(t=!1),!t&&this.config.groups[e]||!r||0==r.length)return!1;for(var o=[],n=0,i=r;ni;i++){var a=e[i];a.groupNames||(a.groupNames=[]),a.groupNames.push(r)}this.groupTotalDic[r]=e.length,this.numLoadedDic[r]=0,this.updatelistPriority(e,t),this.reporterDic[r]=o;var s=new egret.EventDispatcher;this.dispatcherDic[r]=s;var u=new Promise(function(e,r){s.addEventListener("complete",e,null),s.addEventListener("error",function(e){r(e.data)},null)});return this.promiseHash[r]=u,this.loadNextResource(),u},r.prototype.updatelistPriority=function(e,r){void 0==this.itemListPriorityDic[r]&&(this.itemListPriorityDic[r]=[]);for(var t=0,o=e;ti){this.itemListPriorityDic[r].push(n);var a=this.itemListPriorityDic[i].indexOf(n);this.itemListPriorityDic[i].splice(a,1)}}}},r.prototype.findPriorityInDic=function(e){for(var r in this.itemListPriorityDic)if(this.itemListPriorityDic[r].indexOf(e)>-1)return parseInt(r)},r.prototype.loadNextResource=function(){for(;this.loadingCountr.maxRetryTimes))return r.retryTimesDic[t.name]=n+1,r.failedList.push(t),void r.loadNextResource();if(delete r.retryTimesDic[t.name],r.promiseHash[t.root+t.name]){var i=r.deleteDispatcher(t.root+t.name);i.dispatchEventWith("error",!1,{r:t,error:o})}var a=t.groupNames;if(a){delete t.groupNames;for(var s=0,u=a;s0)return this.failedList.shift();var e=Number.NEGATIVE_INFINITY;for(var r in this.itemListPriorityDic)e=Math.max(e,r);var t=this.itemListPriorityDic[e];if(t)return 0==t.length?(delete this.itemListPriorityDic[e],this.getOneResourceInfoInGroup()):t.shift()},r.prototype.setGroupProgress=function(e,r){var t=this.reporterDic[e];this.numLoadedDic[e]++;var o=this.numLoadedDic[e],n=this.groupTotalDic[e];return t&&t.onProgress&&t.onProgress(o,n,r),o==n},r.prototype.loadGroupEnd=function(e,r){delete this.groupTotalDic[e],delete this.numLoadedDic[e],delete this.reporterDic[e];var t=this.deleteDispatcher(e);if(r){delete this.groupErrorDic[e];var o=this.loadItemErrorDic[e];delete this.loadItemErrorDic[e],t.dispatchEventWith("error",!1,{itemList:o,lastError:r})}else{var n=this.groupErrorDic[e];if(delete this.groupErrorDic[e],n){var o=this.loadItemErrorDic[e];delete this.loadItemErrorDic[e];var i=this.errorDic[e];delete this.errorDic[e],t.dispatchEventWith("error",!1,{itemList:o,error:i})}else t.dispatchEventWith("complete")}},r.prototype.deleteDispatcher=function(e){delete this.promiseHash[e];var r=this.dispatcherDic[e];return delete this.dispatcherDic[e],r},r.prototype.loadResource=function(r,t){if(!t){if(1==e.FEATURE_FLAG.FIX_DUPLICATE_LOAD){var o=e.host.state[r.root+r.name];if(2==o)return Promise.resolve(e.host.get(r));if(1==o)return r.promise}t=e.processor.isSupport(r)}if(!t)throw new e.ResourceManagerError(2001,r.name,r.type);e.host.state[r.root+r.name]=1;var n=t.onLoadStart(e.host,r);return r.promise=n,n},r.prototype.unloadResource=function(r){var t=e.host.get(r);if(!t)return console.warn("尝试释放不存在的资源:",r.name),!1;var o=e.processor.isSupport(r);return o?(o.onRemoveStart(e.host,r),e.host.remove(r),1==r.extra&&e.config.removeResourceData(r),!0):!0},r}();e.ResourceLoader=r,__reflect(r.prototype,"RES.ResourceLoader")}(RES||(RES={}));var RES;!function(e){}(RES||(RES={}));var RES;!function(e){var r;!function(e){function r(e){var r=e.split("/");return r.filter(function(e,t){return!!e||t==r.length-1}).join("/")}function t(e){return e.substr(e.lastIndexOf("/")+1)}function o(e){return e.substr(0,e.lastIndexOf("/"))}e.normalize=r,e.basename=t,e.dirname=o}(r=e.path||(e.path={}))}(RES||(RES={}));var RES;!function(e){function r(){e.config.config.fileSystem.profile(),console.log(t);var r=0;for(var o in t){var n=t[o];n instanceof egret.Texture&&(r+=n.$bitmapWidth*n.$bitmapHeight*4)}console.log("gpu size : "+(r/1024).toFixed(3)+"kb")}var t={};e.profile=r,e.host={state:{},get resourceConfig(){return e.config},load:function(r,t){var o="string"==typeof t?e.processor._map[t]:t;return e.queue.loadResource(r,o)},unload:function(r){return e.queue.unloadResource(r)},save:function(r,o){e.host.state[r.root+r.name]=2,delete r.promise,t[r.root+r.name]=o},get:function(e){return t[e.root+e.name]},remove:function(r){delete e.host.state[r.root+r.name],delete t[r.root+r.name]}},e.config=new e.ResourceConfig,e.queue=new e.ResourceLoader;var o=function(e){function r(t,o,n){var i=e.call(this)||this;return i.__resource_manager_error__=!0,i.name=t.toString(),i.message=r.errorMessage[t].replace("{0}",o).replace("{1}",n),i}return __extends(r,e),r.errorMessage={1001:"文件加载失败:{0}",1002:"ResourceManager 初始化失败:配置文件加载失败",2001:"{0}解析失败,不支持指定解析类型:'{1}',请编写自定义 Processor ,更多内容请参见 https://github.com/egret-labs/resourcemanager/blob/master/docs/README.md#processor",2002:"Analyzer 相关API 在 ResourceManager 中不再支持,请编写自定义 Processor ,更多内容请参见 https://github.com/egret-labs/resourcemanager/blob/master/docs/README.md#processor",2003:"{0}解析失败,错误原因:{1}",2004:"无法找到文件类型:{0}",2005:'RES加载了不存在或空的资源组:"{0}"',2006:"资源配置文件中无法找到特定的资源:{0}"},r}(Error);e.ResourceManagerError=o,__reflect(o.prototype,"RES.ResourceManagerError")}(RES||(RES={}));var RES;!function(e){var r=function(){function r(e){this.data=e}return r.prototype.profile=function(){console.log(this.data)},r.prototype.addFile=function(r,t){t||(t=""),r=e.path.normalize(r);var o=e.path.basename(r),n=e.path.dirname(r);this.exists(n)||this.mkdir(n);var i=this.resolve(n);i[o]={url:r,type:t}},r.prototype.getFile=function(e){var r=this.resolve(e);return r&&(r.name=e),r},r.prototype.resolve=function(r){if(""==r)return this.data;r=e.path.normalize(r);for(var t=r.split("/"),o=this.data,n=0,i=t;n=0){var o=t.split("://");t=o[0]+"://"+e.path.normalize(o[1]+"/"),r=r.replace(t,"")}else t=e.path.normalize(t+"/"),r=r.replace(t,"");return e.setConfigURL(r,t),D||(D=new P),a(D.loadConfig())}function a(r){return e.isCompatible?void r["catch"](function(e){}).then():r}function s(e,r,t){return void 0===r&&(r=0),a(D.loadGroup(e,r,t))}function u(e){return D.isGroupLoaded(e)}function c(r){return D.getGroupByName(r).map(function(r){return e.ResourceItem.convertToResItem(r)})}function l(e,r,t){return void 0===t&&(t=!1),D.createGroup(e,r,t)}function f(e){return D.hasRes(e)}function p(e){return D.getRes(e)}function g(e,r,t){return a(D.getResAsync.apply(D,arguments))}function d(e,r,t,o){if(void 0===o&&(o=""),!D){var n=egret.sys.tr(3200);return egret.warn(n),Promise.reject(n)}return a(D.getResByUrl(e,r,t,o))}function h(e,r){return D.destroyRes(e,r)}function v(e){D||(D=new P),D.setMaxLoadingThread(e)}function m(e){D.setMaxRetryTimes(e)}function R(e,r,t,o,n){void 0===o&&(o=!1),void 0===n&&(n=0),D||(D=new P),D.addEventListener(e,r,t,o,n)}function y(e,r,t,o){void 0===o&&(o=!1),D.removeEventListener(e,r,t,o)}function E(e){D.addResourceData(e)}function _(){return D||(D=new P),D.vcs}function S(e){D||(D=new P),D.registerVersionController(e)}function L(e){return D.vcs?D.vcs.getVirtualUrl(e):e}e.nameSelector=r,e.typeSelector=t,e.registerAnalyzer=o,e.setIsCompatible=n,e.isCompatible=!1,e.loadConfig=i,e.loadGroup=s,e.isGroupLoaded=u,e.getGroupByName=c,e.createGroup=l,e.hasRes=f,e.getRes=p,e.getResAsync=g,e.getResByUrl=d,e.destroyRes=h,e.setMaxLoadingThread=v,e.setMaxRetryTimes=m,e.addEventListener=R,e.removeEventListener=y,e.$addResourceData=E,e.getVersionController=_,e.registerVersionController=S,e.getVirtualUrl=L;var P=function(r){function t(){var t=r.call(this)||this;return t.isVcsInit=!1,t.normalLoadConfig=function(){return e.config.init().then(function(r){e.ResourceEvent.dispatchResourceEvent(t,e.ResourceEvent.CONFIG_COMPLETE)},function(r){return e.ResourceEvent.dispatchResourceEvent(t,e.ResourceEvent.CONFIG_LOAD_ERROR),Promise.reject(r)})},e.VersionController&&(t.vcs=new e.VersionController),t}return __extends(t,r),t.prototype.registerVersionController=function(e){this.vcs=e,this.isVcsInit=!1},t.prototype.loadConfig=function(){var e=this;return!this.isVcsInit&&this.vcs?(this.isVcsInit=!0,this.vcs.init().then(function(){return e.normalLoadConfig()})):this.normalLoadConfig()},t.prototype.isGroupLoaded=function(r){var t=e.config.getGroupByName(r);return t.every(function(r){return null!=e.host.get(r)})},t.prototype.getGroupByName=function(r){return e.config.getGroupByName(r)},t.prototype.loadGroup=function(r,t,o){var n=this;void 0===t&&(t=0);var i={onProgress:function(t,i,a){o&&o.onProgress&&o.onProgress(t,i,a),e.ResourceEvent.dispatchResourceEvent(n,e.ResourceEvent.GROUP_PROGRESS,r,a,t,i)}};return this._loadGroup(r,t,i).then(function(t){-1==e.config.config.loadGroup.indexOf(r)&&e.config.config.loadGroup.push(r),e.ResourceEvent.dispatchResourceEvent(n,e.ResourceEvent.GROUP_COMPLETE,r)},function(t){if(-1==e.config.config.loadGroup.indexOf(r)&&e.config.config.loadGroup.push(r),t.itemList)for(var o=t.itemList,i=o.length,a=0;i>a;a++){var s=o[a];delete s.promise,e.ResourceEvent.dispatchResourceEvent(n,e.ResourceEvent.ITEM_LOAD_ERROR,r,s)}return e.isCompatible&&console.warn(t.error.message),e.ResourceEvent.dispatchResourceEvent(n,e.ResourceEvent.GROUP_LOAD_ERROR,r),Promise.reject(t.error)})},t.prototype._loadGroup=function(r,t,o){void 0===t&&(t=0);var n=e.config.getGroupByName(r);return 0==n.length?new Promise(function(t,o){o({error:new e.ResourceManagerError(2005,r)})}):e.queue.pushResGroup(n,r,t,o)},t.prototype.createGroup=function(r,t,o){return void 0===o&&(o=!1),e.config.createGroup(r,t,o)},t.prototype.hasRes=function(r){return null!=e.config.getResourceWithSubkey(r)},t.prototype.getRes=function(r){var t=e.config.getResourceWithSubkey(r);if(t){var o=t.r,n=t.key,i=t.subkey,a=e.processor.isSupport(o);return a&&a.getData&&i?a.getData(e.host,o,n,i):e.host.get(o)}return null},t.prototype.getResAsync=function(r,t,o){var n=this,i=r,a=e.config.getResourceWithSubkey(r);if(null==a)return t&&t.call(o,null,i),Promise.reject(new e.ResourceManagerError(2006,r));var s=this.getRes(r);if(s)return t&&egret.callLater(function(){t.call(o,s,i)},this),Promise.resolve(s);var u=a.r,c=a.subkey;return e.queue.pushResItem(u).then(function(n){e.host.save(u,n);var a=e.processor.isSupport(u);return a&&a.getData&&c&&(n=a.getData(e.host,u,r,c)),t&&t.call(o,n,i),n},function(r){return e.host.remove(u),e.ResourceEvent.dispatchResourceEvent(n,e.ResourceEvent.ITEM_LOAD_ERROR,"",u),t?(t.call(o,null,i),Promise.reject(null)):Promise.reject(r)})},t.prototype.getResByUrl=function(r,t,o,n){var i=this;void 0===n&&(n="");var a=e.config.getResource(r);if(!a&&(n||(n=e.config.__temp__get__type__via__url(r)),a={name:r,url:r,type:n,root:"",extra:1},e.config.addResourceData(a),a=e.config.getResource(r),!a))throw"never";return e.queue.pushResItem(a).then(function(r){return e.host.save(a,r),t&&a&&t.call(o,r,a.url),r},function(n){return e.host.remove(a),e.ResourceEvent.dispatchResourceEvent(i,e.ResourceEvent.ITEM_LOAD_ERROR,"",a),t?(t.call(o,null,r),Promise.reject(null)):Promise.reject(n)})},t.prototype.destroyRes=function(r,t){void 0===t&&(t=!0);var o=e.config.getGroupByName(r);if(o&&o.length>0){var n=e.config.config.loadGroup.indexOf(r);if(-1==n)return!1;if(t||1==e.config.config.loadGroup.length&&e.config.config.loadGroup[0]==r){for(var i=0,a=o;ir&&(r=1),e.queue.thread=r},t.prototype.setMaxRetryTimes=function(r){r=Math.max(r,0),e.queue.maxRetryTimes=r},t.prototype.addResourceData=function(r){r.root="",e.config.addResourceData(r)},__decorate([e.checkNull],t.prototype,"hasRes",null),__decorate([e.checkNull],t.prototype,"getRes",null),__decorate([e.checkNull],t.prototype,"getResAsync",null),__decorate([e.checkNull],t.prototype,"getResByUrl",null),t}(egret.EventDispatcher);e.Resource=P,__reflect(P.prototype,"RES.Resource");var D}(RES||(RES={}));var RES;!function(e){var r=function(r){function t(e,t,o){void 0===t&&(t=!1),void 0===o&&(o=!1);var n=r.call(this,e,t,o)||this;return n.itemsLoaded=0,n.itemsTotal=0,n.groupName="",n}return __extends(t,r),t.dispatchResourceEvent=function(r,o,n,i,a,s){void 0===n&&(n=""),void 0===i&&(i=void 0),void 0===a&&(a=0),void 0===s&&(s=0);var u=egret.Event.create(t,o);u.groupName=n,i&&(u.resItem=e.ResourceItem.convertToResItem(i)),u.itemsLoaded=a,u.itemsTotal=s;var c=r.dispatchEvent(u);return egret.Event.release(u),c},t.ITEM_LOAD_ERROR="itemLoadError",t.CONFIG_COMPLETE="configComplete",t.CONFIG_LOAD_ERROR="configLoadError",t.GROUP_PROGRESS="groupProgress",t.GROUP_COMPLETE="groupComplete",t.GROUP_LOAD_ERROR="groupLoadError",t}(egret.Event);e.ResourceEvent=r,__reflect(r.prototype,"RES.ResourceEvent")}(RES||(RES={}));var RES;!function(e){var r;!function(r){function t(r){var t=r.name;if(e.config.config)for(var o in e.config.config.alias)e.config.config.alias[o]==r.url&&(t=o);else t=r.url;var n={name:t,url:r.url,type:r.type,data:r,root:r.root};return n}r.TYPE_XML="xml",r.TYPE_IMAGE="image",r.TYPE_BIN="bin",r.TYPE_TEXT="text",r.TYPE_JSON="json",r.TYPE_SHEET="sheet",r.TYPE_FONT="font",r.TYPE_SOUND="sound",r.TYPE_TTF="ttf",r.convertToResItem=t}(r=e.ResourceItem||(e.ResourceItem={}))}(RES||(RES={}));var RES;!function(e){var r=function(){function e(){}return e.prototype.init=function(){return this.versionInfo=this.getLocalData("all.manifest"),Promise.resolve()},e.prototype.getVirtualUrl=function(e){return e},e.prototype.getLocalData=function(e){if(egret_native.readUpdateFileSync&&egret_native.readResourceFileSync){var r=egret_native.readUpdateFileSync(e);if(null!=r)return JSON.parse(r);if(r=egret_native.readResourceFileSync(e),null!=r)return JSON.parse(r)}return null},e}();e.NativeVersionController=r,__reflect(r.prototype,"RES.NativeVersionController",["RES.IVersionController"]),egret.Capabilities.runtimeType==egret.RuntimeType.NATIVE&&(e.VersionController=r)}(RES||(RES={}));var RES;!function(e){var r;!function(r){function t(e){return r._map[e.type]}function o(e,t){r._map[e]=t}function n(r,t){var o=this;return new Promise(function(n,i){var a=function(){var e=r.data?r.data:r.response;n(e)},s=function(){var r=new e.ResourceManagerError(1001,t.url);i(r)};r.addEventListener(egret.Event.COMPLETE,a,o),r.addEventListener(egret.IOErrorEvent.IO_ERROR,s,o)})}function i(e,r){if(-1!=r.indexOf("://"))return r;e=e.split("\\").join("/");var t=e.match(/#.*|\?.*/),o="";t&&(o=t[0]);var n=e.lastIndexOf("/");return e=-1!=n?e.substring(0,n+1)+r:r,e+o}function a(e){return{name:e.name+"_alpha",url:e.etc1_alpha_url,type:"ktx",root:e.root}}r.isSupport=t,r.map=o,r.getRelativePath=i,r.ImageProcessor={onLoadStart:function(r,t){var o=new egret.ImageLoader;return o.load(e.getVirtualUrl(t.root+t.url)),n(o,t).then(function(e){var o=new egret.Texture;o._setBitmapData(e);var n=r.resourceConfig.getResource(t.name);if(n&&n.scale9grid){var i=n.scale9grid.split(",");o.scale9Grid=new egret.Rectangle(parseInt(i[0]),parseInt(i[1]),parseInt(i[2]),parseInt(i[3]))}return o})},onRemoveStart:function(e,r){var t=e.get(r);t.dispose()}},r.KTXTextureProcessor={onLoadStart:function(e,r){return e.load(r,"bin").then(function(t){if(!t)return console.error("ktx:"+r.root+r.url+" is null"),null;var o=new egret.KTXContainer(t,1);if(o.isInvalid)return console.error("ktx:"+r.root+r.url+" is invalid"),null;var n=new egret.BitmapData(t);n.debugCompressedTextureURL=r.root+r.url,n.format="ktx",o.uploadLevels(n,!1);var i=new egret.Texture;i._setBitmapData(n);var a=e.resourceConfig.getResource(r.name);if(a&&a.scale9grid){var s=a.scale9grid.split(",");i.scale9Grid=new egret.Rectangle(parseInt(s[0]),parseInt(s[1]),parseInt(s[2]),parseInt(s[3]))}return e.save(r,i),i},function(t){throw e.remove(r),t})},onRemoveStart:function(e,r){var t=e.get(r);t&&t.dispose()}},r.makeEtc1SeperatedAlphaResourceInfo=a,r.ETC1KTXProcessor={onLoadStart:function(e,r){return e.load(r,"ktx").then(function(t){if(!t)return null;if(r.etc1_alpha_url){var o=a(r);return e.load(o,"ktx").then(function(r){return t&&t.$bitmapData&&r.$bitmapData?(t.$bitmapData.etcAlphaMask=r.$bitmapData,e.save(o,r)):e.remove(o),t},function(r){throw e.remove(o),r})}return t},function(t){throw e.remove(r),t})},onRemoveStart:function(e,r){var t=e.get(r);if(t&&t.dispose(),r.etc1_alpha_url){var o=a(r),n=e.get(o);n&&n.dispose(),e.unload(o)}}},r.BinaryProcessor={onLoadStart:function(r,t){var o=new egret.HttpRequest;return o.responseType=egret.HttpResponseType.ARRAY_BUFFER,o.open(e.getVirtualUrl(t.root+t.url),"get"),o.send(),n(o,t)},onRemoveStart:function(e,r){}},r.TextProcessor={onLoadStart:function(r,t){var o=new egret.HttpRequest;return o.responseType=egret.HttpResponseType.TEXT,o.open(e.getVirtualUrl(t.root+t.url),"get"),o.send(),n(o,t)},onRemoveStart:function(e,r){return!0}},r.JsonProcessor={onLoadStart:function(e,r){return e.load(r,"text").then(function(e){var r=JSON.parse(e);return r})},onRemoveStart:function(e,r){}},r.XMLProcessor={onLoadStart:function(e,r){return e.load(r,"text").then(function(e){var r=egret.XML.parse(e);return r})},onRemoveStart:function(e,r){return!0}},r.CommonJSProcessor={onLoadStart:function(r,t){return r.load(t,"text").then(function(r){var o=new Function("require","exports",r),n=function(){},i={};try{o(n,i)}catch(a){throw new e.ResourceManagerError(2003,t.name,a.message)}return i})},onRemoveStart:function(e,r){}},r.SheetProcessor={onLoadStart:function(r,t){return r.load(t,"json").then(function(o){var n=r.resourceConfig.getResource(e.nameSelector(o.file));if(!n){var a=i(t.url,o.file);n={name:a,url:a,type:"image",root:t.root}}return r.load(n).then(function(e){if(!e)return null;var t=o.frames,i=new egret.SpriteSheet(e);i.$resourceInfo=n;for(var a in t){var s=t[a],u=i.createTexture(a,s.x,s.y,s.w,s.h,s.offX,s.offY,s.sourceW,s.sourceH);if(s.scale9grid){var c=s.scale9grid,l=c.split(",");u.scale9Grid=new egret.Rectangle(parseInt(l[0]),parseInt(l[1]),parseInt(l[2]),parseInt(l[3]))}}return r.save(n,e),i},function(e){throw r.remove(n),e})})},getData:function(e,r,t,o){var n=e.get(r);return n?n.getTexture(o):null},onRemoveStart:function(e,r){var t=e.get(r),o=t.$resourceInfo;t.dispose(),e.unload(o)}};var s=function(e,r){var t="",o=r.split("\n"),n=o[2],i=n.indexOf('file="');-1!=i&&(n=n.substring(i+6),i=n.indexOf('"'),t=n.substring(0,i)),e=e.split("\\").join("/");var i=e.lastIndexOf("/");return e=-1!=i?e.substring(0,i+1)+t:t};r.FontProcessor={onLoadStart:function(r,t){return r.load(t,"text").then(function(o){var n;try{n=JSON.parse(o)}catch(a){n=o}var u;u="string"==typeof n?s(t.url,n):i(t.url,n.file);var c=r.resourceConfig.getResource(e.nameSelector(u));return c||(c={name:u,url:u,type:"image",root:t.root}),r.load(c).then(function(e){var t=new egret.BitmapFont(e,n);return t.$resourceInfo=c,r.save(c,e),t},function(e){throw r.remove(c),e})})},onRemoveStart:function(e,r){var t=e.get(r),o=t.$resourceInfo;e.unload(o)}},r.SoundProcessor={onLoadStart:function(r,t){var o=new egret.Sound;return o.load(e.getVirtualUrl(t.root+t.url)),n(o,t).then(function(){return o})},onRemoveStart:function(e,r){var t=e.get(r);t.close()}},r.MovieClipProcessor={onLoadStart:function(r,t){var o,n;return r.load(t,"json").then(function(i){o=i;var a=t.name,s=a.substring(0,a.lastIndexOf("."))+".png";if(n=r.resourceConfig.getResource(s),!n)throw new e.ResourceManagerError(1001,s);return r.load(n)}).then(function(e){r.save(n,e);var t=e,i=new egret.MovieClipDataFactory(o,t);return i})},onRemoveStart:function(e,r){var t=e.get(r);t.clearCache(),t.$spriteSheet.dispose();var o=r.name,n=o.substring(0,o.lastIndexOf("."))+".png",i=e.resourceConfig.getResource(n);i&&e.unload(i)}},r.MergeJSONProcessor={onLoadStart:function(r,t){return r.load(t,"json").then(function(r){for(var o in r)e.config.addSubkey(o,t.name);return r})},getData:function(e,r,t,o){var n=e.get(r);return n?n[o]:(console.error("missing resource :"+r.name),null)},onRemoveStart:function(e,r){}},r.TTFProcessor={onLoadStart:function(e,r){return e.load(r,"bin").then(function(e){egret.Capabilities.runtimeType==egret.RuntimeType.WEB&&(egret.sys.fontResourceCache||(egret.sys.fontResourceCache={}),egret.sys.fontResourceCache[r.root+r.url]=e)})},onRemoveStart:function(e,r){if(egret.Capabilities.runtimeType==egret.RuntimeType.WEB){var t=egret.sys.fontResourceCache;t&&t[r.url]&&(t[r.root+r.url]=null)}}},r.LegacyResourceConfigProcessor={onLoadStart:function(r,t){return r.load(t,"json").then(function(o){var n=e.config.config,i=t.root,a=n.fileSystem;a||(a={fsData:{},getFile:function(e){return p[e]},addFile:function(e){e.type||(e.type=""),void 0==i&&(e.root=""),p[e.name]=e},profile:function(){console.log(p)},removeFile:function(e){delete p[e]}},n.fileSystem=a);for(var s=n.groups,u=0,c=o.groups;uh&&(o=h),s>c&&(s=c),h===o&&c===s)return void(o===s?this.drawCircle(t+o,e+s,o):this.drawEllipse(t,e,2*o,2*s));var l=t+i,u=e+r,p=t+o,d=l-o,f=e+s,g=u-s;this.moveTo(l,g),this.curveTo(l,u,d,u),this.lineTo(p,u),this.curveTo(t,u,t,g),this.lineTo(t,f),this.curveTo(t,e,p,e),this.lineTo(d,e),this.curveTo(l,e,l,f),this.lineTo(l,g)},t.prototype.drawCircle=function(t,e,i){this.arcToBezier(t,e,i,i,0,2*Math.PI)},t.prototype.drawEllipse=function(t,e,i,r){var n=.5*i,a=.5*r;t+=n,e+=a,this.arcToBezier(t,e,n,a,0,2*Math.PI)},t.prototype.drawArc=function(t,e,i,r,n,a){a?n>=r&&(n-=2*Math.PI):r>=n&&(n+=2*Math.PI),this.arcToBezier(t,e,i,i,r,n,a)},t.prototype.arcToBezier=function(t,e,i,r,n,a,o){var s=.5*Math.PI,h=n,c=h;o?(c+=-s-h%s,a>c&&(c=a)):(c+=s-h%s,c>a&&(c=a));var l=t+Math.cos(h)*i,u=e+Math.sin(h)*r;(this.$lastX!=l||this.$lastY!=u)&&this.moveTo(l,u);for(var p=Math.cos(h),d=Math.sin(h),f=0;4>f;f++){var g=c-h,$=4*Math.tan(g/4)/3,y=l-d*$*i,v=u+p*$*r;p=Math.cos(c),d=Math.sin(c),l=t+p*i,u=e+d*r;var m=l+d*$*i,b=u-p*$*r;if(this.cubicCurveTo(y,v,m,b,l,u),c===a)break;h=c,o?(c=h-s,a>c&&(c=a)):(c=h+s,c>a&&(c=a))}},t}();t.Path2D=e,__reflect(e.prototype,"egret.sys.Path2D")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){t.fontMapping={}}(egret||(egret={}));var egret;!function(t){function e(){var t=Object.create(null);return t.__v8__=void 0,delete t.__v8__,t}t.createMap=e}(egret||(egret={}));var egret;!function(t){function e(){return""}function i(t){throw new Error("#"+t)}function r(){}function n(){}t.getString=e,t.$error=i,t.$warn=r,t.$markCannotUse=n}(egret||(egret={}));var egret;!function(t){t.BitmapFillMode={REPEAT:"repeat",SCALE:"scale",CLIP:"clip"}}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i.$stageWidth=0,i.$stageHeight=0,i.$scaleMode=t.StageScaleMode.SHOW_ALL,i.$orientation=t.OrientationMode.AUTO,i.$maxTouches=99,i.$drawToSurfaceAutoClear=function(){this.$displayList&&this.$displayList.drawToSurface()},i.$drawToSurface=function(){this.$displayList&&this.$displayList.$stageRenderToSurface()},i.$resize=function(e,i){this.$stageWidth=e,this.$stageHeight=i,this.$displayList.renderBuffer.resize(e,i),this.dispatchEventWith(t.Event.RESIZE)},i.$stage=i,i.$nestLevel=1,i}return __extends(i,e),i.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(13)},Object.defineProperty(i.prototype,"frameRate",{get:function(){return t.ticker.$frameRate},set:function(e){t.ticker.$setFrameRate(e)},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"stageWidth",{get:function(){return this.$stageWidth},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"stageHeight",{get:function(){return this.$stageHeight},enumerable:!0,configurable:!0}),i.prototype.invalidate=function(){t.sys.$invalidateRenderFlag=!0},i.prototype.registerImplementation=function(e,i){t.registerImplementation(e,i)},i.prototype.getImplementation=function(e){return t.getImplementation(e)},Object.defineProperty(i.prototype,"scaleMode",{get:function(){return this.$scaleMode},set:function(t){this.$scaleMode!=t&&(this.$scaleMode=t,this.$screen.updateScreenSize())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"orientation",{get:function(){return this.$orientation},set:function(t){this.$orientation!=t&&(this.$orientation=t,this.$screen.updateScreenSize())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"textureScaleFactor",{get:function(){return t.$TextureScaleFactor},set:function(e){t.$TextureScaleFactor=e},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"maxTouches",{get:function(){return this.$maxTouches},set:function(t){this.$maxTouches!=t&&(this.$maxTouches=t,this.$screen.updateMaxTouches())},enumerable:!0,configurable:!0}),i.prototype.setContentSize=function(t,e){this.$screen.setContentSize(t,e)},i}(t.DisplayObjectContainer);t.Stage=e,__reflect(e.prototype,"egret.Stage")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.NORMAL="normal",t.ADD="add",t.ERASE="erase",t}();t.BlendMode=e,__reflect(e.prototype,"egret.BlendMode")}(egret||(egret={})),function(t){var e;!function(t){function e(t){var e=n[t];return void 0===e?0:e}function i(t){var e=r[t];return void 0===e?"normal":e}for(var r=["normal","add","erase"],n={},a=r.length,o=0;a>o;o++){var s=r[o];n[s]=o}t.blendModeToNumber=e,t.numberToBlendMode=i}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){t.ChildrenSortMode={DEFAULT:"default",INCREASE_Y:"increaseY",DECREASE_Y:"decreaseY"}}(egret||(egret={}));var egret;!function(t){t.CapsStyle={NONE:"none",ROUND:"round",SQUARE:"square"}}(egret||(egret={}));var egret;!function(t){var e=function(){function e(){}return e.compileProgram=function(i,r,n){var a=e.compileFragmentShader(i,n),o=e.compileVertexShader(i,r),s=i.createProgram();return i.attachShader(s,o),i.attachShader(s,a),i.linkProgram(s),i.getProgramParameter(s,i.LINK_STATUS)||t.$warn(1020),s},e.compileFragmentShader=function(t,i){return e._compileShader(t,i,t.FRAGMENT_SHADER)},e.compileVertexShader=function(t,i){return e._compileShader(t,i,t.VERTEX_SHADER)},e._compileShader=function(t,e,i){var r=t.createShader(i);return t.shaderSource(r,e),t.compileShader(r),t.getShaderParameter(r,t.COMPILE_STATUS)?r:null},e.checkCanUseWebGL=function(){if(void 0==e.canUseWebGL)try{var t=document.createElement("canvas");e.canUseWebGL=!(!window.WebGLRenderingContext||!t.getContext("webgl")&&!t.getContext("experimental-webgl"))}catch(i){e.canUseWebGL=!1}return e.canUseWebGL},e.deleteWebGLTexture=function(e){if(e&&!e[t.engine_default_empty_texture]){var i=e[t.glContext];i&&i.deleteTexture(e)}},e.premultiplyTint=function(t,e){if(1===e)return(255*e<<24)+t;if(0===e)return 0;var i=t>>16&255,r=t>>8&255,n=255&t;return i=i*e+.5|0,r=r*e+.5|0,n=n*e+.5|0,(255*e<<24)+(i<<16)+(r<<8)+n},e}();t.WebGLUtils=e,__reflect(e.prototype,"egret.WebGLUtils")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(e,i,r){return void 0===i&&(i=!1),void 0===r&&(r=!1),t.call(this,e,i,r)||this}return __extends(e,t),e.FOCUS_IN="focusIn",e.FOCUS_OUT="focusOut",e}(t.Event);t.FocusEvent=e,__reflect(e.prototype,"egret.FocusEvent")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return __extends(e,t),e.PERMISSION_DENIED="permissionDenied",e.UNAVAILABLE="unavailable",e}(t.Event);t.GeolocationEvent=e,__reflect(e.prototype,"egret.GeolocationEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r){void 0===i&&(i=!1),void 0===r&&(r=!1);var n=e.call(this,t,i,r)||this;return n._status=0,n}return __extends(i,e),Object.defineProperty(i.prototype,"status",{get:function(){return this._status},enumerable:!0,configurable:!0}),i.dispatchHTTPStatusEvent=function(e,r){var n=t.Event.create(i,i.HTTP_STATUS);n._status=r;var a=e.dispatchEvent(n);return t.Event.release(n),a},i.HTTP_STATUS="httpStatus",i}(t.Event);t.HTTPStatusEvent=e,__reflect(e.prototype,"egret.HTTPStatusEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r){return void 0===i&&(i=!1),void 0===r&&(r=!1),e.call(this,t,i,r)||this}return __extends(i,e),i.dispatchIOErrorEvent=function(e){var r=t.Event.create(i,i.IO_ERROR),n=e.dispatchEvent(r);return t.Event.release(r),n},i.IO_ERROR="ioError",i}(t.Event);t.IOErrorEvent=e,__reflect(e.prototype,"egret.IOErrorEvent")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return __extends(e,t),e}(t.Event);t.MotionEvent=e,__reflect(e.prototype,"egret.MotionEvent")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return __extends(e,t),e}(t.Event);t.OrientationEvent=e,__reflect(e.prototype,"egret.OrientationEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r,n,a){void 0===i&&(i=!1),void 0===r&&(r=!1),void 0===n&&(n=0),void 0===a&&(a=0);var o=e.call(this,t,i,r)||this;return o.bytesLoaded=0,o.bytesTotal=0,o.bytesLoaded=n,o.bytesTotal=a,o}return __extends(i,e),i.dispatchProgressEvent=function(e,r,n,a){void 0===n&&(n=0),void 0===a&&(a=0);var o=t.Event.create(i,r);o.bytesLoaded=n,o.bytesTotal=a;var s=e.dispatchEvent(o);return t.Event.release(o),s},i.PROGRESS="progress",i.SOCKET_DATA="socketData",i}(t.Event);t.ProgressEvent=e,__reflect(e.prototype,"egret.ProgressEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r){return void 0===i&&(i=!1),void 0===r&&(r=!1),e.call(this,t,i,r)||this}return __extends(i,e),i.dispatchStageOrientationEvent=function(e,r){var n=t.Event.create(i,r),a=e.dispatchEvent(n);return t.Event.release(n),a},i.ORIENTATION_CHANGE="orientationChange",i}(t.Event);t.StageOrientationEvent=e,__reflect(e.prototype,"egret.StageOrientationEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r,n){void 0===i&&(i=!1),void 0===r&&(r=!1),void 0===n&&(n="");var a=e.call(this,t,i,r)||this;return a.text=n,a}return __extends(i,e),i.dispatchTextEvent=function(e,r,n){var a=t.Event.create(i,r);a.text=n;var o=e.dispatchEvent(a);return t.Event.release(a),o},i.LINK="link",i}(t.Event);t.TextEvent=e,__reflect(e.prototype,"egret.TextEvent")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r){return e.call(this,t,i,r)||this}return __extends(i,e),i.prototype.updateAfterEvent=function(){t.sys.$requestRenderingFlag=!0},i.dispatchTimerEvent=function(e,r,n,a){var o=t.Event.create(i,r,n,a),s=e.dispatchEvent(o);return t.Event.release(o),s},i.TIMER="timer",i.TIMER_COMPLETE="timerComplete",i}(t.Event);t.TimerEvent=e,__reflect(e.prototype,"egret.TimerEvent")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t}();t.CompressedTextureData=e,__reflect(e.prototype,"egret.CompressedTextureData"),t.etc_alpha_mask="etc_alpha_mask",t.engine_default_empty_texture="engine_default_empty_texture",t.is_compressed_texture="is_compressed_texture",t.glContext="glContext",t.UNPACK_PREMULTIPLY_ALPHA_WEBGL="UNPACK_PREMULTIPLY_ALPHA_WEBGL";var i=function(e){function i(i){var r=e.call(this)||this;if(r.format="image",r.$deleteSource=!0,r.compressedTextureData=[],r.debugCompressedTextureURL="",r.etcAlphaMask=null,t.nativeRender){var n=new egret_native.NativeBitmapData;n.$init(),r.$nativeBitmapData=n}return r.source=i,r.source&&(r.width=+i.width,r.height=+i.height),r}return __extends(i,e),Object.defineProperty(i.prototype,"source",{get:function(){return this.$source},set:function(e){this.$source=e,t.nativeRender&&egret_native.NativeDisplayObject.setSourceToNativeBitmapData(this.$nativeBitmapData,e)},enumerable:!0,configurable:!0}),i.create=function(e,r,n){var a="";a="arraybuffer"===e?t.Base64Util.encode(r):r;var o="image/png";"/"===a.charAt(0)?o="image/jpeg":"R"===a.charAt(0)?o="image/gif":"i"===a.charAt(0)&&(o="image/png");var s=new Image;s.src="data:"+o+";base64,"+a,s.crossOrigin="*";var h=new i(s);return s.onload=function(){s.onload=void 0,h.source=s,h.height=s.height,h.width=s.width,n&&n(h)},h},i.prototype.$dispose=function(){"webgl"==t.Capabilities.renderMode&&this.webGLTexture&&(t.WebGLUtils.deleteWebGLTexture(this.webGLTexture),this.webGLTexture=null),this.source&&this.source.dispose&&this.source.dispose(),this.source&&this.source.src&&(this.source.src=""),this.source=null,this.clearCompressedTextureData(),this.debugCompressedTextureURL="",this.etcAlphaMask=null,t.nativeRender&&egret_native.NativeDisplayObject.disposeNativeBitmapData(this.$nativeBitmapData),i.$dispose(this)},i.$addDisplayObject=function(t,e){if(e){var r=e.hashCode;if(r){if(!i._displayList[r])return void(i._displayList[r]=[t]);var n=i._displayList[r];n.indexOf(t)<0&&n.push(t)}}},i.$removeDisplayObject=function(t,e){if(e){var r=e.hashCode;if(r&&i._displayList[r]){var n=i._displayList[r],a=n.indexOf(t);a>=0&&n.splice(a,1)}}},i.$invalidate=function(e){if(e){var r=e.hashCode;if(r&&i._displayList[r])for(var n=i._displayList[r],a=0;at;t++)this.matrix2[t]=this.$matrix[t];return this.matrix2},set:function(t){this.setMatrix(t)},enumerable:!0,configurable:!0}),e.prototype.setMatrix=function(t){if(t)for(var e=0;20>e;e++)this.$matrix[e]=t[e];else for(var e=0;20>e;e++)this.$matrix[e]=0==e||6==e||12==e||18==e?1:0;for(var i=this.$matrix,r=this.$uniforms.matrix,n=this.$uniforms.colorAdd,e=0,a=0;et;t++)8===t||13===t||18===t||23===t?n[t]="-":14===t?n[t]="4":(2>=a&&(a=33554432+16777216*Math.random()|0),e=15&a,a>>=4,n[t]=r[19===t?3&e|8:e]);return n.join("")},s=function(e){function r(t,r,n){void 0===n&&(n={});var a=e.call(this)||this;a.$padding=0,a.$vertexSrc=t,a.$fragmentSrc=r;var s=t+r;return i[s]||(i[s]=o()),a.$shaderKey=i[s],a.$uniforms=n,a.type="custom",a.onPropertyChange(),a}return __extends(r,e),Object.defineProperty(r.prototype,"padding",{get:function(){return this.$padding},set:function(t){var e=this;e.$padding!=t&&(e.$padding=t,e.onPropertyChange())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"uniforms",{get:function(){return this.$uniforms},enumerable:!0,configurable:!0}),r.prototype.onPropertyChange=function(){if(t.nativeRender){var e=this;egret_native.NativeDisplayObject.setFilterPadding(e.$id,e.$padding,e.$padding,e.$padding,e.$padding),egret_native.NativeDisplayObject.setDataToFilter(e)}},r}(t.Filter);t.CustomFilter=s,__reflect(s.prototype,"egret.CustomFilter")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(t,i,r,n,a,o,s,h,c,l,u){void 0===t&&(t=4),void 0===i&&(i=45),void 0===r&&(r=0),void 0===n&&(n=1),void 0===a&&(a=4),void 0===o&&(o=4),void 0===s&&(s=1),void 0===h&&(h=1),void 0===c&&(c=!1),void 0===l&&(l=!1),void 0===u&&(u=!1);var p=e.call(this,r,n,a,o,s,h,c,l)||this,d=p;return d.$distance=t,d.$angle=i,d.$hideObject=u,d.$uniforms.dist=t,d.$uniforms.angle=i/180*Math.PI,d.$uniforms.hideObject=u?1:0,d.onPropertyChange(),p}return __extends(i,e),Object.defineProperty(i.prototype,"distance",{get:function(){return this.$distance},set:function(t){var e=this;e.$distance!=t&&(e.$distance=t,e.$uniforms.dist=t,e.onPropertyChange())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"angle",{get:function(){return this.$angle},set:function(t){var e=this;e.$angle!=t&&(e.$angle=t,e.$uniforms.angle=t/180*Math.PI,e.onPropertyChange())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"hideObject",{get:function(){return this.$hideObject},set:function(t){this.$hideObject!=t&&(this.$hideObject=t,this.$uniforms.hideObject=t?1:0)},enumerable:!0,configurable:!0}),i.prototype.$toJson=function(){return'{"distance": '+this.$distance+', "angle": '+this.$angle+', "color": '+this.$color+', "red": '+this.$red+', "green": '+this.$green+', "blue": '+this.$blue+', "alpha": '+this.$alpha+', "blurX": '+this.$blurX+', "blurY": '+this.blurY+', "strength": '+this.$strength+', "quality": '+this.$quality+', "inner": '+this.$inner+', "knockout": '+this.$knockout+', "hideObject": '+this.$hideObject+"}"},i.prototype.updatePadding=function(){var e=this;e.paddingLeft=e.blurX,e.paddingRight=e.blurX,e.paddingTop=e.blurY,e.paddingBottom=e.blurY;var i=e.distance||0,r=e.angle||0,n=0,a=0;0!=i&&(n=i*t.NumberUtils.cos(r),n=n>0?Math.ceil(n):Math.floor(n),a=i*t.NumberUtils.sin(r),a=a>0?Math.ceil(a):Math.floor(a),e.paddingLeft+=n,e.paddingRight+=n,e.paddingTop+=a,e.paddingBottom+=a)},i}(t.GlowFilter);t.DropShadowFilter=e,__reflect(e.prototype,"egret.DropShadowFilter")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.LINEAR="linear",t.RADIAL="radial",t}();t.GradientType=e,__reflect(e.prototype,"egret.GradientType")}(egret||(egret={}));var egret;!function(t){function e(t){return t%=2*Math.PI,0>t&&(t+=2*Math.PI),t}function i(t,e){for(var i=[],n=0;e>n;n++){var a=r(t,n/e);a&&i.push(a)}return i}function r(e,i){var r=0,o=0,s=0,h=e.length;if(h/2==3){var c=e[r++],l=e[r++],u=e[r++],p=e[r++],d=e[r++],f=e[r++];o=n(c,u,d,i),s=n(l,p,f,i)}else if(h/2==4){var c=e[r++],l=e[r++],u=e[r++],p=e[r++],d=e[r++],f=e[r++],g=e[r++],$=e[r++];o=a(c,u,d,g,i),s=a(l,p,f,$,i)}return t.Point.create(o,s)}function n(t,e,i,r){var n=Math.pow(1-r,2)*t+2*r*(1-r)*e+Math.pow(r,2)*i;return n}function a(t,e,i,r,n){var a=Math.pow(1-n,3)*t+3*n*Math.pow(1-n,2)*e+3*(1-n)*Math.pow(n,2)*i+Math.pow(n,3)*r;return a}var o=function(r){function n(){var e=r.call(this)||this;return e.lastX=0,e.lastY=0,e.fillPath=null,e.strokePath=null,e.topLeftStrokeWidth=0,e.bottomRightStrokeWidth=0,e.minX=1/0,e.minY=1/0,e.maxX=-(1/0),e.maxY=-(1/0),e.includeLastPosition=!0,e.$renderNode=new t.sys.GraphicsNode,e}return __extends(n,r),n.prototype.$setTarget=function(e){this.$targetDisplay&&(this.$targetDisplay.$renderNode=null),e.$renderNode=this.$renderNode,this.$targetDisplay=e,this.$targetIsSprite=e instanceof t.Sprite},n.prototype.setStrokeWidth=function(t){switch(t){case 1:this.topLeftStrokeWidth=0,this.bottomRightStrokeWidth=1;break;case 3:this.topLeftStrokeWidth=1,this.bottomRightStrokeWidth=2;break;default:var e=0|Math.ceil(.5*t);this.topLeftStrokeWidth=e,this.bottomRightStrokeWidth=e}},n.prototype.beginFill=function(e,i){void 0===i&&(i=1),e=+e||0,i=+i||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setBeginFill(e,i),this.fillPath=this.$renderNode.beginFill(e,i,this.strokePath),this.$renderNode.drawData.length>1&&this.fillPath.moveTo(this.lastX,this.lastY)},n.prototype.beginGradientFill=function(e,i,r,n,a){void 0===a&&(a=null),t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setBeginGradientFill(e,i,r,n,a),this.fillPath=this.$renderNode.beginGradientFill(e,i,r,n,a,this.strokePath),this.$renderNode.drawData.length>1&&this.fillPath.moveTo(this.lastX,this.lastY)},n.prototype.endFill=function(){t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setEndFill(),this.fillPath=null},n.prototype.lineStyle=function(e,i,r,n,a,o,s,h,c){void 0===e&&(e=0/0),void 0===i&&(i=0),void 0===r&&(r=1),void 0===n&&(n=!1),void 0===a&&(a="normal"),void 0===o&&(o=null),void 0===s&&(s=null),void 0===h&&(h=3),e=+e||0,i=+i||0,r=+r||0,h=+h||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setLineStyle(e,i,r,n,a,o,s,h),0>=e?(this.strokePath=null,this.setStrokeWidth(0)):(this.setStrokeWidth(e),this.strokePath=this.$renderNode.lineStyle(e,i,r,o,s,h,c),this.$renderNode.drawData.length>1&&this.strokePath.moveTo(this.lastX,this.lastY))},n.prototype.drawRect=function(e,i,r,n){e=+e||0,i=+i||0,r=+r||0,n=+n||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setDrawRect(e,i,r,n);var a=this.fillPath,o=this.strokePath;a&&a.drawRect(e,i,r,n),o&&o.drawRect(e,i,r,n),this.extendBoundsByPoint(e+r,i+n),this.updatePosition(e,i),this.dirty()},n.prototype.drawRoundRect=function(e,i,r,n,a,o){e=+e||0,i=+i||0,r=+r||0,n=+n||0,a=+a||0,o=+o||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setDrawRoundRect(e,i,r,n,a,o);var s=this.fillPath,h=this.strokePath;s&&s.drawRoundRect(e,i,r,n,a,o),h&&h.drawRoundRect(e,i,r,n,a,o);var c=.5*a|0,l=o?.5*o|0:c,u=e+r,p=i+n,d=p-l;this.extendBoundsByPoint(e,i),this.extendBoundsByPoint(u,p),this.updatePosition(u,d),this.dirty()},n.prototype.drawCircle=function(e,i,r){e=+e||0,i=+i||0,r=+r||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setDrawCircle(e,i,r);var n=this.fillPath,a=this.strokePath;n&&n.drawCircle(e,i,r),a&&a.drawCircle(e,i,r),this.extendBoundsByPoint(e-r-1,i-r-1),this.extendBoundsByPoint(e+r+2,i+r+2),this.updatePosition(e+r,i),this.dirty()},n.prototype.drawEllipse=function(e,i,r,n){e=+e||0,i=+i||0,r=+r||0,n=+n||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setDrawEllipse(e,i,r,n);var a=this.fillPath,o=this.strokePath;a&&a.drawEllipse(e,i,r,n),o&&o.drawEllipse(e,i,r,n),this.extendBoundsByPoint(e-1,i-1),this.extendBoundsByPoint(e+r+2,i+n+2),this.updatePosition(e+r,i+.5*n),this.dirty()},n.prototype.moveTo=function(e,i){e=+e||0,i=+i||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setMoveTo(e,i);var r=this.fillPath,n=this.strokePath;r&&r.moveTo(e,i),n&&n.moveTo(e,i),this.includeLastPosition=!1,this.lastX=e,this.lastY=i,this.dirty()},n.prototype.lineTo=function(e,i){e=+e||0,i=+i||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setLineTo(e,i);var r=this.fillPath,n=this.strokePath;r&&r.lineTo(e,i),n&&n.lineTo(e,i),this.updatePosition(e,i),this.dirty()},n.prototype.curveTo=function(e,r,n,a){e=+e||0,r=+r||0,n=+n||0,a=+a||0,t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setCurveTo(e,r,n,a);var o=this.fillPath,s=this.strokePath;o&&o.curveTo(e,r,n,a),s&&s.curveTo(e,r,n,a);for(var h=this.lastX||0,c=this.lastY||0,l=i([h,c,e,r,n,a],50),u=0;un||a===o)){i=+i||0,r=+r||0,n=+n||0,a=+a||0,o=+o||0,s=!!s,a=e(a),o=e(o),t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setDrawArc(i,r,n,a,o,s);var h=this.fillPath,c=this.strokePath;h&&(h.$lastX=this.lastX,h.$lastY=this.lastY,h.drawArc(i,r,n,a,o,s)),c&&(c.$lastX=this.lastX,c.$lastY=this.lastY,c.drawArc(i,r,n,a,o,s)),s?this.arcBounds(i,r,n,o,a):this.arcBounds(i,r,n,a,o);var l=i+Math.cos(o)*n,u=r+Math.sin(o)*n;this.updatePosition(l,u),this.dirty()}},n.prototype.dirty=function(){var e=this;if(e.$renderNode.dirtyRender=!0,!t.nativeRender){var i=e.$targetDisplay;i.$cacheDirty=!0;var r=i.$parent;r&&!r.$cacheDirty&&(r.$cacheDirty=!0,r.$cacheDirtyUp());var n=i.$maskedObject;n&&!n.$cacheDirty&&(n.$cacheDirty=!0,n.$cacheDirtyUp())}},n.prototype.arcBounds=function(t,e,i,r,n){var a=Math.PI;if(Math.abs(r-n)<.01)return this.extendBoundsByPoint(t-i,e-i),void this.extendBoundsByPoint(t+i,e+i);r>n&&(n+=2*a);for(var o=Math.cos(r)*i,s=Math.cos(n)*i,h=Math.min(o,s),c=Math.max(o,s),l=Math.sin(r)*i,u=Math.sin(n)*i,p=Math.min(l,u),d=Math.max(l,u),f=r/(.5*a),g=n/(.5*a),$=Math.ceil(f);g>=$;$++)switch($%4){case 0:c=i;break;case 1:d=i;break;case 2:h=-i;break;case 3:p=-i}h=Math.floor(h),p=Math.floor(p),c=Math.ceil(c),d=Math.ceil(d),this.extendBoundsByPoint(h+t,p+e),this.extendBoundsByPoint(c+t,d+e)},n.prototype.clear=function(){t.nativeRender&&this.$targetDisplay.$nativeDisplayObject.setGraphicsClear(),this.$renderNode.clear(),this.updatePosition(0,0),this.minX=1/0,this.minY=1/0,this.maxX=-(1/0),this.maxY=-(1/0),this.dirty()},n.prototype.extendBoundsByPoint=function(t,e){this.extendBoundsByX(t),this.extendBoundsByY(e)},n.prototype.extendBoundsByX=function(t){this.minX=Math.min(this.minX,t-this.topLeftStrokeWidth),this.maxX=Math.max(this.maxX,t+this.bottomRightStrokeWidth),this.updateNodeBounds()},n.prototype.extendBoundsByY=function(t){this.minY=Math.min(this.minY,t-this.topLeftStrokeWidth),this.maxY=Math.max(this.maxY,t+this.bottomRightStrokeWidth),this.updateNodeBounds()},n.prototype.updateNodeBounds=function(){var t=this.$renderNode;t.x=this.minX,t.y=this.minY,t.width=Math.ceil(this.maxX-this.minX),t.height=Math.ceil(this.maxY-this.minY)},n.prototype.updatePosition=function(t,e){this.includeLastPosition||(this.extendBoundsByPoint(this.lastX,this.lastY),this.includeLastPosition=!0),this.lastX=t,this.lastY=e,this.extendBoundsByPoint(t,e)},n.prototype.$measureContentBounds=function(t){this.minX===1/0?t.setEmpty():t.setTo(this.minX,this.minY,this.maxX-this.minX,this.maxY-this.minY)},n.prototype.$hitTest=function(e,i){var r=this.$targetDisplay,n=r.$getInvertedConcatenatedMatrix(),a=n.a*e+n.c*i+n.tx,o=n.b*e+n.d*i+n.ty,s=t.sys.canvasHitTestBuffer;s.resize(3,3);var h=this.$renderNode,c=t.Matrix.create();c.identity(),c.translate(1-a,1-o),t.sys.canvasRenderer.drawNodeToBuffer(h,s,c,!0),t.Matrix.release(c);try{var l=s.getPixels(1,1);if(0===l[3])return null}catch(u){throw new Error(t.sys.tr(1039))}return r},n.prototype.$onRemoveFromStage=function(){this.$renderNode&&this.$renderNode.clean(),t.nativeRender&&egret_native.NativeDisplayObject.disposeGraphicData(this)},n}(t.HashObject);t.Graphics=o,__reflect(o.prototype,"egret.Graphics")}(egret||(egret={}));var egret;!function(t){var e=Math.PI,i=2*e,r=e/180,n=[],a=function(a){function o(t,e,i,r,n,o){void 0===t&&(t=1),void 0===e&&(e=0),void 0===i&&(i=0),void 0===r&&(r=1),void 0===n&&(n=0),void 0===o&&(o=0);var s=a.call(this)||this;return s.a=t,s.b=e,s.c=i,s.d=r,s.tx=n,s.ty=o,s}return __extends(o,a),o.release=function(t){t&&n.push(t)},o.create=function(){var t=n.pop();return t||(t=new o),t},o.prototype.clone=function(){return new o(this.a,this.b,this.c,this.d,this.tx,this.ty)},o.prototype.concat=function(t){var e=this.a*t.a,i=0,r=0,n=this.d*t.d,a=this.tx*t.a+t.tx,o=this.ty*t.d+t.ty;(0!==this.b||0!==this.c||0!==t.b||0!==t.c)&&(e+=this.b*t.c,n+=this.c*t.b,i+=this.a*t.b+this.b*t.d,r+=this.c*t.a+this.d*t.c,a+=this.ty*t.c,o+=this.tx*t.b),this.a=e,this.b=i,this.c=r,this.d=n,this.tx=a,this.ty=o},o.prototype.copyFrom=function(t){return this.a=t.a,this.b=t.b,this.c=t.c,this.d=t.d,this.tx=t.tx,this.ty=t.ty,this},o.prototype.identity=function(){this.a=this.d=1,this.b=this.c=this.tx=this.ty=0},o.prototype.invert=function(){this.$invertInto(this)},o.prototype.$invertInto=function(t){var e=this.a,i=this.b,r=this.c,n=this.d,a=this.tx,o=this.ty;if(0==i&&0==r)return t.b=t.c=0,void(0==e||0==n?t.a=t.d=t.tx=t.ty=0:(e=t.a=1/e,n=t.d=1/n,t.tx=-e*a,t.ty=-n*o));var s=e*n-i*r;if(0==s)return void t.identity();s=1/s;var h=t.a=n*s;i=t.b=-i*s,r=t.c=-r*s,n=t.d=e*s,t.tx=-(h*a+r*o),t.ty=-(i*a+n*o)},o.prototype.rotate=function(e){if(e=+e,0!==e){e/=r;var i=t.NumberUtils.cos(e),n=t.NumberUtils.sin(e),a=this.a,o=this.b,s=this.c,h=this.d,c=this.tx,l=this.ty;this.a=a*i-o*n,this.b=a*n+o*i,this.c=s*i-h*n,this.d=s*n+h*i,this.tx=c*i-l*n,this.ty=c*n+l*i}},o.prototype.scale=function(t,e){1!==t&&(this.a*=t,this.c*=t,this.tx*=t),1!==e&&(this.b*=e,this.d*=e,this.ty*=e)},o.prototype.setTo=function(t,e,i,r,n,a){return this.a=t,this.b=e,this.c=i,this.d=r,this.tx=n,this.ty=a,this},o.prototype.transformPoint=function(e,i,r){var n=this.a*e+this.c*i+this.tx,a=this.b*e+this.d*i+this.ty;return r?(r.setTo(n,a),r):new t.Point(n,a)},o.prototype.translate=function(t,e){this.tx+=t,this.ty+=e},o.prototype.equals=function(t){return this.a==t.a&&this.b==t.b&&this.c==t.c&&this.d==t.d&&this.tx==t.tx&&this.ty==t.ty},o.prototype.prepend=function(t,e,i,r,n,a){var o=this.tx;if(1!=t||0!=e||0!=i||1!=r){var s=this.a,h=this.c;this.a=s*t+this.b*i,this.b=s*e+this.b*r,this.c=h*t+this.d*i,this.d=h*e+this.d*r}return this.tx=o*t+this.ty*i+n,this.ty=o*e+this.ty*r+a,this},o.prototype.append=function(t,e,i,r,n,a){var o=this.a,s=this.b,h=this.c,c=this.d;return(1!=t||0!=e||0!=i||1!=r)&&(this.a=t*o+e*h,this.b=t*s+e*c,this.c=i*o+r*h,this.d=i*s+r*c),this.tx=n*o+a*h+this.tx,this.ty=n*s+a*c+this.ty,this},o.prototype.deltaTransformPoint=function(e){var i=this,r=i.a*e.x+i.c*e.y,n=i.b*e.x+i.d*e.y;return new t.Point(r,n)},o.prototype.toString=function(){return"(a="+this.a+", b="+this.b+", c="+this.c+", d="+this.d+", tx="+this.tx+", ty="+this.ty+")"},o.prototype.createBox=function(e,i,n,a,o){void 0===n&&(n=0),void 0===a&&(a=0),void 0===o&&(o=0);var s=this;if(0!==n){n/=r;var h=t.NumberUtils.cos(n),c=t.NumberUtils.sin(n);s.a=h*e,s.b=c*i,s.c=-c*e,s.d=h*i}else s.a=e,s.b=0,s.c=0,s.d=i;s.tx=a,s.ty=o},o.prototype.createGradientBox=function(t,e,i,r,n){void 0===i&&(i=0),void 0===r&&(r=0),void 0===n&&(n=0),this.createBox(t/1638.4,e/1638.4,i,r+t/2,n+e/2)},o.prototype.$transformBounds=function(t){var e=this.a,i=this.b,r=this.c,n=this.d,a=this.tx,o=this.ty,s=t.x,h=t.y,c=s+t.width,l=h+t.height,u=e*s+r*h+a,p=i*s+n*h+o,d=e*c+r*h+a,f=i*c+n*h+o,g=e*c+r*l+a,$=i*c+n*l+o,y=e*s+r*l+a,v=i*s+n*l+o,m=0;u>d&&(m=u,u=d,d=m),g>y&&(m=g,g=y,y=m),t.x=Math.floor(g>u?u:g),t.width=Math.ceil((d>y?d:y)-t.x),p>f&&(m=p,p=f,f=m),$>v&&(m=$,$=v,v=m),t.y=Math.floor($>p?p:$),t.height=Math.ceil((f>v?f:v)-t.y)},o.prototype.getDeterminant=function(){return this.a*this.d-this.b*this.c},o.prototype.$getScaleX=function(){var t=this;if(0==t.b)return t.a;var e=Math.sqrt(t.a*t.a+t.b*t.b);return this.getDeterminant()<0?-e:e},o.prototype.$getScaleY=function(){var t=this;if(0==t.c)return t.d;var e=Math.sqrt(t.c*t.c+t.d*t.d);return this.getDeterminant()<0?-e:e},o.prototype.$getSkewX=function(){return this.d<0?Math.atan2(this.d,this.c)+e/2:Math.atan2(this.d,this.c)-e/2},o.prototype.$getSkewY=function(){return this.a<0?Math.atan2(this.b,this.a)-e:Math.atan2(this.b,this.a)},o.prototype.$updateScaleAndRotation=function(e,n,a,o){if(!(0!=a&&a!=i||0!=o&&o!=i))return this.a=e,this.b=this.c=0,void(this.d=n);a/=r,o/=r;var s=t.NumberUtils.cos(a),h=t.NumberUtils.sin(a);a==o?(this.a=s*e,this.b=h*e):(this.a=t.NumberUtils.cos(o)*e,this.b=t.NumberUtils.sin(o)*e),this.c=-h*n,this.d=s*n},o.prototype.$preMultiplyInto=function(t,e){var i=t.a*this.a,r=0,n=0,a=t.d*this.d,o=t.tx*this.a+this.tx,s=t.ty*this.d+this.ty;(0!==t.b||0!==t.c||0!==this.b||0!==this.c)&&(i+=t.b*this.c,a+=t.c*this.b,r+=t.a*this.b+t.b*this.d,n+=t.c*this.a+t.d*this.c,o+=t.ty*this.c,s+=t.tx*this.b),e.a=i,e.b=r,e.c=n,e.d=a,e.tx=o,e.ty=s},o}(t.HashObject);t.Matrix=a,__reflect(a.prototype,"egret.Matrix"),t.$TempMatrix=new a}(egret||(egret={}));var egret;!function(t){var e=[],i=function(i){function r(t,e,r,n){void 0===t&&(t=0),void 0===e&&(e=0),void 0===r&&(r=0),void 0===n&&(n=0);var a=i.call(this)||this;return a.x=t,a.y=e,a.width=r,a.height=n,a}return __extends(r,i),r.release=function(t){t&&e.push(t)},r.create=function(){var t=e.pop();return t||(t=new r),t},Object.defineProperty(r.prototype,"right",{get:function(){return this.x+this.width},set:function(t){this.width=t-this.x},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"bottom",{get:function(){return this.y+this.height},set:function(t){this.height=t-this.y},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"left",{get:function(){return this.x},set:function(t){this.width+=this.x-t,this.x=t},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"top",{get:function(){return this.y},set:function(t){this.height+=this.y-t,this.y=t},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"topLeft",{get:function(){return new t.Point(this.left,this.top)},set:function(t){this.top=t.y,this.left=t.x},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"bottomRight",{get:function(){return new t.Point(this.right,this.bottom)},set:function(t){this.bottom=t.y,this.right=t.x},enumerable:!0,configurable:!0}),r.prototype.copyFrom=function(t){return this.x=t.x,this.y=t.y,this.width=t.width,this.height=t.height,this},r.prototype.setTo=function(t,e,i,r){return this.x=t,this.y=e,this.width=i,this.height=r,this},r.prototype.contains=function(t,e){return this.x<=t&&this.x+this.width>=t&&this.y<=e&&this.y+this.height>=e},r.prototype.intersection=function(t){return this.clone().$intersectInPlace(t)},r.prototype.inflate=function(t,e){this.x-=t,this.width+=2*t,this.y-=e,this.height+=2*e},r.prototype.$intersectInPlace=function(t){var e=this.x,i=this.y,r=t.x,n=t.y,a=Math.max(e,r),o=Math.min(e+this.width,r+t.width);if(o>=a){var s=Math.max(i,n),h=Math.min(i+this.height,n+t.height);if(h>=s)return this.setTo(a,s,o-a,h-s),this}return this.setEmpty(),this},r.prototype.intersects=function(t){return Math.max(this.x,t.x)<=Math.min(this.right,t.right)&&Math.max(this.y,t.y)<=Math.min(this.bottom,t.bottom)},r.prototype.isEmpty=function(){return this.width<=0||this.height<=0},r.prototype.setEmpty=function(){this.x=0,this.y=0,this.width=0,this.height=0},r.prototype.clone=function(){return new r(this.x,this.y,this.width,this.height)},r.prototype.containsPoint=function(t){return this.x<=t.x&&this.x+this.width>=t.x&&this.y<=t.y&&this.y+this.height>=t.y?!0:!1},r.prototype.containsRect=function(t){var e=t.x+t.width,i=t.y+t.height,r=this.x+this.width,n=this.y+this.height;return t.x>=this.x&&t.x=this.y&&t.ythis.x&&r>=e&&i>this.y&&n>=i},r.prototype.equals=function(t){return this===t?!0:this.x===t.x&&this.y===t.y&&this.width===t.width&&this.height===t.height},r.prototype.inflatePoint=function(t){this.inflate(t.x,t.y)},r.prototype.offset=function(t,e){this.x+=t,this.y+=e},r.prototype.offsetPoint=function(t){this.offset(t.x,t.y)},r.prototype.toString=function(){return"(x="+this.x+", y="+this.y+", width="+this.width+", height="+this.height+")"},r.prototype.union=function(t){var e=this.clone();if(t.isEmpty())return e;if(e.isEmpty())return e.copyFrom(t),e;var i=Math.min(e.x,t.x),r=Math.min(e.y,t.y);return e.setTo(i,r,Math.max(e.right,t.right)-i,Math.max(e.bottom,t.bottom)-r),e},r.prototype.$getBaseWidth=function(t){var e=Math.abs(Math.cos(t)),i=Math.abs(Math.sin(t));return e*this.width+i*this.height},r.prototype.$getBaseHeight=function(t){var e=Math.abs(Math.cos(t)),i=Math.abs(Math.sin(t));return i*this.width+e*this.height},r}(t.HashObject);t.Rectangle=i,__reflect(i.prototype,"egret.Rectangle"),t.$TempRectangle=new i}(egret||(egret={}));var egret;!function(t){t.$locale_strings=t.$locale_strings||{},t.$locale_strings.en_US=t.$locale_strings.en_US||{};var e=t.$locale_strings.en_US;e[1001]="Could not find Egret entry class: {0}。",e[1002]="Egret entry class '{0}' must inherit from egret.DisplayObject.",e[1003]="Parameter {0} must be non-null.",e[1004]="An object cannot be added as a child to one of it's children (or children's children, etc.).",e[1005]="An object cannot be added as a child of itself.",e[1006]="The supplied DisplayObject must be a child of the caller.",e[1007]="An index specified for a parameter was out of range.",e[1008]="Instantiate singleton error,singleton class {0} can not create multiple instances.",e[1009]='the Class {0} cannot use the property "{1}"',e[1010]='the property "{1}" of the Class "{0}" is readonly',e[1011]="Stream Error. URL: {0}",e[1012]="The type of parameter {0} must be Class.",e[1013]="Variable assignment is NaN, please see the code!",e[1014]='the constant "{1}" of the Class "{0}" is read-only',e[1015]="xml not found!",e[1016]="{0}has been obsoleted",e[1017]="The format of JSON file is incorrect: {0}\ndata: {1}",e[1018]="the scale9Grid is not correct",e[1019]="Network ab:{0}",e[1020]="Cannot initialize Shader",e[1021]="Current browser does not support webgl",e[1022]="{0} ArgumentError",e[1023]="This method is not available in the ScrollView!",e[1025]="end of the file",e[1026]="! EncodingError The code point {0} could not be encoded.",e[1027]="DecodingError",e[1028]=". called injection is not configured rule: {0}, please specify configuration during its initial years of injection rule, and then call the corresponding single case.",e[1029]="Function.prototype.bind - what is trying to be bound is not callable",e[1033]="Photos can not be used across domains toDataURL to convert base64",e[1034]='Music file decoding failed: "{0}", please use the standard conversion tool reconversion under mp3.',e[1035]="Native does not support this feature!",e[1036]="Sound has stopped, please recall Sound.play () to play the sound!",e[1037]="Non-load the correct blob!",e[1038]="XML format error!",e[1039]="Cross domains pictures can not get pixel information!",e[1040]="hitTestPoint can not detect crossOrigin images! Please check if the display object has crossOrigin elements.",e[1041]="{0} is deprecated, please use {1} replace",e[1042]="The parameters passed in the region needs is an integer in drawToTexture method. Otherwise, some browsers will draw abnormal.",e[1043]="Compile errors in {0}, the attribute name: {1}, the attribute value: {2}.",e[1044]="The current version of the Runtime does not support video playback, please use the latest version",e[1045]="The resource url is not found",e[1046]="BitmapText no corresponding characters: {0}, please check the configuration file",e[1047]="egret.localStorage.setItem save failed,key={0}&value={1}",e[1048]="Video loading failed",e[1049]="In the absence of sound is not allowed to play after loading",e[1050]="ExternalInterface calls the method without js registration: {0}",e[1051]="runtime only support webgl render mode",e[1052]="network request timeout{0}",e[3e3]="Theme configuration file failed to load: {0}",e[3001]="Cannot find the skin name which is configured in Theme: {0}",e[3002]='Index:"{0}" is out of the collection element index range',e[3003]="Cannot be available in this component. If this component is container, please continue to use",e[3004]="addChild(){0}addElement() replace",e[3005]="addChildAt(){0}addElementAt() replace",e[3006]="removeChild(){0}removeElement() replace",e[3007]="removeChildAt(){0}removeElementAt() replace",e[3008]="setChildIndex(){0}setElementIndex() replace",e[3009]="swapChildren(){0}swapElements() replace",e[3010]="swapChildrenAt(){0}swapElementsAt() replace",e[3011]='Index:"{0}" is out of the visual element index range',e[3012]="This method is not available in Scroller component!",e[3013]="UIStage is GUI root container, and only one such instant is in the display list!",e[3014]="set fullscreen error",e[3100]="Current browser does not support WebSocket",e[3101]="Please connect Socket firstly",e[3102]="Please set the type of binary type",e[3200]="getResByUrl must be called after loadConfig",e[4e3]="An Bone cannot be added as a child to itself or one of its children (or children's children, etc.)",e[4001]="Abstract class can not be instantiated!",e[4002]="Unnamed data!",e[4003]="Nonsupport version!",e[4500]="The platform does not support {0} adapter mode and has been automatically replaced with {1} mode, please modify your code adapter logic"}(egret||(egret={}));var egret;!function(t){t.JointStyle={BEVEL:"bevel",MITER:"miter",ROUND:"round"}}(egret||(egret={}));var egret;!function(t){t.$locale_strings=t.$locale_strings||{},t.$locale_strings.zh_CN=t.$locale_strings.zh_CN||{};var e=t.$locale_strings.zh_CN;e[1001]="找不到Egret入口类: {0}。",e[1002]="Egret入口类 {0} 必须继承自egret.DisplayObject。",e[1003]="参数 {0} 不能为 null。",e[1004]="无法将对象添加为它的一个子对象(或子对象的子对象等)的子对象。",e[1005]="不能将对象添加为其自身的子对象。",e[1006]="提供的 DisplayObject 必须是调用者的子级。",e[1007]="为参数指定的索引不在范围内。",e[1008]="实例化单例出错,不允许实例化多个 {0} 对象。",e[1009]="类 {0} 不可以使用属性 {1}",e[1010]="类 {0} 属性 {1} 是只读的",e[1011]="流错误。URL: {0}",e[1012]="参数 {0} 的类型必须为 Class。",e[1013]="变量赋值为NaN,请查看代码!",e[1014]="类 {0} 常量 {1} 是只读的",e[1015]="xml not found!",e[1016]="{0}已经废弃",e[1017]="JSON文件格式不正确: {0}\ndata: {1}",e[1018]="9宫格设置错误",e[1019]="网络异常:{0}",e[1020]="无法初始化着色器",e[1021]="当前浏览器不支持webgl",e[1022]="{0} ArgumentError",e[1023]="此方法在ScrollView内不可用!",e[1025]="遇到文件尾",e[1026]="EncodingError! The code point {0} could not be encoded.",e[1027]="DecodingError",e[1028]="调用了未配置的注入规则:{0}。 请先在项目初始化里配置指定的注入规则,再调用对应单例。",e[1029]="Function.prototype.bind - what is trying to be bound is not callable",e[1033]="跨域图片不可以使用toDataURL来转换成base64",e[1034]='音乐文件解码失败:"{0}",请使用标准的转换工具重新转换下mp3。',e[1035]="Native 下暂未实现此功能!",e[1036]="声音已停止,请重新调用 Sound.play() 来播放声音!",e[1037]="非正确的blob加载!",e[1038]="XML 格式错误!",e[1039]="跨域图片不能获取像素信息!",e[1040]="hitTestPoint 不能对跨域图片进行检测! 请检查该显示对象内是否含有跨域元素",e[1041]="{0} 已废弃,请使用 {1} 代替",e[1042]="drawToTexture方法传入的区域各个参数需要为整数,否则某些浏览器绘制会出现异常",e[1043]="{0} 中存在编译错误,属性名 : {1},属性值 : {2}",e[1044]="当前的 runtime 版本不支持视频播放,请使用最新的版本",e[1045]="没有设置要加载的资源地址",e[1046]="BitmapText 找不到对应字符:{0},请检查配置文件",e[1047]="egret.localStorage.setItem保存失败,key={0}&value={1}",e[1048]="视频加载失败",e[1049]="声音在没有加载完之前不允许播放",e[1050]="ExternalInterface调用了js没有注册的方法: {0}",e[1051]="runtime 只支持 webgl 渲染模式",e[1052]="网络请求超时:{0}",e[3e3]="主题配置文件加载失败: {0}",e[3001]="找不到主题中所配置的皮肤类名: {0}",e[3002]='索引:"{0}"超出集合元素索引范围',e[3003]="在此组件中不可用,若此组件为容器类,请使用",e[3004]="addChild(){0}addElement()代替",e[3005]="addChildAt(){0}addElementAt()代替",e[3006]="removeChild(){0}removeElement()代替",e[3007]="removeChildAt(){0}removeElementAt()代替",e[3008]="setChildIndex(){0}setElementIndex()代替",e[3009]="swapChildren(){0}swapElements()代替",e[3010]="swapChildrenAt(){0}swapElementsAt()代替",e[3011]='索引:"{0}"超出可视元素索引范围',e[3012]="此方法在Scroller组件内不可用!",e[3013]="UIStage是GUI根容器,只能有一个此实例在显示列表中!",e[3014]="设置全屏模式失败",e[3100]="当前浏览器不支持WebSocket",e[3101]="请先连接WebSocket",e[3102]="请先设置type为二进制类型",e[3200]="getResByUrl 必须在 loadConfig 之后调用",e[4e3]="An Bone cannot be added as a child to itself or one of its children (or children's children, etc.)",e[4001]="Abstract class can not be instantiated!",e[4002]="Unnamed data!",e[4003]="Nonsupport version!",e[4500]="该平台不支持 {0} 适配模式,已经自动替换为 {1} 模式,请修改您的代码适配逻辑" +}(egret||(egret={}));var egret;!function(t){var e;!function(t){}(e=t.localStorage||(t.localStorage={}))}(egret||(egret={}));var egret;!function(t){var e;!function(t){function e(t){r.indexOf(t)<0&&r.push(t)}function i(t){var e=r.indexOf(t);return e>=0?(r.splice(e,1),!0):!1}var r=[];t.$pushSoundChannel=e,t.$popSoundChannel=i}(e=t.sys||(t.sys={}))}(egret||(egret={})),function(t){}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e;!function(t){t.GET="GET",t.POST="POST"}(e=t.HttpMethod||(t.HttpMethod={}))}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.TEXT="text",t.ARRAY_BUFFER="arraybuffer",t}();t.HttpResponseType=e,__reflect(e.prototype,"egret.HttpResponseType")}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e;!function(e){var i=function(i){function r(r){var n=i.call(this)||this;return n.isStage=!1,n.$renderNode=new e.BitmapNode,n.renderBuffer=null,n.offsetX=0,n.offsetY=0,n.offsetMatrix=new t.Matrix,n.$canvasScaleX=1,n.$canvasScaleY=1,n.$stageRenderToSurface=function(){e.systemRenderer.render(this.root,this.renderBuffer,this.offsetMatrix)},n.root=r,n.isStage=r instanceof t.Stage,n}return __extends(r,i),r.create=function(i){var r=new t.sys.DisplayList(i);try{var n=new e.RenderBuffer;r.renderBuffer=n}catch(a){return null}return r.root=i,r},r.prototype.$getRenderNode=function(){return this.$renderNode},r.prototype.setClipRect=function(t,e){t*=r.$canvasScaleX,e*=r.$canvasScaleY,this.renderBuffer.resize(t,e)},r.prototype.drawToSurface=function(){var i=0;this.$canvasScaleX=this.offsetMatrix.a=r.$canvasScaleX,this.$canvasScaleY=this.offsetMatrix.d=r.$canvasScaleY,this.isStage||this.changeSurfaceSize();var n=this.renderBuffer;if(n.clear(),i=e.systemRenderer.render(this.root,n,this.offsetMatrix),!this.isStage){var a=n.surface,o=this.$renderNode;o.drawData.length=0;var s=a.width,h=a.height;this.bitmapData?(this.bitmapData.source=a,this.bitmapData.width=s,this.bitmapData.height=h):this.bitmapData=new t.BitmapData(a),o.image=this.bitmapData,o.imageWidth=s,o.imageHeight=h,o.drawImage(0,0,s,h,-this.offsetX,-this.offsetY,s/this.$canvasScaleX,h/this.$canvasScaleY)}return i},r.prototype.changeSurfaceSize=function(){var t=(this.root,this.offsetX),e=this.offsetY,i=this.root.$getOriginalBounds(),r=this.$canvasScaleX,n=this.$canvasScaleY;this.offsetX=-i.x,this.offsetY=-i.y,this.offsetMatrix.setTo(this.offsetMatrix.a,0,0,this.offsetMatrix.d,this.offsetX,this.offsetY);var a=this.renderBuffer,o=Math.max(257,i.width*r),s=Math.max(257,i.height*n);(this.offsetX!=t||this.offsetY!=e||a.surface.width!=o||a.surface.height!=s)&&a.resize(o,s)},r.$setCanvasScale=function(e,i){r.$canvasScaleX=e,r.$canvasScaleY=i,t.nativeRender&&egret_native.nrSetCanvasScaleFactor(r.$canvasScaleFactor,e,i)},r.$canvasScaleFactor=1,r.$canvasScaleX=1,r.$canvasScaleY=1,r}(t.HashObject);e.DisplayList=i,__reflect(i.prototype,"egret.sys.DisplayList")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e;!function(e){function i(t){for(var e=[],i=0;in;n++)r+=arguments[n]+" ";e.$logToFPS(r),console.log.apply(console,i(arguments))},t.warn=function(){for(var t=arguments.length,r="",n=0;t>n;n++)r+=arguments[n]+" ";e.$warnToFPS(r),console.warn.apply(console,i(arguments))},t.error=function(){for(var t=arguments.length,r="",n=0;t>n;n++)r+=arguments[n]+" ";e.$errorToFPS(r),console.error.apply(console,i(arguments))}),this.showFPS=!!r,this.showLog=h,!n){n=new FPS(this.stage,r,h,c,l);for(var u=a.length,p=0;u>p;p++)n.updateInfo(a[p]);a=null;for(var d=o.length,p=0;d>p;p++)n.updateWarn(o[p]);o=null;for(var f=s.length,p=0;f>p;p++)n.updateError(s[p]);s=null}},h}(t.HashObject);e.Player=r,__reflect(r.prototype,"egret.sys.Player");var n,a=[],o=[],s=[];e.$logToFPS=function(t){return n?void n.updateInfo(t):void a.push(t)},e.$warnToFPS=function(t){return n?void n.updateWarn(t):void o.push(t)},e.$errorToFPS=function(t){return n?void n.updateError(t):void s.push(t)};var h=function(){function e(e,i,r,n,a){this.showFPS=i,this.showLog=r,this.logFilter=n,this.styles=a,this.infoLines=[],this.totalTime=0,this.totalTick=0,this.lastTime=0,this.drawCalls=0,this.costRender=0,this.costTicker=0,this.infoLines=[],this.totalTime=0,this.totalTick=0,this.lastTime=0,this.drawCalls=0,this.costRender=0,this.costTicker=0,this._stage=e,this.showFPS=i,this.showLog=r,this.logFilter=n,this.styles=a,this.fpsDisplay=new t.FPSDisplay(e,i,r,n,a);var o;try{o=n?new RegExp(n):null}catch(s){t.log(s)}this.filter=function(t){return o?o.test(t):!n||0==t.indexOf(n)}}return e.prototype.update=function(e,i,r){var n=t.getTimer();if(this.totalTime+=n-this.lastTime,this.lastTime=n,this.totalTick++,this.drawCalls+=e,this.costRender+=i,this.costTicker+=r,this.totalTime>=1e3){var a=Math.min(Math.ceil(1e3*this.totalTick/this.totalTime),t.ticker.$frameRate),o=Math.round(this.drawCalls/this.totalTick),s=Math.round(this.costRender/this.totalTick),h=Math.round(this.costTicker/this.totalTick);this.fpsDisplay.update({fps:a,draw:o,costTicker:h,costRender:s}),this.totalTick=0,this.totalTime=this.totalTime%1e3,this.drawCalls=0,this.costRender=0,this.costTicker=0}},e.prototype.updateInfo=function(t){t&&this.showLog&&this.filter(t)&&this.fpsDisplay.updateInfo(t)},e.prototype.updateWarn=function(t){t&&this.showLog&&this.filter(t)&&(this.fpsDisplay.updateWarn?this.fpsDisplay.updateWarn(t):this.fpsDisplay.updateInfo("[Warning]"+t))},e.prototype.updateError=function(t){t&&this.showLog&&this.filter(t)&&(this.fpsDisplay.updateError?this.fpsDisplay.updateError(t):this.fpsDisplay.updateInfo("[Error]"+t))},e}();__reflect(h.prototype,"FPSImpl"),__global.FPS=h,t.warn=function(){console.warn.apply(console,i(arguments))},t.error=function(){console.error.apply(console,i(arguments))},t.assert=function(){console.assert.apply(console,i(arguments))},t.log=function(){console.log.apply(console,i(arguments))}}(e=t.sys||(t.sys={}))}(egret||(egret={})),function(t){if(t.nativeRender=__global.nativeRender,t.nativeRender){var e=egret_native.nrABIVersion,i=egret_native.nrMinEgretVersion,r=5;if(r>e){t.nativeRender=!1;var n="需要升级微端版本到 0.1.14 才可以开启原生渲染加速";t.sys.$warnToFPS(n),t.warn(n)}else if(e>r){t.nativeRender=!1;var n="需要升级引擎版本到 "+i+" 才可以开启原生渲染加速";t.sys.$warnToFPS(n),t.warn(n)}}}(egret||(egret={}));var egret;!function(t){var e;!function(t){function e(t,e,i,r){return void 0===e&&(e=512),void 0===i&&(i=512),void 0===r&&(r=1),Application.instance.egretProUtil.execute("createTextureFrom3dScene",t,e,i,r)}function i(t,e,i,r,n){return void 0===i&&(i=512),void 0===r&&(r=512),void 0===n&&(n=1),Application.instance.egretProUtil.execute("createTextureForCameras",t,e,i,r,n)}function r(t){for(var e=[],i=1;iu?s=Math.round(c*l):o=Math.round(h*u);break;case t.StageScaleMode.SHOW_ALL:l>u?o=Math.round(h*u):s=Math.round(c*l);break;case t.StageScaleMode.FIXED_NARROW:l>u?h=Math.round(i/u):c=Math.round(r/l);break;case t.StageScaleMode.FIXED_WIDE:l>u?c=Math.round(r/l):h=Math.round(i/u);break;default:h=i,c=r}return t.Capabilities.runtimeType!=t.RuntimeType.WXGAME&&(h%2!=0&&(h+=1),c%2!=0&&(c+=1),o%2!=0&&(o+=1),s%2!=0&&(s+=1)),{stageWidth:h,stageHeight:c,displayWidth:o,displayHeight:s}},i}(t.HashObject);e.DefaultScreenAdapter=i,__reflect(i.prototype,"egret.sys.DefaultScreenAdapter",["egret.sys.IScreenAdapter"])}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.NO_SCALE="noScale",t.SHOW_ALL="showAll",t.NO_BORDER="noBorder",t.EXACT_FIT="exactFit",t.FIXED_WIDTH="fixedWidth",t.FIXED_HEIGHT="fixedHeight",t.FIXED_NARROW="fixedNarrow",t.FIXED_WIDE="fixedWide",t}();t.StageScaleMode=e,__reflect(e.prototype,"egret.StageScaleMode")}(egret||(egret={}));var egret;!function(t){var e;!function(t){function e(t,e){return console.error("empty sys.mainCanvas = "+t+", "+e),null}function i(t,e){return console.error("empty sys.createCanvas = "+t+", "+e),null}function r(t,e,i,r){console.error("empty sys.resizeContext = "+t+", "+e+", "+i+", "+r)}function n(t){return console.error("empty sys.getContextWebGL = "+t),null}function a(t){return console.error("empty sys.getContext2d = "+t),null}function o(t,e){return console.error("empty sys.createTexture = "+e),null}function s(t,e,i,r){return console.error("empty sys._createTexture = "+e+", "+i+", "+r),null}function h(t,e,i){return console.error("empty sys.drawTextureElements = "+t+", "+e+", "+i),0}function c(t,e){return console.error("empty sys.measureTextWith = "+t+", "+e),0}function l(t,e,i,r){return console.error("empty sys.createCanvasRenderBufferSurface = "+e+", "+i),null}function u(t,e,i,r){console.error("empty sys.resizeContext = "+t+", "+e+", "+i+", "+r)}t.mainCanvas=e,t.createCanvas=i,t.resizeContext=r,t.getContextWebGL=n,t.getContext2d=a,t.createTexture=o,t._createTexture=s,t.drawTextureElements=h,t.measureTextWith=c,t.createCanvasRenderBufferSurface=l,t.resizeCanvasRenderBuffer=u}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(e){e.$START_TIME=0,e.$invalidateRenderFlag=!1,e.$requestRenderingFlag=!1;var i=function(){function i(){var i=this;this.playerList=[],this.callBackList=[],this.thisObjectList=[],this.$frameRate=30,this.lastTimeStamp=0,this.costEnterFrame=0,this.isPaused=!1,this.$beforeRender=function(){for(var r=i.callBackList,n=i.thisObjectList,a=r.length,o=t.getTimer(),s=t.lifecycle.contexts,h=0,c=s;hu;u++)r[u].call(n[u],o);i.callLaters(),e.$invalidateRenderFlag&&(i.broadcastRender(),e.$invalidateRenderFlag=!1)},this.$afterRender=function(){i.broadcastEnterFrame()},e.$START_TIME=Date.now(),this.frameDeltaTime=1e3/this.$frameRate,this.lastCount=this.frameInterval=Math.round(6e4/this.$frameRate)}return i.prototype.$addPlayer=function(t){-1==this.playerList.indexOf(t)&&(this.playerList=this.playerList.concat(),this.playerList.push(t))},i.prototype.$removePlayer=function(t){var e=this.playerList.indexOf(t);if(-1!==e){this.playerList=this.playerList.concat(),this.playerList.splice(e,1)}},i.prototype.$startTick=function(t,e){var i=this.getTickIndex(t,e);-1==i&&(this.concatTick(),this.callBackList.push(t),this.thisObjectList.push(e))},i.prototype.$stopTick=function(t,e){var i=this.getTickIndex(t,e);-1!=i&&(this.concatTick(),this.callBackList.splice(i,1),this.thisObjectList.splice(i,1))},i.prototype.getTickIndex=function(t,e){for(var i=this.callBackList,r=this.thisObjectList,n=i.length-1;n>=0;n--)if(i[n]==t&&r[n]==e)return n;return-1},i.prototype.concatTick=function(){this.callBackList=this.callBackList.concat(),this.thisObjectList=this.thisObjectList.concat()},i.prototype.$setFrameRate=function(t){return 0>=t?!1:this.$frameRate==t?!1:(this.$frameRate=t,t>60&&(t=60),this.frameDeltaTime=1e3/t,this.lastCount=this.frameInterval=Math.round(6e4/t),!0)},i.prototype.pause=function(){this.isPaused=!0},i.prototype.resume=function(){this.isPaused=!1},i.prototype.update=function(i){for(var r=t.getTimer(),n=this.callBackList,a=this.thisObjectList,o=n.length,s=e.$requestRenderingFlag,h=t.getTimer(),c=t.lifecycle.contexts,l=0,u=c;ld;d++)n[d].call(a[d],h)&&(s=!0);var f=t.getTimer(),g=h-this.lastTimeStamp;if(this.lastTimeStamp=h,g>=this.frameDeltaTime||i)this.lastCount=this.frameInterval;else{if(this.lastCount-=1e3,this.lastCount>0)return void(s&&this.render(!1,this.costEnterFrame+f-r));this.lastCount+=this.frameInterval}this.render(!0,this.costEnterFrame+f-r);var $=t.getTimer();this.broadcastEnterFrame();var y=t.getTimer();this.costEnterFrame=y-$},i.prototype.render=function(t,i){var r=this.playerList,n=r.length;if(0!=n){this.callLaters(),e.$invalidateRenderFlag&&(this.broadcastRender(),e.$invalidateRenderFlag=!1);for(var a=0;n>a;a++)r[a].$render(t,i);e.$requestRenderingFlag=!1}},i.prototype.broadcastEnterFrame=function(){var e=t.DisplayObject.$enterFrameCallBackList,i=e.length;if(0!=i){e=e.concat();for(var r=0;i>r;r++)e[r].dispatchEventWith(t.Event.ENTER_FRAME)}},i.prototype.broadcastRender=function(){var e=t.DisplayObject.$renderCallBackList,i=e.length;if(0!=i){e=e.concat();for(var r=0;i>r;r++)e[r].dispatchEventWith(t.Event.RENDER)}},i.prototype.callLaters=function(){var e,i,r;if(t.$callLaterFunctionList.length>0&&(e=t.$callLaterFunctionList,t.$callLaterFunctionList=[],i=t.$callLaterThisList,t.$callLaterThisList=[],r=t.$callLaterArgsList,t.$callLaterArgsList=[]),e)for(var n=e.length,a=0;n>a;a++){var o=e[a];null!=o&&o.apply(i[a],r[a])}},i.prototype.callLaterAsyncs=function(){if(t.$callAsyncFunctionList.length>0){var e=t.$callAsyncFunctionList,i=t.$callAsyncThisList,r=t.$callAsyncArgsList;t.$callAsyncFunctionList=[],t.$callAsyncThisList=[],t.$callAsyncArgsList=[];for(var n=0;n=this.maxTouches)){this.lastTouchX=e,this.lastTouchY=i;var n=this.findTarget(e,i);return null==this.touchDownTarget[r]&&(this.touchDownTarget[r]=n,this.useTouchesCount++),t.TouchEvent.dispatchTouchEvent(n,t.TouchEvent.TOUCH_BEGIN,!0,!0,e,i,r,!0),n!==this.stage}},i.prototype.onTouchMove=function(e,i,r){if(null!=this.touchDownTarget[r]&&(this.lastTouchX!=e||this.lastTouchY!=i)){this.lastTouchX=e,this.lastTouchY=i;var n=this.findTarget(e,i);return t.TouchEvent.dispatchTouchEvent(n,t.TouchEvent.TOUCH_MOVE,!0,!0,e,i,r,!0),n!==this.stage}},i.prototype.onTouchEnd=function(e,i,r){if(null!=this.touchDownTarget[r]){var n=this.findTarget(e,i),a=this.touchDownTarget[r];return delete this.touchDownTarget[r],this.useTouchesCount--,t.TouchEvent.dispatchTouchEvent(n,t.TouchEvent.TOUCH_END,!0,!0,e,i,r,!1),a==n?t.TouchEvent.dispatchTouchEvent(n,t.TouchEvent.TOUCH_TAP,!0,!0,e,i,r,!1):t.TouchEvent.dispatchTouchEvent(a,t.TouchEvent.TOUCH_RELEASE_OUTSIDE,!0,!0,e,i,r,!1),n!==this.stage}},i.prototype.findTarget=function(t,e){var i=this.stage.$hitTest(t,e);return i||(i=this.stage),i},i}(t.HashObject);e.TouchHandler=i,__reflect(i.prototype,"egret.sys.TouchHandler")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(e){var i=function(e){function i(){var t=e.call(this)||this;return t.image=null,t.smoothing=!0,t.blendMode=null,t.alpha=0/0,t.filter=null,t.rotated=!1,t.type=1,t}return __extends(i,e),i.prototype.drawImage=function(t,e,i,r,n,a,o,s){this.drawData.push(t,e,i,r,n,a,o,s),this.renderCount++},i.prototype.cleanBeforeRender=function(){e.prototype.cleanBeforeRender.call(this),this.image=null,this.matrix=null,this.blendMode=null,this.alpha=0/0,this.filter=null},i.$updateTextureData=function(e,r,n,a,o,s,h,c,l,u,p,d,f,g,$,y){if(r){var v=t.$TextureScaleFactor;if(e.smoothing=y,e.image=r,e.imageWidth=f,e.imageHeight=g,$==t.BitmapFillMode.SCALE){var m=p/l*v,b=d/u*v;e.drawImage(n,a,o,s,m*h,b*c,m*o,b*s)}else if($==t.BitmapFillMode.CLIP){var x=Math.min(l,p),T=Math.min(u,d),_=o*v,D=s*v;i.drawClipImage(e,v,n,a,_,D,h,c,x,T)}else for(var _=o*v,D=s*v,O=0;p>O;O+=l)for(var w=0;d>w;w+=u){var x=Math.min(p-O,l),T=Math.min(d-w,u);i.drawClipImage(e,v,n,a,_,D,h,c,x,T,O,w)}}},i.$updateTextureDataWithScale9Grid=function(e,i,r,n,a,o,s,h,c,l,u,p,d,f,g,$){e.smoothing=$,e.image=i,e.imageWidth=f,e.imageHeight=g;var y=o,v=s;p-=l-o*t.$TextureScaleFactor,d-=u-s*t.$TextureScaleFactor;var m=r.x-h,b=r.y-c,x=m/t.$TextureScaleFactor,T=b/t.$TextureScaleFactor,_=r.width/t.$TextureScaleFactor,D=r.height/t.$TextureScaleFactor;0==D&&(D=1,T>=v&&T--),0==_&&(_=1,x>=y&&x--);var O=n,w=O+x,E=w+_,C=y-x-_,R=a,S=R+T,F=S+D,P=v-T-D,M=C*t.$TextureScaleFactor,j=P*t.$TextureScaleFactor;if((x+C)*t.$TextureScaleFactor>p||(T+P)*t.$TextureScaleFactor>d)return void e.drawImage(n,a,o,s,h,c,p,d);var A=h,B=A+m,N=A+(p-M),k=p-m-M,L=c,I=L+b,U=L+d-j,H=d-b-j;T>0&&(x>0&&e.drawImage(O,R,x,T,A,L,m,b),_>0&&e.drawImage(w,R,_,T,B,L,k,b),C>0&&e.drawImage(E,R,C,T,N,L,M,b)),D>0&&(x>0&&e.drawImage(O,S,x,D,A,I,m,H),_>0&&e.drawImage(w,S,_,D,B,I,k,H),C>0&&e.drawImage(E,S,C,D,N,I,M,H)),P>0&&(x>0&&e.drawImage(O,F,x,P,A,U,m,j),_>0&&e.drawImage(w,F,_,P,B,U,k,j),C>0&&e.drawImage(E,F,C,P,N,U,M,j))},i.drawClipImage=function(t,e,i,r,n,a,o,s,h,c,l,u){void 0===l&&(l=0),void 0===u&&(u=0);var p=o+n-h;p>0&&(n-=p),p=s+a-c,p>0&&(a-=p),t.drawImage(i,r,n/e,a/e,l+o,u+s,n,a)},i}(e.RenderNode);e.BitmapNode=i,__reflect(i.prototype,"egret.sys.BitmapNode")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(e){var i=["none","round","square"],r=["bevel","miter","round"],n=function(n){function a(){var t=n.call(this)||this;return t.dirtyRender=!0,t.type=3,t}return __extends(a,n),a.prototype.beginFill=function(t,i,r){void 0===i&&(i=1);var n=new e.FillPath;if(n.fillColor=t,n.fillAlpha=i,r){var a=this.drawData.lastIndexOf(r);this.drawData.splice(a,0,n)}else this.drawData.push(n);return this.renderCount++,n},a.prototype.beginGradientFill=function(i,r,n,a,o,s){var h=new t.Matrix;o?(h.a=819.2*o.a,h.b=819.2*o.b,h.c=819.2*o.c,h.d=819.2*o.d,h.tx=o.tx,h.ty=o.ty):(h.a=100,h.d=100);var c=new e.GradientFillPath;if(c.gradientType=i,c.colors=r,c.alphas=n,c.ratios=a,c.matrix=h,s){var l=this.drawData.lastIndexOf(s);this.drawData.splice(l,0,c)}else this.drawData.push(c);return this.renderCount++,c},a.prototype.lineStyle=function(n,a,o,s,h,c,l){void 0===o&&(o=1),void 0===c&&(c=3),void 0===l&&(l=[]),-1==i.indexOf(s)&&(s="round"),-1==r.indexOf(h)&&(h="round");var u=new e.StrokePath;return u.lineWidth=n,u.lineColor=a,u.lineAlpha=o,u.caps=s||t.CapsStyle.ROUND,u.joints=h,u.miterLimit=c,u.lineDash=l,this.drawData.push(u),this.renderCount++,u},a.prototype.clear=function(){this.drawData.length=0,this.dirtyRender=!0,this.renderCount=0},a.prototype.cleanBeforeRender=function(){},a.prototype.clean=function(){this.$texture&&(t.WebGLUtils.deleteWebGLTexture(this.$texture),this.$texture=null,this.dirtyRender=!0)},a}(e.RenderNode);e.GraphicsNode=n,__reflect(n.prototype,"egret.sys.GraphicsNode")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.type=4,e}return __extends(e,t),e.prototype.addNode=function(t){this.drawData.push(t)},e.prototype.cleanBeforeRender=function(){for(var t=this.drawData,e=t.length-1;e>=0;e--)t[e].cleanBeforeRender()},e.prototype.$getRenderCount=function(){for(var t=0,e=this.drawData,i=e.length-1;i>=0;i--)t+=e[i].$getRenderCount();return t},e}(t.RenderNode);t.GroupNode=e,__reflect(e.prototype,"egret.sys.GroupNode")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(e){var i=function(e){function i(){var i=e.call(this)||this;return i.image=null,i.smoothing=!0,i.bounds=new t.Rectangle,i.blendMode=null,i.alpha=0/0,i.filter=null,i.rotated=!1,i.type=5,i.vertices=[],i.uvs=[],i.indices=[],i}return __extends(i,e),i.prototype.drawMesh=function(t,e,i,r,n,a,o,s){this.drawData.push(t,e,i,r,n,a,o,s),this.renderCount++},i.prototype.cleanBeforeRender=function(){e.prototype.cleanBeforeRender.call(this),this.image=null,this.matrix=null},i}(e.RenderNode);e.MeshNode=i,__reflect(i.prototype,"egret.sys.MeshNode")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.image=null,e.smoothing=!0,e.rotated=!1,e.type=6,e}return __extends(e,t),e.prototype.drawImage=function(t,e,i,r,n,a,o,s){var h=this;h.sourceX=t,h.sourceY=e,h.sourceW=i,h.sourceH=r,h.drawX=n,h.drawY=a,h.drawW=o,h.drawH=s,h.renderCount=1},e.prototype.cleanBeforeRender=function(){t.prototype.cleanBeforeRender.call(this),this.image=null},e}(t.RenderNode);t.NormalBitmapNode=e,__reflect(e.prototype,"egret.sys.NormalBitmapNode")}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e=function(){function e(t,i,r,n){this.arrayBuffer=t,this.isInvalid=!1;var a=new Uint8Array(this.arrayBuffer,0,12);if(171!==a[0]||75!==a[1]||84!==a[2]||88!==a[3]||32!==a[4]||49!==a[5]||49!==a[6]||187!==a[7]||13!==a[8]||10!==a[9]||26!==a[10]||10!==a[11])return this.isInvalid=!0,void console.error("texture missing KTX identifier");var o=Uint32Array.BYTES_PER_ELEMENT,s=new DataView(this.arrayBuffer,12,13*o),h=s.getUint32(0,!0),c=67305985===h;return this.glType=s.getUint32(1*o,c),this.glTypeSize=s.getUint32(2*o,c),this.glFormat=s.getUint32(3*o,c),this.glInternalFormat=s.getUint32(4*o,c),this.glBaseInternalFormat=s.getUint32(5*o,c),this.pixelWidth=s.getUint32(6*o,c),this.pixelHeight=s.getUint32(7*o,c),this.pixelDepth=s.getUint32(8*o,c),this.numberOfArrayElements=s.getUint32(9*o,c),this.numberOfFaces=s.getUint32(10*o,c),this.numberOfMipmapLevels=s.getUint32(11*o,c),this.bytesOfKeyValueData=s.getUint32(12*o,c),0!==this.glType?void console.error("only compressed formats currently supported"):(this.numberOfMipmapLevels=Math.max(1,this.numberOfMipmapLevels),0===this.pixelHeight||0!==this.pixelDepth?void console.error("only 2D textures currently supported"):0!==this.numberOfArrayElements?void console.error("texture arrays not currently supported"):this.numberOfFaces!==i?void console.error("number of faces expected"+i+", but found "+this.numberOfFaces):void(this.loadType=e.COMPRESSED_2D))}return e.prototype.uploadLevels=function(t,i){this.loadType===e.COMPRESSED_2D&&this._upload2DCompressedLevels(t,i)},e.prototype._upload2DCompressedLevels=function(i,r){i.clearCompressedTextureData();for(var n=i.compressedTextureData,a=e.HEADER_LEN+this.bytesOfKeyValueData,o=this.pixelWidth,s=this.pixelHeight,h=r?this.numberOfMipmapLevels:1,c=0;h>c;c++){var l=new Int32Array(this.arrayBuffer,a,1)[0];a+=4;for(var u=[],p=0;pr;r+=2){var a=i[r],o=i[r+1];this._bounds.x>a&&(this._bounds.x=a),this._bounds.widtho&&(this._bounds.y=o),this._bounds.height>16,r=t>>8&255,n=255&t;return"rgba("+i+","+r+","+n+","+e+")"}function r(e,r,n,a,o,s){var h;h=r==t.GradientType.LINEAR?e.createLinearGradient(-1,0,1,0):e.createRadialGradient(0,0,0,0,0,1);for(var c=n.length,l=0;c>l;l++)h.addColorStop(o[l]/255,i(n[l],a[l]));return h}function n(t,e,i){void 0===i&&(i=0);for(var r=0,n=e.length;n>r;r++)t[r+i]=e[r]}function a(t,e,i,r){for(var n=r[0],a=r[1],o=r[2],s=r[3],h=r[4],c=r[5],l=r[6],u=r[7],p=r[8],d=r[9],f=r[10],g=r[11],$=r[12],y=r[13],v=r[14],m=r[15],b=r[16],x=r[17],T=r[18],_=r[19],D=0,O=e*i*4;O>D;D+=4){var w=t[D+0],E=t[D+1],C=t[D+2],R=t[D+3];t[D+0]=n*w+a*E+o*C+s*R+h,t[D+1]=c*w+l*E+u*C+p*R+d,t[D+2]=f*w+g*E+$*C+y*R+v,t[D+3]=m*w+b*E+x*C+T*R+_}}function o(t,e,i,r,n){s(t,e,i,r),h(t,e,i,n)}function s(t,e,i,r){var a;a=_?new Uint8ClampedArray(4*e):new Array(4*e);for(var o=4*e,s=2*r+1,h=0;i>h;h++){for(var c=h*o,l=0,u=0,p=0,d=0,f=0,g=0,$=4*-r,y=4*r+4;y>$;$+=4){var v=c+$;c>v||v>=c+o||(f=t[v+3],l+=t[v+0]*f,u+=t[v+1]*f,p+=t[v+2]*f,d+=f)}for(var $=c,y=c+o,m=0,b=$-4*r,x=$+4*(r+1);y>$;$+=4,m+=4,x+=4,b+=4)0===d?(a[m+0]=0,a[m+1]=0,a[m+2]=0,a[m+3]=0):(a[m+0]=l/d,a[m+1]=u/d,a[m+2]=p/d,a[m+3]=d/s),f=t[x+3],g=t[b+3],f||0==f?g||0==g?(l+=t[x+0]*f-t[b+0]*g,u+=t[x+1]*f-t[b+1]*g,p+=t[x+2]*f-t[b+2]*g,d+=f-g):(l+=t[x+0]*f,u+=t[x+1]*f,p+=t[x+2]*f,d+=f):(g||0==g)&&(l+=-t[b+0]*g,u+=-t[b+1]*g,p+=-t[b+2]*g,d+=-g);_?t.set(a,c):n(t,a,c)}}function h(t,e,i,r){var n;n=_?new Uint8ClampedArray(4*i):new Array(4*i);for(var a=4*e,o=2*r+1,s=0;e>s;s++){for(var h=4*s,c=0,l=0,u=0,p=0,d=0,f=0,g=-r*a,$=r*a+a;$>g;g+=a){var y=h+g;h>y||y>=h+i*a||(d=t[y+3],c+=t[y+0]*d,l+=t[y+1]*d,u+=t[y+2]*d,p+=d)}for(var g=h,$=h+i*a,v=0,m=h-r*a,b=h+(r+1)*a;$>g;g+=a,v+=4,b+=a,m+=a)0===p?(n[v+0]=0,n[v+1]=0,n[v+2]=0,n[v+3]=0):(n[v+0]=c/p,n[v+1]=l/p,n[v+2]=u/p,n[v+3]=p/o),d=t[b+3],f=t[m+3],d||0==d?f||0==f?(c+=t[b+0]*d-t[m+0]*f,l+=t[b+1]*d-t[m+1]*f,u+=t[b+2]*d-t[m+2]*f,p+=d-f):(c+=t[b+0]*d,l+=t[b+1]*d,u+=t[b+2]*d,p+=d):(f||0==f)&&(c+=-t[m+0]*f,l+=-t[m+1]*f,u+=-t[m+2]*f,p+=-f);for(var x=4*s,$=x+i*a,T=0;$>x;x+=a,T+=4)t[x+0]=n[T+0],t[x+1]=n[T+1],t[x+2]=n[T+2],t[x+3]=n[T+3]}}function c(t,e,i,r,a,s,h,c,f){var g=l(t,r);u(g,e,i,h,c),o(g,e,i,a,s),p(g,f),d(g,t),t.set(g),_?t.set(g):n(t,g) +}function l(t,e){e||(e=[0,0,0,0]);var i;_?i=new Uint8ClampedArray(t):(i=new Array(t.length),n(i,t));for(var r=e[0],a=e[1],o=e[2],s=e[3],h=0,c=i.length;c>h;h+=4){var l=i[h+3];i[h+0]=r*l,i[h+1]=a*l,i[h+2]=o*l,i[h+3]=s*l}return i}function u(t,e,i,r,a){var o,s,h=Math.sin(r)*a|0,c=Math.cos(r)*a|0;if(_){o=new Int32Array(t.buffer),s=new Int32Array(o.length);for(var l=0;i>l;l++){var u=l+h;if(!(0>u||u>i))for(var p=0;e>p;p++){var d=p+c;0>d||d>e||(s[u*e+d]=o[l*e+p])}}o.set(s)}else{o=t,s=new Array(o.length);for(var l=0;i>l;l++){var u=l+h;if(!(0>u||u>i))for(var p=0;e>p;p++){var d=p+c;0>d||d>e||(s[4*(u*e+d)+0]=o[4*(l*e+p)+0],s[4*(u*e+d)+1]=o[4*(l*e+p)+1],s[4*(u*e+d)+2]=o[4*(l*e+p)+2],s[4*(u*e+d)+3]=o[4*(l*e+p)+3])}}n(o,s)}}function p(t,e){for(var i=0,r=t.length;r>i;i+=4)t[i+3]*=e}function d(t,e){for(var i=0,r=t.length;r>i;i+=4){var n=t[i+0],a=t[i+1],o=t[i+2],s=t[i+3]/255,h=e[i+0],c=e[i+1],l=e[i+2],u=e[i+3]/255;t[i+0]=h+n*(1-u),t[i+1]=c+a*(1-u),t[i+2]=l+o*(1-u),t[i+3]=255*(u+s*(1-u))}}function f(t,e,i){return t*(1-i)+e*i}function g(t,e,i,r,a,o,s,h,c,l,u,p){var d;d=_?new Uint8ClampedArray(t.length):new Array(t.length);for(var g,$,y=r[3],v=0,m=0,b=h*Math.cos(s),x=h*Math.sin(s),T=7,D=12,O=3.141592653589793,w=a/T,E=o/T,C=0;e>C;C++)for(var R=0;i>R;R++){for(var S=0,F=R*e*4+4*C,P=0,M=0,j=t[F+0]/255,A=t[F+1]/255,B=t[F+2]/255,N=t[F+3]/255,k=0;2*O>=k;k+=2*O/D){g=Math.cos(k+S),$=Math.sin(k+S);for(var L=0;T>L;L++){v=L*w*g,m=L*E*$;var I=Math.round(C+v-b),U=Math.round(R+m-x),H=0;if(I>=e||0>I||0>U||U>=i)H=0;else{var X=U*e*4+4*I;H=t[X+3]/255}P+=(T-L)*H,M+=T-L}}N=Math.max(N,1e-4);var Y=P/M*c*y*(1-l)*Math.max(Math.min(p,u),1-N),W=(M-P)/M*c*y*l*N;N=Math.max(N*u*(1-p),1e-4);var G=W/(W+N),z=f(j,r[0],G),V=f(A,r[1],G),q=f(B,r[2],G),K=Y/(W+N+Y),J=f(z,r[0],K),Q=f(V,r[1],K),Z=f(q,r[2],K),te=Math.min(N+Y+W,1);d[F+0]=255*J,d[F+1]=255*Q,d[F+2]=255*Z,d[F+3]=255*te}_?t.set(d):n(t,d)}var $=["source-over","lighter","destination-out"],y="source-over",v="#000000",m={none:"butt",square:"square",round:"round"},b=[],x=[],T=function(){function n(){this.nestLevel=0,this.renderingMask=!1}return n.prototype.render=function(e,i,r,n){this.nestLevel++;var a=i.context;a.transform(r.a,r.b,r.c,r.d,0,0);var o=this.drawDisplayObject(e,a,r.tx,r.ty,!0),s=t.Matrix.create();if(r.$invertInto(s),a.transform(s.a,s.b,s.c,s.d,0,0),t.Matrix.release(s),this.nestLevel--,0===this.nestLevel){b.length>6&&(b.length=6);for(var h=b.length,c=0;h>c;c++)b[c].resize(0,0)}return o},n.prototype.drawDisplayObject=function(e,i,r,n,a){var o,s=0,h=e.$displayList;if(h&&!a?((e.$cacheDirty||e.$renderDirty||h.$canvasScaleX!=t.sys.DisplayList.$canvasScaleX||h.$canvasScaleY!=t.sys.DisplayList.$canvasScaleY)&&(s+=h.drawToSurface()),o=h.$renderNode):o=e.$renderDirty?e.$getRenderNode():e.$renderNode,e.$cacheDirty=!1,o){switch(s++,i.$offsetX=r,i.$offsetY=n,o.type){case 1:this.renderBitmap(o,i);break;case 2:this.renderText(o,i);break;case 3:this.renderGraphics(o,i);break;case 4:this.renderGroup(o,i);break;case 5:this.renderMesh(o,i);break;case 6:this.renderNormalBitmap(o,i)}i.$offsetX=0,i.$offsetY=0}if(h&&!a)return s;var c=e.$children;if(c)for(var l=c.length,u=0;l>u;u++){var p=c[u],d=void 0,f=void 0;if(p.$useTranslate){var g=p.$getMatrix();d=r+p.$x,f=n+p.$y,i.save(),i.transform(g.a,g.b,g.c,g.d,d,f),d=-p.$anchorOffsetX,f=-p.$anchorOffsetY}else d=r+p.$x-p.$anchorOffsetX,f=n+p.$y-p.$anchorOffsetY;var $=void 0;switch(1!=p.$alpha&&($=i.globalAlpha,i.globalAlpha*=p.$alpha),p.$renderMode){case 1:break;case 2:s+=this.drawWithFilter(p,i,d,f);break;case 3:s+=this.drawWithClip(p,i,d,f);break;case 4:s+=this.drawWithScrollRect(p,i,d,f);break;default:s+=this.drawDisplayObject(p,i,d,f)}p.$useTranslate?i.restore():$&&(i.globalAlpha=$)}return s},n.prototype.drawWithFilter=function(t,e,i,r){if(t.$children&&0==t.$children.length&&(!t.$renderNode||0==t.$renderNode.$getRenderCount()))return 0;var n,s=0,h=t.$filters,l=h.length,u=0!==t.$blendMode;u&&(n=$[t.$blendMode],n||(n=y));var p=t.$getOriginalBounds(),d=p.x,f=p.y,v=p.width,m=p.height;if(0>=v||0>=m)return s;var b=this.createRenderBuffer(v-d,m-f,!0),T=b.context;if(s+=t.$mask?this.drawWithClip(t,T,-d,-f):t.$scrollRect||t.$maskRect?this.drawWithScrollRect(t,T,-d,-f):this.drawDisplayObject(t,T,-d,-f),s>0){u&&(e.globalCompositeOperation=n),s++;for(var _=T.getImageData(0,0,b.surface.width,b.surface.height),D=0;l>D;D++){var O=h[D];if("colorTransform"==O.type)a(_.data,b.surface.width,b.surface.height,O.$matrix);else if("blur"==O.type)o(_.data,b.surface.width,b.surface.height,O.$blurX,O.$blurY);else if("glow"==O.type){var w=O.$red,E=O.$green,C=O.$blue,R=O.$alpha;O.$inner||O.$knockout||O.$hideObject?g(_.data,b.surface.width,b.surface.height,[w/255,E/255,C/255,R],O.$blurX,O.$blurY,O.$angle?O.$angle/180*Math.PI:0,O.$distance||0,O.$strength,O.$inner?1:0,O.$knockout?0:1,O.$hideObject?1:0):c(_.data,b.surface.width,b.surface.height,[w/255,E/255,C/255,R],O.$blurX,O.$blurY,O.$angle?O.$angle/180*Math.PI:0,O.$distance||0,O.$strength)}else"custom"==O.type}T.putImageData(_,0,0),e.drawImage(b.surface,i+d,r+f),u&&(e.globalCompositeOperation=y)}return x.push(b),s},n.prototype.drawWithClip=function(e,i,r,n){var a,o=0,s=0!==e.$blendMode;s&&(a=$[e.$blendMode],a||(a=y));var h=e.$scrollRect?e.$scrollRect:e.$maskRect,c=e.$mask;if(c){var l=c.$getMatrix();if(0==l.a&&0==l.b||0==l.c&&0==l.d)return o}if(!(c||e.$children&&0!=e.$children.length))return h&&(i.save(),i.beginPath(),i.rect(h.x+r,h.y+n,h.width,h.height),i.clip()),s&&(i.globalCompositeOperation=a),o+=this.drawDisplayObject(e,i,r,n),s&&(i.globalCompositeOperation=y),h&&i.restore(),o;if(c){var u=c.$getRenderNode();if((!c.$children||0==c.$children.length)&&u&&3==u.type&&1==u.drawData.length&&1==u.drawData[0].type&&1==u.drawData[0].fillAlpha){this.renderingMask=!0,i.save();var p=t.Matrix.create();p.copyFrom(c.$getConcatenatedMatrix()),c.$getConcatenatedMatrixAt(e,p),p.prepend(1,0,0,1,r,n),i.transform(p.a,p.b,p.c,p.d,p.tx,p.ty);var d=this.drawDisplayObject(c,i,0,0);return this.renderingMask=!1,p.$invertInto(p),i.transform(p.a,p.b,p.c,p.d,p.tx,p.ty),t.Matrix.release(p),h&&(i.beginPath(),i.rect(h.x+r,h.y+n,h.width,h.height),i.clip()),d+=this.drawDisplayObject(e,i,r,n),i.restore(),d}}var f=e.$getOriginalBounds(),g=f.x,v=f.y,m=f.width,x=f.height;if(0>=m||0>=x)return o;var T=this.createRenderBuffer(m,x),_=T.context;if(!_)return o+=this.drawDisplayObject(e,i,r,n);if(o+=this.drawDisplayObject(e,_,-g,-v),c){var u=c.$getRenderNode(),p=t.Matrix.create();if(p.copyFrom(c.$getConcatenatedMatrix()),c.$getConcatenatedMatrixAt(e,p),p.translate(-g,-v),u&&1==u.$getRenderCount()||c.$displayList)_.globalCompositeOperation="destination-in",_.save(),_.setTransform(p.a,p.b,p.c,p.d,p.tx,p.ty),o+=this.drawDisplayObject(c,_,0,0),_.restore();else{var D=this.createRenderBuffer(m,x),O=D.context;O.setTransform(p.a,p.b,p.c,p.d,p.tx,p.ty),o+=this.drawDisplayObject(c,O,0,0),_.globalCompositeOperation="destination-in",_.drawImage(D.surface,0,0),b.push(D)}t.Matrix.release(p)}return o>0&&(o++,s&&(i.globalCompositeOperation=a),h&&(i.save(),i.beginPath(),i.rect(h.x+r,h.y+n,h.width,h.height),i.clip()),i.drawImage(T.surface,r+g,n+v),h&&i.restore(),s&&(i.globalCompositeOperation=y)),b.push(T),o},n.prototype.drawWithScrollRect=function(t,e,i,r){var n=0,a=t.$scrollRect?t.$scrollRect:t.$maskRect;return a.isEmpty()?n:(t.$scrollRect&&(i-=a.x,r-=a.y),e.save(),e.beginPath(),e.rect(a.x+i,a.y+r,a.width,a.height),e.clip(),n+=this.drawDisplayObject(t,e,i,r),e.restore(),n)},n.prototype.drawNodeToBuffer=function(t,e,i,r){var n=e.context;n.setTransform(i.a,i.b,i.c,i.d,i.tx,i.ty),this.renderNode(t,n,r)},n.prototype.drawDisplayToBuffer=function(t,e,i){var r=e.context;i&&r.setTransform(i.a,i.b,i.c,i.d,i.tx,i.ty);var n;n=t.$renderDirty?t.$getRenderNode():t.$renderNode;var a=0;if(n)switch(a++,n.type){case 1:this.renderBitmap(n,r);break;case 2:this.renderText(n,r);break;case 3:this.renderGraphics(n,r);break;case 4:this.renderGroup(n,r);break;case 5:this.renderMesh(n,r);break;case 6:this.renderNormalBitmap(n,r)}var o=t.$children;if(o)for(var s=o.length,h=0;s>h;h++){var c=o[h];switch(c.$renderMode){case 1:break;case 2:a+=this.drawWithFilter(c,r,0,0);break;case 3:a+=this.drawWithClip(c,r,0,0);break;case 4:a+=this.drawWithScrollRect(c,r,0,0);break;default:a+=this.drawDisplayObject(c,r,0,0)}}return a},n.prototype.renderNode=function(t,e,i){var r=0;switch(t.type){case 1:r=this.renderBitmap(t,e);break;case 2:r=1,this.renderText(t,e);break;case 3:r=this.renderGraphics(t,e,i);break;case 4:r=this.renderGroup(t,e);break;case 5:r=this.renderMesh(t,e);break;case 6:r+=this.renderNormalBitmap(t,e)}return r},n.prototype.renderNormalBitmap=function(t,e){var i=t.image;if(!i||!i.source)return 0;if(e.$imageSmoothingEnabled!=t.smoothing&&(e.imageSmoothingEnabled=t.smoothing,e.$imageSmoothingEnabled=t.smoothing),t.rotated){var r=t.sourceX,n=t.sourceY,a=t.sourceW,o=t.sourceH,s=t.drawX,h=t.drawY,c=t.drawW,l=t.drawH;e.save(),e.transform(0,-1,1,0,0,l),e.drawImage(i.source,r,n,o,a,s+e.$offsetX,h+e.$offsetY,l,c),e.restore()}else e.drawImage(i.source,t.sourceX,t.sourceY,t.sourceW,t.sourceH,t.drawX+e.$offsetX,t.drawY+e.$offsetY,t.drawW,t.drawH);return 1},n.prototype.renderBitmap=function(t,e){var i=t.image;if(!i||!i.source)return 0;e.$imageSmoothingEnabled!=t.smoothing&&(e.imageSmoothingEnabled=t.smoothing,e.$imageSmoothingEnabled=t.smoothing);var r,n,o=t.drawData,s=o.length,h=0,c=t.matrix,l=t.blendMode,u=t.alpha,p=!1;c&&(e.save(),p=!0,(0!=e.$offsetX||0!=e.$offsetY)&&(e.translate(e.$offsetX,e.$offsetY),r=e.$offsetX,n=e.$offsetY,e.$offsetX=e.$offsetY=0),e.transform(c.a,c.b,c.c,c.d,c.tx,c.ty)),l&&(e.globalCompositeOperation=$[l]);var d;u==u&&(d=e.globalAlpha,e.globalAlpha*=u);var f=0,g=t.filter;if(g&&8==s){var v=o[0],m=o[1],x=o[2],T=o[3],_=o[4],D=o[5],O=o[6],w=o[7];t.rotated&&(x=o[3],T=o[2],O=o[7],w=o[6]);var E=this.createRenderBuffer(O,w),C=E.context;f++,t.rotated&&e.transform(0,-1,1,0,0,O),C.drawImage(i.source,v,m,x,T,0,0,O,w),f++;var R=C.getImageData(0,0,O,w);a(R.data,O,w,g.$matrix),C.putImageData(R,0,0),e.drawImage(E.surface,0,0,O,w,_+e.$offsetX,D+e.$offsetY,O,w),b.push(E)}else for(;s>h;)if(f++,t.rotated){var v=o[h++],m=o[h++],T=o[h++],x=o[h++],S=o[h++],F=o[h++],w=o[h++],O=o[h++];e.save(),e.transform(0,-1,1,0,0,O),e.drawImage(i.source,v,m,x,T,S+e.$offsetX,F+e.$offsetY,O,w),e.restore()}else e.drawImage(i.source,o[h++],o[h++],o[h++],o[h++],o[h++]+e.$offsetX,o[h++]+e.$offsetY,o[h++],o[h++]);return p?e.restore():(l&&(e.globalCompositeOperation=y),u==u&&(e.globalAlpha=d)),r&&(e.$offsetX=r),n&&(e.$offsetY=n),f},n.prototype.renderMesh=function(t,e){var i,r,n=t.image,a=t.drawData,o=a.length,s=0,h=t.matrix,c=t.blendMode,l=t.alpha,u=!1,p=0;e.$imageSmoothingEnabled!=t.smoothing&&(e.imageSmoothingEnabled=t.smoothing,e.$imageSmoothingEnabled=t.smoothing),h&&(e.save(),u=!0,(0!=e.$offsetX||0!=e.$offsetY)&&(e.translate(e.$offsetX,e.$offsetY),i=e.$offsetX,r=e.$offsetY,e.$offsetX=e.$offsetY=0),e.transform(h.a,h.b,h.c,h.d,h.tx,h.ty)),c&&(e.globalCompositeOperation=$[c]);var d;for(l==l&&(d=e.globalAlpha,e.globalAlpha*=l);o>s;)p+=this.drawMesh(n,a[s++],a[s++],a[s++],a[s++],a[s++],a[s++],a[s++],a[s++],t.uvs,t.vertices,t.indices,t.bounds,t.rotated,e);return c&&(e.globalCompositeOperation=y),l==l&&(e.globalAlpha=d),i&&(e.$offsetX=i),r&&(e.$offsetY=r),u&&e.restore(),p},n.prototype.drawMesh=function(t,e,i,r,n,a,o,s,h,c,l,u,p,d,f){if(f&&t){var g=0,$=0/0,y=0/0,v=0/0,m=0/0,b=0/0,x=0/0,T=1,_=0,D=0,O=1,w=0,E=0,C=r,R=n,S=s,F=h;d&&(C=n,R=r,S=h,F=s);for(var P,M,j,A,B,N,k,L,I,U=u.length,H=0;U>H;H+=3){P=2*u[H],M=2*u[H+1],j=2*u[H+2],$=c[P]*r,m=c[P+1]*n,y=c[M]*r,b=c[M+1]*n,v=c[j]*r,x=c[j+1]*n,A=l[P],B=l[P+1],N=l[M],k=l[M+1],L=l[j],I=l[j+1],f.save(),f.beginPath(),f.moveTo(A,B),f.lineTo(N,k),f.lineTo(L,I),f.closePath(),f.clip();var X=1/($*b+m*v+y*x-b*v-m*y-$*x);T=A*b+m*L+N*x-b*L-m*N-A*x,_=B*b+m*I+k*x-b*I-m*k-B*x,D=$*N+A*v+y*L-N*v-A*y-$*L,O=$*k+B*v+y*I-k*v-B*y-$*I,w=$*b*L+m*N*v+A*y*x-A*b*v-m*y*L-$*N*x,E=$*b*I+m*k*v+B*y*x-B*b*v-m*y*I-$*k*x,f.transform(T*X,_*X,D*X,O*X,w*X,E*X),d&&f.transform(0,-1,1,0,0,S),f.drawImage(t.source,e,i,C,R,a+f.$offsetX,o+f.$offsetY,S,F),f.restore(),g++}return g}},n.prototype.renderText=function(i,r){r.textAlign="left",r.textBaseline="middle",r.lineJoin="round";for(var n=i.drawData,a=n.length,o=0;a>o;){var s=n[o++],h=n[o++],c=n[o++],l=n[o++];r.font=e(i,l);var u=null==l.textColor?i.textColor:l.textColor,p=null==l.strokeColor?i.strokeColor:l.strokeColor,d=null==l.stroke?i.stroke:l.stroke;r.fillStyle=t.toColorString(u),r.strokeStyle=t.toColorString(p),d&&(r.lineWidth=2*d,r.strokeText(c,s+r.$offsetX,h+r.$offsetY)),r.fillText(c,s+r.$offsetX,h+r.$offsetY)}},n.prototype.renderGraphics=function(t,e,n){var a=t.drawData,o=a.length;n=!!n;for(var s=0;o>s;s++){var h=a[s];switch(h.type){case 1:var c=h;e.fillStyle=n?v:i(c.fillColor,c.fillAlpha),this.renderPath(h,e),this.renderingMask?e.clip():e.fill();break;case 2:var l=h;e.fillStyle=n?v:r(e,l.gradientType,l.colors,l.alphas,l.ratios,l.matrix),e.save();var u=l.matrix;this.renderPath(h,e),e.transform(u.a,u.b,u.c,u.d,u.tx,u.ty),e.fill(),e.restore();break;case 3:var p=h,d=p.lineWidth;e.lineWidth=d,e.strokeStyle=n?v:i(p.lineColor,p.lineAlpha),e.lineCap=m[p.caps],e.lineJoin=p.joints,e.miterLimit=p.miterLimit,e.setLineDash&&e.setLineDash(p.lineDash);var f=1===d||3===d;f&&e.translate(.5,.5),this.renderPath(h,e),e.stroke(),f&&e.translate(-.5,-.5)}}return 0==o?0:1},n.prototype.renderPath=function(t,e){e.beginPath();for(var i=t.$data,r=t.$commands,n=r.length,a=0,o=0;n>o;o++){var s=r[o];switch(s){case 4:e.bezierCurveTo(i[a++]+e.$offsetX,i[a++]+e.$offsetY,i[a++]+e.$offsetX,i[a++]+e.$offsetY,i[a++]+e.$offsetX,i[a++]+e.$offsetY);break;case 3:e.quadraticCurveTo(i[a++]+e.$offsetX,i[a++]+e.$offsetY,i[a++]+e.$offsetX,i[a++]+e.$offsetY);break;case 2:e.lineTo(i[a++]+e.$offsetX,i[a++]+e.$offsetY);break;case 1:e.moveTo(i[a++]+e.$offsetX,i[a++]+e.$offsetY)}}},n.prototype.renderGroup=function(t,e){var i,r,n=t.matrix,a=!1;n&&(e.save(),a=!0,(0!=e.$offsetX||0!=e.$offsetY)&&(e.translate(e.$offsetX,e.$offsetY),i=e.$offsetX,r=e.$offsetY,e.$offsetX=e.$offsetY=0),e.transform(n.a,n.b,n.c,n.d,n.tx,n.ty));for(var o=0,s=t.drawData,h=s.length,c=0;h>c;c++){var l=s[c];o+=this.renderNode(l,e)}return a&&e.restore(),i&&(e.$offsetX=i),r&&(e.$offsetY=r),o},n.prototype.createRenderBuffer=function(e,i,r){var n=r?x.pop():b.pop();return n?n.resize(e,i,!0):n=new t.sys.CanvasRenderBuffer(e,i),n},n.prototype.renderClear=function(){},n}();t.CanvasRenderer=T,__reflect(T.prototype,"egret.CanvasRenderer"),t.getFontString=e,t.getRGBAString=i;var _=!1;try{_=void 0!==typeof Uint8ClampedArray}catch(D){}}(egret||(egret={}));var egret;!function(t){t.DeviceOrientation=null}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e;!function(t){t.WEB="web",t.NATIVE="native",t.RUNTIME2="runtime2",t.MYGAME="mygame",t.WXGAME="wxgame",t.BAIDUGAME="baidugame",t.QGAME="qgame",t.OPPOGAME="oppogame",t.QQGAME="qqgame",t.VIVOGAME="vivogame",t.QHGAME="qhgame",t.TTGAME="ttgame",t.FASTGAME="fastgame",t.TBCREATIVEAPP="tbcreativeapp"}(e=t.RuntimeType||(t.RuntimeType={}));var i=function(){function e(){}return Object.defineProperty(e,"supportedCompressedTexture",{get:function(){return this._supportedCompressedTexture&&void 0!=this._supportedCompressedTexture.pvrtc&&void 0!=this._supportedCompressedTexture?this._supportedCompressedTexture:(t.web?t.web.WebGLRenderContext.getInstance().getSupportedCompressedTexture():null,this._supportedCompressedTexture)},enumerable:!0,configurable:!0}),e.language="zh-CN",e.os="Unknown",e.runtimeType=t.RuntimeType.WEB,e.engineVersion="5.3.10",e.renderMode="Unknown",e.boundingClientWidth=0,e.boundingClientHeight=0,e._supportedCompressedTexture={},e}();t.Capabilities=i,__reflect(i.prototype,"egret.Capabilities")}(egret||(egret={}));var egret;!function(t){t.OrientationMode={AUTO:"auto",PORTRAIT:"portrait",LANDSCAPE:"landscape",LANDSCAPE_FLIPPED:"landscapeFlipped"}}(egret||(egret={}));var egret;!function(t){function e(t,e){r[t]=e}function i(t){return r[t]}var r={};t.registerImplementation=e,t.getImplementation=i}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(){var i=e.call(this)||this;i.$renderBuffer=new t.sys.RenderBuffer;var r=new t.BitmapData(i.$renderBuffer.surface);return r.$deleteSource=!1,i._setBitmapData(r),i}return __extends(i,e),i.prototype.drawToTexture=function(e,i,r){if(void 0===r&&(r=1),i&&(0==i.width||0==i.height))return!1;var n=i||e.$getOriginalBounds();if(0==n.width||0==n.height)return!1;r/=t.$TextureScaleFactor;var a=(n.x+n.width)*r,o=(n.y+n.height)*r;i&&(a=n.width*r,o=n.height*r);var s=this.$renderBuffer;if(!s)return!1;if(s.resize(a,o),this.$bitmapData.width=a,this.$bitmapData.height=o,t.nativeRender){egret_native.activateBuffer(this.$renderBuffer);var h=!1,c=0,l=0,u=0,p=0;i&&(h=!0,c=i.x,l=i.y,u=i.width,p=i.height),egret_native.updateNativeRender(),egret_native.nrRenderDisplayObject(e.$nativeDisplayObject.id,r,h,c,l,u,p),egret_native.activateBuffer(null)}else{var d=t.Matrix.create();d.identity(),d.scale(r,r),i&&d.translate(-i.x,-i.y),t.sys.systemRenderer.render(e,s,d,!0),t.Matrix.release(d)}return this.$initData(0,0,a,o,0,0,a,o,a,o),!0},i.prototype.getPixel32=function(e,i){var r;if(this.$renderBuffer){var n=t.$TextureScaleFactor;e=Math.round(e/n),i=Math.round(i/n),r=this.$renderBuffer.getPixels(e,i,1,1)}return r},i.prototype.dispose=function(){e.prototype.dispose.call(this),this.$renderBuffer=null},i}(t.Texture);t.RenderTexture=e,__reflect(e.prototype,"egret.RenderTexture")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(e,i){var r=t.call(this,e)||this;return r.firstCharHeight=0,"string"==typeof i?r.charList=r.parseConfig(i):i&&i.hasOwnProperty("frames")?r.charList=i.frames:r.charList={},r}return __extends(e,t),e.prototype.getTexture=function(t){var e=this._textureMap[t];if(!e){var i=this.charList[t];if(!i)return null;e=this.createTexture(t,i.x,i.y,i.w,i.h,i.offX,i.offY,i.sourceW,i.sourceH),this._textureMap[t]=e}return e},e.prototype.getConfig=function(t,e){return this.charList[t]?this.charList[t][e]:0},e.prototype._getFirstCharHeight=function(){if(0==this.firstCharHeight)for(var t in this.charList){var e=this.charList[t];if(e){var i=e.sourceH;if(void 0===i){var r=e.h;void 0===r&&(r=0);var n=e.offY;void 0===n&&(n=0),i=r+n}if(0>=i)continue;this.firstCharHeight=i;break}}return this.firstCharHeight},e.prototype.parseConfig=function(t){t=t.split("\r\n").join("\n");for(var e=t.split("\n"),i=this.getConfigByKey(e[3],"count"),r={},n=4;4+i>n;n++){var a=e[n],o=String.fromCharCode(this.getConfigByKey(a,"id")),s={};r[o]=s,s.x=this.getConfigByKey(a,"x"),s.y=this.getConfigByKey(a,"y"),s.w=this.getConfigByKey(a,"width"),s.h=this.getConfigByKey(a,"height"),s.offX=this.getConfigByKey(a,"xoffset"),s.offY=this.getConfigByKey(a,"yoffset"),s.xadvance=this.getConfigByKey(a,"xadvance")}return r},e.prototype.getConfigByKey=function(t,e){for(var i=t.split(" "),r=0,n=i.length;n>r;r++){var a=i[r];if(e==a.substring(0,e.length)){var o=a.substring(e.length+1);return parseInt(o)}}return 0},e}(t.SpriteSheet);t.BitmapFont=e,__reflect(e.prototype,"egret.BitmapFont")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i.$smoothing=t.Bitmap.defaultSmoothing,i.$text="",i.$textFieldWidth=0/0,i.$textLinesChanged=!1,i.$textFieldHeight=0/0,i.$font=null,i.$fontStringChanged=!1,i.$lineSpacing=0,i.$letterSpacing=0,i.$textAlign=t.HorizontalAlign.LEFT,i.$verticalAlign=t.VerticalAlign.TOP,i.$textWidth=0/0,i.$textHeight=0/0,i.$textOffsetX=0,i.$textOffsetY=0,i.$textStartX=0,i.$textStartY=0,i.textLines=[],i.$lineHeights=[],t.nativeRender||(i.$renderNode=new t.sys.BitmapNode),i}return __extends(i,e),i.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(11)},Object.defineProperty(i.prototype,"smoothing",{get:function(){return this.$smoothing},set:function(e){var i=this;if(e!=i.$smoothing&&(i.$smoothing=e,!t.nativeRender)){var r=i.$parent;r&&!r.$cacheDirty&&(r.$cacheDirty=!0,r.$cacheDirtyUp());var n=i.$maskedObject;n&&!n.$cacheDirty&&(n.$cacheDirty=!0,n.$cacheDirtyUp())}},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"text",{get:function(){return this.$text},set:function(t){this.$setText(t)},enumerable:!0,configurable:!0}),i.prototype.$setText=function(t){t=null==t?"":String(t);var e=this;return t==e.$text?!1:(e.$text=t,e.$invalidateContentBounds(),!0)},i.prototype.$getWidth=function(){var t=this,e=t.$textFieldWidth;return isNaN(e)?t.$getContentBounds().width:e},i.prototype.$setWidth=function(t){var e=this;return 0>t||t==e.$textFieldWidth?!1:(e.$textFieldWidth=t,e.$invalidateContentBounds(),!0)},i.prototype.$invalidateContentBounds=function(){this.$renderDirty=!0,this.$textLinesChanged=!0,this.$updateRenderNode()},i.prototype.$getHeight=function(){var t=this,e=t.$textFieldHeight;return isNaN(e)?t.$getContentBounds().height:e},i.prototype.$setHeight=function(t){var e=this;return 0>t||t==e.$textFieldHeight?!1:(e.$textFieldHeight=t,e.$invalidateContentBounds(),!0)},Object.defineProperty(i.prototype,"font",{get:function(){return this.$font},set:function(t){this.$setFont(t)},enumerable:!0,configurable:!0}),i.prototype.$setFont=function(t){var e=this;return e.$font==t?!1:(e.$font=t,e.$fontStringChanged=!0,this.$invalidateContentBounds(),!0)},Object.defineProperty(i.prototype,"lineSpacing",{get:function(){return this.$lineSpacing},set:function(t){this.$setLineSpacing(t)},enumerable:!0,configurable:!0}),i.prototype.$setLineSpacing=function(t){var e=this;return e.$lineSpacing==t?!1:(e.$lineSpacing=t,e.$invalidateContentBounds(),!0)},Object.defineProperty(i.prototype,"letterSpacing",{get:function(){return this.$letterSpacing},set:function(t){this.$setLetterSpacing(t)},enumerable:!0,configurable:!0}),i.prototype.$setLetterSpacing=function(t){var e=this;return e.$letterSpacing==t?!1:(e.$letterSpacing=t,e.$invalidateContentBounds(),!0)},Object.defineProperty(i.prototype,"textAlign",{get:function(){return this.$textAlign},set:function(t){this.$setTextAlign(t)},enumerable:!0,configurable:!0}),i.prototype.$setTextAlign=function(t){var e=this;return e.$textAlign==t?!1:(e.$textAlign=t,e.$invalidateContentBounds(),!0)},Object.defineProperty(i.prototype,"verticalAlign",{get:function(){return this.$verticalAlign},set:function(t){this.$setVerticalAlign(t)},enumerable:!0,configurable:!0}),i.prototype.$setVerticalAlign=function(t){var e=this;return e.$verticalAlign==t?!1:(e.$verticalAlign=t,e.$invalidateContentBounds(),!0)},i.prototype.$updateRenderNode=function(){var e=this,r=this.$getTextLines(),n=r.length;if(0==n)return void(t.nativeRender&&e.$font&&(e.$nativeDisplayObject.setDataToBitmapNode(e.$nativeDisplayObject.id,e.$font.$texture,[]),e.$nativeDisplayObject.setWidth(0),e.$nativeDisplayObject.setHeight(0)));var a,o=[],s=this.$textLinesWidth,h=e.$font;t.nativeRender||(a=this.$renderNode,h.$texture&&(a.image=h.$texture.$bitmapData),a.smoothing=e.$smoothing);for(var c=h._getFirstCharHeight(),l=Math.ceil(c*i.EMPTY_FACTOR),u=!isNaN(e.$textFieldHeight),p=e.$textWidth,d=e.$textFieldWidth,f=e.$textFieldHeight,g=e.$textAlign,$=this.$textOffsetY+this.$textStartY,y=this.$lineHeights,v=0;n>v;v++){var m=y[v];if(u&&v>0&&$+m>f)break;var b=r[v],x=b.length,T=this.$textOffsetX;if(g!=t.HorizontalAlign.LEFT){var _=d>p?d:p;g==t.HorizontalAlign.RIGHT?T+=_-s[v]:g==t.HorizontalAlign.CENTER&&(T+=Math.floor((_-s[v])/2))}for(var D=0;x>D;D++){var O=b.charAt(D),w=h.getTexture(O);if(w){var E=w.$bitmapWidth,C=w.$bitmapHeight;t.nativeRender?o.push(w.$bitmapX,w.$bitmapY,E,C,T+w.$offsetX,$+w.$offsetY,w.$getScaleBitmapWidth(),w.$getScaleBitmapHeight(),w.$sourceWidth,w.$sourceHeight):(a.imageWidth=w.$sourceWidth,a.imageHeight=w.$sourceHeight,a.drawImage(w.$bitmapX,w.$bitmapY,E,C,T+w.$offsetX,$+w.$offsetY,w.$getScaleBitmapWidth(),w.$getScaleBitmapHeight())),T+=(h.getConfig(O,"xadvance")||w.$getTextureWidth())+e.$letterSpacing}else" "==O?T+=l:t.$warn(1046,O)}$+=m+e.$lineSpacing}if(t.nativeRender){e.$nativeDisplayObject.setDataToBitmapNode(e.$nativeDisplayObject.id,h.$texture,o);var R=e.$getContentBounds();e.$nativeDisplayObject.setWidth(R.width),e.$nativeDisplayObject.setHeight(R.height)}},i.prototype.$measureContentBounds=function(t){var e=this.$getTextLines();0==e.length?t.setEmpty():t.setTo(this.$textOffsetX+this.$textStartX,this.$textOffsetY+this.$textStartY,this.$textWidth-this.$textOffsetX,this.$textHeight-this.$textOffsetY)},Object.defineProperty(i.prototype,"textWidth",{get:function(){return this.$getTextLines(),this.$textWidth},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"textHeight",{get:function(){return this.$getTextLines(),this.$textHeight},enumerable:!0,configurable:!0}),i.prototype.$getTextLines=function(){function e(t){return m&&n.length>0&&f>m?!1:(f+=c+u,s||h||(l-=p),n.push(t),o.push(c),a.push(l),d=Math.max(l,d),!0)}var r=this;if(!r.$textLinesChanged)return r.textLines;var n=[];r.textLines=n;var a=[];r.$textLinesWidth=a,r.$textLinesChanged=!1;var o=[];if(r.$lineHeights=o,!r.$text||!r.$font)return r.$textWidth=0,r.$textHeight=0,n;for(var s,h,c,l,u=r.$lineSpacing,p=r.$letterSpacing,d=0,f=0,g=0,$=0,y=!isNaN(r.$textFieldWidth),v=r.$textFieldWidth,m=r.$textFieldHeight,b=r.$font,x=b._getFirstCharHeight(),T=Math.ceil(x*i.EMPTY_FACTOR),_=r.$text,D=_.split(/(?:\r\n|\r|\n)/),O=D.length,w=!0,E=0;O>E;E++){var C=D[E],R=C.length;c=0,l=0,s=!0,h=!1;for(var S=0;R>S;S++){s||(l+=p);var F=C.charAt(S),P=void 0,M=void 0,j=0,A=0,B=b.getTexture(F);if(B)P=B.$getTextureWidth(),M=B.$getTextureHeight(),j=B.$offsetX,A=B.$offsetY;else{if(" "!=F){t.$warn(1046,F),s&&(s=!1);continue}P=T,M=x}if(s&&(s=!1),w&&(w=!1),y&&S>0&&l+P>v){if(!e(C.substring(0,S)))break;C=C.substring(S),R=C.length,S=0,l=S==R-1?P:b.getConfig(F,"xadvance")||P,c=M}else l+=S==R-1?P:b.getConfig(F,"xadvance")||P,c=Math.max(M,c)}if(m&&E>0&&f>m)break;if(h=!0,!e(C))break}f-=u,r.$textWidth=d,r.$textHeight=f,this.$textOffsetX=g,this.$textOffsetY=$,this.$textStartX=0,this.$textStartY=0;var N;return v>d&&(N=r.$textAlign,N==t.HorizontalAlign.RIGHT?this.$textStartX=v-d:N==t.HorizontalAlign.CENTER&&(this.$textStartX=Math.floor((v-d)/2))),m>f&&(N=r.$verticalAlign,N==t.VerticalAlign.BOTTOM?this.$textStartY=m-f:N==t.VerticalAlign.MIDDLE&&(this.$textStartY=Math.floor((m-f)/2))),n},i.EMPTY_FACTOR=.33,i}(t.DisplayObject);t.BitmapText=e,__reflect(e.prototype,"egret.BitmapText")}(egret||(egret={}));var egret;!function(t){var e;!function(t){function e(t,e){console.error("empty sys.registerFontMapping = "+t+", "+e)}t.fontResourceCache={},t.registerFontMapping=e}(e=t.sys||(t.sys={}))}(egret||(egret={})),function(t){function e(e,i){t.sys.registerFontMapping(e,i)}t.registerFontMapping||(t.registerFontMapping=e)}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.LEFT="left",t.RIGHT="right",t.CENTER="center",t.JUSTIFY="justify",t.CONTENT_JUSTIFY="contentJustify",t}();t.HorizontalAlign=e,__reflect(e.prototype,"egret.HorizontalAlign")}(egret||(egret={}));var egret;!function(t){var e=function(){function e(){this.replaceArr=[],this.resutlArr=[],this.initReplaceArr()}return e.prototype.initReplaceArr=function(){this.replaceArr=[],this.replaceArr.push([/</g,"<"]),this.replaceArr.push([/>/g,">"]),this.replaceArr.push([/&/g,"&"]),this.replaceArr.push([/"/g,'"']),this.replaceArr.push([/'/g,"'"])},e.prototype.replaceSpecial=function(t){for(var e=0;ei;){var n=e.indexOf("<",i);if(0>n)this.addToResultArr(e.substring(i)),i=r;else{this.addToResultArr(e.substring(i,n));var a=e.indexOf(">",n);-1==a?(t.$error(1038),a=n):"/"==e.charAt(n+1)?this.stackArray.pop():this.addToArray(e.substring(n+1,a)),i=a+1}}return this.resutlArr},e.prototype.parser=function(t){return this.parse(t)},e.prototype.addToResultArr=function(t){""!=t&&(t=this.replaceSpecial(t),this.stackArray.length>0?this.resutlArr.push({text:t,style:this.stackArray[this.stackArray.length-1]}):this.resutlArr.push({text:t}))},e.prototype.changeStringToObject=function(t){t=t.trim();var e={},i=[];if("i"==t.charAt(0)||"b"==t.charAt(0)||"u"==t.charAt(0))this.addProperty(e,t,"true");else if(i=t.match(/^(font|a)\s/)){t=t.substring(i[0].length).trim();for(var r=0,n=void 0;n=t.match(this.getHeadReg());){var a=n[0],o="";t=t.substring(a.length).trim(),'"'==t.charAt(0)?(r=t.indexOf('"',1),o=t.substring(1,r),r+=1):"'"==t.charAt(0)?(r=t.indexOf("'",1),o=t.substring(1,r),r+=1):(o=t.match(/(\S)+/)[0],r=o.length),this.addProperty(e,a.substring(0,a.length-1).trim(),o.trim()),t=t.substring(r).trim()}}return e},e.prototype.getHeadReg=function(){return/^(color|textcolor|strokecolor|stroke|b|bold|i|italic|u|size|fontfamily|href|target)(\s)*=/},e.prototype.addProperty=function(t,e,i){switch(e.toLowerCase()){case"color":case"textcolor":i=i.replace(/#/,"0x"),t.textColor=parseInt(i);break;case"strokecolor":i=i.replace(/#/,"0x"),t.strokeColor=parseInt(i);break;case"stroke":t.stroke=parseInt(i);break;case"b":case"bold":t.bold="true"==i;break;case"u":t.underline="true"==i;break;case"i":case"italic":t.italic="true"==i;break;case"size":t.size=parseInt(i);break;case"fontfamily":t.fontFamily=i;break;case"href":t.href=this.replaceSpecial(i);break;case"target":t.target=this.replaceSpecial(i)}},e.prototype.addToArray=function(t){var e=this.changeStringToObject(t);if(0==this.stackArray.length)this.stackArray.push(e);else{var i=this.stackArray[this.stackArray.length-1];for(var r in i)null==e[r]&&(e[r]=i[r]);this.stackArray.push(e)}},e}();t.HtmlTextParser=e,__reflect(e.prototype,"egret.HtmlTextParser")}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.stageTextAdded=!1,t._text=null,t._isFocus=!1,t}return __extends(i,e),i.prototype.init=function(e){this._text=e,this.stageText=new t.StageText,this.stageText.$setTextField(this._text)},i.prototype._addStageText=function(){this.stageTextAdded||(this._text.$inputEnabled||(this._text.$touchEnabled=!0),this.tempStage=this._text.stage,this.stageText.$addToStage(),this.stageText.addEventListener("updateText",this.updateTextHandler,this),this._text.addEventListener(t.TouchEvent.TOUCH_BEGIN,this.onMouseDownHandler,this),this._text.addEventListener(t.TouchEvent.TOUCH_MOVE,this.onMouseMoveHandler,this),this.stageText.addEventListener("blur",this.blurHandler,this),this.stageText.addEventListener("focus",this.focusHandler,this),this.stageTextAdded=!0)},i.prototype._removeStageText=function(){this.stageTextAdded&&(this._text.$inputEnabled||(this._text.$touchEnabled=!1),this.stageText.$removeFromStage(),this.stageText.removeEventListener("updateText",this.updateTextHandler,this),this._text.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this.onMouseDownHandler,this),this._text.addEventListener(t.TouchEvent.TOUCH_MOVE,this.onMouseMoveHandler,this),this.tempStage.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this.onStageDownHandler,this),this.stageText.removeEventListener("blur",this.blurHandler,this),this.stageText.removeEventListener("focus",this.focusHandler,this),this.stageTextAdded=!1)},i.prototype._getText=function(){return this.stageText.$getText()},i.prototype._setText=function(t){this.stageText.$setText(t)},i.prototype._setColor=function(t){this.stageText.$setColor(t)},i.prototype.focusHandler=function(e){this._isFocus||(this._isFocus=!0,e.showing||this._text.$setIsTyping(!0),this._text.dispatchEvent(new t.FocusEvent(t.FocusEvent.FOCUS_IN,!0)))},i.prototype.blurHandler=function(e){this._isFocus&&(this._isFocus=!1,this.tempStage.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this.onStageDownHandler,this),this._text.$setIsTyping(!1),this.stageText.$onBlur(),this._text.dispatchEvent(new t.FocusEvent(t.FocusEvent.FOCUS_OUT,!0)))},i.prototype.onMouseDownHandler=function(t){this.$onFocus()},i.prototype.onMouseMoveHandler=function(t){this.stageText.$hide()},i.prototype.$onFocus=function(e){var i=this;void 0===e&&(e=!1),this._text.visible&&(this._isFocus||(this.tempStage.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this.onStageDownHandler,this),t.callLater(function(){i.tempStage.addEventListener(t.TouchEvent.TOUCH_BEGIN,i.onStageDownHandler,i) +},this),t.nativeRender&&this.stageText.$setText(this._text.$TextField[13]),this.stageText.$show(e)))},i.prototype.onStageDownHandler=function(t){t.$target!=this._text&&this.stageText.$hide()},i.prototype.updateTextHandler=function(e){var i,r,n=this._text.$TextField,a=this.stageText.$getText(),o=!1;null!=n[35]&&(i=new RegExp("["+n[35]+"]","g"),r=a.match(i),a=r?r.join(""):"",o=!0),null!=n[36]&&(i=new RegExp("[^"+n[36]+"]","g"),r=a.match(i),a=r?r.join(""):"",o=!0),o&&this.stageText.$getText()!=a&&this.stageText.$setText(a),this.resetText(),this._text.dispatchEvent(new t.Event(t.Event.CHANGE,!0))},i.prototype.resetText=function(){this._text.$setBaseText(this.stageText.$getText())},i.prototype._hideInput=function(){this.stageText.$removeFromStage()},i.prototype.updateInput=function(){!this._text.$visible&&this.stageText&&this._hideInput()},i.prototype._updateProperties=function(){return this._isFocus?(this.stageText.$resetStageText(),void this.updateInput()):(this.stageText.$setText(this._text.$TextField[13]),this.stageText.$resetStageText(),void this.updateInput())},i}(t.HashObject);t.InputController=e,__reflect(e.prototype,"egret.InputController")}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){function e(e,i,n){n=n||{};var a=null==n.italic?i[16]:n.italic,o=null==n.bold?i[15]:n.bold,s=null==n.size?i[0]:n.size,h=n.fontFamily||i[8]||r.default_fontFamily;return t.sys.measureText(e,h,s,o,a)}var i=new RegExp("(?=[\\u00BF-\\u1FFF\\u2C00-\\uD7FF]|\\b|\\s)(?![。,!、》…))}”】\\.\\,\\!\\?\\]\\:])"),r=function(r){function n(){var e=r.call(this)||this;e.$inputEnabled=!1,e.inputUtils=null,e.$graphicsNode=null,e.isFlow=!1,e.textArr=[],e.linesArr=[],e.$isTyping=!1;var i=new t.sys.TextNode;return i.fontFamily=n.default_fontFamily,e.textNode=i,e.$renderNode=i,e.$TextField={0:n.default_size,1:0,2:n.default_textColor,3:0/0,4:0/0,5:0,6:0,7:0,8:n.default_fontFamily,9:"left",10:"top",11:"#ffffff",12:"",13:"",14:[],15:!1,16:!1,17:!0,18:!1,19:!1,20:!1,21:0,22:0,23:0,24:t.TextFieldType.DYNAMIC,25:0,26:"#000000",27:0,28:-1,29:0,30:!1,31:!1,32:0,33:!1,34:16777215,35:null,36:null,37:t.TextFieldInputType.TEXT,38:!1},t.nativeRender&&(e.$nativeDisplayObject.setFontFamily(n.default_fontFamily),e.$nativeDisplayObject.setFontSize(n.default_size)),e}return __extends(n,r),n.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(7)},n.prototype.isInput=function(){return this.$TextField[24]==t.TextFieldType.INPUT},n.prototype.$setTouchEnabled=function(t){r.prototype.$setTouchEnabled.call(this,t),this.isInput()&&(this.$inputEnabled=!0)},Object.defineProperty(n.prototype,"fontFamily",{get:function(){return this.$TextField[8]},set:function(t){this.$setFontFamily(t)},enumerable:!0,configurable:!0}),n.prototype.$setFontFamily=function(e){var i=this.$TextField;return i[8]==e?!1:(i[8]=e,this.invalidateFontString(),t.nativeRender&&this.$nativeDisplayObject.setFontFamily(e),!0)},Object.defineProperty(n.prototype,"size",{get:function(){return this.$TextField[0]},set:function(t){this.$setSize(t)},enumerable:!0,configurable:!0}),n.prototype.$setSize=function(e){var i=this.$TextField;return i[0]==e?!1:(i[0]=e,this.invalidateFontString(),t.nativeRender&&this.$nativeDisplayObject.setFontSize(e),!0)},Object.defineProperty(n.prototype,"bold",{get:function(){return this.$TextField[15]},set:function(t){this.$setBold(t)},enumerable:!0,configurable:!0}),n.prototype.$setBold=function(e){var i=this.$TextField;return e==i[15]?!1:(i[15]=e,this.invalidateFontString(),t.nativeRender&&this.$nativeDisplayObject.setBold(e),!0)},Object.defineProperty(n.prototype,"italic",{get:function(){return this.$TextField[16]},set:function(t){this.$setItalic(t)},enumerable:!0,configurable:!0}),n.prototype.$setItalic=function(e){var i=this.$TextField;return e==i[16]?!1:(i[16]=e,this.invalidateFontString(),t.nativeRender&&this.$nativeDisplayObject.setItalic(e),!0)},n.prototype.invalidateFontString=function(){this.$TextField[17]=!0,this.$invalidateTextField()},Object.defineProperty(n.prototype,"textAlign",{get:function(){return this.$TextField[9]},set:function(t){this.$setTextAlign(t)},enumerable:!0,configurable:!0}),n.prototype.$setTextAlign=function(e){var i=this.$TextField;return i[9]==e?!1:(i[9]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setTextAlign(e),!0)},Object.defineProperty(n.prototype,"verticalAlign",{get:function(){return this.$TextField[10]},set:function(t){this.$setVerticalAlign(t)},enumerable:!0,configurable:!0}),n.prototype.$setVerticalAlign=function(e){var i=this.$TextField;return i[10]==e?!1:(i[10]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setVerticalAlign(e),!0)},Object.defineProperty(n.prototype,"lineSpacing",{get:function(){return this.$TextField[1]},set:function(t){this.$setLineSpacing(t)},enumerable:!0,configurable:!0}),n.prototype.$setLineSpacing=function(e){var i=this.$TextField;return i[1]==e?!1:(i[1]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setLineSpacing(e),!0)},Object.defineProperty(n.prototype,"textColor",{get:function(){return this.$TextField[2]},set:function(t){this.$setTextColor(t)},enumerable:!0,configurable:!0}),n.prototype.$setTextColor=function(e){var i=this.$TextField;return i[2]==e?!1:(i[2]=e,this.inputUtils&&this.inputUtils._setColor(this.$TextField[2]),this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setTextColor(e),!0)},Object.defineProperty(n.prototype,"wordWrap",{get:function(){return this.$TextField[19]},set:function(t){this.$setWordWrap(t)},enumerable:!0,configurable:!0}),n.prototype.$setWordWrap=function(e){var i=this.$TextField;e!=i[19]&&(i[20]||(i[19]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setWordWrap(e)))},Object.defineProperty(n.prototype,"type",{get:function(){return this.$TextField[24]},set:function(t){this.$setType(t)},enumerable:!0,configurable:!0}),n.prototype.$setType=function(e){var i=this.$TextField;return i[24]!=e?(i[24]=e,t.nativeRender&&this.$nativeDisplayObject.setType(e),e==t.TextFieldType.INPUT?(isNaN(i[3])&&this.$setWidth(100),isNaN(i[4])&&this.$setHeight(30),this.$setTouchEnabled(!0),null==this.inputUtils&&(this.inputUtils=new t.InputController),this.inputUtils.init(this),this.$invalidateTextField(),this.$stage&&this.inputUtils._addStageText()):(this.inputUtils&&(this.inputUtils._removeStageText(),this.inputUtils=null),this.$setTouchEnabled(!1)),!0):!1},Object.defineProperty(n.prototype,"inputType",{get:function(){return this.$TextField[37]},set:function(e){this.$TextField[37]!=e&&(this.$TextField[37]=e,t.nativeRender&&this.$nativeDisplayObject.setInputType(e))},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"text",{get:function(){return this.$getText()},set:function(t){this.$setText(t)},enumerable:!0,configurable:!0}),n.prototype.$getText=function(){return this.$TextField[24]==t.TextFieldType.INPUT?this.inputUtils._getText():this.$TextField[13]},n.prototype.$setBaseText=function(e){e=null==e?"":e.toString(),this.isFlow=!1;var i=this.$TextField;if(i[13]!=e){this.$invalidateTextField(),i[13]=e;var r="";return r=i[20]?this.changeToPassText(e):e,t.nativeRender&&this.$nativeDisplayObject.setText(r),this.setMiddleStyle([{text:r}]),!0}return!1},n.prototype.$setText=function(t){null==t&&(t="");var e=this.$setBaseText(t);return this.inputUtils&&this.inputUtils._setText(this.$TextField[13]),e},Object.defineProperty(n.prototype,"displayAsPassword",{get:function(){return this.$TextField[20]},set:function(t){this.$setDisplayAsPassword(t)},enumerable:!0,configurable:!0}),n.prototype.$setDisplayAsPassword=function(e){var i=this.$TextField;if(i[20]!=e){i[20]=e,this.$invalidateTextField();var r="";return r=e?this.changeToPassText(i[13]):i[13],t.nativeRender&&this.$nativeDisplayObject.setText(r),this.setMiddleStyle([{text:r}]),!0}return!1},Object.defineProperty(n.prototype,"strokeColor",{get:function(){return this.$TextField[25]},set:function(t){this.$setStrokeColor(t)},enumerable:!0,configurable:!0}),n.prototype.$setStrokeColor=function(e){var i=this.$TextField;return i[25]!=e?(this.$invalidateTextField(),i[25]=e,t.nativeRender&&this.$nativeDisplayObject.setStrokeColor(e),i[26]=t.toColorString(e),!0):!1},Object.defineProperty(n.prototype,"stroke",{get:function(){return this.$TextField[27]},set:function(t){this.$setStroke(t)},enumerable:!0,configurable:!0}),n.prototype.$setStroke=function(e){return this.$TextField[27]!=e?(this.$invalidateTextField(),this.$TextField[27]=e,t.nativeRender&&this.$nativeDisplayObject.setStroke(e),!0):!1},Object.defineProperty(n.prototype,"maxChars",{get:function(){return this.$TextField[21]},set:function(t){this.$setMaxChars(t)},enumerable:!0,configurable:!0}),n.prototype.$setMaxChars=function(e){return this.$TextField[21]!=e?(this.$TextField[21]=e,t.nativeRender&&this.$nativeDisplayObject.setMaxChars(e),!0):!1},Object.defineProperty(n.prototype,"scrollV",{get:function(){return Math.min(Math.max(this.$TextField[28],1),this.maxScrollV)},set:function(e){e=Math.max(e,1),e!=this.$TextField[28]&&(this.$TextField[28]=e,t.nativeRender&&this.$nativeDisplayObject.setScrollV(e),this.$invalidateTextField())},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"maxScrollV",{get:function(){return this.$getLinesArr(),Math.max(this.$TextField[29]-t.TextFieldUtils.$getScrollNum(this)+1,1)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"selectionBeginIndex",{get:function(){return 0},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"selectionEndIndex",{get:function(){return 0},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"caretIndex",{get:function(){return 0},enumerable:!0,configurable:!0}),n.prototype.$setSelection=function(t,e){return!1},n.prototype.$getLineHeight=function(){return this.$TextField[1]+this.$TextField[0]},Object.defineProperty(n.prototype,"numLines",{get:function(){return this.$getLinesArr(),this.$TextField[29]},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"multiline",{get:function(){return this.$TextField[30]},set:function(t){this.$setMultiline(t)},enumerable:!0,configurable:!0}),n.prototype.$setMultiline=function(e){return this.$TextField[30]==e?!1:(this.$TextField[30]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setMultiline(e),!0)},Object.defineProperty(n.prototype,"restrict",{get:function(){var t=this.$TextField,e=null;return null!=t[35]&&(e=t[35]),null!=t[36]&&(null==e&&(e=""),e+="^"+t[36]),e},set:function(t){var e=this.$TextField;if(null==t)e[35]=null,e[36]=null;else{for(var i=-1;i0&&"\\"==t.charAt(i-1);)i++;0==i?(e[35]=null,e[36]=t.substring(i+1)):i>0?(e[35]=t.substring(0,i),e[36]=t.substring(i+1)):(e[35]=t,e[36]=null)}},enumerable:!0,configurable:!0}),n.prototype.$setWidth=function(e){t.nativeRender&&this.$nativeDisplayObject.setTextFieldWidth(e);var i=this.$TextField;if(isNaN(e)){if(isNaN(i[3]))return!1;i[3]=0/0}else{if(i[3]==e)return!1;i[3]=e}return e=+e,0>e?!1:(this.$invalidateTextField(),!0)},n.prototype.$setHeight=function(e){t.nativeRender&&this.$nativeDisplayObject.setTextFieldHeight(e);var i=this.$TextField;if(isNaN(e)){if(isNaN(i[4]))return!1;i[4]=0/0}else{if(i[4]==e)return!1;i[4]=e}return e=+e,0>e?!1:(this.$invalidateTextField(),!0)},n.prototype.$getWidth=function(){var t=this.$TextField;return isNaN(t[3])?this.$getContentBounds().width:t[3]},n.prototype.$getHeight=function(){var t=this.$TextField;return isNaN(t[4])?this.$getContentBounds().height:t[4]},Object.defineProperty(n.prototype,"border",{get:function(){return this.$TextField[31]},set:function(t){this.$setBorder(t)},enumerable:!0,configurable:!0}),n.prototype.$setBorder=function(e){e=!!e,this.$TextField[31]!=e&&(this.$TextField[31]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setBorder(e))},Object.defineProperty(n.prototype,"borderColor",{get:function(){return this.$TextField[32]},set:function(t){this.$setBorderColor(t)},enumerable:!0,configurable:!0}),n.prototype.$setBorderColor=function(e){e=+e||0,this.$TextField[32]!=e&&(this.$TextField[32]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setBorderColor(e))},Object.defineProperty(n.prototype,"background",{get:function(){return this.$TextField[33]},set:function(t){this.$setBackground(t)},enumerable:!0,configurable:!0}),n.prototype.$setBackground=function(e){this.$TextField[33]!=e&&(this.$TextField[33]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setBackground(e))},Object.defineProperty(n.prototype,"backgroundColor",{get:function(){return this.$TextField[34]},set:function(t){this.$setBackgroundColor(t)},enumerable:!0,configurable:!0}),n.prototype.$setBackgroundColor=function(e){this.$TextField[34]!=e&&(this.$TextField[34]=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setBackgroundColor(e))},n.prototype.fillBackground=function(e){var i=this.$graphicsNode;i&&i.clear();var r=this.$TextField;if(r[33]||r[31]||e&&e.length>0){if(!i)if(i=this.$graphicsNode=new t.sys.GraphicsNode,t.nativeRender)this.$renderNode=this.textNode;else{var n=new t.sys.GroupNode;n.addNode(i),n.addNode(this.textNode),this.$renderNode=n}var a=void 0,o=void 0;if(r[33]&&(a=i.beginFill(r[34]),a.drawRect(0,0,this.$getWidth(),this.$getHeight())),r[31]&&(o=i.lineStyle(1,r[32]),o.drawRect(0,0,this.$getWidth()-1,this.$getHeight()-1)),e&&e.length>0)for(var s=r[2],h=-1,c=e.length,l=0;c>l;l+=4){var u=e[l],p=e[l+1],d=e[l+2],f=e[l+3]||s;(0>h||h!=f)&&(h=f,o=i.lineStyle(2,f,1,t.CapsStyle.NONE)),o.moveTo(u,p),o.lineTo(u+d,p)}}if(i){var g=this.$getRenderBounds();i.x=g.x,i.y=g.y,i.width=g.width,i.height=g.height,t.Rectangle.release(g)}},n.prototype.setFocus=function(){this.type==t.TextFieldType.INPUT&&this.$stage&&this.inputUtils.$onFocus(!0)},n.prototype.$onRemoveFromStage=function(){r.prototype.$onRemoveFromStage.call(this),this.removeEvent(),this.$TextField[24]==t.TextFieldType.INPUT&&this.inputUtils._removeStageText(),this.textNode&&(this.textNode.clean(),t.nativeRender&&egret_native.NativeDisplayObject.disposeTextData(this))},n.prototype.$onAddToStage=function(e,i){r.prototype.$onAddToStage.call(this,e,i),this.addEvent(),this.$TextField[24]==t.TextFieldType.INPUT&&this.inputUtils._addStageText()},n.prototype.$invalidateTextField=function(){var e=this;if(e.$renderDirty=!0,e.$TextField[18]=!0,e.$TextField[38]=!0,t.nativeRender);else{var i=e.$parent;i&&!i.$cacheDirty&&(i.$cacheDirty=!0,i.$cacheDirtyUp());var r=e.$maskedObject;r&&!r.$cacheDirty&&(r.$cacheDirty=!0,r.$cacheDirtyUp())}},n.prototype.$getRenderBounds=function(){var e=this.$getContentBounds(),i=t.Rectangle.create();i.copyFrom(e),this.$TextField[31]&&(i.width+=2,i.height+=2);var r=2*this.$TextField[27];return r>0&&(i.width+=2*r,i.height+=2*r),i.x-=r+2,i.y-=r+2,i.width=Math.ceil(i.width)+4,i.height=Math.ceil(i.height)+4,i},n.prototype.$measureContentBounds=function(e){this.$getLinesArr();var i=0,r=0;t.nativeRender?(i=egret_native.nrGetTextFieldWidth(this.$nativeDisplayObject.id),r=egret_native.nrGetTextFieldHeight(this.$nativeDisplayObject.id)):(i=isNaN(this.$TextField[3])?this.$TextField[5]:this.$TextField[3],r=isNaN(this.$TextField[4])?t.TextFieldUtils.$getTextHeight(this):this.$TextField[4]),e.setTo(0,0,i,r)},n.prototype.$updateRenderNode=function(){if(this.$TextField[24]==t.TextFieldType.INPUT){if(this.inputUtils._updateProperties(),this.$isTyping)return void this.fillBackground()}else if(0==this.$TextField[3]){var e=this.$graphicsNode;return void(e&&e.clear())}var i=this.drawText();this.fillBackground(i);var r=this.$getRenderBounds(),n=this.textNode;n.x=r.x,n.y=r.y,n.width=Math.ceil(r.width),n.height=Math.ceil(r.height),t.Rectangle.release(r)},Object.defineProperty(n.prototype,"textFlow",{get:function(){return this.textArr},set:function(e){this.isFlow=!0;var i="";null==e&&(e=[]);for(var r=0;ri;i++)switch(t.charAt(i)){case"\n":e+="\n";break;case"\r":break;default:e+="*"}return e}return t},n.prototype.setMiddleStyle=function(t){this.$TextField[18]=!0,this.$TextField[38]=!0,this.textArr=t,this.$invalidateTextField()},Object.defineProperty(n.prototype,"textWidth",{get:function(){return this.$getLinesArr(),t.nativeRender?egret_native.nrGetTextWidth(this.$nativeDisplayObject.id):this.$TextField[5]},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"textHeight",{get:function(){return this.$getLinesArr(),t.nativeRender?egret_native.nrGetTextHeight(this.$nativeDisplayObject.id):t.TextFieldUtils.$getTextHeight(this)},enumerable:!0,configurable:!0}),n.prototype.appendText=function(t){this.appendElement({text:t})},n.prototype.appendElement=function(e){var i=this.$TextField[13]+e.text;return t.nativeRender?(this.textArr.push(e),this.$TextField[13]=i,this.$TextField[18]=!0,this.$TextField[38]=!0,void this.$nativeDisplayObject.setTextFlow(this.textArr)):void(this.$TextField[20]?this.$setBaseText(i):(this.$TextField[13]=i,this.textArr.push(e),this.setMiddleStyle(this.textArr)))},n.prototype.$getLinesArr=function(){var e=this.$TextField;return t.nativeRender&&e[38]?(egret_native.updateNativeRender(),void(e[38]=!1)):this.$getLinesArr2()},n.prototype.$getLinesArr2=function(){var r=this.$TextField;if(!r[18])return this.linesArr;r[18]=!1;var n=this.textArr;this.linesArr.length=0,r[6]=0,r[5]=0;var a=r[3];if(!isNaN(a)&&0==a)return r[29]=0,[{width:0,height:0,charNum:0,elements:[],hasNextLine:!1}];for(var o,s=this.linesArr,h=0,c=0,l=0,u=0,p=0,d=n.length;d>p;p++){var f=n[p];if(f.text){f.style=f.style||{};for(var g=f.text.toString(),$=g.split(/(?:\r\n|\r|\n)/),y=0,v=$.length;v>y;y++){null==s[u]&&(o={width:0,height:0,elements:[],charNum:0,hasNextLine:!1},s[u]=o,h=0,l=0,c=0),l=r[24]==t.TextFieldType.INPUT?r[0]:Math.max(l,f.style.size||r[0]);var m=!0;if(""==$[y])y==v-1&&(m=!1);else{var b=e($[y],r,f.style);if(isNaN(a))h+=b,c+=$[y].length,o.elements.push({width:b,text:$[y],style:f.style}),y==v-1&&(m=!1);else if(a>=h+b)o.elements.push({width:b,text:$[y],style:f.style}),h+=b,c+=$[y].length,y==v-1&&(m=!1);else{var x=0,T=0,_=$[y],D=void 0;D=r[19]?_.split(i):_.match(/./g);for(var O=D.length,w=0;O>x;x++){var E=D[x].length,C=!1;if(1==E&&O-1>x){var R=D[x].charCodeAt(0),S=D[x+1].charCodeAt(0);if(R>=55296&&56319>=R&&56320==(64512&S)){var F=D[x]+D[x+1];E=2,C=!0,b=e(F,r,f.style)}else b=e(D[x],r,f.style)}else b=e(D[x],r,f.style);if(0!=h&&h+b>a&&h+x!=0)break;if(T+b>a)for(var P=D[x].match(/./g),M=0,j=P.length;j>M;M++){var E=P[M].length,A=!1;if(1==E&&j-1>M){var R=P[M].charCodeAt(0),S=P[M+1].charCodeAt(0);if(R>=55296&&56319>=R&&56320==(64512&S)){var F=P[M]+P[M+1];E=2,A=!0,b=e(F,r,f.style)}else b=e(P[M],r,f.style)}else b=e(P[M],r,f.style);if(M>0&&h+b>a)break;w+=E,T+=b,h+=b,c+=w,A&&M++}else w+=E,T+=b,h+=b,c+=w;C&&x++}if(x>0){o.elements.push({width:T,text:_.substring(0,w),style:f.style});var B=_.substring(w),N=void 0,k=B.length;for(N=0;k>N&&" "==B.charAt(N);N++);$[y]=B.substring(N)}""!=$[y]&&(y--,m=!1)}}m&&(c++,o.hasNextLine=!0),y<$.length-1&&(o.width=h,o.height=l,o.charNum=c,r[5]=Math.max(r[5],h),r[6]+=l,u++)}p==n.length-1&&o&&(o.width=h,o.height=l,o.charNum=c,r[5]=Math.max(r[5],h),r[6]+=l)}else o&&(o.width=h,o.height=l,o.charNum=c,r[5]=Math.max(r[5],h),r[6]+=l)}return r[29]=s.length,s},n.prototype.$setIsTyping=function(e){this.$isTyping=e,this.$invalidateTextField(),t.nativeRender&&this.$nativeDisplayObject.setIsTyping(e)},n.prototype.drawText=function(){var e=this.textNode,i=this.$TextField;e.bold=i[15],e.fontFamily=i[8]||n.default_fontFamily,e.italic=i[16],e.size=i[0],e.stroke=i[27],e.strokeColor=i[25],e.textColor=i[2];var r=this.$getLinesArr();if(0==i[5])return[];var a=isNaN(i[3])?i[5]:i[3],o=t.TextFieldUtils.$getTextHeight(this),s=0,h=t.TextFieldUtils.$getStartLine(this),c=i[4];if(!isNaN(c)&&c>o){var l=t.TextFieldUtils.$getValign(this);s+=l*(c-o)}s=Math.round(s);for(var u=t.TextFieldUtils.$getHalign(this),p=0,d=[],f=h,g=i[29];g>f;f++){var $=r[f],y=$.height;if(s+=y/2,f!=h){if(i[24]==t.TextFieldType.INPUT&&!i[30])break;if(!isNaN(c)&&s>c)break}p=Math.round((a-$.width)*u);for(var v=0,m=$.elements.length;m>v;v++){var b=$.elements[v],x=b.style.size||i[0];e.drawText(p,s+(y-x)/2,b.text,b.style),b.style.underline&&d.push(p,s+y/2,b.width,b.style.textColor),p+=b.width}s+=y/2+i[1]}return d},n.prototype.addEvent=function(){this.addEventListener(t.TouchEvent.TOUCH_TAP,this.onTapHandler,this)},n.prototype.removeEvent=function(){this.removeEventListener(t.TouchEvent.TOUCH_TAP,this.onTapHandler,this)},n.prototype.onTapHandler=function(e){if(this.$TextField[24]!=t.TextFieldType.INPUT){var i=t.TextFieldUtils.$getTextElement(this,e.localX,e.localY);if(null!=i){var r=i.style;if(r&&r.href)if(r.href.match(/^event:/)){var n=r.href.match(/^event:/)[0];t.TextEvent.dispatchTextEvent(this,t.TextEvent.LINK,r.href.substring(n.length))}else open(r.href,r.target||"_blank")}}},n.default_fontFamily="Arial",n.default_size=30,n.default_textColor=16777215,n}(t.DisplayObject);t.TextField=r,__reflect(r.prototype,"egret.TextField")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.TEXT="text",t.TEL="tel",t.PASSWORD="password",t}();t.TextFieldInputType=e,__reflect(e.prototype,"egret.TextFieldInputType")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.DYNAMIC="dynamic",t.INPUT="input",t}();t.TextFieldType=e,__reflect(e.prototype,"egret.TextFieldType")}(egret||(egret={}));var egret;!function(t){var e=function(){function e(){}return e.$getStartLine=function(t){var i=t.$TextField,r=e.$getTextHeight(t),n=0,a=i[4];return isNaN(a)||(a>r||r>a&&(n=Math.max(i[28]-1,0),n=Math.min(i[29]-1,n)),i[30]||(n=Math.max(i[28]-1,0),i[29]>0&&(n=Math.min(i[29]-1,n)))),n},e.$getHalign=function(e){var i=e.$getLinesArr2(),r=0;return e.$TextField[9]==t.HorizontalAlign.CENTER?r=.5:e.$TextField[9]==t.HorizontalAlign.RIGHT&&(r=1),e.$TextField[24]==t.TextFieldType.INPUT&&!e.$TextField[30]&&i.length>1&&(r=0),r},e.$getTextHeight=function(e){var i=t.TextFieldType.INPUT!=e.$TextField[24]||e.$TextField[30]?e.$TextField[6]+(e.$TextField[29]-1)*e.$TextField[1]:e.$TextField[0];return i},e.$getValign=function(i){var r=e.$getTextHeight(i),n=i.$TextField[4];if(!isNaN(n)&&n>r){var a=0;return i.$TextField[10]==t.VerticalAlign.MIDDLE?a=.5:i.$TextField[10]==t.VerticalAlign.BOTTOM&&(a=1),a}return 0},e.$getTextElement=function(t,i,r){var n=e.$getHit(t,i,r),a=t.$getLinesArr2();return n&&a[n.lineIndex]&&a[n.lineIndex].elements[n.textElementIndex]?a[n.lineIndex].elements[n.textElementIndex]:null},e.$getHit=function(t,i,r){var n=t.$getLinesArr2();if(0==t.$TextField[3])return null;var a=0,o=e.$getTextHeight(t),s=0,h=t.$TextField[4];if(!isNaN(h)&&h>o){var c=e.$getValign(t);s=c*(h-o),0!=s&&(r-=s)}for(var l=e.$getStartLine(t),u=0,p=l;p=r){r>u&&(a=p+1);break}if(u+=d.height,u+t.$TextField[1]>r)return null;u+=t.$TextField[1]}if(0==a)return null;var f=n[a-1],g=t.$TextField[3];isNaN(g)&&(g=t.textWidth);var $=e.$getHalign(t);i-=$*(g-f.width);for(var y=0,p=0;py)return{lineIndex:a-1,textElementIndex:p}}return null},e.$getScrollNum=function(t){var e=1;if(t.$TextField[30]){var i=t.height,r=t.size,n=t.lineSpacing;e=Math.floor(i/(r+n));var a=i-(r+n)*e;a>r/2&&e++}return e},e}();t.TextFieldUtils=e,__reflect(e.prototype,"egret.TextFieldUtils")}(egret||(egret={}));var egret;!function(t){var e;!function(t){}(e=t.sys||(t.sys={}))}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.TOP="top",t.BOTTOM="bottom",t.MIDDLE="middle",t.JUSTIFY="justify",t.CONTENT_JUSTIFY="contentJustify",t}();t.VerticalAlign=e,__reflect(e.prototype,"egret.VerticalAlign")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.encode=function(t){for(var e=new Uint8Array(t),i=e.length,r="",n=0;i>n;n+=3)r+=chars[e[n]>>2],r+=chars[(3&e[n])<<4|e[n+1]>>4],r+=chars[(15&e[n+1])<<2|e[n+2]>>6],r+=chars[63&e[n+2]];return i%3===2?r=r.substring(0,r.length-1)+"=":i%3===1&&(r=r.substring(0,r.length-2)+"=="),r},t.decode=function(t){var e=.75*t.length,i=t.length,r=0,n=0,a=0,o=0,s=0;"="===t[t.length-1]&&(e--,"="===t[t.length-2]&&e--);for(var h=new ArrayBuffer(e),c=new Uint8Array(h),l=0;i>l;l+=4)n=lookup[t.charCodeAt(l)],a=lookup[t.charCodeAt(l+1)],o=lookup[t.charCodeAt(l+2)],s=lookup[t.charCodeAt(l+3)],c[r++]=n<<2|a>>4,c[r++]=(15&a)<<4|o>>2,c[r++]=(3&o)<<6|63&s;return h},t}();t.Base64Util=e,__reflect(e.prototype,"egret.Base64Util")}(egret||(egret={}));for(var chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",lookup=new Uint8Array(256),i=0;ii&&(i=0),this.bufferExtSize=i;var r,n=0;if(t){var a=void 0;if(t instanceof Uint8Array?(a=t,n=t.length):(n=t.byteLength,a=new Uint8Array(t)),0==i)r=new Uint8Array(n);else{var o=(n/i|0)+1;r=new Uint8Array(o*i)}r.set(a)}else r=new Uint8Array(i);this.write_position=n,this._position=0,this._bytes=r,this.data=new DataView(r.buffer),this.endian=e.BIG_ENDIAN}return Object.defineProperty(i.prototype,"endian",{get:function(){return 0==this.$endian?e.LITTLE_ENDIAN:e.BIG_ENDIAN},set:function(t){this.$endian=t==e.LITTLE_ENDIAN?0:1},enumerable:!0,configurable:!0}),i.prototype.setArrayBuffer=function(t){},Object.defineProperty(i.prototype,"readAvailable",{get:function(){return this.write_position-this._position},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"buffer",{get:function(){return this.data.buffer.slice(0,this.write_position)},set:function(t){var e,i=t.byteLength,r=new Uint8Array(t),n=this.bufferExtSize;if(0==n)e=new Uint8Array(i);else{var a=(i/n|0)+1;e=new Uint8Array(a*n)}e.set(r),this.write_position=i,this._bytes=e,this.data=new DataView(e.buffer)},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"rawBuffer",{get:function(){return this.data.buffer},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"bytes",{get:function(){return this._bytes},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"dataView",{get:function(){return this.data},set:function(t){this.buffer=t.buffer},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"bufferOffset",{get:function(){return this.data.byteOffset},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"position",{get:function(){return this._position},set:function(t){this._position=t,t>this.write_position&&(this.write_position=t)},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"length",{get:function(){return this.write_position},set:function(t){this.write_position=t,this.data.byteLength>t&&(this._position=t),this._validateBuffer(t)},enumerable:!0,configurable:!0}),i.prototype._validateBuffer=function(t){if(this.data.byteLength>0)+1)*e;i=new Uint8Array(r)}i.set(this._bytes),this._bytes=i,this.data=new DataView(i.buffer)}},Object.defineProperty(i.prototype,"bytesAvailable",{get:function(){return this.data.byteLength-this._position},enumerable:!0,configurable:!0}),i.prototype.clear=function(){var t=new ArrayBuffer(this.bufferExtSize);this.data=new DataView(t),this._bytes=new Uint8Array(t),this._position=0,this.write_position=0},i.prototype.readBoolean=function(){return this.validate(1)?!!this._bytes[this.position++]:void 0},i.prototype.readByte=function(){return this.validate(1)?this.data.getInt8(this.position++):void 0},i.prototype.readBytes=function(e,i,r){if(void 0===i&&(i=0),void 0===r&&(r=0),e){var n=this._position,a=this.write_position-n;if(0>a)return void t.$error(1025);if(0==r)r=a;else if(r>a)return void t.$error(1025);var o=e._position;e._position=0,e.validateBuffer(i+r),e._position=o,e._bytes.set(this._bytes.subarray(n,n+r),i),this.position+=r}},i.prototype.readDouble=function(){if(this.validate(8)){var t=this.data.getFloat64(this._position,0==this.$endian);return this.position+=8,t}},i.prototype.readFloat=function(){if(this.validate(4)){var t=this.data.getFloat32(this._position,0==this.$endian);return this.position+=4,t}},i.prototype.readInt=function(){if(this.validate(4)){var t=this.data.getInt32(this._position,0==this.$endian);return this.position+=4,t}},i.prototype.readShort=function(){if(this.validate(2)){var t=this.data.getInt16(this._position,0==this.$endian);return this.position+=2,t}},i.prototype.readUnsignedByte=function(){return this.validate(1)?this._bytes[this.position++]:void 0},i.prototype.readUnsignedInt=function(){if(this.validate(4)){var t=this.data.getUint32(this._position,0==this.$endian);return this.position+=4,t}},i.prototype.readUnsignedShort=function(){if(this.validate(2)){var t=this.data.getUint16(this._position,0==this.$endian);return this.position+=2,t}},i.prototype.readUTF=function(){var t=this.readUnsignedShort();return t>0?this.readUTFBytes(t):""},i.prototype.readUTFBytes=function(t){if(this.validate(t)){var e=this.data,i=new Uint8Array(e.buffer,e.byteOffset+this._position,t);return this.position+=t,this.decodeUTF8(i)}},i.prototype.writeBoolean=function(t){this.validateBuffer(1),this._bytes[this.position++]=+t},i.prototype.writeByte=function(t){this.validateBuffer(1),this._bytes[this.position++]=255&t},i.prototype.writeBytes=function(t,e,i){void 0===e&&(e=0),void 0===i&&(i=0);var r;0>e||0>i||(r=0==i?t.length-e:Math.min(t.length-e,i),r>0&&(this.validateBuffer(r),this._bytes.set(t._bytes.subarray(e,e+r),this._position),this.position=this._position+r))},i.prototype.writeDouble=function(t){this.validateBuffer(8),this.data.setFloat64(this._position,t,0==this.$endian),this.position+=8},i.prototype.writeFloat=function(t){this.validateBuffer(4),this.data.setFloat32(this._position,t,0==this.$endian),this.position+=4},i.prototype.writeInt=function(t){this.validateBuffer(4),this.data.setInt32(this._position,t,0==this.$endian),this.position+=4},i.prototype.writeShort=function(t){this.validateBuffer(2),this.data.setInt16(this._position,t,0==this.$endian),this.position+=2},i.prototype.writeUnsignedInt=function(t){this.validateBuffer(4),this.data.setUint32(this._position,t,0==this.$endian),this.position+=4},i.prototype.writeUnsignedShort=function(t){this.validateBuffer(2),this.data.setUint16(this._position,t,0==this.$endian),this.position+=2},i.prototype.writeUTF=function(t){var e=this.encodeUTF8(t),i=e.length;this.validateBuffer(2+i),this.data.setUint16(this._position,i,0==this.$endian),this.position+=2,this._writeUint8Array(e,!1)},i.prototype.writeUTFBytes=function(t){this._writeUint8Array(this.encodeUTF8(t))},i.prototype.toString=function(){return"[ByteArray] length:"+this.length+", bytesAvailable:"+this.bytesAvailable},i.prototype._writeUint8Array=function(t,e){void 0===e&&(e=!0);var i=this._position,r=i+t.length;e&&this.validateBuffer(r),this.bytes.set(t,i),this.position=r},i.prototype.validate=function(e){var i=this._bytes.length;return i>0&&this._position+e<=i?!0:void t.$error(1025)},i.prototype.validateBuffer=function(t){this.write_position=t>this.write_position?t:this.write_position,t+=this._position,this._validateBuffer(t)},i.prototype.encodeUTF8=function(t){for(var e=0,i=this.stringToCodePoints(t),r=[];i.length>e;){var n=i[e++];if(this.inRange(n,55296,57343))this.encoderError(n);else if(this.inRange(n,0,127))r.push(n);else{var a=void 0,o=void 0;for(this.inRange(n,128,2047)?(a=1,o=192):this.inRange(n,2048,65535)?(a=2,o=224):this.inRange(n,65536,1114111)&&(a=3,o=240),r.push(this.div(n,Math.pow(64,a))+o);a>0;){var s=this.div(n,Math.pow(64,a-1)); +r.push(128+s%64),a-=1}}}return new Uint8Array(r)},i.prototype.decodeUTF8=function(t){for(var e,i=!1,r=0,n="",a=0,o=0,s=0,h=0;t.length>r;){var c=t[r++];if(c==this.EOF_byte)e=0!=o?this.decoderError(i):this.EOF_code_point;else if(0==o)this.inRange(c,0,127)?e=c:(this.inRange(c,194,223)?(o=1,h=128,a=c-192):this.inRange(c,224,239)?(o=2,h=2048,a=c-224):this.inRange(c,240,244)?(o=3,h=65536,a=c-240):this.decoderError(i),a*=Math.pow(64,o),e=null);else if(this.inRange(c,128,191))if(s+=1,a+=(c-128)*Math.pow(64,o-s),s!==o)e=null;else{var l=a,u=h;a=0,o=0,s=0,h=0,e=this.inRange(l,u,1114111)&&!this.inRange(l,55296,57343)?l:this.decoderError(i,c)}else a=0,o=0,s=0,h=0,r--,e=this.decoderError(i,c);null!==e&&e!==this.EOF_code_point&&(65535>=e?e>0&&(n+=String.fromCharCode(e)):(e-=65536,n+=String.fromCharCode(55296+(e>>10&1023)),n+=String.fromCharCode(56320+(1023&e))))}return n},i.prototype.encoderError=function(e){t.$error(1026,e)},i.prototype.decoderError=function(e,i){return e&&t.$error(1027),i||65533},i.prototype.inRange=function(t,e,i){return t>=e&&i>=t},i.prototype.div=function(t,e){return Math.floor(t/e)},i.prototype.stringToCodePoints=function(t){for(var e=[],i=0,r=t.length;is;s++){var h=a[s];-1==n.indexOf(h)&&n.push(h)}Object.defineProperty(r,"__types__",{value:n,enumerable:!1,writable:!0})}t.registerClass=e}(egret||(egret={}));var egret;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i.$graphics=new t.Graphics,i.$graphics.$setTarget(i),i}return __extends(i,e),i.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(9)},Object.defineProperty(i.prototype,"graphics",{get:function(){return this.$graphics},enumerable:!0,configurable:!0}),i.prototype.$hitTest=function(e,i){if(!this.$visible)return null;var r=this.$getInvertedConcatenatedMatrix(),n=r.a*e+r.c*i+r.tx,a=r.b*e+r.d*i+r.ty,o=this.$scrollRect?this.$scrollRect:this.$maskRect;if(o&&!o.contains(n,a))return null;if(this.$mask&&!this.$mask.$hitTest(e,i))return null;for(var s=this.$children,h=!1,c=null,l=s.length-1;l>=0;l--){var u=s[l];if(!u.$maskedObject&&(c=u.$hitTest(e,i))){if(h=!0,c.$touchEnabled)break;c=null}}return c?this.$touchChildren?c:this:h?this:(c=t.DisplayObject.prototype.$hitTest.call(this,e,i),c&&(c=this.$graphics.$hitTest(e,i)),c)},i.prototype.$measureContentBounds=function(t){this.$graphics.$measureContentBounds(t)},i.prototype.$onRemoveFromStage=function(){e.prototype.$onRemoveFromStage.call(this),this.$graphics&&this.$graphics.$onRemoveFromStage()},i}(t.DisplayObjectContainer);t.Sprite=e,__reflect(e.prototype,"egret.Sprite")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return Object.defineProperty(t,"logLevel",{set:function(t){},enumerable:!0,configurable:!0}),t.ALL="all",t.DEBUG="debug",t.INFO="info",t.WARN="warn",t.ERROR="error",t.OFF="off",t}();t.Logger=e,__reflect(e.prototype,"egret.Logger")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.isNumber=function(t){return"number"==typeof t&&!isNaN(t)},t.sin=function(e){var i=Math.floor(e),r=i+1,n=t.sinInt(i);if(i==e)return n;var a=t.sinInt(r);return(e-i)*a+(r-e)*n},t.sinInt=function(t){return t%=360,0>t&&(t+=360),egret_sin_map[t]},t.cos=function(e){var i=Math.floor(e),r=i+1,n=t.cosInt(i);if(i==e)return n;var a=t.cosInt(r);return(e-i)*a+(r-e)*n},t.cosInt=function(t){return t%=360,0>t&&(t+=360),egret_cos_map[t]},t.convertStringToHashCode=function(t){if(0===t.length)return 0;for(var e=0,i=0,r=t.length;r>i;++i){var n=t.charCodeAt(i);e=(e<<5)-e+n,e|=0}return e},t}();t.NumberUtils=e,__reflect(e.prototype,"egret.NumberUtils")}(egret||(egret={}));for(var egret_sin_map={},egret_cos_map={},DEG_TO_RAD=Math.PI/180,NumberUtils_i=0;360>NumberUtils_i;NumberUtils_i++)egret_sin_map[NumberUtils_i]=Math.sin(NumberUtils_i*DEG_TO_RAD),egret_cos_map[NumberUtils_i]=Math.cos(NumberUtils_i*DEG_TO_RAD);egret_sin_map[90]=1,egret_cos_map[90]=0,egret_sin_map[180]=0,egret_cos_map[180]=-1,egret_sin_map[270]=-1,egret_cos_map[270]=0,Function.prototype.bind||(Function.prototype.bind=function(t){"function"!=typeof this&&egret.$error(1029);var e=Array.prototype.slice.call(arguments,1),i=this,r=function(){},n=function(){return i.apply(this instanceof r&&t?this:t,e.concat(Array.prototype.slice.call(arguments)))};return r.prototype=this.prototype,n.prototype=new r,n});var egret;!function(t){var e=function(e){function i(t,i){void 0===i&&(i=0);var r=e.call(this)||this;return r._delay=0,r._currentCount=0,r._running=!1,r.updateInterval=1e3,r.lastCount=1e3,r.lastTimeStamp=0,r.delay=t,r.repeatCount=0|+i,r}return __extends(i,e),Object.defineProperty(i.prototype,"delay",{get:function(){return this._delay},set:function(t){1>t&&(t=1),this._delay!=t&&(this._delay=t,this.lastCount=this.updateInterval=Math.round(60*t))},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"currentCount",{get:function(){return this._currentCount},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"running",{get:function(){return this._running},enumerable:!0,configurable:!0}),i.prototype.reset=function(){this.stop(),this._currentCount=0},i.prototype.start=function(){this._running||(this.lastCount=this.updateInterval,this.lastTimeStamp=t.getTimer(),t.ticker.$startTick(this.$update,this),this._running=!0)},i.prototype.stop=function(){this._running&&(t.stopTick(this.$update,this),this._running=!1)},i.prototype.$update=function(e){var i=e-this.lastTimeStamp;if(i>=this._delay)this.lastCount=this.updateInterval;else{if(this.lastCount-=1e3,this.lastCount>0)return!1;this.lastCount+=this.updateInterval}this.lastTimeStamp=e,this._currentCount++;var r=this.repeatCount>0&&this._currentCount>=this.repeatCount;return(0==this.repeatCount||this._currentCount<=this.repeatCount)&&t.TimerEvent.dispatchTimerEvent(this,t.TimerEvent.TIMER),r&&(this.stop(),t.TimerEvent.dispatchTimerEvent(this,t.TimerEvent.TIMER_COMPLETE)),!1},i}(t.EventDispatcher);t.Timer=e,__reflect(e.prototype,"egret.Timer")}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){function e(e,i){for(var r=[],n=2;na;a++){var o=r[a];if(e=e[o],!e)return null}return i[t]=e,e}var i={};t.getDefinitionByName=e}(egret||(egret={}));var egret;!function(t){}(egret||(egret={}));var egret;!function(t){function e(t){var e=typeof t;if(!t||"object"!=e&&!t.prototype)return e;var i=t.prototype?t.prototype:Object.getPrototypeOf(t);if(i.hasOwnProperty("__class__"))return i.__class__;var r=i.constructor.toString().trim(),n=r.indexOf("("),a=r.substring(9,n);return Object.defineProperty(i,"__class__",{value:a,enumerable:!1,writable:!0}),a}t.getQualifiedClassName=e}(egret||(egret={}));var egret;!function(t){function e(e){if(!e||"object"!=typeof e&&!e.prototype)return null;var i=e.prototype?e.prototype:Object.getPrototypeOf(e),r=Object.getPrototypeOf(i);if(!r)return null;var n=t.getQualifiedClassName(r.constructor);return n?n:null}t.getQualifiedSuperclassName=e}(egret||(egret={}));var egret;!function(t){function e(){return Date.now()-t.sys.$START_TIME}t.getTimer=e}(egret||(egret={}));var egret;!function(t){function e(e){var i=t.getDefinitionByName(e);return i?!0:!1}t.hasDefinition=e}(egret||(egret={}));var egret;!function(t){function e(t,e){if(!t||"object"!=typeof t)return!1;var i=Object.getPrototypeOf(t),r=i?i.__types__:null;return r?-1!==r.indexOf(e):!1}t.is=e}(egret||(egret={}));var egret;!function(t){function e(e,i){t.ticker.$startTick(e,i)}t.startTick=e}(egret||(egret={}));var egret;!function(t){function e(e,i){t.ticker.$stopTick(e,i)}t.stopTick=e}(egret||(egret={}));var egret;!function(t){function e(t){0>t&&(t=0),t>16777215&&(t=16777215);for(var e=t.toString(16).toUpperCase();e.length>6;)e=e.slice(1,e.length);for(;e.length<6;)e="0"+e;return"#"+e}t.toColorString=e}(egret||(egret={})); \ No newline at end of file diff --git a/js/egret.web.min_f6a09338.js b/js/egret.web.min_f6a09338.js new file mode 100644 index 0000000..bc825b1 --- /dev/null +++ b/js/egret.web.min_f6a09338.js @@ -0,0 +1,5231 @@ +var __reflect = this && this.__reflect || +function(e, t, r) { + e.__class__ = t, + r ? r.push(t) : r = [t], + e.__types__ = e.__types__ ? r.concat(e.__types__) : r +}, +__extends = this && this.__extends || +function(e, t) { + function r() { + this.constructor = e + } + for (var i in t) t.hasOwnProperty(i) && (e[i] = t[i]); + r.prototype = t.prototype, + e.prototype = new r +}, +egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r(r) { + var i = t.call(this) || this; + return i.onUpdate = function(t) { + var r = new e.GeolocationEvent(e.Event.CHANGE), + n = t.coords; + r.altitude = n.altitude, + r.heading = n.heading, + r.accuracy = n.accuracy, + r.latitude = n.latitude, + r.longitude = n.longitude, + r.speed = n.speed, + r.altitudeAccuracy = n.altitudeAccuracy, + i.dispatchEvent(r) + }, + i.onError = function(t) { + var r = e.GeolocationEvent.UNAVAILABLE; + t.code == t.PERMISSION_DENIED && (r = e.GeolocationEvent.PERMISSION_DENIED); + var n = new e.GeolocationEvent(e.IOErrorEvent.IO_ERROR); + n.errorType = r, + n.errorMessage = t.message, + i.dispatchEvent(n) + }, + i.geolocation = navigator.geolocation, + i + } + return __extends(r, t), + r.prototype.start = function() { + var t = this.geolocation; + t ? this.watchId = t.watchPosition(this.onUpdate, this.onError) : this.onError({ + code: 2, + message: e.sys.tr(3004), + PERMISSION_DENIED: 1, + POSITION_UNAVAILABLE: 2 + }) + }, + r.prototype.stop = function() { + var e = this.geolocation; + e.clearWatch(this.watchId) + }, + r + } (e.EventDispatcher); + t.WebGeolocation = r, + __reflect(r.prototype, "egret.web.WebGeolocation", ["egret.Geolocation"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r() { + var r = null !== t && t.apply(this, arguments) || this; + return r.onChange = function(t) { + var i = new e.MotionEvent(e.Event.CHANGE), + n = { + x: t.acceleration.x, + y: t.acceleration.y, + z: t.acceleration.z + }, + a = { + x: t.accelerationIncludingGravity.x, + y: t.accelerationIncludingGravity.y, + z: t.accelerationIncludingGravity.z + }, + o = { + alpha: t.rotationRate.alpha, + beta: t.rotationRate.beta, + gamma: t.rotationRate.gamma + }; + i.acceleration = n, + i.accelerationIncludingGravity = a, + i.rotationRate = o, + r.dispatchEvent(i) + }, + r + } + return __extends(r, t), + r.prototype.start = function() { + window.addEventListener("devicemotion", this.onChange) + }, + r.prototype.stop = function() { + window.removeEventListener("devicemotion", this.onChange) + }, + r + } (e.EventDispatcher); + t.WebMotion = r, + __reflect(r.prototype, "egret.web.WebMotion", ["egret.Motion"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(e) { + console.log('findding ',e); + if (window.location) { + var t = location.search; + if ("" == t) return ""; + t = t.slice(1); + for (var r = t.split("&"), i = r.length, n = 0; i > n; n++) { + var a = r[n], + o = a.split("="); + if (o[0] == e) return o[1] + } + } + return "" + } + t.getOption = r, + e.getOption = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function i(t) { + var i = r.call(this) || this; + return i.$startTime = 0, + i.audio = null, + i.isStopped = !1, + i.canPlay = function() { + i.audio.removeEventListener("canplay", i.canPlay); + try { + i.audio.currentTime = i.$startTime + } catch(e) {} finally { + i.audio.play() + } + }, + i.onPlayEnd = function() { + return 1 == i.$loops ? (i.stop(), void i.dispatchEventWith(e.Event.SOUND_COMPLETE)) : (i.$loops > 0 && i.$loops--, void i.$play()) + }, + i._volume = 1, + t.addEventListener("ended", i.onPlayEnd), + i.audio = t, + i + } + return __extends(i, r), + i.prototype.$play = function() { + if (this.isStopped) return void e.$error(1036); + try { + this.audio.volume = this._volume, + this.audio.currentTime = this.$startTime + } catch(t) { + return void this.audio.addEventListener("canplay", this.canPlay) + } + this.audio.play() + }, + i.prototype.stop = function() { + if (this.audio) { + this.isStopped || e.sys.$popSoundChannel(this), + this.isStopped = !0; + var r = this.audio; + r.removeEventListener("ended", this.onPlayEnd), + r.removeEventListener("canplay", this.canPlay), + r.volume = 0, + this._volume = 0, + this.audio = null; + var i = this.$url; + window.setTimeout(function() { + r.pause(), + t.HtmlSound.$recycle(i, r) + }, + 200) + } + }, + Object.defineProperty(i.prototype, "volume", { + get: function() { + return this._volume + }, + set: function(t) { + return this.isStopped ? void e.$error(1036) : (this._volume = t, void(this.audio && (this.audio.volume = t))) + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(i.prototype, "position", { + get: function() { + return this.audio ? this.audio.currentTime: 0 + }, + enumerable: !0, + configurable: !0 + }), + i + } (e.EventDispatcher); + t.HtmlSoundChannel = r, + __reflect(r.prototype, "egret.web.HtmlSoundChannel", ["egret.SoundChannel", "egret.IEventDispatcher"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function() { + function t() {} + return t.decodeAudios = function() { + if (! (t.decodeArr.length <= 0 || t.isDecoding)) { + t.isDecoding = !0; + var r = t.decodeArr.shift(); + t.ctx.decodeAudioData(r.buffer, + function(e) { + r.self.audioBuffer = e, + r.success && r.success(), + t.isDecoding = !1, + t.decodeAudios() + }, + function() { + e.log("sound decode error"), + r.fail && r.fail(), + t.isDecoding = !1, + t.decodeAudios() + }) + } + }, + t.decodeArr = [], + t.isDecoding = !1, + t + } (); + t.WebAudioDecode = r, + __reflect(r.prototype, "egret.web.WebAudioDecode"); + var i = function(i) { + function n() { + var e = i.call(this) || this; + return e.loaded = !1, + e + } + return __extends(n, i), + Object.defineProperty(n.prototype, "length", { + get: function() { + if (this.audioBuffer) return this.audioBuffer.duration; + throw new Error("sound not loaded!") + }, + enumerable: !0, + configurable: !0 + }), + n.prototype.load = function(t) { + function i() { + a.loaded = !0, + a.dispatchEventWith(e.Event.COMPLETE) + } + function n() { + a.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + } + var a = this; + this.url = t; + var o = new XMLHttpRequest; + o.open("GET", t, !0), + o.responseType = "arraybuffer", + o.addEventListener("load", + function() { + var t = o.status >= 400; + t ? a.dispatchEventWith(e.IOErrorEvent.IO_ERROR) : (r.decodeArr.push({ + buffer: o.response, + success: i, + fail: n, + self: a, + url: a.url + }), r.decodeAudios()) + }), + o.addEventListener("error", + function() { + a.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + }), + o.send() + }, + n.prototype.play = function(r, i) { + r = +r || 0, + i = +i || 0; + var n = new t.WebAudioSoundChannel; + return n.$url = this.url, + n.$loops = i, + n.$audioBuffer = this.audioBuffer, + n.$startTime = r, + n.$play(), + e.sys.$pushSoundChannel(n), + n + }, + n.prototype.close = function() {}, + n.MUSIC = "music", + n.EFFECT = "effect", + n + } (e.EventDispatcher); + t.WebAudioSound = i, + __reflect(i.prototype, "egret.web.WebAudioSound", ["egret.Sound"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function i() { + var i = r.call(this) || this; + return i.$startTime = 0, + i.bufferSource = null, + i.context = t.WebAudioDecode.ctx, + i.isStopped = !1, + i._currentTime = 0, + i._volume = 1, + i.onPlayEnd = function() { + return 1 == i.$loops ? (i.stop(), void i.dispatchEventWith(e.Event.SOUND_COMPLETE)) : (i.$loops > 0 && i.$loops--, void i.$play()) + }, + i._startTime = 0, + i.context.createGain ? i.gain = i.context.createGain() : i.gain = i.context.createGainNode(), + i + } + return __extends(i, r), + i.prototype.$play = function() { + if (this.isStopped) return void e.$error(1036); + this.bufferSource && (this.bufferSource.onended = null, this.bufferSource = null); + var t = this.context, + r = this.gain, + i = t.createBufferSource(); + this.bufferSource = i, + i.buffer = this.$audioBuffer, + i.connect(r), + r.connect(t.destination), + i.onended = this.onPlayEnd, + this._startTime = Date.now(), + this.gain.gain.value = this._volume, + i.start(0, this.$startTime), + this._currentTime = 0 + }, + i.prototype.stop = function() { + if (this.bufferSource) { + var t = this.bufferSource; + t.stop ? t.stop(0) : t.noteOff(0), + t.onended = null, + t.disconnect(), + this.bufferSource = null, + this.$audioBuffer = null + } + this.isStopped || e.sys.$popSoundChannel(this), + this.isStopped = !0 + }, + Object.defineProperty(i.prototype, "volume", { + get: function() { + return this._volume + }, + set: function(t) { + return this.isStopped ? void e.$error(1036) : (this._volume = t, void(this.gain.gain.value = t)) + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(i.prototype, "position", { + get: function() { + return this.bufferSource ? (Date.now() - this._startTime) / 1e3 + this.$startTime: 0 + }, + enumerable: !0, + configurable: !0 + }), + i + } (e.EventDispatcher); + t.WebAudioSoundChannel = r, + __reflect(r.prototype, "egret.web.WebAudioSoundChannel", ["egret.SoundChannel", "egret.IEventDispatcher"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r(r, i) { + void 0 === i && (i = !0); + var n = t.call(this) || this; + return n.loaded = !1, + n.closed = !1, + n.heightSet = 0 / 0, + n.widthSet = 0 / 0, + n.waiting = !1, + n.userPause = !1, + n.userPlay = !1, + n.isPlayed = !1, + n.screenChanged = function(t) { + var r = document.fullscreenEnabled || document.webkitIsFullScreen; + r || (n.checkFullScreen(!1), e.Capabilities.isMobile || (n._fullscreen = r)) + }, + n._fullscreen = !0, + n.onVideoLoaded = function() { + n.video.removeEventListener("canplay", n.onVideoLoaded); + var t = n.video; + n.loaded = !0, + n.posterData && (n.posterData.width = n.getPlayWidth(), n.posterData.height = n.getPlayHeight()), + t.width = t.videoWidth, + t.height = t.videoHeight, + window.setTimeout(function() { + n.dispatchEventWith(e.Event.COMPLETE) + }, + 200) + }, + n.$renderNode = new e.sys.BitmapNode, + n.src = r, + n.once(e.Event.ADDED_TO_STAGE, n.loadPoster, n), + r && n.load(), + n + } + return __extends(r, t), + r.prototype.createNativeDisplayObject = function() { + this.$nativeDisplayObject = new egret_native.NativeDisplayObject(1) + }, + r.prototype.load = function(t, r) { + var i = this; + if (void 0 === r && (r = !0), t = t || this.src, this.src = t, !this.video || this.video.src != t) { + var n; ! this.video || e.Capabilities.isMobile ? (n = document.createElement("video"), this.video = n, n.controls = null) : n = this.video, + n.src = t, + n.setAttribute("autoplay", "autoplay"), + n.setAttribute("webkit-playsinline", "true"), + n.setAttribute("playsinline", "true"), + n.setAttribute("x5-video-player-type", "h5-page"), + n.addEventListener("canplay", this.onVideoLoaded), + n.addEventListener("error", + function() { + return i.onVideoError() + }), + n.addEventListener("ended", + function() { + return i.onVideoEnded() + }); + var a = !1; + n.addEventListener("canplay", + function() { + i.waiting = !1, + a ? i.userPause ? i.pause() : i.userPlay && i.play() : (a = !0, n.pause()) + }), + n.addEventListener("waiting", + function() { + i.waiting = !0 + }), + n.load(), + this.videoPlay(), + n.style.position = "absolute", + n.style.top = "0px", + n.style.zIndex = "-88888", + n.style.left = "0px", + n.height = 1, + n.width = 1 + } + }, + r.prototype.play = function(t, r) { + var i = this; + if (void 0 === r && (r = !1), 0 == this.loaded) return this.load(this.src), + void this.once(e.Event.COMPLETE, + function(e) { + return i.play(t, r) + }, + this); + this.isPlayed = !0; + var n = this.video; + void 0 != t && (n.currentTime = +t || 0), + n.loop = !!r, + e.Capabilities.isMobile ? n.style.zIndex = "-88888": n.style.zIndex = "9999", + n.style.position = "absolute", + n.style.top = "0px", + n.style.left = "0px", + n.height = n.videoHeight, + n.width = n.videoWidth, + "Windows PC" != e.Capabilities.os && "Mac OS" != e.Capabilities.os && window.setTimeout(function() { + n.width = 0 + }, + 1e3), + this.checkFullScreen(this._fullscreen) + }, + r.prototype.videoPlay = function() { + return this.userPause = !1, + this.waiting ? void(this.userPlay = !0) : (this.userPlay = !1, void this.video.play()) + }, + r.prototype.checkFullScreen = function(t) { + var r = this.video; + if (t) null == r.parentElement && (r.removeAttribute("webkit-playsinline"), r.removeAttribute("playsinline"), document.body.appendChild(r)), + e.stopTick(this.markDirty, this), + this.goFullscreen(); + else if (null != r.parentElement && r.parentElement.removeChild(r), r.setAttribute("webkit-playsinline", "true"), r.setAttribute("playsinline", "true"), this.setFullScreenMonitor(!1), e.startTick(this.markDirty, this), e.Capabilities.isMobile) return this.video.currentTime = 0, + void this.onVideoEnded(); + this.videoPlay() + }, + r.prototype.goFullscreen = function() { + var t, r = this.video; + return t = e.web.getPrefixStyleName("requestFullscreen", r), + r[t] || (t = e.web.getPrefixStyleName("requestFullScreen", r), r[t]) ? (r.removeAttribute("webkit-playsinline"), r[t](), this.setFullScreenMonitor(!0), !0) : !0 + }, + r.prototype.setFullScreenMonitor = function(e) { + var t = this.video; + e ? (t.addEventListener("mozfullscreenchange", this.screenChanged), t.addEventListener("webkitfullscreenchange", this.screenChanged), t.addEventListener("mozfullscreenerror", this.screenError), t.addEventListener("webkitfullscreenerror", this.screenError)) : (t.removeEventListener("mozfullscreenchange", this.screenChanged), t.removeEventListener("webkitfullscreenchange", this.screenChanged), t.removeEventListener("mozfullscreenerror", this.screenError), t.removeEventListener("webkitfullscreenerror", this.screenError)) + }, + r.prototype.screenError = function() { + e.$error(3014) + }, + r.prototype.exitFullscreen = function() { + document.exitFullscreen ? document.exitFullscreen() : document.msExitFullscreen ? document.msExitFullscreen() : document.mozCancelFullScreen ? document.mozCancelFullScreen() : document.oCancelFullScreen ? document.oCancelFullScreen() : document.webkitExitFullscreen ? document.webkitExitFullscreen() : this.video.style.display = "none", + this.video && this.video.parentElement && this.video.parentElement.removeChild(this.video) + }, + r.prototype.onVideoEnded = function() { + this.pause(), + this.isPlayed = !1, + this._fullscreen && this.exitFullscreen(), + this.dispatchEventWith(e.Event.ENDED) + }, + r.prototype.onVideoError = function() { + console.error("video errorCode:", this.video.error.code), + this.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + }, + r.prototype.close = function() { + var e = this; + this.closed = !0, + this.video.removeEventListener("canplay", this.onVideoLoaded), + this.video.removeEventListener("error", + function() { + return e.onVideoError() + }), + this.video.removeEventListener("ended", + function() { + return e.onVideoEnded() + }), + this.pause(), + 0 == this.loaded && this.video && (this.video.src = ""), + this.video && this.video.parentElement && (this.video.parentElement.removeChild(this.video), this.video = null), + this.loaded = !1 + }, + r.prototype.pause = function() { + return this.userPlay = !1, + this.waiting ? void(this.userPause = !0) : (this.userPause = !1, this.video.pause(), void e.stopTick(this.markDirty, this)) + }, + Object.defineProperty(r.prototype, "volume", { + get: function() { + return this.video ? this.video.volume: 1 + }, + set: function(e) { + this.video && (this.video.volume = e) + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "position", { + get: function() { + return this.video ? this.video.currentTime: 0 + }, + set: function(e) { + this.video && (this.video.currentTime = e) + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "fullscreen", { + get: function() { + return this._fullscreen + }, + set: function(t) { + e.Capabilities.isMobile || (this._fullscreen = !!t, this.video && 0 == this.video.paused && this.checkFullScreen(this._fullscreen)) + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "bitmapData", { + get: function() { + return this.video && this.loaded ? (this._bitmapData || (this.video.width = this.video.videoWidth, this.video.height = this.video.videoHeight, this._bitmapData = new e.BitmapData(this.video), this._bitmapData.$deleteSource = !1), this._bitmapData) : null + }, + enumerable: !0, + configurable: !0 + }), + r.prototype.loadPoster = function() { + var t = this, + r = this.poster; + if (r) { + var i = new e.ImageLoader; + i.once(e.Event.COMPLETE, + function(r) { + i.data; + if (t.posterData = i.data, t.$renderDirty = !0, t.posterData.width = t.getPlayWidth(), t.posterData.height = t.getPlayHeight(), e.nativeRender) { + var n = new e.Texture; + n._setBitmapData(t.posterData), + t.$nativeDisplayObject.setTexture(n) + } + }, + this), + i.load(r) + } + }, + r.prototype.$measureContentBounds = function(e) { + var t = this.bitmapData, + r = this.posterData; + t ? e.setTo(0, 0, this.getPlayWidth(), this.getPlayHeight()) : r ? e.setTo(0, 0, this.getPlayWidth(), this.getPlayHeight()) : e.setEmpty() + }, + r.prototype.getPlayWidth = function() { + return isNaN(this.widthSet) ? this.bitmapData ? this.bitmapData.width: this.posterData ? this.posterData.width: 0 / 0 : this.widthSet + }, + r.prototype.getPlayHeight = function() { + return isNaN(this.heightSet) ? this.bitmapData ? this.bitmapData.height: this.posterData ? this.posterData.height: 0 / 0 : this.heightSet + }, + r.prototype.$updateRenderNode = function() { + var t = this.$renderNode, + r = this.bitmapData, + i = this.posterData, + n = this.getPlayWidth(), + a = this.getPlayHeight(); + this.isPlayed && !e.Capabilities.isMobile || !i ? this.isPlayed && r && (t.image = r, t.imageWidth = r.width, t.imageHeight = r.height, e.WebGLUtils.deleteWebGLTexture(r.webGLTexture), r.webGLTexture = null, t.drawImage(0, 0, r.width, r.height, 0, 0, n, a)) : (t.image = i, t.imageWidth = n, t.imageHeight = a, t.drawImage(0, 0, i.width, i.height, 0, 0, n, a)) + }, + r.prototype.markDirty = function() { + return this.$renderDirty = !0, + !0 + }, + r.prototype.$setHeight = function(e) { + if (this.heightSet = e, this.paused) { + var r = this; + this.$renderDirty = !0, + window.setTimeout(function() { + r.$renderDirty = !1 + }, + 200) + } + t.prototype.$setHeight.call(this, e) + }, + r.prototype.$setWidth = function(e) { + if (this.widthSet = e, this.paused) { + var r = this; + this.$renderDirty = !0, + window.setTimeout(function() { + r.$renderDirty = !1 + }, + 200) + } + t.prototype.$setWidth.call(this, e) + }, + Object.defineProperty(r.prototype, "paused", { + get: function() { + return this.video ? this.video.paused: !0 + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "length", { + get: function() { + if (this.video) return this.video.duration; + throw new Error("Video not loaded!") + }, + enumerable: !0, + configurable: !0 + }), + r + } (e.DisplayObject); + t.WebVideo = r, + __reflect(r.prototype, "egret.web.WebVideo", ["egret.Video", "egret.DisplayObject"]), + e.Video = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r() { + var e = t.call(this) || this; + return e.timeout = 0, + e._url = "", + e._method = "", + e + } + return __extends(r, t), + Object.defineProperty(r.prototype, "response", { + get: function() { + if (!this._xhr) return null; + if (void 0 != this._xhr.response) return this._xhr.response; + if ("text" == this._responseType) return this._xhr.responseText; + if ("arraybuffer" == this._responseType && /msie 9.0/i.test(navigator.userAgent)) { + var e = window; + return e.convertResponseBodyToText(this._xhr.responseBody) + } + return "document" == this._responseType ? this._xhr.responseXML: null + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "responseType", { + get: function() { + return this._responseType + }, + set: function(e) { + this._responseType = e + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(r.prototype, "withCredentials", { + get: function() { + return this._withCredentials + }, + set: function(e) { + this._withCredentials = e + }, + enumerable: !0, + configurable: !0 + }), + r.prototype.getXHR = function() { + return window.XMLHttpRequest ? new window.XMLHttpRequest: new ActiveXObject("MSXML2.XMLHTTP") + }, + r.prototype.open = function(e, t) { + void 0 === t && (t = "GET"), + this._url = e, + this._method = t, + this._xhr && (this._xhr.abort(), this._xhr = null); + var r = this.getXHR(); + window.XMLHttpRequest ? (r.addEventListener("load", this.onload.bind(this)), r.addEventListener("error", this.onerror.bind(this))) : r.onreadystatechange = this.onReadyStateChange.bind(this), + r.onprogress = this.updateProgress.bind(this), + r.ontimeout = this.onTimeout.bind(this), + r.open(this._method, this._url, !0), + this._xhr = r + }, + r.prototype.send = function(e) { + if (null != this._responseType && (this._xhr.responseType = this._responseType), null != this._withCredentials && (this._xhr.withCredentials = this._withCredentials), this.headerObj) for (var t in this.headerObj) this._xhr.setRequestHeader(t, this.headerObj[t]); + this._xhr.timeout = this.timeout, + this._xhr.send(e) + }, + r.prototype.abort = function() { + this._xhr && this._xhr.abort() + }, + r.prototype.getAllResponseHeaders = function() { + if (!this._xhr) return null; + var e = this._xhr.getAllResponseHeaders(); + return e ? e: "" + }, + r.prototype.setRequestHeader = function(e, t) { + this.headerObj || (this.headerObj = {}), + this.headerObj[e] = t + }, + r.prototype.getResponseHeader = function(e) { + if (!this._xhr) return null; + var t = this._xhr.getResponseHeader(e); + return t ? t: "" + }, + r.prototype.onTimeout = function() { + this.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + }, + r.prototype.onReadyStateChange = function() { + var t = this._xhr; + if (4 == t.readyState) { + var r = t.status >= 400 || 0 == t.status, + i = (this._url, this); + window.setTimeout(function() { + r ? i.dispatchEventWith(e.IOErrorEvent.IO_ERROR) : i.dispatchEventWith(e.Event.COMPLETE) + }, + 0) + } + }, + r.prototype.updateProgress = function(t) { + t.lengthComputable && e.ProgressEvent.dispatchProgressEvent(this, e.ProgressEvent.PROGRESS, t.loaded, t.total) + }, + r.prototype.onload = function() { + var t = this, + r = this._xhr, + i = (this._url, r.status >= 400); + window.setTimeout(function() { + i ? t.dispatchEventWith(e.IOErrorEvent.IO_ERROR) : t.dispatchEventWith(e.Event.COMPLETE) + }, + 0) + }, + r.prototype.onerror = function() { + var t = (this._url, this); + window.setTimeout(function() { + t.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + }, + 0) + }, + r + } (e.EventDispatcher); + t.WebHttpRequest = r, + __reflect(r.prototype, "egret.web.WebHttpRequest", ["egret.HttpRequest"]), + e.HttpRequest = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = window.URL || window.webkitURL, + i = function(i) { + function n() { + var e = null !== i && i.apply(this, arguments) || this; + return e.data = null, + e._crossOrigin = null, + e._hasCrossOriginSet = !1, + e.currentImage = null, + e.request = null, + e + } + return __extends(n, i), + Object.defineProperty(n.prototype, "crossOrigin", { + get: function() { + return this._crossOrigin + }, + set: function(e) { + this._hasCrossOriginSet = !0, + this._crossOrigin = e + }, + enumerable: !0, + configurable: !0 + }), + n.prototype.load = function(r) { + if (t.Html5Capatibility._canUseBlob && 0 != r.indexOf("wxLocalResource:") && 0 != r.indexOf("data:") && 0 != r.indexOf("http:") && 0 != r.indexOf("https:")) { + var i = this.request; + i || (i = this.request = new e.web.WebHttpRequest, i.addEventListener(e.Event.COMPLETE, this.onBlobLoaded, this), i.addEventListener(e.IOErrorEvent.IO_ERROR, this.onBlobError, this), i.responseType = "blob"), + i.open(r), + i.send() + } else this.loadImage(r) + }, + n.prototype.onBlobLoaded = function(e) { + var t = this.request.response; + this.request = void 0, + this.loadImage(r.createObjectURL(t)) + }, + n.prototype.onBlobError = function(e) { + this.dispatchIOError(this.currentURL), + this.request = void 0 + }, + n.prototype.loadImage = function(e) { + var t = new Image; + this.data = null, + this.currentImage = t, + this._hasCrossOriginSet ? this._crossOrigin && (t.crossOrigin = this._crossOrigin) : n.crossOrigin && (t.crossOrigin = n.crossOrigin), + t.onload = this.onImageComplete.bind(this), + t.onerror = this.onLoadError.bind(this), + t.src = e + }, + n.prototype.onImageComplete = function(t) { + var r = this.getImage(t); + if (r) { + this.data = new e.BitmapData(r); + var i = this; + window.setTimeout(function() { + i.dispatchEventWith(e.Event.COMPLETE) + }, + 0) + } + }, + n.prototype.onLoadError = function(e) { + var t = this.getImage(e); + t && this.dispatchIOError(t.src) + }, + n.prototype.dispatchIOError = function(t) { + var r = this; + window.setTimeout(function() { + r.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + }, + 0) + }, + n.prototype.getImage = function(t) { + var i = t.target, + n = i.src; + if (0 == n.indexOf("blob:")) try { + r.revokeObjectURL(i.src) + } catch(a) { + e.$warn(1037) + } + return i.onerror = null, + i.onload = null, + this.currentImage !== i ? null: (this.currentImage = null, i) + }, + n.crossOrigin = null, + n + } (e.EventDispatcher); + t.WebImageLoader = i, + __reflect(i.prototype, "egret.web.WebImageLoader", ["egret.ImageLoader"]), + e.ImageLoader = i + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r() { + var e = t.call(this) || this; + return e._isNeedShow = !1, + e.inputElement = null, + e.inputDiv = null, + e._gscaleX = 0, + e._gscaleY = 0, + e.textValue = "", + e.colorValue = 16777215, + e._styleInfoes = {}, + e + } + return __extends(r, t), + r.prototype.$setTextField = function(e) { + return this.$textfield = e, + !0 + }, + r.prototype.$addToStage = function() { + this.htmlInput = e.web.$getTextAdapter(this.$textfield) + }, + r.prototype._initElement = function() { + var t = this.$textfield.localToGlobal(0, 0), + r = t.x, + i = t.y, + n = this.htmlInput.$scaleX, + a = this.htmlInput.$scaleY; + this.inputDiv.style.left = r * n + "px", + this.inputDiv.style.top = i * a + "px", + this.$textfield.multiline && this.$textfield.height > this.$textfield.size ? (this.inputDiv.style.top = i * a + "px", this.inputElement.style.top = -this.$textfield.lineSpacing / 2 * a + "px") : (this.inputDiv.style.top = i * a + "px", this.inputElement.style.top = "0px"); + for (var o = this.$textfield, + s = 1, + l = 1, + c = 0; o.parent;) s *= o.scaleX, + l *= o.scaleY, + c += o.rotation, + o = o.parent; + var h = e.web.getPrefixStyleName("transform"); + this.inputDiv.style[h] = "rotate(" + c + "deg)", + this._gscaleX = n * s, + this._gscaleY = a * l + }, + r.prototype.$show = function(e) { + void 0 === e && (e = !0), + this.htmlInput.isCurrentStageText(this) ? this.inputElement.onblur = null: (this.inputElement = this.htmlInput.getInputElement(this), this.$textfield.multiline ? this.inputElement.type = "text": this.inputElement.type = this.$textfield.inputType, this.inputDiv = this.htmlInput._inputDIV), + this.htmlInput._needShow = !0, + this._isNeedShow = !0, + this._initElement(), + e && this.activeShowKeyboard() + }, + r.prototype.activeShowKeyboard = function() { + this.htmlInput._needShow ? (this._isNeedShow = !1, this.dispatchEvent(new e.Event("focus")), this.executeShow(), this.htmlInput.show()) : (this.htmlInput.blurInputElement(), this.htmlInput.disposeInputElement()) + }, + r.prototype.onBlurHandler = function() { + this.htmlInput.clearInputElement(), + window.scrollTo(0, 0) + }, + r.prototype.onFocusHandler = function() { + var e = this; + window.setTimeout(function() { + e.inputElement && e.inputElement.scrollIntoView() + }, + 200) + }, + r.prototype.executeShow = function() { + this.inputElement.value !== this.$getText() && (this.inputElement.value = this.$getText()), + null == this.inputElement.onblur && (this.inputElement.onblur = this.onBlurHandler.bind(this)), + null == this.inputElement.onfocus && (this.inputElement.onfocus = this.onFocusHandler.bind(this)), + this.$resetStageText(), + this.$textfield.maxChars > 0 ? this.inputElement.setAttribute("maxlength", this.$textfield.maxChars + "") : this.inputElement.removeAttribute("maxlength"), + this.inputElement.selectionStart = this.inputElement.value.length, + this.inputElement.selectionEnd = this.inputElement.value.length, + this.inputElement.focus() + }, + r.prototype.$hide = function() { + this.htmlInput && this.htmlInput.disconnectStageText(this) + }, + r.prototype.$getText = function() { + return this.textValue || (this.textValue = ""), + this.textValue + }, + r.prototype.$setText = function(e) { + return this.textValue = e, + this.resetText(), + !0 + }, + r.prototype.resetText = function() { + this.inputElement && (this.inputElement.value = this.textValue) + }, + r.prototype.$setColor = function(e) { + return this.colorValue = e, + this.resetColor(), + !0 + }, + r.prototype.resetColor = function() { + this.inputElement && this.setElementStyle("color", e.toColorString(this.colorValue)) + }, + r.prototype.$onBlur = function() {}, + r.prototype._onInput = function() { + var t = this; + window.setTimeout(function() { + t.inputElement && t.inputElement.selectionStart == t.inputElement.selectionEnd && (t.textValue = t.inputElement.value, e.Event.dispatchEvent(t, "updateText", !1)) + }, + 0) + }, + r.prototype.setAreaHeight = function() { + var t = this.$textfield; + if (t.multiline) { + var r = e.TextFieldUtils.$getTextHeight(t); + if (t.height <= t.size) this.setElementStyle("height", t.size * this._gscaleY + "px"), + this.setElementStyle("padding", "0px"), + this.setElementStyle("lineHeight", t.size * this._gscaleY + "px"); + else if (t.height < r) this.setElementStyle("height", t.height * this._gscaleY + "px"), + this.setElementStyle("padding", "0px"), + this.setElementStyle("lineHeight", (t.size + t.lineSpacing) * this._gscaleY + "px"); + else { + this.setElementStyle("height", (r + t.lineSpacing) * this._gscaleY + "px"); + var i = (t.height - r) * this._gscaleY, + n = e.TextFieldUtils.$getValign(t), + a = i * n, + o = i - a; + this.setElementStyle("padding", a + "px 0px " + o + "px 0px"), + this.setElementStyle("lineHeight", (t.size + t.lineSpacing) * this._gscaleY + "px") + } + } + }, + r.prototype._onClickHandler = function(t) { + this._isNeedShow && (t.stopImmediatePropagation(), this._isNeedShow = !1, this.dispatchEvent(new e.Event("focus")), this.executeShow()) + }, + r.prototype._onDisconnect = function() { + this.inputElement = null, + this.dispatchEvent(new e.Event("blur")) + }, + r.prototype.setElementStyle = function(e, t) { + this.inputElement && this._styleInfoes[e] != t && (this.inputElement.style[e] = t) + }, + r.prototype.$removeFromStage = function() { + this.inputElement && this.htmlInput.disconnectStageText(this) + }, + r.prototype.$resetStageText = function() { + if (this.inputElement) { + var t = this.$textfield; + this.setElementStyle("fontFamily", t.fontFamily), + this.setElementStyle("fontStyle", t.italic ? "italic": "normal"), + this.setElementStyle("fontWeight", t.bold ? "bold": "normal"), + this.setElementStyle("textAlign", t.textAlign), + this.setElementStyle("fontSize", t.size * this._gscaleY + "px"), + this.setElementStyle("color", e.toColorString(t.textColor)); + var r = void 0; + if (t.stage ? (r = t.localToGlobal(0, 0).x, r = Math.min(t.width, t.stage.stageWidth - r)) : r = t.width, this.setElementStyle("width", r * this._gscaleX + "px"), this.setElementStyle("verticalAlign", t.verticalAlign), t.multiline) this.setAreaHeight(); + else if (this.setElementStyle("lineHeight", t.size * this._gscaleY + "px"), t.height < t.size) { + this.setElementStyle("height", t.size * this._gscaleY + "px"); + var i = t.size / 2 * this._gscaleY; + this.setElementStyle("padding", "0px 0px " + i + "px 0px") + } else { + this.setElementStyle("height", t.size * this._gscaleY + "px"); + var n = (t.height - t.size) * this._gscaleY, + a = e.TextFieldUtils.$getValign(t), + o = n * a, + i = n - o; + i < t.size / 2 * this._gscaleY && (i = t.size / 2 * this._gscaleY), + this.setElementStyle("padding", o + "px 0px " + i + "px 0px") + } + this.inputDiv.style.clip = "rect(0px " + t.width * this._gscaleX + "px " + t.height * this._gscaleY + "px 0px)", + this.inputDiv.style.height = t.height * this._gscaleY + "px", + this.inputDiv.style.width = r * this._gscaleX + "px" + } + }, + r + } (e.EventDispatcher); + t.HTML5StageText = r, + __reflect(r.prototype, "egret.web.HTML5StageText", ["egret.StageText"]), + e.StageText = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})), +function(e) { + var t; ! + function(t) { + var r = function() { + function t() { + var e = this; + this._needShow = !1, + this.$scaleX = 1, + this.$scaleY = 1, + this.stageTextClickHandler = function(t) { + e._needShow ? (e._needShow = !1, e._stageText._onClickHandler(t), e.show()) : (e.blurInputElement(), e.disposeInputElement()) + } + } + return t.prototype.isInputOn = function() { + return null != this._stageText + }, + t.prototype.isCurrentStageText = function(e) { + return this._stageText == e + }, + t.prototype.initValue = function(e) { + e.style.position = "absolute", + e.style.left = "0px", + e.style.top = "0px", + e.style.border = "none", + e.style.padding = "0", + e.ontouchmove = function(e) { + e.preventDefault() + } + }, + t.prototype.$updateSize = function() { + if (this.canvas) { + this.$scaleX = e.sys.DisplayList.$canvasScaleX, + this.$scaleY = e.sys.DisplayList.$canvasScaleY, + this.StageDelegateDiv.style.left = this.canvas.style.left, + this.StageDelegateDiv.style.top = this.canvas.style.top; + var t = e.web.getPrefixStyleName("transform"); + this.StageDelegateDiv.style[t] = this.canvas.style[t], + this.StageDelegateDiv.style[e.web.getPrefixStyleName("transformOrigin")] = "0% 0% 0px" + } + }, + t.prototype._initStageDelegateDiv = function(t, r) { + this.canvas = r; + var i, n = this; + i || (i = document.createElement("div"), this.StageDelegateDiv = i, i.id = "StageDelegateDiv", t.appendChild(i), n.initValue(i), n._inputDIV = document.createElement("div"), n.initValue(n._inputDIV), n._inputDIV.style.width = "0px", n._inputDIV.style.height = "0px", n._inputDIV.style.left = "0px", n._inputDIV.style.top = "-100px", n._inputDIV.style[e.web.getPrefixStyleName("transformOrigin")] = "0% 0% 0px", i.appendChild(n._inputDIV), this.canvas.addEventListener("click", this.stageTextClickHandler), n.initInputElement(!0), n.initInputElement(!1)) + }, + t.prototype.initInputElement = function(e) { + var t, r = this; + e ? (t = document.createElement("textarea"), t.style.resize = "none", r._multiElement = t, t.id = "egretTextarea") : (t = document.createElement("input"), r._simpleElement = t, t.id = "egretInput"), + t.type = "text", + r._inputDIV.appendChild(t), + t.setAttribute("tabindex", "-1"), + t.style.width = "1px", + t.style.height = "12px", + r.initValue(t), + t.style.outline = "thin", + t.style.background = "none", + t.style.overflow = "hidden", + t.style.wordBreak = "break-all", + t.style.opacity = "0", + t.oninput = function() { + r._stageText && r._stageText._onInput() + } + }, + t.prototype.show = function() { + var t = this, + r = t._inputElement; + e.$callAsync(function() { + r.style.opacity = "1" + }, + t) + }, + t.prototype.disconnectStageText = function(e) { (null == this._stageText || this._stageText == e) && (this._inputElement && this._inputElement.blur(), this.clearInputElement(), this._inputElement && this._inputDIV.contains(this._inputElement) && this._inputDIV.removeChild(this._inputElement), this._needShow = !1) + }, + t.prototype.clearInputElement = function() { + var e = this; + if (e._inputElement) { + e._inputElement.value = "", + e._inputElement.onblur = null, + e._inputElement.onfocus = null, + e._inputElement.style.width = "1px", + e._inputElement.style.height = "12px", + e._inputElement.style.left = "0px", + e._inputElement.style.top = "0px", + e._inputElement.style.opacity = "0"; + var t = void 0; + t = e._simpleElement == e._inputElement ? e._multiElement: e._simpleElement, + t.style.display = "block", + e._inputDIV.style.left = "0px", + e._inputDIV.style.top = "-100px", + e._inputDIV.style.height = "0px", + e._inputDIV.style.width = "0px", + e._inputElement.blur() + } + e._stageText && (e._stageText._onDisconnect(), e._stageText = null, this.canvas.userTyping = !1, this.finishUserTyping && this.finishUserTyping()) + }, + t.prototype.getInputElement = function(e) { + var t = this; + t.clearInputElement(), + t._stageText = e, + this.canvas.userTyping = !0, + t._stageText.$textfield.multiline ? t._inputElement = t._multiElement: t._inputElement = t._simpleElement; + var r; + return r = t._simpleElement == t._inputElement ? t._multiElement: t._simpleElement, + r.style.display = "none", + this._inputElement && !this._inputDIV.contains(this._inputElement) && this._inputDIV.appendChild(this._inputElement), + t._inputElement + }, + t.prototype.blurInputElement = function() { + this._inputElement && (this.clearInputElement(), this._inputElement.blur()) + }, + t.prototype.disposeInputElement = function() { + this._inputElement = null + }, + t + } (); + t.HTMLInput = r, + __reflect(r.prototype, "egret.web.HTMLInput") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})), +function(e) { + var t; ! + function(e) { + function t(e) { + var t = e.stage ? e.stage.$hashCode: 0, + r = i[t], + o = n[t], + s = a[t]; + return o && s && (delete n[t], delete a[t]), + r + } + function r(e, t, r, o) { + e._initStageDelegateDiv(r, o), + i[t.$hashCode] = e, + n[t.$hashCode] = o, + a[t.$hashCode] = r + } + var i = {}, + n = {}, + a = {}; + e.$getTextAdapter = t, + e.$cacheTextAdapter = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(t, r, a, o, s) { + n || i(); + var l = ""; + return s && (l += "italic "), + o && (l += "bold "), + l += (a || 12) + "px ", + l += r || "Arial", + n.font = l, + e.sys.measureTextWith(n, t) + } + function i() { + n = e.sys.canvasHitTestBuffer.context, + n.textAlign = "left", + n.textBaseline = "middle" + } + var n = null; + e.sys.measureText = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(t, r) { + var i = e.sys.createCanvas(t, r), + n = i.getContext("2d"); + if (void 0 === n.imageSmoothingEnabled) { + for (var a, o = ["webkitImageSmoothingEnabled", "mozImageSmoothingEnabled", "msImageSmoothingEnabled"], s = o.length - 1; s >= 0 && (a = o[s], void 0 === n[a]); s--); + try { + Object.defineProperty(n, "imageSmoothingEnabled", { + get: function() { + return this[a] + }, + set: function(e) { + this[a] = e + } + }) + } catch(l) { + n.imageSmoothingEnabled = n[a] + } + } + return i + } + var i = function() { + function t(t, i, n) { + this.surface = e.sys.createCanvasRenderBufferSurface(r, t, i, n), + this.context = this.surface.getContext("2d"), + this.context && (this.context.$offsetX = 0, this.context.$offsetY = 0), + this.resize(t, i) + } + return Object.defineProperty(t.prototype, "width", { + get: function() { + return this.surface.width + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "height", { + get: function() { + return this.surface.height + }, + enumerable: !0, + configurable: !0 + }), + t.prototype.resize = function(t, r, i) { + e.sys.resizeCanvasRenderBuffer(this, t, r, i) + }, + t.prototype.getPixels = function(e, t, r, i) { + return void 0 === r && (r = 1), + void 0 === i && (i = 1), + this.context.getImageData(e, t, r, i).data + }, + t.prototype.toDataURL = function(e, t) { + return this.surface.toDataURL(e, t) + }, + t.prototype.clear = function() { + this.context.setTransform(1, 0, 0, 1, 0, 0), + this.context.clearRect(0, 0, this.surface.width, this.surface.height) + }, + t.prototype.destroy = function() { + this.surface.width = this.surface.height = 0 + }, + t + } (); + t.CanvasRenderBuffer = i, + __reflect(i.prototype, "egret.web.CanvasRenderBuffer", ["egret.sys.RenderBuffer"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r(r, i) { + var n = t.call(this) || this; + return n.onTouchBegin = function(e) { + var t = n.getLocation(e); + n.touch.onTouchBegin(t.x, t.y, e.identifier) + }, + n.onMouseMove = function(e) { + 0 == e.buttons ? n.onTouchEnd(e) : n.onTouchMove(e) + }, + n.onTouchMove = function(e) { + var t = n.getLocation(e); + n.touch.onTouchMove(t.x, t.y, e.identifier) + }, + n.onTouchEnd = function(e) { + var t = n.getLocation(e); + n.touch.onTouchEnd(t.x, t.y, e.identifier) + }, + n.scaleX = 1, + n.scaleY = 1, + n.rotation = 0, + n.canvas = i, + n.touch = new e.sys.TouchHandler(r), + n.addListeners(), + n + } + return __extends(r, t), + r.prototype.addListeners = function() { + var t = this; + window.navigator.msPointerEnabled ? (this.canvas.addEventListener("MSPointerDown", + function(e) { + e.identifier = e.pointerId, + t.onTouchBegin(e), + t.prevent(e) + }, + !1), this.canvas.addEventListener("MSPointerMove", + function(e) { + e.identifier = e.pointerId, + t.onTouchMove(e), + t.prevent(e) + }, + !1), this.canvas.addEventListener("MSPointerUp", + function(e) { + e.identifier = e.pointerId, + t.onTouchEnd(e), + t.prevent(e) + }, + !1)) : (e.Capabilities.isMobile || this.addMouseListener(), this.addTouchListener()) + }, + r.prototype.addMouseListener = function() { + this.canvas.addEventListener("mousedown", this.onTouchBegin), + this.canvas.addEventListener("mousemove", this.onMouseMove), + this.canvas.addEventListener("mouseup", this.onTouchEnd) + }, + r.prototype.addTouchListener = function() { + var e = this; + this.canvas.addEventListener("touchstart", + function(t) { + for (var r = t.changedTouches.length, + i = 0; r > i; i++) e.onTouchBegin(t.changedTouches[i]); + e.prevent(t) + }, + !1), + this.canvas.addEventListener("touchmove", + function(t) { + for (var r = t.changedTouches.length, + i = 0; r > i; i++) e.onTouchMove(t.changedTouches[i]); + e.prevent(t) + }, + !1), + this.canvas.addEventListener("touchend", + function(t) { + for (var r = t.changedTouches.length, + i = 0; r > i; i++) e.onTouchEnd(t.changedTouches[i]); + e.prevent(t) + }, + !1), + this.canvas.addEventListener("touchcancel", + function(t) { + for (var r = t.changedTouches.length, + i = 0; r > i; i++) e.onTouchEnd(t.changedTouches[i]); + e.prevent(t) + }, + !1) + }, + r.prototype.prevent = function(e) { + e.stopPropagation(), + 1 == e.isScroll || this.canvas.userTyping || e.preventDefault() + }, + r.prototype.getLocation = function(t) { + t.identifier = +t.identifier || 0; + var r = document.documentElement, + i = this.canvas.getBoundingClientRect(), + n = i.left + window.pageXOffset - r.clientLeft, + a = i.top + window.pageYOffset - r.clientTop, + o = t.pageX - n, + s = o, + l = t.pageY - a, + c = l; + return 90 == this.rotation ? (s = l, c = i.width - o) : -90 == this.rotation && (s = i.height - l, c = o), + s /= this.scaleX, + c /= this.scaleY, + e.$TempPoint.setTo(Math.round(s), Math.round(c)) + }, + r.prototype.updateScaleMode = function(e, t, r) { + this.scaleX = e, + this.scaleY = t, + this.rotation = r + }, + r.prototype.$updateMaxTouches = function() { + this.touch.$initMaxTouches() + }, + r + } (e.HashObject); + t.WebTouchHandler = r, + __reflect(r.prototype, "egret.web.WebTouchHandler") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + e.WebLifeCycleHandler = function(t) { + var r = function() { + t.resume(), + e.WebAudioDecode.initAudioContext && e.WebAudioDecode.initAudioContext() + }, + i = function() { + t.pause() + }, + n = function() { + document[a] ? i() : r() + }; + window.addEventListener("focus", r, !1), + window.addEventListener("blur", i, !1); + var a, o; + "undefined" != typeof document.hidden ? (a = "hidden", o = "visibilitychange") : "undefined" != typeof document.mozHidden ? (a = "mozHidden", o = "mozvisibilitychange") : "undefined" != typeof document.msHidden ? (a = "msHidden", o = "msvisibilitychange") : "undefined" != typeof document.webkitHidden ? (a = "webkitHidden", o = "webkitvisibilitychange") : "undefined" != typeof document.oHidden && (a = "oHidden", o = "ovisibilitychange"), + "onpageshow" in window && "onpagehide" in window && (window.addEventListener("pageshow", r, !1), window.addEventListener("pagehide", i, !1)), + a && o && document.addEventListener(o, n, !1); + var s = navigator.userAgent, + l = /micromessenger/gi.test(s), + c = /mqq/gi.test(s), + h = /mobile.*qq/gi.test(s); + if ((h || l) && (c = !1), c) { + var u = window.browser || {}; + u.execWebFn = u.execWebFn || {}, + u.execWebFn.postX5GamePlayerMessage = function(e) { + var t = e.type; + "app_enter_background" == t ? i() : "app_enter_foreground" == t && r() + }, + window.browser = u + } + } + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(e, t) { + var r = ""; + if (null != t) r = i(e, t); + else { + if (null == o) { + var n = document.createElement("div").style; + o = i("transform", n) + } + r = o + } + return "" == r ? e: r + e.charAt(0).toUpperCase() + e.substring(1, e.length) + } + function i(e, t) { + if (e in t) return ""; + e = e.charAt(0).toUpperCase() + e.substring(1, e.length); + for (var r = ["webkit", "ms", "Moz", "O"], i = 0; i < r.length; i++) { + var n = r[i] + e; + if (n in t) return r[i] + } + return "" + } + var n = function() { + function e() {} + return e.WEB_AUDIO = 2, + e.HTML5_AUDIO = 3, + e + } (); + t.AudioType = n, + __reflect(n.prototype, "egret.web.AudioType"); + var a = function(r) { + function i() { + return r.call(this) || this + } + return __extends(i, r), + i.$init = function() { + var r = navigator.userAgent.toLowerCase(); + i.ua = r, + i._canUseBlob = !1; + var a = window.AudioContext || window.webkitAudioContext || window.mozAudioContext, + o = r.indexOf("iphone") >= 0 || r.indexOf("ipad") >= 0 || r.indexOf("ipod") >= 0; + if (a) try { + t.WebAudioDecode.initAudioContext = function() { + if (t.WebAudioDecode.ctx) try { + t.WebAudioDecode.ctx.close() + } catch(e) {} + t.WebAudioDecode.ctx = new(window.AudioContext || window.webkitAudioContext || window.mozAudioContext) + }, + t.WebAudioDecode.initAudioContext() + } catch(s) { + a = !1 + } + var l, c = i._audioType; + c == n.WEB_AUDIO && a || c == n.HTML5_AUDIO ? (l = !1, i.setAudioType(c)) : !o && r.indexOf("safari") >= 0 && -1 === r.indexOf("chrome") ? (l = !1, i.setAudioType(n.WEB_AUDIO)) : (l = !0, i.setAudioType(n.HTML5_AUDIO)), + r.indexOf("android") >= 0 ? l && a && i.setAudioType(n.WEB_AUDIO) : o && i.getIOSVersion() >= 7 && (i._canUseBlob = !0, l && a && i.setAudioType(n.WEB_AUDIO)); + var h = window.URL || window.webkitURL; + h || (i._canUseBlob = !1), + r.indexOf("egretnative") >= 0 && (i.setAudioType(n.HTML5_AUDIO), i._canUseBlob = !0), + e.Sound = i._AudioClass + }, + i.setAudioType = function(t) { + switch (i._audioType = t, t) { + case n.WEB_AUDIO: + i._AudioClass = e.web.WebAudioSound; + break; + case n.HTML5_AUDIO: + i._AudioClass = e.web.HtmlSound + } + }, + i.getIOSVersion = function() { + var e = i.ua.toLowerCase().match(/cpu [^\d]*\d.*like mac os x/); + if (!e || 0 == e.length) return 0; + var t = e[0]; + return parseInt(t.match(/\d+(_\d)*/)[0]) || 0 + }, + i._canUseBlob = !1, + i._audioType = 0, + i.ua = "", + i + } (e.HashObject); + t.Html5Capatibility = a, + __reflect(a.prototype, "egret.web.Html5Capatibility"); + var o = null; + t.getPrefixStyleName = r, + t.getPrefix = i + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(t, r) { + var n = i(t, r); + return e.pro.egret2dDriveMode && (e.pro.mainCanvas = n), + n + } + function i(e, t) { + var r = document.createElement("canvas"); + return isNaN(e) || isNaN(t) || (r.width = e, r.height = t), + r + } + function n(e, t, r, i) { + if (e) { + var n = e, + a = n.surface; + i ? (a.width < t && (a.width = t), a.height < r && (a.height = r)) : (a.width !== t && (a.width = t), a.height !== r && (a.height = r)), + n.onResize() + } + } + function a(r) { + for (var i = { + antialias: t.WebGLRenderContext.antialias, + stencil: !0 + }, + n = null, a = ["webgl", "experimental-webgl"], o = 0; o < a.length; ++o) { + try { + n = r.getContext(a[o], i) + } catch(s) {} + if (n) break + } + return n || e.$error(1021), + n + } + function o(e) { + return e ? e.getContext("2d") : null + } + function s(t, r) { + var i = t, + n = i.context, + a = n.createTexture(); + return a ? (a[e.glContext] = n, n.bindTexture(n.TEXTURE_2D, a), n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL, 1), a[e.UNPACK_PREMULTIPLY_ALPHA_WEBGL] = !0, n.texImage2D(n.TEXTURE_2D, 0, n.RGBA, n.RGBA, n.UNSIGNED_BYTE, r), n.texParameteri(n.TEXTURE_2D, n.TEXTURE_MAG_FILTER, n.LINEAR), n.texParameteri(n.TEXTURE_2D, n.TEXTURE_MIN_FILTER, n.LINEAR), n.texParameteri(n.TEXTURE_2D, n.TEXTURE_WRAP_S, n.CLAMP_TO_EDGE), n.texParameteri(n.TEXTURE_2D, n.TEXTURE_WRAP_T, n.CLAMP_TO_EDGE), a) : void(i.contextLost = !0) + } + function l(t, r, i, n) { + var a = t, + o = a.context, + s = o.createTexture(); + return s ? (s[e.glContext] = o, o.bindTexture(o.TEXTURE_2D, s), o.pixelStorei(o.UNPACK_PREMULTIPLY_ALPHA_WEBGL, 1), s[e.UNPACK_PREMULTIPLY_ALPHA_WEBGL] = !0, o.texImage2D(o.TEXTURE_2D, 0, o.RGBA, r, i, 0, o.RGBA, o.UNSIGNED_BYTE, n), o.texParameteri(o.TEXTURE_2D, o.TEXTURE_MAG_FILTER, o.LINEAR), o.texParameteri(o.TEXTURE_2D, o.TEXTURE_MIN_FILTER, o.LINEAR), o.texParameteri(o.TEXTURE_2D, o.TEXTURE_WRAP_S, o.CLAMP_TO_EDGE), o.texParameteri(o.TEXTURE_2D, o.TEXTURE_WRAP_T, o.CLAMP_TO_EDGE), s) : (a.contextLost = !0, null) + } + function c(e, t, r) { + var i = e, + n = i.context; + n.activeTexture(n.TEXTURE0), + n.bindTexture(n.TEXTURE_2D, t.texture); + var a = 3 * t.count; + return n.drawElements(n.TRIANGLES, a, n.UNSIGNED_SHORT, 2 * r), + a + } + function h(e, t) { + return e.measureText(t).width + } + function u(e, t, r, i) { + return e(t, r) + } + function d(e, t, r, i) { + var n = e, + a = n.surface; + if (i) { + var o = !1; + a.width < t && (a.width = t, o = !0), + a.height < r && (a.height = r, o = !0), + o || (n.context.globalCompositeOperation = "source-over", n.context.setTransform(1, 0, 0, 1, 0, 0), n.context.globalAlpha = 1) + } else a.width != t && (a.width = t), + a.height != r && (a.height = r); + n.clear() + } + function f(e, t) { + return window.FontFace ? p(e, t) : v(e, t) + } + function p(t, r) { + var i = e.sys.fontResourceCache; + if (!i || !i[r]) return void console.warn("registerFontMapping_WARN: Can not find TTF file:" + r + ", please load file first."); + var n = i[r], + a = new window.FontFace(t, n); + document.fonts.add(a), + a.load()["catch"](function(e) { + console.error("loadFontError:", e) + }) + } + function v(e, t) { + var r = document.createElement("style"); + r.type = "text/css", + r.textContent = '\n @font-face\n {\n font-family:"' + e + '";\n src:url("' + t + '");\n }', + r.onerror = function(e) { + console.error("loadFontError:", e) + }, + document.body.appendChild(r) + } + e.sys.mainCanvas = r, + e.sys.createCanvas = i, + t.resizeContext = n, + e.sys.resizeContext = n, + e.sys.getContextWebGL = a, + t.getContext2d = o, + e.sys.getContext2d = o, + e.sys.createTexture = s, + e.sys._createTexture = l, + e.sys.drawTextureElements = c, + e.sys.measureTextWith = h, + e.sys.createCanvasRenderBufferSurface = u, + e.sys.resizeCanvasRenderBuffer = d, + e.Geolocation = e.web.WebGeolocation, + e.Motion = e.web.WebMotion, + e.sys.registerFontMapping = f + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r() { + if (s) for (var e = document.querySelectorAll(".egret-player"), t = e.length, r = 0; t > r; r++) { + var i = e[r], + n = i["egret-player"]; + n.updateScreenSize() + } + } + function i(r) { + if (!s) { + s = !0, + r || (r = {}); + var i = navigator.userAgent.toLowerCase(); + if (i.indexOf("egretnative") >= 0 && -1 == i.indexOf("egretwebview") && (e.Capabilities.runtimeType = e.RuntimeType.RUNTIME2), r.pro) { + e.pro.egret2dDriveMode = !0; + try { + window.startup ? window.startup() : console.error("EgretPro.js don't has function:window.startup") + } catch(c) { + console.error(c) + } + } + if (i.indexOf("egretnative") >= 0 && e.nativeRender) egret_native.addModuleCallback(function() { + if (t.Html5Capatibility.$init(), "webgl" == r.renderMode) { + var i = r.antialias; + t.WebGLRenderContext.antialias = !!i + } + e.sys.CanvasRenderBuffer = t.CanvasRenderBuffer, + n(r.renderMode), + egret_native.nrSetRenderMode(2); + var s; + s = r.canvasScaleFactor ? r.canvasScaleFactor: r.calculateCanvasScaleFactor ? r.calculateCanvasScaleFactor(e.sys.canvasHitTestBuffer.context) : window.devicePixelRatio, + e.sys.DisplayList.$canvasScaleFactor = s; + var c = e.ticker; + a(c), + r.screenAdapter ? e.sys.screenAdapter = r.screenAdapter: e.sys.screenAdapter || (e.sys.screenAdapter = new e.sys.DefaultScreenAdapter); + for (var h = document.querySelectorAll(".egret-player"), u = h.length, d = 0; u > d; d++) { + var f = h[d], + p = new t.WebPlayer(f, r); + f["egret-player"] = p + } + window.addEventListener("resize", + function() { + isNaN(l) && (l = window.setTimeout(o, 300)) + }) + }, + null), + egret_native.initNativeRender(); + else { + t.Html5Capatibility._audioType = r.audioType, + t.Html5Capatibility.$init(); + var h = r.renderMode; + if ("webgl" == h) { + var u = r.antialias; + t.WebGLRenderContext.antialias = !!u + } + e.sys.CanvasRenderBuffer = t.CanvasRenderBuffer, + i.indexOf("egretnative") >= 0 && "webgl" != h && (e.$warn(1051), h = "webgl"), + n(h); + var d = void 0; + if (r.canvasScaleFactor) d = r.canvasScaleFactor; + else if (r.calculateCanvasScaleFactor) d = r.calculateCanvasScaleFactor(e.sys.canvasHitTestBuffer.context); + else { + var f = e.sys.canvasHitTestBuffer.context, + p = f.backingStorePixelRatio || f.webkitBackingStorePixelRatio || f.mozBackingStorePixelRatio || f.msBackingStorePixelRatio || f.oBackingStorePixelRatio || f.backingStorePixelRatio || 1; + d = (window.devicePixelRatio || 1) / p + } + e.sys.DisplayList.$canvasScaleFactor = d; + var v = e.ticker; + a(v), + r.screenAdapter ? e.sys.screenAdapter = r.screenAdapter: e.sys.screenAdapter || (e.sys.screenAdapter = new e.sys.DefaultScreenAdapter); + for (var g = document.querySelectorAll(".egret-player"), x = g.length, m = 0; x > m; m++) { + var y = g[m], + b = new t.WebPlayer(y, r); + y["egret-player"] = b + } + window.addEventListener("resize", + function() { + isNaN(l) && (l = window.setTimeout(o, 300)) + }) + } + } + } + function n(r) { + "webgl" == r && e.WebGLUtils.checkCanUseWebGL() ? (e.sys.RenderBuffer = t.WebGLRenderBuffer, e.sys.systemRenderer = new t.WebGLRenderer, e.sys.canvasRenderer = new e.CanvasRenderer, e.sys.customHitTestBuffer = new t.WebGLRenderBuffer(3, 3), e.sys.canvasHitTestBuffer = new t.CanvasRenderBuffer(3, 3), e.Capabilities.renderMode = "webgl") : (e.sys.RenderBuffer = t.CanvasRenderBuffer, e.sys.systemRenderer = new e.CanvasRenderer, e.sys.canvasRenderer = e.sys.systemRenderer, e.sys.customHitTestBuffer = new t.CanvasRenderBuffer(3, 3), e.sys.canvasHitTestBuffer = e.sys.customHitTestBuffer, e.Capabilities.renderMode = "canvas") + } + function a(e) { + function t() { + r(t), + e.update() + } + var r = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame; + r || (r = function(e) { + return window.setTimeout(e, 1e3 / 60) + }), + r(t) + } + function o() { + l = 0 / 0, + e.updateAllScreens() + } + var s = !1; + e.sys.setRenderMode = n, + window.isNaN = function(e) { + return e = +e, + e !== e + }, + e.runEgret = i, + e.updateAllScreens = r; + var l = 0 / 0 + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var language, egret; ! +function(e) { + var t; ! + function(t) { + var r = function() { + function t() {} + return t.detect = function() { + var r = e.Capabilities, + i = navigator.userAgent.toLowerCase(); + r.isMobile = -1 != i.indexOf("mobile") || -1 != i.indexOf("android"), + r.isMobile ? i.indexOf("windows") < 0 && ( - 1 != i.indexOf("iphone") || -1 != i.indexOf("ipad") || -1 != i.indexOf("ipod")) ? r.os = "iOS": -1 != i.indexOf("android") && -1 != i.indexOf("linux") ? r.os = "Android": -1 != i.indexOf("windows") && (r.os = "Windows Phone") : -1 != i.indexOf("windows nt") ? r.os = "Windows PC": "MacIntel" == navigator.platform && navigator.maxTouchPoints > 1 ? (r.os = "iOS", r.isMobile = !0) : -1 != i.indexOf("mac os") && (r.os = "Mac OS"); + var n = (navigator.language || navigator.browserLanguage).toLowerCase(), + a = n.split("-"); + a.length > 1 && (a[1] = a[1].toUpperCase()), + r.language = a.join("-"), + t.injectUIntFixOnIE9() + }, + t.injectUIntFixOnIE9 = function() { + if (/msie 9.0/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent)) { + var e = "\r\n\r\n\r\n\r\n"; + document.write(e) + } + }, + t + } (); + t.WebCapability = r, + __reflect(r.prototype, "egret.web.WebCapability"), + r.detect() + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function() { + function t(t, r, i, n, a) { + if (this.showPanle = !0, this.fpsHeight = 0, this.WIDTH = 101, this.HEIGHT = 20, this.bgCanvasColor = "#18304b", this.fpsFrontColor = "#18fefe", this.WIDTH_COST = 50, this.cost1Color = "#18fefe", this.cost3Color = "#ff0000", this.arrFps = [], this.arrCost = [], this.arrLog = [], r || i) { + "canvas" == e.Capabilities.renderMode ? this.renderMode = "Canvas": this.renderMode = "WebGL", + this.panelX = void 0 === a.x ? 0 : parseInt(a.x), + this.panelY = void 0 === a.y ? 0 : parseInt(a.y), + this.fontColor = void 0 === a.textColor ? "#ffffff": a.textColor.replace("0x", "#"), + this.fontSize = void 0 === a.size ? 12 : parseInt(a.size), + e.Capabilities.isMobile && (this.fontSize -= 2); + var o = document.createElement("div"); + o.style.position = "absolute", + o.style.background = "rgba(0,0,0," + a.bgAlpha + ")", + o.style.left = this.panelX + "px", + o.style.top = this.panelY + "px", + o.style.pointerEvents = "none", + o.id = "egret-fps-panel", + document.body.appendChild(o); + var s = document.createElement("div"); + s.style.color = this.fontColor, + s.style.fontSize = this.fontSize + "px", + s.style.lineHeight = this.fontSize + "px", + s.style.margin = "4px 4px 4px 4px", + this.container = s, + o.appendChild(s), + r && this.addFps(), + i && this.addLog() + } + } + return t.prototype.addFps = function() { + var e = document.createElement("div"); + e.style.display = "inline-block", + this.containerFps = e, + this.container.appendChild(e); + var t = document.createElement("div"); + t.style.paddingBottom = "2px", + this.fps = t, + this.containerFps.appendChild(t), + t.innerHTML = "0 FPS " + this.renderMode + "
min0 max0 avg0"; + var r = document.createElement("canvas"); + this.containerFps.appendChild(r), + r.width = this.WIDTH, + r.height = this.HEIGHT, + this.canvasFps = r; + var i = r.getContext("2d"); + this.contextFps = i, + i.fillStyle = this.bgCanvasColor, + i.fillRect(0, 0, this.WIDTH, this.HEIGHT); + var n = document.createElement("div"); + this.divDatas = n, + this.containerFps.appendChild(n); + var a = document.createElement("div"); + a.style["float"] = "left", + a.innerHTML = "Draw
Cost", + n.appendChild(a); + var o = document.createElement("div"); + o.style.paddingLeft = a.offsetWidth + 20 + "px", + n.appendChild(o); + var s = document.createElement("div"); + this.divDraw = s, + s.innerHTML = "0
", + o.appendChild(s); + var l = document.createElement("div"); + this.divCost = l, + l.innerHTML = '0 0', + o.appendChild(l), + r = document.createElement("canvas"), + this.canvasCost = r, + this.containerFps.appendChild(r), + r.width = this.WIDTH, + r.height = this.HEIGHT, + i = r.getContext("2d"), + this.contextCost = i, + i.fillStyle = this.bgCanvasColor, + i.fillRect(0, 0, this.WIDTH, this.HEIGHT), + i.fillStyle = "#000000", + i.fillRect(this.WIDTH_COST, 0, 1, this.HEIGHT), + this.fpsHeight = this.container.offsetHeight + }, + t.prototype.addLog = function() { + var e = document.createElement("div"); + e.style.maxWidth = document.body.clientWidth - 8 - this.panelX + "px", + e.style.wordWrap = "break-word", + this.log = e, + this.container.appendChild(e) + }, + t.prototype.update = function(e, t) { + void 0 === t && (t = !1); + var r, i, n; + t ? (r = this.arrFps[this.arrFps.length - 1], i = this.arrCost[this.arrCost.length - 1][0], n = this.arrCost[this.arrCost.length - 1][1]) : (r = e.fps, i = e.costTicker, n = e.costRender, this.lastNumDraw = e.draw, this.arrFps.push(r), this.arrCost.push([i, n])); + var a = 0, + o = this.arrFps.length; + o > 101 && (o = 101, this.arrFps.shift(), this.arrCost.shift()); + for (var s = this.arrFps[0], l = this.arrFps[0], c = 0; o > c; c++) { + var h = this.arrFps[c]; + a += h, + s > h ? s = h: h > l && (l = h) + } + var u = this.WIDTH, + d = this.HEIGHT, + f = this.contextFps; + f.drawImage(this.canvasFps, 1, 0, u - 1, d, 0, 0, u - 1, d), + f.fillStyle = this.bgCanvasColor, + f.fillRect(u - 1, 0, 1, d); + var p = Math.floor(r / 60 * 20); + 1 > p && (p = 1), + f.fillStyle = this.fpsFrontColor, + f.fillRect(u - 1, 20 - p, 1, p); + var v = this.WIDTH_COST; + f = this.contextCost, + f.drawImage(this.canvasCost, 1, 0, v - 1, d, 0, 0, v - 1, d), + f.drawImage(this.canvasCost, v + 2, 0, v - 1, d, v + 1, 0, v - 1, d); + var g = Math.floor(i / 2); + 1 > g ? g = 1 : g > 20 && (g = 20); + var x = Math.floor(n / 2); + 1 > x ? x = 1 : x > 20 && (x = 20), + f.fillStyle = this.bgCanvasColor, + f.fillRect(v - 1, 0, 1, d), + f.fillRect(2 * v, 0, 1, d), + f.fillRect(3 * v + 1, 0, 1, d), + f.fillStyle = this.cost1Color, + f.fillRect(v - 1, 20 - g, 1, g), + f.fillStyle = this.cost3Color, + f.fillRect(2 * v, 20 - x, 1, x); + var m = Math.floor(a / o), + y = r + " FPS " + this.renderMode; + this.showPanle && (y += "
min" + s + " max" + l + " avg" + m, this.divDraw.innerHTML = this.lastNumDraw + "
", this.divCost.innerHTML = '' + i + ' ' + n + ""), + this.fps.innerHTML = y + }, + t.prototype.updateInfo = function(e) { + this.arrLog.push(e), + this.updateLogLayout() + }, + t.prototype.updateWarn = function(e) { + this.arrLog.push("[Warning]" + e), + this.updateLogLayout() + }, + t.prototype.updateError = function(e) { + this.arrLog.push("[Error]" + e), + this.updateLogLayout() + }, + t.prototype.updateLogLayout = function() { + for (this.log.innerHTML = this.arrLog.join("
"); document.body.clientHeight < this.log.offsetHeight + this.fpsHeight + this.panelY + 2 * this.fontSize;) this.arrLog.shift(), + this.log.innerHTML = this.arrLog.join("
") + }, + t + } (); + t.WebFps = r, + __reflect(r.prototype, "egret.web.WebFps", ["egret.FPSDisplay"]), + e.FPSDisplay = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r; ! + function(r) { + function i(e) { + return window.localStorage.getItem(e) + } + function n(t, r) { + try { + return window.localStorage.setItem(t, r), + !0 + } catch(i) { + return e.$warn(1047, t, r), + !1 + } + } + function a(e) { + window.localStorage.removeItem(e) + } + function o() { + window.localStorage.clear() + } + t.getItem = i, + t.setItem = n, + t.removeItem = a, + t.clear = o + } (r = t.web || (t.web = {})) + } (t = e.localStorage || (e.localStorage = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function i(e, t) { + var i = r.call(this) || this; + return i.updateAfterTyping = !1, + i.init(e, t), + i.initOrientation(), + i + } + return __extends(i, r), + i.prototype.init = function(r, i) { + var n = this; + console.log("Egret Engine Version:", e.Capabilities.engineVersion); + var a = this.readOption(r, i), + o = new e.Stage; + o.$screen = this, + o.$scaleMode = a.scaleMode, + o.$orientation = a.orientation, + o.$maxTouches = a.maxTouches, + o.frameRate = a.frameRate, + o.textureScaleFactor = a.textureScaleFactor; + var s = new e.sys.RenderBuffer(void 0, void 0, !0), + l = s.surface; + this.attachCanvas(r, l); + var c = new t.WebTouchHandler(o, l), + h = new e.sys.Player(s, o, a.entryClassName); + e.lifecycle.stage = o, + e.lifecycle.addLifecycleListener(t.WebLifeCycleHandler); + var u = new t.HTMLInput; (a.showFPS || a.showLog) && (e.nativeRender || h.displayFPS(a.showFPS, a.showLog, a.logFilter, a.fpsStyles)), + this.playerOption = a, + this.container = r, + this.canvas = l, + this.stage = o, + this.player = h, + this.webTouchHandler = c, + this.webInput = u, + u.finishUserTyping = function() { + n.updateAfterTyping && setTimeout(function() { + n.updateScreenSize(), + n.updateAfterTyping = !1 + }, + 300) + }, + e.web.$cacheTextAdapter(u, o, r, l), + this.updateScreenSize(), + this.updateMaxTouches(), + h.start() + }, + i.prototype.initOrientation = function() { + var t = this; + window.addEventListener("orientationchange", + function() { + window.setTimeout(function() { + e.StageOrientationEvent.dispatchStageOrientationEvent(t.stage, e.StageOrientationEvent.ORIENTATION_CHANGE) + }, + 350) + }) + }, + i.prototype.readOption = function(t, r) { + var i = {}; + i.entryClassName = t.getAttribute("data-entry-class"), + i.scaleMode = t.getAttribute("data-scale-mode") || e.StageScaleMode.NO_SCALE, + i.frameRate = +t.getAttribute("data-frame-rate") || 30, + i.contentWidth = +t.getAttribute("data-content-width") || 480, + i.contentHeight = +t.getAttribute("data-content-height") || 800, + i.orientation = t.getAttribute("data-orientation") || e.OrientationMode.AUTO, + i.maxTouches = +t.getAttribute("data-multi-fingered") || 2, + i.textureScaleFactor = +t.getAttribute("texture-scale-factor") || 1, + i.showFPS = "true" == t.getAttribute("data-show-fps"); + for (var n = t.getAttribute("data-show-fps-style") || "", a = n.split(","), o = {}, + s = 0; s < a.length; s++) { + var l = a[s].split(":"); + o[l[0]] = l[1] + } + return i.fpsStyles = o, + i.showLog = "true" == t.getAttribute("data-show-log"), + i.logFilter = t.getAttribute("data-log-filter"), + i + }, + i.prototype.attachCanvas = function(e, t) { + var r = t.style; + r.cursor = "inherit", + r.position = "absolute", + r.top = "0", + r.bottom = "0", + r.left = "0", + r.right = "0", + e.appendChild(t), + r = e.style, + r.overflow = "hidden", + r.position = "absolute" + }, + i.prototype.updateScreenSize = function() { + var t = this.canvas; + if (t.userTyping) return void(this.updateAfterTyping = !0); + var r = this.playerOption, + i = this.container.getBoundingClientRect(), + n = 0, + a = i.width, + o = i.height; + if (0 != a && 0 != o) { + i.top < 0 && (o += i.top, n = -i.top); + var s = !1, + l = this.stage.$orientation; + l != e.OrientationMode.AUTO && (s = l != e.OrientationMode.PORTRAIT && o > a || l == e.OrientationMode.PORTRAIT && a > o); + var c = s ? o: a, + h = s ? a: o; + e.Capabilities.boundingClientWidth = c, + e.Capabilities.boundingClientHeight = h; + var u = e.sys.screenAdapter.calculateStageSize(this.stage.$scaleMode, c, h, r.contentWidth, r.contentHeight), + d = u.stageWidth, + f = u.stageHeight, + p = u.displayWidth, + v = u.displayHeight; + t.style[e.web.getPrefixStyleName("transformOrigin")] = "0% 0% 0px", + t.width != d && (t.width = d), + t.height != f && (t.height = f); + var g = 0; + s ? l == e.OrientationMode.LANDSCAPE ? (g = 90, t.style.top = n + (o - p) / 2 + "px", t.style.left = (a + v) / 2 + "px") : (g = -90, t.style.top = n + (o + p) / 2 + "px", t.style.left = (a - v) / 2 + "px") : (t.style.top = n + (o - v) / 2 + "px", t.style.left = (a - p) / 2 + "px"); + var x = p / d, + m = v / f, + y = x * e.sys.DisplayList.$canvasScaleFactor, + b = m * e.sys.DisplayList.$canvasScaleFactor; + y = Math.ceil(y), + b = Math.ceil(b); + var w = e.Matrix.create(); + w.identity(), + w.scale(x / y, m / b), + w.rotate(g * Math.PI / 180); + var T = "matrix(" + w.a + "," + w.b + "," + w.c + "," + w.d + "," + w.tx + "," + w.ty + ")"; + e.Matrix.release(w), + t.style[e.web.getPrefixStyleName("transform")] = T, + e.sys.DisplayList.$setCanvasScale(y, b), + this.webTouchHandler.updateScaleMode(x, m, g), + this.webInput.$updateSize(), + this.player.updateStageSize(d, f), + e.nativeRender && (t.width = d * y, t.height = f * b) + } + }, + i.prototype.setContentSize = function(e, t) { + var r = this.playerOption; + r.contentWidth = e, + r.contentHeight = t, + this.updateScreenSize() + }, + i.prototype.updateMaxTouches = function() { + this.webTouchHandler.$updateMaxTouches() + }, + i + } (e.HashObject); + t.WebPlayer = r, + __reflect(r.prototype, "egret.web.WebPlayer", ["egret.sys.Screen"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(t, r) { + s || (s = e.sys.createCanvas(), l = s.getContext("2d")); + var i = t.$getTextureWidth(), + n = t.$getTextureHeight(); + null == r && (r = e.$TempRectangle, r.x = 0, r.y = 0, r.width = i, r.height = n), + r.x = Math.min(r.x, i - 1), + r.y = Math.min(r.y, n - 1), + r.width = Math.min(r.width, i - r.x), + r.height = Math.min(r.height, n - r.y); + var a = r.width, + o = r.height, + c = s; + if (c.style.width = a + "px", c.style.height = o + "px", s.width = a, s.height = o, "webgl" == e.Capabilities.renderMode) { + var h = void 0; + t.$renderBuffer ? h = t: (e.sys.systemRenderer.renderClear && e.sys.systemRenderer.renderClear(), h = new e.RenderTexture, h.drawToTexture(new e.Bitmap(t))); + for (var u = h.$renderBuffer.getPixels(r.x, r.y, a, o), d = new ImageData(a, o), f = 0; f < u.length; f++) d.data[f] = u[f]; + return l.putImageData(d, 0, 0), + t.$renderBuffer || h.dispose(), + c + } + var p = t, + v = Math.round(p.$offsetX), + g = Math.round(p.$offsetY), + x = p.$bitmapWidth, + m = p.$bitmapHeight; + return l.drawImage(p.$bitmapData.source, p.$bitmapX + r.x / e.$TextureScaleFactor, p.$bitmapY + r.y / e.$TextureScaleFactor, x * r.width / i, m * r.height / n, v, g, r.width, r.height), + c + } + function i(t, i, n) { + try { + var a = r(this, i), + o = a.toDataURL(t, n); + return o + } catch(s) { + e.$error(1033) + } + return null + } + function n(e, t, r, n) { + var a = i.call(this, e, r, n); + if (null != a) { + var o = a.replace(/^data:image[^;]*/, "data:image/octet-stream"), + s = document.createElement("a"); + s.download = t, + s.href = o; + var l = document.createEvent("MouseEvents"); + l.initMouseEvent("click", !0, !1, window, 0, 0, 0, 0, 0, !1, !1, !1, !1, 0, null), + s.dispatchEvent(l) + } + } + function a(t, r) { + return e.$warn(1041, "getPixel32", "getPixels"), + this.getPixels(t, r) + } + function o(t, i, n, a) { + if (void 0 === n && (n = 1), void 0 === a && (a = 1), "webgl" == e.Capabilities.renderMode) { + var o = void 0; + this.$renderBuffer ? o = this: (o = new e.RenderTexture, o.drawToTexture(new e.Bitmap(this))); + var s = o.$renderBuffer.getPixels(t, i, n, a); + return s + } + try { + var c = (r(this), l.getImageData(t, i, n, a).data); + return c + } catch(h) { + e.$error(1039) + } + } + var s, l; + e.Texture.prototype.toDataURL = i, + e.Texture.prototype.saveToFile = n, + e.Texture.prototype.getPixel32 = a, + e.Texture.prototype.getPixels = o + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r(e) { + for (var t = s.parseFromString(e, "text/xml"), r = t.childNodes.length, n = 0; r > n; n++) { + var a = t.childNodes[n]; + if (1 == a.nodeType) return i(a, null) + } + return null + } + function i(e, t) { + if ("parsererror" == e.localName) throw new Error(e.textContent); + for (var r = new a(e.localName, t, e.prefix, e.namespaceURI, e.nodeName), n = e.attributes, s = r.attributes, l = n.length, c = 0; l > c; c++) { + var h = n[c], + u = h.name; + 0 != u.indexOf("xmlns:") && (s[u] = h.value, r["$" + u] = h.value) + } + var d = e.childNodes; + l = d.length; + for (var f = r.children, + c = 0; l > c; c++) { + var p = d[c], + v = p.nodeType, + g = null; + if (1 == v) g = i(p, r); + else if (3 == v) { + var x = p.textContent.trim(); + x && (g = new o(x, r)) + } + g && f.push(g) + } + return r + } + var n = function() { + function e(e, t) { + this.nodeType = e, + this.parent = t + } + return e + } (); + t.XMLNode = n, + __reflect(n.prototype, "egret.web.XMLNode"); + var a = function(e) { + function t(t, r, i, n, a) { + var o = e.call(this, 1, r) || this; + return o.attributes = {}, + o.children = [], + o.localName = t, + o.prefix = i, + o.namespace = n, + o.name = a, + o + } + return __extends(t, e), + t + } (n); + t.XML = a, + __reflect(a.prototype, "egret.web.XML"); + var o = function(e) { + function t(t, r) { + var i = e.call(this, 3, r) || this; + return i.text = t, + i + } + return __extends(t, e), + t + } (n); + t.XMLText = o, + __reflect(o.prototype, "egret.web.XMLText"); + var s = new DOMParser; + e.XML = { + parse: r + } + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(t) { + function r() { + var r = null !== t && t.apply(this, arguments) || this; + return r.onChange = function(t) { + var i = new e.OrientationEvent(e.Event.CHANGE); + i.beta = t.beta, + i.gamma = t.gamma, + i.alpha = t.alpha, + r.dispatchEvent(i) + }, + r + } + return __extends(r, t), + r.prototype.start = function() { + window.addEventListener("deviceorientation", this.onChange) + }, + r.prototype.stop = function() { + window.removeEventListener("deviceorientation", this.onChange) + }, + r + } (e.EventDispatcher); + t.WebDeviceOrientation = r, + __reflect(r.prototype, "egret.web.WebDeviceOrientation", ["egret.DeviceOrientation"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})), +egret.DeviceOrientation = egret.web.WebDeviceOrientation; +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function() { + function e() {} + return e.call = function(e, t) {}, + e.addCallback = function(e, t) {}, + e + } (); + t.WebExternalInterface = r, + __reflect(r.prototype, "egret.web.WebExternalInterface", ["egret.ExternalInterface"]); + var i = navigator.userAgent.toLowerCase(); + i.indexOf("egretnative") < 0 && (e.ExternalInterface = r) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})), +function(e) { + var t; ! + function(t) { + function r(t) { + var r = JSON.parse(t), + n = r.functionName, + a = i[n]; + if (a) { + var o = r.value; + a.call(null, o) + } else e.$warn(1050, n) + } + var i = {}, + n = function() { + function e() {} + return e.call = function(e, t) { + var r = {}; + r.functionName = e, + r.value = t, + egret_native.sendInfoToPlugin(JSON.stringify(r)) + }, + e.addCallback = function(e, t) { + i[e] = t + }, + e + } (); + t.NativeExternalInterface = n, + __reflect(n.prototype, "egret.web.NativeExternalInterface", ["egret.ExternalInterface"]); + var a = navigator.userAgent.toLowerCase(); + a.indexOf("egretnative") >= 0 && (e.ExternalInterface = n, egret_native.receivedPluginInfo = r) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})), +function(e) { + var t; ! + function(t) { + var r = {}, + i = function() { + function t() {} + return t.call = function(e, t) { + __global.ExternalInterface.call(e, t) + }, + t.addCallback = function(e, t) { + r[e] = t + }, + t.invokeCallback = function(t, i) { + var n = r[t]; + n ? n.call(null, i) : e.$warn(1050, t) + }, + t + } (); + t.WebViewExternalInterface = i, + __reflect(i.prototype, "egret.web.WebViewExternalInterface", ["egret.ExternalInterface"]); + var n = navigator.userAgent.toLowerCase(); + n.indexOf("egretwebview") >= 0 && (e.ExternalInterface = i) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function i() { + var e = r.call(this) || this; + return e.loaded = !1, + e + } + return __extends(i, r), + Object.defineProperty(i.prototype, "length", { + get: function() { + if (this.originAudio) return this.originAudio.duration; + throw new Error("sound not loaded!") + }, + enumerable: !0, + configurable: !0 + }), + i.prototype.load = function(t) { + function r() { + delete i.loadingSoundMap[t], + i.$recycle(o.url, s), + a(), + l.indexOf("firefox") >= 0 && (s.pause(), s.muted = !1), + c && document.body.appendChild(s), + o.loaded = !0, + o.dispatchEventWith(e.Event.COMPLETE) + } + function n() { + a(), + o.dispatchEventWith(e.IOErrorEvent.IO_ERROR) + } + function a() { + s.removeEventListener("canplaythrough", r), + s.removeEventListener("error", n), + c && document.body.removeChild(s) + } + var o = this; + this.url = t; + var s = new Audio(t); + s.addEventListener("canplaythrough", r), + s.addEventListener("error", n); + var l = navigator.userAgent.toLowerCase(); + l.indexOf("firefox") >= 0 && (s.autoplay = !0, s.muted = !0); + var c = l.indexOf("edge") >= 0 || l.indexOf("trident") >= 0; + c && document.body.appendChild(s), + s.load(), + i.loadingSoundMap[t] = s, + this.originAudio = s, + i.clearAudios[this.url] && delete i.clearAudios[this.url] + }, + i.prototype.play = function(r, n) { + r = +r || 0, + n = +n || 0; + var a = i.$pop(this.url); + null == a && (a = this.originAudio.cloneNode()), + a.autoplay = !0; + var o = new t.HtmlSoundChannel(a); + return o.$url = this.url, + o.$loops = n, + o.$startTime = r, + o.$play(), + e.sys.$pushSoundChannel(o), + o + }, + i.prototype.close = function() { + this.loaded && this.originAudio && (this.originAudio.src = ""), + this.originAudio && (this.originAudio = null), + i.$clear(this.url), + this.loaded = !1 + }, + i.$clear = function(e) { + i.clearAudios[e] = !0; + var t = i.audios[e]; + t && (t.length = 0) + }, + i.$pop = function(e) { + var t = i.audios[e]; + return t && t.length > 0 ? t.pop() : null + }, + i.$recycle = function(e, t) { + if (!i.clearAudios[e]) { + var r = i.audios[e]; + null == i.audios[e] && (r = i.audios[e] = []), + r.push(t) + } + }, + i.MUSIC = "music", + i.EFFECT = "effect", + i.loadingSoundMap = {}, + i.audios = {}, + i.clearAudios = {}, + i + } (e.EventDispatcher); + t.HtmlSound = r, + __reflect(r.prototype, "egret.web.HtmlSound", ["egret.Sound"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) {} (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + var t = function() { + function e() { + this.drawData = [], + this.drawDataLen = 0 + } + return e.prototype.pushDrawRect = function() { + if (0 == this.drawDataLen || 1 != this.drawData[this.drawDataLen - 1].type) { + var e = this.drawData[this.drawDataLen] || {}; + e.type = 1, + e.count = 0, + this.drawData[this.drawDataLen] = e, + this.drawDataLen++ + } + this.drawData[this.drawDataLen - 1].count += 2 + }, + e.prototype.pushDrawTexture = function(e, t, r, i, n) { + if (void 0 === t && (t = 2), r) { + var a = this.drawData[this.drawDataLen] || {}; + a.type = 0, + a.texture = e, + a.filter = r, + a.count = t, + a.textureWidth = i, + a.textureHeight = n, + this.drawData[this.drawDataLen] = a, + this.drawDataLen++ + } else { + if (0 == this.drawDataLen || 0 != this.drawData[this.drawDataLen - 1].type || e != this.drawData[this.drawDataLen - 1].texture || this.drawData[this.drawDataLen - 1].filter) { + var a = this.drawData[this.drawDataLen] || {}; + a.type = 0, + a.texture = e, + a.count = 0, + this.drawData[this.drawDataLen] = a, + this.drawDataLen++ + } + this.drawData[this.drawDataLen - 1].count += t + } + }, + e.prototype.pushChangeSmoothing = function(e, t) { + e.smoothing = t; + var r = this.drawData[this.drawDataLen] || {}; + r.type = 10, + r.texture = e, + r.smoothing = t, + this.drawData[this.drawDataLen] = r, + this.drawDataLen++ + }, + e.prototype.pushPushMask = function(e) { + void 0 === e && (e = 1); + var t = this.drawData[this.drawDataLen] || {}; + t.type = 2, + t.count = 2 * e, + this.drawData[this.drawDataLen] = t, + this.drawDataLen++ + }, + e.prototype.pushPopMask = function(e) { + void 0 === e && (e = 1); + var t = this.drawData[this.drawDataLen] || {}; + t.type = 3, + t.count = 2 * e, + this.drawData[this.drawDataLen] = t, + this.drawDataLen++ + }, + e.prototype.pushSetBlend = function(e) { + for (var t = this.drawDataLen, + r = !1, + i = t - 1; i >= 0; i--) { + var n = this.drawData[i]; + if (n) { + if ((0 == n.type || 1 == n.type) && (r = !0), !r && 4 == n.type) { + this.drawData.splice(i, 1), + this.drawDataLen--; + continue + } + if (4 == n.type) { + if (n.value == e) return; + break + } + } + } + var a = this.drawData[this.drawDataLen] || {}; + a.type = 4, + a.value = e, + this.drawData[this.drawDataLen] = a, + this.drawDataLen++ + }, + e.prototype.pushResize = function(e, t, r) { + var i = this.drawData[this.drawDataLen] || {}; + i.type = 5, + i.buffer = e, + i.width = t, + i.height = r, + this.drawData[this.drawDataLen] = i, + this.drawDataLen++ + }, + e.prototype.pushClearColor = function() { + var e = this.drawData[this.drawDataLen] || {}; + e.type = 6, + this.drawData[this.drawDataLen] = e, + this.drawDataLen++ + }, + e.prototype.pushActivateBuffer = function(e) { + for (var t = this.drawDataLen, + r = !1, + i = t - 1; i >= 0; i--) { + var n = this.drawData[i]; ! n || (4 != n.type && 7 != n.type && (r = !0), r || 7 != n.type) || (this.drawData.splice(i, 1), this.drawDataLen--) + } + var a = this.drawData[this.drawDataLen] || {}; + a.type = 7, + a.buffer = e, + a.width = e.rootRenderTarget.width, + a.height = e.rootRenderTarget.height, + this.drawData[this.drawDataLen] = a, + this.drawDataLen++ + }, + e.prototype.pushEnableScissor = function(e, t, r, i) { + var n = this.drawData[this.drawDataLen] || {}; + n.type = 8, + n.x = e, + n.y = t, + n.width = r, + n.height = i, + this.drawData[this.drawDataLen] = n, + this.drawDataLen++ + }, + e.prototype.pushDisableScissor = function() { + var e = this.drawData[this.drawDataLen] || {}; + e.type = 9, + this.drawData[this.drawDataLen] = e, + this.drawDataLen++ + }, + e.prototype.clear = function() { + for (var e = 0; e < this.drawDataLen; e++) { + var t = this.drawData[e]; + t.type = 0, + t.count = 0, + t.texture = null, + t.filter = null, + t.value = "", + t.buffer = null, + t.width = 0, + t.height = 0, + t.textureWidth = 0, + t.textureHeight = 0, + t.smoothing = !1, + t.x = 0, + t.y = 0 + } + this.drawDataLen = 0 + }, + e + } (); + e.WebGLDrawCmdManager = t, + __reflect(t.prototype, "egret.web.WebGLDrawCmdManager") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + function r() { + return e.Capabilities.runtimeType == e.RuntimeType.WEB && "iOS" == e.Capabilities.os && e.Capabilities.isMobile && /iPhone OS 14/.test(window.navigator.userAgent) + } + var i = function() { + function t() { + this.vertSize = 5, + this.vertByteSize = 4 * this.vertSize, + this.maxQuadsCount = 2048, + this.maxVertexCount = 4 * this.maxQuadsCount, + this.maxIndicesCount = 6 * this.maxQuadsCount, + this.vertices = null, + this.indices = null, + this.indicesForMesh = null, + this.vertexIndex = 0, + this.indexIndex = 0, + this.hasMesh = !1, + this._vertices = null, + this._verticesFloat32View = null, + this._verticesUint32View = null; + var e = this.maxVertexCount * this.vertSize; + this.vertices = new Float32Array(e), + this._vertices = new ArrayBuffer(this.maxVertexCount * this.vertByteSize), + this._verticesFloat32View = new Float32Array(this._vertices), + this._verticesUint32View = new Uint32Array(this._vertices), + this.vertices = this._verticesFloat32View; + var t = this.maxIndicesCount; + this.indices = new Uint16Array(t), + this.indicesForMesh = new Uint16Array(t); + for (var r = 0, + i = 0; t > r; r += 6, i += 4) this.indices[r + 0] = i + 0, + this.indices[r + 1] = i + 1, + this.indices[r + 2] = i + 2, + this.indices[r + 3] = i + 0, + this.indices[r + 4] = i + 2, + this.indices[r + 5] = i + 3 + } + return t.prototype.reachMaxSize = function(e, t) { + return void 0 === e && (e = 4), + void 0 === t && (t = 6), + this.vertexIndex > this.maxVertexCount - e || this.indexIndex > this.maxIndicesCount - t + }, + t.prototype.getVertices = function() { + var e = this.vertices.subarray(0, this.vertexIndex * this.vertSize); + return e + }, + t.prototype.getIndices = function() { + return this.indices + }, + t.prototype.getMeshIndices = function() { + return this.indicesForMesh + }, + t.prototype.changeToMeshIndices = function() { + if (!this.hasMesh) { + for (var e = 0, + t = this.indexIndex; t > e; ++e) this.indicesForMesh[e] = this.indices[e]; + this.hasMesh = !0 + } + }, + t.prototype.isMesh = function() { + return this.hasMesh + }, + t.prototype.cacheArrays = function(t, i, n, a, o, s, l, c, h, u, d, f, p, v, g) { + var x = t.globalAlpha; + x = Math.min(x, 1); + var m = t.globalTintColor || 16777215, + y = t.currentTexture; + x = 1 > x && y && y[e.UNPACK_PREMULTIPLY_ALPHA_WEBGL] ? e.WebGLUtils.premultiplyTint(m, x) : m + (255 * x << 24); + var b = t.globalMatrix, + w = b.a, + T = b.b, + E = b.c, + _ = b.d, + C = b.tx, + S = b.ty, + R = t.$offsetX, + L = t.$offsetY; + if ((0 != R || 0 != L) && (C = R * w + L * E + C, S = R * T + L * _ + S), !p) { (0 != s || 0 != l) && (C = s * w + l * E + C, S = s * T + l * _ + S); + var D = c / a; + 1 != D && (w = D * w, T = D * T); + var A = h / o; + 1 != A && (E = A * E, _ = A * _) + } + if (p) if (r()) { + var I = [], + $ = this.vertices, + M = this._verticesUint32View, + B = this.vertexIndex * this.vertSize, + O = 0, + P = 0, + W = 0, + F = 0, + G = 0, + k = 0, + H = 0; + for (O = 0, W = f.length; W > O; O += 2) P = B + 5 * O / 2, + k = p[O], + H = p[O + 1], + F = f[O], + G = f[O + 1], + g ? I.push([w * k + E * H + C, T * k + _ * H + S, (i + (1 - G) * o) / u, (n + F * a) / d]) : I.push([w * k + E * H + C, T * k + _ * H + S, (i + F * a) / u, (n + G * o) / d]), + M[P + 4] = x; + for (var U = 0; U < v.length; U += 3) { + var N = I[v[U]]; + $[B++] = N[0], + $[B++] = N[1], + $[B++] = N[2], + $[B++] = N[3], + M[B++] = x; + var X = I[v[U + 1]]; + $[B++] = X[0], + $[B++] = X[1], + $[B++] = X[2], + $[B++] = X[3], + M[B++] = x; + var z = I[v[U + 2]]; + $[B++] = z[0], + $[B++] = z[1], + $[B++] = z[2], + $[B++] = z[3], + M[B++] = x, + $[B++] = z[0], + $[B++] = z[1], + $[B++] = z[2], + $[B++] = z[3], + M[B++] = x + } + var Y = v.length / 3; + this.vertexIndex += 4 * Y, + this.indexIndex += 6 * Y + } else { + var $ = this.vertices, + M = this._verticesUint32View, + B = this.vertexIndex * this.vertSize, + O = 0, + P = 0, + W = 0, + F = 0, + G = 0, + k = 0, + H = 0; + for (O = 0, W = f.length; W > O; O += 2) P = B + 5 * O / 2, + k = p[O], + H = p[O + 1], + F = f[O], + G = f[O + 1], + $[P + 0] = w * k + E * H + C, + $[P + 1] = T * k + _ * H + S, + g ? ($[P + 2] = (i + (1 - G) * o) / u, $[P + 3] = (n + F * a) / d) : ($[P + 2] = (i + F * a) / u, $[P + 3] = (n + G * o) / d), + M[P + 4] = x; + if (this.hasMesh) for (var V = 0, + j = v.length; j > V; ++V) this.indicesForMesh[this.indexIndex + V] = v[V] + this.vertexIndex; + this.vertexIndex += f.length / 2, + this.indexIndex += v.length + } else { + var q = u, + K = d, + Q = a, + J = o; + i /= q, + n /= K; + var $ = this.vertices, + M = this._verticesUint32View, + B = this.vertexIndex * this.vertSize; + if (g) { + var Z = a; + a = o / q, + o = Z / K, + $[B++] = C, + $[B++] = S, + $[B++] = a + i, + $[B++] = n, + M[B++] = x, + $[B++] = w * Q + C, + $[B++] = T * Q + S, + $[B++] = a + i, + $[B++] = o + n, + M[B++] = x, + $[B++] = w * Q + E * J + C, + $[B++] = _ * J + T * Q + S, + $[B++] = i, + $[B++] = o + n, + M[B++] = x, + $[B++] = E * J + C, + $[B++] = _ * J + S, + $[B++] = i, + $[B++] = n, + M[B++] = x + } else a /= q, + o /= K, + $[B++] = C, + $[B++] = S, + $[B++] = i, + $[B++] = n, + M[B++] = x, + $[B++] = w * Q + C, + $[B++] = T * Q + S, + $[B++] = a + i, + $[B++] = n, + M[B++] = x, + $[B++] = w * Q + E * J + C, + $[B++] = _ * J + T * Q + S, + $[B++] = a + i, + $[B++] = o + n, + M[B++] = x, + $[B++] = E * J + C, + $[B++] = _ * J + S, + $[B++] = i, + $[B++] = o + n, + M[B++] = x; + if (this.hasMesh) { + var et = this.indicesForMesh; + et[this.indexIndex + 0] = 0 + this.vertexIndex, + et[this.indexIndex + 1] = 1 + this.vertexIndex, + et[this.indexIndex + 2] = 2 + this.vertexIndex, + et[this.indexIndex + 3] = 0 + this.vertexIndex, + et[this.indexIndex + 4] = 2 + this.vertexIndex, + et[this.indexIndex + 5] = 3 + this.vertexIndex + } + this.vertexIndex += 4, + this.indexIndex += 6 + } + }, + t.prototype.clear = function() { + this.hasMesh = !1, + this.vertexIndex = 0, + this.indexIndex = 0 + }, + t + } (); + t.WebGLVertexArrayObject = i, + __reflect(i.prototype, "egret.web.WebGLVertexArrayObject"), + t.isIOS14Device = r + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function i(e, t, i) { + var n = r.call(this) || this; + return n.clearColor = [0, 0, 0, 0], + n.useFrameBuffer = !0, + n.gl = e, + n._resize(t, i), + n + } + return __extends(i, r), + i.prototype._resize = function(e, t) { + e = e || 1, + t = t || 1, + 1 > e && (e = 1), + 1 > t && (t = 1), + this.width = e, + this.height = t + }, + i.prototype.resize = function(e, t) { + this._resize(e, t); + var r = this.gl; + this.frameBuffer && (r.bindTexture(r.TEXTURE_2D, this.texture), r.texImage2D(r.TEXTURE_2D, 0, r.RGBA, this.width, this.height, 0, r.RGBA, r.UNSIGNED_BYTE, null)), + this.stencilBuffer && (r.deleteRenderbuffer(this.stencilBuffer), this.stencilBuffer = null) + }, + i.prototype.activate = function() { + var e = this.gl; + e.bindFramebuffer(e.FRAMEBUFFER, this.getFrameBuffer()) + }, + i.prototype.getFrameBuffer = function() { + return this.useFrameBuffer ? this.frameBuffer: null + }, + i.prototype.initFrameBuffer = function() { + if (!this.frameBuffer) { + var e = this.gl; + this.texture = this.createTexture(), + this.frameBuffer = e.createFramebuffer(), + e.bindFramebuffer(e.FRAMEBUFFER, this.frameBuffer), + e.framebufferTexture2D(e.FRAMEBUFFER, e.COLOR_ATTACHMENT0, e.TEXTURE_2D, this.texture, 0) + } + }, + i.prototype.createTexture = function() { + var r = t.WebGLRenderContext.getInstance(0, 0); + return e.sys._createTexture(r, this.width, this.height, null) + }, + i.prototype.clear = function(e) { + var t = this.gl; + e && this.activate(), + t.colorMask(!0, !0, !0, !0), + t.clearColor(this.clearColor[0], this.clearColor[1], this.clearColor[2], this.clearColor[3]), + t.clear(t.COLOR_BUFFER_BIT) + }, + i.prototype.enabledStencil = function() { + if (this.frameBuffer && !this.stencilBuffer) { + var e = this.gl; + e.bindFramebuffer(e.FRAMEBUFFER, this.frameBuffer), + this.stencilBuffer = e.createRenderbuffer(), + e.bindRenderbuffer(e.RENDERBUFFER, this.stencilBuffer), + e.renderbufferStorage(e.RENDERBUFFER, e.DEPTH_STENCIL, this.width, this.height), + e.framebufferRenderbuffer(e.FRAMEBUFFER, e.DEPTH_STENCIL_ATTACHMENT, e.RENDERBUFFER, this.stencilBuffer) + } + }, + i.prototype.dispose = function() { + e.WebGLUtils.deleteWebGLTexture(this.texture) + }, + i + } (e.HashObject); + t.WebGLRenderTarget = r, + __reflect(r.prototype, "egret.web.WebGLRenderTarget") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = {}, + i = function() { + function i(r, i, n) { + if (this._defaultEmptyTexture = null, this.glID = null, this.projectionX = 0 / 0, this.projectionY = 0 / 0, this.contextLost = !1, this._supportedCompressedTextureInfo = [], this.$scissorState = !1, this.vertSize = 5, this.$beforeRender = function() { + var e = this.context; + e.bindBuffer(e.ARRAY_BUFFER, this.vertexBuffer), + e.bindBuffer(e.ELEMENT_ARRAY_BUFFER, this.indexBuffer), + e.disable(e.DEPTH_TEST), + e.disable(e.CULL_FACE), + e.enable(e.BLEND), + e.disable(e.STENCIL_TEST), + e.colorMask(!0, !0, !0, !0), + this.setBlendMode("source-over"), + e.activeTexture(e.TEXTURE0), + this.currentProgram = null + }, + this.surface = e.sys.mainCanvas(r, i), !e.nativeRender) { + this.initWebGL(n), + this.getSupportedCompressedTexture(), + this.$bufferStack = []; + var a = this.context; + this.vertexBuffer = a.createBuffer(), + this.indexBuffer = a.createBuffer(), + a.bindBuffer(a.ARRAY_BUFFER, this.vertexBuffer), + a.bindBuffer(a.ELEMENT_ARRAY_BUFFER, this.indexBuffer), + this.drawCmdManager = new t.WebGLDrawCmdManager, + this.vao = new t.WebGLVertexArrayObject, + this.setGlobalCompositeOperation("source-over") + } + } + return i.getInstance = function(e, t, r) { + return this.instance ? this.instance: (this.instance = new i(e, t, r), this.instance) + }, + i.prototype.pushBuffer = function(e) { + this.$bufferStack.push(e), + e != this.currentBuffer && (this.currentBuffer, this.drawCmdManager.pushActivateBuffer(e)), + this.currentBuffer = e + }, + i.prototype.popBuffer = function() { + if (! (this.$bufferStack.length <= 1)) { + var e = this.$bufferStack.pop(), + t = this.$bufferStack[this.$bufferStack.length - 1]; + e != t && this.drawCmdManager.pushActivateBuffer(t), + this.currentBuffer = t + } + }, + i.prototype.activateBuffer = function(e, t, r) { + e.rootRenderTarget.activate(), + this.bindIndices || this.uploadIndicesArray(this.vao.getIndices()), + e.restoreStencil(), + e.restoreScissor(), + this.onResize(t, r) + }, + i.prototype.uploadVerticesArray = function(e) { + var t = this.context; + t.bufferData(t.ARRAY_BUFFER, e, t.STREAM_DRAW) + }, + i.prototype.uploadIndicesArray = function(e) { + var t = this.context; + t.bufferData(t.ELEMENT_ARRAY_BUFFER, e, t.STATIC_DRAW), + this.bindIndices = !0 + }, + i.prototype.destroy = function() { + this.surface.width = this.surface.height = 0 + }, + i.prototype.onResize = function(e, t) { + e = e || this.surface.width, + t = t || this.surface.height, + this.projectionX = e / 2, + this.projectionY = -t / 2, + this.context && this.context.viewport(0, 0, e, t) + }, + i.prototype.resize = function(t, r, i) { + e.sys.resizeContext(this, t, r, i) + }, + i.prototype._buildSupportedCompressedTextureInfo = function(e) { + for (var t = [], r = 0, i = e; r < i.length; r++) { + var n = i[r]; + if (n) { + var a = { + extensionName: n.name, + supportedFormats: [] + }; + for (var o in n) a.supportedFormats.push([o, n[o]]); + var o; + t.push(a) + } + } + return t + }, + i.prototype.initWebGL = function(e) { + this.onResize(), + this.surface.addEventListener("webglcontextlost", this.handleContextLost.bind(this), !1), + this.surface.addEventListener("webglcontextrestored", this.handleContextRestored.bind(this), !1), + e ? this.setContext(e) : this.getWebGLContext(); + var t = this.context; + this.$maxTextureSize = t.getParameter(t.MAX_TEXTURE_SIZE) + }, + i.prototype.getSupportedCompressedTexture = function() { + var t = this.context ? this.context: e.sys.getContextWebGL(this.surface); + this.pvrtc = t.getExtension("WEBGL_compressed_texture_pvrtc") || t.getExtension("WEBKIT_WEBGL_compressed_texture_pvrtc"), + this.pvrtc && (this.pvrtc.name = "WEBGL_compressed_texture_pvrtc"), + this.etc1 = t.getExtension("WEBGL_compressed_texture_etc1") || t.getExtension("WEBKIT_WEBGL_compressed_texture_etc1"), + this.etc1 && (this.etc1.name = "WEBGL_compressed_texture_etc1"), + e.Capabilities._supportedCompressedTexture ? (e.Capabilities._supportedCompressedTexture = e.Capabilities._supportedCompressedTexture || {}, + e.Capabilities._supportedCompressedTexture.pvrtc = !!this.pvrtc, e.Capabilities._supportedCompressedTexture.etc1 = !!this.etc1) : (e.Capabilities.supportedCompressedTexture = e.Capabilities._supportedCompressedTexture || {}, + e.Capabilities.supportedCompressedTexture.pvrtc = !!this.pvrtc, e.Capabilities.supportedCompressedTexture.etc1 = !!this.etc1), + this._supportedCompressedTextureInfo = this._buildSupportedCompressedTextureInfo([this.etc1, this.pvrtc]) + }, + i.prototype.handleContextLost = function() { + this.contextLost = !0 + }, + i.prototype.handleContextRestored = function() { + this.initWebGL(), + this.contextLost = !1 + }, + i.prototype.getWebGLContext = function() { + var t = e.sys.getContextWebGL(this.surface); + return this.setContext(t), + t + }, + i.prototype.setContext = function(e) { + this.context = e, + e.id = i.glContextId++, + this.glID = e.id, + e.disable(e.DEPTH_TEST), + e.disable(e.CULL_FACE), + e.enable(e.BLEND), + e.colorMask(!0, !0, !0, !0), + e.activeTexture(e.TEXTURE0) + }, + i.prototype.enableStencilTest = function() { + var e = this.context; + e.enable(e.STENCIL_TEST) + }, + i.prototype.disableStencilTest = function() { + var e = this.context; + e.disable(e.STENCIL_TEST) + }, + i.prototype.enableScissorTest = function(e) { + var t = this.context; + t.enable(t.SCISSOR_TEST), + t.scissor(e.x, e.y, e.width, e.height) + }, + i.prototype.disableScissorTest = function() { + var e = this.context; + e.disable(e.SCISSOR_TEST) + }, + i.prototype.getPixels = function(e, t, r, i, n) { + var a = this.context; + a.readPixels(e, t, r, i, a.RGBA, a.UNSIGNED_BYTE, n) + }, + i.prototype.createTexture = function(t) { + return e.sys.createTexture(this, t) + }, + i.prototype.checkCompressedTextureInternalFormat = function(e, t) { + for (var r = 0, + i = e.length; i > r; ++r) for (var n = e[r], a = n.supportedFormats, o = 0, s = a.length; s > o; ++o) if (a[o][1] === t) return ! 0; + return ! 1 + }, + i.prototype.$debugLogCompressedTextureNotSupported = function(t, i) { + if (!r[i]) { + r[i] = !0, + e.log("internalFormat = " + i + ":0x" + i.toString(16) + ", the current hardware does not support the corresponding compression format."); + for (var n = 0, + a = t.length; a > n; ++n) { + var o = t[n]; + if (o.supportedFormats.length > 0) { + e.log("support = " + o.extensionName); + for (var s = 0, + l = o.supportedFormats.length; l > s; ++s) { + var c = o.supportedFormats[s]; + e.log(c[0] + " : " + c[1] + " : 0x" + c[1].toString(16)) + } + } + } + } + }, + i.prototype.createCompressedTexture = function(t, r, i, n, a) { + var o = this.checkCompressedTextureInternalFormat(this._supportedCompressedTextureInfo, a); + if (!o) return this.$debugLogCompressedTextureNotSupported(this._supportedCompressedTextureInfo, a), + this.defaultEmptyTexture; + var s = this.context, + l = s.createTexture(); + return l ? (l[e.glContext] = s, l[e.is_compressed_texture] = !0, s.bindTexture(s.TEXTURE_2D, l), s.pixelStorei(s.UNPACK_PREMULTIPLY_ALPHA_WEBGL, 1), l[e.UNPACK_PREMULTIPLY_ALPHA_WEBGL] = !0, s.compressedTexImage2D(s.TEXTURE_2D, n, a, r, i, 0, t), s.texParameteri(s.TEXTURE_2D, s.TEXTURE_MAG_FILTER, s.LINEAR), s.texParameteri(s.TEXTURE_2D, s.TEXTURE_MIN_FILTER, s.LINEAR), s.texParameteri(s.TEXTURE_2D, s.TEXTURE_WRAP_S, s.CLAMP_TO_EDGE), s.texParameteri(s.TEXTURE_2D, s.TEXTURE_WRAP_T, s.CLAMP_TO_EDGE), s.bindTexture(s.TEXTURE_2D, null), l) : void(this.contextLost = !0) + }, + i.prototype.updateTexture = function(e, t) { + var r = this.context; + r.bindTexture(r.TEXTURE_2D, e), + r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL, 1), + r.texImage2D(r.TEXTURE_2D, 0, r.RGBA, r.RGBA, r.UNSIGNED_BYTE, t) + }, + Object.defineProperty(i.prototype, "defaultEmptyTexture", { + get: function() { + if (!this._defaultEmptyTexture) { + var t = 16, + r = e.sys.createCanvas(t, t), + i = e.sys.getContext2d(r); + i.fillStyle = "white", + i.fillRect(0, 0, t, t), + this._defaultEmptyTexture = this.createTexture(r), + this._defaultEmptyTexture[e.engine_default_empty_texture] = !0 + } + return this._defaultEmptyTexture + }, + enumerable: !0, + configurable: !0 + }), + i.prototype.getWebGLTexture = function(t) { + if (!t.webGLTexture) { + if ("image" != t.format || t.hasCompressed2d()) { + if (t.hasCompressed2d()) { + var r = t.getCompressed2dTextureData(); + t.webGLTexture = this.createCompressedTexture(r.byteArray, r.width, r.height, r.level, r.glInternalFormat); + var i = t.etcAlphaMask; + if (i) { + var n = this.getWebGLTexture(i); + n && (t.webGLTexture[e.etc_alpha_mask] = n) + } + } + } else t.webGLTexture = this.createTexture(t.source); + t.$deleteSource && t.webGLTexture && (t.source && (t.source.src = "", t.source = null), t.clearCompressedTextureData()), + t.webGLTexture && (t.webGLTexture.smoothing = !0) + } + return t.webGLTexture + }, + i.prototype.clearRect = function(e, t, r, i) { + if (0 != e || 0 != t || r != this.surface.width || i != this.surface.height) { + var n = this.currentBuffer; + if (n.$hasScissor) this.setGlobalCompositeOperation("destination-out"), + this.drawRect(e, t, r, i), + this.setGlobalCompositeOperation("source-over"); + else { + var a = n.globalMatrix; + 0 == a.b && 0 == a.c ? (e = e * a.a + a.tx, t = t * a.d + a.ty, r *= a.a, i *= a.d, this.enableScissor(e, -t - i + n.height, r, i), this.clear(), this.disableScissor()) : (this.setGlobalCompositeOperation("destination-out"), this.drawRect(e, t, r, i), this.setGlobalCompositeOperation("source-over")) + } + } else this.clear() + }, + i.prototype.setGlobalCompositeOperation = function(e) { + this.drawCmdManager.pushSetBlend(e) + }, + i.prototype.drawImage = function(e, t, r, i, n, a, o, s, l, c, h, u, d) { + var f = this.currentBuffer; + if (!this.contextLost && e && f) { + var p, v, g; + if (e.texture || e.source && e.source.texture) p = e.texture || e.source.texture, + f.saveTransform(), + v = f.$offsetX, + g = f.$offsetY, + f.useOffset(), + f.transform(1, 0, 0, -1, 0, l + 2 * o); + else { + if (!e.source && !e.webGLTexture) return; + p = this.getWebGLTexture(e) + } + p && (this.drawTexture(p, t, r, i, n, a, o, s, l, c, h, void 0, void 0, void 0, void 0, u, d), e.source && e.source.texture && (f.$offsetX = v, f.$offsetY = g, f.restoreTransform())) + } + }, + i.prototype.drawMesh = function(e, t, r, i, n, a, o, s, l, c, h, u, d, f, p, v, g) { + var x = this.currentBuffer; + if (!this.contextLost && e && x) { + var m, y, b; + if (e.texture || e.source && e.source.texture) m = e.texture || e.source.texture, + x.saveTransform(), + y = x.$offsetX, + b = x.$offsetY, + x.useOffset(), + x.transform(1, 0, 0, -1, 0, l + 2 * o); + else { + if (!e.source && !e.webGLTexture) return; + m = this.getWebGLTexture(e) + } + m && (this.drawTexture(m, t, r, i, n, a, o, s, l, c, h, u, d, f, p, v, g), (e.texture || e.source && e.source.texture) && (x.$offsetX = y, x.$offsetY = b, x.restoreTransform())) + } + }, + i.prototype.drawTexture = function(e, r, i, n, a, o, s, l, c, h, u, d, f, p, v, g, x) { + var m = this.currentBuffer; + if (!this.contextLost && e && m) { + var y; + if (t.isIOS14Device()) { + var b = p && p.length / 3 || 0; + p ? this.vao.reachMaxSize(4 * b, 6 * b) && this.$drawWebGL() : this.vao.reachMaxSize() && this.$drawWebGL(), + void 0 != x && e.smoothing != x && this.drawCmdManager.pushChangeSmoothing(e, x), + y = p ? 2 * b: 2 + } else f && p ? this.vao.reachMaxSize(f.length / 2, p.length) && this.$drawWebGL() : this.vao.reachMaxSize() && this.$drawWebGL(), + void 0 != x && e.smoothing != x && this.drawCmdManager.pushChangeSmoothing(e, x), + d && this.vao.changeToMeshIndices(), + y = p ? p.length / 3 : 2; + this.drawCmdManager.pushDrawTexture(e, y, this.$filter, h, u), + m.currentTexture = e, + this.vao.cacheArrays(m, r, i, n, a, o, s, l, c, h, u, d, f, p, g) + } + }, + i.prototype.drawRect = function(e, t, r, i) { + var n = this.currentBuffer; ! this.contextLost && n && (this.vao.reachMaxSize() && this.$drawWebGL(), this.drawCmdManager.pushDrawRect(), n.currentTexture = null, this.vao.cacheArrays(n, 0, 0, r, i, e, t, r, i, r, i)) + }, + i.prototype.pushMask = function(e, t, r, i) { + var n = this.currentBuffer; ! this.contextLost && n && (n.$stencilList.push({ + x: e, + y: t, + width: r, + height: i + }), this.vao.reachMaxSize() && this.$drawWebGL(), this.drawCmdManager.pushPushMask(), n.currentTexture = null, this.vao.cacheArrays(n, 0, 0, r, i, e, t, r, i, r, i)) + }, + i.prototype.popMask = function() { + var e = this.currentBuffer; + if (!this.contextLost && e) { + var t = e.$stencilList.pop(); + this.vao.reachMaxSize() && this.$drawWebGL(), + this.drawCmdManager.pushPopMask(), + e.currentTexture = null, + this.vao.cacheArrays(e, 0, 0, t.width, t.height, t.x, t.y, t.width, t.height, t.width, t.height) + } + }, + i.prototype.clear = function() { + this.drawCmdManager.pushClearColor() + }, + i.prototype.enableScissor = function(e, t, r, i) { + var n = this.currentBuffer; + this.drawCmdManager.pushEnableScissor(e, t, r, i), + n.$hasScissor = !0 + }, + i.prototype.disableScissor = function() { + var e = this.currentBuffer; + this.drawCmdManager.pushDisableScissor(), + e.$hasScissor = !1 + }, + i.prototype.$drawWebGL = function() { + if (0 != this.drawCmdManager.drawDataLen && !this.contextLost) { + this.uploadVerticesArray(this.vao.getVertices()), + this.vao.isMesh() && this.uploadIndicesArray(this.vao.getMeshIndices()); + for (var e = this.drawCmdManager.drawDataLen, + t = 0, + r = 0; e > r; r++) { + var i = this.drawCmdManager.drawData[r]; + t = this.drawData(i, t), + 7 == i.type && (this.activatedBuffer = i.buffer), + (0 == i.type || 1 == i.type || 2 == i.type || 3 == i.type) && this.activatedBuffer && this.activatedBuffer.$computeDrawCall && this.activatedBuffer.$drawCalls++ + } + this.vao.isMesh() && this.uploadIndicesArray(this.vao.getIndices()), + this.drawCmdManager.clear(), + this.vao.clear() + } + }, + i.prototype.drawData = function(r, i) { + if (r) { + var n, a = this.context, + o = r.filter; + switch (r.type) { + case 0: + o ? "custom" === o.type ? n = t.EgretWebGLProgram.getProgram(a, o.$vertexSrc, o.$fragmentSrc, o.$shaderKey) : "colorTransform" === o.type ? r.texture[e.etc_alpha_mask] ? (a.activeTexture(a.TEXTURE1), a.bindTexture(a.TEXTURE_2D, r.texture[e.etc_alpha_mask]), n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.colorTransform_frag_etc_alphamask_frag, "colorTransform_frag_etc_alphamask_frag")) : n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.colorTransform_frag, "colorTransform") : "blurX" === o.type ? n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.blur_frag, "blur") : "blurY" === o.type ? n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.blur_frag, "blur") : "glow" === o.type && (n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.glow_frag, "glow")) : r.texture[e.etc_alpha_mask] ? (n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.texture_etc_alphamask_frag, e.etc_alpha_mask), a.activeTexture(a.TEXTURE1), a.bindTexture(a.TEXTURE_2D, r.texture[e.etc_alpha_mask])) : n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.texture_frag, "texture"), + this.activeProgram(a, n), + this.syncUniforms(n, o, r.textureWidth, r.textureHeight), + i += this.drawTextureElements(r, i); + break; + case 1: + n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.primitive_frag, "primitive"), + this.activeProgram(a, n), + this.syncUniforms(n, o, r.textureWidth, r.textureHeight), + i += this.drawRectElements(r, i); + break; + case 2: + n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.primitive_frag, "primitive"), + this.activeProgram(a, n), + this.syncUniforms(n, o, r.textureWidth, r.textureHeight), + i += this.drawPushMaskElements(r, i); + break; + case 3: + n = t.EgretWebGLProgram.getProgram(a, t.EgretShaderLib.default_vert, t.EgretShaderLib.primitive_frag, "primitive"), + this.activeProgram(a, n), + this.syncUniforms(n, o, r.textureWidth, r.textureHeight), + i += this.drawPopMaskElements(r, i); + break; + case 4: + this.setBlendMode(r.value); + break; + case 5: + r.buffer.rootRenderTarget.resize(r.width, r.height), + this.onResize(r.width, r.height); + break; + case 6: + if (this.activatedBuffer) { + var s = this.activatedBuffer.rootRenderTarget; (0 != s.width || 0 != s.height) && s.clear(!0) + } + break; + case 7: + this.activateBuffer(r.buffer, r.width, r.height); + break; + case 8: + var l = this.activatedBuffer; + l && (l.rootRenderTarget && l.rootRenderTarget.enabledStencil(), l.enableScissor(r.x, r.y, r.width, r.height)); + break; + case 9: + l = this.activatedBuffer, + l && l.disableScissor(); + break; + case 10: + a.bindTexture(a.TEXTURE_2D, r.texture), + r.smoothing ? (a.texParameteri(a.TEXTURE_2D, a.TEXTURE_MAG_FILTER, a.LINEAR), a.texParameteri(a.TEXTURE_2D, a.TEXTURE_MIN_FILTER, a.LINEAR)) : (a.texParameteri(a.TEXTURE_2D, a.TEXTURE_MAG_FILTER, a.NEAREST), a.texParameteri(a.TEXTURE_2D, a.TEXTURE_MIN_FILTER, a.NEAREST)) + } + return i + } + }, + i.prototype.activeProgram = function(t, r) { + if (e.pro.egret2dDriveMode || r != this.currentProgram) { + t.useProgram(r.id); + var i = r.attributes; + for (var n in i)"aVertexPosition" === n ? (t.vertexAttribPointer(i.aVertexPosition.location, 2, t.FLOAT, !1, 20, 0), t.enableVertexAttribArray(i.aVertexPosition.location)) : "aTextureCoord" === n ? (t.vertexAttribPointer(i.aTextureCoord.location, 2, t.FLOAT, !1, 20, 8), t.enableVertexAttribArray(i.aTextureCoord.location)) : "aColor" === n && (t.vertexAttribPointer(i.aColor.location, 4, t.UNSIGNED_BYTE, !0, 20, 16), t.enableVertexAttribArray(i.aColor.location)); + this.currentProgram = r + } + }, + i.prototype.syncUniforms = function(e, t, r, i) { + var n = e.uniforms; + t && "custom" === t.type; + for (var a in n) if ("$filterScale" != a) if ("projectionVector" === a) n[a].setValue({ + x: this.projectionX, + y: this.projectionY + }); + else if ("uTextureSize" === a) n[a].setValue({ + x: r, + y: i + }); + else if ("uSampler" === a) n[a].setValue(0); + else if ("uSamplerAlphaMask" === a) n[a].setValue(1); + else { + var o = t.$uniforms[a]; + if (void 0 !== o) { + if ("glow" == t.type || 0 == t.type.indexOf("blur")) if ("blurX" == a || "blurY" == a || "dist" == a) o *= t.$uniforms.$filterScale || 1; + else if ("blur" == a && void 0 != o.x && void 0 != o.y) { + var s = { + x: 0, + y: 0 + }; + s.x = o.x * (void 0 != t.$uniforms.$filterScale ? t.$uniforms.$filterScale: 1), + s.y = o.y * (void 0 != t.$uniforms.$filterScale ? t.$uniforms.$filterScale: 1), + n[a].setValue(s); + continue + } + n[a].setValue(o) + } + } + }, + i.prototype.drawTextureElements = function(t, r) { + return e.sys.drawTextureElements(this, t, r) + }, + i.prototype.drawRectElements = function(e, t) { + var r = this.context, + i = 3 * e.count; + return r.drawElements(r.TRIANGLES, i, r.UNSIGNED_SHORT, 2 * t), + i + }, + i.prototype.drawPushMaskElements = function(e, t) { + var r = this.context, + i = 3 * e.count, + n = this.activatedBuffer; + if (n) { + n.rootRenderTarget && n.rootRenderTarget.enabledStencil(), + 0 == n.stencilHandleCount && (n.enableStencil(), r.clear(r.STENCIL_BUFFER_BIT)); + var a = n.stencilHandleCount; + n.stencilHandleCount++, + r.colorMask(!1, !1, !1, !1), + r.stencilFunc(r.EQUAL, a, 255), + r.stencilOp(r.KEEP, r.KEEP, r.INCR), + r.drawElements(r.TRIANGLES, i, r.UNSIGNED_SHORT, 2 * t), + r.stencilFunc(r.EQUAL, a + 1, 255), + r.colorMask(!0, !0, !0, !0), + r.stencilOp(r.KEEP, r.KEEP, r.KEEP) + } + return i + }, + i.prototype.drawPopMaskElements = function(e, t) { + var r = this.context, + i = 3 * e.count, + n = this.activatedBuffer; + if (n) if (n.stencilHandleCount--, 0 == n.stencilHandleCount) n.disableStencil(); + else { + var a = n.stencilHandleCount; + r.colorMask(!1, !1, !1, !1), + r.stencilFunc(r.EQUAL, a + 1, 255), + r.stencilOp(r.KEEP, r.KEEP, r.DECR), + r.drawElements(r.TRIANGLES, i, r.UNSIGNED_SHORT, 2 * t), + r.stencilFunc(r.EQUAL, a, 255), + r.colorMask(!0, !0, !0, !0), + r.stencilOp(r.KEEP, r.KEEP, r.KEEP) + } + return i + }, + i.prototype.setBlendMode = function(e) { + var t = this.context, + r = i.blendModesForGL[e]; + r && t.blendFunc(r[0], r[1]) + }, + i.prototype.drawTargetWidthFilters = function(r, i) { + var n, a = i, + o = r.length; + if (o > 1) for (var s = 0; o - 1 > s; s++) { + var l = r[s], + c = i.rootRenderTarget.width, + h = i.rootRenderTarget.height; + n = t.WebGLRenderBuffer.create(c, h); + var u = Math.max(e.sys.DisplayList.$canvasScaleFactor, 2); + n.setTransform(u, 0, 0, u, 0, 0), + n.globalAlpha = 1, + this.drawToRenderTarget(l, i, n), + i != a && t.WebGLRenderBuffer.release(i), + i = n + } + var d = r[o - 1]; + this.drawToRenderTarget(d, i, this.currentBuffer), + i != a && t.WebGLRenderBuffer.release(i) + }, + i.prototype.drawToRenderTarget = function(r, i, n) { + if (!this.contextLost) { + this.vao.reachMaxSize() && this.$drawWebGL(), + this.pushBuffer(n); + var a, o = i, + s = i.rootRenderTarget.width, + l = i.rootRenderTarget.height; + if ("blur" == r.type) { + var c = r.blurXFilter, + h = r.blurYFilter; + if (0 != c.blurX && 0 != h.blurY) { + a = t.WebGLRenderBuffer.create(s, l); + var u = Math.max(e.sys.DisplayList.$canvasScaleFactor, 2); + a.setTransform(1, 0, 0, 1, 0, 0), + a.transform(u, 0, 0, u, 0, 0), + a.globalAlpha = 1, + this.drawToRenderTarget(r.blurXFilter, i, a), + i != o && t.WebGLRenderBuffer.release(i), + i = a, + r = h + } else r = 0 === c.blurX ? h: c + } + n.saveTransform(); + var d = Math.max(e.sys.DisplayList.$canvasScaleFactor, 2); + n.transform(1 / d, 0, 0, 1 / d, 0, 0), + n.transform(1, 0, 0, -1, 0, l), + n.currentTexture = i.rootRenderTarget.texture, + this.vao.cacheArrays(n, 0, 0, s, l, 0, 0, s, l, s, l), + n.restoreTransform(), + this.drawCmdManager.pushDrawTexture(i.rootRenderTarget.texture, 2, r, s, l), + i != o && t.WebGLRenderBuffer.release(i), + this.popBuffer() + } + }, + i.initBlendMode = function() { + i.blendModesForGL = {}, + i.blendModesForGL["source-over"] = [1, 771], + i.blendModesForGL.lighter = [1, 1], + i.blendModesForGL["lighter-in"] = [770, 771], + i.blendModesForGL["destination-out"] = [0, 771], + i.blendModesForGL["destination-in"] = [0, 770] + }, + i.glContextId = 0, + i.blendModesForGL = null, + i + } (); + t.WebGLRenderContext = i, + __reflect(i.prototype, "egret.web.WebGLRenderContext", ["egret.sys.RenderContext"]), + i.initBlendMode(), + e.sys.WebGLRenderContext = i + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(r) { + function n(i, n, a) { + var o = r.call(this) || this; + if (o.currentTexture = null, o.globalAlpha = 1, o.globalTintColor = 16777215, o.stencilState = !1, o.$stencilList = [], o.stencilHandleCount = 0, o.$scissorState = !1, o.scissorRect = new e.Rectangle, o.$hasScissor = !1, o.$drawCalls = 0, o.$computeDrawCall = !1, o.globalMatrix = new e.Matrix, o.savedGlobalMatrix = new e.Matrix, o.$offsetX = 0, o.$offsetY = 0, o.context = t.WebGLRenderContext.getInstance(i, n), e.nativeRender) return a ? o.surface = o.context.surface: o.surface = new egret_native.NativeRenderSurface(o, i, n, a), + o.rootRenderTarget = null, + o; + if (o.rootRenderTarget = new t.WebGLRenderTarget(o.context.context, 3, 3), i && n && o.resize(i, n), o.root = a, o.root) o.context.pushBuffer(o), + o.surface = o.context.surface, + o.$computeDrawCall = !0; + else { + var s = o.context.activatedBuffer; + s && s.rootRenderTarget.activate(), + o.rootRenderTarget.initFrameBuffer(), + o.surface = o.rootRenderTarget + } + return o + } + return __extends(n, r), + n.prototype.enableStencil = function() { + this.stencilState || (this.context.enableStencilTest(), this.stencilState = !0) + }, + n.prototype.disableStencil = function() { + this.stencilState && (this.context.disableStencilTest(), this.stencilState = !1) + }, + n.prototype.restoreStencil = function() { + this.stencilState ? this.context.enableStencilTest() : this.context.disableStencilTest() + }, + n.prototype.enableScissor = function(e, t, r, i) { + this.$scissorState || (this.$scissorState = !0, this.scissorRect.setTo(e, t, r, i), this.context.enableScissorTest(this.scissorRect)) + }, + n.prototype.disableScissor = function() { + this.$scissorState && (this.$scissorState = !1, this.scissorRect.setEmpty(), this.context.disableScissorTest()) + }, + n.prototype.restoreScissor = function() { + this.$scissorState ? this.context.enableScissorTest(this.scissorRect) : this.context.disableScissorTest() + }, + Object.defineProperty(n.prototype, "width", { + get: function() { + return e.nativeRender ? this.surface.width: this.rootRenderTarget.width + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(n.prototype, "height", { + get: function() { + return e.nativeRender ? this.surface.height: this.rootRenderTarget.height + }, + enumerable: !0, + configurable: !0 + }), + n.prototype.resize = function(t, r, i) { + return t = t || 1, + r = r || 1, + e.nativeRender ? void this.surface.resize(t, r) : (this.context.pushBuffer(this), (t != this.rootRenderTarget.width || r != this.rootRenderTarget.height) && (this.context.drawCmdManager.pushResize(this, t, r), this.rootRenderTarget.width = t, this.rootRenderTarget.height = r), this.root && this.context.resize(t, r, i), this.context.clear(), void this.context.popBuffer()) + }, + n.prototype.getPixels = function(t, r, i, n) { + void 0 === i && (i = 1), + void 0 === n && (n = 1); + var a = new Uint8Array(4 * i * n); + if (e.nativeRender) egret_native.activateBuffer(this), + egret_native.nrGetPixels(t, r, i, n, a), + egret_native.activateBuffer(null); + else { + var o = this.rootRenderTarget.useFrameBuffer; + this.rootRenderTarget.useFrameBuffer = !0, + this.rootRenderTarget.activate(), + this.context.getPixels(t, r, i, n, a), + this.rootRenderTarget.useFrameBuffer = o, + this.rootRenderTarget.activate() + } + for (var s = new Uint8Array(4 * i * n), l = 0; n > l; l++) for (var c = 0; i > c; c++) { + var h = 4 * (i * (n - l - 1) + c), + u = 4 * (i * l + c), + d = a[u + 3]; + s[h] = Math.round(a[u] / d * 255), + s[h + 1] = Math.round(a[u + 1] / d * 255), + s[h + 2] = Math.round(a[u + 2] / d * 255), + s[h + 3] = a[u + 3] + } + return s + }, + n.prototype.toDataURL = function(e, t) { + return this.context.surface.toDataURL(e, t) + }, + n.prototype.destroy = function() { + this.context.destroy() + }, + n.prototype.onRenderFinish = function() { + this.$drawCalls = 0 + }, + n.prototype.drawFrameBufferToSurface = function(e, t, r, i, n, a, o, s, l) { + void 0 === l && (l = !1), + this.rootRenderTarget.useFrameBuffer = !1, + this.rootRenderTarget.activate(), + this.context.disableStencilTest(), + this.context.disableScissorTest(), + this.setTransform(1, 0, 0, 1, 0, 0), + this.globalAlpha = 1, + this.context.setGlobalCompositeOperation("source-over"), + l && this.context.clear(), + this.context.drawImage(this.rootRenderTarget, e, t, r, i, n, a, o, s, r, i, !1), + this.context.$drawWebGL(), + this.rootRenderTarget.useFrameBuffer = !0, + this.rootRenderTarget.activate(), + this.restoreStencil(), + this.restoreScissor() + }, + n.prototype.drawSurfaceToFrameBuffer = function(e, t, r, i, n, a, o, s, l) { + void 0 === l && (l = !1), + this.rootRenderTarget.useFrameBuffer = !0, + this.rootRenderTarget.activate(), + this.context.disableStencilTest(), + this.context.disableScissorTest(), + this.setTransform(1, 0, 0, 1, 0, 0), + this.globalAlpha = 1, + this.context.setGlobalCompositeOperation("source-over"), + l && this.context.clear(), + this.context.drawImage(this.context.surface, e, t, r, i, n, a, o, s, r, i, !1), + this.context.$drawWebGL(), + this.rootRenderTarget.useFrameBuffer = !1, + this.rootRenderTarget.activate(), + this.restoreStencil(), + this.restoreScissor() + }, + n.prototype.clear = function() { + this.context.pushBuffer(this), + this.context.clear(), + this.context.popBuffer() + }, + n.prototype.setTransform = function(e, t, r, i, n, a) { + var o = this.globalMatrix; + o.a = e, + o.b = t, + o.c = r, + o.d = i, + o.tx = n, + o.ty = a + }, + n.prototype.transform = function(e, t, r, i, n, a) { + var o = this.globalMatrix, + s = o.a, + l = o.b, + c = o.c, + h = o.d; (1 != e || 0 != t || 0 != r || 1 != i) && (o.a = e * s + t * c, o.b = e * l + t * h, o.c = r * s + i * c, o.d = r * l + i * h), + o.tx = n * s + a * c + o.tx, + o.ty = n * l + a * h + o.ty + }, + n.prototype.useOffset = function() { + var e = this; (0 != e.$offsetX || 0 != e.$offsetY) && (e.globalMatrix.append(1, 0, 0, 1, e.$offsetX, e.$offsetY), e.$offsetX = e.$offsetY = 0) + }, + n.prototype.saveTransform = function() { + var e = this.globalMatrix, + t = this.savedGlobalMatrix; + t.a = e.a, + t.b = e.b, + t.c = e.c, + t.d = e.d, + t.tx = e.tx, + t.ty = e.ty + }, + n.prototype.restoreTransform = function() { + var e = this.globalMatrix, + t = this.savedGlobalMatrix; + e.a = t.a, + e.b = t.b, + e.c = t.c, + e.d = t.d, + e.tx = t.tx, + e.ty = t.ty + }, + n.create = function(e, t) { + var r = i.pop(); + if (r) { + r.resize(e, t); + var a = r.globalMatrix; + a.a = 1, + a.b = 0, + a.c = 0, + a.d = 1, + a.tx = 0, + a.ty = 0, + r.globalAlpha = 1, + r.$offsetX = 0, + r.$offsetY = 0 + } else r = new n(e, t), + r.$computeDrawCall = !1; + return r + }, + n.release = function(e) { + i.push(e) + }, + n.autoClear = !0, + n + } (e.HashObject); + t.WebGLRenderBuffer = r, + __reflect(r.prototype, "egret.web.WebGLRenderBuffer", ["egret.sys.RenderBuffer"]); + var i = [] + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = ["source-over", "lighter", "destination-out"], + i = "source-over", + n = [], + a = function() { + function a() { + this.wxiOS10 = !1, + this.nestLevel = 0 + } + return a.prototype.render = function(t, r, i, a) { + this.nestLevel++; + var o = r, + s = o.context; + s.pushBuffer(o), + o.transform(i.a, i.b, i.c, i.d, 0, 0), + this.drawDisplayObject(t, o, i.tx, i.ty, !0), + s.$drawWebGL(); + var l = o.$drawCalls; + o.onRenderFinish(), + s.popBuffer(); + var c = e.Matrix.create(); + if (i.$invertInto(c), o.transform(c.a, c.b, c.c, c.d, 0, 0), e.Matrix.release(c), this.nestLevel--, 0 === this.nestLevel) { + n.length > 6 && (n.length = 6); + for (var h = n.length, + u = 0; h > u; u++) n[u].resize(0, 0) + } + return l + }, + a.prototype.drawDisplayObject = function(t, r, i, n, a) { + var o, s = 0, + l = t.$displayList; + if (l && !a ? ((t.$cacheDirty || t.$renderDirty || l.$canvasScaleX != e.sys.DisplayList.$canvasScaleX || l.$canvasScaleY != e.sys.DisplayList.$canvasScaleY) && (s += l.drawToSurface()), o = l.$renderNode) : o = t.$renderDirty ? t.$getRenderNode() : t.$renderNode, t.$cacheDirty = !1, o) { + switch (s++, r.$offsetX = i, r.$offsetY = n, o.type) { + case 1: + this.renderBitmap(o, r); + break; + case 2: + this.renderText(o, r); + break; + case 3: + this.renderGraphics(o, r); + break; + case 4: + this.renderGroup(o, r); + break; + case 5: + this.renderMesh(o, r); + break; + case 6: + this.renderNormalBitmap(o, r) + } + r.$offsetX = 0, + r.$offsetY = 0 + } + if (l && !a) return s; + var c = t.$children; + if (c) { + t.sortableChildren && t.$sortDirty && t.sortChildren(); + for (var h = c.length, + u = 0; h > u; u++) { + var d = c[u], + f = void 0, + p = void 0, + v = void 0, + g = void 0; + 1 != d.$alpha && (v = r.globalAlpha, r.globalAlpha *= d.$alpha), + 16777215 !== d.tint && (g = r.globalTintColor, r.globalTintColor = d.$tintRGB); + var x = void 0; + if (d.$useTranslate) { + var m = d.$getMatrix(); + f = i + d.$x, + p = n + d.$y; + var y = r.globalMatrix; + x = e.Matrix.create(), + x.a = y.a, + x.b = y.b, + x.c = y.c, + x.d = y.d, + x.tx = y.tx, + x.ty = y.ty, + r.transform(m.a, m.b, m.c, m.d, f, p), + f = -d.$anchorOffsetX, + p = -d.$anchorOffsetY + } else f = i + d.$x - d.$anchorOffsetX, + p = n + d.$y - d.$anchorOffsetY; + switch (d.$renderMode) { + case 1: + break; + case 2: + s += this.drawWithFilter(d, r, f, p); + break; + case 3: + s += this.drawWithClip(d, r, f, p); + break; + case 4: + s += this.drawWithScrollRect(d, r, f, p); + break; + default: + s += this.drawDisplayObject(d, r, f, p) + } + if (v && (r.globalAlpha = v), g && (r.globalTintColor = g), x) { + var m = r.globalMatrix; + m.a = x.a, + m.b = x.b, + m.c = x.c, + m.d = x.d, + m.tx = x.tx, + m.ty = x.ty, + e.Matrix.release(x) + } + } + } + return s + }, + a.prototype.drawWithFilter = function(t, a, o, s) { + var l = 0; + if (t.$children && 0 == t.$children.length && (!t.$renderNode || 0 == t.$renderNode.$getRenderCount())) return l; + var c, h = t.$filters, + u = 0 !== t.$blendMode; + u && (c = r[t.$blendMode], c || (c = i)); + var d = t.$getOriginalBounds(), + f = d.x, + p = d.y, + v = d.width, + g = d.height; + if (0 >= v || 0 >= g) return l; + if (!t.mask && 1 == h.length && ("colorTransform" == h[0].type || "custom" === h[0].type && 0 === h[0].padding)) { + var x = this.getRenderCount(t); + if (!t.$children || 1 == x) return u && a.context.setGlobalCompositeOperation(c), + a.context.$filter = h[0], + l += t.$mask ? this.drawWithClip(t, a, o, s) : t.$scrollRect || t.$maskRect ? this.drawWithScrollRect(t, a, o, s) : this.drawDisplayObject(t, a, o, s), + a.context.$filter = null, + u && a.context.setGlobalCompositeOperation(i), + l + } + var m = Math.max(e.sys.DisplayList.$canvasScaleFactor, 2); + h.forEach(function(t) { + if ((t instanceof e.GlowFilter || t instanceof e.BlurFilter) && (t.$uniforms.$filterScale = m, "blur" == t.type)) { + var r = t; + r.blurXFilter.$uniforms.$filterScale = m, + r.blurYFilter.$uniforms.$filterScale = m + } + }); + var y = this.createRenderBuffer(m * v, m * g); + if (y.saveTransform(), y.transform(m, 0, 0, m, 0, 0), y.context.pushBuffer(y), l += t.$mask ? this.drawWithClip(t, y, -f, -p) : t.$scrollRect || t.$maskRect ? this.drawWithScrollRect(t, y, -f, -p) : this.drawDisplayObject(t, y, -f, -p), y.context.popBuffer(), y.restoreTransform(), l > 0) { + u && a.context.setGlobalCompositeOperation(c), + l++, + a.$offsetX = o + f, + a.$offsetY = s + p; + var b = e.Matrix.create(), + w = a.globalMatrix; + b.a = w.a, + b.b = w.b, + b.c = w.c, + b.d = w.d, + b.tx = w.tx, + b.ty = w.ty, + a.useOffset(), + a.context.drawTargetWidthFilters(h, y), + w.a = b.a, + w.b = b.b, + w.c = b.c, + w.d = b.d, + w.tx = b.tx, + w.ty = b.ty, + e.Matrix.release(b), + u && a.context.setGlobalCompositeOperation(i) + } + return n.push(y), + l + }, + a.prototype.getRenderCount = function(e) { + var t = 0, + r = e.$getRenderNode(); + if (r && (t += r.$getRenderCount()), e.$children) for (var i = 0, + n = e.$children; i < n.length; i++) { + var a = n[i], + o = a.$filters; + if (o && o.length > 0) return 2; + if (a.$children) t += this.getRenderCount(a); + else { + var s = a.$getRenderNode(); + s && (t += s.$getRenderCount()) + } + } + return t + }, + a.prototype.drawWithClip = function(t, a, o, s) { + var l, c = 0, + h = 0 !== t.$blendMode; + h && (l = r[t.$blendMode], l || (l = i)); + var u = t.$scrollRect ? t.$scrollRect: t.$maskRect, + d = t.$mask; + if (d) { + var f = d.$getMatrix(); + if (0 == f.a && 0 == f.b || 0 == f.c && 0 == f.d) return c + } + if (d || t.$children && 0 != t.$children.length) { + var p = t.$getOriginalBounds(), + v = p.x, + g = p.y, + x = p.width, + m = p.height; + if (0 >= x || 0 >= m) return c; + var y = this.createRenderBuffer(x, m); + if (y.context.pushBuffer(y), c += this.drawDisplayObject(t, y, -v, -g), d) { + var b = this.createRenderBuffer(x, m); + b.context.pushBuffer(b); + var w = e.Matrix.create(); + w.copyFrom(d.$getConcatenatedMatrix()), + d.$getConcatenatedMatrixAt(t, w), + w.translate( - v, -g), + b.setTransform(w.a, w.b, w.c, w.d, w.tx, w.ty), + e.Matrix.release(w), + c += this.drawDisplayObject(d, b, 0, 0), + b.context.popBuffer(), + y.context.setGlobalCompositeOperation("destination-in"), + y.setTransform(1, 0, 0, -1, 0, b.height); + var T = b.rootRenderTarget.width, + E = b.rootRenderTarget.height; + y.context.drawTexture(b.rootRenderTarget.texture, 0, 0, T, E, 0, 0, T, E, T, E), + y.setTransform(1, 0, 0, 1, 0, 0), + y.context.setGlobalCompositeOperation("source-over"), + b.setTransform(1, 0, 0, 1, 0, 0), + n.push(b) + } + if (y.context.setGlobalCompositeOperation(i), y.context.popBuffer(), c > 0) { + c++, + h && a.context.setGlobalCompositeOperation(l), + u && a.context.pushMask(u.x + o, u.y + s, u.width, u.height); + var _ = e.Matrix.create(), + C = a.globalMatrix; + _.a = C.a, + _.b = C.b, + _.c = C.c, + _.d = C.d, + _.tx = C.tx, + _.ty = C.ty, + C.append(1, 0, 0, -1, o + v, s + g + y.height); + var S = y.rootRenderTarget.width, + R = y.rootRenderTarget.height; + a.context.drawTexture(y.rootRenderTarget.texture, 0, 0, S, R, 0, 0, S, R, S, R), + u && y.context.popMask(), + h && a.context.setGlobalCompositeOperation(i); + var L = a.globalMatrix; + L.a = _.a, + L.b = _.b, + L.c = _.c, + L.d = _.d, + L.tx = _.tx, + L.ty = _.ty, + e.Matrix.release(_) + } + return n.push(y), + c + } + return u && a.context.pushMask(u.x + o, u.y + s, u.width, u.height), + h && a.context.setGlobalCompositeOperation(l), + c += this.drawDisplayObject(t, a, o, s), + h && a.context.setGlobalCompositeOperation(i), + u && a.context.popMask(), + c + }, + a.prototype.drawWithScrollRect = function(e, t, r, i) { + var n = 0, + a = e.$scrollRect ? e.$scrollRect: e.$maskRect; + if (a.isEmpty()) return n; + e.$scrollRect && (r -= a.x, i -= a.y); + var o = t.globalMatrix, + s = t.context, + l = !1; + if (t.$hasScissor || 0 != o.b || 0 != o.c) t.context.pushMask(a.x + r, a.y + i, a.width, a.height); + else { + var c = o.a, + h = o.d, + u = o.tx, + d = o.ty, + f = a.x + r, + p = a.y + i, + v = f + a.width, + g = p + a.height, + x = void 0, + m = void 0, + y = void 0, + b = void 0; + if (1 == c && 1 == h) x = f + u, + m = p + d, + y = v + u, + b = g + d; + else { + var w = c * f + u, + T = h * p + d, + E = c * v + u, + _ = h * p + d, + C = c * v + u, + S = h * g + d, + R = c * f + u, + L = h * g + d, + D = 0; + w > E && (D = w, w = E, E = D), + C > R && (D = C, C = R, R = D), + x = C > w ? w: C, + y = E > R ? E: R, + T > _ && (D = T, T = _, _ = D), + S > L && (D = S, S = L, L = D), + m = S > T ? T: S, + b = _ > L ? _: L + } + s.enableScissor(x, -b + t.height, y - x, b - m), + l = !0 + } + return n += this.drawDisplayObject(e, t, r, i), + l ? s.disableScissor() : s.popMask(), + n + }, + a.prototype.drawNodeToBuffer = function(e, t, r, i) { + var n = t; + n.context.pushBuffer(n), + n.setTransform(r.a, r.b, r.c, r.d, r.tx, r.ty), + this.renderNode(e, t, 0, 0, i), + n.context.$drawWebGL(), + n.onRenderFinish(), + n.context.popBuffer() + }, + a.prototype.drawDisplayToBuffer = function(e, t, r) { + t.context.pushBuffer(t), + r && t.setTransform(r.a, r.b, r.c, r.d, r.tx, r.ty); + var i; + i = e.$renderDirty ? e.$getRenderNode() : e.$renderNode; + var n = 0; + if (i) switch (n++, i.type) { + case 1: + this.renderBitmap(i, t); + break; + case 2: + this.renderText(i, t); + break; + case 3: + this.renderGraphics(i, t); + break; + case 4: + this.renderGroup(i, t); + break; + case 5: + this.renderMesh(i, t); + break; + case 6: + this.renderNormalBitmap(i, t) + } + var a = e.$children; + if (a) for (var o = a.length, + s = 0; o > s; s++) { + var l = a[s]; + switch (l.$renderMode) { + case 1: + break; + case 2: + n += this.drawWithFilter(l, t, 0, 0); + break; + case 3: + n += this.drawWithClip(l, t, 0, 0); + break; + case 4: + n += this.drawWithScrollRect(l, t, 0, 0); + break; + default: + n += this.drawDisplayObject(l, t, 0, 0) + } + } + return t.context.$drawWebGL(), + t.onRenderFinish(), + t.context.popBuffer(), + n + }, + a.prototype.renderNode = function(e, t, r, i, n) { + switch (t.$offsetX = r, t.$offsetY = i, e.type) { + case 1: + this.renderBitmap(e, t); + break; + case 2: + this.renderText(e, t); + break; + case 3: + this.renderGraphics(e, t, n); + break; + case 4: + this.renderGroup(e, t); + break; + case 5: + this.renderMesh(e, t); + break; + case 6: + this.renderNormalBitmap(e, t) + } + }, + a.prototype.renderNormalBitmap = function(e, t) { + var r = e.image; + r && t.context.drawImage(r, e.sourceX, e.sourceY, e.sourceW, e.sourceH, e.drawX, e.drawY, e.drawW, e.drawH, e.imageWidth, e.imageHeight, e.rotated, e.smoothing) + }, + a.prototype.renderBitmap = function(t, n) { + var a = t.image; + if (a) { + var o, s, l, c = t.drawData, + h = c.length, + u = 0, + d = t.matrix, + f = t.blendMode, + p = t.alpha; + if (d) { + o = e.Matrix.create(); + var v = n.globalMatrix; + o.a = v.a, + o.b = v.b, + o.c = v.c, + o.d = v.d, + o.tx = v.tx, + o.ty = v.ty, + s = n.$offsetX, + l = n.$offsetY, + n.useOffset(), + n.transform(d.a, d.b, d.c, d.d, d.tx, d.ty) + } + f && n.context.setGlobalCompositeOperation(r[f]); + var g; + if (p == p && (g = n.globalAlpha, n.globalAlpha *= p), t.filter) { + for (n.context.$filter = t.filter; h > u;) n.context.drawImage(a, c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], t.imageWidth, t.imageHeight, t.rotated, t.smoothing); + n.context.$filter = null + } else for (; h > u;) n.context.drawImage(a, c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], t.imageWidth, t.imageHeight, t.rotated, t.smoothing); + if (f && n.context.setGlobalCompositeOperation(i), p == p && (n.globalAlpha = g), d) { + var x = n.globalMatrix; + x.a = o.a, + x.b = o.b, + x.c = o.c, + x.d = o.d, + x.tx = o.tx, + x.ty = o.ty, + n.$offsetX = s, + n.$offsetY = l, + e.Matrix.release(o) + } + } + }, + a.prototype.renderMesh = function(t, n) { + var a, o, s, l = t.image, + c = t.drawData, + h = c.length, + u = 0, + d = t.matrix, + f = t.blendMode, + p = t.alpha; + if (d) { + a = e.Matrix.create(); + var v = n.globalMatrix; + a.a = v.a, + a.b = v.b, + a.c = v.c, + a.d = v.d, + a.tx = v.tx, + a.ty = v.ty, + o = n.$offsetX, + s = n.$offsetY, + n.useOffset(), + n.transform(d.a, d.b, d.c, d.d, d.tx, d.ty) + } + f && n.context.setGlobalCompositeOperation(r[f]); + var g; + if (p == p && (g = n.globalAlpha, n.globalAlpha *= p), t.filter) { + for (n.context.$filter = t.filter; h > u;) n.context.drawMesh(l, c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], t.imageWidth, t.imageHeight, t.uvs, t.vertices, t.indices, t.bounds, t.rotated, t.smoothing); + n.context.$filter = null + } else for (; h > u;) n.context.drawMesh(l, c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], c[u++], t.imageWidth, t.imageHeight, t.uvs, t.vertices, t.indices, t.bounds, t.rotated, t.smoothing); + if (f && n.context.setGlobalCompositeOperation(i), p == p && (n.globalAlpha = g), d) { + var x = n.globalMatrix; + x.a = a.a, + x.b = a.b, + x.c = a.c, + x.d = a.d, + x.tx = a.tx, + x.ty = a.ty, + n.$offsetX = o, + n.$offsetY = s, + e.Matrix.release(a) + } + }, + a.prototype.___renderText____ = function(r, i) { + var n = r.width - r.x, + a = r.height - r.y; + if (! (0 >= n || 0 >= a) && n && a && 0 !== r.drawData.length) { + var o = e.sys.DisplayList.$canvasScaleX, + s = e.sys.DisplayList.$canvasScaleY, + l = i.context.$maxTextureSize; + n * o > l && (o *= l / (n * o)), + a * s > l && (s *= l / (a * s)), + n *= o, + a *= s; + var c = r.x * o, + h = r.y * s; (r.$canvasScaleX !== o || r.$canvasScaleY !== s) && (r.$canvasScaleX = o, r.$canvasScaleY = s, r.dirtyRender = !0), + (c || h) && i.transform(1, 0, 0, 1, c / o, h / s), + r.dirtyRender && t.TextAtlasRender.analysisTextNodeAndFlushDrawLabel(r); + var u = r[t.property_drawLabel]; + if (u && u.length > 0) { + for (var d = i.$offsetX, + f = i.$offsetY, + p = null, + v = 0, + g = 0, + x = null, + m = null, + y = null, + b = 0, + w = u.length; w > b; ++b) { + p = u[b], + v = p.anchorX, + g = p.anchorY, + x = p.textBlocks, + i.$offsetX = d + v; + for (var T = 0, + E = x.length; E > T; ++T) m = x[T], + T > 0 && (i.$offsetX -= m.canvasWidthOffset), + i.$offsetY = f + g - (m.measureHeight + (m.stroke2 ? m.canvasHeightOffset: 0)) / 2, + y = m.line.page, + i.context.drawTexture(y.webGLTexture, m.u, m.v, m.contentWidth, m.contentHeight, 0, 0, m.contentWidth, m.contentHeight, y.pageWidth, y.pageHeight), + i.$offsetX += m.contentWidth - m.canvasWidthOffset + } + i.$offsetX = d, + i.$offsetY = f + } (c || h) && i.transform(1, 0, 0, 1, -c / o, -h / s), + r.dirtyRender = !1 + } + }, + a.prototype.renderText = function(r, i) { + if (t.textAtlasRenderEnable) return void this.___renderText____(r, i); + var n = r.width - r.x, + a = r.height - r.y; + if (! (0 >= n || 0 >= a) && n && a && 0 != r.drawData.length) { + var o = e.sys.DisplayList.$canvasScaleX, + s = e.sys.DisplayList.$canvasScaleY, + l = i.context.$maxTextureSize; + n * o > l && (o *= l / (n * o)), + a * s > l && (s *= l / (a * s)), + n *= o, + a *= s; + var c = r.x * o, + h = r.y * s; + if ((r.$canvasScaleX != o || r.$canvasScaleY != s) && (r.$canvasScaleX = o, r.$canvasScaleY = s, r.dirtyRender = !0), this.wxiOS10 ? (this.canvasRenderer || (this.canvasRenderer = new e.CanvasRenderer), r.dirtyRender && (this.canvasRenderBuffer = new t.CanvasRenderBuffer(n, a))) : this.canvasRenderBuffer && this.canvasRenderBuffer.context ? r.dirtyRender && this.canvasRenderBuffer.resize(n, a) : (this.canvasRenderer = new e.CanvasRenderer, this.canvasRenderBuffer = new t.CanvasRenderBuffer(n, a)), this.canvasRenderBuffer.context) { + if ((1 != o || 1 != s) && this.canvasRenderBuffer.context.setTransform(o, 0, 0, s, 0, 0), c || h ? (r.dirtyRender && this.canvasRenderBuffer.context.setTransform(o, 0, 0, s, -c, -h), i.transform(1, 0, 0, 1, c / o, h / s)) : (1 != o || 1 != s) && this.canvasRenderBuffer.context.setTransform(o, 0, 0, s, 0, 0), r.dirtyRender) { + var u = this.canvasRenderBuffer.surface; + if (this.canvasRenderer.renderText(r, this.canvasRenderBuffer.context), this.wxiOS10) u.isCanvas = !0, + r.$texture = u; + else { + var d = r.$texture; + d ? i.context.updateTexture(d, u) : (d = i.context.createTexture(u), r.$texture = d) + } + r.$textureWidth = u.width, + r.$textureHeight = u.height + } + var f = r.$textureWidth, + p = r.$textureHeight; + i.context.drawTexture(r.$texture, 0, 0, f, p, 0, 0, f / o, p / s, f, p), + (c || h) && (r.dirtyRender && this.canvasRenderBuffer.context.setTransform(o, 0, 0, s, 0, 0), i.transform(1, 0, 0, 1, -c / o, -h / s)), + r.dirtyRender = !1 + } + } + }, + a.prototype.renderGraphics = function(r, i, n) { + var a = r.width, + o = r.height; + if (! (0 >= a || 0 >= o) && a && o && 0 != r.drawData.length) { + var s = e.sys.DisplayList.$canvasScaleX, + l = e.sys.DisplayList.$canvasScaleY; (1 > a * s || 1 > o * l) && (s = l = 1), + (r.$canvasScaleX != s || r.$canvasScaleY != l) && (r.$canvasScaleX = s, r.$canvasScaleY = l, r.dirtyRender = !0), + a *= s, + o *= l; + var c = Math.ceil(a), + h = Math.ceil(o); + if (s *= c / a, l *= h / o, a = c, o = h, this.wxiOS10 ? (this.canvasRenderer || (this.canvasRenderer = new e.CanvasRenderer), r.dirtyRender && (this.canvasRenderBuffer = new t.CanvasRenderBuffer(a, o))) : this.canvasRenderBuffer && this.canvasRenderBuffer.context ? r.dirtyRender && this.canvasRenderBuffer.resize(a, o) : (this.canvasRenderer = new e.CanvasRenderer, this.canvasRenderBuffer = new t.CanvasRenderBuffer(a, o)), this.canvasRenderBuffer.context) { (1 != s || 1 != l) && this.canvasRenderBuffer.context.setTransform(s, 0, 0, l, 0, 0), + (r.x || r.y) && ((r.dirtyRender || n) && this.canvasRenderBuffer.context.translate( - r.x, -r.y), i.transform(1, 0, 0, 1, r.x, r.y)); + var u = this.canvasRenderBuffer.surface; + if (n) { + this.canvasRenderer.renderGraphics(r, this.canvasRenderBuffer.context, !0); + var d = void 0; + this.wxiOS10 ? (u.isCanvas = !0, d = u) : (e.WebGLUtils.deleteWebGLTexture(u), d = i.context.getWebGLTexture(u)), + i.context.drawTexture(d, 0, 0, a, o, 0, 0, a, o, u.width, u.height) + } else { + if (r.dirtyRender) { + if (this.canvasRenderer.renderGraphics(r, this.canvasRenderBuffer.context), this.wxiOS10) u.isCanvas = !0, + r.$texture = u; + else { + var d = r.$texture; + d ? i.context.updateTexture(d, u) : (d = i.context.createTexture(u), r.$texture = d) + } + r.$textureWidth = u.width, + r.$textureHeight = u.height + } + var f = r.$textureWidth, + p = r.$textureHeight; + i.context.drawTexture(r.$texture, 0, 0, f, p, 0, 0, f / s, p / l, f, p) + } (r.x || r.y) && ((r.dirtyRender || n) && this.canvasRenderBuffer.context.translate(r.x, r.y), i.transform(1, 0, 0, 1, -r.x, -r.y)), + n || (r.dirtyRender = !1) + } + } + }, + a.prototype.renderGroup = function(t, r) { + var i, n, a, o = t.matrix; + if (o) { + i = e.Matrix.create(); + var s = r.globalMatrix; + i.a = s.a, + i.b = s.b, + i.c = s.c, + i.d = s.d, + i.tx = s.tx, + i.ty = s.ty, + n = r.$offsetX, + a = r.$offsetY, + r.useOffset(), + r.transform(o.a, o.b, o.c, o.d, o.tx, o.ty) + } + for (var l = t.drawData, + c = l.length, + h = 0; c > h; h++) { + var u = l[h]; + this.renderNode(u, r, r.$offsetX, r.$offsetY) + } + if (o) { + var d = r.globalMatrix; + d.a = i.a, + d.b = i.b, + d.c = i.c, + d.d = i.d, + d.tx = i.tx, + d.ty = i.ty, + r.$offsetX = n, + r.$offsetY = a, + e.Matrix.release(i) + } + }, + a.prototype.createRenderBuffer = function(e, r) { + var i = n.pop(); + return i ? (i.resize(e, r), i.setTransform(1, 0, 0, 1, 0, 0)) : (i = new t.WebGLRenderBuffer(e, r), i.$computeDrawCall = !1), + i + }, + a.prototype.renderClear = function() { + var e = t.WebGLRenderContext.getInstance(), + r = e.context; + e.$beforeRender(); + var i = e.surface.width, + n = e.surface.height; + r.viewport(0, 0, i, n) + }, + a + } (); + t.WebGLRenderer = a, + __reflect(a.prototype, "egret.web.WebGLRenderer", ["egret.sys.SystemRenderer"]) + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + var r = function(e) { + function t(t, r, i, n, a, o, s, l) { + var c = e.call(this) || this; + return c._width = 0, + c._height = 0, + c._border = 0, + c.line = null, + c.x = 0, + c.y = 0, + c.u = 0, + c.v = 0, + c.tag = "", + c.measureWidth = 0, + c.measureHeight = 0, + c.canvasWidthOffset = 0, + c.canvasHeightOffset = 0, + c.stroke2 = 0, + c._width = t, + c._height = r, + c._border = l, + c.measureWidth = i, + c.measureHeight = n, + c.canvasWidthOffset = a, + c.canvasHeightOffset = o, + c.stroke2 = s, + c + } + return __extends(t, e), + Object.defineProperty(t.prototype, "border", { + get: function() { + return this._border + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "width", { + get: function() { + return this._width + 2 * this.border + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "height", { + get: function() { + return this._height + 2 * this.border + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "contentWidth", { + get: function() { + return this._width + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "contentHeight", { + get: function() { + return this._height + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "page", { + get: function() { + return this.line ? this.line.page: null + }, + enumerable: !0, + configurable: !0 + }), + t.prototype.updateUV = function() { + var e = this.line; + return e ? (this.u = e.x + this.x + 1 * this.border, this.v = e.y + this.y + 1 * this.border, !0) : !1 + }, + Object.defineProperty(t.prototype, "subImageOffsetX", { + get: function() { + var e = this.line; + return e ? e.x + this.x + this.border: 0 + }, + enumerable: !0, + configurable: !0 + }), + Object.defineProperty(t.prototype, "subImageOffsetY", { + get: function() { + var e = this.line; + return e ? e.y + this.y + this.border: 0 + }, + enumerable: !0, + configurable: !0 + }), + t + } (e.HashObject); + t.TextBlock = r, + __reflect(r.prototype, "egret.web.TextBlock"); + var i = function(e) { + function t(t) { + var r = e.call(this) || this; + return r.page = null, + r.textBlocks = [], + r.dynamicMaxHeight = 0, + r.maxWidth = 0, + r.x = 0, + r.y = 0, + r.maxWidth = t, + r + } + return __extends(t, e), + t.prototype.isCapacityOf = function(e) { + if (!e) return ! 1; + var t = 0, + r = 0, + i = this.lastTextBlock(); + return i && (t = i.x + i.width, r = i.y), + t + e.width > this.maxWidth ? !1 : this.dynamicMaxHeight > 0 && (e.height > this.dynamicMaxHeight || e.height / this.dynamicMaxHeight < .5) ? !1 : !0 + }, + t.prototype.lastTextBlock = function() { + var e = this.textBlocks; + return e.length > 0 ? e[e.length - 1] : null + }, + t.prototype.addTextBlock = function(e, t) { + if (!e) return ! 1; + if (t && !this.isCapacityOf(e)) return ! 1; + var r = 0, + i = 0, + n = this.lastTextBlock(); + return n && (r = n.x + n.width, i = n.y), + e.x = r, + e.y = i, + e.line = this, + this.textBlocks.push(e), + this.dynamicMaxHeight = Math.max(this.dynamicMaxHeight, e.height), + !0 + }, + t + } (e.HashObject); + t.Line = i, + __reflect(i.prototype, "egret.web.Line"); + var n = function(e) { + function t(t, r) { + var i = e.call(this) || this; + return i.lines = [], + i.pageWidth = 0, + i.pageHeight = 0, + i.webGLTexture = null, + i.pageWidth = t, + i.pageHeight = r, + i + } + return __extends(t, e), + t.prototype.addLine = function(e) { + if (!e) return ! 1; + var t = 0, + r = 0, + i = this.lines; + if (i.length > 0) { + var n = i[i.length - 1]; + t = n.x, + r = n.y + n.dynamicMaxHeight + } + return e.maxWidth > this.pageWidth ? (console.error("line.maxWidth = " + e.maxWidth + ", this.pageWidth = " + this.pageWidth), !1) : r + e.dynamicMaxHeight > this.pageHeight ? !1 : (e.x = t, e.y = r, e.page = this, this.lines.push(e), !0) + }, + t + } (e.HashObject); + t.Page = n, + __reflect(n.prototype, "egret.web.Page"); + var a = function(e) { + function t(t, r) { + var i = e.call(this) || this; + return i._pages = [], + i._sortLines = [], + i._maxSize = 1024, + i._border = 1, + i._maxSize = t, + i._border = r, + i + } + return __extends(t, e), + t.prototype.addTextBlock = function(e) { + var t = this._addTextBlock(e); + if (!t) return ! 1; + e.updateUV(); + for (var r = !1, + i = t, + n = this._sortLines, + a = 0, + o = n; a < o.length; a++) { + var s = o[a]; + if (s === i[1]) { + r = !0; + break + } + } + return r || n.push(i[1]), + this.sort(), + !0 + }, + t.prototype._addTextBlock = function(e) { + if (!e) return null; + if (e.width > this._maxSize || e.height > this._maxSize) return null; + for (var t = this._sortLines, + r = 0, + n = t.length; n > r; ++r) { + var a = t[r]; + if (a.isCapacityOf(e) && a.addTextBlock(e, !1)) return [a.page, a] + } + var o = new i(this._maxSize); + if (!o.addTextBlock(e, !0)) return console.error("_addTextBlock !newLine.addTextBlock(textBlock, true)"), + null; + for (var s = this._pages, + r = 0, + l = s.length; l > r; ++r) { + var c = s[r]; + if (c.addLine(o)) return [c, o] + } + var h = this.createPage(this._maxSize, this._maxSize); + return h.addLine(o) ? [h, o] : (console.error("_addText newPage.addLine failed"), null) + }, + t.prototype.createPage = function(e, t) { + var r = new n(e, t); + return this._pages.push(r), + r + }, + t.prototype.sort = function() { + if (! (this._sortLines.length <= 1)) { + var e = function(e, t) { + return e.dynamicMaxHeight < t.dynamicMaxHeight ? -1 : 1 + }; + this._sortLines = this._sortLines.sort(e) + } + }, + t.prototype.createTextBlock = function(e, t, i, n, a, o, s, l) { + var c = new r(t, i, n, a, o, s, l, this._border); + return this.addTextBlock(c) ? (c.tag = e, c) : null + }, + t + } (e.HashObject); + t.Book = a, + __reflect(a.prototype, "egret.web.Book") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(t) { + t.textAtlasRenderEnable = !1, + t.__textAtlasRender__ = null, + t.property_drawLabel = "DrawLabel"; + var r = !1, + i = function(e) { + function t() { + var t = null !== e && e.apply(this, arguments) || this; + return t.anchorX = 0, + t.anchorY = 0, + t.textBlocks = [], + t + } + return __extends(t, e), + t.prototype.clear = function() { + this.anchorX = 0, + this.anchorY = 0, + this.textBlocks.length = 0 + }, + t.create = function() { + var e = t.pool; + return 0 === e.length && e.push(new t), + e.pop() + }, + t.back = function(e, r) { + if (e) { + var i = t.pool; + if (r && i.indexOf(e) >= 0) return void console.error("DrawLabel.back repeat"); + e.clear(), + i.push(e) + } + }, + t.pool = [], + t + } (e.HashObject); + t.DrawLabel = i, + __reflect(i.prototype, "egret.web.DrawLabel"); + var n = function(t) { + function i(i, n) { + var a = t.call(this) || this; + a.format = null; + var o = 0; + r && (o = i.textColor, i.textColor = 16711680), + a.textColor = i.textColor, + a.strokeColor = i.strokeColor, + a.size = i.size, + a.stroke = i.stroke, + a.bold = i.bold, + a.italic = i.italic, + a.fontFamily = i.fontFamily, + a.format = n, + a.font = e.getFontString(i, a.format); + var s = n.textColor ? n.textColor: i.textColor, + l = n.strokeColor ? n.strokeColor: i.strokeColor, + c = n.stroke ? n.stroke: i.stroke, + h = n.size ? n.size: i.size; + return a.description = "" + a.font + "-" + h, + a.description += "-" + e.toColorString(s), + a.description += "-" + e.toColorString(l), + c && (a.description += "-" + 2 * c), + r && (i.textColor = o), + a + } + return __extends(i, t), + i + } (e.HashObject); + __reflect(n.prototype, "StyleInfo"); + var a = function(t) { + function r() { + var e = null !== t && t.apply(this, arguments) || this; + return e["char"] = "", + e.styleInfo = null, + e.hashCodeString = "", + e.charWithStyleHashCode = 0, + e.measureWidth = 0, + e.measureHeight = 0, + e.canvasWidthOffset = 0, + e.canvasHeightOffset = 0, + e.stroke2 = 0, + e + } + return __extends(r, t), + r.prototype.reset = function(t, r) { + return this["char"] = t, + this.styleInfo = r, + this.hashCodeString = t + ":" + r.description, + this.charWithStyleHashCode = e.NumberUtils.convertStringToHashCode(this.hashCodeString), + this.canvasWidthOffset = 0, + this.canvasHeightOffset = 0, + this.stroke2 = 0, + this + }, + r.prototype.measureAndDraw = function(t) { + var r = t; + if (r) { + var i = this["char"], + n = this.styleInfo.format, + a = n.textColor ? n.textColor: this.styleInfo.textColor, + o = n.strokeColor ? n.strokeColor: this.styleInfo.strokeColor, + s = n.stroke ? n.stroke: this.styleInfo.stroke, + l = n.size ? n.size: this.styleInfo.size; + this.measureWidth = this.measure(i, this.styleInfo, l), + this.measureHeight = l; + var c = this.measureWidth, + h = this.measureHeight, + u = 2 * s; + u > 0 && (c += 2 * u, h += 2 * u), + this.stroke2 = u, + r.width = c = Math.ceil(c) + 4, + r.height = h = Math.ceil(h) + 4, + this.canvasWidthOffset = (r.width - this.measureWidth) / 2, + this.canvasHeightOffset = (r.height - this.measureHeight) / 2; + var d = 3, + f = Math.pow(10, d); + this.canvasWidthOffset = Math.floor(this.canvasWidthOffset * f) / f, + this.canvasHeightOffset = Math.floor(this.canvasHeightOffset * f) / f; + var p = e.sys.getContext2d(r); + p.save(), + p.textAlign = "center", + p.textBaseline = "middle", + p.lineJoin = "round", + p.font = this.styleInfo.font, + p.fillStyle = e.toColorString(a), + p.strokeStyle = e.toColorString(o), + p.clearRect(0, 0, r.width, r.height), + s && (p.lineWidth = 2 * s, p.strokeText(i, r.width / 2, r.height / 2)), + p.fillText(i, r.width / 2, r.height / 2), + p.restore() + } + }, + r.prototype.measure = function(t, i, n) { + var a = r.chineseCharactersRegExp.test(t); + if (a && r.chineseCharacterMeasureFastMap[i.font]) return r.chineseCharacterMeasureFastMap[i.font]; + var o = e.sys.measureText(t, i.fontFamily, n || i.size, i.bold, i.italic); + return a && (r.chineseCharacterMeasureFastMap[i.font] = o), + o + }, + r.chineseCharactersRegExp = new RegExp("^[一-龥]$"), + r.chineseCharacterMeasureFastMap = {}, + r + } (e.HashObject); + __reflect(a.prototype, "CharImageRender"); + var o = function(o) { + function s(e, r, i) { + var n = o.call(this) || this; + return n.book = null, + n.charImageRender = new a, + n.textBlockMap = {}, + n._canvas = null, + n.textAtlasTextureCache = [], + n.webglRenderContext = null, + n.webglRenderContext = e, + n.book = new t.Book(r, i), + n + } + return __extends(s, o), + s.analysisTextNodeAndFlushDrawLabel = function(a) { + if (a) { + if (!t.__textAtlasRender__) { + var o = e.web.WebGLRenderContext.getInstance(0, 0); + t.__textAtlasRender__ = new s(o, 512, r ? 12 : 1) + } + a[t.property_drawLabel] = a[t.property_drawLabel] || []; + for (var l = a[t.property_drawLabel], c = 0, h = l; c < h.length; c++) { + var u = h[c]; + i.back(u, !1) + } + l.length = 0; + for (var d = 4, + f = a.drawData, + p = 0, + v = 0, + g = "", + x = {}, + m = [], y = 0, b = f.length; b > y; y += d) { + p = f[y + 0], + v = f[y + 1], + g = f[y + 2], + x = f[y + 3] || {}, + m.length = 0, + t.__textAtlasRender__.convertLabelStringToTextAtlas(g, new n(a, x), m); + var u = i.create(); + u.anchorX = p, + u.anchorY = v, + u.textBlocks = [].concat(m), + l.push(u) + } + } + }, + s.prototype.convertLabelStringToTextAtlas = function(t, i, n) { + for (var a = this.canvas, + o = this.charImageRender, + s = this.textBlockMap, + l = 0, + c = t; l < c.length; l++) { + var h = c[l]; + if (o.reset(h, i), s[o.charWithStyleHashCode]) n.push(s[o.charWithStyleHashCode]); + else { + o.measureAndDraw(a); + var u = this.book.createTextBlock(h, a.width, a.height, o.measureWidth, o.measureHeight, o.canvasWidthOffset, o.canvasHeightOffset, o.stroke2); + if (u) { + n.push(u), + s[o.charWithStyleHashCode] = u; + var d = u.page; + d.webGLTexture || (d.webGLTexture = this.createTextTextureAtlas(d.pageWidth, d.pageHeight, r)); + var f = this.webglRenderContext.context; + d.webGLTexture[e.glContext] = f, + f.bindTexture(f.TEXTURE_2D, d.webGLTexture), + f.pixelStorei(f.UNPACK_PREMULTIPLY_ALPHA_WEBGL, !0), + d.webGLTexture[e.UNPACK_PREMULTIPLY_ALPHA_WEBGL] = !0, + f.texSubImage2D(f.TEXTURE_2D, 0, u.subImageOffsetX, u.subImageOffsetY, f.RGBA, f.UNSIGNED_BYTE, a), + f.pixelStorei(f.UNPACK_PREMULTIPLY_ALPHA_WEBGL, !1) + } + } + } + }, + s.prototype.createTextTextureAtlas = function(t, r, i) { + var n = null; + if (i) { + var a = e.sys.createCanvas(t, t), + o = e.sys.getContext2d(a); + o.fillStyle = "black", + o.fillRect(0, 0, t, t), + n = e.sys.createTexture(this.webglRenderContext, a) + } else n = e.sys._createTexture(this.webglRenderContext, t, r, null); + return n && this.textAtlasTextureCache.push(n), + n + }, + Object.defineProperty(s.prototype, "canvas", { + get: function() { + return this._canvas || (this._canvas = e.sys.createCanvas(24, 24)), + this._canvas + }, + enumerable: !0, + configurable: !0 + }), + s + } (e.HashObject); + t.TextAtlasRender = o, + __reflect(o.prototype, "egret.web.TextAtlasRender") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + var t = function() { + function e(e, t, r) { + this.gl = e, + this.name = r.name, + this.type = r.type, + this.size = r.size, + this.location = e.getAttribLocation(t, this.name), + this.count = 0, + this.initCount(e), + this.format = e.FLOAT, + this.initFormat(e) + } + return e.prototype.initCount = function(e) { + var t = this.type; + switch (t) { + case 5126: + case 5120: + case 5121: + case 5123: + this.count = 1; + break; + case 35664: + this.count = 2; + break; + case 35665: + this.count = 3; + break; + case 35666: + this.count = 4 + } + }, + e.prototype.initFormat = function(e) { + var t = this.type; + switch (t) { + case 5126: + case 35664: + case 35665: + case 35666: + this.format = e.FLOAT; + break; + case 5121: + this.format = e.UNSIGNED_BYTE; + break; + case 5123: + this.format = e.UNSIGNED_SHORT; + break; + case 5120: + this.format = e.BYTE + } + }, + e + } (); + e.EgretWebGLAttribute = t, + __reflect(t.prototype, "egret.web.EgretWebGLAttribute") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + function t(e, t, r) { + var i = e.createShader(t); + e.shaderSource(i, r), + e.compileShader(i); + var n = e.getShaderParameter(i, e.COMPILE_STATUS); + return n || (console.log("shader not compiled!"), console.log(e.getShaderInfoLog(i))), + i + } + function r(e, t, r) { + var i = e.createProgram(); + return e.attachShader(i, t), + e.attachShader(i, r), + e.linkProgram(i), + i + } + function i(t, r) { + for (var i = {}, + n = t.getProgramParameter(r, t.ACTIVE_ATTRIBUTES), a = 0; n > a; a++) { + var o = t.getActiveAttrib(r, a), + s = o.name, + l = new e.EgretWebGLAttribute(t, r, o); + i[s] = l + } + return i + } + function n(t, r) { + for (var i = {}, + n = t.getProgramParameter(r, t.ACTIVE_UNIFORMS), a = 0; n > a; a++) { + var o = t.getActiveUniform(r, a), + s = o.name, + l = new e.EgretWebGLUniform(t, r, o); + i[s] = l + } + return i + } + var a = function() { + function e(e, a, o) { + this.vshaderSource = a, + this.fshaderSource = o, + this.vertexShader = t(e, e.VERTEX_SHADER, this.vshaderSource), + this.fragmentShader = t(e, e.FRAGMENT_SHADER, this.fshaderSource), + this.id = r(e, this.vertexShader, this.fragmentShader), + this.uniforms = n(e, this.id), + this.attributes = i(e, this.id) + } + return e.getProgram = function(t, r, i, n) { + return this.programCache[n] || (this.programCache[n] = new e(t, r, i)), + this.programCache[n] + }, + e.deleteProgram = function(e, t, r, i) {}, + e.programCache = {}, + e + } (); + e.EgretWebGLProgram = a, + __reflect(a.prototype, "egret.web.EgretWebGLProgram") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + var t = function() { + function e(e, t, r) { + this.gl = e, + this.name = r.name, + this.type = r.type, + this.size = r.size, + this.location = e.getUniformLocation(t, this.name), + this.setDefaultValue(), + this.generateSetValue(), + this.generateUpload() + } + return e.prototype.setDefaultValue = function() { + var e = this.type; + switch (e) { + case 5126: + case 35678: + case 35680: + case 35670: + case 5124: + this.value = 0; + break; + case 35664: + case 35671: + case 35667: + this.value = [0, 0]; + break; + case 35665: + case 35672: + case 35668: + this.value = [0, 0, 0]; + break; + case 35666: + case 35673: + case 35669: + this.value = [0, 0, 0, 0]; + break; + case 35674: + this.value = new Float32Array([1, 0, 0, 1]); + break; + case 35675: + this.value = new Float32Array([1, 0, 0, 0, 1, 0, 0, 0, 1]); + break; + case 35676: + this.value = new Float32Array([1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]) + } + }, + e.prototype.generateSetValue = function() { + var e = this.type; + switch (e) { + case 5126: + case 35678: + case 35680: + case 35670: + case 5124: + this.setValue = function(e) { + var t = this.value !== e; + this.value = e, + t && this.upload() + }; + break; + case 35664: + case 35671: + case 35667: + this.setValue = function(e) { + var t = this.value[0] !== e.x || this.value[1] !== e.y; + this.value[0] = e.x, + this.value[1] = e.y, + t && this.upload() + }; + break; + case 35665: + case 35672: + case 35668: + this.setValue = function(e) { + this.value[0] = e.x, + this.value[1] = e.y, + this.value[2] = e.z, + this.upload() + }; + break; + case 35666: + case 35673: + case 35669: + this.setValue = function(e) { + this.value[0] = e.x, + this.value[1] = e.y, + this.value[2] = e.z, + this.value[3] = e.w, + this.upload() + }; + break; + case 35674: + case 35675: + case 35676: + this.setValue = function(e) { + this.value.set(e), + this.upload() + } + } + }, + e.prototype.generateUpload = function() { + var e = this.gl, + t = this.type, + r = this.location; + switch (t) { + case 5126: + this.upload = function() { + var t = this.value; + e.uniform1f(r, t) + }; + break; + case 35664: + this.upload = function() { + var t = this.value; + e.uniform2f(r, t[0], t[1]) + }; + break; + case 35665: + this.upload = function() { + var t = this.value; + e.uniform3f(r, t[0], t[1], t[2]) + }; + break; + case 35666: + this.upload = function() { + var t = this.value; + e.uniform4f(r, t[0], t[1], t[2], t[3]) + }; + break; + case 35678: + case 35680: + case 35670: + case 5124: + this.upload = function() { + var t = this.value; + e.uniform1i(r, t) + }; + break; + case 35671: + case 35667: + this.upload = function() { + var t = this.value; + e.uniform2i(r, t[0], t[1]) + }; + break; + case 35672: + case 35668: + this.upload = function() { + var t = this.value; + e.uniform3i(r, t[0], t[1], t[2]) + }; + break; + case 35673: + case 35669: + this.upload = function() { + var t = this.value; + e.uniform4i(r, t[0], t[1], t[2], t[3]) + }; + break; + case 35674: + this.upload = function() { + var t = this.value; + e.uniformMatrix2fv(r, !1, t) + }; + break; + case 35675: + this.upload = function() { + var t = this.value; + e.uniformMatrix3fv(r, !1, t) + }; + break; + case 35676: + this.upload = function() { + var t = this.value; + e.uniformMatrix4fv(r, !1, t) + } + } + }, + e + } (); + e.EgretWebGLUniform = t, + __reflect(t.prototype, "egret.web.EgretWebGLUniform") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); +var egret; ! +function(e) { + var t; ! + function(e) { + var t = function() { + function e() {} + return e.blur_frag = "precision mediump float;\r\nuniform vec2 blur;\r\nuniform sampler2D uSampler;\r\nvarying vec2 vTextureCoord;\r\nuniform vec2 uTextureSize;\r\nvoid main()\r\n{\r\n const int sampleRadius = 5;\r\n const int samples = sampleRadius * 2 + 1;\r\n vec2 blurUv = blur / uTextureSize;\r\n vec4 color = vec4(0, 0, 0, 0);\r\n vec2 uv = vec2(0.0, 0.0);\r\n blurUv /= float(sampleRadius);\r\n\r\n for (int i = -sampleRadius; i <= sampleRadius; i++) {\r\n uv.x = vTextureCoord.x + float(i) * blurUv.x;\r\n uv.y = vTextureCoord.y + float(i) * blurUv.y;\r\n color += texture2D(uSampler, uv);\r\n }\r\n\r\n color /= float(samples);\r\n gl_FragColor = color;\r\n}", + e.colorTransform_frag = "precision mediump float;\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\nuniform mat4 matrix;\r\nuniform vec4 colorAdd;\r\nuniform sampler2D uSampler;\r\n\r\nvoid main(void) {\r\n vec4 texColor = texture2D(uSampler, vTextureCoord);\r\n if(texColor.a > 0.) {\r\n // 抵消预乘的alpha通道\r\n texColor = vec4(texColor.rgb / texColor.a, texColor.a);\r\n }\r\n vec4 locColor = clamp(texColor * matrix + colorAdd, 0., 1.);\r\n gl_FragColor = vColor * vec4(locColor.rgb * locColor.a, locColor.a);\r\n}", + e.default_vert = "attribute vec2 aVertexPosition;\r\nattribute vec2 aTextureCoord;\r\nattribute vec4 aColor;\r\n\r\nuniform vec2 projectionVector;\r\n// uniform vec2 offsetVector;\r\n\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\n\r\nconst vec2 center = vec2(-1.0, 1.0);\r\n\r\nvoid main(void) {\r\n gl_Position = vec4( (aVertexPosition / projectionVector) + center , 0.0, 1.0);\r\n vTextureCoord = aTextureCoord;\r\n vColor = aColor;\r\n}", + e.glow_frag = "precision highp float;\r\nvarying vec2 vTextureCoord;\r\n\r\nuniform sampler2D uSampler;\r\n\r\nuniform float dist;\r\nuniform float angle;\r\nuniform vec4 color;\r\nuniform float alpha;\r\nuniform float blurX;\r\nuniform float blurY;\r\n// uniform vec4 quality;\r\nuniform float strength;\r\nuniform float inner;\r\nuniform float knockout;\r\nuniform float hideObject;\r\n\r\nuniform vec2 uTextureSize;\r\n\r\nfloat random(vec2 scale)\r\n{\r\n return fract(sin(dot(gl_FragCoord.xy, scale)) * 43758.5453);\r\n}\r\n\r\nvoid main(void) {\r\n vec2 px = vec2(1.0 / uTextureSize.x, 1.0 / uTextureSize.y);\r\n // TODO 自动调节采样次数?\r\n const float linearSamplingTimes = 7.0;\r\n const float circleSamplingTimes = 12.0;\r\n vec4 ownColor = texture2D(uSampler, vTextureCoord);\r\n vec4 curColor;\r\n float totalAlpha = 0.0;\r\n float maxTotalAlpha = 0.0;\r\n float curDistanceX = 0.0;\r\n float curDistanceY = 0.0;\r\n float offsetX = dist * cos(angle) * px.x;\r\n float offsetY = dist * sin(angle) * px.y;\r\n\r\n const float PI = 3.14159265358979323846264;\r\n float cosAngle;\r\n float sinAngle;\r\n float offset = PI * 2.0 / circleSamplingTimes * random(vec2(12.9898, 78.233));\r\n float stepX = blurX * px.x / linearSamplingTimes;\r\n float stepY = blurY * px.y / linearSamplingTimes;\r\n for (float a = 0.0; a <= PI * 2.0; a += PI * 2.0 / circleSamplingTimes) {\r\n cosAngle = cos(a + offset);\r\n sinAngle = sin(a + offset);\r\n for (float i = 1.0; i <= linearSamplingTimes; i++) {\r\n curDistanceX = i * stepX * cosAngle;\r\n curDistanceY = i * stepY * sinAngle;\r\n if (vTextureCoord.x + curDistanceX - offsetX >= 0.0 && vTextureCoord.y + curDistanceY + offsetY <= 1.0){\r\n curColor = texture2D(uSampler, vec2(vTextureCoord.x + curDistanceX - offsetX, vTextureCoord.y + curDistanceY + offsetY));\r\n totalAlpha += (linearSamplingTimes - i) * curColor.a;\r\n }\r\n maxTotalAlpha += (linearSamplingTimes - i);\r\n }\r\n }\r\n\r\n ownColor.a = max(ownColor.a, 0.0001);\r\n ownColor.rgb = ownColor.rgb / ownColor.a;\r\n\r\n float outerGlowAlpha = (totalAlpha / maxTotalAlpha) * strength * alpha * (1. - inner) * max(min(hideObject, knockout), 1. - ownColor.a);\r\n float innerGlowAlpha = ((maxTotalAlpha - totalAlpha) / maxTotalAlpha) * strength * alpha * inner * ownColor.a;\r\n\r\n ownColor.a = max(ownColor.a * knockout * (1. - hideObject), 0.0001);\r\n vec3 mix1 = mix(ownColor.rgb, color.rgb, innerGlowAlpha / (innerGlowAlpha + ownColor.a));\r\n vec3 mix2 = mix(mix1, color.rgb, outerGlowAlpha / (innerGlowAlpha + ownColor.a + outerGlowAlpha));\r\n float resultAlpha = min(ownColor.a + outerGlowAlpha + innerGlowAlpha, 1.);\r\n gl_FragColor = vec4(mix2 * resultAlpha, resultAlpha);\r\n}", + e.primitive_frag = "precision lowp float;\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\n\r\nvoid main(void) {\r\n gl_FragColor = vColor;\r\n}", + e.texture_frag = "precision lowp float;\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\nuniform sampler2D uSampler;\r\n\r\nvoid main(void) {\r\n gl_FragColor = texture2D(uSampler, vTextureCoord) * vColor;\r\n}", + e.texture_etc_alphamask_frag = "precision lowp float;\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\nuniform sampler2D uSampler;\r\nuniform sampler2D uSamplerAlphaMask;\r\nvoid main(void) {\r\nfloat alpha = texture2D(uSamplerAlphaMask, vTextureCoord).r;\r\nif (alpha < 0.0039) { discard; }\r\nvec4 v4Color = texture2D(uSampler, vTextureCoord);\r\nv4Color.rgb = v4Color.rgb * alpha;\r\nv4Color.a = alpha;\r\ngl_FragColor = v4Color * vColor;\r\n}", + e.colorTransform_frag_etc_alphamask_frag = "precision mediump float;\r\nvarying vec2 vTextureCoord;\r\nvarying vec4 vColor;\r\nuniform mat4 matrix;\r\nuniform vec4 colorAdd;\r\nuniform sampler2D uSampler;\r\nuniform sampler2D uSamplerAlphaMask;\r\n\r\nvoid main(void){\r\nfloat alpha = texture2D(uSamplerAlphaMask, vTextureCoord).r;\r\nif (alpha < 0.0039) { discard; }\r\nvec4 texColor = texture2D(uSampler, vTextureCoord);\r\nif(texColor.a > 0.0) {\r\n // 抵消预乘的alpha通道\r\ntexColor = vec4(texColor.rgb / texColor.a, texColor.a);\r\n}\r\nvec4 v4Color = clamp(texColor * matrix + colorAdd, 0.0, 1.0);\r\nv4Color.rgb = v4Color.rgb * alpha;\r\nv4Color.a = alpha;\r\ngl_FragColor = v4Color * vColor;\r\n}", + e + } (); + e.EgretShaderLib = t, + __reflect(t.prototype, "egret.web.EgretShaderLib") + } (t = e.web || (e.web = {})) +} (egret || (egret = {})); \ No newline at end of file diff --git a/js/eui.min_493403ce.js b/js/eui.min_493403ce.js new file mode 100644 index 0000000..e140177 --- /dev/null +++ b/js/eui.min_493403ce.js @@ -0,0 +1,7 @@ +var __reflect=this&&this.__reflect||function(t,e,i){t.__class__=e,i?i.push(e):i=[e],t.__types__=t.__types__?i.concat(t.__types__):i},__extends=this&&this.__extends||function(t,e){function i(){this.constructor=t}for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);i.prototype=e.prototype,t.prototype=new i},eui;!function(t){var e;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.targetLevel=Number.POSITIVE_INFINITY,e.invalidatePropertiesFlag=!1,e.invalidateClientPropertiesFlag=!1,e.invalidatePropertiesQueue=new i,e.invalidateSizeFlag=!1,e.invalidateClientSizeFlag=!1,e.invalidateSizeQueue=new i,e.invalidateDisplayListFlag=!1,e.invalidateDisplayListQueue=new i,e.eventDisplay=new egret.Bitmap,e.listenersAttached=!1,e}return __extends(e,t),e.prototype.invalidateProperties=function(t){this.invalidatePropertiesFlag||(this.invalidatePropertiesFlag=!0,this.listenersAttached||this.attachListeners()),this.targetLevel<=t.$nestLevel&&(this.invalidateClientPropertiesFlag=!0),this.invalidatePropertiesQueue.insert(t)},e.prototype.validateProperties=function(){for(var t=this.invalidatePropertiesQueue,e=t.shift();e;)e.$stage&&e.validateProperties(),e=t.shift();t.isEmpty()&&(this.invalidatePropertiesFlag=!1)},e.prototype.invalidateSize=function(t){this.invalidateSizeFlag||(this.invalidateSizeFlag=!0,this.listenersAttached||this.attachListeners()),this.targetLevel<=t.$nestLevel&&(this.invalidateClientSizeFlag=!0),this.invalidateSizeQueue.insert(t)},e.prototype.validateSize=function(){for(var t=this.invalidateSizeQueue,e=t.pop();e;)e.$stage&&e.validateSize(),e=t.pop();t.isEmpty()&&(this.invalidateSizeFlag=!1)},e.prototype.invalidateDisplayList=function(t){this.invalidateDisplayListFlag||(this.invalidateDisplayListFlag=!0,this.listenersAttached||this.attachListeners()),this.invalidateDisplayListQueue.insert(t)},e.prototype.validateDisplayList=function(){for(var t=this.invalidateDisplayListQueue,e=t.shift();e;)e.$stage&&e.validateDisplayList(),e=t.shift();t.isEmpty()&&(this.invalidateDisplayListFlag=!1)},e.prototype.attachListeners=function(){this.eventDisplay.addEventListener(egret.Event.ENTER_FRAME,this.doPhasedInstantiationCallBack,this),this.eventDisplay.addEventListener(egret.Event.RENDER,this.doPhasedInstantiationCallBack,this),egret.sys.$invalidateRenderFlag=!0,this.listenersAttached=!0},e.prototype.doPhasedInstantiationCallBack=function(t){this.eventDisplay.removeEventListener(egret.Event.ENTER_FRAME,this.doPhasedInstantiationCallBack,this),this.eventDisplay.removeEventListener(egret.Event.RENDER,this.doPhasedInstantiationCallBack,this),this.doPhasedInstantiation()},e.prototype.doPhasedInstantiation=function(){this.invalidatePropertiesFlag&&this.validateProperties(),this.invalidateSizeFlag&&this.validateSize(),this.invalidateDisplayListFlag&&this.validateDisplayList(),this.invalidatePropertiesFlag||this.invalidateSizeFlag||this.invalidateDisplayListFlag?this.attachListeners():this.listenersAttached=!1},e.prototype.validateClient=function(t){var e,i=!1,n=this.targetLevel;this.targetLevel===Number.POSITIVE_INFINITY&&(this.targetLevel=t.$nestLevel);for(var r=this.invalidatePropertiesQueue,o=this.invalidateSizeQueue,s=this.invalidateDisplayListQueue;!i;){for(i=!0,e=r.removeSmallestChild(t);e;)e.$stage&&e.validateProperties(),e=r.removeSmallestChild(t);for(r.isEmpty()&&(this.invalidatePropertiesFlag=!1),this.invalidateClientPropertiesFlag=!1,e=o.removeLargestChild(t);e;){if(e.$stage&&e.validateSize(),this.invalidateClientPropertiesFlag&&(e=r.removeSmallestChild(t))){r.insert(e),i=!1;break}e=o.removeLargestChild(t)}for(o.isEmpty()&&(this.invalidateSizeFlag=!1),this.invalidateClientPropertiesFlag=!1,this.invalidateClientSizeFlag=!1,e=s.removeSmallestChild(t);e;){if(e.$stage&&e.validateDisplayList(),this.invalidateClientPropertiesFlag&&(e=r.removeSmallestChild(t))){r.insert(e),i=!1;break}if(this.invalidateClientSizeFlag&&(e=o.removeLargestChild(t))){o.insert(e),i=!1;break}e=s.removeSmallestChild(t)}s.isEmpty()&&(this.invalidateDisplayListFlag=!1)}n===Number.POSITIVE_INFINITY&&(this.targetLevel=Number.POSITIVE_INFINITY)},e}(egret.EventDispatcher);t.Validator=e,__reflect(e.prototype,"eui.sys.Validator");var i=function(){function t(){this.depthBins={},this.minDepth=0,this.maxDepth=-1}return t.prototype.insert=function(t){var e=t.$nestLevel;this.maxDepththis.maxDepth&&(this.maxDepth=e));var i=this.depthBins[e];i||(i=this.depthBins[e]=new n),i.insert(t)},t.prototype.pop=function(){var t,e=this.minDepth;if(e<=this.maxDepth){for(var i=this.depthBins[this.maxDepth];!i||0===i.length;){if(this.maxDepth--,this.maxDepthe)return null;i=this.depthBins[this.minDepth]}for(t=i.pop();!(i&&0!=i.length||(this.minDepth++,this.minDepth>e));)i=this.depthBins[this.minDepth]}return t},t.prototype.removeLargestChild=function(t){for(var e=t.$hashCode,i=t.$nestLevel,n=this.maxDepth,r=i;n>=r;){var o=this.depthBins[n];if(o&&o.length>0){if(n===i){if(o.map[e])return o.remove(t),t}else{if(!egret.is(t,"egret.DisplayObjectContainer"))break;for(var s=o.items,a=o.length,h=0;a>h;h++){var l=s[h];if(t.contains(l))return o.remove(l),l}}n--}else if(n==this.maxDepth&&this.maxDepth--,n--,r>n)break}return null},t.prototype.removeSmallestChild=function(t){for(var e=t.$nestLevel,i=e,n=this.maxDepth,r=t.$hashCode;n>=i;){var o=this.depthBins[i];if(o&&o.length>0){if(i===e){if(o.map[r])return o.remove(t),t}else{if(!egret.is(t,"egret.DisplayObjectContainer"))break;for(var s=o.items,a=o.length,h=0;a>h;h++){var l=s[h];if(t.contains(l))return o.remove(l),l}}i++}else if(i==this.minDepth&&this.minDepth++,i++,i>n)break}return null},t.prototype.isEmpty=function(){return this.minDepth>this.maxDepth},t}();__reflect(i.prototype,"DepthQueue");var n=function(){function t(){this.map={},this.items=[],this.length=0}return t.prototype.insert=function(t){var e=t.$hashCode;this.map[e]||(this.map[e]=!0,this.length++,this.items.push(t))},t.prototype.pop=function(){var t=this.items.pop();return t&&(this.length--,0===this.length?this.map={}:this.map[t.$hashCode]=!1),t},t.prototype.remove=function(t){var e=this.items.indexOf(t);e>=0&&(this.items.splice(e,1),this.length--,0===this.length?this.map={}:this.map[t.$hashCode]=!1)},t}();__reflect(n.prototype,"DepthBin")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){function e(t,e,i,n){var r=t.prototype;r.__meta__=r.__meta__||{},r.__meta__[e]=i,n&&(r.__defaultProperty__=e)}t.registerProperty=e}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(t,i){void 0===i&&(i=[]);var n=e.call(this)||this;return n.name=t,n.overrides=i,n}return __extends(i,e),i.prototype.initialize=function(e,i){for(var n=this.overrides,r=n.length,o=0;r>o;o++){var s=n[o];if(s instanceof t.AddItems){var a=e[s.target];a&&a instanceof t.Image&&!a.$parent&&(i.addChild(a),i.removeChild(a))}}},i}(egret.HashObject);t.State=e,__reflect(e.prototype,"eui.State")}(eui||(eui={})),function(t){var e;!function(t){var e=function(){function t(){}return Object.defineProperty(t.prototype,"states",{get:function(){return this.$stateValues.states},set:function(t){t||(t=[]);var e=this.$stateValues;e.states=t;for(var i={},n=t.length,r=0;n>r;r++){var o=t[r];i[o.name]=o}e.statesMap=i,e.parent&&this.commitCurrentState()},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"currentState",{get:function(){return this.$stateValues.currentState},set:function(t){var e=this.$stateValues;e.explicitState=t,e.currentState=t,this.commitCurrentState()},enumerable:!0,configurable:!0}),t.prototype.commitCurrentState=function(){var t=this.$stateValues;if(t.parent){var e=t.statesMap[t.currentState];if(!e){if(!(t.states.length>0))return;t.currentState=t.states[0].name}if(t.oldState!=t.currentState){var i=t.parent,n=t.statesMap[t.oldState];if(n)for(var r=n.overrides,o=r.length,s=0;o>s;s++)r[s].remove(this,i);if(t.oldState=t.currentState,n=t.statesMap[t.currentState])for(var r=n.overrides,a=r.length,s=0;a>s;s++)r[s].apply(this,i)}}},t.prototype.hasState=function(t){return!!this.$stateValues.statesMap[t]},t.prototype.initializeStates=function(t){this.$stateValues.intialized=!0;for(var e=this.states,i=e.length,n=0;i>n;n++)e[n].initialize(this,t)},t}();t.StateClient=e,__reflect(e.prototype,"eui.sys.StateClient");var i=function(){function t(){this.intialized=!1,this.statesMap={},this.states=[],this.oldState=null,this.explicitState=null,this.currentState=null,this.parent=null,this.stateIsDirty=!1}return t}();t.StateValues=i,__reflect(i.prototype,"eui.sys.StateValues")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){function e(e,i,n){var r=egret.getImplementation("eui.IAssetAdapter");r||(r=new t.DefaultAssetAdapter),r.getAsset(e,function(t){i.call(n,t)},this)}function i(e,i){var n=egret.getImplementation("eui.IThemeAdapter");n||(n=new t.DefaultThemeAdapter),n.getTheme(e,function(t){i(t)},function(t){console.log(t)},this)}t.getAssets=e,t.getTheme=i}(eui||(eui={})),function(t){var e;!function(e){function i(t){return 1===t.a&&0===t.b&&0===t.c&&1===t.d}function n(t,e){if("function"!=typeof t[e])return!1;var i=t[e].toString(),n=i.indexOf("{"),r=i.lastIndexOf("}");return i=i.substring(n+1,r),""==i.trim()}function r(t,e){for(var i in e)"prototype"!=i&&e.hasOwnProperty(i)&&(t[i]=e[i]);for(var r=t.prototype,o=e.prototype,s=Object.keys(o),a=s.length,h=0;a>h;h++){var l=s[h];if("__meta__"!=l&&(!r.hasOwnProperty(l)||n(r,l))){var u=Object.getOwnPropertyDescriptor(o,l);Object.defineProperty(r,l,u)}}}function o(e,i,n){r(e,h);var o=e.prototype;o.$super=i.prototype,t.registerProperty(e,"left","Percentage"),t.registerProperty(e,"right","Percentage"),t.registerProperty(e,"top","Percentage"),t.registerProperty(e,"bottom","Percentage"),t.registerProperty(e,"horizontalCenter","Percentage"),t.registerProperty(e,"verticalCenter","Percentage"),n&&(o.$childAdded=function(t,e){this.invalidateSize(),this.invalidateDisplayList()},o.$childRemoved=function(t,e){this.invalidateSize(),this.invalidateDisplayList()})}var s="eui.UIComponent",a=new e.Validator,h=function(n){function r(){var t=n.call(this)||this;return t.initializeUIValues(),t}return __extends(r,n),r.prototype.initializeUIValues=function(){this.$UIComponent={0:0/0,1:0/0,2:0/0,3:0/0,4:0/0,5:0/0,6:0/0,7:0/0,8:0/0,9:0/0,10:0,11:0,12:0,13:1e5,14:0,15:1e5,16:0,17:0,18:0/0,19:0/0,20:0,21:0,22:0,23:0,24:!0,25:!0,26:!0,27:!1,28:!1,29:!1},this.$includeInLayout=!0,this.$touchEnabled=!0},r.prototype.createChildren=function(){},r.prototype.childrenCreated=function(){},r.prototype.commitProperties=function(){var e=this.$UIComponent;(e[22]!=e[10]||e[23]!=e[11])&&(this.dispatchEventWith(egret.Event.RESIZE),e[22]=e[10],e[23]=e[11]),(e[20]!=this.$getX()||e[21]!=this.$getY())&&(t.UIEvent.dispatchUIEvent(this,t.UIEvent.MOVE),e[20]=this.$getX(),e[21]=this.$getY())},r.prototype.measure=function(){},r.prototype.updateDisplayList=function(t,e){},Object.defineProperty(r.prototype,"includeInLayout",{get:function(){return this.$includeInLayout},set:function(t){t=!!t,this.$includeInLayout!==t&&(this.$includeInLayout=!0,this.invalidateParentLayout(),this.$includeInLayout=t)},enumerable:!0,configurable:!0}),r.prototype.$onAddToStage=function(e,i){this.$super.$onAddToStage.call(this,e,i),this.checkInvalidateFlag();var n=this.$UIComponent;n[29]||(n[29]=!0,this.createChildren(),this.childrenCreated(),t.UIEvent.dispatchUIEvent(this,t.UIEvent.CREATION_COMPLETE))},r.prototype.checkInvalidateFlag=function(t){var e=this.$UIComponent;e[24]&&a.invalidateProperties(this),e[25]&&a.invalidateSize(this),e[26]&&a.invalidateDisplayList(this)},Object.defineProperty(r.prototype,"left",{get:function(){return this.$UIComponent[0]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[0]!==t&&(e[0]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"right",{get:function(){return this.$UIComponent[1]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[1]!==t&&(e[1]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"top",{get:function(){return this.$UIComponent[2]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[2]!==t&&(e[2]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"bottom",{get:function(){return this.$UIComponent[3]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[3]!=t&&(e[3]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"horizontalCenter",{get:function(){return this.$UIComponent[4]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[4]!==t&&(e[4]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"verticalCenter",{get:function(){return this.$UIComponent[5]},set:function(t){t=t&&"number"!=typeof t?t.toString().trim():+t;var e=this.$UIComponent;e[5]!==t&&(e[5]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"percentWidth",{get:function(){return this.$UIComponent[6]},set:function(t){t=+t;var e=this.$UIComponent;e[6]!==t&&(e[6]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"percentHeight",{get:function(){return this.$UIComponent[7]},set:function(t){t=+t;var e=this.$UIComponent;e[7]!==t&&(e[7]=t,this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"explicitWidth",{get:function(){return this.$UIComponent[8]},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"explicitHeight",{get:function(){return this.$UIComponent[9]},enumerable:!0,configurable:!0}),r.prototype.$getWidth=function(){return this.validateSizeNow(),this.$UIComponent[10]},r.prototype.$setWidth=function(t){t=+t;var e=this.$UIComponent;return 0>t||e[10]===t&&e[8]===t?!1:(e[8]=t,isNaN(t)&&this.invalidateSize(),this.invalidateProperties(),this.invalidateDisplayList(),this.invalidateParentLayout(),!0)},r.prototype.validateSizeNow=function(){this.validateSize(!0),this.updateFinalSize()},r.prototype.$getHeight=function(){return this.validateSizeNow(),this.$UIComponent[11]},r.prototype.$setHeight=function(t){t=+t;var e=this.$UIComponent;return 0>t||e[11]===t&&e[9]===t?!1:(e[9]=t,isNaN(t)&&this.invalidateSize(),this.invalidateProperties(),this.invalidateDisplayList(),this.invalidateParentLayout(),!0)},Object.defineProperty(r.prototype,"minWidth",{get:function(){return this.$UIComponent[12]},set:function(t){t=+t||0;var e=this.$UIComponent;0>t||e[12]===t||(e[12]=t,this.invalidateSize(),this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"maxWidth",{get:function(){return this.$UIComponent[13]},set:function(t){t=+t||0;var e=this.$UIComponent;0>t||e[13]===t||(e[13]=t,this.invalidateSize(),this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"minHeight",{get:function(){return this.$UIComponent[14]},set:function(t){t=+t||0;var e=this.$UIComponent;0>t||e[14]===t||(e[14]=t,this.invalidateSize(),this.invalidateParentLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"maxHeight",{get:function(){return this.$UIComponent[15]},set:function(t){t=+t||0;var e=this.$UIComponent;0>t||e[15]===t||(e[15]=t,this.invalidateSize(),this.invalidateParentLayout())},enumerable:!0,configurable:!0}),r.prototype.setMeasuredSize=function(t,e){var i=this.$UIComponent;i[16]=Math.ceil(+t||0),i[17]=Math.ceil(+e||0)},r.prototype.setActualSize=function(t,e){var i=!1,n=this.$UIComponent;n[10]!==t&&(n[10]=t,i=!0),n[11]!==e&&(n[11]=e,i=!0),i&&(this.invalidateDisplayList(),this.dispatchEventWith(egret.Event.RESIZE))},r.prototype.$updateUseTransform=function(){this.$super.$updateUseTransform.call(this),this.invalidateParentLayout()},r.prototype.$setMatrix=function(t,e){return void 0===e&&(e=!0),this.$super.$setMatrix.call(this,t,e),this.invalidateParentLayout(),!0},r.prototype.$setAnchorOffsetX=function(t){return this.$super.$setAnchorOffsetX.call(this,t),this.invalidateParentLayout(),!0},r.prototype.$setAnchorOffsetY=function(t){return this.$super.$setAnchorOffsetY.call(this,t),this.invalidateParentLayout(),!0},r.prototype.$setX=function(t){var e=this.$super.$setX.call(this,t);return e&&(this.invalidateParentLayout(),this.invalidateProperties()),e},r.prototype.$setY=function(t){var e=this.$super.$setY.call(this,t);return e&&(this.invalidateParentLayout(),this.invalidateProperties()),e},r.prototype.invalidateProperties=function(){var t=this.$UIComponent;t[24]||(t[24]=!0,this.$stage&&a.invalidateProperties(this))},r.prototype.validateProperties=function(){var t=this.$UIComponent;t[24]&&(this.commitProperties(),t[24]=!1)},r.prototype.invalidateSize=function(){var t=this.$UIComponent;t[25]||(t[25]=!0,this.$stage&&a.invalidateSize(this))},r.prototype.validateSize=function(t){if(t){var e=this.$children;if(e)for(var i=e.length,n=0;i>n;n++){var r=e[n];egret.is(r,s)&&r.validateSize(!0)}}var o=this.$UIComponent;if(o[25]){var a=this.measureSizes();a&&(this.invalidateDisplayList(),this.invalidateParentLayout()),o[25]=!1}},r.prototype.measureSizes=function(){var t=!1,e=this.$UIComponent;if(!e[25])return t;(isNaN(e[8])||isNaN(e[9]))&&(this.measure(),e[16]e[13]&&(e[16]=e[13]),e[17]e[15]&&(e[17]=e[15]));var i=this.getPreferredUWidth(),n=this.getPreferredUHeight();return(i!==e[18]||n!==e[19])&&(e[18]=i,e[19]=n,t=!0),t},r.prototype.invalidateDisplayList=function(){var t=this.$UIComponent;t[26]||(t[26]=!0,this.$stage&&a.invalidateDisplayList(this))},r.prototype.validateDisplayList=function(){var t=this.$UIComponent;t[26]&&(this.updateFinalSize(),this.updateDisplayList(t[10],t[11]),t[26]=!1)},r.prototype.updateFinalSize=function(){var t=0,e=0,i=this.$UIComponent;t=i[27]?i[10]:isNaN(i[8])?i[16]:i[8],e=i[28]?i[11]:isNaN(i[9])?i[17]:i[9],this.setActualSize(t,e)},r.prototype.validateNow=function(){this.$stage&&a.validateClient(this)},r.prototype.invalidateParentLayout=function(){var t=this.$parent;t&&this.$includeInLayout&&egret.is(t,s)&&(t.invalidateSize(),t.invalidateDisplayList())},r.prototype.setLayoutBoundsSize=function(t,n){if(n=+n,t=+t,!(0>n||0>t)){var r,o,s=this.$UIComponent,a=s[13],h=s[15],l=Math.min(s[12],a),u=Math.min(s[14],h);isNaN(t)?(s[27]=!1,r=this.getPreferredUWidth()):(s[27]=!0,r=Math.max(l,Math.min(a,t))),isNaN(n)?(s[28]=!1,o=this.getPreferredUHeight()):(s[28]=!0,o=Math.max(u,Math.min(h,n)));var p=this.getAnchorMatrix();if(i(p))return void this.setActualSize(r,o);var c=e.MatrixUtil.fitBounds(t,n,p,s[8],s[9],this.getPreferredUWidth(),this.getPreferredUHeight(),l,u,a,h);c||(c=egret.Point.create(l,u)),this.setActualSize(c.x,c.y),egret.Point.release(c)}},r.prototype.setLayoutBoundsPosition=function(e,n){var r=this.$getMatrix();if(!i(r)||0!=this.anchorOffsetX||0!=this.anchorOffsetY){var o=egret.$TempRectangle;this.getLayoutBounds(o),e+=this.$getX()-o.x,n+=this.$getY()-o.y}var s=this.$super.$setX.call(this,e);(this.$super.$setY.call(this,n)||s)&&t.UIEvent.dispatchUIEvent(this,t.UIEvent.MOVE)},r.prototype.getLayoutBounds=function(t){var e,i=this.$UIComponent;e=i[27]?i[10]:isNaN(i[8])?i[16]:i[8];var n;n=i[28]?i[11]:isNaN(i[9])?i[17]:i[9],this.applyMatrix(t,e,n)},r.prototype.getPreferredUWidth=function(){var t=this.$UIComponent;return isNaN(t[8])?t[16]:t[8]},r.prototype.getPreferredUHeight=function(){var t=this.$UIComponent;return isNaN(t[9])?t[17]:t[9]},r.prototype.getPreferredBounds=function(t){var e=this.getPreferredUWidth(),i=this.getPreferredUHeight();this.applyMatrix(t,e,i)},r.prototype.applyMatrix=function(t,e,n){t.setTo(0,0,e,n);var r=this.getAnchorMatrix();i(r)?(t.x+=r.tx,t.y+=r.ty):r.$transformBounds(t)},r.prototype.getAnchorMatrix=function(){var t=this.$getMatrix(),e=this.anchorOffsetX,i=this.anchorOffsetY;if(0!=e||0!=i){var n=egret.$TempMatrix;return t.$preMultiplyInto(n.setTo(1,0,0,1,-e,-i),n),n}return t},r}(egret.DisplayObject);e.UIComponentImpl=h,__reflect(h.prototype,"eui.sys.UIComponentImpl",["eui.UIComponent","egret.DisplayObject"]),e.mixin=r,e.implementUIComponent=o}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i.$layout=null,i.$stateValues=new t.sys.StateValues,i.initializeUIValues(),i.$Group={0:0,1:0,2:0,3:0,4:!1,5:!1},i.$stateValues.parent=i,i}return __extends(i,e),Object.defineProperty(i.prototype,"elementsContent",{set:function(t){if(t)for(var e=t.length,i=0;e>i;i++)this.addChild(t[i])},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"layout",{get:function(){return this.$layout},set:function(t){this.$setLayout(t)},enumerable:!0,configurable:!0}),i.prototype.$setLayout=function(t){return this.$layout==t?!1:(this.$layout&&(this.$layout.target=null),this.$layout=t,t&&(t.target=this),this.invalidateSize(),this.invalidateDisplayList(),!0)},Object.defineProperty(i.prototype,"contentWidth",{get:function(){return this.$Group[0]},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"contentHeight",{get:function(){return this.$Group[1]},enumerable:!0,configurable:!0}),i.prototype.setContentSize=function(e,i){e=Math.ceil(+e||0),i=Math.ceil(+i||0);var n=this.$Group,r=n[0]!==e,o=n[1]!==i;(r||o)&&(n[0]=e,n[1]=i,r&&t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"contentWidth"),o&&t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"contentHeight"))},Object.defineProperty(i.prototype,"scrollEnabled",{get:function(){return this.$Group[4]},set:function(t){t=!!t;var e=this.$Group;t!==e[4]&&(e[4]=t,this.updateScrollRect())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"scrollH",{get:function(){return this.$Group[2]},set:function(e){e=+e||0;var i=this.$Group;e!==i[2]&&(i[2]=e,this.updateScrollRect()&&this.$layout&&this.$layout.scrollPositionChanged(),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"scrollH"))},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"scrollV",{get:function(){return this.$Group[3]},set:function(e){e=+e||0;var i=this.$Group;e!=i[3]&&(i[3]=e,this.updateScrollRect()&&this.$layout&&this.$layout.scrollPositionChanged(),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"scrollV"))},enumerable:!0,configurable:!0}),i.prototype.updateScrollRect=function(){var t=this.$Group,e=t[4];if(e){var i=this.$UIComponent;this.scrollRect=egret.$TempRectangle.setTo(t[2],t[3],i[10],i[11])}else this.$scrollRect&&(this.scrollRect=null);return e},Object.defineProperty(i.prototype,"numElements",{get:function(){return this.$children.length},enumerable:!0,configurable:!0}),i.prototype.getElementAt=function(t){return this.$children[t]},i.prototype.getVirtualElementAt=function(t){return this.getElementAt(t)},i.prototype.setVirtualElementIndicesInView=function(t,e){},Object.defineProperty(i.prototype,"touchThrough",{get:function(){return this.$Group[5]},set:function(t){this.$Group[5]=!!t},enumerable:!0,configurable:!0}),i.prototype.$hitTest=function(t,i){var n=e.prototype.$hitTest.call(this,t,i);if(n||this.$Group[5])return n;if(!this.$visible||!this.touchEnabled||0===this.scaleX||0===this.scaleY||0===this.width||0===this.height)return null;var r=this.globalToLocal(t,i,egret.$TempPoint),o=this.$UIComponent,s=egret.$TempRectangle.setTo(0,0,o[10],o[11]),a=this.$scrollRect;return a&&(s.x=a.x,s.y=a.y),s.contains(r.x,r.y)?this:null},i.prototype.invalidateState=function(){var t=this.$stateValues;t.stateIsDirty||(t.stateIsDirty=!0,this.invalidateProperties())},i.prototype.getCurrentState=function(){return""},i.prototype.createChildren=function(){this.$layout||this.$setLayout(new t.BasicLayout),this.initializeStates(this.$stage)},i.prototype.childrenCreated=function(){},i.prototype.commitProperties=function(){t.sys.UIComponentImpl.prototype.commitProperties.call(this);var e=this.$stateValues;e.stateIsDirty&&(e.stateIsDirty=!1,e.explicitState||(e.currentState=this.getCurrentState(),this.commitCurrentState()))},i.prototype.measure=function(){return this.$layout?void this.$layout.measure():void this.setMeasuredSize(0,0)},i.prototype.updateDisplayList=function(t,e){this.$layout&&this.$layout.updateDisplayList(t,e),this.updateScrollRect()},i.prototype.invalidateParentLayout=function(){},i.prototype.setMeasuredSize=function(t,e){},i.prototype.invalidateProperties=function(){},i.prototype.validateProperties=function(){},i.prototype.invalidateSize=function(){},i.prototype.validateSize=function(t){},i.prototype.invalidateDisplayList=function(){},i.prototype.validateDisplayList=function(){},i.prototype.validateNow=function(){},i.prototype.setLayoutBoundsSize=function(t,e){},i.prototype.setLayoutBoundsPosition=function(t,e){},i.prototype.getLayoutBounds=function(t){},i.prototype.getPreferredBounds=function(t){},i}(egret.DisplayObjectContainer);t.Group=e,__reflect(e.prototype,"eui.Group",["eui.IViewport","eui.UIComponent","egret.DisplayObject"]),t.sys.implementUIComponent(e,egret.DisplayObjectContainer,!0),t.sys.mixin(e,t.sys.StateClient),t.registerProperty(e,"elementsContent","Array",!0),t.registerProperty(e,"states","State[]")}(eui||(eui={}));var eui;!function(t){function e(t,e){if(t.hasOwnProperty(i))t[i].push(e);else{var n=[e];t[i]&&(n=t[i].concat(n)),t[i]=n}}var i="__bindables__";t.registerBindable=e}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.initializeUIValues(),t.$Component={0:null,1:null,2:"",3:!0,4:!1,5:!1,6:!0,7:!0,8:null},t.$touchEnabled=!0,t}return __extends(i,e),Object.defineProperty(i.prototype,"hostComponentKey",{get:function(){return this.$Component[0]},set:function(t){this.$Component[0]=t},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"skinName",{get:function(){return this.$Component[1]},set:function(t){var e=this.$Component;if(e[5]=!0,e[1]!=t){if(t)e[1]=t;else{var i=egret.getImplementation("eui.Theme");if(i){var n=i.getSkinName(this);n&&(e[1]=n)}}this.$parseSkinName()}},enumerable:!0,configurable:!0}),i.prototype.$parseSkinName=function(){var t,e=this.skinName;if(e)if(e.prototype)t=new e;else if("string"==typeof e){var i=void 0,n=e.trim();if("<"==n.charAt(0))i=EXML.parse(n);else if(i=egret.getDefinitionByName(e),!i&&-1!=n.toLowerCase().indexOf(".exml"))return void EXML.load(e,this.onExmlLoaded,this,!0);i&&(t=new i)}else t=e;this.setSkin(t)},i.prototype.onExmlLoaded=function(t,e){if(this.skinName==e){var i=new t;this.setSkin(i)}},Object.defineProperty(i.prototype,"skin",{get:function(){return this.$Component[8]},enumerable:!0,configurable:!0}),i.prototype.setSkin=function(e){!e||e instanceof t.Skin||(e=null);var i=this.$Component,n=i[8];if(n){for(var r=n.skinParts,o=r.length,s=0;o>s;s++){var a=r[s];this[a]&&this.setSkinPart(a,null)}var h=n.$elementsContent;if(h){o=h.length;for(var s=0;o>s;s++){var l=h[s];l.$parent==this&&this.removeChild(l)}}n.hostComponent=null}if(i[8]=e,e){for(var r=e.skinParts,u=r.length,s=0;u>s;s++){var a=r[s],p=e[a];p&&this.setSkinPart(a,p)}var h=e.$elementsContent;if(h)for(var s=h.length-1;s>=0;s--)this.addChildAt(h[s],0);e.hostComponent=this}this.invalidateSize(),this.invalidateDisplayList(),this.dispatchEventWith(egret.Event.COMPLETE)},i.prototype.setSkinPart=function(t,e){var i=this[t];i&&this.partRemoved(t,i),this[t]=e,e&&this.partAdded(t,e)},i.prototype.partAdded=function(t,e){},i.prototype.partRemoved=function(t,e){},i.prototype.$setTouchChildren=function(t){t=!!t;var i=this.$Component;return i[6]=t,i[3]?(i[6]=t,e.prototype.$setTouchChildren.call(this,t)):!0},i.prototype.$setTouchEnabled=function(t){t=!!t;var i=this.$Component;i[7]=t,i[3]&&e.prototype.$setTouchEnabled.call(this,t)},Object.defineProperty(i.prototype,"enabled",{get:function(){return this.$Component[3]},set:function(t){t=!!t,this.$setEnabled(t)},enumerable:!0,configurable:!0}),i.prototype.$setEnabled=function(t){var e=this.$Component;return t===e[3]?!1:(e[3]=t,t?(this.$touchEnabled=e[7],this.$touchChildren=e[6]):(this.$touchEnabled=!1,this.$touchChildren=!1),this.invalidateState(),!0)},Object.defineProperty(i.prototype,"currentState",{get:function(){var t=this.$Component;return t[2]?t[2]:this.getCurrentState()},set:function(t){var e=this.$Component;t!=e[2]&&(e[2]=t,this.invalidateState())},enumerable:!0,configurable:!0}),i.prototype.invalidateState=function(){var t=this.$Component;t[4]||(t[4]=!0,this.invalidateProperties())},i.prototype.getCurrentState=function(){return""},i.prototype.createChildren=function(){var t=this.$Component;if(!t[1]){var e=egret.getImplementation("eui.Theme");if(e){var i=e.getSkinName(this);i&&(t[1]=i,this.$parseSkinName())}}},i.prototype.childrenCreated=function(){},i.prototype.commitProperties=function(){t.sys.UIComponentImpl.prototype.commitProperties.call(this);var e=this.$Component;e[4]&&(e[4]=!1,e[8]&&(e[8].currentState=this.currentState))},i.prototype.measure=function(){t.sys.measure(this);var e=this.$Component[8];if(e){var i=this.$UIComponent;isNaN(e.width)?(i[16]e.maxWidth&&(i[16]=e.maxWidth)):i[16]=e.width,isNaN(e.height)?(i[17]e.maxHeight&&(i[17]=e.maxHeight)):i[17]=e.height}},i.prototype.updateDisplayList=function(e,i){t.sys.updateDisplayList(this,e,i)},i.prototype.invalidateParentLayout=function(){},i.prototype.setMeasuredSize=function(t,e){},i.prototype.invalidateProperties=function(){},i.prototype.validateProperties=function(){},i.prototype.invalidateSize=function(){},i.prototype.validateSize=function(t){},i.prototype.invalidateDisplayList=function(){},i.prototype.validateDisplayList=function(){},i.prototype.validateNow=function(){},i.prototype.setLayoutBoundsSize=function(t,e){},i.prototype.setLayoutBoundsPosition=function(t,e){},i.prototype.getLayoutBounds=function(t){},i.prototype.getPreferredBounds=function(t){},i}(egret.DisplayObjectContainer);t.Component=e,__reflect(e.prototype,"eui.Component",["eui.UIComponent","egret.DisplayObject"]),t.registerProperty(e,"skinName","Class"),t.sys.implementUIComponent(e,egret.DisplayObjectContainer,!0)}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.$dataProviderChanged=!1,t.$dataProvider=null,t.$indexToRenderer=[],t.$DataGroup={0:!0,1:!1,2:{},3:{},4:!1,5:!1,6:null,7:null,8:!1,9:null,10:!1,11:!1,12:null,13:null,14:!1},t}return __extends(i,e),Object.defineProperty(i.prototype,"useVirtualLayout",{get:function(){return this.$layout?this.$layout.$useVirtualLayout:this.$DataGroup[0]},set:function(t){t=!!t;var e=this.$DataGroup;t!==e[0]&&(e[0]=t,this.$layout&&(this.$layout.useVirtualLayout=t))},enumerable:!0,configurable:!0}),i.prototype.$setLayout=function(t){if(t==this.$layout)return!1;this.$layout&&(this.$layout.setTypicalSize(0,0),this.$layout.removeEventListener("useVirtualLayoutChanged",this.onUseVirtualLayoutChanged,this)),this.$layout&&t&&this.$layout.$useVirtualLayout!=t.$useVirtualLayout&&this.onUseVirtualLayoutChanged();var i=e.prototype.$setLayout.call(this,t);if(t){var n=this.$DataGroup[9];n&&t.setTypicalSize(n.width,n.height),t.useVirtualLayout=this.$DataGroup[0],t.addEventListener("useVirtualLayoutChanged",this.onUseVirtualLayoutChanged,this)}return i},i.prototype.onUseVirtualLayoutChanged=function(t){var e=this.$DataGroup;e[1]=!0,e[10]=!0,this.removeDataProviderListener(),this.invalidateProperties()},i.prototype.setVirtualElementIndicesInView=function(t,e){if(this.$layout&&this.$layout.$useVirtualLayout)for(var i=this.$indexToRenderer,n=Object.keys(i),r=n.length,o=0;r>o;o++){var s=+n[o]; +(t>s||s>e)&&this.freeRendererByIndex(s)}},i.prototype.getElementAt=function(t){return this.$indexToRenderer[t]},i.prototype.getVirtualElementAt=function(t){if(t=0|+t,0>t||t>=this.$dataProvider.length)return null;var e=this.$indexToRenderer[t];if(!e){var i=this.$dataProvider.getItemAt(t);e=this.createVirtualRenderer(i),this.$indexToRenderer[t]=e,this.updateRenderer(e,t,i);var n=this.$DataGroup;n[4]&&(e.validateNow(),n[4]=!1,this.rendererAdded(e,t,i))}return e},i.prototype.freeRendererByIndex=function(t){var e=this.$indexToRenderer[t];e&&(delete this.$indexToRenderer[t],this.doFreeRenderer(e))},i.prototype.doFreeRenderer=function(t){var e=this.$DataGroup,i=e[2][t.$hashCode],n=i.$hashCode;e[3][n]||(e[3][n]=[]),e[3][n].push(t),t.visible=!1},i.prototype.invalidateSize=function(){this.$DataGroup[4]||e.prototype.invalidateSize.call(this)},i.prototype.createVirtualRenderer=function(t){var e,i=this.itemToRendererClass(t),n=i.$hashCode,r=this.$DataGroup,o=r[3];return o[n]&&o[n].length>0?(e=o[n].pop(),e.visible=!0,this.invalidateDisplayList(),e):(r[4]=!0,this.createOneRenderer(i))},i.prototype.createOneRenderer=function(t){var e=new t,i=this.$DataGroup;return i[2][e.$hashCode]=t,egret.is(e,"eui.IItemRenderer")?(i[13]&&this.setItemRenderSkinName(e,i[13]),this.addChild(e),e):null},i.prototype.setItemRenderSkinName=function(e,i){if(e&&e instanceof t.Component){var n=e;n.$Component[5]||(n.skinName=i,n.$Component[5]=!1)}},Object.defineProperty(i.prototype,"dataProvider",{get:function(){return this.$dataProvider},set:function(t){this.$setDataProvider(t)},enumerable:!0,configurable:!0}),i.prototype.$setDataProvider=function(t){return this.$dataProvider==t||t&&!t.getItemAt?!1:(this.removeDataProviderListener(),this.$dataProvider=t,this.$dataProviderChanged=!0,this.$DataGroup[10]=!0,this.invalidateProperties(),this.invalidateSize(),this.invalidateDisplayList(),!0)},i.prototype.removeDataProviderListener=function(){this.$dataProvider&&this.$dataProvider.removeEventListener(t.CollectionEvent.COLLECTION_CHANGE,this.onCollectionChange,this)},i.prototype.onCollectionChange=function(e){switch(e.kind){case t.CollectionEventKind.ADD:this.itemAddedHandler(e.items,e.location);break;case t.CollectionEventKind.REMOVE:this.itemRemovedHandler(e.items,e.location);break;case t.CollectionEventKind.UPDATE:case t.CollectionEventKind.REPLACE:this.itemUpdatedHandler(e.items[0],e.location);break;case t.CollectionEventKind.RESET:case t.CollectionEventKind.REFRESH:if(this.$layout&&this.$layout.$useVirtualLayout)for(var i=this.$indexToRenderer,n=Object.keys(i),r=n.length,o=r-1;o>=0;o--){var s=+n[o];this.freeRendererByIndex(s)}this.$dataProviderChanged=!0,this.invalidateProperties();break;default:egret.$warn(2204,e.kind)}this.invalidateSize(),this.invalidateDisplayList()},i.prototype.itemAddedHandler=function(t,e){for(var i=t.length,n=0;i>n;n++)this.itemAdded(t[n],e+n);this.resetRenderersIndices()},i.prototype.itemRemovedHandler=function(t,e){for(var i=t.length,n=i-1;n>=0;n--)this.itemRemoved(t[n],e+n);this.resetRenderersIndices()},i.prototype.itemAdded=function(t,e){if(this.$layout&&this.$layout.elementAdded(e),this.$layout&&this.$layout.$useVirtualLayout)return void this.$indexToRenderer.splice(e,0,null);var i=this.createVirtualRenderer(t);if(this.$indexToRenderer.splice(e,0,i),i){this.updateRenderer(i,e,t);var n=this.$DataGroup;n[4]&&(n[4]=!1,this.rendererAdded(i,e,t))}},i.prototype.itemRemoved=function(t,e){this.$layout&&this.$layout.elementRemoved(e);var i=this.$indexToRenderer[e];this.$indexToRenderer.length>e&&this.$indexToRenderer.splice(e,1),i&&(this.$layout&&this.$layout.$useVirtualLayout?this.doFreeRenderer(i):(this.rendererRemoved(i,e,t),this.removeChild(i)))},i.prototype.resetRenderersIndices=function(){var t=this.$indexToRenderer;if(0!=t.length)if(this.$layout&&this.$layout.$useVirtualLayout)for(var e=Object.keys(t),i=e.length,n=0;i>n;n++){var r=+e[n];this.resetRendererItemIndex(r)}else for(var o=t.length,r=0;o>r;r++)this.resetRendererItemIndex(r)},i.prototype.itemUpdatedHandler=function(t,e){if(!this.$DataGroup[11]){var i=this.$indexToRenderer[e];i&&this.updateRenderer(i,e,t)}},i.prototype.resetRendererItemIndex=function(t){var e=this.$indexToRenderer[t];e&&(e.itemIndex=t)},Object.defineProperty(i.prototype,"itemRenderer",{get:function(){return this.$DataGroup[6]},set:function(t){var e=this.$DataGroup;e[6]!=t&&(e[6]=t,e[5]=!0,e[8]=!0,e[10]=!0,this.removeDataProviderListener(),this.invalidateProperties())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"itemRendererSkinName",{get:function(){return this.$DataGroup[13]},set:function(t){var e=this.$DataGroup;e[13]!=t&&(e[13]=t,this.$UIComponent[29]&&(e[14]=!0,this.invalidateProperties()))},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"itemRendererFunction",{get:function(){return this.$DataGroup[7]},set:function(t){var e=this.$DataGroup;e[7]!=t&&(e[7]=t,e[5]=!0,e[8]=!0,this.removeDataProviderListener(),this.invalidateProperties())},enumerable:!0,configurable:!0}),i.prototype.itemToRendererClass=function(e){var i,n=this.$DataGroup;return n[7]&&(i=n[7](e)),i||(i=n[6]),i||(i=t.ItemRenderer),i.$hashCode||(i.$hashCode=egret.$hashCount++),i},i.prototype.createChildren=function(){if(!this.$layout){var i=new t.VerticalLayout;i.gap=0,i.horizontalAlign=t.JustifyAlign.CONTENT_JUSTIFY,this.$setLayout(i)}e.prototype.createChildren.call(this)},i.prototype.commitProperties=function(){var i=this.$DataGroup;if((i[5]||this.$dataProviderChanged||i[1])&&(this.removeAllRenderers(),this.$layout&&this.$layout.clearVirtualLayoutCache(),this.setTypicalLayoutRect(null),i[1]=!1,i[5]=!1,this.$dataProvider&&this.$dataProvider.addEventListener(t.CollectionEvent.COLLECTION_CHANGE,this.onCollectionChange,this),this.$layout&&this.$layout.$useVirtualLayout?(this.invalidateSize(),this.invalidateDisplayList()):this.createRenderers(),this.$dataProviderChanged&&(this.$dataProviderChanged=!1,this.scrollV=this.scrollH=0)),e.prototype.commitProperties.call(this),i[8]&&(i[8]=!1,this.$dataProvider&&this.$dataProvider.length>0&&(i[12]=this.$dataProvider.getItemAt(0),this.measureRendererSize())),i[14]){i[14]=!1;for(var n=i[13],r=this.$indexToRenderer,o=Object.keys(r),s=o.length,a=0;s>a;a++){var h=o[a];this.setItemRenderSkinName(r[h],n)}var l=i[3];o=Object.keys(l),s=o.length;for(var a=0;s>a;a++)for(var u=o[a],p=l[u],c=p.length,d=0;c>d;d++)this.setItemRenderSkinName(p[d],n)}},i.prototype.measure=function(){this.$layout&&this.$layout.$useVirtualLayout&&this.ensureTypicalLayoutElement(),e.prototype.measure.call(this)},i.prototype.updateDisplayList=function(t,i){var n=this.$layout&&this.$layout.$useVirtualLayout;n&&this.ensureTypicalLayoutElement(),e.prototype.updateDisplayList.call(this,t,i);var r=this.$DataGroup;if(n){var o=r[9];if(o){var s=this.$indexToRenderer[0];if(s){var a=egret.$TempRectangle;s.getPreferredBounds(a),(a.width!=o.width||a.height!=o.height)&&(r[9]=null)}}}},i.prototype.ensureTypicalLayoutElement=function(){this.$DataGroup[9]||this.$dataProvider&&this.$dataProvider.length>0&&(this.$DataGroup[12]=this.$dataProvider.getItemAt(0),this.measureRendererSize())},i.prototype.measureRendererSize=function(){var t=this.$DataGroup;if(void 0==t[12])return void this.setTypicalLayoutRect(null);var e=this.createVirtualRenderer(t[12]);if(!e)return void this.setTypicalLayoutRect(null);this.updateRenderer(e,0,t[12]),e.validateNow();var i=egret.$TempRectangle;e.getPreferredBounds(i);var n=new egret.Rectangle(0,0,i.width,i.height);this.$layout&&this.$layout.$useVirtualLayout?(t[4]&&this.rendererAdded(e,0,t[12]),this.doFreeRenderer(e)):this.removeChild(e),this.setTypicalLayoutRect(n),t[4]=!1},i.prototype.setTypicalLayoutRect=function(t){this.$DataGroup[9]=t,this.$layout&&(t?this.$layout.setTypicalSize(t.width,t.height):this.$layout.setTypicalSize(0,0))},i.prototype.removeAllRenderers=function(){for(var t=this.$indexToRenderer,e=Object.keys(t),i=e.length,n=0;i>n;n++){var r=e[n],o=t[r];o&&(this.rendererRemoved(o,o.itemIndex,o.data),this.removeChild(o))}this.$indexToRenderer=[];var s=this.$DataGroup;if(s[10]){for(var a=s[3],h=Object.keys(a),l=h.length,n=0;l>n;n++)for(var u=h[n],p=a[u],c=p.length,d=0;c>d;d++){var o=p[d];this.rendererRemoved(o,o.itemIndex,o.data),this.removeChild(o)}s[3]={},s[2]={},s[10]=!1}},i.prototype.createRenderers=function(){if(this.$dataProvider)for(var t=0,e=this.$dataProvider.length,i=0;e>i;i++){var n=this.$dataProvider.getItemAt(i),r=this.itemToRendererClass(n),o=this.createOneRenderer(r);o&&(this.$indexToRenderer[t]=o,this.updateRenderer(o,t,n),this.rendererAdded(o,t,n),t++)}},i.prototype.updateRenderer=function(t,e,i){var n=this.$DataGroup;return n[11]=!0,t.itemIndex=e,t.parent==this&&this.setChildIndex(t,e),t.data=i,n[11]=!1,t},Object.defineProperty(i.prototype,"numElements",{get:function(){return this.$dataProvider?this.$dataProvider.length:0},enumerable:!0,configurable:!0}),i.prototype.rendererAdded=function(t,e,i){},i.prototype.rendererRemoved=function(t,e,i){},i}(t.Group);t.DataGroup=e,__reflect(e.prototype,"eui.DataGroup"),t.registerProperty(e,"itemRenderer","Class"),t.registerProperty(e,"itemRendererSkinName","Class"),t.registerProperty(e,"dataProvider","eui.ICollection",!0)}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.labelDisplay=null,e._label="",e.iconDisplay=null,e._icon=null,e.touchCaptured=!1,e.touchChildren=!1,e.addEventListener(egret.TouchEvent.TOUCH_BEGIN,e.onTouchBegin,e),e}return __extends(e,t),Object.defineProperty(e.prototype,"label",{get:function(){return this._label},set:function(t){this._label=t,this.labelDisplay&&(this.labelDisplay.text=t)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"icon",{get:function(){return this._icon},set:function(t){this._icon=t,this.iconDisplay&&(this.iconDisplay.source=t)},enumerable:!0,configurable:!0}),e.prototype.onTouchCancle=function(t){var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),e.removeEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.touchCaptured=!1,this.invalidateState()},e.prototype.onTouchBegin=function(t){this.$stage.addEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),this.$stage.addEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.touchCaptured=!0,this.invalidateState(),t.updateAfterEvent()},e.prototype.onStageTouchEnd=function(t){var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),e.removeEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.contains(t.target)&&this.buttonReleased(),this.touchCaptured=!1,this.invalidateState()},e.prototype.getCurrentState=function(){return this.enabled?this.touchCaptured?"down":"up":"disabled"},e.prototype.partAdded=function(t,e){e===this.labelDisplay?this.labelDisplay.text=this._label:e==this.iconDisplay&&(this.iconDisplay.source=this._icon)},e.prototype.buttonReleased=function(){},e}(t.Component);t.Button=e,__reflect(e.prototype,"eui.Button")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.$Range={0:100,1:!1,2:0,3:!1,4:0,5:0,6:!1,7:1,8:!1,9:!1},t}return __extends(i,e),Object.defineProperty(i.prototype,"maximum",{get:function(){return this.$Range[0]},set:function(t){t=+t||0;var e=this.$Range;t!==e[0]&&(e[0]=t,e[1]=!0,this.invalidateProperties(),this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"minimum",{get:function(){return this.$Range[2]},set:function(t){t=+t||0;var e=this.$Range;t!==e[2]&&(e[2]=t,e[3]=!0,this.invalidateProperties(),this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"value",{get:function(){var t=this.$Range;return t[6]?t[5]:t[4]},set:function(t){t=+t||0,this.$setValue(t)},enumerable:!0,configurable:!0}),i.prototype.$setValue=function(t){if(t===this.value)return!1;var e=this.$Range;return e[5]=t,e[6]=!0,this.invalidateProperties(),!0},Object.defineProperty(i.prototype,"snapInterval",{get:function(){return this.$Range[7]},set:function(t){var e=this.$Range;e[9]=!0,t=+t||0,t!==e[7]&&(isNaN(t)?(e[7]=1,e[9]=!1):e[7]=t,e[8]=!0,this.invalidateProperties())},enumerable:!0,configurable:!0}),i.prototype.commitProperties=function(){e.prototype.commitProperties.call(this);var t=this.$Range;if(t[2]>t[0]&&(t[1]?t[0]=t[2]:t[2]=t[0]),t[6]||t[1]||t[3]||t[8]){var i=t[6]?t[5]:t[4];t[6]=!1,t[1]=!1,t[3]=!1,t[8]=!1,this.setValue(this.nearestValidValue(i,t[7]))}},i.prototype.nearestValidSize=function(t){var e=this.snapInterval;if(0==e)return t;var i=Math.round(t/e)*e;return Math.abs(i)=(a-s)/2?a:s;return h/r+i[2]},i.prototype.setValue=function(e){var i=this.$Range;i[4]!==e&&(i[0]>i[2]?i[4]=Math.min(i[0],Math.max(i[2],e)):i[4]=e,i[6]=!1,this.invalidateDisplayList(),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"value"))},i.prototype.updateDisplayList=function(t,i){e.prototype.updateDisplayList.call(this,t,i),this.updateSkinDisplayList()},i.prototype.updateSkinDisplayList=function(){},i}(t.Component);t.Range=e,__reflect(e.prototype,"eui.Range"),t.registerBindable(e.prototype,"value")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.$target=null,e.$useVirtualLayout=!1,e.$typicalWidth=71,e.$typicalHeight=22,e}return __extends(e,t),Object.defineProperty(e.prototype,"target",{get:function(){return this.$target},set:function(t){this.$target!==t&&(this.$target=t,this.clearVirtualLayoutCache())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"useVirtualLayout",{get:function(){return this.$useVirtualLayout},set:function(t){t=!!t,this.$useVirtualLayout!=t&&(this.$useVirtualLayout=t,this.dispatchEventWith("useVirtualLayoutChanged"),this.$useVirtualLayout&&!t&&this.clearVirtualLayoutCache(),this.target&&this.target.invalidateDisplayList())},enumerable:!0,configurable:!0}),e.prototype.setTypicalSize=function(t,e){t=+t||71,e=+e||22,(t!==this.$typicalWidth||e!==this.$typicalHeight)&&(this.$typicalWidth=t,this.$typicalHeight=e,this.$target&&this.$target.invalidateSize())},e.prototype.scrollPositionChanged=function(){},e.prototype.clearVirtualLayoutCache=function(){},e.prototype.elementAdded=function(t){},e.prototype.elementRemoved=function(t){},e.prototype.getElementIndicesInView=function(){return null},e.prototype.measure=function(){},e.prototype.updateDisplayList=function(t,e){},e}(egret.EventDispatcher);t.LayoutBase=e,__reflect(e.prototype,"eui.LayoutBase")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.$ListBase={0:!1,1:!1,2:-2,3:-1,4:!1,5:void 0,6:!1,7:null,8:!1},t}return __extends(i,e),Object.defineProperty(i.prototype,"requireSelection",{get:function(){return this.$ListBase[0]},set:function(t){t=!!t;var e=this.$ListBase;t!==e[0]&&(e[0]=t,t&&(e[1]=!0,this.invalidateProperties()))},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"selectedIndex",{get:function(){return this.$getSelectedIndex()},set:function(t){t=0|+t,this.setSelectedIndex(t,!1)},enumerable:!0,configurable:!0}),i.prototype.$getSelectedIndex=function(){var t=this.$ListBase;return t[2]!=i.NO_PROPOSED_SELECTION?t[2]:t[3]},i.prototype.setSelectedIndex=function(t,e){if(t!=this.selectedIndex){var i=this.$ListBase;e&&(i[4]=i[4]||e),i[2]=t,this.invalidateProperties()}},Object.defineProperty(i.prototype,"selectedItem",{get:function(){var t=this.$ListBase;if(void 0!==t[5])return t[5];var e=this.$getSelectedIndex();if(e!=i.NO_SELECTION&&null!=this.$dataProvider)return this.$dataProvider.length>e?this.$dataProvider.getItemAt(e):void 0},set:function(t){this.setSelectedItem(t,!1)},enumerable:!0,configurable:!0}),i.prototype.setSelectedItem=function(t,e){if(void 0===e&&(e=!1),this.selectedItem!==t){var i=this.$ListBase;e&&(i[4]=i[4]||e),i[5]=t,this.invalidateProperties()}},i.prototype.commitProperties=function(){var n=this.$dataProviderChanged;e.prototype.commitProperties.call(this);var r=this.$ListBase,o=this.$getSelectedIndex(),s=this.$dataProvider;n&&(o>=0&&s&&o0&&(r[2]=0)),void 0!==r[5]&&(s?r[2]=s.getItemIndex(r[5]):r[2]=i.NO_SELECTION,r[5]=void 0);var a=!1;r[2]!=i.NO_PROPOSED_SELECTION&&(a=this.commitSelection()),r[6]&&(r[6]=!1,a||t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedIndex"))},i.prototype.updateRenderer=function(t,i,n){return this.itemSelected(i,this.$isItemIndexSelected(i)),e.prototype.updateRenderer.call(this,t,i,n)},i.prototype.itemSelected=function(t,e){var i=this.$indexToRenderer[t];i&&(i.selected=e)},i.prototype.$isItemIndexSelected=function(t){return t==this.selectedIndex},i.prototype.commitSelection=function(e){void 0===e&&(e=!0);var n=this.$dataProvider,r=this.$ListBase,o=n?n.length-1:-1,s=r[3],a=r[2];if(ao&&(a=o),r[0]&&a==i.NO_SELECTION&&n&&n.length>0)return r[2]=i.NO_PROPOSED_SELECTION,r[4]=!1,!1;if(r[4]){var h=this.dispatchEventWith(egret.Event.CHANGING,!1,!0,!0);if(!h)return this.itemSelected(r[2],!1),r[2]=i.NO_PROPOSED_SELECTION,r[4]=!1,!1}return r[3]=a,r[2]=i.NO_PROPOSED_SELECTION,s!=i.NO_SELECTION&&this.itemSelected(s,!1),r[3]!=i.NO_SELECTION&&this.itemSelected(r[3],!0),e&&(r[4]&&(this.dispatchEventWith(egret.Event.CHANGE),r[4]=!1),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedIndex"),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedItem")),!0},i.prototype.adjustSelection=function(t,e){void 0===e&&(e=!1);var n=this.$ListBase;n[2]!=i.NO_PROPOSED_SELECTION?n[2]=t:n[3]=t,n[6]=!0,this.invalidateProperties()},i.prototype.itemAdded=function(t,n){e.prototype.itemAdded.call(this,t,n);var r=this.$getSelectedIndex();r==i.NO_SELECTION?this.$ListBase[0]&&this.adjustSelection(n,!0):r>=n&&this.adjustSelection(r+1,!0)},i.prototype.itemRemoved=function(t,n){if(e.prototype.itemRemoved.call(this,t,n),this.selectedIndex!=i.NO_SELECTION){var r=this.$getSelectedIndex();n==r?this.requireSelection&&this.$dataProvider&&this.$dataProvider.length>0?0==n?(this.$ListBase[2]=0,this.invalidateProperties()):this.setSelectedIndex(0,!1):this.adjustSelection(-1,!1):r>n&&this.adjustSelection(r-1,!1)}},i.prototype.onCollectionChange=function(n){e.prototype.onCollectionChange.call(this,n),n.kind==t.CollectionEventKind.RESET?0==this.$dataProvider.length&&this.setSelectedIndex(i.NO_SELECTION,!1):n.kind==t.CollectionEventKind.REFRESH&&this.dataProviderRefreshed()},i.prototype.dataProviderRefreshed=function(){this.setSelectedIndex(i.NO_SELECTION,!1)},i.prototype.rendererAdded=function(t,e,i){t.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onRendererTouchBegin,this),t.addEventListener(egret.TouchEvent.TOUCH_END,this.onRendererTouchEnd,this),t.addEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onRendererTouchCancle,this)},i.prototype.rendererRemoved=function(t,e,i){t.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onRendererTouchBegin,this),t.removeEventListener(egret.TouchEvent.TOUCH_END,this.onRendererTouchEnd,this),t.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onRendererTouchCancle,this)},i.prototype.onRendererTouchBegin=function(t){if(this.$stage){var e=this.$ListBase;t.$isDefaultPrevented||(e[8]=!1,e[7]=t.$currentTarget,this.$stage.addEventListener(egret.TouchEvent.TOUCH_END,this.stage_touchEndHandler,this))}},i.prototype.onRendererTouchCancle=function(t){var e=this.$ListBase;e[7]=null,e[8]=!0,this.$stage&&this.$stage.removeEventListener(egret.TouchEvent.TOUCH_END,this.stage_touchEndHandler,this)},i.prototype.onRendererTouchEnd=function(e){var i=this.$ListBase,n=e.$currentTarget,r=i[7];n==r&&(i[8]||(this.setSelectedIndex(n.itemIndex,!0),t.ItemTapEvent.dispatchItemTapEvent(this,t.ItemTapEvent.ITEM_TAP,n)),i[8]=!1)},i.prototype.stage_touchEndHandler=function(t){var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_END,this.stage_touchEndHandler,this),this.$ListBase[7]=null},i.NO_SELECTION=-1,i.NO_PROPOSED_SELECTION=-2,i}(t.DataGroup);t.ListBase=e,__reflect(e.prototype,"eui.ListBase"),t.registerBindable(e.prototype,"selectedIndex"),t.registerBindable(e.prototype,"selectedItem")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.thumb=null,t.$viewport=null,t.autoVisibility=!0,t}return __extends(i,e),Object.defineProperty(i.prototype,"viewport",{get:function(){return this.$viewport},set:function(e){if(e!=this.$viewport){var i=this.$viewport;i&&(i.removeEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.onPropertyChanged,this),i.removeEventListener(egret.Event.RESIZE,this.onViewportResize,this)),this.$viewport=e,e&&(e.addEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.onPropertyChanged,this),e.addEventListener(egret.Event.RESIZE,this.onViewportResize,this)),this.invalidateDisplayList()}},enumerable:!0,configurable:!0}),i.prototype.onViewportResize=function(t){this.invalidateDisplayList()},i.prototype.onPropertyChanged=function(t){},i}(t.Component);t.ScrollBarBase=e,__reflect(e.prototype,"eui.ScrollBarBase")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.trackHighlight=null,t.thumb=null,t.track=null,t.$SliderBase={0:0,1:0,2:0,3:0,4:null,5:null,6:300,7:0,8:0,9:!0},t.maximum=10,t.addEventListener(egret.TouchEvent.TOUCH_BEGIN,t.onTouchBegin,t),t}return __extends(i,e),Object.defineProperty(i.prototype,"slideDuration",{get:function(){return this.$SliderBase[6]},set:function(t){this.$SliderBase[6]=+t||0},enumerable:!0,configurable:!0}),i.prototype.pointToValue=function(t,e){return this.minimum},Object.defineProperty(i.prototype,"liveDragging",{get:function(){return this.$SliderBase[9]},set:function(t){this.$SliderBase[9]=!!t},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"pendingValue",{get:function(){return this.$SliderBase[7]},set:function(t){t=+t||0;var e=this.$SliderBase;t!==e[7]&&(e[7]=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),i.prototype.setValue=function(t){this.$SliderBase[7]=t,e.prototype.setValue.call(this,t)},i.prototype.partAdded=function(t,i){e.prototype.partAdded.call(this,t,i),i==this.thumb?(this.thumb.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onThumbTouchBegin,this),this.thumb.addEventListener(egret.Event.RESIZE,this.onTrackOrThumbResize,this)):i==this.track?(this.track.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTrackTouchBegin,this),this.track.addEventListener(egret.Event.RESIZE,this.onTrackOrThumbResize,this)):i===this.trackHighlight&&(this.trackHighlight.touchEnabled=!1,egret.is(this.trackHighlight,"egret.DisplayObjectContainer")&&(this.trackHighlight.touchChildren=!1))},i.prototype.partRemoved=function(t,i){e.prototype.partRemoved.call(this,t,i),i==this.thumb?(this.thumb.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onThumbTouchBegin,this),this.thumb.removeEventListener(egret.Event.RESIZE,this.onTrackOrThumbResize,this)):i==this.track&&(this.track.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTrackTouchBegin,this),this.track.removeEventListener(egret.Event.RESIZE,this.onTrackOrThumbResize,this))},i.prototype.onTrackOrThumbResize=function(t){this.updateSkinDisplayList()},i.prototype.onThumbTouchBegin=function(e){var i=this.$SliderBase;i[5]&&i[5].isPlaying&&this.stopAnimation();var n=this.$stage;n.addEventListener(egret.TouchEvent.TOUCH_MOVE,this.onStageTouchMove,this),n.addEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this);var r=this.thumb.globalToLocal(e.stageX,e.stageY,egret.$TempPoint);i[0]=r.x,i[1]=r.y,t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_START)},i.prototype.onStageTouchMove=function(t){var e=this.$SliderBase;e[2]=t.$stageX,e[3]=t.$stageY;var i=this.track;if(i){var n=i.globalToLocal(e[2],e[3],egret.$TempPoint),r=this.pointToValue(n.x-e[0],n.y-e[1]);r=this.nearestValidValue(r,this.snapInterval),this.updateWhenTouchMove(r),t.updateAfterEvent()}},i.prototype.updateWhenTouchMove=function(t){t!=this.$SliderBase[7]&&(this.liveDragging?(this.setValue(t),this.dispatchEventWith(egret.Event.CHANGE)):this.pendingValue=t)},i.prototype.onStageTouchEnd=function(e){var i=e.$currentTarget;i.removeEventListener(egret.TouchEvent.TOUCH_MOVE,this.onStageTouchMove,this),i.removeEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END);var n=this.$SliderBase;this.liveDragging||this.value==n[7]||(this.setValue(n[7]),this.dispatchEventWith(egret.Event.CHANGE))},i.prototype.onTouchBegin=function(t){this.$stage.addEventListener(egret.TouchEvent.TOUCH_END,this.stageTouchEndHandler,this),this.$SliderBase[4]=t.$target},i.prototype.stageTouchEndHandler=function(t){var e=t.$target,i=this.$SliderBase;t.$currentTarget.removeEventListener(egret.TouchEvent.TOUCH_END,this.stageTouchEndHandler,this),i[4]!=e&&this.contains(e)&&egret.TouchEvent.dispatchTouchEvent(this,egret.TouchEvent.TOUCH_TAP,!0,!0,t.$stageX,t.$stageY,t.touchPointID),i[4]=null},i.prototype.$animationUpdateHandler=function(t){this.pendingValue=t.currentValue},i.prototype.animationEndHandler=function(e){this.setValue(this.$SliderBase[8]),this.dispatchEventWith(egret.Event.CHANGE),t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END)},i.prototype.stopAnimation=function(){this.$SliderBase[5].stop(),this.setValue(this.nearestValidValue(this.pendingValue,this.snapInterval)),this.dispatchEventWith(egret.Event.CHANGE),t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END)},i.prototype.onTrackTouchBegin=function(e){var i=this.thumb?this.thumb.width:0,n=this.thumb?this.thumb.height:0,r=e.$stageX-i/2,o=e.$stageY-n/2,s=this.track.globalToLocal(r,o,egret.$TempPoint),a=this.$Range,h=this.pointToValue(s.x,s.y);h=this.nearestValidValue(h,a[7]);var l=this.$SliderBase;if(h!=l[7])if(0!=l[6]){l[5]||(l[5]=new t.sys.Animation(this.$animationUpdateHandler,this),l[5].endFunction=this.animationEndHandler);var u=l[5];u.isPlaying&&this.stopAnimation(),l[8]=h,u.duration=l[6]*(Math.abs(l[7]-l[8])/(a[0]-a[2])),u.from=l[7],u.to=l[8],t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_START),u.play()}else this.setValue(h),this.dispatchEventWith(egret.Event.CHANGE)},i}(t.Range);t.SliderBase=e,__reflect(e.prototype,"eui.SliderBase")}(eui||(eui={}));var eui;!function(t){var e;!function(t){function e(t){if(!t)return"";for(var e=" at <"+t.name,i=t.attributes,n=Object.keys(i),r=n.length,o=0;r>o;o++){var s=n[o],a=i[s];("id"!=s||"__"!=a.substring(0,2))&&(e+=" "+s+'="'+a+'"')}return e+=0==t.children.length?"/>":">"}function i(t){var i=e(t.parent),n=e(t).substring(5);return i+"\n "+n}var n=[],r=1,o="hostComponent",s="eui.Skin",a="Declarations",h="egret.Rectangle",l="Class",u="Array",p="Percentage",c="State[]",d="skinName",f=[u,"boolean","string","number"],g=["id","locked","includeIn","excludeFrom"],y=[["<","<"],[">",">"],["&","&"],['"',"""],["'","'"]],v=["null","NaN","undefined","true","false"],m=function(){function e(){this.delayAssignmentDic={}}return e.prototype.$parseCode=function(t,e){var i=e?e:"$exmlClass"+r++,n=eval,o=n(t),s=!0;if(s&&o){egret.registerClass(o,i);for(var a=i.split("."),h=a.length,l=__global,u=0;h-1>u;u++){var p=a[u];l=l[p]||(l[p]={})}l[a[h-1]]||(l[a[h-1]]=o)}return o},e.prototype.parse=function(t){var e=null;e=egret.XML.parse(t);var i=!1,n="";e.attributes["class"]?(n=e.attributes["class"],delete e.attributes["class"],i=!!n):n="$exmlClass"+r++;var o=this.parseClass(e,n),s=o.toCode(),a=null,h=eval;if(a=h(s),i&&a){egret.registerClass(a,n);for(var l=n.split("."),u=l.length,p=__global,c=0;u-1>c;c++){var d=l[c];p=p[d]||(p[d]={})}p[l[u-1]]||(p[l[u-1]]=a)}return a},e.prototype.parseClass=function(e,i){t.exmlConfig||(t.exmlConfig=new t.EXMLConfig),this.currentXML=e,this.currentClassName=i,this.delayAssignmentDic={},this.idDic={},this.stateCode=[],this.stateNames=[],this.skinParts=[],this.bindings=[],this.declarations=null,this.currentClass=new t.EXClass,this.stateIds=[];var n=i.lastIndexOf(".");-1!=n?this.currentClass.className=i.substring(n+1):this.currentClass.className=i,this.startCompile();var r=this.currentClass;return this.currentClass=null,r},e.prototype.startCompile=function(){var e=this.getClassNameOfNode(this.currentXML);this.isSkinClass=e==s,this.currentClass.superClass=e,this.getStateNames();var i=this.currentXML.children;if(i)for(var n=i.length,r=0;n>r;r++){var o=i[r];if(1===o.nodeType&&o.namespace==t.NS_W&&o.localName==a){this.declarations=o;break}}this.currentXML.namespace&&(this.addIds(this.currentXML.children),this.createConstructFunc())},e.prototype.addIds=function(e){if(e)for(var i=e.length,n=0;i>n;n++){var r=e[n];if(1==r.nodeType&&r.namespace&&!this.isInnerClass(r))if(this.addIds(r.children),r.namespace!=t.NS_W&&r.localName){if(this.isProperty(r)){var o=r.localName,s=o.indexOf("."),a=r.children;if(-1==s||!a||0==a.length)continue;var h=a[0];this.stateIds.push(h.attributes.id)}else if(1===r.nodeType){var l=r.attributes.id;if(l){var u=new RegExp("^[a-zA-Z_$]{1}[a-z0-9A-Z_$]*");null==l.match(u)&&egret.$warn(2022,l),null!=l.match(new RegExp(/ /g))&&egret.$warn(2022,l),-1==this.skinParts.indexOf(l)&&this.skinParts.push(l),this.createVarForNode(r),this.isStateNode(r)&&this.stateIds.push(l)}else this.createIdForNode(r),this.isStateNode(r)&&this.stateIds.push(r.attributes.id)}}else;}},e.prototype.isInnerClass=function(e){if(e.hasOwnProperty("isInnerClass"))return e.isInnerClass;var i="Skin"==e.localName&&e.namespace==t.NS_S;if(!i)if(this.isProperty(e))i=!1;else{var n=void 0,r=e.parent;if(this.isProperty(r)){n=r.localName;var o=n.indexOf(".");if(-1!=o){n.substring(o+1);n=n.substring(0,o)}r=r.parent}else n=t.exmlConfig.getDefaultPropById(r.localName,r.namespace);var s=t.exmlConfig.getClassNameById(r.localName,r.namespace);i=t.exmlConfig.getPropertyType(n,s)==l}return e.isInnerClass=i,i},e.prototype.containsState=function(t){var e=t.attributes;if(e.includeIn||e.excludeFrom)return!0;for(var i=Object.keys(e),n=i.length,r=0;n>r;r++){var o=i[r];if(-1!=o.indexOf("."))return!0}return!1},e.prototype.createIdForNode=function(t){var e=this.getNodeId(t);this.idDic[e]?this.idDic[e]++:this.idDic[e]=1,e+=this.idDic[e],t.attributes.id=e},e.prototype.getNodeId=function(t){return t.attributes.id?t.attributes.id:"_"+t.localName},e.prototype.createVarForNode=function(e){var i=this.getClassNameOfNode(e);""!=i&&(this.currentClass.getVariableByName(e.attributes.id)||this.currentClass.addVariable(new t.EXVariable(e.attributes.id)))},e.prototype.createFuncForNode=function(e){var i=e.localName,n=this.isBasicTypeData(i);if(n)return this.createBasicTypeForNode(e);var r=this.getClassNameOfNode(e),o=new t.EXFunction,s="_i",a=e.attributes.id;o.name=a+s,this.currentClass.addFunction(o);var h=new t.EXCodeBlock;o.codeBlock=h;var l="t";"Object"==i?h.addVar(l,"{}"):h.addVar(l,"new "+r+"()");var u=!!this.currentClass.getVariableByName(a);u&&h.addAssignment("this."+a,l),this.addAttributesToCodeBlock(h,l,e),this.initlizeChildNode(e,h,l);var p=this.delayAssignmentDic[a];if(p)for(var c=p.length,d=0;c>d;d++){var f=p[d];h.concat(f)}return h.addReturn(l),"this."+o.name+"()"},e.prototype.isBasicTypeData=function(t){return-1!=f.indexOf(t)},e.prototype.createBasicTypeForNode=function(t){var e=t.localName,i="",n=this.currentClass.getVariableByName(t.attributes.id),r=t.children,o="";if(r&&r.length>0){var s=r[0];3==s.nodeType&&(o=s.text.trim())}switch(e){case u:var a=[];if(r)for(var h=r.length,l=0;h>l;l++){var p=r[l];1==p.nodeType&&a.push(this.createFuncForNode(p))}i="["+a.join(",")+"]";break;case"boolean":i="false"!=o&&o?"true":"false"; +break;case"number":i=o,-1!=i.indexOf("%")&&(i=i.substring(0,i.length-1));break;case"string":i=this.formatString(o)}return n&&(n.defaultValue=i),i},e.prototype.addAttributesToCodeBlock=function(e,i,n){var r,o,s=n.attributes,a=Object.keys(s);a.sort();for(var h=a.length,l=0;h>l;l++)if(r=a[l],this.isNormalKey(r)&&(o=s[r],r=this.formatKey(r,o),o=this.formatValue(r,o,n))){if(this.currentClass.getVariableByName(o)){var u="this.",p=s.id,c=u+p+" = t;";this.currentClass.getVariableByName(p)||this.createVarForNode(n),e.containsCodeLine(c)||e.addCodeLineAt(c,1);var d=new t.EXCodeBlock;"this"==i?d.addAssignment(i,u+o,r):(d.startIf(u+p),d.addAssignment(u+p,u+o,r),d.endBlock()),this.delayAssignmentDic[o]||(this.delayAssignmentDic[o]=[]),this.delayAssignmentDic[o].push(d),o=u+o}e.addAssignment(i,o,r)}},e.prototype.initlizeChildNode=function(e,n,r){var o=e.children;if(o&&0!=o.length){for(var s,a=t.exmlConfig.getClassNameById(e.localName,e.namespace),h=[],l=o.length,u=[],p=0;l>p;p++){var c=o[p];if(1==c.nodeType&&c.namespace!=t.NS_W)if(this.isInnerClass(c)){if("Skin"==c.localName){var f=this.parseInnerClass(c),g=t.exmlConfig.getPropertyType(d,a);g?n.addAssignment(r,f,d):egret.$error(2005,this.currentClassName,d,i(c))}}else{var y=c.localName;if(this.isProperty(c)){if(!this.isNormalKey(y))continue;var g=t.exmlConfig.getPropertyType(c.localName,a);if(!g)continue;if(!c.children||0==c.children.length)continue;this.addChildrenToProp(c.children,g,y,n,r,s,u,e)}else h.push(c)}}if(0!=h.length){var v=t.exmlConfig.getDefaultPropById(e.localName,e.namespace),m=t.exmlConfig.getPropertyType(v,a);v&&m&&this.addChildrenToProp(h,m,v,n,r,s,u,e)}}},e.prototype.parseInnerClass=function(t){var i=n.pop();i||(i=new e);var o=this.currentClass.className+"$"+t.localName+r++,s=i.parseClass(t,o);return this.currentClass.addInnerClass(s),n.push(i),o},e.prototype.addChildrenToProp=function(t,e,i,n,r,o,s,a){var h="",p=t.length;if(p>1){if(e!=u)return;for(var c=[],d=0;p>d;d++){var f=t[d];if(1==f.nodeType){h=this.createFuncForNode(f);this.getClassNameOfNode(f);this.isStateNode(f)||c.push(h)}}h="["+c.join(",")+"]"}else{var g=t[0];if(e==u)if(g.localName==u){var c=[];if(g.children)for(var y=g.children.length,v=0;y>v;v++){var f=g.children[v];if(1==f.nodeType){h=this.createFuncForNode(f);this.getClassNameOfNode(f);this.isStateNode(f)||c.push(h)}}h="["+c.join(",")+"]"}else{h=this.createFuncForNode(g);this.getClassNameOfNode(g);h=this.isStateNode(g)?"[]":"["+h+"]"}else if(1==g.nodeType)if(e==l){if(p>1)return;h=this.parseInnerClass(t[0])}else{this.getClassNameOfNode(g);h=this.createFuncForNode(g)}else h=this.formatValue(i,g.text,a)}""!=h&&(-1==h.indexOf("()")&&(i=this.formatKey(i,h)),-1==s.indexOf(i)&&s.push(i),n.addAssignment(r,h,i))},e.prototype.isProperty=function(e){if(e.hasOwnProperty("isProperty"))return e.isProperty;var i,n=e.localName;if(n&&1===e.nodeType&&e.parent&&!this.isBasicTypeData(n)){var r=e.parent,o=n.indexOf(".");-1!=o&&(n=n.substr(0,o));var s=t.exmlConfig.getClassNameById(r.localName,r.namespace);i=!!t.exmlConfig.getPropertyType(n,s)}else i=!1;return e.isProperty=i,i},e.prototype.isNormalKey=function(t){return t&&-1==t.indexOf(".")&&-1==t.indexOf(":")&&-1==g.indexOf(t)?!0:!1},e.prototype.formatKey=function(t,e){return-1!=e.indexOf("%")&&("height"==t?t="percentHeight":"width"==t&&(t="percentWidth")),t},e.prototype.formatValue=function(e,i,n){i||(i="");var r=i;i=i.trim();var o=this.getClassNameOfNode(n),s=t.exmlConfig.getPropertyType(e,o),a=this.formatBinding(e,i,n);if(a){this.checkIdForState(n);var u="this";n!==this.currentXML&&(u+="."+n.attributes.id),this.bindings.push(new t.EXBinding(u,e,a.templates,a.chainIndex)),i=""}else if(s==h){i="new "+h+"("+i+")"}else if(s==p)-1!=i.indexOf("%")&&(i=this.formatString(i));else{switch(s){case l:e==d&&(i=this.formatString(r));break;case"number":0==i.indexOf("#")?i="0x"+i.substring(1):-1!=i.indexOf("%")&&(i=parseFloat(i.substr(0,i.length-1)).toString());break;case"boolean":i="false"!=i&&i?"true":"false";break;case"string":case"any":i=this.formatString(r)}}return i},e.prototype.formatString=function(t){return t=this.unescapeHTMLEntity(t),t=t.split("\n").join("\\n"),t=t.split("\r").join("\\n"),t=t.split('"').join('\\"'),t='"'+t+'"'},e.prototype.formatBinding=function(t,e,i){if(!e)return null;if(e=e.trim(),"{"!=e.charAt(0)||"}"!=e.charAt(e.length-1))return null;e=e.substring(1,e.length-1).trim();for(var n=-1==e.indexOf("+")?[e]:this.parseTemplates(e),r=[],s=n.length,a=0;s>a;a++){var h=n[a].trim();if(h){var l=h.charAt(0);if(!("'"==l||'"'==l||l>="0"&&"9">=l||"-"==l||-1==h.indexOf(".")&&-1!=v.indexOf(h))){0==h.indexOf("this.")&&(h=h.substring(5));var u=h.split(".")[0];u!=o&&-1==this.skinParts.indexOf(u)&&(h=o+"."+h),n[a]='"'+h+'"',r.push(a)}}else n.splice(a,1),a--,s--}return{templates:n,chainIndex:r}},e.prototype.parseTemplates=function(t){if(-1==t.indexOf("'"))return t.split("+");var e=!1,i="";for(t=t.split("\\'").join(" 0 ");t.length>0;){var n=t.indexOf("'");if(-1==n){i+=t;break}i+=t.substring(0,n+1),t=t.substring(n+1),n=t.indexOf("'"),-1==n&&(n=t.length-1,e=!0);var r=t.substring(0,n+1);i+=r.split("+").join(" 1 "),t=t.substring(n+1)}t=i.split(" 0 ").join("\\'"),e&&(t+="'");for(var o=t.split("+"),s=o.length,a=0;s>a;a++)o[a]=o[a].split(" 1 ").join("+");return o},e.prototype.unescapeHTMLEntity=function(t){if(!t)return"";for(var e=y.length,i=0;e>i;i++){var n=y[i],r=n[0],o=n[1];t=t.split(o).join(r)}return t},e.prototype.createConstructFunc=function(){var e=new t.EXCodeBlock;e.addEmptyLine();var i="this";if(this.addAttributesToCodeBlock(e,i,this.currentXML),this.declarations){var n=this.declarations.children;if(n&&n.length>0)for(var r=n.length,o=0;r>o;o++){var s=n[o];if(1==s.nodeType){var a=this.createFuncForNode(s);a&&e.addCodeLine(a+";")}}}this.initlizeChildNode(this.currentXML,e,i);var h,l,u=this.stateIds;if(u.length>0){l=u.length;for(var o=0;l>o;o++)h=u[o],e.addCodeLine("this."+h+"_i();");e.addEmptyLine()}var p=this.skinParts,c="[]";if(l=p.length,l>0){for(var o=0;l>o;o++)p[o]='"'+p[o]+'"';c="["+p.join(",")+"]"}var d=new t.EXFunction;d.name="skinParts",d.isGet=!0;var f=new t.EXCodeBlock;f.addReturn(c),d.codeBlock=f,this.currentClass.addFunction(d),this.currentXML.attributes.id="",this.createStates(this.currentXML);for(var g,y=this.currentXML,v=(this.getClassNameOfNode(y),y.attributes),m=Object.keys(v),$=m.length,E=0;$>E;E++){var C=m[E],_=v[C],b=C.indexOf(".");if(-1!=b){var T=C.substring(0,b);T=this.formatKey(T,_);var S=this.formatValue(T,_,y);if(!S)continue;var x=C.substr(b+1);g=this.getStateByName(x,y);var I=g.length;if(I>0)for(var o=0;I>o;o++){var P=g[o];P.addOverride(new t.EXSetProperty("",T,S))}}}var L=this.stateCode;if(l=L.length,l>0){var N=" ";e.addCodeLine("this.states = [");for(var O=!0,o=0;l>o;o++){var P=L[o];O?O=!1:e.addCodeLine(N+",");for(var A=P.toCode().split("\n"),B=0;B0){e.addEmptyLine();for(var o=0;l>o;o++){var M=R[o];e.addCodeLine(M.toCode())}}this.currentClass.constructCode=e},e.prototype.isStateNode=function(t){var e=t.attributes;return e.hasOwnProperty("includeIn")||e.hasOwnProperty("excludeFrom")},e.prototype.getStateNames=function(){var e=this.currentXML,i=t.exmlConfig.getClassNameById(e.localName,e.namespace),n=t.exmlConfig.getPropertyType("states",i);if(n==c){var r=e.attributes.states;r&&delete e.attributes.states;var o,s,a=this.stateNames,h=e.children;if(h)for(var l=h.length,u=0;l>u;u++)if(s=h[u],1==s.nodeType&&"states"==s.localName){s.namespace=t.NS_W,o=s.children;break}if(o||r)if(r)for(var p=r.split(","),d=p.length,u=0;d>u;u++){var f=p[u].trim();f&&(-1==a.indexOf(f)&&a.push(f),this.stateCode.push(new t.EXState(f)))}else for(var g=o.length,u=0;g>u;u++){var y=o[u];if(1==y.nodeType){var v=[],m=y.attributes;if(m.stateGroups)for(var $=m.stateGroups.split(","),E=$.length,C=0;E>C;C++){var _=$[C].trim();_&&(-1==a.indexOf(_)&&a.push(_),v.push(_))}var f=m.name;-1==a.indexOf(f)&&a.push(f),this.stateCode.push(new t.EXState(f,v))}}}},e.prototype.createStates=function(e){var i=e.children;if(i)for(var n=i.length,r=0;n>r;r++){var o=i[r];if(1==o.nodeType&&!this.isInnerClass(o)&&(this.createStates(o),o.namespace!=t.NS_W&&o.localName))if(this.isProperty(o)){var s=o.localName,a=s.indexOf("."),h=o.children;if(-1==a||!h||0==h.length)continue;var l=s.substring(a+1);s=s.substring(0,a);var p=this.getClassNameOfNode(e),c=(t.exmlConfig.getPropertyType(s,p),h[0]),d=void 0;1==c.nodeType?(this.createFuncForNode(c),this.checkIdForState(c),d="this."+c.attributes.id):d=this.formatValue(s,c.text,e);var f=this.getStateByName(l,o),g=f.length;if(g>0)for(var y=0;g>y;y++){var v=f[y];v.addOverride(new t.EXSetProperty(e.attributes.id,s,d))}}else if(this.containsState(o)){var m=o.attributes,$=m.id;this.getClassNameOfNode(o);this.checkIdForState(o);var l=void 0,f=void 0,v=void 0;if(this.isStateNode(o)){var E="",C=o.parent;C.localName==u&&(C=C.parent),C&&C.parent&&this.isProperty(C)&&(C=C.parent),C&&C!=this.currentXML&&(E=C.attributes.id,this.checkIdForState(C));var _=this.findNearNodeId(o),b=[];if(m.includeIn)b=m.includeIn.split(",");else{for(var T=m.excludeFrom.split(","),S=T.length,y=0;S>y;y++){var x=T[y];this.getStateByName(x,o)}S=this.stateCode.length;for(var y=0;S>y;y++)v=this.stateCode[y],-1==T.indexOf(v.name)&&b.push(v.name)}for(var I=b.length,P=0;I>P;P++)if(l=b[P],f=this.getStateByName(l,o),f.length>0)for(var g=f.length,y=0;g>y;y++)v=f[y],v.addOverride(new t.EXAddItems($,E,_.position,_.relativeTo))}for(var L=Object.keys(m),N=L.length,O=0;N>O;O++){var A=L[O],d=m[A],a=A.indexOf(".");if(-1!=a){var B=A.substring(0,a);B=this.formatKey(B,d);var D=this.formatBinding(B,d,o);if(!D&&(d=this.formatValue(B,d,o),!d))continue;l=A.substr(a+1),f=this.getStateByName(l,o);var g=f.length;if(g>0)for(var y=0;g>y;y++)v=f[y],D?v.addOverride(new t.EXSetStateProperty($,B,D.templates,D.chainIndex)):v.addOverride(new t.EXSetProperty($,B,d))}}}}},e.prototype.checkIdForState=function(t){if(t&&!this.currentClass.getVariableByName(t.attributes.id)){this.createVarForNode(t);var e=t.attributes.id,i=e+"_i",n=this.currentClass.getFuncByName(i);if(n){var r="this."+e+" = t;",o=n.codeBlock;o&&(o.containsCodeLine(r)||o.addCodeLineAt(r,1))}}},e.prototype.getStateByName=function(t,e){for(var i=[],n=this.stateCode,r=n.length,o=0;r>o;o++){var s=n[o];if(s.name==t)-1==i.indexOf(s)&&i.push(s);else if(s.stateGroups.length>0){for(var a=!1,h=s.stateGroups.length,l=0;h>l;l++){var u=s.stateGroups[l];if(u==t){a=!0;break}}a&&-1==i.indexOf(s)&&i.push(s)}}return i},e.prototype.findNearNodeId=function(t){for(var e,i,n,r=t.parent,o="",s=-1,a=!1,h=r.children,l=h.length,u=0;l>u;u++){var p=h[u];this.isProperty(p)||(p==t?(a=!0,s=u):!a||n||this.isStateNode(p)||(n=p),a||this.isStateNode(p)||(i=p))}return 0==s?(e=0,{position:e,relativeTo:o}):s==l-1?(e=1,{position:e,relativeTo:o}):n&&(e=2,o=n.attributes.id)?(this.checkIdForState(n),{position:e,relativeTo:o}):{position:1,relativeTo:o}},e.prototype.getClassNameOfNode=function(e){var i=t.exmlConfig.getClassNameById(e.localName,e.namespace);return i},e}();t.EXMLParser=m,__reflect(m.prototype,"eui.sys.EXMLParser")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=null!==e&&e.apply(this,arguments)||this;return t.$selected=!1,t.$autoSelected=!0,t}return __extends(i,e),Object.defineProperty(i.prototype,"selected",{get:function(){return this.$selected},set:function(t){this.$setSelected(t)},enumerable:!0,configurable:!0}),i.prototype.$setSelected=function(e){return e=!!e,e===this.$selected?!1:(this.$selected=e,this.invalidateState(),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selected"),!0)},i.prototype.getCurrentState=function(){var t=e.prototype.getCurrentState.call(this);if(this.$selected){var i=t+"AndSelected",n=this.skin;return n&&n.hasState(i)?i:"disabled"==t?"disabled":"down"}return t},i.prototype.buttonReleased=function(){this.$autoSelected&&(this.selected=!this.$selected,this.dispatchEventWith(egret.Event.CHANGE))},i}(t.Button);t.ToggleButton=e,__reflect(e.prototype,"eui.ToggleButton"),t.registerBindable(e.prototype,"selected")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.$horizontalAlign="left",e.$verticalAlign="top",e.$gap=6,e.$paddingLeft=0,e.$paddingRight=0,e.$paddingTop=0,e.$paddingBottom=0,e.elementSizeTable=[],e.startIndex=-1,e.endIndex=-1,e.indexInViewCalculated=!1,e.maxElementSize=0,e}return __extends(e,t),Object.defineProperty(e.prototype,"horizontalAlign",{get:function(){return this.$horizontalAlign},set:function(t){this.$horizontalAlign!=t&&(this.$horizontalAlign=t,this.$target&&this.$target.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"verticalAlign",{get:function(){return this.$verticalAlign},set:function(t){this.$verticalAlign!=t&&(this.$verticalAlign=t,this.$target&&this.$target.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"gap",{get:function(){return this.$gap},set:function(t){t=+t||0,this.$gap!==t&&(this.$gap=t,this.invalidateTargetLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"paddingLeft",{get:function(){return this.$paddingLeft},set:function(t){t=+t||0,this.$paddingLeft!==t&&(this.$paddingLeft=t,this.invalidateTargetLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"paddingRight",{get:function(){return this.$paddingRight},set:function(t){t=+t||0,this.$paddingRight!==t&&(this.$paddingRight=t,this.invalidateTargetLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"paddingTop",{get:function(){return this.$paddingTop},set:function(t){t=+t||0,this.$paddingTop!==t&&(this.$paddingTop=t,this.invalidateTargetLayout())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"paddingBottom",{get:function(){return this.$paddingBottom},set:function(t){t=+t||0,this.$paddingBottom!==t&&(this.$paddingBottom=t,this.invalidateTargetLayout())},enumerable:!0,configurable:!0}),e.prototype.invalidateTargetLayout=function(){var t=this.$target;t&&(t.invalidateSize(),t.invalidateDisplayList())},e.prototype.measure=function(){this.$target&&(this.$useVirtualLayout?this.measureVirtual():this.measureReal())},e.prototype.measureReal=function(){},e.prototype.measureVirtual=function(){},e.prototype.updateDisplayList=function(t,e){var i=this.$target;if(i)return 0==i.numElements?void i.setContentSize(Math.ceil(this.$paddingLeft+this.$paddingRight),Math.ceil(this.$paddingTop+this.$paddingBottom)):void(this.$useVirtualLayout?this.updateDisplayListVirtual(t,e):this.updateDisplayListReal(t,e))},e.prototype.getStartPosition=function(t){return 0},e.prototype.getElementSize=function(t){return 0},e.prototype.getElementTotalSize=function(){return 0},e.prototype.elementRemoved=function(e){this.$useVirtualLayout&&(t.prototype.elementRemoved.call(this,e),this.elementSizeTable.splice(e,1))},e.prototype.clearVirtualLayoutCache=function(){this.$useVirtualLayout&&(this.elementSizeTable=[],this.maxElementSize=0)},e.prototype.findIndexAt=function(t,e,i){var n=.5*(e+i)|0,r=this.getStartPosition(n),o=this.getElementSize(n);return t>=r&&tt?this.findIndexAt(t,e,Math.max(e,n-1)):this.findIndexAt(t,Math.min(n+1,i),i)},e.prototype.scrollPositionChanged=function(){if(t.prototype.scrollPositionChanged.call(this),this.$useVirtualLayout){var e=this.getIndexInView();e&&(this.indexInViewCalculated=!0,this.target.invalidateDisplayList())}},e.prototype.getIndexInView=function(){return!1},e.prototype.updateDisplayListVirtual=function(t,e){},e.prototype.updateDisplayListReal=function(t,e){},e.prototype.flexChildrenProportionally=function(t,e,i,n){var r,o=n.length;do{r=!0;var s=e-t*i/100;s>0?e-=s:s=0;for(var a=e/i,h=0;o>h;h++){var l=n[h],u=l.percent*a;if(u=p?s-=p:(e-=p-s,s=0),r=!1;break}if(u>l.max){var c=l.max;l.size=c,n[h]=n[--o],n[o]=l,i-=l.percent,s>=c?s-=c:(e-=c-s,s=0),r=!1;break}l.size=u}}while(!r)},e}(t.LayoutBase);t.LinearLayoutBase=e,__reflect(e.prototype,"eui.LinearLayoutBase")}(eui||(eui={})),function(t){var e;!function(t){var e=function(){function t(){this.layoutElement=null,this.size=0,this.percent=0/0,this.min=0/0,this.max=0/0}return t}();t.ChildInfo=e,__reflect(e.prototype,"eui.sys.ChildInfo")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){return t.call(this)||this}return __extends(e,t),e.prototype.pointToValue=function(t,e){if(!this.thumb||!this.track)return 0;var i=this.$Range,n=i[0]-i[2],r=this.getThumbRange();return i[2]+(0!=r?t/r*n:0)},e.prototype.getThumbRange=function(){var t=egret.$TempRectangle;this.track.getLayoutBounds(t);var e=t.width;return this.thumb.getLayoutBounds(t),e-t.width},e.prototype.updateSkinDisplayList=function(){if(this.thumb&&this.track){var t=this.$Range,e=this.getThumbRange(),i=t[0]-t[2],n=i>0?(this.pendingValue-t[2])/i*e:0,r=this.track.localToGlobal(n,0,egret.$TempPoint),o=r.x,s=r.y,a=this.thumb.$parent.globalToLocal(o,s,egret.$TempPoint).x,h=egret.$TempRectangle;if(this.thumb.getLayoutBounds(h),this.thumb.setLayoutBoundsPosition(Math.round(a),h.y),this.trackHighlight&&this.trackHighlight.$parent){var l=this.trackHighlight.$parent.globalToLocal(o,s,egret.$TempPoint).x-n;this.trackHighlight.x=Math.round(l),this.trackHighlight.width=Math.round(n)}}},e}(t.SliderBase);t.HSlider=e,__reflect(e.prototype,"eui.HSlider")}(eui||(eui={}));var eui;!function(t){var e=[],i={},n={},r=function(){function t(){}return t.prototype.getAsset=function(t,r,o){var s=i[t];if(s)return void s.push([r,o]);var a=e.pop();a||(a=new egret.ImageLoader),i[t]=[[r,o]],n[a.$hashCode]=t,a.addEventListener(egret.Event.COMPLETE,this.onLoadFinish,this),a.addEventListener(egret.IOErrorEvent.IO_ERROR,this.onLoadFinish,this),a.load(t)},t.prototype.onLoadFinish=function(t){var r=t.currentTarget;r.removeEventListener(egret.Event.COMPLETE,this.onLoadFinish,this),r.removeEventListener(egret.IOErrorEvent.IO_ERROR,this.onLoadFinish,this);var o;t.$type==egret.Event.COMPLETE&&(o=new egret.Texture,o._setBitmapData(r.data),r.data=null),e.push(r);var s=n[r.$hashCode];delete n[r.$hashCode];var a=i[s];delete i[s];for(var h=a.length,l=0;h>l;l++){var u=a[l];u[0].call(u[1],o,s)}},t}();t.DefaultAssetAdapter=r,__reflect(r.prototype,"eui.DefaultAssetAdapter",["eui.IAssetAdapter"])}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(t){var i=e.call(this)||this;return i.sourceChanged=!1,i._source=null,i.initializeUIValues(),t&&(i.source=t),i}return __extends(i,e),Object.defineProperty(i.prototype,"scale9Grid",{get:function(){return this.$scale9Grid},set:function(t){this.$setScale9Grid(t),this.invalidateDisplayList()},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"fillMode",{get:function(){return this.$fillMode},set:function(t){t!=this.$fillMode&&(e.prototype.$setFillMode.call(this,t),this.invalidateDisplayList())},enumerable:!0,configurable:!0}),i.prototype.$setFillMode=function(t){var i=e.prototype.$setFillMode.call(this,t);return this.invalidateDisplayList(),i},Object.defineProperty(i.prototype,"source",{get:function(){return this._source},set:function(t){t!=this._source&&(this._source=t,this.$stage?this.parseSource():(this.sourceChanged=!0,this.invalidateProperties()))},enumerable:!0,configurable:!0}),i.prototype.$setTexture=function(t){if(t==this.$texture)return!1;var i=e.prototype.$setTexture.call(this,t);return this.sourceChanged=!1,this.invalidateSize(),this.invalidateDisplayList(),i},i.prototype.parseSource=function(){this.sourceChanged=!1;var e=this._source;e&&"string"==typeof e?t.getAssets(this._source,function(t){e===this._source&&egret.is(t,"egret.Texture")&&(this.$setTexture(t),t&&this.dispatchEventWith(egret.Event.COMPLETE))},this):this.$setTexture(e)},i.prototype.$measureContentBounds=function(t){var e=this.$texture;if(e){var i=this.$UIComponent,n=i[10],r=i[11];if(isNaN(n)||isNaN(r))return void t.setEmpty();"clip"==this.$fillMode&&(n>e.$getTextureWidth()&&(n=e.$getTextureWidth()),r>e.$getTextureHeight()&&(r=e.$getTextureHeight())),t.setTo(0,0,n,r)}else t.setEmpty()},i.prototype.createChildren=function(){this.sourceChanged&&this.parseSource()},i.prototype.setActualSize=function(i,n){t.sys.UIComponentImpl.prototype.setActualSize.call(this,i,n),e.prototype.$setWidth.call(this,i),e.prototype.$setHeight.call(this,n)},i.prototype.childrenCreated=function(){},i.prototype.commitProperties=function(){t.sys.UIComponentImpl.prototype.commitProperties.call(this),this.sourceChanged&&this.parseSource()},i.prototype.measure=function(){var t=this.$texture;t?this.setMeasuredSize(t.$getTextureWidth(),t.$getTextureHeight()):this.setMeasuredSize(0,0)},i.prototype.updateDisplayList=function(t,e){this.$renderDirty=!0},i.prototype.invalidateParentLayout=function(){},i.prototype.setMeasuredSize=function(t,e){},i.prototype.invalidateProperties=function(){},i.prototype.validateProperties=function(){},i.prototype.invalidateSize=function(){},i.prototype.validateSize=function(t){},i.prototype.invalidateDisplayList=function(){},i.prototype.validateDisplayList=function(){},i.prototype.validateNow=function(){},i.prototype.setLayoutBoundsSize=function(t,e){},i.prototype.setLayoutBoundsPosition=function(t,e){},i.prototype.getLayoutBounds=function(t){},i.prototype.getPreferredBounds=function(t){},i}(egret.Bitmap);t.Image=e,__reflect(e.prototype,"eui.Image",["eui.UIComponent","egret.DisplayObject"]),t.sys.implementUIComponent(e,egret.Bitmap),t.registerProperty(e,"scale9Grid","egret.Rectangle")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t._data=null,t._selected=!1,t.itemIndex=-1,t.touchCaptured=!1,t.addEventListener(egret.TouchEvent.TOUCH_BEGIN,t.onTouchBegin,t),t}return __extends(i,e),Object.defineProperty(i.prototype,"data",{get:function(){return this._data},set:function(e){this._data=e,t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"data"),this.dataChanged()},enumerable:!0,configurable:!0}),i.prototype.dataChanged=function(){},Object.defineProperty(i.prototype,"selected",{get:function(){return this._selected},set:function(t){this._selected!=t&&(this._selected=t,this.invalidateState())},enumerable:!0,configurable:!0}),i.prototype.onTouchCancle=function(t){this.touchCaptured=!1;var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),e.removeEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.invalidateState()},i.prototype.onTouchBegin=function(t){this.$stage&&(this.$stage.addEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),this.$stage.addEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.touchCaptured=!0,this.invalidateState(),t.updateAfterEvent())},i.prototype.onStageTouchEnd=function(t){var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this),e.removeEventListener(egret.TouchEvent.TOUCH_END,this.onStageTouchEnd,this),this.touchCaptured=!1,this.invalidateState()},i.prototype.getCurrentState=function(){var t="up";if(this.enabled||(t="disabled"),this.touchCaptured&&(t="down"),this._selected){var e=t+"AndSelected",i=this.skin;return i&&i.hasState(e)?e:"disabled"==t?"disabled":"down"}return t},i}(t.Component);t.ItemRenderer=e,__reflect(e.prototype,"eui.ItemRenderer",["eui.IItemRenderer"]),t.registerBindable(e.prototype,"data")}(eui||(eui={}));var eui;!function(t){var e=t.sys.UIComponentImpl,i=function(i){function n(t){var e=i.call(this)||this;return e.$styleSetMap={fontFamily:!0,size:!0,bold:!0,italic:!0,textAlign:!0,verticalAlign:!0,lineSpacing:!0,textColor:!0,wordWrap:!0,displayAsPassword:!0,strokeColor:!0,stroke:!0,maxChars:!0,multiline:!0,border:!0,borderColor:!0,background:!0,backgroundColor:!0},e.$revertStyle={},e.$style=null,e.$changeFromStyle=!1,e._widthConstraint=0/0,e.initializeUIValues(),e.text=t,e}return __extends(n,i),Object.defineProperty(n.prototype,"style",{get:function(){return this.$style},set:function(t){this.$setStyle(t)},enumerable:!0,configurable:!0}),n.prototype.$setStyle=function(t){if(this.$style!=t){this.$style=t;var e=egret.getImplementation("eui.Theme");if(e){this.$changeFromStyle=!0;for(var i in this.$revertStyle)this[i]=this.$revertStyle[i];if(this.$revertStyle={},null==t)return void(this.$changeFromStyle=!1);for(var n=t.split(","),r=0;r=0&&e0?this._proposedSelectedIndices[0]:-1:this.$getSelectedIndex()},set:function(t){this.setSelectedIndex(t)},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"selectedItems",{get:function(){var t=[],e=this.selectedIndices;if(e)for(var i=e.length,n=0;i>n;n++)t[n]=this.$dataProvider.getItemAt(e[n]);return t},set:function(t){var e=[];if(t)for(var i=t.length,n=0;i>n;n++){var r=this.$dataProvider.getItemIndex(t[n]);if(-1!=r&&e.splice(0,0,r),-1==r){e=[];break}}this.setSelectedIndices(e,!1)},enumerable:!0,configurable:!0}),i.prototype.setSelectedIndices=function(t,e){var i=this.$ListBase;e&&(i[4]=i[4]||e),t?this._proposedSelectedIndices=t:this._proposedSelectedIndices=[],this.invalidateProperties()},i.prototype.commitProperties=function(){e.prototype.commitProperties.call(this),this._proposedSelectedIndices&&this.commitSelection()},i.prototype.commitSelection=function(i){void 0===i&&(i=!0);var n=this.$ListBase,r=n[3];if(this._proposedSelectedIndices){if(this._proposedSelectedIndices=this._proposedSelectedIndices.filter(this.isValidIndex),!this.allowMultipleSelection&&this._proposedSelectedIndices.length>0){var o=[];o.push(this._proposedSelectedIndices[0]),this._proposedSelectedIndices=o}this._proposedSelectedIndices.length>0?n[2]=this._proposedSelectedIndices[0]:n[2]=-1}var s=e.prototype.commitSelection.call(this,!1);if(!s)return this._proposedSelectedIndices=null,!1;var a=this.$getSelectedIndex();return a>t.ListBase.NO_SELECTION&&(this._proposedSelectedIndices?-1==this._proposedSelectedIndices.indexOf(a)&&this._proposedSelectedIndices.push(a):this._proposedSelectedIndices=[a]),this._proposedSelectedIndices&&(-1!=this._proposedSelectedIndices.indexOf(r)&&this.itemSelected(r,!0),this.commitMultipleSelection()),i&&s&&(n[4]&&(this.dispatchEventWith(egret.Event.CHANGE),n[4]=!1),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedIndex"),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedItem")),s +},i.prototype.commitMultipleSelection=function(){var t,e,i=[],n=[],r=this._selectedIndices,o=this._proposedSelectedIndices;if(r.length>0&&o.length>0){for(e=o.length,t=0;e>t;t++)-1==r.indexOf(o[t])&&n.push(o[t]);for(e=r.length,t=0;e>t;t++)-1==o.indexOf(r[t])&&i.push(r[t])}else r.length>0?i=r:o.length>0&&(n=o);if(this._selectedIndices=o,i.length>0)for(e=i.length,t=0;e>t;t++)this.itemSelected(i[t],!1);if(n.length>0)for(e=n.length,t=0;e>t;t++)this.itemSelected(n[t],!0);this._proposedSelectedIndices=null},i.prototype.$isItemIndexSelected=function(t){return this.allowMultipleSelection?-1!=this._selectedIndices.indexOf(t):e.prototype.$isItemIndexSelected.call(this,t)},i.prototype.dataProviderRefreshed=function(){this.allowMultipleSelection||e.prototype.dataProviderRefreshed.call(this)},i.prototype.calculateSelectedIndices=function(t){var e=[],i=this._selectedIndices,n=i.length;if(n>0){if(1==n&&i[0]==t)return this.$ListBase[0]?(e.splice(0,0,i[0]),e):e;for(var r=!1,o=0;n>o;o++)i[o]==t?r=!0:i[o]!=t&&e.splice(0,0,i[o]);return r||e.splice(0,0,t),e}return e.splice(0,0,t),e},i.prototype.onRendererTouchEnd=function(i){if(this.allowMultipleSelection){var n=i.currentTarget,r=this.$ListBase[7];if(n!=r)return;this.setSelectedIndices(this.calculateSelectedIndices(n.itemIndex),!0),t.ItemTapEvent.dispatchItemTapEvent(this,t.ItemTapEvent.ITEM_TAP,n)}else e.prototype.onRendererTouchEnd.call(this,i)},i}(t.ListBase);t.List=e,__reflect(e.prototype,"eui.List")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.closeButton=null,t.moveArea=null,t.titleDisplay=null,t._title="",t.offsetPointX=0,t.offsetPointY=0,t.addEventListener(egret.TouchEvent.TOUCH_BEGIN,t.onWindowTouchBegin,t,!1,100),t}return __extends(i,e),i.prototype.onWindowTouchBegin=function(t){this.$parent.addChild(this)},Object.defineProperty(i.prototype,"elementsContent",{set:function(t){if(t)for(var e=t.length,i=0;e>i;i++)this.addChild(t[i])},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"title",{get:function(){return this._title},set:function(t){this._title=t,this.titleDisplay&&(this.titleDisplay.text=this.title)},enumerable:!0,configurable:!0}),i.prototype.partAdded=function(t,i){e.prototype.partAdded.call(this,t,i),i==this.titleDisplay?this.titleDisplay.text=this._title:i==this.moveArea?this.moveArea.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBegin,this):i==this.closeButton&&this.closeButton.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onCloseButtonClick,this)},i.prototype.partRemoved=function(t,i){e.prototype.partRemoved.call(this,t,i),i==this.moveArea?this.moveArea.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBegin,this):i==this.closeButton&&this.closeButton.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onCloseButtonClick,this)},i.prototype.onCloseButtonClick=function(e){t.UIEvent.dispatchUIEvent(this,t.UIEvent.CLOSING,!0,!0)&&this.close()},i.prototype.close=function(){this.$parent&&this.$parent.removeChild(this)},i.prototype.onTouchBegin=function(t){this.$includeInLayout=!1,this.offsetPointX=this.x-t.$stageX,this.offsetPointY=this.y-t.$stageY,this.$stage.addEventListener(egret.TouchEvent.TOUCH_MOVE,this.onTouchMove,this),this.$stage.addEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEnd,this)},i.prototype.onTouchMove=function(t){this.x=t.$stageX+this.offsetPointX,this.y=t.$stageY+this.offsetPointY},i.prototype.onTouchEnd=function(t){var e=t.$currentTarget;e.removeEventListener(egret.TouchEvent.TOUCH_MOVE,this.onTouchMove,this),e.removeEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEnd,this)},i}(t.Component);t.Panel=e,__reflect(e.prototype,"eui.Panel"),t.registerProperty(e,"elementsContent","Array",!0)}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i.thumb=null,i.labelDisplay=null,i._labelFunction=null,i._slideDuration=500,i._direction=t.Direction.LTR,i.slideToValue=0,i.animationValue=0,i.thumbInitX=0,i.thumbInitY=0,i.animation=new t.sys.Animation(i.animationUpdateHandler,i),i}return __extends(i,e),Object.defineProperty(i.prototype,"labelFunction",{get:function(){return this._labelFunction},set:function(t){this._labelFunction!=t&&(this._labelFunction=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),i.prototype.valueToLabel=function(t,e){return null!=this.labelFunction?this._labelFunction(t,e):t+" / "+e},Object.defineProperty(i.prototype,"slideDuration",{get:function(){return this._slideDuration},set:function(t){t=0|+t,this._slideDuration!==t&&(this._slideDuration=t,this.animation.isPlaying&&(this.animation.stop(),this.setValue(this.slideToValue)))},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"direction",{get:function(){return this._direction},set:function(t){this._direction!=t&&(this.thumb&&(this.thumb.x=this.thumbInitX),this.thumb&&(this.thumb.y=this.thumbInitY),this._direction=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),i.prototype.$setValue=function(t){if(this.value===t)return!1;var i=this.$Range,n=e.prototype.$setValue.call(this,t);if(this._slideDuration>0&&this.$stage){this.validateProperties();var r=this.animation;if(r.isPlaying&&(this.animationValue=this.slideToValue,this.invalidateDisplayList(),r.stop()),this.slideToValue=this.nearestValidValue(t,i[7]),this.slideToValue===this.animationValue)return n;var o=this._slideDuration*(Math.abs(this.animationValue-this.slideToValue)/(i[0]-i[2]));r.duration=o===1/0?0:o,r.from=this.animationValue,r.to=this.slideToValue,r.play()}else this.animationValue=this.value;return n},i.prototype.animationUpdateHandler=function(t){var e=this.$Range,i=this.nearestValidValue(t.currentValue,e[7]);this.animationValue=Math.min(e[0],Math.max(e[2],i)),this.invalidateDisplayList()},i.prototype.partAdded=function(t,i){e.prototype.partAdded.call(this,t,i),i===this.thumb&&(this.thumb.x&&(this.thumbInitX=this.thumb.x),this.thumb.y&&(this.thumbInitY=this.thumb.y),this.thumb.addEventListener(egret.Event.RESIZE,this.onThumbResize,this))},i.prototype.partRemoved=function(t,i){e.prototype.partRemoved.call(this,t,i),i===this.thumb&&this.thumb.removeEventListener(egret.Event.RESIZE,this.onThumbResize,this)},i.prototype.onThumbResize=function(t){this.updateSkinDisplayList()},i.prototype.updateSkinDisplayList=function(){var e=this.animation.isPlaying?this.animationValue:this.value,i=this.maximum,n=this.thumb;if(n){var r=n.width,o=n.height,s=Math.round(e/i*r);(0>s||s===1/0)&&(s=0);var a=Math.round(e/i*o);(0>a||a===1/0)&&(a=0);var h=n.$scrollRect;h||(h=egret.$TempRectangle),h.setTo(0,0,r,o);var l=n.x-h.x,u=n.y-h.y;switch(this._direction){case t.Direction.LTR:h.width=s,n.x=l;break;case t.Direction.RTL:h.width=s,h.x=r-s,n.x=h.x;break;case t.Direction.TTB:h.height=a,n.y=u;break;case t.Direction.BTT:h.height=a,h.y=o-a,n.y=h.y}n.scrollRect=h}this.labelDisplay&&(this.labelDisplay.text=this.valueToLabel(e,i))},i}(t.Range);t.ProgressBar=e,__reflect(e.prototype,"eui.ProgressBar")}(eui||(eui={}));var eui;!function(t){var e={},i=function(i){function n(){var t=i.call(this)||this;return t.$indexNumber=0,t.$radioButtonGroup=null,t._group=null,t.groupChanged=!1,t._groupName="radioGroup",t._value=null,t.groupName="radioGroup",t}return __extends(n,i),Object.defineProperty(n.prototype,"enabled",{get:function(){return this.$Component[3]?!this.$radioButtonGroup||this.$radioButtonGroup.$enabled:!1},set:function(t){this.$setEnabled(t)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"group",{get:function(){if(!this._group&&this._groupName){var i=e[this._groupName];i||(i=new t.RadioButtonGroup,i.$name=this._groupName,e[this._groupName]=i),this._group=i}return this._group},set:function(t){this._group!=t&&(this.$radioButtonGroup&&this.$radioButtonGroup.$removeInstance(this,!1),this._group=t,this._groupName=t?this.group.$name:"radioGroup",this.groupChanged=!0,this.invalidateProperties(),this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"groupName",{get:function(){return this._groupName},set:function(t){t&&""!=t&&(this._groupName=t,this.$radioButtonGroup&&this.$radioButtonGroup.$removeInstance(this,!1),this._group=null,this.groupChanged=!0,this.invalidateProperties(),this.invalidateDisplayList())},enumerable:!0,configurable:!0}),n.prototype.$setSelected=function(t){var e=i.prototype.$setSelected.call(this,t);return this.invalidateDisplayList(),e},Object.defineProperty(n.prototype,"value",{get:function(){return this._value},set:function(e){this._value!=e&&(this._value=e,this.$selected&&this.group&&t.PropertyEvent.dispatchPropertyEvent(this.group,t.PropertyEvent.PROPERTY_CHANGE,"selectedValue"))},enumerable:!0,configurable:!0}),n.prototype.commitProperties=function(){this.groupChanged&&(this.addToGroup(),this.groupChanged=!1),i.prototype.commitProperties.call(this)},n.prototype.updateDisplayList=function(t,e){i.prototype.updateDisplayList.call(this,t,e),this.group&&(this.$selected?this._group.$setSelection(this,!1):this.group.selection==this&&this._group.$setSelection(null,!1))},n.prototype.buttonReleased=function(){this.enabled&&!this.selected&&(this.$radioButtonGroup||this.addToGroup(),i.prototype.buttonReleased.call(this),this.group.$setSelection(this,!0))},n.prototype.addToGroup=function(){var t=this.group;return t&&t.$addInstance(this),t},n}(t.ToggleButton);t.RadioButton=i,__reflect(i.prototype,"eui.RadioButton")}(eui||(eui={}));var eui;!function(t){function e(t,i){var n=t.parent,r=i.parent;if(!n||!r)return 0;var o=t.$nestLevel,s=i.$nestLevel,a=0,h=0;return n==r&&(a=n.getChildIndex(t),h=r.getChildIndex(i)),o>s||a>h?1:s>o||h>a?-1:t==i?0:e(n,r)}var i=0,n=function(n){function r(){var t=n.call(this)||this;return t.$name=null,t.radioButtons=[],t.$enabled=!0,t._selectedValue=null,t._selection=null,t.$name="_radioButtonGroup"+i++,t}return __extends(r,n),r.prototype.getRadioButtonAt=function(t){return this.radioButtons[t]},Object.defineProperty(r.prototype,"enabled",{get:function(){return this.$enabled},set:function(t){if(t=!!t,this.$enabled!==t){this.$enabled=t;for(var e=this.radioButtons,i=e.length,n=0;i>n;n++)e[n].invalidateState()}},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"numRadioButtons",{get:function(){return this.radioButtons.length},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"selectedValue",{get:function(){return this.selection?null!=this.selection.value?this.selection.value:this.selection.label:null},set:function(e){if(this._selectedValue=e,null==e)return void this.$setSelection(null,!1);for(var i=this.numRadioButtons,n=0;i>n;n++){var r=this.radioButtons[n];if(r.value==e||r.label==e){this.changeSelection(n,!1),this._selectedValue=null,t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedValue");break}}},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"selection",{get:function(){return this._selection},set:function(t){this._selection!=t&&this.$setSelection(t,!1)},enumerable:!0,configurable:!0}),r.prototype.$addInstance=function(t){t.addEventListener(egret.Event.REMOVED_FROM_STAGE,this.removedHandler,this);var i=this.radioButtons;i.push(t),i.sort(e);for(var n=i.length,r=0;n>r;r++)i[r].$indexNumber=r;this._selectedValue&&(this.selectedValue=this._selectedValue),1==t.selected&&(this.selection=t),t.$radioButtonGroup=this,t.invalidateState()},r.prototype.$removeInstance=function(t,e){if(t)for(var i=!1,n=this.radioButtons,r=n.length,o=0;r>o;o++){var s=n[o];i?s.$indexNumber=s.$indexNumber-1:s==t&&(e&&t.addEventListener(egret.Event.ADDED_TO_STAGE,this.addedHandler,this),t==this._selection&&(this._selection=null),t.$radioButtonGroup=null,t.invalidateState(),this.radioButtons.splice(o,1),i=!0,o--,r--)}},r.prototype.$setSelection=function(e,i){if(this._selection==e)return!1;if(e){for(var n=this.numRadioButtons,r=0;n>r;r++)if(e==this.getRadioButtonAt(r)){this.changeSelection(r,i);break}}else this._selection&&(this._selection.selected=!1,this._selection=null,i&&this.dispatchEventWith(egret.Event.CHANGE));return t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"selectedValue"),!0},r.prototype.changeSelection=function(t,e){var i=this.getRadioButtonAt(t);i&&i!=this._selection&&(this._selection&&(this._selection.selected=!1),this._selection=i,this._selection.selected=!0,e&&this.dispatchEventWith(egret.Event.CHANGE))},r.prototype.addedHandler=function(t){var e=t.target;e==t.currentTarget&&(e.removeEventListener(egret.Event.ADDED_TO_STAGE,this.addedHandler,this),this.$addInstance(e))},r.prototype.removedHandler=function(t){var e=t.target;e==t.currentTarget&&(e.removeEventListener(egret.Event.REMOVED_FROM_STAGE,this.removedHandler,this),this.$removeInstance(e,!0))},r}(egret.EventDispatcher);t.RadioButtonGroup=n,__reflect(n.prototype,"eui.RadioButtonGroup"),t.registerBindable(n.prototype,"selectedValue")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(e,i,n){var r=t.call(this)||this;return r.$fillColor=0,r.$fillAlpha=1,r.$strokeColor=4473924,r.$strokeAlpha=1,r.$strokeWeight=0,r.$ellipseWidth=0,r.$ellipseHeight=0,r.touchChildren=!1,r.$graphics=new egret.Graphics,r.$graphics.$setTarget(r),r.width=e,r.height=i,r.fillColor=n,r}return __extends(e,t),e.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(8)},Object.defineProperty(e.prototype,"graphics",{get:function(){return this.$graphics},enumerable:!0,configurable:!0}),e.prototype.$measureContentBounds=function(t){this.$graphics&&t.setTo(0,0,this.width,this.height)},Object.defineProperty(e.prototype,"fillColor",{get:function(){return this.$fillColor},set:function(t){void 0!=t&&this.$fillColor!=t&&(this.$fillColor=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"fillAlpha",{get:function(){return this.$fillAlpha},set:function(t){this.$fillAlpha!=t&&(this.$fillAlpha=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"strokeColor",{get:function(){return this.$strokeColor},set:function(t){this.$strokeColor!=t&&(this.$strokeColor=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"strokeAlpha",{get:function(){return this.$strokeAlpha},set:function(t){this.$strokeAlpha!=t&&(this.$strokeAlpha=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"strokeWeight",{get:function(){return this.$strokeWeight},set:function(t){this.$strokeWeight!=t&&(this.$strokeWeight=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ellipseWidth",{get:function(){return this.$ellipseWidth},set:function(t){this.$ellipseWidth!=t&&(this.$ellipseWidth=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"ellipseHeight",{get:function(){return this.$ellipseHeight},set:function(t){this.$ellipseHeight!=t&&(this.$ellipseHeight=t,this.invalidateDisplayList())},enumerable:!0,configurable:!0}),e.prototype.updateDisplayList=function(t,e){var i=this.graphics;i.clear(),this.$strokeWeight>0&&(i.beginFill(this.$fillColor,0),i.lineStyle(this.$strokeWeight,this.$strokeColor,this.$strokeAlpha,!0,"normal","square","miter"),0==this.$ellipseWidth&&0==this.$ellipseHeight?i.drawRect(this.$strokeWeight/2,this.$strokeWeight/2,t-this.$strokeWeight,e-this.$strokeWeight):i.drawRoundRect(this.$strokeWeight/2,this.$strokeWeight/2,t-this.$strokeWeight,e-this.$strokeWeight,this.$ellipseWidth,this.$ellipseHeight),i.endFill()),i.beginFill(this.$fillColor,this.$fillAlpha),i.lineStyle(this.$strokeWeight,this.$strokeColor,0,!0,"normal","square","miter"),0==this.$ellipseWidth&&0==this.$ellipseHeight?i.drawRect(this.$strokeWeight,this.$strokeWeight,t-2*this.$strokeWeight,e-2*this.$strokeWeight):i.drawRoundRect(this.$strokeWeight,this.$strokeWeight,t-2*this.$strokeWeight,e-2*this.$strokeWeight,this.$ellipseWidth,this.$ellipseHeight),i.endFill()},e.prototype.$onRemoveFromStage=function(){t.prototype.$onRemoveFromStage.call(this),this.$graphics&&this.$graphics.$onRemoveFromStage()},e}(t.Component);t.Rect=e,__reflect(e.prototype,"eui.Rect")}(eui||(eui={}));var eui;!function(t){var e,i=function(i){function n(){var e=i.call(this)||this;e.$bounces=!0,e.horizontalScrollBar=null,e.verticalScrollBar=null;var n=new t.sys.TouchScroll(e.horizontalUpdateHandler,e.horizontalEndHandler,e),r=new t.sys.TouchScroll(e.verticalUpdateHandler,e.verticalEndHanlder,e);return e.$Scroller={0:"auto",1:"auto",2:null,3:0,4:0,5:!1,6:!1,7:!1,8:n,9:r,10:null,11:!1,12:!1},e}return __extends(n,i),Object.defineProperty(n.prototype,"bounces",{get:function(){return this.$bounces},set:function(t){this.$bounces=!!t;var e=this.$Scroller[8];e&&(e.$bounces=this.$bounces);var i=this.$Scroller[9];i&&(i.$bounces=this.$bounces)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"throwSpeed",{get:function(){return this.$Scroller[8].$scrollFactor},set:function(t){t=+t,0>t&&(t=0),this.$Scroller[8].$scrollFactor=t,this.$Scroller[9].$scrollFactor=t},enumerable:!0,configurable:!0}),n.prototype.$getThrowInfo=function(i,n){return e?(e.currentPos=i,e.toPos=n):e=new t.ScrollerThrowEvent(t.ScrollerThrowEvent.THROW,!1,!1,i,n),e},Object.defineProperty(n.prototype,"scrollPolicyV",{get:function(){return this.$Scroller[0]},set:function(t){var e=this.$Scroller;e[0]!=t&&(e[0]=t,this.checkScrollPolicy())},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"scrollPolicyH",{get:function(){return this.$Scroller[1]},set:function(t){var e=this.$Scroller;e[1]!=t&&(e[1]=t,this.checkScrollPolicy())},enumerable:!0,configurable:!0}),n.prototype.stopAnimation=function(){var e=this.$Scroller,i=e[9],n=e[8];i.animation.isPlaying?t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END):n.animation.isPlaying&&t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END),i.stop(),n.stop();var r=this.verticalScrollBar,o=this.horizontalScrollBar;r&&r.autoVisibility&&(r.visible=!1),o&&o.autoVisibility&&(o.visible=!1)},Object.defineProperty(n.prototype,"viewport",{get:function(){return this.$Scroller[10]},set:function(t){var e=this.$Scroller;t!=e[10]&&(this.uninstallViewport(),e[10]=t,e[11]=!1,this.installViewport())},enumerable:!0,configurable:!0}),n.prototype.installViewport=function(){var t=this.viewport;t&&(this.addChildAt(t,0),t.scrollEnabled=!0,t.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBeginCapture,this,!0),t.addEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEndCapture,this,!0),t.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onTouchTapCapture,this,!0),t.addEventListener(egret.Event.REMOVED,this.onViewPortRemove,this)),this.horizontalScrollBar&&(this.horizontalScrollBar.viewport=t),this.verticalScrollBar&&(this.verticalScrollBar.viewport=t)},n.prototype.uninstallViewport=function(){this.horizontalScrollBar&&(this.horizontalScrollBar.viewport=null),this.verticalScrollBar&&(this.verticalScrollBar.viewport=null);var t=this.viewport;t&&(t.scrollEnabled=!1,t.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBeginCapture,this,!0),t.removeEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEndCapture,this,!0),t.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onTouchTapCapture,this,!0),t.removeEventListener(egret.Event.REMOVED,this.onViewPortRemove,this),0==this.$Scroller[11]&&this.removeChild(t))},n.prototype.onViewPortRemove=function(t){t.target==this.viewport&&(this.$Scroller[11]=!0,this.viewport=null)},n.prototype.setSkin=function(t){i.prototype.setSkin.call(this,t);var e=this.viewport;e&&this.addChildAt(e,0)},n.prototype.onTouchBeginCapture=function(t){if(this.$stage){this.$Scroller[12]=!1;var e=this.checkScrollPolicy();e&&this.onTouchBegin(t)}},n.prototype.onTouchEndCapture=function(t){this.$Scroller[12]&&(t.$bubbles=!1,this.dispatchBubbleEvent(t),t.$bubbles=!0,t.stopPropagation(),this.onTouchEnd(t))},n.prototype.onTouchTapCapture=function(t){this.$Scroller[12]&&(t.$bubbles=!1,this.dispatchBubbleEvent(t),t.$bubbles=!0,t.stopPropagation())},n.prototype.checkScrollPolicy=function(){var t=this.$Scroller,e=t[10];if(!e)return!1;var i,n=e.$UIComponent;switch(t[1]){case"auto":i=e.contentWidth>n[10]||0!==e.scrollH?!0:!1;break;case"on":i=!0;break;case"off":i=!1}t[6]=i;var r;switch(t[0]){case"auto":r=e.contentHeight>n[11]||0!==e.scrollV?!0:!1;break;case"on":r=!0;break;case"off":r=!1}return t[7]=r,i||r},n.prototype.onTouchBegin=function(t){if(!t.isDefaultPrevented()&&this.checkScrollPolicy()){this.downTarget=t.target;var e=this.$Scroller;this.stopAnimation(),e[3]=t.$stageX,e[4]=t.$stageY,e[6]&&e[8].start(t.$stageX),e[7]&&e[9].start(t.$stageY);var i=this.$stage;this.addEventListener(egret.TouchEvent.TOUCH_MOVE,this.onTouchMove,this),i.addEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEnd,this,!0),this.addEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancel,this),this.addEventListener(egret.Event.REMOVED_FROM_STAGE,this.onRemoveListeners,this),this.tempStage=i}},n.prototype.onTouchMove=function(e){if(!e.isDefaultPrevented()){var i=this.$Scroller;if(!i[5]){var r=void 0;r=Math.abs(i[3]-e.$stageX)h;h++)if(r[h]===e){a=h;break}r.splice(0,r.length-a+1),s=0,this.$dispatchPropagationEvent(i,r,s),egret.Event.release(i)}},n.prototype.dispatchCancelEvent=function(t){var e=this.$Scroller[10];if(e){var i=egret.Event.create(egret.TouchEvent,egret.TouchEvent.TOUCH_CANCEL,t.bubbles,t.cancelable);i.$initTo(t.$stageX,t.$stageY,t.touchPointID);var n=this.downTarget;i.$setTarget(n);for(var r=this.$getPropagationList(n),o=r.length,s=.5*r.length,a=-1,h=0;o>h;h++)if(r[h]===e){a=h;break}r.splice(0,a+1-2),r.splice(r.length-1-a+2,a+1-2),s-=a+1,this.$dispatchPropagationEvent(i,r,s),egret.Event.release(i)}},n.prototype.onTouchEnd=function(t){var e=this.$Scroller;e[5]=!1,this.onRemoveListeners();var i=e[10],n=i.$UIComponent;e[8].isStarted()&&e[8].finish(i.scrollH,i.contentWidth-n[10]),e[9].isStarted()&&e[9].finish(i.scrollV,i.contentHeight-n[11])},n.prototype.onRemoveListeners=function(){var t=this.tempStage||this.$stage;this.removeEventListener(egret.TouchEvent.TOUCH_MOVE,this.onTouchMove,this),t.removeEventListener(egret.TouchEvent.TOUCH_END,this.onTouchEnd,this,!0),t.removeEventListener(egret.TouchEvent.TOUCH_MOVE,this.onTouchMove,this),this.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancel,this),this.removeEventListener(egret.Event.REMOVED_FROM_STAGE,this.onRemoveListeners,this)},n.prototype.horizontalUpdateHandler=function(t){var e=this.$Scroller[10];e&&(e.scrollH=t),this.dispatchEventWith(egret.Event.CHANGE)},n.prototype.verticalUpdateHandler=function(t){var e=this.$Scroller[10];e&&(e.scrollV=t),this.dispatchEventWith(egret.Event.CHANGE)},n.prototype.horizontalEndHandler=function(){this.$Scroller[9].isPlaying()||this.onChangeEnd()},n.prototype.verticalEndHanlder=function(){this.$Scroller[8].isPlaying()||this.onChangeEnd()},n.prototype.onChangeEnd=function(){var e=this.$Scroller,i=this.horizontalScrollBar,n=this.verticalScrollBar;(i&&i.visible||n&&n.visible)&&(e[2]||(e[2]=new egret.Timer(200,1),e[2].addEventListener(egret.TimerEvent.TIMER_COMPLETE,this.onAutoHideTimer,this)),e[2].reset(),e[2].start()),t.UIEvent.dispatchUIEvent(this,t.UIEvent.CHANGE_END)},n.prototype.onAutoHideTimer=function(t){var e=this.horizontalScrollBar,i=this.verticalScrollBar;e&&e.autoVisibility&&(e.visible=!1),i&&i.autoVisibility&&(i.visible=!1)},n.prototype.updateDisplayList=function(t,e){i.prototype.updateDisplayList.call(this,t,e);var n=this.viewport;n&&(n.setLayoutBoundsSize(t,e),n.setLayoutBoundsPosition(0,0))},n.prototype.partAdded=function(t,e){i.prototype.partAdded.call(this,t,e),e==this.horizontalScrollBar?(this.horizontalScrollBar.touchChildren=!1,this.horizontalScrollBar.touchEnabled=!1,this.horizontalScrollBar.viewport=this.viewport,this.horizontalScrollBar.autoVisibility&&(this.horizontalScrollBar.visible=!1)):e==this.verticalScrollBar&&(this.verticalScrollBar.touchChildren=!1,this.verticalScrollBar.touchEnabled=!1,this.verticalScrollBar.viewport=this.viewport,this.verticalScrollBar.autoVisibility&&(this.verticalScrollBar.visible=!1))},n.scrollThreshold=5,n}(t.Component);t.Scroller=i,__reflect(i.prototype,"eui.Scroller"),t.registerProperty(i,"viewport","eui.IViewport",!0)}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var i=null!==e&&e.apply(this,arguments)||this;return i.maxWidth=1e5,i.minWidth=0,i.maxHeight=1e5,i.minHeight=0,i.width=0/0,i.height=0/0,i.$elementsContent=[],i._hostComponent=null,i.$stateValues=new t.sys.StateValues,i}return __extends(i,e),Object.defineProperty(i.prototype,"elementsContent",{set:function(t){this.$elementsContent=t},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"hostComponent",{get:function(){return this._hostComponent},set:function(e){if(this._hostComponent!=e){this._hostComponent&&this._hostComponent.removeEventListener(egret.Event.ADDED_TO_STAGE,this.onAddedToStage,this),this._hostComponent=e;var i=this.$stateValues;i.parent=e,e&&(this.commitCurrentState(),this.$stateValues.intialized||(e.$stage?this.initializeStates(e.$stage):e.once(egret.Event.ADDED_TO_STAGE,this.onAddedToStage,this))),t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"hostComponent")}},enumerable:!0,configurable:!0}),i.prototype.onAddedToStage=function(t){this.initializeStates(this._hostComponent.$stage)},i}(egret.EventDispatcher);t.Skin=e,__reflect(e.prototype,"eui.Skin"),t.sys.mixin(e,t.sys.StateClient),t.registerProperty(e,"elementsContent","Array",!0),t.registerProperty(e,"states","State[]"),t.registerBindable(e.prototype,"hostComponent")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var t=e.call(this)||this;return t.indexBeingUpdated=!1,t.requireSelection=!0,t.useVirtualLayout=!1,t}return __extends(i,e),i.prototype.createChildren=function(){if(!this.$layout){var i=new t.HorizontalLayout;i.gap=0,i.horizontalAlign=t.JustifyAlign.JUSTIFY,i.verticalAlign=t.JustifyAlign.CONTENT_JUSTIFY,this.$setLayout(i)}e.prototype.createChildren.call(this)},i.prototype.$setDataProvider=function(i){var n=this.$dataProvider;return n&&n instanceof t.ViewStack&&(n.removeEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.onViewStackIndexChange,this),this.removeEventListener(egret.Event.CHANGE,this.onIndexChanged,this)),i&&i instanceof t.ViewStack&&(i.addEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.onViewStackIndexChange,this),this.addEventListener(egret.Event.CHANGE,this.onIndexChanged,this)),e.prototype.$setDataProvider.call(this,i)},i.prototype.onIndexChanged=function(t){this.indexBeingUpdated=!0,this.$dataProvider.selectedIndex=this.selectedIndex,this.indexBeingUpdated=!1},i.prototype.onViewStackIndexChange=function(t){"selectedIndex"!=t.property||this.indexBeingUpdated||this.setSelectedIndex(this.$dataProvider.selectedIndex,!1)},i}(t.ListBase);t.TabBar=e,__reflect(e.prototype,"eui.TabBar")}(eui||(eui={}));var eui;!function(t){var e=egret.FocusEvent,i=function(i){function n(){var t=i.call(this)||this;return t.isFocus=!1,t.$TextInput={0:null,1:null,2:null,3:null,4:null,5:null,6:"",7:null,8:egret.TextFieldInputType.TEXT},t}return __extends(n,i),Object.defineProperty(n.prototype,"prompt",{get:function(){return this.promptDisplay?this.promptDisplay.text:this.$TextInput[0]},set:function(t){this.$TextInput[0]=t,this.promptDisplay&&(this.promptDisplay.text=t),this.invalidateProperties(),this.invalidateState()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"displayAsPassword",{get:function(){if(this.textDisplay)return this.textDisplay.displayAsPassword;var t=this.$TextInput[1];return t?t:!1},set:function(t){this.$TextInput[1]=t,this.textDisplay&&(this.textDisplay.displayAsPassword=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"inputType",{get:function(){return this.textDisplay?this.textDisplay.inputType:this.$TextInput[8]},set:function(t){this.$TextInput[8]=t,this.textDisplay&&(this.textDisplay.inputType=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"textColor",{get:function(){return this.textDisplay?this.textDisplay.textColor:this.$TextInput[2]},set:function(t){this.$TextInput[2]=t,this.textDisplay&&(this.textDisplay.textColor=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"maxChars",{get:function(){if(this.textDisplay)return this.textDisplay.maxChars;var t=this.$TextInput[3];return t?t:0},set:function(t){this.$TextInput[3]=t,this.textDisplay&&(this.textDisplay.maxChars=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"maxWidth",{get:function(){if(this.textDisplay)return this.textDisplay.maxWidth;var t=this.$TextInput[4];return t?t:1e5},set:function(t){this.$TextInput[4]=t,this.textDisplay&&(this.textDisplay.maxWidth=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"maxHeight",{get:function(){this.textDisplay;var t=this.$TextInput[5];return t?t:1e5},set:function(t){this.$TextInput[5]=t,this.textDisplay&&(this.textDisplay.maxHeight=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"text",{get:function(){return this.textDisplay?this.textDisplay.text:this.$TextInput[6]},set:function(t){this.$TextInput[6]=t,this.textDisplay&&(this.textDisplay.text=t),this.invalidateProperties(),this.invalidateState()},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"restrict",{get:function(){return this.textDisplay?this.textDisplay.restrict:this.$TextInput[7]},set:function(t){this.$TextInput[7]=t,this.textDisplay&&(this.textDisplay.restrict=t),this.invalidateProperties()},enumerable:!0,configurable:!0}),n.prototype.focusInHandler=function(t){this.isFocus=!0,this.invalidateState()},n.prototype.focusOutHandler=function(t){this.isFocus=!1,this.invalidateState()},n.prototype.getCurrentState=function(){var t=this.skin;return!this.prompt||this.isFocus||this.text?this.enabled?"normal":"disabled":this.enabled&&t.hasState("normalWithPrompt")?"normalWithPrompt":!this.enabled&&t.hasState("disabledWithPrompt")?"disabledWithPrompt":void 0},n.prototype.partAdded=function(n,r){i.prototype.partAdded.call(this,n,r);var o=this.$TextInput;r==this.textDisplay?(this.textDisplayAdded(),this.textDisplay instanceof t.EditableText&&(this.textDisplay.addEventListener(e.FOCUS_IN,this.focusInHandler,this),this.textDisplay.addEventListener(e.FOCUS_OUT,this.focusOutHandler,this))):r==this.promptDisplay&&o[0]&&(this.promptDisplay.text=o[0])},n.prototype.partRemoved=function(n,r){i.prototype.partRemoved.call(this,n,r),r==this.textDisplay?(this.textDisplayRemoved(),this.textDisplay instanceof t.EditableText&&(this.textDisplay.removeEventListener(e.FOCUS_IN,this.focusInHandler,this),this.textDisplay.removeEventListener(e.FOCUS_OUT,this.focusOutHandler,this))):r==this.promptDisplay&&(this.$TextInput[0]=this.promptDisplay.text) +},n.prototype.textDisplayAdded=function(){var t=this.$TextInput;t[1]&&(this.textDisplay.displayAsPassword=t[1]),t[2]&&(this.textDisplay.textColor=t[2]),t[3]&&(this.textDisplay.maxChars=t[3]),t[4]&&(this.textDisplay.maxWidth=t[4]),t[5]&&(this.textDisplay.maxHeight=t[5]),t[6]&&(this.textDisplay.text=t[6]),t[7]&&(this.textDisplay.restrict=t[7]),t[8]&&(this.textDisplay.inputType=t[8])},n.prototype.textDisplayRemoved=function(){var t=this.$TextInput;t[1]=this.textDisplay.displayAsPassword,t[2]=this.textDisplay.textColor,t[3]=this.textDisplay.maxChars,t[4]=this.textDisplay.maxWidth,t[5]=this.textDisplay.maxHeight,t[6]=this.textDisplay.text,t[7]=this.textDisplay.restrict,t[8]=this.textDisplay.inputType},n}(t.Component);t.TextInput=i,__reflect(i.prototype,"eui.TextInput")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){return t.call(this)||this}return __extends(e,t),e}(t.ToggleButton);t.CheckBox=e,__reflect(e.prototype,"eui.CheckBox")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){return t.call(this)||this}return __extends(e,t),e}(t.ToggleButton);t.ToggleSwitch=e,__reflect(e.prototype,"eui.ToggleSwitch")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){var e=t.call(this)||this;return e.addEventListener(egret.Event.ADDED_TO_STAGE,e.onAddToStage,e),e.addEventListener(egret.Event.REMOVED_FROM_STAGE,e.onRemoveFromStage,e),e}return __extends(e,t),e.prototype.onAddToStage=function(t){this.$stage.addEventListener(egret.Event.RESIZE,this.onResize,this),this.onResize()},e.prototype.onRemoveFromStage=function(t){this.$stage.removeEventListener(egret.Event.RESIZE,this.onResize,this)},e.prototype.onResize=function(t){var e=this.$stage;this.$setWidth(e.$stageWidth),this.$setHeight(e.$stageHeight)},e}(t.Group);t.UILayer=e,__reflect(e.prototype,"eui.UILayer")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return __extends(e,t),e.prototype.updateDisplayList=function(e,i){t.prototype.updateDisplayList.call(this,e,i);var n=this.thumb,r=this.$viewport;if(n&&r){var o=egret.$TempRectangle;n.getPreferredBounds(o);var s=o.height,a=o.x,h=r.scrollV,l=r.contentHeight,u=r.height;if(0>=h){var p=s*(1- -h/(.5*u));p=Math.max(5,Math.round(p)),n.setLayoutBoundsSize(0/0,p),n.setLayoutBoundsPosition(a,0)}else if(h>=l-u){var p=s*(1-(h-l+u)/(.5*u));p=Math.max(5,Math.round(p)),n.setLayoutBoundsSize(0/0,p),n.setLayoutBoundsPosition(a,i-p)}else{var c=(i-s)*h/(l-u);n.setLayoutBoundsSize(0/0,0/0),n.setLayoutBoundsPosition(a,c)}}},e.prototype.onPropertyChanged=function(t){switch(t.property){case"scrollV":case"contentHeight":this.invalidateDisplayList()}},e}(t.ScrollBarBase);t.VScrollBar=e,__reflect(e.prototype,"eui.VScrollBar")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){return t.call(this)||this}return __extends(e,t),e.prototype.pointToValue=function(t,e){if(!this.thumb||!this.track)return 0;var i=this.$Range,n=i[0]-i[2],r=this.getThumbRange();return i[2]+(0!=r?(r-e)/r*n:0)},e.prototype.getThumbRange=function(){var t=egret.$TempRectangle;this.track.getLayoutBounds(t);var e=t.height;return this.thumb.getLayoutBounds(t),e-t.height},e.prototype.updateSkinDisplayList=function(){if(this.thumb&&this.track){var t=this.$Range,e=this.getThumbRange(),i=t[0]-t[2],n=i>0?e-(this.pendingValue-t[2])/i*e:0,r=this.track.localToGlobal(0,n,egret.$TempPoint),o=r.x,s=r.y,a=this.thumb.$parent.globalToLocal(o,s,egret.$TempPoint).y,h=egret.$TempRectangle,l=h.height;if(this.thumb.getLayoutBounds(h),this.thumb.setLayoutBoundsPosition(h.x,Math.round(a)),this.trackHighlight){var u=this.trackHighlight.$parent.globalToLocal(o,s,egret.$TempPoint).y;this.trackHighlight.y=Math.round(u+l),this.trackHighlight.height=Math.round(e-u)}}},e}(t.SliderBase);t.VSlider=e,__reflect(e.prototype,"eui.VSlider")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){var i=e.call(this)||this;return i._selectedChild=null,i.proposedSelectedIndex=t.ListBase.NO_PROPOSED_SELECTION,i._selectedIndex=-1,i}return __extends(i,e),Object.defineProperty(i.prototype,"layout",{get:function(){return this.$layout},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"selectedChild",{get:function(){var t=this.selectedIndex;return t>=0&&t=0&&e0?0==n?(this.proposedSelectedIndex=0,this.invalidateProperties()):this.setSelectedIndex(0):this.setSelectedIndex(-1):r>n&&this.setSelectedIndex(r-1),t.CollectionEvent.dispatchCollectionEvent(this,t.CollectionEvent.COLLECTION_CHANGE,t.CollectionEventKind.REMOVE,n,-1,[i.name])},i.prototype.commitProperties=function(){e.prototype.commitProperties.call(this),this.proposedSelectedIndex!=t.ListBase.NO_PROPOSED_SELECTION&&(this.commitSelection(this.proposedSelectedIndex),this.proposedSelectedIndex=t.ListBase.NO_PROPOSED_SELECTION)},i.prototype.commitSelection=function(t){t>=0&&tn;n++)if(e[n].name==t)return n;return-1},i}(t.Group);t.ViewStack=e,__reflect(e.prototype,"eui.ViewStack",["eui.ICollection","egret.IEventDispatcher"]),t.registerBindable(e.prototype,"selectedIndex")}(eui||(eui={}));var eui;!function(t){var e;!function(t){function e(t){return-.5*(Math.cos(Math.PI*t)-1)}var i=function(){function t(t,i){this.easerFunction=e,this.isPlaying=!1,this.duration=500,this.currentValue=0,this.from=0,this.to=0,this.startTime=0,this.endFunction=null,this.updateFunction=t,this.thisObject=i}return t.prototype.play=function(){this.stop(),this.start()},t.prototype.start=function(){this.isPlaying=!1,this.currentValue=0,this.startTime=egret.getTimer(),this.doInterval(this.startTime),egret.startTick(this.doInterval,this)},t.prototype.stop=function(){this.isPlaying=!1,this.startTime=0,egret.stopTick(this.doInterval,this)},t.prototype.doInterval=function(t){var e=t-this.startTime;this.isPlaying||(this.isPlaying=!0);var i=this.duration,n=0==i?1:Math.min(e,i)/i;this.easerFunction&&(n=this.easerFunction(n)),this.currentValue=this.from+(this.to-this.from)*n,this.updateFunction&&this.updateFunction.call(this.thisObject,this);var r=e>=i;return r&&this.stop(),r&&this.endFunction&&this.endFunction.call(this.thisObject,this),!0},t}();t.Animation=i,__reflect(i.prototype,"eui.sys.Animation")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.prototype.getTheme=function(t,e,i,n){function r(t){var i=t.target;e.call(n,i.response)}function o(t){i.call(n)}var s=new egret.HttpRequest;s.addEventListener(egret.Event.COMPLETE,r,n),s.addEventListener(egret.IOErrorEvent.IO_ERROR,o,n),s.responseType=egret.HttpResponseType.TEXT,s.open(t),s.send()},t}();t.DefaultThemeAdapter=e,__reflect(e.prototype,"eui.DefaultThemeAdapter",["eui.IThemeAdapter"])}(eui||(eui={}));var eui;!function(t){function e(t,i){var n=Object.getOwnPropertyDescriptor(t,i);if(n)return n;var r=Object.getPrototypeOf(t);return r?e(r,i):null}function i(t,e){for(var i=t[n],r=i.length,o=0;r>o;o+=2){var s=i[o],a=i[o+1];s.call(a,e)}}var n="__listeners__",r="__bindables__",o=0,s=function(){function s(t,e,i,n){this.isExecuting=!1,this.property=t,this.handler=e,this.next=n,this.thisObject=i}return s.watch=function(t,e,i,n){if(e.length>0){var r=e.shift(),o=s.watch(null,e,i,n),a=new s(r,i,n,o);return a.reset(t),a}return null},s.checkBindable=function(s,a){var h=s[r];if(h&&-1!=h.indexOf(a))return!0;var l=egret.is(s,"egret.IEventDispatcher");l||s[n]||(s[n]=[]);var u=e(s,a);if(u&&u.set&&u.get){var p=u.set;u.set=function(e){this[a]!=e&&(p.call(this,e),l?t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,a):i(this,a))}}else{if(u&&(u.get||u.set))return!1;o++;var c="_"+o+a;s[c]=u?u.value:null,u={enumerable:!0,configurable:!0},u.get=function(){return this[c]},u.set=function(e){this[c]!=e&&(this[c]=e,l?t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,a):i(this,a))}}Object.defineProperty(s,a,u),t.registerBindable(s,a)},s.prototype.unwatch=function(){this.reset(null),this.handler=null,this.next&&(this.next.handler=null)},s.prototype.getValue=function(){return this.next?this.next.getValue():this.getHostPropertyValue()},s.prototype.setHandler=function(t,e){this.handler=t,this.thisObject=e,this.next&&this.next.setHandler(t,e)},s.prototype.reset=function(e){var i=this.host;if(i)if(egret.is(i,"egret.IEventDispatcher"))i.removeEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.wrapHandler,this);else{var r=i[n],o=r.indexOf(this);r.splice(o-1,2)}if(this.host=e,e)if(s.checkBindable(e,this.property),egret.is(e,"egret.IEventDispatcher"))e.addEventListener(t.PropertyEvent.PROPERTY_CHANGE,this.wrapHandler,this,!1,100);else{var r=e[n];r.push(this.onPropertyChange),r.push(this)}this.next&&this.next.reset(this.getHostPropertyValue())},s.prototype.getHostPropertyValue=function(){return this.host?this.host[this.property]:null},s.prototype.wrapHandler=function(t){this.onPropertyChange(t.property)},s.prototype.onPropertyChange=function(t){if(t==this.property&&!this.isExecuting)try{this.isExecuting=!0,this.next&&this.next.reset(this.getHostPropertyValue()),this.handler.call(this.thisObject,this.getValue())}finally{this.isExecuting=!1}},s}();t.Watcher=s,__reflect(s.prototype,"eui.Watcher")}(eui||(eui={}));var eui;!function(t){function e(e){for(var i=e[0],n=i instanceof t.Watcher?i.getValue():i,r=e.length,o=1;r>o;o++){var s=e[o];s instanceof t.Watcher&&(s=s.getValue()),n+=s}return n}var i=function(){function i(){}return i.bindProperty=function(e,i,n,r){var o=t.Watcher.watch(e,i,null,null);if(o){var s=function(t){n[r]=t};o.setHandler(s,null),s(o.getValue())}return o},i.bindHandler=function(e,i,n,r){var o=t.Watcher.watch(e,i,n,r);return o&&n.call(r,o.getValue()),o},i.$bindProperties=function(n,r,o,s,a){if(1==r.length&&1==o.length)return i.bindProperty(n,r[0].split("."),s,a);for(var h,l=function(){s[a]=e(r)},u=o.length,p=0;u>p;p++){var c=o[p],d=r[c].split(".");h=t.Watcher.watch(n,d,null,null),h&&(r[c]=h,h.setHandler(l,null))}return l(),h},i}();t.Binding=i,__reflect(i.prototype,"eui.Binding")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(t){var i=e.call(this)||this;return t?i._source=t:i._source=[],i}return __extends(i,e),Object.defineProperty(i.prototype,"source",{get:function(){return this._source},set:function(e){e||(e=[]),this._source=e,this.dispatchCoEvent(t.CollectionEventKind.RESET)},enumerable:!0,configurable:!0}),i.prototype.refresh=function(){this.dispatchCoEvent(t.CollectionEventKind.REFRESH)},Object.defineProperty(i.prototype,"length",{get:function(){return this._source.length},enumerable:!0,configurable:!0}),i.prototype.addItem=function(e){this._source.push(e),this.dispatchCoEvent(t.CollectionEventKind.ADD,this._source.length-1,-1,[e])},i.prototype.addItemAt=function(e,i){0>i||i>this._source.length,this._source.splice(i,0,e),this.dispatchCoEvent(t.CollectionEventKind.ADD,i,-1,[e])},i.prototype.getItemAt=function(t){return this._source[t]},i.prototype.getItemIndex=function(t){for(var e=this._source.length,i=0;e>i;i++)if(this._source[i]===t)return i;return-1},i.prototype.itemUpdated=function(e){var i=this.getItemIndex(e);-1!=i&&this.dispatchCoEvent(t.CollectionEventKind.UPDATE,i,-1,[e])},i.prototype.removeAll=function(){var e=this._source.concat();this._source=[],this.dispatchCoEvent(t.CollectionEventKind.REMOVE,0,-1,e)},i.prototype.removeItemAt=function(e){if(!(0>e||e>=this._source.length)){var i=this._source.splice(e,1)[0];return this.dispatchCoEvent(t.CollectionEventKind.REMOVE,e,-1,[i]),i}},i.prototype.replaceItemAt=function(e,i){if(!(0>i||i>=this._source.length)){var n=this._source.splice(i,1,e)[0];return this.dispatchCoEvent(t.CollectionEventKind.REPLACE,i,-1,[e],[n]),n}},i.prototype.replaceAll=function(t){t||(t=[]);for(var e=t.length,i=this._source.length,n=e;i>n;n++)this.removeItemAt(e);for(var n=0;e>n;n++)n>=i?this.addItemAt(t[n],n):this.replaceItemAt(t[n],n);this._source=t},i.prototype.dispatchCoEvent=function(e,i,n,r,o){t.CollectionEvent.dispatchCollectionEvent(this,t.CollectionEvent.COLLECTION_CHANGE,e,i,n,r,o)},i}(egret.EventDispatcher);t.ArrayCollection=e,__reflect(e.prototype,"eui.ArrayCollection",["eui.ICollection","egret.IEventDispatcher"]),t.registerProperty(e,"source","Array",!0)}(eui||(eui={}));var eui;!function(t){var e=t.sys.UIComponentImpl,i=function(i){function n(){var t=i.call(this)||this;return t._widthConstraint=0/0,t.$isShowPrompt=!1,t.$promptColor=6710886,t.$isFocusIn=!1,t.$isTouchCancle=!1,t.initializeUIValues(),t.type=egret.TextFieldType.INPUT,t.$EditableText={0:null,1:16777215,2:!1},t}return __extends(n,i),n.prototype.$invalidateTextField=function(){i.prototype.$invalidateTextField.call(this),this.invalidateSize()},n.prototype.$setWidth=function(t){var n=i.prototype.$setWidth.call(this,t),r=e.prototype.$setWidth.call(this,t);return n&&r},n.prototype.$setHeight=function(t){var n=i.prototype.$setHeight.call(this,t),r=e.prototype.$setHeight.call(this,t);return n&&r},n.prototype.$getText=function(){var t=i.prototype.$getText.call(this);return t==this.$EditableText[0]&&(t=""),t},n.prototype.$setText=function(e){var n=this.$EditableText[0];(n!=e||null==n)&&(this.$isShowPrompt=!1,this.textColor=this.$EditableText[1],this.displayAsPassword=this.$EditableText[2]),this.$isFocusIn||(""==e||null==e)&&(e=n,this.$isShowPrompt=!0,i.prototype.$setTextColor.call(this,this.$promptColor),i.prototype.$setDisplayAsPassword.call(this,!1));var r=i.prototype.$setText.call(this,e);return t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"text"),r},n.prototype.$onAddToStage=function(e,i){t.sys.UIComponentImpl.prototype.$onAddToStage.call(this,e,i),this.addEventListener(egret.FocusEvent.FOCUS_IN,this.onfocusIn,this),this.addEventListener(egret.FocusEvent.FOCUS_OUT,this.onfocusOut,this),this.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBegin,this),this.addEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this)},n.prototype.$onRemoveFromStage=function(){i.prototype.$onRemoveFromStage.call(this),this.removeEventListener(egret.FocusEvent.FOCUS_IN,this.onfocusIn,this),this.removeEventListener(egret.FocusEvent.FOCUS_OUT,this.onfocusOut,this),this.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.onTouchBegin,this),this.removeEventListener(egret.TouchEvent.TOUCH_CANCEL,this.onTouchCancle,this)},Object.defineProperty(n.prototype,"prompt",{get:function(){return this.$EditableText[0]},set:function(t){var e=this.$EditableText,i=e[0];if(i!=t){e[0]=t;var n=this.text;n&&n!=i||this.showPromptText()}},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"promptColor",{get:function(){return this.$promptColor},set:function(t){if(t=0|+t,this.$promptColor!=t){this.$promptColor=t;var e=this.text;e&&e!=this.$EditableText[0]||this.showPromptText()}},enumerable:!0,configurable:!0}),n.prototype.onfocusOut=function(){this.$isFocusIn=!1,this.text||this.showPromptText()},n.prototype.onTouchBegin=function(){this.$isTouchCancle=!1},n.prototype.onTouchCancle=function(){this.$isTouchCancle=!0},n.prototype.onfocusIn=function(){if(!egret.Capabilities.isMobile&&this.$isTouchCancle)return void this.inputUtils.stageText.$hide();this.$isFocusIn=!0,this.$isShowPrompt=!1,this.displayAsPassword=this.$EditableText[2];var t=this.$EditableText,e=this.text;e&&e!=t[0]||(this.textColor=t[1],this.text="")},n.prototype.showPromptText=function(){var t=this.$EditableText;this.$isShowPrompt=!0,i.prototype.$setTextColor.call(this,this.$promptColor),i.prototype.$setDisplayAsPassword.call(this,!1),this.text=t[0]},n.prototype.$setTextColor=function(t){return t=0|+t,this.$EditableText[1]=t,this.$isShowPrompt||i.prototype.$setTextColor.call(this,t),!0},n.prototype.$setDisplayAsPassword=function(t){return this.$EditableText[2]=t,this.$isShowPrompt||i.prototype.$setDisplayAsPassword.call(this,t),!0},n.prototype.createChildren=function(){this.onfocusOut()},n.prototype.childrenCreated=function(){},n.prototype.commitProperties=function(){},n.prototype.measure=function(){var t=this.$UIComponent,e=this.$TextField,n=e[3],r=0/0;isNaN(this._widthConstraint)?isNaN(t[8])?1e5!=t[13]&&(r=t[13]):r=t[8]:(r=this._widthConstraint,this._widthConstraint=0/0),i.prototype.$setWidth.call(this,r),this.setMeasuredSize(this.textWidth,this.textHeight),i.prototype.$setWidth.call(this,n)},n.prototype.updateDisplayList=function(t,e){i.prototype.$setWidth.call(this,t),i.prototype.$setHeight.call(this,e)},n.prototype.invalidateParentLayout=function(){},n.prototype.setMeasuredSize=function(t,e){},n.prototype.invalidateProperties=function(){},n.prototype.validateProperties=function(){},n.prototype.invalidateSize=function(){},n.prototype.validateSize=function(t){},n.prototype.invalidateDisplayList=function(){},n.prototype.validateDisplayList=function(){},n.prototype.validateNow=function(){},n.prototype.setLayoutBoundsSize=function(t,i){if(e.prototype.setLayoutBoundsSize.call(this,t,i),!isNaN(t)&&t!==this._widthConstraint&&0!=t){var n=this.$UIComponent;isNaN(n[9])&&t!=n[16]&&(this._widthConstraint=t,this.invalidateSize())}},n.prototype.setLayoutBoundsPosition=function(t,e){},n.prototype.getLayoutBounds=function(t){},n.prototype.getPreferredBounds=function(t){},n}(egret.TextField);t.EditableText=i,__reflect(i.prototype,"eui.EditableText",["eui.UIComponent","egret.DisplayObject","eui.IDisplayText"]),t.sys.implementUIComponent(i,egret.TextField),t.registerBindable(i.prototype,"text")}(eui||(eui={}));var eui;!function(t){var e;!function(t){function e(t){var e=t-1;return e*e*e+1}var i=4,n=[1,1.33,1.66,2],r=2.33,o=.02,s=.998,a=.95,h=Math.log(s),l=function(){function l(i,n,r){this.$scrollFactor=1,this.previousTime=0,this.velocity=0,this.previousVelocity=[],this.currentPosition=0,this.previousPosition=0,this.currentScrollPos=0,this.maxScrollPos=0,this.offsetPoint=0,this.$bounces=!0,this.started=!0,this.updateFunction=i,this.endFunction=n,this.target=r,this.animation=new t.Animation(this.onScrollingUpdate,this),this.animation.endFunction=this.finishScrolling,this.animation.easerFunction=e}return l.prototype.isPlaying=function(){return this.animation.isPlaying},l.prototype.stop=function(){this.animation.stop(),egret.stopTick(this.onTick,this),this.started=!1},l.prototype.isStarted=function(){return this.started},l.prototype.start=function(t){this.started=!0,this.velocity=0,this.previousVelocity.length=0,this.previousTime=egret.getTimer(),this.previousPosition=this.currentPosition=t,this.offsetPoint=t,egret.startTick(this.onTick,this)},l.prototype.update=function(t,e,i){e=Math.max(e,0),this.currentPosition=t,this.maxScrollPos=e;var n=this.offsetPoint-t,r=n+i;this.offsetPoint=t,0>r&&(this.$bounces?r-=.5*n:r=0),r>e&&(this.$bounces?r-=.5*n:r=e),this.currentScrollPos=r,this.updateFunction.call(this.target,r)},l.prototype.finish=function(t,e){egret.stopTick(this.onTick,this),this.started=!1;for(var i=this.velocity*r,l=this.previousVelocity,u=l.length,p=r,c=0;u>c;c++){var d=n[c];i+=l[0]*d,p+=d}var f=i/p,g=Math.abs(f),y=0,v=0;if(g>o)if(v=t+(f-o)/h*2*this.$scrollFactor,0>v||v>e)for(v=t;Math.abs(f)>o;)v-=f,f*=0>v||v>e?s*a:s,y++;else y=Math.log(o/g)/h;else v=t;if(this.target.$getThrowInfo){var m=this.target.$getThrowInfo(t,v);v=m.toPos}y>0?(this.$bounces||(0>v?v=0:v>e&&(v=e)),this.throwTo(v,y)):this.finishScrolling()},l.prototype.onTick=function(t){var e=t-this.previousTime;if(e>10){var n=this.previousVelocity;n.length>=i&&n.shift(),this.velocity=(this.currentPosition-this.previousPosition)/e,n.push(this.velocity),this.previousTime=t,this.previousPosition=this.currentPosition}return!0},l.prototype.finishScrolling=function(t){var e=this.currentScrollPos,i=this.maxScrollPos,n=e;0>e&&(n=0),e>i&&(n=i),this.throwTo(n,300)},l.prototype.throwTo=function(t,e){void 0===e&&(e=500);var i=this.currentScrollPos;if(i==t)return void this.endFunction.call(this.target);var n=this.animation;n.duration=e,n.from=i,n.to=t,n.play()},l.prototype.onScrollingUpdate=function(t){this.currentScrollPos=t.currentValue,this.updateFunction.call(this.target,t.currentValue)},l}();t.TouchScroll=l,__reflect(l.prototype,"eui.sys.TouchScroll")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.LTR="ltr",t.RTL="rtl",t.TTB="ttb",t.BTT="btt",t}();t.Direction=e,__reflect(e.prototype,"eui.Direction")}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.AUTO="auto",t.OFF="off",t.ON="on",t}();t.ScrollPolicy=e,__reflect(e.prototype,"eui.ScrollPolicy")}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(t,i){var n=e.call(this)||this;return n.delayList=[],n.skinMap={},n.$styles={},n.initialized=!t,i&&egret.registerImplementation("eui.Theme",n),n.$configURL=t,n.load(t),n}return __extends(i,e),i.prototype.load=function(e){var i=this;t.getTheme(e,function(t){return i.onConfigLoaded(t)})},i.prototype.onConfigLoaded=function(t){var e;if("string"==typeof t)try{e=JSON.parse(t)}catch(i){egret.$error(3e3)}else e=t;if(e&&e.skins)for(var n=this.skinMap,r=e.skins,o=Object.keys(r),s=o.length,a=0;s>a;a++){var h=o[a];n[h]||this.mapSkin(h,r[h])}e.styles&&(this.$styles=e.styles);var l=e.paths;for(var u in l)EXML.update(u,l[u]);e.exmls&&0!=e.exmls.length?e.exmls[0].gjs?(e.exmls.forEach(function(t){return EXML.$parseURLContentAsJs(t.path,t.gjs,t.className)}),this.onLoaded()):e.exmls[0].content?(e.exmls.forEach(function(t){return EXML.$parseURLContent(t.path,t.content)}),this.onLoaded()):EXML.$loadAll(e.exmls,this.onLoaded,this,!0):this.onLoaded()},i.prototype.onLoaded=function(t,e){this.initialized=!0,this.handleDelayList(),this.dispatchEventWith(egret.Event.COMPLETE)},i.prototype.handleDelayList=function(){for(var t=this.delayList,e=t.length,i=0;e>i;i++){var n=t[i];if(!n.$Component[5]){var r=this.getSkinName(n);r&&(n.$Component[1]=r,n.$parseSkinName())}}t.length=0},i.prototype.getSkinName=function(t){if(!this.initialized)return-1==this.delayList.indexOf(t)&&this.delayList.push(t),"";var e=this.skinMap,i=e[t.hostComponentKey];return i||(i=this.findSkinName(t)),i},i.prototype.findSkinName=function(t){if(!t)return"";var e=t.__class__;if(void 0===e)return"";var i=this.skinMap[e];return i||"eui.Component"==e?i:this.findSkinName(Object.getPrototypeOf(t))},i.prototype.mapSkin=function(t,e){this.skinMap[t]=e},i.prototype.$getStyleConfig=function(t){return this.$styles[t]},i}(egret.EventDispatcher);t.Theme=e,__reflect(e.prototype,"eui.Theme")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(e,i,n,r,o,s,a,h){var l=t.call(this,e,i,n)||this;return l.$initTo(r,o,s,a,h),l}return __extends(e,t),e.prototype.$initTo=function(t,e,i,n,r){this.kind=t,this.location=0|+e,this.oldLocation=0|+i,this.items=n||[],this.oldItems=r||[]},e.prototype.clean=function(){t.prototype.clean.call(this),this.items=this.oldItems=null},e.dispatchCollectionEvent=function(t,i,n,r,o,s,a){if(!t.hasEventListener(i))return!0;var h=egret.Event.create(e,i);h.$initTo(n,r,o,s,a);var l=t.dispatchEvent(h);return egret.Event.release(h),l},e.COLLECTION_CHANGE="collectionChange",e}(egret.Event);t.CollectionEvent=e,__reflect(e.prototype,"eui.CollectionEvent")}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.ADD="add",t.REFRESH="refresh",t.REMOVE="remove",t.REPLACE="replace",t.RESET="reset",t.UPDATE="update",t}();t.CollectionEventKind=e,__reflect(e.prototype,"eui.CollectionEventKind")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.item=null,e.itemRenderer=null,e.itemIndex=-1,e}return __extends(e,t),e.prototype.clean=function(){t.prototype.clean.call(this),this.item=this.itemRenderer=null},e.dispatchItemTapEvent=function(t,i,n){if(!t.hasEventListener(i))return!0;var r=egret.Event.create(e,i);r.item=n.data,r.itemIndex=n.itemIndex,r.itemRenderer=n;var o=t.dispatchEvent(r);return egret.Event.release(r),o},e.ITEM_TAP="itemTap",e}(egret.Event);t.ItemTapEvent=e,__reflect(e.prototype,"eui.ItemTapEvent")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(e,i,n,r){var o=t.call(this,e,i,n)||this;return o.property=r,o}return __extends(e,t),e.dispatchPropertyEvent=function(t,i,n){if(!t.hasEventListener(i))return!0;var r=egret.Event.create(e,i);r.property=n;var o=t.dispatchEvent(r);return egret.Event.release(r),o},e.PROPERTY_CHANGE="propertyChange",e}(egret.Event);t.PropertyEvent=e,__reflect(e.prototype,"eui.PropertyEvent")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(e,i,n,r,o){var s=t.call(this,e,i,n)||this;return r=+r,o=+o,s.currentPos=r,s.toPos=o,s}return __extends(e,t),e.THROW="throw",e}(egret.Event);t.ScrollerThrowEvent=e,__reflect(e.prototype,"eui.ScrollerThrowEvent")}(eui||(eui={}));var eui;!function(t){var e=function(t){function e(e,i,n){return t.call(this,e,i,n)||this}return __extends(e,t),e.dispatchUIEvent=function(t,i,n,r){if(!t.hasEventListener(i))return!0;var o=egret.Event.create(e,i,n,r),s=t.dispatchEvent(o);return egret.Event.release(o),s},e.CREATION_COMPLETE="creationComplete",e.CHANGE_END="changeEnd",e.CHANGE_START="changeStart",e.CLOSING="closing",e.MOVE="move",e}(egret.Event);t.UIEvent=e,__reflect(e.prototype,"eui.UIEvent")}(eui||(eui={}));var eui;!function(t){var e;!function(t){var e="eui.State",i="eui.AddItems",n="eui.SetProperty",r="eui.SetStateProperty",o="eui.Binding.$bindProperties",s=function(){function t(){this.indent=0}return t.prototype.toCode=function(){return""},t.prototype.getIndent=function(t){void 0===t&&(t=this.indent);for(var e="",i=0;t>i;i++)e+=" ";return e},t}();t.CodeBase=s,__reflect(s.prototype,"eui.sys.CodeBase");var a=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.className="",e.superClass="",e.innerClassBlock=[],e.variableBlock=[],e.functionBlock=[],e}return __extends(e,t),e.prototype.addInnerClass=function(t){-1==this.innerClassBlock.indexOf(t)&&this.innerClassBlock.push(t)},e.prototype.addVariable=function(t){-1==this.variableBlock.indexOf(t)&&this.variableBlock.push(t)},e.prototype.getVariableByName=function(t){for(var e=this.variableBlock,i=e.length,n=0;i>n;n++){var r=e[n];if(r.name==t)return r}return null},e.prototype.addFunction=function(t){-1==this.functionBlock.indexOf(t)&&this.functionBlock.push(t)},e.prototype.getFuncByName=function(t){for(var e=this.functionBlock,i=e.length,n=0;i>n;n++){var r=e[n];if(r.name==t)return r}return null},e.prototype.toCode=function(){var t=this.indent,e=this.getIndent(t),i=this.getIndent(t+1),n=this.getIndent(t+2),r=e+"(function (";r+=this.superClass?"_super) {\n"+i+"__extends("+this.className+", _super);\n":") {\n";for(var o=this.innerClassBlock,s=o.length,a=0;s>a;a++){var h=o[a];h.indent=t+1,r+=i+"var "+h.className+" = "+h.toCode()+"\n\n"}r+=i+"function "+this.className+"() {\n",this.superClass&&(r+=n+"_super.call(this);\n");var l=this.variableBlock;s=l.length;for(var a=0;s>a;a++){var u=l[a];u.defaultValue&&(r+=n+u.toCode()+"\n")}if(this.constructCode){var p=this.constructCode.toCode().split("\n");s=p.length;for(var a=0;s>a;a++){var c=p[a];r+=n+c+"\n"}}r+=i+"}\n",r+=i+"var _proto = "+this.className+".prototype;\n\n";var d=this.functionBlock;s=d.length;for(var a=0;s>a;a++){var f=d[a];f.indent=t+1,r+=f.toCode()+"\n"}return r+=i+"return "+this.className+";\n"+e,r+=this.superClass?"})("+this.superClass+");":"})();"},e}(s);t.EXClass=a,__reflect(a.prototype,"eui.sys.EXClass");var h=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.lines=[],e}return __extends(e,t),e.prototype.addVar=function(t,e){var i=e?" = "+e:"";this.addCodeLine("var "+t+i+";")},e.prototype.addAssignment=function(t,e,i){var n=i?"."+i:"";this.addCodeLine(t+n+" = "+e+";")},e.prototype.addReturn=function(t){this.addCodeLine("return "+t+";")},e.prototype.addEmptyLine=function(){this.addCodeLine("")},e.prototype.startIf=function(t){this.addCodeLine("if("+t+")"),this.startBlock()},e.prototype.startElse=function(){this.addCodeLine("else"),this.startBlock()},e.prototype.startElseIf=function(t){this.addCodeLine("else if("+t+")"),this.startBlock()},e.prototype.startBlock=function(){this.addCodeLine("{"),this.indent++},e.prototype.endBlock=function(){this.indent--,this.addCodeLine("}")},e.prototype.doFunction=function(t,e){var i=e.join(",");this.addCodeLine(t+"("+i+")")},e.prototype.addCodeLine=function(t){this.lines.push(this.getIndent()+t)},e.prototype.addCodeLineAt=function(t,e){this.lines.splice(e,0,this.getIndent()+t)},e.prototype.containsCodeLine=function(t){return-1!=this.lines.indexOf(t)},e.prototype.concat=function(t){this.lines=this.lines.concat(t.lines)},e.prototype.toCode=function(){return this.lines.join("\n")},e}(s);t.EXCodeBlock=h,__reflect(h.prototype,"eui.sys.EXCodeBlock");var l=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.codeBlock=null,e.isGet=!1,e.name="",e}return __extends(e,t),e.prototype.toCode=function(){var t,e=this.getIndent(),i=this.getIndent(this.indent+1),n=e;if(this.isGet?(t=this.getIndent(this.indent+2),n+='Object.defineProperty(_proto, "skinParts", {\n',n+=i+"get: function () {\n"):(t=i,n+="_proto."+this.name+" = function () {\n"),this.codeBlock)for(var r=this.codeBlock.toCode().split("\n"),o=r.length,s=0;o>s;s++){var a=r[s];n+=t+a+"\n"}return n+=this.isGet?i+"},\n"+i+"enumerable: true,\n"+i+"configurable: true\n"+e+"});":e+"};"},e}(s);t.EXFunction=l,__reflect(l.prototype,"eui.sys.EXFunction");var u=function(t){function e(e,i){var n=t.call(this)||this;return n.indent=2,n.name=e,n.defaultValue=i,n}return __extends(e,t),e.prototype.toCode=function(){return this.defaultValue?"this."+this.name+" = "+this.defaultValue+";":""},e}(s);t.EXVariable=u,__reflect(u.prototype,"eui.sys.EXVariable");var p=function(t){function i(e,i){var n=t.call(this)||this;return n.name="",n.stateGroups=[],n.addItems=[],n.setProperty=[],n.name=e,i&&(n.stateGroups=i),n}return __extends(i,t),i.prototype.addOverride=function(t){t instanceof c?this.addItems.push(t):this.setProperty.push(t)},i.prototype.toCode=function(){for(var t=this.getIndent(1),i="new "+e+' ("'+this.name+'",\n'+t+"[\n",n=0,r=!0,o=this.addItems.concat(this.setProperty);nl;l++){var u=a[l];a[l]=t+t+u}i+=a.join("\n"),n++}return i+="\n"+t+"])"},i}(s);t.EXState=p,__reflect(p.prototype,"eui.sys.EXState");var c=function(t){function e(e,i,n,r){var o=t.call(this)||this; +return o.target=e,o.property=i,o.position=n,o.relativeTo=r,o}return __extends(e,t),e.prototype.toCode=function(){var t="new "+i+'("'+this.target+'","'+this.property+'",'+this.position+',"'+this.relativeTo+'")';return t},e}(s);t.EXAddItems=c,__reflect(c.prototype,"eui.sys.EXAddItems");var d=function(t){function e(e,i,n){var r=t.call(this)||this;return r.target=e,r.name=i,r.value=n,r}return __extends(e,t),e.prototype.toCode=function(){return"new "+n+'("'+this.target+'","'+this.name+'",'+this.value+")"},e}(s);t.EXSetProperty=d,__reflect(d.prototype,"eui.sys.EXSetProperty");var f=function(t){function e(e,i,n,r){var o=t.call(this)||this;return e=e?"this."+e:"this",o.target=e,o.property=i,o.templates=n,o.chainIndex=r,o}return __extends(e,t),e.prototype.toCode=function(){var t=this.templates.join(","),e=this.chainIndex.join(",");return"new "+r+"(this, ["+t+"],["+e+"],"+this.target+',"'+this.property+'")'},e}(s);t.EXSetStateProperty=f,__reflect(f.prototype,"eui.sys.EXSetStateProperty");var g=function(t){function e(e,i,n,r){var o=t.call(this)||this;return o.target=e,o.property=i,o.templates=n,o.chainIndex=r,o}return __extends(e,t),e.prototype.toCode=function(){var t=this.templates.join(","),e=this.chainIndex.join(",");return o+"(this, ["+t+"],["+e+"],"+this.target+',"'+this.property+'")'},e}(s);t.EXBinding=g,__reflect(g.prototype,"eui.sys.EXBinding")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=t.sys.UIComponentImpl,i=function(i){function n(t){var e=i.call(this)||this;return e.$createChildrenCalled=!1,e.$fontChanged=!1,e._widthConstraint=0/0,e._heightConstraint=0/0,e.initializeUIValues(),e.text=t,e}return __extends(n,i),n.prototype.$invalidateContentBounds=function(){i.prototype.$invalidateContentBounds.call(this),this.invalidateSize()},n.prototype.$setWidth=function(t){var n=i.prototype.$setWidth.call(this,t),r=e.prototype.$setWidth.call(this,t);return n&&r},n.prototype.$setHeight=function(t){var n=i.prototype.$setHeight.call(this,t),r=e.prototype.$setHeight.call(this,t);return n&&r},n.prototype.$setText=function(e){var n=i.prototype.$setText.call(this,e);return t.PropertyEvent.dispatchPropertyEvent(this,t.PropertyEvent.PROPERTY_CHANGE,"text"),n},n.prototype.$setFont=function(t){return this.$fontForBitmapLabel==t?!1:(this.$fontForBitmapLabel=t,this.$createChildrenCalled?this.$parseFont():this.$fontChanged=!0,this.$fontStringChanged=!0,!0)},n.prototype.$parseFont=function(){this.$fontChanged=!1;var e=this.$fontForBitmapLabel;"string"==typeof e?t.getAssets(e,function(t){this.$setFontData(t,e)},this):this.$setFontData(e)},n.prototype.$setFontData=function(t,e){return e&&e!=this.$fontForBitmapLabel?void 0:t==this.$font?!1:(this.$font=t,this.$invalidateContentBounds(),!0)},n.prototype.createChildren=function(){this.$fontChanged&&this.$parseFont(),this.$createChildrenCalled=!0},n.prototype.childrenCreated=function(){},n.prototype.commitProperties=function(){},n.prototype.measure=function(){var t=this.$UIComponent,e=this.$textFieldWidth,n=this.$textFieldHeight,r=0/0;isNaN(this._widthConstraint)?isNaN(t[8])?1e5!=t[13]&&(r=t[13]):r=t[8]:(r=this._widthConstraint,this._widthConstraint=0/0),i.prototype.$setWidth.call(this,r);var o=0/0;isNaN(this._heightConstraint)?isNaN(t[9])?1e5!=t[15]&&(o=t[15]):o=t[9]:(o=this._heightConstraint,this._heightConstraint=0/0),i.prototype.$setHeight.call(this,o),this.setMeasuredSize(this.textWidth,this.textHeight),i.prototype.$setWidth.call(this,e),i.prototype.$setHeight.call(this,n)},n.prototype.updateDisplayList=function(t,e){i.prototype.$setWidth.call(this,t),i.prototype.$setHeight.call(this,e)},n.prototype.invalidateParentLayout=function(){},n.prototype.setMeasuredSize=function(t,e){},n.prototype.invalidateProperties=function(){},n.prototype.validateProperties=function(){},n.prototype.invalidateSize=function(){},n.prototype.validateSize=function(t){},n.prototype.invalidateDisplayList=function(){},n.prototype.validateDisplayList=function(){},n.prototype.validateNow=function(){},n.prototype.setLayoutBoundsSize=function(t,i){if(e.prototype.setLayoutBoundsSize.call(this,t,i),!isNaN(t)&&t!==this._widthConstraint&&0!=t){var n=this.$UIComponent;isNaN(n[9])&&t!=n[16]&&(this._widthConstraint=t,this._heightConstraint=i,this.invalidateSize())}},n.prototype.setLayoutBoundsPosition=function(t,e){},n.prototype.getLayoutBounds=function(t){},n.prototype.getPreferredBounds=function(t){},n}(egret.BitmapText);t.BitmapLabel=i,__reflect(i.prototype,"eui.BitmapLabel",["eui.UIComponent","egret.DisplayObject","eui.IDisplayText"]),t.sys.implementUIComponent(i,egret.BitmapText),t.registerBindable(i.prototype,"text")}(eui||(eui={}));var EXML;!function(t){function e(t){return l.parse(t)}function i(t,e,i,n){if(void 0===n&&(n=!1),n&&t in p)return void(e&&e.call(i,p[t],t));var r=u[t];return r?void r.push([e,i]):(u[t]=[[e,i]],void h(t,a))}function n(t,e,i,n){if(void 0===n&&(n=!1),!t||0==t.length)return void(e&&e.call(i,[],t));var o=[];t.forEach(function(s){var a=function(n,s){o[n]=s,o.push(n),o.length==t.length&&r(t,o,e,i)};return n&&s in p?void a(s,""):void h(s,a)})}function r(t,e,i,n){var r=[];t.forEach(function(t,i){if(t in p&&!e[t])return void(r[i]=p[t]);var n=e[t],o=a(t,n);r[i]=o}),i&&i.call(n,r,t)}function o(t,e){p[t]=e;var i=u[t];delete u[t];for(var n=i?i.length:0,r=0;n>r;r++){var o=i[r];o[0]&&o[1]&&o[0].call(o[1],e,t)}}function s(t,e,i){var n=null;e&&(n=l.$parseCode(e,i),o(t,n))}function a(t,i){var n=null;if(i&&"string"==typeof i)try{n=e(i)}catch(r){console.error(t+"\n"+r.message)}if(i&&i.prototype&&(n=i),t){n&&(p[t]=n);var o=u[t];delete u[t];for(var s=o?o.length:0,a=0;s>a;a++){var h=o[a];h[0]&&h[1]&&h[0].call(h[1],n,t)}}return n}function h(t,e){var i=t;-1==t.indexOf("://")&&(i=c+t);var n=function(i){i||(i=""),e(t,i)};eui.getTheme(i,n)}var l=new eui.sys.EXMLParser,u={},p={},c="";Object.defineProperty(t,"prefixURL",{get:function(){return c},set:function(t){c=t},enumerable:!0,configurable:!0}),t.parse=e,t.load=i,t.$loadAll=n,t.update=o,t.$parseURLContentAsJs=s,t.$parseURLContent=a}(EXML||(EXML={}));var eui;!function(t){var e;!function(t){function e(t){return"[object Array]"===Object.prototype.toString.call(t)}function i(t){var e=egret.getDefinitionByName(t);return e?e.prototype:null}function n(t){if(!t)return null;var e;return e=new t}t.NS_S="http://ns.egret.com/eui",t.NS_W="http://ns.egret.com/wing";var r=["Point","Matrix","Rectangle"],o=["Array","boolean","string","number"],s="eui.",a=0,h={},l=function(){function l(){}return l.prototype.$describe=function(t){if(!t)return null;var i=Object.getPrototypeOf(t);if(!i)return null;var r;if(i.hasOwnProperty("__hashCode__")&&(r=h[i.__hashCode__]))return r;var s=Object.getPrototypeOf(i);if(!s)return null;var l=n(s.constructor),u=this.$describe(l);if(u){var p=function(){};p.prototype=u,r=new p}else r={};for(var c=Object.keys(i).concat(Object.keys(t)),d=c.length,f=t.__meta__,g=0;d>g;g++){var y=c[g];if("constructor"!=y&&"_"!=y.charAt(0)&&"$"!=y.charAt(0)){var v=void 0;if(f&&f[y])v=f[y];else if(e(t[y]))v="Array";else{if(v=typeof t[y],"function"==v)continue;-1==o.indexOf(v)&&(v="any")}r[y]=v}}return Object.getPrototypeOf(s)&&(i.__hashCode__=a++,h[i.__hashCode__]=r),r},l.prototype.getClassNameById=function(e,n){if(n==t.NS_S){if("Object"==e)return e;if(-1!=r.indexOf(e))return"egret."+e}var a="";return-1!=o.indexOf(e)?e:(n==t.NS_W||(a=n&&n!=t.NS_S?n.substring(0,n.length-1)+e:s+e),i(a)||(a=""),a)},l.prototype.getDefaultPropById=function(t,e){var n,r=this.getClassNameById(t,e),o=i(r);return o&&(n=o.__defaultProperty__),n?n:""},l.prototype.getPropertyType=function(t,e){if("Object"==e)return"any";var r="",o=i(e);if(o){if(!o.hasOwnProperty("__hashCode__")){var s=egret.getDefinitionByName(e),a=n(s);if(!a)return r;this.$describe(a)}var l=h[o.__hashCode__];l&&(r=l[t])}return r},l}();t.EXMLConfig=l,__reflect(l.prototype,"eui.sys.EXMLConfig")}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){egret.$locale_strings=egret.$locale_strings||{},egret.$locale_strings.en_US=egret.$locale_strings.en_US||{};var e=egret.$locale_strings.en_US;e[2001]="EXML parsing error {0}: EXML file can't be found ",e[2002]="EXML parsing error : invalid XML file:\n{0}",e[2003]="EXML parsing error {0}: the class definitions corresponding to nodes can't be found \n {1}",e[2004]="EXML parsing error {0}: nodes cannot contain id property with the same name \n {1}",e[2005]="EXML parsing error {0}: property with the name of '{1}' does not exist on the node, or the property does not have a default value: \n {2}",e[2006]="EXML parsing error {0}: undefined view state name: '{1}' \n {2}",e[2007]="EXML parsing error {0}: only UIComponent objects within the container can use the includeIn and excludeFrom properties\n {1}",e[2008]="EXML parsing error {0}: fail to assign values of '{1}' class to property: '{2}' \n {3}",e[2009]="EXML parsing error {0}: only one ID can be referenced in the node property value '{}' label; and complex expression is not allowed to use \n {1}",e[2010]="EXML parsing error {0}: ID referenced by property: '{1}': '{2}' does not exist \n {3}",e[2011]="EXML parsing error {0}: fail to assign more than one child nodes to the same property: '{1}' \n {2}",e[2012]="EXML parsing error {0}: no default property exists on the node; and you must explicitly declare the property name that the child node is assigned to \n {1}",e[2013]="EXML parsing error {0}: view state grammar is not allowed to use on property nodes of Array class \n {1} ",e[2014]="EXML parsing error {0}: assigning the skin class itself to the node property is not allowed \n {1}",e[2015]="EXML parsing error {0}: class definition referenced by node: {1} does not exist \n {2}",e[2016]="EXML parsing error {0}: format error of 'scale9Grid' property value on the node: {1}",e[2017]="EXML parsing error {0}: namespace prefix missing on the node: {1}",e[2018]="EXML parsing error {0}: format error of 'skinName' property value on the node: {1}",e[2019]="EXML parsing error {0}: the container’s child item must be visible nodes: {1}",e[2020]="EXML parsing error {0}: for child nodes in w: Declarations, the includeIn and excludeFrom properties are not allowed to use \n {1}",e[2021]="Compile errors in {0}, the attribute name: {1}, the attribute value: {2}.",e[2022]="EXML parsing error: there contains illegal characters in the id `{0}`",e[2101]="EXML parsing warnning : fail to register the class property : {0},there is already a class with the same name in the global,please try to rename the class name for the exml. \n {1}",e[2102]="EXML parsing warnning {0}: no child node can be found on the property code \n {1}",e[2103]="EXML parsing warnning {0}: the same property '{1}' on the node is assigned multiple times \n {2}",e[2104]="EXML parsing warnning, Instantiate class {0} error,the parameters of its constructor method must be empty.",e[2201]="BasicLayout doesn't support virtualization.",e[2202]="parse skinName error,the parsing result of skinName must be a instance of eui.Skin.",e[2203]="Could not find the skin class '{0}'。",e[2204]="Undefined event.kind type (CollectionEventKind) = '{0}'.",e[2301]="parse source failed,could not find asset from URL:{0} ."}(eui||(eui={}));var eui;!function(t){egret.$locale_strings=egret.$locale_strings||{},egret.$locale_strings.zh_CN=egret.$locale_strings.zh_CN||{};var e=egret.$locale_strings.zh_CN;e[2001]="EXML解析错误 {0}: 找不到EXML文件",e[2002]="EXML解析错误: 不是有效的XML文件:\n{0}",e[2003]="EXML解析错误 {0}: 无法找到节点所对应的类定义\n{1}",e[2004]="EXML解析错误 {0}: 节点不能含有同名的id属性\n{1}",e[2005]="EXML解析错误 {0}: 节点上不存在名为'{1}'的属性,或者该属性没有初始值:\n{2}",e[2006]="EXML解析错误 {0}: 未定义的视图状态名称:'{1}'\n{2}",e[2007]="EXML解析错误 {0}: 只有处于容器内的 UIComponent 对象可以使用includeIn和excludeFrom属性\n{1}",e[2008]="EXML解析错误 {0}: 无法将'{1}'类型的值赋给属性:'{2}'\n{3}",e[2009]="EXML解析错误 {0}: 在节点属性值的‘{}’标签内只能引用一个ID,不允许使用复杂表达式\n{1}",e[2010]="EXML解析错误 {0}: 属性:'{1}'所引用的ID: '{2}'不存在\n{3}",e[2011]="EXML解析错误 {0}: 无法将多个子节点赋值给同一个属性:'{1}'\n{2}",e[2012]="EXML解析错误 {0}: 节点上不存在默认属性,必须显式声明子节点要赋值到的属性名\n{1}",e[2013]="EXML解析错误 {0}: 类型为Array的属性节点上不允许使用视图状态语法\n{1}",e[2014]="EXML解析错误 {0}: 不允许将皮肤类自身赋值给节点属性\n{1}",e[2015]="EXML解析错误 {0}: 节点引用的类定义:{1}不存在\n{2}",e[2016]="EXML解析错误 {0}: 节点上'scale9Grid'属性值的格式错误:{1}",e[2017]="EXML解析错误 {0}: 节点上缺少命名空间前缀:{1}",e[2018]="EXML解析错误 {0}: 节点上'skinName'属性值的格式错误:{1}",e[2019]="EXML解析错误 {0}: 容器的子项必须是可视节点:{1}",e[2020]="EXML解析错误 {0}: 在w:Declarations内的子节点,不允许使用includeIn和excludeFrom属性\n{1}",e[2021]="{0} 中存在编译错误,属性名 : {1},属性值 : {2}",e[2022]="EXML解析错误: id `{0}` 中含有非法字符",e[2101]="EXML解析警告: 在EXML根节点上声明的 class 属性: {0} 注册失败,所对应的类已经存在,请尝试重命名要注册的类名。\n{1}",e[2102]="EXML解析警告 {0}: 在属性节点上找不到任何子节点\n{1}",e[2103]="EXML解析警告 {0}: 节点上的同一个属性'{1}'被多次赋值\n{2}",e[2104]="EXML解析警告,无法直接实例化自定义组件:{0} ,在EXML中使用的自定义组件必须要能直接被实例化,否则可能导致后续EXML解析报错。",e[2201]="BasicLayout 不支持虚拟化。",e[2202]="皮肤解析出错,属性 skinName 的值必须要能够解析为一个 eui.Skin 的实例。",e[2203]="找不到指定的皮肤类 '{0}'。",e[2204]="未定义的event.kind类型(CollectionEventKind) = '{0}'.",e[2301]="素材解析失败,找不到URL:{0} 所对应的资源。"}(eui||(eui={}));var eui;!function(t){var e=function(e){function i(){return e.call(this)||this}return __extends(i,e),i.prototype.measure=function(){e.prototype.measure.call(this),t.sys.measure(this.$target)},i.prototype.updateDisplayList=function(i,n){e.prototype.updateDisplayList.call(this,i,n);var r=this.$target,o=t.sys.updateDisplayList(r,i,n);r.setContentSize(Math.ceil(o.x),Math.ceil(o.y))},i}(t.LayoutBase);t.BasicLayout=e,__reflect(e.prototype,"eui.BasicLayout")}(eui||(eui={})),function(t){var e;!function(t){function e(t,e){if(!t||"number"==typeof t)return t;var i=t,n=i.indexOf("%");if(-1==n)return+i;var r=+i.substring(0,n);return.01*r*e}function i(t){if(t){for(var e=0,i=0,n=egret.$TempRectangle,o=t.numChildren,s=0;o>s;s++){var a=t.getChildAt(s);if(egret.is(a,r)&&a.$includeInLayout){var h=a.$UIComponent,l=+h[4],u=+h[5],p=+h[0],c=+h[1],d=+h[2],f=+h[3],g=void 0,y=void 0;a.getPreferredBounds(n),isNaN(p)||isNaN(c)?isNaN(l)?isNaN(p)&&isNaN(c)?g=n.x:(g=isNaN(p)?0:p,g+=isNaN(c)?0:c):g=2*Math.abs(l):g=p+c,isNaN(d)||isNaN(f)?isNaN(u)?isNaN(d)&&isNaN(f)?y=n.y:(y=isNaN(d)?0:d,y+=isNaN(f)?0:f):y=2*Math.abs(u):y=d+f;var v=n.width,m=n.height;e=Math.ceil(Math.max(e,g+v)),i=Math.ceil(Math.max(i,y+m))}}t.setMeasuredSize(e,i)}}function n(t,i,n){if(t){for(var o=t.numChildren,s=0,a=0,h=egret.$TempRectangle,l=0;o>l;l++){var u=t.getChildAt(l);if(egret.is(u,r)&&u.$includeInLayout){var p=u.$UIComponent,c=e(p[4],.5*i),d=e(p[5],.5*n),f=e(p[0],i),g=e(p[1],i),y=e(p[2],n),v=e(p[3],n),m=p[6],$=p[7],E=0/0,C=0/0;isNaN(f)||isNaN(g)?isNaN(m)||(E=Math.round(i*Math.min(.01*m,1))):E=i-g-f,isNaN(y)||isNaN(v)?isNaN($)||(C=Math.round(n*Math.min(.01*$,1))):C=n-v-y,u.setLayoutBoundsSize(E,C),u.getLayoutBounds(h);var _=h.width,b=h.height,T=0/0,S=0/0;T=isNaN(c)?isNaN(f)?isNaN(g)?h.x:i-_-g:f:Math.round((i-_)/2+c),S=isNaN(d)?isNaN(y)?isNaN(v)?h.y:n-b-v:y:Math.round((n-b)/2+d),u.setLayoutBoundsPosition(T,S),s=Math.max(s,T+_),a=Math.max(a,S+b)}}return egret.$TempPoint.setTo(s,a)}}var r="eui.UIComponent";t.measure=i,t.updateDisplayList=n}(e=t.sys||(t.sys={}))}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.LEFT="left",t.JUSTIFY_USING_GAP="justifyUsingGap",t.JUSTIFY_USING_WIDTH="justifyUsingWidth",t}();t.ColumnAlign=e,__reflect(e.prototype,"eui.ColumnAlign")}(eui||(eui={}));var eui;!function(t){var e="eui.UIComponent",i=function(i){function n(){return null!==i&&i.apply(this,arguments)||this}return __extends(n,i),n.prototype.measureReal=function(){for(var t=this.$target,i=t.numElements,n=i,r=0,o=0,s=egret.$TempRectangle,a=0;i>a;a++){var h=t.getElementAt(a);egret.is(h,e)&&h.$includeInLayout?(h.getPreferredBounds(s),r+=s.width,o=Math.max(o,s.height)):n--}r+=(n-1)*this.$gap;var l=this.$paddingLeft+this.$paddingRight,u=this.$paddingTop+this.$paddingBottom;t.setMeasuredSize(r+l,o+u)},n.prototype.measureVirtual=function(){for(var t=this.$target,i=this.$typicalWidth,n=this.getElementTotalSize(),r=Math.max(this.maxElementSize,this.$typicalHeight),o=egret.$TempRectangle,s=this.endIndex,a=this.elementSizeTable,h=this.startIndex;s>h;h++){var l=t.getElementAt(h);egret.is(l,e)&&l.$includeInLayout&&(l.getPreferredBounds(o),n+=o.width,n-=isNaN(a[h])?i:a[h],r=Math.max(r,o.height))}var u=this.$paddingLeft+this.$paddingRight,p=this.$paddingTop+this.$paddingBottom;t.setMeasuredSize(n+u,r+p)},n.prototype.updateDisplayListReal=function(i,n){var r=this.$target,o=this.$paddingLeft,s=this.$paddingRight,a=this.$paddingTop,h=this.$paddingBottom,l=this.$gap,u=Math.max(0,i-o-s),p=Math.max(0,n-a-h),c=this.$horizontalAlign==t.JustifyAlign.JUSTIFY,d=this.$verticalAlign==t.JustifyAlign.JUSTIFY||this.$verticalAlign==t.JustifyAlign.CONTENT_JUSTIFY,f=0;d||(this.$verticalAlign==egret.VerticalAlign.MIDDLE?f=.5:this.$verticalAlign==egret.VerticalAlign.BOTTOM&&(f=1));var g,y,v,m=r.numElements,$=m,E=o,C=a,_=0,b=0,T=[],S=u,x=this.maxElementSize,I=egret.$TempRectangle;for(g=0;m>g;g++){var P=r.getElementAt(g);if(egret.is(P,e)&&P.$includeInLayout)if(P.getPreferredBounds(I),x=Math.max(x,I.height),c)_+=I.width;else{var L=P.$UIComponent;isNaN(L[6])?S-=I.width:(b+=L[6],v=new t.sys.ChildInfo,v.layoutElement=P,v.percent=L[6],v.min=L[12],v.max=L[13],T.push(v))}else $--}S-=l*($-1),S=S>0?S:0;var N,O=u-_-l*($-1),A=$,B={};if(c){if(0>O){for(N=S/$,g=0;m>g;g++)y=r.getElementAt(g),egret.is(y,e)&&y.$includeInLayout&&(y.getPreferredBounds(I),I.width<=N&&(S-=I.width,A--));S=S>0?S:0}}else if(b>0){this.flexChildrenProportionally(u,S,b,T);var D=0,R=T.length;for(g=0;R>g;g++){v=T[g];var M=Math.round(v.size+D);D+=v.size-M,B[v.layoutElement.$hashCode]=M,S-=M}S=S>0?S:0}this.$horizontalAlign==egret.HorizontalAlign.CENTER?E=o+.5*S:this.$horizontalAlign==egret.HorizontalAlign.RIGHT&&(E=o+S);var w=o,V=a,H=0,z=0,U=Math.ceil(p);this.$verticalAlign==t.JustifyAlign.CONTENT_JUSTIFY&&(U=Math.ceil(Math.max(p,x)));var k,F,G=0;for(g=0;m>g;g++){var j=0;if(y=r.getElementAt(g),egret.is(y,e)&&y.$includeInLayout){if(y.getPreferredBounds(I),k=0/0,c?(F=0/0,O>0?F=S*I.width/_:0>O&&I.width>N&&(F=S/A),isNaN(F)||(k=Math.round(F+G),G+=F-k)):k=B[y.$hashCode],d)C=a,y.setLayoutBoundsSize(k,U),y.getLayoutBounds(I);else{var W=0/0,L=y.$UIComponent;if(!isNaN(y.percentHeight)){var X=Math.min(100,L[7]);W=Math.round(p*X*.01)}y.setLayoutBoundsSize(k,W),y.getLayoutBounds(I),j=(p-I.height)*f,j=j>0?j:0,C=a+j}y.setLayoutBoundsPosition(Math.round(E),Math.round(C)),H=Math.ceil(I.width),z=Math.ceil(I.height),w=Math.max(w,E+H),V=Math.max(V,C+z),E+=H+l}}this.maxElementSize=x,r.setContentSize(w+s,V+h)},n.prototype.updateDisplayListVirtual=function(i,n){var r=this.$target;this.indexInViewCalculated?this.indexInViewCalculated=!1:this.getIndexInView();var o,s=this.$paddingRight,a=this.$paddingTop,h=this.$paddingBottom,l=this.$gap,u=r.numElements;if(-1==this.startIndex||-1==this.endIndex)return o=this.getStartPosition(u)-l+s,void r.setContentSize(o,r.contentHeight);var p=this.endIndex;r.setVirtualElementIndicesInView(this.startIndex,p);var c=this.$verticalAlign==t.JustifyAlign.JUSTIFY||this.$verticalAlign==t.JustifyAlign.CONTENT_JUSTIFY,d=this.$verticalAlign==t.JustifyAlign.CONTENT_JUSTIFY,f=0;c||(this.$verticalAlign==egret.VerticalAlign.MIDDLE?f=.5:this.$verticalAlign==egret.VerticalAlign.BOTTOM&&(f=1));var g,y=egret.$TempRectangle,v=Math.max(0,n-a-h),m=Math.ceil(v),$=this.$typicalHeight,E=this.$typicalWidth,C=this.maxElementSize,_=Math.max($,this.maxElementSize);if(d){for(var b=this.startIndex;p>=b;b++)g=r.getVirtualElementAt(b),egret.is(g,e)&&g.$includeInLayout&&(g.getPreferredBounds(y),C=Math.max(C,y.height));m=Math.ceil(Math.max(v,C))}for(var T,S=0,x=0,I=0,P=!1,L=this.elementSizeTable,N=this.startIndex;p>=N;N++){var O=0;g=r.getVirtualElementAt(N),egret.is(g,e)&&g.$includeInLayout&&(g.getPreferredBounds(y),d||(C=Math.max(C,y.height)),c?(x=a,g.setLayoutBoundsSize(0/0,m),g.getLayoutBounds(y)):(g.getLayoutBounds(y),O=(v-y.height)*f,O=O>0?O:0,x=a+O),I=Math.max(I,y.height),P||(T=isNaN(L[N])?E:L[N],T!=y.width&&(P=!0)),L[N]=y.width,S=this.getStartPosition(N),g.setLayoutBoundsPosition(Math.round(S),Math.round(x)))}I+=a+h,o=this.getStartPosition(u)-l+s,this.maxElementSize=C,r.setContentSize(o,I),(P||_s;s++){var a=o[s];isNaN(a)&&(a=i),n+=a+r}return n},n.prototype.getElementSize=function(t){if(this.$useVirtualLayout){var e=this.elementSizeTable[t];return isNaN(e)&&(e=this.$typicalWidth),e}return this.$target?this.$target.getElementAt(t).width:0},n.prototype.getElementTotalSize=function(){for(var t=this.$typicalWidth,e=this.$gap,i=0,n=this.$target.numElements,r=this.elementSizeTable,o=0;n>o;o++){var s=r[o];isNaN(s)&&(s=t),i+=s+e}return i-=e},n.prototype.elementAdded=function(t){this.useVirtualLayout&&(i.prototype.elementAdded.call(this,t),this.elementSizeTable.splice(t,0,this.$typicalWidth))},n.prototype.getIndexInView=function(){var t=this.$target;if(!t||0==t.numElements)return this.startIndex=this.endIndex=-1,!1;var e=t.$UIComponent;if(e[10]<=0||e[11]<=0)return this.startIndex=this.endIndex=-1,!1;var i=t.numElements,n=this.getStartPosition(i-1)+this.elementSizeTable[i-1]+this.$paddingRight,r=t.scrollH;if(r>n-this.$paddingRight)return this.startIndex=-1,this.endIndex=-1,!1;var o=t.scrollH+e[10];if(o0?this._requestedColumnCount:this._columnCount,l=this._requestedRowCount>0?this._requestedRowCount:this._rowCount,u=isNaN(this._horizontalGap)?0:this._horizontalGap,p=isNaN(this._verticalGap)?0:this._verticalGap;h>0&&(o=h*(this._columnWidth+u)-u),l>0&&(s=l*(this._rowHeight+p)-p);var c=this._paddingLeft+this._paddingRight,d=this._paddingTop+this._paddingBottom;t.setMeasuredSize(o+c,s+d),this._columnCount=e,this._rowCount=i,this._columnWidth=n,this._rowHeight=r}},n.prototype.calculateRowAndColumn=function(i,n){var r=this.$target,o=isNaN(this._horizontalGap)?0:this._horizontalGap,s=isNaN(this._verticalGap)?0:this._verticalGap;this._rowCount=this._columnCount=-1;for(var a=r.numElements,h=a,l=0;h>l;l++){var u=r.getElementAt(l);!u||egret.is(u,e)&&u.$includeInLayout||a--}if(0==a)return void(this._rowCount=this._columnCount=0);(isNaN(this.explicitColumnWidth)||isNaN(this.explicitRowHeight))&&this.updateMaxElementSize(),isNaN(this.explicitColumnWidth)?this._columnWidth=this.maxElementWidth:this._columnWidth=this.explicitColumnWidth,isNaN(this.explicitRowHeight)?this._rowHeight=this.maxElementHeight:this._rowHeight=this.explicitRowHeight;var p=this._columnWidth+o;0>=p&&(p=1);var c=this._rowHeight+s;0>=c&&(c=1);var d=this._orientation==t.TileOrientation.COLUMNS,f=!isNaN(i),g=!isNaN(n),y=this._paddingLeft,v=this._paddingRight,m=this._paddingTop,$=this._paddingBottom;if(this._requestedColumnCount>0||this._requestedRowCount>0)this._requestedRowCount>0&&(this._rowCount=Math.min(this._requestedRowCount,a)),this._requestedColumnCount>0&&(this._columnCount=Math.min(this._requestedColumnCount,a));else if(f||g)if(!f||g&&d){var E=Math.max(0,n-m-$);this._rowCount=Math.floor((E+s)/c),this._rowCount=Math.max(1,Math.min(this._rowCount,a))}else{var C=Math.max(0,i-y-v);this._columnCount=Math.floor((C+o)/p),this._columnCount=Math.max(1,Math.min(this._columnCount,a))}else{var _=Math.sqrt(a*p*c);d?this._rowCount=Math.max(1,Math.round(_/c)):this._columnCount=Math.max(1,Math.round(_/p))}-1==this._rowCount&&(this._rowCount=Math.max(1,Math.ceil(a/this._columnCount))),-1==this._columnCount&&(this._columnCount=Math.max(1,Math.ceil(a/this._rowCount))),this._requestedColumnCount>0&&this._requestedRowCount>0&&(this._orientation==t.TileOrientation.ROWS?this._rowCount=Math.max(1,Math.ceil(a/this._requestedColumnCount)):this._columnCount=Math.max(1,Math.ceil(a/this._requestedRowCount)))},n.prototype.updateMaxElementSize=function(){this.$target&&(this.$useVirtualLayout?(this.maxElementWidth=Math.max(this.maxElementWidth,this.$typicalWidth),this.maxElementHeight=Math.max(this.maxElementHeight,this.$typicalHeight),this.doUpdateMaxElementSize(this.startIndex,this.endIndex)):this.doUpdateMaxElementSize(0,this.$target.numElements-1))},n.prototype.doUpdateMaxElementSize=function(t,i){var n=this.maxElementWidth,r=this.maxElementHeight,o=egret.$TempRectangle,s=this.$target;if(-1!=t&&-1!=i)for(var a=t;i>=a;a++){var h=s.getVirtualElementAt(a);egret.is(h,e)&&h.$includeInLayout&&(h.getPreferredBounds(o),n=Math.max(n,o.width),r=Math.max(r,o.height))}this.maxElementWidth=n,this.maxElementHeight=r},n.prototype.clearVirtualLayoutCache=function(){i.prototype.clearVirtualLayoutCache.call(this),this.maxElementWidth=0,this.maxElementHeight=0},n.prototype.scrollPositionChanged=function(){if(this.$useVirtualLayout){var t=this.getIndexInView();t&&(this.indexInViewCalculated=!0,this.$target.invalidateDisplayList())}},n.prototype.getIndexInView=function(){if(!this.$target||0==this.$target.numElements)return this.startIndex=this.endIndex=-1,!1;var e=this.$target,i=e.numElements;if(!this.$useVirtualLayout)return this.startIndex=0,this.endIndex=i-1,!1;var n=e.$UIComponent;if(0==n[10]||0==n[11])return this.startIndex=this.endIndex=-1,!1;var r=this.startIndex,o=this.endIndex,s=this._paddingLeft,a=this._paddingTop,h=isNaN(this._horizontalGap)?0:this._horizontalGap,l=isNaN(this._verticalGap)?0:this._verticalGap;if(this._orientation==t.TileOrientation.COLUMNS){var u=this._columnWidth+h;if(0>=u)return this.startIndex=0,this.endIndex=i-1,!1;var p=e.scrollH,c=p+n[10],d=Math.floor((p-s)/u);0>d&&(d=0);var f=Math.ceil((c-s)/u);0>f&&(f=0),this.startIndex=Math.min(i-1,Math.max(0,d*this._rowCount)),this.endIndex=Math.min(i-1,Math.max(0,f*this._rowCount-1))}else{var g=this._rowHeight+l;if(0>=g)return this.startIndex=0,this.endIndex=i-1,!1;var y=e.scrollV,v=y+n[11],m=Math.floor((y-a)/g);0>m&&(m=0);var $=Math.ceil((v-a)/g);0>$&&($=0),this.startIndex=Math.min(i-1,Math.max(0,m*this._columnCount)),this.endIndex=Math.min(i-1,Math.max(0,$*this._columnCount-1))}return this.startIndex!=r||this.endIndex!=o},n.prototype.updateDisplayList=function(n,r){if(i.prototype.updateDisplayList.call(this,n,r),this.$target){var o=this.$target,s=this._paddingLeft,a=this._paddingRight,h=this._paddingTop,l=this._paddingBottom;if(this.indexInViewCalculated)this.indexInViewCalculated=!1;else{if(this.calculateRowAndColumn(n,r),0==this._rowCount||0==this._columnCount)return void o.setContentSize(s+a,h+l);this.adjustForJustify(n,r),this.getIndexInView()}if(this.$useVirtualLayout&&(this.calculateRowAndColumn(n,r),this.adjustForJustify(n,r)),-1==this.startIndex||-1==this.endIndex)return void o.setContentSize(0,0); +var u=this.endIndex;o.setVirtualElementIndicesInView(this.startIndex,u);for(var p,c,d,f,g,y=this._orientation==t.TileOrientation.COLUMNS,v=this.startIndex,m=isNaN(this._horizontalGap)?0:this._horizontalGap,$=isNaN(this._verticalGap)?0:this._verticalGap,E=this._rowCount,C=this._columnCount,_=this._columnWidth,b=this._rowHeight,T=this.startIndex;u>=T;T++)if(p=this.$useVirtualLayout?this.target.getVirtualElementAt(T):this.target.getElementAt(T),egret.is(p,e)&&p.$includeInLayout){switch(y?(f=Math.ceil((v+1)/E)-1,g=Math.ceil((v+1)%E)-1,-1==g&&(g=E-1)):(f=Math.ceil((v+1)%C)-1,-1==f&&(f=C-1),g=Math.ceil((v+1)/C)-1),this._horizontalAlign){case egret.HorizontalAlign.RIGHT:c=n-(f+1)*(_+m)+m-a;break;case egret.HorizontalAlign.LEFT:c=f*(_+m)+s;break;default:c=f*(_+m)+s}switch(this._verticalAlign){case egret.VerticalAlign.TOP:d=g*(b+$)+h;break;case egret.VerticalAlign.BOTTOM:d=r-(g+1)*(b+$)+$-l;break;default:d=g*(b+$)+h}this.sizeAndPositionElement(p,c,d,_,b),v++}var S=s+a,x=h+l,I=(_+m)*C-m,P=(b+$)*E-$;o.setContentSize(I+S,P+x)}},n.prototype.sizeAndPositionElement=function(e,i,n,r,o){var s=0/0,a=0/0,h=e.$UIComponent;this._horizontalAlign==t.JustifyAlign.JUSTIFY?s=r:isNaN(h[6])||(s=r*h[6]*.01),this._verticalAlign==t.JustifyAlign.JUSTIFY?a=o:isNaN(h[7])||(a=o*h[7]*.01),e.setLayoutBoundsSize(Math.round(s),Math.round(a));var l=i,u=egret.$TempRectangle;switch(e.getLayoutBounds(u),this._horizontalAlign){case egret.HorizontalAlign.RIGHT:l+=r-u.width;break;case egret.HorizontalAlign.CENTER:l=i+(r-u.width)/2}var p=n;switch(this._verticalAlign){case egret.VerticalAlign.BOTTOM:p+=o-u.height;break;case egret.VerticalAlign.MIDDLE:p+=(o-u.height)/2}e.setLayoutBoundsPosition(Math.round(l),Math.round(p))},n.prototype.adjustForJustify=function(e,i){var n=this._paddingLeft,r=this._paddingRight,o=this._paddingTop,s=this._paddingBottom,a=Math.max(0,e-n-r),h=Math.max(0,i-o-s);isNaN(this.explicitVerticalGap)||(this._verticalGap=this.explicitVerticalGap),isNaN(this.explicitHorizontalGap)||(this._horizontalGap=this.explicitHorizontalGap),this._verticalGap=isNaN(this._verticalGap)?0:this._verticalGap,this._horizontalGap=isNaN(this._horizontalGap)?0:this._horizontalGap;var l,u=h-this._rowHeight*this._rowCount,p=a-this._columnWidth*this._columnCount;u>0&&(this._rowAlign==t.RowAlign.JUSTIFY_USING_GAP?(l=Math.max(1,this._rowCount-1),this._verticalGap=u/l):this._rowAlign==t.RowAlign.JUSTIFY_USING_HEIGHT&&this._rowCount>0&&(this._rowHeight+=(u-(this._rowCount-1)*this._verticalGap)/this._rowCount)),p>0&&(this._columnAlign==t.ColumnAlign.JUSTIFY_USING_GAP?(l=Math.max(1,this._columnCount-1),this._horizontalGap=p/l):this._columnAlign==t.ColumnAlign.JUSTIFY_USING_WIDTH&&this._columnCount>0&&(this._columnWidth+=(p-(this._columnCount-1)*this._horizontalGap)/this._columnCount))},n}(t.LayoutBase);t.TileLayout=i,__reflect(i.prototype,"eui.TileLayout")}(eui||(eui={}));var eui;!function(t){var e=function(){function t(){}return t.ROWS="rows",t.COLUMNS="columns",t}();t.TileOrientation=e,__reflect(e.prototype,"eui.TileOrientation")}(eui||(eui={}));var eui;!function(t){var e="eui.UIComponent",i=function(i){function n(){return null!==i&&i.apply(this,arguments)||this}return __extends(n,i),n.prototype.measureReal=function(){for(var t=this.$target,i=t.numElements,n=i,r=0,o=0,s=egret.$TempRectangle,a=0;i>a;a++){var h=t.getElementAt(a);egret.is(h,e)&&h.$includeInLayout?(h.getPreferredBounds(s),o+=s.height,r=Math.max(r,s.width)):n--}o+=(n-1)*this.$gap;var l=this.$paddingLeft+this.$paddingRight,u=this.$paddingTop+this.$paddingBottom;t.setMeasuredSize(r+l,o+u)},n.prototype.measureVirtual=function(){for(var t=this.$target,i=this.$typicalHeight,n=this.getElementTotalSize(),r=Math.max(this.maxElementSize,this.$typicalWidth),o=egret.$TempRectangle,s=this.endIndex,a=this.elementSizeTable,h=this.startIndex;s>h;h++){var l=t.getElementAt(h);egret.is(l,e)&&l.$includeInLayout&&(l.getPreferredBounds(o),n+=o.height,n-=isNaN(a[h])?i:a[h],r=Math.max(r,o.width))}var u=this.$paddingLeft+this.$paddingRight,p=this.$paddingTop+this.$paddingBottom;t.setMeasuredSize(r+u,n+p)},n.prototype.updateDisplayListReal=function(i,n){var r=this.$target,o=this.$paddingLeft,s=this.$paddingRight,a=this.$paddingTop,h=this.$paddingBottom,l=this.$gap,u=Math.max(0,i-o-s),p=Math.max(0,n-a-h),c=this.$verticalAlign==t.JustifyAlign.JUSTIFY,d=this.$horizontalAlign==t.JustifyAlign.JUSTIFY||this.$horizontalAlign==t.JustifyAlign.CONTENT_JUSTIFY,f=0;d||(this.$horizontalAlign==egret.HorizontalAlign.CENTER?f=.5:this.$horizontalAlign==egret.HorizontalAlign.RIGHT&&(f=1));var g,y,v,m=r.numElements,$=m,E=o,C=a,_=0,b=0,T=[],S=p,x=this.maxElementSize,I=egret.$TempRectangle;for(g=0;m>g;g++){var P=r.getElementAt(g);if(egret.is(P,e)&&P.$includeInLayout)if(P.getPreferredBounds(I),x=Math.max(x,I.width),c)_+=I.height;else{var L=P.$UIComponent;isNaN(L[7])?S-=I.height:(b+=L[7],v=new t.sys.ChildInfo,v.layoutElement=P,v.percent=L[7],v.min=L[14],v.max=L[15],T.push(v))}else $--}S-=l*($-1),S=S>0?S:0;var N,O=p-_-l*($-1),A=$,B={};if(c){if(0>O){for(N=S/$,g=0;m>g;g++)y=r.getElementAt(g),egret.is(y,e)&&y.$includeInLayout&&(y.getPreferredBounds(I),I.height<=N&&(S-=I.height,A--));S=S>0?S:0}}else if(b>0){this.flexChildrenProportionally(p,S,b,T);var D=0,R=T.length;for(g=0;R>g;g++){v=T[g];var M=Math.round(v.size+D);D+=v.size-M,B[v.layoutElement.$hashCode]=M,S-=M}S=S>0?S:0}this.$verticalAlign==egret.VerticalAlign.MIDDLE?C=a+.5*S:this.$verticalAlign==egret.VerticalAlign.BOTTOM&&(C=a+S);var w=o,V=a,H=0,z=0,U=Math.ceil(u);this.$horizontalAlign==t.JustifyAlign.CONTENT_JUSTIFY&&(U=Math.ceil(Math.max(u,x)));var k,F,G=0;for(g=0;m>g;g++){var j=0;if(y=r.getElementAt(g),egret.is(y,e)&&y.$includeInLayout){if(y.getPreferredBounds(I),k=0/0,c?(F=0/0,O>0?F=S*I.height/_:0>O&&I.height>N&&(F=S/A),isNaN(F)||(k=Math.round(F+G),G+=F-k)):k=B[y.$hashCode],d)E=o,y.setLayoutBoundsSize(U,k),y.getLayoutBounds(I);else{var W=0/0,L=y.$UIComponent;if(!isNaN(L[6])){var X=Math.min(100,L[6]);W=Math.round(u*X*.01)}y.setLayoutBoundsSize(W,k),y.getLayoutBounds(I),j=(u-I.width)*f,j=j>0?j:0,E=o+j}y.setLayoutBoundsPosition(Math.round(E),Math.round(C)),H=Math.ceil(I.width),z=Math.ceil(I.height),w=Math.max(w,E+H),V=Math.max(V,C+z),C+=z+l}}this.maxElementSize=x,r.setContentSize(w+s,V+h)},n.prototype.updateDisplayListVirtual=function(i,n){var r=this.$target;this.indexInViewCalculated?this.indexInViewCalculated=!1:this.getIndexInView();var o,s=this.$paddingBottom,a=this.$paddingLeft,h=this.$paddingRight,l=this.$gap,u=r.numElements;if(-1==this.startIndex||-1==this.endIndex)return o=this.getStartPosition(u)-l+s,void r.setContentSize(r.contentWidth,o);var p=this.endIndex;r.setVirtualElementIndicesInView(this.startIndex,p);var c=this.$horizontalAlign==t.JustifyAlign.JUSTIFY||this.$horizontalAlign==t.JustifyAlign.CONTENT_JUSTIFY,d=this.$horizontalAlign==t.JustifyAlign.CONTENT_JUSTIFY,f=0;c||(this.$horizontalAlign==egret.HorizontalAlign.CENTER?f=.5:this.$horizontalAlign==egret.HorizontalAlign.RIGHT&&(f=1));var g,y=egret.$TempRectangle,v=Math.max(0,i-a-h),m=Math.ceil(v),$=this.$typicalHeight,E=this.$typicalWidth,C=this.maxElementSize,_=Math.max(E,this.maxElementSize);if(d){for(var b=this.startIndex;p>=b;b++)g=r.getVirtualElementAt(b),egret.is(g,e)&&g.$includeInLayout&&(g.getPreferredBounds(y),C=Math.max(C,y.width));m=Math.ceil(Math.max(v,C))}for(var T,S=0,x=0,I=0,P=!1,L=this.elementSizeTable,N=this.startIndex;p>=N;N++){var O=0;g=r.getVirtualElementAt(N),egret.is(g,e)&&g.$includeInLayout&&(g.getPreferredBounds(y),d||(C=Math.max(C,y.width)),c?(S=a,g.setLayoutBoundsSize(m,0/0),g.getLayoutBounds(y)):(g.getLayoutBounds(y),O=(v-y.width)*f,O=O>0?O:0,S=a+O),I=Math.max(I,y.width),P||(T=isNaN(L[N])?$:L[N],T!=y.height&&(P=!0)),L[N]=y.height,x=this.getStartPosition(N),g.setLayoutBoundsPosition(Math.round(S),Math.round(x)))}I+=a+h,o=this.getStartPosition(u)-l+s,this.maxElementSize=C,r.setContentSize(I,o),(P||_s;s++){var a=o[s];isNaN(a)&&(a=i),n+=a+r}return n},n.prototype.getElementSize=function(t){if(this.$useVirtualLayout){var e=this.elementSizeTable[t];return isNaN(e)&&(e=this.$typicalHeight),e}return this.$target?this.$target.getElementAt(t).height:0},n.prototype.getElementTotalSize=function(){for(var t=this.$typicalHeight,e=this.$gap,i=0,n=this.$target.numElements,r=this.elementSizeTable,o=0;n>o;o++){var s=r[o];isNaN(s)&&(s=t),i+=s+e}return i-=e},n.prototype.elementAdded=function(t){this.$useVirtualLayout&&(i.prototype.elementAdded.call(this,t),this.elementSizeTable.splice(t,0,this.$typicalHeight))},n.prototype.getIndexInView=function(){var t=this.$target;if(!t||0==t.numElements)return this.startIndex=this.endIndex=-1,!1;var e=t.$UIComponent;if(0==e[10]||0==e[11])return this.startIndex=this.endIndex=-1,!1;var i=t.numElements,n=this.getStartPosition(i-1)+this.elementSizeTable[i-1]+this.$paddingBottom,r=t.scrollV;if(r>n-this.$paddingBottom)return this.startIndex=-1,this.endIndex=-1,!1;var o=t.scrollV+e[11];if(o=h){var p=s*(1- -h/(.5*u));p=Math.max(5,Math.round(p)),n.setLayoutBoundsSize(p,0/0),n.setLayoutBoundsPosition(0,a)}else if(h>=l-u){var p=s*(1-(h-l+u)/(.5*u));p=Math.max(5,Math.round(p)),n.setLayoutBoundsSize(p,0/0),n.setLayoutBoundsPosition(e-p,a)}else{var c=(e-s)*h/(l-u);n.setLayoutBoundsSize(0/0,0/0),n.setLayoutBoundsPosition(c,a)}}},e.prototype.onPropertyChanged=function(t){switch(t.property){case"scrollH":case"contentWidth":this.invalidateDisplayList()}},e}(t.ScrollBarBase);t.HScrollBar=e,__reflect(e.prototype,"eui.HScrollBar")}(eui||(eui={}));var eui;!function(t){var e=function(){function t(t,e,i,n){this.target=t,this.propertyName=e,this.position=i,this.relativeTo=n}return t.prototype.apply=function(t,e){var i,n=t[this.relativeTo],r=t[this.target],o=this.propertyName?t[this.propertyName]:e;if(r&&o){switch(this.position){case 0:i=0;break;case 1:i=-1;break;case 2:i=o.getChildIndex(n);break;case 3:i=o.getChildIndex(n)+1}-1==i&&(i=o.numChildren),egret.is(o,"eui.Component")&&o.$Component[8].$elementsContent.push(r),o.addChildAt(r,i)}},t.prototype.remove=function(t,e){var i=this.propertyName?t[this.propertyName]:e,n=t[this.target];if(n&&i&&(n.$parent===i&&i.removeChild(n),egret.is(i,"eui.Component"))){var r=i.$Component[8].$elementsContent,o=r.indexOf(n);o>-1&&r.splice(o,1)}},t}();t.AddItems=e,__reflect(e.prototype,"eui.AddItems",["eui.IOverride"])}(eui||(eui={}));var eui;!function(t){var e=function(){function t(t,e,i){this.target=t,this.name=e,this.value=i}return t.prototype.apply=function(t,e){var i=this.target?t[this.target]:t;i&&(this.oldValue=i[this.name],this.setPropertyValue(i,this.name,this.value,this.oldValue))},t.prototype.remove=function(t,e){var i=this.target?t[this.target]:t;i&&(this.setPropertyValue(i,this.name,this.oldValue,this.oldValue),this.oldValue=null)},t.prototype.setPropertyValue=function(t,e,i,n){void 0===i||null===i?t[e]=i:"number"==typeof n?t[e]=+i:"boolean"==typeof n?t[e]=this.toBoolean(i):t[e]=i},t.prototype.toBoolean=function(t){return"string"==typeof t?"true"==t.toLowerCase():0!=t},t}();t.SetProperty=e,__reflect(e.prototype,"eui.SetProperty",["eui.IOverride"])}(eui||(eui={}));var eui;!function(t){var e=function(){function e(t,e,i,n,r){this.host=t,this.templates=e,this.chainIndex=i,this.target=n,this.prop=r}return e.prototype.apply=function(e,i){if(this.target){var n=this.target[this.prop];this.oldValue&&this.setPropertyValue(this.target,this.prop,this.oldValue,this.oldValue),n&&(this.oldValue=n),t.Binding.$bindProperties(this.host,this.templates.concat(),this.chainIndex.concat(),this.target,this.prop)}},e.prototype.remove=function(t,e){if(this.target){var i=this.oldValue;this.target[this.prop]&&(this.oldValue=this.target[this.prop]),i&&this.setPropertyValue(this.target,this.prop,i,i)}},e.prototype.setPropertyValue=function(t,e,i,n){void 0===i||null===i?t[e]=i:"number"==typeof n?t[e]=+i:"boolean"==typeof n?t[e]=this.toBoolean(i):t[e]=i},e.prototype.toBoolean=function(t){return"string"==typeof t?"true"==t.toLowerCase():0!=t},e}();t.SetStateProperty=e,__reflect(e.prototype,"eui.SetStateProperty",["eui.IOverride"])}(eui||(eui={}));var eui;!function(t){var e;!function(t){function e(t,e,i,n,o,s,a,h,l,u){var p;if(!isNaN(i)&&isNaN(n)){if(p=r(t,e,i,s,i,h,i,u))return p}else if(isNaN(i)&&!isNaN(n)&&(p=r(t,e,o,n,a,n,l,n)))return p;return p=r(t,e,o,s,a,h,l,u)}function i(t,e,i,r,o,s,a,h,l,u){var p;if(!isNaN(i)&&isNaN(r)){if(p=n(t,e,i,s,i,h,i,u))return p}else if(isNaN(i)&&!isNaN(r)&&(p=n(t,e,o,r,a,r,l,r)))return p;return p=n(t,e,o,s,a,h,l,u)}function n(t,e,i,n,r,s,h,l){var u=e.b,p=e.d;if(u>-1e-9&&1e-9>u&&(u=0),p>-1e-9&&1e-9>p&&(p=0),0==u&&0==p)return null;if(0==u&&0==p)return null;if(0==u)return egret.Point.create(i,t/Math.abs(p));if(0==p)return egret.Point.create(t/Math.abs(u),n);var c,d,f,g=u*p>=0?p:-p;if(0!=g&&i>0){var y=1/g;i=Math.max(r,Math.min(h,i)),d=i,f=(t-u*d)*y,f>=s&&l>=f&&u*d+g*f>=0&&(c=egret.Point.create(d,f)),f=(-t-u*d)*y,f>=s&&l>=f&&0>u*d+g*f&&(!c||a(c.x,c.y,e).width>a(d,f,e).width)&&(egret.Point.release(c),c=egret.Point.create(d,f))}if(0!=u&&n>0){var v=1/u;n=Math.max(s,Math.min(l,n)),f=n,d=(t-g*f)*v,d>=r&&h>=d&&u*d+g*f>=0&&(!c||a(c.x,c.y,e).width>a(d,f,e).width)&&(c=egret.Point.create(d,f)),d=(-t-g*f)*v,d>=r&&h>=d&&0>u*d+g*f&&(!c||a(c.x,c.y,e).width>a(d,f,e).width)&&(egret.Point.release(c),c=egret.Point.create(d,f))}if(c)return c;var m=e.a,$=e.c,E=m*$>=0?$:-$;return o(u,g,t,r,s,h,l,m,E)}function r(t,e,i,n,r,s,h,l){var u=e.a,p=e.c;if(u>-1e-9&&1e-9>u&&(u=0),p>-1e-9&&1e-9>p&&(p=0),0==u&&0==p)return null;if(0==u)return egret.Point.create(i,t/Math.abs(p));if(0==p)return egret.Point.create(t/Math.abs(u),n);var c,d,f,g=u*p>=0?p:-p;if(0!=g&&i>0){var y=1/g;i=Math.max(r,Math.min(h,i)),d=i,f=(t-u*d)*y,f>=s&&l>=f&&u*d+g*f>=0&&(c=egret.Point.create(d,f)),f=(-t-u*d)*y,f>=s&&l>=f&&0>u*d+g*f&&(!c||a(c.x,c.y,e).height>a(d,f,e).height)&&(egret.Point.release(c),c=egret.Point.create(d,f))}if(0!=u&&n>0){var v=1/u;n=Math.max(s,Math.min(l,n)),f=n,d=(t-g*f)*v,d>=r&&h>=d&&u*d+g*f>=0&&(!c||a(c.x,c.y,e).height>a(d,f,e).height)&&(egret.Point.release(c),c=egret.Point.create(d,f)),d=(-t-g*f)*v,d>=r&&h>=d&&0>u*d+g*f&&(!c||a(c.x,c.y,e).height>a(d,f,e).height)&&(egret.Point.release(c),c=egret.Point.create(d,f))}if(c)return c;var m=e.b,$=e.d,E=m*$>=0?$:-$;return o(u,g,t,r,s,h,l,m,E)}function o(t,e,i,n,r,o,s,a,h){if(0==t||0==e)return null;var l,u,p=(i-n*t)/e,c=(i-o*t)/e,d=Math.max(r,Math.min(p,c)),f=Math.min(s,Math.max(p,c)),g=a*e-t*h;return f>=d?(u=Math.abs(g)<1e-9?i/(t+e):a*i/g,u=Math.max(d,Math.min(u,f)),l=(i-e*u)/t,egret.Point.create(l,u)):(p=-(n*t+i)/e,c=-(o*t+i)/e,d=Math.max(r,Math.min(p,c)),f=Math.min(s,Math.max(p,c)),f>=d?(u=Math.abs(g)<1e-9?-i/(t+e):-a*i/g,u=Math.max(d,Math.min(u,f)),l=(-i-e*u)/t,egret.Point.create(l,u)):null)}function s(t,e,i,n,r,s,a){var l=i.a,u=i.b,p=i.c,c=i.d;if(l>-1e-9&&1e-9>l&&(l=0),u>-1e-9&&1e-9>u&&(u=0),p>-1e-9&&1e-9>p&&(p=0),c>-1e-9&&1e-9>c&&(c=0),0==u&&0==p)return 0==l||0==c?null:egret.Point.create(t/Math.abs(l),e/Math.abs(c));if(0==l&&0==c)return 0==u||0==p?null:egret.Point.create(e/Math.abs(u),t/Math.abs(p));var d=l*p>=0?p:-p,f=u*c>=0?c:-c,g=l*f-u*d;if(Math.abs(g)<1e-9)return 0==d||0==l||l==-d?null:Math.abs(l*e-u*t)>1e-9?null:o(l,d,t,n,n,s,a,u,f);var y=1/g;t*=y,e*=y;var v;return v=h(l,d,u,f,t,e),v&&n<=v.x&&v.x<=s&&r<=v.y&&v.y<=a&&l*v.x+d*v.x>=0&&u*v.x+f*v.y>=0?v:(v=h(l,d,u,f,t,-e),v&&n<=v.x&&v.x<=s&&r<=v.y&&v.y<=a&&l*v.x+d*v.x>=0&&u*v.x+f*v.y<0?v:(v=h(l,d,u,f,-t,e),v&&n<=v.x&&v.x<=s&&r<=v.y&&v.y<=a&&l*v.x+d*v.x<0&&u*v.x+f*v.y>=0?v:(v=h(l,d,u,f,-t,-e),v&&n<=v.x&&v.x<=s&&r<=v.y&&v.y<=a&&l*v.x+d*v.x<0&&u*v.x+f*v.y<0?v:(egret.Point.release(v),null))))}function a(t,e,i){var n=egret.$TempRectangle.setTo(0,0,t,e);return i.$transformBounds(n),n}function h(t,e,i,n,r,o){return egret.Point.create(n*r-e*o,t*o-i*r)}var l=.1,u=.1,p=function(){function t(){}return t.fitBounds=function(t,n,r,o,h,p,c,d,f,g,y){if(isNaN(t)&&isNaN(n))return egret.Point.create(p,c);var v,m=u>d?0:d-u,$=u>f?0:f-u,E=g+u,C=y+u;if(isNaN(t)||isNaN(n))return isNaN(t)?i(n,r,o,h,p,c,m,$,E,C):e(t,r,o,h,p,c,m,$,E,C);if(v=s(t,n,r,m,$,E,C),!v){var _=void 0;if(_=e(t,r,o,h,p,c,m,$,E,C)){var b=a(_.x,_.y,r).height;b-l>n&&(egret.Point.release(_),_=null)}var T=void 0;if(T=i(n,r,o,h,p,c,m,$,E,C)){var S=a(T.x,T.y,r).width;S-l>t&&(egret.Point.release(T),T=null)}v=_&&T?_.x*_.y>T.x*T.y?_:T:_?_:T,egret.Point.release(_),egret.Point.release(T)}return v},t}();t.MatrixUtil=p,__reflect(p.prototype,"eui.sys.MatrixUtil")}(e=t.sys||(t.sys={}))}(eui||(eui={})); \ No newline at end of file diff --git a/js/game.min_fc12b653.js b/js/game.min_fc12b653.js new file mode 100644 index 0000000..079e5b5 --- /dev/null +++ b/js/game.min_fc12b653.js @@ -0,0 +1,2 @@ +var __reflect=this&&this.__reflect||function(t,e,r){t.__class__=e,r?r.push(e):r=[e],t.__types__=t.__types__?r.concat(t.__types__):r},__extends=this&&this.__extends||function(t,e){function r(){this.constructor=t}for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);r.prototype=e.prototype,t.prototype=new r},egret;!function(t){var e=function(){function t(){}return t.BINARY="binary",t.TEXT="text",t.VARIABLES="variables",t.TEXTURE="texture",t.SOUND="sound",t}();t.URLLoaderDataFormat=e,__reflect(e.prototype,"egret.URLLoaderDataFormat")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(e,r,i){var o=t.call(this)||this;return o._name=e,o._frame=0|r,i&&(o._end=0|i),o}return __extends(e,t),Object.defineProperty(e.prototype,"name",{get:function(){return this._name},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"frame",{get:function(){return this._frame},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"end",{get:function(){return this._end},enumerable:!0,configurable:!0}),e.prototype.clone=function(){return new e(this._name,this._frame,this._end)},e}(t.EventDispatcher);t.FrameLabel=e,__reflect(e.prototype,"egret.FrameLabel")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(){var t=e.call(this)||this;return t.$mcData=null,t.numFrames=1,t.frames=[],t.labels=null,t.events=[],t.frameRate=0,t.textureData=null,t.spriteSheet=null,t}return __extends(r,e),r.prototype.$init=function(t,e,r){this.textureData=e,this.spriteSheet=r,this.setMCData(t)},r.prototype.getKeyFrameData=function(t){var e=this.frames[t-1];return e.frame&&(e=this.frames[e.frame-1]),e},r.prototype.getTextureByFrame=function(t){var e=this.getKeyFrameData(t);if(e.res){var r=this.getTextureByResName(e.res);return r}return null},r.prototype.$getOffsetByFrame=function(t,e){var r=this.getKeyFrameData(t);r.res&&e.setTo(0|r.x,0|r.y)},r.prototype.getTextureByResName=function(t){if(null==this.spriteSheet)return null;var e=this.spriteSheet.getTexture(t);if(!e){var r=this.textureData[t];e=this.spriteSheet.createTexture(t,r.x,r.y,r.w,r.h)}return e},r.prototype.$isDataValid=function(){return this.frames.length>0},r.prototype.$isTextureValid=function(){return null!=this.textureData&&null!=this.spriteSheet},r.prototype.$fillMCData=function(t){this.frameRate=t.frameRate||24,this.fillFramesData(t.frames),this.fillFrameLabelsData(t.labels),this.fillFrameEventsData(t.events)},r.prototype.fillFramesData=function(t){for(var e,r=this.frames,i=t?t.length:0,o=0;i>o;o++){var n=t[o];if(r.push(n),n.duration){var s=parseInt(n.duration);if(s>1){e=r.length;for(var a=1;s>a;a++)r.push({frame:e})}}}this.numFrames=r.length},r.prototype.fillFrameLabelsData=function(e){if(e){var r=e.length;if(r>0){this.labels=[];for(var i=0;r>i;i++){var o=e[i];this.labels.push(new t.FrameLabel(o.name,o.frame,o.end))}}}},r.prototype.fillFrameEventsData=function(t){if(t){var e=t.length;if(e>0){this.events=[];for(var r=0;e>r;r++){var i=t[r];this.events[i.frame]=i.name}}}},Object.defineProperty(r.prototype,"mcData",{get:function(){return this.$mcData},set:function(t){this.setMCData(t)},enumerable:!0,configurable:!0}),r.prototype.setMCData=function(t){this.$mcData!=t&&(this.$mcData=t,t&&this.$fillMCData(t))},r}(t.HashObject);t.MovieClipData=e,__reflect(e.prototype,"egret.MovieClipData")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(t,r){var i=e.call(this)||this;return i.enableCache=!0,i.$mcDataCache={},i.$mcDataSet=t,i.setTexture(r),i}return __extends(r,e),r.prototype.clearCache=function(){this.$mcDataCache={}},r.prototype.generateMovieClipData=function(e){if(void 0===e&&(e=""),""==e&&this.$mcDataSet)for(e in this.$mcDataSet.mc)break;if(""==e)return null;var r=this.findFromCache(e,this.$mcDataCache);return r||(r=new t.MovieClipData,this.fillData(e,r,this.$mcDataCache)),r},r.prototype.findFromCache=function(t,e){return this.enableCache&&e[t]?e[t]:null},r.prototype.fillData=function(t,e,r){if(this.$mcDataSet){var i=this.$mcDataSet.mc[t];i&&(e.$init(i,this.$mcDataSet.res,this.$spriteSheet),this.enableCache&&(r[t]=e))}},Object.defineProperty(r.prototype,"mcDataSet",{get:function(){return this.$mcDataSet},set:function(t){this.$mcDataSet=t},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"texture",{set:function(t){this.setTexture(t)},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"spriteSheet",{get:function(){return this.$spriteSheet},enumerable:!0,configurable:!0}),r.prototype.setTexture=function(e){this.$spriteSheet=e?new t.SpriteSheet(e):null},r}(t.EventDispatcher);t.MovieClipDataFactory=e,__reflect(e.prototype,"egret.MovieClipDataFactory")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(t,r,i,o){void 0===r&&(r=!1),void 0===i&&(i=!1),void 0===o&&(o=null);var n=e.call(this,t,r,i)||this;return n.frameLabel=null,n.frameLabel=o,n}return __extends(r,e),r.dispatchMovieClipEvent=function(e,i,o){void 0===o&&(o=null);var n=t.Event.create(r,i);n.frameLabel=o;var s=e.dispatchEvent(n);return t.Event.release(n),s},r.FRAME_LABEL="frame_label",r}(t.Event);t.MovieClipEvent=e,__reflect(e.prototype,"egret.MovieClipEvent")}(egret||(egret={}));var egret;!function(t){var e=function(){function e(){t.$error(1014)}return e.get=function(t){return-1>t&&(t=-1),t>1&&(t=1),function(e){return 0==t?e:0>t?e*(e*-t+1+t):e*((2-e)*t+(1-t))}},e.getPowOut=function(t){return function(e){return 1-Math.pow(1-e,t)}},e.quintOut=e.getPowOut(5),e.quartOut=e.getPowOut(4),e}();t.ScrollEase=e,__reflect(e.prototype,"egret.ScrollEase");var r=function(e){function r(t,r,i){var o=e.call(this)||this;return o._target=null,o._useTicks=!1,o.ignoreGlobalPause=!1,o.loop=!1,o.pluginData=null,o._steps=null,o._actions=null,o.paused=!1,o.duration=0,o._prevPos=-1,o.position=null,o._prevPosition=0,o._stepPosition=0,o.passive=!1,o.initialize(t,r,i),o}return __extends(r,e),r.get=function(t,e,i,o){return void 0===e&&(e=null),void 0===i&&(i=null),void 0===o&&(o=!1),o&&r.removeTweens(t),new r(t,e,i)},r.removeTweens=function(t){if(t.tween_count){for(var e=r._tweens,i=e.length-1;i>=0;i--)e[i]._target==t&&(e[i].paused=!0,e.splice(i,1));t.tween_count=0}},r.tick=function(t,e){void 0===e&&(e=!1);var i=t-r._lastTime;r._lastTime=t;for(var o=r._tweens.concat(),n=o.length-1;n>=0;n--){var s=o[n];e&&!s.ignoreGlobalPause||s.paused||s.tick(s._useTicks?1:i)}return!1},r._register=function(e,i){var o=e._target,n=r._tweens;if(i)o&&(o.tween_count=o.tween_count>0?o.tween_count+1:1),n.push(e),r._inited||(r._lastTime=t.getTimer(),t.ticker.$startTick(r.tick,null),r._inited=!0);else{o&&o.tween_count--;for(var s=n.length;s--;)if(n[s]==e)return void n.splice(s,1)}},r.prototype.initialize=function(t,e,i){this._target=t,e&&(this._useTicks=e.useTicks,this.ignoreGlobalPause=e.ignoreGlobalPause,this.loop=e.loop,e.onChange&&this.addEventListener("change",e.onChange,e.onChangeObj),e.override&&r.removeTweens(t)),this.pluginData=i||{},this._curQueueProps={},this._initQueueProps={},this._steps=[],this._actions=[],e&&e.paused?this.paused=!0:r._register(this,!0),e&&null!=e.position&&this.setPosition(e.position)},r.prototype.setPosition=function(t,e){void 0===e&&(e=1),0>t&&(t=0);var r=t,i=!1;if(r>=this.duration&&(this.loop?r%=this.duration:(r=this.duration,i=!0)),r==this._prevPos)return i;var o=this._prevPos;if(this.position=this._prevPos=r,this._prevPosition=t,this._target)if(i)this._updateTargetProps(null,1);else if(this._steps.length>0){var n=void 0,s=this._steps.length;for(n=0;s>n&&!(this._steps[n].t>r);n++);var a=this._steps[n-1];this._updateTargetProps(a,(this._stepPosition=r-a.t)/a.d)}return i&&this.setPaused(!0),0!=e&&this._actions.length>0&&(this._useTicks?this._runActions(r,r):1==e&&o>r?(o!=this.duration&&this._runActions(o,this.duration),this._runActions(0,r,!0)):this._runActions(o,r)),this.dispatchEventWith("change"),i},r.prototype._runActions=function(t,e,r){void 0===r&&(r=!1);var i=t,o=e,n=-1,s=this._actions.length,a=1;for(t>e&&(i=e,o=t,n=s,s=a=-1);(n+=a)!=s;){var h=this._actions[n],c=h.t;(c==o||c>i&&o>c||r&&c==t)&&h.f.apply(h.o,h.p)}},r.prototype._updateTargetProps=function(t,e){var i,o,n,s,a,h;if(t||1!=e){if(this.passive=!!t.v,this.passive)return;t.e&&(e=t.e(e,0,1,1)),i=t.p0,o=t.p1}else this.passive=!1,i=o=this._curQueueProps;for(var c in this._initQueueProps){null==(s=i[c])&&(i[c]=s=this._initQueueProps[c]),null==(a=o[c])&&(o[c]=a=s),n=s==a||0==e||1==e||"number"!=typeof s?1==e?a:s:s+(a-s)*e;var l=!1;if(h=r._plugins[c])for(var u=0,p=h.length;p>u;u++){var _=h[u].tween(this,c,n,i,o,e,!!t&&i==o,!t);_==r.IGNORE?l=!0:n=_}l||(this._target[c]=n)}},r.prototype.setPaused=function(t){return this.paused=t,r._register(this,!t),this},r.prototype._cloneProps=function(t){var e={};for(var r in t)e[r]=t[r];return e},r.prototype._addStep=function(t){return t.d>0&&(this._steps.push(t),t.t=this.duration,this.duration+=t.d),this},r.prototype._appendQueueProps=function(t){var e,i,o,n,s;for(var a in t)if(void 0===this._initQueueProps[a]){if(i=this._target[a],e=r._plugins[a])for(o=0,n=e.length;n>o;o++)i=e[o].init(this,a,i);this._initQueueProps[a]=this._curQueueProps[a]=void 0===i?null:i}else i=this._curQueueProps[a];for(var a in t){if(i=this._curQueueProps[a],e=r._plugins[a])for(s=s||{},o=0,n=e.length;n>o;o++)e[o].step&&e[o].step(this,a,i,t[a],s);this._curQueueProps[a]=t[a]}return s&&this._appendQueueProps(s),this._curQueueProps},r.prototype._addAction=function(t){return t.t=this.duration,this._actions.push(t),this},r.prototype.to=function(t,e,r){return void 0===r&&(r=void 0),(isNaN(e)||0>e)&&(e=0),this._addStep({d:e||0,p0:this._cloneProps(this._curQueueProps),e:r,p1:this._cloneProps(this._appendQueueProps(t))})},r.prototype.call=function(t,e,r){return void 0===e&&(e=void 0),void 0===r&&(r=void 0),this._addAction({f:t,p:r?r:[],o:e?e:this._target})},r.prototype.tick=function(t){this.paused||this.setPosition(this._prevPosition+t)},r._tweens=[],r.IGNORE={},r._plugins={},r._inited=!1,r._lastTime=0,r}(t.EventDispatcher);t.ScrollTween=r,__reflect(r.prototype,"egret.ScrollTween")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(r){void 0===r&&(r=null);var i=e.call(this)||this;return i.scrollBeginThreshold=10,i.scrollSpeed=1,i._content=null,i.delayTouchBeginEvent=null,i.touchBeginTimer=null,i.touchEnabled=!0,i._ScrV_Props_=new t.ScrollViewProperties,r&&i.setContent(r),i}return __extends(r,e),Object.defineProperty(r.prototype,"bounces",{get:function(){return this._ScrV_Props_._bounces},set:function(t){this._ScrV_Props_._bounces=!!t},enumerable:!0,configurable:!0}),r.prototype.setContent=function(t){this._content!==t&&(this.removeContent(),t&&(this._content=t,e.prototype.addChild.call(this,t),this._addEvents()))},r.prototype.removeContent=function(){this._content&&(this._removeEvents(),e.prototype.removeChildAt.call(this,0)),this._content=null},Object.defineProperty(r.prototype,"verticalScrollPolicy",{get:function(){return this._ScrV_Props_._verticalScrollPolicy},set:function(t){t!=this._ScrV_Props_._verticalScrollPolicy&&(this._ScrV_Props_._verticalScrollPolicy=t)},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"horizontalScrollPolicy",{get:function(){return this._ScrV_Props_._horizontalScrollPolicy},set:function(t){t!=this._ScrV_Props_._horizontalScrollPolicy&&(this._ScrV_Props_._horizontalScrollPolicy=t)},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"scrollLeft",{get:function(){return this._ScrV_Props_._scrollLeft},set:function(t){t!=this._ScrV_Props_._scrollLeft&&(this._ScrV_Props_._scrollLeft=t,this._validatePosition(!1,!0),this._updateContentPosition())},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"scrollTop",{get:function(){return this._ScrV_Props_._scrollTop},set:function(t){t!=this._ScrV_Props_._scrollTop&&(this._ScrV_Props_._scrollTop=t,this._validatePosition(!0,!1),this._updateContentPosition())},enumerable:!0,configurable:!0}),r.prototype.setScrollPosition=function(t,e,r){if(void 0===r&&(r=!1),(!r||0!=t||0!=e)&&(r||this._ScrV_Props_._scrollTop!=t||this._ScrV_Props_._scrollLeft!=e)){var i=this._ScrV_Props_._scrollTop,o=this._ScrV_Props_._scrollLeft;if(r){var n=this.getMaxScrollLeft(),s=this.getMaxScrollTop();(0>=i||i>=s)&&(t/=2),(0>=o||o>=n)&&(e/=2);var a=i+t,h=o+e,c=this._ScrV_Props_._bounces;c||((0>=a||a>=s)&&(a=Math.max(0,Math.min(a,s))),(0>=h||h>=n)&&(h=Math.max(0,Math.min(h,n)))),this._ScrV_Props_._scrollTop=a,this._ScrV_Props_._scrollLeft=h}else this._ScrV_Props_._scrollTop=t,this._ScrV_Props_._scrollLeft=e;this._validatePosition(!0,!0),this._updateContentPosition()}},r.prototype._validatePosition=function(t,e){if(void 0===t&&(t=!1),void 0===e&&(e=!1),t){var r=this.height,i=this._getContentHeight();this._ScrV_Props_._scrollTop=Math.max(this._ScrV_Props_._scrollTop,(0-r)/2),this._ScrV_Props_._scrollTop=Math.min(this._ScrV_Props_._scrollTop,i>r?i-r/2:r/2)}if(e){var o=this.width,n=this._getContentWidth();this._ScrV_Props_._scrollLeft=Math.max(this._ScrV_Props_._scrollLeft,(0-o)/2),this._ScrV_Props_._scrollLeft=Math.min(this._ScrV_Props_._scrollLeft,n>o?n-o/2:o/2)}},r.prototype.$setWidth=function(t){this.$explicitWidth!=t&&(e.prototype.$setWidth.call(this,t),this._updateContentPosition())},r.prototype.$setHeight=function(t){this.$explicitHeight!=t&&(e.prototype.$setHeight.call(this,t),this._updateContentPosition())},r.prototype._updateContentPosition=function(){var e=this.height,r=this.width;this.scrollRect=new t.Rectangle(Math.round(this._ScrV_Props_._scrollLeft),Math.round(this._ScrV_Props_._scrollTop),r,e),this.dispatchEvent(new t.Event(t.Event.CHANGE))},r.prototype._checkScrollPolicy=function(){var t=this._ScrV_Props_._horizontalScrollPolicy,e=this.__checkScrollPolicy(t,this._getContentWidth(),this.width);this._ScrV_Props_._hCanScroll=e;var r=this._ScrV_Props_._verticalScrollPolicy,i=this.__checkScrollPolicy(r,this._getContentHeight(),this.height);return this._ScrV_Props_._vCanScroll=i,e||i},r.prototype.__checkScrollPolicy=function(t,e,r){return"on"==t?!0:"off"==t?!1:e>r},r.prototype._addEvents=function(){this.addEventListener(t.TouchEvent.TOUCH_BEGIN,this._onTouchBegin,this),this.addEventListener(t.TouchEvent.TOUCH_BEGIN,this._onTouchBeginCapture,this,!0),this.addEventListener(t.TouchEvent.TOUCH_END,this._onTouchEndCapture,this,!0)},r.prototype._removeEvents=function(){this.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this._onTouchBegin,this),this.removeEventListener(t.TouchEvent.TOUCH_BEGIN,this._onTouchBeginCapture,this,!0),this.removeEventListener(t.TouchEvent.TOUCH_END,this._onTouchEndCapture,this,!0)},r.prototype._onTouchBegin=function(e){if(!e.$isDefaultPrevented){var r=this._checkScrollPolicy();r&&(this._ScrV_Props_._touchStartPosition.x=e.stageX,this._ScrV_Props_._touchStartPosition.y=e.stageY,(this._ScrV_Props_._isHTweenPlaying||this._ScrV_Props_._isVTweenPlaying)&&this._onScrollFinished(),this._tempStage=this.stage,this._tempStage.addEventListener(t.TouchEvent.TOUCH_MOVE,this._onTouchMove,this),this._tempStage.addEventListener(t.TouchEvent.TOUCH_END,this._onTouchEnd,this),this._tempStage.addEventListener(t.TouchEvent.LEAVE_STAGE,this._onTouchEnd,this),this.addEventListener(t.Event.ENTER_FRAME,this._onEnterFrame,this),this._logTouchEvent(e),e.preventDefault())}},r.prototype._onTouchBeginCapture=function(e){var r=this._checkScrollPolicy();if(r){for(var i=e.target;i!=this;){if("_checkScrollPolicy"in i&&(r=i._checkScrollPolicy()))return;i=i.parent}e.stopPropagation();var o=this.cloneTouchEvent(e);this.delayTouchBeginEvent=o,this.touchBeginTimer||(this.touchBeginTimer=new t.Timer(100,1),this.touchBeginTimer.addEventListener(t.TimerEvent.TIMER_COMPLETE,this._onTouchBeginTimer,this)),this.touchBeginTimer.start(),this._onTouchBegin(e)}},r.prototype._onTouchEndCapture=function(e){var r=this;if(this.delayTouchBeginEvent){this._onTouchBeginTimer(),e.stopPropagation();var i=this.cloneTouchEvent(e);t.callLater(function(){r.stage&&r.dispatchPropagationEvent(i)},this)}},r.prototype._onTouchBeginTimer=function(){this.touchBeginTimer.stop();var t=this.delayTouchBeginEvent;this.delayTouchBeginEvent=null,this.stage&&this.dispatchPropagationEvent(t)},r.prototype.dispatchPropagationEvent=function(e){for(var r=e.$target,i=this.$getPropagationList(r),o=i.length,n=.5*i.length,s=-1,a=0;o>a;a++)if(i[a]===this._content){s=a;break}i.splice(0,s+1),n-=s+1,this.$dispatchPropagationEvent(e,i,n),t.Event.release(e)},r.prototype._onTouchMove=function(t){if(this._ScrV_Props_._lastTouchPosition.x!=t.stageX||this._ScrV_Props_._lastTouchPosition.y!=t.stageY){if(!this._ScrV_Props_._scrollStarted){var e=t.stageX-this._ScrV_Props_._touchStartPosition.x,r=t.stageY-this._ScrV_Props_._touchStartPosition.y,i=Math.sqrt(e*e+r*r);if(i100&&r-this._ScrV_Props_._lastTouchTime<300&&this._calcVelocitys(this._ScrV_Props_._lastTouchEvent)},r.prototype._logTouchEvent=function(e){this._ScrV_Props_._lastTouchPosition.x=e.stageX,this._ScrV_Props_._lastTouchPosition.y=e.stageY,this._ScrV_Props_._lastTouchEvent=this.cloneTouchEvent(e),this._ScrV_Props_._lastTouchTime=t.getTimer()},r.prototype._getPointChange=function(t){return{x:this._ScrV_Props_._hCanScroll===!1?0:this._ScrV_Props_._lastTouchPosition.x-t.stageX,y:this._ScrV_Props_._vCanScroll===!1?0:this._ScrV_Props_._lastTouchPosition.y-t.stageY}},r.prototype._calcVelocitys=function(e){var r=t.getTimer();if(0==this._ScrV_Props_._lastTouchTime)return void(this._ScrV_Props_._lastTouchTime=r);var i=this._getPointChange(e),o=r-this._ScrV_Props_._lastTouchTime;i.x/=o,i.y/=o,this._ScrV_Props_._velocitys.push(i),this._ScrV_Props_._velocitys.length>5&&this._ScrV_Props_._velocitys.shift(),this._ScrV_Props_._lastTouchPosition.x=e.stageX,this._ScrV_Props_._lastTouchPosition.y=e.stageY},r.prototype._getContentWidth=function(){return this._content.$explicitWidth||this._content.width},r.prototype._getContentHeight=function(){return this._content.$explicitHeight||this._content.height},r.prototype.getMaxScrollLeft=function(){var t=this._getContentWidth()-this.width;return Math.max(0,t)},r.prototype.getMaxScrollTop=function(){var t=this._getContentHeight()-this.height;return Math.max(0,t)},r.prototype._moveAfterTouchEnd=function(){if(0!=this._ScrV_Props_._velocitys.length){for(var t={x:0,y:0},e=0,i=0;i.02?this.getAnimationDatas(s,this._ScrV_Props_._scrollLeft,l):{position:this._ScrV_Props_._scrollLeft,duration:1},_=c>.02?this.getAnimationDatas(a,this._ScrV_Props_._scrollTop,u):{position:this._ScrV_Props_._scrollTop,duration:1};this.setScrollLeft(p.position,p.duration),this.setScrollTop(_.position,_.duration)}},r.prototype.onTweenFinished=function(t){t==this._ScrV_Props_._vScrollTween&&(this._ScrV_Props_._isVTweenPlaying=!1),t==this._ScrV_Props_._hScrollTween&&(this._ScrV_Props_._isHTweenPlaying=!1),0==this._ScrV_Props_._isHTweenPlaying&&0==this._ScrV_Props_._isVTweenPlaying&&this._onScrollFinished()},r.prototype._onScrollStarted=function(){},r.prototype._onScrollFinished=function(){t.ScrollTween.removeTweens(this),this._ScrV_Props_._hScrollTween=null,this._ScrV_Props_._vScrollTween=null,this._ScrV_Props_._isHTweenPlaying=!1,this._ScrV_Props_._isVTweenPlaying=!1,this.dispatchEvent(new t.Event(t.Event.COMPLETE))},r.prototype.setScrollTop=function(e,r){void 0===r&&(r=0);var i=Math.min(this.getMaxScrollTop(),Math.max(e,0));if(0==r)return void(this.scrollTop=i);0==this._ScrV_Props_._bounces&&(e=i);var o=t.ScrollTween.get(this).to({scrollTop:e},r,t.ScrollEase.quartOut);i!=e&&o.to({scrollTop:i},300,t.ScrollEase.quintOut),this._ScrV_Props_._isVTweenPlaying=!0,this._ScrV_Props_._vScrollTween=o,o.call(this.onTweenFinished,this,[o]),this._ScrV_Props_._isHTweenPlaying||this._onScrollStarted()},r.prototype.setScrollLeft=function(e,r){void 0===r&&(r=0);var i=Math.min(this.getMaxScrollLeft(),Math.max(e,0));if(0==r)return void(this.scrollLeft=i);0==this._ScrV_Props_._bounces&&(e=i);var o=t.ScrollTween.get(this).to({scrollLeft:e},r,t.ScrollEase.quartOut);i!=e&&o.to({scrollLeft:i},300,t.ScrollEase.quintOut),this._ScrV_Props_._isHTweenPlaying=!0,this._ScrV_Props_._hScrollTween=o,o.call(this.onTweenFinished,this,[o]),this._ScrV_Props_._isVTweenPlaying||this._onScrollStarted()},r.prototype.getAnimationDatas=function(t,e,r){var i=Math.abs(t),o=.95,n=0,s=.998,a=.02,h=e+500*t;if(0>h||h>r)for(h=e;Math.abs(t)!=1/0&&Math.abs(t)>a;)h+=t,t*=0>h||h>r?s*o:s,n++;else n=500*-Math.log(a/i);var c={position:Math.min(r+50,Math.max(h,-50)),duration:n};return c},r.prototype.cloneTouchEvent=function(e){var r=new t.TouchEvent(e.type,e.bubbles,e.cancelable);return r.touchPointID=e.touchPointID,r.$stageX=e.stageX,r.$stageY=e.stageY,r.touchDown=e.touchDown,r.$isDefaultPrevented=!1,r.$target=e.target,r},r.prototype.throwNotSupportedError=function(){t.$error(1023)},r.prototype.addChild=function(t){return this.throwNotSupportedError(),null},r.prototype.addChildAt=function(t,e){return this.throwNotSupportedError(),null},r.prototype.removeChild=function(t){return this.throwNotSupportedError(),null},r.prototype.removeChildAt=function(t){return this.throwNotSupportedError(),null},r.prototype.setChildIndex=function(t,e){this.throwNotSupportedError()},r.prototype.swapChildren=function(t,e){this.throwNotSupportedError()},r.prototype.swapChildrenAt=function(t,e){this.throwNotSupportedError()},r.weight=[1,1.33,1.66,2,2.33],r}(t.DisplayObjectContainer);t.ScrollView=e,__reflect(e.prototype,"egret.ScrollView")}(egret||(egret={}));var egret;!function(t){var e=function(){function e(){this._verticalScrollPolicy="auto",this._horizontalScrollPolicy="auto",this._scrollLeft=0,this._scrollTop=0,this._hCanScroll=!1,this._vCanScroll=!1,this._lastTouchPosition=new t.Point(0,0),this._touchStartPosition=new t.Point(0,0),this._scrollStarted=!1,this._lastTouchTime=0,this._lastTouchEvent=null,this._velocitys=[],this._isHTweenPlaying=!1,this._isVTweenPlaying=!1,this._hScrollTween=null,this._vScrollTween=null,this._bounces=!0}return e}();t.ScrollViewProperties=e,__reflect(e.prototype,"egret.ScrollViewProperties")}(egret||(egret={}));var egret;!function(t){function e(e){var r=e.url;return-1==r.indexOf("?")&&e.method==t.URLRequestMethod.GET&&e.data&&e.data instanceof t.URLVariables&&(r=r+"?"+e.data.toString()),r}var r=function(r){function i(e){void 0===e&&(e=null);var i=r.call(this)||this;return i.dataFormat=t.URLLoaderDataFormat.TEXT,i.data=null,i._request=null,i._status=-1,e&&i.load(e),i}return __extends(i,r),i.prototype.load=function(r){this._request=r,this.data=null;var i=this;if(i.dataFormat==t.URLLoaderDataFormat.TEXTURE)return void this.loadTexture(i);if(i.dataFormat==t.URLLoaderDataFormat.SOUND)return void this.loadSound(i);var o=e(r),n=new t.HttpRequest;n.open(o,r.method==t.URLRequestMethod.POST?t.HttpMethod.POST:t.HttpMethod.GET);var s;if(r.method!=t.URLRequestMethod.GET&&r.data)if(r.data instanceof t.URLVariables){n.setRequestHeader("Content-Type","application/x-www-form-urlencoded");var a=r.data;s=a.toString()}else n.setRequestHeader("Content-Type","multipart/form-data"),s=r.data;else;for(var h=r.requestHeaders.length,c=0;h>c;c++){var l=r.requestHeaders[c];n.setRequestHeader(l.name,l.value)}n.addEventListener(t.Event.COMPLETE,function(){i.data=n.response,t.Event.dispatchEvent(i,t.Event.COMPLETE)},this),n.addEventListener(t.IOErrorEvent.IO_ERROR,function(){t.IOErrorEvent.dispatchIOErrorEvent(i)},this),n.responseType=i.dataFormat==t.URLLoaderDataFormat.BINARY?t.HttpResponseType.ARRAY_BUFFER:t.HttpResponseType.TEXT,n.send(s)},i.prototype.getResponseType=function(e){switch(e){case t.URLLoaderDataFormat.TEXT:case t.URLLoaderDataFormat.VARIABLES:return t.URLLoaderDataFormat.TEXT;case t.URLLoaderDataFormat.BINARY:return"arraybuffer";default:return e}},i.prototype.loadSound=function(e){var r=e._request.url,i=new t.Sound;this.sound=i,i.addEventListener(t.Event.COMPLETE,this.onSoundoadComplete,this),i.addEventListener(t.IOErrorEvent.IO_ERROR,this.onSoundLoaderError,this),i.addEventListener(t.ProgressEvent.PROGRESS,this.onSoundLoaderPostProgress,this),i.load(r)},i.prototype.onSoundoadComplete=function(e){var r=this;this.removeSoundLoaderListeners(),this.data=this.sound,window.setTimeout(function(){r.dispatchEventWith(t.Event.COMPLETE)},0)},i.prototype.onSoundLoaderPostProgress=function(t){this.dispatchEvent(t)},i.prototype.onSoundLoaderError=function(t){this.dispatchEvent(t)},i.prototype.removeSoundLoaderListeners=function(){this.sound.removeEventListener(t.Event.COMPLETE,this.onSoundoadComplete,this),this.sound.removeEventListener(t.IOErrorEvent.IO_ERROR,this.onSoundLoaderError,this),this.sound.removeEventListener(t.ProgressEvent.PROGRESS,this.onSoundLoaderPostProgress,this)},i.prototype.loadTexture=function(e){this.virtualUrl=e._request.url;var r=new t.ImageLoader;this.imageLoader=r,r.addEventListener(t.Event.COMPLETE,this.onImageLoadComplete,this),r.addEventListener(t.IOErrorEvent.IO_ERROR,this.onImageLoaderError,this),r.addEventListener(t.ProgressEvent.PROGRESS,this.onImageLoaderPostProgress,this),r.load(this.virtualUrl)},i.prototype.onImageLoadComplete=function(e){var r=this;this.removeImageLoaderListeners();var i=new t.Texture,o=this.imageLoader.data;o.source.setAttribute&&o.source.setAttribute("bitmapSrc",this.virtualUrl),i._setBitmapData(o),this.data=i,window.setTimeout(function(){r.dispatchEventWith(t.Event.COMPLETE)},0)},i.prototype.onImageLoaderPostProgress=function(t){this.dispatchEvent(t)},i.prototype.onImageLoaderError=function(t){this.dispatchEvent(t)},i.prototype.removeImageLoaderListeners=function(){this.imageLoader.removeEventListener(t.Event.COMPLETE,this.onImageLoadComplete,this),this.imageLoader.removeEventListener(t.IOErrorEvent.IO_ERROR,this.onImageLoaderError,this),this.imageLoader.removeEventListener(t.ProgressEvent.PROGRESS,this.onImageLoaderPostProgress,this)},i.prototype.__recycle=function(){this._request=null,this.data=null},i}(t.EventDispatcher);t.URLLoader=r,__reflect(r.prototype,"egret.URLLoader")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(r){var i=e.call(this)||this;return i.$texture=null,i.offsetPoint=t.Point.create(0,0),i.$movieClipData=null,i.frames=null,i.$totalFrames=0,i.frameLabels=null,i.$frameLabelStart=0,i.$frameLabelEnd=0,i.frameEvents=null,i.frameIntervalTime=0,i.$eventPool=null,i.$isPlaying=!1,i.isStopped=!0,i.playTimes=0,i.$currentFrameNum=0,i.$nextFrameNum=1,i.displayedKeyFrameNum=0,i.passedTime=0,i.$frameRate=0/0,i.lastTime=0,i.$smoothing=t.Bitmap.defaultSmoothing,i.setMovieClipData(r),t.nativeRender||(i.$renderNode=new t.sys.NormalBitmapNode),i}return __extends(r,e),r.prototype.createNativeDisplayObject=function(){this.$nativeDisplayObject=new egret_native.NativeDisplayObject(11)},Object.defineProperty(r.prototype,"smoothing",{get:function(){return this.$smoothing},set:function(t){t!=this.$smoothing&&(this.$smoothing=t)},enumerable:!0,configurable:!0}),r.prototype.$init=function(){this.$reset();var t=this.$movieClipData;t&&t.$isDataValid()&&(this.frames=t.frames,this.$totalFrames=t.numFrames,this.frameLabels=t.labels,this.frameEvents=t.events,this.$frameRate=t.frameRate,this.frameIntervalTime=1e3/this.$frameRate,this._initFrame())},r.prototype.$reset=function(){this.frames=null,this.playTimes=0,this.$isPlaying=!1,this.setIsStopped(!0),this.$currentFrameNum=0,this.$nextFrameNum=1,this.displayedKeyFrameNum=0,this.passedTime=0,this.$eventPool=[]},r.prototype._initFrame=function(){this.$movieClipData.$isTextureValid()&&(this.advanceFrame(),this.constructFrame())},r.prototype.$updateRenderNode=function(){var e=this.$texture;if(e){var r=Math.round(this.offsetPoint.x),i=Math.round(this.offsetPoint.y),o=e.$bitmapWidth,n=e.$bitmapHeight,s=e.$getTextureWidth(),a=e.$getTextureHeight(),h=Math.round(e.$getScaleBitmapWidth()),c=Math.round(e.$getScaleBitmapHeight()),l=e.$sourceWidth,u=e.$sourceHeight;t.sys.BitmapNode.$updateTextureData(this.$renderNode,e.$bitmapData,e.$bitmapX,e.$bitmapY,o,n,r,i,s,a,h,c,l,u,t.BitmapFillMode.SCALE,this.$smoothing)}},r.prototype.$measureContentBounds=function(t){var e=this.$texture;if(e){var r=this.offsetPoint.x,i=this.offsetPoint.y,o=e.$getTextureWidth(),n=e.$getTextureHeight();t.setTo(r,i,o,n)}else t.setEmpty()},r.prototype.$onAddToStage=function(t,r){e.prototype.$onAddToStage.call(this,t,r),this.$isPlaying&&this.$totalFrames>1&&this.setIsStopped(!1)},r.prototype.$onRemoveFromStage=function(){e.prototype.$onRemoveFromStage.call(this),this.setIsStopped(!0)},r.prototype.getFrameLabelByName=function(t,e){void 0===e&&(e=!1),e&&(t=t.toLowerCase());var r=this.frameLabels;if(r)for(var i=null,o=0;ot)return e;e=r}return e},r.prototype.play=function(e){void 0===e&&(e=0),this.lastTime=t.getTimer(),this.passedTime=0,this.$isPlaying=!0,this.setPlayTimes(e),this.$totalFrames>1&&this.$stage&&this.setIsStopped(!1)},r.prototype.stop=function(){this.$isPlaying=!1,this.setIsStopped(!0)},r.prototype.prevFrame=function(){this.gotoAndStop(this.$currentFrameNum-1)},r.prototype.nextFrame=function(){this.gotoAndStop(this.$currentFrameNum+1)},r.prototype.gotoAndPlay=function(e,r){void 0===r&&(r=0),(0==arguments.length||arguments.length>2)&&t.$error(1022,"MovieClip.gotoAndPlay()"),"string"==typeof e?this.getFrameStartEnd(e):(this.$frameLabelStart=0,this.$frameLabelEnd=0),this.play(r),this.gotoFrame(e)},r.prototype.gotoAndStop=function(e){1!=arguments.length&&t.$error(1022,"MovieClip.gotoAndStop()"),this.stop(),this.gotoFrame(e)},r.prototype.gotoFrame=function(e){var r;"string"==typeof e?r=this.getFrameLabelByName(e).frame:(r=parseInt(e+"",10),r!=e&&t.$error(1022,"Frame Label Not Found")),1>r?r=1:r>this.$totalFrames&&(r=this.$totalFrames),r!=this.$nextFrameNum&&(this.$nextFrameNum=r,this.advanceFrame(),this.constructFrame(),this.handlePendingEvent())},r.prototype.advanceTime=function(e){var r=this,i=e-r.lastTime;r.lastTime=e;var o=r.frameIntervalTime,n=r.passedTime+i;r.passedTime=n%o;var s=n/o;if(1>s)return!1;for(;s>=1;){if(s--,r.$nextFrameNum++,r.$nextFrameNum>r.$totalFrames||r.$frameLabelStart>0&&r.$nextFrameNum>r.$frameLabelEnd)if(-1==r.playTimes)r.$eventPool.push(t.Event.LOOP_COMPLETE),r.$nextFrameNum=1;else{if(r.playTimes--,!(r.playTimes>0)){r.$nextFrameNum=r.$totalFrames,r.$eventPool.push(t.Event.COMPLETE),r.stop();break}r.$eventPool.push(t.Event.LOOP_COMPLETE),r.$nextFrameNum=1}r.$currentFrameNum==r.$frameLabelEnd&&(r.$nextFrameNum=r.$frameLabelStart),r.advanceFrame()}return r.constructFrame(),r.handlePendingEvent(),!1},r.prototype.advanceFrame=function(){this.$currentFrameNum=this.$nextFrameNum; +var e=this.frameEvents[this.$nextFrameNum];e&&""!=e&&t.MovieClipEvent.dispatchMovieClipEvent(this,t.MovieClipEvent.FRAME_LABEL,e)},r.prototype.constructFrame=function(){var e=this,r=e.$currentFrameNum;if(e.displayedKeyFrameNum!=r){var i=e.$movieClipData.getTextureByFrame(r);if(e.$texture=i,e.$movieClipData.$getOffsetByFrame(r,e.offsetPoint),e.displayedKeyFrameNum=r,e.$renderDirty=!0,t.nativeRender)e.$nativeDisplayObject.setDataToBitmapNode(e.$nativeDisplayObject.id,i,[i.$bitmapX,i.$bitmapY,i.$bitmapWidth,i.$bitmapHeight,e.offsetPoint.x,e.offsetPoint.y,i.$getScaleBitmapWidth(),i.$getScaleBitmapHeight(),i.$sourceWidth,i.$sourceHeight]),e.$nativeDisplayObject.setWidth(i.$getTextureWidth()),e.$nativeDisplayObject.setHeight(i.$getTextureHeight());else{var o=e.$parent;o&&!o.$cacheDirty&&(o.$cacheDirty=!0,o.$cacheDirtyUp());var n=e.$maskedObject;n&&!n.$cacheDirty&&(n.$cacheDirty=!0,n.$cacheDirtyUp())}}},r.prototype.$renderFrame=function(){var t=this;t.$texture=t.$movieClipData.getTextureByFrame(t.$currentFrameNum),t.$renderDirty=!0;var e=t.$parent;e&&!e.$cacheDirty&&(e.$cacheDirty=!0,e.$cacheDirtyUp());var r=t.$maskedObject;r&&!r.$cacheDirty&&(r.$cacheDirty=!0,r.$cacheDirtyUp())},r.prototype.handlePendingEvent=function(){if(0!=this.$eventPool.length){this.$eventPool.reverse();for(var e=this.$eventPool,r=e.length,i=!1,o=!1,n=0;r>n;n++){var s=e.pop();s==t.Event.LOOP_COMPLETE?o=!0:s==t.Event.COMPLETE?i=!0:this.dispatchEventWith(s)}o&&this.dispatchEventWith(t.Event.LOOP_COMPLETE),i&&this.dispatchEventWith(t.Event.COMPLETE)}},Object.defineProperty(r.prototype,"totalFrames",{get:function(){return this.$totalFrames},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"currentFrame",{get:function(){return this.$currentFrameNum},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"currentFrameLabel",{get:function(){var t=this.getFrameLabelByFrame(this.$currentFrameNum);return t&&t.name},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"currentLabel",{get:function(){var t=this.getFrameLabelForFrame(this.$currentFrameNum);return t?t.name:null},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"frameRate",{get:function(){return this.$frameRate},set:function(t){t!=this.$frameRate&&(this.$frameRate=t,this.frameIntervalTime=1e3/this.$frameRate)},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"isPlaying",{get:function(){return this.$isPlaying},enumerable:!0,configurable:!0}),Object.defineProperty(r.prototype,"movieClipData",{get:function(){return this.$movieClipData},set:function(t){this.setMovieClipData(t)},enumerable:!0,configurable:!0}),r.prototype.setMovieClipData=function(t){this.$movieClipData!=t&&(this.$movieClipData=t,this.$init())},r.prototype.setPlayTimes=function(t){(0>t||t>=1)&&(this.playTimes=0>t?-1:Math.floor(t))},r.prototype.setIsStopped=function(e){this.isStopped!=e&&(this.isStopped=e,e?t.ticker.$stopTick(this.advanceTime,this):(this.playTimes=0==this.playTimes?1:this.playTimes,this.lastTime=t.getTimer(),t.ticker.$startTick(this.advanceTime,this)))},r}(t.DisplayObject);t.MovieClip=e,__reflect(e.prototype,"egret.MovieClip")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(r){void 0===r&&(r=null);var i=e.call(this)||this;return i.data=null,i.method=t.URLRequestMethod.GET,i.url="",i.requestHeaders=[],i.url=r,i}return __extends(r,e),r}(t.HashObject);t.URLRequest=e,__reflect(e.prototype,"egret.URLRequest")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(t,e){this.name="",this.value="",this.name=t,this.value=e}return t}();t.URLRequestHeader=e,__reflect(e.prototype,"egret.URLRequestHeader")}(egret||(egret={}));var egret;!function(t){var e=function(){function t(){}return t.GET="get",t.POST="post",t}();t.URLRequestMethod=e,__reflect(e.prototype,"egret.URLRequestMethod")}(egret||(egret={}));var egret;!function(t){var e=function(t){function e(e){void 0===e&&(e=null);var r=t.call(this)||this;return r.variables=null,null!==e&&r.decode(e),r}return __extends(e,t),e.prototype.decode=function(t){this.variables||(this.variables={}),t=t.split("+").join(" ");for(var e,r=/[?&]?([^=]+)=([^&]*)/g;e=r.exec(t);){var i=decodeURIComponent(e[1]),o=decodeURIComponent(e[2]);if(i in this.variables!=0){var n=this.variables[i];n instanceof Array?n.push(o):this.variables[i]=[n,o]}else this.variables[i]=o}},e.prototype.toString=function(){if(!this.variables)return"";var t=this.variables,e=[];for(var r in t)e.push(this.encodeValue(r,t[r]));return e.join("&")},e.prototype.encodeValue=function(t,e){return e instanceof Array?this.encodeArray(t,e):encodeURIComponent(t)+"="+encodeURIComponent(e)},e.prototype.encodeArray=function(t,e){return t?0==e.length?encodeURIComponent(t)+"=":e.map(function(e){return encodeURIComponent(t)+"="+encodeURIComponent(e)}).join("&"):""},e}(t.HashObject);t.URLVariables=e,__reflect(e.prototype,"egret.URLVariables")}(egret||(egret={}));var egret;!function(t){var e=function(e){function r(){var i=e.call(this)||this;return i._timeScale=1,i._paused=!1,i._callIndex=-1,i._lastTime=0,i.callBackList=[],null!=r.instance,t.ticker.$startTick(i.update,i),i._lastTime=t.getTimer(),i}return __extends(r,e),r.prototype.update=function(t){var e=t-this._lastTime;if(this._lastTime=t,this._paused)return!1;var r=e*this._timeScale;for(this._callList=this.callBackList.concat(),this._callIndex=0;this._callIndext&&(t=1),r.autoDisposeTime=t,r.frameCount=0,r}return __extends(r,e),r.$init=function(){t.ticker.$startTick(r.onUpdate,r)},r.onUpdate=function(t){for(var e=r._callBackList,i=e.length-1;i>=0;i--)e[i].$checkFrame();return!1},r.prototype.$checkFrame=function(){this.frameCount--,this.frameCount<=0&&this.dispose()},Object.defineProperty(r.prototype,"length",{get:function(){return this._length},enumerable:!0,configurable:!0}),r.prototype.push=function(t){var e=this.objectPool;-1==e.indexOf(t)&&(e.push(t),t.__recycle&&t.__recycle(),this._length++,0==this.frameCount&&(this.frameCount=this.autoDisposeTime,r._callBackList.push(this)))},r.prototype.pop=function(){return 0==this._length?null:(this._length--,this.objectPool.pop())},r.prototype.dispose=function(){this._length>0&&(this.objectPool=[],this._length=0),this.frameCount=0;var t=r._callBackList,e=t.indexOf(this);-1!=e&&t.splice(e,1)},r._callBackList=[],r}(t.HashObject);t.Recycler=e,__reflect(e.prototype,"egret.Recycler"),e.$init()}(egret||(egret={}));var egret;!function(t){function e(e,r,h){for(var c=[],l=3;l { + const TampermonkeyVars = ["unsafeWindow", "GM_info"] + if (!TampermonkeyVars.every(e => typeof window[e] == 'undefined')) { + // 如果检测到 Tampermonkey 插件,执行以下代码 + alert('检测到您正在使用 Tampermonkey 插件,本网站禁止使用此类插件!'); + // 可以选择阻止页面访问或其他操作 + window.location.href = '/login'; // 将用户重定向到空白页 + } else checkTampermonkey() + }, 5000) +} +checkTampermonkey() + +// 游戏个性设置: 设备/版本/界面/NPC参数 +window['device'] = 0; // 客户端设备(一般无需更改): 0=自适应, 1=PC端界面, 2=移动端界面 +window['gameMode'] = 0; // 版本玩法: 0=三职业, 1=单职业(游戏内仅出现战士职业装备) +window['uiStyle'] = 1; // 血球特效: 0=默认, 1=龙头动态火焰特效 +window['npcStyle'] = 1; // NPC特效: 0=默认, 1=微变版本NPC动态特效 +window['specialId'] = 2; // 打金服ID +window['withdraw'] = {'sid': 1, 'type': 3, 'ratio': 10000}; // 提现 + +window['isShowGongGao'] = true; +window['isAutoShowGongGao'] = !getCookie('auto_show_notice') ? (setCookie('auto_show_notice', 1, 1), true) : false; +window['isMicro'] = window['pfID']; +window['selectServer'] = true; +window['fontFamily'] = 'Arial'; +window['loginType'] = 1; // 登录类型 0:测试 1:正式 +window['loginWay'] = 1; + +window['isReport'] = 0; // 是否上报后台 +window['isReportPF'] = 0; // 是否上报渠道 +window['isDisablePay'] = 0; // 是否关闭充值 +window['loginView'] = 'app.MainLoginView'; + +// 相关URL +window['webHost'] = host; +window['webUrl'] = webUrl; +window['serviceListdUrl'] = webUrl + '/server'; +window['setServiceListdUrl'] = webUrl + '/server'; +window['payUrl'] = webUrl + '/pay'; +window['apiUrl'] = webUrl + '/api'; +window['orderUrl'] = webUrl + '/api?act=order'; +window['reportUrl'] = webUrl + '/api?act=report'; // 上报接口 +window['errorReportUrl'] = webUrl + '/api?act=report&do=error';// 错误上报接口 +window['checkUrl'] = webUrl + '/api?act=check'; // 验证URL +window['versionUrl'] = webUrl + '/api?act=version'; // 请求客户端版本 +window['getActorInfoUrl'] = webUrl + '/api?act=actor'; +window['roleInfoUrl'] = webUrl + '/api?act=role'; +window['gongGaoUrl'] = webUrl + '/notice.txt'; + +// 客服信息 +window['kfQQ'] = '123456'; +window['kfWX'] = '123456'; +window['kfQQUrl'] = 'https://127.0.0.1'; +window['kfQQGroupUrl'] = 'https://127.0.0.1'; + +window['gameVerTxt1'] = '审批文号:新广出审[2022]007号 出版物号:ISBN 001-1-0001-0001-1 著作权人:XX信息科技有限公司'; +window['gameVerTxt2'] = '出版单位:XX信息科技有限公司 运营单位:XX信息科技有限公司'; +window['gameVerTxt3'] = '健康游戏忠告:抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。'; + +window['publicRes'] = 'https://cdn-cq-res.kubbo.cn/'; +var arr = ['loading_1_jpg', 'loading_1_jpg', 'mp_jzjm_png', 'mp_jzjm2_png']; +window['gameLoadImg'] = !getCookie('first_loading') ? (setCookie('first_loading', 1), arr[0]) : arr[randomRange(0, 4)]; +window['version1'] = 'zjt1_png'; +window['version2'] = 'zjt2_png'; +window['version3'] = 'zjt3_png'; + +window['resVersion'] = '1'; +window['thmVersion'] = '1'; +window['tableVersion'] = '1.2.80'; +window['mainVersion'] = '1.2.2'; + +window['isDebug'] = false; +var isJsDebug = false; + +// 设置标题 +//document.title = window['gameName']; + +function reporting(type, result) { + if(noLogin) return; + + if (window['isReport'] && window['reportUrl']) { + let loginType = window['loginWay'] ? 1 : 0; + let msgInfo = { + type: type, + counter: window['pfID'], + env: window['game'] + '|' + loginType, + time: Date.parse(new Date().toString()) / 1000, + result: result + }; + + msgInfo['data'] = { + uid: window['userInfo']['uid'], + serverAlias: window['userInfo']['server'] + }; + + var str = JSON.stringify(msgInfo); + var xhr = new XMLHttpRequest(); + xhr.onreadystatechange = function() { //服务器返回值的处理函数,此处使用匿名函数进行实现 + if (xhr.readyState == 4 && xhr.status == 200) { + // + } + }; + xhr.open('GET', window['reportUrl'] + '&msg=' + str, true); //提交get请求到服务器 + xhr.send(null); + } +} + +function onerrorFunction(error, uid) { + var xhr = new XMLHttpRequest(); + xhr.open('POST', window['checkUrl'] + window.location.search, true);//提交get请求到服务器 + xhr.setRequestHeader('Content-Type', 'application/json'); + let params = 'pfID=' + window['pfID'] + '&uid=' + uid + '&error=' + error; + xhr.open('GET', window['errorReportUrl'] + '&' + params, true);//提交get请求到服务器 + xhr.send(null); +} + +window.onerror = function(message, url, line) { + let str = "Message : " + message + "\nURL : " + url + "\nLine Number : " + line; + this.onerrorFunction(str, 0); + alert(str); +} + +//1.平台参数格式化 +if(!noLogin) { + if (window['loginType']) { + switch (window['pfID']) { + case 10001: + var urlData = window.location.search; + if (urlData.indexOf('?') != -1) { + urlData = urlData.substr(1); + var strs = urlData.split('&'); + for (var i = 0; i < strs.length; i++) { + window['userInfo'][strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]); + } + } + break; + default: + // 测试 + } + } else { + var urlData = window.location.search; + if (urlData.indexOf('?') != -1) { + urlData = urlData.substr(1); + var strs = urlData.split('&'); + for (var i = 0; i < strs.length; i++) { + window['userInfo'][strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]); + } + } + } +} + +//2.登录验证 +function loginFunction() { + //alert('维护中'); + //return; + + if(noLogin) return; + + // window['userInfo']['serverInfo'] = serverInfo; + //1.平台验证 + if (window['loginType']) { + switch (window['pfID']) { + case 10001: + var xhr = new XMLHttpRequest(); + xhr.onreadystatechange = function() { // 服务器返回值的处理函数,此处使用匿名函数进行实现 + if (xhr.readyState == 4 && xhr.status == 200) { + //console.log(xhr.responseText); + var obj = JSON.parse(xhr.responseText); + //验证成功 + if (0 == obj.code) { + reporting(10001, 1); + start(); + } else { + loadError = true; + reporting(10001, 0); + var errorMsg = obj.msg ? obj.msg : '通行证验证失败!', + label = document.getElementById('label'); + if(label) { + var linkHtml = '点击返回 / 尝试刷新'; + label.innerHTML = errorMsg + linkHtml; + } else { + alert(filterHTML(errorMsg)); + } + } + } + }; + xhr.open('GET', window['checkUrl'] + '&do=verify&' + window.location.search.substr(1), true); //提交get请求到服务器 + xhr.send(null); + break; + } + } else { + reporting(10001, 1); + start(); + // window['checkFunction']();//检测上报 + // window['checkSuccess'](); + } +} + +//3.支付 +function payFunction(param) { + console.log(param); + window.open('./pay/?productId=' + param.productId + '&productName=' + param.productName + '&amount=' + param.amount + '&actorid=' + param.gameExtra + '&serverId=' + param.serverId, '_blank'); +} + +//4.工具类 +function callJsFunction(msg) { + if (msg && msg['type']) { + switch (msg['type']) { + case 'showGame': + showGame(); + break; + case 'showLoadProgress': + showLoadProgress(msg['progress'], msg['des']); + break; + default: + //测试 + } + } +} + +let jobAry = ['', '战士', '法师', '战士'] + +function ReportingFunction(msg) { + if (msg && msg) { + if (msg['type'] == 12 || msg['type'] == 1000) { //等级上报 + //创建xhr对象 + let reportingUrl = window['reportUrl']; + reportingUrl += '&do=' + encodeURIComponent('game_profile'); + reportingUrl += '&udbid=' + encodeURIComponent(1024009155 + ''); + reportingUrl += '&gam=' + encodeURIComponent(window['game'] + ''); + reportingUrl += '&pas='; + reportingUrl += '&gse=' + encodeURIComponent('s1'); + reportingUrl += '&pro=' + encodeURIComponent('logingame'); + reportingUrl += '&ya_appid=' + encodeURIComponent('udblogin'); + let json_data = { + game_event: msg['type'] == 12 ? 'new_role': 'level_change', + role_name: msg.data['roleName'], + role_level: msg.data['level'] + '', + fight_cap: '', + sex: msg.data['sex'] > 0 ? 'f': 'm', + job: jobAry[msg.data['job']], + partner: '', + equip: msg.data['guildName'] + } + json_data = JSON.stringify(json_data); + reportingUrl += '&json_data=' + encodeURIComponent(json_data); + // json_data = { "role_level": "11", "role_name": "s1.虞鹏天", "game_event": "level_change", "fight_cap": "1371", "job": "1" } + var xhr = new XMLHttpRequest(); + xhr.onreadystatechange = function() { //服务器返回值的处理函数,此处使用匿名函数进行实现 + if (xhr.readyState == 4 && xhr.status == 200) { // + //var obj = JSON.parse(xhr.responseText); + } + }; + xhr.open('GET', reportingUrl, true); //提交get请求到服务器 + xhr.send(null); + } + } +} + +//6.屏蔽右键 +document.onkeydown = function() { + // var e = window.event || arguments[0]; + //F12 + // if (e.keyCode == 123) { + // return false; + // //Ctrl+Shift+I + // } else if ((e.ctrlKey) && (e.shiftKey) && (e.keyCode == 73)) { + // return false; + // //Shift+F10 + // } else if ((e.shiftKey) && (e.keyCode == 121)) { + // return false; + // //Ctrl+U + // } else if ((e.ctrlKey) && (e.keyCode == 85)) { + // return false; + // } +}; + +/** + * 反馈 + */ +function feedbackFunction(info) { + removeIfram(); + let msgInfo = { + act: 'feedback', + game: window['game'], + platform: window['pf'], + server: window['userInfo']['server'], + uid: info['uid'], + rolename: info['rolename'], + ts: Date.parse(new Date().toString()) / 1000 + }; + msgInfo['sign'] = new md5().hex_md5((msgInfo.game + msgInfo.platform + msgInfo.server + msgInfo.uid + msgInfo.rolename + msgInfo.ts + 123456)); + let param = ''; + for (let key in msgInfo) { + param += key + '=' + msgInfo[key] + '&' + } + param = param.substring(0, param.length - 1) + let srcStr = webUrl + '/api?' + param; + var div = document.createElement('div'); + div.id = 'iframDiv'; + div.innerHTML = ''; + // div.style = 'position: relative; width:100%; height:100%;background: rgba(0, 0, 0, 0.5);'; + div.style.position = 'relative'; + div.style.width = '100%'; + div.style.height = '100%'; + div.style.background = 'rgba(0, 0, 0, 0.5)'; + document.body.appendChild(div); + //创建关闭按钮 + let div2 = document.createElement('div'); + div2.id = 'btnDiv'; + div2.innerHTML = '' + // div2.style = 'position: absolute;right:0px;top:0px;width:50px;height:50px'; + div2.style.position = 'absolute'; + div2.style.right = '0px'; + div2.style.top = '0px'; + div2.style.width = '50px'; + div2.style.height = '50px'; + div.appendChild(div2); + var closeImg = document.getElementById('closeImg'); + closeImg.onclick = removeIfram; + // onloadFunction(); +} + +// 防沉迷 +function IdCardFunction() { + window.open(webUrl); +} + +function addQQGrp() { + window.open(window['kfQQGroupUrl']); +} + +//下载YY游戏大厅 +function downYYGameHallFun() { + window.open(webUrl); +} + +//开通会员 +function openYYVip() { + window.open(webUrl); +} + +//开超玩会员 +function openChaoWanVip() { + window.open(webUrl); +} + +function removeIfram() { + var div = document.getElementById('iframDiv'); + if (div) { + document.body.removeChild(div); + } + div = document.getElementById('btnDiv'); + if (div) { + document.body.removeChild(div); + } +} + +function bannerNight() {} + +/** + * 屏蔽右键 + */ +function stop() { + return false; +} + +document.oncontextmenu = stop; + +//监听屏幕 方向--暂时不用 +window.onorientationchange = function(e) { + // var d = document.getElementById('screenHint'); + // if (window.orientation == 180 || window.orientation == 0) { + // //竖屏状态 + // d.style.display = 'none'; + // } + // if (window.orientation == 90 || window.orientation == -90) { + // //横屏状态 + // d.style.display = 'block'; + // } +} + +//断开游戏链接 +function closeSocket() { + Main.closesocket(); +} + +//加载项目工程 +var loadScript = function(list, callback) { + var loaded = 0; + var loadNext = function() { + loadSingleScript(list[loaded], function() { + loaded++; + if (loaded >= list.length) { + callback(); + } else { + loadNext(); + } + }); + }; + loadNext(); +}; + +var loadTimes = 0; +var jsScr = ''; + +window['loadScript'] = loadScript; + +var loadSingleScript = function(src, callback) { + if (jsScr != src) { + loadTimes = 0; + } + + if(src.indexOf('lib') > -1 || src.indexOf('main') > -1) { + var mainSuffix = getQueryString('mainSuffix'); + if(mainSuffix) { + src = src.replace('.js', mainSuffix + '.js'); + } + src += '?v=' + (isJsDebug ? Math.random() : window['mainVersion']); + } + + jsScr = src; + + var s = document.createElement('script'); + s.type = 'text/javascript'; + s.async = false; + s.src = src; + + s.addEventListener('load', function() { + s.parentNode.removeChild(s); + s.removeEventListener('load', arguments.callee, false); + callback(); + }, false); + + s.addEventListener('error', function() { + s.parentNode.removeChild(s); + s.removeEventListener('load', arguments.callee, false); + loadTimes++; + if (loadTimes > 5) { + alert("主程序文件加载失败,请检测网络刷新游戏!\n " + src); + } else { + setTimeout(function() { + loadSingleScript(src, callback); + }, 2000); + } + }, false); + document.body.appendChild(s); +}; + +//开始启动游戏 +function start() { + //alert('维护中'); + //return; + + var xhr = new XMLHttpRequest(); + xhr.open('GET', './manifest.json?v=1.1.1.2', true); // '?v=' + Math.random() + + xhr.addEventListener('load', function() { + var manifest = JSON.parse(xhr.response); + var list = manifest.initial.concat(manifest.game); + window['gameAppJS'] = manifest['gameAppJS']; + loadScript(list, function() { + egret.runEgret({ + renderMode: 'webgl', + audioType: 0, + calculateCanvasScaleFactor: function(context) { + var backingStore = context.backingStorePixelRatio || + context.webkitBackingStorePixelRatio || + context.mozBackingStorePixelRatio || + context.msBackingStorePixelRatio || + context.oBackingStorePixelRatio || + context.backingStorePixelRatio || 1; + return (window.devicePixelRatio || 1) / backingStore; + } + }); + }); + }); + xhr.send(null); +} + +//上报 +reporting(10000, 1); + +loginFunction(); diff --git a/js/jszip.min_3648741c.js b/js/jszip.min_3648741c.js new file mode 100644 index 0000000..6b31b5e --- /dev/null +++ b/js/jszip.min_3648741c.js @@ -0,0 +1,7 @@ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.JSZip=e()}}(function(){return function e(t,r,n){function i(s,o){if(!r[s]){if(!t[s]){var u="function"==typeof require&&require;if(!o&&u)return u(s,!0);if(a)return a(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var l=r[s]={exports:{}};t[s][0].call(l.exports,function(e){var r=t[s][1][e];return i(r?r:e)},l,l.exports,e,t,r,n)}return r[s].exports}for(var a="function"==typeof require&&require,s=0;sc?e[c++]:0,i=f>c?e[c++]:0):(t=e.charCodeAt(c++),r=f>c?e.charCodeAt(c++):0,i=f>c?e.charCodeAt(c++):0),s=t>>2,o=(3&t)<<4|r>>4,u=d>1?(15&r)<<2|i>>6:64,h=d>2?63&i:64,l.push(a.charAt(s)+a.charAt(o)+a.charAt(u)+a.charAt(h));return l.join("")},r.decode=function(e){var t,r,n,s,o,u,h,l=0,c=0,f="data:";if(e.substr(0,f.length)===f)throw new Error("Invalid base64 input, it looks like a data url.");e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");var d=3*e.length/4;if(e.charAt(e.length-1)===a.charAt(64)&&d--,e.charAt(e.length-2)===a.charAt(64)&&d--,d%1!==0)throw new Error("Invalid base64 input, bad content length.");var p;for(p=i.uint8array?new Uint8Array(0|d):new Array(0|d);l>4,r=(15&o)<<4|u>>2,n=(3&u)<<6|h,p[c++]=t,64!==u&&(p[c++]=r),64!==h&&(p[c++]=n);return p}},{"./support":30,"./utils":32}],2:[function(e,t,r){"use strict";function n(e,t,r,n,i){this.compressedSize=e,this.uncompressedSize=t,this.crc32=r,this.compression=n,this.compressedContent=i}var i=e("./external"),a=e("./stream/DataWorker"),s=e("./stream/DataLengthProbe"),o=e("./stream/Crc32Probe"),s=e("./stream/DataLengthProbe");n.prototype={getContentWorker:function(){var e=new a(i.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new s("data_length")),t=this;return e.on("end",function(){if(this.streamInfo.data_length!==t.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),e},getCompressedWorker:function(){return new a(i.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},n.createWorkerFrom=function(e,t,r){return e.pipe(new o).pipe(new s("uncompressedSize")).pipe(t.compressWorker(r)).pipe(new s("compressedSize")).withStreamInfo("compression",t)},t.exports=n},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(e,t,r){"use strict";var n=e("./stream/GenericWorker");r.STORE={magic:"\x00\x00",compressWorker:function(e){return new n("STORE compression")},uncompressWorker:function(){return new n("STORE decompression")}},r.DEFLATE=e("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(e,t,r){"use strict";function n(){for(var e,t=[],r=0;256>r;r++){e=r;for(var n=0;8>n;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}function i(e,t,r,n){var i=o,a=n+r;e=-1^e;for(var s=n;a>s;s++)e=e>>>8^i[255&(e^t[s])];return-1^e}function a(e,t,r,n){var i=o,a=n+r;e=-1^e;for(var s=n;a>s;s++)e=e>>>8^i[255&(e^t.charCodeAt(s))];return-1^e}var s=e("./utils"),o=n();t.exports=function(e,t){if("undefined"==typeof e||!e.length)return 0;var r="string"!==s.getTypeOf(e);return r?i(0|t,e,e.length,0):a(0|t,e,e.length,0)}},{"./utils":32}],5:[function(e,t,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(e,t,r){"use strict";var n=null;n="undefined"!=typeof Promise?Promise:e("lie"),t.exports={Promise:n}},{lie:58}],7:[function(e,t,r){"use strict";function n(e,t){o.call(this,"FlateWorker/"+e),this._pako=null,this._pakoAction=e,this._pakoOptions=t,this.meta={}}var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,a=e("pako"),s=e("./utils"),o=e("./stream/GenericWorker"),u=i?"uint8array":"array";r.magic="\b\x00",s.inherits(n,o),n.prototype.processChunk=function(e){this.meta=e.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(u,e.data),!1)},n.prototype.flush=function(){o.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},n.prototype.cleanUp=function(){o.prototype.cleanUp.call(this),this._pako=null},n.prototype._createPako=function(){this._pako=new a[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(e){return new n("Deflate",e)},r.uncompressWorker=function(){return new n("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:59}],8:[function(e,t,r){"use strict";function n(e,t,r,n){a.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=t,this.zipPlatform=r,this.encodeFileName=n,this.streamFiles=e,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}var i=e("../utils"),a=e("../stream/GenericWorker"),s=e("../utf8"),o=e("../crc32"),u=e("../signature"),h=function(e,t){var r,n="";for(r=0;t>r;r++)n+=String.fromCharCode(255&e),e>>>=8;return n},l=function(e,t){var r=e;return e||(r=t?16893:33204),(65535&r)<<16},c=function(e,t){return 63&(e||0)},f=function(e,t,r,n,a,f){var d,p,m=e.file,_=e.compression,g=f!==s.utf8encode,v=i.transformTo("string",f(m.name)),b=i.transformTo("string",s.utf8encode(m.name)),w=m.comment,y=i.transformTo("string",f(w)),k=i.transformTo("string",s.utf8encode(w)),x=b.length!==m.name.length,S=k.length!==w.length,z="",E="",C="",A=m.dir,I=m.date,O={crc32:0,compressedSize:0,uncompressedSize:0};(!t||r)&&(O.crc32=e.crc32,O.compressedSize=e.compressedSize,O.uncompressedSize=e.uncompressedSize);var B=0;t&&(B|=8),g||!x&&!S||(B|=2048);var R=0,T=0;A&&(R|=16),"UNIX"===a?(T=798,R|=l(m.unixPermissions,A)):(T=20,R|=c(m.dosPermissions,A)),d=I.getUTCHours(),d<<=6,d|=I.getUTCMinutes(),d<<=5,d|=I.getUTCSeconds()/2,p=I.getUTCFullYear()-1980,p<<=4,p|=I.getUTCMonth()+1,p<<=5,p|=I.getUTCDate(),x&&(E=h(1,1)+h(o(v),4)+b,z+="up"+h(E.length,2)+E),S&&(C=h(1,1)+h(o(y),4)+k,z+="uc"+h(C.length,2)+C);var D="";D+="\n\x00",D+=h(B,2),D+=_.magic,D+=h(d,2),D+=h(p,2),D+=h(O.crc32,4),D+=h(O.compressedSize,4),D+=h(O.uncompressedSize,4),D+=h(v.length,2),D+=h(z.length,2);var F=u.LOCAL_FILE_HEADER+D+v+z,N=u.CENTRAL_FILE_HEADER+h(T,2)+D+h(y.length,2)+"\x00\x00\x00\x00"+h(R,4)+h(n,4)+v+z+y;return{fileRecord:F,dirRecord:N}},d=function(e,t,r,n,a){var s="",o=i.transformTo("string",a(n));return s=u.CENTRAL_DIRECTORY_END+"\x00\x00\x00\x00"+h(e,2)+h(e,2)+h(t,4)+h(r,4)+h(o.length,2)+o},p=function(e){var t="";return t=u.DATA_DESCRIPTOR+h(e.crc32,4)+h(e.compressedSize,4)+h(e.uncompressedSize,4)};i.inherits(n,a),n.prototype.push=function(e){var t=e.meta.percent||0,r=this.entriesCount,n=this._sources.length;this.accumulate?this.contentBuffer.push(e):(this.bytesWritten+=e.data.length,a.prototype.push.call(this,{data:e.data,meta:{currentFile:this.currentFile,percent:r?(t+100*(r-n-1))/r:100}}))},n.prototype.openedSource=function(e){this.currentSourceOffset=this.bytesWritten,this.currentFile=e.file.name;var t=this.streamFiles&&!e.file.dir;if(t){var r=f(e,t,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},n.prototype.closedSource=function(e){this.accumulate=!1;var t=this.streamFiles&&!e.file.dir,r=f(e,t,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),t)this.push({data:p(e),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},n.prototype.flush=function(){for(var e=this.bytesWritten,t=0;t0?e.substring(0,t):""},_=function(e){return"/"!==e.slice(-1)&&(e+="/"),e},g=function(e,t){return t="undefined"!=typeof t?t:u.createFolders,e=_(e),this.files[e]||p.call(this,e,null,{dir:!0,createFolders:t}),this.files[e]},v={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(e){var t,r,n;for(t in this.files)this.files.hasOwnProperty(t)&&(n=this.files[t],r=t.slice(this.root.length,t.length),r&&t.slice(0,this.root.length)===this.root&&e(r,n))},filter:function(e){var t=[];return this.forEach(function(r,n){e(r,n)&&t.push(n)}),t},file:function(e,t,r){if(1===arguments.length){if(n(e)){var i=e;return this.filter(function(e,t){return!t.dir&&i.test(e)})}var a=this.files[this.root+e];return a&&!a.dir?a:null}return e=this.root+e,p.call(this,e,t,r),this},folder:function(e){if(!e)return this;if(n(e))return this.filter(function(t,r){return r.dir&&e.test(t)});var t=this.root+e,r=g.call(this,t),i=this.clone();return i.root=r.name,i},remove:function(e){e=this.root+e;var t=this.files[e];if(t||("/"!==e.slice(-1)&&(e+="/"),t=this.files[e]),t&&!t.dir)delete this.files[e];else for(var r=this.filter(function(t,r){return r.name.slice(0,e.length)===e}),n=0;n=0;--a)if(this.data[a]===t&&this.data[a+1]===r&&this.data[a+2]===n&&this.data[a+3]===i)return a-this.zero;return-1},n.prototype.readAndCheckSignature=function(e){var t=e.charCodeAt(0),r=e.charCodeAt(1),n=e.charCodeAt(2),i=e.charCodeAt(3),a=this.readData(4);return t===a[0]&&r===a[1]&&n===a[2]&&i===a[3]},n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return[];var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],18:[function(e,t,r){"use strict";function n(e){this.data=e,this.length=e.length,this.index=0,this.zero=0}var i=e("../utils");n.prototype={checkOffset:function(e){this.checkIndex(this.index+e)},checkIndex:function(e){if(this.lengthe)throw new Error("End of data reached (data length = "+this.length+", asked index = "+e+"). Corrupted zip ?")},setIndex:function(e){this.checkIndex(e),this.index=e},skip:function(e){this.setIndex(this.index+e)},byteAt:function(e){},readInt:function(e){var t,r=0;for(this.checkOffset(e),t=this.index+e-1;t>=this.index;t--)r=(r<<8)+this.byteAt(t);return this.index+=e,r},readString:function(e){return i.transformTo("string",this.readData(e))},readData:function(e){},lastIndexOfSignature:function(e){},readAndCheckSignature:function(e){},readDate:function(){var e=this.readInt(4);return new Date(Date.UTC((e>>25&127)+1980,(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(31&e)<<1))}},t.exports=n},{"../utils":32}],19:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./Uint8ArrayReader"),a=e("../utils");a.inherits(n,i),n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./DataReader"),a=e("../utils");a.inherits(n,i),n.prototype.byteAt=function(e){return this.data.charCodeAt(this.zero+e)},n.prototype.lastIndexOfSignature=function(e){return this.data.lastIndexOf(e)-this.zero},n.prototype.readAndCheckSignature=function(e){var t=this.readData(4);return e===t},n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],21:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./ArrayReader"),a=e("../utils");a.inherits(n,i),n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return new Uint8Array(0);var t=this.data.subarray(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(e,t,r){"use strict";var n=e("../utils"),i=e("../support"),a=e("./ArrayReader"),s=e("./StringReader"),o=e("./NodeBufferReader"),u=e("./Uint8ArrayReader");t.exports=function(e){var t=n.getTypeOf(e);return n.checkSupport(t),"string"!==t||i.uint8array?"nodebuffer"===t?new o(e):i.uint8array?new u(n.transformTo("uint8array",e)):new a(n.transformTo("array",e)):new s(e)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(e,t,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(e,t,r){"use strict";function n(e){i.call(this,"ConvertWorker to "+e),this.destType=e}var i=e("./GenericWorker"),a=e("../utils");a.inherits(n,i),n.prototype.processChunk=function(e){this.push({data:a.transformTo(this.destType,e.data),meta:e.meta})},t.exports=n},{"../utils":32,"./GenericWorker":28}],25:[function(e,t,r){"use strict";function n(){i.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}var i=e("./GenericWorker"),a=e("../crc32"),s=e("../utils");s.inherits(n,i),n.prototype.processChunk=function(e){this.streamInfo.crc32=a(e.data,this.streamInfo.crc32||0),this.push(e)},t.exports=n},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(e,t,r){"use strict";function n(e){a.call(this,"DataLengthProbe for "+e),this.propName=e,this.withStreamInfo(e,0)}var i=e("../utils"),a=e("./GenericWorker");i.inherits(n,a),n.prototype.processChunk=function(e){if(e){var t=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=t+e.data.length}a.prototype.processChunk.call(this,e)},t.exports=n},{"../utils":32,"./GenericWorker":28}],27:[function(e,t,r){"use strict";function n(e){a.call(this,"DataWorker");var t=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,e.then(function(e){t.dataIsReady=!0,t.data=e,t.max=e&&e.length||0,t.type=i.getTypeOf(e),t.isPaused||t._tickAndRepeat()},function(e){t.error(e)})}var i=e("../utils"),a=e("./GenericWorker"),s=16384;i.inherits(n,a),n.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this.data=null},n.prototype.resume=function(){return a.prototype.resume.call(this)?(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,i.delay(this._tickAndRepeat,[],this)),!0):!1},n.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(i.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},n.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var e=s,t=null,r=Math.min(this.max,this.index+e);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,r);break;case"uint8array":t=this.data.subarray(this.index,r);break;case"array":case"nodebuffer":t=this.data.slice(this.index,r)}return this.index=r,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},t.exports=n},{"../utils":32,"./GenericWorker":28}],28:[function(e,t,r){"use strict";function n(e){this.name=e||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}n.prototype={push:function(e){this.emit("data",e)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(e){this.emit("error",e)}return!0},error:function(e){return this.isFinished?!1:(this.isPaused?this.generatedError=e:(this.isFinished=!0,this.emit("error",e),this.previous&&this.previous.error(e),this.cleanUp()),!0)},on:function(e,t){return this._listeners[e].push(t),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(e,t){if(this._listeners[e])for(var r=0;r "+e:e}},t.exports=n},{}],29:[function(e,t,r){"use strict";function n(e,t,r){switch(e){case"blob":return o.newBlob(o.transformTo("arraybuffer",t),r);case"base64":return l.encode(t);default:return o.transformTo(e,t)}}function i(e,t){var r,n=0,i=null,a=0;for(r=0;rl;l++)h[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;h[254]=h[254]=1;var c=function(e){var t,r,n,i,a,o=e.length,u=0;for(i=0;o>i;i++)r=e.charCodeAt(i),55296===(64512&r)&&o>i+1&&(n=e.charCodeAt(i+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),u+=128>r?1:2048>r?2:65536>r?3:4;for(t=s.uint8array?new Uint8Array(u):new Array(u),a=0,i=0;u>a;i++)r=e.charCodeAt(i),55296===(64512&r)&&o>i+1&&(n=e.charCodeAt(i+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),128>r?t[a++]=r:2048>r?(t[a++]=192|r>>>6,t[a++]=128|63&r):65536>r?(t[a++]=224|r>>>12,t[a++]=128|r>>>6&63,t[a++]=128|63&r):(t[a++]=240|r>>>18,t[a++]=128|r>>>12&63,t[a++]=128|r>>>6&63,t[a++]=128|63&r);return t},f=function(e,t){var r;for(t=t||e.length,t>e.length&&(t=e.length),r=t-1;r>=0&&128===(192&e[r]);)r--;return 0>r?t:0===r?t:r+h[e[r]]>t?r:t},d=function(e){var t,r,n,i,s=e.length,o=new Array(2*s);for(r=0,t=0;s>t;)if(n=e[t++],128>n)o[r++]=n;else if(i=h[n],i>4)o[r++]=65533,t+=i-1;else{for(n&=2===i?31:3===i?15:7;i>1&&s>t;)n=n<<6|63&e[t++],i--;i>1?o[r++]=65533:65536>n?o[r++]=n:(n-=65536,o[r++]=55296|n>>10&1023,o[r++]=56320|1023&n)}return o.length!==r&&(o.subarray?o=o.subarray(0,r):o.length=r),a.applyFromCharCode(o)};r.utf8encode=function(e){return s.nodebuffer?o.newBufferFrom(e,"utf-8"):c(e)},r.utf8decode=function(e){return s.nodebuffer?a.transformTo("nodebuffer",e).toString("utf-8"):(e=a.transformTo(s.uint8array?"uint8array":"array",e),d(e))},a.inherits(n,u),n.prototype.processChunk=function(e){var t=a.transformTo(s.uint8array?"uint8array":"array",e.data);if(this.leftOver&&this.leftOver.length){if(s.uint8array){var n=t;t=new Uint8Array(n.length+this.leftOver.length),t.set(this.leftOver,0),t.set(n,this.leftOver.length)}else t=this.leftOver.concat(t);this.leftOver=null}var i=f(t),o=t;i!==t.length&&(s.uint8array?(o=t.subarray(0,i),this.leftOver=t.subarray(i,t.length)):(o=t.slice(0,i),this.leftOver=t.slice(i,t.length))),this.push({data:r.utf8decode(o),meta:e.meta})},n.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:r.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},r.Utf8DecodeWorker=n,a.inherits(i,u),i.prototype.processChunk=function(e){this.push({data:r.utf8encode(e.data),meta:e.meta})},r.Utf8EncodeWorker=i},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(e,t,r){"use strict";function n(e){var t=null;return t=u.uint8array?new Uint8Array(e.length):new Array(e.length),a(e,t)}function i(e){return e}function a(e,t){for(var r=0;r1;)try{return d.stringifyByChunk(e,n,t)}catch(a){t=Math.floor(t/2)}return d.stringifyByChar(e) +}function o(e,t){for(var r=0;r=a)return String.fromCharCode.apply(null,e);for(;a>i;)"array"===t||"nodebuffer"===t?n.push(String.fromCharCode.apply(null,e.slice(i,Math.min(i+r,a)))):n.push(String.fromCharCode.apply(null,e.subarray(i,Math.min(i+r,a)))),i+=r;return n.join("")},stringifyByChar:function(e){for(var t="",r=0;rt?"0":"")+t.toString(16).toUpperCase();return n},r.delay=function(e,t,r){c(function(){e.apply(r||null,t||[])})},r.inherits=function(e,t){var r=function(){};r.prototype=t.prototype,e.prototype=new r},r.extend=function(){var e,t,r={};for(e=0;ei;)e=this.reader.readInt(2),t=this.reader.readInt(4),r=this.reader.readData(t),this.zip64ExtensibleData[e]={id:e,length:t,value:r}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var e,t;for(e=0;ee){var t=!this.isSignature(0,s.LOCAL_FILE_HEADER);throw t?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory")}this.reader.setIndex(e);var r=e;if(this.checkSignature(s.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===a.MAX_VALUE_16BITS||this.diskWithCentralDirStart===a.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===a.MAX_VALUE_16BITS||this.centralDirRecords===a.MAX_VALUE_16BITS||this.centralDirSize===a.MAX_VALUE_32BITS||this.centralDirOffset===a.MAX_VALUE_32BITS){if(this.zip64=!0,e=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),0>e)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(e),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,s.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var n=this.centralDirOffset+this.centralDirSize;this.zip64&&(n+=20,n+=12+this.zip64EndOfCentralSize);var i=r-n;if(i>0)this.isSignature(r,s.CENTRAL_FILE_HEADER)||(this.reader.zero=i);else if(0>i)throw new Error("Corrupted zip: missing "+Math.abs(i)+" bytes.")},prepareReader:function(e){this.reader=i(e)},load:function(e){this.prepareReader(e),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},t.exports=n},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(e,t,r){"use strict";function n(e,t){this.options=e,this.loadOptions=t}var i=e("./reader/readerFor"),a=e("./utils"),s=e("./compressedObject"),o=e("./crc32"),u=e("./utf8"),h=e("./compressions"),l=e("./support"),c=0,f=3,d=function(e){for(var t in h)if(h.hasOwnProperty(t)&&h[t].magic===e)return h[t];return null};n.prototype={isEncrypted:function(){return 1===(1&this.bitFlag)},useUTF8:function(){return 2048===(2048&this.bitFlag)},readLocalPart:function(e){var t,r;if(e.skip(22),this.fileNameLength=e.readInt(2),r=e.readInt(2),this.fileName=e.readData(this.fileNameLength),e.skip(r),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(t=d(this.compressionMethod),null===t)throw new Error("Corrupted zip : compression "+a.pretty(this.compressionMethod)+" unknown (inner file : "+a.transformTo("string",this.fileName)+")");this.decompressed=new s(this.compressedSize,this.uncompressedSize,this.crc32,t,e.readData(this.compressedSize))},readCentralPart:function(e){this.versionMadeBy=e.readInt(2),e.skip(2),this.bitFlag=e.readInt(2),this.compressionMethod=e.readString(2),this.date=e.readDate(),this.crc32=e.readInt(4),this.compressedSize=e.readInt(4),this.uncompressedSize=e.readInt(4);var t=e.readInt(2);if(this.extraFieldsLength=e.readInt(2),this.fileCommentLength=e.readInt(2),this.diskNumberStart=e.readInt(2),this.internalFileAttributes=e.readInt(2),this.externalFileAttributes=e.readInt(4),this.localHeaderOffset=e.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");e.skip(t),this.readExtraFields(e),this.parseZIP64ExtraField(e),this.fileComment=e.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var e=this.versionMadeBy>>8;this.dir=16&this.externalFileAttributes?!0:!1,e===c&&(this.dosPermissions=63&this.externalFileAttributes),e===f&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(e){if(this.extraFields[1]){var t=i(this.extraFields[1].value);this.uncompressedSize===a.MAX_VALUE_32BITS&&(this.uncompressedSize=t.readInt(8)),this.compressedSize===a.MAX_VALUE_32BITS&&(this.compressedSize=t.readInt(8)),this.localHeaderOffset===a.MAX_VALUE_32BITS&&(this.localHeaderOffset=t.readInt(8)),this.diskNumberStart===a.MAX_VALUE_32BITS&&(this.diskNumberStart=t.readInt(4))}},readExtraFields:function(e){var t,r,n,i=e.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});e.indexr;)t.push(arguments[r++]);return _[++m]=function(){o("function"==typeof e?e:Function(e),t)},n(m),m},d=function(e){delete _[e]},"process"==e("./_cof")(c)?n=function(e){c.nextTick(s(v,e,1))}:p?(i=new p,a=i.port2,i.port1.onmessage=b,n=s(a.postMessage,a,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(n=function(e){l.postMessage(e+"","*")},l.addEventListener("message",b,!1)):n=g in h("script")?function(e){u.appendChild(h("script"))[g]=function(){u.removeChild(this),v.call(e)}}:function(e){setTimeout(s(v,e,1),0)}),t.exports={set:f,clear:d}},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(e,t,r){var n=e("./_is-object");t.exports=function(e,t){if(!n(e))return e;var r,i;if(t&&"function"==typeof(r=e.toString)&&!n(i=r.call(e)))return i;if("function"==typeof(r=e.valueOf)&&!n(i=r.call(e)))return i;if(!t&&"function"==typeof(r=e.toString)&&!n(i=r.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},{"./_is-object":51}],56:[function(e,t,r){var n=e("./_export"),i=e("./_task");n(n.G+n.B,{setImmediate:i.set,clearImmediate:i.clear})},{"./_export":44,"./_task":54}],57:[function(e,t,r){(function(e){"use strict";function r(){l=!0;for(var e,t,r=c.length;r;){for(t=c,c=[],e=-1;++e0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var r=o.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==m)throw new Error(l[r]);if(t.header&&o.deflateSetHeader(this.strm,t.header),t.dictionary){var i;if(i="string"==typeof t.dictionary?h.string2buf(t.dictionary):"[object ArrayBuffer]"===f.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,r=o.deflateSetDictionary(this.strm,i),r!==m)throw new Error(l[r]);this._dict_set=!0}}function i(e,t){var r=new n(t);if(r.push(e,!0),r.err)throw r.msg||l[r.err];return r.result}function a(e,t){return t=t||{},t.raw=!0,i(e,t)}function s(e,t){return t=t||{},t.gzip=!0,i(e,t)}var o=e("./zlib/deflate"),u=e("./utils/common"),h=e("./utils/strings"),l=e("./zlib/messages"),c=e("./zlib/zstream"),f=Object.prototype.toString,d=0,p=4,m=0,_=1,g=2,v=-1,b=0,w=8;n.prototype.push=function(e,t){var r,n,i=this.strm,a=this.options.chunkSize;if(this.ended)return!1;n=t===~~t?t:t===!0?p:d,"string"==typeof e?i.input=h.string2buf(e):"[object ArrayBuffer]"===f.call(e)?i.input=new Uint8Array(e):i.input=e,i.next_in=0,i.avail_in=i.input.length;do{if(0===i.avail_out&&(i.output=new u.Buf8(a),i.next_out=0,i.avail_out=a),r=o.deflate(i,n),r!==_&&r!==m)return this.onEnd(r),this.ended=!0,!1;(0===i.avail_out||0===i.avail_in&&(n===p||n===g))&&("string"===this.options.to?this.onData(h.buf2binstring(u.shrinkBuf(i.output,i.next_out))):this.onData(u.shrinkBuf(i.output,i.next_out)))}while((i.avail_in>0||0===i.avail_out)&&r!==_);return n===p?(r=o.deflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===m):n===g?(this.onEnd(m),i.avail_out=0,!0):!0},n.prototype.onData=function(e){this.chunks.push(e)},n.prototype.onEnd=function(e){e===m&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=u.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},r.Deflate=n,r.deflate=i,r.deflateRaw=a,r.gzip=s},{"./utils/common":62,"./utils/strings":63,"./zlib/deflate":67,"./zlib/messages":72,"./zlib/zstream":74}],61:[function(e,t,r){"use strict";function n(e){if(!(this instanceof n))return new n(e);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&0===(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var r=s.inflateInit2(this.strm,t.windowBits);if(r!==h.Z_OK)throw new Error(l[r]);this.header=new f,s.inflateGetHeader(this.strm,this.header)}function i(e,t){var r=new n(t);if(r.push(e,!0),r.err)throw r.msg||l[r.err];return r.result}function a(e,t){return t=t||{},t.raw=!0,i(e,t)}var s=e("./zlib/inflate"),o=e("./utils/common"),u=e("./utils/strings"),h=e("./zlib/constants"),l=e("./zlib/messages"),c=e("./zlib/zstream"),f=e("./zlib/gzheader"),d=Object.prototype.toString;n.prototype.push=function(e,t){var r,n,i,a,l,c,f=this.strm,p=this.options.chunkSize,m=this.options.dictionary,_=!1;if(this.ended)return!1;n=t===~~t?t:t===!0?h.Z_FINISH:h.Z_NO_FLUSH,"string"==typeof e?f.input=u.binstring2buf(e):"[object ArrayBuffer]"===d.call(e)?f.input=new Uint8Array(e):f.input=e,f.next_in=0,f.avail_in=f.input.length;do{if(0===f.avail_out&&(f.output=new o.Buf8(p),f.next_out=0,f.avail_out=p),r=s.inflate(f,h.Z_NO_FLUSH),r===h.Z_NEED_DICT&&m&&(c="string"==typeof m?u.string2buf(m):"[object ArrayBuffer]"===d.call(m)?new Uint8Array(m):m,r=s.inflateSetDictionary(this.strm,c)),r===h.Z_BUF_ERROR&&_===!0&&(r=h.Z_OK,_=!1),r!==h.Z_STREAM_END&&r!==h.Z_OK)return this.onEnd(r),this.ended=!0,!1;f.next_out&&(0===f.avail_out||r===h.Z_STREAM_END||0===f.avail_in&&(n===h.Z_FINISH||n===h.Z_SYNC_FLUSH))&&("string"===this.options.to?(i=u.utf8border(f.output,f.next_out),a=f.next_out-i,l=u.buf2string(f.output,i),f.next_out=a,f.avail_out=p-a,a&&o.arraySet(f.output,f.output,i,a,0),this.onData(l)):this.onData(o.shrinkBuf(f.output,f.next_out))),0===f.avail_in&&0===f.avail_out&&(_=!0)}while((f.avail_in>0||0===f.avail_out)&&r!==h.Z_STREAM_END);return r===h.Z_STREAM_END&&(n=h.Z_FINISH),n===h.Z_FINISH?(r=s.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===h.Z_OK):n===h.Z_SYNC_FLUSH?(this.onEnd(h.Z_OK),f.avail_out=0,!0):!0},n.prototype.onData=function(e){this.chunks.push(e)},n.prototype.onEnd=function(e){e===h.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},r.Inflate=n,r.inflate=i,r.inflateRaw=a,r.ungzip=i},{"./utils/common":62,"./utils/strings":63,"./zlib/constants":65,"./zlib/gzheader":68,"./zlib/inflate":70,"./zlib/messages":72,"./zlib/zstream":74}],62:[function(e,t,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;r.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var r=t.shift();if(r){if("object"!=typeof r)throw new TypeError(r+"must be non-object");for(var n in r)r.hasOwnProperty(n)&&(e[n]=r[n])}}return e},r.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var i={arraySet:function(e,t,r,n,i){if(t.subarray&&e.subarray)return void e.set(t.subarray(r,r+n),i);for(var a=0;n>a;a++)e[i+a]=t[r+a]},flattenChunks:function(e){var t,r,n,i,a,s;for(n=0,t=0,r=e.length;r>t;t++)n+=e[t].length;for(s=new Uint8Array(n),i=0,t=0,r=e.length;r>t;t++)a=e[t],s.set(a,i),i+=a.length;return s}},a={arraySet:function(e,t,r,n,i){for(var a=0;n>a;a++)e[i+a]=t[r+a]},flattenChunks:function(e){return[].concat.apply([],e)}};r.setTyped=function(e){e?(r.Buf8=Uint8Array,r.Buf16=Uint16Array,r.Buf32=Int32Array,r.assign(r,i)):(r.Buf8=Array,r.Buf16=Array,r.Buf32=Array,r.assign(r,a))},r.setTyped(n)},{}],63:[function(e,t,r){"use strict";function n(e,t){if(65537>t&&(e.subarray&&s||!e.subarray&&a))return String.fromCharCode.apply(null,i.shrinkBuf(e,t));for(var r="",n=0;t>n;n++)r+=String.fromCharCode(e[n]);return r}var i=e("./common"),a=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(o){a=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(o){s=!1}for(var u=new i.Buf8(256),h=0;256>h;h++)u[h]=h>=252?6:h>=248?5:h>=240?4:h>=224?3:h>=192?2:1;u[254]=u[254]=1,r.string2buf=function(e){var t,r,n,a,s,o=e.length,u=0;for(a=0;o>a;a++)r=e.charCodeAt(a),55296===(64512&r)&&o>a+1&&(n=e.charCodeAt(a+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),a++)),u+=128>r?1:2048>r?2:65536>r?3:4;for(t=new i.Buf8(u),s=0,a=0;u>s;a++)r=e.charCodeAt(a),55296===(64512&r)&&o>a+1&&(n=e.charCodeAt(a+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),a++)),128>r?t[s++]=r:2048>r?(t[s++]=192|r>>>6,t[s++]=128|63&r):65536>r?(t[s++]=224|r>>>12,t[s++]=128|r>>>6&63,t[s++]=128|63&r):(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63,t[s++]=128|r>>>6&63,t[s++]=128|63&r);return t},r.buf2binstring=function(e){return n(e,e.length)},r.binstring2buf=function(e){for(var t=new i.Buf8(e.length),r=0,n=t.length;n>r;r++)t[r]=e.charCodeAt(r);return t},r.buf2string=function(e,t){var r,i,a,s,o=t||e.length,h=new Array(2*o);for(i=0,r=0;o>r;)if(a=e[r++],128>a)h[i++]=a;else if(s=u[a],s>4)h[i++]=65533,r+=s-1;else{for(a&=2===s?31:3===s?15:7;s>1&&o>r;)a=a<<6|63&e[r++],s--;s>1?h[i++]=65533:65536>a?h[i++]=a:(a-=65536,h[i++]=55296|a>>10&1023,h[i++]=56320|1023&a)}return n(h,i)},r.utf8border=function(e,t){var r;for(t=t||e.length,t>e.length&&(t=e.length),r=t-1;r>=0&&128===(192&e[r]);)r--;return 0>r?t:0===r?t:r+u[e[r]]>t?r:t}},{"./common":62}],64:[function(e,t,r){"use strict";function n(e,t,r,n){for(var i=65535&e|0,a=e>>>16&65535|0,s=0;0!==r;){s=r>2e3?2e3:r,r-=s; +do i=i+t[n++]|0,a=a+i|0;while(--s);i%=65521,a%=65521}return i|a<<16|0}t.exports=n},{}],65:[function(e,t,r){"use strict";t.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],66:[function(e,t,r){"use strict";function n(){for(var e,t=[],r=0;256>r;r++){e=r;for(var n=0;8>n;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}function i(e,t,r,n){var i=a,s=n+r;e^=-1;for(var o=n;s>o;o++)e=e>>>8^i[255&(e^t[o])];return-1^e}var a=n();t.exports=i},{}],67:[function(e,t,r){"use strict";function n(e,t){return e.msg=D[t],t}function i(e){return(e<<1)-(e>4?9:0)}function a(e){for(var t=e.length;--t>=0;)e[t]=0}function s(e){var t=e.state,r=t.pending;r>e.avail_out&&(r=e.avail_out),0!==r&&(O.arraySet(e.output,t.pending_buf,t.pending_out,r,e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,0===t.pending&&(t.pending_out=0))}function o(e,t){B._tr_flush_block(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,s(e.strm)}function u(e,t){e.pending_buf[e.pending++]=t}function h(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function l(e,t,r,n){var i=e.avail_in;return i>n&&(i=n),0===i?0:(e.avail_in-=i,O.arraySet(t,e.input,e.next_in,i,r),1===e.state.wrap?e.adler=R(e.adler,t,i,r):2===e.state.wrap&&(e.adler=T(e.adler,t,i,r)),e.next_in+=i,e.total_in+=i,i)}function c(e,t){var r,n,i=e.max_chain_length,a=e.strstart,s=e.prev_length,o=e.nice_match,u=e.strstart>e.w_size-ct?e.strstart-(e.w_size-ct):0,h=e.window,l=e.w_mask,c=e.prev,f=e.strstart+lt,d=h[a+s-1],p=h[a+s];e.prev_length>=e.good_match&&(i>>=2),o>e.lookahead&&(o=e.lookahead);do if(r=t,h[r+s]===p&&h[r+s-1]===d&&h[r]===h[a]&&h[++r]===h[a+1]){a+=2,r++;do;while(h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&f>a);if(n=lt-(f-a),a=f-lt,n>s){if(e.match_start=t,s=n,n>=o)break;d=h[a+s-1],p=h[a+s]}}while((t=c[t&l])>u&&0!==--i);return s<=e.lookahead?s:e.lookahead}function f(e){var t,r,n,i,a,s=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=s+(s-ct)){O.arraySet(e.window,e.window,s,s,0),e.match_start-=s,e.strstart-=s,e.block_start-=s,r=e.hash_size,t=r;do n=e.head[--t],e.head[t]=n>=s?n-s:0;while(--r);r=s,t=r;do n=e.prev[--t],e.prev[t]=n>=s?n-s:0;while(--r);i+=s}if(0===e.strm.avail_in)break;if(r=l(e.strm,e.window,e.strstart+e.lookahead,i),e.lookahead+=r,e.lookahead+e.insert>=ht)for(a=e.strstart-e.insert,e.ins_h=e.window[a],e.ins_h=(e.ins_h<e.pending_buf_size-5&&(r=e.pending_buf_size-5);;){if(e.lookahead<=1){if(f(e),0===e.lookahead&&t===F)return wt;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var n=e.block_start+r;if((0===e.strstart||e.strstart>=n)&&(e.lookahead=e.strstart-n,e.strstart=n,o(e,!1),0===e.strm.avail_out))return wt;if(e.strstart-e.block_start>=e.w_size-ct&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.strstart>e.block_start&&(o(e,!1),0===e.strm.avail_out)?wt:wt}function p(e,t){for(var r,n;;){if(e.lookahead=ht&&(e.ins_h=(e.ins_h<=ht)if(n=B._tr_tally(e,e.strstart-e.match_start,e.match_length-ht),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=ht){e.match_length--;do e.strstart++,e.ins_h=(e.ins_h<=ht&&(e.ins_h=(e.ins_h<4096)&&(e.match_length=ht-1)),e.prev_length>=ht&&e.match_length<=e.prev_length){i=e.strstart+e.lookahead-ht,n=B._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-ht),e.lookahead-=e.prev_length-1,e.prev_length-=2;do++e.strstart<=i&&(e.ins_h=(e.ins_h<=ht&&e.strstart>0&&(i=e.strstart-1,n=s[i],n===s[++i]&&n===s[++i]&&n===s[++i])){a=e.strstart+lt;do;while(n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&a>i);e.match_length=lt-(a-i),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=ht?(r=B._tr_tally(e,1,e.match_length-ht),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=B._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.last_lit&&(o(e,!1),0===e.strm.avail_out)?wt:yt}function g(e,t){for(var r;;){if(0===e.lookahead&&(f(e),0===e.lookahead)){if(t===F)return wt;break}if(e.match_length=0,r=B._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.last_lit&&(o(e,!1),0===e.strm.avail_out)?wt:yt}function v(e,t,r,n,i){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=n,this.func=i}function b(e){e.window_size=2*e.w_size,a(e.head),e.max_lazy_match=I[e.level].max_lazy,e.good_match=I[e.level].good_length,e.nice_match=I[e.level].nice_length,e.max_chain_length=I[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=ht-1,e.match_available=0,e.ins_h=0}function w(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Q,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new O.Buf16(2*ot),this.dyn_dtree=new O.Buf16(2*(2*at+1)),this.bl_tree=new O.Buf16(2*(2*st+1)),a(this.dyn_ltree),a(this.dyn_dtree),a(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new O.Buf16(ut+1),this.heap=new O.Buf16(2*it+1),a(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new O.Buf16(2*it+1),a(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function y(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=J,t=e.state,t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?dt:vt,e.adler=2===t.wrap?0:1,t.last_flush=F,B._tr_init(t),j):n(e,W)}function k(e){var t=y(e);return t===j&&b(e.state),t}function x(e,t){return e&&e.state?2!==e.state.wrap?W:(e.state.gzhead=t,j):W}function S(e,t,r,i,a,s){if(!e)return W;var o=1;if(t===G&&(t=6),0>i?(o=0,i=-i):i>15&&(o=2,i-=16),1>a||a>$||r!==Q||8>i||i>15||0>t||t>9||0>s||s>V)return n(e,W);8===i&&(i=9);var u=new w;return e.state=u,u.strm=e,u.wrap=o,u.gzhead=null,u.w_bits=i,u.w_size=1<L||0>t)return e?n(e,W):W;if(o=e.state,!e.output||!e.input&&0!==e.avail_in||o.status===bt&&t!==U)return n(e,0===e.avail_out?H:W);if(o.strm=e,r=o.last_flush,o.last_flush=t,o.status===dt)if(2===o.wrap)e.adler=0,u(o,31),u(o,139),u(o,8),o.gzhead?(u(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),u(o,255&o.gzhead.time),u(o,o.gzhead.time>>8&255),u(o,o.gzhead.time>>16&255),u(o,o.gzhead.time>>24&255),u(o,9===o.level?2:o.strategy>=Y||o.level<2?4:0),u(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(u(o,255&o.gzhead.extra.length),u(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(e.adler=T(e.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=pt):(u(o,0),u(o,0),u(o,0),u(o,0),u(o,0),u(o,9===o.level?2:o.strategy>=Y||o.level<2?4:0),u(o,St),o.status=vt);else{var f=Q+(o.w_bits-8<<4)<<8,d=-1;d=o.strategy>=Y||o.level<2?0:o.level<6?1:6===o.level?2:3,f|=d<<6,0!==o.strstart&&(f|=ft),f+=31-f%31,o.status=vt,h(o,f),0!==o.strstart&&(h(o,e.adler>>>16),h(o,65535&e.adler)),e.adler=1}if(o.status===pt)if(o.gzhead.extra){for(l=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending!==o.pending_buf_size));)u(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=mt)}else o.status=mt;if(o.status===mt)if(o.gzhead.name){l=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindexl&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),0===c&&(o.gzindex=0,o.status=_t)}else o.status=_t;if(o.status===_t)if(o.gzhead.comment){l=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindexl&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),0===c&&(o.status=gt)}else o.status=gt;if(o.status===gt&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(e),o.pending+2<=o.pending_buf_size&&(u(o,255&e.adler),u(o,e.adler>>8&255),e.adler=0,o.status=vt)):o.status=vt),0!==o.pending){if(s(e),0===e.avail_out)return o.last_flush=-1,j}else if(0===e.avail_in&&i(t)<=i(r)&&t!==U)return n(e,H);if(o.status===bt&&0!==e.avail_in)return n(e,H);if(0!==e.avail_in||0!==o.lookahead||t!==F&&o.status!==bt){var p=o.strategy===Y?g(o,t):o.strategy===X?_(o,t):I[o.level].func(o,t);if((p===kt||p===xt)&&(o.status=bt),p===wt||p===kt)return 0===e.avail_out&&(o.last_flush=-1),j;if(p===yt&&(t===N?B._tr_align(o):t!==L&&(B._tr_stored_block(o,0,0,!1),t===P&&(a(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(e),0===e.avail_out))return o.last_flush=-1,j}return t!==U?j:o.wrap<=0?Z:(2===o.wrap?(u(o,255&e.adler),u(o,e.adler>>8&255),u(o,e.adler>>16&255),u(o,e.adler>>24&255),u(o,255&e.total_in),u(o,e.total_in>>8&255),u(o,e.total_in>>16&255),u(o,e.total_in>>24&255)):(h(o,e.adler>>>16),h(o,65535&e.adler)),s(e),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?j:Z)}function C(e){var t;return e&&e.state?(t=e.state.status,t!==dt&&t!==pt&&t!==mt&&t!==_t&&t!==gt&&t!==vt&&t!==bt?n(e,W):(e.state=null,t===vt?n(e,M):j)):W}function A(e,t){var r,n,i,s,o,u,h,l,c=t.length;if(!e||!e.state)return W;if(r=e.state,s=r.wrap,2===s||1===s&&r.status!==dt||r.lookahead)return W;for(1===s&&(e.adler=R(e.adler,t,c,0)),r.wrap=0,c>=r.w_size&&(0===s&&(a(r.head),r.strstart=0,r.block_start=0,r.insert=0),l=new O.Buf8(r.w_size),O.arraySet(l,t,c-r.w_size,r.w_size,0),t=l,c=r.w_size),o=e.avail_in,u=e.next_in,h=e.input,e.avail_in=c,e.next_in=0,e.input=t,f(r);r.lookahead>=ht;){n=r.strstart,i=r.lookahead-(ht-1);do r.ins_h=(r.ins_h<_&&(m+=C[a++]<<_,_+=8,m+=C[a++]<<_,_+=8),y=g[m&b];t:for(;;){if(k=y>>>24,m>>>=k,_-=k,k=y>>>16&255,0===k)A[o++]=65535&y;else{if(!(16&k)){if(0===(64&k)){y=g[(65535&y)+(m&(1<_&&(m+=C[a++]<<_,_+=8),x+=m&(1<>>=k,_-=k),15>_&&(m+=C[a++]<<_,_+=8,m+=C[a++]<<_,_+=8),y=v[m&w];r:for(;;){if(k=y>>>24,m>>>=k,_-=k,k=y>>>16&255,!(16&k)){if(0===(64&k)){y=v[(65535&y)+(m&(1<_&&(m+=C[a++]<<_,_+=8,k>_&&(m+=C[a++]<<_,_+=8)),S+=m&(1<l){e.msg="invalid distance too far back",r.mode=n;break e}if(m>>>=k,_-=k,k=o-u,S>k){if(k=S-k,k>f&&r.sane){e.msg="invalid distance too far back",r.mode=n;break e}if(z=0,E=p,0===d){if(z+=c-k,x>k){x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}}else if(k>d){if(z+=c+d-k,k-=d,x>k){x-=k;do A[o++]=p[z++];while(--k);if(z=0,x>d){k=d,x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}}}else if(z+=d-k,x>k){x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}for(;x>2;)A[o++]=E[z++],A[o++]=E[z++],A[o++]=E[z++],x-=3;x&&(A[o++]=E[z++],x>1&&(A[o++]=E[z++]))}else{z=o-S;do A[o++]=A[z++],A[o++]=A[z++],A[o++]=A[z++],x-=3;while(x>2);x&&(A[o++]=A[z++],x>1&&(A[o++]=A[z++]))}break}}break}}while(s>a&&h>o);x=_>>3,a-=x,_-=x<<3,m&=(1<<_)-1,e.next_in=a,e.next_out=o,e.avail_in=s>a?5+(s-a):5-(a-s),e.avail_out=h>o?257+(h-o):257-(o-h),r.hold=m,r.bits=_}},{}],70:[function(e,t,r){"use strict";function n(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function i(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new v.Buf16(320),this.work=new v.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=P,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new v.Buf32(mt),t.distcode=t.distdyn=new v.Buf32(_t),t.sane=1,t.back=-1,I):R}function s(e){var t;return e&&e.state?(t=e.state,t.wsize=0,t.whave=0,t.wnext=0,a(e)):R}function o(e,t){var r,n;return e&&e.state?(n=e.state,0>t?(r=0,t=-t):(r=(t>>4)+1,48>t&&(t&=15)),t&&(8>t||t>15)?R:(null!==n.window&&n.wbits!==t&&(n.window=null),n.wrap=r,n.wbits=t,s(e))):R}function u(e,t){var r,n;return e?(n=new i,e.state=n,n.window=null,r=o(e,t),r!==I&&(e.state=null),r):R}function h(e){return u(e,vt)}function l(e){if(bt){var t;for(_=new v.Buf32(512),g=new v.Buf32(32),t=0;144>t;)e.lens[t++]=8;for(;256>t;)e.lens[t++]=9;for(;280>t;)e.lens[t++]=7;for(;288>t;)e.lens[t++]=8;for(k(S,e.lens,0,288,_,0,e.work,{bits:9}),t=0;32>t;)e.lens[t++]=5;k(z,e.lens,0,32,g,0,e.work,{bits:5}),bt=!1}e.lencode=_,e.lenbits=9,e.distcode=g,e.distbits=5}function c(e,t,r,n){var i,a=e.state;return null===a.window&&(a.wsize=1<=a.wsize?(v.arraySet(a.window,t,r-a.wsize,a.wsize,0),a.wnext=0,a.whave=a.wsize):(i=a.wsize-a.wnext,i>n&&(i=n),v.arraySet(a.window,t,r-n,i,a.wnext),n-=i,n?(v.arraySet(a.window,t,r-n,n,0),a.wnext=n,a.whave=a.wsize):(a.wnext+=i,a.wnext===a.wsize&&(a.wnext=0),a.whaved;){if(0===u)break e;u--,f+=i[s++]<>>8&255,r.check=w(r.check,Ct,2,0),f=0,d=0,r.mode=U;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&f)<<8)+(f>>8))%31){e.msg="incorrect header check",r.mode=ft;break}if((15&f)!==N){e.msg="unknown compression method",r.mode=ft;break}if(f>>>=4,d-=4,kt=(15&f)+8,0===r.wbits)r.wbits=kt;else if(kt>r.wbits){e.msg="invalid window size",r.mode=ft;break}r.dmax=1<d;){if(0===u)break e;u--,f+=i[s++]<>8&1),512&r.flags&&(Ct[0]=255&f,Ct[1]=f>>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0,r.mode=L;case L:for(;32>d;){if(0===u)break e;u--,f+=i[s++]<>>8&255,Ct[2]=f>>>16&255,Ct[3]=f>>>24&255,r.check=w(r.check,Ct,4,0)),f=0,d=0,r.mode=j;case j:for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>8),512&r.flags&&(Ct[0]=255&f,Ct[1]=f>>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0,r.mode=Z;case Z:if(1024&r.flags){for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0}else r.head&&(r.head.extra=null);r.mode=W;case W:if(1024&r.flags&&(_=r.length,_>u&&(_=u),_&&(r.head&&(kt=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),v.arraySet(r.head.extra,i,s,_,kt)),512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,r.length-=_),r.length))break e;r.length=0,r.mode=M;case M:if(2048&r.flags){if(0===u)break e;_=0;do kt=i[s+_++],r.head&&kt&&r.length<65536&&(r.head.name+=String.fromCharCode(kt));while(kt&&u>_);if(512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,kt)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=H;case H:if(4096&r.flags){if(0===u)break e;_=0;do kt=i[s+_++],r.head&&kt&&r.length<65536&&(r.head.comment+=String.fromCharCode(kt));while(kt&&u>_);if(512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,kt)break e}else r.head&&(r.head.comment=null);r.mode=G;case G:if(512&r.flags){for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=X;break;case K:for(;32>d;){if(0===u)break e;u--,f+=i[s++]<>>=7&d,d-=7&d,r.mode=ht;break}for(;3>d;){if(0===u)break e;u--,f+=i[s++]<>>=1,d-=1,3&f){case 0:r.mode=q;break;case 1:if(l(r),r.mode=rt,t===A){f>>>=2,d-=2;break e}break;case 2:r.mode=$;break;case 3:e.msg="invalid block type",r.mode=ft}f>>>=2,d-=2;break;case q:for(f>>>=7&d,d-=7&d;32>d;){if(0===u)break e;u--,f+=i[s++]<>>16^65535)){e.msg="invalid stored block lengths",r.mode=ft;break}if(r.length=65535&f,f=0,d=0,r.mode=J,t===A)break e;case J:r.mode=Q;case Q:if(_=r.length){if(_>u&&(_=u),_>h&&(_=h),0===_)break e;v.arraySet(a,i,s,_,o),u-=_,s+=_,h-=_,o+=_,r.length-=_;break}r.mode=X;break;case $:for(;14>d;){if(0===u)break e;u--,f+=i[s++]<>>=5,d-=5,r.ndist=(31&f)+1,f>>>=5,d-=5,r.ncode=(15&f)+4,f>>>=4,d-=4,r.nlen>286||r.ndist>30){e.msg="too many length or distance symbols",r.mode=ft;break}r.have=0,r.mode=et;case et:for(;r.haved;){if(0===u)break e;u--,f+=i[s++]<>>=3,d-=3}for(;r.have<19;)r.lens[At[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,St={bits:r.lenbits},xt=k(x,r.lens,0,19,r.lencode,0,r.work,St),r.lenbits=St.bits,xt){e.msg="invalid code lengths set",r.mode=ft;break}r.have=0,r.mode=tt;case tt:for(;r.have>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<vt)f>>>=_t,d-=_t,r.lens[r.have++]=vt;else{if(16===vt){for(zt=_t+2;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,0===r.have){e.msg="invalid bit length repeat",r.mode=ft;break}kt=r.lens[r.have-1],_=3+(3&f),f>>>=2,d-=2}else if(17===vt){for(zt=_t+3;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,kt=0,_=3+(7&f),f>>>=3,d-=3}else{for(zt=_t+7;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,kt=0,_=11+(127&f),f>>>=7,d-=7}if(r.have+_>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=ft;break}for(;_--;)r.lens[r.have++]=kt}}if(r.mode===ft)break;if(0===r.lens[256]){e.msg="invalid code -- missing end-of-block",r.mode=ft;break}if(r.lenbits=9,St={bits:r.lenbits},xt=k(S,r.lens,0,r.nlen,r.lencode,0,r.work,St),r.lenbits=St.bits,xt){e.msg="invalid literal/lengths set",r.mode=ft;break}if(r.distbits=6,r.distcode=r.distdyn,St={bits:r.distbits},xt=k(z,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,St),r.distbits=St.bits,xt){e.msg="invalid distances set",r.mode=ft;break}if(r.mode=rt,t===A)break e;case rt:r.mode=nt;case nt:if(u>=6&&h>=258){e.next_out=o,e.avail_out=h,e.next_in=s,e.avail_in=u,r.hold=f,r.bits=d,y(e,m),o=e.next_out,a=e.output,h=e.avail_out,s=e.next_in,i=e.input,u=e.avail_in,f=r.hold,d=r.bits,r.mode===X&&(r.back=-1);break}for(r.back=0;Et=r.lencode[f&(1<>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<>bt)],_t=Et>>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=bt+_t);){if(0===u)break e;u--,f+=i[s++]<>>=bt,d-=bt,r.back+=bt}if(f>>>=_t,d-=_t,r.back+=_t,r.length=vt,0===gt){r.mode=ut;break}if(32>){r.back=-1,r.mode=X;break}if(64>){e.msg="invalid literal/length code",r.mode=ft;break}r.extra=15>,r.mode=it;case it:if(r.extra){for(zt=r.extra;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=r.extra,d-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=at;case at:for(;Et=r.distcode[f&(1<>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<>bt)],_t=Et>>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=bt+_t);){if(0===u)break e;u--,f+=i[s++]<>>=bt,d-=bt,r.back+=bt}if(f>>>=_t,d-=_t,r.back+=_t,64>){e.msg="invalid distance code",r.mode=ft;break}r.offset=vt,r.extra=15>,r.mode=st;case st:if(r.extra){for(zt=r.extra;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=r.extra,d-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=ft;break}r.mode=ot;case ot:if(0===h)break e;if(_=m-h,r.offset>_){if(_=r.offset-_,_>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=ft;break}_>r.wnext?(_-=r.wnext,g=r.wsize-_):g=r.wnext-_,_>r.length&&(_=r.length),mt=r.window}else mt=a,g=o-r.offset,_=r.length;_>h&&(_=h),h-=_,r.length-=_;do a[o++]=mt[g++];while(--_);0===r.length&&(r.mode=nt);break;case ut:if(0===h)break e;a[o++]=r.length,h--,r.mode=nt;break;case ht:if(r.wrap){for(;32>d;){if(0===u)break e;u--,f|=i[s++]<d;){if(0===u)break e;u--,f+=i[s++]<=I;I++)Z[I]=0;for(O=0;p>O;O++)Z[t[r+O]]++;for(T=A,R=i;R>=1&&0===Z[R];R--);if(T>R&&(T=R),0===R)return m[_++]=20971520,m[_++]=20971520,v.bits=1,0;for(B=1;R>B&&0===Z[B];B++);for(B>T&&(T=B),N=1,I=1;i>=I;I++)if(N<<=1,N-=Z[I],0>N)return-1;if(N>0&&(e===o||1!==R))return-1;for(W[1]=0,I=1;i>I;I++)W[I+1]=W[I]+Z[I];for(O=0;p>O;O++)0!==t[r+O]&&(g[W[t[r+O]]++]=O);if(e===o?(L=M=g,S=19):e===u?(L=l,j-=257,M=c,H-=257,S=256):(L=f,M=d,S=-1),U=0,O=0,I=B,x=_,D=T,F=0,y=-1,P=1<a||e===h&&P>s)return 1;for(;;){z=I-F,g[O]S?(E=M[H+g[O]],C=L[j+g[O]]):(E=96,C=0),b=1<>F)+w]=z<<24|E<<16|C|0;while(0!==w);for(b=1<>=1;if(0!==b?(U&=b-1,U+=b):U=0,O++,0===--Z[I]){if(I===R)break;I=t[r+g[O]]}if(I>T&&(U&k)!==y){for(0===F&&(F=T),x+=B,D=I-F,N=1<D+F&&(N-=Z[D+F],!(0>=N));)D++,N<<=1;if(P+=1<a||e===h&&P>s)return 1;y=U&k,m[y]=T<<24|D<<16|x-_|0}}return 0!==U&&(m[x+U]=I-F<<24|64<<16|0),v.bits=T,0}},{"../utils/common":62}],72:[function(e,t,r){"use strict";t.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],73:[function(e,t,r){"use strict";function n(e){for(var t=e.length;--t>=0;)e[t]=0}function i(e,t,r,n,i){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=e&&e.length}function a(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function s(e){return 256>e?ut[e]:ut[256+(e>>>7)]}function o(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function u(e,t,r){e.bi_valid>V-r?(e.bi_buf|=t<>V-e.bi_valid,e.bi_valid+=r-V):(e.bi_buf|=t<>>=1,r<<=1;while(--t>0);return r>>>1}function c(e){16===e.bi_valid?(o(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}function f(e,t){var r,n,i,a,s,o,u=t.dyn_tree,h=t.max_code,l=t.stat_desc.static_tree,c=t.stat_desc.has_stree,f=t.stat_desc.extra_bits,d=t.stat_desc.extra_base,p=t.stat_desc.max_length,m=0; +for(a=0;X>=a;a++)e.bl_count[a]=0;for(u[2*e.heap[e.heap_max]+1]=0,r=e.heap_max+1;Y>r;r++)n=e.heap[r],a=u[2*u[2*n+1]+1]+1,a>p&&(a=p,m++),u[2*n+1]=a,n>h||(e.bl_count[a]++,s=0,n>=d&&(s=f[n-d]),o=u[2*n],e.opt_len+=o*(a+s),c&&(e.static_len+=o*(l[2*n+1]+s)));if(0!==m){do{for(a=p-1;0===e.bl_count[a];)a--;e.bl_count[a]--,e.bl_count[a+1]+=2,e.bl_count[p]--,m-=2}while(m>0);for(a=p;0!==a;a--)for(n=e.bl_count[a];0!==n;)i=e.heap[--r],i>h||(u[2*i+1]!==a&&(e.opt_len+=(a-u[2*i+1])*u[2*i],u[2*i+1]=a),n--)}}function d(e,t,r){var n,i,a=new Array(X+1),s=0;for(n=1;X>=n;n++)a[n]=s=s+r[n-1]<<1;for(i=0;t>=i;i++){var o=e[2*i+1];0!==o&&(e[2*i]=l(a[o]++,o))}}function p(){var e,t,r,n,a,s=new Array(X+1);for(r=0,n=0;W-1>n;n++)for(lt[n]=r,e=0;e<1<n;n++)for(ct[n]=a,e=0;e<1<>=7;G>n;n++)for(ct[n]=a<<7,e=0;e<1<=t;t++)s[t]=0;for(e=0;143>=e;)st[2*e+1]=8,e++,s[8]++;for(;255>=e;)st[2*e+1]=9,e++,s[9]++;for(;279>=e;)st[2*e+1]=7,e++,s[7]++;for(;287>=e;)st[2*e+1]=8,e++,s[8]++;for(d(st,H+1,s),e=0;G>e;e++)ot[2*e+1]=5,ot[2*e]=l(e,5);ft=new i(st,tt,M+1,H,X),dt=new i(ot,rt,0,G,X),pt=new i(new Array(0),nt,0,K,q)}function m(e){var t;for(t=0;H>t;t++)e.dyn_ltree[2*t]=0;for(t=0;G>t;t++)e.dyn_dtree[2*t]=0;for(t=0;K>t;t++)e.bl_tree[2*t]=0;e.dyn_ltree[2*J]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function _(e){e.bi_valid>8?o(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function g(e,t,r,n){_(e),n&&(o(e,r),o(e,~r)),R.arraySet(e.pending_buf,e.window,t,r,e.pending),e.pending+=r}function v(e,t,r,n){var i=2*t,a=2*r;return e[i]r;r++)0!==a[2*r]?(e.heap[++e.heap_len]=h=r,e.depth[r]=0):a[2*r+1]=0;for(;e.heap_len<2;)i=e.heap[++e.heap_len]=2>h?++h:0,a[2*i]=1,e.depth[i]=0,e.opt_len--,o&&(e.static_len-=s[2*i+1]);for(t.max_code=h,r=e.heap_len>>1;r>=1;r--)b(e,a,r);i=u;do r=e.heap[1],e.heap[1]=e.heap[e.heap_len--],b(e,a,1),n=e.heap[1],e.heap[--e.heap_max]=r,e.heap[--e.heap_max]=n,a[2*i]=a[2*r]+a[2*n],e.depth[i]=(e.depth[r]>=e.depth[n]?e.depth[r]:e.depth[n])+1,a[2*r+1]=a[2*n+1]=i,e.heap[1]=i++,b(e,a,1);while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],f(e,t),d(a,h,e.bl_count)}function k(e,t,r){var n,i,a=-1,s=t[1],o=0,u=7,h=4;for(0===s&&(u=138,h=3),t[2*(r+1)+1]=65535,n=0;r>=n;n++)i=s,s=t[2*(n+1)+1],++oo?e.bl_tree[2*i]+=o:0!==i?(i!==a&&e.bl_tree[2*i]++,e.bl_tree[2*Q]++):10>=o?e.bl_tree[2*$]++:e.bl_tree[2*et]++,o=0,a=i,0===s?(u=138,h=3):i===s?(u=6,h=3):(u=7,h=4))}function x(e,t,r){var n,i,a=-1,s=t[1],o=0,l=7,c=4;for(0===s&&(l=138,c=3),n=0;r>=n;n++)if(i=s,s=t[2*(n+1)+1],!(++oo){do h(e,i,e.bl_tree);while(0!==--o)}else 0!==i?(i!==a&&(h(e,i,e.bl_tree),o--),h(e,Q,e.bl_tree),u(e,o-3,2)):10>=o?(h(e,$,e.bl_tree),u(e,o-3,3)):(h(e,et,e.bl_tree),u(e,o-11,7));o=0,a=i,0===s?(l=138,c=3):i===s?(l=6,c=3):(l=7,c=4)}}function S(e){var t;for(k(e,e.dyn_ltree,e.l_desc.max_code),k(e,e.dyn_dtree,e.d_desc.max_code),y(e,e.bl_desc),t=K-1;t>=3&&0===e.bl_tree[2*it[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}function z(e,t,r,n){var i;for(u(e,t-257,5),u(e,r-1,5),u(e,n-4,4),i=0;n>i;i++)u(e,e.bl_tree[2*it[i]+1],3);x(e,e.dyn_ltree,t-1),x(e,e.dyn_dtree,r-1)}function E(e){var t,r=4093624447;for(t=0;31>=t;t++,r>>>=1)if(1&r&&0!==e.dyn_ltree[2*t])return D;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return F;for(t=32;M>t;t++)if(0!==e.dyn_ltree[2*t])return F;return D}function C(e){mt||(p(),mt=!0),e.l_desc=new a(e.dyn_ltree,ft),e.d_desc=new a(e.dyn_dtree,dt),e.bl_desc=new a(e.bl_tree,pt),e.bi_buf=0,e.bi_valid=0,m(e)}function A(e,t,r,n){u(e,(P<<1)+(n?1:0),3),g(e,t,r,!0)}function I(e){u(e,U<<1,3),h(e,J,st),c(e)}function O(e,t,r,n){var i,a,s=0;e.level>0?(e.strm.data_type===N&&(e.strm.data_type=E(e)),y(e,e.l_desc),y(e,e.d_desc),s=S(e),i=e.opt_len+3+7>>>3,a=e.static_len+3+7>>>3,i>=a&&(i=a)):i=a=r+5,i>=r+4&&-1!==t?A(e,t,r,n):e.strategy===T||a===i?(u(e,(U<<1)+(n?1:0),3),w(e,st,ot)):(u(e,(L<<1)+(n?1:0),3),z(e,e.l_desc.max_code+1,e.d_desc.max_code+1,s+1),w(e,e.dyn_ltree,e.dyn_dtree)),m(e),n&&_(e)}function B(e,t,r){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&r,e.last_lit++,0===t?e.dyn_ltree[2*r]++:(e.matches++,t--,e.dyn_ltree[2*(ht[r]+M+1)]++,e.dyn_dtree[2*s(t)]++),e.last_lit===e.lit_bufsize-1}var R=e("../utils/common"),T=4,D=0,F=1,N=2,P=0,U=1,L=2,j=3,Z=258,W=29,M=256,H=M+1+W,G=30,K=19,Y=2*H+1,X=15,V=16,q=7,J=256,Q=16,$=17,et=18,tt=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],rt=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],nt=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],it=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],at=512,st=new Array(2*(H+2));n(st);var ot=new Array(2*G);n(ot);var ut=new Array(at);n(ut);var ht=new Array(Z-j+1);n(ht);var lt=new Array(W);n(lt);var ct=new Array(G);n(ct);var ft,dt,pt,mt=!1;r._tr_init=C,r._tr_stored_block=A,r._tr_flush_block=O,r._tr_tally=B,r._tr_align=I},{"../utils/common":62}],74:[function(e,t,r){"use strict";function n(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}t.exports=n},{}]},{},[10])(10)}),!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t.JSZip=e()}}(function(){return function e(t,r,n){function i(s,o){if(!r[s]){if(!t[s]){var u="function"==typeof require&&require;if(!o&&u)return u(s,!0);if(a)return a(s,!0);var h=new Error("Cannot find module '"+s+"'");throw h.code="MODULE_NOT_FOUND",h}var l=r[s]={exports:{}};t[s][0].call(l.exports,function(e){var r=t[s][1][e];return i(r?r:e)},l,l.exports,e,t,r,n)}return r[s].exports}for(var a="function"==typeof require&&require,s=0;sc?e[c++]:0,i=f>c?e[c++]:0):(t=e.charCodeAt(c++),r=f>c?e.charCodeAt(c++):0,i=f>c?e.charCodeAt(c++):0),s=t>>2,o=(3&t)<<4|r>>4,u=d>1?(15&r)<<2|i>>6:64,h=d>2?63&i:64,l.push(a.charAt(s)+a.charAt(o)+a.charAt(u)+a.charAt(h));return l.join("")},r.decode=function(e){var t,r,n,s,o,u,h,l=0,c=0,f="data:";if(e.substr(0,f.length)===f)throw new Error("Invalid base64 input, it looks like a data url.");e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");var d=3*e.length/4;if(e.charAt(e.length-1)===a.charAt(64)&&d--,e.charAt(e.length-2)===a.charAt(64)&&d--,d%1!==0)throw new Error("Invalid base64 input, bad content length.");var p;for(p=i.uint8array?new Uint8Array(0|d):new Array(0|d);l>4,r=(15&o)<<4|u>>2,n=(3&u)<<6|h,p[c++]=t,64!==u&&(p[c++]=r),64!==h&&(p[c++]=n);return p}},{"./support":30,"./utils":32}],2:[function(e,t,r){"use strict";function n(e,t,r,n,i){this.compressedSize=e,this.uncompressedSize=t,this.crc32=r,this.compression=n,this.compressedContent=i}var i=e("./external"),a=e("./stream/DataWorker"),s=e("./stream/DataLengthProbe"),o=e("./stream/Crc32Probe"),s=e("./stream/DataLengthProbe");n.prototype={getContentWorker:function(){var e=new a(i.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new s("data_length")),t=this;return e.on("end",function(){if(this.streamInfo.data_length!==t.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),e},getCompressedWorker:function(){return new a(i.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},n.createWorkerFrom=function(e,t,r){return e.pipe(new o).pipe(new s("uncompressedSize")).pipe(t.compressWorker(r)).pipe(new s("compressedSize")).withStreamInfo("compression",t)},t.exports=n},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(e,t,r){"use strict";var n=e("./stream/GenericWorker");r.STORE={magic:"\x00\x00",compressWorker:function(e){return new n("STORE compression")},uncompressWorker:function(){return new n("STORE decompression")}},r.DEFLATE=e("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(e,t,r){"use strict";function n(){for(var e,t=[],r=0;256>r;r++){e=r;for(var n=0;8>n;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}function i(e,t,r,n){var i=o,a=n+r;e^=-1;for(var s=n;a>s;s++)e=e>>>8^i[255&(e^t[s])];return-1^e}function a(e,t,r,n){var i=o,a=n+r;e^=-1;for(var s=n;a>s;s++)e=e>>>8^i[255&(e^t.charCodeAt(s))];return-1^e}var s=e("./utils"),o=n();t.exports=function(e,t){if("undefined"==typeof e||!e.length)return 0;var r="string"!==s.getTypeOf(e);return r?i(0|t,e,e.length,0):a(0|t,e,e.length,0)}},{"./utils":32}],5:[function(e,t,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(e,t,r){"use strict";var n=null;n="undefined"!=typeof Promise?Promise:e("lie"),t.exports={Promise:n}},{lie:58}],7:[function(e,t,r){"use strict";function n(e,t){o.call(this,"FlateWorker/"+e),this._pako=null,this._pakoAction=e,this._pakoOptions=t,this.meta={}}var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,a=e("pako"),s=e("./utils"),o=e("./stream/GenericWorker"),u=i?"uint8array":"array";r.magic="\b\x00",s.inherits(n,o),n.prototype.processChunk=function(e){this.meta=e.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(u,e.data),!1)},n.prototype.flush=function(){o.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},n.prototype.cleanUp=function(){o.prototype.cleanUp.call(this),this._pako=null},n.prototype._createPako=function(){this._pako=new a[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(e){return new n("Deflate",e)},r.uncompressWorker=function(){return new n("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:59}],8:[function(e,t,r){"use strict";function n(e,t,r,n){a.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=t,this.zipPlatform=r,this.encodeFileName=n,this.streamFiles=e,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}var i=e("../utils"),a=e("../stream/GenericWorker"),s=e("../utf8"),o=e("../crc32"),u=e("../signature"),h=function(e,t){var r,n="";for(r=0;t>r;r++)n+=String.fromCharCode(255&e),e>>>=8;return n},l=function(e,t){var r=e;return e||(r=t?16893:33204),(65535&r)<<16},c=function(e,t){return 63&(e||0)},f=function(e,t,r,n,a,f){var d,p,m=e.file,_=e.compression,g=f!==s.utf8encode,v=i.transformTo("string",f(m.name)),b=i.transformTo("string",s.utf8encode(m.name)),w=m.comment,y=i.transformTo("string",f(w)),k=i.transformTo("string",s.utf8encode(w)),x=b.length!==m.name.length,S=k.length!==w.length,z="",E="",C="",A=m.dir,I=m.date,O={crc32:0,compressedSize:0,uncompressedSize:0};t&&!r||(O.crc32=e.crc32,O.compressedSize=e.compressedSize,O.uncompressedSize=e.uncompressedSize);var B=0;t&&(B|=8),g||!x&&!S||(B|=2048);var R=0,T=0;A&&(R|=16),"UNIX"===a?(T=798,R|=l(m.unixPermissions,A)):(T=20,R|=c(m.dosPermissions,A)),d=I.getUTCHours(),d<<=6,d|=I.getUTCMinutes(),d<<=5,d|=I.getUTCSeconds()/2,p=I.getUTCFullYear()-1980,p<<=4,p|=I.getUTCMonth()+1,p<<=5,p|=I.getUTCDate(),x&&(E=h(1,1)+h(o(v),4)+b,z+="up"+h(E.length,2)+E),S&&(C=h(1,1)+h(o(y),4)+k,z+="uc"+h(C.length,2)+C);var D="";D+="\n\x00",D+=h(B,2),D+=_.magic,D+=h(d,2),D+=h(p,2),D+=h(O.crc32,4),D+=h(O.compressedSize,4),D+=h(O.uncompressedSize,4),D+=h(v.length,2),D+=h(z.length,2);var F=u.LOCAL_FILE_HEADER+D+v+z,N=u.CENTRAL_FILE_HEADER+h(T,2)+D+h(y.length,2)+"\x00\x00\x00\x00"+h(R,4)+h(n,4)+v+z+y;return{fileRecord:F,dirRecord:N}},d=function(e,t,r,n,a){var s="",o=i.transformTo("string",a(n));return s=u.CENTRAL_DIRECTORY_END+"\x00\x00\x00\x00"+h(e,2)+h(e,2)+h(t,4)+h(r,4)+h(o.length,2)+o},p=function(e){var t="";return t=u.DATA_DESCRIPTOR+h(e.crc32,4)+h(e.compressedSize,4)+h(e.uncompressedSize,4)};i.inherits(n,a),n.prototype.push=function(e){var t=e.meta.percent||0,r=this.entriesCount,n=this._sources.length;this.accumulate?this.contentBuffer.push(e):(this.bytesWritten+=e.data.length,a.prototype.push.call(this,{data:e.data,meta:{currentFile:this.currentFile,percent:r?(t+100*(r-n-1))/r:100}}))},n.prototype.openedSource=function(e){this.currentSourceOffset=this.bytesWritten,this.currentFile=e.file.name;var t=this.streamFiles&&!e.file.dir;if(t){var r=f(e,t,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},n.prototype.closedSource=function(e){this.accumulate=!1;var t=this.streamFiles&&!e.file.dir,r=f(e,t,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),t)this.push({data:p(e),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},n.prototype.flush=function(){for(var e=this.bytesWritten,t=0;t0?e.substring(0,t):""},_=function(e){return"/"!==e.slice(-1)&&(e+="/"),e},g=function(e,t){return t="undefined"!=typeof t?t:u.createFolders,e=_(e),this.files[e]||p.call(this,e,null,{dir:!0,createFolders:t}),this.files[e]},v={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(e){var t,r,n;for(t in this.files)this.files.hasOwnProperty(t)&&(n=this.files[t],r=t.slice(this.root.length,t.length),r&&t.slice(0,this.root.length)===this.root&&e(r,n))},filter:function(e){var t=[];return this.forEach(function(r,n){e(r,n)&&t.push(n)}),t},file:function(e,t,r){if(1===arguments.length){if(n(e)){var i=e;return this.filter(function(e,t){return!t.dir&&i.test(e)})}var a=this.files[this.root+e];return a&&!a.dir?a:null}return e=this.root+e,p.call(this,e,t,r),this},folder:function(e){if(!e)return this;if(n(e))return this.filter(function(t,r){return r.dir&&e.test(t)});var t=this.root+e,r=g.call(this,t),i=this.clone();return i.root=r.name,i},remove:function(e){e=this.root+e;var t=this.files[e];if(t||("/"!==e.slice(-1)&&(e+="/"),t=this.files[e]),t&&!t.dir)delete this.files[e];else for(var r=this.filter(function(t,r){return r.name.slice(0,e.length)===e}),n=0;n=0;--a)if(this.data[a]===t&&this.data[a+1]===r&&this.data[a+2]===n&&this.data[a+3]===i)return a-this.zero;return-1},n.prototype.readAndCheckSignature=function(e){var t=e.charCodeAt(0),r=e.charCodeAt(1),n=e.charCodeAt(2),i=e.charCodeAt(3),a=this.readData(4);return t===a[0]&&r===a[1]&&n===a[2]&&i===a[3]},n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return[];var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],18:[function(e,t,r){"use strict";function n(e){this.data=e,this.length=e.length,this.index=0,this.zero=0}var i=e("../utils");n.prototype={checkOffset:function(e){this.checkIndex(this.index+e)},checkIndex:function(e){if(this.lengthe)throw new Error("End of data reached (data length = "+this.length+", asked index = "+e+"). Corrupted zip ?")},setIndex:function(e){this.checkIndex(e),this.index=e},skip:function(e){this.setIndex(this.index+e)},byteAt:function(e){},readInt:function(e){var t,r=0;for(this.checkOffset(e),t=this.index+e-1;t>=this.index;t--)r=(r<<8)+this.byteAt(t);return this.index+=e,r},readString:function(e){return i.transformTo("string",this.readData(e))},readData:function(e){},lastIndexOfSignature:function(e){},readAndCheckSignature:function(e){},readDate:function(){var e=this.readInt(4);return new Date(Date.UTC((e>>25&127)+1980,(e>>21&15)-1,e>>16&31,e>>11&31,e>>5&63,(31&e)<<1))}},t.exports=n},{"../utils":32}],19:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./Uint8ArrayReader"),a=e("../utils");a.inherits(n,i),n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./DataReader"),a=e("../utils");a.inherits(n,i),n.prototype.byteAt=function(e){return this.data.charCodeAt(this.zero+e)},n.prototype.lastIndexOfSignature=function(e){return this.data.lastIndexOf(e)-this.zero},n.prototype.readAndCheckSignature=function(e){var t=this.readData(4);return e===t},n.prototype.readData=function(e){this.checkOffset(e);var t=this.data.slice(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./DataReader":18}],21:[function(e,t,r){"use strict";function n(e){i.call(this,e)}var i=e("./ArrayReader"),a=e("../utils");a.inherits(n,i),n.prototype.readData=function(e){if(this.checkOffset(e),0===e)return new Uint8Array(0);var t=this.data.subarray(this.zero+this.index,this.zero+this.index+e);return this.index+=e,t},t.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(e,t,r){"use strict";var n=e("../utils"),i=e("../support"),a=e("./ArrayReader"),s=e("./StringReader"),o=e("./NodeBufferReader"),u=e("./Uint8ArrayReader");t.exports=function(e){var t=n.getTypeOf(e);return n.checkSupport(t),"string"!==t||i.uint8array?"nodebuffer"===t?new o(e):i.uint8array?new u(n.transformTo("uint8array",e)):new a(n.transformTo("array",e)):new s(e)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(e,t,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(e,t,r){"use strict";function n(e){i.call(this,"ConvertWorker to "+e),this.destType=e}var i=e("./GenericWorker"),a=e("../utils");a.inherits(n,i),n.prototype.processChunk=function(e){this.push({data:a.transformTo(this.destType,e.data),meta:e.meta})},t.exports=n},{"../utils":32,"./GenericWorker":28}],25:[function(e,t,r){"use strict";function n(){i.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}var i=e("./GenericWorker"),a=e("../crc32"),s=e("../utils");s.inherits(n,i),n.prototype.processChunk=function(e){this.streamInfo.crc32=a(e.data,this.streamInfo.crc32||0),this.push(e)},t.exports=n},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(e,t,r){"use strict";function n(e){a.call(this,"DataLengthProbe for "+e),this.propName=e,this.withStreamInfo(e,0)}var i=e("../utils"),a=e("./GenericWorker");i.inherits(n,a),n.prototype.processChunk=function(e){if(e){var t=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=t+e.data.length}a.prototype.processChunk.call(this,e)},t.exports=n},{"../utils":32,"./GenericWorker":28}],27:[function(e,t,r){"use strict";function n(e){a.call(this,"DataWorker");var t=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,e.then(function(e){t.dataIsReady=!0,t.data=e,t.max=e&&e.length||0,t.type=i.getTypeOf(e),t.isPaused||t._tickAndRepeat()},function(e){t.error(e)})}var i=e("../utils"),a=e("./GenericWorker"),s=16384;i.inherits(n,a),n.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this.data=null},n.prototype.resume=function(){return!!a.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,i.delay(this._tickAndRepeat,[],this)),!0)},n.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(i.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},n.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var e=s,t=null,r=Math.min(this.max,this.index+e);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,r);break;case"uint8array":t=this.data.subarray(this.index,r);break;case"array":case"nodebuffer":t=this.data.slice(this.index,r)}return this.index=r,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},t.exports=n},{"../utils":32,"./GenericWorker":28}],28:[function(e,t,r){"use strict";function n(e){this.name=e||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}n.prototype={push:function(e){this.emit("data",e)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(e){this.emit("error",e)}return!0},error:function(e){return!this.isFinished&&(this.isPaused?this.generatedError=e:(this.isFinished=!0,this.emit("error",e),this.previous&&this.previous.error(e),this.cleanUp()),!0)},on:function(e,t){return this._listeners[e].push(t),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(e,t){if(this._listeners[e])for(var r=0;r "+e:e}},t.exports=n},{}],29:[function(e,t,r){"use strict";function n(e,t,r){switch(e){case"blob":return o.newBlob(o.transformTo("arraybuffer",t),r);case"base64":return l.encode(t);default:return o.transformTo(e,t)}}function i(e,t){var r,n=0,i=null,a=0;for(r=0;rl;l++)h[l]=l>=252?6:l>=248?5:l>=240?4:l>=224?3:l>=192?2:1;h[254]=h[254]=1;var c=function(e){var t,r,n,i,a,o=e.length,u=0;for(i=0;o>i;i++)r=e.charCodeAt(i),55296===(64512&r)&&o>i+1&&(n=e.charCodeAt(i+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),u+=128>r?1:2048>r?2:65536>r?3:4;for(t=s.uint8array?new Uint8Array(u):new Array(u),a=0,i=0;u>a;i++)r=e.charCodeAt(i),55296===(64512&r)&&o>i+1&&(n=e.charCodeAt(i+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),i++)),128>r?t[a++]=r:2048>r?(t[a++]=192|r>>>6,t[a++]=128|63&r):65536>r?(t[a++]=224|r>>>12,t[a++]=128|r>>>6&63,t[a++]=128|63&r):(t[a++]=240|r>>>18,t[a++]=128|r>>>12&63,t[a++]=128|r>>>6&63,t[a++]=128|63&r);return t},f=function(e,t){var r;for(t=t||e.length,t>e.length&&(t=e.length),r=t-1;r>=0&&128===(192&e[r]);)r--;return 0>r?t:0===r?t:r+h[e[r]]>t?r:t},d=function(e){var t,r,n,i,s=e.length,o=new Array(2*s);for(r=0,t=0;s>t;)if(n=e[t++],128>n)o[r++]=n;else if(i=h[n],i>4)o[r++]=65533,t+=i-1;else{for(n&=2===i?31:3===i?15:7;i>1&&s>t;)n=n<<6|63&e[t++],i--;i>1?o[r++]=65533:65536>n?o[r++]=n:(n-=65536,o[r++]=55296|n>>10&1023,o[r++]=56320|1023&n)}return o.length!==r&&(o.subarray?o=o.subarray(0,r):o.length=r),a.applyFromCharCode(o)};r.utf8encode=function(e){return s.nodebuffer?o.newBufferFrom(e,"utf-8"):c(e)},r.utf8decode=function(e){return s.nodebuffer?a.transformTo("nodebuffer",e).toString("utf-8"):(e=a.transformTo(s.uint8array?"uint8array":"array",e),d(e))},a.inherits(n,u),n.prototype.processChunk=function(e){var t=a.transformTo(s.uint8array?"uint8array":"array",e.data);if(this.leftOver&&this.leftOver.length){if(s.uint8array){var n=t;t=new Uint8Array(n.length+this.leftOver.length),t.set(this.leftOver,0),t.set(n,this.leftOver.length)}else t=this.leftOver.concat(t);this.leftOver=null}var i=f(t),o=t;i!==t.length&&(s.uint8array?(o=t.subarray(0,i),this.leftOver=t.subarray(i,t.length)):(o=t.slice(0,i),this.leftOver=t.slice(i,t.length))),this.push({data:r.utf8decode(o),meta:e.meta})},n.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:r.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},r.Utf8DecodeWorker=n,a.inherits(i,u),i.prototype.processChunk=function(e){this.push({data:r.utf8encode(e.data),meta:e.meta})},r.Utf8EncodeWorker=i},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(e,t,r){"use strict";function n(e){var t=null;return t=u.uint8array?new Uint8Array(e.length):new Array(e.length),a(e,t)}function i(e){return e}function a(e,t){for(var r=0;r1;)try{return d.stringifyByChunk(e,n,t)}catch(a){t=Math.floor(t/2)}return d.stringifyByChar(e)}function o(e,t){for(var r=0;r=a)return String.fromCharCode.apply(null,e);for(;a>i;)"array"===t||"nodebuffer"===t?n.push(String.fromCharCode.apply(null,e.slice(i,Math.min(i+r,a)))):n.push(String.fromCharCode.apply(null,e.subarray(i,Math.min(i+r,a)))),i+=r;return n.join("")},stringifyByChar:function(e){for(var t="",r=0;rt?"0":"")+t.toString(16).toUpperCase();return n},r.delay=function(e,t,r){c(function(){e.apply(r||null,t||[])})},r.inherits=function(e,t){var r=function(){};r.prototype=t.prototype,e.prototype=new r},r.extend=function(){var e,t,r={};for(e=0;ei;)e=this.reader.readInt(2),t=this.reader.readInt(4),r=this.reader.readData(t),this.zip64ExtensibleData[e]={id:e,length:t,value:r}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var e,t;for(e=0;ee){var t=!this.isSignature(0,s.LOCAL_FILE_HEADER);throw t?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory")}this.reader.setIndex(e);var r=e;if(this.checkSignature(s.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===a.MAX_VALUE_16BITS||this.diskWithCentralDirStart===a.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===a.MAX_VALUE_16BITS||this.centralDirRecords===a.MAX_VALUE_16BITS||this.centralDirSize===a.MAX_VALUE_32BITS||this.centralDirOffset===a.MAX_VALUE_32BITS){if(this.zip64=!0,e=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),0>e)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(e),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,s.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var n=this.centralDirOffset+this.centralDirSize;this.zip64&&(n+=20,n+=12+this.zip64EndOfCentralSize);var i=r-n;if(i>0)this.isSignature(r,s.CENTRAL_FILE_HEADER)||(this.reader.zero=i);else if(0>i)throw new Error("Corrupted zip: missing "+Math.abs(i)+" bytes.")},prepareReader:function(e){this.reader=i(e)},load:function(e){this.prepareReader(e),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},t.exports=n},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(e,t,r){"use strict";function n(e,t){this.options=e,this.loadOptions=t}var i=e("./reader/readerFor"),a=e("./utils"),s=e("./compressedObject"),o=e("./crc32"),u=e("./utf8"),h=e("./compressions"),l=e("./support"),c=0,f=3,d=function(e){for(var t in h)if(h.hasOwnProperty(t)&&h[t].magic===e)return h[t];return null};n.prototype={isEncrypted:function(){return 1===(1&this.bitFlag)},useUTF8:function(){return 2048===(2048&this.bitFlag)},readLocalPart:function(e){var t,r;if(e.skip(22),this.fileNameLength=e.readInt(2),r=e.readInt(2),this.fileName=e.readData(this.fileNameLength),e.skip(r),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(t=d(this.compressionMethod),null===t)throw new Error("Corrupted zip : compression "+a.pretty(this.compressionMethod)+" unknown (inner file : "+a.transformTo("string",this.fileName)+")");this.decompressed=new s(this.compressedSize,this.uncompressedSize,this.crc32,t,e.readData(this.compressedSize))},readCentralPart:function(e){this.versionMadeBy=e.readInt(2),e.skip(2),this.bitFlag=e.readInt(2),this.compressionMethod=e.readString(2),this.date=e.readDate(),this.crc32=e.readInt(4),this.compressedSize=e.readInt(4),this.uncompressedSize=e.readInt(4);var t=e.readInt(2);if(this.extraFieldsLength=e.readInt(2),this.fileCommentLength=e.readInt(2),this.diskNumberStart=e.readInt(2),this.internalFileAttributes=e.readInt(2),this.externalFileAttributes=e.readInt(4),this.localHeaderOffset=e.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");e.skip(t),this.readExtraFields(e),this.parseZIP64ExtraField(e),this.fileComment=e.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var e=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),e===c&&(this.dosPermissions=63&this.externalFileAttributes),e===f&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(e){if(this.extraFields[1]){var t=i(this.extraFields[1].value);this.uncompressedSize===a.MAX_VALUE_32BITS&&(this.uncompressedSize=t.readInt(8)),this.compressedSize===a.MAX_VALUE_32BITS&&(this.compressedSize=t.readInt(8)),this.localHeaderOffset===a.MAX_VALUE_32BITS&&(this.localHeaderOffset=t.readInt(8)),this.diskNumberStart===a.MAX_VALUE_32BITS&&(this.diskNumberStart=t.readInt(4))}},readExtraFields:function(e){var t,r,n,i=e.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});e.indexr;)t.push(arguments[r++]);return _[++m]=function(){o("function"==typeof e?e:Function(e),t)},n(m),m},d=function(e){delete _[e]},"process"==e("./_cof")(c)?n=function(e){c.nextTick(s(v,e,1))}:p?(i=new p,a=i.port2,i.port1.onmessage=b,n=s(a.postMessage,a,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(n=function(e){l.postMessage(e+"","*")},l.addEventListener("message",b,!1)):n=g in h("script")?function(e){u.appendChild(h("script"))[g]=function(){u.removeChild(this),v.call(e)}}:function(e){setTimeout(s(v,e,1),0)}),t.exports={set:f,clear:d}},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(e,t,r){var n=e("./_is-object");t.exports=function(e,t){if(!n(e))return e;var r,i;if(t&&"function"==typeof(r=e.toString)&&!n(i=r.call(e)))return i;if("function"==typeof(r=e.valueOf)&&!n(i=r.call(e)))return i;if(!t&&"function"==typeof(r=e.toString)&&!n(i=r.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},{"./_is-object":51}],56:[function(e,t,r){var n=e("./_export"),i=e("./_task");n(n.G+n.B,{setImmediate:i.set,clearImmediate:i.clear})},{"./_export":44,"./_task":54}],57:[function(e,t,r){(function(e){"use strict";function r(){l=!0;for(var e,t,r=c.length;r;){for(t=c,c=[],e=-1;++e0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var r=o.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(r!==m)throw new Error(l[r]);if(t.header&&o.deflateSetHeader(this.strm,t.header),t.dictionary){var i;if(i="string"==typeof t.dictionary?h.string2buf(t.dictionary):"[object ArrayBuffer]"===f.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,r=o.deflateSetDictionary(this.strm,i),r!==m)throw new Error(l[r]);this._dict_set=!0}}function i(e,t){var r=new n(t);if(r.push(e,!0),r.err)throw r.msg||l[r.err];return r.result}function a(e,t){return t=t||{},t.raw=!0,i(e,t)}function s(e,t){return t=t||{},t.gzip=!0,i(e,t)}var o=e("./zlib/deflate"),u=e("./utils/common"),h=e("./utils/strings"),l=e("./zlib/messages"),c=e("./zlib/zstream"),f=Object.prototype.toString,d=0,p=4,m=0,_=1,g=2,v=-1,b=0,w=8;n.prototype.push=function(e,t){var r,n,i=this.strm,a=this.options.chunkSize;if(this.ended)return!1;n=t===~~t?t:t===!0?p:d,"string"==typeof e?i.input=h.string2buf(e):"[object ArrayBuffer]"===f.call(e)?i.input=new Uint8Array(e):i.input=e,i.next_in=0,i.avail_in=i.input.length;do{if(0===i.avail_out&&(i.output=new u.Buf8(a),i.next_out=0,i.avail_out=a),r=o.deflate(i,n),r!==_&&r!==m)return this.onEnd(r),this.ended=!0,!1;0!==i.avail_out&&(0!==i.avail_in||n!==p&&n!==g)||("string"===this.options.to?this.onData(h.buf2binstring(u.shrinkBuf(i.output,i.next_out))):this.onData(u.shrinkBuf(i.output,i.next_out)))}while((i.avail_in>0||0===i.avail_out)&&r!==_);return n===p?(r=o.deflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===m):n!==g||(this.onEnd(m),i.avail_out=0,!0)},n.prototype.onData=function(e){this.chunks.push(e)},n.prototype.onEnd=function(e){e===m&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=u.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg +},r.Deflate=n,r.deflate=i,r.deflateRaw=a,r.gzip=s},{"./utils/common":62,"./utils/strings":63,"./zlib/deflate":67,"./zlib/messages":72,"./zlib/zstream":74}],61:[function(e,t,r){"use strict";function n(e){if(!(this instanceof n))return new n(e);this.options=o.assign({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&0===(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new c,this.strm.avail_out=0;var r=s.inflateInit2(this.strm,t.windowBits);if(r!==h.Z_OK)throw new Error(l[r]);this.header=new f,s.inflateGetHeader(this.strm,this.header)}function i(e,t){var r=new n(t);if(r.push(e,!0),r.err)throw r.msg||l[r.err];return r.result}function a(e,t){return t=t||{},t.raw=!0,i(e,t)}var s=e("./zlib/inflate"),o=e("./utils/common"),u=e("./utils/strings"),h=e("./zlib/constants"),l=e("./zlib/messages"),c=e("./zlib/zstream"),f=e("./zlib/gzheader"),d=Object.prototype.toString;n.prototype.push=function(e,t){var r,n,i,a,l,c,f=this.strm,p=this.options.chunkSize,m=this.options.dictionary,_=!1;if(this.ended)return!1;n=t===~~t?t:t===!0?h.Z_FINISH:h.Z_NO_FLUSH,"string"==typeof e?f.input=u.binstring2buf(e):"[object ArrayBuffer]"===d.call(e)?f.input=new Uint8Array(e):f.input=e,f.next_in=0,f.avail_in=f.input.length;do{if(0===f.avail_out&&(f.output=new o.Buf8(p),f.next_out=0,f.avail_out=p),r=s.inflate(f,h.Z_NO_FLUSH),r===h.Z_NEED_DICT&&m&&(c="string"==typeof m?u.string2buf(m):"[object ArrayBuffer]"===d.call(m)?new Uint8Array(m):m,r=s.inflateSetDictionary(this.strm,c)),r===h.Z_BUF_ERROR&&_===!0&&(r=h.Z_OK,_=!1),r!==h.Z_STREAM_END&&r!==h.Z_OK)return this.onEnd(r),this.ended=!0,!1;f.next_out&&(0!==f.avail_out&&r!==h.Z_STREAM_END&&(0!==f.avail_in||n!==h.Z_FINISH&&n!==h.Z_SYNC_FLUSH)||("string"===this.options.to?(i=u.utf8border(f.output,f.next_out),a=f.next_out-i,l=u.buf2string(f.output,i),f.next_out=a,f.avail_out=p-a,a&&o.arraySet(f.output,f.output,i,a,0),this.onData(l)):this.onData(o.shrinkBuf(f.output,f.next_out)))),0===f.avail_in&&0===f.avail_out&&(_=!0)}while((f.avail_in>0||0===f.avail_out)&&r!==h.Z_STREAM_END);return r===h.Z_STREAM_END&&(n=h.Z_FINISH),n===h.Z_FINISH?(r=s.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===h.Z_OK):n!==h.Z_SYNC_FLUSH||(this.onEnd(h.Z_OK),f.avail_out=0,!0)},n.prototype.onData=function(e){this.chunks.push(e)},n.prototype.onEnd=function(e){e===h.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg},r.Inflate=n,r.inflate=i,r.inflateRaw=a,r.ungzip=i},{"./utils/common":62,"./utils/strings":63,"./zlib/constants":65,"./zlib/gzheader":68,"./zlib/inflate":70,"./zlib/messages":72,"./zlib/zstream":74}],62:[function(e,t,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;r.assign=function(e){for(var t=Array.prototype.slice.call(arguments,1);t.length;){var r=t.shift();if(r){if("object"!=typeof r)throw new TypeError(r+"must be non-object");for(var n in r)r.hasOwnProperty(n)&&(e[n]=r[n])}}return e},r.shrinkBuf=function(e,t){return e.length===t?e:e.subarray?e.subarray(0,t):(e.length=t,e)};var i={arraySet:function(e,t,r,n,i){if(t.subarray&&e.subarray)return void e.set(t.subarray(r,r+n),i);for(var a=0;n>a;a++)e[i+a]=t[r+a]},flattenChunks:function(e){var t,r,n,i,a,s;for(n=0,t=0,r=e.length;r>t;t++)n+=e[t].length;for(s=new Uint8Array(n),i=0,t=0,r=e.length;r>t;t++)a=e[t],s.set(a,i),i+=a.length;return s}},a={arraySet:function(e,t,r,n,i){for(var a=0;n>a;a++)e[i+a]=t[r+a]},flattenChunks:function(e){return[].concat.apply([],e)}};r.setTyped=function(e){e?(r.Buf8=Uint8Array,r.Buf16=Uint16Array,r.Buf32=Int32Array,r.assign(r,i)):(r.Buf8=Array,r.Buf16=Array,r.Buf32=Array,r.assign(r,a))},r.setTyped(n)},{}],63:[function(e,t,r){"use strict";function n(e,t){if(65537>t&&(e.subarray&&s||!e.subarray&&a))return String.fromCharCode.apply(null,i.shrinkBuf(e,t));for(var r="",n=0;t>n;n++)r+=String.fromCharCode(e[n]);return r}var i=e("./common"),a=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(o){a=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(o){s=!1}for(var u=new i.Buf8(256),h=0;256>h;h++)u[h]=h>=252?6:h>=248?5:h>=240?4:h>=224?3:h>=192?2:1;u[254]=u[254]=1,r.string2buf=function(e){var t,r,n,a,s,o=e.length,u=0;for(a=0;o>a;a++)r=e.charCodeAt(a),55296===(64512&r)&&o>a+1&&(n=e.charCodeAt(a+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),a++)),u+=128>r?1:2048>r?2:65536>r?3:4;for(t=new i.Buf8(u),s=0,a=0;u>s;a++)r=e.charCodeAt(a),55296===(64512&r)&&o>a+1&&(n=e.charCodeAt(a+1),56320===(64512&n)&&(r=65536+(r-55296<<10)+(n-56320),a++)),128>r?t[s++]=r:2048>r?(t[s++]=192|r>>>6,t[s++]=128|63&r):65536>r?(t[s++]=224|r>>>12,t[s++]=128|r>>>6&63,t[s++]=128|63&r):(t[s++]=240|r>>>18,t[s++]=128|r>>>12&63,t[s++]=128|r>>>6&63,t[s++]=128|63&r);return t},r.buf2binstring=function(e){return n(e,e.length)},r.binstring2buf=function(e){for(var t=new i.Buf8(e.length),r=0,n=t.length;n>r;r++)t[r]=e.charCodeAt(r);return t},r.buf2string=function(e,t){var r,i,a,s,o=t||e.length,h=new Array(2*o);for(i=0,r=0;o>r;)if(a=e[r++],128>a)h[i++]=a;else if(s=u[a],s>4)h[i++]=65533,r+=s-1;else{for(a&=2===s?31:3===s?15:7;s>1&&o>r;)a=a<<6|63&e[r++],s--;s>1?h[i++]=65533:65536>a?h[i++]=a:(a-=65536,h[i++]=55296|a>>10&1023,h[i++]=56320|1023&a)}return n(h,i)},r.utf8border=function(e,t){var r;for(t=t||e.length,t>e.length&&(t=e.length),r=t-1;r>=0&&128===(192&e[r]);)r--;return 0>r?t:0===r?t:r+u[e[r]]>t?r:t}},{"./common":62}],64:[function(e,t,r){"use strict";function n(e,t,r,n){for(var i=65535&e|0,a=e>>>16&65535|0,s=0;0!==r;){s=r>2e3?2e3:r,r-=s;do i=i+t[n++]|0,a=a+i|0;while(--s);i%=65521,a%=65521}return i|a<<16|0}t.exports=n},{}],65:[function(e,t,r){"use strict";t.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],66:[function(e,t,r){"use strict";function n(){for(var e,t=[],r=0;256>r;r++){e=r;for(var n=0;8>n;n++)e=1&e?3988292384^e>>>1:e>>>1;t[r]=e}return t}function i(e,t,r,n){var i=a,s=n+r;e^=-1;for(var o=n;s>o;o++)e=e>>>8^i[255&(e^t[o])];return-1^e}var a=n();t.exports=i},{}],67:[function(e,t,r){"use strict";function n(e,t){return e.msg=D[t],t}function i(e){return(e<<1)-(e>4?9:0)}function a(e){for(var t=e.length;--t>=0;)e[t]=0}function s(e){var t=e.state,r=t.pending;r>e.avail_out&&(r=e.avail_out),0!==r&&(O.arraySet(e.output,t.pending_buf,t.pending_out,r,e.next_out),e.next_out+=r,t.pending_out+=r,e.total_out+=r,e.avail_out-=r,t.pending-=r,0===t.pending&&(t.pending_out=0))}function o(e,t){B._tr_flush_block(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,s(e.strm)}function u(e,t){e.pending_buf[e.pending++]=t}function h(e,t){e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t}function l(e,t,r,n){var i=e.avail_in;return i>n&&(i=n),0===i?0:(e.avail_in-=i,O.arraySet(t,e.input,e.next_in,i,r),1===e.state.wrap?e.adler=R(e.adler,t,i,r):2===e.state.wrap&&(e.adler=T(e.adler,t,i,r)),e.next_in+=i,e.total_in+=i,i)}function c(e,t){var r,n,i=e.max_chain_length,a=e.strstart,s=e.prev_length,o=e.nice_match,u=e.strstart>e.w_size-ct?e.strstart-(e.w_size-ct):0,h=e.window,l=e.w_mask,c=e.prev,f=e.strstart+lt,d=h[a+s-1],p=h[a+s];e.prev_length>=e.good_match&&(i>>=2),o>e.lookahead&&(o=e.lookahead);do if(r=t,h[r+s]===p&&h[r+s-1]===d&&h[r]===h[a]&&h[++r]===h[a+1]){a+=2,r++;do;while(h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&h[++a]===h[++r]&&f>a);if(n=lt-(f-a),a=f-lt,n>s){if(e.match_start=t,s=n,n>=o)break;d=h[a+s-1],p=h[a+s]}}while((t=c[t&l])>u&&0!==--i);return s<=e.lookahead?s:e.lookahead}function f(e){var t,r,n,i,a,s=e.w_size;do{if(i=e.window_size-e.lookahead-e.strstart,e.strstart>=s+(s-ct)){O.arraySet(e.window,e.window,s,s,0),e.match_start-=s,e.strstart-=s,e.block_start-=s,r=e.hash_size,t=r;do n=e.head[--t],e.head[t]=n>=s?n-s:0;while(--r);r=s,t=r;do n=e.prev[--t],e.prev[t]=n>=s?n-s:0;while(--r);i+=s}if(0===e.strm.avail_in)break;if(r=l(e.strm,e.window,e.strstart+e.lookahead,i),e.lookahead+=r,e.lookahead+e.insert>=ht)for(a=e.strstart-e.insert,e.ins_h=e.window[a],e.ins_h=(e.ins_h<e.pending_buf_size-5&&(r=e.pending_buf_size-5);;){if(e.lookahead<=1){if(f(e),0===e.lookahead&&t===F)return wt;if(0===e.lookahead)break}e.strstart+=e.lookahead,e.lookahead=0;var n=e.block_start+r;if((0===e.strstart||e.strstart>=n)&&(e.lookahead=e.strstart-n,e.strstart=n,o(e,!1),0===e.strm.avail_out))return wt;if(e.strstart-e.block_start>=e.w_size-ct&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.strstart>e.block_start&&(o(e,!1),0===e.strm.avail_out)?wt:wt}function p(e,t){for(var r,n;;){if(e.lookahead=ht&&(e.ins_h=(e.ins_h<=ht)if(n=B._tr_tally(e,e.strstart-e.match_start,e.match_length-ht),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=ht){e.match_length--;do e.strstart++,e.ins_h=(e.ins_h<=ht&&(e.ins_h=(e.ins_h<4096)&&(e.match_length=ht-1)),e.prev_length>=ht&&e.match_length<=e.prev_length){i=e.strstart+e.lookahead-ht,n=B._tr_tally(e,e.strstart-1-e.prev_match,e.prev_length-ht),e.lookahead-=e.prev_length-1,e.prev_length-=2;do++e.strstart<=i&&(e.ins_h=(e.ins_h<=ht&&e.strstart>0&&(i=e.strstart-1,n=s[i],n===s[++i]&&n===s[++i]&&n===s[++i])){a=e.strstart+lt;do;while(n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&n===s[++i]&&a>i);e.match_length=lt-(a-i),e.match_length>e.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=ht?(r=B._tr_tally(e,1,e.match_length-ht),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(r=B._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),r&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.last_lit&&(o(e,!1),0===e.strm.avail_out)?wt:yt}function g(e,t){for(var r;;){if(0===e.lookahead&&(f(e),0===e.lookahead)){if(t===F)return wt;break}if(e.match_length=0,r=B._tr_tally(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,r&&(o(e,!1),0===e.strm.avail_out))return wt}return e.insert=0,t===U?(o(e,!0),0===e.strm.avail_out?kt:xt):e.last_lit&&(o(e,!1),0===e.strm.avail_out)?wt:yt}function v(e,t,r,n,i){this.good_length=e,this.max_lazy=t,this.nice_length=r,this.max_chain=n,this.func=i}function b(e){e.window_size=2*e.w_size,a(e.head),e.max_lazy_match=I[e.level].max_lazy,e.good_match=I[e.level].good_length,e.nice_match=I[e.level].nice_length,e.max_chain_length=I[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=ht-1,e.match_available=0,e.ins_h=0}function w(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Q,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new O.Buf16(2*ot),this.dyn_dtree=new O.Buf16(2*(2*at+1)),this.bl_tree=new O.Buf16(2*(2*st+1)),a(this.dyn_ltree),a(this.dyn_dtree),a(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new O.Buf16(ut+1),this.heap=new O.Buf16(2*it+1),a(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new O.Buf16(2*it+1),a(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function y(e){var t;return e&&e.state?(e.total_in=e.total_out=0,e.data_type=J,t=e.state,t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=t.wrap?dt:vt,e.adler=2===t.wrap?0:1,t.last_flush=F,B._tr_init(t),j):n(e,W)}function k(e){var t=y(e);return t===j&&b(e.state),t}function x(e,t){return e&&e.state?2!==e.state.wrap?W:(e.state.gzhead=t,j):W}function S(e,t,r,i,a,s){if(!e)return W;var o=1;if(t===G&&(t=6),0>i?(o=0,i=-i):i>15&&(o=2,i-=16),1>a||a>$||r!==Q||8>i||i>15||0>t||t>9||0>s||s>V)return n(e,W);8===i&&(i=9);var u=new w;return e.state=u,u.strm=e,u.wrap=o,u.gzhead=null,u.w_bits=i,u.w_size=1<L||0>t)return e?n(e,W):W;if(o=e.state,!e.output||!e.input&&0!==e.avail_in||o.status===bt&&t!==U)return n(e,0===e.avail_out?H:W);if(o.strm=e,r=o.last_flush,o.last_flush=t,o.status===dt)if(2===o.wrap)e.adler=0,u(o,31),u(o,139),u(o,8),o.gzhead?(u(o,(o.gzhead.text?1:0)+(o.gzhead.hcrc?2:0)+(o.gzhead.extra?4:0)+(o.gzhead.name?8:0)+(o.gzhead.comment?16:0)),u(o,255&o.gzhead.time),u(o,o.gzhead.time>>8&255),u(o,o.gzhead.time>>16&255),u(o,o.gzhead.time>>24&255),u(o,9===o.level?2:o.strategy>=Y||o.level<2?4:0),u(o,255&o.gzhead.os),o.gzhead.extra&&o.gzhead.extra.length&&(u(o,255&o.gzhead.extra.length),u(o,o.gzhead.extra.length>>8&255)),o.gzhead.hcrc&&(e.adler=T(e.adler,o.pending_buf,o.pending,0)),o.gzindex=0,o.status=pt):(u(o,0),u(o,0),u(o,0),u(o,0),u(o,0),u(o,9===o.level?2:o.strategy>=Y||o.level<2?4:0),u(o,St),o.status=vt);else{var f=Q+(o.w_bits-8<<4)<<8,d=-1;d=o.strategy>=Y||o.level<2?0:o.level<6?1:6===o.level?2:3,f|=d<<6,0!==o.strstart&&(f|=ft),f+=31-f%31,o.status=vt,h(o,f),0!==o.strstart&&(h(o,e.adler>>>16),h(o,65535&e.adler)),e.adler=1}if(o.status===pt)if(o.gzhead.extra){for(l=o.pending;o.gzindex<(65535&o.gzhead.extra.length)&&(o.pending!==o.pending_buf_size||(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending!==o.pending_buf_size));)u(o,255&o.gzhead.extra[o.gzindex]),o.gzindex++;o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),o.gzindex===o.gzhead.extra.length&&(o.gzindex=0,o.status=mt)}else o.status=mt;if(o.status===mt)if(o.gzhead.name){l=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindexl&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),0===c&&(o.gzindex=0,o.status=_t)}else o.status=_t;if(o.status===_t)if(o.gzhead.comment){l=o.pending;do{if(o.pending===o.pending_buf_size&&(o.gzhead.hcrc&&o.pending>l&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),s(e),l=o.pending,o.pending===o.pending_buf_size)){c=1;break}c=o.gzindexl&&(e.adler=T(e.adler,o.pending_buf,o.pending-l,l)),0===c&&(o.status=gt)}else o.status=gt;if(o.status===gt&&(o.gzhead.hcrc?(o.pending+2>o.pending_buf_size&&s(e),o.pending+2<=o.pending_buf_size&&(u(o,255&e.adler),u(o,e.adler>>8&255),e.adler=0,o.status=vt)):o.status=vt),0!==o.pending){if(s(e),0===e.avail_out)return o.last_flush=-1,j}else if(0===e.avail_in&&i(t)<=i(r)&&t!==U)return n(e,H);if(o.status===bt&&0!==e.avail_in)return n(e,H);if(0!==e.avail_in||0!==o.lookahead||t!==F&&o.status!==bt){var p=o.strategy===Y?g(o,t):o.strategy===X?_(o,t):I[o.level].func(o,t);if(p!==kt&&p!==xt||(o.status=bt),p===wt||p===kt)return 0===e.avail_out&&(o.last_flush=-1),j;if(p===yt&&(t===N?B._tr_align(o):t!==L&&(B._tr_stored_block(o,0,0,!1),t===P&&(a(o.head),0===o.lookahead&&(o.strstart=0,o.block_start=0,o.insert=0))),s(e),0===e.avail_out))return o.last_flush=-1,j}return t!==U?j:o.wrap<=0?Z:(2===o.wrap?(u(o,255&e.adler),u(o,e.adler>>8&255),u(o,e.adler>>16&255),u(o,e.adler>>24&255),u(o,255&e.total_in),u(o,e.total_in>>8&255),u(o,e.total_in>>16&255),u(o,e.total_in>>24&255)):(h(o,e.adler>>>16),h(o,65535&e.adler)),s(e),o.wrap>0&&(o.wrap=-o.wrap),0!==o.pending?j:Z)}function C(e){var t;return e&&e.state?(t=e.state.status,t!==dt&&t!==pt&&t!==mt&&t!==_t&&t!==gt&&t!==vt&&t!==bt?n(e,W):(e.state=null,t===vt?n(e,M):j)):W}function A(e,t){var r,n,i,s,o,u,h,l,c=t.length;if(!e||!e.state)return W;if(r=e.state,s=r.wrap,2===s||1===s&&r.status!==dt||r.lookahead)return W;for(1===s&&(e.adler=R(e.adler,t,c,0)),r.wrap=0,c>=r.w_size&&(0===s&&(a(r.head),r.strstart=0,r.block_start=0,r.insert=0),l=new O.Buf8(r.w_size),O.arraySet(l,t,c-r.w_size,r.w_size,0),t=l,c=r.w_size),o=e.avail_in,u=e.next_in,h=e.input,e.avail_in=c,e.next_in=0,e.input=t,f(r);r.lookahead>=ht;){n=r.strstart,i=r.lookahead-(ht-1);do r.ins_h=(r.ins_h<_&&(m+=C[a++]<<_,_+=8,m+=C[a++]<<_,_+=8),y=g[m&b];t:for(;;){if(k=y>>>24,m>>>=k,_-=k,k=y>>>16&255,0===k)A[o++]=65535&y;else{if(!(16&k)){if(0===(64&k)){y=g[(65535&y)+(m&(1<_&&(m+=C[a++]<<_,_+=8),x+=m&(1<>>=k,_-=k),15>_&&(m+=C[a++]<<_,_+=8,m+=C[a++]<<_,_+=8),y=v[m&w];r:for(;;){if(k=y>>>24,m>>>=k,_-=k,k=y>>>16&255,!(16&k)){if(0===(64&k)){y=v[(65535&y)+(m&(1<_&&(m+=C[a++]<<_,_+=8,k>_&&(m+=C[a++]<<_,_+=8)),S+=m&(1<l){e.msg="invalid distance too far back",r.mode=n;break e}if(m>>>=k,_-=k,k=o-u,S>k){if(k=S-k,k>f&&r.sane){e.msg="invalid distance too far back",r.mode=n;break e}if(z=0,E=p,0===d){if(z+=c-k,x>k){x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}}else if(k>d){if(z+=c+d-k,k-=d,x>k){x-=k;do A[o++]=p[z++];while(--k);if(z=0,x>d){k=d,x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}}}else if(z+=d-k,x>k){x-=k;do A[o++]=p[z++];while(--k);z=o-S,E=A}for(;x>2;)A[o++]=E[z++],A[o++]=E[z++],A[o++]=E[z++],x-=3;x&&(A[o++]=E[z++],x>1&&(A[o++]=E[z++]))}else{z=o-S;do A[o++]=A[z++],A[o++]=A[z++],A[o++]=A[z++],x-=3;while(x>2);x&&(A[o++]=A[z++],x>1&&(A[o++]=A[z++]))}break}}break}}while(s>a&&h>o);x=_>>3,a-=x,_-=x<<3,m&=(1<<_)-1,e.next_in=a,e.next_out=o,e.avail_in=s>a?5+(s-a):5-(a-s),e.avail_out=h>o?257+(h-o):257-(o-h),r.hold=m,r.bits=_}},{}],70:[function(e,t,r){"use strict";function n(e){return(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24)}function i(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new v.Buf16(320),this.work=new v.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(e){var t;return e&&e.state?(t=e.state,e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=P,t.last=0,t.havedict=0,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new v.Buf32(mt),t.distcode=t.distdyn=new v.Buf32(_t),t.sane=1,t.back=-1,I):R}function s(e){var t;return e&&e.state?(t=e.state,t.wsize=0,t.whave=0,t.wnext=0,a(e)):R}function o(e,t){var r,n;return e&&e.state?(n=e.state,0>t?(r=0,t=-t):(r=(t>>4)+1,48>t&&(t&=15)),t&&(8>t||t>15)?R:(null!==n.window&&n.wbits!==t&&(n.window=null),n.wrap=r,n.wbits=t,s(e))):R}function u(e,t){var r,n;return e?(n=new i,e.state=n,n.window=null,r=o(e,t),r!==I&&(e.state=null),r):R}function h(e){return u(e,vt)}function l(e){if(bt){var t;for(_=new v.Buf32(512),g=new v.Buf32(32),t=0;144>t;)e.lens[t++]=8;for(;256>t;)e.lens[t++]=9;for(;280>t;)e.lens[t++]=7;for(;288>t;)e.lens[t++]=8;for(k(S,e.lens,0,288,_,0,e.work,{bits:9}),t=0;32>t;)e.lens[t++]=5;k(z,e.lens,0,32,g,0,e.work,{bits:5}),bt=!1}e.lencode=_,e.lenbits=9,e.distcode=g,e.distbits=5}function c(e,t,r,n){var i,a=e.state;return null===a.window&&(a.wsize=1<=a.wsize?(v.arraySet(a.window,t,r-a.wsize,a.wsize,0),a.wnext=0,a.whave=a.wsize):(i=a.wsize-a.wnext,i>n&&(i=n),v.arraySet(a.window,t,r-n,i,a.wnext),n-=i,n?(v.arraySet(a.window,t,r-n,n,0),a.wnext=n,a.whave=a.wsize):(a.wnext+=i,a.wnext===a.wsize&&(a.wnext=0),a.whaved;){if(0===u)break e;u--,f+=i[s++]<>>8&255,r.check=w(r.check,Ct,2,0),f=0,d=0,r.mode=U;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&f)<<8)+(f>>8))%31){e.msg="incorrect header check",r.mode=ft;break}if((15&f)!==N){e.msg="unknown compression method",r.mode=ft;break}if(f>>>=4,d-=4,kt=(15&f)+8,0===r.wbits)r.wbits=kt;else if(kt>r.wbits){e.msg="invalid window size",r.mode=ft;break}r.dmax=1<d;){if(0===u)break e;u--,f+=i[s++]<>8&1),512&r.flags&&(Ct[0]=255&f,Ct[1]=f>>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0,r.mode=L;case L:for(;32>d;){if(0===u)break e;u--,f+=i[s++]<>>8&255,Ct[2]=f>>>16&255,Ct[3]=f>>>24&255,r.check=w(r.check,Ct,4,0)),f=0,d=0,r.mode=j;case j:for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>8),512&r.flags&&(Ct[0]=255&f,Ct[1]=f>>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0,r.mode=Z;case Z:if(1024&r.flags){for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>>8&255,r.check=w(r.check,Ct,2,0)),f=0,d=0}else r.head&&(r.head.extra=null);r.mode=W;case W:if(1024&r.flags&&(_=r.length,_>u&&(_=u),_&&(r.head&&(kt=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),v.arraySet(r.head.extra,i,s,_,kt)),512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,r.length-=_),r.length))break e;r.length=0,r.mode=M;case M:if(2048&r.flags){if(0===u)break e;_=0;do kt=i[s+_++],r.head&&kt&&r.length<65536&&(r.head.name+=String.fromCharCode(kt));while(kt&&u>_);if(512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,kt)break e}else r.head&&(r.head.name=null);r.length=0,r.mode=H;case H:if(4096&r.flags){if(0===u)break e;_=0;do kt=i[s+_++],r.head&&kt&&r.length<65536&&(r.head.comment+=String.fromCharCode(kt));while(kt&&u>_);if(512&r.flags&&(r.check=w(r.check,i,_,s)),u-=_,s+=_,kt)break e}else r.head&&(r.head.comment=null);r.mode=G;case G:if(512&r.flags){for(;16>d;){if(0===u)break e;u--,f+=i[s++]<>9&1,r.head.done=!0),e.adler=r.check=0,r.mode=X;break;case K:for(;32>d;){if(0===u)break e;u--,f+=i[s++]<>>=7&d,d-=7&d,r.mode=ht;break}for(;3>d;){if(0===u)break e;u--,f+=i[s++]<>>=1,d-=1,3&f){case 0:r.mode=q;break;case 1:if(l(r),r.mode=rt,t===A){f>>>=2,d-=2;break e}break;case 2:r.mode=$;break;case 3:e.msg="invalid block type",r.mode=ft}f>>>=2,d-=2;break;case q:for(f>>>=7&d,d-=7&d;32>d;){if(0===u)break e;u--,f+=i[s++]<>>16^65535)){e.msg="invalid stored block lengths",r.mode=ft;break}if(r.length=65535&f,f=0,d=0,r.mode=J,t===A)break e;case J:r.mode=Q;case Q:if(_=r.length){if(_>u&&(_=u),_>h&&(_=h),0===_)break e;v.arraySet(a,i,s,_,o),u-=_,s+=_,h-=_,o+=_,r.length-=_;break}r.mode=X;break;case $:for(;14>d;){if(0===u)break e;u--,f+=i[s++]<>>=5,d-=5,r.ndist=(31&f)+1,f>>>=5,d-=5,r.ncode=(15&f)+4,f>>>=4,d-=4,r.nlen>286||r.ndist>30){e.msg="too many length or distance symbols",r.mode=ft;break}r.have=0,r.mode=et;case et:for(;r.haved;){if(0===u)break e;u--,f+=i[s++]<>>=3,d-=3}for(;r.have<19;)r.lens[At[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,St={bits:r.lenbits},xt=k(x,r.lens,0,19,r.lencode,0,r.work,St),r.lenbits=St.bits,xt){e.msg="invalid code lengths set",r.mode=ft;break}r.have=0,r.mode=tt;case tt:for(;r.have>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<vt)f>>>=_t,d-=_t,r.lens[r.have++]=vt;else{if(16===vt){for(zt=_t+2;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,0===r.have){e.msg="invalid bit length repeat",r.mode=ft;break}kt=r.lens[r.have-1],_=3+(3&f),f>>>=2,d-=2}else if(17===vt){for(zt=_t+3;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,kt=0,_=3+(7&f),f>>>=3,d-=3}else{for(zt=_t+7;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=_t,d-=_t,kt=0,_=11+(127&f),f>>>=7,d-=7}if(r.have+_>r.nlen+r.ndist){e.msg="invalid bit length repeat",r.mode=ft;break}for(;_--;)r.lens[r.have++]=kt}}if(r.mode===ft)break;if(0===r.lens[256]){e.msg="invalid code -- missing end-of-block",r.mode=ft;break}if(r.lenbits=9,St={bits:r.lenbits},xt=k(S,r.lens,0,r.nlen,r.lencode,0,r.work,St),r.lenbits=St.bits,xt){e.msg="invalid literal/lengths set",r.mode=ft;break}if(r.distbits=6,r.distcode=r.distdyn,St={bits:r.distbits},xt=k(z,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,St),r.distbits=St.bits,xt){e.msg="invalid distances set",r.mode=ft;break}if(r.mode=rt,t===A)break e;case rt:r.mode=nt;case nt:if(u>=6&&h>=258){e.next_out=o,e.avail_out=h,e.next_in=s,e.avail_in=u,r.hold=f,r.bits=d,y(e,m),o=e.next_out,a=e.output,h=e.avail_out,s=e.next_in,i=e.input,u=e.avail_in,f=r.hold,d=r.bits,r.mode===X&&(r.back=-1);break}for(r.back=0;Et=r.lencode[f&(1<>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<>bt)],_t=Et>>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=bt+_t);){if(0===u)break e;u--,f+=i[s++]<>>=bt,d-=bt,r.back+=bt}if(f>>>=_t,d-=_t,r.back+=_t,r.length=vt,0===gt){r.mode=ut;break}if(32>){r.back=-1,r.mode=X;break}if(64>){e.msg="invalid literal/length code",r.mode=ft;break}r.extra=15>,r.mode=it;case it:if(r.extra){for(zt=r.extra;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=r.extra,d-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=at;case at:for(;Et=r.distcode[f&(1<>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=_t);){if(0===u)break e;u--,f+=i[s++]<>bt)],_t=Et>>>24,gt=Et>>>16&255,vt=65535&Et,!(d>=bt+_t);){if(0===u)break e; +u--,f+=i[s++]<>>=bt,d-=bt,r.back+=bt}if(f>>>=_t,d-=_t,r.back+=_t,64>){e.msg="invalid distance code",r.mode=ft;break}r.offset=vt,r.extra=15>,r.mode=st;case st:if(r.extra){for(zt=r.extra;zt>d;){if(0===u)break e;u--,f+=i[s++]<>>=r.extra,d-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){e.msg="invalid distance too far back",r.mode=ft;break}r.mode=ot;case ot:if(0===h)break e;if(_=m-h,r.offset>_){if(_=r.offset-_,_>r.whave&&r.sane){e.msg="invalid distance too far back",r.mode=ft;break}_>r.wnext?(_-=r.wnext,g=r.wsize-_):g=r.wnext-_,_>r.length&&(_=r.length),mt=r.window}else mt=a,g=o-r.offset,_=r.length;_>h&&(_=h),h-=_,r.length-=_;do a[o++]=mt[g++];while(--_);0===r.length&&(r.mode=nt);break;case ut:if(0===h)break e;a[o++]=r.length,h--,r.mode=nt;break;case ht:if(r.wrap){for(;32>d;){if(0===u)break e;u--,f|=i[s++]<d;){if(0===u)break e;u--,f+=i[s++]<=I;I++)Z[I]=0;for(O=0;p>O;O++)Z[t[r+O]]++;for(T=A,R=i;R>=1&&0===Z[R];R--);if(T>R&&(T=R),0===R)return m[_++]=20971520,m[_++]=20971520,v.bits=1,0;for(B=1;R>B&&0===Z[B];B++);for(B>T&&(T=B),N=1,I=1;i>=I;I++)if(N<<=1,N-=Z[I],0>N)return-1;if(N>0&&(e===o||1!==R))return-1;for(W[1]=0,I=1;i>I;I++)W[I+1]=W[I]+Z[I];for(O=0;p>O;O++)0!==t[r+O]&&(g[W[t[r+O]]++]=O);if(e===o?(L=M=g,S=19):e===u?(L=l,j-=257,M=c,H-=257,S=256):(L=f,M=d,S=-1),U=0,O=0,I=B,x=_,D=T,F=0,y=-1,P=1<a||e===h&&P>s)return 1;for(;;){z=I-F,g[O]S?(E=M[H+g[O]],C=L[j+g[O]]):(E=96,C=0),b=1<>F)+w]=z<<24|E<<16|C|0;while(0!==w);for(b=1<>=1;if(0!==b?(U&=b-1,U+=b):U=0,O++,0===--Z[I]){if(I===R)break;I=t[r+g[O]]}if(I>T&&(U&k)!==y){for(0===F&&(F=T),x+=B,D=I-F,N=1<D+F&&(N-=Z[D+F],!(0>=N));)D++,N<<=1;if(P+=1<a||e===h&&P>s)return 1;y=U&k,m[y]=T<<24|D<<16|x-_|0}}return 0!==U&&(m[x+U]=I-F<<24|64<<16|0),v.bits=T,0}},{"../utils/common":62}],72:[function(e,t,r){"use strict";t.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],73:[function(e,t,r){"use strict";function n(e){for(var t=e.length;--t>=0;)e[t]=0}function i(e,t,r,n,i){this.static_tree=e,this.extra_bits=t,this.extra_base=r,this.elems=n,this.max_length=i,this.has_stree=e&&e.length}function a(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}function s(e){return 256>e?ut[e]:ut[256+(e>>>7)]}function o(e,t){e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255}function u(e,t,r){e.bi_valid>V-r?(e.bi_buf|=t<>V-e.bi_valid,e.bi_valid+=r-V):(e.bi_buf|=t<>>=1,r<<=1;while(--t>0);return r>>>1}function c(e){16===e.bi_valid?(o(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}function f(e,t){var r,n,i,a,s,o,u=t.dyn_tree,h=t.max_code,l=t.stat_desc.static_tree,c=t.stat_desc.has_stree,f=t.stat_desc.extra_bits,d=t.stat_desc.extra_base,p=t.stat_desc.max_length,m=0;for(a=0;X>=a;a++)e.bl_count[a]=0;for(u[2*e.heap[e.heap_max]+1]=0,r=e.heap_max+1;Y>r;r++)n=e.heap[r],a=u[2*u[2*n+1]+1]+1,a>p&&(a=p,m++),u[2*n+1]=a,n>h||(e.bl_count[a]++,s=0,n>=d&&(s=f[n-d]),o=u[2*n],e.opt_len+=o*(a+s),c&&(e.static_len+=o*(l[2*n+1]+s)));if(0!==m){do{for(a=p-1;0===e.bl_count[a];)a--;e.bl_count[a]--,e.bl_count[a+1]+=2,e.bl_count[p]--,m-=2}while(m>0);for(a=p;0!==a;a--)for(n=e.bl_count[a];0!==n;)i=e.heap[--r],i>h||(u[2*i+1]!==a&&(e.opt_len+=(a-u[2*i+1])*u[2*i],u[2*i+1]=a),n--)}}function d(e,t,r){var n,i,a=new Array(X+1),s=0;for(n=1;X>=n;n++)a[n]=s=s+r[n-1]<<1;for(i=0;t>=i;i++){var o=e[2*i+1];0!==o&&(e[2*i]=l(a[o]++,o))}}function p(){var e,t,r,n,a,s=new Array(X+1);for(r=0,n=0;W-1>n;n++)for(lt[n]=r,e=0;e<1<n;n++)for(ct[n]=a,e=0;e<1<>=7;G>n;n++)for(ct[n]=a<<7,e=0;e<1<=t;t++)s[t]=0;for(e=0;143>=e;)st[2*e+1]=8,e++,s[8]++;for(;255>=e;)st[2*e+1]=9,e++,s[9]++;for(;279>=e;)st[2*e+1]=7,e++,s[7]++;for(;287>=e;)st[2*e+1]=8,e++,s[8]++;for(d(st,H+1,s),e=0;G>e;e++)ot[2*e+1]=5,ot[2*e]=l(e,5);ft=new i(st,tt,M+1,H,X),dt=new i(ot,rt,0,G,X),pt=new i(new Array(0),nt,0,K,q)}function m(e){var t;for(t=0;H>t;t++)e.dyn_ltree[2*t]=0;for(t=0;G>t;t++)e.dyn_dtree[2*t]=0;for(t=0;K>t;t++)e.bl_tree[2*t]=0;e.dyn_ltree[2*J]=1,e.opt_len=e.static_len=0,e.last_lit=e.matches=0}function _(e){e.bi_valid>8?o(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0}function g(e,t,r,n){_(e),n&&(o(e,r),o(e,~r)),R.arraySet(e.pending_buf,e.window,t,r,e.pending),e.pending+=r}function v(e,t,r,n){var i=2*t,a=2*r;return e[i]r;r++)0!==a[2*r]?(e.heap[++e.heap_len]=h=r,e.depth[r]=0):a[2*r+1]=0;for(;e.heap_len<2;)i=e.heap[++e.heap_len]=2>h?++h:0,a[2*i]=1,e.depth[i]=0,e.opt_len--,o&&(e.static_len-=s[2*i+1]);for(t.max_code=h,r=e.heap_len>>1;r>=1;r--)b(e,a,r);i=u;do r=e.heap[1],e.heap[1]=e.heap[e.heap_len--],b(e,a,1),n=e.heap[1],e.heap[--e.heap_max]=r,e.heap[--e.heap_max]=n,a[2*i]=a[2*r]+a[2*n],e.depth[i]=(e.depth[r]>=e.depth[n]?e.depth[r]:e.depth[n])+1,a[2*r+1]=a[2*n+1]=i,e.heap[1]=i++,b(e,a,1);while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],f(e,t),d(a,h,e.bl_count)}function k(e,t,r){var n,i,a=-1,s=t[1],o=0,u=7,h=4;for(0===s&&(u=138,h=3),t[2*(r+1)+1]=65535,n=0;r>=n;n++)i=s,s=t[2*(n+1)+1],++oo?e.bl_tree[2*i]+=o:0!==i?(i!==a&&e.bl_tree[2*i]++,e.bl_tree[2*Q]++):10>=o?e.bl_tree[2*$]++:e.bl_tree[2*et]++,o=0,a=i,0===s?(u=138,h=3):i===s?(u=6,h=3):(u=7,h=4))}function x(e,t,r){var n,i,a=-1,s=t[1],o=0,l=7,c=4;for(0===s&&(l=138,c=3),n=0;r>=n;n++)if(i=s,s=t[2*(n+1)+1],!(++oo){do h(e,i,e.bl_tree);while(0!==--o)}else 0!==i?(i!==a&&(h(e,i,e.bl_tree),o--),h(e,Q,e.bl_tree),u(e,o-3,2)):10>=o?(h(e,$,e.bl_tree),u(e,o-3,3)):(h(e,et,e.bl_tree),u(e,o-11,7));o=0,a=i,0===s?(l=138,c=3):i===s?(l=6,c=3):(l=7,c=4)}}function S(e){var t;for(k(e,e.dyn_ltree,e.l_desc.max_code),k(e,e.dyn_dtree,e.d_desc.max_code),y(e,e.bl_desc),t=K-1;t>=3&&0===e.bl_tree[2*it[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t}function z(e,t,r,n){var i;for(u(e,t-257,5),u(e,r-1,5),u(e,n-4,4),i=0;n>i;i++)u(e,e.bl_tree[2*it[i]+1],3);x(e,e.dyn_ltree,t-1),x(e,e.dyn_dtree,r-1)}function E(e){var t,r=4093624447;for(t=0;31>=t;t++,r>>>=1)if(1&r&&0!==e.dyn_ltree[2*t])return D;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return F;for(t=32;M>t;t++)if(0!==e.dyn_ltree[2*t])return F;return D}function C(e){mt||(p(),mt=!0),e.l_desc=new a(e.dyn_ltree,ft),e.d_desc=new a(e.dyn_dtree,dt),e.bl_desc=new a(e.bl_tree,pt),e.bi_buf=0,e.bi_valid=0,m(e)}function A(e,t,r,n){u(e,(P<<1)+(n?1:0),3),g(e,t,r,!0)}function I(e){u(e,U<<1,3),h(e,J,st),c(e)}function O(e,t,r,n){var i,a,s=0;e.level>0?(e.strm.data_type===N&&(e.strm.data_type=E(e)),y(e,e.l_desc),y(e,e.d_desc),s=S(e),i=e.opt_len+3+7>>>3,a=e.static_len+3+7>>>3,i>=a&&(i=a)):i=a=r+5,i>=r+4&&-1!==t?A(e,t,r,n):e.strategy===T||a===i?(u(e,(U<<1)+(n?1:0),3),w(e,st,ot)):(u(e,(L<<1)+(n?1:0),3),z(e,e.l_desc.max_code+1,e.d_desc.max_code+1,s+1),w(e,e.dyn_ltree,e.dyn_dtree)),m(e),n&&_(e)}function B(e,t,r){return e.pending_buf[e.d_buf+2*e.last_lit]=t>>>8&255,e.pending_buf[e.d_buf+2*e.last_lit+1]=255&t,e.pending_buf[e.l_buf+e.last_lit]=255&r,e.last_lit++,0===t?e.dyn_ltree[2*r]++:(e.matches++,t--,e.dyn_ltree[2*(ht[r]+M+1)]++,e.dyn_dtree[2*s(t)]++),e.last_lit===e.lit_bufsize-1}var R=e("../utils/common"),T=4,D=0,F=1,N=2,P=0,U=1,L=2,j=3,Z=258,W=29,M=256,H=M+1+W,G=30,K=19,Y=2*H+1,X=15,V=16,q=7,J=256,Q=16,$=17,et=18,tt=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],rt=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],nt=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],it=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],at=512,st=new Array(2*(H+2));n(st);var ot=new Array(2*G);n(ot);var ut=new Array(at);n(ut);var ht=new Array(Z-j+1);n(ht);var lt=new Array(W);n(lt);var ct=new Array(G);n(ct);var ft,dt,pt,mt=!1;r._tr_init=C,r._tr_stored_block=A,r._tr_flush_block=O,r._tr_tally=B,r._tr_align=I},{"../utils/common":62}],74:[function(e,t,r){"use strict";function n(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}t.exports=n},{}]},{},[10])(10)});var saveAs=saveAs||function(e){"use strict";if(!("undefined"==typeof e||"undefined"!=typeof navigator&&/MSIE [1-9]\./.test(navigator.userAgent))){var t=e.document,r=function(){return e.URL||e.webkitURL||e},n=t.createElementNS("http://www.w3.org/1999/xhtml","a"),i="download"in n,a=function(e){var t=new MouseEvent("click");e.dispatchEvent(t)},s=/constructor/i.test(e.HTMLElement)||e.safari,o=/CriOS\/[\d]+/.test(navigator.userAgent),u=e.setImmediate||e.setTimeout,h=function(e){u(function(){throw e},0)},l="application/octet-stream",c=4e4,f=function(e){var t=function(){"string"==typeof e?r().revokeObjectURL(e):e.remove()};setTimeout(t,c)},d=function(e,t,r){t=[].concat(t);for(var n=t.length;n--;){var i=e["on"+t[n]];if("function"==typeof i)try{i.call(e,r||e)}catch(a){h(a)}}},p=function(e){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e},m=function(t,h,c){c||(t=p(t));var m,_=this,g=t.type,v=g===l,b=function(){d(_,"writestart progress write writeend".split(" "))},w=function(){if((o||v&&s)&&e.FileReader){var n=new FileReader;return n.onloadend=function(){var t=o?n.result:n.result.replace(/^data:[^;]*;/,"data:attachment/file;"),r=e.open(t,"_blank");r||(e.location.href=t),t=void 0,_.readyState=_.DONE,b()},n.readAsDataURL(t),void(_.readyState=_.INIT)}if(m||(m=r().createObjectURL(t)),v)e.location.href=m;else{var i=e.open(m,"_blank");i||(e.location.href=m)}_.readyState=_.DONE,b(),f(m)};return _.readyState=_.INIT,i?(m=r().createObjectURL(t),void u(function(){n.href=m,n.download=h,a(n),b(),f(m),_.readyState=_.DONE},0)):void w()},_=m.prototype,g=function(e,t,r){return new m(e,t||e.name||"download",r)};return"undefined"!=typeof navigator&&navigator.msSaveOrOpenBlob?function(e,t,r){return t=t||e.name||"download",r||(e=p(e)),navigator.msSaveOrOpenBlob(e,t)}:(_.abort=function(){},_.readyState=_.INIT=0,_.WRITING=1,_.DONE=2,_.error=_.onwritestart=_.onprogress=_.onwrite=_.onabort=_.onerror=_.onwriteend=null,g)}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this); \ No newline at end of file diff --git a/js/lib.min_jocw9Tu2.js b/js/lib.min_jocw9Tu2.js new file mode 100644 index 0000000..535c363 --- /dev/null +++ b/js/lib.min_jocw9Tu2.js @@ -0,0 +1,5246 @@ +/** + * 冰雪传奇H5 + * 2022 XX信息科技有限公司 + * + * @author 123456 + * @wx 123456 + * @qq 123456 + */ + +var __reflect=this&&this.__reflect|| +function(e,t,i){ +e.__class__=t, +i?i.push(t):i=[t], +e.__types__=e.__types__?i.concat(e.__types__):i +}, +__extends=this&&this.__extends|| +function(e,t){ +function i(){ +this.constructor=e +} +for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r]); +i.prototype=t.prototype, +e.prototype=new i +}, +__awaiter=this&&this.__awaiter|| +function(e,t,i,r){ +return new(i||(i=Promise))(function(n,o){ +function a(e){ +try{ +l(r.next(e)) +}catch(t){ +o(t) +} +} +function s(e){ +try{ +l(r["throw"](e)) +}catch(t){ +o(t) +} +} +function l(e){ +e.done?n(e.value):new i(function(t){ +t(e.value) +}).then(a,s) +} +l((r=r.apply(e,t||[])).next()) +}) +}, +__generator=this&&this.__generator|| +function(e,t){ +function i(e){ +return function(t){ +return r([e,t]) +} +} +function r(i){ +if(n)throw new TypeError("Generator is already executing."); +for(;l;)try{ +if(n=1,o&&(a=o[2&i[0]?"return":i[0]?"throw":"next"])&&!(a=a.call(o,i[1])).done)return a; +switch(o=0,a&&(i=[0,a.value]),i[0]){ +case 0: +case 1: +a=i; +break; +case 4: +return l.label++, +{ +value:i[1], +done:!1 +}; +case 5: +l.label++, +o=i[1], +i=[0]; +continue; +case 7: +i=l.ops.pop(), +l.trys.pop(); +continue; +default: +if(a=l.trys,!(a=a.length>0&&a[a.length-1])&&(6===i[0]||2===i[0])){ +l=0; +continue +} +if(3===i[0]&&(!a||i[1]>a[0]&&i[1]i;i++)t.push(this.readInt()); +return t +}, +i.prototype.writeInts=function(){ +for(var e=[],t=0;tr;r++){ +var o=i[r]; +this.checkCanClear(o)&&t-this._cache[o]>=e.AHhkf.CLEAR_TIME&&(delete this._cache[o],RES.destroyRes(o)) +} +}, +t.prototype.getSound=function(e){ +var t=RES.getRes(e); +if(t)this._cache[e]&&(this._cache[e]=egret.getTimer()); +else{ +if(-1!=this._loadingCache.indexOf(e))return null; +this._loadingCache.push(e), +RES.getResAsync(e,this.onResourceLoadComplete,this) +} +return t +}, +t.prototype.onResourceLoadComplete=function(e,t){ +var i=this._loadingCache.indexOf(t);-1!=i&&(this._loadingCache.splice(i,1),this._cache[t]=egret.getTimer(),this.loadedPlay(t)) +}, +t.prototype.loadedPlay=function(e){}, +t.prototype.checkCanClear=function(e){ +return!0 +}, +t +}(); +e.BaseSound=t, +__reflect(t.prototype,"app.BaseSound") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function e(){ +this._objs=new Array +} +return e.prototype.pushObj=function(e){ +this._objs.push(e) +}, +e.prototype.popObj=function(){ +return this._objs.length>0?this._objs.pop():null +}, +e.prototype.clear=function(){ +for(;this._objs.length>0;)this._objs.pop() +}, +e.pop=function(t){ +for(var i=[],r=1;r-1?!1:(t.clear&&t.clear(),e._content[i].push(t),!0) +}, +e.clear=function(){ +e._content={} +}, +e.clearClass=function(t,i){ +void 0===i&&(i=null); +for(var r=e._content[t];r&&r.length;){ +var n=r.pop(); +i&&n[i](), +n=null +} +e._content[t]=null, +delete e._content[t] +}, +e.dealFunc=function(t,i){ +var r=e._content[t]; +if(null!=r){ +var n=0, +o=r.length; +for(n;o>n;n++)r[n][i]() +} +}, +e.wipe=function(e){ +if(e)for(var t in e)e.hasOwnProperty(t)&&delete e[t] +}, +e._content={}, +e +}(); +e.ObjectPool=t, +__reflect(t.prototype,"app.ObjectPool") +}(app||(app={})); +var KdbLz; +!function(e){ +var t=function(){ +function e(e,t){ +this.m_ASMapCells=[], +this.m_nMarkTag=0, +this.listener=e, +this.thisObj=this.thisObj +} +return e.prototype.initFromMap=function(e){ +var t=0; +this.m_ASMapCells?t=this.m_ASMapCells.length:this.m_ASMapCells=[], +this.m_nWidth=e.maxX, +this.m_nHeight=e.maxY; +var r=this.m_nWidth*this.m_nHeight; +r>this.m_ASMapCells.length&&(this.m_ASMapCells.length=r); +for(var n=t;r>n;++n)this.m_ASMapCells[n]=new i; +var o,a,s,l; +for(s=0,o=0;ot||t>=this.m_nWidth||0>r||r>=this.m_nHeight)return[]; +if(0>n||n>=this.m_nWidth||0>o||o>=this.m_nHeight)return[]; +var a=this.m_ASMapCells[n*this.m_nHeight+o]; +if(!a||!a.CanNotMove)return[]; +this.reset(t,r); +var s=!1, +l=t, +h=r, +c=this.m_ASMapCells[l*this.m_nHeight+h]; +c.GCost=0, +c.LastX=-1, +c.LastY=-1, +c.X=l, +c.Y=h, +c.MarkTag=this.m_nMarkTag, +c.HCost=10*(Math.abs(n-t)+Math.abs(o-r)); +for(var p,g,u,m;;){ +if(l==n&&h==o){ +s=!0; +break +} +for(c.State!=i.CSCLOSE&&this.closeCell(c),p=0;8>p;++p)g=l+e.NEIGHBORPOS_X_VALUES[p], +u=h+e.NEIGHBORPOS_Y_VALUES[p], +0>g||g>=this.m_nWidth||0>u||u>=this.m_nHeight||(m=this.m_ASMapCells[g*this.m_nHeight+u],m.CanNotMove&&(g==n&&u==o||this.listener.call(this.thisObj,{ +x:g, +y:u +}))&&(m.MarkTag!=this.m_nMarkTag||m.State==i.CSNONE?(m.MarkTag=this.m_nMarkTag,m.LastX=l,m.LastY=h,m.btDir=p,m.GCost=c.GCost+e.AS_MOVECOST[1&p],m.HCost=10*(Math.abs(n-g)+Math.abs(o-u)),this.openCell(m)):m.State==i.CSOPEN&&m.GCost>c.GCost+e.AS_MOVECOST[1&p]&&(m.LastX=l,m.LastY=h,m.btDir=p,m.GCost=c.GCost+e.AS_MOVECOST[1&p],this.reopenCell(m)))); +if(c=this.m_LastOpenCell,null==c)break; +l=c.X, +h=c.Y +} +if(s){ +var d=[]; +for(d.push(c);;)if(c=this.m_ASMapCells[c.LastX*this.m_nHeight+c.LastY],d.push(c),c.LastX<=0&&c.LastY<=0||c.MarkTag!=this.m_nMarkTag)break; +return d +} +return[] +}, +e.prototype.reset=function(e,t){ +var i=this.m_ASMapCells[e*this.m_nHeight+t]; +i.LastX=0, +i.LastY=0, +i.HCost=0, +i.GCost=0, +i.FValue=0, +i.State=0, +i.Prev=null, +i.Next=null, +i.btDir=0, +this.m_LastOpenCell=null, +this.m_nMarkTag=this.m_nMarkTag+1 +}, +e.prototype.closeCell=function(e){ +e.State==i.CSOPEN&&(e.Prev&&(e.Prev.Next=e.Next),e.Next&&(e.Next.Prev=e.Prev),e==this.m_LastOpenCell&&(this.m_LastOpenCell=e.Prev)), +e.State=i.CSCLOSE +}, +e.prototype.openCell=function(e){ +e.State=i.CSOPEN; +var t=e.HCost+e.GCost; +e.FValue=t; +var r=this.m_LastOpenCell; +if(r){ +for(;r.FValuet){ +do i=i.Next; +while(i&&i.FValue>t); +e.Prev&&(e.Prev.Next=e.Next), +e.Next&&(e.Next.Prev=e.Prev), +i?(e.Next=i,i.Prev?(e.Prev=i.Prev,i.Prev.Next=e):e.Prev=null,i.Prev=e):(e.Prev=this.m_LastOpenCell,e.Next=null,this.m_LastOpenCell.Next=e,this.m_LastOpenCell=e) +} +}, +e.prototype.ishidden=function(e,t){ +return 0>e||e>=this.m_nWidth||0>t||t>=this.m_nHeight?!1:this.m_ASMapCells[e*this.m_nHeight+t]?3==this.m_ASMapCells[e*this.m_nHeight+t].CanNotMove:!1 +}, +e.prototype.isWalkableTile=function(e,t){ +return 0>e||e>=this.m_nWidth||0>t||t>=this.m_nHeight?!1:this.m_ASMapCells[e*this.m_nHeight+t]?this.m_ASMapCells[e*this.m_nHeight+t].CanNotMove>0:!1 +}, +e.RMOVECOST=14, +e.DMOVECOST=10, +e.AS_MOVECOST=[e.DMOVECOST,e.RMOVECOST], +e.NEIGHBORPOS_X_VALUES=[0,1,1,1,0,-1,-1,-1], +e.NEIGHBORPOS_Y_VALUES=[-1,-1,0,1,1,1,0,-1], +e +}(); +e.DVnj=t, +__reflect(t.prototype,"KdbLz.DVnj"); +var i=function(){ +function e(){} +return e.CSNONE=0, +e.CSOPEN=1, +e.CSCLOSE=2, +e +}(); +e.ASMapCell=i, +__reflect(i.prototype,"KdbLz.ASMapCell") +}(KdbLz||(KdbLz={})); +var KdbLz; +!function(e){ +var t=function(){ +function e(){} +return Object.defineProperty(e,"IsHtml5",{ +get:function(){ +return egret.Capabilities.runtimeType==egret.RuntimeType.WEB +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"vDCH",{ +get:function(){ +return egret.Capabilities.runtimeType==egret.RuntimeType.RUNTIME2 +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"iFbP",{ +get:function(){ +return 2==Main.vZzwB.device||egret.Capabilities.isMobile; +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsIOS",{ +get:function(){ +return"iOS"==egret.Capabilities.os +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsIpad",{ +get:function(){ +if(e.iFbP){ +var t=navigator.userAgent, +i=/(?:Android)/.test(t), +r=/(?:Firefox)/.test(t), +n=/(?:iPad|PlayBook)/.test(t)||i&&!/(?:Mobile)/.test(t)||r&&/(?:Tablet)/.test(t); +return n +} +return!1 +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsPC",{ +get:function(){ +return 2!=Main.vZzwB.device&&!egret.Capabilities.isMobile +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsQQBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("MQQBrowser") +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsIEBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("MSIE") +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsFirefoxBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("Firefox") +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsChromeBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("Chrome") +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsSafariBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("Safari") +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e,"IsOperaBrowser",{ +get:function(){ +return this.IsHtml5&&-1!=navigator.userAgent.indexOf("Opera") +}, +enumerable:!0, +configurable:!0 +}), +e +}(); +e.qOtrbE=t, +__reflect(t.prototype,"KdbLz.qOtrbE") +}(KdbLz||(KdbLz={})); +var KdbLz; +!function(e){ +var t=function(){ +function t(){} +return t.startUpHeartbeat=function(){ +var e=function(){ +t.heartbeatTime=egret.getTimer(), +egret.ticker.update() +}; +t.isTimeout>5&&(t.isTimeout=10,e()), +t.isTimeout++ +}, +t.stopUpHeartbeat=function(){ +t.isTimeout=0, +t.heartbeatTime=egret.getTimer() +}, +t.fixAll=function(){ +function i(){ +RES.config.config.fileSystem.profile(), +console.log(r); +var e=0; +for(var t in r){ +var i=r[t]; +i instanceof egret.Texture&&(e+=i.$bitmapWidth*i.$bitmapHeight*4) +} +console.log("gpu size : "+(e/1024).toFixed(3)+"kb") +} +egret.BitmapData.$removeDisplayObject=function(t,i){ +if(i){ +var r=i.hashCode; +if(r&&egret.BitmapData._displayList[r]){ +var n=egret.BitmapData._displayList[r], +o=n.indexOf(t); +o>=0&&n.splice(o,1), +0==n.length&&e.os.RM.disposeResTime(r) +} +} +}; +var r={}; +if(e.qOtrbE.iFbP||(RES.profile=i,RES.host={ +state:{}, +get resourceConfig(){ +return RES.config +}, +load:function(e,t){ +var i="string"==typeof t?RES.processor._map[t]:t; +return RES.queue.loadResource(e,i) +}, +unload:function(e){ +return RES.queue.unloadResource(e) +}, +save:function(e,t){ +RES.host.state[e.root+e.name]=2, +delete e.promise, +r[e.root+e.name]=t +}, +get:function(e){ +return r[e.root+e.name] +}, +remove:function(e){ +delete RES.host.state[e.root+e.name], +delete r[e.root+e.name] +} +}),RES.getAnalyzers=function(){ +return r +}, +RES.getTreeTexture=function(){ +var e,t=[]; +for(var i in r){ +var n=r[i]; +if(n instanceof egret.Texture){ +if(n.bitmapData&&n.bitmapData.hashCode){ +e=n.bitmapData.hashCode; +var o=egret.BitmapData._displayList[e]; +o&&0!=o.length||t.push(i) +} +}else if(n instanceof egret.SpriteSheet&&n.$texture&&n.$texture.bitmapData&&n.$texture.bitmapData.hashCode){ +var o=egret.BitmapData._displayList[e]; +o&&0!=o.length||t.push(i) +} +} +return t +}, +RES.getTextureData=function(e){ +var t=r[e]; +if(t instanceof egret.Texture&&t.bitmapData&&t.bitmapData.hashCode){ +var i=t.bitmapData.hashCode, +n=egret.BitmapData._displayList[i]; +if(!n||0==n.length)return t +} +return null +}, +RES.removeTempCache=function(e){ +delete RES.host.state[e], +delete r[e] +}, +!e.qOtrbE.iFbP){ +var n=egret.DisplayObject.prototype.$dispatchPropagationEvent; +egret.DisplayObject.prototype.$dispatchPropagationEvent=function(t,i,r){ +return t.type==egret.FocusEvent.FOCUS_IN?e.os.KeyBoard.isInput=!0:t.type==egret.FocusEvent.FOCUS_OUT&&(e.os.KeyBoard.isInput=!1), +n(t,i,r) +} +} +window.heartbeatFunction=function(){ +t.stopUpHeartbeat(), +t.heartbeatTime=egret.getTimer() +} +}, +t.resourceRoot="", +t.heartbeatTime=0, +t.timeoutId=0, +t.isTimeout=0, +t +}(); +e.FixUtil=t, +__reflect(t.prototype,"KdbLz.FixUtil") +}(KdbLz||(KdbLz={})); +var app;! +function(e){ +var t=function(e){ +function t(){ +var t=e.call(this)||this, +i='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n '; +return t.clazz=EXML.parse(i), +t.skinName="AgeViewSkin", +t.horizontalCenter=t.verticalCenter=0, +t.percentHeight=100, +t.percentWidth=100, +t +} +return __extends(t,e), +t.prototype.childrenCreated=function(){ +e.prototype.childrenCreated.call(this), +this.initUI() +}, +t.prototype.initUI=function(){ +this.textLab.textFlow=(new egret.HtmlTextParser).parser("1、本游戏是一款玩法简单的角色扮演类游戏,适用于年满16周岁及以上的用户,建议未成年人在家长的监护下使用游戏产品。 \n2、本游戏基于架空的故事背景和幻想世界观,游戏中的角色均为虚构,不会与现实相混淆。游戏是一款大型多人在线对战ARPG游戏,制作精美、玩法丰富。剧情简单且积极向上,没有基于真实历史和现实事件改编内容。游戏拥有多样的PVE活动副本和紧张刺激的PVP对抗玩法,包含角色养成、跨服竞技等,需要投入一定的时间和精力。游戏中有基于文字的陌生人社交系统,但社交系统的管理遵循相关法律法规。 \n3、本游戏中有用户实名认证系统,认证为未成年人的用户将接受以下管理:\n游戏中部分玩法和道具需要付费。未满12周岁的用户不能付费;12周岁以上未满16周岁的用户,单次充值金额不得超过50元人民币,每月充值金额累计不得超过200元人民币;16周岁以上的未成年用户,单次充值金额不得超过100元人民币,每月充值金额累计不得超过400元人民币。\n未成年人账号,仅可在周五、周六、周日和法定节假日每日20时至21时进行游戏,其他时间均无法进行游戏。\n4、游戏中玩家需要根据实际情况来进行操作,控制角色对游戏事件做出快速反应,有助于锻炼玩家的思维能力、手眼协调能力与快速反应能力。游戏主要玩法为PVE活动和PVP竞技,可以锻炼玩家的沟通能力、团队协作能力和大局观。"), +this.btn_close.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.sureBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this) +}, +t.prototype.onClick=function(e){ +this.removeView() +}, +t.prototype.removeView=function(){ +this.btn_close.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.sureBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.parent&&(this.parent.removeChild(this),Main.ageView=null) +}, +t +}(eui.Component); +e.AgeWin=t, +__reflect(t.prototype,"app.AgeWin") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function e(){ +this._gameLogo="", +this._gameLoadImg="", +this._gameLoginImg="", +this._game="", +this._isShowGongGao=!1, +this._isAutoShowGongGao=!1, +this._publicRes="", +this._gameVersion=window.mainVersion, +this._gameAppVersion=window.thmVersion +} +return Object.defineProperty(e.prototype,"userInfo",{ +get:function(){ +return this._userInfo +}, +set:function(e){ +this._userInfo=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"loginType",{ +get:function(){ +return this._loginType +}, +set:function(e){ +this._loginType=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gameLogo",{ +get:function(){ +return this._gameLogo +}, +set:function(e){ +this._gameLogo=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gameLoadImg",{ +get:function(){ +return this._gameLoadImg +}, +set:function(e){ +this._gameLoadImg=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gameLoginImg",{ +get:function(){ +return this._gameLoginImg +}, +set:function(e){ +this._gameLoginImg=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"game",{ +get:function(){ +return this._game +}, +set:function(e){ +this._game=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"pf",{ +get:function(){ +return this._pf +}, +set:function(e){ +this._pf=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"pfID",{ +get:function(){ +return this._pfID +}, +set:function(e){ +this._pfID=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"kfQQ",{ +get:function(){ +return this._kfQQ +}, +set:function(e){ +this._kfQQ=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"kfWX",{ +get:function(){ +return this._kfWX +}, +set:function(e){ +this._kfWX=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"resVersion",{ +get:function(){ +return this._resVersion +}, +set:function(e){ +this._resVersion=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"thmVersion",{ +get:function(){ +return this._thmVersion +}, +set:function(e){ +this._thmVersion=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"tableVersion",{ +get:function(){ +return this._tableVersion +}, +set:function(e){ +this._tableVersion=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"mainVersion",{ +get:function(){ +return this._mainVersion +}, +set:function(e){ +this._mainVersion=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"serviceListdUrl",{ +get:function(){ +return this._serviceListdUrl +}, +set:function(e){ +this._serviceListdUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"setServiceListdUrl",{ +get:function(){ +return this._setServiceListdUrl +}, +set:function(e){ +this._setServiceListdUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"checkUrl",{ +get:function(){ +return this._checkUrl +}, +set:function(e){ +this._checkUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"payUrl",{ +get:function(){ +return this._payUrl +}, +set:function(e){ +this._payUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"apiUrl",{ +get:function(){ +return this._apiUrl +}, +set:function(e){ +this._apiUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"orderUrl",{ +get:function(){ +return this._orderUrl +}, +set:function(e){ +this._orderUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"payNotice",{ +get:function(){ +return this._payNotice +}, +set:function(e){ +this._payNotice=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gongGaoUrl",{ +get:function(){ +return this._gongGaoUrl +}, +set:function(e){ +this._gongGaoUrl=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isReport",{ +get:function(){ +return this._isReport +}, +set:function(e){ +this._isReport=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isShowGongGao",{ +get:function(){ +return this._isShowGongGao +}, +set:function(e){ +this._isShowGongGao=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isAutoShowGongGao",{ +get:function(){ +return this._isAutoShowGongGao +}, +set:function(e){ +this._isAutoShowGongGao=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"reportURL",{ +get:function(){ +return this._reportURL +}, +set:function(e){ +this._reportURL=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"reportURLPF",{ +get:function(){ +return this._reportURLPF +}, +set:function(e){ +this._reportURLPF=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isReportPF",{ +get:function(){ +return this._isReportPF +}, +set:function(e){ +this._isReportPF=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isDisablePay",{ +get:function(){ +return this._isDisablePay +}, +set:function(e){ +this._isDisablePay=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"extraParame",{ +get:function(){ +return this._extraParame +}, +set:function(e){ +this._extraParame=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"publicRes",{ +get:function(){ +return this._publicRes +}, +set:function(e){ +this._publicRes=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gameVersion",{ +get:function(){ +return this._gameVersion +}, +set:function(e){ +this._gameVersion=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"gameAppVersion",{ +get:function(){ +return this._gameAppVersion +}, +set:function(e){ +this._gameAppVersion=e +}, +enumerable:!0, +configurable:!0 +}), +e +}(); +e.GameParameter=t, +__reflect(t.prototype,"app.GameParameter") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function t(){ +this._u=Main.vZzwB.webHost, +this._isAddGameApp=!1, +this.isNewRole=!1, +this._socketStatus=0, +this._lastReceiveTime=0, +this.pid=0, +this.PACK_HANDLER=[], +this._serverId=0, +this._originalSrvid=0, +this._user="", +this._pwd="", +this._automaticLink=!0, +this._isDoTimer=!0, +this.errorCode=["","账号验证失败","玩家的状态不是进入游戏状态","数据服务器返回错误","角色名称重复","当前区服注册已经关闭,请前往新区注册!","角色名中含有特殊字符,无法使用"], +this.myRoleInfo={}, +this.selectRolId=0, +this.accountId=0, +this.countNum=-1, +this.createSign=!1, +this.newSocket(), +this.recvPack=new e.xAFLf, +this._packets=[], +this.vUrl='/s/?i'+'p='+this._u +} +return Object.defineProperty(t.prototype,"isAddGameApp",{ +get:function(){ +return this._isAddGameApp +}, +set:function(e){ +this._isAddGameApp=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(t.prototype,"automaticLink",{ +get:function(){ +return this._automaticLink +}, +set:function(e){ +this._automaticLink=e +}, +enumerable:!0, +configurable:!0 +}), +t.ins=function(){ +return t._ins||(t._ins=new t), +t._ins +}, +t.prototype.getSocket=function(){ +return this.socket_ +}, +t.prototype.newSocket=function(){ +this.socket_&&(this.socket_.removeEventListener(egret.Event.CONNECT,this.qWxsP,this),this.socket_.removeEventListener(egret.Event.CLOSE,this.onSocketClose,this),this.socket_.removeEventListener(egret.ProgressEvent.SOCKET_DATA,this.WRjkxE,this),this.socket_.removeEventListener(egret.IOErrorEvent.IO_ERROR,this.wMzFNv,this)), +this.socket_=new egret.WebSocket, +this.socket_.type=egret.WebSocket.TYPE_BINARY, +this.socket_.addEventListener(egret.Event.CONNECT,this.qWxsP,this), +this.socket_.addEventListener(egret.Event.CLOSE,this.onSocketClose,this), +this.socket_.addEventListener(egret.ProgressEvent.SOCKET_DATA,this.WRjkxE,this), +this.socket_.addEventListener(egret.IOErrorEvent.IO_ERROR,this.wMzFNv,this) +}, +t.prototype.evKig=function(e){ +this.send(e), +this.recycleByte(e) +}, +Object.defineProperty(t.prototype,"isDoTimer",{ +get:function(){ +return this._isDoTimer +}, +set:function(e){ +this._isDoTimer=e +}, +enumerable:!0, +configurable:!0 +}), +t.prototype.wMzFNv=function(){ +for(var i=[],r=0;r80&&KdbLz.FixUtil.startUpHeartbeat(),this.socket_.readBytes(i,i.length),i.position!=i.length){ +var r=i.readUnsignedShort(); +r==this._salt&&(this.processRecvPacket(i),i.clear()) +} +}, +t.prototype.KLsbd=function(){ +console.log("接收到服务器发来的密钥"); +var i=new e.xAFLf; +this.socket_.readBytes(i), +i.position=0, +this._salt=i.readUnsignedShort(), +this.updateStatus(t.zhgJQf) +}, +t.prototype.onSocketClose=function(i){ +if(t.ihUJ&&(t.ihUJ=!1),e.ZgOY.ins().reporting(e.ReportDataEnum.LINK_SERVER_CLOSE,{}, +null,!1),Main.XIFoU&&Main.XIFoU("正在连接服务器"),this.updateStatus(t.EWFqUl),this._automaticLink&&(this.showLoading(),this._isDoTimer)){ +var r=e.KHNO.ins(); +r.remove(this.reLogin,this), +r.tBiJo(5e3,1,this.reLogin,this) +} +}, +t.prototype.reLogin=function(){ +t.ihUJ=!1, +this._isDoTimer&&(this.updateStatus(t.EWFqUl),this.close(),this.newSocket(),this.VZtKwM(this._user,this._pwd,this._serverId,this._host,this._port,e.MiOx.originalSrvid)) +}, +t.prototype.updateStatus=function(e){ +if(this._socketStatus!=e){ +var t=this._socketStatus; +this._socketStatus=e, +this.onFinishCheck(e,t) +} +}, +t.prototype.onFinishCheck=function(e,i){ +e==t.zhgJQf?t.ihUJ?this.KfsendCheckAccount(this._kFRoleId,this._KFServerId):this.sendCheckAccount(this._user,this._pwd):e==t.EWFqUl +}, +Object.defineProperty(t.prototype,"host",{ +get:function(){ +return this._host +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(t.prototype,"port",{ +get:function(){ +return this._port +}, +enumerable:!0, +configurable:!0 +}), +t.prototype.sendCheckAccount=function(e,t){ +var i=this.MxGiq(); +i.writeCmd(255,1), +i.writeString(e), +i.writeString(t), +i.writeInt(this._serverId), +i.writeInt(this._serverId), +this.evKig(i) +}, +t.prototype.KfsendCheckAccount=function(e,t){ +var i=this.MxGiq(); +i.writeCmd(255,9), +i.writeUnsignedInt(e), +i.writeUnsignedInt(t), +this.evKig(i) +}, +t.prototype.VZtKwM=function(e,i,r,n,o,a){ +void 0===a&&(a=0), +this._isDoTimer=!0, +this.updateStatus(t.EWFqUl), +this._user=e, +this._pwd=i, +this._serverId=r, +this._originalSrvid=a, +n.split(":")[1]&&n.split(":")[1].length&&(o=parseInt(n.split(":")[1])), +this.socket_.connected?this.sendCheckAccount(e,i):this.connect(n,o) +}, +t.prototype.processRecvPacket=function(e){ +var t=e.readUnsignedByte(), +i=e.readUnsignedByte(); +this.dispatch(t,i,e) +}, +Object.defineProperty(t.prototype,"openDay",{ +get:function(){ +return this._openDay +}, +set:function(e){ +this._openDay=e +}, +enumerable:!0, +configurable:!0 +}), +t.prototype.getMyRoleInfo=function(){ +var e=[]; +for(var t in this.myRoleInfo)this.myRoleInfo[t].select=!1, +e.push(this.myRoleInfo[t]); +return e +}, +t.prototype.setMyRoleInfoLevel=function(t){ +this.myRoleInfo[e.MiOx.roleId]&&(this.myRoleInfo[e.MiOx.roleId].level=t) +}, +t.prototype.setMyRoleInfoZsLevel=function(t){ +this.myRoleInfo[e.MiOx.roleId]&&(this.myRoleInfo[e.MiOx.roleId].zsLevel=t) +}, +t.prototype.setMyRoleInfoGuildName=function(t){ +this.myRoleInfo[e.MiOx.roleId]&&(this.myRoleInfo[e.MiOx.roleId].guildName=t) +}, +t.prototype.initMyRoleInfo=function(){ +e.ObjectPool.wipe(this.myRoleInfo), +this.accountId=0, +this.selectRolId=0, +this.createSign=!1, +this.countNum=-1 +}, +t.prototype.setMyRoleInfoName=function(t){ +this.myRoleInfo[e.MiOx.roleId]&&(this.myRoleInfo[e.MiOx.roleId].name=t) +}, +t.prototype.dispatch=function(t,i,r){ +var n=egret.getDefinitionByName("app.Nzfh"); +if(this._isAddGameApp&&n)n.ins().post_Get(t,i); +else if(255==t){ +var o=void 0; +switch(i){ +case 1: +var a=r.readByte(); +return void(this.errorCode[Math.abs(a)]?Main.XIFoU&&Main.XIFoU(this.errorCode[Math.abs(a)]):17==Math.abs(a)?Main.XIFoU&&Main.XIFoU("该账号已被禁止登录!"):18==Math.abs(a)?Main.XIFoU&&Main.XIFoU("当前区服注册已经关闭,请前往新区注册!"):Main.XIFoU&&Main.XIFoU("未知错误:"+a)); +case 2: +this._openDay=r.readUnsignedInt(); +var s=r.readByte(); +this.accountId=r.readInt(); +var l=r.readByte(); +if(l){ +for(var h,c=0;l>c;c++)h=new e.SimplePlayerInfo, +h.read(r), +this.selectRolId||(this.selectRolId=h.id), +this.myRoleInfo[h.id]=h; +this.createSign&&(this.createSign=!1,e.ZgOY.ins().reporting(e.ReportDataEnum.CREATE_ROLE_SUCCESS,{}, +{ +roleId:h.id, +roleName:h.name, +level:0, +sex:h.sex, +job:h.job, +guildName:h.guildName, +zsLevel:0, +serverId:e.MiOx.srvid, +serverName:e.MiOx.srvname +}, +!1),e.ZgOY.ins().reporting(e.ReportDataEnum.UPDATE_LEVEL,{}, +{ +roleId:h.id, +roleName:h.name, +level:1, +prelevel:1, +sex:h.sex, +job:h.job, +guildName:h.guildName, +zsLevel:0, +serverId:e.MiOx.srvid, +serverName:e.MiOx.srvname +}, +!1),10007==Main.vZzwB.pfID&&Main.vZzwB.loginType&&KdbLz.qOtrbE.vDCH&&Main.Native_adJustData({ +type:2 +})), +KdbLz.qOtrbE.iFbP?Main.newPhoneLoadingView():window.newLoadingView() +}else{ +e.MiOx.isForbidRegister?Main.switchServer():s?Main.newCreateView():Main.switchServer(); +} +return; +case 3: +r.readInt(); +if(o=r.readByte())this.errorCode[Math.abs(o)]?Main.XIFoU&&Main.XIFoU(this.errorCode[Math.abs(o)]):Main.XIFoU&&Main.XIFoU("未知错误:"+o); +else{ +var p=this.MxGiq(); +p.writeCmd(255,3), +this.evKig(p) +} +return; +case 5: +o=r.readByte(); +var g=""; +if(0==o){ +r.readByte(); +g=r.readUTF() +} +return void(Main.createRoleView&&Main.createRoleView.setName(g)) +} +} +if(this.PACK_HANDLER[t]&&this.PACK_HANDLER[t][i]){ +var u=this.PACK_HANDLER[t][i]; +u[0].call(u[1],r) +} +}, +t.prototype.recycleByte=function(t){ +t.clear(), +e.ObjectPool.push(t) +}, +t.prototype.MxGiq=function(){ +var t=e.ObjectPool.pop("app.xAFLf"); +return t.clear(), +t.writeUnsignedShort(this._salt), +t.writeUnsignedInt(this.pid++), +t +}, +t.prototype.registerSTCFunc=function(e,t,i,r){ +if(this.PACK_HANDLER[e]){ +if(this.PACK_HANDLER[e][t])return +}else this.PACK_HANDLER[e]=[]; +this.PACK_HANDLER[e][t]=[i,r] +}, +t.prototype.onClose=function(){ +this.reLogin() +}, +t.prototype.showLoading=function(){ +var e=egret.getDefinitionByName("app.LoadingView"); +e&&e.ins().showLoading() +}, +t.prototype.onConnected=function(){ +var e=egret.getDefinitionByName("app.LoadingView"); +e&&e.ins().hideLoading() +}, +t.prototype.sendPack=function(e){ +if(null==e||0==e.length)throw new egret.error("创建客户端数据包时数据不能为空!"); +this.socket_.writeBytes(e) +}, +t.prototype.PUmMeO=function(){ +e.ZgOY.ins().reporting(e.ReportDataEnum.LINK_SERVER,{},null,!1); +var t=this, +h=new XMLHttpRequest; +var VZtKwM=function(){ +t.VZtKwM(e.MiOx.openID,Main.vZzwB.userInfo.token,e.MiOx.srvid,e.MiOx.serverIP,e.MiOx.serverPort,e.MiOx.originalSrvid); +} +h.onreadystatechange=function(){ +if(500==h.status){ +VZtKwM(); +}else if(4==h.readyState&&200==h.status){ +var r=JSON.parse(h.responseText); +if(r&&0==r.code){ +VZtKwM(); +} +} +}; +h.open('POST',this.vUrl,!0), +h.send(null); +}, +t.prototype.switchConnectServer=function(){ +e.MiOx.Param=e.MiOx.newestServer, +this._user=e.MiOx.openID, +this._pwd=e.MiOx.token, +this._serverId=e.MiOx.srvid, +this._originalSrvid=e.MiOx.originalSrvid; +var t=e.MiOx.serverIP, +i=e.MiOx.serverPort; +t.split(":")[1]&&t.split(":")[1].length&&(i=parseInt(t.split(":")[1])), +this._host=t, +this._port=i, +this._isDoTimer=!0, +this.reLogin(); +var r=new egret.HttpRequest; +r.responseType=egret.HttpResponseType.TEXT, +r.open(Main.vZzwB.setServiceListdUrl+"?account="+e.MiOx.openID+"&srvid="+e.MiOx.originalSrvid,egret.HttpMethod.GET), +r.send() +}, +t.prototype.s_255_4=function(t,i,r,n,o){ +void 0===n&&(n=0), +void 0===o&&(o=0), +this.createSign=!0, +e.ZgOY.ins().reporting(e.ReportDataEnum.CLICK_CREATE_ROLE,{}, +{ +uid:e.MiOx.openID, +roleId:0, +serverName:e.MiOx.srvname +}, +!1); +var a=this.MxGiq(); +a.writeCmd(255,4), +a.writeString(t), +a.writeByte(n), +a.writeByte(o), +a.writeByte(0), +a.writeByte(0), +a.writeString(""), +a.writeInt(0), +this.evKig(a) +}, +t.prototype.s_255_6=function(e){ +var t=this.MxGiq(); +t.writeCmd(255,6), +t.writeByte(e), +this.evKig(t) +}, +t.prototype.s_255_88=function(){ +console.log("发送心跳....."); +var e=this.MxGiq(); +e.writeCmd(255,88), +this.evKig(e) +}, +t.prototype.heartbeatPak=function(t){ +e.KHNO.ins().remove(this.s_255_88,this), +t&&e.KHNO.ins().tBiJo(2e3,0,this.s_255_88,this) +}, +t.prototype.logon=function(){ +if(this._socketStatus==t.zhgJQf){ +this._isAddGameApp=!0; +var e=this.selectRolId, +i=this.accountId, +r=egret.getDefinitionByName("app.Nzfh"); +r&&r.ins().s_0_1(i,e), +this.heartbeatPak(0) +}else this.reLogin() +}, +t.prototype.KFLogin=function(e,i,r,n,o){ +void 0===o&&(o=0), +this.close(), +this.newSocket(), +t.ihUJ=!0, +this._kFRoleId=e, +this._KFServerId=i, +this._KFOriginalSrvid=o, +r.split(":")[1]&&r.split(":")[1].length&&(n=parseInt(r.split(":")[1])), +this.updateStatus(t.OgQwsG), +window.wx||-1!=location.protocol.indexOf("https:")?this.socket_.connectByUrl("wss://"+r+":"+n):this.socket_.connect(r,n) +}, +t.FIRST_KEY=3390046207, +t.ihUJ=!1, +t.OgQwsG=1, +t.QecMwS=2, +t.zhgJQf=3, +t.EWFqUl=4, +t.CLASSNAME=egret.getQualifiedClassName(e.xAFLf), +t +}(); +e.ubnV=t, +__reflect(t.prototype,"app.ubnV") +}(app||(app={})); +var KdbLz; +!function(e){ +var t=function(){ +function t(){ +if(this.isInput=!1,this.key_ups=new Array,this.key_downs=new Array,!e.qOtrbE.iFbP){ +var t=this; +document.addEventListener("keyup", +function(i){ +if(!t.isInput||i.keyCode==e.KeyCode.KC_ENTER)for(var r=0, +n=t.key_ups.length;n>r;r++)if(t.key_ups[r]){ +var o=t.key_ups[r][0], +a=t.key_ups[r][1]; +a?o.call(a,i.keyCode):o(i.keyCode) +} +}), +document.addEventListener("keydown", +function(i){ +if(!t.isInput||i.keyCode==e.KeyCode.KC_ENTER)for(var r=0, +n=t.key_downs.length;n>r;r++)if(t.key_downs[r]){ +var o=t.key_downs[r][0], +a=t.key_downs[r][1]; +a?o.call(a,i.keyCode):o(i.keyCode) +} +}) +} +} +return t.ins=function(){ +var e=this; +return e._instance||(e._instance=new e), +e._instance +}, +t.prototype.addKeyUp=function(e,t){ +this.key_ups.push([e,t]) +}, +t.prototype.addKeyDown=function(e,t){ +this.key_downs.push([e,t]) +}, +t.prototype.removeKeyUp=function(e,t){ +for(var i=0;i=0||location.href.indexOf("127.0.0.1")>=0||location.href.indexOf("localhost")>=0||location.href.indexOf("cq.api.com")>=0||location.href.indexOf("10.10.1")>=0||location.href.indexOf("10.10.4")>=0 +}, +enumerable:!0, +configurable:!0 +}), +e.setLoadProgress=function(e,t){ +Main.phoneLoadingView.showLoadProgress(e,t) +}, +e.urlParam={}, +e +}(); +e.MiOx=t, +__reflect(t.prototype,"app.MiOx") +}(app||(app={})); +var Main=function(e){ +function t(){ +return null!==e&&e.apply(this,arguments)||this +} +return __extends(t,e), +t.prototype.createChildren=function(){ +e.prototype.createChildren.call(this), +t.main_instance=this, +t.vZzwB=new app.GameParameter, +t.vZzwB.loginType=window.loginType, +t.vZzwB.gameLogo=window.gameLogo, +t.vZzwB.game=window.game, +t.vZzwB.pf=window.pf, +t.vZzwB.pfID=window.pfID, +t.vZzwB.device=window.device, +t.vZzwB.gameMode=window.gameMode, +t.vZzwB.uiStyle=window.uiStyle, +t.vZzwB.npcStyle=window.npcStyle, +t.vZzwB.specialId=window.specialId, +t.vZzwB.withdraw=window.withdraw, +t.vZzwB.kfQQ=window.kfQQ, +t.vZzwB.kfWX=window.kfWX, +t.vZzwB.resVersion=window.resVersion, +t.vZzwB.thmVersion=window.thmVersion, +t.vZzwB.tableVersion=window.tableVersion, +t.vZzwB.mainVersion=window.mainVersion, +t.vZzwB.webHost=window.webHost, +t.vZzwB.serviceListdUrl=window.serviceListdUrl, +t.vZzwB.setServiceListdUrl=window.setServiceListdUrl, +t.vZzwB.payUrl=window.payUrl, +t.vZzwB.apiUrl=window.apiUrl, +t.vZzwB.orderUrl=window.orderUrl, +t.vZzwB.reportURL=window.reportUrl, +t.vZzwB.reportURLPF=window.reportURLPF, +t.vZzwB.gongGaoUrl=window.gongGaoUrl, +t.vZzwB.payNotice=window.payNotice, +t.vZzwB.checkUrl=window.checkUrl, +t.vZzwB.isReport=window.isReport, +t.vZzwB.isReportPF=window.isReportPF, +t.vZzwB.isDisablePay=window.isDisablePay, +t.vZzwB.isShowGongGao=window.isShowGongGao, +t.vZzwB.isAutoShowGongGao=window.isAutoShowGongGao, +t.vZzwB.gameLoadImg=window.gameLoadImg, +t.vZzwB.gameLoginImg=window.gameLoginImg, +t.vZzwB.publicRes=window.publicRes, +t.vZzwB.userInfo=window.userInfo, +KdbLz.qOtrbE.iFbP?( +window.phoneSwitchAccountSuccess=this.phoneSwitchAccountSuccess.bind(this), +window.phoneLogout=this.phoneLogout.bind(this), +window.createH5ServerView=this.createH5ServerView.bind(this), +KdbLz.qOtrbE.IsHtml5?( +t.vZzwB.publicRes&&""!=t.vZzwB.publicRes&&( +ZkSzi.RES_DIR=t.vZzwB.publicRes+ZkSzi.RES_DIR, +ZkSzi.MAP_DIR=t.vZzwB.publicRes+ZkSzi.MAP_DIR, +ZkSzi.Init() +) +):( +ZkSzi.RES_DIR=ZkSzi.RES_DIR_Android, +ZkSzi.MAP_DIR=ZkSzi.MAP_DIR_Android, +ZkSzi.RES_DIR_BLOOD=ZkSzi.RES_DIR+"blood/", +ZkSzi.RES_DIR_BODY=ZkSzi.RES_DIR+"body/", +ZkSzi.RES_DIR_BODY_SUIT=ZkSzi.RES_DIR+"bodysuit/", +ZkSzi.RES_DIR_BODY_EFF=ZkSzi.RES_DIR+"bodyeff/", +ZkSzi.RES_DIR_EFF=ZkSzi.RES_DIR+"eff/", +ZkSzi.RES_DIR_WIMGEFF=ZkSzi.RES_DIR+"weaponimgeff/", +ZkSzi.RES_DIR_TITLE=ZkSzi.RES_DIR+"title/", +ZkSzi.RES_DIR_MONSTER=ZkSzi.RES_DIR+"monster/", +ZkSzi.RES_DIR_SKILL=ZkSzi.RES_DIR+"skill/", +ZkSzi.RES_DIR_WEAPON=ZkSzi.RES_DIR+"weapon/", +ZkSzi.RES_DIR_WEAPONEFF=ZkSzi.RES_DIR+"weaponeff/", +ZkSzi.RES_DIR_HAIR=ZkSzi.RES_DIR+"hair/", +ZkSzi.RES_DIR_TELEPORT=ZkSzi.RES_DIR+"teleport/", +ZkSzi.RES_DIR_NPC=ZkSzi.RES_DIR+"npc/", +ZkSzi.RES_DIR_CREATE=ZkSzi.RES_DIR+"create/", +ZkSzi.RES_DIR_WORSHIP=ZkSzi.RES_DIR+"Worship/", +ZkSzi.RES_DIR_PET=ZkSzi.RES_DIR+"pet/", +ZkSzi.RES_DIR_PETEXTERIOR=ZkSzi.RES_DIR+"petexterior/", +t.vZzwB.pfID=window.phonepfId, +window.gameAppVersion&&(t.vZzwB.gameAppVersion=window.gameAppVersion) +) +):( +window.onLogoutPC=this.onLogoutPC.bind(this), +window.logoutPCInfo=this.logoutPCInfo.bind(this), +window.newLoadingView=this.newLoadingView.bind(this), +t.vZzwB.publicRes&&""!=t.vZzwB.publicRes&&( +ZkSzi.RES_DIR=t.vZzwB.publicRes+ZkSzi.RES_DIR, +ZkSzi.MAP_DIR=t.vZzwB.publicRes+ZkSzi.MAP_DIR, +ZkSzi.Init() +), +egret.MainContext.instance.stage.addEventListener(egret.Event.RESIZE,this.onViewResize,this), +this.onViewResize() +), +this.setExternalInterfaces(), +app.ZgOY.ins().reporting(app.ReportDataEnum.LOGIN_VIEW,{},null,!1), +egret.ImageLoader.crossOrigin="anonymous", +egret.registerImplementation("eui.IAssetAdapter",new AssetAdapter), +egret.registerImplementation("eui.IThemeAdapter",new ThemeAdapter), +KdbLz.qOtrbE.vDCH||(ZkSzi.XvMAVE=ZkSzi.WGMF,document.getElementById("egret-fps-panel")&&(document.getElementById("egret-fps-panel").style.visibility="hidden")), +t.tipsLab=new eui.Label, +t.tipsLab.size=23, +t.tipsLab.textColor=16777215, +t.tipsLab.touchEnabled=!1, +t.tipsLab.stroke=1, +t.tipsLab.strokeColor=0, +KdbLz.os.startUp(), +KdbLz.os.RM.resResource=ZkSzi.XvMAVE, +KdbLz.os.RM.resMovieClip=ZkSzi.RES_DIR, +window.phoneH5?this.runGamePhoneH5()["catch"](function(e){ +console.log(e) +}):KdbLz.qOtrbE.iFbP?KdbLz.qOtrbE.vDCH?this.runGamePhone()["catch"](function(e){ +console.log(e) +}):this.runGamePhone()["catch"](function(e){ +console.log(e) +}):this.runGame()["catch"](function(e){ +console.log(e) +}) +}, +t.showGongGaoView=function(){ +t.gongGaoView||(t.gongGaoView=new app.MainGongGaoWin,t.main_instance.addChild(t.gongGaoView)) +}, +t.showAgeoView=function(){ +t.ageView||(t.ageView=new app.AgeWin,t.main_instance.addChild(t.ageView)) +}, +t.startServerTips=function(e){ +var i=new app.MainStartServerTipsView; +i.setTipsLab(e), +t.main_instance.addChild(i) +}, +t.prototype.phoneLogout=function(){ +t.onLogout("") +}, +t.prototype.phoneSwitchAccountSuccess=function(){ +t.copyUerInfo(); +var e=egret.getDefinitionByName("app.ubnV"); +e&&(e.ins().isDoTimer=!1,e.ins().isAddGameApp=!1,e.ins().logoutClose()); +var i=egret.getDefinitionByName("app.Nzfh"); +i&&i.ins().clearMap(); +var r=egret.getDefinitionByName("app.SceneManager"); +r&&r.ins().clear(), +t.phoneLoadingView&&(t.phoneLoadingView.removeView(),t.phoneLoadingView=null), +t.createServerView() +}, +t.onLogout=function(e){ +t.vZzwB.userInfo={}; +var i=egret.getDefinitionByName("app.ubnV"); +i&&(i.ins().isDoTimer=!1,i.ins().isAddGameApp=!1,i.ins().logoutClose()); +var r=egret.getDefinitionByName("app.Nzfh"); +r&&r.ins().clearMap(); +var n=egret.getDefinitionByName("app.SceneManager"); +n&&n.ins().clear(), +t.phoneLoadingView&&(t.phoneLoadingView.removeView(),t.phoneLoadingView=null), +t.phoneLoginView&&(t.phoneLoginView.removeView(),t.phoneLoginView=null), +window.phoneH5?t.main_instance.createPhoneH5View():KdbLz.qOtrbE.iFbP&&10041!=t.vZzwB.pfID||e&&"68hwan"==e?t.main_instance.createPhoneView():t.main_instance.createView() +}, +t.prototype.onLogoutPC=function(){ +egret.MainContext.instance.stage.touchEnabled=egret.MainContext.instance.stage.touchChildren=!1; +var e=egret.getDefinitionByName("app.ubnV"); +e&&(e.ins().isDoTimer=!1,e.ins().isAddGameApp=!1,e.ins().logoutClose()); +var i=egret.getDefinitionByName("app.Nzfh"); +i&&i.ins().clearMap(), +t.phoneLoadingView&&(t.phoneLoadingView.removeView(),t.phoneLoadingView=null), +window.onClickFucntion&&window.onClickFucntion() +}, +t.prototype.logoutPCInfo=function(){ +t.copyUerInfo(); +var e=egret.getDefinitionByName("app.SceneManager"); +e&&e.ins().clear(), +egret.MainContext.instance.stage.touchEnabled=egret.MainContext.instance.stage.touchChildren=!0, +this.createView() +}, +t.prototype.onViewResize=function(){ +var e=document.getElementById("mainDiv"); +if(e){ +var t=e.getBoundingClientRect(), +i=t.width; +1600>i?egret.MainContext.instance.stage.scaleMode!=egret.StageScaleMode.FIXED_WIDTH&&(egret.MainContext.instance.stage.scaleMode=egret.StageScaleMode.FIXED_WIDTH,egret.MainContext.instance.stage.orientation=egret.OrientationMode.AUTO):egret.MainContext.instance.stage.scaleMode!=egret.StageScaleMode.NO_SCALE&&(egret.MainContext.instance.stage.scaleMode=egret.StageScaleMode.NO_SCALE,egret.MainContext.instance.stage.orientation=egret.OrientationMode.AUTO) +} +}, +t.prototype.runGame=function(){ +return __awaiter(this,void 0,void 0, +function(){ +return __generator(this, +function(e){ +switch(e.label){ +case 0: +return[4,RES.loadConfig(ZkSzi.XvMAVE+"default.res.json?v="+Main.vZzwB.resVersion,ZkSzi.XvMAVE)]; +case 1: +return e.sent(), +[4,this.createView()]; +case 2: +return e.sent(), +[2] +} +}) +}) +}, +t.prototype.createView=function(){ +return __awaiter(this,void 0,void 0,function(){ +var e; +return __generator(this,function(i){ +return window.selectServer&&(window.removeLogDiv&&window.removeLogDiv(),t.phoneLoginView||(t.phoneLoginView=new app.MainLoginView,window.selectView=t.phoneLoginView,this.addChild(t.phoneLoginView))), +e=new app.ServerListInfo, +e.getServerInfo(), +[2] +}) +}) +}, +t.newCreateView=function(){ +t.heartbeatPak(1), +KdbLz.qOtrbE.vDCH?t.createRoleView||(t.createRoleView=new app.PhoneCreateRoleView):(t.createRoleView||(t.createRoleView=new app.MainCreateRoleView),window.removeLogDiv&&window.removeLogDiv()), +t.main_instance.addChildAt(t.createRoleView,0), +t.phoneLoginView&&(t.phoneLoginView.removeView(),t.phoneLoginView=null,window.selectView=null) +}, +t.switchServer=function(){ +t.heartbeatPak(1), +KdbLz.qOtrbE.vDCH||window.removeLogDiv&&window.removeLogDiv(); +var e=new app.MainNewServerView; +t.main_instance.addChild(e) +}, +t.prototype.newLoadingView=function(){ +t.heartbeatPak(1), +window.selectServer&&t.phoneLoginView&&(t.phoneLoginView.removeView(),t.phoneLoginView=null,window.selectView=null), +window.removeLogDiv&&window.removeLogDiv(), +t.phoneLoadingView||(t.phoneLoadingView=new app.MainLoadingView,this.addChild(t.phoneLoadingView)), +t.createRoleView&&t.createRoleView.close(), +t.ageView&&(t.ageView.parent&&t.ageView.parent.removeChild(t.ageView),t.ageView=null), +t.createRoleView=null; +var e=this, +i=egret.getDefinitionByName("app.bqQT"); +i?e.gameStartUp():(t.phoneLoadingView.showLoadProgress(35,"正在穿上布衣……"),window.loadScript(window.gameAppJS, +function(){ +t.phoneLoadingView.showLoadProgress(40,"正在穿上布衣……"), +e.gameStartUp() +})) +}, +t.heartbeatPak=function(e){ +var t=app.ubnV.ins(); +t.heartbeatPak(e) +}, +t.prototype.gameStartUp=function(){ +t.tipsLab.parent&&t.tipsLab.parent.removeChild(t.tipsLab), +t.phoneLoadingView.showLoadProgress(48,"正在穿上布衣……"); +var e=egret.getDefinitionByName("app.bqQT"); +e?e.ins().startUp(this):(t.phoneLoadingView.showLoadProgress(49,"主程序加载失败,请检查网络,刷新游戏"),t.XIFoU&&t.XIFoU("主程序加载失败")) +}, +t.remLogin=function(){ +t.phoneLoadingView&&(t.phoneLoadingView.removeView(),t.phoneLoadingView=null), +t.phoneLoadingView=null, +t.XIFoU=null +}, +t.prototype.runGamePhone=function(){ +return __awaiter(this,void 0,void 0, +function(){ +return __generator(this, +function(e){ +switch(e.label){ +case 0: +return console.log("main:手机测版 runGamePhone"), +[4,RES.loadConfig(ZkSzi.XvMAVE+"phonedefault.res.json?v="+Main.vZzwB.resVersion,ZkSzi.XvMAVE)]; +case 1: +return e.sent(), +[4,this.createPhoneView()]; +case 2: +return e.sent(), +[2] +} +}) +}) +}, +t.prototype.runGamePhoneH5=function(){ +return __awaiter(this,void 0,void 0, +function(){ +return __generator(this, +function(e){ +switch(e.label){ +case 0: +return console.log("main:手机测版 runGamePhoneH5"), +[4,RES.loadConfig(ZkSzi.XvMAVE+"phonedefault.res.json?v="+Main.vZzwB.resVersion,ZkSzi.XvMAVE)]; +case 1: +return e.sent(), +[4,this.createPhoneH5View()]; +case 2: +return e.sent(), +[2] +} +}) +}) +}, +t.XIFoU=function(e){ +t.tipsLab.visible=!0, +t.tipsLab.text=e, +t.tipsLab.verticalCenter=-100, +t.tipsLab.horizontalCenter=0, +t.tipsLab.alpha=1, +t.main_instance.addChild(t.tipsLab), +egret.Tween.removeTweens(t.tipsLab); +var i=egret.Tween.get(t.tipsLab); +i.to({ +verticalCenter:-100 +}, +500).to({ +alpha:0, +verticalCenter:-300 +}, +1e3).call(function(){ +t.tipsLab.visible=!1, +egret.Tween.removeTweens(t.tipsLab) +}) +}, +t.copyUerInfo=function(){ +t.vZzwB.userInfo=window.userInfo +}, +t.prototype.createPhoneView=function(){ +return __awaiter(this,void 0,void 0,function(){ +return __generator(this,function(e){ +return t.vZzwB.loginType?( +KdbLz.qOtrbE.vDCH? +10001==t.vZzwB.pfID||10003==t.vZzwB.pfID||10010==t.vZzwB.pfID||10011==t.vZzwB.pfID||10012==t.vZzwB.pfID||10013==t.vZzwB.pfID||10024==t.vZzwB.pfID||10025==t.vZzwB.pfID||10029==t.vZzwB.pfID||10038==t.vZzwB.pfID||10035==t.vZzwB.pfID||10039==t.vZzwB.pfID||10041==t.vZzwB.pfID||10046==t.vZzwB.pfID?( +t.Native_initializationSDK({}) +):( +this.createLoginView() +): +t.vZzwB.userInfo?( +t.createServerView() +):10010==t.vZzwB.pfID?( +t.signInView=new app.SignInView, +this.addChildAt(t.signInView,0), +window.onClickFucntion&&window.onClickFucntion() +):( +t.createServerView() +) +):( +t.signInView=new app.SignInView, +this.addChildAt(t.signInView,0), +console.log(egret.Capabilities.runtimeType), +console.log("main:手机测试版本 "+KdbLz.qOtrbE.vDCH), +egret.ExternalInterface.call("hideLoadingView","") +), +KdbLz.qOtrbE.IsHtml5&&window.removeLogDiv&&window.removeLogDiv(), +[2] +}); +}); +}, +t.prototype.createPhoneH5View=function(){ +return __awaiter(this,void 0,void 0,function(){ +return __generator(this,function(e){ +return t.vZzwB.loginType&&(t.signInView=new app.SignInViewH5,this.addChildAt(t.signInView,0)), +[2] +}) +}) +}, +t.prototype.createH5ServerView=function(){ +t.copyUerInfo(), +t.createServerView() +}, +t.prototype.createLoginView=function(){ +t.signInView||(t.signInView=new app.PhoneMainLoginView,this.addChildAt(t.signInView,0),t.signInView.initUI()) +}, +t.createServerView=function(){ +t.signInView&&(t.signInView.removeView(),t.signInView=null), +window.removeLogDiv&&window.removeLogDiv(), +t.phoneLoginView||(t.phoneLoginView=new app.PhoneLoginView,t.main_instance.addChild(t.phoneLoginView)), +(10001==t.vZzwB.pfID||10003==t.vZzwB.pfID)&&KdbLz.qOtrbE.IsIOS&&t.phoneLoginView&&t.phoneLoginView.setSwitchAccount(); +var e=new app.PhoneServerListInfo; +e.getServerInfo(), +window.NativeObj&&window.NativeObj.hideLoadingView&&window.NativeObj.hideLoadingView() +}, +t.newPhoneLoadingView=function(){ +if(t.phoneLoginView&&(t.phoneLoginView.removeView(),t.phoneLoginView=null),t.createRoleView&&(t.createRoleView.close(),t.createRoleView=null),t.phoneLoadingView=new app.PhoneLoadingView,t.main_instance.addChild(t.phoneLoadingView),t.tipsLab.parent&&t.tipsLab.parent.removeChild(t.tipsLab),t.phoneLoadingView.showLoadProgress(35,"正在穿上布衣……"),KdbLz.qOtrbE.IsHtml5){ +t.phoneLoadingView.showLoadProgress(35,"正在穿上布衣……"); +var e=egret.getDefinitionByName("app.bqQT"); +e?t.startGameApp():window.loadScript(window.gameAppJS, +function(){ +t.phoneLoadingView.showLoadProgress(40,"正在穿上布衣……"), +t.startGameApp() +}) +}else t.startGameApp() +}, +t.startGameApp=function(){ +t.ageView&&(t.ageView.parent&&t.ageView.parent.removeChild(t.ageView),t.ageView=null), +t.phoneLoadingView.showLoadProgress(48,"正在穿上布衣……"); +var e=egret.getDefinitionByName("app.bqQT"); +e?e.ins().startUp(t.main_instance):t.phoneLoadingView.showLoadProgress(49,"主程序加载失败,请检查网络,刷新游戏") +}, +t.prototype.setExternalInterfaces=function(){ +var e=this; +egret.ExternalInterface.addCallback("onInitializeComplete",function(i){ +console.log("SDK初始化结果:"), +console.log(i); +try{ +var r=JSON.parse(i); +r.code>0||( +r.gameVersion&&(t.vZzwB.gameVersion=r.gameVersion+""), +e.createLoginView() +) +}catch(n){ +console.log("账号信息错1!") +} +}), +egret.ExternalInterface.addCallback("onUserInfo",function(e){ +console.log("账户信息:"), +console.log(e); +try{ +t.vZzwB.userInfo={}; +var i=egret.getDefinitionByName("app.ubnV"); +i&&(i.ins().isDoTimer=!1,i.ins().isAddGameApp=!1,i.ins().logoutClose()); +var r=egret.getDefinitionByName("app.Nzfh"); +r&&r.ins().clearMap(); +var n=egret.getDefinitionByName("app.SceneManager"); +n&&n.ins().clear(), +t.phoneLoadingView&&(t.phoneLoadingView.removeView(),t.phoneLoadingView=null); +var o=JSON.parse(e), +a=!1; +if(1758==+o.hfId?(a=!0,t.vZzwB.checkUrl=window.webUrl+'/login'):"68hwan"==o.channelID&&(a=!0,t.vZzwB.checkUrl=window.webUrl+'/user'),t.vZzwB.userInfo=o,t.vZzwB.checkUrl&&10010!=t.vZzwB.pfID){ +var s='&'; +for(var l in o)s+=l+"="+o[l]+"&"; +console.log('onUserInfo='+s); +var h=new XMLHttpRequest; +h.onreadystatechange=function(){ +if(4==h.readyState&&200==h.status)try{ +var e=JSON.parse(h.responseText); +e&&"success"==e.code?(console.log("验证角色信息通过了"),e.data&&(10029==t.vZzwB.pfID||a||10035==t.vZzwB.pfID||10039==t.vZzwB.pfID||10046==t.vZzwB.pfID)&&(t.vZzwB.userInfo.account=e.data,console.log("角色信息"+JSON.stringify(t.vZzwB.userInfo))),t.createServerView()):t&&t.XIFoU&&t.XIFoU("账号验证失败,请重新登录") +}catch(i){ +t&&t.XIFoU&&t.XIFoU("账号验证失败,请重新登录") +} +}, +h.open("GET",t.vZzwB.checkUrl+s+"time="+(new Date).getTime(),!0), +h.send(null) +}else t.createServerView() +}catch(c){ +console.log("账号信息错3!") +} +}), +egret.ExternalInterface.addCallback("onPayResult", +function(e){ +console.log("支付结果:"), +console.log(e) +}), +egret.ExternalInterface.addCallback("onLogout", +function(e){ +console.log("登出:"), +console.log(e), +t.onLogout(e) +}), +egret.ExternalInterface.addCallback("onMinor", +function(e){ +console.log(e) +}) +}, +t.Native_onClickLogin=function(e){ +e.loginType=t.vZzwB.loginType?1:0; +var i=JSON.stringify(e); +console.log("main:手机测试版本 onClickLogin"), +egret.ExternalInterface.call("onClickLogin",i) +}, +t.Native_onClickPay=function(e){ +console.log("main:手机测试版本 Native_onClickPay"); +window.payFunction(e); +}, +t.Native_RestartApp=function(e){ +e.loginType=t.vZzwB.loginType?1:0; +var i=JSON.stringify(e); +console.log("main:手机测试版本 restartApp"), +egret.ExternalInterface.call("restartApp",i) +}, +t.Native_initializationSDK=function(e){ +e.loginType=t.vZzwB.loginType?1:0; +var i=JSON.stringify(e); +console.log("main:手机测试版本 initializationSDK"), +egret.ExternalInterface.call("initializationSDK",i) +}, +t.Native_reportPlayerData=function(e){ +var t=JSON.stringify(e); +console.log("main:上报 reportInfo"), +egret.ExternalInterface.call("reportInfo",t) +}, +t.Native_adJustData=function(e){ +var t=JSON.stringify(e); +console.log("main:F1埋点 adJustData"), +egret.ExternalInterface.call("adJustData",t) +}, +t.Native_onCopy=function(e){ +console.log("main:手机版本复制 @onCopy"), +egret.ExternalInterface.call("@onCopy",e) +}, +t.Native_openURL=function(e){ +console.log("main:手机原生打开网址 openUrl"), +egret.ExternalInterface.call("@openUrl",e) +}, +t.Native_honghuSwitchAccount=function(e){ +window.location.href='play'; +}, +t.gongGaoView=null, +t.ageView=null, +t +}(eui.UILayer); +__reflect(Main.prototype,"Main"); +var app;! +function(e){ +var t=function(t){ +function i(){ +var i=t.call(this)||this; +i._selectJob=0, +i._selectSex=0, +i.isAutoEnter=!1, +i.roleData=null, +i.roleTexture=null, +i.mcName="", +i.roleMcFactory=new egret.MovieClipDataFactory, +i.autoCreateStr="", +e.ZgOY.ins().reporting(e.ReportDataEnum.CREATE_ROLE_VIEW,{}, +null,!1); +var r='\n \n \n \n \n \n \n \n '; +i.jobBtn=EXML.parse(r); +var n='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n '; +return i.clazz=EXML.parse(n), +i.skinName="MainCreateRoleSkin", +i.percentHeight=100, +i.percentWidth=100, +i.horizontalCenter=0, +i.verticalCenter=0, +i.job1.selected.source="login_zs_1", +i.job2.selected.source="login_fs_1", +i.job3.selected.source="login_ds_1", +i.boy.selected.source="login_nan_1", +i.girl.selected.source="login_nv_1", +i.setViewSize(), +i +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.createBtnMC=function(){ +var e=(RES.getRes(ZkSzi.RES_DIR+"create/create_anniu_json?v=7"),RES.getRes(ZkSzi.RES_DIR+"create/create_anniu_png?v=7"),null), +t=null, +i=this, +r=new egret.MovieClipDataFactory; +this.createMc=new egret.MovieClip, +this.createMc.touchEnabled=!1, +this.createMcGrp.addChild(this.createMc); +var n=function(){ +e&&t&&(r.clearCache(),r.mcDataSet=e,r.texture=t,i.createMc.movieClipData=r.generateMovieClipData("create_anniu"),i.createMc.gotoAndPlay(1,-1)) +}; +RES.getResByUrl(ZkSzi.RES_DIR+"eff/create_anniu.json?v=7", +function(t,i){ +t&&(e=t,n()) +}, +this,RES.ResourceItem.TYPE_JSON), +RES.getResByUrl(ZkSzi.RES_DIR+"eff/create_anniu.png?v=7", +function(e,i){ +e&&(t=e,n()) +}, +this,RES.ResourceItem.TYPE_IMAGE) +}, +i.prototype.createRoleMC=function(e){ +this.mcName=e, +this.roleData=null, +this.roleTexture=null, +RES.getResByUrl(ZkSzi.RES_DIR+"create/"+this.mcName+".json?v=7",this.compFuncJson,this,RES.ResourceItem.TYPE_JSON), +RES.getResByUrl(ZkSzi.RES_DIR+"create/"+this.mcName+".png?v=7",this.compFuncPng,this,RES.ResourceItem.TYPE_IMAGE) +}, +i.prototype.compFuncJson=function(e,t){ +e&&t&&-1!=t.indexOf(this.mcName)&&(this.roleData=e,this.createBody()) +}, +i.prototype.compFuncPng=function(e,t){ +e&&t&&-1!=t.indexOf(this.mcName)&&(this.roleTexture=e,this.createBody()) +}, +i.prototype.createBody=function(){ +this.roleData&&this.roleTexture&&(this.roleMcFactory.mcDataSet=this.roleData,this.roleMcFactory.texture=this.roleTexture,this.roleMc.movieClipData=this.roleMcFactory.generateMovieClipData(this.mcName),this.roleMc.gotoAndPlay(1,-1)) +}, +i.prototype.initUI=function(){ +this.autoCreateStr="秒后自动创建", +this.createBtn.icon="login_btn", +window.isTraditional&&(this.bgImg.source="login_bg1_jpg",this.createBtn.icon="login_btn1",this.job1.label="戰士",this.job2.label="法師",this.job3.label="道士",this.autoCreateStr="秒後自動創建"), +this.selectJob=1==Main.vZzwB.gameMode?1:window.randomRange(1,3), +this.selectSex=window.randomRange(0,1), +this.roleMc=new egret.MovieClip, +this.roleMc.touchEnabled=!1, +this.roleMc.scaleX=this.roleMc.scaleY=1.4, +this.roleGrp.addChild(this.roleMc), +this.createBtnMC(), +egret.MainContext.instance.stage.addEventListener(egret.Event.RESIZE,this.setViewSize,this), +this.job1.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.job2.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.job3.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.boy.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.girl.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.createBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.diceBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this); +var t=e.MiOx.nickName; +"null"==t||""==t?e.ubnV.ins().s_255_6(this._selectSex):this.setName(t), +this.nameInput.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.nameInput.maxChars=7; +}, +i.prototype.updateTiem=function(){ +var e=Math.ceil((this.openTime-egret.getTimer())/1e3); +this.timeLab.text=""+Math.max(e,0)+this.autoCreateStr, +0>=e&&(this.isAutoEnter=!0,this.sendCreateRole()) +}, +i.prototype.createRuselt=function(e){ +6==Math.abs(e) +}, +i.prototype.perloadProgress=function(e){ +e[0], +e[1] +}, +i.prototype.setViewSize=function(){ +var e=egret.MainContext.instance.stage.stageHeight; +e=i;i++){ +this["job"+i].currentState='up'; +} +if(1==Main.vZzwB.gameMode){ +this.job1.visible=this.job3.visible=!1; +this.job2.currentState="selected"; +this.job2.label=this.job1.label; +this.job2.selected.source='login_zs_1'; +}else{ +this["job"+e].currentState="selected"; +} +0==t?(this.boy.currentState="selected",this.girl.currentState="up"):(this.girl.currentState="selected",this.boy.currentState="up") +}, +i.prototype.setName=function(e){ +this.nameInput.text=e, +this.isAutoEnter&&this.sendCreateRole() +}, +i.prototype.curJob=function(){ +return this._selectJob +}, +i.prototype.curSex=function(){ +return this._selectSex +}, +i +}(eui.Component); +e.MainCreateRoleView=t, +__reflect(t.prototype,"app.MainCreateRoleView") +}(app||(app={})); +var app;! +function(e){ +var t=function(e){ +function t(){ +var t=e.call(this)||this, +i='\n \n \n \n \n\n '; +return EXML.parse(i), +t.skinName="GongGaoTabSkin", +t +} +return __extends(t,e), +t.prototype.dataChanged=function(){ +this.data&&(this.label.text=this.data.title) +}, +t +}(eui.ItemRenderer); +e.MainGongGaoItemView=t, +__reflect(t.prototype,"app.MainGongGaoItemView") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this; +e.gongGaoData=[]; +var i='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n '; +return e.clazz=EXML.parse(i), +e.skinName="MainGongGaoViewSkin", +e.horizontalCenter=e.verticalCenter=0, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.initUI=function(){ +this.gongGaoData=[], +this.tab.itemRenderer=e.MainGongGaoItemView, +this.sureBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.btn_close.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.tab.addEventListener(eui.ItemTapEvent.ITEM_TAP,this.onChange,this); +var t=this, +i=new XMLHttpRequest; +i.onreadystatechange=function(){ +if(4==i.readyState&&200==i.status)try{ +t.gongGaoData=JSON.parse(i.responseText), +t.updateTabInfo() +}catch(e){ +console.log("主界面公告返回失败") +} +}, +i.open("GET",Main.vZzwB.gongGaoUrl+"?platform="+Main.vZzwB.game+"&v="+(new Date).getTime(),!0), +i.send(null), +this.gongGaoScroller.viewport.scrollV=0, +this.gongGaoScroller&&this.gongGaoScroller.verticalScrollBar&&(this.gongGaoScroller.verticalScrollBar.autoVisibility=!1,this.gongGaoScroller.verticalScrollBar.visible=!1) +}, +i.prototype.onClick=function(t){ +switch(t.currentTarget){ +case this.sureBtn: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.removeView(); +break; +case this.btn_close: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.removeView() +} +}, +i.prototype.updateTabInfo=function(){ +this.gongGaoData.length>0&&(this.tab.dataProvider=new eui.ArrayCollection(this.gongGaoData),this.tab.selectedIndex=0,this.updateGongGaoText()) +}, +i.prototype.onChange=function(e){ +this.gongGaoScroller.viewport.scrollV=0, +this.updateGongGaoText() +}, +i.prototype.updateGongGaoText=function(){ +if(this.gongGaoData.length>0){ +var e=this.tab.dataProvider.getItemAt(this.tab.selectedIndex); +e&&e.text&&(this.textLab.textFlow=(new egret.HtmlTextParser).parser(e.text)) +} +}, +i.prototype.removeView=function(){ +this.gongGaoData=[], +this.sureBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.btn_close.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.tab.removeEventListener(eui.ItemTapEvent.ITEM_TAP,this.onChange,this), +this.parent&&(this.parent.removeChild(this),Main.gongGaoView=null) +}, +i +}(eui.Component); +e.MainGongGaoWin=t, +__reflect(t.prototype,"app.MainGongGaoWin") +}(app||(app={})); +var app;! +function(e){ +var t=function(e){ +function t(){ +var t=e.call(this)||this, +i='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n '; +return t.clazz=EXML.parse(i), +t.skinName="loadingview", +t.left=t.right=t.top=t.bottom=0, +t +} +return __extends(t,e), +t.prototype.childrenCreated=function(){ +e.prototype.childrenCreated.call(this), +this.BgImg.source=Main.vZzwB.gameLoadImg?Main.vZzwB.gameLoadImg:"mp_jzjm_png"; +window.isTraditional&&(this.BgImg.source="mp_jzjm2_png",this.reloadImg.source="login_wenzi4",this.firstLoadImg.source="login_wenzi5"), +this.reloadImg.addEventListener(egret.TouchEvent.TOUCH_TAP,this.reloadFunction,this) +}, +t.prototype.reloadFunction=function(){ +location.reload() +}, +t.prototype.showLoadProgress=function(e,t){ +this.rect.width=(100-Number(e))/100*879, +this.lodingDesc.text=t+"..."+e+"%" +}, +t.prototype.removeView=function(){ +this.reloadImg.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.reloadFunction,this), +this.parent&&this.parent.removeChild(this) +}, +t +}(eui.Component); +e.MainLoadingView=t, +__reflect(t.prototype,"app.MainLoadingView") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this, +i='\n \n \n \n \n \n\n '; +return e.clazz=EXML.parse(i), +e.skinName="MainLoginViewSkin", +e.left=e.right=e.top=e.bottom=0, +e.isEnter=!1, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.initUI=function(){ +this.enterGrp.visible=!0, +this.serverGrp.visible=!1, +this.shuangbeiGrp.visible=!0, +this.ageButton.visible=!0, +this.gameLoginBg.source="mp_xfjm_png", +this.gameLogo.source=Main.vZzwB.gameLogo?Main.vZzwB.gameLogo+"_png":"", +this.btnList.itemRenderer=e.ListButton, +this.serverList.itemRenderer=e.ServerItem, +this.switchAccountGrp.visible=!0, +this.selectServerImg.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.enterBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.closeBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.btnList.addEventListener(eui.ItemTapEvent.ITEM_TAP,this.onClickLeftList,this), +this.serverList.addEventListener(eui.ItemTapEvent.ITEM_TAP,this.onClickRightList,this), +this.gongGaoBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.ageButton.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.switchAccountGrp.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +KdbLz.os.KeyBoard.addKeyDown(this.keyDown,this), +this.gongGaoBtn.visible=Main.vZzwB.isShowGongGao?!0:!1, +this.enterBtn.icon="login_jinru", +10041==Main.vZzwB.pfID&&(this.enterGrp.verticalCenter=160), +window.isTraditional&&(this.serverSelect.text="區服選擇",this.serverTypeLab0.text="順 暢",this.serverTypeLab1.text="維 護",this.serverTypeLab2.text="爆 滿",this.enterBtn.icon="login_jinru1",this.serverSelectImg.source="login_xzqf1"), +Main.vZzwB.isAutoShowGongGao&&Main.showGongGaoView(); +var i=''; +i="资源版本: v"+Main.vZzwB.gameAppVersion, +i+="\n游戏版本: v"+Main.vZzwB.gameVersion, +this.versionLab.text=i; +}, +i.prototype.keyDown=function(e){ +if(e==KdbLz.KeyCode.KC_ENTER){ +this.enterGame(); +} +}, +i.prototype.onClick=function(t){ +switch(t.currentTarget){ +case this.selectServerImg: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.serverGrp.visible=!0, +this.enterGrp.visible=!1; +break; +case this.enterBtn: +this.enterGame(); +break; +case this.closeBtn: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.serverGrp.visible=!1, +this.enterGrp.visible=!0; +break; +case this.gongGaoBtn: +e.OSzbc.ins().wVgAo("anniu2_mp3"); +Main.showGongGaoView(); +break; +case this.ageButton: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +Main.showAgeoView() +break; +case this.switchAccountGrp: +e.OSzbc.ins().wVgAo("anniu2_mp3"); +setTimeout(function(){ +Main.Native_honghuSwitchAccount("1"); +},500); +} +}, +i.prototype.updateInfo=function(t,i){ +this.enterBtn.visible=!0; +this.btnList.selectedIndex=0, +this.curServerData=i, +this.curServerData.user=Main.vZzwB.userInfo.account, +this.curServerData.originalSrvid||(this.curServerData.originalSrvid=this.curServerData.srvid), +e.MiOx.Param=this.curServerData, +this.btnList.dataProvider=new eui.ArrayCollection(t); +var r=this.btnList.dataProvider.getItemAt(this.btnList.selectedIndex); +r&&r.serverlist&&(this.serverList.dataProvider=new eui.ArrayCollection(r.serverlist)), +this.setServerName() +}, +i.prototype.setNewServer=function(e){ +this.curServerData=e, +this.setServerName() +}, +i.prototype.onClickLeftList=function(t){ +e.OSzbc.ins().wVgAo("anniu2_mp3"); +var l=this.btnList.dataProvider.getItemAt(this.btnList.selectedIndex), +s=0==this.btnList.selectedIndex?l.serverlist:l.serverlist.slice().reverse(); +s&&l&&l.serverlist&&(this.serverList.dataProvider=new eui.ArrayCollection(s)) +}, +i.prototype.onClickRightList=function(t){ +e.OSzbc.ins().wVgAo("anniu2_mp3"); +this.curServerData=t.item, +this.curServerData.user=Main.vZzwB.userInfo.account, +this.curServerData.originalSrvid||(this.curServerData.originalSrvid=this.curServerData.srvid), +this.setServerName(), +this.serverGrp.visible=!1, +this.enterGrp.visible=!0; +this.enterGame(); +}, +i.prototype.setServerName=function(){ +if(this.curServerData&&1e?-1:e>t?1:0 +}, +e.sortAscAttr=function(t,i,r){ +var n; +if(void 0==r)n=e.sortAsc(t,i); +else{ +var o=t[r], +a=i[r]; +n=a>o?-1:o>a?1:0 +} +return n +}, +e.sortDesc=function(e,t){ +return e>t?-1:t>e?1:0 +}, +e.sortDescAttr=function(t,i,r){ +var n; +if(void 0==r)n=e.sortDesc(t,i); +else{ +var o=t[r], +a=i[r]; +n=o>a?-1:a>o?1:0 +} +return n +}, +e.binSearch=function(t,i,r){ +if(void 0===r&&(r=null),!t||0==t.length)return 0; +r||(r=e.sortAsc); +for(var n=0, +o=t.length-1;o>=n;){ +var a=o+n>>1, +s=t[a]; +r(s,i)<=0?n=a+1:o=a-1 +} +return n +}, +e.test=function(){ +for(var t=[],i=10,r=0;i>r;r++){ +var n=Math.floor(1e5*Math.random()), +o=e.binSearch(t,n); +t.splice(o,0,n) +} +if(t.length!=i)for(var a=0, +s=t;at[r+1]);r++); +}, +e +}(); +e.Algorithm=t, +__reflect(t.prototype,"app.Algorithm") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var i=t.call(this)||this; +i._selectJob=0, +i._selectSex=0, +i.isAutoEnter=!1, +i.roleData=null, +i.roleTexture=null, +i.mcName="", +i.roleMcFactory=new egret.MovieClipDataFactory, +e.ZgOY.ins().reporting(e.ReportDataEnum.CREATE_ROLE_VIEW,{}, +null,!1); +var r='\n \n \n \n \n \n \n \n '; +i.jobBtn=EXML.parse(r); +var n='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n '; +return i.clazz=EXML.parse(n), +i.skinName="PhoneCreateRole2Skin", +i.percentHeight=100, +i.percentWidth=100, +i.horizontalCenter=0, +i.verticalCenter=0, +i.job1.selected.source="login_zs_1", +i.job2.selected.source="login_fs_1", +i.job3.selected.source="login_ds_1", +i.boy.selected.source="login_nan_1", +i.girl.selected.source="login_nv_1", +i +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI(), +e.AHhkf.ins().KVqx("chuangjian_mp3") +}, +i.prototype.createBtnMC=function(){ +var e=(RES.getRes(ZkSzi.RES_DIR+"create/create_anniu_json?v=7"),RES.getRes(ZkSzi.RES_DIR+"create/create_anniu_png?v=7"),null), +t=null, +i=this, +r=new egret.MovieClipDataFactory; +this.createMc=new egret.MovieClip, +this.createMc.touchEnabled=!1, +this.createMcGrp.addChild(this.createMc); +var n=function(){ +e&&t&&(r.clearCache(),r.mcDataSet=e,r.texture=t,i.createMc.movieClipData=r.generateMovieClipData("create_anniu"),i.createMc.gotoAndPlay(1,-1)) +}; +RES.getResByUrl(ZkSzi.RES_DIR+"eff/create_anniu.json?v=7", +function(t,i){ +t&&(e=t,n()) +}, +this,RES.ResourceItem.TYPE_JSON), +RES.getResByUrl(ZkSzi.RES_DIR+"eff/create_anniu.png?v=7", +function(e,i){ +e&&(t=e,n()) +}, +this,RES.ResourceItem.TYPE_IMAGE) +}, +i.prototype.createRoleMC=function(e){ +this.mcName=e, +this.roleData=null, +this.roleTexture=null, +RES.getResByUrl(ZkSzi.RES_DIR+"create/"+this.mcName+".json?v=7",this.compFuncJson,this,RES.ResourceItem.TYPE_JSON), +RES.getResByUrl(ZkSzi.RES_DIR+"create/"+this.mcName+".png?v=7",this.compFuncPng,this,RES.ResourceItem.TYPE_IMAGE) +}, +i.prototype.compFuncJson=function(e,t){ +e&&t&&-1!=t.indexOf(this.mcName)&&(this.roleData=e,this.createBody()) +}, +i.prototype.compFuncPng=function(e,t){ +e&&t&&-1!=t.indexOf(this.mcName)&&(this.roleTexture=e,this.createBody()) +}, +i.prototype.createBody=function(){ +this.roleData&&this.roleTexture&&(this.roleMcFactory.mcDataSet=this.roleData,this.roleMcFactory.texture=this.roleTexture,this.roleMc.movieClipData=this.roleMcFactory.generateMovieClipData(this.mcName),this.roleMc.gotoAndPlay(1,-1)) +}, +i.prototype.initUI=function(){ +this.createBtn.icon="login_btn", +this.selectJob=window.randomRange(1,3), +this.selectSex=window.randomRange(0,1), +this.roleMc=new egret.MovieClip, +this.roleMc.touchEnabled=!1, +this.roleMc.scaleX=this.roleMc.scaleY=1.4, +this.roleGrp.addChild(this.roleMc), +this.createBtnMC(), +this.job1.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.job2.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.job3.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.boy.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.girl.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.createBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.diceBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this); +var t=e.MiOx.nickName; +"null"==t||""==t?e.ubnV.ins().s_255_6(this._selectSex):this.setName(t), +this.nameInput.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.nameInput.maxChars=7 +}, +i.prototype.close=function(){ +for(var t=[],i=0;i=i;i++)this["job"+i].currentState="up"; +this["job"+e].currentState="selected", +0==t?(this.boy.currentState="selected",this.girl.currentState="up"):(this.girl.currentState="selected",this.boy.currentState="up") +}, +i.prototype.setName=function(e){ +this.nameInput.text=e, +this.isAutoEnter&&this.sendCreateRole() +}, +i.prototype.curJob=function(){ +return this._selectJob +}, +i.prototype.curSex=function(){ +return this._selectSex +}, +i +}(eui.Component); +e.PhoneCreateRoleView=t, +__reflect(t.prototype,"app.PhoneCreateRoleView") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this, +i='\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n '; +return e.clazz=EXML.parse(i), +e.skinName="PhoneLoading2Skin", +e.percentHeight=100, +e.percentWidth=100, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.BgImg.source=Main.vZzwB.gameLoadImg?Main.vZzwB.gameLoadImg:"mp_jzjm_png", +e.AHhkf.ins().DHzYBI(), +10002==Main.vZzwB.pfID?this.version2.visible=!1:(10007==Main.vZzwB.pfID||10008==Main.vZzwB.pfID||10035==Main.vZzwB.pfID)&&(this.version1.visible=this.version2.visible=!1), +window.isTraditional&&(this.BgImg.source="mp_jzjm2_png",this.reloadImg.source="login_wenzi4",this.firstLoadImg.source="login_wenzi5"), +this.reloadImg.addEventListener(egret.TouchEvent.TOUCH_TAP,this.reloadFunction,this) +}, +i.prototype.reloadFunction=function(){ +location.reload() +}, +i.prototype.showLoadProgress=function(e,t){ +this.rect.width=(100-Number(e))/100*879, +this.lodingDesc.text=t+"..."+e+"%" +}, +i.prototype.removeView=function(){ +this.reloadImg.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.reloadFunction,this), +this.parent&&this.parent.removeChild(this) +}, +i +}(eui.Component); +e.PhoneLoadingView=t, +__reflect(t.prototype,"app.PhoneLoadingView") +}(app||(app={})); +var app; +!function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this; +e.httpNum=0; +var i='\n \n \n \n \n'; +return e.clazz=EXML.parse(i), +e.skinName="PhoneLoginView2Skin", +e.percentHeight=100, +e.percentWidth=100, +e.isEnter=!1, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.initUI=function(){ +if(this.privacyGrp.visible=!1,this.shuangbeiGrp.visible=!0,this.switchAccountGrp.visible=!0,KdbLz.qOtrbE.vDCH?e.AHhkf.ins().KVqx("xuanze_mp3"):KdbLz.qOtrbE.IsIOS?Main.vZzwB.isAutoShowGongGao&&egret.MainContext.instance.stage.addEventListener(egret.TouchEvent.TOUCH_TAP,this.stageClick,this):e.AHhkf.ins().KVqx("xuanze_mp3"),e.ZgOY.ins().reporting(e.ReportDataEnum.SELECT_SERVICE,{}, +null,!1),this.ageButton.visible=!0,this.enterGrp.visible=!0,this.serverGrp.visible=!1,this.gameLoginBg.source="mp_xfjm_png",this.gameLogo.source=Main.vZzwB.gameLogo?Main.vZzwB.gameLogo+"_png":"",this.btnList.itemRenderer=e.ListButton,this.serverList.itemRenderer=e.ServerItem,this.gongGaoBtn.visible=Main.vZzwB.isShowGongGao?!0:!1,this.selectServerImg.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.enterBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.closeBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.btnList.addEventListener(eui.ItemTapEvent.ITEM_TAP,this.onClickLeftList,this),this.serverList.addEventListener(eui.ItemTapEvent.ITEM_TAP,this.onClickRightList,this),this.gongGaoBtn.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.ageButton.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.userLab.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.privacyLab.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.userPrivacy.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.switchAccountGrp.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this),this.enterBtn.icon="login_jinru",window.isTraditional&&(this.serverSelect.text="區服選擇",this.serverTypeLab0.text="順 暢",this.serverTypeLab1.text="維 護",this.serverTypeLab2.text="爆 滿",this.enterBtn.icon="login_jinru1",this.serverSelectImg.source="login_xzqf1"),Main.vZzwB.isAutoShowGongGao&&Main.showGongGaoView(),10035==Main.vZzwB.pfID){ +this.gameLogo.top=94, +this.enterGrp.verticalCenter=137, +this.privacyGrp.visible=this.shuangbeiGrp.visible=!0, +this.version2.visible=!1, +this.version1.source="zjt10_png "; +var t=egret.localStorage.getItem("userCheckBox"); +t&&"1"==t?this.userPrivacy.selected=!0:this.userPrivacy.selected=!1 +} +var i=''; +Main.vZzwB.gameAppVersion&&""!=Main.vZzwB.gameAppVersion&&(i="应用版本: v"+Main.vZzwB.gameAppVersion), +Main.vZzwB.gameVersion&&""!=Main.vZzwB.gameVersion&&(i+="\n游戏版本: v"+Main.vZzwB.gameVersion), +this.versionLab.text=i; +}, +i.prototype.stageClick=function(){ +e.OSzbc.ins().wVgAo("anniu2_mp3"), +e.AHhkf.ins().KVqx("xuanze_mp3") +}, +i.prototype.onClick=function(t){ +switch(t.currentTarget){ +case this.selectServerImg: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.serverGrp.visible=!0, +this.enterGrp.visible=!1; +break; +case this.enterBtn: +if(10035==Main.vZzwB.pfID){ +var i=egret.localStorage.getItem("userCheckBox"); +if(!i||"0"==i)return void Main.XIFoU("请先勾选用户协议和隐私政策") +} +this.enterGame(); +break; +case this.closeBtn: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.serverGrp.visible=!1, +this.enterGrp.visible=!0; +break; +case this.gongGaoBtn: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +Main.showGongGaoView(); +break; +case this.ageButton: +e.OSzbc.ins().wVgAo("anniu2_mp3"), +Main.showAgeoView(); +break; +case this.userLab: +Main.Native_openURL(window.webUrl); +break; +case this.privacyLab: +Main.Native_openURL(window.webUrl); +break; +case this.userPrivacy: +egret.localStorage.setItem("userCheckBox",this.userPrivacy.selected?"1":"0"); +break; +case this.switchAccountGrp: +e.OSzbc.ins().wVgAo("anniu2_mp3"); +setTimeout(function(){ +Main.Native_honghuSwitchAccount("1"); +},500); +} +}, +i.prototype.updateInfo=function(e,t){ +this.enterBtn.visible=!0; +this.btnList.selectedIndex=0, +this.curServerData=t, +this.curServerData.user=Main.vZzwB.userInfo.account, +this.curServerData.originalSrvid||(this.curServerData.originalSrvid=this.curServerData.srvid), +this.btnList.dataProvider=new eui.ArrayCollection(e); +var i=this.btnList.dataProvider.getItemAt(this.btnList.selectedIndex); +i&&i.serverlist&&(this.serverList.dataProvider=new eui.ArrayCollection(i.serverlist.reverse())), +this.setServerName() +}, +i.prototype.onClickLeftList=function(t){ +e.OSzbc.ins().wVgAo("anniu2_mp3"); +var i=this.btnList.dataProvider.getItemAt(this.btnList.selectedIndex), +s=0==this.btnList.selectedIndex?i.serverlist:i.serverlist.slice().reverse(); +s&&i&&i.serverlist&&(this.serverList.dataProvider=new eui.ArrayCollection(s)) +}, +i.prototype.onClickRightList=function(t){ +e.OSzbc.ins().wVgAo("anniu2_mp3"), +this.curServerData=t.item, +this.curServerData.user=Main.vZzwB.userInfo.account, +this.curServerData.originalSrvid||(this.curServerData.originalSrvid=this.curServerData.srvid), +e.MiOx.Param=this.curServerData, +this.setServerName(), +this.serverGrp.visible=!1, +this.enterGrp.visible=!0; +this.enterGame(); +}, +i.prototype.setSwitchAccount=function(){ +this.switchAccountGrp.visible=!0; +}, +i.prototype.setServerName=function(){ +if(this.curServerData&&1=0;l--)if(s=n.serverlist[l],s.serverlist)for(var h=s.serverlist.length-1;h>=0;h--){ +e.MiOx.newestServer=s.serverlist[h], +e.MiOx.newestServer.user=Main.vZzwB.userInfo.account, +e.MiOx.newestServer.originalSrvid||(e.MiOx.newestServer.originalSrvid=e.MiOx.newestServer.srvid); +break +} +for(var c=[],p=[],g=[],l=0;a>l;l++)if(s=n.serverlist[l],s.serverlist&&s.serverlist.length>0&&(c.push(s),n.login&&n.login.length>0))for(var h=0;h0){ +var u=[], +m=c[c.length-1].serverlist; +if(m&&m.length){ +for(var x=0,y=m.length;x0){ +for(var l=0;l0){ +Main.phoneLoginView.updateInfo(c,g[0]), +g=g.reverse(), +c=c.reverse(), +c.unshift({ +name:"最近登录", +serverlist:g +}), +u.length&&c.unshift({ +name:"推荐新服", +serverlist:u +}); +}else{ +for(var d=null,l=a-1;l>=0;l--){ +s=n.serverlist[l]; +for(var f=s.serverlist.length-1;f>=0;f--)if(3!=s.serverlist[f].type||4!=s.serverlist[f].type){ +d=s.serverlist[f]; +break +} +if(d)break +} +d&&(c=c.reverse(),u.length&&c.unshift({ +name:"推荐新服", +serverlist:u +}),Main.phoneLoginView.updateInfo(c,d)) +} +}else 10010==Main.vZzwB.pfID&&Main.startServerTips("【先遣1服】将于8月19日14点正式开服,敬请期待。") +}, +t.copyDataHandler=function(e){ +var t; +if(e instanceof Array)t=[]; +else{ +if(!(e instanceof Object))return e; +t={} +} +for(var i=Object.keys(e),r=0,n=i.length;n>r;r++){ +var o=i[r]; +t[o]=this.copyDataHandler(e[o]) +} +return t +}, +t.prototype.getServiceErr=function(){ +e.ZgOY.ins().reporting(e.ReportDataEnum.GET_SERVER_LIST,{ +result:0 +}, +null,!1) +}, +t.prototype.onClickRightList=function(e){ +this.selectSerInfo=e.item, +this.selectSerInfo&&window.selectInfo(this.selectSerInfo) +}, +t.prototype.onButtonClick=function(){ +return null==this.selectSerInfo?void(Main&&Main.XIFoU&&Main.XIFoU("请选择服务器!")):void window.onClickLogin(this.selectSerInfo) +}, +t +}(); +e.PhoneServerListInfo=t, +__reflect(t.prototype,"app.PhoneServerListInfo") +}(app||(app={})); +var __reflect=this&&this.__reflect|| +function(e,t,i){ +e.__class__=t, +i?i.push(t):i=[t], +e.__types__=e.__types__?i.concat(e.__types__):i +}, +md5=function(){ +function e(){ +this.hexcase=0, +this.b64pad="" +} +return e.prototype.hex_md5=function(e){ +return this.rstr2hex(this.rstr_md5(this.str2rstr_utf8(e))) +}, +e.prototype.b64_md5=function(e){ +return this.rstr2b64(this.rstr_md5(this.str2rstr_utf8(e))) +}, +e.prototype.any_md5=function(e,t){ +return this.rstr2any(this.rstr_md5(this.str2rstr_utf8(e)),t) +}, +e.prototype.hex_hmac_md5=function(e,t){ +return this.rstr2hex(this.rstr_hmac_md5(this.str2rstr_utf8(e),this.str2rstr_utf8(t))) +}, +e.prototype.b64_hmac_md5=function(e,t){ +return this.rstr2b64(this.rstr_hmac_md5(this.str2rstr_utf8(e),this.str2rstr_utf8(t))) +}, +e.prototype.any_hmac_md5=function(e,t,i){ +return this.rstr2any(this.rstr_hmac_md5(this.str2rstr_utf8(e),this.str2rstr_utf8(t)),i) +}, +e.prototype.md5_vm_test=function(){ +return"900150983cd24fb0d6963f7d28e17f72"==this.hex_md5("abc").toLowerCase() +}, +e.prototype.rstr_md5=function(e){ +return this.binl2rstr(this.binl_md5(this.rstr2binl(e),8*e.length)) +}, +e.prototype.rstr_hmac_md5=function(e,t){ +var i=this.rstr2binl(e); +i.length>16&&(i=this.binl_md5(i,8*e.length)); +for(var r=Array(16),n=Array(16),o=0;16>o;o++)r[o]=909522486^i[o], +n[o]=1549556828^i[o]; +var a=this.binl_md5(r.concat(this.rstr2binl(t)),512+8*t.length); +return this.binl2rstr(this.binl_md5(n.concat(a),640)) +}, +e.prototype.rstr2hex=function(e){ +try{ +this.hexcase +}catch(t){ +this.hexcase=0 +} +for(var i,r=this.hexcase?"0123456789ABCDEF":"0123456789abcdef",n="",o=0;o>>4&15)+r.charAt(15&i); +return n +}, +e.prototype.rstr2b64=function(e){ +try{ +this.b64pad +}catch(t){ +this.b64pad="" +} +for(var i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", +r="", +n=e.length, +o=0;n>o;o+=3)for(var a=e.charCodeAt(o)<<16|(n>o+1?e.charCodeAt(o+1)<<8:0)|(n>o+2?e.charCodeAt(o+2):0),s=0;4>s;s++)r+=8*o+6*s>8*e.length?this.b64pad:i.charAt(a>>>6*(3-s)&63); +return r +}, +e.prototype.rstr2any=function(e,t){ +var i,r,n,o,a,s=t.length, +l=Array(Math.ceil(e.length/2)); +for(i=0;ir;r++){ +for(a=Array(),o=0,i=0;i0||n>0)&&(a[a.length]=n); +c[r]=o, +l=a +} +var p=""; +for(i=c.length-1;i>=0;i--)p+=t.charAt(c[i]); +return p +}, +e.prototype.str2rstr_utf8=function(e){ +for(var t,i,r="", +n=-1;++n=55296&&56319>=t&&i>=56320&&57343>=i&&(t=65536+((1023&t)<<10)+(1023&i),n++), +127>=t?r+=String.fromCharCode(t):2047>=t?r+=String.fromCharCode(192|t>>>6&31,128|63&t):65535>=t?r+=String.fromCharCode(224|t>>>12&15,128|t>>>6&63,128|63&t):2097151>=t&&(r+=String.fromCharCode(240|t>>>18&7,128|t>>>12&63,128|t>>>6&63,128|63&t)); +return r +}, +e.prototype.str2rstr_utf16le=function(e){ +for(var t="", +i=0;i>>8&255); +return t +}, +e.prototype.str2rstr_utf16be=function(e){ +for(var t="", +i=0;i>>8&255,255&e.charCodeAt(i)); +return t +}, +e.prototype.rstr2binl=function(e){ +for(var t=Array(e.length>>2),i=0;i>5]|=(255&e.charCodeAt(i/8))<>5]>>>i%32&255); +return t +}, +e.prototype.binl_md5=function(e,t){ +e[t>>5]|=128<>>9<<4)+14]=t; +for(var i=1732584193, +r=-271733879, +n=-1732584194, +o=271733878, +a=0;a>16)+(t>>16)+(i>>16); +return r<<16|65535&i +}, +e.prototype.bit_rol=function(e,t){ +return e<>>32-t +}, +e +}(); +__reflect(md5.prototype,"md5"); +var app; +!function(e){ +function t(e,t){ +return void 0===t&&(t=1), +e>=10?e.toString():0==t?e.toString():"0"+e +} +var i;! +function(e){ +e[e.LOGIN_VIEW=1]="LOGIN_VIEW", +e[e.SELECT_SERVICE=2]="SELECT_SERVICE", +e[e.CLICK_LOGIN=3]="CLICK_LOGIN", +e[e.LOGIN_SUCCESS=4]="LOGIN_SUCCESS", +e[e.LINK_SERVER=5]="LINK_SERVER", +e[e.LINK_SERVER_SUCCESS=6]="LINK_SERVER_SUCCESS", +e[e.LINK_SERVER_FAIL=7]="LINK_SERVER_FAIL", +e[e.LINK_SERVER_CLOSE=8]="LINK_SERVER_CLOSE", +e[e.SWITCH_ROLE=9]="SWITCH_ROLE", +e[e.CREATE_ROLE_VIEW=10]="CREATE_ROLE_VIEW", +e[e.CLICK_CREATE_ROLE=11]="CLICK_CREATE_ROLE", +e[e.CREATE_ROLE_SUCCESS=12]="CREATE_ROLE_SUCCESS", +e[e.GET_SERVER_LIST=13]="GET_SERVER_LIST", +e[e.Chat=15]="Chat", +e[e.UserCheck=16]="UserCheck", +e[e.ONCLICK_CREATE=17]="ONCLICK_CREATE", +e[e.ONCLICK_WELCOME=18]="ONCLICK_WELCOME", +e[e.ENTERMAIN=19]="ENTERMAIN", +e[e.COMPLETETASK=20]="COMPLETETASK", +e[e.MICROTERMS_DOWNLOAD=21]="MICROTERMS_DOWNLOAD", +e[e.ONCLICK_WELCOME2=22]="ONCLICK_WELCOME2", +e[e.GET_ROLE_LIST=23]="GET_ROLE_LIST", +e[e.LOAD_GAMEAPP=24]="LOAD_GAMEAPP", +e[e.UPDATE_LEVEL=1e3]="UPDATE_LEVEL", +e[e.UPDATE_POWER=1001]="UPDATE_POWER", +e[e.CHANGE_NAME=1002]="CHANGE_NAME", +e[e.CLICK_PAY=2001]="CLICK_PAY", +e[e.ERROR=9999]="ERROR", +e[e.Report_10000=1e4]="Report_10000", +e[e.Report_10001=10001]="Report_10001" +}(i=e.ReportDataEnum||(e.ReportDataEnum={})); +var r=function(){ +function r(){ +this.msgAry=[], +this.jobAry=["","战士","法师","道士"] +} +return r.ins=function(){ +return this._ins=this._ins||new r, +this._ins +}, +r.prototype.reporting=function(t,r,n,o){ +if(void 0===r&&(r=null),void 0===n&&(n=null),void 0===o&&(o=!0),(!e.ubnV.ihUJ||t==i.Chat)&&(egret.log("reporttype:"+t),Main.vZzwB.isReport)){ +var a=window.loginWay?1:0, +s={ +type:t, +counter:Main.vZzwB.pfID, +env:Main.vZzwB.game+"|"+a, +time:Date.parse((new Date).toString())/1e3 +}; +s.sign=(new md5).hex_md5(t+s.env+s.time+Main.vZzwB.pfID+"ddcqweb"); +var l=egret.getDefinitionByName("app.NWRFmB"), +h=egret.getDefinitionByName("app.MiOx"), +c=egret.getDefinitionByName("app.GameMap"), +p=egret.getDefinitionByName("app.VipData"); +if(r&&l){ +var g=l.ins().getPayer; +g&&g.propSet&&(r.roleName=g.propSet.getName(),r.level=g.propSet.mBjV(),r.zsLevel=g.propSet.MzYki(),r.sex=g.propSet.getSex(),r.job=g.propSet.getAP_JOB(),r.guildName=g.propSet.getGuildName(),r.moneyNums=g.propSet.getNotBindYuanBao(),r.guildID=g.propSet.getGuildId(),r.roleCreateTime=g.propSet.getRoleCreateTime()), +h&&(r.uid=h.openID,r.roleId=h.roleId,r.serverId=h.srvid,r.serverName=h.srvname,r.serverOriginaId=h.originalSrvid), +c&&(r.mapID=c.mapID), +p&&(r.vipLv=p.ins().getMyVipLv()) +}else r={}; +if(r.uid=Main.vZzwB.userInfo.account,void 0==r.roleId&&(r.roleId=""),r.serverAlias=Main.vZzwB.userInfo.server?Main.vZzwB.userInfo.server:h?h.serverAlias:"",n)for(var u in n)r[u]=n[u]; +if(Main.vZzwB.isReportPF&&(s.data=r,KdbLz.qOtrbE.vDCH?this.ReportingFunction(s):window.ReportingFunction(s)),r&&!KdbLz.qOtrbE.vDCH&&10046!=Main.vZzwB.pfID)for(var u in r)r[u]=encodeURIComponent(r[u]); +s.data=r; +var m=JSON.stringify(s); +this.msgAry.push(m), +s=null, +this.callbackFun() +} +}, +r.prototype.callbackFun=function(){ +if(!this.httpReq&&this.msgAry.length){ +var t=this.msgAry.shift(); +this.httpReq=new egret.HttpRequest, +this.httpReq.addEventListener(egret.Event.COMPLETE,this.getServiceComp,this), +this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR,this.getServiceComp,this), +this.httpReq.open(Main.vZzwB.reportURL+"&msg="+t,egret.HttpMethod.GET), +this.httpReq.send(), +e.KHNO.ins().tBiJo(5e3,1,this.getServiceComp,this) +} +}, +r.prototype.getServiceComp=function(t){ +e.KHNO.ins().remove(this.getServiceComp,this), +this.httpReq.removeEventListener(egret.Event.COMPLETE,this.getServiceComp,this), +this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR,this.getServiceComp,this), +this.httpReq=null, +this.callbackFun() +}, +r.prototype.ReportingFunction=function(e){ +if(e)if(10007==Main.vZzwB.pfID){ +if(12==e.type){ +var t=this.format_2(), +i="?user_id="+e.data.uid+"&game_id=60&server_id="+e.data.serverId+"&role_id="+e.data.roleId+"&role_name="+e.data.roleName+"&create_date="+t+"&ts="+Date.parse((new Date).toString())/1e3, +r=new egret.HttpRequest; +r.open(Main.vZzwB.reportURLPF+i,egret.HttpMethod.GET), +r.send() +} +}else if(10010==Main.vZzwB.pfID||10024==Main.vZzwB.pfID){ +if(12==e.type||4==e.type||1e3==e.type){ +var n=this.getVipLv(e.data.vipLv), +o=1==e.data.job?"战士":2==e.data.job?"法师":"道士"; +Main.Native_reportPlayerData({ +dataType:e.type, +serverID:e.data.serverId, +serverName:e.data.serverName, +roleID:e.data.roleId, +roleName:e.data.roleName, +roleLevel:e.data.level, +moneyNum:e.data.moneyNums, +roleCreateTime:e.data.roleCreateTime?Math.floor(e.data.roleCreateTime/1e3):"", +roleLevelUpTime:Math.floor((new Date).getTime()/1e3), +vip:n, +roleCareer:o +}) +} +}else if(2==e.type||12==e.type||4==e.type||1e3==e.type){ +var n=this.getVipLv(e.data.vipLv), +a={ +dataType:e.type, +moneyNum:e.data.moneyNums?e.data.moneyNums:0, +guildID:e.data.guildID?e.data.guildID:0, +guildName:e.data.guildName?e.data.guildName:"", +roleCreateTime:e.data.roleCreateTime?Math.floor(e.data.roleCreateTime/1e3):"0", +roleID:e.data.roleId, +roleId:e.data.roleId, +roleName:e.data.roleName?e.data.roleName:"", +roleLevel:e.data.level?e.data.level:1, +roleLevelUpTime:Math.floor((new Date).getTime()/1e3), +zsLevel:e.data.zsLevel?e.data.zsLevel:0, +uid:e.data.uid, +serverID:e.data.serverId, +serverName:e.data.serverName, +serverOriginaId:e.data.serverOriginaId, +vip:n, +roleSex:e.data.sex?"女":0==e.data.sex?"男":"", +professionId:e.data.job?e.data.job:0, +profession:e.data.job?this.jobAry[e.data.job]:"" +}; +10011==Main.vZzwB.pfID?a.zsLevel&&(a.roleLevel=1e3*a.zsLevel+a.roleLevel):10041==Main.vZzwB.pfID?a.serverID=e.data.serverOriginaId%1e4:10012==Main.vZzwB.pfID||10041==Main.vZzwB.pfID?4==a.dataType&&(a.dataType=1e3):10046==Main.vZzwB.pfID&&(a.serverOriginaId=e.data.serverOriginaId%1e3), +Main.Native_reportPlayerData(a) +} +}, +r.prototype.format_2=function(){ +var e=new Date, +i=e.getFullYear(), +r=e.getMonth()+1, +n=e.getDate(), +o=e.getHours(), +a=e.getMinutes(), +s=e.getSeconds(); +return i+"-"+t(r)+"-"+t(n)+" "+t(o)+":"+t(a)+":"+t(s) +}, +r.prototype.getVipLv=function(e){ +var t=0; +if(e)for(var i=4;10>i;i++){ +var r=e>>i-1&1; +r&&(t=i-3) +} +return t +}, +r +}(); +e.ZgOY=r, +__reflect(r.prototype,"app.ZgOY") +}(app||(app={})); +var ZkSzi=function(){ +function e(){} +return e.Init=function(){ +e.RES_DIR_BLOOD=e.RES_DIR+"blood/", +e.RES_DIR_BODY=e.RES_DIR+"body/", +e.RES_DIR_BODY_SUIT=e.RES_DIR+"bodysuit/", +e.RES_DIR_BODY_EFF=e.RES_DIR+"bodyeff/", +e.RES_DIR_EFF=e.RES_DIR+"eff/", +e.RES_DIR_WIMGEFF=e.RES_DIR+"weaponimgeff/", +e.RES_DIR_TITLE=e.RES_DIR+"title/", +e.RES_DIR_MONSTER=e.RES_DIR+"monster/", +e.RES_DIR_SKILL=e.RES_DIR+"skill/", +e.RES_DIR_WEAPON=e.RES_DIR+"weapon/", +e.RES_DIR_WEAPONEFF=e.RES_DIR+"weaponeff/", +e.RES_DIR_HAIR=e.RES_DIR+"hair/", +e.RES_DIR_TELEPORT=e.RES_DIR+"teleport/", +e.RES_DIR_NPC=e.RES_DIR+"npc/", +e.RES_DIR_CREATE=e.RES_DIR+"create/", +e.RES_DIR_WORSHIP=e.RES_DIR+"Worship/", +e.RES_DIR_PET=e.RES_DIR+"pet/", +e.RES_DIR_PETEXTERIOR=e.RES_DIR+"petexterior/" +}, +e.RES_ROOT="", +e.XvMAVE="resource/", +e.WGMF="resource_Publish/", +e.RES_DIR="res/", +e.RES_DIR_Android="resource/assets/res/", +e.MAP_DIR="map/", +e.MAP_DIR_Android="resource/assets/map/", +e.RES_DIR_BLOOD=e.RES_DIR+"blood/", +e.RES_DIR_BODY=e.RES_DIR+"body/", +e.RES_DIR_BODY_SUIT=e.RES_DIR+"bodysuit/", +e.RES_DIR_BODY_EFF=e.RES_DIR+"bodyeff/", +e.RES_DIR_EFF=e.RES_DIR+"eff/", +e.RES_DIR_WIMGEFF=e.RES_DIR+"weaponimgeff/", +e.RES_DIR_TITLE=e.RES_DIR+"title/", +e.RES_DIR_MONSTER=e.RES_DIR+"monster/", +e.RES_DIR_SKILL=e.RES_DIR+"skill/", +e.RES_DIR_WEAPON=e.RES_DIR+"weapon/", +e.RES_DIR_WEAPONEFF=e.RES_DIR+"weaponeff/", +e.RES_DIR_HAIR=e.RES_DIR+"hair/", +e.RES_DIR_TELEPORT=e.RES_DIR+"teleport/", +e.RES_DIR_NPC=e.RES_DIR+"npc/", +e.RES_DIR_CREATE=e.RES_DIR+"create/", +e.RES_DIR_WORSHIP=e.RES_DIR+"Worship/", +e.RES_DIR_PET=e.RES_DIR+"pet/", +e.RES_DIR_PETEXTERIOR=e.RES_DIR+"petexterior/", +e +}(); +__reflect(ZkSzi.prototype,"ZkSzi"); +var KdbLz; +!function(e){ +var t=function(){ +function e(){ +this.displayList=egret.createMap(), +this.resDisTime={}, +this.isFirstEnter=!1, +this._clearWin=3e4, +this._clearRes=3e4, +this._iscardMapTime=1e4, +this._resResource="resource/", +this._resMovieClip="res/", +this._filterMoviceResource=" " +} +return Object.defineProperty(e.prototype,"clearWin",{ +get:function(){ +return this._clearWin +}, +set:function(e){ +this._clearWin=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"clearRes",{ +get:function(){ +return this._clearRes +}, +set:function(e){ +this._clearRes=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"iscardMapTime",{ +get:function(){ +return this._iscardMapTime +}, +set:function(e){ +this._iscardMapTime=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"resResource",{ +get:function(){ +return this._resResource +}, +set:function(e){ +this._resResource=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"resMovieClip",{ +get:function(){ +return this._resMovieClip +}, +set:function(e){ +this._resMovieClip=e +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"filterMoviceResource",{ +get:function(){ +return this._filterMoviceResource +}, +set:function(e){ +this._filterMoviceResource=e +}, +enumerable:!0, +configurable:!0 +}), +e.ins=function(){ +var e=this; +return e._instance||(e._instance=new e), +e._instance +}, +e.prototype.createMap=function(e){ +var t,i,r=RES.getAnalyzers(); +for(var n in r)i=r[n], +i instanceof egret.Texture&&-1!=n.indexOf(e)&&(t=RES.getResourceInfo(n),t&&RES.host.unload(t)) +}, +e.prototype.createDiscardMap=function(e){ +var t,i,r,n=RES.getAnalyzers(), +o=egret.getTimer(); +for(var a in n)if(-1!=a.indexOf(e)&&(r=n[a],r instanceof egret.Texture&&r.bitmapData&&r.bitmapData.hashCode)){ +i=r.bitmapData.hashCode; +var s=egret.BitmapData._displayList[i]; +s&&0!=s.length||this.resDisTime[i]&&o-this.resDisTime[i]>this._iscardMapTime&&t&&(t=RES.getResourceInfo(a),delete this.resDisTime[i],RES.host.unload(t)) +} +n=null +}, +e.prototype.destroyWin=function(){ +var e,t,i,r,n=RES.getAnalyzers(), +o=egret.getTimer(); +for(var a in n)-1!=a.indexOf(this.resResource)&&(i=n[a],i instanceof egret.SpriteSheet?i.$texture&&i.$texture.bitmapData&&i.$texture.bitmapData.hashCode&&(t=i.$texture.bitmapData.hashCode,r=egret.BitmapData._displayList[t],r&&0!=r.length||this.resDisTime[t]&&o-this.resDisTime[t]>this._clearWin&&(delete this.resDisTime[t],a=a.replace(this._resResource,""),RES.destroyRes(a))):i instanceof egret.Texture&&i.bitmapData&&i.bitmapData.hashCode&&(t=i.bitmapData.hashCode,r=egret.BitmapData._displayList[t],r&&0!=r.length||this.resDisTime[t]&&o-this.resDisTime[t]>this._clearWin&&(e=RES.getResourceInfo(a),e&&(delete this.resDisTime[t],RES.host.unload(e))))); +n=null +}, +e.prototype.destroyRes=function(){ +var e,t,i,r=egret.getTimer(), +n=RES.getAnalyzers(); +for(var o in n)if(t=n[o],t instanceof egret.Texture&&-1!=o.indexOf(this._resMovieClip)&&o.indexOf(this._filterMoviceResource)<0&&t.bitmapData&&t.bitmapData.hashCode){ +e=t.bitmapData.hashCode; +var a=this.displayList[e]; +if(!a||!a.length){ +if(!this.resDisTime[e])continue; +r-this.resDisTime[e]>this._clearRes&&(i=RES.getResourceInfo(o),i&&(delete this.displayList[e],delete this.resDisTime[e],RES.host.unload(i))) +} +} +n=null +}, +e.prototype.deleteDisplay=function(e){ +delete this.displayList[e] +}, +e.prototype.getDisplay=function(e){ +return this.displayList[e] +}, +e.prototype.addDisplay=function(e,t){ +return this.displayList[e]=t +}, +e.prototype.disposeResTime=function(e){ +this.resDisTime[e]=egret.getTimer() +}, +e.prototype.delResTime=function(e){ +delete this.resDisTime[e] +}, +e +}(); +e.Pczy=t, +__reflect(t.prototype,"KdbLz.Pczy") +}(KdbLz||(KdbLz={})); +var app;! +function(e){ +var t=function(e){ +function t(){ +var t=e.call(this)||this, +i='\n \n \n \n \n\n '; +return EXML.parse(i), +t.skinName="MainLoginServerListInfoSkin", +t +} +return __extends(t,e), +t.prototype.dataChanged=function(){ +this.dataInfo=this.data, +this.imgState.source=4!=+this.data.type?"login_dian_"+this.data.type:"login_dian_1", +this.serverText.text=this.data.serverName, +1==this.data.type?this.serverText.textFlow=[ +{ +text:" "+this.data.serverName +}, +{ +text:"(新)", +style:{ +textColor:2682369 +} +} +]:( +this.serverText.textFlow=[ +{ +text:" "+this.data.serverName +}, +{ +text:"(满)", +style:{ +textColor:'0xe50000' +} +} +] +) +}, +t +}(eui.ItemRenderer); +e.ServerItem=t, +__reflect(t.prototype,"app.ServerItem") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function t(){ +this.httpNum=0, +this.serverArr=[], +this.leftStrArr=[] +} +return t.prototype.getServerInfo=function(){ +this.httpReq&&(this.httpReq.removeEventListener(egret.Event.COMPLETE,this.getServiceComp,this),this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR,this.getServiceErr,this)), +this.httpReq=new egret.HttpRequest, +this.httpReq.addEventListener(egret.Event.COMPLETE,this.getServiceComp,this), +this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR,this.getServiceErr,this), +Main.vZzwB.loginType?this.httpReq.open(Main.vZzwB.serviceListdUrl+"?account="+Main.vZzwB.userInfo.account+"&pf="+Main.vZzwB.pf+"&t="+egret.getTimer(),egret.HttpMethod.GET):this.httpReq.open(Main.vZzwB.serviceListdUrl+"?account="+Main.vZzwB.userInfo.account+"&pf="+Main.vZzwB.pf+"&t="+egret.getTimer(),egret.HttpMethod.GET), +this.httpReq.send(), +this.timer&&(this.timer.stop(),this.timer.removeEventListener(egret.TimerEvent.TIMER_COMPLETE,this.timerComFunc,this)), +this.timer=new egret.Timer(5e3,1), +this.timer.addEventListener(egret.TimerEvent.TIMER_COMPLETE,this.timerComFunc,this), +this.httpNum+=1 +}, +t.prototype.timerComFunc=function(){ +Main&&Main.XIFoU&&Main.XIFoU('正在拉取服务器...'), +this.getServerInfo() +}, +t.prototype.getServiceComp=function(t){ +e.ZgOY.ins().reporting(e.ReportDataEnum.GET_SERVER_LIST,{ +result:1 +}, +null,!1), +this.timer.stop(), +this.timer.removeEventListener(egret.TimerEvent.TIMER_COMPLETE,this.timerComFunc,this), +this.httpNum=0, +this.serverArr=[], +this.leftStrArr=[]; +var i=t.target; +if(null==i.response||0==i.response||""==i.response)return void(Main&&Main.XIFoU&&Main.XIFoU("暂无服务器!")); +var r={}; +try{ +r=JSON.parse(i.response) +}catch(n){ +alert("服务器请求超时,请退出游戏重新打开!") +} +var o=0; +r.serverlist&&(o=r.serverlist.length); +for(var a,s=o-1;s>=0;s--)if(a=r.serverlist[s],a.serverlist)for(var l=a.serverlist.length-1;l>=0;l--){ +e.MiOx.newestServer=a.serverlist[l], +e.MiOx.newestServer.user=Main.vZzwB.userInfo.account, +e.MiOx.newestServer.originalSrvid||(e.MiOx.newestServer.originalSrvid=e.MiOx.newestServer.srvid); +break +} +if(window.selectServer){ +for(var h=[],c=[],p=[],s=0;o>s;s++)if(a=r.serverlist[s],a.serverlist&&a.serverlist.length>0&&(h.push(a),r.login&&r.login.length>0))for(var l=0;l0){ +var u=[], +m=h[h.length-1].serverlist; +if(m&&m.length){ +for(var x=0,y=m.length;x0)for(var s=0;s0)window.selectView.updateInfo(h,p[0]), +p=p.reverse(), +h=h.reverse(), +h.unshift({ +name:"最近登录", +serverlist:p +}), +u.length&&h.unshift({ +name:"推荐新服", +serverlist:g +}); +else{ +for(var m=null,s=o-1;s>=0;s--){ +a=r.serverlist[s]; +for(var d=a.serverlist.length-1;d>=0;d--)if(3!=a.serverlist[d].type||4!=a.serverlist[d].type){ +m=a.serverlist[d]; +break +} +if(m)break +} +m&&( +h=h.reverse(), +u.length&&h.unshift({ +name:"推荐新服", +serverlist:u +}), +window.selectView.updateInfo(h,m) +) +} +}else 10010==Main.vZzwB.pfID&&Main.startServerTips("【先遣1服】将于8月19日14点正式开服,敬请期待。") +}else{ +for(var m=null,s=0;o>s;s++)if(a=r.serverlist[s],a.serverlist)for(var l=0;l PUmMeO'); +return void e.ubnV.ins().PUmMeO(); +} +} +Main&&Main.XIFoU&&Main.XIFoU("区服信息错误!") +} +}, +t.prototype.getServiceErr=function(){ +e.ZgOY.ins().reporting(e.ReportDataEnum.GET_SERVER_LIST,{ +result:0 +}, +null,!1) +}, +t.prototype.onClickRightList=function(e){ +this.selectSerInfo=e.item, +this.selectSerInfo&&window.selectInfo(this.selectSerInfo) +}, +t.prototype.onButtonClick=function(){ +return null==this.selectSerInfo?void(Main&&Main.XIFoU&&Main.XIFoU("请选择服务器!")):void window.onClickLogin(this.selectSerInfo) +}, +t +}(); +e.ServerListInfo=t, +__reflect(t.prototype,"app.ServerListInfo") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this, +i='\n \n \n \n \n \n \n \n \n \n \n \n \n'; +return e.clazz=EXML.parse(i), +e.skinName="PhoneTestSkin2", +e.percentHeight=100, +e.percentWidth=100, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.initUI=function(){ +if(KdbLz.qOtrbE.IsIOS?Main.vZzwB.isAutoShowGongGao&&egret.MainContext.instance.stage.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this):e.AHhkf.ins().KVqx("xuanze_mp3"),Main.vZzwB.loginType)this.signInButton.visible=!1, +this.input.visible=!1, +this.rect.visible=!1; +else{ +this.signInButton.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this); +var t=egret.localStorage.getItem("signInUID"); +t&&t.length&&(this.input.text=t) +} +}, +i.prototype.stageClick=function(){ +egret.MainContext.instance.stage.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this), +e.AHhkf.ins().KVqx("xuanze_mp3") +}, +i.prototype.onClick=function(e){ +if(this.input.text.length){ +egret.localStorage.setItem("signInUID",this.input.text); +var t={ +uid:this.input.text +}; +Main.vZzwB.userInfo=t, +Main.createServerView() +} +}, +i.prototype.removeView=function(){ +egret.MainContext.instance.stage.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this), +this.signInButton.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.parent&&this.parent.removeChild(this) +}, +i +}(eui.Component); +e.SignInView=t, +__reflect(t.prototype,"app.SignInView") +}(app||(app={})); +var app;! +function(e){ +var t=function(t){ +function i(){ +var e=t.call(this)||this, +i='\n \n \n \n \n \n \n \n \n'; +return e.clazz=EXML.parse(i), +e.skinName="PhoneTestSkinH5", +e.percentHeight=100, +e.percentWidth=100, +e +} +return __extends(i,t), +i.prototype.childrenCreated=function(){ +t.prototype.childrenCreated.call(this), +this.initUI() +}, +i.prototype.initUI=function(){ +KdbLz.qOtrbE.IsIOS?Main.vZzwB.isAutoShowGongGao&&egret.MainContext.instance.stage.addEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this):e.AHhkf.ins().KVqx("xuanze_mp3"), +this.signInButton.addEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.onClick(null) +}, +i.prototype.stageClick=function(){ +egret.MainContext.instance.stage.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this), +e.AHhkf.ins().KVqx("xuanze_mp3") +}, +i.prototype.onClick=function(e){ +window.loginFunction&&window.loginFunction() +}, +i.prototype.removeView=function(){ +egret.MainContext.instance.stage.removeEventListener(egret.TouchEvent.TOUCH_BEGIN,this.stageClick,this), +this.signInButton.removeEventListener(egret.TouchEvent.TOUCH_TAP,this.onClick,this), +this.parent&&this.parent.removeChild(this) +}, +i +}(eui.Component); +e.SignInViewH5=t, +__reflect(t.prototype,"app.SignInViewH5") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function e(){ +this.select=!1 +} +return e.prototype.read=function(e){ +e&&(this.id=e.readUnsignedInt(),this.name=e.readString(),this.faceId=e.readUnsignedByte(),this.sex=e.readByte(),this.level=e.readShort(),this.level<1&&(this.level=1),this.zsLevel=e.readShort(),this.job=e.readByte(),e.readByte(),this.isBan=(1&e.readByte())>0,this.guildName=e.readString()) +}, +e +}(); +e.SimplePlayerInfo=t, +__reflect(t.prototype,"app.SimplePlayerInfo") +}(app||(app={})); +var ThemeAdapter=function(){ +function e(){} +return e.prototype.getTheme=function(e,t,i,r){ +function n(e){ +t.call(r,e) +} +function o(t){ +t.resItem.url==e&&(RES.removeEventListener(RES.ResourceEvent.ITEM_LOAD_ERROR,o,null),i.call(r)) +} +var a=this; +if("undefined"!=typeof generateEUI)egret.callLater(function(){ +t.call(r,generateEUI) +}, +this); +else if("undefined"!=typeof generateEUI2)RES.getResByUrl("resource/gameEui.json?v=1.1.9", // + Math.random(), +function(e,i){ +window.JSONParseClass.setData(e), +egret.callLater(function(){ +t.call(r,generateEUI2) +},a) +}, +this,RES.ResourceItem.TYPE_JSON); +else if("undefined"!=typeof generateJSON)if(e.indexOf(".exml")>-1){ +var s=e.split("/"); +s.pop(); +var l=s.join("/")+"_EUI.json"; +generateJSON.paths[e]?egret.callLater(function(){ +t.call(r,generateJSON.paths[e]) +}, +this):RES.getResByUrl(l, +function(i){ +window.JSONParseClass.setData(i), +egret.callLater(function(){ +t.call(r,generateJSON.paths[e]) +}, +a) +}, +this,RES.ResourceItem.TYPE_JSON) +}else egret.callLater(function(){ +t.call(r,generateJSON) +}, +this); +else RES.addEventListener(RES.ResourceEvent.ITEM_LOAD_ERROR,o,null), +RES.getResByUrl(e,n,this,RES.ResourceItem.TYPE_TEXT) +}, +e +}(); +__reflect(ThemeAdapter.prototype,"ThemeAdapter",["eui.IThemeAdapter"]); +var app;! +function(e){ +var t=function(){ +function t(){ +this.currHandler=null, +this._handlers=[], +this.nexthandles=null, +this._currTime=egret.getTimer(), +this._currFrame=0, +egret.startTick(this.onEnterFrame,this) +} +return t.ins=function(){ +var e=this; +return e._instance||(e._instance=new e), +e._instance +}, +t.prototype.getFrameId=function(){ +return this._currFrame +}, +t.prototype.getCurrTime=function(){ +return this._currTime +}, +t.binFunc=function(e,t){ +return e.exeTime>t.exeTime?-1:e.exeTime0){ +for(var o=0, +a=n;o1?(l.repeatCount--,h=!0):l.onFinish&&l.onFinish.apply(l.finishObj)),h){ +var c=e.Algorithm.binSearch(this._handlers,l,t.binFunc); +this._handlers.splice(c,0,l) +}else t.DeleteHandle(l); +if(r-this._currTime>5)break; +if(this._handlers.length<=0)break; +l=this._handlers[this._handlers.length-1] +} +return this.currHandler=null, +!1 +}, +t.prototype.create=function(i,r,n,o,a,s,l){ +if(!(0>r||0>n||null==o)){ +var h=e.ObjectPool.pop("app.TimerHandler"); +h.forever=0==n, +h.repeatCount=n, +h.delay=r, +h.method=o, +h.methodObj=a, +h.onFinish=s, +h.finishObj=l, +h.exeTime=i+this._currTime; +var c=e.Algorithm.binSearch(this._handlers,h,t.binFunc); +this._handlers.splice(c,0,h) +} +}, +t.prototype.tBiJo=function(e,t,i,r,n,o){ +void 0===n&&(n=null), +void 0===o&&(o=null), +this.create(e,e,t,i,r,n,o) +}, +t.prototype.rqDkE=function(e,t,i,r,n,o,a){ +void 0===o&&(o=null), +void 0===a&&(a=null), +this.create(e,t,i,r,n,o,a) +}, +t.prototype.doNext=function(t,i){ +var r=e.ObjectPool.pop("app.TimerHandler"); +r.method=t, +r.methodObj=i, +this.nexthandles||(this.nexthandles=[]), +this.nexthandles.push(r) +}, +t.prototype.remove=function(e,i){ +var r=this.currHandler; +r&&r.method==e&&r.methodObj==i&&(r.forever=!1,r.repeatCount=0); +for(var n=this._handlers.length-1;n>=0;n--){ +var o=this._handlers[n]; +o.method==e&&o.methodObj==i&&(this._handlers.splice(n,1),t.DeleteHandle(o)) +} +}, +t.prototype.removeAll=function(e){ +var i=this.currHandler; +i&&i.methodObj==e&&(i.forever=!1,i.repeatCount=0); +for(var r=this._handlers.length-1;r>=0;r--){ +var n=this._handlers[r]; +n.methodObj==e&&(this._handlers.splice(r,1),t.DeleteHandle(n)) +} +}, +t.prototype.RTXtZF=function(e,t){ +for(var i=0, +r=this._handlers;it._highUint||this._highUint==t._highUint&&this._lowUint>t._lowUint; +var i=new e; +return"string"==typeof t?(i.value=t,this.isGreaterThanOrEqual(i)):"number"==typeof t?(i.value=t.toString(),this.isGreaterThanOrEqual(i)):void 0 +}, +e.prototype.isGreaterThanOrEqual=function(t){ +if(t instanceof e)return this._highUint>t._highUint||this._highUint==t._highUint&&this._lowUint>=t._lowUint; +var i=new e; +return"string"==typeof t?(i.value=t,this.isGreaterThanOrEqual(i)):"number"==typeof t?(i.value=t.toString(),this.isGreaterThanOrEqual(i)):void 0 +}, +Object.defineProperty(e.prototype,"isZero",{ +get:function(){ +return 0==this._lowUint&&0==this._highUint +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"isGreaterThanZero",{ +get:function(){ +return this._lowUint>0||this._highUint>0 +}, +enumerable:!0, +configurable:!0 +}), +e.prototype.writeByte=function(e){ +e.writeUnsignedInt(this._lowUint), +e.writeUnsignedInt(this._highUint) +}, +e.prototype.setValue=function(e,t){ +void 0===e&&(e=0), +void 0===t&&(t=0), +this._lowUint=e, +this._highUint=t +}, +Object.defineProperty(e.prototype,"value",{ +set:function(t){ +t instanceof egret.ByteArray?(this._lowUint=t.readUnsignedInt(),this._highUint=t.readUnsignedInt()):"string"==typeof t&&e.stringToUint64(t,10,this) +}, +enumerable:!0, +configurable:!0 +}), +Object.defineProperty(e.prototype,"valueByString",{ +set:function(e){}, +enumerable:!0, +configurable:!0 +}), +e.prototype.leftMove=function(t,i){ +void 0===i&&(i=null), +i=i||this; +var r=e.LeftMoveMask[t], +n=r&this._lowUint; +n>>>=32-t, +i._lowUint=this._lowUint<=e.MaxLowUint?(i._highUint++,i._lowUint=r-e.MaxLowUint):i._lowUint=r +}, +e.prototype.subtraction=function(t,i){ +void 0===i&&(i=null), +i=i||this; +var r=this._lowUint-t._lowUint; +i._highUint=this._highUint-t._highUint, +0>r?(i._highUint--,i._lowUint=r+e.MaxLowUint):i._lowUint=r +}, +e.prototype.scale=function(t,i){ +void 0===i&&(i=null), +i=i||this; +var r=this._lowUint*t; +i._highUint=this._highUint*t, +i._highUint+=Math.floor(Math.abs(r/e.MaxLowUint)), +i._lowUint=r%e.MaxLowUint +}, +e.prototype.toString=function(t){ +void 0===t&&(t=10); +for(var i,r,n,o="", +a=this._lowUint, +s=this._highUint;0!=s||0!=a;)i=s%t, +n=i*e.MaxLowUint+a, +r=n%t, +o=r+o, +s=(s-i)/t, +a=(n-r)/t; +return o.length?o:"0" +}, +e.stringToUint64=function(t,i,r){ +void 0===i&&(i=10), +void 0===r&&(r=null), +r=r||new e; +for(var n,o,a=0, +s=0, +l=t.length, +h=0;l>h;h++)o=parseInt(t.charAt(h)), +n=a*i+o, +s=s*i+Math.floor(n/e.MaxLowUint), +a=n%e.MaxLowUint; +return r.setValue(a,s), +r +}, +e.LeftMoveMask=[0,2147483648,1073741824,536870912,268435456,134217728,67108864,33554432,16777216,8388608,4194304,2097152,1048576,524288,262144,131072,65536,32768,16384,8192,4096,2048,1024,512,256,128,64,32,16,8,4,2,1], +e.MaxLowUint=4294967296, +e +}(); +e.uint64=t, +__reflect(t.prototype,"app.uint64") +}(app||(app={})); +var AssetAdapter=function(){ +function e(){} +return e.prototype.getAsset=function(e,t,i){ +function r(r){ +t.call(i,r,e) +} +if(RES.hasRes(e)){ +var n=RES.getRes(e); +n?r(n):RES.getResAsync(e,r,this) +}else RES.getResByUrl(e,r,this,RES.ResourceItem.TYPE_IMAGE) +}, +e +}(); +__reflect(AssetAdapter.prototype,"AssetAdapter",["eui.IAssetAdapter"]); +var app;! +function(e){ +var t=function(e){ +function t(){ +var t=e.call(this)||this; +return t._currBg="", +t +} +return __extends(t,e), +t.prototype.stop=function(){ +this._currSoundChannel&&this.removeSoundChannel(this._currSoundChannel), +this._currSoundChannel=null, +this._currSound=null, +this._currBg="" +}, +t.prototype.play=function(e){ +if(this._currBg!=e){ +this.stop(), +this._currBg=e; +var t=this.getSound(e); +t&&this.playSound(t) +} +}, +t.prototype.touchPlay=function(){ +if(this._currSoundChannel&&this._currSound){ +var e=this._currSoundChannel.position; +this.removeSoundChannel(this._currSoundChannel), +this._currSoundChannel=this._currSound.play(e,1), +this.addSoundChannel(this._currSoundChannel) +} +}, +t.prototype.playSound=function(e){ +this._currSound=e, +this._currSoundChannel=this._currSound.play(0,1), +this.addSoundChannel(this._currSoundChannel) +}, +t.prototype.onSoundComplete=function(){ +this._currSoundChannel&&this.removeSoundChannel(this._currSoundChannel), +this.playSound(this._currSound) +}, +t.prototype.addSoundChannel=function(e){ +e.volume=this._volume, +e.addEventListener(egret.Event.SOUND_COMPLETE,this.onSoundComplete,this) +}, +t.prototype.removeSoundChannel=function(e){ +e.removeEventListener(egret.Event.SOUND_COMPLETE,this.onSoundComplete,this), +e.stop() +}, +t.prototype.setVolume=function(e){ +this._volume=e, +this._currSoundChannel&&(this._currSoundChannel.volume=this._volume) +}, +t.prototype.loadedPlay=function(e){ +if(this._currBg==e){ +var t=RES.getRes(e); +if(!t)return; +this.playSound(t) +} +}, +t.prototype.checkCanClear=function(e){ +return this._currBg!=e +}, +t +}(e.BaseSound); +e.gkPd=t, +__reflect(t.prototype,"app.gkPd") +}(app||(app={})); +var app;! +function(e){ +var t=function(e){ +function t(){ +return e.call(this)||this +} +return __extends(t,e), +t.prototype.play=function(e){ +var t=this.getSound(e); +t&&this.playSound(t) +}, +t.prototype.playSound=function(e){ +var t=e.play(0,1); +t.volume=this._volume +}, +t.prototype.setVolume=function(e){ +this._volume=e +}, +t.prototype.loadedPlay=function(e){ +var t=RES.getRes(e); +t&&this.playSound(t) +}, +t +}(e.BaseSound); +e.SoundEffects=t, +__reflect(t.prototype,"app.SoundEffects") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function t(){ +this.bgOn=!0, +this.effectOn=!0, +this.bgVolume=.5, +this.effectVolume=.5, +this.bg=new e.gkPd, +this.bg.setVolume(this.bgVolume), +this.effect=new e.SoundEffects, +this.effect.setVolume(this.effectVolume) +} +return t.ins=function(){ +var e=this; +return e._instance||(e._instance=new e), +e._instance +}, +t.prototype.Uvxk=function(e){ +this.effectOn&&this.effect.play(e) +}, +t.prototype.createPlayEffect=function(e){ +this.effect.play(e) +}, +t.prototype.KVqx=function(e){ +this.currBg=e, +this.bgOn&&this.bg.play(e) +}, +t.prototype.createplayBg=function(e){ +this.currBg=e, +this.bg.play(e) +}, +t.prototype.DHzYBI=function(){ +this.bg.stop() +}, +t.prototype.touchBg=function(){ +egret.Capabilities.isMobile&&"iOS"==egret.Capabilities.os&&this.bg.touchPlay() +}, +t.prototype.setEffectOn=function(e){ +this.effectOn=e +}, +t.prototype.setBgOn=function(e){ +this.bgOn=e, +this.bgOn?this.currBg&&this.KVqx(this.currBg):this.DHzYBI() +}, +t.prototype.setBgVolume=function(e){ +e=Math.min(e,1), +e=Math.max(e,0), +this.bgVolume=e, +this.bg.setVolume(this.bgVolume) +}, +t.prototype.getBgVolume=function(){ +return this.bgVolume +}, +t.prototype.setEffectVolume=function(e){ +e=Math.min(e,1), +e=Math.max(e,0), +this.effectVolume=e, +this.effect.setVolume(this.effectVolume) +}, +t.prototype.getEffectVolume=function(){ +return this.effectVolume +}, +t.CLEAR_TIME=18e4, +t +}(); +e.AHhkf=t, +__reflect(t.prototype,"app.AHhkf") +}(app||(app={})); +var app;! +function(e){ +var t=function(){ +function t(){ +this._delayTime=0, +this._delayStartTime=0, +this._runTimeGap=300, +this._runTimeStart=0, +this._ackTimeGap=300, +this._ackTimeGapTimeStart=0, +this._hitTimeGap=300, +this._hitTimeStart=0, +this._hit2TimeStart=0, +this._dieTimeGap=400, +this._dieTimeStart=0, +this._die2TimeStart=0, +this.monsterSound={} +} +return t.ins=function(){ +var e=this; +return e._instance||(e._instance=new e), +e._instance +}, +t.prototype.playRunSound=function(){ +egret.getTimer()-this._runTimeStart>=this._runTimeGap&&(this._runTimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.RUN)) +}, +t.prototype.playRun=function(){ +egret.getTimer()-this._runTimeStart>this._runTimeGap+100&&this.playRunSound(), +e.KHNO.ins().RTXtZF(this.playRunSound,this)||e.KHNO.ins().tBiJo(this._runTimeGap,0,this.playRunSound,this) +}, +t.prototype.stopRun=function(){ +e.KHNO.ins().remove(this.playRunSound,this) +}, +t.prototype.Uvxk=function(t){ +egret.getTimer()-this._delayStartTimethis._ackTimeGap&&(this._ackTimeGapTimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.ACK)) +}, +t.prototype.playAck2=function(sex){ +if(egret.getTimer()-this._ackTimeGapTimeStart>this._ackTimeGap){ +1==window.randomRange(1,5)&&e.AHhkf.ins().Uvxk(0==sex?t.ACK_MALE:t.ACK_FEMALE); +} +}, +t.prototype.playManHit=function(isMonster){ +if(isMonster){ +if(egret.getTimer()-this._hitTimeStart>this._hitTimeGap){ +this._hitTimeStart=egret.getTimer(); +1==window.randomRange(1,5)&&e.AHhkf.ins().Uvxk(t.MAN_HIT); +} +}else{ +egret.getTimer()-this._hitTimeStart>this._hitTimeGap&&(this._hitTimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.MAN_HIT)); +} +}, +t.prototype.playWoManHit=function(isMonster){ +if(isMonster){ +if(egret.getTimer()-this._hit2TimeStart>this._hitTimeGap){ +this._hit2TimeStart=egret.getTimer(); +1==window.randomRange(1,5)&&e.AHhkf.ins().Uvxk(t.WOMAN_HIT); +} +}else{ +egret.getTimer()-this._hit2TimeStart>this._hitTimeGap&&(this._hit2TimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.WOMAN_HIT)); +} +}, +t.prototype.playManDie=function(){ +egret.getTimer()-this._dieTimeStart>this._dieTimeGap&&(this._dieTimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.MAN_DIE)) +}, +t.prototype.playWoManDie=function(){ +egret.getTimer()-this._die2TimeStart>this._dieTimeGap&&(this._die2TimeStart=egret.getTimer(),e.AHhkf.ins().Uvxk(t.WOMAN_DIE)) +}, +t.prototype.wVgAo=function(t){ +(!this.monsterSound[t]||this.monsterSound[t] 0 && r[r.length - 1]) && (6 === i[0] || 2 === i[0]))) { + l = 0; + continue; + } + if (3 === i[0] && (!r || (i[1] > r[0] && i[1] < r[3]))) { + l.label = i[1]; + break; + } + if (6 === i[0] && l.label < r[1]) { + (l.label = r[1]), (r = i); + break; + } + if (r && l.label < r[2]) { + (l.label = r[2]), l.ops.push(i); + break; + } + r[2] && l.ops.pop(), l.trys.pop(); + continue; + } + i = e.call(t, l); + } catch (n) { + (i = [6, n]), (a = 0); + } finally { + s = r = 0; + } + if (5 & i[0]) throw i[1]; + return { + value: i[0] ? i[1] : void 0, + done: !0, + }; + } + var s, + a, + r, + o, + l = { + label: 0, + sent: function () { + if (1 & r[0]) throw r[1]; + return r[1]; + }, + trys: [], + ops: [], + }; + return ( + (o = { + next: i(0), + throw: i(1), + return: i(2), + }), + "function" == typeof Symbol && + (o[Symbol.iterator] = function () { + return this; + }), + o + ); + }, + app; +!(function (t) { + var e = (function () { + function t() {} + return (t.ATTACK = "a"), (t.CAST = "c"), (t.STAND = "s"), (t.STAND1 = "s1"), (t.RUN = "r"), (t.WALK = "w"), (t.DIE = "d"), (t.HIT = "h"), t; + })(); + (t.EntityAction = e), __reflect(e.prototype, "app.EntityAction"); + var i = (function () { + function t() {} + return ( + (t.SA_IDLE = 0), + (t.SA_WALK = 1), + (t.SA_RUN = 2), + (t.BUFF_ADD = 100), + (t.BUFF_DELECT = 101), + (t.BUFF_DELECT_TYPE = 102), + (t.BUFF_UPDATE = 103), + (t.BUFF_UPDATE_EFF = 104), + (t.NAME_UPDATE_COLOR = 105), + (t.TITLE_UPDATE = 106), + (t.AM_DAMAGE = 61), + (t.UPDATA_NAME_TYPE = 62), + (t.SAM_IDLE = 20001), + (t.SAM_WALK = 20002), + (t.SAM_RUN = 20010), + (t.SAM_SPELL = 20003), + (t.SAM_ALIVE = 20004), + (t.SAM_DISAPPEAR = 20005), + (t.SAM_NOWDEATH = 20006), + (t.SAM_REUSE = 20007), + (t.SAM_COLLECT = 20008), + (t.SAM_SPRnumber = 20009), + (t.SAM_UNDER_ATTACK = 20011), + (t.SAM_READYJUMP = 20012), + (t.SAM_JUMP = 20013), + (t.SAM_PREPARE_SKILL = 20014), + (t.SAM_BREAL_SKILL_PREPARE = 20015), + (t.SAM_NORMHIT = 20016), + (t.SAM_STOP = 20017), + (t.SAM_TRAFFIC_MOVE = 20018), + (t.SAM_TRAFFIC_OFF = 20019), + (t.SAM_UNDER_ATTACK_FLY = 20020), + (t.SAM_SPECIAL_MOVE = 20021), + (t.SAM_ROTATE = 20022), + (t.SAM_SPRnumber_FLY = 20023), + (t.SAM_APPEAR_TARGET = 20024), + (t.SAM_CONJURE = 20025), + (t.SAM_UNDER_RECRUIT = 40011), + (t.SAM_TELEPORTING = 40012), + t + ); + })(); + (t.Qmuk = i), __reflect(i.prototype, "app.Qmuk"); + var n = (function () { + function t() {} + return ( + (t.SAM_WALK_TIME = 750), + (t.SAM_RUN_TIME = 750), + (t.SAM_NORMHIT_TIME = 900), + (t.SAM_SPELL_TIME = 1e3), + (t.SAM_UNDER_ATTACK_TIME = 750), + (t.SAM_IDLE_TIME = 300), + (t.SAM_NOWDEATH_TIME = 750), + (t.SAM_SPECIAL_MOVE_TIME = 750), + (t.SAM_TELEPORTING_TIME = 3), + (t.SAM_UNDER_RECRUIT_TIME = 3e3), + t + ); + })(); + (t.StandardActionsTime = n), __reflect(n.prototype, "app.StandardActionsTime"); + var s = (function () { + function t() {} + return (t.IDLE = 0), (t.ATTACK = 1e3), (t.PICKUP = 1001), (t.WALK = 1002), (t.TURN = 1003), (t.DIR = 1004), (t.LOOK = 1005), t; + })(); + (t.PlayerAction = s), __reflect(s.prototype, "app.PlayerAction"); +})(app || (app = {})); +var CharEnum; +!(function (t) { + (t[(t.NORTH = 0)] = "NORTH"), + (t[(t.NORTH_EAST = 1)] = "NORTH_EAST"), + (t[(t.EAST = 2)] = "EAST"), + (t[(t.SOUTH_EAST = 3)] = "SOUTH_EAST"), + (t[(t.SOUTH = 4)] = "SOUTH"), + (t[(t.SOUTH_WEST = 5)] = "SOUTH_WEST"), + (t[(t.WEST = 6)] = "WEST"), + (t[(t.NORTH_WEST = 7)] = "NORTH_WEST"); +})(CharEnum || (CharEnum = {})); +var CharMcOrder; +!(function (t) { + (t[(t.BODY = 1)] = "BODY"), + (t[(t.WEAPON = 2)] = "WEAPON"), + (t[(t.WING = 3)] = "WING"), + (t[(t.FOUR = 4)] = "FOUR"), + (t[(t.MEDAL = 5)] = "MEDAL"), + (t[(t.HEIR = 6)] = "HEIR"), + (t[(t.SOUL = 7)] = "SOUL"), + (t[(t.ZHANLING = 8)] = "ZHANLING"), + (t[(t.HAIR = 9)] = "HAIR"), + (t[(t.BODYEFF = 10)] = "BODYEFF"), + (t[(t.WEAPONEFF = 11)] = "WEAPONEFF"), + (t[(t.SPECIAL = 12)] = "SPECIAL"); +})(CharMcOrder || (CharMcOrder = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.percentWidth = 100), (e.percentHeight = 100), (e.touchEnabled = !1), e; + } + return __extends(e, t), e; + })(eui.Group); + (t.VbTul = e), __reflect(e.prototype, "app.VbTul"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.ins = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + var i = this; + if (!i._instance) { + var n = t.length; + 0 == n + ? (i._instance = new i()) + : 1 == n + ? (i._instance = new i(t[0])) + : 2 == n + ? (i._instance = new i(t[0], t[1])) + : 3 == n + ? (i._instance = new i(t[0], t[1], t[2])) + : 4 == n + ? (i._instance = new i(t[0], t[1], t[2], t[3])) + : 5 == n && (i._instance = new i(t[0], t[1], t[2], t[3], t[4])); + } + return i._instance; + }), + t + ); + })(); + (t.BaseClass = e), __reflect(e.prototype, "app.BaseClass"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.prototype.HFTK = function (e, i, n) { + void 0 === n && (n = void 0), t.rLmMYc.addListener(e, i, this, n); + }), + (i.prototype.removeObserve = function () { + t.rLmMYc.ins().removeAll(this); + }), + (i.prototype.vKruVZ = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_TAP, t, e); + }), + (i.prototype.addBeginEvent = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_BEGIN, t, e); + }), + (i.prototype.removeBeginEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, e, this); + }), + (i.prototype.addTouchEndEvent = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_END, t, e); + }), + (i.prototype.removeTouchEndEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.TOUCH_END, e, this); + }), + (i.prototype.addChangeEvent = function (t, e) { + var i = this; + t && t instanceof eui.TabBar + ? this.addEvent(egret.TouchEvent.CHANGE, t, function () { + for (var t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + e.call.apply(e, [i].concat(t)); + }) + : this.addEvent(egret.TouchEvent.CHANGE, t, e); + }), + (i.prototype.removeChangeEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.CHANGE, e, this); + }), + (i.prototype.addChangingEvent = function (t, e) { + this.addEvent(egret.TouchEvent.CHANGING, t, e); + }), + (i.prototype.removeChangingEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.CHANGING, e, this); + }), + (i.prototype.VoZqXH = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.MOUSE_OUT, t, e); + }), + (i.prototype.lbpdAJ = function (t, e) { + KdbLz.qOtrbE.iFbP || (t && t.removeEventListener(mouse.MouseEvent.MOUSE_OUT, e, this)); + }), + (i.prototype.EeFPm = function (t, e) { + KdbLz.qOtrbE.iFbP ? this.vKruVZ(t, e) : this.addEvent(mouse.MouseEvent.MOUSE_OVER, t, e); + }), + (i.prototype.lvpAF = function (t, e) { + KdbLz.qOtrbE.iFbP ? this.fEHj(t, e) : t && t.removeEventListener(mouse.MouseEvent.MOUSE_OVER, e, this); + }), + (i.prototype.addLeftDownEvent = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.LEFT_DOWN, t, e); + }), + (i.prototype.removeLeftDownEvent = function (t, e) { + KdbLz.qOtrbE.iFbP || (t && t.removeEventListener(mouse.MouseEvent.LEFT_DOWN, e, this)); + }), + (i.prototype.addRightDownEvent = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.RIGHT_DOWN, t, e); + }), + (i.prototype.removeRightDownEvent = function (t, e) { + t && t.removeEventListener(mouse.MouseEvent.RIGHT_DOWN, e, this); + }), + (i.prototype.addDoubleDownEvent = function (t, e) { + this.addEvent(mouse.MouseEvent.MOUSE_DOUBLECLICK, t, e); + }), + (i.prototype.removeDoubleDownEvent = function (t, e) { + t && t.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, e, this); + }), + (i.prototype.addTouchMoveEvent = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_MOVE, t, e); + }), + (i.prototype.removeTouchMoveEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.TOUCH_MOVE, e, this); + }), + (i.prototype.addEvent = function (t, e, i) { + return e ? void e.addEventListener(t, i, this) : void console.error("不存在绑定对象"); + }), + (i.prototype.fEHj = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.TOUCH_TAP, e, this); + }), + (i.prototype.$onClose = function () { + var t = function (e) { + for (var n = 0; n < e.numChildren; n++) { + var s = e.getChildAt(n); + s instanceof i ? s.$onClose() : s instanceof egret.DisplayObjectContainer && t(s); + } + }; + t(this), this.removeObserve(); + }), + i + ); + })(eui.Component); + (t.BaseView = e), __reflect(e.prototype, "app.BaseView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + var n = e.call(this) || this; + return ( + (n.floatingBloodAry = []), + (n.floatingTime = 0), + (n.isShowGuanZhi = !1), + (n._dir = 0), + (n._state = t.EntityAction.STAND), + (n._charName = ""), + (n._isDead = !1), + (n.deadChar = !1), + (n.charEntityType = t.EntityFilter.no), + (n.m_dwNextActionTime = 0), + (n.m_nAction = -1), + (n.hasDir = [CharMcOrder.BODY, CharMcOrder.BODYEFF, CharMcOrder.HAIR, CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.WING, CharMcOrder.SOUL, CharMcOrder.ZHANLING]), + (n._disOrder = {}), + (n._mcFileName = {}), + (n.m_MoveAction = new i()), + (n._bodyContainer = new egret.DisplayObjectContainer()), + n.addChild(n._bodyContainer), + (n._body = t.ObjectPool.pop("app.MovieClip")), + n._bodyContainer.addChild(n._body), + (n._disOrder[CharMcOrder.BODY] = n._body), + (n.m_CharMsgList = []), + (n.m_ActionMsgList = []), + (n.titleCantainer = new egret.DisplayObjectContainer()), + (n.titleCantainer.touchEnabled = !1), + (n.titleCantainer.touchChildren = !1), + (n._bodyContainer.scaleX = n._bodyContainer.scaleY = 1.25), + n.addChild(n.titleCantainer), + n + ); + } + return ( + __extends(n, e), + Object.defineProperty(n.prototype, "recog", { + get: function () { + return this._recog; + }, + set: function (t) { + this._recog = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "propSet", { + get: function () { + return this._propSet; + }, + set: function (t) { + this._propSet = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "charName", { + get: function () { + return this._charName; + }, + set: function (t) { + this._charName = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "isDead", { + get: function () { + return this._isDead; + }, + set: function (t) { + this._isDead = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "currentX", { + get: function () { + return this._currentX; + }, + set: function (t) { + this._currentX = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "currentY", { + get: function () { + return this._currentY; + }, + set: function (t) { + this._currentY = t; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.updateModel = function () {}), + Object.defineProperty(n.prototype, "CharVisible", { + get: function () { + return this._bodyContainer.visible; + }, + set: function (t) { + this._bodyContainer.visible = !0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "dir", { + get: function () { + return this._dir; + }, + set: function (t) { + (t = +t % 8), this._dir != t && ((this._dir = t), this.loadBody()); + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.getResDir = function (t) { + var e = 2 * (this.dir - 4); + return 0 > e && (e = 0), this.dir - e; + }), + (n.prototype.playAction = function (t, e) { + (this._state = t), (this.playComplete = e), this._body.clearComFun(), this.loadBody(); + }), + (n.prototype.loadBody = function () { + this._body.stop(), + this._body.addEventListener(egret.Event.CHANGE, this.playBody, this), + this.hasDir.indexOf(CharMcOrder.BODY) >= 0 ? this.loadFile(this._body, this.getFileName(CharMcOrder.BODY), CharMcOrder.BODY) : this.playFile(this._body, this.getFileName(CharMcOrder.BODY)); + }), + (n.prototype.loadOther = function (t) { + var e = this.getMc(t); + e && (e.stop(), e.addEventListener(egret.Event.CHANGE, this.syncFrame, this), this.loadFile(e, this.getFileName(t), t)); + }), + (n.prototype.loadNoDir = function (t) { + var e = this.getMc(t); + this.playFile(e, this.getFileName(t)); + }), + (n.prototype.getFileName = function (t) { + return this._mcFileName[t]; + }), + (n.prototype.playFile = function (t, e) { + t.playFileChar(e, -1, null, !1); + }), + (n.prototype.loadFile = function (e, i, s) { + if (i && !(n.ACTION_ODER[s] && n.ACTION_ODER[s].indexOf(this._state) < 0)) { + var a = this.getResDir(s), + r = i + "_" + a + this._state; + (e.newFrameRate = 0), + (this._state != t.EntityAction.STAND || (s != CharMcOrder.BODYEFF && s != CharMcOrder.WEAPONEFF)) && + (this._state == t.EntityAction.HIT + ? (e.newFrameRate = 10) + : this._state == t.EntityAction.STAND + ? (e.newFrameRate = 3) + : this._state == t.EntityAction.ATTACK && this.isCharRole + ? (e.newFrameRate = 8 * this.propSet.getAckRate()) + : (e.newFrameRate = 8)), + this.propSet.getRace() == t.ActorRace.Human || this.propSet.getRace() == t.ActorRace.dummy + ? (e.m_gather = s == CharMcOrder.HAIR || s == CharMcOrder.WEAPONEFF || s == CharMcOrder.WEAPON || s == CharMcOrder.BODY || s == CharMcOrder.BODYEFF) + : (e.scaleX = this.dir > 4 ? -1 : 1); + var o = this.propSet.getSuit(); + if (o) { + if (((this._body.y = 3), s == CharMcOrder.HAIR)) return; + e.playFileChar8(r, this.playCount(), e == this._body ? this.playComplete : null, !1); + } else (this._body.y = 0), e.playFileChar(r, this.playCount(), e == this._body ? this.playComplete : null, !1); + } + }), + (n.prototype.getNormhitTime = function () { + return t.StandardActionsTime.SAM_NORMHIT_TIME / this.propSet.getAckRate(); + }), + (n.prototype.playBody = function (e) { + var i = 1; + this._body.gotoAndPlay(i, this.playCount()), this.removeBodyEvent(this._body); + for (var n in this._disOrder) { + var s = this._disOrder[n]; + s != this._body && this.hasDir.indexOf(+n) >= 0 && s instanceof t.MovieClip && this.loadOther(+n); + } + this.sortEffect(); + }), + (n.prototype.syncFrame = function (t) { + this.removeMcEvent(t.currentTarget), t.currentTarget.gotoAndPlay(this._body.currentFrame, this.playCount()); + }), + (n.prototype.removeBodyEvent = function (t) { + t.removeEventListener(egret.Event.CHANGE, this.playBody, this); + }), + (n.prototype.removeMcEvent = function (t) { + t.removeEventListener(egret.Event.CHANGE, this.syncFrame, this); + }), + (n.prototype.onImgLoaded = function (t) { + var e = t.currentTarget; + e.removeEventListener(egret.Event.COMPLETE, this.onImgLoaded, this), (e.anchorOffsetX = e.width / 2), (e.anchorOffsetY = e.height / 2); + }), + (n.prototype.playCount = function () { + return -1; + }), + (n.prototype.addMc = function (e, i) { + if (this._mcFileName[e] != i) { + this._mcFileName[e] = i; + var n = this._disOrder[e]; + return ( + n || ((n = t.ObjectPool.pop("app.MovieClip")), this._bodyContainer.addChild(n), (this._disOrder[e] = n)), + n instanceof t.MovieClip + ? ((n.visible = !1), this.hasDir.indexOf(e) >= 0 ? (n == this._body ? this.loadBody() : this.loadOther(e)) : this.loadNoDir(e)) + : (n.addEventListener(egret.Event.COMPLETE, this.onImgLoaded, this), (n.source = i)), + this.sortEffect(), + n + ); + } + }), + (n.prototype.removeMc = function (e) { + if (e != CharMcOrder.BODY && e != CharMcOrder.HAIR) { + var i = this._disOrder[e]; + i && (i instanceof t.MovieClip ? (this.removeMcEvent(i), i.destroy(), (i = null)) : t.lEYZI.Naoc(i), delete this._mcFileName[e], delete this._disOrder[e]); + } + }), + (n.prototype.hideHair = function () { + delete this._disOrder[CharMcOrder.HAIR]; + }), + (n.prototype.getMc = function (t) { + return this._disOrder[t]; + }), + (n.prototype.removeAll = function () { + for (var e in this._disOrder) { + var i = this._disOrder[e]; + i != this._body && (i instanceof t.MovieClip ? (this.removeMcEvent(i), i.destroy(), (i = null)) : t.lEYZI.Naoc(i), delete this._mcFileName[e], delete this._disOrder[e]); + } + this._body.dispose(), this.removeBodyEvent(this._body), delete this._mcFileName[CharMcOrder.BODY]; + }), + (n.prototype.sortEffect = function () { + var t = n.FRAME_ODER[this.dir]; + if (t) + for (var e = t.length, i = 0, s = 0; e > s; s++) { + var a = t[s]; + this._disOrder[a] && this._disOrder[a].parent && (this._bodyContainer.addChildAt(this._disOrder[a], i), (i += 1)); + } + }), + Object.defineProperty(n.prototype, "weight", { + get: function () { + return this.y; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "isMy", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "isCharRole", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n.prototype, "isDummyCharRole", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.destroy = function () { + this.removeAll(); + }), + (n.prototype.advanceTime = function (e) { + if (((this.m_nCurrentActionTime = e), this.moveObjDic)) { + if (e >= this.m_dwNextActionTime) (this.x = this.moveObjDic.endPoint.x), (this.y = this.moveObjDic.endPoint.y), this.endMove(); + else { + var i = e - this.moveObjDic.time, + n = this.moveObjDic.vec.x * i, + s = this.moveObjDic.vec.y * i; + (this.moveObjDic.time = e), (this.x += n), (this.y += s); + } + this.onChange(); + } + t.mAYZL.gamescene.map.setShadowXY(this.recog, this.x, this.y); + }), + (n.prototype.onChange = function () { + var e = t.GameMap.point2Grip(this.x), + i = t.GameMap.point2Grip(this.y); + this.isVnvisible() ? (this.alpha = 0.6) : t.GameMap.checkAlpha(e, i) ? (this.alpha = 0.7) : (this.alpha = 1); + }), + (n.prototype.disappear = function () { + this.moveObjDic = null; + for (var e = 0; e < this.m_CharMsgList.length; e++) this.m_CharMsgList[e].clear(), t.ObjectPool.push(this.m_CharMsgList[e]); + for (var e = 0; e < this.m_ActionMsgList.length; e++) this.m_ActionMsgList[e].clear(), t.ObjectPool.push(this.m_ActionMsgList[e]); + (this.m_ActionMsgList.length = 0), + (this.m_CharMsgList.length = 0), + (this._bodyContainer.filters = null), + (this.filters = null), + (this._state = t.EntityAction.STAND), + (this.isDead = !1), + (this.deadChar = !1), + (this.currentX = 0), + (this.currentY = 0); + }), + (n.prototype.postCharMessage = function (e, i, n, s, a) { + void 0 === a && (a = null); + var r = t.ObjectPool.pop("app.ActorMessage"); + r.setInfo(e, i, n, s, a), this.m_CharMsgList.push(r); + }), + (n.prototype.deleteMessage = function (e) { + for (var i = this.m_CharMsgList.length - 1; i >= 0; i--) { + var n = void 0; + this.m_CharMsgList[i].ident == e && ((n = this.m_CharMsgList.splice(i, 1)[0]), n.clear(), t.ObjectPool.push(n)); + } + }), + (n.prototype.moveTo = function (e, i, n) { + this.setCurrentXY(e, i), (this.m_dwMoveStartTick = this.m_nCurrentActionTime); + var s = { + x: t.GameMap.grip2Point(e), + y: t.GameMap.grip2Point(i), + }, + a = { + x: s.x - this.x, + y: s.y - this.y, + }, + r = t.StandardActionsTime.SAM_WALK_TIME; + (a.x = a.x / r), + (a.y = a.y / r), + (this.moveObjDic = { + endPoint: s, + vec: a, + time: this.m_nCurrentActionTime + 0, + }), + this.isMy && t.OSzbc.ins().playRun(); + }), + (n.prototype.setXY = function (e, i) { + (this.x = t.GameMap.grip2Point(e)), (this.y = t.GameMap.grip2Point(i)), this.setCurrentXY(e, i); + }), + (n.prototype.endMove = function () { + this.setCurrentXY(t.GameMap.point2Grip(this.x), t.GameMap.point2Grip(this.y)), (this.moveObjDic = null), this.isMy && t.OSzbc.ins().stopRun(); + }), + (n.prototype.setCurrentXY = function (e, i) { + this.isMy || this.isDead ? this.isMy || t.NWRFmB.ins().delGridChar(this.recog) : t.NWRFmB.ins().setGridChar(this.recog, this.currentX, this.currentY, e, i), + (this.currentX = e), + (this.currentY = i), + this.propSet.setProperty(t.nRDo.AP_X, e), + this.propSet.setProperty(t.nRDo.AP_Y, i); + }), + (n.prototype.isVnvisible = function () { + return this.charEntityType == t.EntityFilter.invisible; + }), + (n.CHAR_DEFAULT_HEIGHT = 118), + (n.CHAR_DEFAULT_TYPEFACE = 110), + (n.FRAME_ODER = [ + [CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + [CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + [CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + [CharMcOrder.BODYEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.WEAPON, , CharMcOrder.WEAPONEFF, CharMcOrder.SPECIAL], + [CharMcOrder.BODYEFF, CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.SPECIAL], + [CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + [CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + [CharMcOrder.WEAPON, CharMcOrder.WEAPONEFF, CharMcOrder.BODY, CharMcOrder.HAIR, CharMcOrder.BODYEFF, CharMcOrder.SPECIAL], + ]), + (n.ACTION_ODER = { + 8: [t.EntityAction.STAND, t.EntityAction.RUN, t.EntityAction.WALK, t.EntityAction.ATTACK], + }), + n + ); + })(eui.Group); + (t.CharEffect = e), __reflect(e.prototype, "app.CharEffect"); + var i = (function () { + function t() {} + return t; + })(); + (t.MoveAction = i), __reflect(i.prototype, "app.MoveAction"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.flag = 0), (i.type = t), (i.dict = {}), (i.eVec = []), 0 == i.type && egret.startTick(i.run, i), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this, 0); + }), + (i.prototype.clear = function () { + (this.dict = {}), this.eVec.splice(0); + }), + (i.prototype.addListener = function (t, e, i) { + var n = this.dict[t]; + n ? 0 != this.flag && (this.dict[t] = n = n.concat()) : (this.dict[t] = n = []); + for (var s = 0, a = n; s < a.length; s++) { + var r = a[s]; + if (r[0] == e && r[1] == i) return; + } + n.push([e, i]); + }), + (i.prototype.removeListener = function (t, e, i) { + var n = this.dict[t]; + if (n) { + 0 != this.flag && (this.dict[t] = n = n.concat()); + for (var s = n.length, a = 0; s > a; a++) + if (n[a][0] == e && n[a][1] == i) { + n.splice(a, 1); + break; + } + 0 == n.length && ((this.dict[t] = null), delete this.dict[t]); + } + }), + (i.prototype.removeAll = function (t) { + for (var e = Object.keys(this.dict), i = 0, n = e; i < n.length; i++) { + var s = n[i], + a = this.dict[s]; + 0 != this.flag && (this.dict[s] = a = a.concat()); + for (var r = a.length, o = r - 1; o >= 0; o--) a[o][1] == t && a.splice(o, 1); + 0 == a.length && ((this.dict[s] = null), delete this.dict[s]); + } + }), + (i.prototype.dispatch = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + var s = t.ObjectPool.pop("app.MessageVo"); + (s.type = e), (s.param = i), 0 == this.type ? this.eVec.push(s) : 1 == this.type ? this.dealMsg(s) : t.Log.trace(t.CrmPU.language_Error_4); + }), + (i.prototype.run = function (t) { + for (var e = egret.getTimer(); this.eVec.length > 0 && (this.dealMsg(this.eVec.shift()), !(egret.getTimer() - e > 5)); ); + return !1; + }), + (i.prototype.dealMsg = function (e) { + var i = this.dict[e.type]; + if (i) { + var n = i.length; + if (0 != n) { + this.flag++; + for (var s = 0, a = i; s < a.length; s++) { + var r = a[s]; + debug.log("##处理监听 标识=" + e.type + " 参数" + e.param + " 界面:" + egret.getQualifiedClassName(r[1])), r[0].apply(r[1], e.param); + } + this.flag--, e.dispose(), t.ObjectPool.push(e); + } + } + }), + (i.setFunction = function (t, e, n, s) { + if (0 == n.indexOf(s) && "function" == typeof e[n]) { + var a = egret.getQualifiedClassName(e) + i.splite + n + i.msgIndex; + i.msgIndex += 1; + var r = e[n], + o = function () { + for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; + var s; + e.length; + return (s = t ? r.call.apply(r, [this].concat(e)) : r.apply(void 0, e)), ("boolean" != typeof s || s) && i.ins().dispatch(a, s), s; + }; + return (o.funcallname = a), (e[n] = o), !0; + } + return !1; + }), + (i.compile = function (t, e) { + void 0 === e && (e = "post"); + var n = t.prototype; + for (var s in n) i.setFunction(!0, n, s, e); + }), + (i.addListener = function (t, e, n, s) { + return ( + void 0 === s && (s = void 0), t.funcallname ? (i.ins().addListener(t.funcallname, e, n), s && t.call(s), !0) : (debug.log("rLmMYc.addListener error:" + egret.getQualifiedClassName(n)), !1) + ); + }), + (i.splite = "."), + (i.msgIndex = 1), + i + ); + })(t.BaseClass); + (t.rLmMYc = e), __reflect(e.prototype, "app.rLmMYc"); + var i = (function () { + function t() {} + return ( + (t.prototype.dispose = function () { + (this.type = null), (this.param = null); + }), + t + ); + })(); + (t.MessageVo = i), __reflect(i.prototype, "app.MessageVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.filters = ["TipsView", "UIView1_1", "GameSceneView", "ChatMainUI", "PlayFunView"]), + (t.closeTopFilters = []), + (t._regesterInfo = {}), + (t._views = {}), + (t._hCode2Key = {}), + (t._opens = []), + t + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.clear = function () { + this.closeAll(), (this._views = {}); + }), + (i.prototype.reg = function (t, e) { + if (null != t) { + var i = egret.getQualifiedClassName(t); + this._regesterInfo[i] || (this._regesterInfo[i] = [t, e]); + } + }), + (i.prototype.destroy = function (t) { + var e = this._hCode2Key[t]; + delete this._views[e], delete this._hCode2Key[t]; + }), + (i.prototype.getKey = function (e) { + var i = ""; + if ("string" == typeof e) i = e; + else if ("function" == typeof e) i = egret.getQualifiedClassName(e); + else if (e instanceof t.gIRYTi) + for (var n = Object.keys(this._views), s = 0, a = n.length; a > s; s++) { + var r = n[s]; + if (this._views[r] == e) { + i = r; + break; + } + } + else debug.log(t.CrmPU.language_Error_5 + e); + return i; + }), + (i.prototype.viewOpenCheck = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + var n = !0, + s = this._regesterInfo[t]; + if (null != s) { + var a = s[0], + r = a.openCheck; + null != r && (n = r.apply(void 0, e)); + } + return n; + }), + (i.prototype.open = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + var s = this.getKey(e); + if (t.ubnV.ihUJ) { + var a = t.VlaoF.KFBanViewConfig.isDoNotOpen(s); + if (a) return t.uMEZy.ins().IrCm(t.CrmPU.language_Tips139), null; + } + if (!this.viewOpenCheck.apply(this, [s].concat(i))) return null; + var r = this.openEasy(s, i); + return -1 == this.filters.indexOf(s) && debug.log("开始打开窗口:" + s), r && this.checkOpenView(r), r; + }), + (i.prototype.openViewId = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + var s = t.VlaoF.FunExhibitionConfig[e]; + if (s) + if (this.isCheckOpen(s.isOpenNeed)) + if (i) { + var a = s.param; + a ? (i instanceof Array || (i = [i]), a instanceof Array || (a = [s.param]), this.open(s.view, i.concat(a))) : this.open(s.view, i); + } else this.open(s.view, s.param); + else { + var r = this.getOpenTips(s); + "" != r && t.uMEZy.ins().IrCm(r); + } + }), + (i.prototype.isCheckOpen = function (e) { + var i = t.NWRFmB.ins().getPayer; + if (i) { + if (e) { + if (e.level && i.propSet.mBjV() < e.level) return !1; + if (e.openDay && t.GlobalData.sectionOpenDay < e.openDay) return !1; + if (e.zsLevel && i.propSet.MzYki() < e.zsLevel) return !1; + if (e.vip && t.VipData.ins().getMyVipLv() < e.vip) return !1; + if (e.office && i.propSet.getOfficialPositicon() < e.office) return !1; + if (e.smLevel) { + var n = t.GhostMgr.ins().ghostInfo, + s = 0; + for (var a in n) s += n[a].nLv; + if (s < e.smLevel) return !1; + } + return e.ngLevel && i.propSet.getMeridians() < e.ngLevel ? !1 : !0; + } + return !0; + } + return !1; + }), + (i.prototype.isCheckTabOpen = function (e) { + var i = t.NWRFmB.ins().getPayer; + return i + ? e + ? e.openLevel && i.propSet.mBjV() < e.openLevel + ? !1 + : e.openDay && t.GlobalData.sectionOpenDay < e.openDay + ? !1 + : e.openCircle && i.propSet.MzYki() < e.openCircle + ? !1 + : e.vip && t.VipData.ins().getMyVipLv() < e.vip + ? !1 + : e.office && i.propSet.getOfficialPositicon() < e.office + ? !1 + : !0 + : !0 + : !1; + }), + (i.prototype.isCheckAllOpen = function (e) { + var i = t.NWRFmB.ins().getPayer; + return i ? (e ? (i.propSet.mBjV() >= e.level && t.GlobalData.sectionOpenDay >= e.openDay && i.propSet.MzYki() >= e.zsLevel && i.propSet.getGuildId() >= e.needGuild ? !0 : !1) : !0) : !1; + }), + (i.prototype.isCheckClose = function (e) { + var i = t.NWRFmB.ins().getPayer; + return i && e + ? e.level && i.propSet.mBjV() >= e.level + ? !0 + : e.openDay && t.GlobalData.sectionOpenDay >= e.openDay + ? !0 + : e.zsLevel && i.propSet.MzYki() >= e.zsLevel + ? !0 + : e.vip && t.VipData.ins().getMyVipLv() >= e.vip + ? !0 + : e.office && i.propSet.getOfficialPositicon() >= e.office + ? !0 + : !1 + : !1; + }), + (i.prototype.openSystemTips = function (e, i) { + void 0 === i && (i = 0); + var n = t.NWRFmB.ins().getPayer; + if (n) { + if (!e) return !0; + if (e.openDay && t.GlobalData.sectionOpenDay < e.openDay) { + var s = 0 == i ? t.zlkp.replace(t.CrmPU.language_Tips70, e.openDay) : "|C:0xff7700&T:开服天数" + e.openDay + "天后开启|"; + return t.uMEZy.ins().IrCm(s), !1; + } + if (e.level && n.propSet.mBjV() < e.level) { + var s = 0 == i ? t.CrmPU.language_Tips69 : "|C:0xff7700&T:" + e.level + "级后可提升|"; + return t.uMEZy.ins().IrCm(s), !1; + } + if (e.zsLevel && n.propSet.MzYki() < e.zsLevel) { + var s = 0 == i ? t.CrmPU.language_Tips69 : "|C:0xff7700&T:转生等级" + e.zsLevel + "级后可提升|"; + return t.uMEZy.ins().IrCm(s), !1; + } + } + return !0; + }), + (i.prototype.getOpenTips = function (e) { + var i = "", + n = e.isOpenNeed, + s = t.NWRFmB.ins().getPayer; + return ( + s && + (e.showTips + ? (i += e.showTips) + : (n.level && s.propSet.mBjV() < n.level && (i += n.level + t.CrmPU.language_Common_1), + n.openDay && t.GlobalData.sectionOpenDay < n.openDay && (i += t.CrmPU.stateName[5] + n.openDay + t.CrmPU.language_Time_Days), + n.vip && t.VipData.ins().getMyVipLv() < n.vip && (i += t.CrmPU.language_Common_42 + n.vip + t.CrmPU.language_Common_1), + n.zsLevel && s.propSet.MzYki() < n.zsLevel && (i += n.zsLevel + t.CrmPU.language_Common_0), + "" != i && (i += t.CrmPU.language_Common_43 + e.funName))), + (i = "|C:0xff7700&T:" + i + "|") + ); + }), + (i.prototype.openEasy = function (e, i) { + void 0 === i && (i = null); + var n = this.getKey(e), + s = this._views[n], + a = this._regesterInfo[n]; + if (!s) { + if (Assert(a, "mAYZL.openEasy class " + n + " is null!!")) return; + (s = new a[0]()), (this._views[n] = s), (this._hCode2Key[s.hashCode] = n); + } + if (null == s) return t.Log.trace("UI_" + n + "不存在"), null; + for (var r = 0, o = s.exclusionWins; r < o.length; r++) { + var l = o[r]; + this.closeEasy(l); + } + s.ZbzdY() || s.isInit() ? (s.addToParent(a[1]), s.ZbzdY() || s.open.apply(s, i)) : (s.addToParent(a[1]), s.initUI(), s.initData(), s.open.apply(s, i), s.initViewPos()); + var h = this._opens.indexOf(n); + return h >= 0 && this._opens.splice(h, 1), this._opens.push(n), t.ckpDj.ins().sendEvent(t.CompEvent.OPEN_VIEW, n), s; + }), + (i.prototype.checkOpenView = function (e) { + e.isTopLevel && e.parent != t.yCIt.VdZy && t.OSzbc.ins().Uvxk(t.OSzbc.WINDOW); + }), + (i.prototype.close = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + var n = this.getKey(t); + this.closeEx(n, e); + }), + (i.prototype.closeEx = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + if (e) { + var s = this.closeEasy(e, i); + if (s) { + var a = this.ZzTs(t.GaimItemWin); + a && a.closeView(s.hashCode), this.checkCloseView(); + } + } + }), + (i.prototype.closeLastTopView = function () { + for (var t = this._opens.length, e = t - 1; e >= 0; e--) { + var i = this.ZzTs(this._opens[e]); + if (i && i.isTopLevel) { + this.close(i); + break; + } + } + }), + (i.prototype.closeEasy = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + if (!this.ZbzdY(t)) return null; + var n = this.getKey(t), + s = this.ZzTs(n); + if (s) { + var a = this._opens.indexOf(n); + a >= 0 && this._opens.splice(a, 1), s.close.apply(s, e), s.$onClose.apply(s), s.Naoc(); + } + return s; + }), + (i.prototype.escCloseView = function () { + var e = [], + i = t.VlaoF.PlayFunConfigPos; + for (var n in i) i[n].esc && e.push(i[n].view); + for (var s, a = t.yCIt.CtcxUT.$children.length - 1; a >= 0; a--) + if (((s = egret.getQualifiedClassName(t.yCIt.CtcxUT.$children[a])), -1 != e.indexOf(s))) { + this.close(s), (e = null); + break; + } + e = null; + }), + (i.prototype.checkCloseView = function () { + for (var e = !1, i = 0, n = this._opens; i < n.length; i++) { + var s = n[i], + a = this.ZzTs(s); + if (a && a.isTopLevel) { + e = !0; + break; + } + } + e || ((t.OSzbc.WINDOW_OPEN = !1), t.SceneManager.ins().getSceneName() == t.SceneManager.MAIN && (this.ZbzdY(t.GameSceneView) || this.openEasy(t.GameSceneView))); + }), + Object.defineProperty(i, "gamescene", { + get: function () { + return i.ins().ZzTs(t.GameSceneView); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.ZzTs = function (t) { + var e = this.getKey(t); + return this._views[e]; + }), + (i.prototype.closeAll = function () { + for (; this._opens.length; ) this.closeEasy(this._opens[0], []); + this.destroyAllNotShowView(), this.checkCloseView(); + }), + (i.prototype.closeTopLevel = function () { + var t = this.closeTopFilters; + this.closeTopFilters = []; + for (var e = this._opens.length - 1; e >= 0; e--) { + var i = this._opens[e]; + if (!(t.indexOf(i) >= 0)) { + var n = this.ZzTs(i), + s = 1e6; + isNaN(parseInt(i)) || (s = parseInt(i)), n && n.isTopLevel && this.closeEasy(i, []); + } + } + this.checkCloseView(); + }), + (i.prototype.openNum = function () { + return this._opens.length; + }), + (i.prototype.ZbzdY = function (t) { + return this._opens.indexOf(this.getKey(t)) >= 0; + }), + (i.prototype.hasTopView = function () { + for (var t = 0, e = this._opens; t < e.length; t++) { + var i = e[t], + n = this.ZzTs(i); + if (n && n.isTopLevel) return !0; + } + return !1; + }), + (i.prototype.destroyAllNotShowView = function () { + for (var t in this._hCode2Key) { + var e = this._hCode2Key[t]; + if (-1 == this._opens.indexOf(e)) { + var i = this.ZzTs(e); + i && i.destoryView && i.destoryView(!1); + } + } + }), + (i.prototype.destroyWin = function () { + t.KHNO.ins().RTXtZF(this.delayDestroyWin, this) || t.KHNO.ins().tBiJo(2e4, 1, this.delayDestroyWin, this); + }), + (i.prototype.delayDestroyWin = function () { + t.KHNO.ins().remove(this.delayDestroyWin, this), KdbLz.os.RM.destroyWin(); + }), + i + ); + })(t.BaseClass); + (t.mAYZL = e), __reflect(e.prototype, "app.mAYZL"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.PT_CONST = 1), + (t.PT_BASE = 2), + (t.PT_FIGHT = 3), + (t.PT_NUMBER = 4), + (t.PT_SOCIAL = 5), + (t.PT_LEVEL = 6), + (t.PT_MONEY = 7), + (t.PT_HPMP = 8), + (t.PT_EXP = 9), + (t.PT_COMBO = 10), + (t.PT_MOUNT = 11), + (t.PT_WORKDAY = 12), + (t.PT_MODEL = 13), + (t.PT_NAME = 14), + (t.PT_WING = 15), + (t.PT_VIP = 16), + (t.AP_ACTOR_ID = 0), + (t.AP_X = 1), + (t.AP_Y = 2), + (t.AP_BODY_ID = 3), + (t.AP_FACE_ID = 4), + (t.AP_DIR = 5), + (t.AP_LEVEL = 6), + (t.AP_HP = 7), + (t.AP_MP = 8), + (t.AP_STATE = 9), + (t.AP_BODY_COLOR = 10), + (t.AP_MAX_HP = 11), + (t.AP_MAX_MP = 12), + (t.AP_PHYSICAL_ATTACK_MIN = 13), + (t.AP_PHYSICAL_ATTACK_MAX = 14), + (t.AP_MAGIC_ATTACK_MIN = 15), + (t.AP_MAGIC_ATTACK_MAX = 16), + (t.AP_WIZARD_ATTACK_MIN = 17), + (t.AP_WIZARD_ATTACK_MAX = 18), + (t.AP_PHYSICAL_DEFENCE_MIN = 19), + (t.AP_PHYSICAL_DEFENCE_MAX = 20), + (t.AP_MAGIC_DEFENCE_MIN = 21), + (t.AP_MAGIC_DEFENCE_MAX = 22), + (t.AP_HIT_RATE = 23), + (t.AP_DOGE_RATE = 24), + (t.AP_MAGIC_HIT_RATE = 25), + (t.AP_MAGIC_DOGERATE = 26), + (t.AP_HP_RENEW = 27), + (t.AP_MP_RENEW = 28), + (t.AP_MOVE_SPEED = 29), + (t.AP_ATTACK_SPEED = 30), + (t.AP_LUCK = 31), + (t.AP_CURSE = 32), + (t.AP_TOXIC_DOGERATE = 33), + (t.PETRIFICATION = 34), + (t.PROP_ACTOR_MONSTER_BODY = 35), + (t.PROP_ACTOR_TEAMFUBEN_OUTPUT = 36), + (t.PROP_ACTOR_TEAMFUBEN_TEAMID = 37), + (t.PROP_ACTOR_TEAMFUBEN_FBID = 38), + (t.PROP_ACTOR_DEDUCT_DAMAGE = 39), + (t.PROP_MONSTER_ASCRIPTIONID = 40), + (t.AP_WEAPON = 41), + (t.BODY_SUIT = 42), + (t.PROP_ACTOR_SOLDIERSOULAPPEARANCE = 43), + (t.PROP_ACTOR_WEAPON_ID = 44), + (t.AP_PK_MODE = 45), + (t.AP_SEX = 46), + (t.AP_JOB = 47), + (t.AP_EXP_L = 48), + (t.AP_EXP_H = 49), + (t.AP_PK_VALUE = 50), + (t.AP_BAG_GRID_COUNT = 51), + (t.AP_VIP_YELLOW_TIME = 52), + (t.AP_ACTOR_FORCE = 53), + (t.AP_BIND_COIN = 54), + (t.AP_NOT_BIND_COIN = 55), + (t.AP_BIND_YUANBAO = 56), + (t.AP_NOT_BIND_YUANBAO = 57), + (t.AP_MALICE_STATE = 58), + (t.AP_GUILD_ID = 59), + (t.AP_TEAM_ID = 60), + (t.AP_SOCIAL_MASK = 61), + (t.AP_GUILD_CON = 62), + (t.AP_GM_LEVEL = 63), + (t.AP_DEFAULT_SKILL_ID = 64), + (t.AP_MAX_EXP_L = 65), + (t.AP_MAX_EXP_H = 66), + (t.AP_EXPLOIT_VALUE = 67), + (t.PROP_ACTOR_CURCUSTOMTITLE = 68), + (t.AP_EXPLOIT_TODAY_VALUE = 69), + (t.AP_VIP_TYPE = 70), + (t.AP_VALUE = 71), + (t.AP_DRAW_YB_COUNT = 72), + (t.AP_POWER_VALUE = 73), + (t.AP_ACTOR_RECOVERSTATE = 74), + (t.AP_PICKUPPET = 75), + (t.PROP_ACTOR_DRAGONSOUL_VALIE = 76), + (t.PROP_ACTOR_PERSONBOSS_JIFEN = 77), + (t.AP_STORAGE_GRID_COUNT = 78), + (t.AP_ACTOR_CIRCLE = 79), + (t.AP_ACTOR_CIRCLE_SOUL = 80), + (t.AP_XP_VALUE = 81), + (t.AP_SIGN_IN = 82), + (t.AP_POPULARITY = 83), + (t.AP_ZJ_VALUE = 84), + (t.PROP_ACTOR_CIRCLEPOTENTIALPOINT = 85), + (t.PROP_ACTOR_JADEEXP = 86), + (t.AP_ACTOR_WINGPOINT = 87), + (t.AP_ACTOR_HEAD_TITLE = 88), + (t.AP_DIMENSION_KEY = 89), + (t.AP_WORK_DAY_1_H = 90), + (t.AP_PICKUPPET_RANGE = 91), + (t.AP_WORK_DAY_2_H = 92), + (t.AP_WORK_DAY_3_L = 93), + (t.AP_WORK_DAY_3_H = 94), + (t.AP_ACTOR_SIGNIN = 95), + (t.OFFICIAL_POSITION = 96), + (t.AP_PROP_ACTOR_DEPOT_COIN = 97), + (t.AP_ACTOR_VIP_GRADE = 98), + (t.AP_ACTOR_VIP_POINT = 99), + (t.PROP_ACTOR_XIUWEI = 100), + (t.PROP_ACTOR_MARRY_INTIMACY_VALUE = 101), + (t.PROP_ACTOR_FLYSHOES = 102), + (t.PROP_ACTOR_BORATNUM = 103), + (t.PROP_RECYCLE_INTEGRAL = 104), + (t.PROP_MERIDIANS_LEVEL = 105), + (t.PROP_TRADING_QUOTA = 106), + (t.NEXT_ACK_SKILLID = 107), + (t.AP_ZY_ID = 108), + (t.PROP_ACTOR_CRIT_DAMAGE = 109), + (t.PROP_ACTOR_CRIT_RATE = 110), + (t.PROP_ACTOR_CRIT_POWER = 111), + (t.PROP_ACTOR_DEDUCT_CRIT = 112), + (t.PROP_ACTOR_SPEED_MEDICINE = 113), + (t.PROP_AREASTATE1 = 114), + (t.PROP_AREASTATE2 = 115), + (t.PROP_ACTOR_GOLDEQ_ATTR1 = 116), + (t.PROP_ACTOR_GOLDEQ_ATTR2 = 117), + (t.PROP_ACTOR_GOLDEQ_ATTR3 = 118), + (t.PROP_ACTOR_GOLDEQ_ATTR4 = 119), + (t.PROP_ACTOR_GOLDEQ_ATTR5 = 120), + (t.PROP_ACTOR_GOLDEQ_ATTR6 = 121), + (t.PROP_ACTOR_GOLDEQ_ATTR7 = 122), + (t.PROP_ACTOR_GOLDEQ_ATTR8 = 123), + (t.PROP_ACTOR_CRIT_MUTRATE = 124), + (t.FORBIDEN_TIME = 125), + (t.PETSTATE = 126), + (t.PROP_ACTOR_DAMAGEBONUS = 127), + (t.PROP_ACTOR_IGNORDEFENCE = 128), + (t.PROP_ACTOR_SUCKBLOOD = 129), + (t.PROP_ACTOR_EXP_POWER = 130), + (t.PROP_ACTOR_LOOTBINDCOIN = 131), + (t.PROP_ACTOR_CUT = 132), + (t.ACK_RATE = 133), + (t.HP_bonus = 134), + (t.PK_DAMAGE_REDUCTION = 135), + (t.PROP_PROTECTION = 136), + (t.WAR_CURRENCY = 137), + (t.RESURRECTION_VIP = 138), + (t.PROP_ACTOR_HALFMONTHS_INCREASEDAMAGE = 139), + (t.PROP_ACTOR_FIRE_INCREASEDAMAGE = 140), + (t.PROP_ACTOR_DAYBYDAY_INCREASEDAMAGE = 141), + (t.PROP_ACTOR_ICESTORM_INCREASEDAMAGE = 142), + (t.PROP_ACTOR_FIRERAIN_INCREASEDAMAGE = 143), + (t.PROP_ACTOR_THUNDER_INCREASEDAMAGE = 144), + (t.PROP_ACTOR_BLOODBITE_INCREASEDAMAGE = 145), + (t.PROP_ACTOR_FIRESIGN_INCREASEDAMAGE = 146), + (t.PROP_ACTOR_HALFMONTHS_REDUCEDAMAGE = 147), + (t.PROP_ACTOR_FIRE_REDUCEDAMAGE = 148), + (t.PROP_ACTOR_DAYBYDAY_REDUCEDAMAGE = 149), + (t.PROP_ACTOR_ICESTORM_REDUCEDAMAGE = 150), + (t.PROP_ACTOR_FIRERAIN_REDUCEDAMAGE = 151), + (t.PROP_ACTOR_THUNDER_REDUCEDAMAGE = 152), + (t.PROP_ACTOR_BLOODBITE_REDUCEDAMAGE = 153), + (t.PROP_ACTOR_FIRESIGN_REDUCEDAMAGE = 154), + (t.PROP_ACTOR_ROLE_CREATETIME = 155), + (t.PROP_TRADING_QUOTA_L = 156), + (t.PROP_TRADING_QUOTA_H = 157), + (t.PROP_GUILD_LEVEL = 158), + (t.PROP_ACTOR_CURCUSTOMTITLE2 = 159), + (t.numProperties = 160), + (t.AP_ACTOR_VIP_LEVEL = 10002), + (t.AP_ACTOR_HEAD_TITLE2 = 10003), + (t.ACTOR_NAME = 8e5), + (t.ACTOR_NAME_COLOR = 800001), + (t.ACTOR_MASTER_NAME = 800002), + (t.ACTOR_DESC_NAME = 800003), + (t.ACTOR_RACE = 800004), + (t.NPC_FUNC = 800005), + (t.NPC_TYPE = 800006), + (t.MONSTER_POS = 800007), + (t.ACTOR_FLYHPCHANGE = 800008), + (t.ACTOR_GUILD_NAME = 800009), + (t.ACTOR_CHENGHAONAME = 800010), + (t.MONSTER_LIVETIMEOUT = 800011), + (t.ACK_SKILLID = 9e5), + (t.ACK_SKILLLEVEL = 900001), + (t.ACTOR_HANDLER = 900002), + (t.ACTOR_HANDLER_NAME = 900003), + (t.ACTOR_FASHION_DISPLAY = 900004), + (t.ACTOR_WEAPON_DISPLAY = 900005), + t + ); + })(); + (t.nRDo = e), __reflect(e.prototype, "app.nRDo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isTopLevel = !1), (t.exclusionWins = []), (t.posArr = null), (t.touchID = 0), (t._isInit = !1), t; + } + return ( + __extends(i, e), + (i.prototype.addExclusionWin = function (t) { + -1 == this.exclusionWins.indexOf(t) && this.exclusionWins.push(t); + }), + (i.prototype.isInit = function () { + return this._isInit; + }), + (i.prototype.ZbzdY = function () { + return null != this.stage && this.visible; + }), + (i.prototype.addToParent = function (e) { + e.addChild(this), t.KHNO.ins().remove(this.destoryView, this); + }), + (i.prototype.Naoc = function () { + this.parent; + t.lEYZI.Naoc(this), this.destoryView(); + }), + (i.prototype.initUI = function () { + (this._isInit = !0), this.dragDrop(); + }), + (i.prototype.initData = function () {}), + (i.prototype.destroy = function () {}), + (i.prototype.destoryView = function (e) { + void 0 === e && (e = !0), t.KHNO.ins().removeAll(this), t.mAYZL.ins().destroy(this.hashCode); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI && + (this.removeBeginEvent(this.dragDropUI, this.dragDropFunction), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.dragDropFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.dragDropFunction, this)); + }), + (i.prototype.setPostData = function (t) { + this.posArr = t; + }), + (i.prototype.initViewPos = function () { + var e = egret.getQualifiedClassName(this); + if (e) { + var i = t.UIOpenViewMode.getViewPos(e); + i && (this.posArr = i); + } + if (this.posArr) { + if ( + (void 0 != this.posArr.left && this.posArr.left >= 0 && (this.posArr.right || (this.x = this.posArr.left)), + void 0 != this.posArr.right && this.posArr.right >= 0 && (this.posArr.left || (this.x = t.aTwWrO.ins().getWidth() - this.width - this.posArr.right)), + void 0 != this.posArr.top && this.posArr.top >= 0 && (this.posArr.bottom || (this.y = this.posArr.top)), + void 0 != this.posArr.bottom && this.posArr.bottom >= 0 && (this.posArr.top || (this.y = t.aTwWrO.ins().getHeight() - this.height - this.posArr.bottom)), + void 0 != this.posArr.horizontalCenter) + ) { + var n = this.formatRelative(this.posArr.horizontalCenter, 0.5 * t.aTwWrO.ins().getWidth()); + this.posArr.left || this.posArr.right + ? void 0 != this.posArr.left && this.posArr.left >= 0 + ? (this.x = this.posArr.left) + : void 0 != this.posArr.right && this.posArr.right >= 0 && (this.x = t.aTwWrO.ins().getWidth() - this.width - this.posArr.horizontalCenter) + : isNaN(n) || (this.x = Math.round((t.aTwWrO.ins().getWidth() - this.width) / 2 + n)); + } + if (void 0 != this.posArr.verticalCenter) { + var s = this.formatRelative(this.posArr.verticalCenter, 0.5 * t.aTwWrO.ins().getHeight()); + this.posArr.top || this.posArr.bottom + ? void 0 != this.posArr.top && this.posArr.top >= 0 + ? (this.y = this.posArr.top) + : void 0 != this.posArr.bottom && this.posArr.bottom >= 0 && (this.y = t.aTwWrO.ins().getHeight() - this.height - this.posArr.verticalCenter) + : isNaN(s) || (this.y = Math.round((t.aTwWrO.ins().getHeight() - this.height) / 2 + s)); + } + } + }), + (i.prototype.formatRelative = function (t, e) { + if (!t || "number" == typeof t) return t; + var i = t, + n = i.indexOf("%"); + if (-1 == n) return +i; + var s = +i.substring(0, n); + return 0.01 * s * e; + }), + (i.prototype.setVisible = function (t) { + this.visible = t; + }), + (i.openCheck = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + return !0; + }), + (i.prototype.dragDrop = function (t) { + void 0 === t && (t = !0), this.dragDropUI && (t ? this.addBeginEvent(this.dragDropUI, this.dragDropFunction) : this.removeBeginEvent(this.dragDropUI, this.dragDropFunction)); + }), + (i.prototype.dragDropFunction = function (e) { + this.dragDropUI && + (e.type == egret.TouchEvent.TOUCH_BEGIN + ? ((this.touchID = e.touchPointID), + this.parent && this.parent.addChild(this), + this.clickPonit || (this.clickPonit = new egret.Point()), + (this.clickPonit.x = e.stageX - e.target.x), + (this.clickPonit.y = e.stageY - e.target.y), + this.globalToLocal(this.clickPonit.x, this.clickPonit.y, this.clickPonit), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.dragDropFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.dragDropFunction, this)) + : e.type == egret.TouchEvent.TOUCH_MOVE + ? this.touchID == e.touchPointID && ((this.x = e.stageX - this.clickPonit.x), (this.y = e.stageY - this.clickPonit.y)) + : e.type == egret.TouchEvent.TOUCH_END && + this.touchID == e.touchPointID && + (t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.dragDropFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.dragDropFunction, this))); + }), + i + ); + })(t.BaseView); + (t.gIRYTi = e), __reflect(e.prototype, "app.gIRYTi", ["app.IBaseView"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.cvmJ = new t.VbTul()), + (e.dShUbY = new t.VbTul()), + (e.vMOgI = new t.VbTul()), + (e.CtcxUT = new t.VbTul()), + (e.VdZy = new t.VbTul()), + (e.LjbkQx = new t.VbTul()), + (e.UIupV = new t.VbTul()), + (e.tKOC = new t.VbTul()), + e + ); + })(); + (t.yCIt = e), __reflect(e.prototype, "app.yCIt"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._nameTxt = null), + (i.isShowBody = !0), + (i.canMove = !1), + (i.disappearTime = 0), + (i._saviorBuff = []), + (i.modelBuffAr = {}), + (i.acktTime = 0), + (i.touchEnabled = !1), + (i.touchChildren = !0), + (i.buffList = {}), + (i._buffTypeAry = []), + (i.buffType1Ary = []), + (i.buffType2Ary = []), + (i.buffType3Ary = []), + (i.buffType4Ary = []), + (i.buffType5Ary = []), + (i._saviorBuff = []), + (i.charEntityType = t.EntityFilter.no), + (i.alpha = 1), + (i._bodyContainer.filters = null), + (i.filters = null), + (i.effs = {}), + (i._bodyContainer.touchEnabled = !0), + (i._bodyContainer.touchChildren = !1), + (i._chatTxt = new eui.Label()), + (i._chatTxt.textAlign = egret.HorizontalAlign.CENTER), + (i._chatTxt.width = 240), + (i._chatTxt.anchorOffsetX = 120), + (i._chatTxt.size = 14), + (i._chatTxt.stroke = 1), + (i._chatTxt.strokeColor = 0), + (i._chatTxt.textColor = 15856626), + i.titleCantainer.addChild(i._chatTxt), + (i._chatTxt.y = -160 - i._chatTxt.height), + (i._chatTxt.visible = !1), + (i._chatTxt.touchEnabled = !1), + (i._hpBar = t.mAYZL.gamescene.map.getCharHpBar()), + (i._nameTxt = t.mAYZL.gamescene.map.getCharNameLable()), + (i._Shadow = t.mAYZL.gamescene.map.getShadow()), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "buffTypeAry", { + get: function () { + return this._buffTypeAry.sort(function (t, e) { + return t.iconshow - e.iconshow; + }); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getHpBuff = function () { + for (var t = 0; t < this._buffTypeAry.length; t++) if (79 == this._buffTypeAry[t].id || 80 == this._buffTypeAry[t].id || 81 == this._buffTypeAry[t].id) return !0; + return !1; + }), + (i.prototype.getWeaponnSoulBuff = function () { + for (var t = 0; t < this._buffTypeAry.length; t++) if (244 == this._buffTypeAry[t].id) return !0; + return !1; + }), + Object.defineProperty(i.prototype, "saviorBuff", { + get: function () { + return this._saviorBuff; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onEndClick = function (e) { + var i = t.NWRFmB.ins().getPayer; + if (KdbLz.qOtrbE.iFbP) { + if ((e.stopPropagation(), !this.isMy)) + if (t.qTVCL.ins().isOpen) { + if (this.isCharRole || this.isMyPet) { + if (1 == i.propSet.getPKtype()) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:当前为和平攻击模式|"); + this.ackTips(this.recog, 1); + } + this.ackTips(this.recog); + } else if (t.qTVCL.ins().attackState) { + if ((this.isCharRole || this.isMyPet) && 1 == i.propSet.getPKtype()) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:当前为和平攻击模式|"); + this.ackTips(this.recog, 1); + } else + this.isDead || + (this.isMyPet && 5 != i.propSet.getPKtype()) || + (t.EhSWiR.m_ack_Char && t.EhSWiR.m_ack_Char.recog != this.recog && t.NWRFmB.ins().getPayer.clearStarPatch(), t.Nzfh.ins().postUpdateTarget(this.recog)); + } else + this.isMy || + (this.isMyPet && 5 != i.propSet.getPKtype()) || + this.isDead || + t.EhSWiR.m_Click_Type != t.ClickClass.CLICK_LEFT || + (t.EhSWiR.m_ack_Char && t.EhSWiR.m_ack_Char.recog != this.recog && t.NWRFmB.ins().getPayer.clearStarPatch(), + this.isCharRole ? t.Nzfh.ins().postUpdateTarget(this.recog) : ((t.EhSWiR.m_ack_Char = this), t.Nzfh.ins().postUpdateTarget(this.recog))); + }), + (i.prototype.ackTips = function (e, i) { + void 0 === i && (i = 0); + var n = t.NWRFmB.ins().getCharRole(e); + if (n && n.propSet) { + if ((t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System95 + "|C:0xffffff&T:" + n.propSet.getName() + "||"), i)) { + t.qTVCL.ins().YFOmNj(), (t.EhSWiR.m_ack_Char = n); + var s = t.EhSWiR.m_ack_Char.propSet.getName(); + t.uMEZy.ins().showFightTips('开始自动PK"' + s + '"'), (t.qTVCL.ins().attackState = !0); + } else (t.EhSWiR.m_ack_Char = n), (t.qTVCL.ins().ackRecog = e); + t.Nzfh.ins().postUpdateTarget(e); + } + }), + (i.prototype.mouseMove = function (e) { + if (this.propSet) + if (e.type == mouse.MouseEvent.MOUSE_OUT) (this.filters = null), (t.EhSWiR.m_Move_Char = null), this.updateNameType(), t.uMEZy.ins().closeTips(), (this.isShowGuanZhi = !1); + else if (e.type == mouse.MouseEvent.MOUSE_OVER) { + (this.isShowGuanZhi = !0), (this.filters = t.FilterUtil.WHITE()); + var i = t.NWRFmB.ins().getKeyDropEntity(this.currentX * t.GameMap.ROW + this.currentY); + if (i && i.length) + for (var n = 0; n < i.length; n++) { + var s = t.NWRFmB.ins().getDropItem(i[n]); + if (s) { + s.showDrop(); + break; + } + } + if (!this.isMy) { + var a = t.NWRFmB.ins().getPayer; + this.isDead || (this.isMyPet && 5 != a.propSet.getPKtype()) || (t.EhSWiR.m_Move_Char = this), + this.parent && (this.isCharRole || this.isPet ? (this._nameTxt.visible = !t.GameMap.aaCannotSeeName) : (this._nameTxt.visible = !0)); + } + } + }), + (i.prototype.initInfo = function (t, e, i) { + (this.recog = t), + (this.charName = e), + (this.propSet = i), + i && + ((this.dir = i.getDir()), this._hpBar && (this._hpBar.visible = !0), (this._nameTxt.visible = !0), this.updateNameType(), this.updateRage(), this.updateGuanzhi(), this.updateRoleBuff()); + }), + (i.prototype.updateNameType = function () { + this.propSet && + (this.propSet.getRace() == t.ActorRace.Human || this.propSet.getRace() == t.ActorRace.enPet || this.propSet.getRace() == t.ActorRace.dummy + ? this.isMy || this.isMyPet + ? (this._nameTxt.visible = !0) + : (this._nameTxt.visible = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowHuman) && !t.GameMap.aaCannotSeeName ? !0 : !1) + : this.propSet.getRace() == t.ActorRace.Monster && (this._nameTxt.visible = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowMonster) ? !0 : !1)); + }), + (i.prototype.updateChassis = function () { + var e = t.VlaoF.Monster[this.propSet.getACTOR_ID()]; + e && !this.isDummyCharRole + ? (e.nameQuality && e.nameQuality > 1 + ? (this._nameTxt.textColor = t.ClwSVR.GOODS_COLOR[e.nameQuality - 1] ? t.ClwSVR.GOODS_COLOR[e.nameQuality - 1] : t.ClwSVR.NAME_WHITE) + : (this._nameTxt.textColor = t.ClwSVR.NAME_WHITE), + e.scale ? (this._bodyContainer.scaleX = this._bodyContainer.scaleY = e.scale / 100) : (this._bodyContainer.scaleX = this._bodyContainer.scaleY = 1), + e.shadow ? t.lEYZI.Naoc(this._Shadow) : t.mAYZL.gamescene.map.addShadow(this._Shadow), + e.chassis ? (t.lEYZI.Naoc(this._Shadow), this.addChassis(e.chassis)) : this.removeChassis()) + : t.lEYZI.Naoc(this._Shadow); + }), + (i.prototype.initialize = function () { + (this.isShowGuanZhi = !1), + (this._nameTxt.textColor = t.ClwSVR.NAME_WHITE), + (this._chatTxt.text = ""), + (this._chatTxt.visible = !1), + (this.floatingBloodAry.length = 0), + (this.floatingTime = 0), + this.showBodyContainer(), + this.updateModel(), + (this.dir = this.propSet.getValue(t.nRDo.AP_DIR)), + this.setXY(this.propSet.getValue(t.nRDo.AP_X), this.propSet.getValue(t.nRDo.AP_Y)), + this.onChange(), + this.setCharName(this.propSet.getName()), + this.setNameTxtColor(), + this.updateMaxHp(this.propSet.getMaxHp()), + this.updateHp(this.propSet.getHp()), + (this.titleCantainer.visible = !0), + this.updateChassis(), + this.updateLabelxy(), + this.updateTitle(), + this.updateCustomisedTitle(), + this.updateLevel(), + (this.visible = !0), + this.isCharRole && this.updatePet(); + }), + (i.prototype.resurgenceChar = function () {}), + (i.prototype.updateSuit = function (t) {}), + (i.prototype.changePropertys = function (e) { + var i = e.getPropValueObj(), + n = !1; + for (var s in i) { + var a = parseInt(s); + if (a == t.nRDo.ACTOR_NAME) { + var r = i[a].split("\\"), + o = r[0]; + this.propSet.setProperty(a, o), + this.propSet.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + r.length > 1 && "" != r[1] + ? (r[2] && "" != r[2] ? this.propSet.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + r[1] + ">(" + r[2] + ")") : this.propSet.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + r[1] + ">"), + this.isMy && t.TKZUv.ins().setMyRoleInfoGuildName(r[1])) + : this.isMy && t.TKZUv.ins().setMyRoleInfoGuildName(""), + this.setCharName(this.propSet.getName() + ""), + this.isMy && t.TKZUv.ins().setMyRoleInfoName(this.propSet.getName()); + } else + a == t.nRDo.BODY_SUIT + ? this.updateSuit(i[a]) + : (this.propSet.setProperty(a, i[a]), + this.isCharRole && a == t.nRDo.AP_LEVEL && (this.playUpgradeEff(), t.OSzbc.ins().wVgAo("shengji_mp3"), this.updateLevel()), + a == t.nRDo.ACTOR_NAME_COLOR || a == t.nRDo.AP_MALICE_STATE || a == t.nRDo.AP_PK_VALUE + ? this.setNameTxtColor() + : a == t.nRDo.AP_HP + ? this.floatingBlood(e.getHp()) + : a == t.nRDo.AP_MAX_HP + ? this.updateMaxHp(e.getMaxHp()) + : a == t.nRDo.AP_BODY_ID || a == t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE + ? this.isCharRole + ? this.initBody(ZkSzi.RES_DIR_BODY + this.propSet.getBodyStr() + "_" + this.propSet.getSex()) + : this.initBody(ZkSzi.RES_DIR_MONSTER + "monster" + this.propSet.getBody()) + : a == t.nRDo.AP_DIR || + (a == t.nRDo.ACTOR_FASHION_DISPLAY + ? this.isCharRole && this.setBodyEff(this.propSet.getBodyEFFStr()) + : a == t.nRDo.AP_DIR + ? this.isMy || (this.dir = this.propSet.getDir()) + : a == t.nRDo.AP_WEAPON + ? this.propSet.getWeapon() + ? this.setWeaponFileName(this.propSet.getWeaponStr()) + : this.setWeaponFileName(null) + : a == t.nRDo.ACTOR_WEAPON_DISPLAY + ? this.setWeaponEff(this.propSet.getWeaponEffStr()) + : a == t.nRDo.AP_FACE_ID + ? this.propSet.getFacte() + ? this.initHair(ZkSzi.RES_DIR_HAIR + this.propSet.getFacteStr() + "_" + this.propSet.getSex()) + : this.initHair(null) + : a == t.nRDo.AP_SEX + ? this.isCharRole + ? (this.propSet.getWeapon() ? this.setWeaponFileName(this.propSet.getWeaponStr()) : this.setWeaponFileName(null), + this.propSet.getFacte() ? this.initHair(ZkSzi.RES_DIR_HAIR + this.propSet.getFacteStr() + "_" + this.propSet.getSex()) : this.initHair(null), + this.initBody(ZkSzi.RES_DIR_BODY + this.propSet.getBodyStr() + "_" + this.propSet.getSex()), + this.setBodyEff(this.propSet.getBodyEFFStr()), + this.setWeaponEff(this.propSet.getWeaponEffStr())) + : this.initBody(ZkSzi.RES_DIR_MONSTER + "monster" + this.propSet.getBody()) + : a == t.nRDo.AP_LEVEL || a == t.nRDo.AP_ACTOR_CIRCLE + ? (t.bPGzk.ins().getRecommendEquip(), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_LEVEL_CIRCLE)) + : a == t.nRDo.AP_ACTOR_HEAD_TITLE + ? this.updateTitle() + : a == t.nRDo.PROP_ACTOR_CURCUSTOMTITLE + ? this.updateCustomisedTitle() + : a == t.nRDo.AP_ACTOR_VIP_GRADE + ? this.isCharRole && this._hpBar.updateChaoWanVip(this.propSet.getVip()) + : a == t.nRDo.OFFICIAL_POSITION + ? this.isCharRole && this.updateGuanzhi() + : a == t.nRDo.AP_DIMENSION_KEY + ? this.isMy && t.Nzfh.ins().post_dimensionalKey() + : a == t.nRDo.AP_GUILD_ID || a == t.nRDo.PROP_AREASTATE1 || a == t.nRDo.PROP_AREASTATE2 + ? (n = !0) + : a == t.nRDo.AP_ZY_ID + ? (n = !0) + : a == t.nRDo.AP_BIND_COIN || a == t.nRDo.PROP_RECYCLE_INTEGRAL || a == t.nRDo.AP_NOT_BIND_COIN || a == t.nRDo.AP_BIND_YUANBAO || a == t.nRDo.AP_NOT_BIND_YUANBAO + ? this.isMy && t.Nzfh.ins().postMoneyChange() + : a == t.nRDo.PETSTATE + ? this.isMy && t.Nzfh.ins().post_petChange() + : a == t.nRDo.AP_EXP_L || a == t.nRDo.AP_EXP_H + ? this.isMy && t.Nzfh.ins().post_playerExpChange() + : a == t.nRDo.AP_VIP_TYPE + ? this.isMy && t.Nzfh.ins().post_playerVIPChange() + : a == t.nRDo.AP_ZJ_VALUE + ? this.isMy && t.Nzfh.ins().post_playerBlessChange() + : a == t.nRDo.AP_ACTOR_VIP_POINT + ? (this.isMy && t.Nzfh.ins().post_playerViolentChange(), this.updateRage()) + : a == t.nRDo.AP_GUILD_CON + ? (this.isMy && t.Nzfh.ins().post_playerGuildConChange(), this.updateRage()) + : a == t.nRDo.AP_STORAGE_GRID_COUNT + ? t.Nzfh.ins().post_warehouseChange() + : a == t.nRDo.PETRIFICATION + ? (this.isCharRole && i[a] && this.isMy && t.uMEZy.ins().showFightTips(t.CrmPU.language_Omission_txt47), this.updateBodyType()) + : a == t.nRDo.AP_ACTOR_RECOVERSTATE + ? this.isMy && 1 == i[a] && (t.Nzfh.ins().post_playerRectVisChange(), t.mAYZL.ins().open(t.JumpTipsView, t.CrmPU.language_Common_217, "app.SetUpView", [6])) + : a == t.nRDo.AP_PICKUPPET && this.isCharRole && this.updatePet())); + } + n && + (this.isMy + ? (t.EhSWiR.updateNaemColor(), t.NWRFmB.ins().updateMonsterName()) + : (this.deleteMessage(t.Qmuk.NAME_UPDATE_COLOR), this.postCharMessage(t.Qmuk.NAME_UPDATE_COLOR, 0, 0, 0, null))), + this.isMy && t.Nzfh.ins().postPlayerChange(), + this.recog == t.NWRFmB.ins().getPayer.lockTarget && t.Nzfh.ins().postUpdateTarget(this.recog); + }), + (i.prototype.updatePet = function () {}), + (i.prototype.isNoPickUp = function () {}), + (i.prototype.updateLevel = function () { + if (this.isCharRole && this._hpBar) { + var t = "x", + e = this.propSet.getAP_JOB(); + e == JobConst.ZhanShi ? (t += "z") : e == JobConst.FaShi && (t += "f"), e == JobConst.DaoShi && (t += "d"), (t += this.propSet.mBjV()), this._hpBar.updateLevel(t); + } + }), + (i.prototype.initHair = function (t) { + var e = 0; + this.propSet && (e = this.propSet.getSuit()), + t && "" != t && !e ? ((this._hair.visible = !0), (this._disOrder[CharMcOrder.HAIR] = this._hair), this.addMc(CharMcOrder.HAIR, t)) : this.hideHair(); + }), + (i.prototype.setCharName = function (t) { + var e = t + "", + i = this.propSet.getGuildName(); + i && "" != i && (e = i + "\n" + t), (this._nameTxt.text = e); + }), + (i.prototype.setNameTxtColor = function () {}), + (i.prototype.getNameColor = function () { + return this._nameTxt.textColor; + }), + (i.prototype.getMapColor = function () { + return this.getNameColor(); + }), + (i.prototype.updateHp = function (t) { + this._hpBar.value = Math.min(t, this._hpBar.maximum); + }), + (i.prototype.getHP = function () { + return this._hpBar.value; + }), + (i.prototype.updateMaxHp = function (t) { + (this._hpBar.maximum = t), this.updateHp(this.propSet.getHp()); + }), + (i.prototype.playAction = function (n, s) { + var a = this; + if (this._state != n || this.isAtkAction()) { + if (n == t.EntityAction.HIT) { + var r = this; + if (this.hasEffById(i.Movie_ID_5) && ((this.effs[i.Movie_ID_5].visible = !1), !this.hasEffById(i.Movie_ID_51))) { + (this.effs[i.Movie_ID_51] = t.ObjectPool.pop("app.MovieClip")), (this.effs[i.Movie_ID_51].scaleX = this.effs[i.Movie_ID_51].scaleY = 1.2); + var o = ZkSzi.RES_DIR_SKILL + "mfd_e"; + this.addChild(this.effs[i.Movie_ID_51]), + this.effs[i.Movie_ID_51].playFileChar( + o, + 1, + function () { + r.removeEffect(i.Movie_ID_51), a.hasEffById(i.Movie_ID_5) && r.effs[i.Movie_ID_5] && (r.effs[i.Movie_ID_5].visible = !0); + }, + !1 + ); + } + } else this.hasEffById(i.Movie_ID_51) && this.removeEffect(i.Movie_ID_51); + e.prototype.playAction.call(this, n, s); + } + }), + Object.defineProperty(i.prototype, "dir", { + get: function () { + return this._dir; + }, + set: function (e) { + (e %= 8), this._dir != e && this._state != t.EntityAction.DIE && ((this._dir = e), this.loadBody()); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "action", { + get: function () { + return this._state; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getResDir = function (t) { + return 5 == this.dir ? 3 : 6 == this.dir ? 2 : 7 == this.dir ? 1 : this.dir; + }), + (i.prototype.reset = function () { + for (var t = 0; t < this.m_CharMsgList.length; t++) this.dispatchActorMsg(this.m_CharMsgList[t]); + this.removeAllFilters(); + }), + (i.prototype.destruct = function () { + this.destroy(), this.pickUpPet && this.pickUpPet.destruct(), (this.pickUpPet = null), t.ObjectPool.push(this); + }), + (i.prototype.destroy = function () { + e.prototype.destroy.call(this), + this.deadDelay(), + (this.alpha = 1), + this.remHP(), + t.lEYZI.Naoc(this._Shadow), + this.removeChassis(), + this.removeAllEffect(), + this.removeAllFilters(), + t.KHNO.ins().removeAll(this), + this.isMy || ((this.recog = 0), t.ObjectPool.push(this.propSet), (this.propSet = null), (this.charName = "")), + (this.floatingBloodAry.length = 0), + (this.floatingTime = 0), + (this.disappearTime = 0), + (this._nameTxt.text = ""), + (this._nameTxt.visible = !1), + this.disappear(), + t.lEYZI.Naoc(this); + }), + (i.prototype.deadDelay = function () { + this._hpBar && (this._hpBar.value = 0), this.removeAllBuff(), (this.atking = !1); + }), + (i.prototype.initBody = function (t, e) { + var i = 0; + this.propSet && (i = this.propSet.getSuit()); + if (i) { + var n = this.propSet.getSex(); + this.addMc(CharMcOrder.BODY, ZkSzi.RES_DIR_BODY_SUIT + "body" + i + "_" + n); + } else { + this.addMc(CharMcOrder.BODY, t); + } + this.addSpecialMC(); + }), + (i.prototype.addSpecialMC = function () { + "body020" == this.propSet.getBodyStr() || "body020" == this.propSet.getBodyStr() ? this.addMc(CharMcOrder.SPECIAL, ZkSzi.RES_DIR_BODY + "bodyeff_20_3") : this.removeMc(CharMcOrder.SPECIAL); + }), + (i.prototype.setWeaponFileName = function (t) { + var e = this.propSet.getSuit(); + if (t && !e) { + var i = !1; + ((this.isMy && !i) || !this.isMy) && this.addMc(CharMcOrder.WEAPON, ZkSzi.RES_DIR_WEAPON + t); + } else this.removeMc(CharMcOrder.WEAPON); + }), + (i.prototype.setBodyEff = function (t) { + var e = 0; + this.propSet && (e = this.propSet.getSuit()), + !t || "" == t || -1 != t.indexOf("bodyeff_20_") || e ? this.removeMc(CharMcOrder.BODYEFF) : this.addMc(CharMcOrder.BODYEFF, ZkSzi.RES_DIR_BODY_EFF + t); + }), + (i.prototype.setWeaponEff = function (t) { + var e = 0; + if ((this.propSet && (e = this.propSet.getSuit()), "" == t || e)) this.removeMc(CharMcOrder.WEAPONEFF); + else { + var i = this.addMc(CharMcOrder.WEAPONEFF, ZkSzi.RES_DIR_WEAPONEFF + t); + i && ((i.blendMode = egret.BlendMode.ADD), (i = null)); + } + }), + Object.defineProperty(i.prototype, "isPlaying", { + get: function () { + return this._body.isPlaying; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.isAtkAction = function () { + return this._state == t.EntityAction.ATTACK || this._state == t.EntityAction.CAST; + }), + (i.prototype.playBody = function (t) { + e.prototype.playBody.call(this, t); + }), + (i.prototype.loadBody = function () { + this.isShowBody && e.prototype.loadBody.call(this); + }), + (i.prototype.loadOther = function (t) { + this.isShowBody && e.prototype.loadOther.call(this, t); + }), + (i.prototype.loadNoDir = function (t) { + this.isShowBody && e.prototype.loadNoDir.call(this, t); + }), + (i.prototype.showBodyContainer = function () { + if (((this.isDead = !1), (this.deadChar = !1), this.updateHbName(), !this.isShowBody)) { + egret.Tween.removeTweens(this), (this.isShowBody = !0), (this.CharVisible = !0), (this.alpha = 1), this.addChildAt(this._bodyContainer, 0), this.loadBody(); + for (var e in this._disOrder) { + var i = +e; + this._disOrder[e] instanceof t.MovieClip && this.hasDir.indexOf(i) < 0 && this.loadNoDir(i); + } + } + }), + (i.prototype.hideBodyContainer = function () { + this.isShowBody && ((this.isShowBody = !1), this.removeChild(this._bodyContainer), (this.CharVisible = !1)); + }), + (i.prototype.getIsShowBody = function () { + return this.isShowBody; + }), + (i.prototype.resetStand = function () { + this.isAtkAction() && this.playAction(t.EntityAction.STAND); + }), + (i.prototype.hasEffById = function (t) { + return this.effs && this.effs[t] ? !0 : !1; + }), + (i.prototype.updateBlood = function (t) { + void 0 === t && (t = !1), !this.propSet; + }), + (i.prototype.onDead = function (e) { + if (((this._nameTxt.visible = !1), !this.isDead)) { + if (this.propSet.getRace() == t.ActorRace.Monster) { + var i = t.VlaoF.Monster[this.propSet.getACTOR_ID()]; + if ((i.damageMusicRate && i.damageMusicId && (i.dieMusicRate >= 100 || 100 * Math.random() >= i.dieMusicRate) && t.OSzbc.ins().wVgAo(i.dieMusicId + "_mp3"), i.deatheff)) { + var n = t.XwoNAr.CloseEff(); + n || + t.SkillEffPlayer.PlayHitEff( + i.deatheff, + { + x: this.currentX, + y: this.currentY, + }, + 0 + ); + } + } + (this.isDead = !0), t.NWRFmB.ins().delGridChar(this.recog), this.playAction(t.EntityAction.DIE, e), this.remHP(); + } + }), + (i.prototype.renFilter = function () { + (this._bodyContainer.filters = null), (this.charEntityType = t.EntityFilter.no); + }), + (i.prototype.remHP = function () { + (this.titleCantainer.visible = !1), this._hpBar && (this._hpBar.visible = !1); + }), + (i.prototype.disappear = function () { + var t = Object.keys(this.effs); + if (t && t.length) for (var i = 0; i < t.length; i++) this.removeEffect(+t[i]); + this.hideBodyContainer(), e.prototype.disappear.call(this); + }), + (i.prototype.rightDown = function (e) { + if (!this.isMy && t.EhSWiR.m_isClickCtrl && this.isCharRole) { + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(this.propSet.getACTOR_ID()), e.stopPropagation(); + } + }), + (i.prototype.removeEffect = function (e) { + var n = this.effs[e]; + n && (n instanceof t.MovieClip && n.destroy(), delete this.effs[e], e == i.Movie_ID_5 && this.removeEffect(i.Movie_ID_51)); + }), + (i.prototype.removeAllEffect = function () { + for (var e in this.effs) { + var i = this.effs[e]; + i && i instanceof t.MovieClip && i.destroy(); + } + t.ObjectPool.wipe(this.effs); + }), + (i.prototype.hasBuff = function (e) { + for (var i in this.buffList) { + var n = t.VlaoF.BuffConf[this.buffList[i].id]; + if (n.type == e) return !0; + } + return !1; + }), + (i.prototype.addBuff = function (e) { + if (e && ((this.buffList[e.key] = e), this.updateBuffEff(), this.isMy)) { + var i = t.VlaoF.BuffConf[e.id]; + i && i.tips && "" != i.tips && t.uMEZy.ins().showFightTips(i.tips); + } + }), + (i.prototype.getIsEQSecure = function () { + return this.modelBuffAr[t.EntityFilter.shield]; + }), + (i.prototype.getIsDisabled = function () { + return this.modelBuffAr[t.EntityFilter.disabled]; + }), + (i.prototype.getIsWarframe = function () { + return this.getBuff(230044); + }), + (i.prototype.updateBuffEff = function () { + t.ObjectPool.wipe(this.modelBuffAr), + this.buffType1Ary && (this.buffType1Ary.length = 0), + this.buffType2Ary && (this.buffType2Ary.length = 0), + this.buffType3Ary && (this.buffType3Ary.length = 0), + this.buffType4Ary && (this.buffType4Ary.length = 0), + this.buffType5Ary && (this.buffType5Ary.length = 0), + this._buffTypeAry && (this._buffTypeAry.length = 0), + t.BuffMgr.ins().isAddSavior && this._saviorBuff && (this._saviorBuff.length = 0); + for (var e in this.buffList) { + var n = t.VlaoF.BuffConf[this.buffList[e].id], + s = n.modelType; + s && (this.modelBuffAr[s] = !0), + 244 != n.id + ? 1 == n.iconshow + ? (this.buffType1Ary.push(n), this._buffTypeAry.push(n)) + : 2 == n.iconshow + ? (this.buffType2Ary.push(n), this._buffTypeAry.push(n)) + : 3 == n.iconshow + ? (this.buffType3Ary.push(n), this._buffTypeAry.push(n)) + : 4 == n.iconshow + ? this.buffType4Ary.push(n) + : 5 == n.iconshow && (this.buffType5Ary.push(n), this._buffTypeAry.push(n)) + : t.BuffMgr.ins().isAddSavior && this._saviorBuff.push(n); + } + if (this.getIsEQSecure() && !this.hasEffById(i.Movie_ID_5)) { + var a = t.ObjectPool.pop("app.MovieClip"); + (a.blendMode = egret.BlendMode.ADD), (a.scaleX = a.scaleY = 1.2); + var r = ZkSzi.RES_DIR_SKILL + "mfd_d"; + this.playFile(a, r), this.addChild(a), (this.effs[i.Movie_ID_5] = a); + } + if (this.getIsDisabled() && !this.hasEffById(i.Movie_ID_7)) { + var a = t.ObjectPool.pop("app.MovieClip"); + a.scaleX = a.scaleY = 1.2; + var r = ZkSzi.RES_DIR_SKILL + "zhicanbuff_c0"; + this.playFile(a, r), this.addChild(a), (this.effs[i.Movie_ID_7] = a); + } + this.updateBodyType(), + this.updateRoleBuff(), + this.onChange(), + this.isMy && (t.BuffMgr.ins().postUpdateBuff(), this._saviorBuff.length > 0 && t.BuffMgr.ins().isAddSavior && (t.BuffMgr.ins().post_updateSavior(), (t.BuffMgr.ins().isAddSavior = !1))); + }), + (i.prototype.updateBodyType = function () { + this.propSet && this.propSet.getPetrification() + ? (this.charEntityType = t.EntityFilter.hard) + : this.modelBuffAr[t.EntityFilter.hard] + ? (this.charEntityType = t.EntityFilter.hard) + : this.modelBuffAr[t.EntityFilter.fixed] + ? (this.charEntityType = t.EntityFilter.fixed) + : this.modelBuffAr[t.EntityFilter.lightblue] + ? (this.charEntityType = t.EntityFilter.lightblue) + : this.modelBuffAr[t.EntityFilter.poison] + ? (this.charEntityType = t.EntityFilter.poison) + : this.modelBuffAr[t.EntityFilter.invisible] + ? (this.charEntityType = t.EntityFilter.invisible) + : (this.charEntityType = t.EntityFilter.no), + this.setMcFilter(); + }), + (i.prototype.isFrozen = function () { + return this.modelBuffAr[t.EntityFilter.lightblue]; + }), + (i.prototype.isHard = function () { + return this.modelBuffAr[t.EntityFilter.hard] || (this.propSet && this.propSet.getPetrification()); + }), + (i.prototype.isFixed = function () { + return this.modelBuffAr[t.EntityFilter.fixed]; + }), + (i.prototype.isPoison = function () { + return this.modelBuffAr[t.EntityFilter.poison]; + }), + (i.prototype.getBuff = function (t) { + return this.buffList[t]; + }), + (i.prototype.updateBuff = function (t, e) { + this.buffList[t] && (this.buffList[t].value = e); + }), + (i.prototype.removeBuff = function (e) { + if (this.buffList[e]) { + var i = t.VlaoF.BuffConf[this.buffList[e].id]; + this.removeEffect(i.modelType), t.ObjectPool.push(this.buffList[e]), delete this.buffList[e]; + } + this.updateBuffEff(); + }), + (i.prototype.removeTypedBuff = function (e) { + for (var i in this.buffList) { + var n = t.VlaoF.BuffConf[this.buffList[i].id]; + n.type == e && this.removeBuff(this.buffList[i].key); + } + }), + (i.prototype.removeAllBuff = function () { + for (var t in this.buffList) this.removeBuff(this.buffList[t].key); + }), + (i.prototype.initBuff = function (t) { + (this.buffList[t.key] = t), this.updateBuffEff(); + }), + Object.defineProperty(i.prototype, "team", { + get: function () { + return this._infoModel.team; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.playCount = function () { + return this._state == t.EntityAction.RUN || this._state == t.EntityAction.WALK || this._state == t.EntityAction.STAND ? -1 : 1; + }), + Object.defineProperty(i.prototype, "isMy", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isMyPet", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isPet", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isNpc", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "weight", { + get: function () { + return this.isDead ? -1 : this._infoModel && this.team == Team.My && this instanceof t.hNqkna ? this.y + 32 : this.y; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.updateModel = function () { + this.removeAll(), this.parseModel(); + }), + (i.prototype.parseModel = function () { + var t = this; + this.propSet && (t.updateBlood(!0), t.setCharName(this.propSet.getName()), t.initBody(ZkSzi.RES_DIR_MONSTER + "monster" + this.propSet.getBody())); + }), + (i.prototype.removeAllFilters = function () { + for (var e = 0; e < this.m_CharMsgList.length; e++) this.m_CharMsgList[e].clear(), t.ObjectPool.push(this.m_CharMsgList[e]); + for (var e = 0; e < this.m_ActionMsgList.length; e++) this.m_ActionMsgList[e].clear(), t.ObjectPool.push(this.m_ActionMsgList[e]); + (this.m_CharMsgList.length = 0), (this.m_ActionMsgList.length = 0); + }), + (i.prototype.updateTime = function (e) { + if (this.m_CharMsgList.length) { + var i = this.m_CharMsgList.shift(); + this.dispatchActorMsg(i), t.ObjectPool.push(i); + } + if ( + !this.isDead && + ((this.m_nAction == t.Qmuk.SAM_UNDER_ATTACK || this.m_nAction == t.Qmuk.SAM_UNDER_RECRUIT) && + this.m_ActionMsgList.length > 0 && + this.m_ActionMsgList[0].ident != t.Qmuk.SAM_UNDER_ATTACK && + this.m_ActionMsgList[0].ident != t.Qmuk.SAM_UNDER_RECRUIT && + ((this.m_dwNextActionTime = 0), (this.m_HitTime = 0)), + e >= this.m_dwNextActionTime) + ) { + if (this.m_ActionMsgList.length) { + var n = this.m_ActionMsgList.shift(); + return void this.setHumanAction(n); + } + this.setToIdleAction(); + } + }), + (i.prototype.syncSetCurrentXY = function (t, e) { + this.endMove(), this.setXY(t, e), this.setToIdleAction(); + }), + (i.prototype.advanceTime = function (t) { + e.prototype.advanceTime.call(this, t), this.payFB(), this.updateTime(t), this.updateLabelxy(); + }), + (i.prototype.payFB = function () { + if (this.floatingBloodAry.length && egret.getTimer() - this.floatingTime > 400) { + var e = this.floatingBloodAry.shift(), + i = this.isMy ? "num_3_fnt" : ""; + (this.floatingTime = egret.getTimer()), t.Nzfh.ins().postEntityHpChange(this, DamageTypes.HIT, e, i); + } + }), + (i.prototype.updateLabelxy = function () { + this._nameTxt.visible && + ((this._nameTxt.x = this.x - (this._nameTxt.textWidth / 2) * 0.4), + this.isCharRole || this.isDummyCharRole ? (this._nameTxt.y = this.y - (this._nameTxt.textHeight / 2) * 0.4 - 30) : (this._nameTxt.y = this.y - 40)), + this._hpBar.visible && ((this._hpBar.x = this.x - 20), (this._hpBar.y = this.y - 90)), + (this._Shadow.x = this.x), + (this._Shadow.y = this.y), + this.chassis && ((this.chassis.x = this.x), (this.chassis.y = this.y)); + var t = 0; + this.gzImage && ((this.gzImage.x = this.x), (this.gzImage.y = this.y - 113 + t), (t -= 23)), + this.rageImage && ((this.rageImage.x = this.x), (this.rageImage.y = this.y - 105 + t), (t -= 20)), + this._titleImage && ((this._titleImage.x = this.x), (this._titleImage.y = this.y - 105 + t)), + this._titleMc && ((this._titleMc.x = this.x), (this._titleMc.y = this.y - 200)), + this.buffImage && ((this.buffImage.x = this.x), (this.buffImage.y = this.y + 0)); + }), + (i.prototype.setToIdleAction = function () { + !this.isCharRole || (this.m_nAction != t.Qmuk.SAM_SPELL && this.m_nAction != t.Qmuk.SAM_NORMHIT) + ? this._state != t.EntityAction.STAND && ((this.m_nAction = 0), this.playAction(t.EntityAction.STAND)) + : ((this.m_nAction = 0), t.qTVCL.ins().isOpen || this.postActionMessage(t.Qmuk.SAM_UNDER_RECRUIT, 0, 0, this.dir)); + }), + (i.prototype.dispatchActorMsg = function (e) { + switch (e.ident) { + case t.Qmuk.SAM_REUSE: + (this.isDead = !1), this.updateHbName(), this.playAction(t.EntityAction.STAND), this.setXY(e.x, e.y); + break; + case t.Qmuk.BUFF_ADD: + this.addBuff(e.data); + break; + case t.Qmuk.BUFF_DELECT: + this.removeBuff(1e4 * e.data.type + e.data.group); + break; + case t.Qmuk.BUFF_DELECT_TYPE: + this.removeTypedBuff(e.data.type); + break; + case t.Qmuk.BUFF_UPDATE: + this.updateBuff(e.data.key, e.data.value); + break; + case t.Qmuk.AM_DAMAGE: + e.data && this.floatingBlood(e.data.nowHp, 0, e.data.bong); + break; + case t.Qmuk.UPDATA_NAME_TYPE: + this.updateNameType(); + break; + case t.Qmuk.NAME_UPDATE_COLOR: + this.setNameTxtColor(); + break; + case t.Qmuk.TITLE_UPDATE: + this.updateTitle(), this.updateCustomisedTitle(); + } + }), + (i.prototype.floatingBlood = function (t, e, i) { + void 0 === e && (e = 700), void 0 === i && (i = !1); + var n = t - this.getHP(); + this.updateHp(t), 0 > n && (this.floatingBloodAry.push(n), this.payFB()); + }), + (i.prototype.ackEffid = function (e, i) { + if (e && i) { + var n = t.VlaoF.SkillsLevelConf[e][i]; + if (n.prepareId) { + var s = this.propSet.getAckRate(); + t.SkillEffPlayer.playAckEff(n.prepareId, this, s); + } + } + }), + (i.prototype.correct = function (e, i, n) { + (this.m_nAction = 0), this.m_dwNextActionTime, (this.dir = e), this.setXY(i, n), this.playAction(t.EntityAction.STAND); + }), + (i.prototype.speedAction = function () { + var e, i, n, s; + for (this.m_nAction = 0; this.m_ActionMsgList.length > 0; ) + switch (((e = this.m_ActionMsgList.shift()), e.ident)) { + case t.Qmuk.SAM_WALK: + (i = e.dir), (n = e.x), (s = e.y); + break; + case t.Qmuk.SAM_RUN: + (i = e.dir), (n = e.x), (s = e.y); + break; + case t.Qmuk.SAM_SPELL: + i = e.dir; + break; + case t.Qmuk.SAM_UNDER_ATTACK: + i = e.dir; + break; + case t.Qmuk.SAM_SPECIAL_MOVE: + (i = e.dir), (n = e.x), (s = e.y); + break; + case t.Qmuk.SAM_TELEPORTING: + (i = e.dir), (n = e.x), (s = e.y); + break; + case t.Qmuk.SAM_NOWDEATH: + return ( + (this.dir = e.dir), + n && s && this.setXY(n, s), + (this.m_MoveAction.Action = t.Qmuk.SAM_NOWDEATH), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_NOWDEATH_TIME), + this.getHP() && this.floatingBlood(0, 0), + void this.onDead(function () {}) + ); + } + n && s && ((this.dir = i), this.setXY(n, s), this.playAction(t.EntityAction.STAND)); + }), + (i.prototype.setHumanAction = function (e) { + this.m_nAction = e.ident; + var i = egret.getTimer(); + switch (e.ident) { + case t.Qmuk.SAM_WALK: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_WALK_TIME + ? this.correct(e.dir, e.x, e.y) + : ((this.m_MoveAction.Action = t.Qmuk.SAM_WALK), + (this.m_MoveAction.Dir = e.dir), + (this.m_MoveAction.Step = 1), + (this.dir = e.dir), + this.playAction(t.EntityAction.WALK), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_WALK_TIME), + this.moveTo(e.x, e.y, this.m_MoveAction.Step)); + break; + case t.Qmuk.SAM_RUN: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_RUN_TIME + ? this.correct(e.dir, e.x, e.y) + : ((this.m_MoveAction.Action = t.Qmuk.SAM_RUN), + (this.m_MoveAction.Dir = e.dir), + (this.m_MoveAction.Step = 2), + (this.dir = e.dir), + this.playAction(t.EntityAction.RUN), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_RUN_TIME), + this.moveTo(e.x, e.y, this.m_MoveAction.Step)); + break; + case t.Qmuk.SAM_NORMHIT: + var n = this.getNormhitTime(); + if (!this.isMy && i - e.time > n) this.correct(e.dir, this.currentX, this.currentY); + else { + (this.dir = e.dir), (this.m_MoveAction.Action = t.Qmuk.SAM_NORMHIT), (this.m_MoveAction.Dir = e.dir), (this.m_dwNextActionTime = this.m_nCurrentActionTime + n); + var s = e.data; + if (this.isCharRole) { + t.OSzbc.ins().playAck2(this.propSet.getSex()); + s && s.skillId ? this.ackEffid(s.skillId, s.level) : t.OSzbc.ins().playAck(); + } else { + var a = t.VlaoF.Monster[this.propSet.getACTOR_ID()]; + a.attackMusicRate && a.attackMusicId && (a.attackMusicRate >= 100 || 100 * Math.random() >= a.attackMusicRate) && t.OSzbc.ins().wVgAo(a.attackMusicId + "_mp3"); + } + this.playAction(t.EntityAction.ATTACK); + } + break; + case t.Qmuk.SAM_SPELL: + if (!this.isMy && i - e.time > t.StandardActionsTime.SAM_SPELL_TIME) this.correct(e.dir, this.currentX, this.currentY); + else { + this.m_MoveAction.Action = t.Qmuk.SAM_SPELL; + var r = e.data; + if (((this.acktTime = egret.getTimer()), 5 != r.skill.id)) { + (this.m_MoveAction.Dir = e.dir), (this.dir = e.dir), (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_SPELL_TIME); + var o = t.VlaoF.SkillConf[r.skill.id]; + r.dir = e.dir; + var l = t.NWRFmB.ins().getCharRole(r.hitRecog); + (r.targeRole = l), + this.playDanDao(r, 400 - (egret.getTimer() - this.acktTime)), + o + ? 1 == o.action + ? this.playAction(t.EntityAction.ATTACK) + : 2 == o.action + ? this.playAction(t.EntityAction.CAST) + : ((this.m_dwNextActionTime = 0), (this.m_nAction = 0)) + : this.playAction(t.EntityAction.ATTACK), + r && r.skill && r.skill.prepareId && t.SkillEffPlayer.playAckEff(r.skill.prepareId, this); + } else this.m_dwNextActionTime = 100; + } + break; + case t.Qmuk.SAM_UNDER_ATTACK: + if (!this.isMy && i - e.time > t.StandardActionsTime.SAM_UNDER_ATTACK_TIME) { + this.correct(e.dir, this.currentX, this.currentY); + } else if (((this.dir = e.dir), (this.m_MoveAction.Action = t.Qmuk.SAM_UNDER_ATTACK), this.isCharRole)) { + this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_UNDER_ATTACK_TIME; + 0 == this.propSet.getSex() ? t.OSzbc.ins().playManHit() : t.OSzbc.ins().playWoManHit(); + this.playAction(t.EntityAction.HIT); + } else { + this.m_dwNextActionTime = this.m_nCurrentActionTime + 1; + var a = t.VlaoF.Monster[this.propSet.getACTOR_ID()]; + a.damageMusicRate && a.damageMusicId && (a.damageMusicRate >= 100 || 100 * Math.random() >= a.damageMusicRate) && t.OSzbc.ins().wVgAo(a.damageMusicId + "_mp3"); + } + break; + case t.Qmuk.SAM_IDLE: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_IDLE_TIME + ? this.correct(e.dir, this.currentX, this.currentY) + : ((this.dir = e.dir), + (this.m_MoveAction.Action = t.Qmuk.SAM_IDLE), + (this.m_MoveAction.Dir = e.dir), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_IDLE_TIME)), + this.setToIdleAction(); + break; + case t.Qmuk.SAM_NOWDEATH: + (this.dir = e.dir), + (this.m_MoveAction.Action = t.Qmuk.SAM_NOWDEATH), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_NOWDEATH_TIME), + this.getHP() && this.floatingBlood(0, 0), + this.onDead(function () {}); + break; + case t.Qmuk.SAM_SPECIAL_MOVE: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_SPECIAL_MOVE_TIME + ? this.correct(e.dir, e.x, e.y) + : ((this.m_MoveAction.Action = t.Qmuk.SAM_SPECIAL_MOVE), + (this.m_MoveAction.Dir = e.dir), + (this.m_MoveAction.Step = 2), + (this.dir = e.dir), + this.playAction(t.EntityAction.RUN), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_SPECIAL_MOVE_TIME), + this.moveTo(e.x, e.y, this.m_MoveAction.Step), + t.SkillEffPlayer.playAckEff(7, this)); + break; + case t.Qmuk.SAM_TELEPORTING: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_TELEPORTING_TIME + ? this.correct(e.dir, e.x, e.y) + : ((this.m_MoveAction.Action = t.Qmuk.SAM_TELEPORTING), + (this.m_MoveAction.Dir = e.dir), + (this.dir = e.dir), + this.setXY(e.x, e.y), + (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_TELEPORTING_TIME), + this.isMy && t.NWRFmB.ins().resetMakeDummy(!0)); + break; + case t.Qmuk.SAM_UNDER_RECRUIT: + !this.isMy && i - e.time > t.StandardActionsTime.SAM_UNDER_RECRUIT_TIME + ? this.correct(e.dir, this.currentX, this.currentY) + : ((this.dir = e.dir), (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_UNDER_RECRUIT_TIME), this.playAction(t.EntityAction.STAND1)); + } + }), + (i.prototype.playDanDao = function (e, i) { + var n = this; + if (e && !e.targeRole && e.skillId) { + var s = t.VlaoF.SkillConf[e.skillId]; + s && + 2 == s.extentType && + (e.ballisticXY = { + x: t.GameMap.grip2Point(e.targetX), + y: t.GameMap.grip2Point(e.targetY), + }); + } + var a = e; + t.KHNO.ins().rqDkE( + i, + 0, + 1, + function () { + a && a.skill.ballisticId && t.SkillEffPlayer.PlayBallisticEff(a.skill.ballisticId, n, a.dir, a.targeRole, e.ballisticXY); + }, + this + ); + }), + (i.prototype.postActionMessage = function (e, i, n, s, a) { + if ((void 0 === a && (a = null), this.isShowBody)) { + var r = void 0; + if (e == t.Qmuk.SAM_UNDER_ATTACK || e == t.Qmuk.SAM_UNDER_RECRUIT) { + if (this.m_ActionMsgList.length > 0 || this.m_nAction > 0) return; + } else + this.m_ActionMsgList.length > 0 && + (t.Qmuk.SAM_UNDER_RECRUIT == this.m_ActionMsgList[this.m_ActionMsgList.length - 1].ident || t.Qmuk.SAM_UNDER_ATTACK == this.m_ActionMsgList[this.m_ActionMsgList.length - 1].ident) && + ((r = this.m_ActionMsgList.pop()), r.clear()); + r || (r = t.ObjectPool.pop("app.ActorMessage")), r.setInfo(e, i, n, s, a), this.m_ActionMsgList.push(r); + } + }), + (i.prototype.addChassis = function (e) { + this.removeChassis(), + (this.chassis = t.ObjectPool.pop("app.MovieClip")), + (this.chassis.touchEnabled = !1), + (this.chassis.sortId = e), + t.mAYZL.gamescene.map.addAhassis(this.chassis), + this.chassis.playFile(ZkSzi.RES_DIR_EFF + "chassis" + e, -1); + }), + (i.prototype.removeChassis = function () { + this.chassis && this.chassis.destroy(), (this.chassis = null); + }), + (i.prototype.setMcFilter = function () { + "webgl" == egret.Capabilities.renderMode && (this._bodyContainer.filters = t.EntityFilterUtil.buffFilter[this.charEntityType] ? t.EntityFilterUtil.buffFilter[this.charEntityType] : null); + }), + (i.prototype.setNearChat = function (t) {}), + (i.prototype.$onRemoveFromStage = function () { + this._hpBar && ((this._hpBar.visible = !1), t.lEYZI.Naoc(this._hpBar)), + this._nameTxt && ((this._nameTxt.visible = !1), t.lEYZI.Naoc(this._nameTxt)), + this._titleImage && (this._titleImage instanceof t.MovieClip ? this._titleImage.destroy() : t.lEYZI.Naoc(this._titleImage)), + (this._titleImage = null), + this._titleMc && this._titleMc.destroy(), + (this._titleMc = null), + this.rageImage && (t.lEYZI.Naoc(this.rageImage), (this.rageImage = null)), + this.gzImage && (t.lEYZI.Naoc(this.gzImage), (this.gzImage = null)), + this.buffImage && (t.lEYZI.Naoc(this.buffImage), (this.buffImage = null)), + this._bodyContainer.removeEventListener(egret.TouchEvent.TOUCH_END, this.onEndClick, this), + this._bodyContainer.removeEventListener(mouse.MouseEvent.RIGHT_DOWN, this.rightDown, this), + this._bodyContainer.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this._bodyContainer.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this._bodyContainer.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onEndClick, this), + this._bodyContainer.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onBeginClick, this), + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.$onAddToStage = function (i, n) { + e.prototype.$onAddToStage.call(this, i, n), + this.updateHbName(), + this.updateTitle(), + this.updateCustomisedTitle(), + this._nameTxt && t.mAYZL.gamescene.map.addNameLabel(this._nameTxt), + this._hpBar && t.mAYZL.gamescene.map.addCharHbBar(this._hpBar), + KdbLz.qOtrbE.iFbP + ? (this._bodyContainer.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onEndClick, this), this._bodyContainer.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onBeginClick, this)) + : (this._bodyContainer.addEventListener(mouse.MouseEvent.RIGHT_DOWN, this.rightDown, this), + this._bodyContainer.addEventListener(egret.TouchEvent.TOUCH_END, this.onEndClick, this), + this._bodyContainer.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this._bodyContainer.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + (this._chatTxt.visible = !1), + this.updateRage(), + this.updateGuanzhi(), + this.updateRoleBuff(); + }), + (i.prototype.onBeginClick = function (t) { + t.stopPropagation(); + }), + (i.prototype.$setVisible = function (t) { + e.prototype.$setVisible.call(this, t), + t + ? (this.updateHbName(), this.updateTitle(), this.updateCustomisedTitle()) + : (this._hpBar && (this._hpBar.visible = !1), + this._nameTxt && (this._nameTxt.visible = !1), + this._titleImage && (this._titleImage.visible = !1), + this._titleMc && (this._titleMc.visible = !1), + this.rageImage && (this.rageImage.visible = !0), + this.gzImage && (this.gzImage.visible = !0), + this.buffImage && (this.buffImage.visible = !0)); + }), + (i.prototype.updateHbName = function () { + this._hpBar && !this.isDead && (this._hpBar.visible = !0), this.updateNameType(); + }), + (i.prototype.playUpgradeEff = function () { + var e = this; + if (!this.hasEffById(i.Movie_ID_52)) { + this.effs[i.Movie_ID_52] = t.ObjectPool.pop("app.MovieClip"); + var n = ZkSzi.RES_DIR_EFF + "eff_sj"; + this.addChild(this.effs[i.Movie_ID_52]), + this.effs[i.Movie_ID_52].playFileChar( + n, + 1, + function () { + e.removeEffect(i.Movie_ID_52); + }, + !1 + ); + } + }), + (i.prototype.playTaskEff = function (e) { + var n = this; + if (!this.hasEffById(i.Movie_ID_53)) { + this.effs[i.Movie_ID_53] = t.ObjectPool.pop("app.MovieClip"); + var s = ZkSzi.RES_DIR_EFF + e; + (this.effs[i.Movie_ID_53].y -= 250), + this.addChild(this.effs[i.Movie_ID_53]), + this.effs[i.Movie_ID_53].playFileChar( + s, + 1, + function () { + n.removeEffect(i.Movie_ID_53); + }, + !1 + ); + } + }), + (i.prototype.updateTitle = function () {}), + (i.prototype.updateCustomisedTitle = function () {}), + (i.prototype.updateRage = function () { + var e = this.propSet.getViolent(); + e ? (this.rageImage || (this.rageImage = t.mAYZL.gamescene.map.getRageImage()), (this.rageImage.visible = !0)) : this.rageImage && (t.lEYZI.Naoc(this.rageImage), (this.rageImage = null)); + }), + (i.prototype.updateGuanzhi = function () { + if (this.propSet) { + var e = this.propSet.getOfficialPositicon(); + e + ? (this.gzImage || (this.gzImage = t.mAYZL.gamescene.map.getGzImage()), (this.gzImage.source = "gz_zw_" + e), (this.gzImage.visible = !0)) + : this.gzImage && (t.lEYZI.Naoc(this.gzImage), (this.gzImage = null)); + } + }), + (i.prototype.updateRoleBuff = function () { + if (this.propSet) { + var e = this.buffType5Ary[this.buffType5Ary.length - 1]; + e + ? (this.buffImage || (this.buffImage = t.mAYZL.gamescene.map.getBuffImage()), (this.buffImage.source = e.icon2), (this.buffImage.visible = !0)) + : this.buffImage && (t.lEYZI.Naoc(this.buffImage), (this.buffImage = null)); + } + }), + (i.prototype.updateChild = function (t) {}), + (i.prototype.mpaGrey = function (e) { + (this.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this._nameTxt && (this._nameTxt.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this._hpBar && (this._hpBar.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this._Shadow && (this._Shadow.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this._titleImage && (this._titleImage.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this._titleMc && (this._titleMc.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this.rageImage && (this.rageImage.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this.gzImage && (this.gzImage.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null), + this.buffImage && (this.buffImage.filters = e ? t.FilterUtil.ARRAY_GRAY_FILTER : null); + }), + (i.Movie_ID_5 = 5), + (i.Movie_ID_51 = 151), + (i.Movie_ID_52 = 152), + (i.Movie_ID_53 = 153), + (i.Movie_ID_7 = 7), + i + ); + })(t.CharEffect); + (t.eGgn = e), __reflect(e.prototype, "app.eGgn"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return e.addEventListener(eui.UIEvent.COMPLETE, e.remInitFnction, e), e; + } + return ( + __extends(e, t), + (e.prototype.vKruVZ = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_TAP, t, e); + }), + (e.prototype.addTouchEndEvent = function (t, e) { + this.addEvent(egret.TouchEvent.TOUCH_END, t, e); + }), + (e.prototype.addChangeEvent = function (t, e) { + var i = this; + t && t instanceof eui.TabBar + ? this.addEvent(egret.TouchEvent.CHANGE, t, function () { + for (var t = [], n = 0; n < arguments.length; n++) t[n] = arguments[n]; + e.call.apply(e, [i].concat(t)); + }) + : this.addEvent(egret.TouchEvent.CHANGE, t, e); + }), + (e.prototype.addChangingEvent = function (t, e) { + this.addEvent(egret.TouchEvent.CHANGING, t, e); + }), + (e.prototype.VoZqXH = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.MOUSE_OUT, t, e); + }), + (e.prototype.lbpdAJ = function (t, e) { + KdbLz.qOtrbE.iFbP || (t && t.removeEventListener(mouse.MouseEvent.MOUSE_OUT, e, this)); + }), + (e.prototype.EeFPm = function (t, e) { + KdbLz.qOtrbE.iFbP ? this.vKruVZ(t, e) : this.addEvent(mouse.MouseEvent.MOUSE_OVER, t, e); + }), + (e.prototype.lvpAF = function (t, e) { + KdbLz.qOtrbE.iFbP ? this.fEHj(t, e) : t && t.removeEventListener(mouse.MouseEvent.MOUSE_OVER, e, this); + }), + (e.prototype.addLeftDownEvent = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.LEFT_DOWN, t, e); + }), + (e.prototype.addRightDownEvent = function (t, e) { + KdbLz.qOtrbE.iFbP || this.addEvent(mouse.MouseEvent.RIGHT_DOWN, t, e); + }), + (e.prototype.addEvent = function (t, e, i) { + return e ? void e.addEventListener(t, i, this) : void console.error("不存在绑定对象"); + }), + (e.prototype.fEHj = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.TOUCH_TAP, e, this); + }), + (e.prototype.removeChangeEvent = function (t, e) { + t && t.removeEventListener(egret.TouchEvent.CHANGE, e, this); + }), + (e.prototype.inItFunction = function () {}), + (e.prototype.remInitFnction = function () { + this.removeEventListener(eui.UIEvent.COMPLETE, this.remInitFnction, this), this.inItFunction(); + }), + e + ); + })(eui.ItemRenderer); + (t.BaseItemRender = e), __reflect(e.prototype, "app.BaseItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.job = 0; + } + return t; + })(); + (t.SpecialRingConfig = e), __reflect(e.prototype, "app.SpecialRingConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + Object.defineProperty(t, "grayFilter", { + get: function () { + return new egret.ColorMatrixFilter([0.3, 0.6, 0, 0, 0, 0.3, 0.6, 0, 0, 0, 0.3, 0.6, 0, 0, 0, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "grayFilter1", { + get: function () { + return new egret.ColorMatrixFilter([0.3086, 0.5, 0.082, 0, 0, 0.3086, 0.5, 0.082, 0, 0, 0.3086, 0.5, 0.082, 0, 0, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "ARRAY_GRAY_FILTER", { + get: function () { + return [t.grayFilter1]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "greenFilter", { + get: function () { + return new egret.ColorMatrixFilter([1, 0, 0, 0, 0, 0, 1, 0, 0, 100, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "greenFilter1", { + get: function () { + return new egret.ColorMatrixFilter([0.1, 0, 0, 0, 0, 0, 0.80078125, 0, 0, 20, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "ARRAY_GREEN_FILTER", { + get: function () { + return [t.greenFilter1]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "greenFilter2", { + get: function () { + return new egret.ColorMatrixFilter([0, 0, 0, 0, 50, 0, 0.8, 0, 0, 70, 0, 0, 1, 0, 70, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "ARRAY_LIGHTBLUE_FILTER", { + get: function () { + return [t.greenFilter2]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "greenFilter3", { + get: function () { + return new egret.ColorMatrixFilter([0, 0, 0, 0.5, 100, 0, 0.46, 0, 0.5, 100, 0, 0, 0.49, 0.5, 100, 0, 0, 0, 1, 0]); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "ARRAY_DARK_BLUE_FILTER", { + get: function () { + return [t.greenFilter3]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "blurFilter", { + get: function () { + return new egret.BlurFilter(10, 10, 2); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t, "ARRAY_BLUR_FILTER", { + get: function () { + return [t.blurFilter]; + }, + enumerable: !0, + configurable: !0, + }), + (t.WHITE = function () { + return "webgl" != egret.Capabilities.renderMode ? null : [new egret.ColorMatrixFilter([1, 0.1, 0.1, 0, 0, 0.1, 1, 0.1, 0, 0, 0.1, 0.1, 1, 0, 0, 0, 0, 0, 1, 0])]; + }), + (t.SHINE = function () { + return "webgl" != egret.Capabilities.renderMode ? null : [new egret.GlowFilter(16756224, 0.8, 35, 35, 2, 3, !1, !1)]; + }), + t + ); + })(); + (t.FilterUtil = e), __reflect(e.prototype, "app.FilterUtil"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectIdx = 0), (t.actType = 0), (t.actId = 0), (t.skinName = "ActivityPaySkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.ActivityPayTabItemView), + this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this), + this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (this.actType = e[0]), + e[1] && (this.titleImg.source = e[1]), + e[2] && (this.actId = e[2]), + this.HFTK(t.edHC.ins().post_26_28, this.updateView), + this.HFTK(t.TQkyOx.ins().post_25_1, this.updateView), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateView), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateView), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateView), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateView), + t.MouseScroller.bind(this.btnScroller), + this.updateView(this.actId), + this.updatePag(); + }), + (i.prototype.updateView = function (e) { + void 0 === e && (e = 0); + var i = [], + n = t.VlaoF.ActivityPayConf[this.actType]; + for (var s in n) { + var a = t.TQkyOx.ins().getActivityInfo(n[s].actId); + a && t.mAYZL.ins().isCheckOpen(n[s].openlimit) && (e && e == n[s].actId && (this.selectIdx = i.length), i.push(n[s])); + } + (this.tabBar.dataProvider = new eui.ArrayCollection(i)), (this.tabBar.selectedIndex = this.selectIdx <= this.tabBar.dataProvider.length - 1 ? this.selectIdx : 0); + }), + (i.prototype.updatePag = function () { + this.selectIdx = this.tabBar.selectedIndex; + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e && e.view) { + if (1 == t.ActivityPayRuleIcon.disposableredpointObj[e.actId]) { + (t.ActivityPayRuleIcon.disposableredpointObj[e.actId] = 2), t.ckpDj.ins().sendEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, 36); + var i = this.tabBar.getElementAt(this.selectIdx); + i && i.dataChanged(); + } + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + var n = egret.getDefinitionByName(e.view); + n && + ((this.curPanel = new n()), + this.curPanel && + ((this.curPanel.left = 0), (this.curPanel.right = 0), (this.curPanel.top = 0), (this.curPanel.bottom = 0), this.infoGrp.addChild(this.curPanel), this.curPanel.open(e.actId))); + } + e = null; + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.btnScroller), + this.fEHj(this.closeBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + }), + i + ); + })(t.gIRYTi); + (t.ActivityPayView = e), __reflect(e.prototype, "app.ActivityPayView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "PlatformFuliViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.paneHash = {}), (this.tabBar.itemRenderer = t.PlatformFuliTabItem); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.addChangeEvent(this.tabBar, this.setOpenIndex), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateAllTabRed), + this.setTabInfo(), + this.setOpenIndex(); + }), + (i.prototype.setTabInfo = function () { + (this.tabBar.dataProvider = new eui.ArrayCollection(this.getTabBarAr())), (this.tabBar.selectedIndex = 0); + }), + (i.prototype.setOpenIndex = function () {}), + (i.prototype.updateAllTabRed = function () { + for (var t = this.tabBar.numElements, e = 0; t > e; e++) this.updateTabRed(e); + }), + (i.prototype.updateTabRed = function (t) { + var e = this.tabBar.getElementAt(t); + e && e.updateRed(); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.getTabBarAr = function () { + return []; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this), this.fEHj(this.closeBtn, this.onClick); + for (var n in this.paneHash) { + var s = this.paneHash[n]; + s.close(), (s = null), delete this.paneHash[n]; + } + (this.paneHash = null), (this._currPanel = null); + }), + i + ); + })(t.gIRYTi); + (t.PlatformFuliView = e), __reflect(e.prototype, "app.PlatformFuliView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "PlatformFuliViewSkin2"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this._currPanel && this._currPanel.close(), (this._currPanel = null); + }), + i + ); + })(t.gIRYTi); + (t.PlatformFuliView2 = e), __reflect(e.prototype, "app.PlatformFuliView2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + this._layers = new Array(); + } + return ( + (e.prototype.onEnter = function () {}), + (e.prototype.onExit = function () { + t.mAYZL.ins().closeAll(), this.removeAllLayer(); + }), + (e.prototype.addLayer = function (e) { + e instanceof t.BaseSpriteLayer ? (t.aTwWrO.ins().getStage().addChild(e), this._layers.push(e)) : e instanceof t.VbTul && (t.aTwWrO.ins().getUIStage().addChild(e), this._layers.push(e)); + }), + (e.prototype.addLayerAt = function (e, i) { + if (e instanceof t.BaseSpriteLayer) t.aTwWrO.ins().getStage().addChildAt(e, i), this._layers.push(e); + else if (e instanceof t.VbTul) { + var n = t.aTwWrO.ins().getUIStage(); + n.addChildAt(e, i), this._layers.push(e); + } + }), + (e.prototype.removeLayer = function (e) { + e instanceof t.BaseSpriteLayer + ? (t.aTwWrO.ins().getStage().removeChild(e), this._layers.splice(this._layers.indexOf(e), 1)) + : e instanceof t.VbTul && (t.aTwWrO.ins().getUIStage().removeChild(e), this._layers.splice(this._layers.indexOf(e), 1)); + }), + (e.prototype.layerRemoveAllChild = function (e) { + e instanceof t.BaseSpriteLayer ? e.removeChildren() : e instanceof t.VbTul && e.removeChildren(); + }), + (e.prototype.removeAllLayer = function () { + for (; this._layers.length; ) { + var t = this._layers[0]; + this.layerRemoveAllChild(t), this.removeLayer(t); + } + }), + e + ); + })(); + (t.BaseScene = e), __reflect(e.prototype, "app.BaseScene"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.prototype.init = function () { + this.getGiftInfo(); + }), + (e.prototype.getGiftInfo = function () {}), + (e.prototype.getRuleIcon = function () { + return null; + }), + Object.defineProperty(e.prototype, "loginWay", { + get: function () { + return window.loginWay ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getReward_loginWayGift = function () { + return []; + }), + (e.prototype.onGetReward_loginWayGift = function () {}), + (e.prototype.onMicroDown = function () { + window.MicroDownFunction && window.MicroDownFunction(); + }), + (e.prototype.getReward_boxDownGift = function () { + return []; + }), + (e.prototype.onGetReward_boxDownGift = function () {}), + (e.prototype.getReward_boxLoginGift = function () { + return []; + }), + (e.prototype.onGetReward_boxLoginGift = function (t) {}), + (e.prototype.getReward_boxLevelGift = function () { + return []; + }), + (e.prototype.onGetReward_boxLevelGift = function (t) {}), + (e.prototype.onBoxDown = function () { + window.BoxDownFunction && window.BoxDownFunction(); + }), + Object.defineProperty(e.prototype, "phoneBindState", { + get: function () { + return window.userInfo.bindPhone ? parseInt(window.userInfo.bindPhone) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getReward_phoneBindGift = function () { + return []; + }), + (e.prototype.onGetReward_phoneBindGift = function () {}), + (e.prototype.queryBindPhoneFunction = function () { + if (window.queryBindPhoneFunction) { + var e = t.FuLi4366Mgr.ins(); + window.queryBindPhoneFunction(e.post_updatePlatformFuli, e); + } + }), + (e.prototype.onBindPhone = function () { + window.BindPhoneFunction && + window.BindPhoneFunction({ + serverId: t.MiOx.originalSrvid, + }); + }), + Object.defineProperty(e.prototype, "indulgeState", { + get: function () { + return window.userInfo.cm ? parseInt(window.userInfo.cm) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getReward_indulgeGift = function () { + return []; + }), + (e.prototype.onGetReward_indulgeGift = function () {}), + (e.prototype.onActorInfo = function () { + window.ActorInfoFunction && window.ActorInfoFunction(); + }), + (e.prototype.getReward_weixinGift = function () { + return {}; + }), + e + ); + })(); + (t.PlatformFuliData = e), __reflect(e.prototype, "app.PlatformFuliData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return t.rLmMYc.compile(egret.getDefinitionByName(egret.getQualifiedClassName(i))), i.HFTK(t.bqQT.ins().postLoginInit, i.initLogin), i.HFTK(t.bqQT.ins().postZeroInit, i.initZero), i; + } + return ( + __extends(i, e), + (i.prototype.YrTisc = function (e, i) { + t.ubnV.ins().registerSTCFunc(this.sysId, e, i, this); + }), + (i.prototype.initLogin = function () {}), + (i.prototype.initZero = function () {}), + (i.prototype.getGameByteArray = function () { + return t.ubnV.ins().MxGiq(); + }), + (i.prototype.MxGiq = function (t) { + var e = this.getGameByteArray(); + return e.writeCmd(this.sysId, t), e; + }), + (i.prototype.getBytesTwo = function (t, e) { + var i = this.getGameByteArray(); + return i.writeCmd(t, e), i; + }), + (i.prototype.sendBaseProto = function (t) { + var e = this.getGameByteArray(); + e.writeCmd(this.sysId, t), this.evKig(e); + }), + (i.prototype.evKig = function (e) { + t.ubnV.ins().evKig(e); + }), + (i.prototype.HFTK = function (e, i) { + t.rLmMYc.addListener(e, i, this); + }), + (i.prototype.removeObserve = function () { + t.rLmMYc.ins().removeAll(this); + }), + i + ); + })(t.BaseClass); + (t.DlUenA = e), __reflect(e.prototype, "app.DlUenA"), t.rLmMYc.compile(e); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this._loginWay = 0), + (this._phoneBindState = 0), + (this._indulgeState = 0), + (this._loginDays = 0), + (this._phoneBindGiftFlag = 0), + (this._indulgeGiftFlag = 0), + (this._svipGiftFlag = 0), + (this._microGiftFlag = 0), + (this._boxDownGiftFlag = 0), + (this._boxLoginGiftFlag = 0), + (this._boxLevelGiftFlag = 0), + (this._weChatGiftFlag = 0), + (this._qqGroupGiftFlag = 0), + this.initData(); + } + return ( + (e.prototype.initData = function () {}), + (e.prototype.readFuliInfo = function (t) {}), + (e.prototype.loginWay = function () { + return this._loginWay; + }), + (e.prototype.isWayLogin = function () { + return 1 == this._loginWay; + }), + (e.prototype.isBoxLogin = function () { + return 3 == this._loginWay; + }), + (e.prototype.isPhoneBind = function () { + return this._phoneBindState > 0; + }), + (e.prototype.isIndulge = function () { + return this._indulgeState > 0; + }), + Object.defineProperty(e.prototype, "loginDays", { + get: function () { + return this._loginDays; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.isGetPhoneBindGift = function () { + return this._phoneBindGiftFlag > 0; + }), + (e.prototype.isGetIndulgeGift = function () { + return this._indulgeGiftFlag > 0; + }), + (e.prototype.isGetMicroGift = function () { + return this._microGiftFlag > 0; + }), + (e.prototype.isGetBoxDownGift = function () { + return this._boxDownGiftFlag > 0; + }), + Object.defineProperty(e.prototype, "boxLoginGift", { + get: function () { + return this._boxLoginGiftFlag; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "boxLevelGift", { + get: function () { + return this._boxLevelGiftFlag; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.isGetWeChatGift = function () { + return this._weChatGiftFlag > 0; + }), + (e.prototype.isGetQQGroupGift = function () { + return this._qqGroupGiftFlag > 0; + }), + (e.prototype.getRed_phoneBindGift = function () { + return 0 == this._phoneBindGiftFlag && this._phoneBindState > 0 ? !0 : !1; + }), + (e.prototype.getRed_indulgeGift = function () { + return 0 == this._indulgeGiftFlag && this._indulgeState > 0 ? !0 : !1; + }), + (e.prototype.getRed_svipGift = function () { + return 0 == this._svipGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_microGift = function () { + if (0 == this._microGiftFlag) { + if (this.isWayLogin()) return !0; + if (t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50) return !0; + } + return !1; + }), + (e.prototype.getRed_boxDownGift = function () { + return 0 == this._boxDownGiftFlag && this.isBoxLogin() ? !0 : !1; + }), + (e.prototype.getRed_boxLoginGift = function () { + if (this.isBoxLogin()) { + var e = this._loginDays, + i = this._boxLoginGiftFlag, + n = t.bXKx.ins().VbEA.getReward_boxLoginGift(); + for (var s in n) if (e >= n[s].day && !t.MathUtils.getValueAtBit(i, n[s].id)) return !0; + } + return !1; + }), + (e.prototype.getRed_boxLevelGift = function () { + if (this.isBoxLogin()) { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = this._boxLevelGiftFlag, + s = t.bXKx.ins().VbEA.getReward_boxLevelGift(); + for (var a in s) if (i >= s[a].level && !t.MathUtils.getValueAtBit(n, s[a].id)) return !0; + } + return !1; + }), + (e.prototype.getRed_weChatGift = function () { + return 0 == this._weChatGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_qqGroupGift = function () { + return 0 == this._qqGroupGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_viewGift = function () { + return !1; + }), + e + ); + })(); + (t.CsKu = e), __reflect(e.prototype, "app.CsKu"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.getViewData = function () { + return null; + }), + (t.prototype.getGiftsViewData = function () { + return []; + }), + (t.prototype.getBindingGiftData = function () { + return null; + }), + (t.prototype.getIndulgeGiftData = function () { + return null; + }), + (t.prototype.getMicroGiftData = function () { + return null; + }), + (t.prototype.getBoxGiftData = function () { + return null; + }), + (t.prototype.getWeixinGiftData = function () { + return null; + }), + (t.prototype.getSuperVipGiftData = function () { + return null; + }), + t + ); + })(); + (t.PlatformFuliViewData = e), __reflect(e.prototype, "app.PlatformFuliViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.itUndefinedType = 0), + (t.itWeapon = 1), + (t.itDress = 2), + (t.itHelmet = 3), + (t.itNecklace = 4), + (t.itDecoration = 5), + (t.itBracelet = 6), + (t.itRing = 7), + (t.itGirdle = 8), + (t.itShoes = 9), + (t.itEquipDiamond = 10), + (t.itBambooHat = 11), + (t.itAVisor = 12), + (t.itCape = 13), + (t.itShield = 14), + (t.itMoQi = 15), + (t.itBloodSoul = 16), + (t.itGodShield = 17), + (t.itDragonSoul = 18), + (t.itIntellectBall = 19), + (t.itBloodSoul2 = 20), + (t.itGodShield2 = 21), + (t.itDragonSoul2 = 22), + (t.itIntellectBall2 = 23), + (t.itQuestItem = 101), + (t.itFunctionItem = 102), + (t.itDailyUse = 117), + (t.DoubleWearSeed = 1e3), + (t.EQUIP_POS = [t.itWeapon, t.itDress, t.itHelmet, t.itNecklace, t.itDecoration, t.itBracelet, t.itRing, t.itGirdle, t.itShoes, t.itEquipDiamond]), + t + ); + })(); + (t.StdItemType = e), __reflect(e.prototype, "app.StdItemType"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.viewType = 1), (t.type = 0), (t.actId = 0), (t.skinName = "OpenServerTreasureWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e && e[0]) { + var n = e[0]; + n && n[0] && (n = n[0]), (this.type = n.type); + var s = n.id; + n.title && (this.imgTitle.source = n.title); + for (var a = 0; a < s.length; a++) { + var r = t.TQkyOx.ins().getActivityInfo(s[a]); + if (r) { + this.actId = s[a]; + break; + } + } + } + this.curPanel || + ((this.curPanel = new t.OpenServerTreasureView()), + 2 == this.viewType && (this.curPanel.currentState = "state2"), + (this.curPanel.left = 0), + (this.curPanel.right = 0), + (this.curPanel.top = 0), + (this.curPanel.bottom = 0), + this.infoGrp.addChild(this.curPanel), + this.curPanel.open(this.type, this.actId)), + t.ckpDj.ins().addEvent(t.CompEvent.CLOSE_TREASURE, this.updateActivity, this); + }), + (i.prototype.updateActivity = function () { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + e || t.mAYZL.ins().close(this); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.ckpDj.ins().removeEvent(t.CompEvent.CLOSE_TREASURE, this.updateActivity, this), + this.fEHj(this.closeBtn, this.onClick), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerTreasureWin = e), __reflect(e.prototype, "app.OpenServerTreasureWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.itemList.itemRenderer = t.PlatformFuliItemItem), + (this.itemList.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.getBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.receiveFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), (this.redPoint.visible = this.redValue)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.getBtn: + this.onGetBtn(); + } + }), + (i.prototype.onGetBtn = function () { + this.data.onGetFunc(); + }), + (i.prototype.getRewardList = function () { + return this.data.rewardList(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.data.redFunc(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.data.receiveFlag(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.getBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliGift = e), __reflect(e.prototype, "app.PlatformFuliGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.one = 0)] = "one"), + (t[(t.two = 1)] = "two"), + (t[(t.three = 2)] = "three"), + (t[(t.four = 3)] = "four"), + (t[(t.five = 4)] = "five"), + (t[(t.six = 5)] = "six"), + (t[(t.seven = 6)] = "seven"), + (t[(t.eight = 7)] = "eight"), + (t[(t.nine = 8)] = "nine"), + (t[(t.ten = 9)] = "ten"), + (t[(t.eleven = 10)] = "eleven"), + (t[(t.twelve = 11)] = "twelve"), + (t[(t.none = 12)] = "none"); + })((e = t.CommonButtonState || (t.CommonButtonState = {}))); + var i = (function (i) { + function n() { + var t = i.call(this) || this; + return (t.applyFunc = null), (t.selectState = e.none), t; + } + return ( + __extends(n, i), + (n.prototype.setState = function (t) { + this.selectState = t; + }), + (n.prototype.setBackFunc = function (t, e, i) { + (this.applyFunc = t), (this.targetObj = e); + }), + (n.prototype.partAdded = function (t, e) { + i.prototype.partAdded.call(this, t, e); + }), + (n.prototype.childrenCreated = function () { + i.prototype.childrenCreated.call(this), + this.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchHandler, this), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchHandler, this); + }), + (n.prototype.onTouchHandler = function (t) { + t.stopImmediatePropagation(); + }), + (n.prototype.onClickFunc = function (t) { + var e = t.currentTarget; + null != this.applyFunc && this.applyFunc.call(this.targetObj, this.selectState, e); + }), + (n.prototype.destroy = function () { + (this.applyFunc = null), + this.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchHandler, this), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchHandler, this), + t.lEYZI.Naoc(this); + }), + n + ); + })(eui.Component); + (t.CommonButtonView = i), __reflect(i.prototype, "app.CommonButtonView", ["eui.UIComponent", "egret.DisplayObject"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._itemID = 0), (t.isShowName = !1), (t.skinName = "ItemBaseSkin"), t.VoZqXH(t.itemIcon, t.mouseMove), t.EeFPm(t.itemIcon, t.mouseMove), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (((this.bestEquip.visible = !1), (this.starLabel.visible = !1), (this.imgNuBg.visible = !1), this.removeEff(), this.data)) + if (this.data instanceof t.TradeLineData || this.data instanceof t.userItem) { + (this.starLabel.visible = this.data.wStar > 0), + (this.starLabel.text = "+" + this.data.wStar), + (this._itemID = this.data.wItemId), + "" != this.data.topLine && void 0 != this.data.topLine && (this.bestEquip.visible = !0); + var e = t.VlaoF.StdItems[this.data.wItemId]; + e && + ((this.itemBg.source = "quality_" + e.showQuality), + (this.itemIcon.source = e.icon + ""), + (this.itemCount.text = this.data.btCount > 1 ? t.CommonUtils.overLength(this.data.btCount) : ""), + (this.imgNuBg.source = e.iseffect ? "yan_" + e.iseffect : ""), + (this.imgNuBg.visible = e.iseffect ? !0 : !1), + e.itemEff && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zb" + e.itemEff, -1))); + } else if (((this._itemID = this.data.id), 0 == this.data.type)) { + var e = t.VlaoF.StdItems[this.data.id]; + e && + ((this.itemBg.source = "quality_" + e.showQuality), + (this.itemIcon.source = e.icon + ""), + (this.itemCount.text = this.data.count > 1 ? t.CommonUtils.overLength(this.data.count) : ""), + (this.imgNuBg.source = e.iseffect ? "yan_" + e.iseffect : ""), + (this.imgNuBg.visible = e.iseffect ? !0 : !1), + e.itemEff && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.isPlaying || this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zb" + e.itemEff, -1))); + } else { + var i = t.ZAJw.sztgR(this.data.type); + i && ((this.itemBg.source = "quality_0"), (this.itemIcon.source = i[1] + ""), (this.itemCount.text = this.data.count > 1 ? t.CommonUtils.overLength(this.data.count) : "")); + } + else (this.itemBg.source = "quality_0"), (this.itemIcon.source = ""), (this.itemCount.text = ""), this.removeEff(); + }), + (i.prototype.removeEff = function () { + this.itemMc && (this.itemMc.destroy(), (this.itemMc = null)); + }), + (i.prototype.setVis = function (t) { + (this.itemIcon.visible = t), (this.itemCount.visible = t); + }), + (i.prototype.setVisCompareImg = function (t) { + this.compareImg.visible = t; + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.itemIcon.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.itemIcon.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.removeEff(); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.data) { + var n = i.localToGlobal(); + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this._itemID]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + this.data instanceof t.TradeLineData || this.data instanceof t.userItem + ? ((a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, this.data, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + })) + : ((a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + })); + } + s = null; + } else { + var r = t.ZAJw.sztgR(this.data.type, this.data.id); + r && + r[2] && + (t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, r[2], { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }), + (r = null)); + } + n = null; + } + i = null; + } + }), + i + ); + })(t.BaseItemRender); + (t.ItemBase = e), __reflect(e.prototype, "app.ItemBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = !1), (t.touchChildren = !0), (t.doubleClickMinTime = 300), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i), + i == this.icon && + (KdbLz.qOtrbE.iFbP + ? this.icon.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.icon.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.icon.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)), + this.icon.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onDoubleClick, this)), + this.count && (this.count.visible = !1), + this.txtAdd && (this.txtAdd.visible = !1), + this.txtName && (this.txtName.visible = !1), + this.effect && (this.effect.visible = !1), + this.frame && (this.frame.visible = !1); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + if (KdbLz.qOtrbE.iFbP) { + if (!this.clickTime) { + this.clickTime = egret.getTimer(); + } else { + this.clickTimeLast = egret.getTimer(); + } + if (this.clickTime && this.clickTimeLast) { + if (this.doubleClickMinTime < this.clickTimeLast - this.clickTime) { + this.clickTime = this.clickTimeLast = 0; + this.clickTime = egret.getTimer(); + } else { + this.clickTime = this.clickTimeLast = 0; + this.onDoubleClick(e); + return; + } + } + } + var i = e.currentTarget, + n = i.localToGlobal(); + if (this._userItem && this._userItem.series) + if (3 == this._type) { + var s = t.ZAJw.sztgR(this._userItem.wItemId); + s && + s[2] && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, s[2], { + x: n.x + i.width, + y: n.y + i.height, + }); + } else + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_ROLE_EQUIP, + this._userItem, + { + x: n.x + i.width, + y: n.y + i.height, + }, + this._type + ); + if (this._stdItems) { + var a = i.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, this._stdItems, { + x: a.x + i.width, + y: a.y + i.height, + }); + } + if (this.id) { + var s = t.ZAJw.sztgR(this.id); + s && + s[2] && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, s[2], { + x: n.x + i.width, + y: n.y + i.height, + }); + } + if (this.itemInfo) { + var a = i.localToGlobal(); + if ( + (0 == this.itemInfo.type + ? t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, this._stdItems, { + x: a.x + i.width, + y: a.y + i.height, + }) + : t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, this.itemInfo.item[2], { + x: n.x + i.width, + y: n.y + i.height, + }), + 0 == this.itemInfo.type) + ) { + var r = t.VlaoF.StdItems[this.itemInfo.id]; + r && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, r, { + x: a.x + i.width, + y: a.y + i.height, + }), + (r = null); + } else { + var s = t.ZAJw.sztgR(this.itemInfo.type, this.itemInfo.id); + s && + s[2] && + (t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, s[2], { + x: a.x + i.width, + y: a.y + i.height, + }), + (s = null)); + } + } + (n = null), (i = null); + } + }), + (i.prototype.onDoubleClick = function (e) { + 0 == this._type && (t.AHhkf.ins().Uvxk(t.OSzbc.OTHER_EQUIP), t.caJqU.ins().sendTakeOffEquip(this._userItem.series, this._userItem.nPos)); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.icon.source = ""); + }), + (i.prototype.removeMc = function () { + this.mc && (this.mc.destroy(), (this.mc = null)); + }), + (i.prototype.removeItemMc = function () { + this.itemMc && (this.itemMc.destroy(), (this.itemMc = null)); + }), + (i.prototype.setEquipBg = function (t) { + (this.equipBg.visible = !0), (this.equipBg.source = "equipd_" + t); + }), + (i.prototype.setItem = function (e, i, n, s, a, r, o, l) { + if ( + (void 0 === e && (e = null), + void 0 === i && (i = null), + void 0 === n && (n = null), + void 0 === s && (s = 0), + void 0 === a && (a = null), + void 0 === r && (r = null), + void 0 === o && (o = null), + void 0 === l && (l = "quality_0"), + this.resum(), + (this.bg.source = l), + (this._stdItems = a), + (this._userItem = e), + (this.id = o), + (this.bestEquip.visible = !1), + e && "" != e.topLine && void 0 != e.topLine && (this.bestEquip.visible = !0), + e ? ((this.starLabel.visible = e.wStar > 0), (this.starLabel.text = "+" + e.wStar)) : (this.starLabel.visible = !1), + e && e.wItemId) + ) { + var h = t.VlaoF.StdItems[e.wItemId]; + h + ? ((this.icon.source = h.icon + ""), + (this.count.text = t.CommonUtils.overLength(e.btCount)), + 11 != h.type && 12 != h.type && 13 != h.type && 14 != h.type && (this.bg.source = "quality_" + h.showQuality), + h.iseffect && 1 == h.iseffect + ? this.mc + ? this.mc.play() + : ((this.mc = t.ObjectPool.pop("app.MovieClip")), + (this.mc.blendMode = egret.BlendMode.ADD), + (this.mc.touchEnabled = !1), + (this.mc.x = 32), + (this.mc.y = 30), + this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "wmeff", -1), + this.addChild(this.mc)) + : this.removeMc(), + h.itemEff + ? (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.x = this.width / 2), + (this.itemMc.y = this.height / 2), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zb" + h.itemEff, -1)) + : this.removeItemMc()) + : (this.removeMc(), this.removeItemMc()); + } else this.removeMc(), this.removeItemMc(); + i && (this.bg.source = "quality_" + i), + n && (this.icon.source = n + ""), + r > 0 ? ((this.count.text = t.CommonUtils.overLength(r)), (this.count.visible = !0)) : (this.count.visible = !1), + (this._type = s); + }), + (i.prototype.resum = function (t) { + void 0 === t && (t = 0), + (this._userItem = null), + (this.bg.source = 0 == t ? "qh_icon_bg" : ""), + (this.icon.source = ""), + (this.count.text = ""), + (this.bestEquip.visible = !1), + this.removeMc(), + this.removeItemMc(), + (this.starLabel.visible = !1); + }), + Object.defineProperty(i.prototype, "userItem", { + get: function () { + return this._userItem; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setStengthenData = function (t, e, i, n, s) { + void 0 === s && (s = 0), + (this.txtAdd.visible = !0), + (this.txtName.visible = !0), + (this.txtName.text = i), + (this.txtAdd.text = "+" + n), + (this.bg.source = t), + (this.icon.source = e), + (this.effect.visible = 1 == s); + }), + (i.prototype.setGetProps = function (e) { + var i = t.ZAJw.sztgR(e.type, e.id); + (this.itemInfo = { + item: i, + type: e.type, + id: e.id, + }), + i[1] ? (this.icon.source = i[1] + "") : (this.icon.source = ""), + (this.frame.source = "quality_0"); + var n = 14606562; + i[3] >= 0 && ((n = t.ClwSVR.GOODS_COLOR[i[3]]), (this.frame.source = "quality_" + i[3])); + var s = i[0]; + s ? (this.txtName.textFlow = t.hETx.qYVI("|C:" + n + "&T:" + s + "|")) : (this.txtName.text = ""), (this.txtName.visible = !0); + }), + (i.prototype.destroy = function () { + this.icon && + (this.icon.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onDoubleClick, this), + KdbLz.qOtrbE.iFbP + ? this.icon.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.icon.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.icon.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this))), + this.removeMc(), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Component); + (t.ItemSlot = e), __reflect(e.prototype, "app.ItemSlot", ["eui.UIComponent", "egret.DisplayObject"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.updatePetTime = 0), + (i._petPickUpRange = 0), + (i._hair = t.ObjectPool.pop("app.MovieClip")), + (i._hair.y = -1), + (i._hair.x = 1), + (i._hair.visible = !1), + i._bodyContainer.addChild(i._hair), + (i.touchEnabled = !1), + (i.touchChildren = !0), + i + ); + } + return ( + __extends(i, e), + (i.prototype.removeAll = function () { + this._hair.dispose(); + for (var e in this._disOrder) { + var i = this._disOrder[e]; + i != this._body && i != this._hair && (i instanceof t.MovieClip ? (this.removeMcEvent(i), i.destroy(), (i = null)) : t.lEYZI.Naoc(i), delete this._mcFileName[e], delete this._disOrder[e]); + } + this._body.dispose(), this.removeBodyEvent(this._body), delete this._mcFileName[CharMcOrder.BODY]; + }), + (i.prototype.loadOther = function (i) { + if (this.action == t.EntityAction.DIE) { + if (i != CharMcOrder.BODY && i != CharMcOrder.WEAPON && i != CharMcOrder.BODYEFF && i != CharMcOrder.WEAPONEFF && i != CharMcOrder.HAIR) { + var n = this.getMc(i); + return void (n && (n.visible = !1)); + } + } else { + var n = this.getMc(i); + n && (n.visible = !0); + } + e.prototype.loadOther.call(this, i); + }), + (i.prototype.playBody = function (t) { + e.prototype.playBody.call(this, t); + }), + (i.prototype.getResDir = function (t) { + return this.dir % 8; + }), + (i.prototype.updateBlood = function (t) { + void 0 === t && (t = !1); + }), + (i.prototype.updateModel = function () { + e.prototype.updateModel.call(this); + }), + (i.prototype.updateSuit = function (e) { + var i = this.propSet.getSuit(); + i != e && (this.propSet.setProperty(t.nRDo.BODY_SUIT, e), this.parseModel()); + }), + (i.prototype.parseModel = function () { + this.setCharName(this.charName), this.updateBlood(!0); + var t = this.propSet.getSex(), + e = this.propSet.getSuit(); + e + ? (this.removeAll(), this.initBody(), this.initHair(null), (this._hair.visible = !1)) + : ((this._hair.visible = !0), + this.propSet.getWeapon() ? this.setWeaponFileName(this.propSet.getWeaponStr()) : this.setWeaponFileName(null), + this.initBody(ZkSzi.RES_DIR_BODY + this.propSet.getBodyStr() + "_" + t), + this.propSet.getFacte() ? this.initHair(ZkSzi.RES_DIR_HAIR + this.propSet.getFacteStr() + "_" + t) : this.initHair(null), + this.setBodyEff(this.propSet.getBodyEFFStr()), + this.setWeaponEff(this.propSet.getWeaponEffStr())), + this._hpBar.updateChaoWanVip(this.propSet.getVip()); + }), + (i.prototype.getMapColor = function () { + return this.getNameColor(); + }), + (i.prototype.setNameTxtColor = function () { + var e = t.NWRFmB.ins().getPayer; + if (t.GameMap.getAACamp) e.propSet.getZYId() == this.propSet.getZYId() ? (this._nameTxt.textColor = t.ClwSVR.NAME_BLUE) : (this._nameTxt.textColor = t.ClwSVR.NAME_ORANGE); + else { + var i = t.KWGP.ins().concernIsFriend(this.propSet.getACTOR_ID()); + if (i) return void (this._nameTxt.textColor = i.getColor()); + var n = t.GameMap.getIsSafe; + n + ? this.pkTextColor() + : this.propSet.getGuildId() && e.propSet.getGuildId() + ? this.propSet.getGuildId() == e.propSet.getGuildId() + ? t.GameMap.getAAZY || t.bfhrJ.ins().declareWarAry.length + ? (this._nameTxt.textColor = t.ClwSVR.NAME_BLUE) + : this.pkTextColor() + : t.GameMap.getAAZY || t.bfhrJ.ins().getIsDeclareWar(this.propSet.getGuildId()) + ? (this._nameTxt.textColor = t.ClwSVR.NAME_ORANGE) + : this.pkTextColor() + : t.GameMap.getAAZY + ? (this._nameTxt.textColor = t.ClwSVR.GREEN_COLOR) + : this.pkTextColor(), + t.Nzfh.ins().post_updateCharRectColor(this.recog, this.getNameColor()); + } + }), + (i.prototype.pkTextColor = function () { + if (this.propSet.getPKState()) + if (this.isMy) this._nameTxt.textColor = t.ClwSVR.NAME_GREY; + else { + var e = t.Qskf.ins().getIsMyTeam(this.propSet.getACTOR_ID()); + e ? (this._nameTxt.textColor = t.ClwSVR.NAME_pinkGreen) : (this._nameTxt.textColor = t.ClwSVR.NAME_GREY); + } + else if (this.propSet.getPKValue() <= 50) + if (this.isMy) this._nameTxt.textColor = t.ClwSVR.NAME_WHITE; + else { + var e = t.Qskf.ins().getIsMyTeam(this.propSet.getACTOR_ID()); + e ? (this._nameTxt.textColor = t.ClwSVR.NAME_pinkGreen) : (this._nameTxt.textColor = t.ClwSVR.NAME_WHITE); + } + else this.propSet.getPKValue() > 50 && this.propSet.getPKValue() <= 100 ? (this._nameTxt.textColor = t.ClwSVR.NAME_YELLOW) : (this._nameTxt.textColor = t.ClwSVR.NAME_RED); + }), + (i.prototype.deadDelay = function () { + this._hpBar && (this._hpBar.value = 0), this.removeAllBuff(), (this.atking = !1), t.KHNO.ins().removeAll(this); + }), + (i.prototype.showBodyContainer = function () { + (this.isDead = !1), + (this.deadChar = !1), + this.updateHbName(), + this.isShowBody ? (this.playAction(t.EntityAction.STAND), this.playAction(t.EntityAction.STAND)) : e.prototype.showBodyContainer.call(this), + this.isMy && t.mAYZL.gamescene.map.mpaGrey(!1); + }), + (i.prototype.resurgenceChar = function () { + this.initialize(), this.showBodyContainer(), this.playAction(t.EntityAction.STAND); + }), + (i.prototype.hideBodyContainer = function () { + this.isShowBody && e.prototype.hideBodyContainer.call(this); + }), + Object.defineProperty(i.prototype, "isCharRole", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.advanceTime = function (i) { + if ((e.prototype.advanceTime.call(this, i), this.pickUpPet)) { + if (i - this.updatePetTime > t.StandardActionsTime.SAM_WALK_TIME) { + this.updatePetTime = i; + var n = this.currentX - KdbLz.DVnj.NEIGHBORPOS_X_VALUES[this.dir], + s = this.currentY - KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[this.dir]; + this.pickUpPet.setXY_Dir(n, s, this.dir, i + t.StandardActionsTime.SAM_WALK_TIME); + } + this.pickUpPet.advanceTime(i); + } + }), + (i.prototype.onDead = function (e) { + this.isDead || + ((this.isDead = !0), + t.NWRFmB.ins().delGridChar(this.recog), + this.CharVisible && (0 == this.propSet.getSex() ? t.OSzbc.ins().playManDie() : t.OSzbc.ins().playWoManDie()), + this.playAction(t.EntityAction.DIE, e), + this.remHP()); + }), + (i.prototype.setHumanAction = function (t) { + e.prototype.setHumanAction.call(this, t); + }), + (i.prototype.setNearChat = function (e) { + var i = this; + t.KHNO.ins().removeAll(this._chatTxt), + (this._chatTxt.visible = !0), + (this._chatTxt.textFlow = t.hETx.qYVI(e)), + (this._chatTxt.y = -102 - this._chatTxt.height), + t.KHNO.ins().rqDkE( + 1e4, + 0, + 1, + function () { + i._chatTxt && (t.KHNO.ins().removeAll(i._chatTxt), (i._chatTxt.visible = !1)); + }, + this + ); + }), + (i.prototype.getValueByBit = function (t) { + var e = t >> 5, + i = 31 & t; + return Boolean((this.propSet.getAreaState()[e] >>> i) & 1); + }), + Object.defineProperty(i.prototype, "getIsSafe", { + get: function () { + return this.getValueByBit(1); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "getAAZY", { + get: function () { + this.getValueByBit(13); + return this.getValueByBit(13); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.updateCustomisedTitle = function () { + if (this.isMy || t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Bit3)) { + var e = this.propSet.getCurCustomTitle(); + if (t.VlaoF.CustomisedTitleConfig) { + var i = t.VlaoF.CustomisedTitleConfig[e]; + if (i) + return ( + this._titleMc || (this._titleMc = t.ObjectPool.pop("app.MovieClip")), t.mAYZL.gamescene.map.addTitle2MC(this._titleMc), void this._titleMc.playFile(ZkSzi.RES_DIR_TITLE + i.icon, -1) + ); + } + } + this._titleMc && (this._titleMc.destroy(), (this._titleMc = null)); + }), + (i.prototype.updateTitle = function () { + if (this.isMy || t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Bit3)) { + var e = this.propSet.getTITLE(), + i; + if (e) { + i = t.VlaoF.TitleConfig[e]; + } else if (2 > t.NWRFmB.ins().getPayer.propSet.MzYki()) { + i = { + effect: true, + icon: "title_newbie2", + }; + } + if (i) { + return ( + i.effect + ? (!this._titleImage || this._titleImage instanceof t.MovieClip || (t.lEYZI.Naoc(this._titleImage), (this._titleImage = null)), + this._titleImage || (this._titleImage = t.ObjectPool.pop("app.MovieClip")), + t.mAYZL.gamescene.map.addTitleMC(this._titleImage), + this._titleImage.playFile(ZkSzi.RES_DIR_TITLE + i.icon, -1)) + : (this._titleImage && this._titleImage instanceof t.MovieClip && (this._titleImage.destroy(), (this._titleImage = null)), + this._titleImage || ((this._titleImage = t.mAYZL.gamescene.map.getTitleImage()), t.mAYZL.gamescene.map.addTitleImage(this._titleImage)), + (this._titleImage.source = i.icon)), + void (this._titleImage.visible = !0) + ); + } + } + this._titleImage && (this._titleImage instanceof t.MovieClip ? (this._titleImage.destroy(), (this._titleImage = null)) : (t.lEYZI.Naoc(this._titleImage), (this._titleImage = null))); + }), + (i.prototype.updatePet = function () { + var e = this.isShowPetId(); + e + ? (this.pickUpPet || (this.pickUpPet = new t.PickUpPet()), t.mAYZL.gamescene.map.addPickUpPet(this.pickUpPet), this.pickUpPet.playMC(e)) + : (this.pickUpPet && this.pickUpPet.destruct(), (this.pickUpPet = null)); + }), + Object.defineProperty(i.prototype, "petPickUpRange", { + get: function () { + return this._petPickUpRange; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.isShowPetId = function () { + this._petPickUpRange = 0; + var e = this.propSet.getPickUpPet(); + if (e) { + if (t.GameMap.isNoPickUp) return null; + if (!this.isMy && !t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_shieldPet)) return null; + } + var i = t.VlaoF.lootPetConfig; + for (var n in i) for (var s in i[n]) if (+s == e) return (this._petPickUpRange = i[n][s].nDropPetLootDistance), i[n][s].icon; + return null; + }), + i + ); + })(t.eGgn); + (t.hNqkna = e), __reflect(e.prototype, "app.hNqkna"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.propValueObj = null), this.init(); + } + return ( + (e.prototype.init = function () { + this.propValueObj = {}; + }), + (e.prototype.readProperty = function (i, n) { + if (i == t.nRDo.NEXT_ACK_SKILLID) return (this.propValueObj[t.nRDo.ACK_SKILLID] = n.readUnsignedShort()), void (this.propValueObj[t.nRDo.ACK_SKILLLEVEL] = n.readUnsignedShort()); + if (i == t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE) + return (this.propValueObj[t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE] = n.readUnsignedShort()), void (this.propValueObj[t.nRDo.ACTOR_FASHION_DISPLAY] = n.readUnsignedShort()); + if (i == t.nRDo.AP_WEAPON) return (this.propValueObj[t.nRDo.AP_WEAPON] = n.readUnsignedShort()), void (this.propValueObj[t.nRDo.ACTOR_WEAPON_DISPLAY] = n.readUnsignedShort()); + var s, + a = this.getDataType(i); + switch (a) { + case e.DT_UNSIGNED_INT: + s = n.readUnsignedInt(); + break; + case e.DT_FLOAT: + s = n.readFloat(); + break; + case e.DT_DOUBLE: + s = n.readNumber(); + break; + default: + s = n.readInt(); + } + this.propValueObj[i] = s; + }), + (e.prototype.setProperty = function (t, e) { + this.propValueObj[t] = e; + }), + (e.prototype.getPropValueObj = function () { + return this.propValueObj; + }), + (e.prototype.getX = function () { + return this.getValue(t.nRDo.AP_X); + }), + (e.prototype.getY = function () { + return this.getValue(t.nRDo.AP_Y); + }), + (e.prototype.getSex = function () { + return this.getValue(t.nRDo.AP_SEX); + }), + (e.prototype.getHp = function () { + return this.getValue(t.nRDo.AP_HP); + }), + (e.prototype.getHpPercentage = function () { + return (this.getHp() / this.getMaxHp()) * 100; + }), + (e.prototype.getCurMp = function () { + return this.getValue(t.nRDo.AP_MP); + }), + (e.prototype.getMaxHp = function () { + return this.getValue(t.nRDo.AP_MAX_HP); + }), + (e.prototype.getMaxMp = function () { + return this.getValue(t.nRDo.AP_MAX_MP); + }), + (e.prototype.getMpPercentage = function () { + return (this.getCurMp() / this.getMaxMp()) * 100; + }), + (e.prototype.getName = function () { + return this.getValue(t.nRDo.ACTOR_NAME) + ""; + }), + (e.prototype.getGuildName = function () { + return this.getValue(t.nRDo.ACTOR_GUILD_NAME) + ""; + }), + (e.prototype.getMasterName = function () { + return this.getValue(t.nRDo.ACTOR_HANDLER_NAME) + ""; + }), + (e.prototype.getColor = function () { + return this.getValue(t.nRDo.ACTOR_NAME_COLOR); + }), + (e.prototype.mBjV = function () { + return this.getValue(t.nRDo.AP_LEVEL); + }), + (e.prototype.getVip = function () { + return this.getValue(t.nRDo.AP_ACTOR_VIP_GRADE); + }), + (e.prototype.MzYki = function () { + return this.getValue(t.nRDo.AP_ACTOR_CIRCLE); + }), + (e.prototype.getZSSoul = function () { + return this.getValue(t.nRDo.AP_ACTOR_CIRCLE_SOUL); + }), + (e.prototype.getRecycleIntergral = function () { + return this.getValue(t.nRDo.PROP_RECYCLE_INTEGRAL); + }), + (e.prototype.getState = function () { + return this.getValue(t.nRDo.AP_STATE); + }), + (e.prototype.getFacte = function () { + return this.getValue(t.nRDo.AP_FACE_ID); + }), + (e.prototype.getFacteStr = function () { + return "hair" + this.PrefixInteger(this.getValue(t.nRDo.AP_FACE_ID), 3); + }), + (e.prototype.getBody = function () { + return this.getValue(t.nRDo.AP_BODY_ID); + }), + (e.prototype.getBodyModelStr = function () { + return "body" + this.PrefixInteger(this.getValue(t.nRDo.AP_BODY_ID), 3); + }), + (e.prototype.getBodyStr = function () { + return this.getValue(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE) + ? "body" + this.PrefixInteger(this.getValue(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE), 3) + : "body" + this.PrefixInteger(this.getValue(t.nRDo.AP_BODY_ID), 3); + }), + (e.prototype.getFashionBodyStr = function () { + return "body" + this.PrefixInteger(this.getValue(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE), 3); + }), + (e.prototype.getFashionWeaponStr = function () { + return 0 == this.getValue(t.nRDo.AP_WEAPON) ? "" : "weapon" + this.PrefixInteger(this.getValue(t.nRDo.AP_WEAPON), 3) + "_" + this.getSex(); + }), + (e.prototype.getBodyEFFStr = function () { + return 0 == this.getValue(t.nRDo.ACTOR_FASHION_DISPLAY) ? "" : "bodyeff_" + this.getValue(t.nRDo.ACTOR_FASHION_DISPLAY) + "_" + this.getSex(); + }), + (e.prototype.getWeaponEffStr = function () { + return 0 == this.getValue(t.nRDo.ACTOR_WEAPON_DISPLAY) ? "" : "weaponeff" + this.PrefixInteger(this.getValue(t.nRDo.ACTOR_WEAPON_DISPLAY), 3) + "_" + this.getSex(); + }), + (e.prototype.PrefixInteger = function (t, e) { + return (Array(e).join("0") + t).slice(-e); + }), + (e.prototype.getFashionDisplayStr = function () { + return this.getValue(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE); + }), + (e.prototype.getWeaponDisplayStr = function () { + return this.getValue(t.nRDo.AP_WEAPON); + }), + (e.prototype.getRace = function () { + return this.getValue(t.nRDo.ACTOR_RACE); + }), + (e.prototype.getSuit = function () { + return this.getValue(t.nRDo.BODY_SUIT); + }), + (e.prototype.getACTOR_ID = function () { + return this.getValue(t.nRDo.AP_ACTOR_ID); + }), + (e.prototype.getAP_JOB = function () { + return this.getValue(t.nRDo.AP_JOB); + }), + (e.prototype.getNextAckSkillId = function () { + return this.getValue(t.nRDo.ACK_SKILLID); + }), + (e.prototype.getNextAckSkillLevel = function () { + return this.getValue(t.nRDo.ACK_SKILLLEVEL); + }), + (e.prototype.getBindCoin = function () { + return this.getValue(t.nRDo.AP_BIND_COIN); + }), + (e.prototype.getNotBindCoin = function () { + return this.getValue(t.nRDo.AP_NOT_BIND_COIN); + }), + (e.prototype.getBindYuanBao = function () { + return this.getValue(t.nRDo.AP_BIND_YUANBAO); + }), + (e.prototype.getWarCurrency = function () { + return this.getValue(t.nRDo.WAR_CURRENCY); + }), + (e.prototype.getNotBindYuanBao = function () { + return this.getValue(t.nRDo.AP_NOT_BIND_YUANBAO); + }), + (e.prototype.getValue = function (t) { + return this.propValueObj[t]; + }), + (e.prototype.getHandler = function () { + return this.getValue(t.nRDo.ACTOR_HANDLER); + }), + (e.prototype.getPowerValue = function () { + return this.getValue(t.nRDo.AP_POWER_VALUE); + }), + (e.prototype.getDir = function () { + return this.getValue(t.nRDo.AP_DIR); + }), + (e.prototype.getSpeedMedicine = function () { + return this.getValue(t.nRDo.PROP_ACTOR_SPEED_MEDICINE); + }), + (e.prototype.getPKtype = function () { + return this.getValue(t.nRDo.AP_PK_MODE); + }), + (e.prototype.getPKState = function () { + return this.getValue(t.nRDo.AP_MALICE_STATE); + }), + (e.prototype.getPKValue = function () { + return this.getValue(t.nRDo.AP_PK_VALUE); + }), + (e.prototype.getEXP = function () { + var e = this.getValue(t.nRDo.AP_EXP_L), + i = this.getValue(t.nRDo.AP_EXP_H); + return t.MathUtils.MakeLong64(e, i); + }), + (e.prototype.getActorId = function () { + return this.getValue(t.nRDo.ACTOR_HANDLER); + }), + (e.prototype.getWeaponStr = function () { + return "weapon" + this.PrefixInteger(this.getWeapon(), 3) + "_" + this.getSex(); + }), + (e.prototype.getPetrification = function () { + return this.getValue(t.nRDo.PETRIFICATION); + }), + (e.prototype.getWeapon = function () { + return this.getValue(t.nRDo.AP_WEAPON); + }), + (e.prototype.getmultipleExp = function () { + return t.MathUtils.MakeLong64(this.getValue(t.nRDo.AP_MAX_EXP_L), this.getValue(t.nRDo.AP_MAX_EXP_H)); + }), + (e.prototype.getFlyshoes = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FLYSHOES); + }), + (e.prototype.getGuildId = function () { + return this.getValue(t.nRDo.AP_GUILD_ID); + }), + (e.prototype.getGuildDevote = function () { + return this.getValue(t.nRDo.AP_GUILD_CON); + }), + (e.prototype.getAreaState = function () { + return [this.getValue(t.nRDo.PROP_AREASTATE1), this.getValue(t.nRDo.PROP_AREASTATE2), 0, 0]; + }), + (e.prototype.getBoratnum = function () { + return this.getValue(t.nRDo.PROP_ACTOR_BORATNUM); + }), + (e.prototype.getIntegral = function () { + return this.getValue(t.nRDo.PROP_RECYCLE_INTEGRAL); + }), + (e.prototype.getPhysicalAttackMin = function () { + return this.getValue(t.nRDo.AP_PHYSICAL_ATTACK_MIN); + }), + (e.prototype.getPhysicalAttackMax = function () { + return this.getValue(t.nRDo.AP_PHYSICAL_ATTACK_MAX); + }), + (e.prototype.getMagicAttackMin = function () { + return this.getValue(t.nRDo.AP_MAGIC_ATTACK_MIN); + }), + (e.prototype.getMagicAttackMax = function () { + return this.getValue(t.nRDo.AP_MAGIC_ATTACK_MAX); + }), + (e.prototype.getWizardAttackMin = function () { + return this.getValue(t.nRDo.AP_WIZARD_ATTACK_MIN); + }), + (e.prototype.getWizardAttackMax = function () { + return this.getValue(t.nRDo.AP_WIZARD_ATTACK_MAX); + }), + (e.prototype.getPhysicalDefenceMin = function () { + return this.getValue(t.nRDo.AP_PHYSICAL_DEFENCE_MIN); + }), + (e.prototype.getPhysicalDefenceMax = function () { + return this.getValue(t.nRDo.AP_PHYSICAL_DEFENCE_MAX); + }), + (e.prototype.getMagicDefenceMin = function () { + return this.getValue(t.nRDo.AP_MAGIC_DEFENCE_MIN); + }), + (e.prototype.getMagicDefenceMax = function () { + return this.getValue(t.nRDo.AP_MAGIC_DEFENCE_MAX); + }), + (e.prototype.getApHitRate = function () { + return this.getValue(t.nRDo.AP_HIT_RATE); + }), + (e.prototype.getApGogeRate = function () { + return this.getValue(t.nRDo.AP_DOGE_RATE); + }), + (e.prototype.getMagicHitRate = function () { + return this.getValue(t.nRDo.AP_MAGIC_HIT_RATE); + }), + (e.prototype.getMagicDogeRate = function () { + return this.getValue(t.nRDo.AP_MAGIC_DOGERATE); + }), + (e.prototype.getApLuck = function () { + return this.getValue(t.nRDo.AP_LUCK); + }), + (e.prototype.getMeridians = function () { + return this.getValue(t.nRDo.PROP_MERIDIANS_LEVEL); + }), + (e.prototype.getTradeQuota = function () { + return t.MathUtils.MakeLong64(this.getValue(t.nRDo.PROP_TRADING_QUOTA_L), this.getValue(t.nRDo.PROP_TRADING_QUOTA_H)); + }), + (e.prototype.getActivity = function () { + return this.getValue(t.nRDo.AP_VALUE); + }), + (e.prototype.getPopularity = function () { + return this.getValue(t.nRDo.AP_POPULARITY); + }), + (e.prototype.getBless = function () { + return this.getValue(t.nRDo.AP_ZJ_VALUE); + }), + (e.prototype.getHpRenew = function () { + return this.getValue(t.nRDo.AP_CURSE); + }), + (e.prototype.getMpRenew = function () { + return this.getValue(t.nRDo.AP_TOXIC_DOGERATE); + }), + (e.prototype.getZYId = function () { + return this.getValue(t.nRDo.AP_ZY_ID); + }), + (e.prototype.getGoldEquipAttr1 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR1); + }), + (e.prototype.getGoldEquipAttr2 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR2); + }), + (e.prototype.getGoldEquipAttr3 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR3); + }), + (e.prototype.getGoldEquipAttr4 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR4); + }), + (e.prototype.getGoldEquipAttr5 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR5); + }), + (e.prototype.getGoldEquipAttr6 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR6); + }), + (e.prototype.getGoldEquipAttr7 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR7); + }), + (e.prototype.getGoldEquipAttr8 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_GOLDEQ_ATTR8); + }), + (e.prototype.getPropCritRate = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CRIT_RATE); + }), + (e.prototype.getPropCritPower = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CRIT_POWER); + }), + (e.prototype.getPropCritMutRate = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CRIT_MUTRATE); + }), + (e.prototype.getMonthCardTimer = function () { + return this.getValue(t.nRDo.AP_VIP_YELLOW_TIME); + }), + (e.prototype.getBigDrugMonthCardTimer = function () { + return this.getValue(t.nRDo.AP_ACTOR_FORCE); + }), + (e.prototype.getVipState = function () { + return this.getValue(t.nRDo.AP_VIP_TYPE); + }), + (e.prototype.getVipCardState = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CIRCLEPOTENTIALPOINT); + }), + (e.prototype.getTITLE = function () { + return this.getValue(t.nRDo.AP_ACTOR_HEAD_TITLE); + }), + (e.prototype.getCurCustomTitle = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CURCUSTOMTITLE); + }), + (e.prototype.getForbidenTime = function () { + return Math.floor(t.GlobalFunc.formatMiniDateTime(this.getValue(t.nRDo.FORBIDEN_TIME)) / 1e3); + }), + (e.prototype.getRechargeSum = function () { + return this.getValue(t.nRDo.AP_DRAW_YB_COUNT); + }), + (e.prototype.getPetState = function () { + return this.getValue(t.nRDo.PETSTATE); + }), + (e.prototype.getDamagebonus = function () { + return this.getValue(t.nRDo.PROP_ACTOR_DAMAGEBONUS); + }), + (e.prototype.getDamagededuct = function () { + return this.getValue(t.nRDo.PROP_ACTOR_DEDUCT_DAMAGE); + }), + (e.prototype.getCut = function () { + return this.getValue(t.nRDo.PROP_ACTOR_CUT); + }), + (e.prototype.getAckRate = function () { + var e = this.getValue(t.nRDo.ACK_RATE); + return e ? e / 1e4 + 1 : 1; + }), + (e.prototype.getAckRatio = function () { + return this.getValue(t.nRDo.ACK_RATE); + }), + (e.prototype.getPickUpPet = function () { + return this.getValue(t.nRDo.AP_PICKUPPET); + }), + (e.prototype.getPickUpPetRange = function () { + return this.getValue(t.nRDo.AP_PICKUPPET_RANGE); + }), + (e.prototype.getSuckblood = function () { + return this.getValue(t.nRDo.PROP_ACTOR_SUCKBLOOD); + }), + (e.prototype.getIgnordefence = function () { + return this.getValue(t.nRDo.PROP_ACTOR_IGNORDEFENCE); + }), + (e.prototype.getLootbindcoin = function () { + return this.getValue(t.nRDo.PROP_ACTOR_LOOTBINDCOIN); + }), + (e.prototype.getExpPower = function () { + return this.getValue(t.nRDo.PROP_ACTOR_EXP_POWER); + }), + (e.prototype.getHpBonus = function () { + return this.getValue(t.nRDo.HP_bonus); + }), + (e.prototype.getViolent = function () { + return this.getValue(t.nRDo.AP_ACTOR_VIP_POINT); + }), + (e.prototype.getPKDamageReduction = function () { + return this.getValue(t.nRDo.PK_DAMAGE_REDUCTION); + }), + (e.prototype.getOfficialPositicon = function () { + return this.getValue(t.nRDo.OFFICIAL_POSITION); + }), + (e.prototype.getProtection = function () { + return this.getValue(t.nRDo.PROP_PROTECTION); + }), + (e.prototype.getRecoverState = function () { + return this.getValue(t.nRDo.AP_ACTOR_RECOVERSTATE); + }), + (e.prototype.getDimensionKey = function () { + return this.getValue(t.nRDo.AP_DIMENSION_KEY); + }), + (e.prototype.getResurrection = function () { + return this.getValue(t.nRDo.RESURRECTION_VIP); + }), + (e.prototype.getSkillAttr1 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_HALFMONTHS_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr2 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRE_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr3 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_DAYBYDAY_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr4 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_ICESTORM_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr5 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRERAIN_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr6 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_THUNDER_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr7 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_BLOODBITE_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr8 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRESIGN_INCREASEDAMAGE); + }), + (e.prototype.getSkillAttr9 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_HALFMONTHS_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr10 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRE_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr11 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_DAYBYDAY_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr12 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_ICESTORM_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr13 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRERAIN_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr14 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_THUNDER_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr15 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_BLOODBITE_REDUCEDAMAGE); + }), + (e.prototype.getSkillAttr16 = function () { + return this.getValue(t.nRDo.PROP_ACTOR_FIRESIGN_REDUCEDAMAGE); + }), + (e.prototype.getRoleCreateTime = function () { + var e = this.getValue(t.nRDo.PROP_ACTOR_ROLE_CREATETIME); + return t.DateUtils.formatMiniDateTime(e); + }), + (e.prototype.getGuildLevel = function () { + return this.getValue(t.nRDo.PROP_GUILD_LEVEL); + }), + (e.prototype.getMonsterAscriptionId = function () { + return this.getValue(t.nRDo.PROP_MONSTER_ASCRIPTIONID); + }), + (e.prototype.getDataType = function (i) { + switch (i) { + case t.nRDo.AP_X: + case t.nRDo.AP_Y: + case t.nRDo.AP_BODY_ID: + case t.nRDo.AP_DIR: + case t.nRDo.AP_PHYSICAL_ATTACK_MIN: + case t.nRDo.AP_PHYSICAL_ATTACK_MAX: + case t.nRDo.AP_MAGIC_ATTACK_MIN: + case t.nRDo.AP_MAGIC_ATTACK_MAX: + case t.nRDo.AP_WIZARD_ATTACK_MIN: + case t.nRDo.AP_WIZARD_ATTACK_MAX: + case t.nRDo.AP_PHYSICAL_DEFENCE_MIN: + case t.nRDo.AP_PHYSICAL_DEFENCE_MAX: + case t.nRDo.AP_MAGIC_DEFENCE_MIN: + case t.nRDo.AP_MAGIC_DEFENCE_MAX: + case t.nRDo.AP_HIT_RATE: + case t.nRDo.AP_DOGE_RATE: + case t.nRDo.AP_LUCK: + case t.nRDo.AP_CURSE: + case t.nRDo.AP_WEAPON: + case t.nRDo.BODY_SUIT: + case t.nRDo.AP_PK_VALUE: + case t.nRDo.AP_EXPLOIT_VALUE: + case t.nRDo.NEXT_ACK_SKILLID: + case t.nRDo.AP_ZY_ID: + case t.nRDo.AP_ACTOR_SIGNIN: + case t.nRDo.AP_SIGN_IN: + case t.nRDo.PROP_ACTOR_TEAMFUBEN_TEAMID: + case t.nRDo.PROP_ACTOR_TEAMFUBEN_FBID: + case t.nRDo.AP_ACTOR_FORCE: + case t.nRDo.PROP_ACTOR_TEAMFUBEN_OUTPUT: + case t.nRDo.PROP_ACTOR_CRIT_POWER: + case t.nRDo.PROP_ACTOR_DEDUCT_CRIT: + case t.nRDo.AP_MAGIC_HIT_RATE: + case t.nRDo.AP_MAGIC_DOGERATE: + case t.nRDo.PROP_ACTOR_SPEED_MEDICINE: + case t.nRDo.PROP_ACTOR_DEDUCT_DAMAGE: + case t.nRDo.RESURRECTION_VIP: + case t.nRDo.PROP_ACTOR_ROLE_CREATETIME: + return e.DT_INT; + default: + return e.DT_UNSIGNED_INT; + } + }), + (e.prototype.readMultiProperty = function (t, e) { + for (var i = 0; t > i; i++) this.readProperty(e.readUnsignedByte(), e); + }), + (e.getPlayerTips = function (e, i) { + var n; + 1 == i ? (n = t.CrmPU.tipsAttr) : 2 == i ? (n = t.CrmPU.tipsFaShiAttr) : 3 == i && (n = t.CrmPU.tipsDaoShiAttr); + for (var s in n) if (n[s].type == e) return n[s].value; + return null; + }), + (e.prototype.clear = function () { + this.propValueObj = null; + }), + (e.DT_BOOLEAN = 1), + (e.DT_BYTE = 2), + (e.DT_DOUBLE = 3), + (e.DT_FLOAT = 4), + (e.DT_INT = 5), + (e.DT_SHORT = 6), + (e.DT_UNSIGNED_BYTE = 7), + (e.DT_UNSIGNED_INT = 8), + (e.DT_UNSIGNED_SHORT = 9), + (e.DT_STRING = 10), + e + ); + })(); + (t.PropertySet = e), __reflect(e.prototype, "app.PropertySet"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (e) { + (e.language_Error_0 = "加载 default.thm.json 失败!! 失败次数:%s."), + (e.language_Error_1 = "皮肤加载失败,请检查网络重新登录"), + (e.language_Error_2 = "寻路的起始位置参数无效:(%s,%s)"), + (e.language_Error_3 = "寻路的目的位置参数无效:(%s,%s)"), + (e.language_Error_4 = "rLmMYc未实现的类型"), + (e.language_Error_5 = "打开界面只支持类名和类名的字符串形式,关闭界面只支持类名和类名的字符串以及类的实例形式,错误编号:"), + (e.language_Error_6 = "新手引导未初始化就调用 canShow()"), + (e.language_Error_7 = "网络中断--"), + (e.language_Error_8 = "创建客户端数据包时数据不能为空!"), + (e.language_Error_9 = "%s资源加载失败!!失败次数:%s"), + (e.language_Error_10 = "请求进入游戏错误:"), + (e.language_Error_11 = "名称无效,名称中包含非法字符或长度不合法"), + (e.language_Error_12 = "玩家的状态不是进入游戏状态"), + (e.language_Error_13 = "数据服务器返回错误"), + (e.language_Error_14 = "角色名称重复"), + (e.language_Error_100 = "未知错误"), + (e.language_Error_101 = "正在拉起支付...\n如果长时间无响应,请检测网络状况重新购买"), + (e.language_Error_102 = "测试期间请使用道具充值卡!"), + (e.language_Error_103 = "订单号获取失败!"), + (e.language_Error_104 = "请刷新,重新登录!"), + (e.language_Error_105 = "你的账号在其他地方登录\n\n(请保护账号安全)\n\n请尝试重新登录"), + (e.language_Error_108 = "当前区服注册已经关闭,请前往新区注册!"), + (e.language_Error_109 = "订单号获取超时,请检查网络状况!"), + (e.language_Error_110 = "渠道异常,请点击|C:0xeee104&T:+更多充值方式|充值"), + (e.language_Error_111 = "+更多充值方式"), + (e.language_Error_112 = "二维码已超时,请|C:0xeee104&T:刷新|再试"), + (e.language_Error_113 = "该角色已被封禁!"), + (e.language_Error_114 = "角色名中含有特殊字符,无法使用"), + (e.language_Color_White = "白色"), + (e.language_Color_Green = "绿色"), + (e.language_Color_Purple = "紫色"), + (e.language_Color_Orange = "橙色"), + (e.language_Color_Red = "红色"), + (e.language_Color_Golden = "金色"), + (e.language_Chine_Yi = "亿"), + (e.language_Chine_Wan = "万"), + (e.language_Time_Tip = "操作频繁,请等待"), + (e.language_Time_Sec = "秒"), + (e.language_Time_Min = "分"), + (e.language_Time_Hours = "时"), + (e.language_Time_Hours2 = "小时"), + (e.language_Time_Days = "天"), + (e.language_Time_Sun = "日"), + (e.language_Time_Months = "月"), + (e.language_Time_Years = "年"), + (e.language_Alert_0 = "皮肤%s 与 %s 类名重复!!!"), + (e.language_Alert_1 = "皮肤加载失败,请检查网络重新登录"), + (e.language_Alert_2 = "皮肤加载失败,请检查网络重新登录"), + (e.language_Alert_3 = "角色技能为空,isMy:%s,fbType:%s,fubenId:%s"), + (e.language_System0 = "背包"), + (e.language_System3 = "神装"), + (e.language_System4 = "时装"), + (e.language_System5 = "技能"), + (e.language_System6 = "通用"), + (e.language_System7 = "内功"), + (e.language_System8 = "转生"), + (e.language_System9 = "神戒"), + (e.language_System10 = "快捷键设置"), + (e.language_System11 = "选择玩家"), + (e.language_System12 = "添加好友"), + (e.language_System13 = "关系"), + (e.language_System14 = "添加关注"), + (e.language_System15 = "添加黑名单"), + (e.language_System16 = "拆分"), + (e.language_System17 = "金币转换绑定金币"), + (e.language_System18 = "组队"), + (e.language_System19 = [ + { + txt: "一键回收", + name: "keyRecycle", + }, + { + txt: "单件回收", + name: "recycleMerchant", + }, + ]), + (e.language_System20 = "物品回收"), + (e.language_System21 = "回收可获得:"), + (e.language_System22 = "从背包拖入物品可查看回收奖励"), + (e.language_System23 = "这个东西我用不上还是你自己留着吧"), + (e.language_System24 = "(概率获得)"), + (e.language_System25 = ["金币", "绑定金币", "银两", "元宝", "经验值", "转生修为", "飞鞋点数", "喇叭次数", "回收积分", "行会贡献", "声望", "活跃度", "多倍经验"]), + (e.language_System26 = "获得修为"), + (e.language_System27 = "(必得)"), + (e.language_System28 = "行会"), + (e.language_System29 = "行会列表"), + (e.language_System30 = [ + { + txt: "低级武器", + name: "lowEquip", + }, + { + txt: "沃玛级及以下", + name: "fertileEquip", + }, + { + txt: "祖玛级及以下", + name: "zuMaEquip", + }, + ]), + (e.language_System31 = "锻造坊"), + (e.language_System32 = "合成坊"), + (e.language_System33 = "锻造"), + (e.language_System34 = "历史记录"), + (e.language_System35 = "商城"), + (e.language_System36 = "排行榜"), + (e.language_System37 = "邮件"), + (e.language_System38 = "药品"), + (e.language_System39 = "装备"), + (e.language_System40 = "材料"), + (e.language_System41 = "元宝转换银两"), + (e.language_System42 = "飞鞋"), + (e.language_System43 = "私人交易"), + (e.language_System44 = "邀请交易"), + (e.language_System45 = "购买"), + (e.language_System46 = "出售"), + (e.language_System47 = "正在出售"), + (e.language_System48 = "领取物品"), + (e.language_System49 = "洗红名"), + (e.language_System50 = "成就"), + (e.language_System51 = "首领"), + (e.language_System52 = "邀请组队"), + (e.language_System53 = "膜拜"), + (e.language_System54 = "水晶鉴定"), + (e.language_System55 = "|C:0xff7700&T:没有攻击目标|"), + (e.language_System56 = "升级!"), + (e.language_System57 = "开启自动挂机"), + (e.language_System58 = "自动挂机已关闭"), + (e.language_System59 = "角色"), + (e.language_System60 = "修改名字"), + (e.language_System61 = "提示"), + (e.language_System62 = "礼包选择"), + (e.language_System63 = "四象之力"), + (e.language_System64 = "强化"), + (e.language_System65 = "地图"), + (e.language_System66 = "神戒"), + (e.language_System67 = "称号"), + (e.language_System68 = "材料副本"), + (e.language_System69 = "单击目标点可以自动寻路"), + (e.language_System70 = "驻守任务"), + (e.language_System71 = "获得道具"), + (e.language_System72 = "激活后属性加成"), + (e.language_System73 = "|C:0x28ee01&T:下一级属性加成|"), + (e.language_System74 = "|C:0xcbc2b1&T:当前属性加成|"), + (e.language_System75 = "聊 天"), + (e.language_System76 = "经典"), + (e.language_System77 = "重装"), + (e.language_System78 = "领主"), + (e.language_System79 = "禁地"), + (e.language_System80 = "个人"), + (e.language_System81 = "奖励预览"), + (e.language_System82 = "任务提示"), + (e.language_System83 = "激活"), + (e.language_System84 = "升级"), + (e.language_System85 = "已激活"), + (e.language_System86 = "神魔"), + (e.language_System87 = "活动"), + (e.language_System88 = "洗炼"), + (e.language_System89 = "活动"), + (e.language_System90 = "沙城争霸"), + (e.language_System91 = "活动说明"), + (e.language_System92 = "元"), + (e.language_System93 = "加官进爵"), + (e.language_System94 = "挂机时无法切换目标"), + (e.language_System95 = "切换目标为"), + (e.language_System96 = "再充值%s元宝就可以显示我的QQ号哦~"), + (e.language_System97 = "验证填写信息:角色名,服务器,充值金额等,验证成功后,即可享受贴心服务。"), + (e.language_System98 = "|C:0xff7700&T:您还不是超级会员|"), + (e.language_System99 = "兵魂"), + (e.language_System100 = "跨服次元"), + (e.language_System101 = "圣宠"), + (e.language_System102 = "再充值%s元宝就可以显示我的微信号哦~"), + (e.language_System103 = "没有可切换玩家"), + (e.language_System104 = "没有可切换怪物"), + (e.language_System105 = ",当前目标为"), + (e.language_System106 = "再充值%s元宝就可以显示我的QQ号和微信号哦~"), + (e.language_System107 = "再充值%s元宝就可以加美女客服哦~"), + (e.language_System108 = "字诀"), + (e.language_Common_0 = "转"), + (e.language_Common_1 = "级"), + (e.language_Common_2 = "【极品】"), + (e.language_Common_3 = "全职业"), + (e.language_Common_4 = "【可交易】"), + (e.language_Common_5 = "【可交易】【不可寄售】"), + (e.language_Common_6 = "【装备】"), + (e.language_Common_7 = "【材料】"), + (e.language_Common_8 = "【慢回药品】"), + (e.language_Common_9 = "【瞬回药品】"), + (e.language_Common_10 = "【传送卷轴】"), + (e.language_Common_11 = "穿戴等级:"), + (e.language_Common_12 = "穿戴性别:"), + (e.language_Common_13 = "职业要求:"), + (e.language_Common_14 = "沙巴克城主专属"), + (e.language_Common_15 = "转生要求:"), + (e.language_Common_16 = "转之上"), + (e.language_Common_17 = "转之下"), + (e.language_Common_18 = "药品回复率提升+"), + (e.language_Common_19 = "待拆分道具"), + (e.language_Common_20 = "第一堆"), + (e.language_Common_21 = "第二堆"), + (e.language_Common_22 = "请输入需要拆分的数量"), + (e.language_Common_23 = "金 币"), + (e.language_Common_24 = "绑定金币"), + (e.language_Common_25 = "请输入想要转换的数量"), + (e.language_Common_26 = "当前拥有"), + (e.language_Common_27 = "确认丢弃该道具吗?丢弃将直接销毁"), + (e.language_Common_28 = "玩家战力:"), + (e.language_Common_29 = "|C:0x28ee01&T:在线|"), + (e.language_Common_30 = "要开始一键回收吗?默认只会回收商店可出售的无极品属性的装备,可在设置-回收中更改一键回收所包含的物品"), + (e.language_Common_31 = "将要批量回收背包中所有的炼狱、银蛇、魔杖和普通武器,确定吗?"), + (e.language_Common_32 = "将要批量回收背包中所有的井中月、无极棍、祈祷之刃、炼狱、银蛇、魔杖和普通武器,确定吗?"), + (e.language_Common_33 = "获得"), + (e.language_Common_34 = "合成"), + (e.language_Common_35 = "锻造一次消耗%s个%s"), + (e.language_Common_36 = "您当前拥有%s颗"), + (e.language_Common_37 = "即将消耗"), + (e.language_Common_38 = "个"), + (e.language_Common_39 = "你确定使用%s元宝购买%s*%s吗?"), + (e.language_Common_40 = "元 宝"), + (e.language_Common_41 = "银 两"), + (e.language_Common_42 = "特权等级达到"), + (e.language_Common_43 = "开启"), + (e.language_Common_44 = "交易请求已发出,请等待对方同意"), + (e.language_Common_45 = "已锁定"), + (e.language_Common_46 = "邀请与您交易,是否同意"), + (e.language_Common_47 = "出售价格: 元宝"), + (e.language_Common_48 = "上架手续费:"), + (e.language_Common_49 = "交易成功后将扣除售价的|C:0x28ee01&T:%s%|交易税"), + (e.language_Common_50 = "手续费:"), + (e.language_Common_51 = "获得元宝:"), + (e.language_Common_52 = "正在出售物品:|C:0x28ee01&T:%s|"), + (e.language_Common_53 = "无限制"), + (e.language_Common_54 = "交易额度:"), + (e.language_Common_55 = ["近战物理攻击,是团队中最坚强的中流砥柱", "远程魔法攻击,是团队中输出伤害的佼佼者", "远程道术攻击,是团队中的优秀指挥官"]), + (e.language_Common_56 = "多倍经验:"), + (e.language_Common_57 = "多倍经验使用完毕\n明日上线自动领取"), + (e.language_Common_58 = "【多倍经验】"), + (e.language_Common_59 = "确 定"), + (e.language_Common_60 = "取 消"), + (e.language_Common_61 = "次数:"), + (e.language_Common_62 = "剩余次数:"), + (e.language_Common_63 = "不限次数"), + (e.language_Common_64 = "剩余%s次"), + (e.language_Common_65 = "剩余时间:"), + (e.language_Common_66 = "确认并退出"), + (e.language_Common_67 = "退 出"), + (e.language_Common_68 = "秒后自动领取"), + (e.language_Common_69 = "秒后自动退出"), + (e.language_Common_70 = "回城复活"), + (e.language_Common_71 = "立即复活 *"), + (e.language_Common_72 = "完成任务"), + (e.language_Common_73 = "接受任务"), + (e.language_Common_74 = "目标:"), + (e.language_Common_75 = "剩余复活次数:"), + (e.language_Common_76 = "活动已结束,恭喜获得%s积分,排名第%s"), + (e.language_Common_77 = "原地复活"), + (e.language_Common_78 = "随机复活"), + (e.language_Common_79 = "定点复活"), + (e.language_Common_80 = "回城复活"), + (e.language_Common_81 = "阵营复活"), + (e.language_Common_82 = "开放时间:"), + (e.language_Common_83 = "阵营转换时间:"), + (e.language_Common_84 = "|C:0xff7700&T:等级或转生等级不足|"), + (e.language_Common_85 = "|C:0xff7700&T:该装备与性别不符,不可穿戴|"), + (e.language_Common_86 = "|C:0xff7700&T:该装备与职业不符,不可穿戴|"), + (e.language_Common_87 = "|C:0xff7700&T:必须为沙巴克城主才可穿戴|"), + (e.language_Common_88 = "|C:0xff7700&T:战力不足|"), + (e.language_Common_89 = "转生必须大于等于%s转才可穿戴"), + (e.language_Common_90 = "转生必须小于等于%s转才可穿戴"), + (e.language_Common_91 = "区服信息"), + (e.language_Common_92 = "当前合服次数:"), + (e.language_Common_93 = "开服天数:第"), + (e.language_Common_94 = "当前服务器:"), + (e.language_Common_95 = "第一名 "), + (e.language_Common_96 = "第二名 "), + (e.language_Common_97 = "第三名 "), + (e.language_Common_98 = " 完成了最后一击!"), + (e.language_Common_99 = "|C:0xf30302&T:只能召唤一只宠物|"), + (e.language_Common_100 = "免费传送"), + (e.language_Common_101 = "当前波数:"), + (e.language_Common_102 = "当前剩余怪物:"), + (e.language_Common_103 = "|C:0xffffff&T:活动已登录|%s|C:0xffffff&T:天|"), + (e.language_Common_104 = "剩余"), + (e.language_Common_105 = "开服第%s天开启"), + (e.language_Common_106 = "|C:0xb4926c&T:花费||C:0xe07e02&T:%s||C:0xb4926c&T:元宝即可购买||C:0xe07e02&T:%s|"), + (e.language_Common_107 = "任务目标"), + (e.language_Common_108 = "|C:0xe5ddcf&T:有效期:|"), + (e.language_Common_109 = "|C:0xe5ddcf&T:永久|"), + (e.language_Common_110 = "数量:"), + (e.language_Common_111 = "新服好礼"), + (e.language_Common_112 = "日常福利"), + (e.language_Common_113 = "YY会员1~3级"), + (e.language_Common_114 = "YY会员4~6级"), + (e.language_Common_115 = "YY会员7~8级"), + (e.language_Common_116 = "每日礼包"), + (e.language_Common_117 = "每周礼包"), + (e.language_Common_118 = "升级并购买"), + (e.language_Common_119 = "开通并购买"), + (e.language_Common_120 = "领 取"), + (e.language_Common_121 = "升级并领取"), + (e.language_Common_122 = "开通并领取"), + (e.language_Common_123 = "新手礼包"), + (e.language_Common_124 = "登录礼包"), + (e.language_Common_125 = "等级礼包"), + (e.language_Common_126 = "YY贵族礼包"), + (e.language_Common_127 = "|C:0xDCB789&T:使用YY游戏大厅,累计登录||C:0x1EC605&T:%s||C:0xDCB789&T:天领取"), + (e.language_Common_128 = "|C:0xDCB789&T:使用YY游戏大厅,且游戏角色等级达到||C:0x1EC605&T:%s||C:0xDCB789&T:级可领取"), + (e.language_Common_129 = "|C:0xDCB789&T:YY等级达到||C:0x1EC605&T:%s||C:0xDCB789&T:级,可领取"), + (e.language_Common_130 = "|C:0xDCB789&T:成为超级会员||C:0x1EC605&T:VIP%s||C:0xDCB789&T:即可领取"), + (e.language_Common_131 = "专属"), + (e.language_Common_132 = "今日剩余次数:"), + (e.language_Common_133 = "超玩会员特权"), + (e.language_Common_134 = "超玩每日礼包"), + (e.language_Common_135 = "攻击中"), + (e.language_Common_136 = "休息中"), + (e.language_Common_137 = "自动施毒术(目标未中毒时自动释放)"), + (e.language_Common_138 = "使用冰咆哮 |C:0xf30302&T:(需要学习冰咆哮)|"), + (e.language_Common_139 = "金创药(小)"), + (e.language_Common_140 = "金创药(中)"), + (e.language_Common_141 = "强效金创药"), + (e.language_Common_142 = "特级金创药"), + (e.language_Common_143 = "魔法药(小)"), + (e.language_Common_144 = "魔法药(中)"), + (e.language_Common_145 = "强效魔法药"), + (e.language_Common_146 = "特级魔法药"), + (e.language_Common_147 = "太阳水"), + (e.language_Common_148 = "强效太阳水"), + (e.language_Common_149 = "万年雪霜"), + (e.language_Common_150 = "疗伤药"), + (e.language_Common_151 = "高画质"), + (e.language_Common_152 = "低画质"), + (e.language_Common_153 = "端游显示模式"), + (e.language_Common_154 = "部位"), + (e.language_Common_155 = "获取道具"), + (e.language_Common_156 = "|C:0xF6883A&T:%s|"), + (e.language_Common_157 = "自动流星火雨 |C:0xf30302&T:(需要学习流星火雨)|"), + (e.language_Common_158 = "1倍"), + (e.language_Common_159 = "1.25倍"), + (e.language_Common_160 = "1.5倍"), + (e.language_Common_161 = "当前成功率:"), + (e.language_Common_162 = "多倍经验使用期间,\n打怪获得10倍经验加成,\n用完为止"), + (e.language_Common_163 = "可获得%s多倍经验"), + (e.language_Common_164 = "是否消耗 |C:0xe50000&T:队伍召集令x1| 召唤队友\n召唤位置:|C:0xff7700&T:%s(%s:%s)|"), + (e.language_Common_165 = "是否消耗 |C:0xe50000&T:行会召集令x1| 召唤行会成员\n召唤位置:|C:0xff7700&T:%s(%s:%s)|"), + (e.language_Common_166 = "%s使用|C:0xe50000&T:队伍召集令|召唤你\n位置:|C:0xff7700&T:%s(%s:%s)|\n该地图可能存在危险,是否前往?"), + (e.language_Common_167 = "%s使用|C:0xe50000&T:行会召集令|召唤你\n位置:|C:0xff7700&T:%s(%s:%s)|\n该地图可能存在危险,是否前往?"), + (e.language_Common_168 = "召唤队友"), + (e.language_Common_169 = "行会召唤"), + (e.language_Common_170 = "%s秒后自动进入游戏"), + (e.language_Common_171 = "当前区服注册已经关闭,请前往新区注册!"), + (e.language_Common_172 = "活动进行中"), + (e.language_Common_173 = "今日"), + (e.language_Common_174 = "明日"), + (e.language_Common_175 = "祝 福"), + (e.language_Common_176 = "自动祝福"), + (e.language_Common_177 = "取 消"), + (e.language_Common_178 = "|C:0xff7700&T:%s转或%s会员开启自动使用祝福油功能|"), + (e.language_Common_179 = "点击后消耗飞鞋进行随机传送"), + (e.language_Common_180 = "点击后回城"), + (e.language_Common_181 = "会长/副会长点击后可进行行会召集\n行会召集令可在补给商城购买"), + (e.language_Common_182 = "所有队伍成员点击后可进行队伍召集\n队伍召集令可在补给商城购买"), + (e.language_Common_183 = "屏蔽他人特效"), + (e.language_Common_184 = "游戏版本已更新,请重新登录,体验最新内容"), + (e.language_Common_185 = "职业转换成功后:"), + (e.language_Common_186 = "职业转换成功将重新登陆游戏转职不可逆转,请慎重选择转职后三内不可再次转置"), + (e.language_Common_187 = "|C:0xff7700&T:您没有任何修改,请确认|"), + (e.language_Common_189 = "|C:0xe5ddcf&T:你当前的选择为:||C:0xe50000&T:%s %s| \n"), + (e.language_Common_190 = "转职CD:|C:0xe50000&T:%s|"), + (e.language_Common_191 = "角色名不能为空!"), + (e.language_Common_192 = "前往官网充值"), + (e.language_Common_193 = "新手注册礼包"), + (e.language_Common_194 = "游戏成长礼包"), + (e.language_Common_195 = "每日活跃礼包"), + (e.language_Common_196 = "|C:0xDCB789&T:使用QQ游戏大厅,且游戏角色等级达到||C:0x1EC605&T:%s||C:0xDCB789&T:级可领取"), + (e.language_Common_197 = "特权总览"), + (e.language_Common_198 = "蓝钻Lv%s可领取"), + (e.language_Common_199 = "蓝钻豪华版可领取"), + (e.language_Common_200 = "年费蓝钻贵族可领取"), + (e.language_Common_201 = "|C:0xDCB789&T:蓝钻用户角色等级达到||C:0x1EC605&T:%s||C:0xDCB789&T:级可领取"), + (e.language_Common_202 = "%s专属快捷传送"), + (e.language_Common_203 = "刷新时间段"), + (e.language_Common_204 = "双击抢归属"), + (e.language_Common_205 = "出 战"), + (e.language_Common_206 = "召 回"), + (e.language_Common_207 = "|U&T:更多蓝钻特权,请关注蓝钻官网"), + (e.language_Common_208 = "表情无法和文字一起发送"), + (e.language_Common_209 = "BOSS已刷新"), + (e.language_Common_210 = "不再提示"), + (e.language_Common_211 = "快捷使用"), + (e.language_Common_212 = "使 用"), + (e.language_Common_213 = "批量使用"), + (e.language_Common_214 = "|C:0x28ee01&T:%s天后可以使用|"), + (e.language_Common_215 = "请点击右侧按钮选择交易对象"), + (e.language_Common_216 = "前往查看"), + (e.language_Common_217 = "|C:0xe5ddcf&T:已开启特权:智能回收\n装备包裹满时可以自动一键回收\n在【设置-回收】中可以设定|"), + (e.language_Common_218 = "摇钱树"), + (e.language_Common_219 = "可获得: |C:0x1EC605&T:%s(有10%几率暴击)|"), + (e.language_Common_220 = "剩余次数:|C:0x1EC605&T:%s|"), + (e.language_Common_221 = "消耗: |C:0x1EC605&T:%s(优先消耗摇钱树叶)|"), + (e.language_Common_222 = "|C:0x1EC605&T:累计在线时间:%s|"), + (e.language_Common_223 = "可领取"), + (e.language_Common_224 = "%s后领取"), + (e.language_Common_225 = "|C:0x1EC605&T:(会员特权次数+%s)|"), + (e.language_Common_226 = "未达成"), + (e.language_Common_227 = "已达成"), + (e.language_Common_228 = "次日登录领取"), + (e.language_Common_229 = "当前已达最大"), + (e.language_Common_230 = "阶"), + (e.language_Common_231 = "前往跨服..."), + (e.language_Common_231_1 = "回到本服..."), + (e.language_Common_232 = "是否确认使用%s"), + (e.language_Common_233 = "刷新倒计时:"), + (e.language_Common_234 = "立即参与"), + (e.language_Common_235 = "即将退出跨服,回到原服"), + (e.language_Common_236 = "活动时间"), + (e.language_Common_237 = "当前剩余人数:%s"), + (e.language_Common_238 = "|C:0x28ee01&T:%s||C:0xe50000&T: 获得了归属奖励|"), + (e.language_Common_239 = "您将获得以下奖励,奖励在回到原服后通过邮件发放"), + (e.language_Common_240 = "次元首领已被击杀"), + (e.language_Common_241 = "游戏已更新,建议重新登录,\n获得最佳体验!"), + (e.language_Common_242 = "优先消耗"), + (e.language_Common_243 = "|C:0xff7700&T:内功等级不足|"), + (e.language_Common_244 = "内功要求:"), + (e.language_Common_245 = "每日首次抽奖免费"), + (e.language_Common_246 = "单次消耗"), + (e.language_Common_247 = "逃脱人数:%s"), + (e.language_Common_248 = "参与奖"), + (e.language_Common_249 = "已逃脱"), + (e.language_Common_250 = "三端互通"), + (e.language_Common_251 = "%s后"), + (e.language_Common_252 = "已拥有:"), + (e.language_Common_253 = "恭喜你第%s个完成逃脱试炼!"), + (e.language_Common_254 = "恭喜你获得了本次逃脱试炼的参与奖!"), + (e.language_Common_255 = "已有"), + (e.language_Common_256 = "还差"), + (e.language_Common_257 = "总价"), + (e.language_Common_258 = "消耗%s元宝补齐%s个%s"), + (e.language_Common_259 = "%s转开启"), + (e.language_Common_260 = "进行中"), + (e.language_Common_261 = "今日剩余次数:"), + (e.language_Common_262 = "您已完成再次充值"), + (e.language_Common_263 = "升到"), + (e.language_Common_264 = "加入行会才可使用"), + (e.language_Common_265 = "|C:0xeee104&T:大玩家|是360游戏中心的VIP高级用户,在享受游戏给您带来快乐的同时,更享受诸多特权及优质的服务。"), + (e.language_Common_266 = "使用盒子玩游戏,等级达到%s领取"), + (e.language_Common_267 = "微端登录礼包"), + (e.language_Common_268 = "vip等级达到%s领取"), + (e.language_Common_269 = "角色等级达到%s领取"), + (e.language_Common_270 = "大厅新手礼包"), + (e.language_Common_271 = "大厅登录礼包"), + (e.language_Common_272 = "大厅等级礼包"), + (e.language_Common_273 = "登录天数达到%s天领取"), + (e.language_Common_274 = "|C:0xe5ddcf&T:当前会员等级:||C:0x28ee01&T:%s|"), + (e.language_Common_275 = "成为vip"), + (e.language_Common_276 = "更多夜风福利特权,请关注夜风官网"), + (e.language_Common_277 = "提高账号安全,账号丢失易找回"), + (e.language_Common_278 = "获取超值大礼包"), + (e.language_Common_279 = "会员等级达到%s领取"), + (e.language_Common_280 = "更多特权"), + (e.language_Common_281 = "立即开通迅雷会员"), + (e.language_Common_282 = "恭喜您在线时长已达标,请前往领取奖励"), + (e.language_Common_283 = "%s后奖励刷新"), + (e.language_Common_291 = "最多累计%s小时离线收益\n离线超过%s小时后离线将无收益"), + (e.language_Common_292 = "离线时长:"), + (e.language_Chine_Number_0 = "零"), + (e.language_Chine_Number_1 = "一"), + (e.language_Chine_Number_2 = "二"), + (e.language_Chine_Number_3 = "三"), + (e.language_Chine_Number_4 = "四"), + (e.language_Chine_Number_5 = "五"), + (e.language_Chine_Number_6 = "六"), + (e.language_Chine_Number_7 = "七"), + (e.language_Chine_Number_8 = "八"), + (e.language_Chine_Number_9 = "九"), + (e.language_Chine_Number_10 = "十"), + (e.language_Chine_Number_11 = "十一"), + (e.language_Chine_Number_12 = "十二"), + (e.language_Chine_Number_13 = "十三"), + (e.language_Chine_Number_14 = "十四"), + (e.language_Chine_Number_15 = "十五"), + (e.language_Chine_Number_16 = "十六"), + (e.language_Chine_Number_17 = "十七"), + (e.language_Chine_Number_18 = "十八"), + (e.language_Chine_Number_19 = "十九"), + (e.language_Chine_Number_20 = "二十"), + (e.language_Chine_Number_21 = "二十一"), + (e.language_Chine_Number_22 = "二十二"), + (e.language_Chine_Number_23 = "二十三"), + (e.language_Chine_Number_24 = "二十四"), + (e.language_Chine_Number_25 = "二十五"), + (e.language_Chine_Number_26 = "二十六"), + (e.language_Chine_Number_27 = "二十七"), + (e.language_Chine_Number_28 = "二十八"), + (e.language_Chine_Number_29 = "二十九"), + (e.language_Chine_Number_30 = "三十"), + (e.language_Chine_Number_31 = "三十一"), + (e.language_Chine_Number_32 = "三十二"), + (e.language_Chine_Number_33 = "三十三"), + (e.language_Chine_Number_34 = "三十四"), + (e.language_Chine_Number_35 = "三十五"), + (e.language_Chine_Number_36 = "三十六"), + (e.language_Chine_Number_37 = "三十七"), + (e.language_Chine_Number_38 = "三十八"), + (e.language_Chine_Number_39 = "三十九"), + (e.language_Chine_Number_40 = "四十"), + (e.language_Chine_Number_41 = "四十一"), + (e.language_Chine_Number_42 = "四十二"), + (e.language_Chine_Number_43 = "四十三"), + (e.language_Chine_Number_44 = "四十四"), + (e.language_Chine_Number_45 = "四十五"), + (e.language_Chine_Number_46 = "四十六"), + (e.language_Chine_Number_47 = "四十七"), + (e.language_Chine_Number_48 = "四十八"), + (e.language_Chine_Number_49 = "四十九"), + (e.language_Chine_Number_50 = "五十"), + (e.language_Chine_Number_51 = "五十一"), + (e.language_Chine_Number_52 = "五十二"), + (e.language_Chine_Number_53 = "五十三"), + (e.language_Chine_Number_54 = "五十四"), + (e.language_Chine_Number_55 = "五十五"), + (e.language_Chine_Number_56 = "五十六"), + (e.language_Chine_Number_57 = "五十七"), + (e.language_Chine_Number_58 = "五十八"), + (e.language_Chine_Number_59 = "五十九"), + (e.language_Chine_Number_60 = "六十"), + (e.language_Chine_Number_61 = "六十一"), + (e.language_Chine_Number_62 = "六十二"), + (e.language_Chine_Number_63 = "六十三"), + (e.language_Chine_Number_64 = "六十四"), + (e.language_Chine_Number_65 = "六十五"), + (e.language_Chine_Number_66 = "六十六"), + (e.language_Chine_Number_67 = "六十七"), + (e.language_Chine_Number_68 = "六十八"), + (e.language_Chine_Number_69 = "六十九"), + (e.language_Chine_Number_70 = "七十"), + (e.language_Chine_Number_71 = "七十一"), + (e.language_Chine_Number_72 = "七十二"), + (e.language_Chine_Number_73 = "七十三"), + (e.language_Chine_Number_74 = "七十四"), + (e.language_Chine_Number_75 = "七十五"), + (e.language_Chine_Number_76 = "七十六"), + (e.language_Chine_Number_77 = "七十七"), + (e.language_Chine_Number_78 = "七十八"), + (e.language_Chine_Number_79 = "七十九"), + (e.language_Chine_Number_80 = "八十"), + (e.language_Chine_Number_81 = "八十一"), + (e.language_Chine_Number_82 = "八十二"), + (e.language_Chine_Number_83 = "八十三"), + (e.language_Chine_Number_84 = "八十四"), + (e.language_Chine_Number_85 = "八十五"), + (e.language_Chine_Number_86 = "八十六"), + (e.language_Chine_Number_87 = "八十七"), + (e.language_Chine_Number_88 = "八十八"), + (e.language_Chine_Number_89 = "八十九"), + (e.language_Chine_Number_90 = "九十"), + (e.language_Chine_Number_91 = "九十一"), + (e.language_Chine_Number_92 = "九十二"), + (e.language_Chine_Number_93 = "九十三"), + (e.language_Chine_Number_94 = "九十四"), + (e.language_Chine_Number_95 = "九十五"), + (e.language_Chine_Number_96 = "九十六"), + (e.language_Chine_Number_97 = "九十七"), + (e.language_Chine_Number_98 = "九十八"), + (e.language_Chine_Number_99 = "九十九"), + (e.language_Role_Name_1 = "战士"), + (e.language_Role_Name_2 = "法师"), + (e.language_Role_Name_3 = "道士"), + (e.language_Role_Name_0 = "通用"), + (e.language_Role_1 = "战"), + (e.language_Role_2 = "法"), + (e.language_Role_3 = "道"), + (e.language_Role_Sex_0 = "男"), + (e.language_Role_Sex_1 = "女"), + (e.chnNumChar = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九"]), + (e.chnUnitSection = ["", "万", "亿", "万亿", "亿亿"]), + (e.chnUnitChar = ["", "十", "百", "千"]), + (e.sToCProptyType = { + 5: "11", + 7: "12", + 9: "13", + 11: "14", + 13: "15", + 15: "16", + 17: "17", + 19: "18", + 21: "19", + 23: "20", + 25: "21", + 27: "22", + 29: "23", + 31: "24", + 33: "25", + 35: "26", + 37: "27", + 39: "28", + 45: "31", + 49: "28", + 95: "116", + 97: "117", + 99: "118", + 101: "119", + 110: "120", + 112: "121", + 114: "122", + 116: "123", + }), + (e.language_CURRENCY_NAME_0 = "经验"), + (e.language_CURRENCY_NAME_1 = "金币"), + (e.language_CURRENCY_NAME_2 = "元宝"), + (e.language_CURRENCY_NAME_3 = "声望"), + (e.language_CURRENCY_NAME_4 = "精炼石"), + (e.language_CURRENCY_NAME_5 = "行会贡献"), + (e.language_CURRENCY_NAME_6 = "行会资金"), + (e.language_CURRENCY_NAME_7 = "功勋"), + (e.language_CURRENCY_NAME_8 = "成就"), + (e.language_CURRENCY_NAME_9 = "战纹精华"), + (e.language_CURRENCY_NAME_10 = "战纹碎片"), + (e.language_CURRENCY_NAME_11 = "低级符文碎片"), + (e.language_CURRENCY_NAME_12 = "高级符文碎片"), + (e.language_CURRENCY_NAME_13 = "神兵经验"), + (e.language_CURRENCY_NAME_14 = "威望"), + (e.language_CURRENCY_NAME_15 = "筹码"), + (e.language_CURRENCY_NAME_16 = "兽神精魄"), + (e.language_CURRENCY_NAME_17 = "经验值增加"), + (e.language_CURRENCY_NAME_18 = "极品属性道具"), + (e.stateName = [ + "|C:0xa6937c&T:等 级 |", + "|C:0xa6937c&T:当前经验 |", + "|C:0xa6937c&T:升级经验 |", + "|C:0xa6937c&T:转 生 |", + "|C:0xa6937c&T:本服编号 |", + "|C:0xa6937c&T:开服时间 |", + "|C:0x00ab08&T:金 币 |", + "|C:0x00ab08&T:绑定金币 |", + "|C:0x00ab08&T:元 宝 |", + "|C:0x00ab08&T:银 两 |", + "|C:0x00ab08&T:战令币 |", + "|C:0x00ab08&T:交易额度 |", + "|C:0x3794fb&T:飞鞋点数 |", + "|C:0x3794fb&T:喇叭次数 |", + "|C:0x3794fb&T:PK 值 |", + "|C:0x3794fb&T:活跃度 |", + "复活加速", + "|C:0x3794fb&T:次元钥匙 |", + ]), + (e.language_Equip_0 = "武器"), + (e.language_Equip_1 = "头盔"), + (e.language_Equip_2 = "衣服"), + (e.language_Equip_3 = "项链"), + (e.language_Equip_4 = "护腕"), + (e.language_Equip_5 = "腰带"), + (e.language_Equip_6 = "戒指"), + (e.language_Equip_7 = "鞋子"), + (e.language_Equip_8 = "官印"), + (e.language_Equip_9 = "斗笠"), + (e.language_Equip_10 = "面甲"), + (e.language_Equip_11 = "披风"), + (e.language_Equip_12 = "盾牌"), + (e.language_Equip_Type_0 = "未定义"), + (e.language_Equip_Type_1 = "武器"), + (e.language_Equip_Type_2 = "衣服"), + (e.language_Equip_Type_3 = "头盔"), + (e.language_Equip_Type_4 = "项链"), + (e.language_Equip_Type_5 = "勋章"), + (e.language_Equip_Type_6 = "手镯"), + (e.language_Equip_Type_7 = "戒指"), + (e.language_Equip_Type_8 = "腰带"), + (e.language_Equip_Type_9 = "鞋子"), + (e.language_Equip_Type_10 = "魂玉"), + (e.language_Equip_Type_11 = "神装斗笠"), + (e.language_Equip_Type_12 = "神装面甲"), + (e.language_Equip_Type_13 = "神装披风"), + (e.language_Equip_Type_14 = "神装盾牌"), + (e.language_Equip_Type_15 = "治疗宝玉"), + (e.language_Equip_Type_16 = "佩饰"), + (e.language_Equip_Type_17 = "银针"), + (e.language_Equip_Type_18 = "心决"), + (e.language_Equip_Type_19 = "金印"), + (e.language_Equip_Type_20 = "檀珠"), + (e.language_Attribute_Name_0 = "当前生命"), + (e.language_Attribute_Name_1 = "当前魔法"), + (e.language_Attribute_Name_2 = "生命"), + (e.language_Attribute_Name_3 = "魔法"), + (e.language_Attribute_Name_4 = "攻击"), + (e.language_Attribute_Name_5 = "物防"), + (e.language_Attribute_Name_6 = "魔防"), + (e.language_Attribute_Name_7 = "暴击"), + (e.language_Attribute_Name_8 = "抗暴"), + (e.language_Attribute_Name_9 = "移速"), + (e.language_Attribute_Name_10 = "攻速"), + (e.language_Attribute_Name_11 = "生命加成"), + (e.language_Attribute_Name_12 = "攻击加成"), + (e.language_Attribute_Name_13 = "麻痹几率"), + (e.language_Attribute_Name_14 = "麻痹抵抗"), + (e.language_Attribute_Name_15 = "麻痹时间"), + (e.language_Attribute_Name_16 = "伤害减免"), + (e.language_Attribute_Name_17 = "暴击伤害"), + (e.language_Attribute_Name_18 = ""), + (e.language_Attribute_Name_19 = "暴击伤害加强"), + (e.language_Attribute_Name_20 = ""), + (e.language_Attribute_Name_21 = "[全怒]对所有职业伤害增加"), + (e.language_Attribute_Name_22 = "[全制]受到所有职业伤害减少"), + (e.language_Attribute_Name_23 = "物理防御百分比"), + (e.language_Attribute_Name_24 = "魔法防御百分比"), + (e.language_Attribute_Name_25 = "当前内功值"), + (e.language_Attribute_Name_26 = "内功值"), + (e.language_Attribute_Name_27 = "伤害吸收"), + (e.language_Attribute_Name_28 = "战士生命"), + (e.language_Attribute_Name_29 = "法师生命"), + (e.language_Attribute_Name_30 = "道士生命"), + (e.language_Attribute_Name_31 = "间隔3秒恢复内功值"), + (e.language_Attribute_Name_32 = ""), + (e.language_Attribute_Name_33 = ""), + (e.language_Attribute_Name_34 = ""), + (e.language_Attribute_Name_35 = ""), + (e.language_Attribute_Name_36 = ""), + (e.language_Attribute_Name_37 = ""), + (e.language_Attribute_Name_38 = ""), + (e.language_Attribute_Name_39 = ""), + (e.language_Attribute_Name_40 = ""), + (e.language_Attribute_Name_41 = ""), + (e.language_Attribute_Name_42 = ""), + (e.language_Attribute_Name_43 = ""), + (e.language_Attribute_Name_44 = ""), + (e.language_Attribute_Name_45 = "战士攻击"), + (e.language_Attribute_Name_46 = "法师攻击"), + (e.language_Attribute_Name_47 = "道士攻击"), + (e.language_Attribute_Name_48 = "战士防御"), + (e.language_Attribute_Name_49 = "法师防御"), + (e.language_Attribute_Name_50 = "道士防御"), + (e.language_Attribute_Name_51 = "战士魔防"), + (e.language_Attribute_Name_52 = "法师魔防"), + (e.language_Attribute_Name_53 = "道士魔防"), + (e.language_Attribute_Name_54 = ""), + (e.language_Attribute_Name_55 = "威慑"), + (e.language_Attribute_Name_56 = "暴击伤害减免"), + (e.language_Attribute_Name_57 = "神圣伤害"), + (e.language_Attribute_Name_58 = "神圣精通"), + (e.language_Attribute_Name_59 = ""), + (e.language_Attribute_Name_60 = "合击神圣伤害"), + (e.language_Attribute_Name_61 = ""), + (e.language_Attribute_Name_62 = ""), + (e.language_Attribute_Name_63 = ""), + (e.language_Attribute_Name_64 = "无影伤害"), + (e.language_Attribute_Name_65 = "暴击强度"), + (e.language_Attribute_Name_66 = "内功加成"), + (e.language_Attribute_Name_67 = "致命一击率"), + (e.language_Attribute_Name_68 = "致命一击伤害"), + (e.language_Attribute_Name_69 = "致命一击伤害减免"), + (e.language_Attribute_Name_70 = ""), + (e.language_Attribute_Name_71 = ""), + (e.language_Attribute_Name_72 = ""), + (e.language_Attribute_Name_73 = "反伤"), + (e.language_Attribute_Name_74 = "物防穿透"), + (e.language_Attribute_Name_75 = "魔防穿透"), + (e.language_Attribute_Name_76 = "致命一击伤害"), + (e.language_Attribute_Name_77 = "致命一击减免"), + (e.language_Attribute_Name_78 = "暴击伤害减免"), + (e.language_Attribute_Name_79 = ""), + (e.language_Attribute_Name_80 = ""), + (e.language_Attribute_Name_81 = ""), + (e.language_Attribute_Name_82 = "夺命追伤"), + (e.language_Attribute_Name2_0 = "反伤概率"), + (e.language_Attribute_Name2_1 = "反伤比率"), + (e.language_Attribute_Name2_2 = "攻击无视反伤效果,增加自身2%攻击力"), + (e.language_Attribute_Name2_3 = "神佑触发 概率"), + (e.language_Attribute_Name2_4 = "神佑复活万分比"), + (e.language_Attribute_Name2_5 = "死咒触发概率"), + (e.language_Attribute_Name2_6 = "死咒增加伤害"), + (e.language_Attribute_Name2_7 = "死咒效果展示时间"), + (e.language_Attribute_Name2_8 = "暴击率"), + (e.language_Attribute_Name2_9 = "AllCrit暴击触发后,持续的时间, 单位:秒"), + (e.language_Attribute_Name2_10 = "受到X次攻击时必定闪避"), + (e.language_Attribute_Name2_11 = "攻击X次必定产生暴击(暴击)"), + (e.language_Attribute_Name2_12 = "治疗戒指,攻击时候补血的概率"), + (e.language_Attribute_Name2_13 = "治疗戒指,攻击的时候补血数"), + (e.language_Attribute_Name2_14 = "[怒战]对战士伤害增加"), + (e.language_Attribute_Name2_15 = "[怒法]对法师伤害增加"), + (e.language_Attribute_Name2_16 = "[怒道]对道士伤害增加"), + (e.language_Attribute_Name2_17 = "[制战]受到战士伤害减少"), + (e.language_Attribute_Name2_18 = "[制法]受到法师伤害减少"), + (e.language_Attribute_Name2_19 = "[制道]受到道士伤害减少"), + (e.language_Attribute_Name2_20 = "合击受到的伤害减少"), + (e.language_Attribute_Name2_21 = "`合击技能对怪物伤害"), + (e.language_Attribute_Name2_22 = "合击技能对玩家伤害"), + (e.language_Attribute_Name2_23 = "怒气恢复速度"), + (e.language_Attribute_Name2_24 = "伤害增加固定值"), + (e.language_Attribute_Name2_25 = "伤害减免固定值"), + (e.language_Attribute_Name2_26 = "闪避"), + (e.language_Attribute_Name2_27 = "基础及能额外系数加成"), + (e.language_Attribute_Name2_28 = "多重暴击几率"), + (e.language_Attribute_Name2_29 = "幸运一击的伤害加深"), + (e.language_Attribute_Name2_30 = "幸运一击的固定伤害加深"), + (e.language_Attribute_Name2_31 = "战士伤害"), + (e.language_Attribute_Name2_32 = "法师伤害"), + (e.language_Attribute_Name2_33 = "道士伤害"), + (e.language_Attribute_Name2_34 = "幸运一击的冷却时间"), + (e.language_Attribute_Name2_35 = "治疗戒指,攻击的时候补血的冷却时间"), + (e.language_Attribute_Name2_36 = ""), + (e.language_Attribute_Name2_37 = ""), + (e.language_Attribute_Name2_38 = ""), + (e.language_Attribute_Name2_39 = ""), + (e.language_Attribute_Name2_40 = ""), + (e.language_Attribute_Name2_41 = ""), + (e.language_Attribute_Name2_42 = "命中"), + (e.language_Attribute_Name2_43 = ""), + (e.language_Attribute_Name2_44 = ""), + (e.language_Attribute_Name2_45 = ""), + (e.language_Attribute_Name2_46 = "幸运"), + (e.propName = [ + "体力值", + "魔法值", + "物 攻", + "魔 法", + "道 术", + "物 防", + "魔 御", + "物理命中", + "物理闪避", + "魔法命中", + "魔法闪避", + "幸 运", + "生命回复", + "魔法回复", + "药品回复率", + "暴击率", + "暴击倍率", + "暴击附加伤害", + "破战", + "破法", + "破道", + "破怪", + "御战", + "御法", + "御道", + "御怪", + ]), + (e.attrArr = [ + ["物攻", "提升战士技能伤害的核心属性"], + ["法师", "提升法师技能伤害的核心属性"], + ["道术", "提升道术技能伤害的核心属性"], + ["物防", "可以减少来自物理攻击技能的伤害"], + ["魔御", "可以减少来自魔法(法师和道士)攻击技能的伤害"], + ["物理命中", "增加物理攻击技能的命中几率"], + ["物理闪避", "增加对物理攻击技能的闪避几率"], + ["魔法命中", "增加魔法(法师和道士)攻击技能的命中几率"], + ["魔法闪避", "增加对魔法(法师和道士)攻击技能的闪避几率"], + ["幸运", "在宝物-祝福系统中提升祝福星级可增加幸运。每点幸运增加3%几率发挥攻击、魔法、道术上限,最高45%"], + ["生命回复", "每2秒生命自动回复值"], + ["魔法回复", "每2秒魔法自动回复值"], + ["药品回复率", "增加慢回和瞬回药品回复效果,每0.1提升10%的回复量"], + ["暴击率", "攻击时触发暴击特效的几率,每1点暴击率提升0.01%几率"], + ["暴击倍率", "触发暴击特效的伤害倍率,每1点暴击倍率提升0.01%的伤害"], + ["暴击附加伤害", "触发暴击特效时追加的伤害数值"], + ["破战", "攻击时增加对战士职业的伤害值"], + ["破法", "攻击时增加对法师职业的伤害值"], + ["破道", "攻击时增加对道士职业的伤害值"], + ["破怪", "攻击时增加对怪物的伤害值"], + ["御战", "受到战士攻击时,降低的伤害值"], + ["御法", "受到法师攻击时,降低的伤害值"], + ["御道", "受到道士攻击时,降低的伤害值"], + ["御怪", "受到怪物攻击时,降低的伤害值"], + ]), + (e.stateArr2 = ["升级经验", "升到下一级所需剩余经验"]), + (e.stateArr11 = ["交易额度", "支付元宝(寄售行、自由交易)需要消耗额度,橙卡及以上会员不消耗交易额度。充值可提升交易额度"]), + (e.stateArr14 = ["PK值", "恶意PK触犯谋杀罪会增加PK值,PK值达到100会受到红名惩罚"]), + (e.stateArr15 = ["活跃", "游戏内参与副本、活动、击败BOSS等可提升活跃度"]), + (e.stateArr16 = ["复活加速", "特权剩余的时间。使用特权卡可提升时间,橙星会员享永久特权。特权期间所有场景复活时间减半(原服从10秒降为5秒,跨服从12秒降为6秒)"]), + (e.stateArr17 = ["次元钥匙", "开启跨服次元宝箱时消耗的道具。开服2天起每天可获得3枚,也可以使用道具获得,合服时会按开服天数差额补偿"]), + (e.attrMinMax = ["物攻:", "魔法:", "道术:", "物防:", "魔御:", "攻魔道:"]), + (e.tipsAttr = [ + { + type: t.nRDo.AP_MAX_HP, + value: "numsx_3", + }, + { + type: t.nRDo.AP_PHYSICAL_ATTACK_MIN, + value: "numsx_4", + }, + { + type: t.nRDo.AP_PHYSICAL_ATTACK_MAX, + value: "numsx_11", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MIN, + value: "numsx_24", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MAX, + value: "numsx_5", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MIN, + value: "numsx_12", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MAX, + value: "numsx_18", + }, + { + type: t.nRDo.AP_HIT_RATE, + value: "numsx_23", + }, + { + type: t.nRDo.AP_DOGE_RATE, + value: "numsx_22", + }, + { + type: t.nRDo.AP_MAGIC_HIT_RATE, + value: "numsx_6", + }, + { + type: t.nRDo.AP_MAGIC_DOGERATE, + value: "numsx_13", + }, + { + type: t.nRDo.AP_POPULARITY, + value: "numsx_17", + }, + { + type: t.nRDo.AP_VALUE, + value: "numsx_1", + }, + { + type: t.nRDo.AP_CURSE, + value: "numsx_14", + }, + { + type: t.nRDo.AP_TOXIC_DOGERATE, + value: "numsx_20", + }, + { + type: t.nRDo.AP_LUCK, + value: "numsx_2", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR5, + value: "numsx_27", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR6, + value: "numsx_26", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR7, + value: "numsx_25", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR8, + value: "numsx_44", + }, + ]), + (e.tipsFaShiAttr = [ + { + type: t.nRDo.AP_MAX_HP, + value: "numsx_3", + }, + { + type: t.nRDo.AP_MAGIC_ATTACK_MIN, + value: "numsx_9", + }, + { + type: t.nRDo.AP_MAGIC_ATTACK_MAX, + value: "numsx_15", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MIN, + value: "numsx_24", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MAX, + value: "numsx_5", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MIN, + value: "numsx_12", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MAX, + value: "numsx_18", + }, + { + type: t.nRDo.AP_HIT_RATE, + value: "numsx_23", + }, + { + type: t.nRDo.AP_DOGE_RATE, + value: "numsx_22", + }, + { + type: t.nRDo.AP_MAGIC_HIT_RATE, + value: "numsx_6", + }, + { + type: t.nRDo.AP_MAGIC_DOGERATE, + value: "numsx_13", + }, + { + type: t.nRDo.AP_POPULARITY, + value: "numsx_17", + }, + { + type: t.nRDo.AP_VALUE, + value: "numsx_1", + }, + { + type: t.nRDo.AP_CURSE, + value: "numsx_14", + }, + { + type: t.nRDo.AP_TOXIC_DOGERATE, + value: "numsx_20", + }, + { + type: t.nRDo.AP_LUCK, + value: "numsx_2", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR5, + value: "numsx_27", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR6, + value: "numsx_26", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR7, + value: "numsx_25", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR8, + value: "numsx_44", + }, + ]), + (e.tipsDaoShiAttr = [ + { + type: t.nRDo.AP_MAX_HP, + value: "numsx_3", + }, + { + type: t.nRDo.AP_WIZARD_ATTACK_MIN, + value: "numsx_10", + }, + { + type: t.nRDo.AP_WIZARD_ATTACK_MAX, + value: "numsx_16", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MIN, + value: "numsx_24", + }, + { + type: t.nRDo.AP_PHYSICAL_DEFENCE_MAX, + value: "numsx_5", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MIN, + value: "numsx_12", + }, + { + type: t.nRDo.AP_MAGIC_DEFENCE_MAX, + value: "numsx_18", + }, + { + type: t.nRDo.AP_HIT_RATE, + value: "numsx_23", + }, + { + type: t.nRDo.AP_DOGE_RATE, + value: "numsx_22", + }, + { + type: t.nRDo.AP_MAGIC_HIT_RATE, + value: "numsx_6", + }, + { + type: t.nRDo.AP_MAGIC_DOGERATE, + value: "numsx_13", + }, + { + type: t.nRDo.AP_POPULARITY, + value: "numsx_17", + }, + { + type: t.nRDo.AP_VALUE, + value: "numsx_1", + }, + { + type: t.nRDo.AP_CURSE, + value: "numsx_14", + }, + { + type: t.nRDo.AP_TOXIC_DOGERATE, + value: "numsx_20", + }, + { + type: t.nRDo.AP_LUCK, + value: "numsx_2", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR5, + value: "numsx_27", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR6, + value: "numsx_26", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR7, + value: "numsx_25", + }, + { + type: t.nRDo.PROP_ACTOR_GOLDEQ_ATTR8, + value: "numsx_44", + }, + ]), + (e.language_Lock_Text0 = "<查看信息>"), + (e.language_Lock_Text1 = "<选择锁定目标>"), + (e.language_Lock_Text2 = "<玩家>"), + (e.language_Tips1 = "|C:0xff7700&T:技能正在冷却中!|"), + (e.language_Tips2 = "|C:0xff7700&T:该物品不可拖动到快捷栏!!|"), + (e.language_Tips3 = "|C:0xff7700&T:背包中没有该物品,不可拖动!|"), + (e.language_Tips4 = "|C:0xff7700&T:背包空间不足!|"), + (e.language_Tips5 = "|C:0xff7700&T:物品ID错误!|"), + (e.language_Tips6 = "|C:0xe5ddcf&T:获得:||C:%s&T:%s|"), + (e.language_Tips7 = "按Ctrl+左键进行数量拆分"), + (e.language_Tips8 = "|C:0xff7700&T:该道具无法丢弃,请尝试回收或出售|"), + (e.language_Tips9 = "|C:0xff7700&T:该道具无法回收|"), + (e.language_Tips10 = "|C:0xff7700&T:回收失败|"), + (e.language_Tips11 = "|C:0xff7700&T:该物品正在CD中|"), + (e.language_Tips12 = "|C:0xff7700&T:转生条件不符|"), + (e.language_Tips13 = "|C:0x28ee01&T:转生成功|"), + (e.language_Tips14 = "|C:0xff7700&T:转生达到最高等级|"), + (e.language_Tips15 = "|C:0xff7700&T:兑换数量不足|"), + (e.language_Tips16 = "|C:0xff7700&T:兑换所需材料不足|"), + (e.language_Tips17 = "|C:0x28ee01&T:技能升级成功|"), + (e.language_Tips18 = "|C:0xff7700&T:该功能在等级%s级后开启|"), + (e.language_Tips19 = "|C:0xff7700&T:背包剩余不足,无法回收|"), + (e.language_Tips20 = "|C:0xff7700&T:你确认要回收%s吗?|"), + (e.language_Tips21 = "|C:0xff7700&T:材料不足|"), + (e.language_Tips22 = "|C:0xff7700&T:%s级开启锻造功能|"), + (e.language_Tips23 = "|C:0xff7700&T:等级达到%s级开启合成功能|"), + (e.language_Tips24 = "【元宝】充值获得;可在元宝商城、寄售行购买物品;也可以通过私人交易赠送给其他玩家"), + (e.language_Tips25 = "【银两】回收装备、击败BOSS、参与游戏内活动都有机会获得,也可以通过元宝兑换获得;可在银两商城购买物品;与角色绑定"), + (e.language_Tips26 = "|C:0xff7700&T:购买失败,交易额度或元宝不足,真实充值后提升交易额度|"), + (e.language_Tips27 = "|C:0xff7700&T:手续费不足,请重新上架|"), + (e.language_Tips28 = "|C:0xff7700&T:%s级开启当前功能|"), + (e.language_Tips29 = "|C:0xff7700&T:请选择物品|"), + (e.language_Tips30 = "|C:0xff7700&T:该物品无法出售|"), + (e.language_Tips31 = "|C:0xff7700&T:请先选择交易对象|"), + (e.language_Tips32 = "|C:0xff7700&T:请先锁定|"), + (e.language_Tips33 = "|C:0xff7700&T:出售价格不能为空|"), + (e.language_Tips34 = "|C:0x28ee01&T:购买成功!|"), + (e.language_Tips35 = "|C:0xff7700&T:购买失败!|"), + (e.language_Tips36 = "|C:0x28ee01&T:上架成功,请至正在出售查看!|"), + (e.language_Tips37 = "|C:0xff7700&T:上架失败!|"), + (e.language_Tips38 = "|C:0x28ee01&T:下架成功,请至领取物品查看!|"), + (e.language_Tips39 = "|C:0xff7700&T:下架失败!|"), + (e.language_Tips40 = "|C:0x28ee01&T:领取成功!|"), + (e.language_Tips41 = "|C:0xff7700&T:领取失败!|"), + (e.language_Tips42 = "|C:0xff7700&T:锁定状态无法添加物品!|"), + (e.language_Tips43 = "|C:0xff7700&T:该物品不可交易!|"), + (e.language_Tips44 = "|C:0xff7700&T:捡取时间未到!|"), + (e.language_Tips45 = "|C:0xff7700&T:正在交易中,不可查找!|"), + (e.language_Tips46 = "|C:0x28ee01&T:祝福星级 +1|"), + (e.language_Tips47 = "|C:0xff7700&T:祝福星级 -1|"), + (e.language_Tips48 = "确定要退出副本吗?"), + (e.language_Tips49 = "|C:0x28ee01&T:膜拜成功|"), + (e.language_Tips50 = "|C:0xff7700&T:膜拜失败|"), + (e.language_Tips51 = "|C:0x28ee01&T:鉴定成功|"), + (e.language_Tips52 = "|C:0xff7700&T:鉴定失败|"), + (e.language_Tips53 = "|C:0xff7700&T:鉴定次数不足|"), + (e.language_Tips54 = "|C:0xff7700&T:鉴定材料不足|"), + (e.language_Tips55 = "|C:0xff7700&T:已达到转生允许的级别上限,无法鉴定|"), + (e.language_Tips56 = "|C:0xff7700&T:多倍经验超过%s,请消耗后再鉴定|"), + (e.language_Tips57 = "|C:0xff7700&T:当前位置无人上榜,不可查看|"), + (e.language_Tips58 = "|C:0xff7700&T:%s不足|"), + (e.language_Tips59 = "|C:0xff7700&T:新手任务传送失败|"), + (e.language_Tips60 = "|C:0x28ee01&T:传送成功,主线任务传送不消耗飞鞋|"), + (e.language_Tips61 = "|C:0xff7700&T:需要在安全区才能进入副本|"), + (e.language_Tips62 = "|C:0xff7700&T:不是活动时间或已关闭进入|"), + (e.language_Tips63 = "|C:0xff7700&T:您不满足进入此系统的条件|"), + (e.language_Tips64 = ""), + (e.language_Tips65 = "|C:0xff7700&T:次数不足|"), + (e.language_Tips66 = "|C:0xff7700&T:金币或元宝不足|"), + (e.language_Tips67 = "|C:0xff7700&T:扣除失败|"), + (e.language_Tips68 = "|C:0xff7700&T:不能操作(不在世界boss 副本)|"), + (e.language_Tips69 = "|C:0xff7700&T:等级或转生不符|"), + (e.language_Tips70 = "|C:0xff7700&T:该活动开服第%s天开启|"), + (e.language_Tips71 = "|C:0xff7700&T:请先输入新名字|"), + (e.language_Tips72 = "|C:0xff7700&T:背包剩余格数不足|"), + (e.language_Tips73 = "|C:0xff7700&T:请先选择奖励|"), + (e.language_Tips74 = "|C:0x318704&T:%s被发现|"), + (e.language_Tips75 = "|C:0x28ee01&T:共鸣%s阶已激活|"), + (e.language_Tips76 = "|C:0xff7700&T:共鸣%s阶失效|"), + (e.language_Tips77 = "|C:0x28ee01&T:强化成功|"), + (e.language_Tips78 = "|C:0xff7700&T:任务已完成|"), + (e.language_Tips79 = "|C:0xff7700&T:没有接取该任务|"), + (e.language_Tips80 = "|C:0xff7700&T:该地图不允许挂机|"), + (e.language_Tips81 = "|C:0xff7700&T:限制等级,转生,开服天数条件不满足|"), + (e.language_Tips82 = "|C:0xff7700&T:任务状态错误|"), + (e.language_Tips83 = "|C:0xff7700&T:配置错误|"), + (e.language_Tips84 = "|C:0xff7700&T:不存在该条数据|"), + (e.language_Tips85 = "|C:0xff7700&T:已达最大等级|"), + (e.language_Tips86 = "|C:0xff7700&T:任务等级未达到|"), + (e.language_Tips87 = "|C:0xff7700&T:道具不足|"), + (e.language_Tips88 = "|C:0xff7700&T:已达当前等级强化上限,%s级后继续强化|"), + (e.language_Tips89 = "|C:0xff7700&T:数据异常|"), + (e.language_Tips90 = "|C:0xff7700&T:今日抽奖次数已达上限|"), + (e.language_Tips91 = "|C:0xff7700&T:元宝不足|"), + (e.language_Tips92 = "|C:0xff7700&T:需要在安全区才能进行扫荡|"), + (e.language_Tips93 = "本次任务:在|C:0xff7700&T:%s|驻守|C:0x28ee01&T:%s|分钟\n|C:0xe50000&T:注意:驻守期间离开地图、离线、角色死亡则任务失败。完成任务后自动回到安全区。|"), + (e.language_Tips94 = "|C:0xff7700&T:使用YY游戏大厅登录游戏才能领取|"), + (e.language_Tips95 = "|C:0xff7700&T:您的超玩会员等级不足,请升级|"), + (e.language_Tips96 = "|C:0xff7700&T:时装没有激活|"), + (e.language_Tips97 = "|C:0xff7700&T:数据错误|"), + (e.language_Tips98 = "|C:0xff7700&T:当前时装已达满级!|"), + (e.language_Tips99 = "|C:0xff7700&T:已激活|"), + (e.language_Tips100 = "|C:0xff7700&T:礼包已被领取|"), + (e.language_Tips101 = "|C:0xff7700&T:您的超玩会员等级不足,请升级|"), + (e.language_Tips102 = "|C:0xff7700&T:死亡状态不能进入副本|"), + (e.language_Tips103 = "|C:0xff7700&T:死亡状态不能使用飞鞋|"), + (e.language_Tips104 = "|C:0xff7700&T:购买失败,元宝不足|"), + (e.language_Tips105 = "|C:0xff7700&T:状态切换冷却中,请稍后再试!|"), + (e.language_Tips106 = "|C:0xff7700&T:当前已经在副本中|"), + (e.language_Tips107 = "|C:0xff7700&T:完成首充开启专属挂机地图|"), + (e.language_Tips108 = "|C:0xff7700&T:该传送功能尚未开放|"), + (e.language_Tips109 = "|C:0xff7700&T:飞鞋点数不足|"), + (e.language_Tips110 = "|C:0xff7700&T:该地图不可以使用%s|"), + (e.language_Tips111 = "物品来源"), + (e.language_Tips112 = "地图:"), + (e.language_Tips113 = "怪物:"), + (e.language_Tips114 = "击杀:"), + (e.language_Tips115 = "时间:"), + (e.language_Tips116 = "来源:夺宝"), + (e.language_Tips117 = "来源:合成制造"), + (e.language_Tips118 = "|C:0xff7700&T:该地图禁止查看他人信息|"), + (e.language_Tips119 = "|C:0xff7700&T:等级或转生不足|"), + (e.language_Tips120 = "|C:0xff7700&T:该地图禁止查看排行榜|"), + (e.language_Tips121 = "|C:0xff7700&T:当前地图无法寻路|"), + (e.language_Tips122 = "|C:0xff7700&T:关闭自动PK|"), + (e.language_Tips123 = "|C:0xff7700&T:达到%s转或%s会员才能给对方道具|"), + (e.language_Tips124 = "|C:0xff7700&T:已经领取过了微信礼包了|"), + (e.language_Tips125 = "|C:0xff7700&T:请先领取手机礼包与认证礼包|"), + (e.language_Tips126 = "|C:0xff7700&T:登录天数不足|"), + (e.language_Tips127 = "|C:0xff7700&T:使用QQ游戏大厅登录游戏才能领取|"), + (e.language_Tips128 = "|C:0xff7700&T:使用QQ游戏大厅登录游戏才能领取|"), + (e.language_Tips129 = "开通蓝钻豪华版即可领取本礼包"), + (e.language_Tips130 = "升级蓝钻豪华版即可领取本礼包"), + (e.language_Tips131 = "一次性开通12个月或分次凑够12个月的蓝钻,\n就能立即成为年费蓝钻,领取礼包"), + (e.language_Tips132 = "初阶秘籍*5,祝福油*5,飞行点数*20,绑定金币*50000"), + (e.language_Tips133 = "双击空地关闭自动挂机"), + (e.language_Tips134 = "|C:0xff7700&T:开服天数不足%s天,无法进行转生|"), + (e.language_Tips135 = "|C:0xff7700&T:未激活特权:智能回收|"), + (e.language_Tips136 = "|C:0xe5ddcf&T:还差点元宝,充点零花钱玩玩!|"), + (e.language_Tips137 = "|C:0xff7700&T:请先开通%s会员特权|"), + (e.language_Tips138 = "|C:0xe50000&T:跨服服务器连接失败!|"), + (e.language_Tips139 = "跨服期间该系统暂不开放"), + (e.language_Tips140 = ["转生未达到6转,无法参加跨服活动", "开服天数未达到32天,无法参加跨服活动"]), + (e.language_Tips141 = "所有奖励回到原服时邮件发放"), + (e.language_Tips142 = "|C:0xff7700&T:当前积分不足%s分|"), + (e.language_Tips143 = "|C:0xff7700&T:等级要求为0-999级|"), + (e.language_Tips144 = "|C:0xff7700&T:编辑公告最多不能超过255个字|"), + (e.language_Tips145 = "双击自动智能PK"), + (e.language_Tips146 = "|C:0xff7700&T:本人是归属者无法攻击|"), + (e.language_Tips147 = "|C:0xff7700&T:暂时没有归属者,请攻击首领|"), + (e.language_Tips148 = "|C:0xff7700&T:已达到最大会员等级|"), + (e.language_Tips149 = "|C:0xff7700&T:手机端无法复制链接|"), + (e.language_Tips150 = "|C:0xff7700&T:不在同一张地图,无法寻路|"), + (e.language_Tips151 = "|C:0xff7700&T:内容存在敏感字符,请重新输入|"), + (e.language_Tips152 = "已经领取过了手机礼包了"), + (e.language_Tips153 = "已经领取过了该礼包"), + (e.language_Tips154 = "|C:0xff7700&T:等级不足,无法领取奖励|"), + (e.language_Tips155 = "|C:0xff7700&T:通过大厅登录可领取奖励|"), + (e.language_Tips156 = "|C:0xff7700&T:登录天数不足,无法领取奖励|"), + (e.language_Tips157 = "复制成功"), + (e.language_Tips158 = "|C:0xff7700&T:您已被禁言,请稍后再试|"), + (e.language_Tips159 = "|C:0xff7700&T:需要PC和手机端(安卓或IOS)都登录过才能领取奖励哦~|"), + (e.language_Tips160 = "|C:0xff7700&T:通过盒子登陆才能领取哦|"), + (e.language_Tips161 = "|C:0xff7700&T:会员等级不足,无法领取奖励|"), + (e.language_Tips162 = "|C:0xff7700&T:累计在线时长不足|"), + (e.language_Tips163 = "该区不可交易"), + (e.language_Chat_Show_Tips0 = "|C:0x28ee01&T:查看全部频道|"), + (e.language_Chat_Show_Tips1 = "|C:0x28ee01&T:查看世界频道|"), + (e.language_Chat_Show_Tips2 = "|C:0x28ee01&T:查看行会频道|"), + (e.language_Chat_Show_Tips3 = "|C:0x28ee01&T:查看组队频道|"), + (e.language_Chat_Show_Tips4 = "|C:0x28ee01&T:查看私聊频道|"), + (e.language_Chat_Show_Tips5 = "|C:0x28ee01&T:查看个人频道|"), + (e.language_Chat_Show_Tips6 = "|C:0x28ee01&T:查看系统频道|"), + (e.language_Chat_ShowSetCloseNear_Tips = "|C:0xF3311E&T:拒绝接收附近聊天信息|"), + (e.language_Chat_ShowSetCloseGuild_Tips = "|C:0xF3311E&T:拒绝接收行会聊天信息|"), + (e.language_Chat_ShowSetClosePrivate_Tips = "|C:0xF3311E&T:拒绝接收私聊信息|"), + (e.language_Chat_ShowSetOpenNear_Tips = "|C:0x28ee01&T:允许接收附近聊天信息|"), + (e.language_Chat_ShowSetOpenGuild_Tips = "|C:0x28ee01&T:允许接收行会聊天信息|"), + (e.language_Chat_ShowSetOpenPrivate_Tips = "|C:0x28ee01&T:允许接收私聊信息|"), + (e.language_Chat_ShowInput_Tips = "点击输入聊天内容"), + (e.language_Chat_WinTabar_List = [ + { + name: "全部", + }, + { + name: "世界", + }, + { + name: "行会", + }, + { + name: "组队", + }, + { + name: "私聊", + }, + { + name: "个人", + }, + { + name: "系统", + }, + ]), + (e.language_Chat_Tabar_List = ["全部", "世界", "附近", "行会", "组队", "私聊", "个人"]), + (e.language_Chat_Menu_List = ["世 界", "附 近", "行 会", "组 队", "私 聊"]), + (e.language_Chat_Stretch_Little = "收起"), + (e.language_Chat_Stretch_Big = "展开"), + (e.language_Chat_ChatInput_OverLen = "|C:0xF3311E&T:发言文字过长|"), + (e.language_Chat_Set_Text = "(点击设置)"), + (e.language_Chat_Enter_Name_Text = "请输入对方名字:"), + (e.language_Chat_Name_List_Text = "<猜你要选>"), + (e.language_Chat_Personal_Text = "您获得了:"), + (e.language_Chat_Text0 = "私 聊"), + (e.language_Fashion_TabBar_Text = ["sz_tab_t1", "sz_tab_t2", "发型", "特殊"]), + (e.language_ATTROBJ = { + 0: "未定义属性", + 1: "血增加", + 2: "当前血回复比率", + 3: "当前蓝回复量", + 4: "当前蓝回复比率", + 5: "体力上限", + 6: "体力加成", + 7: "魔力上限", + 8: "最大蓝倍率增加", + 9: "物攻下限", + 10: "最小物理攻击倍率增加", + 11: "物攻上限", + 12: "最大物理攻击倍率增加", + 13: "魔法下限", + 14: "最小魔法攻击倍率增加", + 15: "魔法上限", + 16: "最大魔法攻击倍率增加", + 17: "道术下限", + 18: "最小道术攻击倍率增加", + 19: "道术上限", + 20: "最大道术攻击倍率增加", + 21: "物防下限", + 22: "最小物理防御倍率增加", + 23: "物防上限", + 24: "最大物理防御倍率增加", + 25: "魔御下限", + 26: "最小魔法防御倍率增加", + 27: "魔御上限", + 28: "最大魔法防御倍率增加", + 29: "物理命中", + 30: "准确倍率增加", + 31: "物理闪避", + 32: "敏捷倍率增加", + 33: "魔法命中", + 34: "魔法命中倍率增加", + 35: "魔法躲避", + 36: "魔法闪避倍率增加", + 37: "毒物闪避增加", + 38: "毒物闪避倍率增加", + 39: "生命恢复增加", + 40: "生命恢复倍率增加", + 41: "魔法恢复增加", + 42: "魔法恢复倍率增加", + 43: "毒物恢复增加", + 44: "毒物恢复倍率增加", + 45: "幸运", + 46: "幸运倍率增加", + 47: "生命回复", + 48: "诅咒倍率增加", + 49: "魔法回复", + 50: "移动速度倍率增加", + 51: "攻击速度增加", + 52: "攻击速度倍率增加", + 53: "", + 54: "伤害减免", + 55: "麻痹,不可移动,不可释放技能", + 56: "经验增加一个数值", + 57: "复活保护状态", + 58: "隐身", + 59: "打怪经验加成", + 60: "杀戮值(pk值)的增减", + 61: "pk保护状态", + 62: "技能攻击的时候 攻击伤害追加n点", + 63: "增加神圣", + 64: "护身效果", + 65: "麻痹几率", + 66: "抗麻几率", + 67: "麻痹时长", + 68: "麻痹时长减免", + 69: "守护几率", + 70: "切割", + 71: "守护效果", + 72: "挂机地图中", + 73: "死亡以后立刻回复的HP的比例", + 74: "新手保护", + 75: "伤害加成", + 76: "全职业攻击下限", + 77: "全职业攻击上限", + 78: "坐骑最小物理防御增加", + 79: "吸血", + 80: "攻魔道加成", + 81: "双防加成", + 82: "无视双防", + 83: "攻速", + 84: "PK伤害减免", + 85: "灵刃CD", + 86: "灵刃回复率", + 87: "灵刃回复值", + 88: "剧毒几率", + 89: "剧毒伤害", + 90: "宝石增加的生命的增加", + 91: "冰冻", + 92: "抗火率", + 93: "减少玩家死亡爆装备几率", + 94: "", + 95: "御战", + 96: "百分比降低战士的伤害", + 97: "御法", + 98: "固定比降低法师的伤害", + 99: "御道", + 100: "固定比降低道士的伤害", + 101: "御怪", + 102: "固定比降低怪物的伤害", + 103: "触发伤害减免的几率", + 104: "触发伤害减免的值", + 105: "触发伤害追加的几率", + 106: "触发伤害追加的值", + 107: "触发无视防御几率", + 108: "无视防御的值", + 109: "抵扣伤害", + 110: "破战", + 111: "百分比增加对战士的伤害", + 112: "破法", + 113: "固定比增加对法师的伤害", + 114: "破道", + 115: "固定比增加对道士的伤害", + 116: "破怪", + 117: "固定比增加对怪物的伤害", + 118: "吃药效果减百分率", + 119: "攻击时候附加攻击输出的概率", + 120: "攻击时附加攻击输出的倍率增加", + 121: "伤害反弹概率", + 122: "伤害反弹倍率", + 123: "会心一击附加攻击输出的概率", + 124: "新的变身属性", + 125: "定身,不可移动,可释放技能", + 126: "", + 127: "", + 128: "", + 129: "", + 130: "", + 131: "", + 132: "", + 133: "内劲值上限", + 134: "", + 135: "内劲经验", + 136: "暴击倍率", + 137: "回血回蓝", + 138: "暴击率", + 139: "暴击附加伤害", + 140: "抗暴率", + 141: "药品回复率", + 142: "增加经验buff", + 143: "英雄增加经验倍率buff", + 144: "打怪金币加成", + 145: "半月增伤", + 146: "烈火增伤", + 147: "逐日增伤", + 148: "冰咆哮增伤", + 149: "火雨增伤", + 150: "雷电增伤", + 151: "噬血术增伤", + 152: "火符增伤", + 153: "半月减伤", + 154: "烈火减伤", + 155: "逐日减伤", + 156: "冰咆哮减伤", + 157: "火雨减伤", + 158: "雷电减伤", + 159: "噬血术减伤", + 160: "火符减伤", + }), + (e.language_bless = { + 1: "当前", + 2: "下一级", + 3: "需要祝福值", + }), + (e.language_SetUp_Title = "设 置"), + (e.language_SetUp_Tab0 = "t_sz_jc"), + (e.language_SetUp_Tab1 = "t_sz_wp"), + (e.language_SetUp_Tab2 = "t_sz_yp"), + (e.language_SetUp_Tab3 = "t_sz_bh"), + (e.language_SetUp_Tab4 = "t_sz_gj"), + (e.language_SetUp_Tab5 = "t_sz_xt"), + (e.language_SetUp_Text0 = "通用选项"), + (e.language_SetUp_Btn = "恢复默认"), + (e.language_SetUp_Text1 = "|C:0xf30302&T:人物|显名"), + (e.language_SetUp_Text2 = "|C:0xf30302&T:怪物|显名"), + (e.language_SetUp_Text3 = "称号显示"), + (e.language_SetUp_Text4 = "网络状况"), + (e.language_SetUp_Text5 = "推荐装备"), + (e.language_SetUp_Text6 = "战士技能"), + (e.language_SetUp_Text7 = "自动追击"), + (e.language_SetUp_Text8 = "自动烈火"), + (e.language_SetUp_Text9 = "自动逐日"), + (e.language_SetUp_Text10 = "道士技能"), + (e.language_SetUp_Text11 = "自动神圣战甲"), + (e.language_SetUp_Text12 = "法师技能"), + (e.language_SetUp_Text13 = "自动魔法盾"), + (e.language_SetUp_Text14 = "开启音效"), + (e.language_SetUp_Text15 = "开启背景音乐"), + (e.language_SetUp_Text16 = "系统设置"), + (e.language_SetUp_Text17 = "自动捡取"), + (e.language_SetUp_Text18 = "物品标红"), + (e.language_SetUp_Text19 = "全部自动捡取"), + (e.language_SetUp_Text20 = "全部物品标红"), + (e.language_SetUp_dropDownBtn = "全部"), + (e.language_SetUp_Text21 = "全 部"), + (e.language_SetUp_Text22 = "武 器"), + (e.language_SetUp_Text23 = "防 具"), + (e.language_SetUp_Text24 = "首 饰"), + (e.language_SetUp_Text25 = "消耗品"), + (e.language_SetUp_Text26 = "材 料"), + (e.language_SetUp_Text27 = "其 他"), + (e.language_SetUp_Text28 = "按百分比自动吃药"), + (e.language_SetUp_Text29 = "按血量自动吃药"), + (e.language_SetUp_Text30 = "普通红药"), + (e.language_SetUp_Text31 = "普通蓝药"), + (e.language_SetUp_Text32 = "瞬回红药"), + (e.language_SetUp_Text33 = "瞬回蓝药"), + (e.language_SetUp_Text34 = "物品名称"), + (e.language_SetUp_Text35 = "普通红药 剩余HP 间隔 毫秒"), + (e.language_SetUp_Text36 = "普通蓝药 剩余MP 间隔 毫秒"), + (e.language_SetUp_Text37 = "瞬回红药 剩余HP 间隔 毫秒"), + (e.language_SetUp_Text38 = "瞬回蓝药 剩余MP 间隔 毫秒"), + (e.language_SetUp_Text39 = "角色保护设置"), + (e.language_SetUp_Text40 = " 血量低于"), + (e.language_SetUp_Text41 = "挂机设置"), + (e.language_SetUp_Text42 = " 血量低于 时使用治愈术"), + (e.language_SetUp_Text43 = "优先打满血怪"), + (e.language_SetUp_Text44 = "挂机时不捡取任何物品"), + (e.language_SetUp_Text45 = "捡取挂机物品(物品设置中已勾选“自动捡取”)"), + (e.language_SetUp_Text46 = "挂机使用灵魂火符 |C:0xf30302&T:(需要学习灵魂火符)|"), + (e.language_SetUp_Text47 = "自动召唤神兽"), + (e.language_SetUp_Text48 = "自动噬血术 |C:0xf30302&T:(需要学习噬血术)|"), + (e.language_SetUp_Text49 = "使用雷电术 |C:0xf30302&T:(需要学习雷电术)|"), + (e.language_SetUp_Text50 = "|C:0xf30302&T:触发保护设置:%s|"), + (e.language_SetUp_Text51 = "特权"), + (e.language_SetUp_Text52 = "回收选项"), + (e.language_SetUp_Text53 = "沃玛装备"), + (e.language_SetUp_Text54 = "祖玛装备"), + (e.language_SetUp_Text55 = "洞穴极品"), + (e.language_SetUp_Text56 = "矿洞极品"), + (e.language_SetUp_Text57 = "沃玛极品"), + (e.language_SetUp_Text58 = "40级神装"), + (e.language_SetUp_Text59 = "50级神装"), + (e.language_SetUp_Text60 = "一转神装"), + (e.language_SetUp_Text61 = "场景缩放"), + (e.language_SetUp_Text62 = "反击提示"), + (e.language_SetUp_Text63 = "|C:0xf30302&T:宠物|显示"), + (e.language_SetUp_Text64 = "自动雷霆一击(战) |C:0xf30302&T:(需要学习雷霆一击)|"), + (e.language_SetUp_Text65 = "自动雷霆一击(法) |C:0xf30302&T:(需要学习雷霆一击)|"), + (e.language_SetUp_Text66 = "自动雷霆一击(道) |C:0xf30302&T:(需要学习雷霆一击)|"), + (e.language_SetUp_Text67 = "摇杆操作模式"), + (e.language_SetUp_Text68 = "单摇杆"), + (e.language_SetUp_Text69 = "双摇杆"), + (e.language_Friend_NoGoodFriend_tips = "您现在还没有好友\n快去添加吧"), + (e.language_Friend_NoNear_tips = "附近没有其他玩家\n去别的地方看看吧"), + (e.language_Friend_NoBlackList_tips = "当前未添加玩家进入黑名单"), + (e.language_Friend_NoConcern_tips = "您现在还没有关注别人\n快去添加吧!"), + (e.language_Friend_NoFriend_Apply_tips = "当前无好友申请"), + (e.language_Friend_NoReport_tips = "当前没有战报"), + (e.language_Friend_Menu_List = [ + { + txt: "私聊", + name: "chatBtn", + }, + { + txt: "查看信息", + name: "showInfoBtn", + }, + { + txt: "私人交易", + name: "privateTradeLineBtn", + }, + { + txt: "删除好友", + name: "delFriendBtn", + }, + { + txt: "邀请组队", + name: "inviteTeamBtn", + }, + { + txt: "申请入队", + name: "applyTeamBtn", + }, + { + txt: "添加关注", + name: "addConBtn", + }, + { + txt: "加黑名单", + name: "addBlackBtn", + }, + ]), + (e.language_Friend_Menu_List1 = [ + { + txt: "私聊", + name: "chatBtn", + }, + { + txt: "查看信息", + name: "showInfoBtn", + }, + { + txt: "私人交易", + name: "privateTradeLineBtn", + }, + { + txt: "添加好友", + name: "addFriendBtn", + }, + { + txt: "邀请组队", + name: "inviteTeamBtn", + }, + { + txt: "申请入队", + name: "applyTeamBtn", + }, + { + txt: "添加关注", + name: "addConBtn", + }, + { + txt: "加黑名单", + name: "addBlackBtn", + }, + ]), + (e.language_Friend_Selected_tips = "请选择玩家"), + (e.language_Friend_Add_Friend_tips = "请输入想要添加好友的玩家名字"), + (e.language_Friend_Add_Concern_tips = "请输入想要关注的玩家名字"), + (e.language_Friend_Add_Black_tips = "请输入想要添加黑名单的玩家名字"), + (e.language_Friend_Req_SelectPlay_tips = "请选择玩家"), + (e.language_Friend_Turn_txt = "转"), + (e.language_Friend_Level_txt = "级"), + (e.language_Friend_Txt0 = "角色名"), + (e.language_Friend_Txt1 = "等级"), + (e.language_Friend_Txt2 = "职业"), + (e.language_Friend_Txt3 = "所属行会"), + (e.language_Friend_Txt4 = "显示颜色"), + (e.language_Friend_Txt5 = "性别"), + (e.language_Friend_Txt6 = "日期"), + (e.language_Friend_Txt7 = "当前经验"), + (e.language_Friend_Txt8 = "升级还需"), + (e.language_Friend_Btn_Txt0 = "添 加"), + (e.language_Friend_Btn_Txt1 = "操 作"), + (e.language_Friend_Btn_Txt2 = e.language_Friend_Btn_Txt1), + (e.language_Friend_Btn_Txt3 = "设置颜色"), + (e.language_Friend_Btn_Txt4 = "添加关注"), + (e.language_Friend_Btn_Txt5 = "取消关注"), + (e.language_Friend_Btn_Txt6 = e.language_Friend_Btn_Txt0), + (e.language_Friend_Btn_Txt7 = "删 除"), + (e.language_Friend_Btn_Txt8 = "全部接受"), + (e.language_Friend_Btn_Txt9 = "接 受"), + (e.language_Friend_Btn_Txt10 = "拒 绝"), + (e.language_Friend_Btn_Txt11 = e.language_Friend_Btn_Txt1), + (e.language_Team_NoTeam_tips = "您现在还没有队伍"), + (e.language_Team_NearNoTeamList_tips = "当前附近没有队伍"), + (e.language_Team_NoOnlineFriendList_tips = "当前没有好友在线"), + (e.language_Team_ExitTeam_tips = "您确定要退出队伍吗?"), + (e.language_Team_LeaderKickExitTeam_tips_0 = "您确定要求 "), + (e.language_Team_LeaderKickExitTeam_tips_1 = " 离开队伍吗?"), + (e.language_Team_LeaderinviteJonTeam_tips_0 = "您确定邀请 "), + (e.language_Team_LeaderinviteJonTeam_tips_1 = " 加入队伍吗?"), + (e.language_Team_ApplyAddTeam_tips_0 = "您确定申请加入 "), + (e.language_Team_ApplyAddTeam_tips_1 = " 的队伍吗?"), + (e.language_Team_ReqAddTeam_tips = " 请求加入您的队伍,是否同意?"), + (e.Language_Team_Text0 = ["角色名", "等级", "职业", "所在地图"]), + (e.Language_Team_Text1 = ["角色名", "等级", "职业", "所属行会"]), + (e.Language_Team_Text2 = ["队长名", "等级", "成员人数", "队长行会"]), + (e.Language_Team_Text3 = "允许组队"), + (e.Language_Team_Btn_Text0 = "踢出队伍"), + (e.Language_Team_Btn_Text1 = "添 加"), + (e.Language_Team_Btn_Text2 = "退出队伍"), + (e.Language_Team_Btn_Text3 = "操 作"), + (e.Language_Team_Btn_Text4 = "申请入队"), + (e.Language_Team_Btn_Text5 = "邀请入队"), + (e.language_Team_Add_Team_Text = "请输入想要邀请入队的玩家名字"), + (e.language_Guild_Tar_txt = ["行会"]), + (e.language_Guild_Opt_tar_txt = [ + { + name: "行会信息", + }, + { + name: "行会管理", + }, + { + name: "成员列表", + }, + { + name: "入会审批", + }, + { + name: "行会列表", + }, + { + name: "行会商店", + }, + ]), + (e.language_Guild_Approve_txt = "|C:0xF6AF41&T:需要审批|"), + (e.language_Guild_No_Approve_txt = "|C:0x0fee27&T:不需要审批|"), + (e.language_Guild_Jobs_txt = ["成员", "|C:0x0fee27&T:精英|", "|C:0x3389ff&T:长老|", "|C:0xff22ed&T:副会长|", "|C:0xf1ed02&T:会长|"]), + (e.language_Guild_Jobs_Log_txt = ["成员", "精英", "长老", "副会长", "会长"]), + (e.language_Guild_Exit_txt = "是否确定退出行会,退出后贡献值不会清零!"), + (e.language_Guild_Del_txt = "是否确定解散行会?"), + (e.language_Guild_Apply_State_txt = "已申请"), + (e.language_Guild_Apply_State_txt1 = "申请"), + (e.language_Guild_Apply_Fail_txt = "已发送"), + (e.language_Guild_Apply_Level_Fail_txt = "等级不足"), + (e.language_Guild_Apply_Level_Fail1_txt = "级无法加入行会!"), + (e.language_Guild_Btn_Exit_txt = "退出行会"), + (e.language_Guild_Btn_Del_txt = "解散行会"), + (e.language_Guild_Btn_Th_txt = { + txt: "弹劾", + name: "setThBtn", + }), + (e.language_Guild_Btn_Setvice_txt = { + txt: "设副会长", + name: "setViceBtn", + }), + (e.language_Guild_Btn_Delvice_txt = { + txt: "撤副会长", + name: "delViceBtn", + }), + (e.language_Guild_Btn_KickGuild_txt = { + txt: "踢出行会", + name: "kickBuildBtn", + }), + (e.language_Guild_Btn_GiveLeaderGuild_txt = { + txt: "禅让会长", + name: "GiveLeaderBuildBtn", + }), + (e.language_Guild_kickRole_txt = "是否确定删除此玩家?"), + (e.language_Guild_GiveLeaderRole_txt = "是否确定将会长禅让给玩家?"), + (e.language_Guild_SetViceRole_txt = "是否确定将此玩家设置为副会长?"), + (e.language_Guild_DelViceRole_txt = "是否确定撤销此玩家副会长职务?"), + (e.language_Guild_ThLeader_txt = "弹劾需要消耗|C:0xf1ed02&T:%s元宝|,请确认是否对%s进行弹劾?"), + (e.language_Guild_CreatGuild_txt = "创建行会"), + (e.language_Guild_DevoteTitle_txt = "捐献物资"), + (e.language_Guild_Devote_txt = ""), + (e.language_Guild_DayNum_txt = "今日次数"), + (e.language_Guild_Shop_Title_txt = "行会商城"), + (e.language_Guild_Edit_Noti_txt = "编辑公告"), + (e.language_Guild_Save_Noti_txt = "保存公告"), + (e.language_Guild_Set_Title_txt = "招贤设置"), + (e.language_Guild_Build_Txt0 = "等级:"), + (e.language_Guild_Build_Txt1 = "决定行会等级"), + (e.language_Guild_Build_Txt2 = "决定其他建筑最高级"), + (e.language_Guild_Build_Txt3 = "增加行会人数上限"), + (e.language_Guild_Build_Txt4 = "需资金:"), + (e.language_Guild_Build_Txt5 = e.language_Guild_Build_Txt0), + (e.language_Guild_Build_Txt6 = "敬请期待"), + (e.language_Guild_Build_Txt7 = e.language_Guild_Build_Txt4), + (e.language_Guild_Build_Txt8 = e.language_Guild_Build_Txt0), + (e.language_Guild_Build_Txt9 = "增加行会捐献次数"), + (e.language_Guild_Build_Txt10 = "加强行会商店功能"), + (e.language_Guild_Build_Txt11 = e.language_Guild_Build_Txt4), + (e.language_Guild_Build_Txt12 = "行会日志"), + (e.Language_Guild_Btn_Txt = "升 级"), + (e.Language_Guild_Devote_Txt0 = "可获得:"), + (e.Language_Guild_Devote_Txt1 = "资金"), + (e.Language_Guild_Devote_Txt2 = "贡献"), + (e.Language_Guild_Devote_Txt3 = "捐献"), + (e.Language_Guild_Info_Txt0 = "我的职位:"), + (e.Language_Guild_Info_Txt1 = "我的贡献:"), + (e.Language_Guild_Info_Txt2 = "成员数量:"), + (e.Language_Guild_Info_Txt3 = "行会公告"), + (e.Language_Guild_Info_Txt4 = "行会商店"), + (e.Language_Guild_Info_Txt5 = "行会公告"), + (e.Language_Guild_Info_Btn_Txt0 = "设置条件"), + (e.Language_Guild_Info_Btn_Txt1 = "全部同意"), + (e.Language_Guild_Info_Btn_Txt2 = "全部拒绝"), + (e.Language_Guild_Info_Btn_Txt3 = "操作"), + (e.Language_Guild_Member_Txt0 = "贡献度:"), + (e.Language_Guild_Member_Txt1 = "职位:"), + (e.Language_Guild_Member_Txt2 = "上次在线:"), + (e.Language_Guild_Member_Btn_Txt0 = "拒绝"), + (e.Language_Guild_Member_Btn_Txt1 = "同意"), + (e.Language_Guild_Creat_Txt0 = "请输入行会名称"), + (e.Language_Guild_Creat_Txt1 = "消耗元宝:"), + (e.Language_Guild_ListItem_Txt0 = "人数:"), + (e.Language_Guild_ListItem_Txt1 = "等级要求:"), + (e.Language_Guild_ListItem_Txt2 = "宣战"), + (e.Language_Guild_ListItem_Txt3 = "会长:"), + (e.Language_Guild_ListItem_Txt4 = "宣战中"), + (e.Language_Guild_Set_Txt0 = "是否需要审批:"), + (e.Language_Guild_Set_Txt1 = "等级要求:"), + (e.Language_Guild_Set_Txt2 = "是"), + (e.Language_Guild_Set_Txt3 = "否"), + (e.Language_Guild_Set_Txt4 = e.language_Common_1), + (e.Language_Guild_OneKeyApply = "一键申请"), + (e.Language_Guild_Vip = [ + "", + "|C:0xe5ddcf&T:白|卡特权才可以创建行会", + "|C:0x28ee01&T:绿|卡特权才可以创建行会", + "|C:0x0066ff&T:蓝|卡特权才可以创建行会", + "|C:0x7d21d9&T:紫|卡特权才可以创建行会", + "|C:0xff7700&T:橙|卡特权才可以创建行会", + "|C:0xff7700&T&T:橙星|特权才可以创建行会", + "|C:0xff7700&T&T:橙月|特权才可以创建行会", + ]), + (e.language_Shop_Opt_tar_txt = ["热 销", "限 时", "折 扣"]), + (e.language_Shop_Buy_Item_txt = "花费"), + (e.language_Shop_Txt0 = "当前拥有:"), + (e.language_Shop_NotShop_Txt = "当前没有任何商品"), + (e.language_Shop_Limit_Txt = "|C:0xff7700&T:已达到每日次数上限!|"), + (e.language_Rule_Title = "规则说明"), + (e.language_Delay = "延迟"), + (e.language_Transmit = "移动传送"), + (e.language_TransmitConsume = "是否消耗%s传送?"), + (e.language_NPC1 = "|C:0xff7700&T:传送需要等级达到%s级|"), + (e.language_NPC2 = "|C:0xff7700&T:传送需要转生达到%s转|"), + (e.language_NPC3 = "|C:0xff7700&T:传送开服第%s天开启|"), + (e.language_Meridians_NeedLevel_text = "需要等级:"), + (e.language_Meridians_OpenDay_text = "开服天数:"), + (e.language_Meridians_CostExp_text = "消耗经验:"), + (e.language_Meridians_CostBindcoin_text = "消耗绑金:"), + (e.language_Meridians_CostGoods_text = "消耗物品:"), + (e.language_Meridians_CostCircleLevel_text = "需要转生:"), + (e.language_Meridians_Up_text1 = "突破"), + (e.language_Meridians_Up_text0 = "冲穴"), + (e.language_Meridians_Max_Lv = "内功已达最大等级"), + (e.language_WashRedName_text1 = "突破"), + (e.language_WashRedName_text2 = "清除"), + (e.language_WashRedName_text3 = "PK值"), + (e.language_WashRedName_text4 = "无限"), + (e.language_Wash_txt0 = "费用"), + (e.language_Achievement_TabText = ["成 就", "勋 章"]), + (e.language_Achievement_GetText = "领取"), + (e.language_Achievement_TxtGift = "可获得奖励:"), + (e.language_Achievement_Txtpro = "进度:"), + (e.language_Achievement_TxtPopularity = "我的声望点数:"), + (e.language_Achievement_TxtCurAtt = "当前属性"), + (e.language_Achievement_TxtNextAtt = "下级属性"), + (e.language_Achievement_ShowText = "查看"), + (e.language_Achievement_Title = "成就奖励"), + (e.language_Achievement_GetGiftFail = "成就奖励领取失败"), + (e.language_Achieve_Medal_NeedLevel_text = "等级达到%s级"), + (e.language_Achieve_Medal_OpenDay_text = "开服天数达到%s天"), + (e.language_Achieve_Medal_CostCircleLevel_text = "转生等级达到%s级"), + (e.language_Achieve_Medal_CostFinishAch_text = "完成成就:"), + (e.language_Achieve_Medal_MaxLevel_text = "已满级"), + (e.language_FuBen_Text1 = "积分排行"), + (e.language_FuBen_Text2 = "查看排名"), + (e.language_FuBen_Text3 = "我的积分"), + (e.language_FuBen_Text4 = "积分排名"), + (e.language_FuBen_Text5 = "排名奖励"), + (e.language_FuBen_Text6 = "积分奖励"), + (e.language_FuBen_Text7 = "我的排名:"), + (e.language_FuBen_Text8 = "积分"), + (e.language_FuBen_Text9 = "奖励"), + (e.language_FuBen_Text10 = "排名"), + (e.language_FuBen_Text11 = ""), + (e.language_FuBen_Text12 = "已击败:"), + (e.language_FuBen_Text15 = "击杀奖励"), + (e.language_FuBen_Text16 = "沙巴克"), + (e.language_FuBen_Text17 = "神装BOSS次数:"), + (e.language_FuBen_Text18 = "开放"), + (e.language_Player_Text1 = "创建角色"), + (e.language_Player_Text2 = "切换角色"), + (e.language_Player_Text3 = "行会:"), + (e.language_Pay_Text1 = ""), + (e.language_Pay_Text2 = ""), + (e.language_Pay_Text3 = "|C:0xF6883A&T:累计充值%s元宝|"), + (e.language_Pay_Text4 = "|C:0xF6883A&T:限购:%s/%s|"), + (e.language_Pay_Text5 = "购 买"), + (e.language_Pay_Text6 = "任意购买"), + (e.language_Pay_Text7 = "活动剩余时间:"), + (e.language_FourImages_MaxText = "已达满阶"), + (e.language_FourImages_Text0 = "需要四象神兽都达到%s才能升阶"), + (e.language_FourImages_Text1 = "青龙之魂"), + (e.language_FourImages_Text2 = "白虎之魂"), + (e.language_FourImages_Text3 = "朱雀之魂"), + (e.language_FourImages_Text4 = "玄武之魂"), + (e.language_FourImages_Title_Text1 = "青龙"), + (e.language_FourImages_Title_Text2 = "白虎"), + (e.language_FourImages_Title_Text3 = "朱雀"), + (e.language_FourImages_Title_Text4 = "玄武"), + (e.language_FourImages_Tips1 = "|C:0x3794fb&T:破怪:攻击时增加对怪物的伤害值\n御怪:受击时减少来自怪物的伤害值|"), + (e.language_FourImages_Tips2 = "|C:0x3794fb&T:破道:攻击时增加对道士职业的伤害值\n御道:受击时减少来自道士职业的伤害值|"), + (e.language_FourImages_Tips3 = "|C:0x3794fb&T:破法:攻击时增加对法师职业的伤害值\n御法:受击时减少来自法师职业的伤害值|"), + (e.language_FourImages_Tips4 = "|C:0x3794fb&T:破战:攻击时增加对战士职业的伤害值\n御战:受击时减少来自战士职业的伤害值|"), + (e.language_WordFormula_MaxText = "已达满阶"), + (e.language_WordFormula_Text0 = "需要天下无双都达到%s才能升阶"), + (e.language_WordFormula_names = ["天字诀", "下字诀", "无字诀", "双字诀"]), + (e.language_Wlelfare_Text1 = "未达标"), + (e.language_Wlelfare_Text2 = "领取奖励"), + (e.language_Wlelfare_Text3 = "签到"), + (e.language_Wlelfare_Text4 = [ + "该激活码兑换成功,请邮件查收!", + "|C:0xff7700&T:该激活码已被使用,请邮件查看|", + "|C:0xff7700&T:激活码不存在|", + "|C:0xff7700&T:已使用过同类型|", + "|C:0xff7700&T:SQL查询错误|", + "|C:0xff7700&T:未到使用时间|", + "|C:0xff7700&T:礼包码过期了|", + "", + "", + "", + "", + "|C:0xff7700&T:HTTP接口错误|", + "|C:0xff7700&T:非本平台礼包码|", + "|C:0xff7700&T:已使用过同类型激活码|", + ]), + (e.language_Wlelfare_Text5 = "次"), + (e.language_Wlelfare_Text6 = "已购买"), + (e.language_Wlelfare_Text7 = "已领取"), + (e.language_War_Text0 = ["奖励", "任务", "商店"]), + (e.language_War_Text1 = ["每日任务", "每日挑战", "活动达人", "斩妖除魔"]), + (e.language_War_Text2 = "奖励进阶"), + (e.language_War_Text3 = "购买%s级可以获得以下奖励!"), + (e.language_War_Text4 = "购买%s级可提升至%s级!"), + (e.language_War_Text5 = "每日任务积分上限!"), + (e.language_War_Text6 = "每日挑战积分上限!"), + (e.language_War_Text7 = "本期活动达人积分上限!"), + (e.language_War_Text8 = "本期斩妖除魔积分上限!"), + (e.language_War_Text9 = "积分获取达到上限!"), + (e.language_War_Text10 = "至尊凭证奖励"), + (e.language_War_Text11 = "购买至尊凭证可以直接获得以下所有奖励!"), + (e.language_War_Text12 = "|C:0xff7700&T:暂无奖励可领取|"), + (e.language_War_Text13 = "|C:0xff7700&T:需要%s级才可以购买战令等级|"), + (e.language_War_Text14 = "黄金凭证奖励"), + (e.language_War_Text15 = "购买等级"), + (e.language_War_Text16 = "是否提交"), + (e.language_War_Text17 = "玛法战令"), + (e.language_War_Text18 = "前往"), + (e.language_War_Text19 = "已完成"), + (e.language_War_Text20 = "|C:0xff7700&T:%s数量不足|"), + (e.language_War_Text21 = "开服第%s天才开启该任务,请耐心等待。"), + (e.language_War_Text22 = "当前已满级!"), + (e.language_Refining_Text1 = ["已装备", "背包"]), + (e.language_Refining_Text2 = "/个替换"), + (e.language_Refining_Text3 = "查看详情"), + (e.language_Refining_Text4 = "您确认替换当前洗炼属性吗?"), + (e.language_Refining_Text5 = "|C:0xff7700&T:洗炼失败|"), + (e.language_Refining_Text6 = "洗炼成功"), + (e.language_UpStar_Text1 = ["已装备"]), + (e.language_UpStar_Text2 = "/个替换"), + (e.language_UpStar_Text3 = "查看详情"), + (e.language_UpStar_Text4 = "您确认替换当前洗炼属性吗?"), + (e.language_UpStar_Text5 = "|C:0xff7700&T:洗炼失败|"), + (e.language_UpStar_Text6 = "洗炼成功"), + (e.language_Omission_txt1 = "需要等级:"), + (e.language_Omission_txt2 = "需要转生:"), + (e.language_Omission_txt3 = "消耗绑金:"), + (e.language_Omission_txt4 = "消耗"), + (e.language_Omission_txt5 = "获得道具"), + (e.language_Omission_txt6 = "未学习"), + (e.language_Omission_txt7 = "设"), + (e.language_Omission_txt8 = "升 级"), + (e.language_Omission_txt9 = "|C:0xFFFFFF&T:为技能||C:0xFFF000&T:%s||C:0xFFFFFF&T:设置快捷键"), + (e.language_Omission_txt10 = "使用"), + (e.language_Omission_txt11 = "兑换"), + (e.language_Omission_txt12 = "|C:0xF4D1A4&T:修为"), + (e.language_Omission_txt13 = "当前转生等级:"), + (e.language_Omission_txt14 = "转生已达最大等级"), + (e.language_Omission_txt15 = "转生修为:"), + (e.language_Omission_txt16 = "0转玩家数:已完成"), + (e.language_Omission_txt17 = "转玩家数:"), + (e.language_Omission_txt18 = "祝福星级:"), + (e.language_Omission_txt19 = "祝福值"), + (e.language_Omission_txt20 = "每天0点自动回收"), + (e.language_Omission_txt21 = "是否删除好友:|C:0x3073D2&T:%s"), + (e.language_Omission_txt22 = "我的排名:未开启"), + (e.language_Omission_txt23 = "我的排名:未上榜"), + (e.language_Omission_txt24 = "当前祝福值:"), + (e.language_Omission_txt25 = "系统邮件"), + (e.language_Omission_txt26 = "已刷新"), + (e.language_Omission_txt27 = "刷新时间:"), + (e.language_Omission_txt28 = "怪物血量:"), + (e.language_Omission_txt29 = "今日快捷挑战次数:"), + (e.language_Omission_txt30 = "增加|C:0x28ee01&T:"), + (e.language_Omission_txt31 = "经验兑换:消耗|C:0x28ee01&T:"), + (e.language_Omission_txt32 = "|C:0xF4D1A4&T:经验|"), + (e.language_Omission_txt33 = "经验兑换:消耗|C:0xe50000&T:"), + (e.language_Omission_txt34 = "回收积分:消耗"), + (e.language_Omission_txt35 = "今日剩余:"), + (e.language_Omission_txt36 = "展 示"), + (e.language_Omission_txt37 = "不展示"), + (e.language_Omission_txt38 = "|C:0xEDE6D3&T:击杀%s只开启下一档BOSS|"), + (e.language_Omission_txt39 = "|C:0xF1ED02&T:下一级"), + (e.language_Omission_txt40 = "|C:0xF1ED02&T:已满级"), + (e.language_Omission_txt41 = "|C:0xe98c54&T:级别未满"), + (e.language_Omission_txt42 = "强 化"), + (e.language_Omission_txt43 = [ + ["qh_icon_wuqi", "武器"], + ["qh_icon_yifu", "衣服"], + ["qh_icon_yaodai", "腰带"], + ["qh_icon_xiezi", "鞋子"], + ["qh_icon_jiezhi", "戒指"], + ["qh_icon_huwan", "护腕"], + ["qh_icon_xianglian", "项链"], + ["qh_icon_toukui", "头盔"], + ]), + (e.language_Omission_txt44 = "激 活"), + (e.language_Omission_txt45 = "转生成功后等级下降|C:0xe50000&T: %s| 级"), + (e.language_Omission_txt46 = "自动泡点中..."), + (e.language_Omission_txt47 = "|C:0xe50000&T:你已被石化|"), + (e.language_Omission_txt48 = "赞助|C:0xf1ed02&T: %s%s|激活永久|C:%s&T:%s会员|"), + (e.language_Omission_txt49 = "任意回收"), + (e.language_Omission_txt50 = "回收可得"), + (e.language_Omission_txt51 = "|C:0x28ee01&T:回收成功!|"), + (e.language_Omission_txt52 = "倒计时:"), + (e.language_Omission_txt53 = "赞助|C:0xf1ed02&T: %s%s|或|C:0xf1ed02&T: %s%s|激活永久|C:%s&T:%s会员|"), + (e.language_Omission_txt54 = "|C:0xff7700&T:未激活特权:智能回收|"), + (e.language_Omission_txt55 = "金币回收"), + (e.language_Omission_txt56 = "毫秒"), + (e.language_Omission_txt57 = "|C:0xff7700&T:银两不足|"), + (e.language_Omission_txt58 = "祝福"), + (e.language_GrowWay_txt0 = "成长之路"), + (e.language_Omission_txt59 = "当前等级:"), + (e.language_Omission_txt60 = "下一等级:"), + (e.language_Omission_txt61 = "已激活套装属性:共鸣%s阶"), + (e.language_Omission_txt62 = "未加入行会"), + (e.language_Omission_txt63 = "当前行会非沙巴克行会"), + (e.language_Omission_txt64 = "当前职位没有奖励"), + (e.language_Omission_txt65 = "奖励已领取"), + (e.language_Omission_txt66 = "活动进行中,不能领取"), + (e.language_Omission_txt67 = "|C:0x28ee01&T:升星成功|"), + (e.language_Omission_txt68 = "|C:0xff7700&T:当前位置无法升星|"), + (e.language_Omission_txt69 = "|C:0xff7700&T:当前已是最大星级|"), + (e.language_Omission_txt70 = "|C:0xff7700&T:转生已达最大等级|"), + (e.language_Omission_txt71 = "|C:0xff7700&T:该功能只对角色目标生效|"), + (e.language_Omission_txt72 = "|C:0xff7700&T:您已开启狂暴状态|"), + (e.language_Omission_txt73 = "|C:0x28ee01&T:开启成功|"), + (e.language_Omission_txt74 = "开启狂暴"), + (e.language_Omission_txt75 = "狂暴介绍"), + (e.language_Omission_txt76 = "狂暴状态"), + (e.language_Omission_txt77 = "已开启"), + (e.language_Omission_txt78 = "未开启"), + (e.language_Omission_txt79 = "当前狂暴状态:"), + (e.language_Omission_txt80 = "|C:0xff7700&T:请选择购买数量|"), + (e.language_Omission_txt81 = "|C:0xff7700&T:配置表错误|"), + (e.language_Omission_txt82 = "价格"), + (e.language_Omission_txt83 = "拥有"), + (e.language_Omission_txt84 = "好友数量"), + (e.language_Omission_txt85 = "在线好友"), + (e.language_Omission_txt86 = "捐献排行榜"), + (e.language_Omission_txt87 = "捐献说明"), + (e.language_Omission_txt88 = "捐献排行"), + (e.language_Omission_txt89 = "暂无"), + (e.language_Omission_txt90 = "未上榜"), + (e.language_Omission_txt91 = "每次捐献元宝数量需要为|C:0x28ee01&T:%s|的倍数"), + (e.language_Omission_txt92 = "每月1号或合区会重置榜单|C:0xe50000&T:(属性奖励重新登录后生效)|"), + (e.language_Omission_txt93 = "我已捐献"), + (e.language_Omission_txt94 = "捐献元宝"), + (e.language_Omission_txt95 = "物攻"), + (e.language_Omission_txt96 = "道术"), + (e.language_Omission_txt97 = "秒后自动回城"), + (e.language_Omission_txt98 = "秒后原地复活"), + (e.language_Omission_txt99 = "秒后场景内复活"), + (e.language_Omission_txt100 = "回城变强"), + (e.language_Omission_txt101 = "绑金"), + (e.language_Omission_txt102 = "材料不足"), + (e.language_Omission_txt103 = "吸血"), + (e.language_Omission_txt104 = "吸血效果"), + (e.language_Omission_txt105 = "主题"), + (e.language_Omission_txt108 = "剩余元宝:"), + (e.language_Omission_txt109 = "沙城行会:"), + (e.language_Omission_txt110 = "沙城争霸将在|C:0x28ee01&T:%s|后开启"), + (e.language_Omission_txt111 = "私聊"), + (e.language_Omission_txt112 = "查看信息"), + (e.language_Omission_txt113 = "删除好友"), + (e.language_Omission_txt114 = "加黑名单"), + (e.language_Omission_txt115 = "强化已达最高等级"), + (e.language_Omission_txt116 = "微信礼包"), + (e.language_Omission_txt117 = "手机礼包"), + (e.language_Omission_txt118 = "认证礼包"), + (e.language_Omission_txt119 = "登录礼包"), + (e.language_Omission_txt120 = "基础经验"), + (e.language_Omission_txt121 = "|C:0x28ee01&T:(%s加成)|"), + (e.language_Omission_txt122 = "单价"), + (e.language_Omission_txt123 = ""), + (e.language_Omission_txt124 = "已被击败!"), + (e.language_Omission_txt125 = "原价"), + (e.language_Omission_txt126 = "现价"), + (e.language_Omission_txt127 = "|C:0xDCB789&T:累计登录第||C:0x1EC605&T:%s||C:0xDCB789&T:天领取"), + (e.language_Omission_txt128 = "本月已签到"), + (e.language_Omission_txt129 = "后刷新"), + (e.language_Omission_txt130 = "你被|C:0xe50000&T:%s%s|在|C:0x0066ff&T:【%s】|击败了!"), + (e.language_Omission_txt131 = "你在|C:0x0066ff&T:%s|击败了|C:0x28ee01&T:%s|!"), + (e.language_Omission_txt132 = "玩家"), + (e.language_Omission_txt133 = "极"), + (e.language_Omission_txt134 = "锻造属性"), + (e.language_Omission_txt135 = "基础属性"), + (e.language_Omission_txt136 = "特殊属性"), + (e.language_Omission_txt137 = "套装属性"), + (e.language_Omission_txt138 = "秒后自动关闭"), + (e.language_Omission_txt139 = "秒后自动穿戴"), + (e.language_Omission_txt140 = "快捷传送要求:"), + (e.language_Omission_txt141 = "加群福利"), + (e.language_Omission_txt142 = "失败会降星哟"), + (e.language_Omission_txt143 = "当前阶数:"), + (e.language_Omission_txt144 = "下一阶数:"), + (e.language_Omission_txt145 = "需要内功等级:"), + (e.language_Omission_txt146 = "内功共鸣"), + (e.language_Omission_txt147 = "使用|C:0xf1ed02&T: %s%s|激活永久|C:%s&T:%s会员|"), + (e.language_Omission_txt148 = "绑定礼包"), + (e.language_Omission_txt149 = "防沉迷礼包"), + (e.language_Omission_txt150 = "vip福利"), + (e.language_Omission_txt151 = "会员福利"), + (e.language_Omission_txt152 = "盒子福利"), + (e.language_Omission_txt153 = "平台vip1-3"), + (e.language_Omission_txt154 = "平台vip4-6"), + (e.language_Omission_txt155 = "平台vip7-9"), + (e.language_Omission_txt156 = "铂金会员及以上"), + (e.language_Omission_txt157 = "钻石会员及以上"), + (e.language_Omission_txt158 = "每日福利"), + (e.language_Omission_txt159 = "下载盒子获得超强BUFF"), + (e.language_Omission_txt160 = + "系统检测到您还没有进行实名制认证,根据国家相关政策规定,网游用户必须进行实名制认证。请您尽快完成实名认证,否则将会影响您的正常游戏体验及收益。现在完成实名认证还可以领取实名礼包。"), + (e.language_Omission_txt161 = "您已完成实名认证,感谢您的配合,点击下方领取按钮即可领取实名认证礼包。"), + (e.language_Omission_txt162 = "三端福利"), + (e.language_Omission_txt163 = "微信福利"), + (e.language_Omission_txt164 = "盒子礼包"), + (e.language_Omission_txt165 = "会员专属称号"), + (e.language_Omission_txt166 = "会员特权"), + (e.language_Omission_txt167 = "白金会员"), + (e.language_Omission_txt168 = "超级会员"), + (e.language_Omission_txt169 = "白金年费会员"), + (e.language_Omission_txt170 = "超级年费会员"), + (e.language_Omission_txt171 = "特权礼包"), + (e.language_Omission_txt172 = "每日礼包"), + (e.language_Omission_txt173 = "暂无会员"), + (e.language_Omission_txt174 = "赞助|C:%s&T:%s会员|"), + (e.language_Ghost_TITLE = "神魔"), + (e.language_Ghost_TABl = "神魔之体"), + (e.language_Ghost_TAB2 = "神魔共鸣"), + (e.language_Ghost_TAB3 = "神魔说明"), + (e.language_Ghost_TAB4 = "神魔保险"), + (e.language_Ghost_DESC = "神魔之体满级10级,成功率40%,成功+1,失败清零!"), + (e.language_Ghost_DESC2 = "当前所有神魔均达|C:0x28ee01&T:%s|级,最高|C:0x28ee01&T:%s|级,额外获得攻魔道上限:|C:0x28ee01&T:+%s|"), + (e.language_Ghost_DESC3 = "Lv.%s"), + (e.language_Ghost_DESC4 = "神魔之体修炼每级消耗均为一颗"), + (e.language_Ghost_DESC5 = "所有神魔条目达标、单个神魔提升更高级,都可获额外攻魔道上限!"), + (e.language_Ghost_DESC6 = "所有神魔条目达标、单个神魔提升更高级,都可获额外攻魔道上限!"), + (e.language_Ghost_DESC7 = "五个神魔全部10级会得到稀有称号!(邮件发放)"), + (e.language_Ghost_DESC8 = "激活称号:"), + (e.language_Ghost_DESC9 = "称号激活属性奖励:"), + (e.language_Ghost_DESC10 = + "|C:0xeee104&T:神魔原几率为40%,为了防止玩家脸黑设定保险机制!|\n每修炼|C:0x28ee01&T:1|次增加|C:0x28ee01&T:5|点祝福值,|C:0x28ee01&T:100|点祝福值提高|C:0x28ee01&T:0.1%|几率!\n积累|C:0x28ee01&T:10000|祝福值则每次升级必定|C:0x28ee01&T:100%|成功!祝福值只增不减"), + (e.language_Ghost_DESC11 = "当前成功率:"), + (e.language_Ghost_DESC12 = "当前神魔总等级:|C:0x28ee01&T:%s级|"), + (e.language_Ghost_DESC13 = "使用元宝代替%s,%s元宝/个"), + (e.language_Ghost_DESC14 = "消耗%s自动修炼神魔之体"), + (e.language_Ghost_Btn = "修 炼"), + (e.language_Ghost_Btn2 = "前往领取"), + (e.language_Ghost_Btn3 = "前往升级"), + (e.language_Ghost_Btn4 = "自动修炼"), + (e.language_Ghost_Btn5 = "取消自动"), + (e.language_Ghost_result = ["最大等级", "时间未到", "等级转生未到", "失败"]), + (e.language_GuanZhi_Label = "当前官职:"), + (e.language_GuanZhi_Label2 = "需要等级:%s转%s级"), + (e.language_SoldierSoul_Text1 = "救主灵刃"), + (e.language_SoldierSoul_Text2 = "剧毒裁决"), + (e.language_SoldierSoul_Text3 = "霜之哀伤"), + (e.language_SoldierSoul_Text4 = "血饮狂刀"), + (e.language_SoldierSoul_MaxText = "已达满级"), + (e.language_VipPrivilege_Title_1 = "|C:0xeee104&T:会员专属特权|"), + (e.language_VipPrivilege_Title_2 = "|C:0xeee104&T:会员专属称号|"), + (e.language_VipPrivilege_Title_3 = "|C:0xeee104&T:会员专属豪礼|"), + (e.language_VipPrivilege_Desc_1 = + "1.每日|C:0x28ee01&T:150|次世界聊天次数\n2.每日|C:0x28ee01&T:25|次摇钱树次数\n3.复活特权:跨服本服所有场景复活等待时间直接|C:0x28ee01&T:减半|(原服世界BOSS、竞技大乱斗、夜战沃玛三等从等待10秒降为5秒,跨服次元BOSS、跨服头领、跨服竞技大乱斗、跨服夜战沃玛三等,从等待12秒降为6秒)\n4.随身仓库格数+42"), + (e.language_VipPrivilege_Desc_2 = + "<橙星会员>称号\n|C:0xe50000&T:全属性加成|,攻魔道|C:0x28ee01&T:+1%|、双防|C:0x28ee01&T:+1%|、体力加成|C:0x28ee01&T:+1%|、伤害加成|C:0x28ee01&T:+1%|、伤害吸收|C:0x28ee01&T:+1%|,效果跨服|C:0xe50000&T:翻倍|"), + (e.language_VipPrivilege_Desc_3 = "|C:0xe50000&T:天之散件自选箱|\n顶级魂玉、勋章、治疗宝玉任意挑"), + (e.language_VipPrivilege_Desc_4 = "|C:0xe50000&T:[特权]复活加速|\n所有场景复活时间立即减半"), + (e.language_VipPrivilege_Desc_5 = "|C:0xff7700&T:血饮狂刀[魄]| |C:0x28ee01&T:*300|\n兵魂血饮狂刀升级、洗炼,升级属性加成跨服翻倍"), + (e.language_VipPrivilege_Desc_6 = "神魔结晶|C:0x28ee01&T:*666|\n神魔升级一次爽"), + (e.language_VipPrivilege_Desc_7 = "多倍经验瓶|C:0x28ee01&T:*100|\n等级大幅提升"), + (e.language_VipPrivilege_Desc_2_1 = "1.每日|C:0x28ee01&T:180|次世界聊天次数\n2.每日|C:0x28ee01&T:25|次摇钱树次数"), + (e.language_VipPrivilege_Desc_2_2 = "<橙月会员>称号\n|C:0xe50000&T:专属称号|,伤害加成|C:0x28ee01&T:+5%|、护身特效(受到伤害掉血用魔法抵消)|C:0x28ee01&T:+5%|"), + (e.language_VipPrivilege_Desc_2_3 = "|C:0xe50000&T:天月神装自选箱|\n顶级神装任意挑"), + (e.language_VipPrivilege_Desc_2_4 = "|C:0xe50000&T:黑夜侠客|\n绝版时装免费领"), + (e.language_VipPrivilege_Desc_2_5 = "|C:0xff7700&T:内功秘籍| |C:0x28ee01&T:*1888|\n内功技能随心修炼"), + (e.language_VipPrivilege_Desc_2_6 = "神魔结晶|C:0x28ee01&T:*666|\n神魔升级一次爽"), + (e.language_VipPrivilege_Desc_2_7 = "玛法宝石|C:0x28ee01&T:*158|\n装备升星,提升战力"); + })((e = t.CrmPU || (t.CrmPU = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.ruleId = 0), (t.titleStr = ""), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.initUI(), this._roleType == t.RoleViewEnum.myRolePanel ? this.initMyRoleView() : this._roleType == t.RoleViewEnum.otherPlayerPanel && this.initOtherPlayerView(); + }), + (i.prototype.open = function (e) { + (this._roleType = e.roleType), + this._roleType == t.RoleViewEnum.myRolePanel + ? (this.roleData = t.NWRFmB.ins().getPayer.propSet) + : this._roleType == t.RoleViewEnum.otherPlayerPanel && t.caJqU.ins().otherPlayerEquips && (this.roleData = t.caJqU.ins().otherPlayerEquips.propSet); + }), + (i.prototype.initUI = function () {}), + (i.prototype.initMyRoleView = function () {}), + (i.prototype.initOtherPlayerView = function () {}), + i + ); + })(t.BaseView); + (t.RoleBasePanel = e), __reflect(e.prototype, "app.RoleBasePanel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._container = t), (t.touchChildren = t.touchEnabled = !1), this.init(); + } + return ( + (e.prototype.init = function () { + (this._helmet = this._container.getChildByName("helmet")), + (this._cloth = this._container.getChildByName("cloth")), + (this._arm = this._container.getChildByName("arm")), + (this.bg = this._container.getChildByName("bg")); + }), + (e.prototype.onTouchTap = function (t) {}), + Object.defineProperty(e.prototype, "skin", { + get: function () { + return this._container; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.setData = function (i) { + if ((void 0 === i && (i = null), i)) { + var n, + s = 0; + (this._arm.source = ""), (this._helmet.source = ""), (this.bg.source = ""), (this.bg.visible = !1); + var a = t.NWRFmB.ins().getPayer, + r = a.propSet.getSex(); + 0 == r ? (this._cloth.source = "body" + e.INIT_MODEL[0] + "_" + r + "_png") : (this._cloth.source = "body" + e.INIT_MODEL[1] + "_" + r + "_png"), + (this._helmet.source = a.propSet.getFacteStr() + "_" + r + "_png"); + for (var o = 0; o < i.length; o++) { + n = i[o]; + var l = t.VlaoF.StdItems[n.wItemId]; + if (l) { + var h = Number(l.type); + 1 == h + ? ((this._arm.source = "weapon_" + l.icon + "_png"), (s = l.imgeff)) + : 2 == h + ? ((this._cloth.source = a.propSet.getBodyModelStr() + "_" + r + "_png"), l.imgeff && ((this.bg.source = "bodyimgeff" + l.imgeff + "_" + r + "_png"), (this.bg.visible = !0))) + : 3 == h && (this._helmet.source = "helmet_" + l.icon + "_png"); + } + } + s + ? (this.weaponMC || ((this.weaponMC = t.ObjectPool.pop("app.MovieClip")), (this.weaponMC.blendMode = egret.BlendMode.ADD), this._container.addChild(this.weaponMC)), + this.weaponMC.playFileEff(ZkSzi.RES_DIR_WIMGEFF + "weaponeff" + s + "_n", -1)) + : this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)); + } + }), + (e.prototype.setOtherData = function (i, n) { + if ((void 0 === i && (i = null), i)) { + var s, + a = 0; + (this._arm.source = ""), (this._helmet.source = ""), (this.bg.source = ""), (this.bg.visible = !1); + var r = n.propSet.getSex(); + 0 == r ? (this._cloth.source = "body" + e.INIT_MODEL[0] + "_" + r + "_png") : (this._cloth.source = "body" + e.INIT_MODEL[1] + "_" + r + "_png"), + (this._helmet.source = n.propSet.getFacteStr() + "_" + r + "_png"); + for (var o = 0; o < i.length; o++) { + s = i[o]; + var l = t.VlaoF.StdItems[s.wItemId]; + if (l) { + var h = Number(l.type); + 1 == h + ? ((this._arm.source = "weapon_" + l.icon + "_png"), (a = l.imgeff)) + : 2 == h + ? ((this._cloth.source = n.propSet.getBodyModelStr() + "_" + r + "_png"), l.imgeff && ((this.bg.source = "bodyimgeff" + l.imgeff + "_" + r + "_png"), (this.bg.visible = !0))) + : 3 == h && (this._helmet.source = "helmet_" + l.icon + "_png"); + } + } + a + ? (this.weaponMC || ((this.weaponMC = t.ObjectPool.pop("app.MovieClip")), (this.weaponMC.blendMode = egret.BlendMode.ADD), this._container.addChild(this.weaponMC)), + this.weaponMC.playFileEff(ZkSzi.RES_DIR_WIMGEFF + "weaponeff" + a + "_n", -1)) + : this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)); + } + }), + (e.prototype.destory = function () { + this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)), t.lEYZI.Naoc(this._container); + }), + (e.INIT_MODEL = ["001", "002"]), + e + ); + })(); + (t.RoleInnerModel = e), __reflect(e.prototype, "app.RoleInnerModel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.newIcon = new eui.Image()), (t.keyArr = ["1", "2", "3", "4", "5", "6", "Q", "W", "E", "R", "T", "Y"]), (t.skinName = "RoleSkilltemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.phoneTipsGrp.visible = !1), + KdbLz.qOtrbE.iFbP + ? ((this.phoneTipsGrp.visible = !0), this.phoneTipsGrp.addEventListener(egret.TouchEvent.TOUCH_TAP, this.phoneSkillTips, this)) + : (this.btn_upgrade.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMoveUpgrade, this), this.btn_upgrade.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMoveUpgrade, this)), + this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMoveUpgrade, this), + this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMoveUpgrade, this), + this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), + this.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchAp, this), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchAp, this), + this.btn_key.addEventListener(egret.TouchEvent.TOUCH_TAP, this.setSkillKey, this), + this.btn_upgrade.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this), + t.ckpDj.ins().addEvent(t.CompEvent.SHORTCUTKEY_SET, this.onClickSelectHandler, this), + this.icon_group.addChild(this.newIcon), + (this.btn_key.textFlow = t.hETx.qYVI("快捷设置")); + }), + (i.prototype.mouseMoveUpgrade = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) this.closeTips(); + else if (e.type == mouse.MouseEvent.MOUSE_OVER) { + var i = this.data.level, + n = t.VlaoF.SkillsLevelConf[this.data.skillId][i]; + if (this.data.isMax) + this.showTips([ + { + skillId: this.data.skillId, + desc: n.skillDesc, + name: this.data.name, + level: i, + }, + ]); + else { + var s = t.VlaoF.SkillsLevelConf[this.data.skillId][i + 1]; + s && + (i + ? this.showTips([ + { + skillId: this.data.skillId, + desc: n.skillDesc, + name: this.data.name, + level: i, + }, + { + skillId: this.data.skillId, + conds: s.upgradeConds, + desc: n.skillNextDesc, + name: this.data.name, + level: i + 1, + }, + ]) + : this.showTips([ + { + skillId: this.data.skillId, + desc: s.skillDesc, + name: this.data.name, + level: i, + }, + { + skillId: this.data.skillId, + conds: s.upgradeConds, + desc: s.skillDesc, + name: this.data.name, + level: i + 1, + }, + ])); + } + } + }), + (i.prototype.phoneSkillTips = function (e) { + var i = this.data.level, + n = t.VlaoF.SkillsLevelConf[this.data.skillId][i]; + if (this.data.isMax) + this.showTips([ + { + skillId: this.data.skillId, + desc: n.skillDesc, + name: this.data.name, + level: i, + }, + ]); + else { + var s = t.VlaoF.SkillsLevelConf[this.data.skillId][i + 1]; + s && + (i + ? this.showTips([ + { + skillId: this.data.skillId, + desc: n.skillDesc, + name: this.data.name, + level: i, + }, + { + skillId: this.data.skillId, + conds: s.upgradeConds, + desc: n.skillNextDesc, + name: this.data.name, + level: i + 1, + }, + ]) + : this.showTips([ + { + skillId: this.data.skillId, + desc: s.skillDesc, + name: this.data.name, + level: i, + }, + { + skillId: this.data.skillId, + conds: s.upgradeConds, + desc: s.skillDesc, + name: this.data.name, + level: i + 1, + }, + ])); + } + }), + (i.prototype.closeTips = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_CLOSE_SKILL_DESC); + }), + (i.prototype.showTips = function (e) { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_SKILL_DESC, e); + }), + (i.prototype.register = function (t) { + this.data.dragName && dragDropItemUtils.register(t, this.icon_group); + }), + (i.prototype.setSkillKey = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.SHORTCUTKEY_SET, [this.btn_key.id, this.btn_key.skillId]); + }), + (i.prototype.onTouchAp = function (e) { + t.uMEZy.ins().closeTips(); + }), + (i.prototype.showGetPropsView = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getBindCoin(); + if (!this.data.upgradeConds) return !0; + for (var n = this.data.upgradeConds, s = 0; s < n.length; s++) { + var a = n[s]; + if (1 != a.cond) { + if (2 == a.cond) { + if (!a.consume) continue; + if (a.value > i) return this.onGetProps(932), !1; + } else if (3 == a.cond) { + if (!a.consume) continue; + var r = void 0; + if ((r = t.VlaoF.StdItems[a.value])) { + var o = t.ZAJw.MPDpiB(ZnGy.qatEquipment, r.id); + if (a.count > o) return this.onGetProps(r.id), !1; + } + } + if (4 != a.cond); + else if (a.consume) continue; + } else if (a.consume) continue; + } + return !0; + }), + (i.prototype.onGetProps = function (e) { + var i = t.mAYZL.ins().ZzTs(t.RoleView); + if (i && !t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + this.parent.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: i.x, + y: i.y, + }, + { + height: i.height, + width: i.width, + }, + 8888 + ); + } + }), + (i.prototype.onClickHandler = function (e) { + if ((t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE), this.data.isUpgrade)) { + if (!this.showGetPropsView()) return; + t.NGcJ.ins().send_5_3(this.data.skillId); + } else (1 == this.data.errorType || 4 == this.data.errorType) && t.uMEZy.ins().IrCm(t.CrmPU.language_Common_84), 6 == this.data.errorType && t.uMEZy.ins().IrCm(t.CrmPU.language_Common_243); + }), + (i.prototype.dataChanged = function () { + (this.icon.filters = null), + (this.icon_group.visible = !0), + (this.txt_level.visible = !1), + (this.txt_level.text = t.CrmPU.language_Omission_txt6), + (this.txt_desc.visible = !this.data.skillType), + (this.btn_key.visible = this.data.skillType && !KdbLz.qOtrbE.iFbP), + (this.txt_max.visible = this.data.isMax), + (this.btn_upgrade.visible = !this.data.isMax), + (this.keyLab.visible = KdbLz.qOtrbE.iFbP ? !1 : !0), + (this.icon.source = this.data.icon), + (this.txt_name.text = this.data.name), + (this.redDot.visible = !!this.data.isRedDot), + this.data.type + ? this.data.level + ? ((this.txt_level.visible = !this.data.isMax), + (this.txt_level.text = "Lv " + this.data.level), + (this.btn_key.id = this.data.state), + (this.keyLab.text = this.keyArr[this.data.state] ? this.keyArr[this.data.state] : ""), + (this.btn_key.skillId = this.data.skillId), + this.data.skillType && + !KdbLz.qOtrbE.iFbP && + ((this.newIcon.width = 60), + (this.newIcon.visible = !0), + (this.newIcon.height = 60), + (this.newIcon.source = this.data.icon), + (this.icon_group.name = this.data.dragName), + (this.newIcon.name = this.data.dragName), + this.register(this.newIcon))) + : ((this.btn_key.visible = !1), (this.icon_group.visible = !1)) + : ((this.btn_key.visible = !1), (this.btn_upgrade.visible = !1), (this.txt_level.visible = !this.data.isMax), (this.txt_level.text = "Lv " + this.data.level)), + this.data.level || ((this.txt_level.visible = !0), (this.icon.filters = t.FilterUtil.ARRAY_GRAY_FILTER)); + }), + (i.prototype.playMC = function () { + this.upMc || ((this.upMc = t.ObjectPool.pop("app.MovieClip")), (this.upMc.blendMode = egret.BlendMode.ADD), (this.upMc.x = 40), (this.upMc.y = 40)), + this.addChild(this.upMc), + this.upMc.playFile(ZkSzi.RES_DIR_EFF + "eff_jnsj", 1, this.stopMC.bind(this)); + }), + (i.prototype.stopMC = function () { + this.upMc && (this.upMc.destroy(), (this.upMc = null)); + }), + (i.prototype.onClickSelectHandler = function (e) { + var i = (e[0], e[1]); + i == this.data.skillId && + (t.mAYZL.ins().ZbzdY(t.ShortcutKeySetView) || + ((t.ShortcutKeySetView.BUTTON_STATE = this.data.state), (t.ShortcutKeySetView.SKILL_ITEM = this.data), t.mAYZL.ins().open(t.ShortcutKeySetView))); + }), + (i.prototype.removeListener = function () { + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchAp, this), + this.data.dragName; + }), + (i.prototype.addListener = function () { + this.data.dragName, + this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), + this.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchAp, this), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchAp, this); + }), + (i.prototype.destroy = function () { + this.stopMC(), + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchAp, this), + t.ckpDj.ins().removeEvent(t.CompEvent.SHORTCUTKEY_SET, this.onClickSelectHandler, this), + this.btn_key.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.setSkillKey, this), + this.btn_upgrade.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMoveUpgrade, this), + this.btn_upgrade.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMoveUpgrade, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMoveUpgrade, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMoveUpgrade, this), + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchAp, this), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchAp, this), + this.btn_upgrade.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this), + t.ckpDj.ins().removeEvent(t.CompEvent.SHORTCUTKEY_SET, this.onClickSelectHandler, this), + KdbLz.qOtrbE.iFbP + ? this.phoneTipsGrp.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.phoneSkillTips, this) + : (this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMoveUpgrade, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMoveUpgrade, this)), + (this.btn_key = null), + this.callFunc && (this.callFunc = null), + this.data.dragName && dragDropItemUtils.destroy(this.data.dragName), + t.lEYZI.Naoc(this.newIcon), + t.lEYZI.Naoc(this.icon_group), + t.lEYZI.Naoc(this); + }), + (i.SKILL_BG = ["bg_jineng_1", "bg_jineng_2"]), + i + ); + })(eui.ItemRenderer); + (t.RoleSkillItemView = e), __reflect(e.prototype, "app.RoleSkillItemView"); + var i = (function () { + function t() {} + return t; + })(); + (t.RoleSkillVo = i), __reflect(i.prototype, "app.RoleSkillVo"); + var n = (function () { + function t() {} + return t; + })(); + (t.SkillConds = n), __reflect(n.prototype, "app.SkillConds"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + void 0 === i && (i = null); + var n = e.call(this) || this; + return (n._isShow = !1), (n.pos = 0), (n.isDelayUpdateShow = !1), (n.isDelayUpdate = !1), (n.isDelayUpdateCount = !1), (n.id = t), (n.tar = i), n; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "ZbzdY", { + get: function () { + return this._isShow; + }, + set: function (t) { + this._isShow != t && this.updateMC(t), (this._isShow = t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.updateMC = function (t) {}), + (i.prototype.getTar = function () { + return this.tar ? this.tar : this.createTar(); + }), + (i.prototype.createTar = function () { + var e = this.getConfig(), + i = e.iconCls ? egret.getDefinitionByName(e.iconCls) : t.MainButton, + n = new i(); + return e.iconSkin && (n.skinName = e.iconSkin), e.icon && (n.icon = e.icon), (n.ID = e.id), (this.tar = n), n; + }), + (i.prototype.getConfig = function () { + return t.VlaoF.PlayFunConfig[this.id]; + }), + (i.prototype.checkShowIcon = function () { + var e = this.getConfig(); + return t.ubnV.ihUJ && !e.displayType ? !1 : t.mAYZL.ins().isCheckOpen(e.isShowNeed); + }), + (i.prototype.isCheckOpen = function () { + var e = this.getConfig(); + return t.mAYZL.ins().isCheckOpen(e.isOpenNeed); + }), + (i.prototype.checkShowRedPoint = function () { + return 0; + }), + (i.prototype.checkShowCountDown = function () { + return 0; + }), + (i.prototype.getEffName = function (t) { + return null; + }), + (i.prototype.playMovie = function () {}), + (i.prototype.tapExecute = function (t) { + egret.Tween.removeTweens(this), + 1 == t && this.tar.currentState + ? egret.Tween.get(this) + .call(function () { + this.tar.currentState = "down"; + }) + .wait(200) + .call(function () { + (this.tar.currentState = "up"), egret.Tween.removeTweens(this), this.onClick(); + }) + : this.onClick(); + }), + (i.prototype.onClick = function () { + var e = this.getConfig(); + e.view && this.isCheckOpen() && (t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), t.mAYZL.ins().ZbzdY(e.view) ? t.mAYZL.ins().close(e.view) : t.mAYZL.ins().open(e.view, e.param)); + }), + (i.prototype.mouseMove = function (e) { + var i = this.getConfig(); + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (i.str) { + var n = this.tar.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, i.str, { + x: n.x + this.tar.width / 2, + y: n.y + this.tar.height / 2, + }), + (n = null); + } + }), + (i.prototype.addEventListeners = function () { + this.tar && + (this.tar.addEventListener(egret.TouchEvent.TOUCH_TAP, this.tapExecute, this), + this.tar.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.tar.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + this.addRedEvents(); + }), + (i.prototype.removeEventListeners = function () { + (this.ZbzdY = !1), + this.tar && + (this.tar.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.tapExecute, this), + this.tar.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.tar.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + this.removeRedEvents(); + }), + (i.prototype.delayUpdate = function () { + this.isDelayUpdate || ((this.isDelayUpdate = !0), t.KHNO.ins().tBiJo(500, 1, this.update, this)); + }), + (i.prototype.update = function () { + (this.isDelayUpdate = !1), i.update(this); + }), + (i.prototype.delayUpdateCount = function () { + this.isDelayUpdateCount || ((this.isDelayUpdateCount = !0), t.KHNO.ins().tBiJo(500, 1, this.updateCount, this)); + }), + (i.prototype.updateCount = function () { + (this.isDelayUpdateCount = !1), i.updateCount(this); + }), + (i.prototype.delayUpdateShow = function () { + this.isDelayUpdateShow || ((this.isDelayUpdateShow = !0), t.KHNO.ins().tBiJo(500, 1, this.updateShow, this)); + }), + (i.prototype.updateShow = function () { + (this.isDelayUpdateShow = !1), i.updateShow(this); + }), + (i.prototype.addShowEvents = function () { + if (this.OGsurv) + for (var e = 0, i = this.OGsurv; e < i.length; e++) { + var n = i[e]; + t.rLmMYc.addListener(n, this.delayUpdateShow, this); + } + }), + (i.prototype.addRedEvents = function () { + if (this.eAvIy) + for (var e = 0, i = this.eAvIy; e < i.length; e++) { + var n = i[e]; + t.rLmMYc.addListener(n, this.delayUpdate, this); + } + }), + (i.prototype.addCountEvents = function () { + if (this.countMessage) + for (var e = 0, i = this.countMessage; e < i.length; e++) { + var n = i[e]; + t.rLmMYc.addListener(n, this.delayUpdateCount, this); + } + }), + (i.prototype.removeRedEvents = function () { + if (this.eAvIy) + for (var e = 0, i = this.eAvIy; e < i.length; e++) { + var n = i[e]; + t.rLmMYc.ins().removeListener(n.funcallname, this.delayUpdate, this); + } + }), + (i.prototype.removeCountEvents = function () { + if (this.countMessage) + for (var e = 0, i = this.countMessage; e < i.length; e++) { + var n = i[e]; + t.rLmMYc.ins().removeListener(n.funcallname, this.delayUpdateCount, this); + } + }), + (i.prototype.removeEvents = function () { + t.rLmMYc.ins().removeAll(this); + }), + (i.prototype.removeAll = function () { + t.rLmMYc.ins().removeAll(this), t.ckpDj.ins().removeAllEvents(), this.removeEventListeners(), t.lEYZI.Naoc(this.tar), egret.Tween.removeTweens(this); + }), + i + ); + })(egret.HashObject); + (t.RuleIconBase = e), __reflect(e.prototype, "app.RuleIconBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.checkboxAry = []), (t.basicsLab = []), (t.labAry = {}), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initUI(); + }), + (i.prototype.initUI = function () { + this.dsph = new how.DSpriteSheet(); + for (var t = 0; t < this.checkboxAry.length; t++) this.addQuickLabel2(this.checkboxAry[t]); + for (var t = 0; t < this.basicsLab.length; t++) this.addQuickLabel(this.basicsLab[t]); + this.dsph.render(); + }), + (i.prototype.addQuickLabel2 = function (t) { + var e = this.labAry[t.name]; + if (e) { + var i = how.getQuickLabel(this.dsph); + (i.touchEnabled = !1), + (i.x = t.x + 40), + (i.y = t.y + 7), + (i.size = 24), + (i.textStroke = 2), + (i.textStrokeColor = 0), + (i.textWidth = 600), + (i.textHeight = 30), + (i.textVerticalAlign = "middle"), + (i.textColor = 14471870); + for (var n in e) (i[n] = e[n]), "nX" == n && (i.x = t.x + e[n]); + t.parent.addChild(i); + } + }), + (i.prototype.addQuickLabel = function (t) { + var e = how.getQuickLabel(this.dsph); + (e.touchEnabled = !1), (e.size = 24), (e.textStroke = 2), (e.textStrokeColor = 0), (e.textWidth = 600), (e.textHeight = 30), (e.textVerticalAlign = "middle"), (e.textColor = 13744500); + for (var i in t) e[i] = t[i]; + t.group ? t.group.addChild(e) : this.addChild(e); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dsph.dispose(), this.removeChildren(), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.SetUpBaseView = e), __reflect(e.prototype, "app.SetUpBaseView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.xy = null), (t.touchChildren = !1), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addEventListener(egret.Event.RESIZE, this.onResize, this); + }), + (i.prototype.onResize = function () { + this.xy && this.onResizeUI(null, this.xy); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), (this.xy = null), this.removeEventListener(egret.Event.RESIZE, this.onResize, this); + }), + (i.prototype.onResizeUI = function (e, i) { + (this.xy = { + x: i.x, + y: i.y, + }), + (this.x = i.x), + (this.y = i.y); + var n = t.aTwWrO.ins().getWidth(), + s = t.aTwWrO.ins().getHeight(); + this.x + this.width > n && (this.x = n - this.width), this.y + this.height > s && (this.y = s - this.height); + }), + (i.prototype.remInitFnction = function () {}), + (i.prototype.close = function () {}), + i + ); + })(eui.Component); + (t.TipsBase = e), __reflect(e.prototype, "app.TipsBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.registerView = {}), (this.dragRect = {}); + } + return ( + (e.prototype.register = function (t, e) { + void 0 === e && (e = null), this.registerView[t.name] != t && ((this.registerView[t.name] = t), this.addEventListener(t)); + }), + (e.prototype.setRect = function (t) { + this.dragRect[t.name] = t; + }), + (e.prototype.addEventListener = function (t) { + (t.touchEnabled = !0), t.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.startMove, this), t.addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this); + }), + (e.prototype.removeEventListener = function () { + for (var t in this.registerView) { + var e = this.registerView[t]; + e.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.startMove, this), e.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this); + } + }), + (e.prototype.getAllView = function () { + return this.registerView; + }), + (e.prototype.setChildPos = function (t) { + for (var e in this.dragRect) { + var i = this.dragRect[e]; + if (i.name == t.name) + for (var n in this.registerView) { + var s = this.registerView[n]; + if (s == t && t.parent) { + var a = t.parent; + a.setChildIndex(t, a.numChildren - 1); + break; + } + } + } + }), + (e.prototype.startMove = function (i) { + e.isMoving = !0; + var n = i.currentTarget; + for (var s in this.dragRect) { + var a = this.dragRect[s]; + if (a.name == n.name) { + var r = a.localToGlobal(a.x, a.y); + if (!(r.x < i.stageX && i.stageX < r.x + a.width && r.y < i.stageY && i.stageY < r.y + a.height)) return; + this._currentTarget = n; + for (var o in this.registerView) { + var l = this.registerView[o]; + if (l == n && n.parent) { + var h = n.parent; + h.setChildIndex(n, h.numChildren - 1); + break; + } + } + (this._offsetX = i.stageX - n.x), (this._offsetY = i.stageY - n.y), t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onMove, this); + } + } + }), + (e.prototype.stopMove = function (i) { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onMove, this), (e.isMoving = !1); + }), + (e.prototype.onMove = function (t) { + this._currentTarget.visible = !0; + for (var e in this.registerView) { + var i = this.registerView[e]; + if (i.name == this._currentTarget.name) { + (this._currentTarget.x = t.stageX - this._offsetX), (this._currentTarget.y = t.stageY - this._offsetY); + break; + } + } + }), + (e.prototype.closeView = function (t) { + var e = this.registerView[t]; + e && e.parent && (e.parent.removeChild(e), e.closeView && e.closeView()), this.removeEventListener(); + }), + (e.prototype.closeAll = function () { + for (var t in this.registerView) this.closeView(t); + }), + (e.prototype.removeDic = function (t) { + var e = this.registerView[t]; + null != e && + (e.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.startMove, this), + e.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + (this.registerView[t] = null), + delete this.registerView[t]); + var i = this.dragRect[t]; + null != i && ((this.dragRect[t] = null), delete this.dragRect[t]); + }), + (e.prototype.destroy = function (t) { + this.removeDic(t); + }), + (e.isMoving = !1), + e + ); + })(); + (t.DragDropUtils = e), __reflect(e.prototype, "app.DragDropUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return __extends(e, t), (e.SHOW_GUILD_UI = "SHOW_GUILD_UI"), e; + })(egret.Event); + (t.GuildEvent = e), __reflect(e.prototype, "app.GuildEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._actID = 0), (i.skinName = "ActivityMaterialSkin"), (i.name = "ActivityMaterial"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setCurrentState("default13"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System68), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.list.itemRenderer = t.ActivityMaterialItemView), + (this.list.dataProvider = this.itemArrayCollection), + (this.scroller.verticalScrollBar.autoVisibility = !1), + (this.scroller.verticalScrollBar.visible = !1), + this.HFTK(t.TQkyOx.ins().post_25_3, this.refreshData); + }), + (i.prototype.refreshData = function (t) { + t && this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this._actID = e[0]), t.MouseScroller.bind(this.scroller), (this.dataAry = []), this.setData(); + }), + (i.prototype.setData = function () { + var e = t.VlaoF.Activity12Config, + i = []; + for (var n in e) { + var s = e[n]; + 0 != s.Id && i.push(s); + } + var a = i.length; + if (5 > a) for (var r = 0; 5 - a > r; r++) i.push(t.VlaoF.Activity12Config[0]); + this.creatItem(i); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.scroller), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.scroller = null), + (this.list = null), + (this.dataAry.length = 0), + (this.dataAry = null), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null); + }), + i + ); + })(t.gIRYTi); + (t.ActivityMaterialView = e), __reflect(e.prototype, "app.ActivityMaterialView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.cdTime = 0), (t.skinName = "ActivityAdvertViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((e[0] && (this.actId = e[0]), (this.curValue.text = ""), 0 != this.actId)) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n && (this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), this.updateView(this.actId)); + } + }), + (i.prototype.updateInfo = function () { + 0 != this.actId && this.updateView(this.actId); + }), + (i.prototype.updateView = function (e) { + var i = t.TQkyOx.ins().getActivitConf(e), + n = t.VlaoF.Activity10018Config[e]; + i.description && (this.actDesc.textFlow = t.hETx.qYVI(i.description)), + i.bg ? (this.bgImg.source = i.bg + "") : (this.bgImg.source = "festival_tqxunli_png"), + n.bgpicture && (this.advertImg.source = n.bgpicture + "_png"); + var s = t.TQkyOx.ins().getActivityInfo(e); + s && + (s.endTime - 1262275200 == 0 + ? ((this.actTime.visible = !1), (this.timeLab.visible = !1), (this.descLab.y = 18), (this.actDesc.y = 18)) + : ((this.actTime.visible = !0), + (this.timeLab.visible = !0), + (this.descLab.y = 48), + (this.actDesc.y = 48), + (this.cdTime = s.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)))); + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().remove(this.updateCDTime, this); + }), + i + ); + })(t.gIRYTi); + (t.ActivityAdvertView = e), __reflect(e.prototype, "app.ActivityAdvertView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.exchangeBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.exchangeBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + this.data && (t.mAYZL.ins().isCheckOpen(this.data.mergelimit) ? t.TQkyOx.ins().send_25_1(this.data.id, t.Operate.cExchange, [this.data.subid]) : t.uMEZy.ins().IrCm(this.data.limitTips)); + }), + (i.prototype.dataChanged = function () { + if (((this.redPoint.visible = !1), (this.countLab.text = ""), (this.exchangeBtn.y = 35), this.data)) { + this.data.table && this.data.table[0] && ((this.itemData0.data = this.data.table[0]), (this.itemLab0.text = t.ZAJw.sztgR(this.data.table[0].type, this.data.table[0].id)[0])), + this.data.compose && this.data.compose[0] && ((this.targetItem.data = this.data.compose[0]), (this.targetLab.text = t.ZAJw.sztgR(this.data.compose[0].type, this.data.compose[0].id)[0])); + var e = t.TQkyOx.ins().getActivityInfo(this.data.id); + e && e.info && e.info[this.data.subid] && e.info[this.data.subid].limitCount >= 0 && ((this.countLab.text = "剩余次数:" + e.info[this.data.subid].limitCount), (this.exchangeBtn.y = 22)), + this.data.limitTips && (this.descLab.textFlow = t.hETx.qYVI(this.data.limitTips)), + t.mAYZL.ins().isCheckOpen(this.data.mergelimit) + ? ((this.exchangeBtn.enabled = !0), + (this.descLab.visible = !1), + this.data.redpoint && + e && + e.info && + e.info[this.data.subid] && + e.info[this.data.subid].limitCount > 0 && + ((this.redPoint.visible = t.ZAJw.isRedDot(this.data.table) ? !0 : !1), this.redPoint.setRedImg(this.data.redpoint))) + : ((this.exchangeBtn.enabled = !1), (this.descLab.visible = !0)); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityExchangeItemView = e), __reflect(e.prototype, "app.ActivityExchangeItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.cdTime = 0), (t.skinName = "ActivityExchangeViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (e[0] && (this.actId = e[0]), + (this.curValue.text = ""), + t.MouseScroller.bind(this.sportsScroller), + (this.sportsArr = new eui.ArrayCollection()), + (this.sportsList.itemRenderer = t.ActivityExchangeItemView), + (this.sportsList.dataProvider = this.sportsArr), + (this.sportsScroller.viewport.scrollV = 0), + 0 != this.actId) + ) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n && (this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), this.updateView(this.actId)); + } + }), + (i.prototype.updateInfo = function () { + 0 != this.actId && this.updateView(this.actId); + }), + (i.prototype.updateViewInfo = function (t) { + (this.sportsScroller.viewport.scrollV = 0), this.updateView(t); + }), + (i.prototype.updateView = function (e) { + var i = t.TQkyOx.ins().getActivitConf(e); + i.description && (this.actDesc.textFlow = t.hETx.qYVI(i.description)), i.bg ? (this.bgImg.source = i.bg + "_png") : (this.bgImg.source = "festival_tqxunli_png"); + var n = t.TQkyOx.ins().getActivityInfo(e); + if (n && n.info) { + n.endTime - 1262275200 == 0 + ? ((this.actTime.visible = !1), (this.timeLab.visible = !1), (this.descLab.y = 18), (this.actDesc.y = 18)) + : ((this.actTime.visible = !0), + (this.timeLab.visible = !0), + (this.descLab.y = 48), + (this.actDesc.y = 48), + (this.cdTime = n.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this))); + var s = [], + a = t.TQkyOx.ins().getActivityConfigById(e); + if (a) for (var r in a) t.mAYZL.ins().isCheckOpen(a[r].displaylimit) && s.push(a[r]); + this.sportsArr.replaceAll(s); + } + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.MouseScroller.unbind(this.sportsScroller), t.KHNO.ins().remove(this.updateCDTime, this); + }), + i + ); + })(t.gIRYTi); + (t.ActivityExchangeView = e), __reflect(e.prototype, "app.ActivityExchangeView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.labelDisplay.text = this.data.name + ""), + (this.redDot.visible = !1), + 1 == t.ActivityPayRuleIcon.disposableredpointObj[this.data.actId] && ((this.redDot.visible = !0), this.redDot.setRedImg(1)); + var e = t.TQkyOx.ins().getActivityInfo(this.data.actId); + e && e.info && (e && 0 != e.redDot && ((this.redDot.visible = !0), this.redDot.setRedImg(1)), this.data.redpoint && ((this.redDot.visible = !0), this.redDot.setRedImg(this.data.redpoint))); + }), + i + ); + })(eui.ItemRenderer); + (t.ActivityPayTabItemView = e), __reflect(e.prototype, "app.ActivityPayTabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.MiniDateTimeBase = 12622752e5), t; + })(); + (t.GameConst = e), __reflect(e.prototype, "app.GameConst"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.ActivityPayView); + (t.ActivityPayView1 = e), __reflect(e.prototype, "app.ActivityPayView1"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.ActivityPayView); + (t.ActivityPayView2 = e), __reflect(e.prototype, "app.ActivityPayView2"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.ActivityPayView); + (t.ActivityPayView3 = e), __reflect(e.prototype, "app.ActivityPayView3"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.ActivityPayView); + (t.ActivityPayView4 = e), __reflect(e.prototype, "app.ActivityPayView4"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.ActivityPayView); + (t.ActivityPayView5 = e), __reflect(e.prototype, "app.ActivityPayView5"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.cdTime = 0), (t.skinName = "ActivityPreferentialSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (e[0] && (this.actId = e[0]), + t.MouseScroller.bind(this.itemScroller), + (this.list.itemRenderer = t.ActpItemRender), + (this.arrayCollection = new eui.ArrayCollection()), + (this.list.dataProvider = this.arrayCollection), + 0 != this.actId) + ) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n && + (this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), + n.bg ? (this.bgImg.source = n.bg + "_png") : (this.bgImg.source = "festival_tqxunli_png"), + n.description && (this.descLabel.textFlow = t.hETx.qYVI(n.description)), + this.updateView(this.actId)); + } + }), + (i.prototype.updateInfo = function () { + 0 != this.actId && this.updateView(this.actId); + }), + (i.prototype.updateView = function (e) { + var i = t.TQkyOx.ins().getActivityInfo(e); + if (i && i.info) { + (this.cdTime = i.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)); + var n = []; + for (var s in i.info) + n.push({ + activityID: e, + num: i.info[s].times, + giftId: i.info[s].id, + }); + n.sort(this.sortFun), this.arrayCollection.replaceAll(n); + } + }), + (i.prototype.sortFun = function (t, e) { + return t.giftId < e.giftId ? -1 : t.giftId > e.giftId ? 1 : 0; + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.timeLabel.text = t.CrmPU.language_Pay_Text7 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), + 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.timeLabel.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.MouseScroller.unbind(this.itemScroller); + }), + i + ); + })(t.gIRYTi); + (t.ActivityPreferentialView = e), __reflect(e.prototype, "app.ActivityPreferentialView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onRemoveFromStage = function () { + (this.dataProvider = null), this.fEHj(this.buyButton, this.onClickFunction), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.$onAddToStage = function (i, n) { + e.prototype.$onAddToStage.call(this, i, n), (this.list.itemRenderer = t.ItemBase), this.vKruVZ(this.buyButton, this.onClickFunction); + }), + (i.prototype.onClickFunction = function () { + this.data && t.TQkyOx.ins().send_25_1(this.data.activityID, t.Operate.cBuy, [this.data.giftId]); + }), + (i.prototype.dataChanged = function () { + if ( + ((this.info10001.visible = !1), + (this.info10002.visible = !0), + (this.discountGroup.visible = !1), + (this.redImage.visible = !1), + (this.endImage.visible = !1), + (this.buyButton.visible = !1), + (this.buyButton.labelDisplay.textColor = 15779990), + (this.buyButton.label = t.CrmPU.language_Pay_Text5), + this.data) + ) { + var e = t.TQkyOx.ins().getActivityConfigById(this.data.activityID); + if (e && e[this.data.giftId]) { + var i = e[this.data.giftId]; + this.list.dataProvider = new eui.ArrayCollection(i.award); + this.data.num > 0 || -1 == i.BuyLimit ? "0xF6883A" : "0xe50000"; + (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_156, i.name))), + (this.limitLab.text = i.BuyLimit ? "限购:" + this.data.num + "/" + i.BuyLimit : i.Dailylimit ? "限购:" + this.data.num + "/" + i.Dailylimit : ""), + (this.moneyLabel.text = "" + i.price[0].count); + var n = t.ZAJw.MPDpiB(i.price[0].type); + n < i.price[0].count ? (this.moneyLabel.textColor = 15007744) : (this.moneyLabel.textColor = 15779990); + var s = t.ZAJw.getMoneyIcon(i.price[0].type); + this.moneyImage.source = s; + var a = i.BuyLimit ? i.BuyLimit : i.Dailylimit ? i.Dailylimit : -1; + i.redpoint + ? -1 == a || this.data.num >= a + ? ((this.redImage.visible = !0), this.redImage.setRedImg(i.redpoint)) + : (this.redImage.visible = !1) + : i.redType && (-1 == a || this.data.num >= a) && (this.redImage.visible = t.ZAJw.isRedDot(i.price) ? !0 : !1), + i.discount && ((this.discountGroup.visible = !0), (this.discountImage.source = i.discount)), + this.data.num > 0 || -1 == a + ? ((this.buyButton.visible = !0), -1 == a && (this.limitLab.text = t.CrmPU.language_Pay_Text6)) + : ((this.endImage.source = "apay_yishouwan"), (this.endImage.visible = !0), (this.info10002.visible = !1)); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.ActpItemRender = e), __reflect(e.prototype, "app.ActpItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.labelDisplay.text = this.data.name + ""), (this.redDot.updateShowFunctions = "TQkyOx.getActivityPayRedById"), (this.redDot.param = this.data.actId); + }), + e + ); + })(eui.ItemRenderer); + (t.PayTabBarItemRenderer = e), __reflect(e.prototype, "app.PayTabBarItemRenderer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.effArr = []), (i.curDay = 1), (i.secondChargeId = 10274), (i.skinName = "ActivitySecondChargeViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.awardArr = new eui.ArrayCollection()), (this.itemList.itemRenderer = t.ItemBase), (this.itemList.dataProvider = this.awardArr); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.label.text = t.CrmPU.language_Common_262; + var n = t.VlaoF.Activity10021Config[this.secondChargeId][1][1]; + n && n.Description && (this.imgDesc.source = n.Description), + this.mouseMc || ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + (this.effArr = []); + for (var s, a = 0; 2 > a; a++) + (s = t.ObjectPool.pop("app.MovieClip")), + (s.scaleX = s.scaleY = 1), + (s.x = 66 * a), + (s.y = 0), + (s.touchEnabled = !1), + (s.blendMode = egret.BlendMode.ADD), + s.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zbk", -1), + this.effArr.push(s), + this.itemEffGrp.addChild(s); + this.vKruVZ(this.btnCharge, this.onClick), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnGetGfit, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.showCurData(this.curDay); + }), + (i.prototype.showCurData = function (e) { + (this.receiveGroup.visible = !1), (this.label.visible = !1); + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getAP_JOB(), + s = t.VlaoF.Activity10021Config[this.secondChargeId][n]; + s = s[e]; + var a = [], + r = s && s.GiftTable; + for (var o in r) a.push(r[o]); + this.awardArr.replaceAll(a), s && s.weaponeff ? (this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + s.weaponeff, -1), (this.effGrp.visible = !0)) : (this.mouseMc.stop(), (this.effGrp.visible = !1)); + var l = t.TQkyOx.ins().getActivityInfo(this.secondChargeId); + l && + (l.info.sum >= 2 + ? ((this.label.visible = !0), + (this.receiveGroup.visible = t.MathUtils.getValueAtBit(l.info.state, e) > 0), + this.receiveGroup.visible ? ((this.btnGetGfit.visible = !1), (this.btnCharge.visible = !1)) : ((this.btnGetGfit.visible = !0), (this.btnCharge.visible = !1))) + : ((this.btnGetGfit.visible = !1), (this.btnCharge.visible = !0))); + }), + (i.prototype.updateInfo = function () { + this.showCurData(this.curDay); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnCharge: + t.RechargeMgr.ins().onPay(""); + break; + case this.btnGetGfit: + t.TQkyOx.ins().send_25_1(this.secondChargeId, t.Operate.cBuy, [this.curDay]); + break; + case this.btnClose: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), + this.fEHj(this.btnCharge, this.onClick), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.btnGetGfit, this.onClick), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + for (var i = 0; i < this.effArr.length; i++) { + var n = this.effArr[i]; + n.destroy(); + } + (this.effArr = null), this.itemEffGrp.removeChildren(); + }), + i + ); + })(t.gIRYTi); + (t.ActvitySecondChargeView = e), __reflect(e.prototype, "app.ActvitySecondChargeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + return e.call(this) || this; + } + return ( + __extends(n, e), + (n.ins = function () { + return e.ins.call(this); + }), + (n.prototype.getConfigList = function () { + this.configList = []; + var e = t.TQkyOx.ins().warActId, + i = t.TQkyOx.ins().getActivityInfo(e), + s = i && i.info && i.info.warNum, + a = t.VlaoF.Activity14Config[e][s]; + for (var r in a) { + var o = a[Number(r)]; + if (o) { + var l = o, + h = new n(); + (h.data = l), + (h.state = this.findWarActInfo(l.Id, l.tokenlevel).state), + (h.state1 = this.findWarActInfo(l.Id, l.tokenlevel).state1), + (h.goldState = i.info.goldState), + this.configList.push(h); + } + } + }), + (n.prototype.removeConfig = function () { + this.configList = []; + }), + (n.prototype.getFindlvItem = function (t) { + for (var e = this.configList, i = 0; i < e.length; i++) { + var n = e[i]; + if (n.data.tokenlevel == t) return n; + } + return null; + }), + (n.prototype.getWarMaxLv = function () { + var t = this.configList.length; + 0 == t && (this.getConfigList(), (t = this.configList.length)); + var e = this.configList[t - 1].data.tokenlevel; + return e; + }), + (n.prototype.getLvAward = function (e, i) { + var n = this.configList; + 0 == n.length && (this.getConfigList(), (n = this.configList)); + for (var s = [], a = (t.VlaoF.Activity14Config, t.TQkyOx.ins().warActId), r = t.TQkyOx.ins().getActivityInfo(a), o = r && r.info && r.info.goldState, l = 0; l < n.length; l++) { + var h = n[l]; + h.data.tokenlevel > e && h.data.tokenlevel <= i && (h.data.rewardA && s.push(h.data.rewardA[0]), h.data.rewardB && o && s.push(h.data.rewardB[0])); + } + return s; + }), + (n.prototype.getLvMoney = function (e, i) { + var s = n.ins().getFindlvItem(i), + a = t.TQkyOx.ins().warActId, + r = t.TQkyOx.ins().getActivityInfo(a), + o = r && r.info && r.info.warNum, + l = t.VlaoF.ActivitysetConfig[a][o], + h = l && l.proportion, + p = s.data.accumulate - r.info.score; + return Math.ceil(p / h); + }), + (n.prototype.getSetConfig = function () { + var e = t.TQkyOx.ins().warActId, + i = t.TQkyOx.ins().getActivityInfo(e), + n = t.VlaoF.ActivitysetConfig[e][i.info.warNum]; + return n; + }), + (n.prototype.getTaskCnfList = function (e) { + var n = [], + s = t.TQkyOx.ins().getActivityInfo(e); + if (!s || !s.info) return n; + var a = t.VlaoF.Activity15Config[e][s.info.warNum]; + for (var r in a) { + var o = a[r]; + if (o) { + var l = new i(); + (l.data = o), (l.rate = this.findActInfo(e, l.data.taskID).rate), (l.state = this.findActInfo(e, l.data.taskID).state), n.push(l); + } + } + return n; + }), + (n.prototype.findActRedState = function (e) { + if (e instanceof Array) + for (var i = 0, n = e; i < n.length; i++) { + var s = n[i], + a = t.TQkyOx.ins().getActivityInfo(s); + if (a && a.redDot) return 1; + } + else { + var a = t.TQkyOx.ins().getActivityInfo(Number(e)); + if (a && a.redDot) return 1; + } + return 0; + }), + (n.prototype.getTaskDayScore = function (t) { + for (var e = this.getTaskCnfList(t), i = 0, n = 0, s = e; n < s.length; n++) { + var a = s[n]; + 2 == a.state && (i += a.data.GiftTable[0].count); + } + return i; + }), + (n.prototype.findWarActInfo = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e); + if (n && n.info && n.info.warArr) for (var s in n.info.warArr) if (n.info.warArr[Number(s)].lv == i) return n.info.warArr[s]; + return null; + }), + (n.prototype.findActInfo = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e); + if (n && n.info && n.info.taskArr) for (var s in n.info.taskArr) if (n.info.taskArr[Number(s)].index == i) return n.info.taskArr[s]; + return null; + }), + n + ); + })(t.DlUenA); + (t.ActivityWarData = e), __reflect(e.prototype, "app.ActivityWarData"); + var i = (function () { + function t() {} + return t; + })(); + (t.ActivityTaskData = i), __reflect(i.prototype, "app.ActivityTaskData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityWarGiftAdvGoodsViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setCurrentState("default12"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_War_Text15), + (this.itemArr = new eui.ArrayCollection()), + (this.list.itemRenderer = t.ItemBase), + (this.list.dataProvider = this.itemArr), + this.HFTK(t.TQkyOx.ins().post_25_2, this.initData), + this.HFTK(t.TQkyOx.ins().post_25_4, this.initData); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.btnAdd, this.onClick), this.vKruVZ(this.btnBuy, this.onClick), this.vKruVZ(this.btnCannel, this.onClick), this.vKruVZ(this.btnSub, this.onClick); + }), + (i.prototype.initData = function () { + if (((this.actId = t.TQkyOx.ins().warActId), (this.actInfo = t.TQkyOx.ins().getActivityInfo(this.actId)), this.actInfo && this.actInfo.info)) { + if (((this.currentLv = this.actInfo.info.tokenLv), (this.lbCount.text = "1"), this.currentLv >= t.ActivityWarData.ins().getWarMaxLv())) return void t.mAYZL.ins().close(this); + this.showDesc(); + } + }), + (i.prototype.addLv = function () { + var e = Number(this.lbCount.text), + i = e + this.currentLv; + if (this.actInfo && this.actInfo.info) { + var n = (this.actInfo.info.warNum, t.ActivityWarData.ins().getWarMaxLv()); + if (i >= n) return; + e++, (this.lbCount.text = e + ""), this.showDesc(); + } + }), + (i.prototype.subLv = function () { + var t = Number(this.lbCount.text); + 1 >= t || (t--, (this.lbCount.text = t + ""), this.showDesc()); + }), + (i.prototype.showDesc = function () { + var e = Number(this.lbCount.text), + i = e + this.currentLv, + n = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_War_Text3, e)); + this.lbTitle.textFlow = n; + var s = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_War_Text4, e, i)); + this.lbBuyDesc.textFlow = s; + var a = (this.actInfo && this.actInfo.info && this.actInfo.info.warNum, t.ActivityWarData.ins().getLvMoney(this.currentLv, i)); + this.lbCost.text = "" + a + t.CrmPU.language_CURRENCY_NAME_2; + var r = t.ActivityWarData.ins().getLvAward(this.currentLv, i); + this.itemArr.replaceAll(r); + }), + (i.prototype.onClick = function (e) { + var i = this; + switch (e.currentTarget) { + case this.btnCannel: + t.mAYZL.ins().close(this); + break; + case this.btnAdd: + this.addLv(); + break; + case this.btnSub: + this.subLv(); + break; + case this.btnBuy: + var n = + "|C:0xFFFFFF&T:" + + t.CrmPU.language_Shop_Buy_Item_txt + + "|C:0xDBC789&T:" + + this.lbCost.text + + "|C:0xFFFFFF&T:" + + t.CrmPU.language_System45 + + "|C:0xDBC789&T:" + + this.lbCount.text + + t.CrmPU.language_Common_1 + + t.CrmPU.language_War_Text17, + s = t.hETx.qYVI(n); + t.CautionView.show( + s, + function () { + var e = Number(i.lbCount.text); + t.TQkyOx.ins().send_25_1(i.actId, t.Operate.cWarBuyLv, [e]); + }, + this + ); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + this.fEHj(this.btnAdd, this.onClick), + this.fEHj(this.btnBuy, this.onClick), + this.fEHj(this.btnCannel, this.onClick), + this.fEHj(this.btnSub, this.onClick), + e.prototype.close.call(this, i), + this.$onClose(), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.itemArr.removeAll(), + (this.itemArr = null), + t.mAYZL.ins().ZbzdY(t.ActivityWarView) || t.ActivityWarData.ins().removeConfig(); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWarGiftAdvGoodsView = e), __reflect(e.prototype, "app.ActivityWarGiftAdvGoodsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityWarGiftAdvViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.HFTK(t.TQkyOx.ins().post_25_2, this.initData), this.HFTK(t.TQkyOx.ins().post_25_4, this.initData); + }), + (i.prototype.initData = function () { + var e = t.TQkyOx.ins().warActId, + i = t.TQkyOx.ins().getActivityInfo(e); + if (i && i.info) { + var n = i.info.warNum, + s = i.info.goldState; + i.info.extrState; + (this.btnBuy1.enabled = !s), (this.btnBuy1.label = s ? t.CrmPU.language_Wlelfare_Text6 : t.CrmPU.language_System45); + var a = t.VlaoF.ActivitysetConfig[e][n]; + (this.setConf = a), (this.lbGoldDesc.textFlow = t.hETx.qYVI(a.rewardBdescribe)); + var r = a.rewardBPrice.count, + o = (s ? a.rewardCPrice.count : a.rewardCPrice.count + r, t.ShopConfData.convertItemIcon(a.rewardBPrice)); + t.ShopConfData.convertItemIcon(a.rewardCPrice); + this.lbGoldCost.text = "" + r + o.name; + } + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.btnBuy1, this.onClick), this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + var i = this; + if (e.currentTarget == this.btnBuy1) { + var n = + "|C:0xFFFFFF&T:" + + t.CrmPU.language_Shop_Buy_Item_txt + + "|C:0xDBC789&T:" + + this.lbGoldCost.text + + "|C:0xFFFFFF&T:" + + t.CrmPU.language_System45 + + "|C:0xDBC789&T:" + + t.CrmPU.language_War_Text14, + s = t.hETx.qYVI(n); + t.CautionView.show( + s, + function () { + t.TQkyOx.ins().send_25_1(i.setConf.ID, t.Operate.cWarBuy, [2]); + }, + this + ); + } else t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + this.fEHj(this.btnBuy1, this.onClick), this.fEHj(this.closeBtn, this.onClick), e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWarGiftAdvView = e), __reflect(e.prototype, "app.ActivityWarGiftAdvView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityWarGiftGoodsViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setCurrentState("default12"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_War_Text10), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.btnCannel, this.onClick), this.vKruVZ(this.btnBuy, this.onClick); + }), + (i.prototype.initData = function () { + var e = t.ActivityWarData.ins().configList, + i = e[0], + n = new eui.ArrayCollection(i.data.rewardC); + this.list.dataProvider = n; + }), + (i.prototype.onClick = function (e) { + var i = this; + if (e.currentTarget == this.btnCannel) t.mAYZL.ins().close(this); + else { + var n = t.ActivityWarData.ins().getSetConfig(), + s = t.VlaoF.BagRemainConfig[n.VIPbagremain]; + if (s) { + var a = t.ThgMu.ins().getBagCapacity(s.bagremain); + if (a) { + var r = n.rewardBPrice.count, + o = t.ShopConfData.convertItemIcon(n.rewardCPrice), + l = + "|C:0xFFFFFF&T:" + t.CrmPU.language_Shop_Buy_Item_txt + "|C:0xDBC789&T:" + r + o.name + "|C:0xFFFFFF&T:" + t.CrmPU.language_System45 + "|C:0xDBC789&T:" + t.CrmPU.language_War_Text10, + h = t.hETx.qYVI(l); + t.CautionView.show( + h, + function () { + t.TQkyOx.ins().send_25_1(i.actId, t.Operate.cWarBuy, [3]); + }, + this + ); + } else t.uMEZy.ins().IrCm(s.bagtips); + } + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + this.fEHj(this.btnCannel, this.onClick), this.fEHj(this.btnBuy, this.onClick), e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWarGiftGoodsView = e), __reflect(e.prototype, "app.ActivityWarGiftGoodsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.goodsGoldMc = t.ObjectPool.pop("app.MovieClip")), + (this.goodsGoldMc.touchEnabled = !1), + (this.goodsGoldMc.blendMode = egret.BlendMode.ADD), + (this.goodsGoldMc.x = this.goodsGoldMc.y), + this.groupGold.addChild(this.goodsGoldMc), + (this.goodsCommondMc = t.ObjectPool.pop("app.MovieClip")), + (this.goodsCommondMc.touchEnabled = !1), + (this.goodsCommondMc.blendMode = egret.BlendMode.ADD), + (this.goodsCommondMc.x = this.goodsCommondMc.y), + this.groupCommon.addChild(this.goodsCommondMc), + this.vKruVZ(this.itemCommon, this.onClick), + this.vKruVZ(this.itemGold, this.onClick), + (this.iconCommonLock.visible = !1), + (this.iconGoldLock.visible = !1); + }), + (i.prototype.onClick = function (e) { + if (e.currentTarget == this.itemCommon) { + if (2 != this.itemData.state) return; + } else if (2 != this.itemData.state1) return; + var i = t.ActivityWarData.ins().getSetConfig(), + n = t.VlaoF.BagRemainConfig[i.bagremain]; + if (n) { + var s = t.ThgMu.ins().getBagCapacity(n.bagremain); + s + ? e.currentTarget == this.itemCommon + ? t.TQkyOx.ins().send_25_1(this.itemData.data.Id, t.Operate.cWarGetAward, [1, this.itemData.data.tokenlevel]) + : t.TQkyOx.ins().send_25_1(this.itemData.data.Id, t.Operate.cWarGetAward, [2, this.itemData.data.tokenlevel]) + : t.uMEZy.ins().IrCm(n.bagtips); + } + }), + (i.prototype.setGlodEffPayer = function (t) { + t + ? ((this.goodsGoldMc.visible = !0), this.goodsGoldMc.isPlaying || this.goodsGoldMc.playFileEff(ZkSzi.RES_DIR_EFF + "zl", -1, null, !1)) + : (this.goodsGoldMc && (this.goodsGoldMc.visible = !1), this.goodsGoldMc && this.goodsGoldMc.stop()); + }), + (i.prototype.setCommonEffPayer = function (t) { + t + ? ((this.goodsCommondMc.visible = !0), this.goodsCommondMc.isPlaying || this.goodsCommondMc.playFileEff(ZkSzi.RES_DIR_EFF + "zl", -1, null, !1)) + : (this.goodsCommondMc && (this.goodsCommondMc.visible = !1), this.goodsCommondMc && this.goodsCommondMc.stop()); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + t.lEYZI.Naoc(this.goodsGoldMc), + t.lEYZI.Naoc(this.goodsCommondMc), + this.goodsGoldMc && (this.goodsGoldMc.destroy(), (this.goodsGoldMc = null)), + this.goodsCommondMc && (this.goodsCommondMc.destroy(), (this.goodsCommondMc = null)), + this.fEHj(this.itemCommon, this.onClick), + this.fEHj(this.itemGold, this.onClick), + (this.itemData = null); + }), + (i.prototype.dataChanged = function () { + (this.itemData = this.data), (this.lbTitle.text = this.itemData.data.tokenlevel + t.CrmPU.language_Common_1); + var e = void 0 == this.itemData.data.rewardA ? null : this.itemData.data.rewardA[0], + i = void 0 == this.itemData.data.rewardB ? null : this.itemData.data.rewardB[0]; + (this.iconCommonLock.visible = null == e ? !0 : !1), + (this.iconGoldLock.visible = null == i ? !0 : !1), + this.setItem(e, i), + this.setGlodEffPayer(2 == this.itemData.state1 && null != i), + this.setCommonEffPayer(2 == this.itemData.state && null != e), + (this.imgCommon.visible = 1 == this.itemData.state), + (this.imgGold.visible = 1 == this.itemData.state1), + (this.itemGold.filters = this.itemData.goldState ? null : t.FilterUtil.ARRAY_GRAY_FILTER); + }), + (i.prototype.setItem = function (t, e) { + (this.itemCommon.data = t), (this.itemGold.data = e); + }), + i + ); + })(t.BaseItemRender); + (t.ActivityWarItemView = e), __reflect(e.prototype, "app.ActivityWarItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.goButton, this.onTouch); + }), + (i.prototype.dataChanged = function () { + this.itemData = this.data; + var e = this.itemData.data.value, + i = this.itemData.rate, + n = 2682369; + i >= e ? ((n = 2682369), (i = e)) : (n = 15007744), + 0 == this.itemData.state + ? ((this.goButton.label = t.CrmPU.language_War_Text18), (this.goButton.enabled = !0), (this.redDot.visible = !1)) + : 1 == this.itemData.state + ? ((this.goButton.label = t.CrmPU.language_Achievement_GetText), (this.goButton.enabled = !0), (this.redDot.visible = !0)) + : ((this.goButton.label = t.CrmPU.language_War_Text19), (this.goButton.enabled = !1), (this.redDot.visible = !1)); + t.VlaoF.NumericalIcon[this.itemData.data.GiftTable[0].type]; + (this.lbScoreName.text = t.CrmPU.language_FuBen_Text8 + ":"), + (this.lbScore.text = this.itemData.data.GiftTable[0].count), + (this.lbDesc.text = this.itemData.data.describe), + (this.lbTitle.textFlow = t.hETx.qYVI(this.itemData.data.name + (":|C:" + n + "&T:" + i + "/" + e + "|"))); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.goButton, this.onTouch), (this.itemData = null); + }), + (i.prototype.onTouch = function (e) { + var i = this; + if (0 == this.itemData.state) + if (this.itemData.data.buttonUI) + t.GlobalData.sectionOpenDay < this.itemData.data.openday ? t.mAYZL.ins().open(t.ActivityWarTipsView, this.itemData.data.openday) : this.openView(this.itemData.data.buttonUI); + else { + var n = t.ShopConfData.convertItemIcon(this.itemData.data.data[0]), + s = this.itemData.data.data[0].count, + a = this.itemData.data.data[0].type, + r = "|C:0xFFFFFF&T:" + t.CrmPU.language_War_Text16 + "|C:0xDBC789&T:" + n.name + "*" + t.CommonUtils.overLength(s) + "?", + o = t.hETx.qYVI(r); + if (this.itemData.data.PropValue) { + var l = t.NWRFmB.ins().getPayer.propSet, + h = l.getPropValueObj()[this.itemData.data.PropValue]; + if (s > h) { + var p = t.zlkp.replace(t.CrmPU.language_War_Text20, n.name); + return void t.uMEZy.ins().IrCm(p); + } + } else { + var u = t.ZAJw.MPDpiB(a, this.itemData.data.data[0].id); + if (s > u) { + var c = t.zlkp.replace(t.CrmPU.language_War_Text20, n.name); + return void t.uMEZy.ins().IrCm(c); + } + } + t.CautionView.show( + o, + function () { + t.TQkyOx.ins().send_25_1(i.itemData.data.ID, t.Operate.cWarTask, [i.itemData.data.taskID]); + }, + this + ); + } + else t.TQkyOx.ins().send_25_1(this.itemData.data.ID, t.Operate.cWarGetTaskScore, [this.itemData.data.taskID]); + }), + (i.prototype.openView = function (e) { + switch (e.type) { + case 1: + e.param1 && t.mAYZL.ins().open(e.param1); + break; + case 2: + e.param1 && t.mAYZL.ins().open(e.param1), e.param2 && t.mAYZL.ins().open(e.param2); + break; + case 3: + e.param1 && e.param2 && t.mAYZL.ins().open(e.param1, e.param2); + break; + case 4: + t.bfhrJ.ins().sendGuildInfo(!0); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityWarTaskItemView = e), __reflect(e.prototype, "app.ActivityWarTaskItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.tabConf = this.data), (this.labelDisplay.text = this.tabConf.tabname), this.setRedDot(); + }), + (e.prototype.setRedDot = function () { + var t = "TQkyOx.post_25_4", + e = "ActivityWarData.findActRedState"; + (this.redDot.param = this.tabConf.ID), (this.redDot.updateShowFunctions = e), (this.redDot.showMessages = t); + }), + e + ); + })(t.BaseItemRender); + (t.ActivityWarTaskTabItemView = e), __reflect(e.prototype, "app.ActivityWarTaskTabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityCommonViewSkin"), (i.name = "ActivityWarTipsView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e[0]) { + var n = e[0], + s = t.zlkp.replace(t.CrmPU.language_War_Text21, n); + this.strLab.textFlow = t.hETx.qYVI(s); + } + this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWarTipsView = e), __reflect(e.prototype, "app.ActivityWarTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.pageCount = 7), + (i.pageNums = 7), + (i.pageContentLen = 60), + (i.crrentPage = 0), + (i.warAwardPageDic = {}), + (i.lastIndex = 0), + (i.selectIdx = 0), + (i.skinName = "ActivityWarViewSkin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.warAwardArr = new eui.ArrayCollection()), + (this.warTaskArr = new eui.ArrayCollection()), + (this.listWar.itemRenderer = t.ActivityWarItemView), + (this.listWar.dataProvider = this.warAwardArr), + (this.shopList = new eui.ArrayCollection()), + this.bindShopList(), + t.ActivityWarData.ins().getConfigList(); + }), + (i.prototype.bindTabBar = function () { + var e = t.VlaoF.Activity15Config, + i = Object.keys(e); + this.vKruVZ(this.rewardButton, this.onClickButton), + this.vKruVZ(this.taskButton, this.onClickButton), + this.vKruVZ(this.shopButton, this.onClickButton), + (this.rewardDot.param = this.actId), + (this.rewardDot.updateShowFunctions = "ActivityWarData.findActRedState"), + (this.rewardDot.showMessages = "TQkyOx.post_25_4"), + (this.taskDot.param = i), + (this.taskDot.updateShowFunctions = "ActivityWarData.findActRedState"), + (this.taskDot.showMessages = "TQkyOx.post_25_4"); + }), + (i.prototype.onClickButton = function (t) { + var e = t.currentTarget; + switch (e) { + case this.rewardButton: + this.selectIdx = 0; + break; + case this.taskButton: + this.selectIdx = 1; + break; + case this.shopButton: + this.selectIdx = 2; + } + this.updateView(); + }), + (i.prototype.updateView = function () { + 0 == this.selectIdx + ? ((this.tabBarMenu.visible = !1), + (this.tabBarMenu.height = 0), + (this.group_award.visible = !0), + (this.group_task.visible = !1), + (this.group_shop.visible = !1), + t.TQkyOx.ins().send_25_2(this.actId)) + : 1 == this.selectIdx + ? ((this.tabBarMenu.visible = !0), + (this.tabBarMenu.height = 40 * this.tabBarMenu.dataProvider.length), + (this.group_award.visible = !1), + (this.group_task.visible = !0), + (this.group_shop.visible = !1), + t.mAYZL.ins().close(t.ActivityWarGiftAdvView), + t.TQkyOx.ins().send_25_2(this.tabBarMenu.selectedItem.ID)) + : 2 == this.selectIdx && + ((this.tabBarMenu.visible = !1), + (this.tabBarMenu.height = 0), + t.ShopMgr.ins().sendShopList(6, 1), + (this.group_award.visible = !1), + (this.group_task.visible = !1), + (this.group_shop.visible = !0), + t.mAYZL.ins().close(t.ActivityWarGiftAdvView)), + (this.rewardButton.currentState = 0 == this.selectIdx ? "down" : "up"), + (this.taskButton.currentState = 1 == this.selectIdx ? "down" : "up"), + (this.shopButton.currentState = 2 == this.selectIdx ? "down" : "up"); + }), + (i.prototype.updateShopList = function () { + 6 == t.ShopMgr.ins().shopType && this.shopList.replaceAll(t.ShopMgr.ins().getShopList()); + }), + (i.prototype.changeMoney = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) { + var i = e.propSet, + n = t.ZAJw.sztgR(ZnGy.warNumber); + this.warNum.text = n[0] + ":" + t.CommonUtils.zhuanhuan(i.getWarCurrency()); + } else this.warNum.text = "0"; + }), + (i.prototype.updateBuyGoods = function (e) { + var i = e[0], + n = e[1], + s = e[2], + a = e[3]; + if (n && s > 0) { + for (var r in this.shopList.source) + if (this.shopList.source[r].shopId == i) { + (this.shopList.source[r].buyCountNum = a), (this.shopList.source[r].buyLimitNum = s), this.shopList.replaceAll(this.shopList.source); + break; + } + } + i > 0 && t.mAYZL.ins().ZbzdY(t.ShopBatchBuyView) && t.mAYZL.ins().close(t.ShopBatchBuyView); + }), + (i.prototype.bindOptTabBar = function () { + var e = this.getTabList(); + this.tabBarMenu.itemRenderer = t.ActivityWarTaskTabItemView; + var i = new eui.ArrayCollection(e); + this.tabBarMenu.dataProvider = i; + }), + (i.prototype.bindTaskView = function () { + (this.list_task.itemRenderer = t.ActivityWarTaskItemView), (this.list_task.dataProvider = this.warTaskArr); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.group_task.visible = !1), t.MouseScroller.bind(this.scroller), t.MouseScroller.bind(this.scrollerShop); + t.VlaoF.Activity14Config; + (this.actId = t.TQkyOx.ins().warActId), + this.bindTaskView(), + this.changeMoney(), + this.bindTabBar(), + this.bindOptTabBar(), + e && e[0] >= 0 ? (this.selectIdx = e[0]) : (this.selectIdx = 0), + (this.lastIndex = this.tabBarMenu.selectedIndex = 0), + this.updateView(), + this.updateData(), + this.tabBarMenu.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnActVoucher, this.onClick), + this.vKruVZ(this.btnFastBuy, this.onClick), + this.vKruVZ(this.btnGetCredit, this.onClick), + this.vKruVZ(this.btnHelp, this.onClick), + this.vKruVZ(this.btnLeft, this.onClick), + this.vKruVZ(this.btnOnekeyGet, this.onClick), + this.vKruVZ(this.btnRight, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateData), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateData25_4), + this.HFTK(t.ShopMgr.ins().post_onReceiveshopList, this.updateShopList), + this.HFTK(t.ShopMgr.ins().post_onReceivesBuyGoods, this.updateBuyGoods), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.changeMoney), + (this.rewardButton.currentState = 0 == this.selectIdx ? "down" : "up"), + (this.taskButton.currentState = 1 == this.selectIdx ? "down" : "up"), + (this.shopButton.currentState = 2 == this.selectIdx ? "down" : "up"); + }), + (i.prototype.bindShopList = function () { + (this.gList.itemRenderer = t.WarShopItemView), (this.gList.useVirtualLayout = !0), (this.gList.dataProvider = this.shopList); + }), + (i.prototype.updateData25_4 = function () { + t.ActivityWarData.ins().getConfigList(), this.updateData(); + }), + (i.prototype.updateData = function () { + if (0 == this.selectIdx) { + if (((this.actInfo = t.TQkyOx.ins().getActivityInfo(this.actId)), this.actInfo && this.actInfo.info)) { + var e = this.actInfo.endTime - Math.floor(t.GlobalData.serverTime / 1e3); + this.lbTimer.text = t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18); + } + this.setWarAwardPage(); + } else this.initWarTaskData(); + }), + (i.prototype.onClick = function (e) { + var i = e.currentTarget; + switch (i) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btnActVoucher: + t.mAYZL.ins().open(t.ActivityWarGiftAdvView); + break; + case this.btnGetCredit: + (this.group_shop.visible = !1), (this.group_award.visible = !1), (this.group_task.visible = !0), (this.selectIdx = 1), this.updateView(); + break; + case this.btnOnekeyGet: + var n = t.ActivityWarData.ins().getSetConfig(), + s = t.VlaoF.BagRemainConfig[n.bagremain]; + if (s) { + var a = t.ThgMu.ins().getBagCapacity(s.bagremain); + a ? t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cWarOneKeyGetAward) : t.uMEZy.ins().IrCm(s.bagtips); + } + break; + case this.btnFastBuy: + this.actInfo = t.TQkyOx.ins().getActivityInfo(this.actId); + var r = this.actInfo.info.tokenLv; + if (r >= t.ActivityWarData.ins().getWarMaxLv()) return void t.uMEZy.ins().IrCm(t.CrmPU.language_War_Text22); + t.mAYZL.ins().open(t.ActivityWarGiftAdvGoodsView); + break; + case this.btnLeft: + this.prePage(); + break; + case this.btnRight: + this.nextPage(); + } + }), + (i.openCheck = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.TQkyOx.ins().warActId; + if (0 != n) { + var s = t.TQkyOx.ins().getActivityInfo(n); + if (s) return !0; + } + return !1; + }), + (i.prototype.getTabList = function () { + var e = t.VlaoF.Activity14tabConfig, + i = []; + for (var n in e) + if (e[Number(n)]) { + var s = t.TQkyOx.ins().getActivityInfo(Number(n)); + s && i.push(e[n]); + } + return i; + }), + (i.prototype.setWarAwardPage = function () { + if (this.actInfo && this.actInfo.info) { + var e = t.ActivityWarData.ins().configList; + this.lbVoucherLv.text = this.actInfo.info.tokenLv + ""; + var i = this.actInfo.info.tokenLv == t.ActivityWarData.ins().getWarMaxLv() ? this.actInfo.info.tokenLv : this.actInfo.info.tokenLv + 1, + n = t.ActivityWarData.ins().getFindlvItem(i), + s = this.actInfo.info.goldState; + (this.imageRed.source = s ? "zl_hd_2" : "zl_hd_4"), + (this.imgGold.filters = s ? null : t.FilterUtil.ARRAY_GRAY_FILTER), + (this.pbTaskInt.labelFunction = function (t, e) { + return t + "/" + e; + }), + this.setRedDot(), + (this.pbTaskInt.maximum = n.data.accumulate), + (this.pbTaskInt.value = this.actInfo.info.score), + (this.pageContentLen = e.length), + (this.pageNums = Math.ceil(this.pageContentLen / this.pageCount)); + for (var a = 0; a < this.pageNums; a++) { + for (var r = [], o = a * this.pageCount; o < (a + 1) * this.pageCount && o < e.length; o++) r.push(e[o]); + this.warAwardPageDic[a] = r; + } + this.initWarData(); + } + }), + (i.prototype.setRedDot = function () { + var e = "TQkyOx.post_25_4", + i = "ActivityWarData.findActRedState"; + (this.redDot.param = t.TQkyOx.ins().warActId), (this.redDot.updateShowFunctions = i), (this.redDot.showMessages = e); + }), + (i.prototype.prePage = function () { + this.crrentPage--, this.updateWarData(), this.setPageBtnState(); + }), + (i.prototype.nextPage = function () { + this.crrentPage++, this.updateWarData(), this.setPageBtnState(); + }), + (i.prototype.setPageBtnState = function () { + 0 == this.crrentPage && (this.btnLeft.visible = !1), + this.crrentPage + 1 == this.pageNums && (this.btnRight.visible = !1), + this.crrentPage > 0 && (this.btnLeft.visible = !0), + this.crrentPage + 1 < this.pageNums && (this.btnRight.visible = !0); + }), + (i.prototype.updateWarData = function () { + var t = []; + for (var e in this.warAwardPageDic[this.crrentPage]) t.push(this.warAwardPageDic[this.crrentPage][e]); + this.warAwardArr.source = t; + }), + (i.prototype.initWarData = function () { + (this.crrentPage = this.findAwardArr()), this.warAwardArr.replaceAll(this.warAwardPageDic[this.crrentPage]), this.setPageBtnState(); + }), + (i.prototype.findAwardArr = function () { + var t = -1, + e = -1, + i = this.actInfo && this.actInfo.info && this.actInfo.info.goldState; + for (var n in this.warAwardPageDic) + for (var s = this.warAwardPageDic[n], a = 0, r = s; a < r.length; a++) { + var o = r[a]; + 2 == o.state && 0 > t && (t = Number(n)), i && 2 == o.state1 && 0 > e && (e = Number(n)); + } + if (t > -1 || e > -1) return t > -1 && e > -1 ? Math.min(t, e) : Math.max(t, e); + for (var n in this.warAwardPageDic) + for (var s = this.warAwardPageDic[n], l = 0, h = s; l < h.length; l++) { + var o = h[l]; + 0 == o.state && o.data.rewardA && 0 > t && (t = Number(n)), i && 0 == o.state1 && 0 > e && (e = Number(n)); + } + return -1 == t && -1 == e ? 0 : t > -1 && e > -1 ? Math.min(t, e) : Math.max(t, e); + }), + (i.prototype.getWarTaskIndex = function () { + for (var t = 0; t < this.tabBarMenu.numElements; t++) { + var e = this.tabBarMenu.getVirtualElementAt(t); + if (e && e.itemIndex == this.lastIndex) return e.tabConf; + } + }), + (i.prototype.initWarTaskData = function () { + var e = this.getWarTaskIndex(); + this.warTaskArr.replaceAll(t.ActivityWarData.ins().getTaskCnfList(e.ID)), + (this.pbTask.labelFunction = function (t, e) { + return t + "/" + e; + }); + var i = t.ActivityWarData.ins().getTaskCnfList(e.ID)[0]; + this.pbTask.maximum = i && i.data.UpperLimit[0]; + var n = t.ActivityWarData.ins().getTaskDayScore(e.ID); + (this.pbTask.value = n), (this.lbTaskDesc.text = e.describe); + }), + (i.prototype.onBarItemTap = function (e) { + this.warTaskArr.removeAll(), + this.scroller.stopAnimation(), + this.scroller.viewport.validateNow(), + (this.scroller.viewport.scrollV = 0), + (this.lastIndex = e.itemIndex), + t.TQkyOx.ins().send_25_2(e.item.ID), + this.initWarTaskData(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + this.tabBarMenu.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.btnActVoucher, this.onClick), + this.fEHj(this.btnFastBuy, this.onClick), + this.fEHj(this.btnGetCredit, this.onClick), + this.fEHj(this.btnHelp, this.onClick), + this.fEHj(this.btnLeft, this.onClick), + this.fEHj(this.btnOnekeyGet, this.onClick), + this.fEHj(this.btnRight, this.onClick), + t.mAYZL.ins().close(t.ActivityWarGiftAdvView), + t.ObjectPool.wipe(this.warAwardPageDic), + this.warTaskArr.removeAll(), + (this.warTaskArr = null), + this.warAwardArr.removeAll(), + (this.warAwardArr = null), + (this.warAwardPageDic = null), + t.MouseScroller.unbind(this.scroller), + t.MouseScroller.unbind(this.scrollerShop), + t.ActivityWarData.ins().removeConfig(), + t.mAYZL.ins().ZbzdY(t.ActivityWarGiftAdvGoodsView) && t.mAYZL.ins().close(t.ActivityWarGiftAdvGoodsView), + e.prototype.close.call(this, i), + this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWarView = e), __reflect(e.prototype, "app.ActivityWarView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.barText.text = this.data.str), this.setRedDot(); + }), + (e.prototype.setRedDot = function () { + var t = "TQkyOx.post_25_4", + e = "ActivityWarData.findActRedState"; + (this.redDot.param = this.data.actId), (this.redDot.updateShowFunctions = e), (this.redDot.showMessages = t); + }), + e + ); + })(t.BaseItemRender); + (t.ActWarTarBtnView = e), __reflect(e.prototype, "app.ActWarTarBtnView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.batchbuy = 0), (i.item = new Object()), (i.hot = new t.ShopHotView()), (i.buyBtn = new t.ShopBuyBtnView()), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.hot.x = this.hot.y = 0), + (this.buyBtn.x = 111), + (this.buyBtn.y = 85), + this.addChild(this.hot), + this.addChild(this.buyBtn), + this.vKruVZ(this.buyBtn, this.onClick), + this.VoZqXH(this.goodsItem, this.mouseMove), + this.EeFPm(this.goodsItem, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (i && this.itemId) { + var n = i.localToGlobal(), + s = t.VlaoF.StdItems[this.itemId]; + if (this.item.type > 0) return; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + n = null; + } + i = null; + } + }), + (i.prototype.onClick = function () { + var e = this; + if (this.batchbuy) { + var i = "" == this.numLb.text ? -1 : Number(this.numLb.text); + return 0 == i ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Shop_Limit_Txt) : void t.mAYZL.ins().open(t.ShopBatchBuyView, this.itemData.shopId, 6, 1, i); + } + var n = + "|C:0xFFFFFF&T:" + + t.CrmPU.language_Shop_Buy_Item_txt + + "|C:0xDBC789&T:" + + t.CommonUtils.overLength(this.item.price) + + this.item.moneyType + + "|C:0xFFFFFF&T:" + + t.CrmPU.language_System45 + + "|C:0xDBC789&T:" + + this.item.name + + "*" + + t.CommonUtils.overLength(this.item.count), + s = t.hETx.qYVI(n); + 3 == this.item.id || 4 == this.item.id + ? t.CautionView.show( + s, + function () { + t.ShopMgr.ins().sendBuyShop(6, 1, e.itemData.shopId, 0); + }, + this + ) + : t.ShopMgr.ins().sendBuyShop(6, 1, this.itemData.shopId, 0); + }), + (i.prototype.dataChanged = function () { + if (((this.itemData = this.data), null != this.itemData)) { + 0 == this.itemData.buyLimitNum + ? ((this.numTxt.visible = this.numLb.visible = !1), (this.numLb.text = "")) + : ((this.numTxt.text = t.CrmPU.language_Common_62), + (this.numTxt.visible = this.numLb.visible = !0), + -1 == this.itemData.buyLimitNum ? (this.numLb.text = "") : (this.numLb.text = "" + (this.itemData.buyLimitNum - this.itemData.buyCountNum))); + var e = t.ShopConfData.findShopCnf(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + this.buyBtn.labelDisplay.text = e && t.CommonUtils.overLength(e.price.count); + var i = e && { + type: e.price.type, + id: e.price.id, + }; + (this.buyBtn.iconDisplay.source = e && t.ShopConfData.convertItemIcon(i).icon.toString()), (this.countLb.text = e && t.CommonUtils.overLength(e.shop.count)); + var n = t.ShopConfData.findItemIcon(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + if ( + ((this.item.moneyType = e && t.VlaoF.NumericalIcon[e.price.type].name), + (this.item.id = e && t.VlaoF.NumericalIcon[e.price.type].id), + (this.item.price = e && e.price.count), + (this.item.count = e && e.shop.count), + (this.item.type = e && e.shop.type), + (this.batchbuy = e.batchbuy), + 0 == this.itemData.buySell) + ) + this.hot.visible = !1; + else if (((this.hot.visible = !0), (this.itemData.buySell = this.itemData.buySell < 10 ? 10 : this.itemData.buySell), this.itemData.buySell % 10 == 0 || this.itemData.buySell >= 100)) + this.hot.setState(!0), this.hot.setOddNum(this.itemData.buySell); + else { + this.hot.setState(!1); + var s = this.itemData.buySell.toString().split(""); + this.hot.setDualNum(s[0], s[1]); + } + n + ? ((this.itemId = n.id), (this.goodsItem.source = n.icon.toString()), (this.shopItemNameLb.text = n.name), (this.item.name = n.name)) + : (this.shopItemNameLb.text = t.CrmPU.language_Tips83), + (e = null), + t.ObjectPool.wipe(i), + (n = null); + } + }), + (i.prototype.destroy = function () { + for ( + this.buyBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.hot.destroy(), + this.buyBtn.destroy(), + this.data = null, + this.itemData = null, + this.buyBtn = null, + t.ObjectPool.wipe(this.item), + this.item = null, + this.hot = null; + this.gp.numChildren > 0; + + ) { + var e = this.gp.getChildAt(0); + e && (e = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.WarShopItemView = e), __reflect(e.prototype, "app.WarShopItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ActivityWlelfareCardItemView"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.labelDisplay.textFlow = t.hETx.qYVI(this.data[0]); + }), + i + ); + })(t.BaseItemRender); + (t.ActivityWlelfareCardItem = e), __reflect(e.prototype, "app.ActivityWlelfareCardItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = (null !== e && e.apply(this, arguments)) || this; + return (t.redDotActIdArr = [10005]), (t.isPast = 0), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.getRedPosArr = function (e) { + var i = t.TQkyOx.ins().getActivityInfo(e), + n = []; + if (i) for (var s = 1; 7 >= s; s++) n.push(t.MathUtils.getValueAtBit(i.redDot, s)); + return n; + }), + (i.prototype.getMonthCardPosArr = function (e) { + for ( + var i = t.NWRFmB.ins().getPayer.propSet.getMonthCardTimer(), + n = t.DateUtils.formatMiniDateTime(i) - t.GlobalData.serverTime, + s = t.NWRFmB.ins().getPayer.propSet.getBigDrugMonthCardTimer(), + a = t.NWRFmB.ins().getPayer.propSet.getBindCoin(), + r = t.DateUtils.formatMiniDateTime(s) - t.GlobalData.serverTime, + o = [], + l = t.NWRFmB.ins().getPayer.propSet.getVipState(), + h = 1; + 3 > h; + h++ + ) + o.push(t.MathUtils.getValueAtBit(l, h)); + for (var p = t.NWRFmB.ins().getPayer.propSet.getVipCardState(), u = [], h = 1; 5 > h; h++) u.push(t.MathUtils.getValueAtBit(p, h)); + var c = t.VlaoF.Activity10007Config[e]; + if (c) { + var g = c.type; + return 2 == g ? (0 == u[1] && n > 0 ? 1 : 0) : 1 == g ? (a >= 2e5 && 0 == o[0] ? 2 : 0) : 3 == g ? (0 == u[2] && r > 0 ? 1 : 0) : 4 == g ? (0 == u[3] && 1 == o[1] ? 1 : 0) : void 0; + } + }), + (i.prototype.getAllRedDotState = function () { + var e; + if (((e = t.TQkyOx.ins().getActivityInfo(t.ISYR.onlineRewardAid)), e && 0 != e.redDot)) return 1; + if (((e = t.TQkyOx.ins().getActivityInfo(t.ISYR.bossFirstKillAid)), e && 0 != e.redDot)) return 1; + if (((e = t.TQkyOx.ins().getActivityInfo(t.ISYR.equipFirstDropAid)), e && 0 != e.redDot)) return 1; + if (t.edHC.ins().getRedCashCow() > 0) return 1; + for (var i = 0, n = 0; n < this.redDotActIdArr.length; n++) { + var s = this.redDotActIdArr[n]; + if (((i = this.getMonthCardPosArr(s)), 1 == i)) break; + } + if (0 == i) + for (var n = 0; n < this.redDotActIdArr.length; n++) { + var s = this.redDotActIdArr[n]; + if (((i = this.getMonthCardPosArr(s)), 2 == i)) break; + } + return 1 == i || 1 == this.getSignRedPosState(10005) ? 1 : 2 == i || 2 == this.getSignRedPosState(10005) ? 2 : 0; + }), + (i.prototype.getSignRedPosState = function (t) { + var e = this.getRedPosArr(t), + i = e.lastIndexOf(1); + return e ? (1 == e[0] ? (0 == i ? 2 : 1) : i >= 0 ? 1 : 0) : 0; + }), + (i.prototype.getRedPosState = function (t) { + return t > 10005 ? i.ins().getMonthCardPosArr(t) : i.ins().getSignRedPosState(t); + }), + i + ); + })(t.DlUenA); + (t.ActivityWlelfareData = e), __reflect(e.prototype, "app.ActivityWlelfareData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.dayAwardInfo = []), + (i.vipCardStateArr = []), + (i.vipStateArr = []), + (i._helpDic = { + 10005: 68, + 10007: 64, + 10008: 66, + 10009: 65, + 10010: 67, + }), + (i.cashCowTimes = -1), + (i.cardBuytype = 1), + (i.skinName = "ActivityWlelfareViewSkin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.itemList.itemRenderer = t.ItemBase), (this.listCalenda.itemRenderer = t.SignItemView), (this.listCardDesc.itemRenderer = t.ActivityWlelfareCardItem); + }), + (i.prototype.open = function (e) { + (this.selectActivityId = e), + (this.infoGrp.visible = !1), + t.MouseScroller.bind(this.CalendaScroller), + this.vKruVZ(this.btnSign, this.onClick), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnGetGift, this.onClick), + this.vKruVZ(this.btnBuy, this.onClick), + this.vKruVZ(this.btnPaste, this.onClick), + this.vKruVZ(this.btnGetAward, this.onClick), + this.vKruVZ(this.btnCash, this.onClick), + this.tabBarMenu.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.tabItem.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onShowItemTap, this), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateCardData), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateCashCow), + this.HFTK(t.edHC.ins().post_26_83, this.updateCashCow), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCashCowRed), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCashCowRed), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCashCowRed), + this.vipDataInit(), + this.bindOptTabBar(), + this.bindAwardTabBar(); + if (this.selectActivityId) { + this.setDefaultTab(), this.setGroup(this.selectActivityId), this.setData(this.selectActivityId); + var i = t.VlaoF.ActivityWelfareConf, + q = !1; + for (var s in i) { + if (i[Number(s)]) { + if (!i[s].view || this.selectActivityId != i[s].actId) continue; + if (!t.mAYZL.ins().isCheckOpen(i[s].openlimit)) continue; + this.infoGrp.visible = !0; + this.setView(i[s].view, this.selectActivityId); + this.setObtTabRedDotState(); + q = !0; + break; + } + } + !q && t.mAYZL.ins().close(this); + } else { + t.TQkyOx.ins().send_25_2(t.ISYR.sign); + (this.tabBarMenu.selectedIndex = 0), this.setGroup(t.ISYR.sign), this.setData(t.ISYR.sign); + } + t.edHC.ins().send_26_68(), this.updateCashCow(), (this.cash_imgTree.visible = !0), (this.cash_effGrp.visible = !1), (this.cash_effGrp.touchEnabled = !1); + }), + (i.prototype.updateCode = function () { + var e = t.edHC.ins().codeState; + t.CrmPU.language_Wlelfare_Text4[e] ? t.uMEZy.ins().IrCm(t.CrmPU.language_Wlelfare_Text4[e]) : t.uMEZy.ins().IrCm("未知错误"); + }), + (i.prototype.setGroup = function (t) { + for (var e = this.getTabList(), i = 0; i < e.length; i++) { + var n = e[i]; + this["group_" + n.actId] && (this["group_" + n.actId].visible = !1); + } + (this.btnHelp.ruleId = this._helpDic[t]), (10008 == t || 10009 == t || 10010 == t) && (t = 10007), this["group_" + t] && (this["group_" + t].visible = !0); + }), + (i.prototype.setDefaultTab = function () { + for (var t = 0; t < this.tabBarMenu.numElements; t++) { + var e = this.tabBarMenu.getVirtualElementAt(t); + e && e.activityWelfareConf.actId == this.selectActivityId && (this.tabBarMenu.selectedIndex = e.itemIndex); + } + }), + (i.prototype.bindItemList = function (t) { + this.itemList.dataProvider = new eui.ArrayCollection(this.getAwawrdList(t)); + }), + (i.prototype.getAwardIndex = function (e) { + var i = t.VlaoF.Activity10005Config[t.ISYR.sign]; + return i[e].GiftNums; + }), + (i.prototype.getAwardSignArr = function () { + var e = t.VlaoF.Activity10005Config[t.ISYR.sign], + i = []; + for (var n in e) e[Number(n)] && i.push(e[n].GiftNums); + return i; + }), + (i.prototype.getTabList = function () { + var e = !0, + i = t.VlaoF.ActivityWelfareConf; + t.GlobalData.sectionOpenDay > 7 && 1 == this.vipStateArr[0] && (e = !1); + var n = []; + for (var s in i) + if (i[Number(s)]) { + if (10008 == i[s].actId && !e) continue; + if (!t.mAYZL.ins().isCheckOpen(i[s].openlimit)) continue; + n.push(i[s]); + } + var a = t.VlaoF.FunExhibitionConfig[26]; + return ( + t.mAYZL.ins().isCheckOpen(a.isOpenNeed) && + n.push({ + Id: n.length + 1, + name: t.CrmPU.language_Common_218, + actId: "yqs", + }), + n + ); + }), + (i.prototype.getAwawrdTabList = function () { + var e = t.VlaoF.Activity10005Config[t.ISYR.sign], + i = []; + for (var n in e) + if (e[Number(n)]) { + var s = { + tabName: "" + t.CrmPU.language_Wlelfare_Text3 + e[n].GiftNums + t.CrmPU.language_Wlelfare_Text5, + signNum: e[n].GiftNums, + index: n, + }; + i.push(s); + } + return i; + }), + (i.prototype.getAwawrdList = function (e) { + var i = t.VlaoF.Activity10005Config[t.ISYR.sign], + n = []; + for (var s in i) i[Number(s)] && e == i[s].GiftNums && (n = i[Number(s)].GiftTable); + return n; + }), + (i.prototype.bindOptTabBar = function () { + var e = this.getTabList(); + (this.tabBarMenu.itemRenderer = t.SignShowTabItemView), (this.tabList = new eui.ArrayCollection(e)), (this.tabBarMenu.dataProvider = this.tabList); + }), + (i.prototype.bindAwardTabBar = function () { + var e = this.getAwawrdTabList(); + this.tabItem.itemRenderer = t.SignAwardTabItem; + var i = new eui.ArrayCollection(e); + this.tabItem.dataProvider = i; + }), + (i.prototype.updateCashCow = function () { + var e = t.VlaoF.MoneytreeconstConfig; + if (((this.cash_txtCondition.textFlow = t.hETx.qYVI(e.ruledisplay)), t.mAYZL.ins().isCheckOpen(e.limit))) { + var i = t.edHC.ins().cashCowData.times, + n = t.zlkp.replace(t.CrmPU.language_Common_220, i), + s = (t.NWRFmB.ins().getPayer, t.VipData.ins().getMyVipLv()), + a = t.CommonUtils.objectToArray(e.times); + a[s] > a[0] && (n += t.zlkp.replace(t.CrmPU.language_Common_225, a[s] - a[0])), (this.cash_txtTime.textFlow = t.hETx.qYVI(n)); + var r = e.cost2; + r && ((this.cash_txtCost.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_221, r[0].count))), (this.cast_imgCost.source = t.ZAJw.getMoneyIcon(r[0].type) + "")); + var o = t.GlobalData.sectionOpenDay, + l = t.VlaoF.MoneytreeRewardConfig, + h = void 0; + for (var p in l) o >= l[p].Opendaylimit && (!h || h.Opendaylimit < l[p].Opendaylimit) && (h = l[p]); + if (h) + for (var p in h.reward) + 2 == h.reward[p].type && + ((this.cash_txtAward.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_219, h.reward[p].count))), (this.cash_imgAward.source = t.ZAJw.getMoneyIcon(h.reward[p].type) + "")); + this.cashCowTimes > -1 && this.cashCowTimes > i && this.playCashEffect(), + (this.cashCowTimes = i), + (this.cash_txtCondition.visible = !1), + (this.cash_txtAward.visible = !0), + (this.cash_txtCost.visible = !0), + (this.cash_txtTime.visible = !0), + (this.cast_imgCost.visible = !0), + (this.cash_imgAward.visible = !0), + (this.btnCash.visible = !0), + this.updateCashCowRed(); + } else + (this.cash_txtCondition.visible = !0), + (this.cash_txtAward.visible = !1), + (this.cash_txtCost.visible = !1), + (this.cash_txtTime.visible = !1), + (this.cast_imgCost.visible = !1), + (this.cash_imgAward.visible = !1), + (this.btnCash.visible = !1), + (this.cash_redPoint.visible = !1); + }), + (i.prototype.playCashEffect = function () { + var e = this; + (e.cash_imgTree.visible = !1), + (e.cash_effGrp.visible = !0), + this.cashCowMc || ((this.cashCowMc = t.ObjectPool.pop("app.MovieClip")), this.cash_effGrp.addChild(this.cashCowMc)), + this.cashCowMc.isPlaying || + this.cashCowMc.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_fcs", + 2, + function () { + (e.cash_imgTree.visible = !0), (e.cash_effGrp.visible = !1); + }, + !1 + ); + }), + (i.prototype.updateCashCowRed = function () { + this.cash_redPoint.visible = t.edHC.ins().getRedCashCow() > 0; + }), + (i.prototype.onBarItemTap = function (e) { + var i = e.item; + this.selectActivityId != i.actId && + ((this.infoGrp.visible = !1), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()), + (this.selectActivityId = i.actId), + this.setGroup(this.selectActivityId), + this.setData(this.selectActivityId), + (this.bgImg2.visible = this.bgImg1.visible = !0), + i.view && ((this.bgImg2.visible = this.bgImg1.visible = !1), (this.infoGrp.visible = !0), this.setView(i.view, this.selectActivityId)), + this.setObtTabRedDotState(), + "yqs" == this.selectActivityId && ((this.bgImg2.visible = this.bgImg1.visible = !1), (t.edHC.ins().redCashCowOnce = !1), this.updateCashCowRed())); + }), + (i.prototype.onShowItemTap = function (t) { + var e = t.item; + (this.lastItemIndex = e.index), + this.bindItemList(e.signNum), + (this.awawardIndex = this.getAwardIndex(this.lastItemIndex)), + (this.imgYiGet.visible = Boolean(this.dayAwardInfo[this.awawardIndex])), + (this.btnGetGift.visible = !Boolean(this.dayAwardInfo[this.awawardIndex])), + this.setItemState(); + }), + (i.prototype.setItemState = function () { + (this.imgYiGet.visible = Boolean(this.dayAwardInfo[this.awawardIndex])), + (this.btnGetGift.visible = !Boolean(this.dayAwardInfo[this.awawardIndex])), + (this.btnGetGift.label = t.CrmPU.language_Wlelfare_Text1), + (this.btnGetGift.enabled = !1), + !this.dayAwardInfo[this.awawardIndex] && + (this.actInfo && this.actInfo.info.signdays) >= this.awawardIndex && + ((this.btnGetGift.label = t.CrmPU.language_Wlelfare_Text2), (this.btnGetGift.enabled = !0)); + }), + (i.prototype.updateInfo = function () { + this.actInfo = t.TQkyOx.ins().getActivityInfo(t.ISYR.sign); + if (this.actInfo && this.signArrs) { + for (var e = parseInt(this.actInfo.info.signStates).toString(2), i = (parseInt(this.actInfo.info.awardStates).toString(2), []), n = 1; 32 >= n; n++) + i.push(t.MathUtils.getValueAtBit(this.actInfo.info.signStates, n)); + this.dayAwardInfo = []; + for (var n = 1; 27 >= n; n++) this.dayAwardInfo.push(t.MathUtils.getValueAtBit(this.actInfo.info.awardStates, n)); + for (var s = e.split("").reverse(), a = 0; a < this.signArrs.source.length; a++) { + var r = this.signArrs.source[a]; + r.noCurDay || ("1" == s[r.day] && (r.state = 1)); + } + this.signArrs.refresh(), this.listCalenda.validateNow(), (this.bmpLb_signNum.text = t.CrmPU.language_Omission_txt128 + this.actInfo.info.signdays + t.CrmPU.language_Time_Days); + for (var o = this.getAwardSignArr(), n = 0; n < o.length; n++) + if (0 == this.dayAwardInfo[o[n]]) { + this.awawardIndex = o[n]; + break; + } + null == this.awawardIndex && (this.awawardIndex = o[0]), this.setItemState(), this.setDefaultItemTab(this.awawardIndex), this.bindItemList(this.awawardIndex); + for (var l = t.TQkyOx.ins().getActivityInfo(t.ISYR.sign), h = [], n = 1; 7 >= n; n++) h.push(t.MathUtils.getValueAtBit(l.redDot, n)); + this.setObtTabRedDotState(), this.setItemTabRedDotState(); + for (var n = 1; n < h.length; n++) + if (1 == h[n]) { + this.setDefaultItemTabRedDotState(o[n - 1]); + break; + } + } + }), + (i.prototype.setObtTabRedDotState = function () { + for (var e = 0; e < this.tabBarMenu.numElements; e++) { + var i = this.tabBarMenu.getVirtualElementAt(e), + n = i.activityWelfareConf.actId; + n == t.ISYR.sign || t.ISYR.onlineRewardAid == n || t.ISYR.bossFirstKillAid == n || t.ISYR.equipFirstDropAid == n ? i.setRedDot() : "yqs" == n && i.setRedDot2(); + } + }), + (i.prototype.setItemTabRedDotState = function () { + for (var t = 0; t < this.tabItem.numElements; t++) { + var e = this.tabItem.getVirtualElementAt(t); + e && (e.redPoint.visible = !1); + } + }), + (i.prototype.setDefaultItemTabRedDotState = function (t) { + for (var e = 0; e < this.tabItem.numElements; e++) { + var i = this.tabItem.getVirtualElementAt(e); + i && i.signData.signNum == t && (i.redPoint.visible = !0); + } + }), + (i.prototype.setDefaultItemTab = function (t) { + for (var e = 0; e < this.tabItem.numElements; e++) { + var i = this.tabItem.getVirtualElementAt(e); + i && i.signData.signNum == t && (this.tabItem.selectedIndex = i.itemIndex); + } + }), + (i.prototype.setData = function (e) { + if (e == t.ISYR.sign) this.setSignData(); + else if (10007 == e || 10008 == e || 10009 == e || 10010 == e) { + this.updateCardData(); + var i = t.VlaoF.Activity10007Config[this.selectActivityId]; + if (!i) return; + this.listCardDesc.dataProvider = new eui.ArrayCollection(i.name); + } + }), + (i.prototype.setView = function (t, e) { + var i = egret.getDefinitionByName(t); + i && + ((this.curPanel = new i()), + this.curPanel && ((this.curPanel.left = 0), (this.curPanel.right = 0), (this.curPanel.top = 0), (this.curPanel.bottom = 0), this.infoGrp.addChild(this.curPanel), this.curPanel.open(e))); + }), + (i.prototype.setSignData = function () { + for ( + var e = [], + i = new Date(t.GlobalData.serverTime), + n = (i.getFullYear(), i.getMonth(), i.getDate(), i.getFullYear()), + s = i.getMonth() + 1, + a = new Date(n, s, 0), + r = a.getDate(), + o = new Date(n, s - 1, 1), + l = (o.getDay(), new Date(n, s - 1, 0)), + h = (l.getDate(), 1); + r >= h; + h++ + ) { + var p = new t.ActivityWlelfareData(); + (p.day = h), + n === i.getFullYear() && s === i.getMonth() + 1 && i.getDate() > h ? (p.isPast = 1) : n === i.getFullYear() && s === i.getMonth() + 1 && i.getDate() < h && (p.isPast = 2), + n === i.getFullYear() && s === i.getMonth() + 1 && i.getDate() === h && (p.today = 1), + e.push(p); + } + (this.signArrs = new eui.ArrayCollection(e)), (this.listCalenda.dataProvider = this.signArrs), (this.bmpLb_curM.text = s + t.CrmPU.language_Time_Months), this.updateInfo(); + }), + (i.prototype.parsteCode = function () { + var t = this; + if (navigator.clipboard) { + var e = navigator.clipboard.readText(); + e && + navigator.clipboard + .readText() + .then(function (e) { + t.InputCode.text = e; + }) + ["catch"](function (t) { + console.error("Failed to read clipboard contents: ", t); + }); + } + }), + (i.prototype.updateCardData = function () { + var e = t.VlaoF.Activity10007Config[this.selectActivityId]; + e && + (this.vipDataInit(), + (this.imgMonthCardTitle.source = e.titleIcon), + (this.imgCardIcon.source = e.bg), + (this.cardBuytype = e.type), + 1 == e.countdown ? ((this.imgMonthCardDay.source = "yk_30tian"), (this.lbDay.visible = !0)) : ((this.imgMonthCardDay.source = "yk_30tian2"), (this.lbDay.visible = !1)), + (this.monthCardTimer = t.NWRFmB.ins().getPayer.propSet.getMonthCardTimer()), + (this.bigDrugMonthCardTimer = t.NWRFmB.ins().getPayer.propSet.getBigDrugMonthCardTimer()), + 10007 == this.selectActivityId + ? ((this.cardTimer = t.DateUtils.formatMiniDateTime(this.monthCardTimer) - t.GlobalData.serverTime), this.cardTimer <= 0 ? (this.lbDay.visible = !1) : (this.lbDay.visible = !0)) + : 10009 == this.selectActivityId && + ((this.cardTimer = t.DateUtils.formatMiniDateTime(this.bigDrugMonthCardTimer) - t.GlobalData.serverTime), this.cardTimer <= 0 ? (this.lbDay.visible = !1) : (this.lbDay.visible = !0)), + (this.lbDay.text = t.CrmPU.language_Common_104 + t.DateUtils.getFormatBySecond(Math.floor(this.cardTimer / 1e3), t.DateUtils.TIME_FORMAT_7)), + this.setMonthState(e.buttontxt)); + }), + (i.prototype.vipDataInit = function () { + var e = t.NWRFmB.ins().getPayer.propSet.getVipState(); + this.vipStateArr = []; + for (var i = 1; 3 > i; i++) this.vipStateArr.push(t.MathUtils.getValueAtBit(e, i)); + var n = t.NWRFmB.ins().getPayer.propSet.getVipCardState(); + this.vipCardStateArr = []; + for (var i = 1; 5 > i; i++) this.vipCardStateArr.push(t.MathUtils.getValueAtBit(n, i)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnSign: + t.TQkyOx.ins().send_25_1(t.ISYR.sign, t.Operate.cSign); + break; + case this.btnGetGift: + var i = t.VlaoF.BagRemainConfig[4]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? t.TQkyOx.ins().send_25_1(t.ISYR.sign, t.Operate.cBuy, [this.awawardIndex]) : t.uMEZy.ins().IrCm(i.bagtips); + } + break; + case this.btnBuy: + 1 == this.cardBuytype + ? 0 == this.vipStateArr[0] && t.edHC.ins().send_26_61(this.cardBuytype) + : 2 == this.cardBuytype + ? 0 == this.vipCardStateArr[1] && (this.cardTimer > 0 ? this.buyTips(this.cardBuytype) : t.edHC.ins().send_26_61(this.cardBuytype)) + : 3 == this.cardBuytype + ? 0 == this.vipCardStateArr[2] && (this.cardTimer > 0 ? this.buyTips(this.cardBuytype) : t.edHC.ins().send_26_61(this.cardBuytype)) + : 4 == this.cardBuytype && (0 == this.vipStateArr[1] ? t.edHC.ins().send_26_61(this.cardBuytype) : 0 == this.vipCardStateArr[3] && this.buyTips(this.cardBuytype)); + break; + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btnPaste: + this.parsteCode(); + break; + case this.btnGetAward: + if ("" == this.InputCode.text.trim() || this.InputCode.text.length < 5) return; + t.edHC.ins().send_26_63(this.InputCode.text); + break; + case this.btnCash: + var s = t.VlaoF.MoneytreeconstConfig; + t.mAYZL.ins().isCheckOpen(s.limit) ? (t.edHC.ins().cashCowData.times <= 0 ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips65) : t.edHC.ins().send_26_69()) : t.uMEZy.ins().IrCm(s.ruledisplay); + } + }), + (i.prototype.buyTips = function (e) { + var i = t.VlaoF.BagRemainConfig[4]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? t.edHC.ins().send_26_62(e) : t.uMEZy.ins().IrCm(i.bagtips); + } + }), + (i.prototype.setMonthState = function (e) { + 1 == this.cardBuytype + ? 0 == this.vipStateArr[0] + ? ((this.btnBuy.label = e), (this.btnBuy.enabled = !0)) + : ((this.btnBuy.label = t.CrmPU.language_Wlelfare_Text6), (this.btnBuy.enabled = !1)) + : 2 == this.cardBuytype + ? 0 == this.vipCardStateArr[1] + ? (this.cardTimer > 0 ? (this.btnBuy.label = t.CrmPU.language_Wlelfare_Text2) : (this.btnBuy.label = e), (this.btnBuy.enabled = !0)) + : ((this.btnBuy.label = t.CrmPU.language_Wlelfare_Text7), (this.btnBuy.enabled = !1)) + : 3 == this.cardBuytype + ? 0 == this.vipCardStateArr[2] + ? (this.cardTimer > 0 ? (this.btnBuy.label = t.CrmPU.language_Wlelfare_Text2) : (this.btnBuy.label = e), (this.btnBuy.enabled = !0)) + : ((this.btnBuy.label = t.CrmPU.language_Wlelfare_Text7), (this.btnBuy.enabled = !1)) + : 4 == this.cardBuytype && + (1 == this.vipStateArr[1] + ? this.vipCardStateArr[3] > 0 + ? ((this.btnBuy.label = t.CrmPU.language_Wlelfare_Text7), (this.btnBuy.enabled = !1)) + : ((this.btnBuy.enabled = !0), (this.btnBuy.label = t.CrmPU.language_Wlelfare_Text2)) + : ((this.btnBuy.label = e), (this.btnBuy.enabled = !0))); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()), + this.cashCowMc && (this.cashCowMc.destroy(), (this.cashCowMc = null)), + t.MouseScroller.unbind(this.CalendaScroller), + this.fEHj(this.btnSign, this.onClick), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.btnGetGift, this.onClick), + this.fEHj(this.btnBuy, this.onClick), + this.fEHj(this.btnPaste, this.onClick), + this.fEHj(this.btnGetAward, this.onClick), + this.fEHj(this.btnCash, this.onClick), + this.tabBarMenu.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.tabItem.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onShowItemTap, this), + this.signArrs && this.signArrs.removeAll(), + (this.signArrs = null), + (this.vipCardStateArr = []), + (this.vipStateArr = []), + (this.dayAwardInfo = []), + (this.dayAwardInfo = null), + (this.actInfo = null), + this.tabList.removeAll(), + (this.tabList = null); + }), + i + ); + })(t.gIRYTi); + (t.ActivityWlelfareView = e), __reflect(e.prototype, "app.ActivityWlelfareView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.signData = this.data), (this.labelDisplay.text = this.data.tabName); + }), + e + ); + })(t.BaseItemRender); + (t.SignAwardTabItem = e), __reflect(e.prototype, "app.SignAwardTabItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return t.vKruVZ(t, t.onClick), t; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + this.data.today && t.TQkyOx.ins().send_25_1(t.ISYR.sign, t.Operate.cSign); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this, this.onClick); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.VlaoF.SignPrizeConfig[this.data.day]; + if (e && e.prz) { + var i = e.prz[0]; + if (((this.itemCount.text = i.count), 0 == i.type)) { + var n = t.VlaoF.StdItems[i.id]; + n && (this.imgIcon.source = n.icon + ""); + } else { + var s = t.ZAJw.sztgR(i.type); + s && (this.imgIcon.source = s[1] + ""); + } + } + (this.curDay.visible = (this.data.isPast && 1 == this.data.isPast) || this.data.today ? !1 : !0), (this.imgIcon.alpha = this.data.isPast && 1 == this.data.isPast ? 0.6 : 1); + var a = new Date(t.GlobalData.serverTime), + r = a.getMonth() + 1; + (this.curDay.text = r + "月" + this.data.day + "日"), + (this.curDay.textColor = this.data.today ? 2682369 : 15064527), + (this.imgYiqiandao.source = this.data.state ? "flqd_qd1" : "flqd_qd2"), + (this.imgYiqiandao.visible = this.lastImg.visible = (this.data.isPast && 1 == this.data.isPast) || (this.data.today && this.data.state)), + (this.imgToday.visible = this.data.today), + (this.signLab.visible = this.data.today && !this.data.state); + } + }), + i + ); + })(t.BaseItemRender); + (t.SignItemView = e), __reflect(e.prototype, "app.SignItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.activityWelfareConf = this.data), (this.labelDisplay.text = this.activityWelfareConf.name); + }), + (i.prototype.setRedDot = function () { + if (this.data.view) { + var e = t.TQkyOx.ins().getActivityInfo(this.activityWelfareConf.actId); + e && (this.redDot.visible = 0 != e.redDot); + } else { + var i = "Nzfh.postPlayerChange", + n = "ActivityWlelfareData.getRedPosState"; + (this.redDot.param = this.activityWelfareConf.actId), (this.redDot.updateShowFunctions = n), (this.redDot.showMessages = i); + } + }), + (i.prototype.setRedDot2 = function () { + var t = "edHC.post_26_83;ThgMu.post_8_1;ThgMu.post_8_3;ThgMu.post_8_4", + e = "edHC.getRedCashCow"; + (this.redDot.updateShowFunctions = e), (this.redDot.showMessages = t); + }), + i + ); + })(t.BaseItemRender); + (t.SignShowTabItemView = e), __reflect(e.prototype, "app.SignShowTabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.PActivity = 1)] = "PActivity"), + (t[(t.Appraisal = 2)] = "Appraisal"), + (t[(t.PActivity3 = 3)] = "PActivity3"), + (t[(t.Worship = 4)] = "Worship"), + (t[(t.Inspire = 8)] = "Inspire"), + (t[(t.Tower = 9)] = "Tower"), + (t[(t.NightVoma = 11)] = "NightVoma"), + (t[(t.Material = 12)] = "Material"), + (t[(t.DefendTask = 13)] = "DefendTask"), + (t[(t.War = 14)] = "War"), + (t[(t.WarTask = 15)] = "WarTask"), + (t[(t.DonaTion = 16)] = "DonaTion"), + (t[(t.CrossServerChaos = 17)] = "CrossServerChaos"), + (t[(t.CrossServerNightVoma = 18)] = "CrossServerNightVoma"), + (t[(t.CrossServerBoss = 19)] = "CrossServerBoss"), + (t[(t.CrossServerShabak = 21)] = "CrossServerShabak"), + (t[(t.CrossServerWorship = 23)] = "CrossServerWorship"), + (t[(t.WorldBoss = 25)] = "WorldBoss"), + (t[(t.EscapeFromTrial = 26)] = "EscapeFromTrial"), + (t[(t.SecretLandTreasure = 28)] = "SecretLandTreasure"), + (t[(t.CumulativeRecharge = 10001)] = "CumulativeRecharge"), + (t[(t.Discount = 10002)] = "Discount"), + (t[(t.firstCharge = 10003)] = "firstCharge"), + (t[(t.sevenDay = 10004)] = "sevenDay"), + (t[(t.sign = 10005)] = "sign"), + (t[(t.investment = 10006)] = "investment"), + (t[(t.sports = 10009)] = "sports"), + (t[(t.openServerTreasure = 10010)] = "openServerTreasure"), + (t[(t.preferentialGift = 10015)] = "preferentialGift"), + (t[(t.exChangeAct = 10017)] = "exChangeAct"), + (t[(t.IndividualsSports = 10019)] = "IndividualsSports"), + (t[(t.GlobalTreasure = 10020)] = "GlobalTreasure"), + (t[(t.secondCharge = 10021)] = "secondCharge"), + (t[(t.onlineRewards = 10038)] = "onlineRewards"), + (t[(t.onlineRewardAid = 10408)] = "onlineRewardAid"), + (t[(t.bossFirstKillAid = 10148)] = "bossFirstKillAid"), + (t[(t.equipFirstDropAid = 10149)] = "equipFirstDropAid"); + })((e = t.ISYR || (t.ISYR = {}))); + var i; + !(function (t) { + (t[(t.cEnterFuBen = 1)] = "cEnterFuBen"), + (t[(t.cGetPhaseAward = 2)] = "cGetPhaseAward"), + (t[(t.cWorship = 3)] = "cWorship"), + (t[(t.cAppraisal = 4)] = "cAppraisal"), + (t[(t.cPersonBox = 5)] = "cPersonBox"), + (t[(t.cTreasure = 6)] = "cTreasure"), + (t[(t.cGetBonusNum = 7)] = "cGetBonusNum"), + (t[(t.cInspire = 8)] = "cInspire"), + (t[(t.cSign = 10)] = "cSign"), + (t[(t.cReceive = 11)] = "cReceive"), + (t[(t.cBuy = 12)] = "cBuy"), + (t[(t.cBuyInvestment = 13)] = "cBuyInvestment"), + (t[(t.cReceiveInvestment = 14)] = "cReceiveInvestment"), + (t[(t.cSportsReveive = 15)] = "cSportsReveive"), + (t[(t.cMaterialMopUp = 16)] = "cMaterialMopUp"), + (t[(t.cOpenServerTreasure = 17)] = "cOpenServerTreasure"), + (t[(t.cWarBuy = 18)] = "cWarBuy"), + (t[(t.cWarBuyLv = 19)] = "cWarBuyLv"), + (t[(t.cWarTask = 20)] = "cWarTask"), + (t[(t.cWarOneKeyGetAward = 21)] = "cWarOneKeyGetAward"), + (t[(t.cWarGetAward = 22)] = "cWarGetAward"), + (t[(t.cWarGetTaskScore = 23)] = "cWarGetTaskScore"), + (t[(t.cDonateRank = 24)] = "cDonateRank"), + (t[(t.cExchange = 25)] = "cExchange"), + (t[(t.cWarShop = 26)] = "cWarShop"), + (t[(t.cKuaFu = 28)] = "cKuaFu"), + (t[(t.sPostRankData = 1)] = "sPostRankData"), + (t[(t.sPostMyRankData = 2)] = "sPostMyRankData"), + (t[(t.sPostFubenResult = 4)] = "sPostFubenResult"), + (t[(t.sWorship = 5)] = "sWorship"), + (t[(t.sAppraisal = 6)] = "sAppraisal"), + (t[(t.sNextAwardIndex = 7)] = "sNextAwardIndex"), + (t[(t.sjingjiTime = 10)] = "sjingjiTime"), + (t[(t.sinspire = 12)] = "sinspire"), + (t[(t.sSendBonusNum = 11)] = "sSendBonusNum"), + (t[(t.sSendMonsterNum = 13)] = "sSendMonsterNum"), + (t[(t.szhenyingTime = 14)] = "szhenyingTime"), + (t[(t.sOpenServerTreasure = 16)] = "sOpenServerTreasure"), + (t[(t.sDefendTask = 17)] = "sDefendTask"), + (t[(t.sWorldBossTime = 18)] = "sWorldBossTime"), + (t[(t.sDuoBaoTime = 19)] = "sDuoBaoTime"), + (t[(t.sWarUpdate = 21)] = "sWarUpdate"), + (t[(t.sShaBakRank = 23)] = "sShaBakRank"), + (t[(t.sShaBakMyRank = 24)] = "sShaBakMyRank"), + (t[(t.sShaBakNextReward = 25)] = "sShaBakNextReward"), + (t[(t.sKuaFu = 28)] = "sKuaFu"); + })((i = t.Operate || (t.Operate = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.actvityDatas = {}), + (i.pActvityDatas = {}), + (i.nextAward = 1), + (i.warActId = 0), + (i.YYClick = !1), + (i._crossServerActID = 0), + (i._warCurrency = 0), + (i.pActRed = {}), + (i.actRed = {}), + (i._currentActId = 0), + (i.towerMonsterNum = 0), + (i.towerBonusNum = 0), + (i.jingjiTime = 0), + (i.worldBossTime = 0), + (i.zhenyingTime = 0), + (i.resuleInfo = null), + (i.EscapeRoleNum = 0), + (i.EscapeRoleInfo = []), + (i.secretBoxScore = 0), + (i.wordsBoxScore = 0), + (i.materialsBoxScore = 0), + (i.sysId = t.jDIWJt.Actvity), + i.YrTisc(1, i.post_25_1), + i.YrTisc(2, i.post_25_2), + i.YrTisc(3, i.post_25_3), + i.YrTisc(4, i.post_25_4), + i.YrTisc(5, i.post_25_5), + i.YrTisc(6, i.post_25_6), + i.YrTisc(7, i.post_25_7), + i.YrTisc(8, i.post_25_8), + i.YrTisc(9, i.post_25_9), + i.YrTisc(10, i.post_25_10), + i.YrTisc(11, i.post_25_11), + i.YrTisc(12, i.post_25_12), + i.YrTisc(15, i.post_25_15), + (i.pActvityDatas = {}), + (i.actvityDatas = {}), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "crossServerActID", { + get: function () { + return this._crossServerActID; + }, + set: function (t) { + this._crossServerActID = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "warCurrency", { + get: function () { + return this._warCurrency; + }, + set: function (t) { + this._warCurrency = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "warShopInfo", { + get: function () { + return this._warShopInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_25_1 = function (e, i, n) { + void 0 === n && (n = null); + var s = this.getActivitConf(e); + if (s) { + var a = this.MxGiq(1); + a.writeInt(e), + a.writeByte(i), + n && + (s.ActivityType == t.ISYR.Appraisal || + s.ActivityType == t.ISYR.Worship || + s.ActivityType == t.ISYR.Inspire || + s.ActivityType == t.ISYR.CumulativeRecharge || + s.ActivityType == t.ISYR.Discount || + s.ActivityType == t.ISYR.preferentialGift || + s.ActivityType == t.ISYR.sign || + s.ActivityType == t.ISYR.sevenDay || + s.ActivityType == t.ISYR.investment || + s.ActivityType == t.ISYR.WarTask || + s.ActivityType == t.ISYR.firstCharge || + s.ActivityType == t.ISYR.exChangeAct || + s.ActivityType == t.ISYR.secondCharge + ? a.writeByte(n[0]) + : s.ActivityType == t.ISYR.War + ? n && (a.writeByte(n[0]), a.writeByte(n[1])) + : s.ActivityType == t.ISYR.DonaTion || s.ActivityType == t.ISYR.sports || t.ISYR.IndividualsSports + ? a.writeInt(n[0]) + : a.writeByte(n[0])), + this.evKig(a); + } + }), + (i.prototype.send_25_2 = function (t) { + var e = this.MxGiq(2); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.post_25_1 = function (e) { + (this.pActvityDatas = {}), (this.pActRed = {}); + for (var n, s = e.readShort(), a = e.position, r = 0; s > r; r++) { + if (((a += e.readUnsignedShort()), a > e.length)) { + t.CommonPopView.ins().showTextView("活动数据错误! 数据剩余长度不够!"); + break; + } + n = this.readData(e); + var o = i.ins().getActivityConfigById(n.id); + n.redDot && o && o.buttoncolor && 13 != n.id && 36 != n.id && (this.pActRed[n.id] = o.buttoncolor), + (this.pActvityDatas[n.id] = n), + a != e.position && (a < e.length ? (e.position = a) : t.CommonPopView.ins().showTextView("活动数据错误! Id:" + n.id)); + } + }), + (i.prototype.post_25_2 = function (e) { + (this.actvityDatas = {}), (this.actRed = {}); + for (var n, s = e.readShort(), a = e.position, r = 0; s > r; r++) { + if (((a += e.readUnsignedShort()), a > e.length)) { + t.CommonPopView.ins().showTextView("活动数据错误! 数据剩余长度不够!"); + break; + } + n = this.readData(e, 1); + if (n.redDot) { + var o = i.ins().getActivityConfigById(n.id); + o && o.buttoncolor && 13 != n.id && 28 != n.id && 29 != n.id && 30 != n.id && 31 != n.id && 32 != n.id && (this.actRed[n.id] = o.buttoncolor); + } + this.actvityDatas[n.id] = n; + a != e.position && (a < e.length ? (e.position = a) : t.CommonPopView.ins().showTextView("活动数据错误! Id:" + n.id)); + } + }), + (i.prototype.post_25_3 = function (t) { + var e = this.readData(t); + this.pActvityDatas[e.id] = e; + var n = i.ins().getActivityConfigById(e.id); + return e.redDot ? n && n.buttoncolor && 13 != e.id && 36 != e.id && (this.pActRed[e.id] = n.buttoncolor) : this.pActRed[e.id] && (this.pActRed[e.id] = e.redDot), e.id; + }), + (i.prototype.post_25_4 = function (t) { + var e = this.readData(t, 1); + if (((this.actvityDatas[e.id] = e), e.redDot)) { + var n = i.ins().getActivityConfigById(e.id); + n && n.buttoncolor && 13 != e.id && 28 != e.id && 29 != e.id && 30 != e.id && 31 != e.id && 32 != e.id && (this.actRed[e.id] = n.buttoncolor); + } else this.actRed[e.id] && (this.actRed[e.id] = e.redDot); + return e.id; + }), + (i.prototype.post_25_5 = function (t) { + var e = t.readUnsignedInt(); + return delete this.actvityDatas[e], delete this.pActvityDatas[e], delete this.actRed[e], delete this.pActRed[e], e; + }), + (i.prototype.readData = function (e, i) { + void 0 === i && (i = 0); + var n = new t.ActvityData(); + (n.id = e.readUnsignedInt()), + i && (n.openTime = Math.floor(t.GlobalFunc.formatMiniDateTime(e.readUnsignedInt()) / 1e3)), + (n.endTime = Math.floor(t.GlobalFunc.formatMiniDateTime(e.readUnsignedInt()) / 1e3)), + (n.redDot = e.readByte()); + var s, + a = this.getActivitConf(n.id), + r = []; + if (n.id == 10274) { + var sumMoney2 = e.readUnsignedInt(), + state2 = e.readByte(); + n.info = { + sum: sumMoney2, + state: state2, + }; + } + if (a) + switch (a.ActivityType) { + case t.ISYR.PActivity: + n.info = { + times: e.readInt(), + }; + break; + case t.ISYR.Appraisal: + s = e.readInt(); + for (var o = 0; s > o; o++) { + var l = new Object(); + (l.itemID = e.readByte()), (l.useNum = e.readInt()), (l.allNum = e.readInt()), r.push(l); + } + n.info = { + item: r, + }; + break; + case t.ISYR.Worship: + case t.ISYR.CrossServerWorship: + n.info = { + times: e.readInt(), + }; + break; + case t.ISYR.Inspire: + case t.ISYR.CrossServerBoss: + case t.ISYR.WorldBoss: + (s = e.readByte()), (r = []); + for (var o = 0; s > o; o++) { + var h = new Object(); + (h.type = e.readByte()), (h.value = e.readInt()), (h.times = e.readInt()), r.push(h); + } + n.info = { + item: r, + }; + break; + case t.ISYR.CumulativeRecharge: + n.info = []; + var p = e.readUnsignedInt(); + s = e.readByte(); + for (var o = 0; s > o; o++) + n.info.push({ + value: p, + id: e.readByte(), + type: e.readByte(), + }); + break; + case t.ISYR.Discount: + case t.ISYR.preferentialGift: + (n.info = []), (s = e.readByte()); + for (var o = 0; s > o; o++) + n.info.push({ + id: e.readByte(), + times: e.readShort(), + }); + break; + case t.ISYR.firstCharge: + case t.ISYR.secondCharge: + var u = e.readUnsignedInt(), + c = e.readByte(); + n.info = { + sum: u, + state: c, + }; + break; + case t.ISYR.sign: + var g = e.readUnsignedInt(), + d = e.readUnsignedInt(), + m = e.readByte(); + n.info = { + signStates: g, + awardStates: d, + signdays: m, + }; + break; + case t.ISYR.sevenDay: + var f = e.readUnsignedInt(), + v = e.readByte(); + n.info = { + dayInfo: f, + loginDay: v, + }; + break; + case t.ISYR.investment: + var _ = e.readByte(), + y = e.readUnsignedInt(), + T = e.readByte(), + M = 1e3 * e.readUnsignedInt() + egret.getTimer(); + n.info = { + IsBuy: _, + DayInfo: y, + LoginDay: T, + BuyTime: M, + }; + break; + case t.ISYR.sports: + case t.ISYR.IndividualsSports: + (n.info = []), (s = e.readInt()); + for (var o = 0; s > o; o++) + n.info.push({ + state: e.readByte(), + index: e.readInt(), + value: e.readInt(), + }); + break; + case t.ISYR.openServerTreasure: + case t.ISYR.GlobalTreasure: + n.info = { + extractCount: e.readUnsignedShort(), + }; + break; + case t.ISYR.War: + this.warActId = e.readInt(); + var C = e.readByte(), + b = e.readInt(), + I = e.readInt(), + S = e.readByte(), + E = e.readByte(); + (s = e.readByte()), (r = []); + for (var o = 0; s > o; o++) { + var w = e.readByte(), + A = e.readByte(), + x = e.readByte(), + L = { + lv: w, + state: A, + state1: x, + }; + r.push(L); + } + r.sort(function (t, e) { + return t.lv < e.lv ? -1 : e.lv > t.lv ? 1 : 0; + }), + (n.info = { + extrState: E, + goldState: S, + warNum: C, + tokenLv: I, + score: b, + warArr: r, + }); + break; + case t.ISYR.WarTask: + (C = e.readByte()), (s = e.readByte()), (n.info = {}), (n.info.taskArr = []); + for (var o = 0; s > o; o++) { + var D = e.readByte(), + P = e.readInt(), + k = e.readByte(), + U = { + actId: n.id, + index: D, + rate: P, + state: k, + }; + n.info.taskArr.push(U); + } + n.info.warNum = C; + break; + case t.ISYR.Material: + n.info = { + times: e.readInt(), + }; + break; + case t.ISYR.DefendTask: + c = e.readByte(); + var B = e.readInt(); + n.info = { + state: c, + times: B, + }; + break; + case t.ISYR.DonaTion: + var R = e.readInt(), + O = e.readUnsignedShort(); + (s = e.readByte()), (r = []); + for (var o = 0; s > o; o++) { + var G = new Object(); + (G.actorid = e.readUnsignedInt()), (G.value = e.readUnsignedInt()), (G.name = e.readString()), (G.playerReg = e.readNumber()), (G.idx = o + 1), r.push(G); + } + n.info = { + myDonaTion: R, + myRanking: O, + item: r, + }; + break; + case t.ISYR.exChangeAct: + (s = e.readInt()), (r = []); + for (var F = {}, V = void 0, o = 0; s > o; o++) (V = new Object()), (V.id = e.readByte()), (V.limitCount = e.readInt()), (F[V.id] = V); + n.info = F; + break; + case t.ISYR.onlineRewards: + var N = e.readUnsignedInt(), + H = e.readByte(); + (n.info = { + time: N - Math.floor(egret.getTimer() / 1e3), + index: H, + }), + t.OnlineRewardsManager.ins().init(n.id); + } + return n; + }), + Object.defineProperty(i.prototype, "currentActId", { + get: function () { + return this._currentActId; + }, + set: function (t) { + this._currentActId = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_25_6 = function (e) { + this.crossServerActID = 0; + var n = e.readUnsignedInt(), + s = e.readByte(), + a = i.ins().getActivitConf(n); + if (a) + switch (a.ActivityType) { + case t.ISYR.PActivity3: + case t.ISYR.NightVoma: + case t.ISYR.CrossServerChaos: + case t.ISYR.CrossServerNightVoma: + case t.ISYR.EscapeFromTrial: + s == t.Operate.sPostRankData ? this.post_RankData(e) : s == t.Operate.sPostMyRankData ? this.post_MyRankData(e) : s == t.Operate.sNextAwardIndex && this.post_NextAwardIndex(e); + break; + case t.ISYR.Inspire: + case t.ISYR.CrossServerBoss: + case t.ISYR.WorldBoss: + s == t.Operate.sPostRankData ? this.post_RankData(e) : s == t.Operate.sPostMyRankData && this.post_MyRankData(e); + break; + case t.ISYR.CrossServerShabak: + s == t.Operate.sShaBakRank ? this.post_shaBakRank(e) : s == t.Operate.sShaBakMyRank ? this.post_shaBakMyRank(e) : s == t.Operate.sShaBakNextReward && this.post_shaBakNextArard(e); + } + if (s == t.Operate.sPostFubenResult) this.post_currentActId(n); + else if (s == t.Operate.sAppraisal) { + var r = e.readInt(), + o = e.readByte(); + this.postCrytaldentifyResult({ + appid: r, + issure: o, + }); + } else if (s == t.Operate.sWorship) { + var l = e.readByte(), + o = e.readByte(); + this.postWroshipResult({ + idx: l, + issure: o, + }); + } else if (s == t.Operate.sjingjiTime) this.post_jingjiTime(e); + else if (s == t.Operate.sSendMonsterNum) this.post_TowerMonsterNum(e); + else if (s == t.Operate.szhenyingTime) this.post_zhenyingTime(e); + else if (s == t.Operate.sSendBonusNum) this.post_TowerBonusNum(e); + else { + if (s == t.Operate.sinspire) { + var h = e.readByte(); + if (0 == h) { + var p = e.readByte(), + u = e.readInt(), + c = e.readInt(); + return { + type: p, + value: u, + times: c, + }; + } + switch (h) { + case 1: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips83); + break; + case 2: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips65); + break; + case 3: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips66); + break; + case 4: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips67); + break; + case 5: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips68); + } + return null; + } + if (s == t.Operate.sOpenServerTreasure) this.post_extractResult(e); + else if (s == t.Operate.sDefendTask) this.post_defendTaskResult(e); + else if (s == t.Operate.sWorldBossTime) this.post_worldBossTime(e); + else if (s == t.Operate.sDuoBaoTime) this.postDuoBaoCD(n, e); + else if (s == t.Operate.sWarUpdate) this._warCurrency = e.readInt(); + else if (s == t.Operate.sKuaFu) { + var g = e.readByte(); + g ? t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_Tips140[g - 1] + "|") : ((this.crossServerActID = n), t.KFManager.ins().s_33_1()); + } + } + }), + (i.prototype.post_WarUpdate = function (t) { + for (var e = t.readShort(), i = 0; e > i; i++) this._warShopInfo[t.readShort()] = t.readShort(); + }), + (i.prototype.post_WarUpdateGoods = function (t) { + this._warShopInfo[t.readShort()] = t.readShort(); + }), + (i.prototype.post_defendTaskResult = function (e) { + var i = e.readByte(), + n = e.readUnsignedInt(); + 0 == i && t.ckpDj.ins().sendEvent(t.CompEvent.Clear_Timer_Event); + var s = { + result: i, + times: n, + }; + return s; + }), + (i.prototype.post_TowerBonusNum = function (t) { + this.towerBonusNum = t.readByte(); + }), + (i.prototype.post_TowerMonsterNum = function (t) { + this.towerMonsterNum = t.readByte(); + }), + (i.prototype.post_currentActId = function (e) { + if (((this.currentActId = e), 10 == this.currentActId)) { + var i = this.getActivityInfo(this.currentActId); + if (i.endTime) { + var n = t.GlobalData.serverTimeBase / 1e3, + s = i.endTime - n; + s > 0 && t.ckpDj.ins().sendEvent(t.CompEvent.TimerEvent, [s]); + } + } + }), + (i.prototype.post_shaBakRank = function (t) { + return this.post_RankData(t); + }), + (i.prototype.post_shaBakMyRank = function (t) { + return this.post_MyRankData(t); + }), + (i.prototype.post_shaBakNextArard = function (t) { + return [t.readUnsignedInt(), t.readByte()]; + }), + (i.prototype.post_RankData = function (t) { + for (var e = [], i = t.readByte(), n = 0; i > n; n++) + e.push({ + playerId: t.readUnsignedInt(), + score: t.readUnsignedInt(), + name: t.readString(), + playerReg: t.readNumber(), + }); + return e; + }), + (i.prototype.post_MyRankData = function (t) { + return [t.readUnsignedInt(), t.readShort()]; + }), + (i.prototype.post_NextAwardIndex = function (t) { + this.nextAward = t.readByte(); + }), + (i.prototype.post_jingjiTime = function (t) { + t.readByte(); + this.jingjiTime = 1e3 * t.readUnsignedInt() + egret.getTimer(); + }), + (i.prototype.post_worldBossTime = function (t) { + this.worldBossTime = 1e3 * t.readUnsignedInt() + egret.getTimer(); + }), + (i.prototype.post_zhenyingTime = function (t) { + t.readByte(); + this.zhenyingTime = 1e3 * t.readUnsignedInt() + egret.getTimer(); + }), + (i.prototype.postCrytaldentifyResult = function (t) { + return t; + }), + (i.prototype.postWroshipResult = function (t) { + return t; + }), + (i.prototype.postDuoBaoCD = function (e, i) { + var n = Math.floor(t.GlobalFunc.formatMiniDateTime(i.readInt()) / 1e3); + return { + ID: e, + time: n, + }; + }), + (i.prototype.post_extractResult = function (t) { + for (var e, i = t.readByte(), n = [], s = 0; i > s; s++) (e = new Object()), (e.type = t.readUnsignedInt()), (e.id = t.readUnsignedInt()), (e.count = t.readUnsignedInt()), n.push(e); + return n; + }), + (i.prototype.post_25_7 = function (e) { + var n = new Object(), + s = e.readInt(), + a = e.readByte(); + (n.actid = s), (n.issuccess = a); + var r = i.ins().getActivitConf(s); + if (r) + if (3 == r.ActivityType || r.ActivityType == t.ISYR.NightVoma || r.ActivityType == t.ISYR.CrossServerNightVoma || r.ActivityType == t.ISYR.CrossServerChaos) + (n.source = e.readUnsignedInt()), (n.rank = e.readShort()); + else if (r.ActivityType == t.ISYR.Inspire || r.ActivityType == t.ISYR.CrossServerBoss || r.ActivityType == t.ISYR.WorldBoss) + (n.first = e.readString()), (n.second = e.readString()), (n.third = e.readString()), (n.skill = e.readString()), (n.islast = e.readUnsignedShort()), (n.rank = e.readUnsignedShort()); + else if (r.ActivityType == t.ISYR.EscapeFromTrial) { + (n.rank = e.readUnsignedInt()), (n.first = e.readString()), (n.second = e.readString()), (n.third = e.readString()); + for (var o = e.readByte(), l = [], h = void 0, p = 0; o > p; p++) + (h = new Object()), (h.type = e.readUnsignedInt()), (h.id = e.readUnsignedInt()), (h.count = e.readUnsignedInt()), l.push(h); + n.list = l; + } else r.ActivityType == t.ISYR.SecretLandTreasure && ((n.secretBoxScore = e.readUnsignedInt()), (n.wordsBoxScore = e.readUnsignedInt()), (n.materialsBoxScore = e.readUnsignedInt())); + (this.resuleInfo = n), t.mAYZL.ins().open(t.FightResultWin, n); + }), + (i.prototype.actvityShowFun = function (e, i) { + var n = t.VlaoF["Activity" + e + "Config"]; + if (n && n[i]) { + if (n[i].showFun) { + var s = n[i].showFun.split("."), + a = egret.getDefinitionByName("app." + s[1]); + if (a && a.ins && a.ins()[s[2]]) return a.ins()[s[2]](n[i].showParam); + } + return !n[i].isCheckTime || this.actvityDatas[n[i].Id] || this.pActvityDatas[n[i].Id] ? t.mAYZL.ins().isCheckOpen(n[i].showParam) : !1; + } + return !1; + }), + (i.prototype.actvityByIdShowFun = function (t) { + var e, + i = this.getActivitConf(t); + return i && (e = this.actvityShowFun(i.ActivityType, t)), e; + }), + (i.prototype.enterActivity = function (e) { + var i = this.getActivitConf(e); + if (i) { + var n = this.getActivityConfigById(e); + if (n) { + if (n.toflyid) return void t.PKRX.ins().s_1_6(n.toflyid.FlyTable, n.toflyid.Flyid); + if (n.openFun) { + var s = n.openFun.split("."), + a = egret.getDefinitionByName("app." + s[0]); + if (a && a.ins && a.ins()[s[1]]) return void a.ins()[s[1]](n.openParam); + } + if (n.openView && n.openParam) + return void (t.mAYZL.ins().isCheckOpen(n.openParam) ? t.mAYZL.ins().ZbzdY(n.openView) || t.mAYZL.ins().open(n.openView, n.Id) : t.mAYZL.ins().openSystemTips(n.openParam)); + if (t.mAYZL.ins().isCheckOpen(n.openParam)) { + var r = this.getActivityInfo(e); + if (r) { + var o = t.NWRFmB.ins().getPayer; + o && o.propSet && (o.propSet.getState() & t.ActorState.DEATH ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips102) : this.send_25_1(e, t.Operate.cEnterFuBen)); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips62); + } else t.mAYZL.ins().openSystemTips(n.openParam); + } + } + }), + (i.prototype.getActivitConf = function (e) { + return t.VlaoF.ActivitiesConf[e] || t.VlaoF.PActivitiesConf[e] || t.VlaoF.ActivitiesShowConf[e]; + }), + (i.prototype.getActivityInfo = function (t) { + return this.actvityDatas[t] || this.pActvityDatas[t]; + }), + (i.prototype.getActivityConfig = function (e, i) { + var n = t.VlaoF["Activity" + e + "Config"]; + return n && n[i] ? n[i] : n ? n : null; + }), + (i.prototype.getActivityConfigById = function (t) { + var e = this.getActivitConf(t); + return e ? this.getActivityConfig(e.ActivityType, t) : null; + }), + (i.prototype.getActivityPayRed = function () {}), + (i.prototype.getActivityPayRedById = function (e) { + var n = i.ins().getActivitConf(e); + if (n) { + var s = i.ins().getActivityConfig(n.ActivityType, e); + if (s) { + var a = void 0; + switch (n.ActivityType) { + case t.ISYR.CumulativeRecharge: + if (((a = i.ins().getActivityInfo(e)), a && a.info)) for (var r = 0; r < a.info.length; r++) if (a.info[r].type && a.info[r].value >= s.GiftTable[a.info[r].id].value) return 1; + break; + case t.ISYR.Discount: + a = i.ins().getActivityInfo(e); + var o = 0; + if (a && a.info) { + for (var r = 0; r < a.info.length; r++) + if (a.info[r].times && s.GiftTable[a.info[r].id].redType) { + if (1 == s.GiftTable[a.info[r].id].redType) return 1; + o = 2; + } + return o; + } + } + } + } + return 0; + }), + (i.prototype.getFristChargeRedState = function () { + var e = this.getActivityInfo(t.ISYR.firstCharge); + return e ? e.redDot : 0; + }), + (i.prototype.post_25_8 = function (e) { + var n = e.readUnsignedInt(); + i.ins().send_25_2(n); + var s = t.VlaoF.ActivityAutoConfig; + for (var a in s) { + var r = s[a]; + if (r && r.actId && r.actId == n) return void t.Nzfh.ins().showCrossServerView(r.id); + } + t.mAYZL.ins().open(t.ActivityTipsWin, n); + }), + (i.prototype.post_25_9 = function (e) { + (this.YYInfo = new t.YYInfoData()), this.YYInfo.readYYInfo(e); + }), + (i.prototype.post_25_10 = function (e) { + (this.YYMemberInfo = new t.YYMemberInfoData()), this.YYMemberInfo.readYYInfo(e); + }), + (i.prototype.post_25_11 = function (t) { + var e = new Object(); + (e.vipGift = t.readUnsignedInt()), (e.dailyGift = t.readUnsignedInt()), (this.YYchaowanInfo = e); + }), + (i.prototype.post_25_12 = function (t) { + this.EscapeRoleNum = t.readUnsignedShort(); + for (var e = 0; e < this.EscapeRoleNum; e++) { + var i = t.readUnsignedInt(); + this.EscapeRoleInfo.indexOf(i) < 0 && this.EscapeRoleInfo.push(i); + } + }), + (i.prototype.post_25_15 = function (t) { + (this.secretBoxScore = t.readUnsignedInt()), (this.wordsBoxScore = t.readUnsignedInt()), (this.materialsBoxScore = t.readUnsignedInt()); + }), + (i.prototype.send_25_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.send_25_4 = function (t) { + var e = this.MxGiq(4); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_5 = function (t) { + var e = this.MxGiq(5); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_6 = function (t) { + var e = this.MxGiq(6); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_7 = function (t) { + var e = this.MxGiq(7); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_8 = function (t) { + var e = this.MxGiq(8); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_9 = function (t) { + var e = this.MxGiq(9); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_10 = function (t) { + var e = this.MxGiq(10); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_25_11 = function (t) { + var e = this.MxGiq(11); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.getAppraisalRed = function (e) { + var n = t.VlaoF.AppraisalMainConfig[e], + s = i.ins().getActivityInfo(e); + if (s && s.info && s.info.item) + for (var a in n) { + var r = n[a]; + if (4 != r.id && 3 != r.id && 2 != r.id) { + var o = s.info.item[r.id - 1]; + if (r.gold) { + var l = t.ThgMu.ins().getItemCountById(r.number[0].id), + h = t.ZAJw.MPDpiB(r.gold[0].type); + if (l >= r.number[0].count && o.allNum > 0 && h >= r.gold[0].count) return !0; + } + } + } + return !1; + }), + (i.prototype.updateYYRed = function (e, n) { + var s, + a = 1, + r = 0; + if (1 == e) { + s = i.ins().YYInfo; + var o = void 0, + l = 0, + h = t.NWRFmB.ins().getPayer; + if ((h && h.propSet && (l = h.propSet.mBjV()), 1 == n)) { + if (10001 == Main.vZzwB.pfID && window.loginWay && s && 0 == s.YYNoviceGift) return 1; + } else if (2 == n) { + if (((o = t.VlaoF.YYMemberConfig.loginGift), 10001 == Main.vZzwB.pfID && window.loginWay && o && s)) + for (var p in o) { + if (s.YYLoginDay >= a && ((r = t.MathUtils.getValueAtBit(s.YYLoginGift, a)), !r)) return 1; + a++; + } + } else if (3 == n) { + if (((o = t.VlaoF.YYMemberConfig.levelGift), 10001 == Main.vZzwB.pfID && window.loginWay && o && s)) + for (var p in o) { + if (l >= o[p].lvl && ((r = t.MathUtils.getValueAtBit(s.YYLevelGift, a)), !r)) return 1; + a++; + } + } else if (4 == n && 10001 == Main.vZzwB.pfID && window.loginWay && ((o = t.VlaoF.YYMemberConfig.nobleGift), o && s)) + for (var p in o) { + if (s.YYIdentity >= a && ((r = t.MathUtils.getValueAtBit(s.YYNobleGift, a)), !r)) return 1; + a++; + } + } else if (2 == e) { + s = i.ins().YYMemberInfo; + var u = void 0; + if ((1 == n || 2 == n || 3 == n) && s && s.isYYVip) { + u = t.VlaoF.YYVIPConfig.newServerGiftDisplay; + for (var p in u) if (n - 1 == +p) for (var c in u[p]) if (s.YYVipLv >= u[p][c].viplvl && ((r = t.MathUtils.getValueAtBit(s.newServerGift, u[p][c].index)), !r)) return 1; + } + } else if (3 == e) { + var g = void 0, + d = i.ins().YYchaowanInfo, + m = 0, + h = t.NWRFmB.ins().getPayer; + if ((h && h.propSet && (m = h.propSet.getVip()), d)) + if (1 == n) { + g = t.VlaoF.GameVIPConfig.vipGiftDisplay; + for (var p in g) if (m >= g[p].viplvl && ((r = t.MathUtils.getValueAtBit(d.vipGift, g[p].index)), !r)) return 1; + } else if (2 == n) { + g = t.VlaoF.GameVIPConfig.dailyGiftDisplay; + for (var p in g) if (m >= g[p].viplvl && ((r = t.MathUtils.getValueAtBit(d.dailyGift, g[p].index)), !r)) return 1; + } + } else if (4 == e) { + var f = t.FuLi4366Mgr.ins().ku25GameInfo; + if (1 == n) { + if (window.loginWay && !f.boxDown) return 1; + } else if (2 == n) { + if (window.loginWay && t.FuLi4366Mgr.ins().ku25GameInfo && !t.FuLi4366Mgr.ins().ku25GameInfo.everyDayLogin) return 1; + } else if (3 == n) { + if (f) { + var v = t.VlaoF.LoginKU25Config; + for (var p in v) { + var _ = t.MathUtils.getValueAtBit(f.everyDayPay, v[p].id); + if (!_ && f.todayPayNum / 10 >= v[p].Target) return 1; + } + } + } else if (5 == n && window.userInfo && 2 == +window.userInfo.adult && !f.isCard) return 1; + } + return 0; + }), + (i.prototype.send_25_15 = function () { + var t = this.MxGiq(15); + this.evKig(t); + }), + i + ); + })(t.DlUenA); + (t.TQkyOx = e), __reflect(e.prototype, "app.TQkyOx"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActvityData = e), __reflect(e.prototype, "app.ActvityData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.read = function (t) { + this.rankAry = []; + for (var e = t.readByte(), i = 0; e > i; i++) + this.rankAry.push({ + playerId: t.readUnsignedInt(), + score: t.readUnsignedInt(), + name: t.readString(), + }); + (this.score = t.readUnsignedInt()), (this.rank = t.readShort()); + }), + t + ); + })(); + (t.ActvityData3 = e), __reflect(e.prototype, "app.ActvityData3"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.YYIdentity = 0), (this.YYNoviceGift = 0), (this.YYLoginDay = 0), (this.YYLoginGift = 0), (this.YYLevelGift = 0), (this.YYNobleGift = 0); + } + return ( + (t.prototype.readYYInfo = function (t) { + (this.YYIdentity = t.readByte()), + (this.YYNoviceGift = t.readByte()), + (this.YYLoginDay = t.readShort()), + (this.YYLoginGift = t.readUnsignedInt()), + (this.YYLevelGift = t.readUnsignedInt()), + (this.YYNobleGift = t.readUnsignedInt()); + }), + t + ); + })(); + (t.YYInfoData = e), __reflect(e.prototype, "app.YYInfoData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.isYYVip = 0), (this.YYVipLv = 1), (this.YYExpiredTime = 0), (this.newServerGift = 0), (this.everyDayGift = 0), (this.everyWeekGift = 0); + } + return ( + (t.prototype.readYYInfo = function (t) { + (this.isYYVip = t.readByte()), + (this.YYVipLv = t.readByte()), + (this.YYExpiredTime = t.readNumber()), + (this.newServerGift = t.readUnsignedInt()), + (this.everyDayGift = t.readUnsignedInt()), + (this.everyWeekGift = t.readUnsignedInt()); + }), + t + ); + })(); + (t.YYMemberInfoData = e), __reflect(e.prototype, "app.YYMemberInfoData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._giftInfo = null), + (i._qqGiftInfo = null), + (i._actorValidationInfo = null), + (i.isDown = 0), + (i.commonIsDown = 0), + (i.phoneSelect = !1), + (i.cardSelect = !1), + (i.actorInfo = null), + (i.ku25GameInfo = {}), + (i.sysId = t.jDIWJt.platform4366), + i.YrTisc(1, i.post_32_1), + i.YrTisc(2, i.post_32_2), + i.YrTisc(3, i.post_32_3), + i.YrTisc(4, i.post_32_4), + i.YrTisc(5, i.post_32_5), + i.YrTisc(15, i.post_32_15), + i.YrTisc(16, i.post_32_16), + i.YrTisc(17, i.post_32_17), + i.YrTisc(18, i.post_32_18), + i.YrTisc(19, i.post_32_19), + i.YrTisc(20, i.post_32_20), + i.YrTisc(24, i.post_32_24), + i.YrTisc(25, i.post_32_25), + i.YrTisc(26, i.post_32_26), + i.YrTisc(27, i.post_32_27), + i.YrTisc(28, i.post_32_28), + i.YrTisc(29, i.post_32_29), + i.YrTisc(35, i.post_32_35), + i.YrTisc(38, i.post_updatePlatformFuli), + i.YrTisc(40, i.post_updatePlatformFuli), + i.YrTisc(42, i.post_updatePlatformFuli), + i.YrTisc(44, i.post_updatePlatformFuli), + i.YrTisc(46, i.post_updatePlatformFuli), + i.YrTisc(48, i.post_updatePlatformFuli), + i.YrTisc(51, i.post_updatePlatformFuli), + i.YrTisc(56, i.post_updatePlatformFuli), + i.YrTisc(61, i.post_updatePlatformFuli), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.post_updatePlatformFuli = function (e) { + t.bXKx.ins().initPlatformFuliInfo(e); + }), + Object.defineProperty(i.prototype, "giftInfo", { + get: function () { + return this._giftInfo; + }, + set: function (t) { + this._giftInfo = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "QQGiftInfo", { + get: function () { + return this._qqGiftInfo; + }, + set: function (t) { + this._qqGiftInfo = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "actorValidationInfo", { + get: function () { + return this._actorValidationInfo; + }, + set: function (t) { + this._actorValidationInfo = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.send_32_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_32_1 = function (t) { + var e = t.readByte(), + n = t.readByte(), + s = t.readByte(), + a = t.readShort(), + r = t.readUnsignedInt(), + o = t.readByte(); + i.ins().giftInfo = { + isWxGift: e, + isPhoneGift: n, + isCardGift: s, + loginDayNum: a, + isLoginGift: r, + isMicro: o, + }; + }), + (i.prototype.send_32_2 = function (t) { + var e = this.MxGiq(2); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.send_32_4 = function () { + var t = this.MxGiq(4); + this.evKig(t); + }), + (i.prototype.send_32_5 = function (t) { + var e = this.MxGiq(5); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_6 = function () { + var t = this.MxGiq(6); + this.evKig(t); + }), + (i.prototype.getActorInfo = function () { + (this.httpReq = new egret.HttpRequest()), + this.httpReq.addEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + this.httpReq.open(window.getActorInfoUrl + "?user_name=" + Main.vZzwB.userInfo.uid, egret.HttpMethod.GET), + this.httpReq.send(); + }), + (i.prototype.completeFunction = function (t) { + var e = t.target; + if (null != e.response || "" != e.response) { + var n = JSON.parse(e.response); + (this.actorInfo = {}), + (this.actorInfo.isBingPhone = n.BIND_CELLPHONE), + (this.actorInfo.isBingcard = n.is_adult), + (this.actorInfo.isBingwx = n.IS_OPENID), + (i.ins().actorValidationInfo = this.actorInfo), + i.ins().postRuleIconRed(); + } + }), + (i.prototype.errorFunction = function (t) {}), + (i.prototype.postRuleIconRed = function () {}), + (i.prototype.getRedPoint = function (e) { + if (1 == e) + return i.ins().giftInfo && Main.vZzwB.userInfo && ((0 == i.ins().giftInfo.isPhoneGift && 1 == Main.vZzwB.userInfo.isBingPhone) || (0 == i.ins().giftInfo.isPhoneGift && !i.ins().phoneSelect)) + ? 1 + : 0; + if (2 == e) + return i.ins().giftInfo && Main.vZzwB.userInfo && ((0 == i.ins().giftInfo.isCardGift && 1 == Main.vZzwB.userInfo.isBingcard) || (0 == i.ins().giftInfo.isCardGift && !i.ins().cardSelect)) + ? 1 + : 0; + if (3 == e) { + if (i.ins().giftInfo && 1 == i.ins().giftInfo.isPhoneGift && 1 == i.ins().giftInfo.isCardGift) { + var n = t.VlaoF.Login4366Config; + for (var s in n) + if (i.ins().giftInfo.loginDayNum >= n[s].day) { + var a = t.MathUtils.getValueAtBit(i.ins().giftInfo.isLoginGift, n[s].day); + if (!a) return 1; + } + } + return 0; + } + }), + (i.prototype.send_32_7 = function () { + var t = this.MxGiq(7); + this.evKig(t); + }), + (i.prototype.post_32_2 = function (t) { + var e = t.readByte(), + n = t.readByte(), + s = t.readUnsignedInt(); + i.ins().QQGiftInfo = { + isActiveGift: e, + ifRegisterGift: n, + isLevelGift: s, + }; + }), + (i.prototype.send_32_8 = function () { + var t = this.MxGiq(8); + this.evKig(t); + }), + (i.prototype.send_32_9 = function (t) { + var e = this.MxGiq(9); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_10 = function () { + var t = this.MxGiq(10); + this.evKig(t); + }), + (i.prototype.updateQQRed = function (e, n) { + if (t.isQQpf()) { + var s, + a = 1, + r = 0; + if (1 == e) { + s = i.ins().QQGiftInfo; + var o = void 0, + l = 0, + h = t.NWRFmB.ins().getPayer; + if ((h && h.propSet && (l = h.propSet.mBjV()), 1 == n)) { + if (s && 0 == s.ifRegisterGift) return 1; + } else if (2 == n) { + if (((o = t.VlaoF.LoginQQConfig), o && s)) + for (var p in o) { + if (l >= o[p].level && ((r = t.MathUtils.getValueAtBit(s.isLevelGift, a)), !r)) return 1; + a++; + } + } else if (3 == n && s && 0 == s.isActiveGift) return 1; + } + } + return 0; + }), + (i.prototype.post_32_3 = function (e) { + (this.fuli360Info = this.fuli360Info || new t.Fuli360Info()), this.fuli360Info.readFuliInfo(e); + }), + (i.prototype.send_32_11 = function () { + var t = this.MxGiq(11); + this.evKig(t); + }), + (i.prototype.send_32_14 = function (t, e) { + var i = this.MxGiq(14); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.getRed_dawanjia = function () { + return this.fuli360Info && this.fuli360Info.getRed_dawanjia() ? 1 : 0; + }), + (i.prototype.getRed_attestation = function () { + return this.fuli360Info && this.fuli360Info.getRed_attestation() ? 1 : 0; + }), + (i.prototype.post_32_4 = function (t) { + var e = t.readByte(); + i.ins().fuli7gameInfo = { + isWxGift: e, + }; + }), + (i.prototype.send_32_12 = function (t) { + var e = this.MxGiq(12); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_5 = function (e) { + (this.fuliLuDaShiInfo = this.fuliLuDaShiInfo || new t.FuliLuDaShiInfo()), this.fuliLuDaShiInfo.readFuliInfo(e); + }), + (i.prototype.send_32_13 = function (t, e, i) { + var n = this.MxGiq(13); + n.writeByte(t), n.writeByte(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.send_32_15 = function (t, e, i) { + var n = this.MxGiq(15); + n.writeInt(t), n.writeInt(e), n.writeInt(0), n.writeInt(i), this.evKig(n); + }), + (i.prototype.post_32_15 = function (e) { + (this.fuli37Info = this.fuli37Info || new t.Fuli37Info()), this.fuli37Info.readFuliInfo(e), i.ins().post37Gift(); + }), + (i.prototype.send_32_16 = function () { + var t = this.MxGiq(16); + this.evKig(t); + }), + (i.prototype.post_32_16 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuli37Info.microGiftFlag = 1), i.ins().post37Gift()); + }), + (i.prototype.send_32_17 = function () { + var t = this.MxGiq(17); + this.evKig(t); + }), + (i.prototype.post_32_17 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuli37Info.indulgeGiftFlag = 1), i.ins().post37Gift()); + }), + (i.prototype.send_32_18 = function () { + var t = this.MxGiq(18); + this.evKig(t); + }), + (i.prototype.post_32_18 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuli37Info.bindingGiftFlag = 1), i.ins().post37Gift()); + }), + (i.prototype.send_32_19 = function (t) { + var e = this.MxGiq(19); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_19 = function (t) { + var e = t.readByte(), + n = t.readInt(); + 1 == e && ((this.fuli37Info.dayGiftFlag = n), i.ins().post37Gift()); + }), + (i.prototype.send_32_20 = function (t) { + var e = this.MxGiq(20); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_20 = function (t) { + var e = t.readByte(), + n = t.readInt(); + 1 == e && ((this.fuli37Info.levelGiftFlag = n), i.ins().post37Gift()); + }), + (i.prototype.post37Gift = function () {}), + (i.prototype.send_32_24 = function (t) { + var e = this.MxGiq(24); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_24 = function (e) { + (this.fuliSogouInfo = this.fuliSogouInfo || new t.FuliSogouInfo()), this.fuliSogouInfo.readFuliInfo(e), i.ins().postSogouGift(); + }), + (i.prototype.send_32_25 = function () { + var t = this.MxGiq(25); + this.evKig(t); + }), + (i.prototype.post_32_25 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuliSogouInfo.microGiftFlag = 1), i.ins().postSogouGift()); + }), + (i.prototype.send_32_26 = function () { + var t = this.MxGiq(26); + this.evKig(t); + }), + (i.prototype.post_32_26 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuliSogouInfo.noviceGiftFlag = 1), i.ins().postSogouGift()); + }), + (i.prototype.send_32_27 = function (t) { + var e = this.MxGiq(27); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_27 = function (t) { + var e = t.readByte(), + n = t.readInt(); + 1 == e && ((this.fuliSogouInfo.loginGiftFlag = n), i.ins().postSogouGift()); + }), + (i.prototype.send_32_28 = function (t) { + var e = this.MxGiq(28); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_32_28 = function (t) { + var e = t.readByte(), + n = t.readInt(); + 1 == e && ((this.fuliSogouInfo.levelGiftFlag = n), i.ins().postSogouGift()); + }), + (i.prototype.send_32_29 = function () { + var t = this.MxGiq(29); + this.evKig(t); + }), + (i.prototype.post_32_29 = function (t) { + var e = t.readByte(); + 1 == e && ((this.fuliSogouInfo.phoneBindGiftFlag = 1), i.ins().postSogouGift()); + }), + (i.prototype.postSogouGift = function () {}), + (i.prototype.send_32_35 = function (t) { + var e = this.MxGiq(35); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_36 = function (t, e) { + void 0 === e && (e = 0); + var i = this.MxGiq(36); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_32_35 = function (t) { + i.ins().ku25GameInfo = { + todayPayNum: t.readUnsignedInt(), + boxDown: t.readByte(), + isCard: t.readByte(), + everyDayLogin: t.readByte(), + everyDayPay: t.readUnsignedInt(), + wxGift: t.readByte(), + }; + }), + (i.prototype.send_32_37 = function (t) { + var e = this.MxGiq(37); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_38 = function (t) { + var e = this.MxGiq(38); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_39 = function (t) { + var e = this.MxGiq(39); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_40 = function (t) { + var e = this.MxGiq(40); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_41 = function () { + var t = this.MxGiq(41); + this.evKig(t); + }), + (i.prototype.send_32_42 = function () { + var t = this.MxGiq(42); + this.evKig(t); + }), + (i.prototype.send_32_43 = function () { + var e = KdbLz.qOtrbE.vDCH ? 2 : t.bXKx.ins().VbEA.loginWay, + i = this.MxGiq(43); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.send_32_44 = function (t) { + var e = this.MxGiq(44); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_45 = function () { + var t = this.MxGiq(45); + this.evKig(t); + }), + (i.prototype.send_32_46 = function (t) { + var e = this.MxGiq(46); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_47 = function () { + var t = this.MxGiq(47); + this.evKig(t); + }), + (i.prototype.send_32_48 = function (t) { + var e = this.MxGiq(48); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_50 = function () { + var t = this.MxGiq(50); + this.evKig(t); + }), + (i.prototype.send_32_51 = function (t) { + var e = this.MxGiq(51); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_55 = function (t) { + var e = this.MxGiq(55); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_32_56 = function (t, e) { + void 0 === e && (e = 0); + var i = this.MxGiq(56); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.send_32_60 = function () { + var t = this.MxGiq(60); + this.evKig(t); + }), + (i.prototype.send_32_61 = function (t, e) { + void 0 === e && (e = 0); + var i = this.MxGiq(61); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + i + ); + })(t.DlUenA); + (t.FuLi4366Mgr = e), __reflect(e.prototype, "app.FuLi4366Mgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._currPlatformFuliData = null), (t._currPlatformFuliInfo = null), (t._currPlatformFuliViewData = null), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.initPlatformFuli = function () { + switch (Main.vZzwB.pfID) { + case t.PlatFormID.YY: + t.Nzfh.ins().s_0_25_YY(2); + break; + case t.PlatFormID.PF4366: + t.FuLi4366Mgr.ins().send_32_1(), t.FuLi4366Mgr.ins().send_32_5(window.loginWay); + break; + case t.PlatFormID.QQGame: + var e = 0, + i = 0, + n = 0, + s = t.edHC.ins().getQQBlueInfo(); + (e = s[0]), (i = s[1]), (n = s[2]), t.edHC.ins().send_26_6(e, i, n), t.FuLi4366Mgr.ins().send_32_7(), t.edHC.ins().send_26_7(); + break; + case t.PlatFormID.PF360: + t.Nzfh.ins().s_0_30_360(); + break; + case t.PlatFormID.PF7game: + t.Nzfh.ins().s_0_31_7game(); + break; + case t.PlatFormID.PFLuDaShi: + t.FuLi4366Mgr.ins().send_32_12(t.FuliLuDaShiInfo.loginWay); + break; + case t.PlatFormID.PFAQIYI: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliIqiyiData(); + break; + case t.PlatFormID.PFQIDIAN: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliQidianData(); + break; + case t.PlatFormID.PFYAODOU: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliYaodouData(); + break; + case t.PlatFormID.HUYU37: + t.FuLi4366Mgr.ins().send_32_15(t.Fuli37Info.vipLevel, t.Fuli37Info.loginWay, t.Fuli37Info.fcm); + break; + case t.PlatFormID.PFKu25: + t.FuLi4366Mgr.ins().send_32_35(window.loginWay); + break; + case t.PlatFormID.SOUGOU: + t.FuLi4366Mgr.ins().send_32_24(t.FuliSogouInfo.loginWay); + break; + case t.PlatFormID.FeiHuo: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliFeihuoData(); + break; + case t.PlatFormID.TanWan: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliTanwanData(); + break; + case t.PlatFormID.GeMen: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliGame2Data(); + break; + case t.PlatFormID.PF2144Game: + this._currPlatformFuliData = this._currPlatformFuliData || new t.Fuli2144Data(); + break; + case t.PlatFormID.teeqee: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliKuaiwanData(); + break; + case t.PlatFormID.shunwang: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliShunwangData(); + break; + case t.PlatFormID.xunwan: + this._currPlatformFuliData = this._currPlatformFuliData || new t.FuliXunwanData(); + } + this._currPlatformFuliData && this._currPlatformFuliData.init(); + }), + (i.prototype.initPlatformFuliInfo = function (e) { + if ((void 0 === e && (e = null), !this._currPlatformFuliInfo)) + switch (Main.vZzwB.pfID) { + case t.PlatFormID.PFAQIYI: + this._currPlatformFuliInfo = new t.FuliIqiyiInfo(); + break; + case t.PlatFormID.PFQIDIAN: + this._currPlatformFuliInfo = new t.FuliQidianInfo(); + break; + case t.PlatFormID.PFYAODOU: + this._currPlatformFuliInfo = new t.FuliYaodouInfo(); + break; + case t.PlatFormID.FeiHuo: + this._currPlatformFuliInfo = new t.FuliFeihuoInfo(); + break; + case t.PlatFormID.TanWan: + this._currPlatformFuliInfo = new t.FuliTanwanInfo(); + break; + case t.PlatFormID.GeMen: + this._currPlatformFuliInfo = new t.FuliGame2Info(); + break; + case t.PlatFormID.PF2144Game: + this._currPlatformFuliInfo = new t.Fuli2144Info(); + break; + case t.PlatFormID.teeqee: + this._currPlatformFuliInfo = new t.FuliKuaiwanInfo(); + break; + case t.PlatFormID.shunwang: + this._currPlatformFuliInfo = new t.FuliShunwangInfo(); + break; + case t.PlatFormID.xunwan: + this._currPlatformFuliInfo = new t.FuliXunwanInfo(); + } + this._currPlatformFuliInfo && e && this._currPlatformFuliInfo.readFuliInfo(e); + }), + (i.prototype.initPlatformFuliViewData = function () { + if (!this._currPlatformFuliViewData) + switch (Main.vZzwB.pfID) { + case t.PlatFormID.PFAQIYI: + this._currPlatformFuliViewData = new t.FuliIqiyiViewData(); + break; + case t.PlatFormID.PFQIDIAN: + this._currPlatformFuliViewData = new t.FuliQidianViewData(); + break; + case t.PlatFormID.PFYAODOU: + this._currPlatformFuliViewData = new t.FuliYaodouViewData(); + break; + case t.PlatFormID.FeiHuo: + this._currPlatformFuliViewData = new t.FuliFeihuoViewData(); + break; + case t.PlatFormID.TanWan: + this._currPlatformFuliViewData = new t.FuliTanwanViewData(); + break; + case t.PlatFormID.PF2144Game: + this._currPlatformFuliViewData = new t.Fuli2144ViewData(); + break; + case t.PlatFormID.teeqee: + this._currPlatformFuliViewData = new t.FuliKuaiwanViewData(); + break; + case t.PlatFormID.shunwang: + this._currPlatformFuliViewData = new t.FuliShunwangViewData(); + break; + case t.PlatFormID.xunwan: + this._currPlatformFuliViewData = new t.FuliXunwanViewData(); + } + }), + Object.defineProperty(i.prototype, "VbEA", { + get: function () { + return this._currPlatformFuliData; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bXBd", { + get: function () { + return this._currPlatformFuliInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "platformFuliViewData", { + get: function () { + return this._currPlatformFuliViewData || (this.initPlatformFuliInfo(), this.initPlatformFuliViewData()), this._currPlatformFuliViewData; + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseClass); + (t.bXKx = e), __reflect(e.prototype, "app.bXKx"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_47(); + }), + Object.defineProperty(i.prototype, "phoneBindState", { + get: function () { + return window.userInfo.bind_cellphone ? parseInt(window.userInfo.bind_cellphone) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_phoneBindGift = function () { + var e = t.VlaoF.Platform2144Config; + return e && e.bindPhoneReward ? e.bindPhoneReward : []; + }), + (i.prototype.onGetReward_phoneBindGift = function () { + t.FuLi4366Mgr.ins().send_32_48(1); + }), + Object.defineProperty(i.prototype, "indulgeState", { + get: function () { + return window.userInfo.adult ? parseInt(window.userInfo.adult) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_indulgeGift = function () { + var e = t.VlaoF.Platform2144Config; + return e && e.authentication ? e.authentication : []; + }), + (i.prototype.onGetReward_indulgeGift = function () { + t.FuLi4366Mgr.ins().send_32_48(2); + }), + i + ); + })(t.PlatformFuliData); + (t.Fuli2144Data = e), __reflect(e.prototype, "app.Fuli2144Data"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && ((this._phoneBindState = e.phoneBindState), (this._indulgeState = e.indulgeState)); + }), + (i.prototype.readFuliInfo = function (t) { + (this._phoneBindGiftFlag = t.readByte()), (this._indulgeGiftFlag = t.readByte()); + }), + (i.prototype.getRed_viewGift = function () { + return this.getRed_phoneBindGift() ? !0 : this.getRed_indulgeGift() ? !0 : !1; + }), + i + ); + })(t.CsKu); + (t.Fuli2144Info = e), __reflect(e.prototype, "app.Fuli2144Info"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getViewData = function () { + return { + titleStr: "biaoti_2144fuli", + }; + }), + (i.prototype.getGiftsViewData = function () { + var e = t.bXKx.ins().bXBd; + return [ + { + id: 1, + tabLab: t.CrmPU.language_Omission_txt117, + redFunc: e.getRed_phoneBindGift.bind(e), + viewClass: t.PlatformFuliBindingGift, + viewData: { + skinName: "PlatformFuliBindingGiftSkin", + }, + }, + { + id: 2, + tabLab: t.CrmPU.language_Omission_txt118, + redFunc: e.getRed_indulgeGift.bind(e), + viewClass: t.PlatformFuliIndulgeGift, + viewData: { + skinName: "PlatformFuliIndulgeGiftSkin", + }, + }, + ]; + }), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: t.VlaoF.Platform2144Config.limit, + qqStr: "800052276", + copyValue: "800052276", + skinName: "Fuli2144SuperVipGiftSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.Fuli2144ViewData = e), __reflect(e.prototype, "app.Fuli2144ViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli360AttestationWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.FuLi4366TabItemView), this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.giftInfo = t.FuLi4366Mgr.ins().fuli360Info; + var n = [ + { + txt: t.CrmPU.language_Omission_txt118, + }, + ]; + (this.tabBar.dataProvider = new eui.ArrayCollection(n)), + (this.tabBar.selectedIndex = 0), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var s = t.VlaoF.Platform360Config; + s && s.authentication && (this.itemList.dataProvider = new eui.ArrayCollection(s.authentication)), + this.HFTK(t.FuLi4366Mgr.ins().post_32_3, this.updateInfo), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + t.MouseScroller.bind(this.btnScroller), + this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && (0 == this.giftInfo.fcmGiftFlag ? ((this.getBtn.visible = !0), (this.redPoint.visible = this.giftInfo.getRed_attestation())) : (this.receiveImg.visible = !0)), + 0 == this.giftInfo.fcm ? (this.descLab.text = t.CrmPU.language_Omission_txt160) : (this.descLab.text = t.CrmPU.language_Omission_txt161); + }), + (i.prototype.updatePag = function () {}), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && + (0 == this.giftInfo.fcmGiftFlag + ? 1 == this.giftInfo.fcm + ? t.FuLi4366Mgr.ins().send_32_14(1, 1) + : window.ActorInfoFunction && window.ActorInfoFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.btnScroller), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.getBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.Fuli360AttestationWin = e), __reflect(e.prototype, "app.Fuli360AttestationWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.labelDisplay.text = this.data.name + ""; + }), + e + ); + })(eui.ItemRenderer); + (t.Fuli360TabItemView = e), __reflect(e.prototype, "app.Fuli360TabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.effArr = []), (i.skinName = "FuLi360WinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.awardArr = new eui.ArrayCollection()), (this.itemList.itemRenderer = t.ItemBase), (this.itemList.dataProvider = this.awardArr); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.VlaoF.Platform360Config, + s = [], + a = n && n.reward1; + for (var r in a) s.push(a[r]); + this.awardArr.replaceAll(s), + (this.descLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_265)), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnGetGfit, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_32_3, this.updateInfo), + this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + var e = t.FuLi4366Mgr.ins().fuli360Info; + e && (e.isGetAllDawanjia() ? t.mAYZL.ins().close(this) : (this.redPoint.visible = e.getRed_dawanjia())); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnGetGfit: + t.FuLi4366Mgr.ins().send_32_11(); + break; + case this.btnClose: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.btnClose, this.onClick), this.fEHj(this.btnGetGfit, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuLi360Win = e), __reflect(e.prototype, "app.FuLi360Win"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.dawanjiaFlag = 0), (this._fcm = 0), (this.fcmGiftFlag = 0); + } + return ( + (t.prototype.readFuliInfo = function (t) { + (this.dawanjiaFlag = t.readByte()), (this._fcm = t.readByte()), (this.fcmGiftFlag = t.readByte()); + }), + Object.defineProperty(t.prototype, "fcm", { + get: function () { + return this._fcm ? this._fcm : window.userInfo.cm ? parseInt(window.userInfo.cm) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (t.prototype.isGetAllDawanjia = function () { + return 0 == this.dawanjiaFlag ? !1 : !0; + }), + (t.prototype.isGetAllFcm = function () { + return 0 == this.fcmGiftFlag ? !1 : !0; + }), + (t.prototype.getRed_dawanjia = function () { + return 0 == this.dawanjiaFlag ? !0 : !1; + }), + (t.prototype.getRed_attestation = function () { + return 0 == this.fcmGiftFlag && 0 != this.fcm ? !0 : !1; + }), + t + ); + })(); + (t.Fuli360Info = e), __reflect(e.prototype, "app.Fuli360Info"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "Fuli37WinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.FuLi4366TabItemView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.infoGroup.visible = !1), + (this.bannerGroup.visible = !1), + (this.infoGroup2.visible = !1), + (this.descLab1.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_274, t.Fuli37Info.vipLevel))), + (this.descLab2.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_275 + "")), + (this.descLab3.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_276 + "")), + this.addChangeEvent(this.tabBar, this.setOpenIndex), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.descLab2, this.onClick), + this.vKruVZ(this.descLab3, this.onClick), + this.setTabInfo(), + this.setOpenIndex(); + }), + (i.prototype.setTabInfo = function () { + var e = []; + e.push({ + index: 1, + txt: t.CrmPU.language_Common_116, + }), + e.push({ + index: 2, + txt: t.CrmPU.language_Common_125, + }), + e.push({ + index: 3, + txt: t.CrmPU.language_Common_267, + }), + e.push({ + index: 4, + txt: t.CrmPU.language_Omission_txt117, + }), + e.push({ + index: 5, + txt: t.CrmPU.language_Omission_txt118, + }), + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), + (this.tabBar.selectedIndex = 0); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.descLab2: + var i = t.MiOx.originalSrvid % 1e4; + window.open(window.webUrl + "/select.php?gamename=shuangbei&gameserver=S" + i + "&username=" + Main.vZzwB.userInfo.user_name); + break; + case this.descLab3: + window.open37Vip && window.open37Vip(); + } + }), + (i.prototype.setOpenIndex = function () { + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e) { + (this.infoGroup.visible = !1), (this.bannerGroup.visible = !1), (this.infoGroup2.visible = !1); + var i = e.index; + this._currPanel && (this._currPanel.visible = !1), + 1 == i + ? (this.dayGift || ((this.dayGift = new t.Fuli37DayGift()), this.infoGroup2.addChild(this.dayGift)), + (this._currPanel = this.dayGift), + (this.bannerGroup.visible = !0), + (this.infoGroup2.visible = !0)) + : 2 == i + ? (this.levelGift || ((this.levelGift = new t.Fuli37LevelGift()), this.infoGroup2.addChild(this.levelGift)), + (this._currPanel = this.levelGift), + (this.bannerGroup.visible = !0), + (this.infoGroup2.visible = !0)) + : 3 == i + ? (this.microGift || ((this.microGift = new t.Fuli37MicroGift()), this.infoGroup.addChild(this.microGift)), (this._currPanel = this.microGift), (this.infoGroup.visible = !0)) + : 4 == i + ? (this.bindingGift || ((this.bindingGift = new t.Fuli37BindingGift()), this.infoGroup.addChild(this.bindingGift)), (this._currPanel = this.bindingGift), (this.infoGroup.visible = !0)) + : 5 == i && + (this.indulgeGift || ((this.indulgeGift = new t.Fuli37IndulgeGift()), this.infoGroup.addChild(this.indulgeGift)), (this._currPanel = this.indulgeGift), (this.infoGroup.visible = !0)), + (this._currPanel.visible = !0); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this), + this.fEHj(this.closeBtn, this.onClick), + (this._currPanel = null), + this.levelGift && (this.levelGift.close(), (this.levelGift.visible = !1)), + this.microGift && (this.microGift.close(), (this.microGift.visible = !1)), + this.bindingGift && (this.bindingGift.close(), (this.bindingGift.visible = !1)), + this.indulgeGift && (this.indulgeGift.close(), (this.indulgeGift.visible = !1)); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37Win = e), __reflect(e.prototype, "app.Fuli37Win"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.bindPhone = 0), (this.dayGiftFlag = 0), (this.levelGiftFlag = 0), (this.bindingGiftFlag = 0), (this.indulgeGiftFlag = 0), (this.microGiftFlag = 0); + } + return ( + (e.prototype.readFuliInfo = function (t) { + (this.microGiftFlag = t.readByte()), t.readByte(), (this.indulgeGiftFlag = t.readByte()), (this.levelGiftFlag = t.readInt()), (this.dayGiftFlag = t.readInt()); + }), + Object.defineProperty(e, "fcm", { + get: function () { + return window.userInfo.is_adult ? parseInt(window.userInfo.is_adult) : 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e, "vipLevel", { + get: function () { + return window.userInfo.pt_vip ? parseInt(window.userInfo.pt_vip) : 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e, "loginWay", { + get: function () { + if (window.userInfo.client) { + var t = parseInt(window.userInfo.client); + if (1 == t) return 0; + if (2 == t) return 1; + if (3 == t) return 1; + if (4 == t) return 2; + } + return 0; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getRed_dayGift = function () { + var i = e.vipLevel, + n = this.dayGiftFlag, + s = t.VlaoF.Platform37Config.dailyGift; + for (var a in s) if (i >= s[a].viplvl && 0 == t.MathUtils.getValueAtBit(n, a)) return !0; + return !1; + }), + (e.prototype.getRed_levelGift = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = this.levelGiftFlag, + s = t.VlaoF.Platform37Config.levelGift; + for (var a in s) if (i >= s[a].lvl && 0 == t.MathUtils.getValueAtBit(n, a)) return !0; + return !1; + }), + (e.prototype.getRed_binding = function () { + return 0 == this.bindingGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_indulge = function () { + return 0 == this.indulgeGiftFlag && 0 != e.fcm ? !0 : !1; + }), + (e.prototype.getRed_micro = function () { + return 0 == this.microGiftFlag && 1 == e.loginWay ? !0 : !1; + }), + e + ); + })(); + (t.Fuli37Info = e), __reflect(e.prototype, "app.Fuli37Info"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37BindingGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli37Info), + (this.bindingBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.Platform37Config; + e && e.bindPhoneReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.bindPhoneReward)), + this.HFTK(t.FuLi4366Mgr.ins().post37Gift, this.updateView), + this.vKruVZ(this.bindingBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.bindingBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && + (0 == this.giftInfo.bindingGiftFlag + ? 0 == this.giftInfo.bindPhone + ? (this.bindingBtn.visible = !0) + : ((this.getBtn.visible = !0), (this.redPoint.visible = !0)) + : (this.receiveImg.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.bindingBtn: + window.BindPhoneFunction && + window.BindPhoneFunction({ + roleId: t.MiOx.roleId, + }); + break; + case this.getBtn: + this.giftInfo && (0 == this.giftInfo.bindingGiftFlag ? 1 == this.giftInfo.bindPhone && t.FuLi4366Mgr.ins().send_32_18() : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.bindingBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37BindingGift = e), __reflect(e.prototype, "app.Fuli37BindingGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37LevelGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli37Info), (this.list.itemRenderer = t.Fuli37DayGiftItem), this.HFTK(t.FuLi4366Mgr.ins().post37Gift, this.updateView), this.updateView(); + }), + (i.prototype.updateView = function () { + var e = t.Fuli37Info.vipLevel, + i = this.giftInfo.dayGiftFlag, + n = t.VlaoF.Platform37Config.dailyGift, + s = []; + for (var a in n) + s.push({ + id: a, + needLevel: n[a].viplvl, + roleLevel: e, + reward: n[a].awards, + giftFlag: t.MathUtils.getValueAtBit(i, a), + }); + this.list.dataProvider = new eui.ArrayCollection(s); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37DayGift = e), __reflect(e.prototype, "app.Fuli37DayGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37IndulgeGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli37Info), + (this.indulgeBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.Platform37Config; + e && e.FcmReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.FcmReward)), + this.HFTK(t.FuLi4366Mgr.ins().post37Gift, this.updateView), + this.vKruVZ(this.indulgeBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.indulgeBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && + (0 == this.giftInfo.indulgeGiftFlag + ? 0 == t.Fuli37Info.fcm + ? (this.indulgeBtn.visible = !0) + : ((this.getBtn.visible = !0), (this.redPoint.visible = !0)) + : (this.receiveImg.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.indulgeBtn: + window.ActorInfoFunction && window.ActorInfoFunction(); + break; + case this.getBtn: + this.giftInfo && (0 == this.giftInfo.indulgeGiftFlag ? 0 != t.Fuli37Info.fcm && t.FuLi4366Mgr.ins().send_32_17() : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.indulgeBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37IndulgeGift = e), __reflect(e.prototype, "app.Fuli37IndulgeGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37LevelGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli37Info), + (this.list.itemRenderer = t.Fuli37LevelGiftItem), + this.HFTK(t.FuLi4366Mgr.ins().post37Gift, this.updateView), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = this.giftInfo.levelGiftFlag, + s = t.VlaoF.Platform37Config.levelGift, + a = []; + for (var r in s) + a.push({ + id: r, + needLevel: s[r].lvl, + roleLevel: i, + reward: s[r].awards, + giftFlag: t.MathUtils.getValueAtBit(n, r), + }); + this.list.dataProvider = new eui.ArrayCollection(a); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37LevelGift = e), __reflect(e.prototype, "app.Fuli37LevelGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37MicroGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli37Info), + (this.microDownBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.Platform37Config; + e && e.downloadBoxReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.downloadBoxReward)), + this.HFTK(t.FuLi4366Mgr.ins().post37Gift, this.updateView), + this.vKruVZ(this.getBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.microDownBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + 1 == t.Fuli37Info.loginWay + ? 0 == this.giftInfo.microGiftFlag + ? ((this.getBtn.visible = !0), (this.redPoint.visible = !0)) + : (this.receiveImg.visible = !0) + : ((this.microDownBtn.visible = !0), + 0 == this.giftInfo.microGiftFlag && t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50 && (this.redPoint.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && 1 == t.Fuli37Info.loginWay && t.FuLi4366Mgr.ins().send_32_16(); + break; + case this.microDownBtn: + window.MicroDownFunction && window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.getBtn, this.onClick), this.fEHj(this.microDownBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.Fuli37MicroGift = e), __reflect(e.prototype, "app.Fuli37MicroGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return this.data.roleLevel < this.data.needLevel ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips154) : void t.FuLi4366Mgr.ins().send_32_19(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), e.roleLevel >= e.needLevel && (this.redPoint.visible = !0)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)), + (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_268, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.Fuli37DayGiftItem = e), __reflect(e.prototype, "app.Fuli37DayGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return this.data.roleLevel < this.data.needLevel ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips154) : void t.FuLi4366Mgr.ins().send_32_20(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), e.roleLevel >= e.needLevel && (this.redPoint.visible = !0)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)), + (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_269, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.Fuli37LevelGiftItem = e), __reflect(e.prototype, "app.Fuli37LevelGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.FuLi4366Mgr.ins().giftInfo && + (0 == t.FuLi4366Mgr.ins().giftInfo.isPhoneGift || 0 == t.FuLi4366Mgr.ins().giftInfo.isCardGift + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips125) + : t.FuLi4366Mgr.ins().giftInfo.loginDayNum < this.data.day + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips126) + : t.FuLi4366Mgr.ins().send_32_2(this.data.day)); + }), + (i.prototype.dataChanged = function () { + if ( + this.data && + ((this.receiveBtn.enabled = !0), + (this.receiveImg.visible = this.redPoint.visible = !1), + (this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt127, this.data.day))), + (this.rewards.dataProvider = new eui.ArrayCollection(this.data.reward)), + t.FuLi4366Mgr.ins().giftInfo) + ) + if (0 == t.FuLi4366Mgr.ins().giftInfo.isPhoneGift || 0 == t.FuLi4366Mgr.ins().giftInfo.isCardGift || t.FuLi4366Mgr.ins().giftInfo.loginDayNum < this.data.day) + (this.receiveBtn.currentState = "disabled"), (this.receiveBtn.visible = !0); + else { + var e = t.MathUtils.getValueAtBit(t.FuLi4366Mgr.ins().giftInfo.isLoginGift, this.data.day); + e + ? ((this.receiveImg.visible = !0), (this.receiveBtn.visible = !1)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.visible = !0), (this.receiveBtn.currentState = ""), (this.redPoint.visible = !0)); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuLi4366GiftItemView = e), __reflect(e.prototype, "app.FuLi4366GiftItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + this.ItemData.data = this.data; + var e = t.ZAJw.sztgR(this.data.type, this.data.id); + e && (this.itemName.text = e[0] + ""); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuLi4366ItemView = e), __reflect(e.prototype, "app.FuLi4366ItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuLi4366MicroWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewards.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.redPoint.visible = !1), + (this.microDownBtn.visible = this.receiveBtn.visible = !0), + 1 == window.loginWay + ? ((this.microDownBtn.visible = !1), 1 != t.FuLi4366Mgr.ins().giftInfo.isMicro && (this.redPoint.visible = !0)) + : 0 == window.loginWay && + ((this.receiveBtn.visible = !1), + 1 != t.FuLi4366Mgr.ins().giftInfo.isMicro && t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50 && (this.redPoint.visible = !0)), + (this.receiveImg.visible = 1 == t.FuLi4366Mgr.ins().giftInfo.isMicro), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick); + var n = t.VlaoF.Platform4366Config; + n && n.rewardClient ? (this.rewards.dataProvider = new eui.ArrayCollection(n.rewardClient)) : (this.rewards.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + t.FuLi4366Mgr.ins().send_32_6(); + break; + case this.microDownBtn: + window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + break; + case this.closeBtn: + t.mAYZL.ins().close(this), + 1 != window.loginWay && 0 == t.FuLi4366Mgr.ins().isDown && (window.MicroDownFunction && window.MicroDownFunction(), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.receiveBtn, this.onClick), this.fEHj(this.microDownBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuLi4366MicroWin = e), __reflect(e.prototype, "app.FuLi4366MicroWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + (this.redPoint.visible = !1), + this.data && this.data.txt && ((this.labelDisplay.text = this.data.txt + ""), (this.redPoint.visible = t.FuLi4366Mgr.ins().getRedPoint(this.data.index) ? !0 : !1)); + }), + i + ); + })(eui.ItemRenderer); + (t.FuLi4366TabItemView = e), __reflect(e.prototype, "app.FuLi4366TabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._curIndex = -1), (t._qqGroupBtnNum = "599125384"), (t.actorValidationInfo = null), (t.giftInfo = null), (t._curGrpIdx = 0), (t.skinName = "FuLi4366WinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.FuLi4366TabItemView), + (this.loginItemList.itemRenderer = t.FuLi4366GiftItemView), + (this.phoneItemList.itemRenderer = t.FuLi4366ItemView), + (this.cardItemList.itemRenderer = t.FuLi4366ItemView), + (this.loginArr = new eui.ArrayCollection()), + (this.loginItemList.dataProvider = this.loginArr), + t.MouseScroller.bind(this.loginItemScroller); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.vKruVZ(this.wxBuyBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.phoneBuyBtn, this.onClick), + this.vKruVZ(this.cardBuyBtn, this.onClick), + this.vKruVZ(this.addGroupBtn, this.onClick), + this.VoZqXH(this.giftTips, this.mouseMove), + this.EeFPm(this.giftTips, this.mouseMove), + this.HFTK(t.FuLi4366Mgr.ins().post_32_1, this.updateActorInfo), + this.HFTK(t.FuLi4366Mgr.ins().postRuleIconRed, this.setTabInfo), + t.FuLi4366Mgr.ins().send_32_1(); + }), + (i.prototype.updateActorInfo = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().giftInfo), this.setTabInfo(), this.setOpenIndex(), this.updateView(); + }), + (i.prototype.setTabInfo = function () { + var e = []; + this.giftInfo && + (e.push({ + index: 0, + txt: t.CrmPU.language_Omission_txt116, + }), + 0 == this.giftInfo.isPhoneGift && + e.push({ + index: 1, + txt: t.CrmPU.language_Omission_txt117, + }), + 0 == this.giftInfo.isCardGift && + e.push({ + index: 2, + txt: t.CrmPU.language_Omission_txt118, + }), + this.giftInfo.isLoginGift < 127 && + e.push({ + index: 3, + txt: t.CrmPU.language_Omission_txt119, + // }), e.push({ + // index: 4, + // txt: t.CrmPU.language_Omission_txt141 + })), + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), + (this.tabBar.selectedIndex = this._curIndex <= this.tabBar.dataProvider.length - 1 ? this._curIndex : 0); + }), + (i.prototype.updateView = function () { + var e = t.VlaoF.Platform4366Config; + e && + (e.reward1 && e.reward1[0] && (this.wxItemData.data = e.reward1[0]), + e.reward2 && (this.phoneItemList.dataProvider = new eui.ArrayCollection(e.reward2)), + e.reward3 && (this.cardItemList.dataProvider = new eui.ArrayCollection(e.reward3))); + var i = t.VlaoF.Login4366Config, + n = []; + if (i) for (var s in i) n.push(i[s]); + this.loginArr.replaceAll(n), + (this.redPoint1.visible = this.redPoint1.visible = !1), + this.giftInfo && + (0 == this.giftInfo.isPhoneGift && Main.vZzwB.userInfo && 1 == Main.vZzwB.userInfo.isBingPhone && (this.redPoint1.visible = !0), + 0 == this.giftInfo.isCardGift && Main.vZzwB.userInfo && 1 == Main.vZzwB.userInfo.isBingcard && (this.redPoint2.visible = !0)); + }), + (i.prototype.onTabTouch = function (t) { + (this._curIndex = t.currentTarget.selectedIndex), (this._curGrpIdx = t.currentTarget.selectedItem.index), this.setOpenIndex(); + }), + (i.prototype.setOpenIndex = function () { + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e) { + for (var i = 0; 5 > i; i++) i == e.index ? (this["grp" + i].visible = !0) : (this["grp" + i].visible = !1); + 1 == e.index + ? t.FuLi4366Mgr.ins().phoneSelect || ((t.FuLi4366Mgr.ins().phoneSelect = !0), t.FuLi4366Mgr.ins().postRuleIconRed()) + : 2 == e.index && (t.FuLi4366Mgr.ins().cardSelect || ((t.FuLi4366Mgr.ins().cardSelect = !0), t.FuLi4366Mgr.ins().postRuleIconRed())); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.wxBuyBtn: + this.giftInfo && (0 == this.giftInfo.isWxGift ? "" != this.InputCode.text && t.edHC.ins().send_26_63(this.InputCode.text) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips124)); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.phoneBuyBtn: + this.giftInfo && + (0 == this.giftInfo.isPhoneGift + ? Main.vZzwB.userInfo && 1 == Main.vZzwB.userInfo.isBingPhone + ? t.FuLi4366Mgr.ins().send_32_3() + : window.BindPhoneFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + break; + case this.cardBuyBtn: + this.giftInfo && + (0 == this.giftInfo.isCardGift + ? Main.vZzwB.userInfo && 1 == Main.vZzwB.userInfo.isBingcard + ? t.FuLi4366Mgr.ins().send_32_4() + : window.ActorInfoFunction && window.ActorInfoFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + break; + case this.addGroupBtn: + var i = document.createElement("input"); + (i.value = this._qqGroupBtnNum), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = t.VlaoF.Platform4366Config; + if (i && i.reward4 && i.reward4[0]) { + var n = t.VlaoF.StdItems[i.reward4[0].id]; + if (n) { + var s = e.currentTarget.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: s.x + 200, + y: s.y, + }), + (s = null); + } + } + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.loginItemScroller), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.fEHj(this.wxBuyBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.phoneBuyBtn, this.onClick), + this.fEHj(this.cardBuyBtn, this.onClick), + this.lbpdAJ(this.giftTips, this.mouseMove), + this.lvpAF(this.giftTips, this.mouseMove); + }), + i + ); + })(t.gIRYTi); + (t.FuLi4366Win = e), __reflect(e.prototype, "app.FuLi4366Win"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "VIP4366CodeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.dialogCloseBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.dialogCloseBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.VIP4366CodeView = e), __reflect(e.prototype, "app.VIP4366CodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.showLimit = 5e3), (t.showLabValue = "3008871242"), (t.skinName = "VIP4366Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + this.vKruVZ(this.codeBtn, this.onClick), + (this.lab2.text = t.CrmPU.language_System97), + (this.qqLabel.text = this.showLabValue), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.NWRFmB.ins().getPayer, + i = this.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System96, i)), + (this.lab.visible = !0), + (this.qqLabel.visible = !1), + (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.codeBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.lab.visible = !1), (this.qqLabel.visible = !0), (this.copyBtn.filters = null), (this.codeBtn.filters = null)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().IrCm("手机版暂不支持~"); + var i = document.createElement("input"); + (i.value = this.showLabValue), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + break; + case this.codeBtn: + this.qqLabel.visible ? t.mAYZL.ins().open(t.VIP4366CodeView) : t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.rechargeBtn, this.onClick), + this.fEHj(this.copyBtn, this.onClick), + this.fEHj(this.codeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.VIP4366View = e), __reflect(e.prototype, "app.VIP4366View"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "Fuli7GameVipWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.showLimit = t.VlaoF.Platform7youxiConfig.limit), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + (this.lab2.text = t.CrmPU.language_System97), + (this.qqLabel.text = Main.vZzwB.kfQQ), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.NWRFmB.ins().getPayer, + i = this.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System96, i)), (this.lab.visible = !0), (this.qqLabel.visible = !1), (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.lab.visible = !1), (this.qqLabel.visible = !0), (this.copyBtn.filters = null)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().IrCm("手机版暂不支持~"); + var i = document.createElement("input"); + (i.value = Main.vZzwB.kfQQ), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.rechargeBtn, this.onClick), this.fEHj(this.copyBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.Fuli7GameVipWin = e), __reflect(e.prototype, "app.Fuli7GameVipWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.giftInfo = null), (i.skinName = "Fuli7GameWXGiftWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.wxBuyBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_32_4, this.updateActorInfo), + this.HFTK(t.edHC.ins().post_26_80, this.updateCode), + (this.giftInfo = t.FuLi4366Mgr.ins().fuli7gameInfo); + }), + (i.prototype.updateActorInfo = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuli7gameInfo), this.giftInfo && this.giftInfo.isWxGift && t.mAYZL.ins().close(this); + }), + (i.prototype.updateCode = function (e) { + 0 == e && t.FuLi4366Mgr.ins().send_32_11(); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.wxBuyBtn: + this.giftInfo && (0 == this.giftInfo.isWxGift ? "" != this.InputCode.text && t.edHC.ins().send_26_63(this.InputCode.text) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips124)); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.wxBuyBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.Fuli7GameWXGiftWin = e), __reflect(e.prototype, "app.Fuli7GameWXGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.bXKx.ins().initPlatformFuliInfo(); + }), + i + ); + })(t.PlatformFuliData); + (t.FuliFeihuoData = e), __reflect(e.prototype, "app.FuliFeihuoData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return __extends(e, t), e; + })(t.CsKu); + (t.FuliFeihuoInfo = e), __reflect(e.prototype, "app.FuliFeihuoInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: t.VlaoF.PlatformqidianConfig.limit, + skinName: "FuliFeihuoSuperVipGiftSkin", + qqStr: "2852375509", + copyValue: "2852375509", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliFeihuoViewData = e), __reflect(e.prototype, "app.FuliFeihuoViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "PlatformFuliViewSkin3"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.titleImg.source = "biaoti_wanshanziliao"); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.apply(this, i), + (this._currPanel = new t.PlatformFuliBindingGift({ + skinName: "FuliGame2BindingGiftSkin", + })), + this.infoGroup.addChild(this._currPanel); + }), + i + ); + })(t.PlatformFuliView2); + (t.FuliGame2BindingView = e), __reflect(e.prototype, "app.FuliGame2BindingView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_43(); + }), + Object.defineProperty(i.prototype, "loginWay", { + get: function () { + return window.userInfo.wei && 1 == parseInt(window.userInfo.wei) ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_phoneBindGift = function () { + var e = t.VlaoF.PlatformGame2Config; + return e && e.PhoneReward ? e.PhoneReward : []; + }), + (i.prototype.onGetReward_phoneBindGift = function () { + t.FuLi4366Mgr.ins().send_32_46(1); + }), + i + ); + })(t.PlatformFuliData); + (t.FuliGame2Data = e), __reflect(e.prototype, "app.FuliGame2Data"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && (this._loginWay = e.loginWay); + }), + (i.prototype.readFuliInfo = function (t) { + (this._phoneBindState = t.readByte()), (this._phoneBindGiftFlag = t.readByte()); + }), + i + ); + })(t.CsKu); + (t.FuliGame2Info = e), __reflect(e.prototype, "app.FuliGame2Info"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliIqiyiQQGroupViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.rewards.itemRenderer = t.ItemBase), + (this.rewards.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + t.FuLi4366Mgr.ins().send_32_40(4); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().pwYDdQ("手机版暂不支持~"); + window.open(window.kfQQGroupUrl); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.getRewardList = function () { + var e = t.VlaoF.PlatformaiqiyiConfig; + return e && e.QQReward ? e.QQReward : []; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.getBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuliIqiyiQQGroupView = e), __reflect(e.prototype, "app.FuliIqiyiQQGroupView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_39(this.loginWay); + }), + Object.defineProperty(i.prototype, "loginWay", { + get: function () { + return window.userInfo.is_client && 1 == parseInt(window.userInfo.is_client) ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_loginWayGift = function () { + var e = t.VlaoF.PlatformaiqiyiConfig; + return e && e.rewardClient ? e.rewardClient : []; + }), + (i.prototype.onGetReward_loginWayGift = function () { + t.FuLi4366Mgr.ins().send_32_40(1); + }), + (i.prototype.getReward_weixinGift = function () { + var e = t.VlaoF.PlatformaiqiyiConfig; + return e && e.WechatReward ? e.WechatReward[0] : {}; + }), + i + ); + })(t.PlatformFuliData); + (t.FuliIqiyiData = e), __reflect(e.prototype, "app.FuliIqiyiData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && (this._loginWay = e.loginWay); + }), + (i.prototype.readFuliInfo = function (t) { + (this._microGiftFlag = t.readByte()), (this._weChatGiftFlag = t.readByte()), (this._svipGiftFlag = t.readByte()), (this._qqGroupGiftFlag = t.readByte()); + }), + i + ); + })(t.CsKu); + (t.FuliIqiyiInfo = e), __reflect(e.prototype, "app.FuliIqiyiInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: t.VlaoF.PlatformaiqiyiConfig.limit, + skinName: "FuliIqiyiSuperVipGiftSkin", + qqStr: "800147567", + copyValue: "800147567", + }; + }), + (i.prototype.getMicroGiftData = function () { + return { + skinName: "PlatformFuliMicroWinSkin", + }; + }), + (i.prototype.getWeixinGiftData = function () { + return { + skinName: "FuliIqiyiWeixinGiftSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliIqiyiViewData = e), __reflect(e.prototype, "app.FuliIqiyiViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.buyButton, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyButton, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.FuLi4366Mgr.ins().send_32_36(4, this.data.id); + }), + (i.prototype.dataChanged = function () { + if (((this.buyButton.y = 22), (this.redPoint.y = 20), this.data)) { + var e = t.FuLi4366Mgr.ins().ku25GameInfo; + if ( + ((this.imgBg.source = this.data.id % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"), + (this.receiveImg.visible = !1), + (this.buyButton.visible = !0), + (this.buyButton.enabled = !0), + (this.redPoint.visible = !1), + (this.curValue.visible = !1), + (this.taskName.textColor = 14724725), + (this.taskName.text = "充值金额满"), + (this.taskValue.visible = !0), + (this.taskValue.textFlow = t.hETx.qYVI(this.data.Target + "")), + (this.rewards.dataProvider = new eui.ArrayCollection(this.data.reward)), + e) + ) { + (this.buyButton.y = 10), (this.redPoint.y = 8), (this.curValue.visible = !0); + var i = e.todayPayNum >= this.data.Target ? 2682369 : 15926028; + this.curValue.textFlow = t.hETx.qYVI("|C:" + i + "&T:" + e.todayPayNum + "||C:0xe5ddcf&T:/" + this.data.Target + "|"); + var n = t.MathUtils.getValueAtBit(e.everyDayPay, this.data.id); + 1 == n + ? ((this.receiveImg.visible = !0), (this.buyButton.visible = this.curValue.visible = !1)) + : e.todayPayNum >= this.data.Target + ? ((this.buyButton.label = t.CrmPU.language_Wlelfare_Text2), (this.redPoint.visible = !0)) + : ((this.taskName.textColor = 8420211), (this.buyButton.enabled = !1), (this.buyButton.label = t.CrmPU.language_Wlelfare_Text1)); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.Ku25BoxPayRewardsItemRender = e), __reflect(e.prototype, "app.Ku25BoxPayRewardsItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.FuLi4366Mgr.ins().ku25GameInfo && !t.FuLi4366Mgr.ins().ku25GameInfo.everyDayLogin && t.FuLi4366Mgr.ins().send_32_36(3); + }), + (i.prototype.dataChanged = function () { + (this.receiveBtn.enabled = !0), + (this.receiveBtn.visible = !0), + (this.receiveBtn.currentState = ""), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.data && + 1 == this.data.type && + ((this.curDay.textFlow = t.hETx.qYVI("|C:0xDCB789&T:使用盒子登录游戏,每日登录奖励|")), + (this.rewards.dataProvider = new eui.ArrayCollection(this.data.reward)), + window.loginWay + ? t.FuLi4366Mgr.ins().ku25GameInfo && t.FuLi4366Mgr.ins().ku25GameInfo.everyDayLogin + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.currentState = ""), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0)) + : ((this.receiveBtn.currentState = "disabled"), (this.receiveBtn.enabled = !1))); + }), + i + ); + })(t.BaseItemRender); + (t.Ku25BoxRewardsItemRender = e), __reflect(e.prototype, "app.Ku25BoxRewardsItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.selectIdx = 0), (i.skinName = "Ku25BoxRewardsWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.receiveBtn: + var i = t.VlaoF.BagRemainConfig[16]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? t.FuLi4366Mgr.ins().send_32_36(1) : t.uMEZy.ins().IrCm(i.bagtips); + } + break; + case this.downBtn: + var i = t.VlaoF.NativeConfig[Main.vZzwB.pfID]; + window.open(window.webUrl + i.clientURL); + break; + case this.wxCodeBtn: + "" == this.InputCode.text ? t.uMEZy.ins().pwYDdQ("请输入微信码") : t.edHC.ins().send_26_63(this.InputCode.text); + break; + case this.cardBtn: + window.userInfo && 2 == window.userInfo.adult ? t.FuLi4366Mgr.ins().send_32_36(2) : window.IdCardFunction && window.IdCardFunction(); + } + }), + (i.prototype.updateCode = function (e) { + 0 == e && t.FuLi4366Mgr.ins().send_32_36(5); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.tabArr = new eui.ArrayCollection()), + (this.tabBar.dataProvider = this.tabArr), + (this.tabBar.itemRenderer = t.YYLobbyPrivilegesTabView), + this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this), + (this.boxRewards.itemRenderer = t.ItemBase), + (this.cardList.itemRenderer = t.ItemBase), + (this.boxLoginList.itemRenderer = t.Ku25BoxRewardsItemRender), + (this.loginPayList.itemRenderer = t.Ku25BoxPayRewardsItemRender), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.downBtn, this.onClick), + this.vKruVZ(this.wxCodeBtn, this.onClick), + this.vKruVZ(this.cardBtn, this.onClick), + this.HFTK(t.edHC.ins().post_26_80, this.updateCode), + this.HFTK(t.FuLi4366Mgr.ins().post_32_35, this.updateData), + (this.tabBar.selectedIndex = 0), + t.MouseScroller.bind(this.btnScroller), + t.MouseScroller.bind(this.loginPayScroller), + t.MouseScroller.bind(this.boxLoginScroller), + this.updateData(); + }), + (i.prototype.updateTabInfo = function () { + (this.allPanels = []), + t.FuLi4366Mgr.ins().ku25GameInfo && + (t.FuLi4366Mgr.ins().ku25GameInfo.boxDown || + this.allPanels.push({ + type: 4, + index: 1, + txt: "盒子福利", + }), + this.allPanels.push({ + type: 4, + index: 2, + txt: "每日登录", + }), + this.allPanels.push({ + type: 4, + index: 3, + txt: "每日充值", + }), + t.FuLi4366Mgr.ins().ku25GameInfo.wxGift || + this.allPanels.push({ + type: 4, + index: 4, + txt: "微信礼包", + }), + t.FuLi4366Mgr.ins().ku25GameInfo.isCard || + this.allPanels.push({ + type: 4, + index: 5, + txt: "身份认证", + })), + this.tabArr.replaceAll(this.allPanels), + (this.tabBar.selectedIndex = this.tabBar.selectedIndex <= this.tabArr.length - 1 ? this.tabBar.selectedIndex : 0); + }), + (i.prototype.updateData = function () { + this.updateTabInfo(), this.updatePag(); + }), + (i.prototype.updatePag = function () { + var t = 0, + e = this.tabArr.getItemAt(this.tabBar.selectedIndex); + if (e) { + for (var i = 0; 5 > i; i++) i == e.index - 1 ? ((t = i), (this["grp" + i].visible = !0)) : (this["grp" + i].visible = !1); + this.updateInfo(t); + } + }), + (i.prototype.updateInfo = function (e) { + var i = t.VlaoF.PlatformKU25Config; + switch (e) { + case 0: + (this.receiveBtn.visible = this.boxRewardRed.visible = !1), (this.downBtn.visible = !0), i.BoxReward && (this.boxRewards.dataProvider = new eui.ArrayCollection(i.BoxReward)); + break; + case 1: + i.LoginReward && + (this.boxLoginList.dataProvider = new eui.ArrayCollection([ + { + type: 1, + reward: i.LoginReward, + }, + ])); + break; + case 2: + var n = []; + for (var s in t.VlaoF.LoginKU25Config) n.push(t.VlaoF.LoginKU25Config[s]); + this.loginPayList.dataProvider = new eui.ArrayCollection(n); + break; + case 3: + i.WeChatReward && (this.wxItemData.data = i.WeChatReward[0]); + break; + case 4: + window.userInfo && 2 == +window.userInfo.adult ? (this.cardRed.visible = !0) : (this.cardRed.visible = !1), + i.RealnameReward && (this.cardList.dataProvider = new eui.ArrayCollection(i.RealnameReward)); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.downBtn, this.onClick), + this.fEHj(this.wxCodeBtn, this.onClick), + this.fEHj(this.cardBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + t.MouseScroller.unbind(this.btnScroller), + t.MouseScroller.unbind(this.loginPayScroller), + t.MouseScroller.unbind(this.boxLoginScroller); + }), + i + ); + })(t.gIRYTi); + (t.Ku25BoxRewardsWin = e), __reflect(e.prototype, "app.Ku25BoxRewardsWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Ku25SuperVipSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + (this.qqLabel.visible = !1), + (this.showLimit = t.VlaoF.PlatformKU25Config.limit); + var n = t.NWRFmB.ins().getPayer; + n && n.propSet && n.propSet.getRechargeSum() >= this.showLimit && ((this.qqLabel.text = Main.vZzwB.kfQQ), (this.qqLabel.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().pwYDdQ("手机版暂不支持~"); + var i = document.createElement("input"); + (i.value = this.qqLabel.text), + document.body.appendChild(i), + i.select(), + i.setSelectionRange(0, i.value.length), + document.execCommand("Copy"), + document.body.removeChild(i), + t.uMEZy.ins().IrCm("复制成功"); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.rechargeBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.copyBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.Ku25BoxSuperVipView = e), __reflect(e.prototype, "app.Ku25BoxSuperVipView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_50(); + }), + (i.prototype.getReward_weixinGift = function () { + var e = t.VlaoF.PlatformteeqeeConfig; + return e && e.WechatRewardGift ? e.WechatRewardGift[0] : {}; + }), + i + ); + })(t.PlatformFuliData); + (t.FuliKuaiwanData = e), __reflect(e.prototype, "app.FuliKuaiwanData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.readFuliInfo = function (t) { + (this._svipGiftFlag = t.readByte()), (this._weChatGiftFlag = t.readByte()); + }), + (e.prototype.getRed_viewGift = function () { + return this.getRed_svipGift() ? !0 : this.getRed_weChatGift() ? !0 : !1; + }), + e + ); + })(t.CsKu); + (t.FuliKuaiwanInfo = e), __reflect(e.prototype, "app.FuliKuaiwanInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: t.VlaoF.PlatformteeqeeConfig.limit, + qqStr: "800098844", + copyValue: "800098844", + skinName: "FuliKuaiwanSuperVipGiftSkin", + }; + }), + (i.prototype.getWeixinGiftData = function () { + return { + skinName: "FuliKuaiwanWeixinGiftSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliKuaiwanViewData = e), __reflect(e.prototype, "app.FuliKuaiwanViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliLuDaShiGiftWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.FuliLuDaShiGiftTab), (this.tabBar2.itemRenderer = t.FuLi4366TabItemView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.giftArr = {}), + (this.giftArr[1] = { + giftType: 1, + data: t.VlaoF.LudashivipConfig[1], + }), + (this.giftArr[2] = { + giftType: 1, + data: t.VlaoF.LudashivipConfig[2], + }), + (this.giftArr[3] = { + giftType: 1, + data: t.VlaoF.LudashivipConfig[3], + }), + (this.giftArr[4] = { + giftType: 2, + data: t.VlaoF.LudashimemberConfig[1], + }), + (this.giftArr[5] = { + giftType: 2, + data: t.VlaoF.LudashimemberConfig[2], + }), + this.addChangeEvent(this.tabBar, this.setOpenIndex), + this.addChangeEvent(this.tabBar2, this.setOpenIndex2), + this.vKruVZ(this.closeBtn, this.onClick), + this.setTabInfo(); + }), + (i.prototype.setTabInfo = function () { + var e = []; + e.push({ + index: 1, + txt: t.CrmPU.language_Omission_txt150, + }), + e.push({ + index: 2, + txt: t.CrmPU.language_Omission_txt151, + }), + e.push({ + index: 3, + txt: t.CrmPU.language_Omission_txt152, + }), + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), + (this.tabBar.selectedIndex = 0), + this.setOpenIndex(); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.setOpenIndex = function () { + var e = [], + i = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (i) { + var n = i.index; + 1 == n + ? (e.push({ + index: 1, + txt: t.CrmPU.language_Omission_txt153, + }), + e.push({ + index: 2, + txt: t.CrmPU.language_Omission_txt154, + }), + e.push({ + index: 3, + txt: t.CrmPU.language_Omission_txt155, + })) + : 2 == n + ? (e.push({ + index: 4, + txt: t.CrmPU.language_Omission_txt156, + }), + e.push({ + index: 5, + txt: t.CrmPU.language_Omission_txt157, + }), + e.push({ + index: 6, + txt: t.CrmPU.language_Omission_txt158, + })) + : 3 == n && + (e.push({ + index: 7, + txt: t.CrmPU.language_Common_116, + }), + e.push({ + index: 8, + txt: t.CrmPU.language_Common_125, + })); + } + (this.tabBar2.dataProvider = new eui.ArrayCollection(e)), (this.tabBar2.selectedIndex = 0), this.setOpenIndex2(); + }), + (i.prototype.setOpenIndex2 = function () { + var e = this.tabBar2.dataProvider.getItemAt(this.tabBar2.selectedIndex); + if (e) { + var i = e.index; + this._currPanel && (this._currPanel.visible = !1), + 1 == i || 2 == i || 3 == i || 4 == i || 5 == i + ? (this.singleGift || ((this.singleGift = new t.FuliLuDaShiSingleGift()), this.infoGroup.addChild(this.singleGift)), (this._currPanel = this.singleGift)) + : 6 == i + ? (this.dayGift || ((this.dayGift = new t.FuliLuDaShiDayGift()), this.infoGroup.addChild(this.dayGift)), (this._currPanel = this.dayGift)) + : 7 == i + ? (this.boxGift || ((this.boxGift = new t.FuliLuDaShiBoxGift()), this.infoGroup.addChild(this.boxGift)), (this._currPanel = this.boxGift)) + : 8 == i + ? (this.levelGift || ((this.levelGift = new t.FuliLuDaShiLevelGift()), this.infoGroup.addChild(this.levelGift)), (this._currPanel = this.levelGift)) + : 9 == i && (this.boxPanel || ((this.boxPanel = new t.FuliLuDaShiBoxBuff()), this.infoGroup.addChild(this.boxPanel)), (this._currPanel = this.boxPanel)), + this._currPanel.update && this._currPanel.update(this.giftArr[i]), + (this._currPanel.visible = !0); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this), + this.tabBar2.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex2, this), + this.fEHj(this.closeBtn, this.onClick), + (this._currPanel = null), + this.singleGift && (this.singleGift.close(), (this.singleGift = null)), + this.dayGift && (this.dayGift.close(), (this.dayGift = null)), + this.levelGift && (this.levelGift.close(), (this.levelGift = null)), + this.boxGift && (this.boxGift.close(), (this.boxGift = null)), + this.boxPanel && (this.boxPanel.close(), (this.boxPanel = null)); + for (var n in this.giftArr) delete this.giftArr[n]; + this.giftArr = null; + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiGiftWin = e), __reflect(e.prototype, "app.FuliLuDaShiGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliLuDaShiMicroWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewards.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.redPoint.visible = !1), + (this.microDownBtn.visible = !1), + (this.receiveBtn.visible = !1), + window.loginWay + ? ((this.receiveBtn.visible = !0), 1 != this.giftInfo.gameBoxGiftFlag && (this.redPoint.visible = !0)) + : ((this.microDownBtn.visible = !0), + 1 != this.giftInfo.gameBoxGiftFlag && t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50 && (this.redPoint.visible = !0)), + (this.receiveImg.visible = 1 == this.giftInfo.gameBoxGiftFlag), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick); + var n = t.VlaoF.PlatformludashiConfig; + n && n.downloadBoxReward ? (this.rewards.dataProvider = new eui.ArrayCollection(n.downloadBoxReward)) : (this.rewards.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + t.FuLi4366Mgr.ins().send_32_13(4, 1, 0); + break; + case this.microDownBtn: + window.MicroDownFunction && window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + break; + case this.closeBtn: + t.mAYZL.ins().close(this), + 1 != window.loginWay && 0 == t.FuLi4366Mgr.ins().isDown && (window.MicroDownFunction && window.MicroDownFunction(), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.microDownBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiMicroWin = e), __reflect(e.prototype, "app.FuliLuDaShiMicroWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliLuDaShiPhoneGiftWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.FuLi4366TabItemView); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.addChangeEvent(this.tabBar, this.setOpenIndex), this.vKruVZ(this.closeBtn, this.onClick), this.setTabInfo(), this.setOpenIndex(); + }), + (i.prototype.setTabInfo = function () { + var e = []; + e.push({ + index: 1, + txt: t.CrmPU.language_Omission_txt148, + }), + e.push({ + index: 2, + txt: t.CrmPU.language_Omission_txt116, + }), + e.push({ + index: 3, + txt: t.CrmPU.language_Omission_txt149, + }), + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), + (this.tabBar.selectedIndex = 0); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.setOpenIndex = function () { + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e) { + var i = e.index; + this._currPanel && (this._currPanel.visible = !1), + 1 == i + ? (this.bindingGift || ((this.bindingGift = new t.FuliLuDaShiBindingGift()), this.infoGroup.addChild(this.bindingGift)), (this._currPanel = this.bindingGift)) + : 2 == i + ? (this.weiXinGift || ((this.weiXinGift = new t.FuliLuDaShiWeiXinGift()), this.infoGroup.addChild(this.weiXinGift)), (this._currPanel = this.weiXinGift)) + : 3 == i && (this.indulgeGift || ((this.indulgeGift = new t.FuliLuDaShiIndulgeGift()), this.infoGroup.addChild(this.indulgeGift)), (this._currPanel = this.indulgeGift)), + (this._currPanel.visible = !0); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this), + this.fEHj(this.closeBtn, this.onClick), + (this._currPanel = null), + this.bindingGift && (this.bindingGift.close(), (this.bindingGift.visible = !1)), + this.weiXinGift && (this.weiXinGift.close(), (this.weiXinGift.visible = !1)), + this.indulgeGift && (this.indulgeGift.close(), (this.indulgeGift.visible = !1)); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiPhoneGiftWin = e), __reflect(e.prototype, "app.FuliLuDaShiPhoneGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "FuliLuDaShiVipCodeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.dialogCloseBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.FuLi4366MicroWin, this.fEHj(this.dialogCloseBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiVipCodeView = e), __reflect(e.prototype, "app.FuliLuDaShiVipCodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.showLabValue = "800198124"), (i.showLabValue2 = "Ludashi-VIP"), (i.skinName = "FuliLuDaShiVipWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.showLimit = t.VlaoF.PlatformludashiConfig.limit), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + this.vKruVZ(this.codeBtn, this.onClick), + (this.qqLabel.text = this.showLabValue), + (this.wxLabel.text = this.showLabValue2), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.NWRFmB.ins().getPayer, + i = this.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System106, i)), + (this.lab.visible = !0), + (this.qqLabel.visible = !1), + (this.wxLabel.visible = !1), + (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.codeBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.lab.visible = !1), (this.qqLabel.visible = !0), (this.wxLabel.visible = !0), (this.copyBtn.filters = null), (this.codeBtn.filters = null)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().IrCm("手机版暂不支持~"); + var i = document.createElement("input"); + (i.value = this.showLabValue), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + break; + case this.codeBtn: + this.wxLabel.visible ? t.mAYZL.ins().open(t.FuliLuDaShiVipCodeView) : t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.rechargeBtn, this.onClick), + this.fEHj(this.copyBtn, this.onClick), + this.fEHj(this.codeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiVipWin = e), __reflect(e.prototype, "app.FuliLuDaShiVipWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.vipLevel = 0), + (this.plusLevel = 0), + (this.bindPhone = 0), + (this.fcm = 0), + (this.sVipGiftFlag = 0), + (this.gameBoxGiftFlag = 0), + (this.phoneBindGiftFlag = 0), + (this.weChatGiftFlag = 0), + (this.fcmGiftFlag = 0), + (this.vipTitleFlag = 0), + (this.vipGiftFlag = 0), + (this.memberTitleFlag = 0), + (this.memberGiftFlag = 0), + (this.memberDailyGiftFlag = 0), + (this.gameBoxDailyGiftFlag = 0), + (this.gameBoxLevelGiftFlag = 0); + } + return ( + (t.prototype.readFuliInfo = function (t) { + (this.vipLevel = t.readByte()), + (this.plusLevel = t.readByte()), + (this.bindPhone = t.readByte()), + (this.fcm = t.readByte()), + (this.sVipGiftFlag = t.readByte()), + (this.gameBoxGiftFlag = t.readByte()), + (this.phoneBindGiftFlag = t.readByte()), + (this.weChatGiftFlag = t.readByte()), + (this.fcmGiftFlag = t.readByte()), + (this.vipTitleFlag = t.readUnsignedInt()), + (this.vipGiftFlag = t.readUnsignedInt()), + (this.memberTitleFlag = t.readUnsignedInt()), + (this.memberGiftFlag = t.readUnsignedInt()), + (this.memberDailyGiftFlag = t.readByte()), + (this.gameBoxDailyGiftFlag = t.readByte()), + (this.gameBoxLevelGiftFlag = t.readUnsignedInt()); + }), + (t.prototype.isGetAllVip = function () { + return 0 == this.sVipGiftFlag ? !1 : !0; + }), + (t.prototype.isGetAllMicro = function () { + return 0 == this.gameBoxGiftFlag ? !1 : !0; + }), + Object.defineProperty(t, "loginWay", { + get: function () { + return window.userInfo.loginWay ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + t + ); + })(); + (t.FuliLuDaShiInfo = e), __reflect(e.prototype, "app.FuliLuDaShiInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiBindingGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.PlatformludashiConfig; + e && e.bindPhoneReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.bindPhoneReward)), + this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && (0 == this.giftInfo.phoneBindGiftFlag ? ((this.getBtn.visible = !0), 1 == this.giftInfo.bindPhone && (this.redPoint.visible = !0)) : (this.receiveImg.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && + (0 == this.giftInfo.phoneBindGiftFlag + ? 1 == this.giftInfo.bindPhone + ? t.FuLi4366Mgr.ins().send_32_13(3, 1, 0) + : window.BindPhoneFunction && window.BindPhoneFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiBindingGift = e), __reflect(e.prototype, "app.FuliLuDaShiBindingGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiBoxBuffSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.microDownBtn: + window.MicroDownFunction && window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.microDownBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiBoxBuff = e), __reflect(e.prototype, "app.FuliLuDaShiBoxBuff"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiBoxGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.receiveBtn.visible = !1), + (this.microDownBtn.visible = !1), + (this.receiveImg.visible = !1), + window.loginWay ? (this.receiveBtn.visible = !0) : (this.microDownBtn.visible = !0), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.PlatformludashiConfig; + e && e.boxdailyGift && (this.itemList.dataProvider = new eui.ArrayCollection(e.boxdailyGift)), + this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.redPoint.visible = !1), + this.giftInfo && + (0 == this.giftInfo.gameBoxDailyGiftFlag + ? ((this.receiveBtn.visible = !0), (this.receiveImg.visible = !1), window.loginWay && (this.redPoint.visible = !0)) + : ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0))); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + this.giftInfo && (0 == this.giftInfo.gameBoxDailyGiftFlag ? t.FuLi4366Mgr.ins().send_32_13(4, 2, 0) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips153)); + break; + case this.microDownBtn: + window.MicroDownFunction && window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.receiveBtn, this.onClick), this.fEHj(this.microDownBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiBoxGift = e), __reflect(e.prototype, "app.FuliLuDaShiBoxGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiDayGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.receiveBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.receiveBtn.visible = !0), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.LudashimemberConfig[3]; + e && e.giftReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.giftReward)), + this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView), + this.vKruVZ(this.receiveBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.redPoint.visible = !1), + this.giftInfo && + (0 == this.giftInfo.memberDailyGiftFlag + ? ((this.receiveBtn.visible = !0), (this.receiveImg.visible = !1), this.giftInfo.plusLevel > 0 && (this.redPoint.visible = !0)) + : ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0))); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + this.giftInfo && (0 == this.giftInfo.memberDailyGiftFlag ? t.FuLi4366Mgr.ins().send_32_13(2, 3, 0) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips153)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.receiveBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiDayGift = e), __reflect(e.prototype, "app.FuliLuDaShiDayGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiIndulgeGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.PlatformludashiConfig; + e && e.FcmReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.FcmReward)), + this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && (0 == this.giftInfo.fcmGiftFlag ? ((this.getBtn.visible = !0), 1 == this.giftInfo.fcm && (this.redPoint.visible = !0)) : (this.receiveImg.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && + (0 == this.giftInfo.fcmGiftFlag + ? this.giftInfo.fcm + ? t.FuLi4366Mgr.ins().send_32_13(3, 2, 0) + : window.ActorInfoFunction && window.ActorInfoFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiIndulgeGift = e), __reflect(e.prototype, "app.FuliLuDaShiIndulgeGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiLevelGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), + (this.list.itemRenderer = t.FuliLuDaShiLevelGiftItem), + this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = this.giftInfo.gameBoxLevelGiftFlag, + s = t.VlaoF.PlatformludashiConfig.levelGift, + a = []; + for (var r in s) + a.push({ + id: r, + needLevel: s[r].lvl, + roleLevel: i, + reward: s[r].awards, + giftFlag: t.MathUtils.getValueAtBit(n, r), + }); + this.list.dataProvider = new eui.ArrayCollection(a); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiLevelGift = e), __reflect(e.prototype, "app.FuliLuDaShiLevelGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiSingleGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliLuDaShiInfo), this.HFTK(t.FuLi4366Mgr.ins().post_32_5, this.updateView); + }), + (i.prototype.update = function (t) { + (this._data = t), this.updateView(); + }), + (i.prototype.updateView = function () { + if (this._data) { + var e = this._data, + i = 0, + n = 0, + s = 0, + a = 0, + r = e.data, + o = r.description[0], + l = r.description[1]; + 1 == e.giftType + ? ((i = t.MathUtils.getValueAtBit(this.giftInfo.vipTitleFlag, r.id)), (n = t.MathUtils.getValueAtBit(this.giftInfo.vipGiftFlag, r.id)), (s = r.vipLevel), (a = this.giftInfo.vipLevel)) + : 2 == e.giftType && + ((i = t.MathUtils.getValueAtBit(this.giftInfo.memberTitleFlag, r.id)), + (n = t.MathUtils.getValueAtBit(this.giftInfo.memberGiftFlag, r.id)), + (s = r.memberLevel), + (a = this.giftInfo.plusLevel)), + (this.giftItem1.data = { + giftType: e.giftType, + type: 1, + id: r.id, + titleImg: o.titleImg, + title: o.title, + itemDesc: o.itemDesc, + lvDesc: o.ldsDesc, + rewardState: i, + needLevel: s, + vipLevel: a, + }), + (this.giftItem2.data = { + giftType: e.giftType, + type: 2, + id: r.id, + reward: r.giftShowReward[0], + title: l.title, + itemDesc: l.itemDesc, + lvDesc: l.ldsDesc, + rewardState: n, + needLevel: s, + vipLevel: a, + }); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliLuDaShiSingleGift = e), __reflect(e.prototype, "app.FuliLuDaShiSingleGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "FuliLuDaShiWeiXinGiftSkin"), e.initUI(), e; + } + return ( + __extends(e, t), + (e.prototype.initUI = function () {}), + (e.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.prototype.close.call(this, e), this.$onClose(); + }), + e + ); + })(t.gIRYTi); + (t.FuliLuDaShiWeiXinGift = e), __reflect(e.prototype, "app.FuliLuDaShiWeiXinGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + this.labelDisplay.text = this.data.txt + ""; + }), + i + ); + })(eui.ItemRenderer); + (t.FuliLuDaShiGiftTab = e), __reflect(e.prototype, "app.FuliLuDaShiGiftTab"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliLuDaShiLevelGiftItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return this.data.roleLevel < this.data.needLevel ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips154) : void t.FuLi4366Mgr.ins().send_32_13(4, 3, this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), e.roleLevel >= e.needLevel && (this.redPoint.visible = !0)), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_266, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliLuDaShiLevelGiftItem = e), __reflect(e.prototype, "app.FuliLuDaShiLevelGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return this.data.vipLevel < this.data.needLevel ? void window.openLDSVip() : void t.FuLi4366Mgr.ins().send_32_13(this.data.giftType, this.data.type, this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.itemData.visible = !1), + (this.titleImg.visible = !1), + (this.buyBtn.visible = !1), + (this.redPoint.visible = !1), + (this.receiveImg.visible = !1), + e.rewardState + ? ((this.buyBtn.visible = !1), (this.receiveImg.visible = !0)) + : (e.vipLevel >= e.needLevel + ? ((this.buyBtn.label = t.CrmPU.language_Common_120), (this.redPoint.visible = !0)) + : e.vipLevel > 0 + ? (this.buyBtn.label = t.CrmPU.language_Common_121) + : (this.buyBtn.label = t.CrmPU.language_Common_122), + (this.buyBtn.visible = !0)), + (this.titleDesc.textFlow = t.hETx.qYVI(e.title)), + (this.lvDesc.textFlow = t.hETx.qYVI(e.lvDesc)), + (this.itemDesc.textFlow = t.hETx.qYVI(e.itemDesc)), + e.titleImg && ((this.titleImg.visible = !0), (this.titleImg.source = e.titleImg + "")), + e.reward && ((this.itemData.visible = !0), (this.itemData.data = e.reward)); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliLuDaShiSingleGiftItem = e), __reflect(e.prototype, "app.FuliLuDaShiSingleGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + Object.defineProperty(t, "serverTime", { + get: function () { + return t.serverTimeBase + egret.getTimer(); + }, + enumerable: !0, + configurable: !0, + }), + (t.serverTimeBase = 0), + (t.serverTimeDifference = 0), + (t.serverID = 0), + (t.combineServerCount = 0), + (t.sectionOpenDay = 0), + (t.roleLevel = 0), + (t.roleCircle = {}), + (t.otherPlayerId = 0), + (t.otherPlayerName = ""), + (t.dicIcon = {}), + t + ); + })(); + (t.GlobalData = e), __reflect(e.prototype, "app.GlobalData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.startDay = -1), (this.startDayTime = -1), (this.combineDay = -1), (this.combineTime = -1), (this.hasLogin = 0), (this.isSiege = -1); + } + return ( + (t.prototype.getOpenDay = function () { + return null; + }), + t + ); + })(); + (t.ThemeActiveMgr = e), __reflect(e.prototype, "app.ThemeActiveMgr"); +})(app || (app = {})); +var how; +!(function (t) { + var e = (function () { + function e(t, e, i) { + void 0 === t && (t = 300), + void 0 === e && (e = 2048), + void 0 === i && (i = null), + (this.textMap = {}), + (this.needRender = !1), + (this.maxWidth = 0), + (this.maxLabelWidth = 0), + (this.maxLabelHeight = 0), + "webgl" == egret.Capabilities.renderMode && + ((this.maxSize = e), (this.compFun = i), (this.container = new egret.DisplayObjectContainer()), (this.updateTime = egret.setInterval(this.render, this, t))); + } + return ( + (e.prototype.debug = function (t) { + t.addChild(this.container); + }), + (e.prototype.addChild = function (t) { + if ("webgl" == egret.Capabilities.renderMode && t.key) { + (this.textMap[t.key] = this.textMap[t.key] || {}), (this.textMap[t.key].qlabelList = this.textMap[t.key].qlabelList || []); + var e = this.textMap[t.key].qlabelList; + e.push(t), (this.textMap[t.key].qlabelList = e), this.refresh(); + } + }), + (e.prototype.removeChild = function (t) { + if ("webgl" == egret.Capabilities.renderMode) { + var e = this.textMap[t.key]; + if (e && e.length > 1) { + var i = e.indexOf(t); + e.splice(i, 1), (this.textMap[t.key].qlabelList = e); + } else delete this.textMap[t.key]; + this.refresh(); + } + }), + (e.prototype.onChange = function (t, e) { + if ("webgl" == egret.Capabilities.renderMode && e.stage && t != e.key) { + if (((this.textMap[e.key] = this.textMap[e.key] || {}), t)) { + var i = this.textMap[t]; + if (i && i.length > 1) { + var n = i.indexOf(e); + i.splice(n, 1), (this.textMap[t].qlabelList = i); + } else delete this.textMap[t]; + } + if (e.key) { + this.textMap[e.key].qlabelList = this.textMap[e.key].qlabelList || []; + var i = this.textMap[e.key].qlabelList; + i.push(e), (this.textMap[e.key].qlabelList = i); + } + this.refresh(); + } + }), + (e.prototype.refresh = function () { + this.needRender = !0; + }), + (e.prototype.render = function () { + if (this.needRender) { + (this.needRender = !1), (this.maxLabelWidth = 0), (this.maxLabelHeight = 0), this.container.removeChildren(), (this.pack = new t.MaxRectsBinPack(this.maxSize, this.maxSize, !1)); + var e = this.textMap; + for (var i in e) { + var n = e[i].qlabelList, + s = n[0].textField, + a = s.getBounds(); + (a.width += 4), (a.height += 4); + var r = this.pack.insert(a.width, a.height); + if (!r.width) throw "DSpriteSheet的尺寸" + this.maxSize + "溢出,请新建一个DSpriteSheet对象"; + (s.x = r.x), (s.y = r.y), (e[i].bounds = r), this.container.addChild(s); + } + this.spriteTexture || (this.spriteTexture = new egret.RenderTexture()), + this.spriteTexture.drawToTexture(this.container, new egret.Rectangle(0, 0, this.maxSize, this.maxSize)), + this.spriteSheet || (this.spriteSheet = new egret.SpriteSheet(this.spriteTexture)); + for (var i in e) + for (var n = e[i].qlabelList, o = 0; o < n.length; o++) { + var l = n[o], + a = e[i].bounds; + (l.texture = this.spriteSheet.createTexture(i, Math.round(a.x), Math.round(this.maxSize - a.height - a.y + 2), Math.round(a.width), Math.round(a.height - 2))), + (this.maxLabelWidth = Math.max(this.maxLabelWidth, l.width + l.x - 4)), + (this.maxLabelHeight = Math.max(this.maxLabelHeight, l.height + l.y - 4)); + } + this.compFun && this.compFun(this.maxLabelWidth, this.maxLabelHeight), this.container.removeChildren(); + } + }), + (e.prototype.updateCallback = function (t) { + void 0 === t && (t = null), (this.compFun = t); + }), + (e.prototype.dispose = function () { + egret.clearInterval(this.updateTime), + this.container && this.container.numChildren > 0 && this.container.removeChildren(), + this.spriteSheet && this.spriteSheet.dispose(), + this.spriteTexture && this.spriteTexture.dispose(), + (this.spriteSheet = this.spriteTexture = null); + }), + e + ); + })(); + (t.DSpriteSheet = e), __reflect(e.prototype, "how.DSpriteSheet"); +})(how || (how = {})); +var how; +!(function (t) { + var e = (function () { + function t(t, e, i) { + (this.binWidth = 0), (this.binHeight = 0), (this.allowRotations = !1), (this.usedRectangles = []), (this.freeRectangles = []), (this.score1 = 0), (this.score2 = 0), this.init(t, e, i); + } + return ( + (t.prototype.init = function (t, e, i) { + if (this.count(t) % 1 != 0 || this.count(e) % 1 != 0) throw new Error("Must be 2,4,8,16,32,...512,1024,..."); + (this.binWidth = t), (this.binHeight = e), (this.allowRotations = i); + var n = new egret.Rectangle(); + (n.x = 0), (n.y = 0), (n.width = t), (n.height = e), (this.usedRectangles.length = 0), (this.freeRectangles.length = 0), this.freeRectangles.push(n); + }), + (t.prototype.count = function (t) { + return t >= 2 ? this.count(t / 2) : t; + }), + (t.prototype.insert = function (t, e, n) { + void 0 === n && (n = i.BestAreaFit); + var s = new egret.Rectangle(); + switch (((this.score1 = 0), (this.score2 = 0), n)) { + case i.BestShortSideFit: + s = this.findPositionForNewNodeBestShortSideFit(t, e); + break; + case i.BottomLeftRule: + s = this.findPositionForNewNodeBottomLeft(t, e, this.score1, this.score2); + break; + case i.ContactPointRule: + s = this.findPositionForNewNodeContactPoint(t, e, this.score1); + break; + case i.BestLongSideFit: + s = this.findPositionForNewNodeBestLongSideFit(t, e, this.score2, this.score1); + break; + case i.BestAreaFit: + s = this.findPositionForNewNodeBestAreaFit(t, e, this.score1, this.score2); + } + return 0 == s.height ? s : (this.placeRectangle(s), s); + }), + (t.prototype.findPositionForNewNodeBestShortSideFit = function (t, e) { + var i = new egret.Rectangle(); + (this.bestShortSideFit = Number.MAX_VALUE), (this.bestLongSideFit = this.score2); + for (var n, s, a, r, o, l = 0; l < this.freeRectangles.length; l++) { + (n = this.freeRectangles[l]), + n.width >= t && + n.height >= e && + ((s = Math.abs(n.width - t)), + (a = Math.abs(n.height - e)), + (r = Math.min(s, a)), + (o = Math.max(s, a)), + (r < this.bestShortSideFit || (r == this.bestShortSideFit && o < this.bestLongSideFit)) && + ((i.x = n.x), (i.y = n.y), (i.width = t), (i.height = e), (this.bestShortSideFit = r), (this.bestLongSideFit = o))); + if (this.allowRotations && n.width >= e && n.height >= t) { + var h = Math.abs(n.width - e), + p = Math.abs(n.height - t), + u = Math.min(h, p), + c = Math.max(h, p); + (u < this.bestShortSideFit || (u == this.bestShortSideFit && c < this.bestLongSideFit)) && + ((i.x = n.x), (i.y = n.y), (i.width = e), (i.height = t), (this.bestShortSideFit = u), (this.bestLongSideFit = c)); + } + } + return i; + }), + (t.prototype.findPositionForNewNodeBottomLeft = function (t, e, i, n) { + var s = new egret.Rectangle(); + i = Number.MAX_VALUE; + for (var a, r, o = 0; o < this.freeRectangles.length; o++) + (a = this.freeRectangles[o]), + a.width >= t && a.height >= e && ((r = a.y + e), (i > r || (r == i && a.x < n)) && ((s.x = a.x), (s.y = a.y), (s.width = t), (s.height = e), (i = r), (n = a.x))), + this.allowRotations && a.width >= e && a.height >= t && ((r = a.y + t), (i > r || (r == i && a.x < n)) && ((s.x = a.x), (s.y = a.y), (s.width = e), (s.height = t), (i = r), (n = a.x))); + return s; + }), + (t.prototype.findPositionForNewNodeContactPoint = function (t, e, i) { + var n = new egret.Rectangle(); + i = -1; + for (var s, a, r = 0; r < this.freeRectangles.length; r++) + (s = this.freeRectangles[r]), + s.width >= t && s.height >= e && ((a = this.contactPointScoreNode(s.x, s.y, t, e)), a > i && ((n.x = s.x), (n.y = s.y), (n.width = t), (n.height = e), (i = a))), + this.allowRotations && s.width >= e && s.height >= t && ((a = this.contactPointScoreNode(s.x, s.y, e, t)), a > i && ((n.x = s.x), (n.y = s.y), (n.width = e), (n.height = t), (i = a))); + return n; + }), + (t.prototype.contactPointScoreNode = function (t, e, i, n) { + var s = 0; + (0 == t || t + i == this.binWidth) && (s += n), (0 == e || e + n == this.binHeight) && (s += i); + for (var a, r = 0; r < this.usedRectangles.length; r++) + (a = this.usedRectangles[r]), + (a.x == t + i || a.x + a.width == t) && (s += this.commonIntervalLength(a.y, a.y + a.height, e, e + n)), + (a.y == e + n || a.y + a.height == e) && (s += this.commonIntervalLength(a.x, a.x + a.width, t, t + i)); + return s; + }), + (t.prototype.commonIntervalLength = function (t, e, i, n) { + return i > e || t > n ? 0 : Math.min(e, n) - Math.max(t, i); + }), + (t.prototype.findPositionForNewNodeBestLongSideFit = function (t, e, i, n) { + var s = new egret.Rectangle(); + n = Number.MAX_VALUE; + for (var a, r, o, l, h, p = 0; p < this.freeRectangles.length; p++) + (a = this.freeRectangles[p]), + a.width >= t && + a.height >= e && + ((r = Math.abs(a.width - t)), + (o = Math.abs(a.height - e)), + (l = Math.min(r, o)), + (h = Math.max(r, o)), + (n > h || (h == n && i > l)) && ((s.x = a.x), (s.y = a.y), (s.width = t), (s.height = e), (i = l), (n = h))), + this.allowRotations && + a.width >= e && + a.height >= t && + ((r = Math.abs(a.width - e)), + (o = Math.abs(a.height - t)), + (l = Math.min(r, o)), + (h = Math.max(r, o)), + (n > h || (h == n && i > l)) && ((s.x = a.x), (s.y = a.y), (s.width = e), (s.height = t), (i = l), (n = h))); + return s; + }), + (t.prototype.findPositionForNewNodeBestAreaFit = function (t, e, i, n) { + var s = new egret.Rectangle(); + i = Number.MAX_VALUE; + for (var a, r, o, l, h, p = 0; p < this.freeRectangles.length; p++) + (a = this.freeRectangles[p]), + (h = a.width * a.height - t * e), + a.width >= t && + a.height >= e && + ((r = Math.abs(a.width - t)), + (o = Math.abs(a.height - e)), + (l = Math.min(r, o)), + (i > h || (h == i && n > l)) && ((s.x = a.x), (s.y = a.y), (s.width = t), (s.height = e), (n = l), (i = h))), + this.allowRotations && + a.width >= e && + a.height >= t && + ((r = Math.abs(a.width - e)), + (o = Math.abs(a.height - t)), + (l = Math.min(r, o)), + (i > h || (h == i && n > l)) && ((s.x = a.x), (s.y = a.y), (s.width = e), (s.height = t), (n = l), (i = h))); + return s; + }), + (t.prototype.placeRectangle = function (t) { + for (var e = this.freeRectangles.length, i = 0; e > i; i++) this.splitFreeNode(this.freeRectangles[i], t) && (this.freeRectangles.splice(i, 1), --i, --e); + this.pruneFreeList(), this.usedRectangles.push(t); + }), + (t.prototype.splitFreeNode = function (t, e) { + if (e.x >= t.x + t.width || e.x + e.width <= t.x || e.y >= t.y + t.height || e.y + e.height <= t.y) return !1; + var i; + return ( + e.x < t.x + t.width && + e.x + e.width > t.x && + (e.y > t.y && e.y < t.y + t.height && ((i = t.clone()), (i.height = e.y - i.y), this.freeRectangles.push(i)), + e.y + e.height < t.y + t.height && ((i = t.clone()), (i.y = e.y + e.height), (i.height = t.y + t.height - (e.y + e.height)), this.freeRectangles.push(i))), + e.y < t.y + t.height && + e.y + e.height > t.y && + (e.x > t.x && e.x < t.x + t.width && ((i = t.clone()), (i.width = e.x - i.x), this.freeRectangles.push(i)), + e.x + e.width < t.x + t.width && ((i = t.clone()), (i.x = e.x + e.width), (i.width = t.x + t.width - (e.x + e.width)), this.freeRectangles.push(i))), + !0 + ); + }), + (t.prototype.pruneFreeList = function () { + for (var t = 0; t < this.freeRectangles.length; t++) + for (var e = t + 1; e < this.freeRectangles.length; e++) { + if (this.isContainedIn(this.freeRectangles[t], this.freeRectangles[e])) { + this.freeRectangles.splice(t, 1); + break; + } + this.isContainedIn(this.freeRectangles[e], this.freeRectangles[t]) && this.freeRectangles.splice(e, 1); + } + }), + (t.prototype.isContainedIn = function (t, e) { + return t.x >= e.x && t.y >= e.y && t.x + t.width <= e.x + e.width && t.y + t.height <= e.y + e.height; + }), + t + ); + })(); + (t.MaxRectsBinPack = e), __reflect(e.prototype, "how.MaxRectsBinPack"); + var i; + !(function (t) { + (t[(t.BestShortSideFit = 0)] = "BestShortSideFit"), + (t[(t.BottomLeftRule = 1)] = "BottomLeftRule"), + (t[(t.ContactPointRule = 2)] = "ContactPointRule"), + (t[(t.BestLongSideFit = 3)] = "BestLongSideFit"), + (t[(t.BestAreaFit = 4)] = "BestAreaFit"); + })((i = t.FreeRectangleChoiceHeuristic || (t.FreeRectangleChoiceHeuristic = {}))); +})(how || (how = {})); +var how; +!(function (t) { + t.getQuickLabel = function (t, n) { + return void 0 === n && (n = 1), "webgl" == egret.Capabilities.renderMode && n ? new i(t) : new e(); + }; + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.htmlParser = new egret.HtmlTextParser()), (e.size = i.modoleSize), (e.textWidth = 1), e; + } + return ( + __extends(e, t), + Object.defineProperty(e.prototype, "textWidth", { + get: function () { + return this.width; + }, + set: function (t) { + this.width = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textHeight", { + get: function () { + return this.height; + }, + set: function (t) { + this.height = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "htmlText", { + get: function () { + return this.text; + }, + set: function (t) { + this.textFlow = this.htmlParser.parser(t); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textStroke", { + get: function () { + return this.stroke; + }, + set: function (t) { + this.stroke = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textStrokeColor", { + get: function () { + return this.strokeColor; + }, + set: function (t) { + this.strokeColor = t; + }, + enumerable: !0, + configurable: !0, + }), + (e.modoleSize = 30), + e + ); + })(egret.TextField); + (t.CanvasQuickLabel = e), __reflect(e.prototype, "how.CanvasQuickLabel"); + var i = (function (t) { + function e(i) { + var n = t.call(this) || this; + (n.htmlParser = new egret.HtmlTextParser()), (n._dSpriteSheet = i), (n._textField = new egret.TextField()), (n._textField.size = e.modoleSize); + n.textWidth; + return n; + } + return ( + __extends(e, t), + Object.defineProperty(e.prototype, "textField", { + get: function () { + return this._textField; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "dSpriteSheet", { + get: function () { + return this._dSpriteSheet; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "text", { + get: function () { + return this._textField.text; + }, + set: function (t) { + t.length || (t = " "); + var e = this.key; + (this._textField.text = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "htmlText", { + get: function () { + return this.text ? this._htmlText : ""; + }, + set: function (t) { + t.length || (t = " "); + var e = this.key; + (this._htmlText = t), (this._textField.textFlow = this.htmlParser.parser(t)), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textFlow", { + get: function () { + return this._textField.textFlow; + }, + set: function (t) { + var e = this.key; + (this._textField.textFlow = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textColor", { + get: function () { + return this._textField.textColor; + }, + set: function (t) { + var e = this.key; + (this._textField.textColor = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textWidth", { + get: function () { + return this._textField.width; + }, + set: function (t) { + var e = this.key; + (this._textField.width = t), (this.width = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textHeight", { + get: function () { + return this._textField.height; + }, + set: function (t) { + var e = this.key; + (this._textField.height = t), (this.height = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "lineSpacing", { + get: function () { + return this._textField.lineSpacing; + }, + set: function (t) { + this._textField.lineSpacing = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "size", { + get: function () { + return this._textField.size; + }, + set: function (t) { + var e = this.key; + (this._textField.size = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textAlign", { + get: function () { + return this._textField.textAlign; + }, + set: function (t) { + var e = this.key; + (this._textField.textAlign = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textVerticalAlign", { + get: function () { + return this._textField.verticalAlign; + }, + set: function (t) { + var e = this.key; + (this._textField.verticalAlign = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textStroke", { + get: function () { + return this._textField.stroke; + }, + set: function (t) { + var e = this.key; + (this._textField.stroke = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "textStrokeColor", { + get: function () { + return this._textField.strokeColor; + }, + set: function (t) { + var e = this.key; + (this._textField.strokeColor = t), this._dSpriteSheet.onChange(e, this); + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.$onAddToStage = function (e, i) { + t.prototype.$onAddToStage.call(this, e, i), this._dSpriteSheet.addChild(this); + }), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this), this._dSpriteSheet.removeChild(this); + }), + Object.defineProperty(e.prototype, "textBoldType", { + set: function (t) { + this._textField.bold = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "key", { + get: function () { + return this._textField.text + ? this.getRealText() + "," + this.textColor + "," + this.textWidth + "," + this.textHeight + "," + this.size + "," + this.textAlign + "," + this._textField.hashCode + : null; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getRealText = function () { + for (var t = "", e = 0; e < this.textFlow.length; e++) { + t += this.textFlow[e].text; + for (var i in this.textFlow[e].style) t += this.textFlow[e].style[i]; + } + return t; + }), + (e.modoleSize = 24), + e + ); + })(egret.Bitmap); + (t.QuickLabel = i), __reflect(i.prototype, "how.QuickLabel"); +})(how || (how = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformFuliGiftViewData = e), __reflect(e.prototype, "app.PlatformFuliGiftViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformFuliSuperVipGiftData = e), __reflect(e.prototype, "app.PlatformFuliSuperVipGiftData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformFuliTabViewData = e), __reflect(e.prototype, "app.PlatformFuliTabViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + return e.call(this, t) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.itemList.itemRenderer = t.PlatformFuliItemItem), + (this.itemList.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.bindingBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.bindingBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.receiveFlag ? (this.receiveImg.visible = !0) : this.bindPhone ? ((this.getBtn.visible = !0), (this.redPoint.visible = this.redValue)) : (this.bindingBtn.visible = !0); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.bindingBtn: + this.onBindingBtn(); + break; + case this.getBtn: + this.onGetBtn(); + } + }), + (i.prototype.onBindingBtn = function () { + this.giftData.onBindPhone(); + }), + (i.prototype.onGetBtn = function () { + this.giftData.onGetReward_phoneBindGift(); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_phoneBindGift(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.giftInfo.getRed_phoneBindGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.giftInfo.isGetPhoneBindGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bindPhone", { + get: function () { + return this.giftInfo.isPhoneBind(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.bindingBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.PlatformFuliGift); + (t.PlatformFuliBindingGift = e), __reflect(e.prototype, "app.PlatformFuliBindingGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.itemList.itemRenderer = t.PlatformFuliItemItem), + (this.itemList.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.boxDownBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.boxDownBtn.visible = !1), + (this.getBtn.visible = !1), + (this.redPoint.visible = !1), + (this.receiveImg.visible = !1), + this.receiveFlag ? (this.receiveImg.visible = !0) : (this.giftInfo.isBoxLogin() ? (this.getBtn.visible = !0) : (this.boxDownBtn.visible = !0), (this.redPoint.visible = this.redValue)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.boxDownBtn: + this.onBoxDownBtn(); + break; + case this.getBtn: + this.onGetBtn(); + } + }), + (i.prototype.onBoxDownBtn = function () { + this.giftData.onBoxDown(); + }), + (i.prototype.onGetBtn = function () { + this.giftInfo.isBoxLogin() && this.giftData.onGetReward_boxDownGift(); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_boxDownGift(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.giftInfo.getRed_boxDownGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.giftInfo.isGetBoxDownGift(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.boxDownBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliBoxGift = e), __reflect(e.prototype, "app.PlatformFuliBoxGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return e.createView(), e; + } + return ( + __extends(e, t), + (e.prototype.createView = function () { + (this.textField = new egret.TextField()), + this.addChild(this.textField), + (this.textField.y = 300), + (this.textField.width = 480), + (this.textField.height = 100), + (this.textField.textAlign = "center"); + }), + (e.prototype.setProgress = function (t, e) { + this.textField.text = "Loading..." + t + "/" + e; + }), + e + ); + })(egret.Sprite); + (t.LoadingUI = e), __reflect(e.prototype, "app.LoadingUI"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + this.data.descList && this.descList && ((this.descList.itemRenderer = t.PlatformFuliDescItem), (this.descList.dataProvider = new eui.ArrayCollection(this.data.descList))), + (this.itemList.itemRenderer = t.PlatformFuliItemItem), + (this.itemList.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.indulgeBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.indulgeBtn.visible = !1), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.receiveFlag ? (this.receiveImg.visible = !0) : this.indulge ? ((this.getBtn.visible = !0), (this.redPoint.visible = this.redValue)) : (this.indulgeBtn.visible = !0); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.indulgeBtn: + this.onIndulgeBtn(); + break; + case this.getBtn: + this.onGetBtn(); + } + }), + (i.prototype.onIndulgeBtn = function () { + this.giftData.onActorInfo(); + }), + (i.prototype.onGetBtn = function () { + return this.giftData.onGetReward_indulgeGift(); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_indulgeGift(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.giftInfo.getRed_indulgeGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.giftInfo.isGetIndulgeGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "indulge", { + get: function () { + return this.giftInfo.isIndulge(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.indulgeBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliIndulgeGift = e), __reflect(e.prototype, "app.PlatformFuliIndulgeGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () {}), + (i.prototype.initUI = function () { + (this.list.itemRenderer = this.data.itemClass), this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), this.updateView(); + }), + (i.prototype.updateView = function () { + this.list.dataProvider = new eui.ArrayCollection(this.data.rewardList); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliLevelGift = e), __reflect(e.prototype, "app.PlatformFuliLevelGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.itemList.itemRenderer = t.PlatformFuliItemItem), + (this.itemList.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.getBtn, this.onClick), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.microDownBtn.visible = !1), + (this.getBtn.visible = !1), + (this.redPoint.visible = !1), + (this.receiveImg.visible = !1), + this.receiveFlag ? (this.receiveImg.visible = !0) : (this.giftInfo.isWayLogin() ? (this.getBtn.visible = !0) : (this.microDownBtn.visible = !0), (this.redPoint.visible = this.redValue)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.microDownBtn: + this.onMicroDownBtn(); + break; + case this.getBtn: + this.onGetBtn(); + } + }), + (i.prototype.onMicroDownBtn = function () { + this.giftData.onMicroDown(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + }), + (i.prototype.onGetBtn = function () { + this.giftInfo.isWayLogin() && this.giftData.onGetReward_loginWayGift(); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_loginWayGift(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.giftInfo.getRed_microGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.giftInfo.isGetMicroGift(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.microDownBtn, this.onClick), this.fEHj(this.getBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliMicroGift = e), __reflect(e.prototype, "app.PlatformFuliMicroGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e) { + var i = t.call(this) || this; + return (i.data = e), (i.skinName = i.data.skinName), i; + } + return ( + __extends(e, t), + (e.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), (this.data = null); + }), + e + ); + })(t.BaseView); + (t.PlatformFuliNothing = e), __reflect(e.prototype, "app.PlatformFuliNothing"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.isComplete = !1), (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () {}), + (i.prototype.initUI = function () { + this.lab2 && (this.lab2.text = t.CrmPU.language_System97), + this.qqLabel && (this.qqLabel.text = this.data.qqStr), + this.wxLabel && (this.wxLabel.text = this.data.wxStr), + this.rechargeBtn && this.vKruVZ(this.rechargeBtn, this.onClick), + this.copyBtn && this.vKruVZ(this.copyBtn, this.onClick), + this.codeBtn && this.vKruVZ(this.codeBtn, this.onClick), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + this.isComplete = !1; + var e = t.NWRFmB.ins().getPayer, + i = this.data.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? (this.qqLabel && this.wxLabel + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System106, i)), (this.qqLabel.visible = !1), (this.wxLabel.visible = !1)) + : this.qqLabel + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System96, i)), (this.qqLabel.visible = !1)) + : this.wxLabel + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System102, i)), (this.wxLabel.visible = !1)) + : (this.lab.text = t.zlkp.replace(t.CrmPU.language_System107, i)), + (this.lab.visible = !0), + this.copyBtn && (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + this.codeBtn && (this.codeBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.isComplete = !0), + (this.lab.visible = !1), + this.qqLabel && (this.qqLabel.visible = !0), + this.wxLabel && (this.wxLabel.visible = !0), + this.copyBtn && (this.copyBtn.filters = null), + this.codeBtn && (this.codeBtn.filters = null)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.rechargeBtn: + this.onRechargeBtn(); + break; + case this.copyBtn: + this.onCopyBtn(); + break; + case this.codeBtn: + this.onCodeBtn(); + } + }), + (i.prototype.onRechargeBtn = function () { + t.RechargeMgr.ins().onPay(""); + }), + (i.prototype.onCopyBtn = function () { + if (this.isComplete) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().IrCm("手机版暂不支持~"); + var e = document.createElement("input"); + (e.value = this.data.copyValue), + document.body.appendChild(e), + e.select(), + e.setSelectionRange(0, e.value.length), + document.execCommand("Copy"), + document.body.removeChild(e), + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips157); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + }), + (i.prototype.onCodeBtn = function () { + this.isComplete ? t.mAYZL.ins().open(t.PlatformFuliVipCodeView, this.data) : t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), + this.rechargeBtn && this.fEHj(this.rechargeBtn, this.onClick), + this.copyBtn && this.fEHj(this.copyBtn, this.onClick), + this.codeBtn && this.fEHj(this.codeBtn, this.onClick), + (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliSuperVipGift = e), __reflect(e.prototype, "app.PlatformFuliSuperVipGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + this.itemData && (this.itemData.data = this.getRewardList()), this.vKruVZ(this.wxBuyBtn, this.onClick), this.HFTK(t.edHC.ins().post_26_80, this.updateCode); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.wxBuyBtn: + this.onWxBuyBtn(); + } + }), + (i.prototype.updateCode = function (t) { + 0 == t && this.giftData.getGiftInfo(); + }), + (i.prototype.onWxBuyBtn = function () { + "" != this.InputCode.text && t.edHC.ins().send_26_63(this.InputCode.text); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_weixinGift(); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.wxBuyBtn, this.onClick), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.PlatformFuliWXGift = e), __reflect(e.prototype, "app.PlatformFuliWXGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "PlatformFuliBannerSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.update = function (t) { + this.bannerImg.source = t; + }), + (e.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(); + }), + e + ); + })(t.BaseView); + (t.PlatformFuliBanner = e), __reflect(e.prototype, "app.PlatformFuliBanner"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.data && ((this.numb.source = "mun_" + this.data.index), (this.descLab.text = this.data.desc)); + }), + e + ); + })(t.BaseItemRender); + (t.PlatformFuliDescItem = e), __reflect(e.prototype, "app.PlatformFuliDescItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + this.ItemData.data = this.data; + var e = t.ZAJw.sztgR(this.data.type, this.data.id); + e && (this.itemName.text = e[0] + ""); + } + }), + i + ); + })(t.BaseItemRender); + (t.PlatformFuliItemItem = e), __reflect(e.prototype, "app.PlatformFuliItemItem"); +})(app || (app = {})); +var PlatformFuliLevelGiftItem = (function () { + function t() {} + return t; +})(); +__reflect(PlatformFuliLevelGiftItem.prototype, "PlatformFuliLevelGiftItem"); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + this.data && (this.data.tabLab && (this.labelDisplay.text = this.data.tabLab + ""), this.updateRed()); + }), + (i.prototype.updateRed = function () { + this.data.redFunc && (this.redPoint.visible = this.data.redFunc()); + }), + i + ); + })(eui.ItemRenderer); + (t.PlatformFuliTabItem = e), __reflect(e.prototype, "app.PlatformFuliTabItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.viewData = t.bXKx.ins().platformFuliViewData), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.bannerGroup.visible = !1), (this.titleImg.source = this.viewData.getViewData().titleStr); + }), + (i.prototype.setOpenIndex = function () { + var t = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (t) { + if ((this._currPanel && (this._currPanel.visible = !1), !this.paneHash[t.id])) { + var e = t.viewClass, + i = new e(t.viewData); + this.infoGroup.addChild(i), (this.paneHash[t.id] = i); + } + (this._currPanel = this.paneHash[t.id]), (this._currPanel.visible = !0), this.showBanner(t.banner); + } + }), + (i.prototype.showBanner = function (e) { + if (e && !this._bannerPanel) { + var i = t.bXKx.ins().platformFuliViewData.getViewData().banner; + (this._bannerPanel = new i()), this._bannerPanel.update(e), this.bannerGroup.addChild(this._bannerPanel); + } + this.bannerGroup.visible = !!e; + }), + (i.prototype.getTabBarAr = function () { + return this.viewData.getGiftsViewData(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), (this.viewData = null); + }), + i + ); + })(t.PlatformFuliView); + (t.PlatformFuliHallView = e), __reflect(e.prototype, "app.PlatformFuliHallView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.viewData = t.bXKx.ins().platformFuliViewData), (i.giftData = t.bXKx.ins().VbEA), (i.giftInfo = t.bXKx.ins().bXBd), (i.skinName = "PlatformFuliViewSkin3"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.titleImg.source = "biaoti_wanshanziliao"); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.apply(this, i), + (this._currPanel = new t.PlatformFuliIndulgeGift(this.viewData.getIndulgeGiftData())), + this.infoGroup.addChild(this._currPanel), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateActorInfo); + }), + (i.prototype.updateActorInfo = function () { + this.giftInfo.isGetBoxDownGift() && t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), (this.viewData = null), (this.giftData = null), (this.giftInfo = null); + }), + i + ); + })(t.PlatformFuliView2); + (t.PlatformFuliIndulgeView = e), __reflect(e.prototype, "app.PlatformFuliIndulgeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.viewData = t.bXKx.ins().platformFuliViewData), + (i.giftData = t.bXKx.ins().VbEA), + (i.giftInfo = t.bXKx.ins().bXBd), + (i.skinName = i.viewData.getMicroGiftData().skinName), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.rewards.itemRenderer = t.ItemBase), + (this.rewards.dataProvider = new eui.ArrayCollection(this.getRewardList())), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + return this.giftInfo.isGetMicroGift() + ? void t.mAYZL.ins().close(this) + : ((this.microDownBtn.visible = !1), + (this.receiveBtn.visible = !1), + this.giftInfo.isWayLogin() ? (this.receiveBtn.visible = !0) : (this.microDownBtn.visible = !0), + (this.redPoint.visible = this.redValue), + void (this.receiveImg.visible = this.receiveFlag)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.receiveBtn: + this.onReceiveBtn(); + break; + case this.microDownBtn: + this.onMicroDownBtn(); + break; + case this.closeBtn: + this.onCloseBtn(); + } + }), + (i.prototype.onReceiveBtn = function () { + this.giftInfo.isWayLogin() && this.giftData.onGetReward_loginWayGift(); + }), + (i.prototype.onMicroDownBtn = function () { + this.giftData.onMicroDown(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + }), + (i.prototype.onCloseBtn = function () { + this.giftInfo.isWayLogin() || 0 != t.FuLi4366Mgr.ins().isDown || (this.giftData.onMicroDown(), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)), t.mAYZL.ins().close(this); + }), + (i.prototype.getRewardList = function () { + return this.giftData.getReward_loginWayGift(); + }), + Object.defineProperty(i.prototype, "redValue", { + get: function () { + return this.giftInfo.getRed_microGift(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "receiveFlag", { + get: function () { + return this.giftInfo.isGetMicroGift(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.microDownBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + (this.viewData = null), + (this.giftData = null), + (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.PlatformFuliMicroView = e), __reflect(e.prototype, "app.PlatformFuliMicroView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.viewData = t.bXKx.ins().platformFuliViewData), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.titleImg.source = "biaoti_chaojivip"); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.apply(this, i), (this._currPanel = new t.PlatformFuliSuperVipGift(this.viewData.getSuperVipGiftData())), this.infoGroup.addChild(this._currPanel); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), (this.viewData = null); + }), + i + ); + })(t.PlatformFuliView2); + (t.PlatformFuliSuperVipView = e), __reflect(e.prototype, "app.PlatformFuliSuperVipView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + (this.skinName = t[0].codeSkinName), this.vKruVZ(this.dialogCloseBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.dialogCloseBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.PlatformFuliVipCodeView = e), __reflect(e.prototype, "app.PlatformFuliVipCodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.viewData = t.bXKx.ins().platformFuliViewData), (i.giftData = t.bXKx.ins().VbEA), (i.giftInfo = t.bXKx.ins().bXBd), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.titleImg.source = "biaoti_weixinlibao"); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.apply(this, i), + (this._currPanel = new t.PlatformFuliWXGift(this.viewData.getWeixinGiftData())), + this.infoGroup.addChild(this._currPanel), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateActorInfo); + }), + (i.prototype.updateActorInfo = function () { + this.giftInfo.isGetWeChatGift() && t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), (this.viewData = null), (this.giftData = null), (this.giftInfo = null); + }), + i + ); + })(t.PlatformFuliView2); + (t.PlatformFuliWeixinView = e), __reflect(e.prototype, "app.PlatformFuliWeixinView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_37(this.loginWay); + }), + Object.defineProperty(i.prototype, "loginWay", { + get: function () { + return window.userInfo.wei && 1 == parseInt(window.userInfo.wei) ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "fcm", { + get: function () { + return window.userInfo.adult ? parseInt(window.userInfo.adult) : 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bindPhone", { + get: function () { + return window.userInfo.bindPhone ? parseInt(window.userInfo.bindPhone) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_phoneBindGift = function () { + var e = t.VlaoF.PlatformqidianConfig; + return e && e.bindPhoneReward ? e.bindPhoneReward : []; + }), + (i.prototype.onGetReward_phoneBindGift = function () { + t.FuLi4366Mgr.ins().send_32_38(2); + }), + i + ); + })(t.PlatformFuliData); + (t.FuliQidianData = e), __reflect(e.prototype, "app.FuliQidianData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && e.queryBindPhoneFunction(); + }), + (i.prototype.readFuliInfo = function (t) { + (this._phoneBindState = t.readByte()), (this._svipGiftFlag = t.readByte()), (this._phoneBindGiftFlag = t.readByte()); + }), + i + ); + })(t.CsKu); + (t.FuliQidianInfo = e), __reflect(e.prototype, "app.FuliQidianInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getViewData = function () { + return { + titleStr: "biaoti_bangdingyouli", + }; + }), + (i.prototype.getGiftsViewData = function () { + var e = t.bXKx.ins().bXBd; + return [ + { + id: 1, + tabLab: t.CrmPU.language_Omission_txt117, + redFunc: e.getRed_phoneBindGift.bind(e), + viewClass: t.PlatformFuliBindingGift, + viewData: { + skinName: "FuliQidianBindingGiftSkin", + }, + }, + ]; + }), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: t.VlaoF.PlatformqidianConfig.limit, + qqStr: Main.vZzwB.kfQQ, + copyValue: Main.vZzwB.kfQQ, + skinName: "FuliQidianSuperVipGiftSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliQidianViewData = e), __reflect(e.prototype, "app.FuliQidianViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.OverviewPanel = 0)] = "OverviewPanel"), (t[(t.NovicePanel = 1)] = "NovicePanel"), (t[(t.GrowPanel = 2)] = "GrowPanel"), (t[(t.DayPanel = 3)] = "DayPanel"); + })((e = t.QQBlueDiamondTabEnum || (t.QQBlueDiamondTabEnum = {}))); + var i = (function (i) { + function n() { + var t = i.call(this) || this; + return (t._curIndex = -1), (t.skinName = "QQBlueDiamondViewSkin"), t; + } + return ( + __extends(n, i), + (n.prototype.initUI = function () { + i.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.QQBlueDiamondTabView), + (this.otherList.itemRenderer = t.QQBlueGiftItemRenderer), + (this.otherList2.itemRenderer = t.QQBlueOverviewItemRenderer), + (this.otherList3.itemRenderer = t.QQBlueGiftItemRenderer), + (this.otherList4.itemRenderer = t.QQBlueGiftItemRenderer), + (this.noviceList.itemRenderer = t.ItemBase), + (this.otherData = new eui.ArrayCollection()), + (this.otherList.dataProvider = this.otherData), + (this.otherData2 = new eui.ArrayCollection()), + (this.otherList3.dataProvider = this.otherData2), + (this.otherData3 = new eui.ArrayCollection()), + (this.otherList4.dataProvider = this.otherData3), + (this.otherList2.dataProvider = new eui.ArrayCollection(["lz_tqzl1", "lz_tqzl2", "lz_tqzl3", "lz_tqzl4"])); + }), + (n.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), + (this.blueLinkLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_207)), + t.MouseScroller.bind(this.otherScroller), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.addChangingEvent(this.tabBar, this.onTabTouching), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.blueTipsImg, this.onClick), + this.vKruVZ(this.blueOpenBtn, this.onClick), + this.vKruVZ(this.blueOpenBtn2, this.onClick), + this.vKruVZ(this.blueLinkLab, this.onClick), + this.HFTK(t.edHC.ins().post_26_82, this.updateCurInfo), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateCurInfo), + (this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 1, + index: 1, + txt: t.CrmPU.language_Common_197, + }, + { + type: 1, + index: 2, + txt: t.CrmPU.language_Common_193, + }, + { + type: 1, + index: 3, + txt: t.CrmPU.language_Common_194, + }, + { + type: 1, + index: 4, + txt: t.CrmPU.language_Common_195, + }, + ])), + (this.tabBar.selectedIndex = this._curIndex), + this.setOpenIndex(this._curIndex), + t.edHC.ins().send_26_7(); + var n = t.edHC.ins().getQQBlueInfo(); + n[2] > 0 ? ((this.blueOpenBtn.source = "lz_xflzbt"), (this.blueOpenBtn2.source = "lz_xfnflzbt")) : ((this.blueOpenBtn.source = "lz_ktlzbt"), (this.blueOpenBtn2.source = "lz_ktnflzbt")); + }), + (n.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex); + }), + (n.prototype.onTabTouch = function (t) { + (this.otherScroller.viewport.scrollV = 0), this.otherScroller.stopAnimation(), (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (n.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (n.prototype.checkIsOpen = function (t) { + switch (t) { + case e.OverviewPanel: + return !0; + case e.DayPanel: + return !0; + case e.NovicePanel: + return !0; + case e.GrowPanel: + return !0; + } + }), + (n.prototype.setOpenIndex = function (i) { + (this.noviceGrp.visible = !1), + (this.otherScroller.visible = !1), + (this.otherScroller2.visible = !1), + (this.dayGrp.visible = !1), + (this.receiveImg.visible = !1), + (this.receiveBtn.filters = null), + (this.receiveBtn.enabled = !0), + (this.receiveBtn.visible = !1), + (this.redPoint.visible = !1), + (this.blueTipsImg.visible = !1); + var n, + s = [], + a = t.edHC.ins().QQGiftInfo, + r = t.edHC.ins().getQQBlueInfo(); + switch (i) { + case e.OverviewPanel: + this.otherScroller2.visible = !0; + break; + case e.DayPanel: + (this.dayGrp.visible = !0), (n = t.VlaoF.BlueDiamondDailyConfig); + var o = r ? r[2] : 0, + l = n[o], + h = []; + if (!l) { + var p = 0, + u = 0; + for (var c in n) (n[c].level < p || 0 == p) && (p = n[c].level), (n[c].level > u || 0 == p) && (u = n[c].level); + p > o ? (o = p) : o > u && (o = u), (l = n[o]); + } + for (var c in n) { + var g = { + rewards: n[c].reward1, + lv: n[c].level, + type: e.DayPanel, + giftType: 1, + desc: t.zlkp.replace(t.CrmPU.language_Common_198, n[c].level), + }; + o == n[c].level ? s.unshift([g]) : s.push([g]); + } + l && + (h.push([ + { + rewards: l.reward2, + lv: l.level, + type: e.DayPanel, + giftType: 2, + desc: t.CrmPU.language_Common_199, + tips: t.CrmPU.language_Tips130, + }, + ]), + h.push([ + { + rewards: l.reward3, + lv: l.level, + type: e.DayPanel, + giftType: 3, + desc: t.CrmPU.language_Common_200, + tips: t.CrmPU.language_Tips131, + }, + ])), + this.otherData2.replaceAll(s), + this.otherData3.replaceAll(h); + break; + case e.NovicePanel: + (this.noviceGrp.visible = !0), + (n = t.VlaoF.PlatformQQConfig.reward3), + n && (this.noviceList.dataProvider = new eui.ArrayCollection(n)), + t.isQQpf() && a && r && r[0] > 0 + ? 1 == a.isNoviceGift + ? (this.receiveImg.visible = !0) + : ((this.receiveBtn.visible = !0), (this.redPoint.visible = !0)) + : ((this.receiveBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), (this.receiveBtn.enabled = !1), (this.receiveBtn.visible = !0)); + break; + case e.GrowPanel: + if (((this.otherScroller.visible = !0), (n = t.VlaoF.LevelBlueDiamondConfig))) + for (var c in n) + s.push([ + { + rewards: n[c].reward, + day: n[c].id, + lv: n[c].level, + type: e.GrowPanel, + }, + ]); + this.otherData.replaceAll(s); + } + }), + (n.prototype.onClick = function (i) { + switch (i.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.receiveBtn: + if (t.isQQpf()) { + var n = t.edHC.ins().QQGiftInfo, + s = t.edHC.ins().getQQBlueInfo(); + n && s && s[0] > 0 ? this._curIndex == e.NovicePanel && 0 == n.isNoviceGift && t.edHC.ins().send_26_8(1, 0) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips128); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips128); + break; + case this.blueTipsImg: + case this.blueOpenBtn: + case this.blueOpenBtn2: + window.openBlueFunction(); + break; + case this.blueLinkLab: + window.openQQBlueDiamond(); + } + }), + (n.prototype.close = function () { + for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; + i.prototype.close.call(this, e), + this.$onClose(), + t.MouseScroller.unbind(this.otherScroller), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.blueTipsImg, this.onClick), + this.fEHj(this.blueOpenBtn, this.onClick), + this.fEHj(this.blueOpenBtn2, this.onClick), + this.fEHj(this.blueLinkLab, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this); + }), + n + ); + })(t.gIRYTi); + (t.QQBlueDiamondView = i), __reflect(i.prototype, "app.QQBlueDiamondView"), t.mAYZL.ins().reg(i, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.NovicePanel = 0)] = "NovicePanel"), (t[(t.GrowPanel = 1)] = "GrowPanel"), (t[(t.DayPanel = 2)] = "DayPanel"); + })((e = t.QQLobbyTabEnum || (t.QQLobbyTabEnum = {}))); + var i = (function (i) { + function n() { + var t = i.call(this) || this; + return (t._curIndex = -1), (t.skinName = "QQLobbyPrivilegesWinSkin"), t; + } + return ( + __extends(n, i), + (n.prototype.initUI = function () { + i.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.QQLobbyPrivilegesTabView), + (this.otherList.itemRenderer = t.QQLobbyPrivilegesGiftItemView), + (this.noviceList.itemRenderer = t.ItemBase), + (this.otherData = new eui.ArrayCollection()), + (this.otherList.dataProvider = this.otherData); + }), + (n.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), + t.MouseScroller.bind(this.otherScroller), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.addChangingEvent(this.tabBar, this.onTabTouching), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.receiveBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().post_32_2, this.updateCurInfo), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateCurInfo), + (this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 1, + index: 1, + txt: t.CrmPU.language_Common_193, + }, + { + type: 1, + index: 2, + txt: t.CrmPU.language_Common_194, + }, + { + type: 1, + index: 3, + txt: t.CrmPU.language_Common_195, + }, + ])), + (this.tabBar.selectedIndex = this._curIndex), + this.setOpenIndex(this._curIndex), + t.FuLi4366Mgr.ins().send_32_7(); + }), + (n.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex); + }), + (n.prototype.onTabTouch = function (t) { + (this.otherScroller.viewport.scrollV = 0), this.otherScroller.stopAnimation(), (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (n.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (n.prototype.checkIsOpen = function (t) { + switch (t) { + case e.NovicePanel: + return !0; + case e.GrowPanel: + return !0; + case e.DayPanel: + return !0; + } + }), + (n.prototype.setOpenIndex = function (i) { + (this.noviceGrp.visible = !1), (this.otherScroller.visible = !1), (this.receiveImg.visible = !1), (this.receiveBtn.visible = !1), (this.redPoint.visible = !1); + var n, + s = [], + a = t.FuLi4366Mgr.ins().QQGiftInfo; + switch (i) { + case e.NovicePanel: + (this.noviceGrp.visible = !0), + (this.noviceTitleImg.source = "qqdt_xinshou_dabiaoti"), + (n = t.VlaoF.PlatformQQConfig.reward1), + n && (this.noviceList.dataProvider = new eui.ArrayCollection(n)), + t.isQQpf() && a + ? 1 == a.ifRegisterGift + ? (this.receiveImg.visible = !0) + : ((this.receiveBtn.currentState = "up"), (this.receiveBtn.visible = !0), 1 == window.loginWay && (this.redPoint.visible = !0)) + : ((this.receiveBtn.currentState = "disabled"), (this.receiveBtn.visible = !0)); + break; + case e.GrowPanel: + if (((this.otherScroller.visible = !0), (n = t.VlaoF.LoginQQConfig))) + for (var r in n) + s.push([ + { + rewards: n[r].reward, + day: n[r].id, + lv: n[r].level, + type: e.GrowPanel, + }, + ]); + this.otherData.replaceAll(s); + break; + case e.DayPanel: + (this.noviceGrp.visible = !0), + (this.noviceTitleImg.source = "qqdt_meir_dabiaoti"), + (n = t.VlaoF.PlatformQQConfig.reward2), + n && (this.noviceList.dataProvider = new eui.ArrayCollection(n)), + t.isQQpf() && a + ? 1 == a.isActiveGift + ? (this.receiveImg.visible = !0) + : ((this.receiveBtn.currentState = "up"), (this.receiveBtn.visible = !0), 1 == window.loginWay && (this.redPoint.visible = !0)) + : ((this.receiveBtn.currentState = "disabled"), (this.receiveBtn.visible = !0)); + } + }), + (n.prototype.onClick = function (i) { + switch (i.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.receiveBtn: + if (t.isQQpf()) { + var n = t.FuLi4366Mgr.ins().QQGiftInfo; + n + ? this._curIndex == e.NovicePanel + ? 0 == n.ifRegisterGift && t.FuLi4366Mgr.ins().send_32_8() + : this._curIndex == e.DayPanel && 0 == n.isActiveGift && t.FuLi4366Mgr.ins().send_32_10() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips127); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips127); + } + }), + (n.prototype.close = function () { + for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; + i.prototype.close.call(this, e), + this.$onClose(), + t.MouseScroller.unbind(this.otherScroller), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.receiveBtn, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this); + }), + n + ); + })(t.gIRYTi); + (t.QQLobbyPrivilegesWinView = i), __reflect(i.prototype, "app.QQLobbyPrivilegesWinView"), t.mAYZL.ins().reg(i, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "QQVipCodeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.dialogCloseBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.dialogCloseBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.QQVipCodeView = e), __reflect(e.prototype, "app.QQVipCodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.showLimit = 1e4), (t.skinName = "QQVipFuLiSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + this.vKruVZ(this.codeBtn, this.onClick), + (this.lab2.text = t.CrmPU.language_System97), + (this.qqLabel.text = Main.vZzwB.kfQQ), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.NWRFmB.ins().getPayer, + i = this.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System102, i)), + (this.lab.visible = !0), + (this.qqLabel.visible = !1), + (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.codeBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.lab.visible = !1), (this.qqLabel.visible = !0), (this.copyBtn.filters = null), (this.codeBtn.filters = null)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + var i = document.createElement("input"); + (i.value = Main.vZzwB.kfQQ), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + break; + case this.codeBtn: + this.qqLabel.visible ? t.mAYZL.ins().open(t.QQVipCodeView) : t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.rechargeBtn, this.onClick), + this.fEHj(this.copyBtn, this.onClick), + this.fEHj(this.codeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.QQVipFuLiView = e), __reflect(e.prototype, "app.QQVipFuLiView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._showMessages = ""), t; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addMsgListener(); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.addMsgListener = function () { + if ((t.rLmMYc.ins().removeAll(this), (this._showMessages = "edHC.post_26_82;Nzfh.post_updateLevel;"), this._showMessages)) { + for (var e = this._showMessages.split(";"), i = e.length, n = null, s = null, a = 0; i > a; a++) + (s = e[a].split(".")), (n = egret.getDefinitionByName("app." + s[0])), n && n.ins && n.ins()[s[1]] && t.rLmMYc.addListener(n.ins()[s[1]], this.delayUpdateShow, this); + this.delayUpdateShow(); + } + }), + (i.prototype.delayUpdateShow = function () { + t.KHNO.ins().RTXtZF(this.updateShow, this) || t.KHNO.ins().tBiJo(500, 1, this.updateShow, this); + }), + (i.prototype.updateShow = function () { + t.KHNO.ins().remove(this.updateShow, this); + var e = t.edHC.ins().updateQQRed(this.data.type, this.data.index); + this.redPoint.visible = e > 0; + }), + (i.prototype.dataChanged = function () { + this.data && this.data.txt && (this.labelDisplay.text = this.data.txt + ""); + }), + i + ); + })(eui.ItemRenderer); + (t.QQBlueDiamondTabView = e), __reflect(e.prototype, "app.QQBlueDiamondTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.canGet = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.rewards.itemRenderer = t.ItemBase), + this.vKruVZ(this.receiveBtn, this.onTouch), + this.VoZqXH(this.receiveBtn, this.mouseMove), + this.EeFPm(this.receiveBtn, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch), this.lbpdAJ(this.receiveBtn, this.mouseMove), this.lvpAF(this.receiveBtn, this.mouseMove); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + this.data[0].type == t.QQBlueDiamondTabEnum.DayPanel + ? this.canGet && t.edHC.ins().send_26_8(3, this.data[0].giftType) + : this.data[0].type == t.QQBlueDiamondTabEnum.GrowPanel && t.edHC.ins().send_26_8(2, this.data[0].day); + } + }), + (i.prototype.mouseMove = function (e) { + if (this.data[0].type == t.QQBlueDiamondTabEnum.DayPanel && !this.canGet) + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data[0].tips) { + var i = e.currentTarget.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, this.data[0].tips, { + x: i.x + e.currentTarget.width / 2, + y: i.y + e.currentTarget.height / 2, + }), + (i = null); + } + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.receiveBtn.currentState = ""), (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !1), (this.receiveImg.visible = !1), (this.redPoint.visible = !1), (this.canGet = !1); + var e = t.edHC.ins().QQGiftInfo, + i = t.edHC.ins().getQQBlueInfo(), + n = 0, + s = 0, + a = t.NWRFmB.ins().getPayer; + if ((a && a.propSet && (n = a.propSet.mBjV()), (this.rewards.dataProvider = new eui.ArrayCollection(this.data[0].rewards)), this.data[0].type == t.QQBlueDiamondTabEnum.DayPanel)) + if ((1 == this.data[0].giftType ? (this.curDay.text = this.data[0].desc) : (this.curImg.source = 2 == this.data[0].giftType ? "wenzi_lzhhbewlq" : "wenzi_nflzgzewlq"), t.isQQpf())) { + var r = i ? i[2] : 0; + r == this.data[0].lv && + (1 == this.data[0].giftType + ? i[0] > 0 && (this.canGet = !0) + : 2 == this.data[0].giftType + ? 2 == i[0] && (this.canGet = !0) + : 3 == this.data[0].giftType && 1 == i[1] && (this.canGet = !0)), + e && this.canGet + ? ((s = t.MathUtils.getValueAtBit(e.isDayGift, this.data[0].giftType)), s ? (this.receiveImg.visible = !0) : ((this.receiveBtn.visible = !0), (this.redPoint.visible = !0))) + : ((this.receiveBtn.currentState = "disabled"), (this.receiveBtn.visible = !0)); + } else (this.receiveBtn.enabled = !1), (this.receiveBtn.visible = !0); + else + this.data[0].type == t.QQBlueDiamondTabEnum.GrowPanel && + ((this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_201, this.data[0].lv))), + t.isQQpf() + ? e && i && i[0] > 0 && n >= this.data[0].lv + ? ((s = t.MathUtils.getValueAtBit(e.isLevelGift, this.data[0].day)), + s ? (this.receiveImg.visible = !0) : ((this.receiveImg.visible = !1), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0))) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.currentState = "disabled"), (this.receiveBtn.visible = !0)) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.visible = !0))); + } + }), + i + ); + })(t.BaseItemRender); + (t.QQBlueGiftItemRenderer = e), __reflect(e.prototype, "app.QQBlueGiftItemRenderer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.img.source = this.data; + }), + e + ); + })(eui.ItemRenderer); + (t.QQBlueOverviewItemRenderer = e), __reflect(e.prototype, "app.QQBlueOverviewItemRenderer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.FuLi4366Mgr.ins().send_32_9(this.data[0].day); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.receiveBtn.currentState = ""), (this.receiveImg.visible = !1), (this.redPoint.visible = !1); + var e = t.FuLi4366Mgr.ins().QQGiftInfo, + i = 0, + n = 0, + s = t.NWRFmB.ins().getPayer; + s && s.propSet && (i = s.propSet.mBjV()), + (this.rewards.dataProvider = new eui.ArrayCollection(this.data[0].rewards)), + this.data[0].type == t.QQLobbyTabEnum.GrowPanel && + ((this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_196, this.data[0].lv))), + t.isQQpf() + ? e && i >= this.data[0].lv + ? ((n = t.MathUtils.getValueAtBit(e.isLevelGift, this.data[0].day)), + n + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0), (this.receiveBtn.currentState = ""))) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.currentState = "disabled")) + : (this.receiveBtn.enabled = !1)); + } + }), + i + ); + })(t.BaseItemRender); + (t.QQLobbyPrivilegesGiftItemView = e), __reflect(e.prototype, "app.QQLobbyPrivilegesGiftItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._showMessages = ""), t; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addMsgListener(); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.addMsgListener = function () { + if ((t.rLmMYc.ins().removeAll(this), (this._showMessages = "FuLi4366Mgr.post_32_2;Nzfh.post_updateLevel;"), this._showMessages)) { + for (var e = this._showMessages.split(";"), i = e.length, n = null, s = null, a = 0; i > a; a++) + (s = e[a].split(".")), (n = egret.getDefinitionByName("app." + s[0])), n && n.ins && n.ins()[s[1]] && t.rLmMYc.addListener(n.ins()[s[1]], this.delayUpdateShow, this); + this.delayUpdateShow(); + } + }), + (i.prototype.delayUpdateShow = function () { + t.KHNO.ins().RTXtZF(this.updateShow, this) || t.KHNO.ins().tBiJo(500, 1, this.updateShow, this); + }), + (i.prototype.updateShow = function () { + t.KHNO.ins().remove(this.updateShow, this); + var e = t.FuLi4366Mgr.ins().updateQQRed(this.data.type, this.data.index); + this.redPoint.visible = e > 0; + }), + (i.prototype.dataChanged = function () { + this.data && this.data.txt && (this.labelDisplay.text = this.data.txt + ""); + }), + i + ); + })(eui.ItemRenderer); + (t.QQLobbyPrivilegesTabView = e), __reflect(e.prototype, "app.QQLobbyPrivilegesTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_55(this.loginWay); + }), + (i.prototype.getRuleIcon = function () { + return "icon_shunwanghezi"; + }), + Object.defineProperty(i.prototype, "loginWay", { + get: function () { + if (window.userInfo.play_type) { + if ("pc" == window.userInfo.play_type) return 1; + if ("box" == window.userInfo.play_type) return 3; + } + return 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_phoneBindGift = function () { + var e = t.VlaoF.PlatformshunwangConfig; + return e && e.bindPhoneReward ? e.bindPhoneReward : []; + }), + (i.prototype.onGetReward_phoneBindGift = function () { + t.FuLi4366Mgr.ins().send_32_56(2); + }), + Object.defineProperty(i.prototype, "indulgeState", { + get: function () { + return window.userInfo.card_state && 1 == parseInt(window.userInfo.card_state) && window.userInfo.fcm ? (0 == parseInt(window.userInfo.fcm) ? 1 : 2) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_indulgeGift = function () { + var e = t.VlaoF.PlatformshunwangConfig; + return e && e.FcmReward ? e.FcmReward : []; + }), + (i.prototype.onGetReward_indulgeGift = function () { + t.FuLi4366Mgr.ins().send_32_56(3); + }), + (i.prototype.getReward_boxDownGift = function () { + var e = t.VlaoF.PlatformshunwangConfig; + return e && e.downloadBoxReward ? e.downloadBoxReward : []; + }), + (i.prototype.onGetReward_boxDownGift = function () { + t.FuLi4366Mgr.ins().send_32_56(4); + }), + (i.prototype.getReward_boxLoginGift = function () { + var e = [], + i = t.VlaoF.PlatformshunwangConfig.loginGift; + for (var n in i) + e.push({ + id: n, + day: i[n].day, + reward: i[n].awards, + }); + return e; + }), + (i.prototype.onGetReward_boxLoginGift = function (e) { + t.FuLi4366Mgr.ins().send_32_56(5, e); + }), + (i.prototype.getReward_boxLevelGift = function () { + var e = [], + i = t.VlaoF.PlatformshunwangConfig.levelGift; + for (var n in i) + e.push({ + id: n, + level: i[n].lvl, + reward: i[n].awards, + }); + return e; + }), + (i.prototype.onGetReward_boxLevelGift = function (e) { + t.FuLi4366Mgr.ins().send_32_56(6, e); + }), + i + ); + })(t.PlatformFuliData); + (t.FuliShunwangData = e), __reflect(e.prototype, "app.FuliShunwangData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && ((this._loginWay = e.loginWay), (this._indulgeState = e.indulgeState)); + }), + (i.prototype.readFuliInfo = function (t) { + (this._loginDays = t.readDouble()), + (this._weChatGiftFlag = t.readByte()), + (this._phoneBindGiftFlag = t.readByte()), + (this._indulgeGiftFlag = t.readByte()), + (this._boxDownGiftFlag = t.readByte()), + (this._boxLoginGiftFlag = t.readByte()), + (this._boxLevelGiftFlag = t.readDouble()); + }), + (i.prototype.getRed_viewGift = function () { + return this.getRed_boxDownGift() ? !0 : this.getRed_boxLoginGift() ? !0 : this.getRed_boxLevelGift() ? !0 : !1; + }), + i + ); + })(t.CsKu); + (t.FuliShunwangInfo = e), __reflect(e.prototype, "app.FuliShunwangInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getViewData = function () { + return { + titleStr: "biaoti_datingtequan", + banner: t.PlatformFuliBanner, + }; + }), + (i.prototype.getGiftsViewData = function () { + var e = t.bXKx.ins().bXBd; + return [ + { + id: 1, + tabLab: t.CrmPU.language_Omission_txt164, + banner: "banner_shunwang", + redFunc: e.getRed_boxDownGift.bind(e), + viewClass: t.PlatformFuliBoxGift, + viewData: { + skinName: "FuliShunwangBoxGiftSkin", + redFunc: e.getRed_boxDownGift.bind(e), + }, + }, + { + id: 2, + tabLab: t.CrmPU.language_Common_125, + banner: "banner_shunwang", + redFunc: e.getRed_boxLevelGift.bind(e), + viewClass: t.FuliShunwangLevelGift, + viewData: { + skinName: "FuliLuDaShiBoxGiftSkin", + }, + }, + { + id: 3, + tabLab: t.CrmPU.language_Common_124, + banner: "banner_shunwang", + redFunc: e.getRed_boxLoginGift.bind(e), + viewClass: t.FuliShunwangLoginGift, + viewData: { + skinName: "FuliLuDaShiBoxGiftSkin", + }, + }, + ]; + }), + (i.prototype.getIndulgeGiftData = function () { + return { + skinName: "PlatformFuliIndulgeGiftSkin2", + descList: [ + { + index: 1, + desc: t.CrmPU.language_Common_277, + }, + { + index: 2, + desc: t.CrmPU.language_Common_278, + }, + ], + }; + }), + (i.prototype.getWeixinGiftData = function () { + return { + skinName: "FuliShunwangWeixinGiftSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliShunwangViewData = e), __reflect(e.prototype, "app.FuliShunwangViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.skinName = "PlatformFuliLevelGiftSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.list.itemRenderer = t.FuliShunwangLevelGiftItem), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + for (var e = t.NWRFmB.ins().getPayer, i = e.propSet.mBjV(), n = this.giftInfo.boxLevelGift, s = this.giftData.getReward_boxLevelGift(), a = [], r = 0; r < s.length; r++) { + var o = s[r]; + a.push({ + id: o.id, + needLevel: o.level, + roleLevel: i, + reward: o.reward, + giftFlag: t.MathUtils.getValueAtBit(n, o.id), + }); + } + this.list.dataProvider = new eui.ArrayCollection(a); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.FuliShunwangLevelGift = e), __reflect(e.prototype, "app.FuliShunwangLevelGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.skinName = "PlatformFuliLevelGiftSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + (this.list.itemRenderer = t.FuliShunwangLoginGiftItem), this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView), this.updateView(); + }), + (i.prototype.updateView = function () { + for (var e = this.giftInfo.loginDays, i = this.giftInfo.boxLoginGift, n = this.giftData.getReward_boxLoginGift(), s = [], a = 0; a < n.length; a++) { + var r = n[a]; + s.push({ + id: r.id, + needDay: r.day, + day: e, + reward: r.reward, + giftFlag: t.MathUtils.getValueAtBit(i, r.id), + }); + } + this.list.dataProvider = new eui.ArrayCollection(s); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), (this.giftData = null), (this.giftInfo = null), (this.data = null); + }), + i + ); + })(t.BaseView); + (t.FuliShunwangLoginGift = e), __reflect(e.prototype, "app.FuliShunwangLoginGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "PlatformFuliLevelGiftItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return t.bXKx.ins().bXBd.isBoxLogin() + ? this.data.roleLevel < this.data.needLevel + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips154) + : void t.bXKx.ins().VbEA.onGetReward_boxLevelGift(this.data.id) + : void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips160); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), t.bXKx.ins().bXBd.isBoxLogin() && e.roleLevel >= e.needLevel && (this.redPoint.visible = !0)), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_266, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliShunwangLevelGiftItem = e), __reflect(e.prototype, "app.FuliShunwangLevelGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "PlatformFuliLevelGiftItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return t.bXKx.ins().bXBd.isBoxLogin() + ? this.data.day < this.data.needDay + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips156) + : void t.bXKx.ins().VbEA.onGetReward_boxLoginGift(this.data.id) + : void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips160); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), t.bXKx.ins().bXBd.isBoxLogin() && e.day >= e.needDay && (this.redPoint.visible = !0)), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)); + var i = "|C:0xe50000&T:" + e.needDay + "|"; + e.day >= e.needDay && (i = "|C:0x28ee01&T:" + e.needDay + "|"), (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_273, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliShunwangLoginGiftItem = e), __reflect(e.prototype, "app.FuliShunwangLoginGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliSogouMicroWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewards.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), + (this.redPoint.visible = !1), + (this.microDownBtn.visible = !1), + (this.receiveBtn.visible = !1), + 3 == t.FuliSogouInfo.loginWay + ? ((this.receiveBtn.visible = !0), 1 != this.giftInfo.microGiftFlag && (this.redPoint.visible = !0)) + : ((this.microDownBtn.visible = !0), + 1 != this.giftInfo.microGiftFlag && t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50 && (this.redPoint.visible = !0)), + (this.receiveImg.visible = 1 == this.giftInfo.microGiftFlag), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick); + var n = t.VlaoF.PlatformSogouConfig; + n && n.reward2 ? (this.rewards.dataProvider = new eui.ArrayCollection(n.reward2)) : (this.rewards.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + 3 == t.FuliSogouInfo.loginWay && t.FuLi4366Mgr.ins().send_32_25(); + break; + case this.microDownBtn: + window.MicroDownFunction && window.MicroDownFunction(), (t.FuLi4366Mgr.ins().isDown = 1), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + break; + case this.closeBtn: + t.mAYZL.ins().close(this), + 1 != window.loginWay && 0 == t.FuLi4366Mgr.ins().isDown && (window.MicroDownFunction && window.MicroDownFunction(), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.microDownBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliSogouMicroWin = e), __reflect(e.prototype, "app.FuliSogouMicroWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.showLabValue = "2851638994"), (i.skinName = "FuliSogouVipWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.showLimit = t.VlaoF.PlatformSogouConfig.limit), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.rechargeBtn, this.onClick), + this.vKruVZ(this.copyBtn, this.onClick), + (this.qqLabel.text = this.showLabValue), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.NWRFmB.ins().getPayer, + i = this.showLimit - e.propSet.getRechargeSum(); + i > 0 + ? ((this.lab.text = t.zlkp.replace(t.CrmPU.language_System96, i)), (this.lab.visible = !0), (this.qqLabel.visible = !1), (this.copyBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER)) + : ((this.lab.visible = !1), (this.qqLabel.visible = !0), (this.copyBtn.filters = null)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.rechargeBtn: + t.RechargeMgr.ins().onPay(""); + break; + case this.copyBtn: + if (this.qqLabel.visible) { + if (KdbLz.qOtrbE.iFbP) return void t.uMEZy.ins().IrCm("手机版暂不支持~"); + var i = document.createElement("input"); + (i.value = this.showLabValue), document.body.appendChild(i), i.select(), i.setSelectionRange(0, i.value.length), document.execCommand("Copy"), document.body.removeChild(i); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_System98); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.rechargeBtn, this.onClick), this.fEHj(this.copyBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.FuliSogouVipWin = e), __reflect(e.prototype, "app.FuliSogouVipWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliSogouWeixinWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), + this.vKruVZ(this.wxBuyBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.FuLi4366Mgr.ins().postSogouGift, this.updateActorInfo), + this.HFTK(t.edHC.ins().post_26_80, this.updateCode); + }), + (i.prototype.updateActorInfo = function () { + this.giftInfo && this.giftInfo.isWxGift && t.mAYZL.ins().close(this); + }), + (i.prototype.updateCode = function (e) { + 0 == e && t.FuLi4366Mgr.ins().send_32_24(t.FuliSogouInfo.loginWay); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.wxBuyBtn: + this.giftInfo && (0 == this.giftInfo.isWxGift ? "" != this.InputCode.text && t.edHC.ins().send_26_63(this.InputCode.text) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips124)); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.wxBuyBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliSogouWeixinWin = e), __reflect(e.prototype, "app.FuliSogouWeixinWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FuliSogouWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.FuLi4366TabItemView); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + (this.infoGroup.visible = !1), + (this.infoGroup2.visible = !1), + (this.bannerGroup.visible = !1), + this.addChangeEvent(this.tabBar, this.setOpenIndex), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.downBtn, this.onClick), + this.setTabInfo(), + this.setOpenIndex(); + }), + (i.prototype.setTabInfo = function () { + var e = []; + e.push({ + index: 1, + txt: t.CrmPU.language_Common_270, + }), + e.push({ + index: 2, + txt: t.CrmPU.language_Common_271, + }), + e.push({ + index: 3, + txt: t.CrmPU.language_Common_272, + }), + e.push({ + index: 4, + txt: t.CrmPU.language_Omission_txt117, + }), + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), + (this.tabBar.selectedIndex = 0); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.downBtn: + window.datingDownFunction && window.datingDownFunction(); + } + }), + (i.prototype.setOpenIndex = function () { + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e) { + (this.infoGroup.visible = !1), (this.infoGroup2.visible = !1), (this.bannerGroup.visible = !1); + var i = e.index; + this._currPanel && (this._currPanel.visible = !1), + 1 == i + ? (this.noviceGift || ((this.noviceGift = new t.FuliSougouNoviceGift()), this.infoGroup.addChild(this.noviceGift)), + (this._currPanel = this.noviceGift), + (this.infoGroup.visible = !0), + (this.bannerGroup.visible = !0)) + : 2 == i + ? (this.dayGift || ((this.dayGift = new t.FuliSougouLoginGift()), this.infoGroup.addChild(this.dayGift)), + (this._currPanel = this.dayGift), + (this.infoGroup.visible = !0), + (this.bannerGroup.visible = !0)) + : 3 == i + ? (this.levelGift || ((this.levelGift = new t.FuliSougouLevelGift()), this.infoGroup.addChild(this.levelGift)), + (this._currPanel = this.levelGift), + (this.infoGroup.visible = !0), + (this.bannerGroup.visible = !0)) + : 4 == i && + (this.bindingGift || ((this.bindingGift = new t.FuliSougouBindingGift()), this.infoGroup2.addChild(this.bindingGift)), + (this._currPanel = this.bindingGift), + (this.infoGroup2.visible = !0)), + (this._currPanel.visible = !0); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.downBtn, this.onClick), + (this._currPanel = null), + this.noviceGift && (this.noviceGift.close(), (this.noviceGift.visible = !1)), + this.dayGift && (this.dayGift.close(), (this.dayGift.visible = !1)), + this.levelGift && (this.levelGift.close(), (this.levelGift.visible = !1)), + this.bindingGift && (this.bindingGift.close(), (this.bindingGift.visible = !1)); + }), + i + ); + })(t.gIRYTi); + (t.FuliSogouWin = e), __reflect(e.prototype, "app.FuliSogouWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.loginDays = 0), (this.isWxGift = 0), (this.noviceGiftFlag = 0), (this.loginGiftFlag = 0), (this.levelGiftFlag = 0), (this.microGiftFlag = 0), (this.phoneBindGiftFlag = 0); + } + return ( + (e.prototype.readFuliInfo = function (t) { + (this.loginDays = t.readByte()), + (this.isWxGift = t.readByte()), + (this.microGiftFlag = t.readByte()), + (this.noviceGiftFlag = t.readByte()), + (this.loginGiftFlag = t.readInt()), + (this.levelGiftFlag = t.readInt()), + (this.phoneBindGiftFlag = t.readByte()); + }), + (e.prototype.isGetAllMicro = function () { + return 0 == this.microGiftFlag ? !1 : !0; + }), + Object.defineProperty(e, "loginWay", { + get: function () { + if (window.userInfo.isLocal && 1 == parseInt(window.userInfo.isLocal)) return 1; + if (window.userInfo.wanclient) { + if ("mini" == window.userInfo.wanclient) return 2; + if ("skin" == window.userInfo.wanclient) return 3; + } + return 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e, "fcm", { + get: function () { + return window.userInfo.cm ? parseInt(window.userInfo.cm) : 0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e, "bindPhone", { + get: function () { + return window.userInfo.bindPhone ? parseInt(window.userInfo.bindPhone) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getRed_weixinGift = function () { + return 0 == this.isWxGift ? !0 : !1; + }), + (e.prototype.getRed_noviceGift = function () { + return 0 == this.noviceGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_loginGift = function () { + return 0 == this.loginGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_levelGift = function () { + return 0 == this.levelGiftFlag ? !0 : !1; + }), + (e.prototype.getRed_microGift = function () { + if (0 == this.microGiftFlag) { + if (3 == e.loginWay) return !0; + if (t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50) return !0; + } + return !1; + }), + (e.prototype.getRed_phoneBindGift = function () { + return 0 == this.phoneBindGiftFlag && 0 != e.bindPhone ? !0 : !1; + }), + e + ); + })(); + (t.FuliSogouInfo = e), __reflect(e.prototype, "app.FuliSogouInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliSougouBindingGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.PlatformSogouConfig; + e && e.PhoneReward && (this.itemList.dataProvider = new eui.ArrayCollection(e.PhoneReward)), + this.HFTK(t.FuLi4366Mgr.ins().postSogouGift, this.updateView), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && (0 == this.giftInfo.phoneBindGiftFlag ? ((this.getBtn.visible = !0), 1 == t.FuliSogouInfo.bindPhone && (this.redPoint.visible = !0)) : (this.receiveImg.visible = !0)), + window.queryBindPhoneFunction && window.queryBindPhoneFunction(); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && + (0 == this.giftInfo.phoneBindGiftFlag + ? 1 == t.FuliSogouInfo.bindPhone + ? t.FuLi4366Mgr.ins().send_32_29() + : window.BindPhoneFunction && window.BindPhoneFunction() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliSougouBindingGift = e), __reflect(e.prototype, "app.FuliSougouBindingGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37LevelGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), + (this.list.itemRenderer = t.FuliSougouLevelGiftItem), + this.HFTK(t.FuLi4366Mgr.ins().postSogouGift, this.updateView), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = this.giftInfo.levelGiftFlag, + s = t.VlaoF.LevelSogouConfig, + a = []; + for (var r in s) + a.push({ + id: r, + needLevel: s[r].level, + roleLevel: i, + reward: s[r].reward, + giftFlag: t.MathUtils.getValueAtBit(n, r), + }); + this.list.dataProvider = new eui.ArrayCollection(a); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.FuliSougouLevelGift = e), __reflect(e.prototype, "app.FuliSougouLevelGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Fuli37LevelGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), (this.list.itemRenderer = t.FuliSougouLoginGiftItem), this.HFTK(t.FuLi4366Mgr.ins().postSogouGift, this.updateView), this.updateView(); + }), + (i.prototype.updateView = function () { + var e = this.giftInfo.loginDays, + i = this.giftInfo.loginGiftFlag, + n = t.VlaoF.LoginSogouConfig, + s = []; + for (var a in n) + s.push({ + id: a, + needLevel: n[a].day, + roleLevel: e, + reward: n[a].reward, + giftFlag: t.MathUtils.getValueAtBit(i, a), + }); + this.list.dataProvider = new eui.ArrayCollection(s); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.FuliSougouLoginGift = e), __reflect(e.prototype, "app.FuliSougouLoginGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuliSougouNoviceGiftSkin"), t.initUI(), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.giftInfo = t.FuLi4366Mgr.ins().fuliSogouInfo), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.itemList.itemRenderer = t.FuLi4366ItemView); + var e = t.VlaoF.PlatformSogouConfig; + e && e.reward1 && (this.itemList.dataProvider = new eui.ArrayCollection(e.reward1)), + this.HFTK(t.FuLi4366Mgr.ins().postSogouGift, this.updateView), + this.vKruVZ(this.getBtn, this.onClick), + this.updateView(); + }), + (i.prototype.updateView = function () { + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + this.giftInfo && (0 == this.giftInfo.noviceGiftFlag ? ((this.getBtn.visible = !0), 2 == t.FuliSogouInfo.loginWay && (this.redPoint.visible = !0)) : (this.receiveImg.visible = !0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.giftInfo && + (0 == this.giftInfo.noviceGiftFlag + ? 2 == t.FuliSogouInfo.loginWay + ? t.FuLi4366Mgr.ins().send_32_26() + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips155) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips152)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.getBtn, this.onClick), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliSougouNoviceGift = e), __reflect(e.prototype, "app.FuliSougouNoviceGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return 2 != t.FuliSogouInfo.loginWay + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips155) + : this.data.roleLevel < this.data.needLevel + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips154) + : void t.FuLi4366Mgr.ins().send_32_28(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), e.roleLevel >= e.needLevel && 2 == t.FuliSogouInfo.loginWay && (this.redPoint.visible = !0)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)), + (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_269, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliSougouLevelGiftItem = e), __reflect(e.prototype, "app.FuliSougouLevelGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + return 2 != t.FuliSogouInfo.loginWay + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips155) + : this.data.roleLevel < this.data.needLevel + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips156) + : void t.FuLi4366Mgr.ins().send_32_27(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + e.giftFlag ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), e.roleLevel >= e.needLevel && 2 == t.FuliSogouInfo.loginWay && (this.redPoint.visible = !0)); + var i = "|C:0xe50000&T:" + e.needLevel + "|"; + e.roleLevel >= e.needLevel && (i = "|C:0x28ee01&T:" + e.needLevel + "|"), + (this.list.dataProvider = new eui.ArrayCollection(e.reward)), + (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_273, i))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliSougouLoginGiftItem = e), __reflect(e.prototype, "app.FuliSougouLoginGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_43(); + }), + Object.defineProperty(i.prototype, "loginWay", { + get: function () { + return window.userInfo.type && "pc" == window.userInfo.type ? 1 : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getReward_phoneBindGift = function () { + var e = t.VlaoF.PlatformTanwanConfig; + return e && e.PhoneReward ? e.PhoneReward : []; + }), + (i.prototype.onGetReward_phoneBindGift = function () { + t.FuLi4366Mgr.ins().send_32_44(2); + }), + (i.prototype.getReward_indulgeGift = function () { + var e = t.VlaoF.PlatformTanwanConfig; + return e && e.IdentityReward ? e.IdentityReward : []; + }), + (i.prototype.onGetReward_indulgeGift = function () { + t.FuLi4366Mgr.ins().send_32_44(5); + }), + (i.prototype.getReward_sanduanGift = function () { + var e = t.VlaoF.PlatformTanwanConfig; + return e && e.ClientReward ? e.ClientReward : []; + }), + (i.prototype.onGetReward_sanduanGift = function () { + var e = t.bXKx.ins().bXBd; + return e.isLoginPhonePC() ? void t.FuLi4366Mgr.ins().send_32_44(7) : void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips159); + }), + (i.prototype.getReward_weixinGift = function () { + var e = t.VlaoF.PlatformTanwanConfig; + return e && e.WechatRewardGift ? e.WechatRewardGift[0] : {}; + }), + i + ); + })(t.PlatformFuliData); + (t.FuliTanwanData = e), __reflect(e.prototype, "app.FuliTanwanData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.platformLoginFlag = 0), (t.downLoadBoxGiftFlag = 0), (t.platformLoginGiftFlag = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && (this._loginWay = e.loginWay); + }), + (i.prototype.readFuliInfo = function (t) { + (this._indulgeState = t.readByte()), + (this._phoneBindState = t.readByte()), + (this.platformLoginFlag = t.readByte()), + (this._svipGiftFlag = t.readByte()), + (this._phoneBindGiftFlag = t.readByte()), + (this._qqGroupGiftFlag = t.readByte()), + (this._weChatGiftFlag = t.readByte()), + (this._indulgeGiftFlag = t.readByte()), + (this.downLoadBoxGiftFlag = t.readByte()), + (this.platformLoginGiftFlag = t.readByte()); + }), + (i.prototype.isLoginPhonePC = function () { + return this.platformLoginFlag > 4; + }), + (i.prototype.isGetSanduanGift = function () { + return this.platformLoginGiftFlag > 0; + }), + (i.prototype.getRed_sanduanGift = function () { + return !this.isGetSanduanGift() && this.isLoginPhonePC() ? !0 : !1; + }), + (i.prototype.getRed_viewGift = function () { + return this.getRed_phoneBindGift() ? !0 : this.getRed_indulgeGift() ? !0 : this.getRed_qqGroupGift() ? !0 : this.getRed_sanduanGift() ? !0 : this.getRed_weChatGift() ? !0 : !1; + }), + i + ); + })(t.CsKu); + (t.FuliTanwanInfo = e), __reflect(e.prototype, "app.FuliTanwanInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getViewData = function () { + return { + titleStr: "biaoti_yxdt", + }; + }), + (i.prototype.getGiftsViewData = function () { + var e = t.bXKx.ins().bXBd; + return [ + { + id: 1, + tabLab: t.CrmPU.language_Omission_txt117, + redFunc: e.getRed_phoneBindGift.bind(e), + viewClass: t.PlatformFuliBindingGift, + viewData: { + skinName: "PlatformFuliBindingGiftSkin", + }, + }, + { + id: 2, + tabLab: t.CrmPU.language_Omission_txt118, + redFunc: e.getRed_indulgeGift.bind(e), + viewClass: t.PlatformFuliIndulgeGift, + viewData: { + skinName: "PlatformFuliIndulgeGiftSkin", + }, + }, + { + id: 3, + tabLab: t.CrmPU.language_Omission_txt141, + redFunc: e.getRed_qqGroupGift.bind(e), + viewClass: t.PlatformFuliNothing, + viewData: { + skinName: "FuliTanwanQQGroupGiftSkin", + redFunc: e.getRed_qqGroupGift.bind(e), + }, + }, + { + id: 5, + tabLab: t.CrmPU.language_Omission_txt163, + redFunc: e.getRed_weChatGift.bind(e), + viewClass: t.PlatformFuliWXGift, + viewData: { + skinName: "FuliTanwanWeixinGiftSkin", + }, + }, + ]; + }), + (i.prototype.getSuperVipGiftData = function () { + return { + showLimit: 2e4, + skinName: "FuliTanwanSuperVipGiftSkin", + codeSkinName: "FuliTanwanVipCodeSkin", + }; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliTanwanViewData = e), __reflect(e.prototype, "app.FuliTanwanViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.viewData = t.bXKx.ins().platformFuliViewData), + (i.giftData = t.bXKx.ins().VbEA), + (i.giftInfo = t.bXKx.ins().bXBd), + (i.skinName = "FuliXunwanGiftWinSkin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.paneHash = {}), (this.tabBar.itemRenderer = t.FuliLuDaShiGiftTab), (this.tabBar2.itemRenderer = t.PlatformFuliTabItem); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.labVipLevel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_274, this.giftData.getVipStr(this.giftInfo.vipLevel)))), + (this.openVipLab1.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_280 + "")), + (this.openVipLab2.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_281 + "")), + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateAllTabRed), + this.addChangeEvent(this.tabBar, this.setOpenIndex), + this.addChangeEvent(this.tabBar2, this.setOpenIndex2), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.openVipLab1, this.onClick), + this.vKruVZ(this.openVipLab2, this.onClick), + (this.tabBar.dataProvider = new eui.ArrayCollection(this.getTabBarAr())), + (this.tabBar.selectedIndex = 0), + this.setOpenIndex(); + }), + (i.prototype.updateAllTabRed = function () { + for (var t = this.tabBar2.numElements, e = 0; t > e; e++) { + var i = this.tabBar2.getElementAt(e); + i && i.updateRed(); + } + }), + (i.prototype.setOpenIndex = function () { + (this.tabBar2.dataProvider = new eui.ArrayCollection(this.getTabBarAr2()[this.tabBar.selectedIndex])), (this.tabBar2.selectedIndex = 0), this.setOpenIndex2(); + }), + (i.prototype.setOpenIndex2 = function () { + this.updatePanel(); + }), + (i.prototype.updatePanel = function () { + var t = 0, + e = this.tabBar.selectedIndex, + i = this.tabBar2.selectedIndex; + 1 == e && (0 == i ? (t = 1) : 1 == i && (t = 2)); + var n = this.viewData.getGiftsViewData()[t]; + if (n) { + if ((this._currPanel && (this._currPanel.visible = !1), !this.paneHash[n.id])) { + var s = n.viewClass, + a = new s(n.viewData); + this.infoGroup.addChild(a), (this.paneHash[n.id] = a); + } + (this._currPanel = this.paneHash[n.id]), (this._currPanel.visible = !0), 0 == t && this._currPanel.update(i); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.openVipLab1: + case this.openVipLab2: + this.giftData.openSuperVip(); + } + }), + (i.prototype.getTabBarAr = function () { + return [ + { + txt: t.CrmPU.language_Omission_txt165, + }, + { + txt: t.CrmPU.language_Omission_txt166, + }, + ]; + }), + (i.prototype.getTabBarAr2 = function () { + return [ + [ + { + tabLab: t.CrmPU.language_Omission_txt167, + redFunc: this.giftInfo.getRed_MemberTitleGift.bind(this.giftInfo, 1), + }, + { + tabLab: t.CrmPU.language_Omission_txt168, + redFunc: this.giftInfo.getRed_MemberTitleGift.bind(this.giftInfo, 2), + }, + { + tabLab: t.CrmPU.language_Omission_txt169, + redFunc: this.giftInfo.getRed_MemberTitleGift.bind(this.giftInfo, 3), + }, + { + tabLab: t.CrmPU.language_Omission_txt170, + redFunc: this.giftInfo.getRed_MemberTitleGift.bind(this.giftInfo, 4), + }, + ], + [ + { + tabLab: t.CrmPU.language_Omission_txt171, + redFunc: this.giftInfo.getRed_MemberPrivilegeGift.bind(this.giftInfo), + }, + { + tabLab: t.CrmPU.language_Omission_txt172, + redFunc: this.giftInfo.getRed_MemberDailyGift.bind(this.giftInfo), + }, + ], + ]; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), + this.$onClose(), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex, this.giftInfo), + this.tabBar2.removeEventListener(egret.TouchEvent.CHANGE, this.setOpenIndex2, this.giftInfo), + this.fEHj(this.closeBtn, this.onClick); + for (var n in this.paneHash) { + var s = this.paneHash[n]; + s.close(), (s = null), delete this.paneHash[n]; + } + (this.paneHash = null), (this._currPanel = null), (this.viewData = null), (this.giftData = null), (this.giftInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.FuliXunwanGiftWin = e), __reflect(e.prototype, "app.FuliXunwanGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_60(); + }), + Object.defineProperty(i.prototype, "vipLevel", { + get: function () { + var t = parseInt(window.userInfo.isvip), + e = parseInt(window.userInfo.isyear), + i = parseInt(window.userInfo.vas_type); + parseInt(window.userInfo.xlvip); + return t > 0 ? (i > 3 ? (1 == e ? 4 : 2) : 1 == e ? 3 : 1) : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onGetReward_titleGift = function (e) { + t.FuLi4366Mgr.ins().send_32_61(1, e); + }), + (i.prototype.getReward_titleGift = function () { + var e = [], + i = t.VlaoF.XunwantitleConfig; + for (var n in i) e.push(i[n]); + return e; + }), + (i.prototype.onGetReward_tequanGift = function (e) { + t.FuLi4366Mgr.ins().send_32_61(2, e); + }), + (i.prototype.getReward_tequanGift = function () { + var e = [], + i = t.VlaoF.PlatformxunwanConfig; + if (i && i.vipGift) + for (var n in i.vipGift) { + var s = i.vipGift[n]; + e.push({ + id: n, + needLevel: s.vip, + reward: s.awards, + }); + } + return e; + }), + (i.prototype.onGetReward_dayGift = function (e) { + t.FuLi4366Mgr.ins().send_32_61(3, e); + }), + (i.prototype.getReward_dayGift = function () { + var e = [], + i = t.VlaoF.PlatformxunwanConfig; + if (i && i.dailyGift) + for (var n in i.dailyGift) { + var s = i.dailyGift[n]; + e.push({ + id: n, + needLevel: s.viplvl, + reward: s.awards, + }); + } + return e; + }), + (i.prototype.openSuperVip = function () { + window.openSuperVip && window.openSuperVip(); + }), + (i.prototype.getVipStr = function (e) { + return 1 == e + ? t.CrmPU.language_Omission_txt167 + : 2 == e + ? t.CrmPU.language_Omission_txt168 + : 3 == e + ? t.CrmPU.language_Omission_txt169 + : 4 == e + ? t.CrmPU.language_Omission_txt170 + : t.CrmPU.language_Omission_txt173; + }), + i + ); + })(t.PlatformFuliData); + (t.FuliXunwanData = e), __reflect(e.prototype, "app.FuliXunwanData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.vipLevel = 0), (t.MemberTitleGiftFlag = 0), (t.MemberPrivilegeGiftFlag = 0), (t.MemberDailyGiftFlag = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initData = function () { + var e = t.bXKx.ins().VbEA; + e && ((this._loginWay = e.loginWay), (this.vipLevel = e.vipLevel)); + }), + (i.prototype.readFuliInfo = function (t) { + (this.MemberTitleGiftFlag = t.readUnsignedInt()), (this.MemberPrivilegeGiftFlag = t.readUnsignedInt()), (this.MemberDailyGiftFlag = t.readUnsignedInt()); + }), + (i.prototype.getRed_MemberTitleGift = function (e) { + if ((void 0 === e && (e = 0), 0 == e)) { + for (var i = 1; 5 > i; i++) if (this.vipLevel >= i && !t.MathUtils.getValueAtBit(this.MemberTitleGiftFlag, i)) return !0; + } else if (this.vipLevel >= e && !t.MathUtils.getValueAtBit(this.MemberTitleGiftFlag, e)) return !0; + return !1; + }), + (i.prototype.getRed_MemberPrivilegeGift = function (e) { + if ((void 0 === e && (e = 0), 0 == e)) { + for (var i = 1; 5 > i; i++) if (this.vipLevel >= i && !t.MathUtils.getValueAtBit(this.MemberPrivilegeGiftFlag, i)) return !0; + } else if (this.vipLevel >= e && !t.MathUtils.getValueAtBit(this.MemberPrivilegeGiftFlag, e)) return !0; + return !1; + }), + (i.prototype.getRed_MemberDailyGift = function (e) { + if ((void 0 === e && (e = 0), 0 == e)) { + for (var i = 1; 5 > i; i++) if (this.vipLevel >= i && !t.MathUtils.getValueAtBit(this.MemberDailyGiftFlag, i)) return !0; + } else if (this.vipLevel >= e && !t.MathUtils.getValueAtBit(this.MemberDailyGiftFlag, e)) return !0; + return !1; + }), + (i.prototype.getRed_viewGift = function () { + return this.getRed_MemberTitleGift() ? !0 : this.getRed_MemberPrivilegeGift() ? !0 : this.getRed_MemberDailyGift() ? !0 : !1; + }), + i + ); + })(t.CsKu); + (t.FuliXunwanInfo = e), __reflect(e.prototype, "app.FuliXunwanInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getViewData = function () { + return { + titleStr: "", + }; + }), + (i.prototype.getGiftsViewData = function () { + var e = t.bXKx.ins().VbEA; + return [ + { + id: 1, + tabLab: "", + viewClass: t.FuliXunwanSingleGift, + viewData: { + skinName: "FuliXunwanSingleGiftSkin", + rewardList: e.getReward_titleGift(), + }, + }, + { + id: 2, + tabLab: "", + viewClass: t.PlatformFuliLevelGift, + viewData: { + skinName: "FuliXunwanLevelGiftSkin", + rewardList: e.getReward_tequanGift(), + itemClass: t.FuliXunwanVipGiftItem, + }, + }, + { + id: 3, + tabLab: "", + viewClass: t.PlatformFuliLevelGift, + viewData: { + skinName: "FuliXunwanLevelGiftSkin", + rewardList: e.getReward_dayGift(), + itemClass: t.FuliXunwanDayGiftItem, + }, + }, + ]; + }), + i + ); + })(t.PlatformFuliViewData); + (t.FuliXunwanViewData = e), __reflect(e.prototype, "app.FuliXunwanViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.data = t), (i.skinName = i.data.skinName), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initData(), this.initUI(); + }), + (i.prototype.initData = function () { + (this.giftData = t.bXKx.ins().VbEA), (this.giftInfo = t.bXKx.ins().bXBd); + }), + (i.prototype.initUI = function () { + this.HFTK(t.FuLi4366Mgr.ins().post_updatePlatformFuli, this.updateView); + }), + (i.prototype.update = function (t) { + (this._index = t), this.updateView(); + }), + (i.prototype.updateView = function () { + this.giftItem.data = this.data.rewardList[this._index]; + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), (this.giftData = null), (this.giftInfo = null); + }), + i + ); + })(t.BaseView); + (t.FuliXunwanSingleGift = e), __reflect(e.prototype, "app.FuliXunwanSingleGift"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.bXKx.ins().VbEA, + n = t.bXKx.ins().bXBd, + s = n.vipLevel, + a = this.data.needLevel; + return a > s ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips161) : void i.onGetReward_dayGift(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data, + i = t.bXKx.ins().VbEA, + n = t.bXKx.ins().bXBd, + s = n.vipLevel, + a = e.needLevel, + r = t.MathUtils.getValueAtBit(n.MemberDailyGiftFlag, e.id), + o = e.reward; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + r ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), s >= a && (this.redPoint.visible = !0)), + (this.list.dataProvider = new eui.ArrayCollection(o)); + var l = void 0; + (l = s >= a ? "|C:0x28ee01&T:" + i.getVipStr(a) + "|" : "|C:0xe50000&T:" + i.getVipStr(a) + "|"), (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_279, l))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliXunwanDayGiftItem = e), __reflect(e.prototype, "app.FuliXunwanDayGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.bXKx.ins().VbEA, + n = t.bXKx.ins().bXBd; + return n.vipLevel < this.data.vipLevel ? void i.openSuperVip() : void i.onGetReward_titleGift(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data, + i = t.bXKx.ins().bXBd, + n = i.vipLevel, + s = e.vipLevel, + a = t.MathUtils.getValueAtBit(i.MemberTitleGiftFlag, e.id), + r = e.description[0]; + (this.itemData.visible = !1), + (this.titleImg.visible = !1), + (this.buyBtn.visible = !1), + (this.redPoint.visible = !1), + (this.receiveImg.visible = !1), + a + ? ((this.buyBtn.visible = !1), (this.receiveImg.visible = !0)) + : (n >= s + ? ((this.buyBtn.label = t.CrmPU.language_Common_120), (this.redPoint.visible = !0)) + : n > 0 + ? (this.buyBtn.label = t.CrmPU.language_Common_121) + : (this.buyBtn.label = t.CrmPU.language_Common_122), + (this.buyBtn.visible = !0)), + (this.titleDesc.textFlow = t.hETx.qYVI(r.title)), + (this.lvDesc.textFlow = t.hETx.qYVI(r.ldsDesc)), + (this.itemDesc.textFlow = t.hETx.qYVI(r.itemDesc)), + r.titleImg && ((this.titleImg.visible = !0), (this.titleImg.source = r.titleImg + "")), + r.titleReward && ((this.itemData.visible = !0), (this.itemData.data = r.titleReward)); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliXunwanSingleGiftItem = e), __reflect(e.prototype, "app.FuliXunwanSingleGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.getBtn, this.onTouch), + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.list.itemRenderer = t.ItemBase); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.bXKx.ins().VbEA, + n = t.bXKx.ins().bXBd, + s = n.vipLevel, + a = this.data.needLevel; + return a > s ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips161) : void i.onGetReward_tequanGift(this.data.id); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data, + i = t.bXKx.ins().VbEA, + n = t.bXKx.ins().bXBd, + s = n.vipLevel, + a = e.needLevel, + r = t.MathUtils.getValueAtBit(n.MemberPrivilegeGiftFlag, e.id), + o = e.reward; + (this.getBtn.visible = !1), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + r ? (this.receiveImg.visible = !0) : ((this.getBtn.visible = !0), s >= a && (this.redPoint.visible = !0)), + (this.list.dataProvider = new eui.ArrayCollection(o)); + var l = void 0; + (l = s >= a ? "|C:0x28ee01&T:" + i.getVipStr(a) + "|" : "|C:0xe50000&T:" + i.getVipStr(a) + "|"), (this.desLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_279, l))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FuliXunwanVipGiftItem = e), __reflect(e.prototype, "app.FuliXunwanVipGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.getGiftInfo = function () { + t.FuLi4366Mgr.ins().send_32_41(); + }), + i + ); + })(t.PlatformFuliData); + (t.FuliYaodouData = e), __reflect(e.prototype, "app.FuliYaodouData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.readFuliInfo = function (t) { + this._svipGiftFlag = t.readByte(); + }), + e + ); + })(t.CsKu); + (t.FuliYaodouInfo = e), __reflect(e.prototype, "app.FuliYaodouInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.getSuperVipGiftData = function () { + return { + showLimit: 2e4, + skinName: "FuliYaodaoSuperVipGiftSkin", + wxStr: "tcyydyx", + copyValue: "tcyydyx", + }; + }), + e + ); + })(t.PlatformFuliViewData); + (t.FuliYaodouViewData = e), __reflect(e.prototype, "app.FuliYaodouViewData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.TQkyOx.ins().YYchaowanInfo, + n = 0, + s = t.NWRFmB.ins().getPayer; + if ((s && s.propSet && (n = s.propSet.getVip()), i && n >= this.data[0].lv)) { + var a = t.MathUtils.getValueAtBit(i.dailyGift, this.data[0].day); + a ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips100) : t.TQkyOx.ins().send_25_11(this.data[0].day); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips101); + }), + (i.prototype.dataChanged = function () { + if (((this.redPoint.visible = !1), this.data && this.data[0])) { + this.rewards.dataProvider = new eui.ArrayCollection(this.data[0].rewards); + var e = "V" + this.data[0].lv + "-V" + this.data[0].maxLv + t.CrmPU.language_Common_131, + i = 1 == this.data[0].day ? "0x24D8FF" : 2 == this.data[0].day ? "0xFC00FF" : "0xFFE624"; + this.title.textFlow = t.hETx.qYVI("|C:" + i + "&T:" + e + "|"); + var n = t.TQkyOx.ins().YYchaowanInfo, + s = 0, + a = t.NWRFmB.ins().getPayer; + if ((a && a.propSet && (s = a.propSet.getVip()), n && s >= this.data[0].lv)) { + this.count.visible = !0; + var r = t.MathUtils.getValueAtBit(n.dailyGift, this.data[0].day); + r ? (this.count.text = t.CrmPU.language_Common_132 + "0/1") : ((this.count.text = t.CrmPU.language_Common_132 + "1/1"), (this.redPoint.visible = !0)); + } else this.count.visible = !1; + } + }), + i + ); + })(t.BaseItemRender); + (t.YYChaoWanDailyItem = e), __reflect(e.prototype, "app.YYChaoWanDailyItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._curIndex = -1), (t.maxLvArr = [5, 8, 10]), (t.skinName = "YYChaoWanWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.YYLobbyPrivilegesTabView), + (this.otherList.itemRenderer = t.YYLobbyPrivilegesGiftItemView), + (this.dailyList.itemRenderer = t.YYChaoWanDailyItem), + (this.otherData = new eui.ArrayCollection()), + (this.otherList.dataProvider = this.otherData), + (this.dailyData = new eui.ArrayCollection()), + (this.dailyList.dataProvider = this.dailyData); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.addChangingEvent(this.tabBar, this.onTabTouching), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.exchangeChaoWan, this.onClick), + this.vKruVZ(this.moreGift, this.onClick), + this.vKruVZ(this.chaowanLv, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_11, this.updateCurInfo), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateCurInfo), + (this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 3, + index: 1, + txt: t.CrmPU.language_Common_133, + }, + { + type: 3, + index: 2, + txt: t.CrmPU.language_Common_134, + }, + ])), + (this.tabBar.selectedIndex = this._curIndex); + var n = 0, + s = t.NWRFmB.ins().getPayer; + s && s.propSet && (n = s.propSet.getVip()), (this.chaowanLv.textFlow = t.hETx.qYVI("" + n + "")), this.setOpenIndex(this._curIndex); + }), + (i.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex); + }), + (i.prototype.onTabTouch = function (t) { + (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (i.prototype.checkIsOpen = function (t) { + switch (t) { + case 0: + return !0; + case 1: + return !0; + } + }), + (i.prototype.setOpenIndex = function (e) { + (this.otherScroller.visible = !0), (this.dailyScroller.visible = !0); + var i, + n = []; + if (0 == e) { + if (((this.dailyScroller.visible = !1), (i = t.VlaoF.GameVIPConfig.vipGiftDisplay))) + for (var s in i) + n.push([ + { + rewards: i[s].rewards, + day: i[s].index, + type: 4, + lv: i[s].viplvl, + }, + ]); + this.otherData.replaceAll(n), this.otherData.refresh(); + } else if (1 == e) { + if (((this.otherScroller.visible = !1), (i = t.VlaoF.GameVIPConfig.dailyGiftDisplay))) + for (var s in i) + n.push([ + { + rewards: i[s].rewards, + day: i[s].index, + lv: i[s].viplvl, + maxLv: this.maxLvArr[i[s].index - 1], + }, + ]); + this.dailyData.replaceAll(n), this.dailyData.refresh(); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.exchangeChaoWan: + window.openChaoWanVip(); + break; + case this.moreGift: + window.openChaoWanVip(); + break; + case this.chaowanLv: + window.openChaoWanVip(); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.exchangeChaoWan, this.onClick), + this.fEHj(this.moreGift, this.onClick), + this.fEHj(this.chaowanLv, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this); + }), + i + ); + })(t.gIRYTi); + (t.YYChaoWanWin = e), __reflect(e.prototype, "app.YYChaoWanWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.receiveBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + if (1 == this.data[0].type) t.TQkyOx.ins().send_25_4(this.data[0].day); + else if (2 == this.data[0].type) t.TQkyOx.ins().send_25_5(this.data[0].day); + else if (3 == this.data[0].type) t.TQkyOx.ins().send_25_6(this.data[0].day); + else if (4 == this.data[0].type) { + var i = 0, + n = t.NWRFmB.ins().getPayer; + n && n.propSet && (i = n.propSet.getVip()), i >= this.data[0].lv ? t.TQkyOx.ins().send_25_10(this.data[0].day) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips95); + } + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.receiveBtn.currentState = ""), (this.receiveImg.visible = !1), (this.redPoint.visible = !1); + var e = t.TQkyOx.ins().YYInfo, + i = 0, + n = 0, + s = t.NWRFmB.ins().getPayer; + if ((s && s.propSet && (i = s.propSet.mBjV()), (this.rewards.dataProvider = new eui.ArrayCollection(this.data[0].rewards)), 1 == this.data[0].type)) + (this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_127, this.data[0].day))), + 10001 == Main.vZzwB.pfID && window.loginWay + ? e && e.YYLoginDay >= this.data[0].day + ? ((n = t.MathUtils.getValueAtBit(e.YYLoginGift, this.data[0].day)), + n + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0), (this.receiveBtn.currentState = ""))) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.currentState = "disabled")) + : (this.receiveBtn.enabled = !1); + else if (2 == this.data[0].type) + (this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_128, this.data[0].lv))), + 10001 == Main.vZzwB.pfID && window.loginWay + ? e && i >= this.data[0].lv + ? ((n = t.MathUtils.getValueAtBit(e.YYLevelGift, this.data[0].day)), + n + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0), (this.receiveBtn.currentState = ""))) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.currentState = "disabled")) + : (this.receiveBtn.enabled = !1); + else if (3 == this.data[0].type) + (this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_129, this.data[0].yyLv))), + 10001 == Main.vZzwB.pfID && window.loginWay + ? e && e.YYIdentity >= this.data[0].day + ? ((n = t.MathUtils.getValueAtBit(e.YYNobleGift, this.data[0].day)), + n + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.visible = !0), (this.receiveBtn.currentState = ""), (this.redPoint.visible = !0))) + : ((this.receiveBtn.enabled = !1), (this.receiveBtn.currentState = "disabled")) + : (this.receiveBtn.enabled = !1); + else if (4 == this.data[0].type) { + this.curDay.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_130, this.data[0].lv)); + var a = 0; + s && s.propSet && (a = s.propSet.getVip()); + var r = t.TQkyOx.ins().YYchaowanInfo; + r && a >= this.data[0].lv + ? ((n = t.MathUtils.getValueAtBit(r.vipGift, this.data[0].day)), + n + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)) + : ((this.receiveImg.visible = !1), (this.receiveBtn.enabled = !0), (this.receiveBtn.currentState = ""), (this.receiveBtn.visible = !0), (this.redPoint.visible = !0))) + : (this.receiveBtn.currentState = "disabled"); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.YYLobbyPrivilegesGiftItemView = e), __reflect(e.prototype, "app.YYLobbyPrivilegesGiftItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._showMessages = ""), t; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addMsgListener(); + }), + (i.prototype.$onRemoveFromStage = function () { + t.rLmMYc.ins().removeAll(this), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.addMsgListener = function () { + if ((t.rLmMYc.ins().removeAll(this), (this._showMessages = "TQkyOx.post_25_9;TQkyOx.post_25_10;TQkyOx.post_25_11;FuLi4366Mgr.post_32_35;"), this._showMessages)) { + for (var e = this._showMessages.split(";"), i = e.length, n = null, s = null, a = 0; i > a; a++) + (s = e[a].split(".")), (n = egret.getDefinitionByName("app." + s[0])), n && n.ins && n.ins()[s[1]] && t.rLmMYc.addListener(n.ins()[s[1]], this.delayUpdateShow, this); + this.delayUpdateShow(); + } + }), + (i.prototype.delayUpdateShow = function () { + t.KHNO.ins().RTXtZF(this.updateShow, this) || t.KHNO.ins().tBiJo(500, 1, this.updateShow, this); + }), + (i.prototype.updateShow = function () { + t.KHNO.ins().remove(this.updateShow, this); + var e = t.TQkyOx.ins().updateYYRed(this.data.type, this.data.index); + this.redPoint.visible = e > 0; + }), + (i.prototype.dataChanged = function () { + this.data && this.data.txt && (this.labelDisplay.text = this.data.txt + ""); + }), + i + ); + })(eui.ItemRenderer); + (t.YYLobbyPrivilegesTabView = e), __reflect(e.prototype, "app.YYLobbyPrivilegesTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._curIndex = -1), (t.YYLv = [4, 16, 64]), (t.skinName = "YYLobbyPrivilegesWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.YYLobbyPrivilegesTabView), + (this.otherList.itemRenderer = t.YYLobbyPrivilegesGiftItemView), + (this.noviceList.itemRenderer = t.ItemBase), + (this.otherData = new eui.ArrayCollection()), + (this.otherList.dataProvider = this.otherData); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), + 10001 == Main.vZzwB.pfID && window.loginWay && (this.receiveImg.visible = !1), + t.MouseScroller.bind(this.otherScroller), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.addChangingEvent(this.tabBar, this.onTabTouching), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.downImg, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_9, this.updateCurInfo), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateCurInfo), + (this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 1, + index: 1, + txt: t.CrmPU.language_Common_123, + }, + { + type: 1, + index: 2, + txt: t.CrmPU.language_Common_124, + }, + { + type: 1, + index: 3, + txt: t.CrmPU.language_Common_125, + }, + { + type: 1, + index: 4, + txt: t.CrmPU.language_Common_126, + }, + ])), + (this.tabBar.selectedIndex = this._curIndex), + this.setOpenIndex(this._curIndex); + }), + (i.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex); + }), + (i.prototype.onTabTouch = function (t) { + (this.otherScroller.viewport.scrollV = 0), this.otherScroller.stopAnimation(), (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (i.prototype.checkIsOpen = function (t) { + switch (t) { + case 0: + return !0; + case 1: + return !0; + case 2: + return !0; + case 3: + return !0; + } + }), + (i.prototype.setOpenIndex = function (e) { + (this.noviceGrp.visible = !1), (this.otherScroller.visible = !0), (this.receiveImg.visible = !1), (this.receiveBtn.visible = !0); + var i, + n = [], + s = 1, + a = t.TQkyOx.ins().YYInfo; + switch (e) { + case 0: + (this.noviceGrp.visible = !0), + (this.otherScroller.visible = !1), + (i = t.VlaoF.YYMemberConfig.freshmanGift), + i && (this.noviceList.dataProvider = new eui.ArrayCollection(i)), + 10001 == Main.vZzwB.pfID && a && window.loginWay + ? 1 == a.YYNoviceGift + ? ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0), (this.redPoint.visible = !1)) + : ((this.receiveBtn.currentState = "up"), (this.redPoint.visible = !0)) + : ((this.receiveBtn.currentState = "disabled"), (this.redPoint.visible = !1)); + break; + case 1: + if ((i = t.VlaoF.YYMemberConfig.loginGift)) + for (var r in i) + n.push([ + { + rewards: i[r], + day: s, + type: 1, + }, + ]), + (s += 1); + this.otherData.replaceAll(n); + break; + case 2: + if ((i = t.VlaoF.YYMemberConfig.levelGift)) + for (var r in i) + n.push([ + { + rewards: i[r].awards, + day: s, + type: 2, + lv: i[r].lvl, + }, + ]), + (s += 1); + this.otherData.replaceAll(n); + break; + case 3: + if ((i = t.VlaoF.YYMemberConfig.nobleGift)) + for (var r in i) + n.push([ + { + rewards: i[r], + day: s, + yyLv: this.YYLv[s - 1], + type: 3, + }, + ]), + (s += 1); + this.otherData.replaceAll(n); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.downImg: + window.downYYGameHallFun(), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1); + break; + case this.receiveBtn: + if (10001 == Main.vZzwB.pfID && window.loginWay) { + var i = t.TQkyOx.ins().YYInfo; + i ? 0 == i.YYNoviceGift && t.TQkyOx.ins().send_25_3() : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips94); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips94); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.otherScroller), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.downImg, this.onClick), + this.fEHj(this.receiveBtn, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this); + }), + i + ); + })(t.gIRYTi); + (t.YYLobbyPrivilegesWin = e), __reflect(e.prototype, "app.YYLobbyPrivilegesWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.TQkyOx.ins().YYMemberInfo; + if (i) + if (i.isYYVip) { + var n = t.MathUtils.getValueAtBit(i.newServerGift, this.data.index); + n || (i.YYVipLv >= this.data.viplvl ? t.TQkyOx.ins().send_25_7(this.data.index) : window.openYYVip()); + } else window.openYYVip(); + else window.openYYVip(); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.itemData.visible = !0), (this.titleImg.visible = !0), (this.buyBtn.visible = !0), (this.redPoint.visible = !1), (this.receiveImg.visible = !1); + var e = t.TQkyOx.ins().YYMemberInfo; + if (e) + if (e.isYYVip) { + var i = t.MathUtils.getValueAtBit(e.newServerGift, this.data.index); + i + ? ((this.buyBtn.visible = !1), (this.receiveImg.visible = !0)) + : e.YYVipLv >= this.data.viplvl + ? ((this.buyBtn.label = t.CrmPU.language_Common_120), (this.redPoint.visible = !0)) + : (this.buyBtn.label = t.CrmPU.language_Common_121); + } else this.buyBtn.label = t.CrmPU.language_Common_122; + else this.buyBtn.label = t.CrmPU.language_Common_122; + this.data.YYdesc && (this.YYDesc.textFlow = t.hETx.qYVI(this.data.YYdesc)), + this.data.itemDesc && (this.itemDesc.textFlow = t.hETx.qYVI(this.data.itemDesc)), + this.data.titleImg && ((this.itemData.visible = !1), (this.titleImg.source = this.data.titleImg + "")), + this.data.item && ((this.titleImg.visible = !1), (this.itemData.data = this.data.item)); + } + }), + i + ); + })(t.BaseItemRender); + (t.YYMemberGiftItem = e), __reflect(e.prototype, "app.YYMemberGiftItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyBtn, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + var i = t.TQkyOx.ins().YYMemberInfo; + if (i) + if (i.isYYVip) { + var n = 0; + 1 == this.data.type ? (n = t.MathUtils.getValueAtBit(i.everyDayGift, this.data.index)) : 2 == this.data.type && (n = t.MathUtils.getValueAtBit(i.everyWeekGift, this.data.index)), + n || + (i.YYVipLv >= this.data.viplvl + ? 1 == this.data.type + ? t.TQkyOx.ins().send_25_8(this.data.index) + : 2 == this.data.type && t.TQkyOx.ins().send_25_9(this.data.index) + : window.openYYVip()); + } else window.openYYVip(); + else window.openYYVip(); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.buyBtn.visible = !0), (this.receiveImg.visible = !1); + var e = t.TQkyOx.ins().YYMemberInfo; + if (e) + if (e.isYYVip) { + var i = 0; + 1 == this.data.type ? (i = t.MathUtils.getValueAtBit(e.everyDayGift, this.data.index)) : 2 == this.data.type && (i = t.MathUtils.getValueAtBit(e.everyWeekGift, this.data.index)), + i + ? ((this.buyBtn.visible = !1), (this.receiveImg.visible = !0)) + : e.YYVipLv >= this.data.viplvl + ? (this.buyBtn.label = t.CrmPU.language_Pay_Text5) + : (this.buyBtn.label = t.CrmPU.language_Common_118); + } else this.buyBtn.label = t.CrmPU.language_Common_119; + else this.buyBtn.label = t.CrmPU.language_Common_119; + if (this.data.item && ((this.itemData.data = this.data.item), this.data.item.id)) { + var n = t.VlaoF.StdItems[this.data.item.id]; + n && (this.title.textFlow = t.hETx.qYVI(n.name)); + } + this.data.itemDesc && (this.itemDesc.textFlow = t.hETx.qYVI(this.data.itemDesc)), + this.data.yyDesc && (this.YYDesc.textFlow = t.hETx.qYVI(this.data.yyDesc)), + this.data.originalprice && (this.originalPrice.text = t.CrmPU.language_Omission_txt125 + ": " + this.data.originalprice), + this.data.yb && (this.curPrice.text = t.CrmPU.language_Omission_txt126 + ": " + this.data.yb); + } + }), + i + ); + })(t.BaseItemRender); + (t.YYMemberNewServerItem = e), __reflect(e.prototype, "app.YYMemberNewServerItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._curIndex = -1), (t.skinName = "YYMemberWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tab.itemRenderer = t.SoldierSoulTabBarWin), (this.tabBar.itemRenderer = t.YYLobbyPrivilegesTabView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._curIndex = 0), (this.YYmemberGrp.visible = !1), (this.openYyGrp.visible = !0); + var n = t.TQkyOx.ins().YYMemberInfo; + n && + (n.isYYVip + ? ((this.openYyGrp.visible = !1), (this.YYmemberGrp.visible = !0), (this.YYLvImg.source = "YY_t_hy" + n.YYVipLv)) + : ((this.YYmemberGrp.visible = !1), (this.openYyGrp.visible = !0))), + this.addChangeEvent(this.tab, this.onTabTouch), + this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this), + this.addChangingEvent(this.tab, this.onTabTouching), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.openYYBtn, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_10, this.updatePag), + this.HFTK(t.TQkyOx.ins().post_25_10, this.updateRed), + (this.tab.dataProvider = new eui.ArrayCollection([ + { + icon: "kf_fanye_xfhl", + }, + { + icon: "kf_fanye_rcfl", + }, + ])), + (this.tab.selectedIndex = this._curIndex), + this.setOpenIndex(this._curIndex), + this.updateRed(); + }), + (i.prototype.updateRed = function () { + var e = 2; + this.redPoint.visible = !1; + for (var i = 1; 3 >= i; i++) t.TQkyOx.ins().updateYYRed(e, i) > 0 && (this.redPoint.visible = !0); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.openYYBtn: + window.openYYVip(); + } + }), + (i.prototype.onTabTouch = function (t) { + (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (i.prototype.checkIsOpen = function (t) { + switch (t) { + case 0: + return !0; + case 1: + return !0; + } + }), + (i.prototype.setOpenIndex = function (e) { + (this.giftGrp.visible = !0), + (this.fuliGrp.visible = !0), + (this.tabBar.selectedIndex = 0), + 0 == e + ? ((this.fuliGrp.visible = !1), + (this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 2, + index: 1, + txt: t.CrmPU.language_Common_113, + }, + { + type: 2, + index: 2, + txt: t.CrmPU.language_Common_114, + }, + { + type: 2, + index: 3, + txt: t.CrmPU.language_Common_115, + }, + ]))) + : 1 == e && + ((this.tabBar.dataProvider = new eui.ArrayCollection([ + { + type: 2, + index: 4, + txt: t.CrmPU.language_Common_116, + }, + { + type: 2, + index: 5, + txt: t.CrmPU.language_Common_117, + }, + ])), + (this.giftGrp.visible = !1)), + this.updatePag(); + }), + (i.prototype.updatePag = function () { + var e = this.tabBar.selectedIndex, + i = t.VlaoF.YYVIPConfig; + if (0 == this.tab.selectedIndex) { + if (i) + for (var n in i.newServerGiftDisplay) + if (e == +n) { + var s = 0; + for (var a in i.newServerGiftDisplay[n]) (this["giftItem" + s].data = i.newServerGiftDisplay[n][a]), s++; + } + } else if (1 == this.tab.selectedIndex) { + var r = 0; + if (0 == e) for (var o in i.dailyGiftDisplay) (this["fuliItem" + r].data = i.dailyGiftDisplay[o]), r++; + else if (1 == e) for (var o in i.weeklyGiftDisplay) (this["fuliItem" + r].data = i.weeklyGiftDisplay[o]), r++; + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.openYYBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + this.tab.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.tab.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this); + }), + i + ); + })(t.gIRYTi); + (t.YYMemberWin = e), __reflect(e.prototype, "app.YYMemberWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "YYWxGiftWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.vKruVZ(this.closeBtn, this.onClick), this.vKruVZ(this.btnGetAward, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.cdKeyText.text = ""; + var n = t.TQkyOx.ins().getActivityConfigById(10027); + n && (this.itemData.data = n.NormalRewards[0]); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.btnGetAward: + if ("" == this.cdKeyText.text.trim()) return; + t.edHC.ins().send_26_63(this.cdKeyText.text); + } + }), + (i.prototype.updateCode = function () { + var e = t.edHC.ins().codeState; + t.CrmPU.language_Wlelfare_Text4[e] ? t.uMEZy.ins().IrCm(t.CrmPU.language_Wlelfare_Text4[e]) : t.uMEZy.ins().IrCm("未知错误"); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.btnGetAward, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.YYWxGiftWin = e), __reflect(e.prototype, "app.YYWxGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._cdTime = 10), + (t.reviveInfo = null), + (t.reviveID = -1), + (t.receiveStr = ""), + (t.btnArr = []), + (t.skinName = "AutoReviveWinSkin"), + (t.bottom = t.top = t.right = t.left = 0), + (t.touchEnabled = !1), + t + ); + } + return ( + __extends(i, e), + (i.prototype.playDieTween = function () { + (this.bgImg.alpha = 0), egret.Tween.removeTweens(this.bgImg); + var t = egret.Tween.get(this.bgImg, { + loop: !0, + }); + t.to( + { + alpha: 1, + }, + 250 + ) + .to( + { + alpha: 0, + }, + 250 + ) + .to( + { + alpha: 1, + }, + 250 + ) + .to( + { + alpha: 0, + }, + 1500 + ); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (t.mAYZL.gamescene.map.mpaGrey(!0), + this.playDieTween(), + e[0] && (this.reviveInfo = e[0]), + (this.moneyGrp.visible = !1), + (this.reviveNumLab.visible = !1), + this.vKruVZ(this.backCity0, this.onClick), + this.vKruVZ(this.backCity1, this.onClick), + this.vKruVZ(this.backCity2, this.onClick), + this.vKruVZ(this.powerFul, this.onClick), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.closeView), + this.reviveInfo) + ) { + (this.killName.textFlow = t.hETx.qYVI("你被 |C:0xe50000&T:" + this.reviveInfo.name + "| 击败了!")), + -1 != this.reviveInfo.fubenReviveCount && ((this.reviveNumLab.visible = !0), (this.reviveNumLab.text = t.CrmPU.language_Common_75 + this.reviveInfo.fubenReviveCount)), + (this.reviveID = this.reviveInfo.id); + var n = t.VlaoF.ReliveConfig[this.reviveID]; + if ( + n && + (1 == n.description + ? (this.receiveStr = t.CrmPU.language_Omission_txt97) + : 2 == n.description + ? (this.receiveStr = t.CrmPU.language_Omission_txt98) + : 3 == n.description && (this.receiveStr = t.CrmPU.language_Omission_txt99), + n.VipRevive && n.expire != n.VipRevive && t.NWRFmB.ins().getPayer.propSet && 0 != t.NWRFmB.ins().getPayer.propSet.getResurrection() + ? ((this._cdTime = n.VipRevive + 1), (this.receiveStr += "(复活特权已加速)")) + : (this._cdTime = n.expire + 1), + (this.btnArr = []), + n.selectInfo) + ) { + var s = "", + a = 0; + for (var r in n.selectInfo) { + switch (n.selectInfo[r].type) { + case 1: + s = t.CrmPU.language_Common_77; + break; + case 2: + s = t.CrmPU.language_Common_78; + break; + case 3: + s = t.CrmPU.language_Common_79; + break; + case 4: + s = t.CrmPU.language_Common_80; + break; + case 5: + s = t.CrmPU.language_Common_81; + break; + case 6: + s = t.CrmPU.language_Omission_txt100; + } + var o = new eui.Button(); + if ( + ((o.skinName = "BtnResurrectionSkin"), + (o.label = s), + o.addEventListener(egret.TouchEvent.TOUCH_TAP, this.btnClick, this), + (o.index = a), + (o.type = n.selectInfo[r].type), + this.btnGrp.addChild(o), + this.btnArr.push(o), + n.selectInfo[r].consume) + ) { + this.moneyGrp.visible = !0; + var l = n.selectInfo[r].consume, + h = t.ZAJw.getMoneyIcon(l.type); + h && (this.moneyImg.source = h[1] + ""), (this.moneyNum.text = l.count); + } + a++; + } + } + } + this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this); + }), + (i.prototype.btnClick = function (e) { + var i = e.currentTarget; + t.Nzfh.ins().send_0_22(this.reviveID, i.index), + (i.touchEnabled = !1), + egret.setTimeout( + function () { + i.touchEnabled = !0; + }, + this, + 2e3 + ), + 6 == i.type && (t.mAYZL.ins().ZbzdY(t.ChangePowerfulWin) || t.mAYZL.ins().open(t.ChangePowerfulWin)); + }), + (i.prototype.closeView = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) { + var i = e.propSet.getHp(); + i > 0 && t.mAYZL.ins().close(this); + } + }), + (i.prototype.onClick = function (t) { + t.currentTarget; + }), + (i.prototype.reviveBtnClick = function (t) {}), + (i.prototype.updateTime = function () { + var e = (this._cdTime -= 1); + 0 > e ? (t.KHNO.ins().remove(this.updateTime, this), (this.cdTimeLab.text = ""), t.mAYZL.ins().close(this)) : (this.cdTimeLab.text = e + this.receiveStr); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.fEHj(this.backCity0, this.onClick), + this.fEHj(this.backCity1, this.onClick), + this.fEHj(this.backCity2, this.onClick), + this.fEHj(this.powerFul, this.onClick), + t.KHNO.ins().remove(this.updateTime, this); + for (var s = 0; s < this.btnArr.length; s++) { + var a = this.btnArr[s]; + a.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.btnClick, this); + } + (this.bgImg.alpha = 0), egret.Tween.removeTweens(this.bgImg), (this.btnArr = []), this.btnGrp.removeChildren(), (this._cdTime = null); + }), + i + ); + })(t.gIRYTi); + (t.AutoReviveWin = e), __reflect(e.prototype, "app.AutoReviveWin"), t.mAYZL.ins().reg(e, t.yCIt.UIupV); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.autoRecycleTime = -1), (t._recycleItemlevel = 0), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.onUseItem = function (e, n) { + void 0 === n && (n = 1); + var s = t.VlaoF.StdItems[e.wItemId]; + if (s) { + if (s.openUi && 1 == e.btCount && (131 == s.type || 133 == s.type || 135 == s.type)) { + t.ThgMu.ins().send_8_11(e.wItemId, e.btCount, e.series); + } else if (s.openUi) { + this.openUi(s.openUi, e); + } else { + var a = i.ins().getItemUseState(s); + if (1 == a) 1 == e.bagType ? t.caJqU.ins().sendWearEquip(e.series) : i.ins().useItem(e.series, e.wItemId, n); + else { + var r = t.AttributeData.isUseItem(s.conds); + "" != r && t.uMEZy.ins().IrCm(r); + } + } + } + }), + (i.prototype.useItem = function (e, i, n) { + void 0 === n && (n = 1); + var s = t.ThgMu.ins().cdItemArr[i]; + if (s && egret.getTimer() <= s) return t.uMEZy.ins().IrCm(t.CrmPU.language_Tips11), !1; + 1 == n ? t.ThgMu.ins().send_8_8(e) : t.ThgMu.ins().send_8_11(i, n, e); + var a = t.VlaoF.StdItems[i]; + return a && t.ThgMu.ins().setItemUseCD(a.colGroup), !0; + }), + (i.prototype.openUi = function (e, i) { + 1 == e.type + ? t.mAYZL.ins().open(e.view, i.wItemId, i) + : 2 == e.type + ? t.mAYZL.ins().open(e.view, e.param1) + : 3 == e.type && (e.param2 ? this.getRoleIsOpen(e.param2) && t.mAYZL.ins().open(e.view, e.param1) : t.mAYZL.ins().open(e.view, e.param1)); + }), + (i.prototype.getRoleIsOpen = function (e) { + var i = t.VlaoF.SystemOpen[e]; + if (i) { + var n = t.NWRFmB.ins().getPayer; + if (n && n.propSet) { + var s = n.propSet; + if (s.mBjV() < i.level || s.MzYki() < i.circle || t.GlobalData.sectionOpenDay < i.day || s.mBjV() < i.openLevel || s.MzYki() < i.openCircle || t.GlobalData.sectionOpenDay < i.openDay) + return t.uMEZy.ins().IrCm(i.name), !1; + } + } + return !0; + }), + (i.prototype.autoRecycle = function () { + if (this.autoRecycleTime < 0 || egret.getTimer() - this.autoRecycleTime > 3e3) { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet && 1 == e.propSet.getRecoverState() && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoRecycle) && t.ThgMu.ins().getBagItemNum(1) <= 100) { + var i = t.VlaoF.BagRemainConfig[5]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n && (this.batchRecycle(), (this.autoRecycleTime = egret.getTimer())); + } + } + } + }), + (i.prototype.batchRecycle = function (tip) { + if (t.ThgMu.ins().noCanRecycle(tip)) return; + if (tip) t.AHhkf.ins().Uvxk(t.OSzbc.GOLD); + var s = "回收完成"; + if (tip) { + t.uMEZy.ins().IrCm(s); + } else { + t.uMEZy.ins().showJingYanTips("自动" + s); + } + var e = new t.ItemSeries(); + e.setData(0); + var i = this.getBaseNum(); + t.ThgMu.ins().send_8_10(1e6, e, i); + }), + (i.prototype.getBaseNum = function (e) { + void 0 === e && (e = 0); + var i = this.PrefixInteger(0, this.recycleItemlevel), + n = "111" + i.slice(3), + s = n.split(""), + a = t.VlaoF.RecyclingSettingConfig; + for (var r in a) { + var o = a[r]; + for (var l in o) t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Recycle, o[l].optionid - 1) && s.splice(o[l].itemlevel - 1, 1, "1"); + } + var h = this.reverseFun(s.join("")); + return h; + }), + Object.defineProperty(i.prototype, "recycleItemlevel", { + get: function () { + if (0 == this._recycleItemlevel) { + var e = t.VlaoF.RecyclingSettingConfig, + i = 0; + for (var n in e) { + var s = e[n]; + for (var a in s) i < s[a].itemlevel && (i = s[a].itemlevel); + } + this._recycleItemlevel = i; + } + return this._recycleItemlevel; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.PrefixInteger = function (t, e) { + return (Array(e).join("0") + t).slice(-e); + }), + (i.prototype.reverseFun = function (t) { + return t.split("").reverse().join(""); + }), + (i.prototype.getItemUseState = function (e) { + var i = t.NWRFmB.ins().nkJT(); + if (i && i.propSet && !i.propSet.getAP_JOB()) return -1; + var n = this.getItemUseCondMismatch(e); + return (n & (1 << t.StdItemCondition.ucGender)) > 0 || (n & (1 << t.StdItemCondition.ucJob)) > 0 + ? -1 + : (n & (1 << t.StdItemCondition.ucLevel)) > 0 || + (n & (1 << t.StdItemCondition.ucCircle)) > 0 || + (n & (1 << t.StdItemCondition.ucCircleLess)) > 0 || + (n & (1 << t.StdItemCondition.ucChief_Mark)) > 0 || + (n & (1 << t.StdItemCondition.ucChatelain_Mark)) > 0 || + (n & (1 << t.StdItemCondition.ucPower)) > 0 || + (n & (1 << t.StdItemCondition.ucNeiGongLevel)) > 0 || + (n & (1 << t.StdItemCondition.ucGuildLevel)) > 0 + ? 0 + : 1; + }), + (i.prototype.getItemUseCondMismatch = function (e) { + var i, + n, + s, + a, + r = e.conds, + o = {}, + l = t.NWRFmB.ins().nkJT(); + if (r) { + for (var h = 0; h < r.length; h++) o[r[h].cond] = r[h].value; + if (l && l.propSet) + for (var p = 0; p < r.length; p++) + switch ((i = r[p].cond)) { + case t.StdItemCondition.ucGender: + 2 != r[p].value && r[p].value != l.propSet.getSex() && (n |= 1 << i); + break; + case t.StdItemCondition.ucJob: + r[p].value && r[p].value != l.propSet.getAP_JOB() && (n |= 1 << i); + break; + case t.StdItemCondition.ucLevel: + (a = o[t.StdItemCondition.ucLevel]), l.propSet.mBjV() < a && (n |= 1 << t.StdItemCondition.ucLevel); + break; + case t.StdItemCondition.ucCircle: + (s = o[t.StdItemCondition.ucCircle]), l.propSet.MzYki() < s && (n |= 1 << t.StdItemCondition.ucCircle); + break; + case t.StdItemCondition.ucCircleLess: + l.propSet.MzYki() > r[p].value && (n |= 1 << i); + break; + case t.StdItemCondition.ucChief: + r[p].value == t.StdItemCondition.Post_Chief || r[p].value == t.StdItemCondition.Post_Castellan; + break; + case t.StdItemCondition.ucPower: + r[p].value && r[p].value > l.propSet.getPowerValue() && (n |= 1 << i); + break; + case t.StdItemCondition.ucVipLevel: + break; + case t.StdItemCondition.ucNeiGongLevel: + l.propSet.getMeridians() < r[p].value && (n |= 1 << i); + break; + case t.StdItemCondition.ucGuildLevel: + l.propSet.getGuildLevel() < r[p].value && (n |= 1 << i); + } + } + return n; + }), + i + ); + })(t.BaseClass); + (t.pWFTj = e), __reflect(e.prototype, "app.pWFTj"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var n = e.call(this) || this; + return ( + (n._bagRecycleSelect = {}), + (n.itemGridNum = 0), + (n.equipGridNum = 0), + (n.materialGridNum = 0), + (n.gridNumArr = []), + (n._itemInfo = []), + (n._bagItem = []), + (n._keyXY = []), + (n._bagGeZiPoint = null), + (n._globalPoint = null), + (n._globalPoint2 = null), + (n._sellGlobalPoint = null), + (n._bagItemCount = {}), + (n.cdItemArr = {}), + (n._bagItem[0] = []), + (n._bagItem[1] = []), + (n._bagItem[2] = []), + (n._itemInfo[0] = []), + (n._itemInfo[1] = []), + (n._itemInfo[2] = []), + (n._bagItemCount = {}), + (n.sysId = t.jDIWJt.Bag), + n.YrTisc(1, n.post_8_1), + n.YrTisc(2, n.post_8_2), + n.YrTisc(3, n.post_8_3), + n.YrTisc(4, n.post_8_4), + n.YrTisc(6, n.post_8_6), + n.YrTisc(7, n.post_8_7), + n.YrTisc(10, n.post_8_10), + n.YrTisc(11, n.post_8_11), + n.YrTisc(12, n.post_8_12), + n.YrTisc(13, n.post_8_13), + (i.itemTips = new t.userItem()), + n + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "itemInfo", { + get: function () { + return this._itemInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bagItem", { + get: function () { + return this._bagItem; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "keyXY", { + get: function () { + return this._keyXY; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bagGeZiPoint", { + get: function () { + return this._bagGeZiPoint; + }, + set: function (t) { + this._bagGeZiPoint = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "globalPoint", { + get: function () { + return this._globalPoint; + }, + set: function (t) { + this._globalPoint = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "globalPoint2", { + get: function () { + return this._globalPoint2; + }, + set: function (t) { + this._globalPoint2 = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "sellGlobalPoint", { + get: function () { + return this._sellGlobalPoint; + }, + set: function (t) { + this._sellGlobalPoint = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getBagRecycleSelect = function (t) { + return this._bagRecycleSelect[t]; + }), + (i.prototype.setBagRecycleSelect = function (t, e) { + this._bagRecycleSelect[t] = e; + }), + (i.prototype.delBagRecycleSelect = function () { + this._bagRecycleSelect = {}; + }), + (i.prototype.bagItemCount = function (t) { + return this._bagItemCount[t]; + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_8_2 = function () { + var t = this.MxGiq(2); + this.evKig(t); + }), + (i.prototype.post_8_2 = function (e) { + (i.redPointArr = []), + (i.yellowPointArr = []), + (this._bagItem[0].length = 0), + (this._bagItem[1].length = 0), + (this._bagItem[2].length = 0), + (this._itemInfo[0].length = 0), + (this._itemInfo[1].length = 0), + (this._itemInfo[2].length = 0), + (this._bagItemCount = {}), + (this.itemGridNum = e.readInt()), + (this.equipGridNum = e.readInt()), + (this.materialGridNum = e.readInt()), + t.DAhY.ins().clearAllData(), + (this.gridNumArr = [this.itemGridNum, this.equipGridNum, this.materialGridNum]); + for (var n = e.readShort(), s = t.NWRFmB.ins().nkJT(), a = 0; n > a; a++) { + var r = new t.userItem(e); + this._bagItem[r.bagType].push(r), (this._bagItemCount[r.wItemId] = this._bagItemCount[r.wItemId] ? this._bagItemCount[r.wItemId] + r.btCount : r.btCount); + var o = t.VlaoF.StdItems[r.wItemId]; + o && + (0 == r.btQuality && (r.btQuality = o.showQuality), + (r.itemRed = o.forcetips), + o.Redpointlimit && 0 == t.ZAJw.isRedDot(o.Redpointlimit) && (r.itemRed = 0), + 1 == r.itemRed ? i.redPointArr.push(1) : 2 == r.itemRed && i.yellowPointArr.push(2)); + var l = t.bPGzk.equipScore(r, s.propSet.getAP_JOB()); + (r.itemScore = l), 1 == r.bagType && s && s.propSet && t.bPGzk.getIsGoodEquip(r, s.propSet.getAP_JOB()); + } + this.init_bagItems(), t.bPGzk.ins().showGoodEquipTips(), t.pWFTj.ins().autoRecycle(), t.ForgeMgr.ins().forgeRed(), (n = null), (r = null); + }), + (i.prototype.init_bagItems = function () { + this.createBagData(); + }), + (i.prototype.send_8_1 = function () { + var t = this.MxGiq(1); + t.writeShort(2); + for (var e = 0; 2 > e; e++) t.writeShort(260), t.writeShort(1), t.writeByte(1), t.writeByte(1), t.writeByte(0); + this.evKig(t); + }), + (i.prototype.post_8_1 = function (e) { + var i = e.readByte(); + if (0 == i) { + var n = new t.userItem(e), + s = e.readUnsignedByte(); + n.needShowBatchPanel = s; + var a = 1 == e.readUnsignedByte() ? !0 : !1; + this.addItem(n, a), t.ckpDj.ins().sendEvent(t.CompEvent.ITEM_NUM_UPDATE, n.wItemId); + } else 1 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips4) : 2 == i && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips5); + t.ForgeMgr.ins().forgeRed(), (i = null); + }), + (i.prototype.addItem = function (e, n) { + var s = t.NWRFmB.ins().nkJT(), + a = t.VlaoF.StdItems[e.wItemId]; + if (a) { + var r = this.airIndex(e.bagType); + if ( + -1 != r && + ((this._itemInfo[e.bagType][r] = e), + this._bagItem[e.bagType].push(e), + (this._bagItemCount[e.wItemId] = this._bagItemCount[e.wItemId] ? this._bagItemCount[e.wItemId] + e.btCount : e.btCount), + (e.itemRed = a.forcetips), + a.Redpointlimit && 0 == t.ZAJw.isRedDot(a.Redpointlimit) && (e.itemRed = 0), + 1 == e.itemRed ? i.redPointArr.push(1) : 2 == e.itemRed && i.yellowPointArr.push(2), + 0 == e.btQuality && (e.btQuality = a.showQuality), + s && s.propSet) + ) { + var o = t.bPGzk.equipScore(e, s.propSet.getAP_JOB()); + (e.itemScore = o), (o = null); + } + a.UseLimit && this.send_8_13(a.id), t.DAhY.ins().addTipsObj(e), (r = null); + } + if (n) { + var l = t.VlaoF.StdItems[e.wItemId], + h = t.ClwSVR.GOODS_COLOR[l.showQuality]; + h = h ? h : 16777215; + var p = t.zlkp.replace(t.CrmPU.language_Tips6, h, l.name); + t.uMEZy.ins().showJingYanTips(p); + var u = t.zlkp.replace(t.CrmPU.language_Tips74, l.name); + t.ChatModel.ins().setPersonalData(u), (l = null); + } + t.bPGzk.ins().getRecommendEquip(), (a = null), t.ckpDj.ins().sendEvent(t.CompEvent.STRENGTHEN_RED), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_RED), t.pWFTj.ins().autoRecycle(); + }), + (i.prototype.send_8_3 = function (t) { + var e = this.MxGiq(3); + t.writeToBytes(e), this.evKig(e); + }), + (i.prototype.post_8_3 = function (e) { + var i = new t.ItemSeries(e); + this.del_bagItem(i); + for (var n = 0; 3 > n; n++) + for (var s = this._itemInfo[n], a = 0; a < s.length; a++) { + var r = s[a]; + if (r && r.series && r.series.toString() == i.toString()) { + (this._itemInfo[n][a] = null), + (this._bagItemCount[r.wItemId] = this._bagItemCount[r.wItemId] ? this._bagItemCount[r.wItemId] - r.btCount : 0), + t.DAhY.ins().removeTipsObj(r), + t.ckpDj.ins().sendEvent(t.CompEvent.STRENGTHEN_RED), + t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_RED), + t.ckpDj.ins().sendEvent(t.CompEvent.ITEM_NUM_UPDATE, r.wItemId); + var o = t.VlaoF.StdItems[r.wItemId]; + return void (o && o.UseLimit && this.send_8_13(o.id)); + } + } + i = null; + }), + (i.prototype.del_bagItem = function (t) { + for (var e = 0; 3 > e; e++) + for (var n = this._bagItem[e], s = 0; s < n.length; s++) { + var a = n[s]; + a && + a.series && + a.series.toString() == t.toString() && + (this._bagItem[e].splice(s, 1), a.itemRed && (1 == a.itemRed ? i.redPointArr.splice(0, 1) : 2 == a.itemRed && i.yellowPointArr.splice(0, 1))); + } + }), + (i.prototype.post_8_4 = function (e) { + var i = new t.ItemSeries(e), + n = e.readShort(), + s = e.readBoolean(), + a = e.readUnsignedByte(), + r = this.getItemDataBySeries(i); + if (r) { + var o = r.btCount - n, + l = n > r.btCount; + if (((r.btCount = n), (this._bagItemCount[r.wItemId] = this._bagItemCount[r.wItemId] ? this._bagItemCount[r.wItemId] - o : 0), l)) { + var h = t.VlaoF.StdItems[r.wItemId]; + if (h) { + var p = t.ClwSVR.GOODS_COLOR[h.showQuality]; + p = p ? p : 16777215; + var u = t.zlkp.replace(t.CrmPU.language_Tips6, p, h.name); + t.uMEZy.ins().showJingYanTips(u); + var c = t.zlkp.replace(t.CrmPU.language_Tips74, h.name); + t.ChatModel.ins().setPersonalData(c); + } + t.DAhY.ins().addTipsObj(r); + } + t.ckpDj.ins().sendEvent(t.CompEvent.ITEM_NUM_UPDATE, r.wItemId); + var g = t.VlaoF.StdItems[r.wItemId]; + g && g.UseLimit && this.send_8_13(g.id); + } + t.ForgeMgr.ins().forgeRed(), (n = null), (s = null), (a = null), t.ckpDj.ins().sendEvent(t.CompEvent.STRENGTHEN_RED), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_RED); + }), + (i.prototype.post_8_6 = function (e) { + var i = new t.userItem(e), + n = i.series, + s = this.getItemDataBySeries(n); + s && ((s.topLine = i.topLine), (s.refining = i.refining)); + }), + (i.prototype.send_8_5 = function (t, e) { + var i = this.MxGiq(5); + t.writeToBytes(i), i.writeShort(e), this.evKig(i); + }), + (i.prototype.send_8_6 = function (t, e) { + var i = this.MxGiq(6); + t.writeToBytes(i), e.writeToBytes(i), this.evKig(i); + }), + (i.prototype.send_8_7 = function () { + var t = this.MxGiq(7); + this.evKig(t); + }), + (i.prototype.post_8_10 = function () { + this.tidyItems(this._bagItem[0]), + this.tidyItems(this._bagItem[1]), + this.tidyItems(this._bagItem[2]), + (this._itemInfo[0].length = 0), + (this._itemInfo[1].length = 0), + (this._itemInfo[2].length = 0), + this.createBagData(); + }), + (i.prototype.send_8_8 = function (t, e, i) { + if ((void 0 === e && (e = !0), void 0 === i && (i = 0), t)) { + var n = this.MxGiq(8); + t.writeToBytes(n), n.writeByte(e ? 1 : 0), n.writeInt(i), this.evKig(n); + } + }), + (i.prototype.post_8_7 = function (t) { + var e = new Object(); + return (e.itemID = t.readShort()), (e.isSuccess = t.readByte()), e; + }), + (i.prototype.send_8_9 = function (t, e) { + var i = this.MxGiq(9); + i.writeByte(t), i.writeInt(e), this.evKig(i); + }), + (i.prototype.send_8_10 = function (t, e, i, n) { + void 0 === i && (i = ""), void 0 === n && (n = ""); + var s = this.MxGiq(10); + s.writeInt(t), e.writeToBytes(s), s.writeString(i), s.writeString(n), this.evKig(s); + }), + (i.prototype.post_8_11 = function (t) { + var e = new Object(); + return (e.isSuccess = t.readBoolean()), (e.type = t.readByte()), e; + }), + (i.prototype.send_8_11 = function (t, e, i) { + const send = (num) => { + var n = this.MxGiq(11); + n.writeInt(t), n.writeInt(num), i.writeToBytes(n), this.evKig(n); + }; + const batchUse = (num) => { + const batchMax = 10; + return (() => { + send(Math.min(num, batchMax)); + num -= batchMax; + setTimeout(() => { + if (num > 0) { + batchUse(num); + } + }, 200); + })(); + }; + batchUse(e); + }), + (i.prototype.post_8_12 = function (t) { + this.surplusUseCount = {}; + for (var e = t.readInt(), i = 0; e > i; i++) { + var n = t.readInt(), + s = t.readInt(); + this.surplusUseCount[n] = s; + } + }), + (i.prototype.send_8_12 = function () { + var t = this.MxGiq(12); + this.evKig(t); + }), + (i.prototype.post_8_13 = function (t) { + var e = t.readInt(), + i = t.readInt(); + return (this.surplusUseCount[e] = i), e; + }), + (i.prototype.send_8_13 = function (t) { + var e = this.MxGiq(13); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.getBagTwoArr = function (t) { + for (var e = [], i = 0; i < this._itemInfo[t].length; i++) e[Math.floor(i / 8)] || (e[Math.floor(i / 8)] = []), e[Math.floor(i / 8)].push(this._itemInfo[t][i]); + return e; + }), + (i.prototype.getLineXY = function (t) { + for (var e = {}, i = 0, n = 0; n < t.length; n++) + 0 == n + ? ((e[n] = { + x: 0, + y: 0, + }), + (i = 0)) + : ((e[n] = { + x: 0, + y: 60 + i + 2.5, + }), + (i = e[n].y)); + return e; + }), + (i.prototype.createBagData = function () { + for (var e = 0; 3 > e; e++) + if (this._bagItem) + for (var i = this._bagItem[e], n = 0; n < this.gridNumArr[e]; n++) + if (i && i[n] && i[n].wItemId) this._itemInfo[e].push(i[n]); + else { + var s = new t.userItem(null); + this._itemInfo[e].push(s); + } + else + for (var a = 0; a < this.gridNumArr[e]; a++) { + var s = new t.userItem(null); + this._itemInfo[e].push(s); + } + }), + (i.prototype.postItemRecycle = function (t) { + return t; + }), + (i.prototype.tidyItems = function (t) { + return t && t.sort(this.sortFunction), t; + }), + (i.prototype.sortFunction = function (t, e) { + return t.btQuality < e.btQuality ? 1 : t.btQuality > e.btQuality ? -1 : t.wItemId < e.wItemId ? 1 : t.wItemId > e.wItemId ? -1 : t.wStar < e.wStar ? 1 : t.wStar > e.wStar ? -1 : 0; + }), + (i.prototype.noCanRecycle = function (tip) { + var a = t.VlaoF.RecyclingSettingConfig, + h, + d, + n = !1, + m = !1, + o = !1, + s = "", + x = []; + for (var l in a) { + h = a[l]; + for (var p in h) { + d = h[p]; + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Recycle, d.optionid - 1)) { + n = !0; + x = t.ThgMu.ins().checkBagGoodItemByLevel(d.itemlevel, !0); + if (x[0]) { + m = !0; + } + if (x[1]) { + o = !0; + } + if (m && o) break; + } + } + if (m && o) break; + } + if (tip) { + !n ? (s = "请选择要回收的装备类型!") : m ? (s = "有可穿戴装备,请先穿戴或存仓库!") : !o ? (s = "没有可回收装备!") : ""; + s && t.uMEZy.ins().pwYDdQ(s); + } + return !n || m || !o; + }), + (i.prototype.findRecycling = function (lv) { + if (!lv) return null; + var h = t.VlaoF.RecyclingSettingConfig, + p, + d; + for (var k in h) { + p = h[k]; + for (var a in p) { + d = p[a]; + if (lv == d.itemlevel) return d; + } + } + return null; + }), + (i.prototype.checkBagGoodItemByLevel = function (lv, noTip) { + var e = 1, + i = this._itemInfo[e], + canDressNum = 0, + canRecycleNum = 0; + if (!i || i.length == 0) { + return []; + } + var l = t.NWRFmB.ins().nkJT(), + h = l.propSet.getAP_JOB(); + for (var n = 0; n < i.length; n++) { + if (canDressNum && canRecycleNum) break; + var s = i[n], + item, + r, + o, + q; + if (!s) continue; + item = t.VlaoF.StdItems[s.wItemId]; + if (!item || lv != item.itemlevel) continue; + r = t.caJqU.ins().getEquipsByPos(item.type - 1); + if (s && item) { + q = 0 == item.suggVocation || item.suggVocation == h; + } + if (s) { + if (q && ((r && s.itemScore > r.itemScore) || !r)) { + if (!noTip) { + var recyc = this.findRecycling(lv), + c = t.ClwSVR.GOODS_COLOR[recyc.showQuality]; + t.uMEZy + .ins() + .IrCm( + (recyc && recyc.name ? "|C:" + c + "&T:" + recyc.name + "|" : "|C:0xff7700&T:当前|") + + "|C:0xff7700&T:级别有可穿戴装备||C:" + + c + + "&T:【" + + item.name + + "】||C:0xff7700&T:请先穿戴或存仓库!|" + ); + } + canDressNum++; + } else { + canRecycleNum++; + } + } + } + return [canDressNum, canRecycleNum]; + }), + (i.prototype.getItemDataBySeries = function (t) { + for (var e = 0; 3 > e; e++) + for (var i = this._itemInfo[e], n = 0; n < i.length; n++) { + var s = i[n]; + if (s && s.series && s.series.toString() == t.toString()) return this._itemInfo[e][n]; + } + return null; + }), + (i.prototype.getItemById = function (t) { + for (var e = 0; 3 > e; e++) + for (var n = this._itemInfo[e], s = 0; s < n.length; s++) { + var a = n[s]; + if (a && a.wItemId && a.wItemId == t && a._itemState == i.STATE_NORMAL) return a; + } + return null; + }), + (i.prototype.getItemCountById = function (t) { + for (var e = 0, n = 0; 3 > n; n++) + for (var s = this._itemInfo[n], a = 0; a < s.length; a++) { + var r = s[a]; + r && r.wItemId && r.wItemId == t && r._itemState == i.STATE_NORMAL && (e += r.btCount); + } + return e; + }), + (i.prototype.getBagCapacity = function (t) { + for (var e = 0; 3 > e; e++) { + var i = this._bagItem[e], + n = this.gridNumArr[e] - i.length; + if (n < t[e]) return !1; + } + return !0; + }), + (i.prototype.getBagItemNum = function (t) { + var e = this._bagItem[t]; + return e ? this.gridNumArr[t] - e.length : 0; + }), + (i.prototype.getBagTypeItemNum = function (t) { + var e = this.getBagItemNum(t); + return 0 == t ? e : e - 10; + }), + (i.prototype.getBagNumEnough = function (t) { + void 0 === t && (t = 5); + for (var e = 0; 3 > e; e++) { + var i = this._bagItem[e], + n = this.gridNumArr[e] - i.length; + if (t >= n) return !1; + } + return !0; + }), + (i.prototype.setItemUseCD = function (e) { + for (var i = 0; i < this._bagItem[0].length; i++) { + var n = this._bagItem[0][i], + s = t.VlaoF.StdItems[n.wItemId]; + if (s && s.colGroup == e) { + var a = egret.getTimer() + s.cdTime; + this.cdItemArr[n.wItemId] = a; + } + } + }), + (i.prototype.formatMiniDateTime = function (t) { + return i.MiniDateTimeBase + 1e3 * (2147483647 & t); + }), + (i.prototype.airIndex = function (t) { + for (var e = 0; e < i.ins().gridNumArr[t]; e++) if (!this._itemInfo[t][e] || !this._itemInfo[t][e].wItemId) return e; + return -1; + }), + (i.prototype.postKeyXY = function () {}), + (i.prototype.getBagRed = function () { + if (i.redPointArr.length > 0) return 1; + if (i.yellowPointArr.length > 0) return 2; + for (var t in this.surplusUseCount) if (this.surplusUseCount[t] > 0 && this.getItemCountById(parseInt(t)) > 0) return 1; + return 0; + }), + (i.prototype.postBagRecycleSelect = function () {}), + (i.STATE_NORMAL = 0), + (i.STATE_MARKET = 1), + (i.STATE_GUILD_STORE = 2), + (i.STATE_RECOVER = 3), + (i.STATE_LvUp = 4), + (i.STATE_Trading = 5), + (i.STATE_SALE = 6), + (i.clickCd = !1), + (i.redPointArr = []), + (i.yellowPointArr = []), + (i.MiniDateTimeBase = 12622752e5), + i + ); + })(t.DlUenA); + (t.ThgMu = e), __reflect(e.prototype, "app.ThgMu"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t, e) { + void 0 === t && (t = 0), void 0 === e && (e = 0), (this.type = t), (this.value = e); + } + return ( + (t.prototype.isFloat = function (e) { + switch (e) { + case t.aHpPower: + case t.aMpPower: + case t.aMaxHpPower: + case t.aMaxMpPower: + case t.aPhysicalAttackMinPower: + case t.aPhysicalAttackMaxPower: + case t.aMagicAttackMinPower: + case t.aMagicAttackMaxPower: + case t.aWizardAttackMinPower: + case t.aWizardAttackMaxPower: + case t.aPhysicalDefenceMinPower: + case t.aPhysicalDefenceMaxPower: + case t.aMagicDefenceMinPower: + case t.aMagicDefenceMaxPower: + case t.aMagicHitRateAdd: + case t.aMagicHitRatePower: + case t.aMagicDogerateAdd: + case t.aMagicDogeratePower: + case t.aToxicDogerateAdd: + case t.aToxicDogeratePower: + case t.aHpRenewAdd: + case t.aHpRenewPower: + case t.aMpRenewAdd: + case t.aMpRenewPower: + case t.aToxicRenewAdd: + case t.aToxicRenewPower: + case t.aLuckPower: + case t.aCursePower: + case t.aMoveSpeedPower: + case t.aAttackSpeedPower: + case t.aDamageAbsorbRate: + case t.aExpPower: + case t.aDamagePower: + case t.aHpDamage2MpDropRateAdd: + case t.aMountMinAttackRateAdd: + case t.aMountMaxAttackRateAdd: + case t.aMountMinPhyDefenceRateAdd: + case t.aMountMaxPhyDefenceRateAdd: + case t.aMountMinMagicDefenceRateAdd: + case t.aMountMaxMagicDefenceRateAdd: + case t.aMountHpRateAdd: + case t.aMountMpRateAdd: + case t.aDiamondMinAttackRateAdd: + case t.aDiamondMaxAttackRateAdd: + case t.aDiamondMinPhyDefenceRateAdd: + case t.aDiamondMaxPhyDefenceRateAdd: + case t.aDiamondMinMagicDefenceAdd: + case t.aDiamondMaxMagiceDefence: + case t.aDiamondHpRateAdd: + case t.aDiamondMpRateAdd: + case t.aDeductDamagePower: + case t.aHPMPDeductPower: + case t.aAddDamageReboundPower: + case t.aDamage2SelfHpRate: + case t.aInnerStrengthExp: + case t.aBuffHeroExpRate: + case t.aFastMedicamentRenew: + return !0; + default: + return !1; + } + }), + (t.aUndefined = 0), + (t.aHpAdd = 1), + (t.aHpPower = 2), + (t.aMpAdd = 3), + (t.aMpPower = 4), + (t.aMaxHpAdd = 5), + (t.aMaxHpPower = 6), + (t.aMaxMpAdd = 7), + (t.aMaxMpPower = 8), + (t.aPhysicalAttackMinAdd = 9), + (t.aPhysicalAttackMinPower = 10), + (t.aPhysicalAttackMaxAdd = 11), + (t.aPhysicalAttackMaxPower = 12), + (t.aMagicAttackMinAdd = 13), + (t.aMagicAttackMinPower = 14), + (t.aMagicAttackMaxAdd = 15), + (t.aMagicAttackMaxPower = 16), + (t.aWizardAttackMinAdd = 17), + (t.aWizardAttackMinPower = 18), + (t.aWizardAttackMaxAdd = 19), + (t.aWizardAttackMaxPower = 20), + (t.aPhysicalDefenceMinAdd = 21), + (t.aPhysicalDefenceMinPower = 22), + (t.aPhysicalDefenceMaxAdd = 23), + (t.aPhysicalDefenceMaxPower = 24), + (t.aMagicDefenceMinAdd = 25), + (t.aMagicDefenceMinPower = 26), + (t.aMagicDefenceMaxAdd = 27), + (t.aMagicDefenceMaxPower = 28), + (t.aHitValueAdd = 29), + (t.aHitValuePower = 30), + (t.aDogValueAdd = 31), + (t.aDogValuePower = 32), + (t.aMagicHitRateAdd = 33), + (t.aMagicHitRatePower = 34), + (t.aMagicDogerateAdd = 35), + (t.aMagicDogeratePower = 36), + (t.aToxicDogerateAdd = 37), + (t.aToxicDogeratePower = 38), + (t.aHpRenewAdd = 39), + (t.aHpRenewPower = 40), + (t.aMpRenewAdd = 41), + (t.aMpRenewPower = 42), + (t.aToxicRenewAdd = 43), + (t.aToxicRenewPower = 44), + (t.aLuckAdd = 45), + (t.aLuckPower = 46), + (t.aCurseAdd = 47), + (t.aCursePower = 48), + (t.aMoveSpeedAdd = 49), + (t.aMoveSpeedPower = 50), + (t.aAttackSpeedAdd = 51), + (t.aAttackSpeedPower = 52), + (t.GamePropertyCount = 53), + (t.aDamageAbsorbRate = 54), + (t.aExpAdd = 56), + (t.aHide = 58), + (t.aExpPower = 59), + (t.aPkValueAdd = 60), + (t.aSelfAttackAppend = 62), + (t.aSacredValueAdd = 63), + (t.aHpDamage2MpDropRateAdd = 64), + (t.aDizzyRateAdd = 65), + (t.aDamagePower = 66), + (t.aAddPhysicalDamageRate = 67), + (t.aAddPhysicalDamageValue = 68), + (t.aDamage2SelfHpPro = 69), + (t.aDamage2SelfHpRate = 70), + (t.aSkillExpValue = 71), + (t.aDieRefreshHpPro = 73), + (t.aHp2DamageAdd = 75), + (t.aMountMinAttackRateAdd = 76), + (t.aMountMaxAttackRateAdd = 77), + (t.aMountMinPhyDefenceRateAdd = 78), + (t.aMountMaxPhyDefenceRateAdd = 79), + (t.aMountMinMagicDefenceRateAdd = 80), + (t.aMountMaxMagicDefenceRateAdd = 81), + (t.aMountHpRateAdd = 82), + (t.aMountMpRateAdd = 83), + (t.aDiamondMinAttackRateAdd = 84), + (t.aDiamondMaxAttackRateAdd = 85), + (t.aDiamondMinPhyDefenceRateAdd = 86), + (t.aDiamondMaxPhyDefenceRateAdd = 87), + (t.aDiamondMinMagicDefenceAdd = 88), + (t.aDiamondMaxMagiceDefence = 89), + (t.aDiamondHpRateAdd = 90), + (t.aDiamondMpRateAdd = 91), + (t.aFireDefenseRate = 92), + (t.aReduceEquipDropRate = 93), + (t.aWarriorDamageValueDec = 95), + (t.aWarriorDamageRateDec = 96), + (t.aMagicianDamageValueDesc = 97), + (t.aMagicianDamageRateDesc = 98), + (t.aWizardDamageValueDesc = 99), + (t.aWizardDamageRateDesc = 100), + (t.aMonsterDamageValueDesc = 101), + (t.aMonsterDamageRateDesc = 102), + (t.aDamageReduceRate = 103), + (t.aDamageReduceValue = 104), + (t.aDamageAddRate = 105), + (t.aDamageAddValue = 106), + (t.aIgnorDefenceRate = 107), + (t.aIgnorDefenceValue = 108), + (t.aDeductDamagePower = 109), + (t.aWarriorTargetDamageValue = 110), + (t.aWarriorTargetDamageRate = 111), + (t.aMagicianTargetDamageValue = 112), + (t.aMagicianTargetDamageRate = 113), + (t.aWizardTargetDamageValue = 114), + (t.aWizardTargetDamageRate = 115), + (t.aMonsterTargetDamageValue = 116), + (t.aMonsterTargetDamageRate = 117), + (t.aHPMPDeductPower = 118), + (t.aAddAllDamageRate = 119), + (t.aAddAllDamagePower = 120), + (t.aAddDamageReboundRate = 121), + (t.aAddDamageReboundPower = 122), + (t.aAddAllDamageRateEx = 123), + (t.aFixed = 125), + (t.aChengMo = 132), + (t.maxInnerStrength = 133), + (t.aInnerStrengthExp = 135), + (t.aCritRate = 136), + (t.aCritDamageRate = 138), + (t.aCritDamagePower = 139), + (t.aDeductCriteDamageRate = 140), + (t.aFastMedicamentRenew = 141), + (t.aBuffExpAdd = 142), + (t.aBuffHeroExpRate = 143), + (t.aAddGoldToMonster = 144), + (t.aWrathBY = 145), + (t.aWrathFires = 146), + (t.aWrathZR = 147), + (t.aWrathBPX = 148), + (t.aWrathHY = 149), + (t.aWrathLD = 150), + (t.aWrathSXS = 151), + (t.aWrathHF = 152), + (t.aReduceBY = 153), + (t.aReduceLH = 154), + (t.aReduceZR = 155), + (t.aReduceBPX = 156), + (t.aReduceHY = 157), + (t.aReduceLD = 158), + (t.aReduceSXS = 159), + (t.aReduceHF = 160), + (t.aDizzy = 55), + (t.aReliveProtectState = 57), + (t.aPkProtectState = 61), + (t.aOnPracticeMap = 72), + (t.aNewPlayerProtect = 74), + (t.aDamageDropTime = 94), + (t.aChangeMonsterModle = 124), + (t.aHpMpAdd = 137), + t + ); + })(); + (t.ComAttribute = e), __reflect(e.prototype, "app.ComAttribute"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t, e, i, n) { + void 0 === t && (t = 0), void 0 === e && (e = 0), void 0 === i && (i = 0), void 0 === n && (n = 0), (this.rate = t), (this.type = e), (this.id = i), (this.count = n); + } + return t; + })(); + (t.ItemRecycleData = e), __reflect(e.prototype, "app.ItemRecycleData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + void 0 === t && (t = null), (this.itemSeriesText = ""), t && ((this.createTime = t.readDouble()), (this.itemSeriesText = this.createTime.toString())); + } + return ( + (t.prototype.isCompleteEquals = function (t) { + return this.createTime == t.createTime && this.wSeries == t.wSeries && this.btServer == t.btServer && this.btReserve == t.btReserve; + }), + (t.prototype.isZero = function () { + return 0 == this.createTime && 0 == this.wSeries && 0 == this.btServer && 0 == this.btReserve; + }), + (t.prototype.writeToBytes = function (t) { + t.writeDouble(this.createTime); + }), + (t.prototype.setData = function (t) { + (this.createTime = t), (this.itemSeriesText = t.toString()); + }), + (t.prototype.toString = function () { + return this.itemSeriesText; + }), + t + ); + })(); + (t.ItemSeries = e), __reflect(e.prototype, "app.ItemSeries"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.ucLevel = 1), + (t.ucGender = 2), + (t.ucJob = 3), + (t.ucChief = 4), + (t.ucPower = 5), + (t.ucCircle = 6), + (t.ucCircleLess = 7), + (t.ucVipLevel = 8), + (t.ucNeiGongLevel = 9), + (t.ucGuildLevel = 10), + (t.ucFamousPeople = 15), + (t.Post_Chief = 9), + (t.Post_Castellan = 10), + (t.ucChief_Mark = 21), + (t.ucChatelain_Mark = 22), + t + ); + })(); + (t.StdItemCondition = e), __reflect(e.prototype, "app.StdItemCondition"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.recordLog = !1), + (this.denyStorage = !1), + (this.denyGuildDepot = !1), + (this.autoBindOnTake = !1), + (this.autoStartTime = !1), + (this.denyDeal = !1), + (this.denySell = !1), + (this.denyDestroy = !1), + (this.destroyOnOffline = !1), + (this.destroyOnDie = !1), + (this.denyDropdown = !1), + (this.dieDropdown = !1), + (this.offlineDropdown = !1), + (this.asQuestItem = !1), + (this.showLootTips = !1), + (this.bagSell = !1), + (this.denyBuffOverlay = !1), + (this.matchAllSuit = !1), + (this.canMoveKb = !1); + } + return t; + })(); + (t.StdItemFlag = e), __reflect(e.prototype, "app.StdItemFlag"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.type1 = 1), (t.type2 = 2), (t.type3 = 3), t; + })(); + (t.ItemSource = e), __reflect(e.prototype, "app.ItemSource"); + var i = (function () { + function i(e) { + if ( + (void 0 === e && (e = null), + (this.smith = []), + (this.itemScore = 0), + (this.itemRed = 0), + (this.needShowBatchPanel = 0), + (this._sourceStr = ""), + (this.type = 0), + (this._itemState = t.ThgMu.STATE_NORMAL), + (this.smith = []), + e) + ) { + (this.series = new t.ItemSeries(e)), + (this.wItemId = e.readUnsignedShort()), + (this.btQuality = e.readUnsignedByte()), + (this.btStrong = e.readUnsignedByte()), + (this.btCount = e.readUnsignedInt()), + (this.nStrongMax = e.readUnsignedByte()), + (this.inscriptLevel = e.readUnsignedByte()), + (this.wIdentifySlotNum = e.readUnsignedShort()), + (this.wStar = e.readUnsignedShort()), + (this.nDeadline = Math.floor(t.GlobalFunc.formatMiniDateTime(e.readUnsignedInt()) / 1e3)); + for (var i, n = 0; 5 > n; n++) (i = e.readUnsignedInt()), i && this.smith.push(this.decodeSmith(i)); + if ( + ((this.scenesId = e.readUnsignedInt()), + (this.btFlag = e.readUnsignedByte()), + (this.btLuck = e.readByte()), + (this.monsterId = e.readUnsignedShort()), + (this.btDeportId = e.readUnsignedByte()), + (this.btHandPos = e.readByte()), + (this.btSharp = e.readUnsignedByte()), + (this.bagType = e.readUnsignedShort()), + (this.topLine = e.readString()), + (this.refining = e.readString()), + (this.killName = e.readString()), + 1 == this.bagType) + ) { + var s = t.VlaoF.StdItems[this.wItemId]; + s && (s.dup || this.setSourceStr()); + } + } + } + return ( + (i.prototype.setSourceStr = function () { + if (((this._sourceStr = "|C:0xf1ed02&T:[" + t.CrmPU.language_Tips111 + "]|"), this.inscriptLevel == e.type1)) { + var i = "", + n = t.VlaoF.Scenes[this.scenesId]; + n && (i = n.scencename), (this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips112 + i); + var s = "", + a = t.VlaoF.Monster[this.monsterId]; + a && (s = a.name), + (this._sourceStr += "\n" + t.CrmPU.language_Tips113 + s), + (this._sourceStr += "\n" + t.CrmPU.language_Tips114 + this.killName), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n"); + } else if (this.inscriptLevel == e.type2) { + var i = "", + n = t.VlaoF.Scenes[this.scenesId]; + n && (i = n.scencename), + (this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips116), + (this._sourceStr += "\n" + t.CrmPU.language_Tips112 + i), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n"); + } else + this.inscriptLevel == e.type3 + ? ((this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips117), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n")) + : (this._sourceStr = ""); + }), + Object.defineProperty(i.prototype, "sourceStr", { + get: function () { + return this._sourceStr; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.decodeSmith = function (e) { + var i = new t.ComAttribute(); + i.type = 255 & e; + var n = (e >> 8) & 255 ? -1 : 1; + return (i.value = n * ((e >> 16) & 65535)), i.isFloat(i.type) && (i.value /= 1e4), i; + }), + i + ); + })(); + (t.userItem = i), __reflect(i.prototype, "app.userItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.itemID = 0), (i.curItemNum = 0), (i.curSelectNum = 0), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "BagBatchUseSkin"), (i.top = i.bottom = i.left = i.right = 0), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.vKruVZ(this.btn_close, this.onClick), + this.vKruVZ(this.lessLessBtn, this.onClick), + this.vKruVZ(this.lessBtn, this.onClick), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.addaddBtn, this.onClick), + this.vKruVZ(this.sure, this.onClick), + this.vKruVZ(this.rect, this.onClick), + this.enterNum.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.itemID = e[0]), + e[1] && (this.curItem = e[1]), + t.MouseScroller.bind(this.descScroller), + (this.descScroller.verticalScrollBar.autoVisibility = !1), + (this.descScroller.verticalScrollBar.visible = !1); + var n = 5395542; + if (0 != this.itemID) { + var s = t.VlaoF.StdItems[this.itemID]; + s && + ((n = t.ClwSVR.GOODS_COLOR[s.showQuality]), + s.showQuality > 0 ? ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + s.showQuality)) : (this.imgBg.visible = !1), + (this.itemName.textFlow = t.hETx.qYVI("|C:" + n + "&T:" + s.name + "|")), + (this.itemDesc.textFlow = t.hETx.qYVI(s.desc)), + (this.itemAttr.text = t.AttributeData.getItemBindByType(s))), + this.curItem && + ((this.curItemNum = this.curItem.btCount), + (this.itemNum.text = t.CrmPU.language_Common_110 + this.curItemNum), + (this.enterNum.text = this.curItemNum + ""), + (this.curSelectNum = this.curItemNum), + (this.itemData.data = { + type: 0, + id: this.itemID, + count: 1, + })); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn_close: + case this.rect: + t.mAYZL.ins().close(this); + break; + case this.lessLessBtn: + (this.curSelectNum = 1), (this.enterNum.text = this.curSelectNum + ""); + break; + case this.lessBtn: + (this.curSelectNum -= 1), this.curSelectNum < 1 && (this.curSelectNum = 1), (this.enterNum.text = this.curSelectNum + ""); + break; + case this.addBtn: + (this.curSelectNum += 1), this.curSelectNum > this.curItemNum && (this.curSelectNum = this.curItemNum), (this.enterNum.text = this.curSelectNum + ""); + break; + case this.addaddBtn: + (this.curSelectNum = this.curItemNum), (this.enterNum.text = this.curSelectNum + ""); + break; + case this.sure: + 0 != this.itemID && this.curItem && (t.ThgMu.ins().send_8_11(this.itemID, this.curSelectNum, this.curItem.series), t.mAYZL.ins().close(this)); + } + }), + (i.prototype.onFocusOut = function (t) { + switch (t.currentTarget) { + case this.enterNum: + (this.enterNum.text = Math.max(Math.min(+this.enterNum.text, this.curItemNum), 1) + ""), (this.curSelectNum = +this.enterNum.text); + } + }), + (i.prototype.closeView = function (e) { + e && 1 == e.isSuccess && t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + (this.curItem = null), + t.MouseScroller.unbind(this.descScroller), + this.enterNum.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.fEHj(this.rect, this.onClick), + this.fEHj(this.btn_close, this.onClick), + this.fEHj(this.lessLessBtn, this.onClick), + this.fEHj(this.lessBtn, this.onClick), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.addaddBtn, this.onClick), + this.fEHj(this.sure, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.BagBatchUseWin = e), __reflect(e.prototype, "app.BagBatchUseWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconList = []), (t.skinName = "FriendFunMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gList.itemRenderer = t.FriendFunMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + var e = this.gList.selectedIndex, + i = this.gList.getChildAt(e), + n = i.menuBtn.name; + t.ckpDj.ins().sendEvent(t.FriendEvent.BAG_MENU_ONCLICK, [n]); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.iconList = e[1]), (this.x = e[0].x - 12); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + this.x + this.width > n && (this.x = n - this.width), (this.height = 48 * this.iconList.length), (this.bg.height = 47 * this.iconList.length + 5), (this.y = e[0].y - this.height); + var s = new eui.ArrayCollection(this.iconList); + this.gList.dataProvider = s; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), (this.gList = null), (this.bg = null); + }), + i + ); + })(t.gIRYTi); + (t.BagFunMenuView = e), __reflect(e.prototype, "app.BagFunMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.pos = null), + (i.size = null), + (i._hashCode = 0), + (i.moneyType = -1), + (i.textNumber = 0), + (i.curMoney = -1), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + (i.skinName = "BagGoldChangeSkin"), + (i.name = "BagGoldChangeView"), + (i.dSpriteSheet = new how.DSpriteSheet()), + (i.withdrawOpen = !1), + (i.withdrawRMB = "人民币"), + (i.currencyName = ""), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setCurrentState("default5"), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System17); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && (e[0] && (this.moneyType = e[0]), e[1] && (this.pos = e[1]), e[2] && (this.size = e[2]), e[3] && (this._hashCode = e[3])); + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateCurGold); + this.HFTK(t.Nzfh.ins().post_gaimItemView, this.closeView); + if (3 == this.moneyType) { + this.payAccountInput.text = t.Nzfh.ins().withdrawPayAccount || ""; + this.payAccountInput.addEventListener(egret.FocusEvent.FOCUS_OUT, this.payAccountFocusOut, this); + } + this.inputNum.text = "0"; + this.textNumber = 0; + this.inputNum.addEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this); + this.inputNum.addEventListener(egret.FocusEvent.CHANGE, this.textChange, this); + this.vKruVZ(this.sure, this.onClick); + this.vKruVZ(this.closeBtn, this.onClick); + this.vKruVZ(this.addYiBai, this.onClick); + this.vKruVZ(this.jianYiBai, this.onClick); + this.vKruVZ(this.addBtn, this.onClick); + this.vKruVZ(this.jianBtn, this.onClick); + this.updateCurGold(); + }), + (i.prototype.closeView = function (e) { + e == this._hashCode && t.mAYZL.ins().close(this); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), this.pos && this.size && this.setPos(); + }), + (i.prototype.setPos = function () { + var t = this.formatView(0, 0.5 * this.size.width); + isNaN(t) || (this.x = this.pos.x + Math.round((this.size.width - this.width) / 2 + t)); + var e = this.formatView(0, 0.5 * this.size.height); + isNaN(e) || (this.y = this.pos.y + Math.round((this.size.height - this.height) / 2 + e)); + }), + (i.prototype.formatView = function (t, e) { + if (!t || "number" == typeof t) return t; + var i = t, + n = i.indexOf("%"); + if (-1 == n) return +i; + var s = +i.substring(0, n); + return 0.01 * s * e; + }), + (i.prototype.onClick = function (e) { + var withdraw = Main.vZzwB.withdraw; + switch (e.currentTarget) { + case this.sure: + if ("" == this.inputNum.text) { + this.inputNum.text = "0"; + this.textNumber = 0; + } + if ("0" == this.inputNum.text) { + return void t.uMEZy.ins().pwYDdQ("请设置" + (this.withdrawOpen ? "提现" : "转换") + "数量"); + } + if (this.textNumber > this.curMoney) { + return void t.uMEZy.ins().pwYDdQ("设置的数量无效"); + } + if (this.withdrawOpen) { + if ("" == this.payAccountInput.text) { + return void t.uMEZy.ins().pwYDdQ("请输入提现账号"); + } + if (this.textNumber < withdraw.ratio) { + return void t.uMEZy.ins().pwYDdQ("最低提现" + this.currencyName + ":" + withdraw.ratio); + } + var cdTime = 10e3, + nowTime = egret.getTimer(), + a = Math.ceil((t.Nzfh.ins().withdrawTime - nowTime) / 1e3); + if (0 <= a) { + return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Time_Tip + Math.max(a, 0) + t.CrmPU.language_Time_Sec); + } + var self = this, + v = Math.floor(this.textNumber / withdraw.ratio), + wyb = v * withdraw.ratio, + msg = + wyb + + this.currencyName + + "转换为" + + this.withdrawRMB + + v + + "元\n收款账号:" + + self.payAccountInput.text + + "\n(请确保您的账号正常有效收款)\n确认后将自动扣除" + + this.currencyName + + ",\n款项会在成功扣除" + + this.currencyName + + "后的3个工作日内到账,请耐心等待..."; + t.CautionView.show( + msg, + function () { + t.Nzfh.ins().withdrawTime = nowTime + cdTime; + self.submitWithdraw(wyb); + }, + this + ); + } else { + t.ThgMu.ins().send_8_9(this.moneyType, this.textNumber); + } + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.addYiBai: + var v; + -1 != this.curMoney && + ((v = this.withdrawOpen ? withdraw.ratio : 100), + (this.textNumber = this.withdrawOpen ? Math.floor((this.textNumber + v) / withdraw.ratio) * withdraw.ratio : this.textNumber + v), + this.textNumber > this.curMoney && (this.textNumber = this.curMoney), + (this.inputNum.text = this.textNumber + "")); + break; + case this.jianYiBai: + var v; + -1 != this.curMoney && + 0 != this.textNumber && + ((v = this.withdrawOpen ? withdraw.ratio : 100), + (this.textNumber = this.withdrawOpen ? Math.floor((this.textNumber - v) / withdraw.ratio) * withdraw.ratio : this.textNumber - v), + this.textNumber < 0 && (this.textNumber = 0), + (this.inputNum.text = this.textNumber + "")); + break; + case this.addBtn: + -1 != this.curMoney && ((this.textNumber = this.withdrawOpen ? Math.floor(this.curMoney / withdraw.ratio) * withdraw.ratio : this.curMoney), (this.inputNum.text = this.textNumber + "")); + break; + case this.jianBtn: + -1 != this.curMoney && ((this.textNumber = 0), (this.inputNum.text = this.textNumber + "")); + } + }), + (i.prototype.submitWithdraw = function (amount) { + t.mAYZL.ins().close(this); + var pay_type = 1, + l = t.NWRFmB.ins().nkJT(), + xhr = new XMLHttpRequest(), + params = "?act=game&do=withdraw"; + params += "&server_id=" + t.MiOx.serverAlias; + params += "&account=" + t.MiOx.openID; + params += "&token=" + t.MiOx.token; + params += "&role_id=" + (t.ubnV.ihUJ && t.KFManager.ins().originalRoleId ? t.KFManager.ins().originalRoleId : t.MiOx.roleId); + params += "&role_name=" + (l && l.propSet ? l.propSet.getName() : ""); + params += "&pay_type=" + pay_type; + params += "&pay_account=" + t.Nzfh.ins().withdrawPayAccount; + params += "&amount=" + amount; + xhr.onreadystatechange = function () { + if (4 == xhr.readyState && 200 == xhr.status) { + var res = JSON.parse(xhr.responseText); + if (res) { + var msg = res.msg ? res.msg : "提现成功!"; + t.CautionView.show(msg, function () {}, this); + } else { + t.uMEZy.ins().pwYDdQ("提现失败,请重试~"); + } + } + }; + xhr.open("POST", Main.vZzwB.apiUrl + params, !0), xhr.send(null); + }), + (i.prototype.payAccountFocusOut = function () { + t.Nzfh.ins().withdrawPayAccount = this.payAccountInput.text; + }), + (i.prototype.textChange = function (t) { + this.textNumber = +t.target.text; + }), + (i.prototype.textFocusOn = function (t) { + this.inputNum.text = ""; + }), + (i.prototype.updateCurGold = function () { + var e = "", + i = "", + n = t.NWRFmB.ins().nkJT(); + if (n && n.propSet) { + var s = n.propSet, + withdraw = Main.vZzwB.withdraw, + amount = (max = 0); + if (3 == this.moneyType && withdraw.ratio) { + this.withdrawOpen = !0; + this.moneyType++; + this.currencyName = t.CrmPU.language_System25[withdraw.type - 1]; + this.ratio.text = "提现比例 " + withdraw.ratio + ":1"; + this.sure.label = "提 现"; + this.addYiBai.label = "+"; + this.jianYiBai.label = "-"; + amount = t.ZAJw.MPDpiB(withdraw.type); + max = Math.floor(amount / withdraw.ratio) * withdraw.ratio; + this.inputNum.text = max + ""; + this.textNumber = max; + } + var show = 2 < this.moneyType; + this.rightQuality.visible = this.rightMoney.visible = !show; + this.payAccount.visible = this.payAccountBg.visible = this.payAccountInput.visible = show; + if (1 == this.moneyType) { + (this.leftMoney.source = "icon_jinbi"), + (this.rightMoney.source = "icon_bangding"), + (this.curImg.source = "icon_jinbi"), + (this.curYuanBao.text = t.CrmPU.language_Omission_txt83 + ":" + t.CommonUtils.overLengthChange(s.getNotBindCoin())), + (this.curYinLiang.text = t.CrmPU.language_Omission_txt83 + ":" + t.CommonUtils.overLengthChange(s.getBindCoin())), + this.dragDropUI.setTitle(t.CrmPU.language_System17), + (this.curMoney = +s.getNotBindCoin()); + } else if (2 == this.moneyType) { + (this.leftMoney.source = "icon_yuanbao"), + (this.rightMoney.source = "icon_yinliang"), + (this.curImg.source = "icon_yuanbao"), + (this.curYuanBao.text = t.CrmPU.language_Omission_txt83 + ":" + t.CommonUtils.overLengthChange(s.getNotBindYuanBao())), + (this.curYinLiang.text = t.CrmPU.language_Omission_txt83 + ":" + t.CommonUtils.overLengthChange(s.getBindYuanBao())), + this.dragDropUI.setTitle(t.CrmPU.language_System41), + (this.curMoney = +s.getNotBindYuanBao()); + } else { + var iconArr = ["", "", "icon_jinbi", "icon_yinliang", "icon_yuanbao"]; + amount = t.ZAJw.MPDpiB(withdraw.type); + (this.leftMoney.source = iconArr[withdraw.type]), + (this.curImg.source = iconArr[withdraw.type]), + (this.curYuanBao.text = t.CrmPU.language_Omission_txt83 + ":" + t.CommonUtils.overLengthChange(amount)), + (this.curYinLiang.text = "收益" + this.withdrawRMB + ":" + Math.floor(amount / withdraw.ratio) + "元"), + this.dragDropUI.setTitle(this.currencyName + "转换" + this.withdrawRMB), + (this.curMoney = +amount); + } + } + (e = null), (i = null); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.sure, this.onClick), + this.fEHj(this.addYiBai, this.onClick), + this.fEHj(this.jianYiBai, this.onClick), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.jianBtn, this.onClick), + this.inputNum.removeEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.inputNum.removeEventListener(egret.FocusEvent.CHANGE, this.textChange, this); + if (this.withdrawOpen) { + this.payAccountInput.removeEventListener(egret.FocusEvent.FOCUS_OUT, this.payAccountFocusOut, this); + } + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.ratio = null), + (this.payAccount = null), + (this.payAccountBg = null), + (this.payAccountInput = null), + (this.inputNum = null), + (this.addYiBai = null), + (this.addYiWan = null), + (this.addYiBaiWan = null), + (this.sure = null), + (this.curImg = null), + (this.leftMoney = null), + (this.rightQuality = null), + (this.rightMoney = null), + this.dSpriteSheet.dispose(), + (this.dSpriteSheet = null), + (this.goldTxt = null), + (this.bindGoldTxt = null), + (this.inputBindGoldTxt = null), + (this.curOwnTxt = null), + (this.curOwnGold = null), + (this.moneyType = null), + (this.textNumber = null); + }), + i + ); + })(t.gIRYTi); + (t.BagGoldChangeView = e), __reflect(e.prototype, "app.BagGoldChangeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.userItemCount = 0), (i.showNum = 1), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "BagItemSplitSkin"), (i.name = "BagItemSplitView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.sure, this.onClick), + this.vKruVZ(this.Cancels, this.onClick), + this.vKruVZ(this.minBtn, this.onClick), + this.vKruVZ(this.maxBtn, this.onClick), + this.inputNum.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.vKruVZ(this.minimumBtn, this.onClick), + this.vKruVZ(this.biggestBtn, this.onClick); + var n = e[0]; + n && n instanceof t.userItem && ((this.articlesData = n), this.updateView(n)), (n = null); + }), + (i.prototype.updateView = function (e) { + this.imgBg.visible = !1; + var i = t.VlaoF.StdItems[e.wItemId]; + i && + ((this.itemBg.source = "quality_" + i.showQuality), + i.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + i.showQuality)), + (this.itemName.textColor = t.ClwSVR.GOODS_COLOR[i.showQuality] ? t.ClwSVR.GOODS_COLOR[i.showQuality] : 15064527), + (this.itemName.text = i.name + ""), + (this.curItem.source = i.icon + ""), + (this.userItemCount = e.btCount), + (this.curItemNum.text = t.CrmPU.language_Common_110 + e.btCount), + (this.showNum = Math.floor(e.btCount / 2)), + this.updateText(this.showNum)), + (i = null); + }), + (i.prototype.updateText = function (t) { + this.inputNum.text = t + ""; + }), + (i.prototype.onFocusOut = function (t) { + switch (t.currentTarget) { + case this.inputNum: + (this.inputNum.text = Math.max(Math.min(+this.inputNum.text, this.userItemCount), 1) + ""), (this.showNum = +this.inputNum.text); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sure: + this.articlesData && this.articlesData.series && (t.ThgMu.ins().send_8_5(this.articlesData.series, this.showNum), t.mAYZL.ins().close(this)); + break; + case this.Cancels: + t.mAYZL.ins().close(this); + break; + case this.minBtn: + this.setShowTxt(0); + break; + case this.maxBtn: + this.setShowTxt(1); + break; + case this.minimumBtn: + this.setShowTxt(2); + break; + case this.biggestBtn: + this.setShowTxt(3); + } + }), + (i.prototype.setShowTxt = function (t) { + 0 == t + ? ((this.showNum -= 1), this.showNum < 1 && (this.showNum = 1)) + : 1 == t + ? ((this.showNum += 1), this.showNum > this.articlesData.btCount - 1 && (this.showNum = this.articlesData.btCount - 1)) + : 2 == t + ? ((this.showNum -= 10), this.showNum < 1 && (this.showNum = 1)) + : 3 == t && ((this.showNum += 10), this.showNum > this.articlesData.btCount - 1 && (this.showNum = this.articlesData.btCount - 1)), + this.updateText(this.showNum); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.inputNum.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.fEHj(this.sure, this.onClick), + this.fEHj(this.Cancels, this.onClick), + this.fEHj(this.minBtn, this.onClick), + this.fEHj(this.maxBtn, this.onClick), + this.fEHj(this.minimumBtn, this.onClick), + this.fEHj(this.biggestBtn, this.onClick), + (this.dragDropUI = null), + (this.sure = null), + (this.Cancels = null), + (this.minBtn = null), + (this.maxBtn = null), + (this.curItem = null), + (this.curItemNum = null), + (this.showNum = null); + }), + i + ); + })(t.gIRYTi); + (t.BagItemSplitView = e), __reflect(e.prototype, "app.BagItemSplitView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.isData = null), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "BagRecycleSkin"), (i.name = "BagRecycleView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setCurrentState("default4"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System20), + (this.itemList.itemRenderer = t.ItemBase), + (this.itemGrp.visible = !1); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.sure, this.onClick), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.HFTK(t.ThgMu.ins().postItemRecycle, this.updateItem), + this.HFTK(t.ThgMu.ins().post_8_11, this.updateView), + this.HFTK(t.ThgMu.ins().post_8_7, this.closeView); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), + (t.ThgMu.ins().globalPoint = this.itemBg.localToGlobal(0, 0)), + (t.ThgMu.ins().globalPoint2 = this.itemBg.localToGlobal(this.itemBg.width, this.itemBg.height)); + }), + (i.prototype.closeView = function (t) { + t && 1 == t.isSuccess && null != this.isData && t.itemID == this.isData.wItemId && this.updateItem(this.isData); + }), + (i.prototype.onClick = function (e) { + var i = this; + switch (e.currentTarget) { + case this.sure: + var n = t.VlaoF.BagRemainConfig[5]; + if (n) { + var s = t.ThgMu.ins().getBagCapacity(n.bagremain); + if (s) + if (null != this.isData) { + var a = t.VlaoF.StdItems[this.isData.wItemId]; + if (a && a.recoverView) + if ("" != this.isData.topLine && void 0 != this.isData.topLine) { + var r = t.zlkp.replace(t.CrmPU.language_Tips20, a.name); + t.CautionView.show( + t.hETx.qYVI(r), + function () { + t.ThgMu.ins().send_8_10(-1, i.isData.series); + }, + this + ); + } else t.ThgMu.ins().send_8_10(-1, this.isData.series); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips9); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips9); + else t.uMEZy.ins().IrCm(n.bagtips); + } + } + }), + (i.prototype.updateView = function (e) { + var i = this; + 1 == e.isSuccess && -1 == e.type + ? ((this.itemGrp.visible = !1), + (this.itemList.dataProvider = new eui.ArrayCollection([])), + (this.itemTxt.text = t.CrmPU.language_System22), + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), (this.mc.x = 214), (this.mc.y = 132), this.addChild(this.mc)), + (this.mc.visible = !0), + this.mc.playFile( + ZkSzi.RES_DIR_EFF + "litboom", + 1, + function () { + i.mc.visible = !1; + }, + !1 + )) + : 0 == e.isSuccess && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips10); + }), + (i.prototype.refushPos = function () { + (t.ThgMu.ins().globalPoint = this.itemBg.localToGlobal(0, 0)), (t.ThgMu.ins().globalPoint2 = this.itemBg.localToGlobal(this.itemBg.width, this.itemBg.height)); + }), + (i.prototype.updateItem = function (e) { + if (e) { + (this.itemList.dataProvider = new eui.ArrayCollection([])), (this.itemGrp.visible = !0); + var i = e, + n = t.VlaoF.StdItems[i.wItemId]; + if (n) { + (this.itemIcon.source = n.icon + ""), (this.itemQua.source = "quality_" + n.showQuality), (this.itemNum.text = i.btCount + ""); + var s = ""; + n.recoverView + ? ((this.isData = e), (this.itemList.dataProvider = new eui.ArrayCollection(n.recoverView))) + : ((this.isData = null), (s = "|C:0xEC613A&T:" + t.CrmPU.language_System23 + "|")), + (this.itemTxt.textFlow = t.hETx.qYVI(s)); + } + (i = null), (n = null); + } + }), + (i.prototype.stopMove = function () { + (t.ThgMu.ins().globalPoint = this.itemBg.localToGlobal(0, 0)), (t.ThgMu.ins().globalPoint2 = this.itemBg.localToGlobal(this.itemBg.width, this.itemBg.height)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.sure, this.onClick), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.mc && (this.mc.destroy(), (this.mc = null)), + (this.mc = null), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.itemGrp = null), + (this.itemQua = null), + (this.itemIcon = null), + (this.itemNum = null), + (this.sure = null), + (this.itemBg = null), + (this.itemTxt = null), + (this.isData = null); + }), + i + ); + })(t.gIRYTi); + (t.BagRecycleView = e), __reflect(e.prototype, "app.BagRecycleView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.bagClickType = 0), + (i.moneyArray = []), + (i.oldIndex = 0), + (i.bagGridArr = []), + (i.itemGrid = []), + (i.shiftClick = !1), + (i.ctrlClick = !1), + (i.grpOldIdx = -1), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + (i.skinName = "BagViewSkin"), + (i.name = "BagView"), + (i.dSpriteSheet = new how.DSpriteSheet()), + (i.doubleClickMinTime = 300), + (i.doubleClick = !1), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System0), + (this.newGrp = new eui.Group()), + (this.newGrp.width = 60), + (this.newGrp.height = 60), + (this.newIcon = new eui.Image()), + (this.newIcon.horizontalCenter = 0), + (this.newIcon.verticalCenter = 0), + this.newGrp.addChild(this.newIcon), + (this.newGrp.x = this.x), + (this.newGrp.y = this.y), + (this.newGrp.visible = !1), + (this.newGrp.touchThrough = !0), + (this.newGrp.touchChildren = !1), + (this.newIcon.touchEnabled = !1), + t.yCIt.UIupV.addChild(this.newGrp); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + var n = 1; + e[0] ? ((n = e[0]), (t.ThgMu.ins().lastIndex = n)) : !isNaN(t.ThgMu.ins().lastIndex) ? (n = t.ThgMu.ins().lastIndex) : (t.ThgMu.ins().lastIndex = n); + (this.tab.dataProvider = new eui.ArrayCollection([t.CrmPU.language_System38, t.CrmPU.language_System39, t.CrmPU.language_System40])), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.changeMoney), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateBagItemGrid), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateBagItemGrid), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateBagItemGrid), + this.HFTK(t.ThgMu.ins().post_8_10, this.updateBagItemGrid), + this.HFTK(t.ThgMu.ins().postBagRecycleSelect, this.updateBagItemGrid), + this.HFTK(t.Nzfh.ins().post_dimensionalKey, this.updateBagItemGrid), + this.HFTK(t.ThgMu.ins().post_8_13, this.updateBagRed), + this.HFTK(t.ThgMu.ins().post_8_1, this.setBagMaxMc), + this.HFTK(t.ThgMu.ins().post_8_3, this.setBagMaxMc), + this.HFTK(t.ThgMu.ins().post_8_4, this.setBagMaxMc), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.silding.addEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + KdbLz.os.KeyBoard.addKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.addKeyUp(this.keyUp, this), + this.vKruVZ(this.wareHouseBtn, this.onClick), + this.vKruVZ(this.recoveryBtn, this.onClick), + this.vKruVZ(this.recoveryBtn2, this.onClick), + this.vKruVZ(this.upBtn, this.onClick), + this.vKruVZ(this.downBtn, this.onClick), + this.vKruVZ(this.goldIcon, this.onClick), + this.vKruVZ(this.yuanbaoIcon, this.onClick), + this.vKruVZ(this.withdrawIcon, this.onClick), + this.vKruVZ(this["function"], this.onClick), + this.addChangeEvent(this.tab, this.onClick), + this.vKruVZ(this.arrange, this.onClick), + t.MouseScroller.bind(this.equipScroller), + t.MouseScroller.addCallbackFunction(this.equipScroller, this.onScrollerMouse.bind(this)), + t.ThgMu.ins().postKeyXY(), + (this.withdrawIcon.visible = Main.vZzwB.withdraw.ratio ? !0 : !1), + this.changeMoney(), + (this.tab.selectedIndex = n), + this.setBagData(n), + this.setBagMaxMc(), + KdbLz.qOtrbE.iFbP && (t.KHNO.ins().tBiJo(1e3, 0, this.updateTask, this), this.updateTask()); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), (t.ThgMu.ins().bagGeZiPoint = this.equipList.localToGlobal(0, 0)), (t.ThgMu.ins().bagGeZiPoint.y -= 13); + }), + (i.prototype.stopMove = function () { + (t.ThgMu.ins().bagGeZiPoint = this.equipList.localToGlobal(0, 0)), (t.ThgMu.ins().bagGeZiPoint.y -= 13); + }), + (i.prototype.setBagMaxMc = function () { + var e = t.ThgMu.ins().getBagTypeItemNum(1) <= 0; + e + ? (this.mouseMc || + ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), + t.KHNO.ins().remove(this.stopMaxMc, this), + t.KHNO.ins().tBiJo(3e3, 1, this.stopMaxMc, this)) + : this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + }), + (i.prototype.stopMaxMc = function () { + t.KHNO.ins().remove(this.stopMaxMc, this), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + }), + (i.prototype.onScrollerMouse = function (t) { + var e = this.equipScroller, + i = this.tab.selectedIndex; + if (0 != i) { + var n = 0, + s = 0; + t.data < 0 ? ((n = this.silding.value - 62.5), (s = this.equipScroller.viewport.scrollV + 62.5)) : ((n = this.silding.value + 62.5), (s = this.equipScroller.viewport.scrollV - 62.5)), + (this.silding.value = Math.max(Math.min(n, this.equipMaxHight), 0)), + (e.viewport.scrollV = Math.max(Math.min(s, this.equipMaxHight), 0)), + this.setBagDataVis(i), + (i = null); + } + }), + (i.prototype.changeMoney = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) { + var i = e.propSet, + n = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i.getNotBindCoin()) + "|"; + this.goldNum.textFlow = t.hETx.qYVI(n); + var s = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i.getBindCoin()) + "|"; + this.bindGoldNum.textFlow = t.hETx.qYVI(s); + var a = t.ClwSVR.getMoneyColor(i.getNotBindYuanBao()), + r = "|C:" + a + "&T:" + t.CommonUtils.zhuanhuan(i.getNotBindYuanBao()) + "|"; + this.yuanbaoNum.textFlow = t.hETx.qYVI(r); + var o = t.ClwSVR.getMoneyColor(i.getBindYuanBao()), + l = "|C:" + o + "&T:" + t.CommonUtils.zhuanhuan(i.getBindYuanBao()) + "|"; + this.yinliangNum.textFlow = t.hETx.qYVI(l); + } else (this.goldNum.text = "0"), (this.yuanbaoNum.text = "0"), (this.bindGoldNum.text = "0"), (this.yinliangNum.text = "0"); + }), + (i.prototype.updateTask = function () { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask) && !t.qTVCL.ins().isFinding && 0 == t.GameMap.fubenID && 1 == t.edHC.ins().isLargeMapAct) { + var e = t.VrAZQ.ins().getTaskArr(), + i = t.mAYZL.ins().ZzTs(t.SetUpView); + if ( + e && + e[0] && + (!i || 6 != i.getUpViewIdx) && + ((7 == e[0].taskID && e[0].taskState) || + (11 == e[0].taskID && e[0].taskState) || + (20 == e[0].taskID && e[0].taskState) || + (27 == e[0].taskID && e[0].taskState) || + (29 == e[0].taskID && e[0].taskState)) + ) { + var n = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + if (n && 1 == n.taskstate) + return ( + t.KHNO.ins().RTXtZF(this.stopMaxMc, this) && t.KHNO.ins().remove(this.stopMaxMc, this), + t.VrAZQ.ins().postUpdateTask(1), + this.mouseMc || + ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + (t.MainTaskWin.isTaskSetUpMC = !0), + t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.updateMouseEff, this), + this.mouseMc.isPlaying || this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), + void (10 == n.taskname.type) + ); + } + } + this.stopTaskMC(); + }), + (i.prototype.updateMouseEff = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), t.mAYZL.ins().ZbzdY(t.SetUpView) && t.mAYZL.ins().close(t.SetUpView), t.mAYZL.ins().open(t.SetUpView, 6, 1); + }), + (i.prototype.stopTaskMC = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), + (t.MainTaskWin.isTaskSetUpMC = !1), + t.KHNO.ins().RTXtZF(this.stopMaxMc, this) || (this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null))); + }), + (i.prototype.changeHandler = function (t) { + var e = this.tab.selectedIndex, + i = t.target.value; + (this.equipScroller.viewport.scrollV = -(i - this.equipMaxHight)), this.setBagDataVis(e), (e = null), (i = null); + }), + (i.prototype.updateBagItemGrid = function () { + this.updateBagRed(); + var e = this.tab.selectedIndex, + i = t.ThgMu.ins().gridNumArr[e]; + (this.curCapacity.text = 0 == e ? t.ThgMu.ins()._bagItem[e].length + "/" + i : t.ThgMu.ins()._bagItem[e].length + "/" + (i - 10)), + this.cleanBagGrid(), + this.setBagDataVis(e), + (e = null), + (i = null); + }), + (i.prototype.updateBagRed = function () { + this.redPoint0.visible = this.redPoint1.visible = this.redPoint2.visible = !1; + for (var e = 0; 3 > e; e++) { + for (var i = 0, n = t.ThgMu.ins().bagItem[e], s = 0; s < n.length; s++) { + var a = t.VlaoF.StdItems[n[s].wItemId]; + if ( + a && + ((1 != n[s].itemRed && 2 != n[s].itemRed) || !a.Redpointlimit || 0 != t.ZAJw.isRedDot(a.Redpointlimit) + ? 0 == n[s].itemRed && a.Redpointlimit && 1 == t.ZAJw.isRedDot(a.Redpointlimit) + ? (1 == a.forcetips ? t.ThgMu.redPointArr.push(1) : 2 == a.forcetips && t.ThgMu.yellowPointArr.push(2), (n[s].itemRed = a.forcetips)) + : a.UseLimit && (n[s].itemRed = t.ThgMu.ins().surplusUseCount[a.id] > 0 ? 1 : 0) + : (1 == n[s].itemRed ? t.ThgMu.redPointArr.splice(0, 1) : 2 == n[s].itemRed && t.ThgMu.yellowPointArr.splice(0, 1), (n[s].itemRed = 0)), + n[s].itemRed > 0 && (i = n[s].itemRed), + 1 == i) + ) + break; + } + (this["redPoint" + e].visible = i > 0), this["redPoint" + e].setRedImg(i); + } + }), + (i.prototype.cleanBagGrid = function () { + for (var t in this.bagGridArr) { + for (var e in this.bagGridArr[t]) this.pushBagGrid(this.bagGridArr[t][e]); + delete this.bagGridArr[t]; + } + }), + (i.prototype.setBagDataVis = function (e) { + var i = this.equipScroller.viewport.scrollV, + n = Math.floor(i / 60), + s = this.equipScroller.viewport.scrollV + 372, + a = Math.ceil(s / 60), + r = t.ThgMu.ins().getBagTwoArr(e); + a > r.length && (a = r.length); + var o = t.ThgMu.ins().getLineXY(r); + for (var l in this.bagGridArr) + if (n > +l || +l > a) { + for (var h in this.bagGridArr[l]) this.pushBagGrid(this.bagGridArr[l][h]); + delete this.bagGridArr[l]; + } + for (var p = n; a > p; p++) + this.bagGridArr[p] || + this.addBagItem( + p, + { + x: o[p].x, + y: o[p].y, + }, + r[p] + ); + (i = null), (n = null), (s = null), (a = null), (r = null), (o = null); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + if (this.doubleClick) { + this.doubleClick = !1; + return; + } + var i = e.currentTarget, + n = i.curData; + if (n && n.wItemId) { + var s = i.localToGlobal(), + a = t.VlaoF.StdItems[n.wItemId]; + if (1 != n.bagType && n.series) { + var r = t.TipsType.TIPS_EQUIP; + a && a.fashionTips && (r = t.TipsType.TIPS_FASHION), + t.uMEZy.ins().LJzNt(e.target, r, n, { + x: s.x + i.width, + y: s.y + i.height, + }); + } else if (1 == n.bagType && n.series) { + var o = t.caJqU.ins().getEquipsByPos(a.type - 1); + if (o && o.series) { + var l = t.VlaoF.StdItems[o.wItemId], + h = l && a; + h + ? t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_EQUIPCONTRAST, + n, + { + x: s.x + i.width, + y: s.y + i.height, + }, + o + ) + : t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: s.x + i.width, + y: s.y + i.height, + }); + } else + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: s.x + i.width, + y: s.y + i.height, + }); + } + s = null; + } + (i = null), (n = null); + } + }), + (i.prototype.touchBeginFunction = function (e) { + e.type == mouse.MouseEvent.RIGHT_DOWN ? (this.bagClickType = t.ClickClass.CLICK_RIGHT) : (this.bagClickType = t.ClickClass.CLICK_LEFT), this.checkFuncion(); + }), + (i.prototype.keyDown = function (t) { + t == KdbLz.KeyCode.KC_SHIFT ? ((this.shiftClick = !0), this.checkFuncion()) : t == KdbLz.KeyCode.KC_CONTROL && ((this.ctrlClick = !0), this.checkFuncion()); + }), + (i.prototype.endFunction = function (e) { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + (this.bagClickType = t.ClickClass.CLICK_TYPE0), + (this.shiftClick = !1), + (this.ctrlClick = !1), + this.checkFuncion(); + }), + (i.prototype.keyUp = function (t) { + t == KdbLz.KeyCode.KC_SHIFT ? ((this.shiftClick = !1), this.checkFuncion()) : t == KdbLz.KeyCode.KC_CONTROL && ((this.ctrlClick = !1), this.checkFuncion()); + }), + (i.prototype.checkFuncion = function () { + if (this.bagClickType == t.ClickClass.CLICK_LEFT) { + var e = this.tab.selectedIndex, + i = t.ThgMu.ins().itemInfo[e], + n = i[this.grpOldIdx]; + if (this.shiftClick) + n && + n.series && + t.ckpDj.ins().sendEvent(t.ChatEvent.GOODS_SHOW, [ + { + info: n, + }, + ]); + else if (this.ctrlClick && this.grpOldIdx >= 0) { + var s = n ? t.VlaoF.StdItems[n.wItemId] : null; + n && n.series && n.btCount > 1 && s && s.dup > 1 && (t.mAYZL.ins().open(t.BagItemSplitView, n), (this.grpOldIdx = -1), (this.ctrlClick = !1), (this.shiftClick = !1)), (s = null); + } + (e = null), (i = null), (n = null); + } + }), + (i.prototype.onTouchTap = function (e) { + if (t.WarehouseMgr.ins().saveSelect && t.mAYZL.ins().ZbzdY(t.WarehouseWin)) { + var i = e.target.itemInfo; + i && i.wItemId && t.WarehouseMgr.ins().send_23_2(i.series); + } + }), + (i.prototype.onTouchDouble = function (e) { + KdbLz.qOtrbE.iFbP && t.uMEZy.ins().closeTips(); + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + this.resetPos(this); + if (e.target instanceof eui.Image) { + this.useBagItem(e); + } + }), + (i.prototype.useBagItem = function (e) { + var i = this.tab.selectedIndex, + n = e.target.idx, + s = t.ThgMu.ins().itemInfo[i][n]; + if (s && s.wItemId && s.series) { + var a = t.VlaoF.StdItems[s.wItemId]; + if (a) { + if (t.mAYZL.ins().ZbzdY(t.WarehouseWin)) return void t.WarehouseMgr.ins().send_23_2(s.series); + this.setSoundByEquipType(a.type), t.pWFTj.ins().onUseItem(s); + } + } + (i = null), (n = null), (s = null); + }), + (i.prototype.setSoundByEquipType = function (e) { + switch (e) { + case 1: + t.AHhkf.ins().Uvxk(t.OSzbc.ARMS); + break; + case 2: + t.AHhkf.ins().Uvxk(t.OSzbc.CLOTHES); + break; + case 3: + case 5: + case 8: + case 9: + case 10: + case 11: + case 12: + case 13: + case 14: + t.AHhkf.ins().Uvxk(t.OSzbc.OTHER_EQUIP); + break; + case 4: + t.AHhkf.ins().Uvxk(t.OSzbc.NECKLACE); + break; + case 6: + t.AHhkf.ins().Uvxk(t.OSzbc.BRACELET); + break; + case 7: + t.AHhkf.ins().Uvxk(t.OSzbc.RING); + } + }), + (i.prototype.onTouchBegin = function (e) { + if (e.target instanceof eui.Image) { + if (KdbLz.qOtrbE.iFbP) { + if (!this.clickTime) { + this.clickTime = egret.getTimer(); + } else { + this.clickTimeLast = egret.getTimer(); + } + if (this.clickTime && this.clickTimeLast) { + if (this.doubleClickMinTime < this.clickTimeLast - this.clickTime) { + this.clickTime = this.clickTimeLast = 0; + this.clickTime = egret.getTimer(); + } else { + this.clickTime = this.clickTimeLast = 0; + this.doubleClick = !0; + this.useBagItem(e); + return; + } + } + } + (this.newIcon.source = e.target.source), (this.newGrp.name = e.target.name); + var i = e.currentTarget.localToGlobal(0, 0); + (this.newGrp.x = i.x), + (this.newGrp.y = i.y), + t.uMEZy.ins().closeTips(), + (this.grpOldIdx = e.target.idx), + (this.XTouch = e.stageX - this.newGrp.x), + (this.YTouch = e.stageY - this.newGrp.y), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + } + }), + (i.prototype.onTouchMove = function (p) { + (this.newGrp.visible = !0), this.newGrp.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this); + var e = Math.floor(this.grpOldIdx / 8), + i = this.grpOldIdx % 8, + n = this.bagGridArr[e] && this.bagGridArr[e][i] ? this.bagGridArr[e][i] : null; + n && + ((n.imgicon.visible = !1), + (n.lab.visible = !1), + (n.bestEquip.visible = !1), + (n.imgNuBg.visible = !1), + (n.imgLock.visible = !1), + (n.effGrp.visible = !1), + (n.redPoint.visible = !1), + (n.imgAscension.visible = !1)), + (this.newGrp.x = p.stageX - this.XTouch), + (this.newGrp.y = p.stageY - this.YTouch); + }), + (i.prototype.onTouchEndByPhone = function (e) { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEndByPhone, this); + }), + (i.prototype.onTouchEnd = function (e) { + if (1 == this.newGrp.visible) { + var i = this, + n = -1, + s = 50, + a = 0, + r = this.newGrp.localToGlobal(0, 0), + o = this.tab.selectedIndex, + l = t.ThgMu.ins().itemInfo[o]; + for (var h in this.bagGridArr) + for (var p in this.bagGridArr[h]) { + var u = this.bagGridArr[h][p], + c = u.imgicon.localToGlobal(0, 0); + (a = Math.sqrt(Math.pow(c.x - r.x, 2) + Math.pow(c.y - r.y, 2))), s > a && ((s = a), (n = u.imgicon.idx)); + } + var g, + d, + m = l[this.grpOldIdx], + f = l[n]; + if ((m && (g = t.VlaoF.StdItems[m.wItemId]), f && (d = t.VlaoF.StdItems[f.wItemId]), -1 != n && n != this.grpOldIdx)) + if (m && f && m.wItemId && f.wItemId && m.wItemId == f.wItemId && g && d && g.dup > 1 && m.btCount < g.dup && f.btCount < d.dup) + t.ThgMu.ins().send_8_6(m.series, f.series), this.resetPos(i); + else { + var v = l[this.grpOldIdx]; + (l[this.grpOldIdx] = l[n]), (l[n] = v), (this.newGrp.x = this.x), (this.newGrp.y = this.y), (this.newGrp.visible = !1); + } + else if (n == this.grpOldIdx) this.resetPos(i); + else { + var _ = !1; + null != t.ThgMu.ins().globalPoint && + (_ = t.ThgMu.ins().globalPoint.x <= r.x && r.x < t.ThgMu.ins().globalPoint2.x && t.ThgMu.ins().globalPoint.y <= r.y && r.y < t.ThgMu.ins().globalPoint2.y); + var y = !1; + null != t.ThgMu.ins().sellGlobalPoint && + (y = t.ThgMu.ins().sellGlobalPoint.x <= r.x && r.x < t.ThgMu.ins().sellGlobalPoint.x + 137 && t.ThgMu.ins().sellGlobalPoint.y <= r.y && r.y < t.ThgMu.ins().sellGlobalPoint.y + 120); + var T = !1; + null != t.WarehouseMgr.ins().warehousePoint && + (T = + t.WarehouseMgr.ins().warehousePoint.x <= r.x && + r.x < t.WarehouseMgr.ins().warehousePoint.x + 383 && + t.WarehouseMgr.ins().warehousePoint.y <= r.y && + r.y < t.WarehouseMgr.ins().warehousePoint.y + 455); + var M = t.mAYZL.ins().ZzTs(t.TradeLineWin), + C = -1; + M && (C = M.tab.selectedIndex); + var b = this.quickKey(), + I = this.privateTradePos(); + if (-1 != b) + m && m.series && g && g.canMoveKb + ? KdbLz.qOtrbE.iFbP + ? t.XwoNAr.ins().send_17_12(b, 0, m.wItemId, -1) + : t.XwoNAr.ins().send_17_2(b, 0, m.wItemId, -1) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips2), + this.resetPos(i); + else if (t.mAYZL.ins().ZbzdY(t.BagRecycleView) && null != t.ThgMu.ins().globalPoint && _) m && m.series && g && t.ThgMu.ins().postItemRecycle(m), this.resetPos(i); + else if (t.mAYZL.ins().ZbzdY(t.WarehouseWin) && null != t.WarehouseMgr.ins().warehousePoint && T) m && m.series && g && t.WarehouseMgr.ins().send_23_2(m.series), this.resetPos(i); + else if (t.mAYZL.ins().ZbzdY(t.TradeLineWin) && null != t.ThgMu.ins().sellGlobalPoint && y && 1 == C) + m && "" != m.topLine && void 0 != m.topLine + ? t.TradeLineMgr.ins().postItemSell(m) + : m && m.series && g && (g.denySell ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips30) : t.TradeLineMgr.ins().postItemSell(m)), + this.resetPos(i); + else if (t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) && -1 != I) { + if (m && "" != m.topLine && void 0 != m.topLine) + if (t.XZAqnu.ins().isDeals) + if (t.XZAqnu.ins().isLock) t.uMEZy.ins().IrCm(t.CrmPU.language_Tips42); + else { + var S = t.VlaoF.taxconfig.Jiaodemand; + if (S) { + var E = t.NWRFmB.ins().getPayer; + if (E && E.propSet) + if (E.propSet.MzYki() >= S[0] || t.VipData.ins().getMyVipLv() >= S[1]) t.XZAqnu.ins().send_13_3(1, I, m.series); + else { + var w = t.VipData.ins().getVipDataByLv(S[1]); + w && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips123, S[0], w.name)); + } + } + } + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips31); + else + m && + m.series && + g && + (g.denyDeal + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips43) + : t.XZAqnu.ins().isDeals + ? t.XZAqnu.ins().isLock + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips42) + : t.XZAqnu.ins().send_13_3(1, I, m.series) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips31)); + this.resetPos(i); + } else + m && "" != m.topLine && void 0 != m.topLine + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips8) + : m && m.series && g && g.denyDestroy + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips8) + : m && + m.series && + t.CautionView.show( + t.CrmPU.language_Common_27, + function () { + t.ThgMu.ins().send_8_3(m.series); + }, + this + ), + this.resetPos(i); + (b = null), (I = null), (M = null), (C = null); + } + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + this.updateBagItemGrid(), + (i = null), + (n = null), + (s = null), + (a = null), + (r = null), + (o = null), + (l = null), + (f = null), + (g = null), + (d = null); + } + }), + (i.prototype.quickKey = function () { + for (var e = -1, i = 50, n = 0, s = this.newGrp.localToGlobal(0, 0), a = t.ThgMu.ins().keyXY, r = 0; r < a.length; r++) + (n = Math.sqrt(Math.pow(a[r].x - s.x, 2) + Math.pow(a[r].y - s.y, 2))), i > n && ((i = n), (e = r)); + return e; + }), + (i.prototype.privateTradePos = function () { + var e = -1, + i = 50, + n = 0, + s = this.newGrp.localToGlobal(0, 0), + a = t.XZAqnu.ins().itemGlobalPos; + if (a.length > 0) for (var r = 0; 5 > r; r++) (n = Math.sqrt(Math.pow(a[r].x - s.x, 2) + Math.pow(a[r].y - s.y, 2))), i > n && ((i = n), (e = r)); + return e; + }), + (i.prototype.resetPos = function (t) { + (this.newGrp.x = this.x), (this.newGrp.y = this.y), (this.newGrp.visible = !1); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.tab: + t.ThgMu.ins().lastIndex = this.tab.selectedIndex; + this.setBagData(this.tab.selectedIndex); + break; + case this.arrange: + var cdTime = 2e3, + nowTime = egret.getTimer(), + a = Math.ceil((this.bagSortTime - nowTime) / 1e3); + if (0 <= a) { + return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Time_Tip + Math.max(a, 0) + t.CrmPU.language_Time_Sec); + } + this.bagSortTime = nowTime + cdTime; + t.ThgMu.ins().send_8_7(); + var i = this.tab.selectedIndex; + if (0 != i) { + this.setBagData(i); + } + t.uMEZy.ins().IrCm("背包整理完成"); + break; + case this.goldIcon: + t.mAYZL.ins().open( + t.BagGoldChangeView, + 1, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + break; + case this.yuanbaoIcon: + t.mAYZL.ins().open( + t.BagGoldChangeView, + 2, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + break; + case this.withdrawIcon: + t.mAYZL.ins().open( + t.BagGoldChangeView, + 3, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + break; + case this["function"]: + break; + case this.upBtn: + if (this.equipScroller.viewport.scrollV > 0) { + var i = this.equipScroller.viewport.scrollV - 62.5; + 0 > i ? (this.equipScroller.viewport.scrollV = 0) : (this.equipScroller.viewport.scrollV -= 62.5), (this.silding.value += 62.5), this.setBagDataVis(this.tab.selectedIndex); + } + break; + case this.downBtn: + if (this.equipScroller.viewport.scrollV < this.equipMaxHight) { + var n = this.equipScroller.viewport.scrollV + 62.5; + n > this.equipMaxHight ? (this.equipScroller.viewport.scrollV = this.equipMaxHight) : (this.equipScroller.viewport.scrollV += 62.5), + (this.silding.value -= 62.5), + this.setBagDataVis(this.tab.selectedIndex); + } + break; + case this.wareHouseBtn: + if (t.ubnV.ihUJ) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips139); + var s = t.VlaoF.WarehouseConfig; + s && s.openprivilegewith && (t.mAYZL.ins().isCheckOpen(s.openprivilegewith) ? t.mAYZL.ins().open(t.WarehouseWin) : s.tips && t.mAYZL.ins().open(t.BagWareHouseTipsView, s.tips)); + break; + case this.recoveryBtn: + t.mAYZL.ins().ZbzdY(t.SetUpView) || t.mAYZL.ins().open(t.SetUpView, 6); + break; + case this.recoveryBtn2: + t.mAYZL.ins().open(t.BagRecycleView); + } + }), + (i.prototype.onMenuClick = function (e) { + var i = e[0]; + switch (i) { + case "keyRecycle": + t.mAYZL.ins().ZbzdY(t.SetUpView) || t.mAYZL.ins().open(t.SetUpView, 6); + break; + case "recycleMerchant": + t.mAYZL.ins().open(t.BagRecycleView); + break; + case "sortout": + t.ThgMu.ins().send_8_7(); + } + }), + (i.prototype.setBagData = function (t) { + switch ((void 0 === t && (t = 1), t)) { + case 0: + this.sildGrp.visible = !1; + break; + case 1: + case 2: + this.sildGrp.visible = !0; + } + (this.equipMaxHight = 1188), + (this.silding.maximum = this.equipMaxHight), + (this.silding.value = this.equipMaxHight), + (this.equipScroller.viewport.scrollV = 0), + this.oldIndex != t ? (this.oldIndex = t) : (this.tab.selectedIndex = t), + this.updateBagItemGrid(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + (t.ThgMu.ins().bagGeZiPoint = null), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.silding.removeEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + KdbLz.os.KeyBoard.removeKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.removeKeyUp(this.keyUp, this), + this.fEHj(this.wareHouseBtn, this.onClick), + this.fEHj(this.arrange, this.onClick), + this.fEHj(this.goldIcon, this.onClick), + this.fEHj(this.yuanbaoIcon, this.onClick), + this.fEHj(this.withdrawIcon, this.onClick), + this.fEHj(this["function"], this.onClick), + this.fEHj(this.upBtn, this.onClick), + this.fEHj(this.downBtn, this.onClick), + t.MouseScroller.unbind(this.equipScroller), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.tab.removeEventListener(egret.TouchEvent.CHANGE, this.onClick, this), + t.lEYZI.Naoc(this.newGrp), + this.dSpriteSheet.dispose(), + this.cleanBagGrid(), + t.KHNO.ins().remove(this.updateMouseEff, this), + t.KHNO.ins().remove(this.updateTask, this), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.moneyGrp = null), + (this.equipList = null), + (this.tab = null), + (this.arrange = null), + (this["function"] = null), + (this.sildGrp = null), + (this.upBtn = null), + (this.downBtn = null), + (this.silding = null), + (this.equipScroller = null), + (this.equipMaxHight = null), + (this.dSpriteSheet = null), + (this.moneyArray = null), + (this.oldIndex = null), + (this.goldIcon = null), + (this.yuanbaoIcon = null), + (this.withdrawIcon = null), + (this.equipBg = null), + (this.equipLab = null), + (this.equipStar = null), + (this.itemEffGrp = null), + (this.newGrp = null), + (this.newIcon = null), + (this.bagGridArr = null), + (this.itemGrid = null); + }), + (i.prototype.getBagGrid = function (e, i, n, s, a) { + return this.itemGrid.pop() || new t.BbgItemGrid(e, i, n, s, a); + }), + (i.prototype.pushBagGrid = function (t) { + t.imgicon.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + t.imgicon.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.imgicon.removeEventListener(mouse.MouseEvent.LEFT_DOWN, this.touchBeginFunction, this), + t.imgicon.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + t.imgicon.removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + this.fEHj(t.imgicon, this.mouseMove), + this.fEHj(t.imgicon, this.mouseMove), + t.cleanImg(), + t.setVis(!1), + this.itemGrid.push(t); + }), + (i.prototype.addBagItem = function (t, e, i) { + for (var n, s = 0, a = 0; a < i.length; a++) + (n = this.getBagGrid(this.equipBg, this.equipLab, this.equipStar, this.itemEffGrp, this.dSpriteSheet)), + n.cleanImg(), + this.bagGridArr[t] || (this.bagGridArr[t] = []), + this.bagGridArr[t].push(n), + 0 == a ? ((n.x = 0), (s = 0)) : ((n.x = 60 + s + 2.5), (s = n.x)), + (n.y = e.y), + n.setVis(!0), + n.imgicon.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + n.imgicon.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + n.imgicon.addEventListener(mouse.MouseEvent.LEFT_DOWN, this.touchBeginFunction, this), + n.imgicon.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + n.imgicon.addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + this.VoZqXH(n.imgicon, this.mouseMove), + this.EeFPm(n.imgicon, this.mouseMove), + n.dataChange(i[a], t, a); + (n = null), (s = null); + }), + i + ); + })(t.gIRYTi); + (t.BagView = e), __reflect(e.prototype, "app.BagView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityCommonViewSkin"), (i.name = "BagWareHouseTipsView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.strLab.textFlow = t.hETx.qYVI(e[0])), this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.BagWareHouseTipsView = e), __reflect(e.prototype, "app.BagWareHouseTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n, s, a, r) { + var o = e.call(this) || this; + return ( + (o.lab = new eui.Label()), + (o.lab.textColor = t.ClwSVR.WHITE_COLOR), + (o.lab.textAlign = "right"), + (o.lab.size = 16), + (o.lab.width = 50), + (o.lab.stroke = 1), + (o.lab.strokeColor = 0), + (o.imgBg = new eui.Image()), + (o.imgNuBg = new eui.Image()), + (o.imgicon = new eui.Image()), + (o.imgLock = new eui.Image("quality_lock")), + (o.imgAscension = new eui.Image()), + (o.imgSelectIcon = new eui.Image()), + (o.bestEquip = new eui.Image()), + (o.effGrp = new eui.Group()), + (o.effGrp.touchEnabled = !1), + (o.effGrp.touchChildren = !1), + (o.redPoint = new eui.Image("redPoint")), + (o.imgNuBg.touchEnabled = !1), + (o.imgLock.touchEnabled = !1), + (o.imgSelectIcon.touchEnabled = !1), + (o.imgAscension.touchEnabled = !1), + (o.bestEquip.touchEnabled = !1), + i.addChild(o.imgBg), + i.addChild(o.imgicon), + i.addChild(o.imgNuBg), + i.addChild(o.imgLock), + i.addChild(o.imgAscension), + i.addChild(o.imgSelectIcon), + i.addChild(o.bestEquip), + i.addChild(o.redPoint), + n.addChild(o.lab), + a.addChild(o.effGrp), + (o.starLabel = new eui.BitmapLabel()), + o.starLabel.textAlign, + (o.starLabel.width = 50), + (o.starLabel.letterSpacing = -3), + (o.starLabel.textAlign = "right"), + (o.starLabel.font = "num_8_fnt"), + s.addChild(o.starLabel), + o + ); + } + return ( + __extends(i, e), + (i.prototype.dataChange = function (e, i, n) { + if (e && e.wItemId) { + (this.curItem = e), (this.starLabel.visible = e.wStar > 0), (this.starLabel.text = "+" + e.wStar); + var s = t.VlaoF.StdItems[this.curItem.wItemId]; + if (s) { + (this.bestEquip.visible = !1), + (this.redPoint.visible = !1), + s.forcetips > 0 && + (s.Redpointlimit ? (this.redPoint.visible = t.ZAJw.isRedDot(s.Redpointlimit) ? !0 : !1) : (this.redPoint.visible = !0), + (this.redPoint.source = 1 == s.forcetips ? "redPoint" : "orangePoint")), + s.UseLimit && + (t.ThgMu.ins().surplusUseCount[s.id] > 0 && ((this.redPoint.source = "redPoint"), (this.redPoint.visible = !0)), + t.rLmMYc.addListener(t.ThgMu.ins().post_8_13, this.updateSurplusUseCount, this), + t.ThgMu.ins().send_8_13(s.id)), + (this.imgBg.source = "quality_" + s.showQuality), + (this.imgNuBg.source = s.iseffect ? "yan_" + s.iseffect : ""), + (this.imgNuBg.visible = s.iseffect ? !0 : !1), + (this.imgLock.visible = s.openDaylimit && t.GlobalData.sectionOpenDay <= s.openDaylimit); + var a = t.mAYZL.ins().ZzTs(t.SetUpView), + r = t.ThgMu.ins().getBagRecycleSelect(s.itemlevel), + l = t.NWRFmB.ins().nkJT(), + h = l.propSet.getAP_JOB(), + p = t.caJqU.ins().getEquipsByPos(s.type - 1), + q = 1 == s.packageType && (0 == s.suggVocation || s.suggVocation == h), + u = a && 6 == a.getUpViewIdx && r; + if (r && q) { + u = u && (!p ? !1 : p && p.itemScore < e.itemScore ? !1 : !0); + } + (this.imgSelectIcon.source = u ? "quality_huishou" : ""), (this.imgSelectIcon.visible = u ? !0 : !1); + (this.imgAscension.source = ""), (this.imgAscension.visible = !1); + if (q) { + p && p.series + ? p.itemScore < e.itemScore && ((this.imgAscension.source = "quality_sheng"), (this.imgAscension.visible = !0)) + : ((this.imgAscension.source = "quality_sheng"), (this.imgAscension.visible = !0)); + } + (this.imgicon.source = s.icon + ""), + (this.lab.text = e.btCount > 1 ? e.btCount + "" : ""), + "" != e.topLine && void 0 != e.topLine && ((this.bestEquip.source = "quality_jipin"), (this.bestEquip.visible = !0)), + s.itemEff && + ((this.effGrp.visible = !0), + this.itemMC || + ((this.itemMC = t.ObjectPool.pop("app.MovieClip")), + (this.itemMC.scaleX = this.itemMC.scaleY = 1), + (this.itemMC.touchEnabled = !1), + (this.itemMC.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMC)), + this.itemMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zb" + s.itemEff, -1)), + (this.imgicon.curData = e); + } + } else + (this.starLabel.visible = !1), + (this.imgBg.source = "quality_0"), + (this.imgNuBg.source = ""), + (this.imgicon.source = ""), + (this.imgSelectIcon.source = ""), + (this.imgAscension.source = ""), + (this.bestEquip.source = ""), + (this.lab.text = ""), + (this.imgLock.visible = !1), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + (this.imgicon.idx = 8 * i + n), (this.imgicon.itemInfo = e); + }), + (i.prototype.updateSurplusUseCount = function (e) { + e == this.curItem.wItemId && t.ThgMu.ins().surplusUseCount[this.curItem.wItemId] > 0 && ((this.redPoint.source = "redPoint"), (this.redPoint.visible = !0)); + }), + Object.defineProperty(i.prototype, "curData", { + get: function () { + return this.curItem; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setVis = function (t) { + (this.imgBg.visible = t), + (this.imgNuBg.visible = !1), + (this.imgLock.visible = !1), + (this.redPoint.visible = !1), + (this.imgicon.visible = t), + (this.lab.visible = t), + (this.effGrp.visible = !1), + (this.imgSelectIcon.visible = t), + (this.imgAscension.visible = t), + (this.bestEquip.visible = !1), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + }), + (i.prototype.cleanImg = function () { + t.rLmMYc.ins().removeAll(this), + (this.imgBg.source = "quality_0"), + (this.imgNuBg.source = ""), + (this.imgicon.source = ""), + (this.imgSelectIcon.source = ""), + (this.imgAscension.source = ""), + (this.bestEquip.source = ""), + (this.imgLock.visible = !1), + (this.bestEquip.visible = !1), + (this.redPoint.visible = !1), + (this.effGrp.visible = !1), + (this.starLabel.visible = !1), + (this.lab.text = ""), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + }), + Object.defineProperty(i.prototype, "x", { + get: function () { + return this.imgBg.x; + }, + set: function (t) { + (this.imgBg.x = t), + (this.redPoint.x = t + 43), + (this.imgicon.x = t), + (this.imgNuBg.x = t), + (this.imgLock.x = t), + (this.imgSelectIcon.x = t), + (this.imgAscension.x = t), + (this.bestEquip.x = t), + (this.effGrp.x = t + 30), + (this.lab.x = t + 5), + (this.starLabel.x = t + 5); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "y", { + get: function () { + return this.imgBg.y; + }, + set: function (t) { + (this.imgBg.y = t), + (this.redPoint.y = t + 2), + (this.imgicon.y = t), + (this.imgNuBg.y = t), + (this.imgLock.y = t), + (this.imgSelectIcon.y = t), + (this.imgAscension.y = t), + (this.bestEquip.y = t), + (this.effGrp.y = t + 30), + (this.lab.y = t + 42), + (this.starLabel.y = t + 38); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(eui.Component); + (t.BbgItemGrid = e), __reflect(e.prototype, "app.BbgItemGrid"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.dimensionBossRoleInfo = {}), (i.sysId = t.jDIWJt.Boss), i.YrTisc(1, i.post_49_1), i.YrTisc(2, i.post_49_2), i.YrTisc(3, i.post_49_3), i.YrTisc(4, i.post_49_4), i.YrTisc(6, i.post_49_6), i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_49_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.send_49_2 = function (e, i) { + t.JgMyc.ins().bossModel.bossId = e; + var n = this.MxGiq(2); + n.writeInt(e), n.writeInt(i), this.evKig(n); + }), + (i.prototype.post_49_1 = function (e) { + for (var i, n, s = e.readInt(), a = 0; s > a; a++) + (i = new t.BoosVo()), + (i.serial = e.readInt()), + (i.refreshTime = t.DateUtils.formatMiniDateTime(e.readInt())), + (i.deliveryTime = e.readInt()), + (i.hpMaxCount = e.readInt()), + (i.hpCurrent = e.readInt()), + (n = t.VlaoF.BossConfig[i.serial]), + n && + (t.JgMyc.ins().bossModel.bossList[i.serial] = { + mold: n.mold, + bossVo: i, + }); + }), + (i.prototype.post_49_2 = function (e) { + var i = e.readByte(), + n = e.readUnsignedInt(), + s = t.GlobalData.serverTime / 1e3; + return ( + (t.JgMyc.ins().bossModel.isSuccess = i), + { + actTime: n - s, + } + ); + }), + (i.prototype.post_49_3 = function (e) { + var i = new t.BossBelongVo(); + e.readByte(); + (i.nBossid = e.readInt()), + (i.isBelong = e.readByte()), + 1 == i.isBelong && + ((i.playerId = e.readUnsignedInt()), + (i.job = e.readByte()), + (i.sex = e.readByte()), + (i.playerName = e.readString()), + (i.guildName = e.readString()), + (i.isSbk = e.readByte()), + (i.maxHp = e.readInt()), + (i.currentHp = e.readInt()), + (i.recog = e.readNumber())), + (t.JgMyc.ins().bossModel.bossBelongVo = i); + }), + (i.prototype.post_49_4 = function (e) { + var i = e.readByte(), + n = e.readInt(), + s = 0, + a = 0; + 0 == i ? ((s = 7), (a = t.VlaoF.ShenZhuangBossConfig.level)) : 1 == i && ((s = 16), (a = t.VlaoF.ShenZhuangBossConfig.pidlevel)), + (t.JgMyc.ins().bossModel.bossTimesDic[s] = { + bossTimes: n, + levelLimt: a, + }); + }), + (i.prototype.post_49_5 = function (e) { + var i = e.readUnsignedInt(); + (this.dimensionBossRoleInfo = { + roleNum: i, + }), + t.mAYZL.ins().ZbzdY(t.DimensionBossRoleInfo) || t.mAYZL.ins().open(t.DimensionBossRoleInfo); + }), + (i.prototype.post_49_6 = function (e) { + var i = {}; + i.name = e.readString(); + for (var n, s = e.readByte(), a = [], r = 0; s > r; r++) (n = new Object()), (n.type = e.readUnsignedInt()), (n.id = e.readUnsignedInt()), (n.count = e.readUnsignedInt()), a.push(n); + (i.list = a), t.mAYZL.ins().open(t.FightResultWin2, i); + }), + (i.prototype.isShowRed = function () { + var e = t.JgMyc.ins().bossModel.bossList, + i = 0, + n = t.NWRFmB.ins().getPayer, + s = n.propSet.mBjV(), + a = t.VlaoF.ShenZhuangBossConfig.pidlevel; + for (var r in e) { + var o = e[r].mold, + l = e[r].bossVo.deliveryTime; + if (6 == o && l > 0 && s >= a) { + i = 2; + break; + } + } + return i; + }), + (i.prototype.getRedDimensionBoss = function () { + var e = new Date(t.GlobalData.serverTime), + i = e.getHours() * t.DateUtils.SECOND_PER_HOUR + e.getMinutes() * t.DateUtils.SECOND_PER_MUNITE + e.getSeconds(), + n = t.JgMyc.ins().bossModel.getDimensionBossCfgList(); + for (var s in n) { + var a = n[s]; + for (var r in a.timeslot) { + var o = a.timeslot[r]; + if (i >= o.StartTime && i <= o.EndTime) return 1; + } + } + return 0; + }), + (i.addBoss = function (e) { + if (i.isShowTip) { + var n = t.VlaoF.BossConfig[e]; + if (n && n.showwindow) { + if (2 == n.showwindow) { + var s = null; + for (var a in i.bossSouce) if (((s = i.bossSouce[a]), 2 == s.showwindow)) return; + } + var r = (t.NWRFmB.ins().getPayer, n.showlimit); + if (r) { + var o = {}; + if (((o.level = r.lv), (o.openDay = r.openday), (o.zsLevel = r.zslv), (o.vip = r.viplv), !t.mAYZL.ins().isCheckOpen(o))) return; + } + (this.bossSouce[e] = { + bossId: e, + entityid: n.entityid, + showwindow: n.showwindow, + mold: n.mold, + AutoFly: n.AutoFly, + }), + t.uMEZy.ins().showBossRefreshTips(); + } + } + }), + (i.isShowTip = !0), + (i.bossSouce = {}), + i + ); + })(t.DlUenA); + (t.UyfaJ = e), __reflect(e.prototype, "app.UyfaJ"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.bossList = {}), + (this.isSuccess = 0), + (this.tabBarDic = { + 1: t.CrmPU.language_System3, + 2: "boss_tab_classic", + 3: "boss_tab_reinstall", + 4: "boss_tab_Lord", + 5: t.CrmPU.language_System79, + 6: t.CrmPU.language_System80, + }), + (this.bossTimesDic = {}); + } + return ( + (e.prototype.getListByTab = function (t) { + var e, + i = {}, + n = this.tabBarArr[t]; + for (var s in this.bossList) (e = this.bossList[s]), e.mold && n.mold == e.mold && (i[s] = this.bossList[s]); + return i; + }), + (e.prototype.getRankTab = function () { + var e, + i, + n = []; + this.tabBarArr ? (this.tabBarArr.length = 0) : (this.tabBarArr = []); + for (var s in this.tabBarDic) { + e = this.tabBarDic[s]; + for (var a in this.bossList) + if (((i = this.bossList[a]), i.mold == +s)) { + if (6 == i.mold) { + var r = t.NWRFmB.ins().getPayer, + o = r.propSet.mBjV(), + l = t.VlaoF.ShenZhuangBossConfig.pidlevel; + if (l > o) continue; + } + this.tabBarArr.push(i), n.push(e); + break; + } + } + return n; + }), + (e.prototype.getMagicBossCfgList = function (e, i) { + var n = t.VlaoF.BossConfig, + s = []; + for (var a in n) n[a].Serial == e && (s = 0 == i ? n[a].showascription : 1 == i ? n[a].showbrave : n[a].showpartake); + return s; + }), + (e.prototype.getDimensionBossInfo = function () { + for (var t in this.bossList) if (7 == this.bossList[t].mold) return this.bossList[t]; + return null; + }), + (e.prototype.getDimensionBossCfgList = function () { + var e = [], + i = t.VlaoF.BossConfig; + for (var n in i) 7 == i[n].mold && e.push(i[n]); + return e; + }), + e + ); + })(); + (t.BossData = e), __reflect(e.prototype, "app.BossData"); + var i = (function () { + function t() {} + return t; + })(); + (t.BoosVo = i), __reflect(i.prototype, "app.BoosVo"); + var n = (function () { + function t() {} + return t; + })(); + (t.BossBelongVo = n), __reflect(n.prototype, "app.BossBelongVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "BossDropItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = void 0, + i = void 0; + 0 == this.data.type + ? ((e = t.VlaoF.StdItems[this.data.id]), this.itemSlot.setItem(null, e.showQuality, e.icon, 2, e, this.data.count)) + : ((i = t.VlaoF.NumericalIcon[this.data.type]), this.itemSlot.setItem(null, 0, i.icon, 3, null, this.data.count, i.id)); + } + }), + (i.prototype.destroy = function () { + (this.data = null), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseItemRender); + (t.BossDropItemView = e), __reflect(e.prototype, "app.BossDropItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this.dataAry = []), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.itemRenderer = t.BossDropItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []); + }), + (e.prototype.setData = function (e) { + if ((this.dataAry.length > 0 && t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0), e)) + for (var i in e) { + var n = e[i]; + this.dataAry.push(n); + } + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + e.destroy(), (e = null); + } + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this._container.numElements > 0 && this._container.removeChildren(), + t.lEYZI.Naoc(this._container), + t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null); + }), + e + ); + })(); + (t.BossDropView = e), __reflect(e.prototype, "app.BossDropView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectedUrl = "boss_yeqian_bg1"), (t.noSelectedUrl = "boss_yeqian_bg2"), (t.skinName = "BossItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = 1 == this.data.isSelected ? this.selectedUrl : this.noSelectedUrl; + (this.bg.source = e), (this.txt_name.text = this.data.name), (this.icon.source = "monhead" + this.data.icon); + var i = void 0; + if (0 == this.data.type) + if (2 == this.data.mold || 3 == this.data.mold) { + var n = this.data.refreshTime - t.GlobalData.serverTime; + if (n > 0) { + var s = t.DateUtils.getFormatBySecond(Math.floor(this.data.refreshTime / 1e3), t.DateUtils.TIME_FORMAT_17), + a = t.DateUtils.getFormatBySecond(Math.floor(n / 1e3), t.DateUtils.TIME_FORMAT_5), + r = a.indexOf(t.CrmPU.language_Time_Days); + i = r > -1 ? "|C:0xF0C896&T:" + s + t.CrmPU.language_Omission_txt129 : "|C:0xF0C896&T:" + t.CrmPU.language_Omission_txt27 + s; + var o = t.GlobalData.sectionOpenDay, + l = t.VlaoF.BossConfig[this.data.id]; + (!l.openday || o >= l.openday) && (i += " |C:0x28ee01&T:" + t.CrmPU.language_Common_104 + a); + } else i = "|C:0x28ee01&T:" + t.CrmPU.language_Omission_txt26; + this.txt_refresh.textFlow = t.hETx.qYVI(i); + } else + (4 == this.data.mold || 5 == this.data.mold || 6 == this.data.mold) && + ((i = t.CrmPU.language_Omission_txt28 + "|C:0xF0C896&T:" + this.data.hp), (this.txt_refresh.textFlow = t.hETx.qYVI(i))); + else (i = "|C:0xF0C896&T:" + this.data.monsterName), (this.txt_refresh.textFlow = t.hETx.qYVI(i)); + (this.select.visible = 1 == this.data.isSelected), this.data.vip > 0 ? ((this.imgVip.source = "bs_tq_" + this.data.vip), (this.imgVip.visible = !0)) : (this.imgVip.visible = !1); + } + }), + i + ); + })(t.BaseItemRender); + (t.BossItemView = e), __reflect(e.prototype, "app.BossItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.BossItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []), + t.MouseScroller.bind(this._scroller); + }), + (e.prototype.stopAnimation = function () { + this._scroller.stopAnimation(); + }), + (e.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (e.prototype.onItemTap = function (t, e) { + (this.target = t), + this.curIndex != e && + ((this.dataAry[this.curIndex].isSelected = 0), + this._itemArrayCollection.replaceItemAt(this.dataAry[this.curIndex], this.curIndex), + (this.dataAry[e].isSelected = 1), + this._itemArrayCollection.replaceItemAt(this.dataAry[e], e), + (this.curIndex = e), + this._callfunc && this._callfunc(this.dataAry[e].id)); + }), + (e.prototype.setData = function (t, e) { + var i = 0; + this.curIndex = i; + for (var n in t) { + var s = t[n].bossVo; + if (s.serial == e) { + this.curIndex = i; + break; + } + i++; + } + this.creatItem(t); + }), + (e.prototype.creatItem = function (e) { + if ((this.dataAry.length > 0 && t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0), e)) { + var i = void 0, + n = void 0, + s = void 0, + a = void 0, + r = 0; + for (var o in e) + (a = e[o].bossVo), + (n = t.VlaoF.BossConfig[a.serial]), + 1 != e[o].mold + ? ((i = t.VlaoF.Monster[n.entityid]), + (s = t.VlaoF.Props[i.propid]), + this.dataAry.push({ + type: 0, + id: a.serial, + entityid: n.entityid, + icon: i.modelid, + isSelected: r == this.curIndex ? 1 : 0, + name: i.name, + refreshTime: a.refreshTime, + reborn: n.reborn, + desc: n.describe, + mold: n.mold, + hp: s && s.nMaxHpAdd, + vip: n.vip, + })) + : ((i = t.VlaoF.Scenes[n.endmap]), + (s = t.VlaoF.Monster[n.entityid]), + this.dataAry.push({ + type: 1, + id: a.serial, + icon: s.modelid, + isSelected: r == this.curIndex ? 1 : 0, + name: i.scencename, + refreshTime: a.refreshTime, + desc: n.describe, + monsterName: n.monsterName, + vip: n.vip, + })), + r++; + } + this.getNoRepeat(this.dataAry), this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.getNoRepeat = function (t) { + if (t) { + for (var e = 0; e < t.length - 1; e++) + for (var i = e + 1; i < t.length; i++) t[e].entityid === t[i].entityid && (t[e].refreshTime > t[i].refreshTime ? (t[i].entityid = null) : (t[e].entityid = null)); + for (var n = 0; n < t.length; n++) null == t[n].entityid && (t.splice(n, 1), n--); + } + }), + (e.prototype.remove_duplicates = function (e) { + for (var i = {}, n = 0; n < e.length; n++) i[e[n].entityid] = e[n]; + this.dataAry.length = 0; + for (var s in i) this.dataAry.push(i[s]); + t.ObjectPool.wipe(i); + }), + (e.prototype.unique = function (t, e) { + for (var i = 1; i < t.length; ) 0 === e(t[i - 1], t[i]) ? t.splice(i, 1) : i++; + }), + (e.prototype.compareFunc = function (t, e) { + var i = t.entityid, + n = e.entityid; + return n > i ? -1 : i == n ? 0 : 1; + }), + (e.prototype.destroy = function () { + t.MouseScroller.unbind(this._scroller), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this._container.numElements > 0 && this._container.removeChildren(), + t.lEYZI.Naoc(this._container), + t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null), + this._callfunc && (this._callfunc = null); + }), + e + ); + })(); + (t.BossListView = e), __reflect(e.prototype, "app.BossListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.tabArr = []), (i.curIndex = 0), (i.mold = -1), (i.bossId = -1), (i.itemId = 463), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "BossSkin"), (i.name = "BossView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.CommonTabBarWin), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System51), + (this.bossListView = new t.BossListView(this.item_list)), + (this.bossListView._callfunc = this.callfunc.bind(this)), + (this.bossDropView = new t.BossDropView(this.drop_list)); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (this.mold = e[0]), + e[1] && (this.bossId = e[1]), + (this.tabArr = t.JgMyc.ins().bossModel.getRankTab()), + this.tabArr && (this.tabBar.dataProvider = new eui.ArrayCollection(this.tabArr)), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.vKruVZ(this.btn_go, this.onGoto), + this.vKruVZ(this.btn_go2, this.onGoto), + this.HFTK(t.UyfaJ.ins().post_49_1, this.onRefreshData), + this.HFTK(t.UyfaJ.ins().post_49_2, this.onEnterMap), + t.UyfaJ.ins().send_49_1(), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + (this.txt_get.visible = !1), + t.GetPropsView.getPropsTxt(this.txt_get, this.itemId); + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[this.itemId]; + t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e.itemid, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + }), + (i.prototype.onTabTouch = function (e) { + (this.curIndex = e.currentTarget.selectedIndex), this.bossListView.stopAnimation(), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL), (this.mold = -1), this.onRefreshData(); + }), + (i.prototype.onRefreshData = function () { + if (this.mold > -1) { + for (var e = t.JgMyc.ins().bossModel.tabBarArr, i = 0, n = e.length; n > i; i++) + if (e[i].mold == this.mold) { + this.curIndex = i; + break; + } + var s = new egret.TouchEvent(egret.TouchEvent.CHANGE); + return (s.$currentTarget = this.tabBar), (s.$currentTarget.selectedIndex = this.curIndex), void this.onTabTouch(s); + } + var a = t.JgMyc.ins().bossModel.getListByTab(this.curIndex); + if ((this.setId(), a)) { + var r = void 0; + for (var o in a) { + r = a[o].mold; + break; + } + if (1 == r) (this.commonGp.visible = !1), (this.personalGp.visible = !1), (this.magicBossGp.visible = !0), this.mboss.initData(); + else if (6 == r) (this.commonGp.visible = !1), (this.magicBossGp.visible = !1), (this.personalGp.visible = !0), this.personalBoss.setData(a); + else { + if (((this.magicBossGp.visible = !1), (this.personalGp.visible = !1), (this.commonGp.visible = !0), this.bossListView.setData(a, this.bossId), this.bossId > 0)) + t.JgMyc.ins().bossModel.bossId = this.bossId; + else { + var o = Number(Object.keys(a)[0]); + t.JgMyc.ins().bossModel.bossId = o; + } + if (((this.bossId = -1), t.JgMyc.ins().bossModel.bossId)) { + var l = void 0, + h = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + h && (l = h.dropId), this.bossDropView.setData(l); + } else this.bossDropView.setData(null); + this.refreshContent(); + } + } + }), + (i.prototype.setId = function () { + var e = t.JgMyc.ins().bossModel.tabBarArr[this.curIndex]; + if (e) { + var i = t.JgMyc.ins().bossModel.tabBarArr[this.curIndex].mold; + switch (((this.txt_get.visible = 5 == i), (this.helpBtn.x = 477), (this.helpBtn.y = 573), i)) { + case 1: + (this.helpBtn.ruleId = 58), (this.helpBtn.x = 589), (this.helpBtn.y = 560); + break; + case 2: + this.helpBtn.ruleId = 44; + break; + case 3: + this.helpBtn.ruleId = 45; + break; + case 4: + this.helpBtn.ruleId = 46; + break; + case 5: + this.helpBtn.ruleId = 47; + break; + case 6: + this.helpBtn.ruleId = 79; + } + } + }), + (i.prototype.onEnterMap = function (e) { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + if (5 == n.mold || 6 == n.mold) { + var s = e.actTime; + n && 0 == t.JgMyc.ins().bossModel.isSuccess && (s && s > 0 && t.ckpDj.ins().sendEvent(t.CompEvent.TimerEvent, [s]), t.mAYZL.ins().close(i, t.yCIt.CtcxUT)); + } else 0 == t.JgMyc.ins().bossModel.isSuccess && t.mAYZL.ins().close(i, t.yCIt.CtcxUT); + }), + (i.prototype.onChangeTab = function () { + t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL), this.onRefreshData(); + }), + (i.prototype.callfunc = function (e) { + if (((t.JgMyc.ins().bossModel.bossId = e), t.JgMyc.ins().bossModel.bossId)) { + var i = void 0, + n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + n && (i = n.dropId), this.bossDropView.setData(i); + } else this.bossDropView.setData(null); + this.refreshContent(); + }), + (i.prototype.onGoto = function (e) { + var i = e.target; + if (i == this.btn_go) { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId], + s = 0; + (s = n.entityid ? n.entityid : 0), t.UyfaJ.ins().send_49_2(t.JgMyc.ins().bossModel.bossId, n.entityid); + } else { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + if (n) { + var a = n.flytab; + t.mAYZL.ins().close(t.FlyShoesView), t.mAYZL.ins().open(t.FlyShoesView, a.tabid, a.flyid); + } + } + }), + (i.prototype.refreshContent = function () { + if (t.JgMyc.ins().bossModel.bossId) { + var e = void 0, + i = void 0; + (e = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]), e && (i = e.describe); + var n = t.JgMyc.ins().bossModel.bossList; + if (((this.btn_go.visible = e.delivery > 0), (this.btn_go2.visible = 0 == e.delivery && e.flytab), e.vip > 0)) { + var s = t.VipData.ins().getVipDataByLv(e.vip); + s && (this.txt_trans.text = t.zlkp.replace(t.CrmPU.language_Common_202, s.name)), (this.txt_trans.visible = !0); + } else { + var a = n[t.JgMyc.ins().bossModel.bossId].bossVo.deliveryTime; + (this.txt_trans.text = t.CrmPU.language_Omission_txt29 + a), (this.txt_trans.visible = e.delivery > 0 && -1 != a); + } + (this.txt_trans2.visible = e.flydesc), this.txt_trans2.visible && (this.txt_trans2.text = e.flydesc), (this.txt_infos.text = i ? i : ""); + } else (this.btn_go.visible = !1), (this.btn_go2.visible = !1), (this.txt_trans2.visible = !1), (this.txt_trans2.text = ""), (this.txt_trans.text = ""), (this.txt_infos.text = ""); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.tabBar = null), + this.dragDropUI && this.dragDropUI.destroy(), + this.bossListView && this.bossListView.destroy(), + this.bossDropView && this.bossDropView.destroy(), + this.personalBoss && this.personalBoss.destroy(), + this.mboss && this.mboss.destroy(), + (this.mboss = null), + (this.dragDropUI = null), + (this.bossListView = null), + (this.bossDropView = null), + (t.JgMyc.ins().bossModel.bossId = null), + this.fEHj(this.btn_go, this.onGoto), + this.fEHj(this.btn_go2, this.onGoto), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.BossView = e), __reflect(e.prototype, "app.BossView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.lockSkillId = 0), + (i.isPlayMc = !1), + (i.snatchPlayer = !1), + 23 == t.GameMap.fubenID + ? ((i.skinName = "MagicBossInfoShowSkin2"), (i.percentHeight = 100), (i.percentWidth = 100)) + : ((i.skinName = "MagicBossInfoShowSkin"), (i.horizontalCenter = 80), (i.top = 10)), + (i.touchEnabled = !1), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gpBoss.visible = !1), (this.gpPlayer.visible = !1); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.btnPlayer.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + this.playBossMc(this.btnBOSS), + this.HFTK(t.UyfaJ.ins().post_49_3, this.updatePlayerData), + this.HFTK(t.Nzfh.ins().post_g_0_6, this.updateBossInfo), + this.HFTK(t.Nzfh.ins().post_g_0_5, this.updateBossDead), + this.HFTK(t.Nzfh.ins().post_g_0_4, this.updateSetNameColor), + t.ckpDj.ins().addEvent(t.CommonEvent.PLAYER_PK_MODE, this.updatePkMode, this), + this.vKruVZ(this.btnBOSS, this.onClick), + this.vKruVZ(this.btnPlayer, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnBOSS: + t.qTVCL.ins().edcwsp(), this.stopBossMc(), this.stopPlayerMc(); + break; + case this.btnPlayer: + (this.snatchPlayer = !0), this.onClickPK(); + } + }), + (i.prototype.updatePkMode = function (t) { + 5 == t && this.snatchPlayer && this.onClickPK(), (this.snatchPlayer = !1); + }), + (i.prototype.onClickPK = function () { + if (this.recog) { + var e = t.NWRFmB.ins().getPayer; + if (e.recog == this.recog) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips146); + t.EhSWiR.m_Move_Char = null; + var i = t.NWRFmB.ins().getPayer; + t.Nzfh.ins().postUpdateTarget(this.recog), (i.lockTarget = this.recog), t.Nzfh.ins().post_pk(), this.stopBossMc(), this.stopPlayerMc(); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips147); + }), + (i.prototype.updateBossDead = function () { + var e, + i, + n = t.NWRFmB.ins().YUwhM(); + for (var s in n) { + var a = n[s]; + (i = t.VlaoF.Monster[a.propSet.getACTOR_ID()]), !i || a instanceof t.CharPet || (e = n[s]); + } + e || (this.gpBoss.visible = !1); + }), + (i.prototype.updateBossInfo = function () { + var e, + i, + n = t.NWRFmB.ins().YUwhM(); + for (var s in n) { + var a = n[s]; + (i = t.VlaoF.Monster[a.propSet.getACTOR_ID()]), !i || a instanceof t.CharPet || (e = n[s]); + } + e && + ((this.bossRecog = e.recog), + (this.gpBoss.visible = !0), + (this.gpBoss.touchEnabled = !1), + (this.gpBoss.touchChildren = !1), + (this.bossHpBar.labelFunction = function (e, i) { + return t.CommonUtils.overLength(e) + "/" + t.CommonUtils.overLength(i); + }), + (this.bossHpBar.maximum = e.propSet.getMaxHp()), + (this.bossHpBar.value = Math.min(e.propSet.getHp(), e.propSet.getMaxHp())), + (this.bossName.text = e.charName), + (i = t.VlaoF.Monster[e.propSet.getACTOR_ID()]), + (this.bossAvatar.source = "monhead" + i.modelid), + i.nameQuality && i.nameQuality > 1 + ? (this.bossName.textColor = t.ClwSVR.GOODS_COLOR[i.nameQuality - 1] ? t.ClwSVR.GOODS_COLOR[i.nameQuality - 1] : t.ClwSVR.NAME_WHITE) + : (this.bossName.textColor = t.ClwSVR.NAME_WHITE)); + }), + (i.prototype.updatePlayerData = function () { + this.btnPlayer.filters = t.FilterUtil.ARRAY_GRAY_FILTER; + var e = t.JgMyc.ins().bossModel.bossBelongVo; + if (0 == e.isBelong) return (this.recog = 0), void (this.gpPlayer.visible = !1); + this.recog = e.recog; + var i = t.NWRFmB.ins().getCharRole(e.recog), + n = t.NWRFmB.ins().getPayer; + if (n && n.recog == e.recog) { + if (!n.propSet) return; + (this.propSet = n.propSet), this.pkTextColor(); + } else i && i.propSet && ((this.propSet = i.propSet), this.setNameTxtColor(), (this.btnPlayer.filters = null), this.isPlayMc || this.playPlayerMc(this.btnPlayer)); + (this.gpPlayer.visible = !0), + (this.playerHpBar.labelFunction = function (t, e) { + return t + "/" + e; + }), + (this.playerHpBar.maximum = e.maxHp), + (this.playerHpBar.value = e.currentHp), + (this.playerHpLabel.text = e.currentHp + "/" + e.maxHp), + (this.playerName.text = e.playerName), + (this.playerAvatar.source = "name_" + e.job + "_" + e.sex), + "" != e.guildName ? (this.playerGuild.text = 0 == e.isSbk ? "<" + e.guildName + ">" : "<" + e.guildName + ">(" + t.CrmPU.language_FuBen_Text16 + ")") : (this.playerGuild.text = ""); + }), + (i.prototype.updateSetNameColor = function () { + var e = t.NWRFmB.ins().getCharRole(this.recog); + e && ((this.propSet = e.propSet), this.setNameTxtColor(), (this.btnPlayer.filters = null), this.isPlayMc || this.playPlayerMc(this.btnPlayer)); + }), + (i.prototype.setNameTxtColor = function () { + var e = t.NWRFmB.ins().getPayer; + if (t.GameMap.getAACamp) + e.propSet.getZYId() == this.propSet.getZYId() + ? ((this.playerName.textColor = t.ClwSVR.NAME_BLUE), (this.playerGuild.textColor = t.ClwSVR.NAME_BLUE)) + : ((this.playerName.textColor = t.ClwSVR.NAME_ORANGE), (this.playerGuild.textColor = t.ClwSVR.NAME_ORANGE)); + else { + var i = t.KWGP.ins().concernIsFriend(this.propSet.getACTOR_ID()); + if (i) return (this.playerName.textColor = i.getColor()), void (this.playerGuild.textColor = i.getColor()); + t.GameMap.getIsSafe + ? this.pkTextColor() + : this.propSet.getGuildId() && e.propSet.getGuildId() + ? this.propSet.getGuildId() == e.propSet.getGuildId() + ? t.GameMap.getAAZY || t.bfhrJ.ins().declareWarAry.length + ? ((this.playerName.textColor = t.ClwSVR.NAME_BLUE), (this.playerGuild.textColor = t.ClwSVR.NAME_BLUE)) + : this.pkTextColor() + : t.GameMap.getAAZY || t.bfhrJ.ins().getIsDeclareWar(this.propSet.getGuildId()) + ? ((this.playerName.textColor = t.ClwSVR.NAME_ORANGE), (this.playerGuild.textColor = t.ClwSVR.NAME_ORANGE)) + : this.pkTextColor() + : t.GameMap.getAAZY + ? ((this.playerName.textColor = t.ClwSVR.GREEN_COLOR), (this.playerGuild.textColor = t.ClwSVR.GREEN_COLOR)) + : this.pkTextColor(); + } + }), + (i.prototype.pkTextColor = function () { + this.propSet && + (this.propSet.getPKState() + ? ((this.playerName.textColor = t.ClwSVR.NAME_GREY), (this.playerGuild.textColor = t.ClwSVR.NAME_GREY)) + : this.propSet.getPKValue() <= 50 + ? ((this.playerName.textColor = t.ClwSVR.NAME_WHITE), (this.playerGuild.textColor = t.ClwSVR.NAME_WHITE)) + : this.propSet.getPKValue() > 50 && this.propSet.getPKValue() <= 100 + ? ((this.playerName.textColor = t.ClwSVR.NAME_YELLOW), (this.playerGuild.textColor = t.ClwSVR.NAME_YELLOW)) + : ((this.playerName.textColor = t.ClwSVR.NAME_RED), (this.playerGuild.textColor = t.ClwSVR.NAME_RED))); + }), + (i.prototype.playBossMc = function (e) { + this.btnBOSSMc || + ((this.btnBOSSMc = t.ObjectPool.pop("app.MovieClip")), + (this.btnBOSSMc.scaleX = this.btnBOSSMc.scaleY = 1), + (this.btnBOSSMc.x = 48), + (this.btnBOSSMc.y = 37), + (this.btnBOSSMc.touchEnabled = !1), + e.addChild(this.btnBOSSMc)), + this.btnBOSSMc.playFileEff(ZkSzi.RES_DIR_EFF + "xsyd", -1); + }), + (i.prototype.stopBossMc = function () { + this.btnBOSSMc && (this.btnBOSSMc.destroy(), (this.btnBOSSMc = null)); + }), + (i.prototype.playPlayerMc = function (e) { + this.isPlayMc || + ((this.isPlayMc = !0), + this.btnPlayerMc || + ((this.btnPlayerMc = t.ObjectPool.pop("app.MovieClip")), + (this.btnPlayerMc.scaleX = this.btnPlayerMc.scaleY = 1), + (this.btnPlayerMc.x = 48), + (this.btnPlayerMc.y = 37), + (this.btnPlayerMc.touchEnabled = !1), + e.addChild(this.btnPlayerMc)), + this.btnPlayerMc.playFileEff(ZkSzi.RES_DIR_EFF + "xsyd", -1)); + }), + (i.prototype.stopPlayerMc = function () { + (this.isPlayMc = !0), this.btnPlayerMc && (this.btnPlayerMc.destroy(), (this.btnPlayerMc = null)); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.btnBOSSMc && (this.btnBOSSMc.destroy(), (this.btnBOSSMc = null)), + this.btnPlayerMc && (this.btnPlayerMc.destroy(), (this.btnPlayerMc = null)), + this.vKruVZ(this.btnBOSS, this.onClick), + this.vKruVZ(this.btnPlayer, this.onClick), + t.ckpDj.ins().removeEvent(t.CommonEvent.PLAYER_PK_MODE, this.updatePkMode, this), + this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.MagicBossInfoShowView = e), __reflect(e.prototype, "app.MagicBossInfoShowView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "MagicBossInfoShowSkin3"), (t.horizontalCenter = 0), (t.top = 100), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gpBoss.visible = !1), (this.gpPlayer.visible = !1); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.Nzfh.ins().post_g_0_13, this.seekShowBossInfo), + this.HFTK(t.Nzfh.ins().post_g_0_67, this.onMonsterShow), + this.HFTK(t.Nzfh.ins().post_g_0_5, this.onMonsterDisappear), + this.HFTK(t.Nzfh.ins().post_g_0_6, this.onMonsterUpdate), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.onMonsterUpdate2), + this.HFTK(t.bPGzk.ins().post_7_15, this.updatePlayerData), + this.seekShowBossInfo(); + }), + (i.prototype.onInit = function () { + this.currBossRecog = null; + }), + (i.prototype.onMonsterShow = function (e) { + if (!this.currBossRecog) { + var i = t.NWRFmB.ins().YUwhM()[e]; + if (i && i.propSet) { + var n = t.VlaoF.Monster[i.propSet.getACTOR_ID()]; + n && 1 == n.ascriptionopen && ((this.currBossRecog = e), this.updateBossInfo()); + } + } + }), + (i.prototype.onMonsterDisappear = function (t) { + this.currBossRecog == t && this.seekShowBossInfo(); + }), + (i.prototype.onMonsterUpdate = function (t) { + this.currBossRecog == t && this.updateBossInfo(), this.currBelongRecog == t && this.updatePlayerHp(); + }), + (i.prototype.onMonsterUpdate2 = function () { + var e = t.NWRFmB.ins().getPayer.recog; + this.currBelongRecog == e && this.updatePlayerHp(); + }), + (i.prototype.seekShowBossInfo = function () { + (this.currBossRecog = t.qTVCL.ins().getNearestMonster_magicBOSS()), + (this.currBossId = 0), + (this.currBelongRecog = 0), + (this.currBelongId = 0), + this.currBossRecog ? this.updateBossInfo() : ((this.gpBoss.visible = !1), (this.gpPlayer.visible = !1)); + }), + (i.prototype.updateBossInfo = function () { + var e = t.NWRFmB.ins().YUwhM()[this.currBossRecog]; + if (e && e.propSet) { + var i = e.propSet.getHp(), + n = e.propSet.getMaxHp(); + (this.currBossId = e.propSet.getACTOR_ID()), + (this.bossName.text = e.charName), + (this.bossHpBar.value = Math.min(i, n)), + (this.bossHpBar.maximum = n), + (this.bossHpLabel.text = t.CommonUtils.overLength(i) + "/" + t.CommonUtils.overLength(n)), + (this.gpBoss.visible = !0); + var s = t.VlaoF.Monster[e.propSet.getACTOR_ID()]; + if (s && 1 == s.ascriptionopen) { + var a = e.propSet.getMonsterAscriptionId(); + this.currBelongId != a && ((this.currBelongId = a), a ? t.bPGzk.ins().send_7_15(a, this.currBossId) : (this.gpPlayer.visible = !1)); + } + } + }), + (i.prototype.updatePlayerData = function (e) { + if (this.currBossRecog && e.nBossid == this.currBossId && 0 != e.isBelong) { + (this.currBelongRecog = e.recog), + (this.playerName.text = e.playerName), + (this.playerAvatar.source = "name_" + e.job + "_" + e.sex), + "" != e.guildName ? (this.playerGuild.text = 0 == e.isSbk ? "<" + e.guildName + ">" : "<" + e.guildName + ">(" + t.CrmPU.language_FuBen_Text16 + ")") : (this.playerGuild.text = ""); + var i = e.currentHp, + n = e.maxHp; + (this.playerHpBar.value = Math.min(i, n)), + (this.playerHpBar.maximum = n), + (this.playerHpLabel.text = t.CommonUtils.overLength(i) + "/" + t.CommonUtils.overLength(n)), + (this.gpPlayer.visible = !0); + } + }), + (i.prototype.updatePlayerHp = function () { + var e = t.NWRFmB.ins().getCharRole(this.currBelongRecog); + if (e && e.propSet) { + var i = e.propSet.getHp(), + n = e.propSet.getMaxHp(); + (this.playerHpBar.value = Math.min(i, n)), (this.playerHpBar.maximum = n), (this.playerHpLabel.text = t.CommonUtils.overLength(i) + "/" + t.CommonUtils.overLength(n)); + } + }), + i + ); + })(t.gIRYTi); + (t.MagicBossInfoShowView2 = e), __reflect(e.prototype, "app.MagicBossInfoShowView2"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectedUrl = "boss_yeqian_bg4"), (t.noSelectedUrl = "boss_yeqian_bg5"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = 1 == this.data.isSelected ? this.selectedUrl : this.noSelectedUrl; + (this.bg.source = e), (this.txt_name.text = this.data.monsterName), (this.icon.source = "monhead" + this.data.icon); + var i = void 0; + if (this.data.refreshTime - t.GlobalData.serverTime > 0) { + var n = t.DateUtils.getFormatBySecond(Math.floor(this.data.refreshTime / 1e3), t.DateUtils.TIME_FORMAT_17), + s = n.indexOf(t.CrmPU.language_Time_Days); + (i = s > -1 ? "|C:0xF0C896&T:" + n + t.CrmPU.language_Omission_txt129 : "" + t.CrmPU.language_Omission_txt27 + n), (this.txt_dead.visible = !0), (this.txt_refresh.visible = !0); + } else (this.txt_refresh.visible = !1), (this.txt_dead.visible = !1); + this.data.levellimit ? (this.txtNeeds.text = this.data.levellimit + t.CrmPU.language_Common_1) : (this.txtNeeds.text = this.data.berebornlimit + t.CrmPU.language_Common_0), + (this.hpBar.maximum = this.data.hpMaxCount), + (this.hpBar.value = this.data.hpCurrent), + (this.txt_refresh.textFlow = t.hETx.qYVI(i)), + (this.select.visible = 1 == this.data.isSelected), + this.transShow(this.data); + } + }), + (i.prototype.transShow = function (e) { + var i, + n = t.NWRFmB.ins().getPayer; + e.levellimit > 0 + ? e.levellimit > n.propSet.mBjV() + ? ((i = e.levellimit + t.CrmPU.language_Friend_Level_txt + t.CrmPU.language_FuBen_Text18), (this.txt_taget.visible = !0)) + : (this.txt_taget.visible = !1) + : e.berebornlimit > n.propSet.MzYki() + ? ((i = e.berebornlimit + t.CrmPU.language_Friend_Turn_txt + t.CrmPU.language_FuBen_Text18), (this.txt_taget.visible = !0)) + : (this.txt_taget.visible = !1), + (this.txt_taget.text = i); + }), + i + ); + })(t.BaseItemRender); + (t.MagicBossItemView = e), __reflect(e.prototype, "app.MagicBossItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.curIndex = 0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initUI(); + }), + (i.prototype.initUI = function () { + (this.arrItemList = new eui.ArrayCollection()), + (this.showpartake = new eui.ArrayCollection()), + (this.showascription = new eui.ArrayCollection()), + (this.showbrave = new eui.ArrayCollection()), + (this.dataAry = []), + t.MouseScroller.bind(this.scroller_r), + t.MouseScroller.bind(this.scroller_l), + this.list_item.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.vKruVZ(this.btn_go, this.onGoto); + }), + (i.prototype.initData = function () { + this.curIndex = 0; + var e = t.JgMyc.ins().bossModel.getListByTab(0); + this.creatItem(e), (this.id = this.dataAry[0].id); + var i = t.CrmPU.language_FuBen_Text17 + this.dataAry[0].deliveryTime; + (this.txt_trans.text = i), this.bindGoodsList(this.id), this.bindBossList(); + }), + (i.prototype.bindBossList = function () { + (this.list_item.itemRenderer = t.MagicBossItemView), (this.list_item.dataProvider = this.arrItemList); + }), + (i.prototype.bindGoodsList = function (e) { + (this.showascription.source = t.JgMyc.ins().bossModel.getMagicBossCfgList(e, 0)), + (this.list0.itemRenderer = t.BossDropItemView), + (this.list0.dataProvider = this.showascription), + (this.showbrave.source = t.JgMyc.ins().bossModel.getMagicBossCfgList(e, 1)), + (this.list1.itemRenderer = t.BossDropItemView), + (this.list1.dataProvider = this.showbrave), + (this.showpartake.source = t.JgMyc.ins().bossModel.getMagicBossCfgList(e, 2)), + (this.list2.itemRenderer = t.BossDropItemView), + (this.list2.dataProvider = this.showpartake); + }), + (i.prototype.creatItem = function (e) { + this.dataAry.length > 0 && t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0); + var i = []; + if (e) { + for (var n in e) this.dataAry.push(e[n]); + var s = void 0, + a = void 0, + r = void 0, + o = void 0, + l = void 0, + h = void 0; + for (l = 0, h = this.dataAry.length; h > l; l++) + (o = this.dataAry[l].bossVo), + (a = t.VlaoF.BossConfig[o.serial]), + (s = t.VlaoF.Scenes[a.endmap]), + (r = t.VlaoF.Monster[a.entityid]), + (i[l] = { + id: o.serial, + levellimit: void 0 == a.levellimit ? 0 : a.levellimit, + berebornlimit: void 0 == a.berebornlimit ? 0 : a.berebornlimit, + icon: r.modelid, + isSelected: 0, + hpMaxCount: o.hpMaxCount, + hpCurrent: o.hpCurrent, + refreshTime: o.refreshTime, + monsterName: r.name, + deliveryTime: o.deliveryTime, + }); + this.dataAry = i; + } + var p = this.dataAry.sort(this.sort2); + (p[0].isSelected = 1), this.arrItemList.replaceAll(p), this.arrItemList.refresh(); + }), + (i.prototype.sort2 = function (e, i) { + var n = t.NWRFmB.ins().getPayer, + s = n.propSet.MzYki(), + a = n.propSet.mBjV(), + r = e.berebornlimit < s ? 1 : -1, + o = i.berebornlimit < s ? 1 : -1; + (r = 0 == e.refreshTime && Number(e.berebornlimit) <= s && Number(e.levellimit) <= a ? 1 : -1), (o = 0 == i.refreshTime && Number(i.berebornlimit) <= s && Number(i.levellimit) <= a ? 1 : -1); + var l = e.berebornlimit * r, + h = i.berebornlimit * o, + p = e.levellimit * r, + u = i.levellimit * o; + return l > h ? -1 : h > l ? 1 : p > u ? -1 : u > p ? 1 : 0; + }), + (i.prototype.onItemTap = function (t) { + var e = t.itemIndex; + this.curIndex != e && + ((this.dataAry[this.curIndex].isSelected = 0), + this.arrItemList.replaceItemAt(this.dataAry[this.curIndex], this.curIndex), + (this.dataAry[e].isSelected = 1), + this.arrItemList.replaceItemAt(this.dataAry[e], e), + (this.curIndex = e), + (this.id = this.dataAry[e].id), + this.bindGoodsList(this.id)); + }), + (i.prototype.onGoto = function () { + var e = t.VlaoF.BossConfig[this.id], + i = 0; + (i = e.entityid ? e.entityid : 0), t.UyfaJ.ins().send_49_2(this.id, e.entityid); + }), + (i.prototype.destroy = function () { + t.MouseScroller.unbind(this.scroller_r), + t.MouseScroller.unbind(this.scroller_l), + this.list_item.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.fEHj(this.btn_go, this.onGoto), + this.arrItemList.removeAll(), + (this.dataAry = []), + t.ObjectPool.wipe(this.dataAry), + this.showascription.removeAll(), + this.showbrave.removeAll(), + this.showpartake.removeAll(); + }), + i + ); + })(t.BaseView); + (t.MagicBossView = e), __reflect(e.prototype, "app.MagicBossView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.sliderWidth = 298), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initUI(); + }), + (i.prototype.initUI = function () { + (this.bossListView = new t.BossListView(this.item_list)), + (this.bossListView._callfunc = this.callfunc.bind(this)), + (this.bossDropView = new t.BossDropView(this.drop_list)), + (this.bossAwardView = new t.BossDropView(this.award_list)), + this.vKruVZ(this.btn_go, this.onGoto), + this.vKruVZ(this.btn_go2, this.onGoto), + (this.scroller.verticalScrollBar.autoVisibility = !1), + (this.scroller.verticalScrollBar.visible = !1), + (this.slider.labelFunction = function (t, e) { + return t + "%"; + }), + (this.slider.value = 0), + t.MouseScroller.bind(this.scroller); + var e = t.VlaoF.ShenZhuangBossConfig.number; + this.txt_skill_desc.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt38, e)); + }), + (i.prototype.setData = function (e) { + this.red.visible = !1; + var i = [], + n = []; + for (var s in e) n.push(e[s]); + n.sort(this.sortByOpenDay); + for (var a = 0; a < n.length; a++) { + var r = n[a].bossVo; + i.push(r.serial); + } + var o = i[0], + l = t.VlaoF.BossConfig[o]; + o += 1; + var h = t.VlaoF.BossConfig[o]; + if (h) { + var p = t.GlobalData.sectionOpenDay, + u = t.GlobalData.serverTime, + c = new Date(u), + g = c.getHours(), + d = Math.floor((100 / (h.openday - l.openday) / 24) * (24 * (p - l.openday) + g)); + d >= 100 && (d = 100); + var m = d + "%"; + (this.txt_slider.text = m), + (this.slider.labelFunction = function (t, e) { + return t + "%"; + }), + (this.slider.maximum = 100), + (this.slider.value = d); + } else + (this.slider.labelFunction = function (t, e) { + return t + "%"; + }), + (this.slider.maximum = 100), + (this.slider.value = 100); + if ((this.bossListView.setData(n, null), (o -= 1), (t.JgMyc.ins().bossModel.bossId = o), t.JgMyc.ins().bossModel.bossId)) { + var f = void 0, + v = void 0, + _ = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + _ && ((f = _.dropId), (v = _.firstprize)), this.bossDropView.setData(f), this.bossAwardView.setData(v); + } else this.bossDropView.setData(null), this.bossAwardView.setData(null); + this.refreshContent(); + }), + (i.prototype.sortByOpenDay = function (e, i) { + var n = t.VlaoF.BossConfig[e.bossVo.serial], + s = t.VlaoF.BossConfig[i.bossVo.serial]; + return n.openday > s.openday ? -1 : 1; + }), + (i.prototype.onGoto = function (e) { + var i = e.target; + if (i == this.btn_go) { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId], + s = 0; + (s = n.entityid ? n.entityid : 0), t.UyfaJ.ins().send_49_2(t.JgMyc.ins().bossModel.bossId, n.entityid); + } else { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + if (n) { + var a = n.flytab; + t.mAYZL.ins().close(t.FlyShoesView), t.mAYZL.ins().open(t.FlyShoesView, a.tabid, a.flyid); + } + } + }), + (i.prototype.callfunc = function (e) { + if (((t.JgMyc.ins().bossModel.bossId = e), t.JgMyc.ins().bossModel.bossId)) { + var i = t.VlaoF.BossConfig[e], + n = e + 1, + s = t.VlaoF.BossConfig[n]; + if (s) { + var a = t.GlobalData.sectionOpenDay, + r = t.GlobalData.serverTime, + o = new Date(r), + l = o.getHours(), + h = Math.floor((100 / (s.openday - i.openday) / 24) * (24 * (a - i.openday) + l)); + h >= 100 && (h = 100); + var p = h + "%"; + (this.txt_slider.text = p), + (this.slider.labelFunction = function (t, e) { + return t + "%"; + }), + (this.slider.maximum = 100), + (this.slider.value = h); + } else + (this.slider.labelFunction = function (t, e) { + return t + "%"; + }), + (this.slider.maximum = 100), + (this.slider.value = 100); + var u = void 0, + c = void 0, + g = t.VlaoF.BossConfig[e]; + g && ((u = g.dropId), (c = g.firstprize)), this.bossDropView.setData(u), this.bossAwardView.setData(c); + } else this.bossDropView.setData(null), this.bossAwardView.setData(null); + this.refreshContent(); + }), + (i.prototype.refreshContent = function () { + if (t.JgMyc.ins().bossModel.bossId) { + var e = void 0, + i = void 0; + (e = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]), + e && (i = e.describe), + (this.btn_go.visible = e.delivery > 0), + (this.btn_go2.visible = 0 == e.delivery && e.flytab), + (this.txt_trans.visible = e.delivery > 0), + (this.txt_trans2.visible = e.flydesc), + this.txt_trans2.visible && (this.txt_trans2.text = e.flydesc); + var n = t.JgMyc.ins().bossModel.bossList, + s = n[t.JgMyc.ins().bossModel.bossId].bossVo.deliveryTime; + (this.red.visible = s > 0), (this.txt_trans.text = t.CrmPU.language_Omission_txt29 + s), (this.txt_infos.text = i ? i : ""); + } else + (this.btn_go.visible = !1), + (this.red.visible = !1), + (this.btn_go2.visible = !1), + (this.txt_trans2.visible = !1), + (this.txt_trans2.text = ""), + (this.txt_trans.text = ""), + (this.txt_infos.text = ""); + }), + (i.prototype.destroy = function () { + t.MouseScroller.unbind(this.scroller), + this.fEHj(this.btn_go, this.onGoto), + this.bossListView && this.bossListView.destroy(), + this.bossDropView && this.bossDropView.destroy(), + this.fEHj(this.btn_go, this.onGoto), + this.fEHj(this.btn_go2, this.onGoto), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.PersonalBossView = e), __reflect(e.prototype, "app.PersonalBossView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.cautionType = 0), (t.percentHeight = 100), (t.percentWidth = 100), t; + } + return ( + __extends(i, e), + (i.show = function (e, i, n, s, a, r, o, l) { + if ((void 0 === s && (s = null), void 0 === a && (a = null), void 0 === r && (r = "normal"), void 0 === o && (o = null), void 0 === l && (l = 0), l)) { + var h = t.XwoNAr.ins().getCautionValue(l); + if (h && i && null != i) return void i.call(n); + } + t.UserCaution.ins().setCautionLabel( + e, + { + func: i, + thisObj: n, + }, + { + func2: s, + thisObj2: a, + }, + r, + o, + l + ); + }), + (i.showContent = function (e, i, n, s, a, r, o) { + void 0 === s && (s = null), + void 0 === a && (a = null), + void 0 === r && (r = "normal"), + void 0 === o && (o = null), + t.UserCaution.ins().setCautionContent( + e, + { + func: i, + thisObj: n, + }, + { + func2: s, + thisObj2: a, + }, + r, + o + ); + }), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.skinName = "CautionViewSkin"); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.confirmBtn, this.onTap), this.vKruVZ(this.cancelBtn, this.onTap), this.vKruVZ(this.dialogCloseBtn, this.onTap), this.checkBox.setCallback(this, this.onTap); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.fEHj(this.confirmBtn, this.onTap), this.fEHj(this.cancelBtn, this.onTap), this.fEHj(this.dialogCloseBtn, this.onTap), this.$onClose(), (this.callBack = null), (this.calback2 = null); + }), + (i.prototype.onTap = function (e) { + var i = this.callBack, + n = this.calback2; + switch (e.currentTarget) { + case this.confirmBtn: + i && null != i.func && i.func.call(i.thisObj), t.mAYZL.ins().close(this); + break; + case this.cancelBtn: + n && n.func2 && n.func2.call(n.thisObj2), t.mAYZL.ins().close(this); + break; + case this.dialogCloseBtn: + t.mAYZL.ins().close(this); + break; + case this.checkBox: + this.cautionType && t.XwoNAr.ins().setCautionValue(this.cautionType, e.currentTarget.selected); + } + }), + Object.defineProperty(i.prototype, "isShowWin", { + get: function () { + return this._isShowWin; + }, + set: function (t) { + this._isShowWin != t && (this._isShowWin = t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setCautionLabel = function (e, i, n, s, a, r) { + void 0 === n && (n = null), + void 0 === s && (s = "normal"), + void 0 === a && (a = null), + void 0 === r && (r = 0), + (this.cautionType = r), + (this.checkLabel.visible = r > 0), + (this.checkBox.visible = r > 0), + "string" == typeof e ? (this.cautionLabel.textFlow = t.hETx.qYVI(e)) : (this.cautionLabel.textFlow = e), + (this.callBack = i), + (this.calback2 = n), + (this.currentState = s), + a && (a.btnName && (this.confirmBtn.label = a.btnName), a.title && (this.titleLabel.text = a.title)); + }), + (i.prototype.setCautionContent = function (t, e, i, n, s) { + void 0 === i && (i = null), + void 0 === n && (n = "normal"), + void 0 === s && (s = null), + (this.cautionLabel.visible = !1), + (this.callBack = e), + (this.calback2 = i), + (this.currentState = n), + s && (s.btnName && (this.confirmBtn.label = s.btnName), s.title && (this.titleLabel.text = s.title)); + var a = null; + "string" == typeof t ? ((a = new eui.Component()), (a.skinName = t)) : (a = t), this.addChild(a), (a.x = 0.5 * (480 - a.width)), (a.y = 0.5 * (800 - a.height)); + }), + i + ); + })(t.gIRYTi); + (t.CautionView = e), __reflect(e.prototype, "app.CautionView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.setCautionLabel = function (e, i, n, s, a, r) { + void 0 === s && (s = "normal"), void 0 === a && (a = null), void 0 === r && (r = null), t.mAYZL.ins().open(t.CautionView).setCautionLabel(e, i, n, s, a, r); + }), + (i.prototype.setCautionContent = function (e, i, n, s, a) { + void 0 === s && (s = "normal"), void 0 === a && (a = null), t.mAYZL.ins().open(t.CautionView).setCautionContent(e, i, n, s, a); + }), + i + ); + })(t.DlUenA); + (t.UserCaution = e), __reflect(e.prototype, "app.UserCaution"), t.rLmMYc.compile(e); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this.power0, this.onTouch), + this.vKruVZ(this.power1, this.onTouch), + this.vKruVZ(this.power2, this.onTouch), + this.vKruVZ(this.power3, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.fEHj(this.power0, this.onTouch), + this.fEHj(this.power1, this.onTouch), + this.fEHj(this.power2, this.onTouch), + this.fEHj(this.power3, this.onTouch); + }), + (i.prototype.dataChanged = function () { + if (((this.power0.visible = this.power1.visible = this.power2.visible = this.power3.visible = !1), this.data)) { + var e = t.VlaoF.GrowTipsTagConfig[this.data]; + e && (this.imgIcon.source = e.icon + ""); + var i = t.VlaoF.GrowTipsConfig[this.data]; + if (i) { + var n = 0; + for (var s in i) { + var a = i[s], + r = t.mAYZL.ins().isCheckOpen(a.openparam), + o = t.mAYZL.ins().isCheckClose(a.closeparam); + 1 == r && + 0 == o && + ((this["power" + n].visible = !0), + (this["power" + n].powerID = a.id), + a.buttonUI ? (this["power" + n].textFlow = t.hETx.qYVI("|C:0x28ee01&U&T:" + a.buttontext + "|")) : (this["power" + n].textFlow = t.hETx.qYVI("|C:0xFFFFFF&T:" + a.buttontext + "|")), + n++); + } + } + } + }), + (i.prototype.onTouch = function (e) { + var i, + n = t.VlaoF.GrowTipsConfig[this.data]; + n && (i = n[e.currentTarget.powerID]), i && i.buttonUI && this.openView(i.buttonUI); + }), + (i.prototype.openView = function (e) { + switch (e.type) { + case 1: + e.param1 && t.mAYZL.ins().open(e.param1); + break; + case 2: + e.param1 && t.mAYZL.ins().open(e.param1), e.param2 && t.mAYZL.ins().open(e.param2); + break; + case 3: + e.param1 && e.param2 && t.mAYZL.ins().open(e.param1, e.param2); + break; + case 4: + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView); + var i = t.mAYZL.ins().ZzTs(t.ChangePowerfulWin); + i && + !t.mAYZL.ins().ZbzdY(t.BagGoldChangeView) && + t.mAYZL.ins().open( + t.BagGoldChangeView, + 1, + { + x: i.x, + y: i.y, + }, + { + height: i.height, + width: i.width, + }, + 10001 + ); + break; + case 5: + e.param1 && e.param2 && e.param3 && t.mAYZL.ins().open(e.param1, e.param2, e.param3); + } + }), + i + ); + })(t.BaseItemRender); + (t.ChangePowerfulItemView = e), __reflect(e.prototype, "app.ChangePowerfulItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.skinName = "ChangePowerfulSkin"), + t.setPostData({ + top: 55, + left: 200, + }), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.powerList.itemRenderer = t.ChangePowerfulItemView), + (this.powerArr = new eui.ArrayCollection()), + (this.powerList.dataProvider = this.powerArr), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(""); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.MouseScroller.bind(this.powerScroller); + var n = this.getPowerList(); + this.powerArr.replaceAll(n); + }), + (i.prototype.getPowerList = function () { + var e = []; + for (var i in t.VlaoF.GrowTipsTagConfig) { + var n = t.VlaoF.GrowTipsTagConfig[i]; + if (n && n.openparam) { + var s = t.mAYZL.ins().isCheckOpen(n.openparam); + s && e.push(n.tagid); + } + } + return e; + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.Nzfh.ins().post_gaimItemView(10001), t.MouseScroller.unbind(this.powerScroller); + }), + i + ); + })(t.gIRYTi); + (t.ChangePowerfulWin = e), __reflect(e.prototype, "app.ChangePowerfulWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.loadData(); + }), + (e.prototype.loadData = function () { + var t = this.data, + e = t.selected; + e ? (this.tarText.source = t.down) : (this.tarText.source = t.up); + }), + e + ); + })(t.BaseItemRender); + (t.ChatBtnItem = e), __reflect(e.prototype, "app.ChatBtnItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.touchEnabled = !0), e; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.img.source = this.data.img), + this.red && this.data.redadd && (this.red.updateShowFunctions = this.data.redadd), + this.red && this.data.redShow && (this.red.showMessages = this.data.redShow); + }), + (e.prototype.$onAddToStage = function (e, i) { + this.VoZqXH(this, this.mouseMove), this.EeFPm(this, this.mouseMove), t.prototype.$onAddToStage.call(this, e, i); + }), + (e.prototype.$onRemoveFromStage = function () { + this.lbpdAJ(this, this.mouseMove), this.lvpAF(this, this.mouseMove), t.prototype.$onRemoveFromStage.call(this); + }), + (e.prototype.mouseMove = function (t) { + t.type == mouse.MouseEvent.MOUSE_OUT ? (this.selectImg.visible = !1) : t.type == mouse.MouseEvent.MOUSE_OVER && (this.selectImg.visible = !0); + }), + e + ); + })(t.BaseItemRender); + (t.ChatChanSelectRender = e), __reflect(e.prototype, "app.ChatChanSelectRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.chatLab.addEventListener( + egret.TextEvent.LINK, + function (e) { + t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_SHOW_GOODS_TIPS, [ + { + info: e.text, + }, + ]); + }, + this + ); + }), + (i.prototype.dataChanged = function () { + var e = this.data, + i = ""; + if ( + ((this.playerName = e.senderName), + (this.systemGrp.visible = !1), + (this.txtGrp.x = 0), + (this.qqGrp.visible = !1), + (this.qqGrp.x = 0), + (this.bgColor.visible = !1), + (this.chatLab.x = 0), + (this.icoImage.x = 0), + Main.vZzwB.pfID == t.PlatFormID.QQGame) + ) { + var n = e.chaoWan >> 16, + s = n >> 8, + a = 255 & n, + r = 65535 & e.chaoWan; + (this.blueImg.visible = this.qqGrp.visible = s && r > 0), + (this.blueImg.source = s && r > 0 ? (1 == s ? "name_lz_pt" + (r + 1) : "name_lz_hh" + (r + 1)) : ""), + (this.blueYearImg.visible = 1 == a); + } + t.NWRFmB.ins().getCharRole(e.playerId); + this.logo.visible = !1; + var o = e.message, + l = -1 != e.message.indexOf("E:}{;"); + if ( + (l + ? ((o = ""), (this.chatLab.visible = !1), t.lEYZI.Naoc(this.chatLab), (this.bqGroup.visible = !0), this.txtGrp.addChild(this.bqGroup)) + : ((this.chatLab.visible = !0), this.txtGrp.addChild(this.chatLab), (this.bqGroup.visible = !1), t.lEYZI.Naoc(this.bqGroup)), + e.showChannelID == t.ChannelID.ChannelSystemTips) + ) + (this.systemGrp.visible = !0), + (this.txtGrp.x = this.systemGrp.width + 14), + (i = "|C:" + t.ClwSVR.WHITE_COLOR + "&T:" + o), + (this.bgColor.visible = !0), + (this.bgColor.fillColor = t.ClwSVR.CHAT_RED_COLOR), + Main.vZzwB.pfID == t.PlatFormID.QQGame && (this.qqGrp.x = 1 == this.qqGrp.visible ? 62 : 0); + else if (e.showChannelID == t.ChannelID.ChannelSecret) + (i = e.isMe ? "|C:" + t.ClwSVR.CHAT_BLUE_COLOR + "&T:" + e.senderName + " " + o : "|C:" + t.ClwSVR.CHAT_BLUE_COLOR + "&T:" + e.senderName + "[Lv" + e.level + "]=>" + o), + (this.chatLab.background = !1), + (this.bgColor.visible = !0), + (this.bgColor.fillColor = 6357187), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0)); + else if (e.showChannelID == t.ChannelID.ChannelWorld) { + var h = "" == e.senderName ? "" : e.senderName + ":"; + (i = "|C:" + t.ClwSVR.CHAT_YELLOW_COLOR + "&T:" + h + o), + (this.bgColor.visible = !0), + (this.bgColor.fillColor = 197), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0)); + } else if (e.showChannelID == t.ChannelID.ChannelNear) { + var h = "" == e.senderName ? "" : e.senderName + ":"; + (i = "|C:" + t.ClwSVR.CHAT_BLACK_COLOR + "&T:" + h + o), Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0)); + } else if (e.showChannelID == t.ChannelID.ChannelGuild) { + var h = "" == e.senderName ? "" : e.senderName + ":"; + (i = "|C:" + t.ClwSVR.CHAT_GREEN_COLOR + "&T:" + h + o), Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0)); + } else if (e.showChannelID == t.ChannelID.ChannelTeam) { + var h = "" == e.senderName ? "" : e.senderName + ":"; + (i = "|C:" + t.ClwSVR.CHAT_BROWN_COLOR + "&T:" + h + o), + (this.bgColor.visible = !0), + (this.bgColor.fillColor = 15035136), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0)); + } else + e.showChannelID == t.ChannelID.ChannelPersonal && + ((i = "|C:" + t.ClwSVR.CHAT_GREEN_COLOR + "&T:" + o), Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.qqGrp.x = 1), (this.txtGrp.x = 1 == this.qqGrp.visible ? 46 : 0))); + if (l) { + this.bqLab.textFlow = t.hETx.generateTextFlow1(i); + var p = e.message.substr(5); + this.icoImage.source = p; + } else this.chatLab.textFlow = t.hETx.generateTextFlow1(i); + e.chaoWan > 0 && Main.vZzwB.pfID != t.PlatFormID.QQGame ? ((this.logo.visible = !0), (this.chatLab.x = 15), (this.icoImage.x = 15)) : (this.logo.visible = !1); + }), + i + ); + })(t.BaseItemRender); + (t.chatListItem = e), __reflect(e.prototype, "app.chatListItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "Btn2Skin"), e; + } + return __extends(e, t), e; + })(eui.Button); + (t.ChatMenuBtnItem = e), __reflect(e.prototype, "app.ChatMenuBtnItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this); + }), + (e.prototype.onClick = function () {}), + (e.prototype.dataChanged = function () { + this.btnIcon.source = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.ChatMenuItem = e), __reflect(e.prototype, "app.ChatMenuItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.createChildren = function () { + e.prototype.createChildren.call(this), (this.gList.itemRenderer = t.ChatMenuItem); + var i = ["chat_t_2_1", "chat_t_6_1", "chat_t_3_1", "chat_t_4_1", "chat_t_5_1"]; + (this.gList.dataProvider = new eui.ArrayCollection(i)), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + (this.visible = !this.visible), + t.ckpDj.ins().sendEvent(t.ChatEvent.MENUITEM_SLECT, [ + { + indexText: this.gList.selectedItem, + indexItem: this.gList.selectedIndex, + }, + ]); + }), + (i.prototype.destroy = function () { + for (this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); this.gList.numChildren > 0; ) { + var t = this.gList.getChildAt(0); + t && (t = null), this.gList.removeChildAt(0); + } + this.gList = null; + }), + i + ); + })(t.gIRYTi); + (t.ChatMenuView = e), __reflect(e.prototype, "app.ChatMenuView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + void 0 === t && (t = null), + (this.isMe = !1), + (this.chaoWan = 0), + (this.itemSeriesText = ""), + t && + ((this.showChannelID = t.readByte()), + (this.senderName = t.readString()), + (this.message = t.readString()), + (this.level = t.readInt()), + (this.playerId = t.readNumber()), + (this.chaoWan = 0), + (this.isGoods = t.readByte()), + 1 == this.isGoods && ((this.createTime = t.readUnsignedInt()), (this.wSeries = t.readUnsignedShort()), (this.btServer = t.readByte()), (this.btReserve = t.readByte()))); + } + return t; + })(); + (t.ChatMessage = e), __reflect(e.prototype, "app.ChatMessage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.isPrivateChat = !1), + (i.priMessage = new t.ChatMessage()), + (i._chatViewType = 0), + (i._bulletFrameAry = []), + (i._bulletFrameAry2 = []), + (i._requesCDTime = 0), + (i._kfNoticeAry = []), + i.initData(), + (i.sysId = t.jDIWJt.Chat), + i.YrTisc(1, i.postChatInfo), + i.YrTisc(2, i.postSystemChat), + i.YrTisc(3, i.postPrivateChat), + i.YrTisc(4, i.postChatState), + i.YrTisc(6, i.post_LookItem), + i.YrTisc(11, i.post_9_11), + i.YrTisc(12, i.post_9_12), + i.YrTisc(15, i.post_9_15), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "chatViewType", { + get: function () { + return this._chatViewType; + }, + set: function (t) { + this._chatViewType = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.initData = function () { + t.ChatModel.ins().init(); + }), + (i.prototype.s_9_1 = function (e, i, n, s, a) { + void 0 === e && (e = 1), void 0 === i && (i = ""), void 0 === n && (n = ""); + var r = t.GlobalData.serverTime / 1e3; + if (window.prohibitText && r > 1625068680 && 1625155080 > r) { + if ( + Main.vZzwB.pfID == t.PlatFormID.PF4366 && + ("t1" == t.MiOx.serverAlias || + "t2" == t.MiOx.serverAlias || + "t3" == t.MiOx.serverAlias || + "t4" == t.MiOx.serverAlias || + "t5" == t.MiOx.serverAlias || + "h1" == t.MiOx.serverAlias || + "t7" == t.MiOx.serverAlias || + "t6" == t.MiOx.serverAlias || + "t8" == t.MiOx.serverAlias || + "t9" == t.MiOx.serverAlias || + "t10" == t.MiOx.serverAlias || + "t11" == t.MiOx.serverAlias || + "t12" == t.MiOx.serverAlias) + ) + return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + if (Main.vZzwB.pfID == t.PlatFormID.YY) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + } + if ("" != i) { + if ("@#@debug" == i) return void (t.mAYZL.ins().ZbzdY(t.DebugView) ? t.mAYZL.ins().close(t.DebugView) : t.mAYZL.ins().open(t.DebugView)); + if ("@#@kf" == i) return void t.KFManager.ins().s_33_1(); + if ("@#@onLogout" == i) return void Main.onLogout(""); + + if (!/^@\w+/.test(a) && (t.ubnV.ihUJ || Main.vZzwB.specialId == t.MiOx.srvid)) return void t.uMEZy.ins().pwYDdQ("该区不允许发言"); + + var cdTime = 2e3, + nowTime = egret.getTimer(); + if (this.chatTime) { + var curTime = Math.ceil((this.chatTime - nowTime) / 1e3); + if (0 <= curTime) { + return void t.uMEZy.ins().pwYDdQ("聊天过于频繁,请等待" + Math.max(curTime, 0) + t.CrmPU.language_Time_Sec); + } + } + this.chatTime = nowTime + cdTime; + + var o = this.MxGiq(1); + o.writeByte(e), + o.writeString(i), + o.writeString(n), + o.writeByte(s.isGood), + s.isGood && (o.writeDouble(s.series.createTime), o.writeUnsignedShort(s.series.wSeries), o.writeByte(s.series.btServer), o.writeByte(s.series.btReserve)); + var l = t.NWRFmB.ins().getPayer, + h = l.propSet.getForbidenTime(); + if (h && h > Math.floor(t.GlobalData.serverTime / 1e3)) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips158); + var p = 2, + u = ""; + t.GameMap.fubenID; + if (e) u = l.propSet.getName(); + else { + if ("" == n) return; + (p = 1), (u = n); + } + + var xhr = new XMLHttpRequest(), + params = "&do=chat"; + params += "&server_id=" + t.MiOx.serverAlias; + params += "&account=" + t.MiOx.openID; + params += "&token=" + t.MiOx.token; + params += "&role_id=" + (t.ubnV.ihUJ && t.KFManager.ins().originalRoleId ? t.KFManager.ins().originalRoleId : t.MiOx.roleId); + params += "&channel_id=" + e; + params += "&content=" + a; + params += "&cross=" + (t.ubnV.ihUJ ? 1 : 0); + xhr.open("POST", Main.vZzwB.reportURL + params, !0), xhr.send(null); + FzTZ.reporting(t.ReportDataEnum.Chat, { + chatType: p, + receiveName: u, + chatContent: a, + gameSceneId: e, + channelId: e, + }); + var c = this; + if (Main.vZzwB.pfID == t.PlatFormID.HUYU37) { + var g = 1 == p ? "&to_username=" + u + "&to_actor=" + u + "&to_actor_id" + u : "", + d = 2 == e ? "&guildid=" + l.propSet.getGuildId : "", + m = + "&game_key=" + + window.game + + "&sid=" + + (window.userInfo.server % 2e4) + + "&username=" + + window.userInfo.uid + + "&actor=" + + u + + "&actor_id=" + + t.MiOx.roleId + + g + + "&content=" + + i + + "&channel=" + + e + + d + + "&time=" + + Date.parse(new Date().toString()) / 1e3 + + "&level=" + + l.propSet.mBjV() + + "&zsLevel=" + + l.propSet.MzYki(), + f = new XMLHttpRequest(); + (f.onreadystatechange = function () { + if (4 == f.readyState && 200 == f.status) { + JSON.parse(f.responseText); + 1 == parseInt(f.responseText) ? c.evKig(o) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips151); + } + }), + f.open("GET", Main.vZzwB.checkUrl + m, !0), + f.send(null); + } else if (Main.vZzwB.pfID == t.PlatFormID.xiaoqi) { + var f = new XMLHttpRequest(); + f.onreadystatechange = function () { + if (4 == f.readyState && 200 == f.status) { + JSON.parse(f.responseText); + 1 == parseInt(f.responseText) ? c.evKig(o) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips151); + } + }; + var v = KdbLz.qOtrbE.IsIOS ? 3 : 1; + f.open("GET", Main.vZzwB.checkUrl + "&guid=" + t.MiOx.openID + "&detectionMessage=" + i + "&type=" + v, !0), f.send(null); + } else this.evKig(o); + } + }), + (i.prototype.postChatInfo = function (e) { + var i = new t.ChatMessage(e); + i && this.insertChatMsg(i); + }), + (i.prototype.postChatState = function (e) { + var i = e.readByte(); + 1 == i && + (1 == this.isPrivateChat && (t.ChatModel.ins().setPrivateData(this.priMessage), t.ChatModel.ins().setAllChatData(this.priMessage)), + t.ckpDj.ins().sendEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT)); + }), + (i.prototype.lookItem = function (t) { + var e = this.MxGiq(6); + -1 != t.indexOf("e") ? e.writeDouble(t) : e.writeNumber(t), this.evKig(e); + }), + (i.prototype.post_LookItem = function (e) { + var i = e.readByte(); + if (i) { + var n = new t.userItem(e); + return n; + } + return null; + }), + (i.prototype.insertChatMsg = function (e) { + if (t.ubnV.ihUJ && "" != e.senderName) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getName(), + s = n.indexOf("."), + a = e.senderName.indexOf("."); + if (((i = null), n.substring(0, s) != e.senderName.substring(0, a))) return (n = null), (s = null), void (a = null); + } + switch (e.showChannelID) { + case t.ChannelID.ChannelWorld: + t.ChatModel.ins().setWorldData(e); + break; + case t.ChannelID.ChannelNear: + if (!t.ChatView.isCloseNearChannel) { + if ((t.ChatModel.ins().setNearData(e), -1 != e.message.indexOf("E:}{;"))) break; + var r = "|C:" + t.ClwSVR.WHITE_COLOR + "&T:" + e.senderName + ":" + e.message, + o = t.NWRFmB.ins().getPayer.charName.replace(/[\\]/g, ""); + o == e.senderName && t.NWRFmB.ins().getPayer.setNearChat(r), t.NWRFmB.ins().FindChatNearPlayer(e); + } + break; + case t.ChannelID.ChannelGuild: + t.ChatView.isCloseGuildChannel || t.ChatModel.ins().setGuildData(e); + break; + case t.ChannelID.ChannelTeam: + t.ChatModel.ins().setTeamData(e); + break; + case t.ChannelID.ChannelSecret: + t.ChatView.isClosePrivateChannel || t.ChatModel.ins().setPrivateData(e); + break; + case t.ChannelID.ChannelSystemTips: + t.ChatModel.ins().setSystemData(e); + } + (e.showChannelID == t.ChannelID.ChannelNear && t.ChatView.isCloseNearChannel) || + (e.showChannelID == t.ChannelID.ChannelGuild && t.ChatView.isCloseGuildChannel) || + (e.showChannelID == t.ChannelID.ChannelSecret && t.ChatView.isClosePrivateChannel) || + t.ChatModel.ins().setAllChatData(e); + }), + (i.prototype.setChatPrivatePlayerListData = function (t) { + this._chatPrivatePlayerListData || (this._chatPrivatePlayerListData = new eui.ArrayCollection()); + for (var e = 0; e < this._chatPrivatePlayerListData.length; e++) { + var i = this._chatPrivatePlayerListData.getItemAt(e); + if (i == t) return; + } + this._chatPrivatePlayerListData.addItem(t); + }), + (i.prototype.getChatPrivatePlayerListData = function () { + return this._chatPrivatePlayerListData; + }), + (i.prototype.postAddExp = function () {}), + (i.prototype.postSystemChat = function (e) { + var i = e.readUnsignedShort(); + if (e.length > 0) { + var n = e.readString(); + //console.log(i + ':' + n); + switch (i) { + case 1: + t.uMEZy.ins().showJingYanTips(n); + break; + case 2: + var s = t.NWRFmB.ins().getPayer; + if (s && t.GameMap.isBubble) { + var a = s.propSet.getRechargeSum(); + a && (n += "|C:0x28ee01&T:(特权+20%)|"), !t.GameMap.scenes || (3 != t.GameMap.scenes.sceneid && 249 != t.GameMap.scenes.sceneid) || this.postAddExp(); + } + var r = t.VipData.ins().getMyVipLv(); + if (r >= 3) { + var o = t.VipData.ins().getVipDataByLv(r); + o && (n += t.zlkp.replace(t.CrmPU.language_Omission_txt121, o.name)); + } + t.uMEZy.ins().showJingYanTips(n); + break; + case 3: + t.uMEZy.ins().showMoneyTips(n); + break; + case 4: + t.uMEZy.ins().showFightTips(n); + break; + case 5: + t.uMEZy.ins().IrCm(n); + break; + case 6: + break; + case 7: + break; + case 8: + case 9: + this.postAddnotice(n, 2); + break; + case 10: + t.mAYZL.ins().ZbzdY(t.GongGaoWin) || t.mAYZL.ins().open(t.GongGaoWin, n); + break; + case 11: + this.postAddnotice(n, 1); + break; + case 12: + this.postAddnotice(n, 0); + break; + case 13: + this._bulletFrameAry.push(n), t.mAYZL.ins().ZbzdY(t.BulletFrameView) || t.mAYZL.ins().open(t.BulletFrameView); + break; + case 14: + t.UyfaJ.addBoss(n); + break; + case 15: + this._bulletFrameAry2.push(n), t.mAYZL.ins().ZbzdY(t.BulletFrameView2) || t.mAYZL.ins().open(t.BulletFrameView2); + break; + case 16: + t.mAYZL.ins().open(t.JumpTipsView, n, "app.SetUpView", [6]); + break; + case 17: + t.uMEZy.ins().IrCm(n); + break; + case 18: + t.uMEZy.ins().IrCm(n); + break; + case 19: + t.uMEZy.ins().IrCm(n); + break; + case 20: + t.mAYZL.ins().open(t.TipsInsuffResourcesView, ZnGy.qatYuanbao); + break; + case 21: + t.VersionUpdateView.openView(); + default: + t.uMEZy.ins().IrCm(n); + } + } + }), + (i.prototype.getBulletFrameStr = function () { + return this._bulletFrameAry.length ? this._bulletFrameAry.shift() : null; + }), + (i.prototype.getBulletFrameStr2 = function () { + return this._bulletFrameAry2.length ? this._bulletFrameAry2.shift() : null; + }), + (i.prototype.postAddnotice = function (t, e) { + return void 0 === e && (e = 0), [t + "", e]; + }), + (i.prototype.postPrivateChat = function (t) {}), + Object.defineProperty(i.prototype, "requesCDTime", { + get: function () { + return this._requesCDTime; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "kfNoticeAry", { + get: function () { + return this._kfNoticeAry; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.requestKFNotice = function () { + var e = egret.getTimer(); + if (e - this._requesCDTime > 3e3) { + this._requesCDTime = e + 3e3; + var i = 0; + this._kfNoticeAry.length && (i = this._kfNoticeAry[this._kfNoticeAry.length - 1].time); + var n = this.MxGiq(11); + n.writeByte(5), n.writeInt(t.MiOx.srvid), n.writeUnsignedInt(i), this.evKig(n); + } + }), + (i.prototype.post_9_11 = function (t) { + t.readByte(); + for (var e = t.readInt(), i = 0; e > i; i++) { + var n = t.readByte(), + s = t.readUnsignedInt(), + a = t.readString(); + this._kfNoticeAry.push({ + type: n, + time: s, + msg: a, + }); + } + return this._kfNoticeAry; + }), + (i.prototype.post_9_12 = function (e) { + t.ChatModel.ins().removeAllArr(); + }), + (i.prototype.post_9_15 = function (e) { + for (var i = e.readUnsignedInt(), n = t.ChatModel.ins().getAllChatData(), s = t.ChatModel.ins().getAllMsgData(), a = n.source.length - 1; a >= 0; a--) { + var r = n.source[a]; + ((0 != i && r.roleID && r.roleID == i) || 1 == r.isMe) && n.removeItemAt(a); + } + for (var o = t.ChatModel.ins().getWorldData(), a = o.source.length - 1; a >= 0; a--) { + var l = o.source[a]; + ((0 != i && l.roleID && l.roleID == i) || 1 == l.isMe) && o.removeItemAt(a); + } + for (var h = t.ChatModel.ins().getGuildData(), a = h.source.length - 1; a >= 0; a--) { + var p = h.source[a]; + ((0 != i && p.roleID && p.roleID == i) || 1 == p.isMe) && h.removeItemAt(a); + } + for (var u = t.ChatModel.ins().getNeardData(), a = u.source.length - 1; a >= 0; a--) { + var c = u.source[a]; + ((0 != i && c.roleID && c.roleID == i) || 1 == c.isMe) && u.removeItemAt(a); + } + for (var g = t.ChatModel.ins().getPrivateData(), a = g.source.length - 1; a >= 0; a--) { + var d = g.source[a]; + ((0 != i && d.roleID && d.roleID == i) || 1 == d.isMe) && g.removeItemAt(a); + } + for (var m = t.ChatModel.ins().getTeamData(), a = m.source.length - 1; a >= 0; a--) { + var f = m.source[a]; + ((0 != i && f.roleID && f.roleID == i) || 1 == f.isMe) && m.removeItemAt(a); + } + for (var v = s.length - 1; v >= 0; v--) { + var _ = s[v]; + ((0 != i && _.roleID && _.roleID == i) || 1 == _.isMe) && s.splice(v, 1); + } + }), + i + ); + })(t.DlUenA); + (t.ChatMgr = e), __reflect(e.prototype, "app.ChatMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._allMsg = []), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function () { + (this._allMsg = []), + (this._allChatArr = new eui.ArrayCollection()), + (this._worldChatArr = new eui.ArrayCollection()), + (this._guildChatArr = new eui.ArrayCollection()), + (this._privateChatArr = new eui.ArrayCollection()), + (this._systemChatArr = new eui.ArrayCollection()), + (this._nearChatArr = new eui.ArrayCollection()), + (this._teamChatArr = new eui.ArrayCollection()), + (this._personalLogArr = new eui.ArrayCollection()); + }), + (i.prototype.setAllChatData = function (t) { + if (this._allChatArr.length >= 200) { + var e = this._allChatArr.removeItemAt(0); + this.removeAllChatMsg(this._nearChatArr, e); + } + this._allChatArr.addItem(t), this._allMsg.length >= 200 && this._allMsg.shift(), this._allMsg.push(t); + }), + (i.prototype.getAllChatData = function () { + return this._allChatArr; + }), + (i.prototype.getAllMsgData = function () { + return this._allMsg; + }), + (i.prototype.setWorldData = function (t) { + if (this._worldChatArr.length >= 200) { + var e = this._worldChatArr.removeItemAt(0); + this.removeAllChatMsg(this._worldChatArr, e); + } + this._worldChatArr.addItem(t); + }), + (i.prototype.getWorldData = function () { + return this._worldChatArr; + }), + (i.prototype.setNearData = function (t) { + if (this._nearChatArr.length >= 200) { + var e = this._nearChatArr.removeItemAt(0); + this.removeAllChatMsg(this._nearChatArr, e); + } + this._nearChatArr.addItem(t); + }), + (i.prototype.getNeardData = function () { + return this._nearChatArr; + }), + (i.prototype.setGuildData = function (t) { + if (this._guildChatArr.length >= 200) { + var e = this._guildChatArr.removeItemAt(0); + this.removeAllChatMsg(this._guildChatArr, e); + } + this._guildChatArr.addItem(t); + }), + (i.prototype.getTeamData = function () { + return this._teamChatArr; + }), + (i.prototype.setTeamData = function (t) { + if (this._teamChatArr.length >= 200) { + var e = this._teamChatArr.removeItemAt(0); + this.removeAllChatMsg(this._teamChatArr, e); + } + this._teamChatArr.addItem(t); + }), + (i.prototype.getGuildData = function () { + return this._guildChatArr; + }), + (i.prototype.setPrivateData = function (t) { + if (this._privateChatArr.length >= 200) { + var e = this._privateChatArr.removeItemAt(0); + this.removeAllChatMsg(this._privateChatArr, e); + } + this._privateChatArr.addItem(t); + }), + (i.prototype.getPrivateData = function () { + return this._privateChatArr; + }), + (i.prototype.setPersonalData = function (e) { + if (this._personalLogArr) { + if (this._personalLogArr.length >= 200) { + var i = this._personalLogArr.removeItemAt(0); + this.removeAllChatMsg(this._personalLogArr, i); + } + var n = new t.ChatMessage(); + (n.message = e), (n.showChannelID = t.ChannelID.ChannelPersonal), this._personalLogArr.addItem(n); + } + }), + (i.prototype.getPersonalData = function () { + return this._personalLogArr; + }), + (i.prototype.getSystemData = function () { + return this._systemChatArr; + }), + (i.prototype.setSystemData = function (t) { + return this._systemChatArr.addItem(t); + }), + (i.prototype.removeAllChatMsg = function (t, e) { + var i = t.getItemIndex(e); + i >= 0 && t.removeItemAt(i); + }), + (i.prototype.removeAllArr = function () { + this._allMsg && (this._allMsg = []), + this._allChatArr && this._allChatArr.removeAll(), + this._worldChatArr && this._worldChatArr.removeAll(), + this._guildChatArr && this._guildChatArr.removeAll(), + this._privateChatArr && this._privateChatArr.removeAll(), + this._systemChatArr && this._systemChatArr.removeAll(), + this._nearChatArr && this._nearChatArr.removeAll(), + this._teamChatArr && this._teamChatArr.removeAll(), + this._personalLogArr && this._personalLogArr.removeAll(); + }), + i + ); + })(t.DlUenA); + (t.ChatModel = e), __reflect(e.prototype, "app.ChatModel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return e.init(), e; + } + return ( + __extends(e, t), + (e.prototype.init = function () { + this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this), this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (e.prototype.onClick = function () {}), + (e.prototype.dataChanged = function () { + this.playNameLb.text = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.ChatPrivatePlayerListItem = e), __reflect(e.prototype, "app.ChatPrivatePlayerListItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._type = 0), (i.skinName = "ChatShowFriendOrNearListSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.txt_enter_name.text = t.CrmPU.language_Chat_Enter_Name_Text), + (this.txt_list_name.text = t.CrmPU.language_Chat_Name_List_Text), + (this.ConfirmBtn.label = t.CrmPU.language_Common_59); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + i[0] && (this._type = i[0]), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System11), + this.updateView(t.ChatPrivatePlayerListItem, t.ChatMgr.ins().getChatPrivatePlayerListData()), + this.playerList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.addTouchEndEvent(this.ConfirmBtn, this.onSendChatPrivateName); + }), + (i.prototype.onSendChatPrivateName = function () { + if (1 == this._type) { + if ("" == this.playerNameText.text.trim()) return; + t.ckpDj.ins().sendEvent(t.ChatEvent.PLAY_NAME_SLECT, [ + { + indexText: this.playerNameText.text, + }, + ]), + t.mAYZL.ins().close(this); + } else 2 == this._type && "" != this.playerNameText.text && (t.XZAqnu.ins().send_13_1(0, this.playerNameText.text), t.mAYZL.ins().close(this)); + }), + (i.prototype.onChange = function () { + this.playerNameText.text = this.playerList.selectedItem; + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.fEHj(this.ConfirmBtn, this.onSendChatPrivateName), + this.playerList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + t.KHNO.ins().removeAll(this); + }), + (i.prototype.updateView = function (t, e) { + (this.playerList.itemRenderer = t), (this.playerList.dataProvider = e); + }), + i + ); + })(t.gIRYTi); + (t.ChatShowFriendOrNearListView = e), __reflect(e.prototype, "app.ChatShowFriendOrNearListView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.cruIndex = 0), + (t.channelID = 1), + (t._tempChatStr = ""), + (t.isGoodsChat = !1), + (t.pattern = /\[.*?\]\]/g), + (t.includeGoodsChatInfo = ""), + (t._touchStatus = !1), + (t._distance = new egret.Point()), + (t._isRoll = !0), + (t.currentExp = 0), + (t.chanArr = [ + { + img: "m_chat_t_shijie", + index: 0, + }, + { + img: "m_chat_t_fujin", + index: 1, + }, + { + img: "m_chat_t_hanghui", + index: 2, + }, + { + img: "m_chat_t_zudui", + index: 3, + }, + { + img: "m_chat_t_siliao", + index: 4, + }, + ]), + (t.isDownEnter = !0), + (t.lastindex = 0), + (t.msgInfo = {}), + (t.lastMsg = ""), + (t.sendMsg = !1), + (t.goodsItemId = 0), + (t.skinName = "ChatSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype._pkClickFunction = function (t) { + (this.nearBy.ImageDisplay.source = t.img), + (this.channelID = t.index), + 4 == t.index + ? ((this.showPlayerListBtn.visible = !0), (this.chatInput.x = this.showPlayerListBtn.width + 85), (this.chatInput.width = this.chatInput.width - this.chatInput.x + 70)) + : ((this.showPlayerListBtn.visible = !1), (this.chatInput.width = 480), (this.chatInput.x = 76)); + }), + (i.prototype.updatePersonalData = function () { + var e = t.NWRFmB.ins().getPayer; + if (0 != this.currentExp) { + if (e && e.propSet) { + var i = e.propSet.getEXP(), + n = i - this.currentExp; + (this.currentExp = i), n > 0 && t.ChatModel.ins().setPersonalData("" + t.CrmPU.language_CURRENCY_NAME_17 + n); + } + } else this.currentExp = e.propSet.getEXP(); + }), + (i.prototype.updateChatData = function () { + (this.isGoodsChat = !1), this.updateList(!0); + }), + (i.prototype.clearChatData = function () { + (this.isGoodsChat = !1), this.updateList(!0), this.chatArr.refresh(); + }), + (i.prototype.chatShowTips = function (e) { + var i = e[0], + n = i.info.split(","); + if (-1 == n[0]) { + var s = t.NWRFmB.ins().getPayer; + if (s) { + var a = s.ifFindTask(+n[3], +n[1], +n[2]); + if (a && -1 == a.x && -1 == a.y) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips121); + s.setTask(+n[3], +n[1], +n[2], -1, -1, 0, +n[4]); + } + } else -2 == n[0] ? t.mAYZL.ins().openViewId(+n[1]) : (this.seriesId = n[2]); + }), + (i.prototype.lookItemFunction = function (e) { + if (e && 1 == t.ChatMgr.ins().chatViewType) { + t.ChatMgr.ins().chatViewType = 0; + var i = t.VlaoF.StdItems[e.wItemId]; + if (i) { + var n = t.TipsType.TIPS_EQUIP; + (n = i.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), t.uMEZy.ins().LJzNt(this, n, e, this.clickPoint); + } + } + }), + (i.prototype.showTips = function (e) { + var i = (this.chatList.selectedItem, e.currentTarget); + i && this.seriesId && ((this.clickPoint.x = e.stageX), (this.clickPoint.y = e.stageY), (t.ChatMgr.ins().chatViewType = 1), t.ChatMgr.ins().lookItem(this.seriesId), (this.seriesId = 0)); + }), + (i.prototype._onScrollerMouseWheelChange = function (t) { + if (!(this.barList.viewport.measuredHeight < this.barList.height || this.barList.viewport.contentHeight <= this.barList.height)) { + var e = 0, + i = 0; + t.data < 0 ? ((e = this.scrollBar.value - 20), (i = this.barList.viewport.scrollV + 20)) : ((e = this.scrollBar.value + 20), (i = this.barList.viewport.scrollV - 20)), + (this.scrollBar.value = Math.max(Math.min(e, this.barList.viewport.contentHeight - this.barList.height), 0)), + (this.barList.viewport.scrollV = Math.max(Math.min(i, this.barList.viewport.contentHeight - this.barList.height), 0)); + } + }), + (i.prototype.onScrollerChange = function (t) { + this.barList.viewport.scrollV = Math.max(Math.min(this.barList.viewport.scrollV, this.barList.viewport.contentHeight - this.barList.height), 0); + var e = this.barList.viewport.scrollV, + i = Math.abs(e) / (this.barList.viewport.contentHeight - this.barList.height), + n = i * this.scrollBar.maximum; + this.scrollBar.value = this.scrollBar.maximum - n; + }), + (i.prototype.changeHandler = function (t) { + var e = t.target.value; + this.barList.viewport.scrollV = -(e - (this.barList.viewport.contentHeight - this.barList.height)); + }), + (i.prototype.onTouchDouble = function () { + if (this.chatList.selectedItem) { + var e = this.chatList.selectedItem; + if ("" == e.senderName || e.isMe || t.NWRFmB.ins().getPayer.recog == e.playerId) + return void egret.TouchEvent.dispatchTouchEvent(t.aTwWrO.ins().getStage(), egret.TouchEvent.TOUCH_BEGIN, !0, !0, this.chatInput.x, this.chatInput.y, 0, !0); + (this.nearBy.ImageDisplay.source = "m_chat_t_siliao"), + (this.channelID = 4), + (this.showPlayerListBtn.text = e.senderName), + (this.showPlayerListBtn.visible = !0), + (this.chatInput.x = this.showPlayerListBtn.width + 85), + (this.chatInput.width = this.chatInput.width - this.chatInput.x + 70); + } + }), + (i.prototype.onShowPrivateName = function (t) { + var e = t[0]; + (this.showPlayerListBtn.text = e.indexText), this.showChatMenu(); + }), + (i.prototype.keyDown = function (e) { + if (e == KdbLz.KeyCode.KC_ENTER) { + if (this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text) return; + var i = ""; + if ("" != this.chatInput.text) { + if (this.chatInput.text.length > 120) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ChatInput_OverLen); + this.getChannelId(this.channelID) == t.ChannelID.ChannelSecret + ? (this.priChatMeSendMsg(this.chatInput.text), (i = this.showPlayerListBtn.text.toString().trim())) + : (t.ChatMgr.ins().isPrivateChat = !1); + var n = "", + s = void 0; + this.isGoodsChat + ? ((n = this.includeGoodsChatInfo), + (s = { + isGood: 1, + series: this.infoTemp.series, + })) + : ((n = this.chatInput.text), + (s = { + isGood: 0, + })); + var a = this.chatInput.text; + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = n), + (this.msgInfo.target = i), + (this.msgInfo.goodsObj = s), + (this.msgInfo.contentStr = a), + t.edHC.ins().qqHallTextFiltering(n, t.QQHallMsgType.msgInfo), + (this.sendMsg = !0)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = n), + (this.msgInfo.target = i), + (this.msgInfo.goodsObj = s), + (this.msgInfo.contentStr = a), + t.edHC.ins().yyHallTextFiltering(n, t.YYHallMsgType.chatMsg), + (this.sendMsg = !0)) + : t.ChatMgr.ins().s_9_1(this.getChannelId(this.channelID), n, i, s, a); + } else + this.chatInput.dispatchEvent(new egret.Event(egret.FocusEvent.FOCUS_OUT)), + egret.TouchEvent.dispatchTouchEvent(t.aTwWrO.ins().getStage(), egret.TouchEvent.TOUCH_BEGIN, !0, !0, 0, 0, 0, !0), + (this.chatInput.text = t.CrmPU.language_Chat_ShowInput_Tips); + } + }), + (i.prototype.priChatMeSendMsg = function (e) { + if (this.showPlayerListBtn.text.toString().trim() != t.CrmPU.language_Chat_Set_Text) { + var i = this.showPlayerListBtn.text.toString().trim(), + n = new t.ChatMessage(); + (n.senderName = "/" + i), (n.message = e), (n.showChannelID = t.ChannelID.ChannelSecret), (n.isMe = !0), (t.ChatMgr.ins().isPrivateChat = !0), (t.ChatMgr.ins().priMessage = n); + } + }), + (i.prototype.keyUp = function (e) { + e == KdbLz.KeyCode.KC_ENTER && this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text; + }), + (i.prototype.onClearChatInput = function () { + -1 == this.lastMsg.indexOf("E:}{;") && ((this.chatInput.text = ""), (this.isGoodsChat = !1), (this.includeGoodsChatInfo = ""), (this.goodsItemId = 0)), (this.lastMsg = ""); + }), + (i.prototype.updateList = function (e) { + switch ((void 0 === e && (e = !1), this.cruIndex)) { + case 0: + this.chatArr.replaceAll(t.ChatModel.ins().getAllMsgData()), this.refScroller(); + } + }), + (i.prototype.refScroller = function () { + t.KHNO.ins().remove(this.refushBarList, this), t.KHNO.ins().tBiJo(10, 2, this.refushBarList, this); + }), + (i.prototype.refushBarList = function () { + if ((this.barList.validateNow(), this.barList.viewport.contentHeight > this.barList.viewport.height)) { + this.barList.viewport.scrollV = this.barList.viewport.contentHeight - this.barList.viewport.height; + var t = this.barList.viewport.scrollV, + e = Math.abs(t) / (this.barList.viewport.contentHeight - this.barList.height), + i = e * this.scrollBar.maximum; + this.scrollBar.value = this.scrollBar.maximum - i; + } + this.scrollBar.maximum = this.barList.viewport.contentHeight - this.barList.height; + }), + (i.prototype.refushBarListTop = function () { + this.barList.viewport.scrollV = 0; + }), + (i.prototype.onCloseMenu = function () { + (this.chatMenuView.visible = !1), t.uMEZy.ins().closeTips(); + }), + (i.prototype.onShowChatMenu = function (t) { + var e = t[0], + i = ["m_chat_t_shijie", "m_chat_t_fujin", "m_chat_t_hanghui", "m_chat_t_zudui", "m_chat_t_siliao"]; + (this.nearBy.ImageDisplay.source = i[e.indexItem]), + (this.channelID = e.indexItem), + 4 == e.indexItem + ? ((this.showPlayerListBtn.visible = !0), (this.chatInput.x = this.showPlayerListBtn.width + 85), (this.chatInput.width = this.chatInput.width - this.chatInput.x + 70)) + : ((this.showPlayerListBtn.visible = !1), (this.chatInput.width = 507), (this.chatInput.x = 76)); + }), + (i.prototype.showChatMenu = function () { + (this.nearBy.ImageDisplay.source = "m_chat_t_siliao"), + (this.channelID = 4), + (this.showPlayerListBtn.visible = !0), + (this.chatInput.x = this.showPlayerListBtn.width + 85), + (this.chatInput.width = this.chatInput.width - this.chatInput.x + 70); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + (this.clickPoint = new egret.Point()), + (this.barList.verticalScrollBar.autoVisibility = !1), + (this.barList.verticalScrollBar.visible = !1), + (this.barList.viewport = this.chatList), + (this.chatList.itemRenderer = t.chatListItem), + (this.chatArr = new eui.ArrayCollection()), + (this.chatList.dataProvider = this.chatArr), + (this.chatMenuView.visible = !1), + (this.showPlayerListBtn.visible = !1), + (this.cruIndex = 0), + this.updateList(!0), + (this.barList.scrollPolicyH = eui.ScrollPolicy.OFF), + this.chatInput.addEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.chatInput.addEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOn, this), + this.chatInput.addEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + this.scrollBar.addEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + t.ckpDj.ins().addEvent(t.ChatEvent.MENUITEM_SLECT, this.onShowChatMenu, this), + t.ckpDj.ins().addEvent(t.ChatEvent.GOODS_SHOW, this.onShowGoods, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.onClearChatInput, this), + t.ckpDj.ins().addEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CHAT_SHOW_GOODS_TIPS, this.chatShowTips, this), + this.vKruVZ(this.sendBtn, this.onClick), + this.vKruVZ(this.nearBy, this.onClick), + this.vKruVZ(this.showPlayerListBtn, this.onClick), + KdbLz.os.KeyBoard.addKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.addKeyUp(this.keyUp, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_TAP, this.stageBegin, this), + this.chatList.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + this.barList.addEventListener(eui.UIEvent.CHANGE, this.onScrollerChange, this), + this.vKruVZ(this.chatList, this.showTips), + this.HFTK(t.ChatMgr.ins().postChatInfo, this.updateChatData), + this.HFTK(t.ChatMgr.ins().postPrivateChat, this.updateChatData), + this.HFTK(t.ChatMgr.ins().post_9_12, this.clearChatData), + this.HFTK(t.ChatMgr.ins().post_9_15, this.clearChatData), + t.ckpDj.ins().addEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChatData, this), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updatePersonalData), + this.HFTK(t.ChatMgr.ins().post_LookItem, this.lookItemFunction), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendMsg), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendMsg), + (this.bgInput.visible = !1), + (this.showPlayerListBtn.text = t.CrmPU.language_Chat_Set_Text), + (this.chatInput.text = t.CrmPU.language_Chat_ShowInput_Tips), + (this.chatInput.prompt = t.CrmPU.language_Chat_ShowInput_Tips), + t.MouseScroller.bind(this.barList), + t.MouseScroller.addCallbackFunction(this.barList, this._onScrollerMouseWheelChange.bind(this)), + (this.chanSelect.setClickFunction = this._pkClickFunction.bind(this)), + this.chanSelect.itemRenderer(t.MainSelectRender, "ChatSelectArrItem"), + (this.chanSelect.dataProvider = this.chanArr); + for (var s, a = 0; 43 > a; a++) + (s = this.faceImgGrpup.getChildByName("face_" + a)), (s.visible = !0), (s.face = "E:}{;chat_bqb_" + (a + 1)), (s.source = "chat_bqb_" + (a + 1)), this.vKruVZ(s, this.onClickFace); + }), + (i.prototype.stageBegin = function (t) { + this.faceBtn.hitTestPoint(t.stageX, t.stageY) ? (this.faceGrpup.visible = !this.faceGrpup.visible) : (this.faceGrpup.visible = !1); + }), + (i.prototype.onClickFace = function (t) { + this.faceGrpup.visible = !1; + var e = t.currentTarget.face; + this.sendFunction(2, e); + }), + (i.prototype.updateView = function (t, e) { + (this.chatList.itemRenderer = t), (this.chatList.dataProvider = e); + }), + (i.prototype.getChannelId = function (e) { + var i = null; + switch (e) { + case 0: + i = t.ChannelID.ChannelWorld; + break; + case 1: + i = t.ChannelID.ChannelNear; + break; + case 2: + i = t.ChannelID.ChannelGuild; + break; + case 3: + i = t.ChannelID.ChannelTeam; + break; + case 4: + i = t.ChannelID.ChannelSecret; + break; + case 5: + i = t.ChannelID.ChannelPersonal; + } + return i; + }), + (i.prototype.sendFunction = function (e, i) { + void 0 === e && (e = 1), void 0 === i && (i = ""); + var n = ""; + if ( + (1 == e && (i = this.chatInput.text), + (this.lastMsg = i), + i != t.CrmPU.language_Chat_ShowInput_Tips && (i.length > 40 && t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ChatInput_OverLen), "" != i)) + ) { + this.getChannelId(this.channelID) == t.ChannelID.ChannelSecret ? (this.priChatMeSendMsg(i), (n = this.showPlayerListBtn.text.toString().trim())) : (t.ChatMgr.ins().isPrivateChat = !1); + var s = "", + a = void 0; + this.isGoodsChat + ? ((s = this.includeGoodsChatInfo), + (a = { + isGood: 1, + series: this.infoTemp.series, + })) + : ((s = i), + (a = { + isGood: 0, + })); + var r = i; + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = s), + (this.msgInfo.target = n), + (this.msgInfo.goodsObj = a), + (this.msgInfo.contentStr = r), + t.edHC.ins().qqHallTextFiltering(s, t.QQHallMsgType.msgInfo), + (this.sendMsg = !0)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = s), + (this.msgInfo.target = n), + (this.msgInfo.goodsObj = a), + (this.msgInfo.contentStr = r), + t.edHC.ins().yyHallTextFiltering(s, t.YYHallMsgType.chatMsg), + (this.sendMsg = !0)) + : t.ChatMgr.ins().s_9_1(this.getChannelId(this.channelID), s, n, a, r); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sendBtn: + this.sendFunction(1); + break; + case this.nearBy: + this.chanSelect.showView(); + break; + case this.showPlayerListBtn: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.mAYZL.ins().open(t.ChatShowFriendOrNearListView, 1); + } + }), + (i.prototype.textChange = function (t) { + this.textRresolution(t.target.text); + }), + (i.prototype.textRresolution = function (t) { + var e = /\[.*?\]\]/g, + i = t.replace(e, this._tempChatStr); + this.pattern.test(this.chatInput.text) || ((this._tempChatStr = ""), (this.isGoodsChat = !1)), (this.pattern.lastIndex = 0), (this.includeGoodsChatInfo = i), (this.goodsItemId = 0); + }), + (i.prototype.getExecStrs = function (t) { + var e = /\[.*?\]\]/g, + i = [], + n = null; + do (n = e.exec(t)), n && i.push(n[0]); + while (n); + return i; + }), + (i.prototype.onShowGoods = function (e) { + "" == this.chatInput.text && (this.chatInput.text = " "); + var i = e[0]; + if (null != i) { + this.infoTemp = i.info; + var n = 10001, + s = i.info; + if (s.wItemId != this.goodsItemId) { + var a = t.VlaoF.StdItems[s.wItemId]; + this.goodsItemId = s.wItemId; + var r = 5395542, + o = "", + l = "", + h = ""; + a && + ((r = t.ClwSVR.GOODS_COLOR[a.showQuality]), + (o = "|E:1," + n + "," + s.series.createTime + ",&C:7232324&T:[" + a.name + "]"), + (l = "[" + a.name + "]"), + (h = "|E:" + a.id + "," + n + "," + s.series.createTime + ",&U:&C:" + r + "&T:" + a.name + "|")); + var p = [], + u = ""; + if (this.pattern.test(this.chatInput.text)) { + this.pattern.lastIndex = 0; + var c = this.chatInput.text.indexOf(l); + if (-1 != c) return; + var g = this.getExecStrs(this.chatInput.text), + d = this.chatInput.text.replace(g[0], "|"), + m = d.split("|"); + if ("" == m[0] || "" == m[1]) { + var f = this.chatInput.text.search(d); + "" == m[0] + ? f > 0 + ? ((this._tempChatStr = h + m[1]), (u = o + m[1])) + : ((this._tempChatStr = m[1] + h), (u = m[1] + o)) + : f > 0 + ? ((this._tempChatStr = h + m[0]), (u = o + m[0])) + : ((this._tempChatStr = m[0] + h), (u = m[0] + o)); + } else (this._tempChatStr = m[0] + h + m[1]), (u = m[0] + o + m[1]); + this.chatInput.textFlow = t.hETx.generateTextFlow1(u); + } else + (this.pattern.lastIndex = 0), + this.chatInput.text == t.CrmPU.language_Chat_ShowInput_Tips ? (this._tempChatStr = h) : ((p = this.chatInput.textFlow), (this._tempChatStr = this.chatInput.text + h)), + (this.chatInput.textFlow = p.concat(t.hETx.generateTextFlow1(o))); + (this.includeGoodsChatInfo = this._tempChatStr), (this.isGoodsChat = !0); + } + } + }), + (i.prototype.textFocusOn = function (e) { + e.type == egret.FocusEvent.FOCUS_IN + ? (this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text && (this.chatInput.text = ""), (this.bgInput.visible = !0)) + : (this.bgInput.visible = !1); + }), + (i.prototype.qqHallSendMsg = function (e) { + e.type == t.QQHallMsgType.msgInfo && + this.sendMsg && + this.msgInfo && + (t.ChatMgr.ins().s_9_1(this.msgInfo.type, e.Msg, this.msgInfo.target, this.msgInfo.goodsObj, this.msgInfo.contentStr), (this.sendMsg = !1)); + }), + (i.prototype.yyHallSendMsg = function (e) { + e.msgType == t.YYHallMsgType.chatMsg && + this.sendMsg && + this.msgInfo && + (t.ChatMgr.ins().s_9_1(this.msgInfo.type, e.msg, this.msgInfo.target, this.msgInfo.goodsObj, this.msgInfo.contentStr), (this.sendMsg = !1)); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), t.MouseScroller.unbind(this.barList), this.fEHj(this.sendBtn, this.onClick), this.fEHj(this.nearBy, this.onClick), this.fEHj(this.showPlayerListBtn, this.onClick); + for (var n, s = 0; 43 > s; s++) (n = this.faceImgGrpup.getChildByName("face_" + s)), (n.visible = !0), (n.source = "chat_bqb_" + (s + 1)), this.fEHj(n, this.onClickFace); + for ( + KdbLz.os.KeyBoard.removeKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.removeKeyUp(this.keyUp, this), + this.scrollBar.removeEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.MENUITEM_SLECT, this.onShowChatMenu, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.GOODS_SHOW, this.onShowGoods, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.onClearChatInput, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChatData, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CHAT_SHOW_GOODS_TIPS, this.chatShowTips, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.chatInput.removeEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.chatInput.removeEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOn, this), + this.chatInput.removeEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.stageBegin, this), + this.chatList.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + this.barList.removeEventListener(eui.UIEvent.CHANGE, this.onScrollerChange, this); + this.chatList.numChildren > 0; + + ) { + var a = this.chatList.removeChildAt(0); + a = null; + } + this.fEHj(this.chatList, this.showTips), + t.ChatModel.ins().removeAllArr(), + this.chatMenuView.destroy(), + (this.infoTemp = null), + (this._distance = null), + (this.chatMenuView = null), + t.KHNO.ins().removeAll(this); + }), + (i.isCloseNearChannel = !1), + (i.isCloseGuildChannel = !1), + (i.isClosePrivateChannel = !1), + (i.BIG_HEIGHT = 500), + (i.LITTLE_HEIGHT = 142), + (i.MIN_HEIGHT = 60), + i + ); + })(t.gIRYTi); + (t.ChatView = e), __reflect(e.prototype, "app.ChatView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.loadData(); + }), + (e.prototype.loadData = function () { + this.labelDisplay.text = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.ChatWinBtnItem = e), __reflect(e.prototype, "app.ChatWinBtnItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this); + }), + (e.prototype.onClick = function () {}), + (e.prototype.dataChanged = function () { + this.labelDisplay.text = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.ChatWinMenuItem = e), __reflect(e.prototype, "app.ChatWinMenuItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.createChildren = function () { + e.prototype.createChildren.call(this), (this.gList.itemRenderer = t.ChatWinMenuItem); + var i = t.CrmPU.language_Chat_Menu_List; + (this.gList.dataProvider = new eui.ArrayCollection(i)), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + (this.visible = !this.visible), + t.ckpDj.ins().sendEvent(t.ChatEvent.MENUITEM_SLECT, [ + { + indexText: this.gList.selectedItem, + indexItem: this.gList.selectedIndex, + }, + ]); + }), + (i.prototype.destroy = function () { + for (this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); this.gList.numChildren > 0; ) { + var t = this.gList.getChildAt(0); + t && (t = null), this.gList.removeChildAt(0); + } + this.gList = null; + }), + i + ); + })(t.gIRYTi); + (t.ChatWinMenuView = e), __reflect(e.prototype, "app.ChatWinMenuView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.cruIndex = 0), + (i.channelID = 1), + (i._tempChatStr = ""), + (i.isGoodsChat = !1), + (i.pattern = /\[.*?\]\]/g), + (i.includeGoodsChatInfo = ""), + (i._touchStatus = !1), + (i._distance = new egret.Point()), + (i._isRoll = !0), + (i.currentExp = 0), + (i.msgInfo = {}), + (i.lastMsg = ""), + (i.goodsItemId = 0), + (i.skinName = "ChatWinSkin"), + (i.name = "ChatWin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System75); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + this.bindChannel(), + (this.barList.viewport = this.chatList), + (this.chatList.itemRenderer = t.chatListItem), + (this.clickPoint = new egret.Point()), + (this.barList.verticalScrollBar.autoVisibility = !1), + (this.barList.verticalScrollBar.visible = !1), + (this.chatMenuView.visible = !1), + (this.showPlayerListBtn.visible = !1), + (this.chatInput.x = 282), + (this.tabBar.selectedIndex = 0), + (this.cruIndex = 0), + this.updateList(!0), + (this.barList.scrollPolicyH = eui.ScrollPolicy.OFF), + this.initEvent(), + this.HFTK(t.ChatMgr.ins().post_LookItem, this.lookItemFunction), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendMsg), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendMsg), + this.scrollBar.addEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + t.MouseScroller.bind(this.barList), + t.MouseScroller.addCallbackFunction(this.barList, this._onScrollerMouseWheelChange.bind(this)), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_TAP, this.stageBegin, this); + for (var s, a = 0; 43 > a; a++) + (s = this.faceImgGrpup.getChildByName("face_" + a)), (s.visible = !0), (s.face = "E:}{;chat_bqb_" + (a + 1)), (s.source = "chat_bqb_" + (a + 1)), this.vKruVZ(s, this.onClickFace); + KdbLz.qOtrbE.iFbP && i && i[0] && ((this.showPlayerListBtn.text = i[0].indexText), this.showChatMenu()), + t.ckpDj.ins().sendEvent(t.ChatEvent.MENUITEM_SLECT, [ + { + indexItem: 0, + }, + ]); + }), + (i.prototype.initData = function () { + (this.showPlayerListBtn.text = t.CrmPU.language_Chat_Set_Text), + (this.chatInput.text = t.CrmPU.language_Chat_ShowInput_Tips), + (this.cbGuild.selected = !t.ChatView.isCloseGuildChannel), + (this.cbNear.selected = !t.ChatView.isCloseNearChannel), + (this.cbPrivate.selected = !t.ChatView.isClosePrivateChannel); + }), + (i.prototype._onScrollerMouseWheelChange = function (t) { + if (!(this.barList.viewport.measuredHeight < this.barList.height || this.barList.viewport.contentHeight <= this.barList.height)) { + var e = 0, + i = 0; + t.data < 0 ? ((e = this.scrollBar.value - 20), (i = this.barList.viewport.scrollV + 20)) : ((e = this.scrollBar.value + 20), (i = this.barList.viewport.scrollV - 20)), + (this.scrollBar.value = Math.max(Math.min(e, this.barList.viewport.contentHeight - this.barList.height), 0)), + (this.barList.viewport.scrollV = Math.max(Math.min(i, this.barList.viewport.contentHeight - this.barList.height), 0)); + } + }), + (i.prototype.bindChannel = function () { + (this.tabBar.itemRenderer = t.TradeLineTabView), (this.tabBar.dataProvider = new eui.ArrayCollection(t.CrmPU.language_Chat_WinTabar_List)); + }), + (i.prototype.updateChatData = function () { + (this.isGoodsChat = !1), this.updateList(!0); + }), + (i.prototype.initEvent = function () { + this.vKruVZ(this.btnSend, this.onClick), + this.vKruVZ(this.btnChannel, this.onClick), + this.vKruVZ(this.cbNear, this.onClick), + this.vKruVZ(this.cbGuild, this.onClick), + this.vKruVZ(this.cbPrivate, this.onClick), + this.vKruVZ(this.showPlayerListBtn, this.onClick), + this.vKruVZ(this.chatList, this.showTips), + KdbLz.os.KeyBoard.addKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.addKeyUp(this.keyUp, this), + t.ckpDj.ins().addEvent(t.ChatEvent.MENUITEM_SLECT, this.onShowChatMenu, this), + t.ckpDj.ins().addEvent(t.ChatEvent.GOODS_SHOW, this.onShowGoods, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.onClearChatInput, this), + t.ckpDj.ins().addEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CHAT_SHOW_GOODS_TIPS, this.chatShowTips, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, this.chatChannelChange, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.chatInput.addEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.chatInput.addEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOn, this), + this.chatInput.addEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + this.tabBar.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.selectIndexChange, this), + this.chatList.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + this.barList.addEventListener(eui.UIEvent.CHANGE, this.onScrollerChange, this), + this.HFTK(t.ChatMgr.ins().postChatInfo, this.updateChatData), + this.HFTK(t.ChatMgr.ins().postPrivateChat, this.updateChatData), + this.HFTK(t.ChatMgr.ins().post_9_12, this.updateChatData), + this.HFTK(t.ChatMgr.ins().post_9_15, this.updateChatData), + t.ckpDj.ins().addEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChatData, this); + }), + (i.prototype.stageBegin = function (t) { + this.faceBtn.hitTestPoint(t.stageX, t.stageY) ? (this.faceGrpup.visible = !this.faceGrpup.visible) : (this.faceGrpup.visible = !1); + }), + (i.prototype.onClickFace = function (t) { + this.faceGrpup.visible = !1; + var e = t.currentTarget.face; + this.sendMsg(2, e); + }), + (i.prototype.removeEvent = function () { + this.scrollBar.removeEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChatData, this), + this.fEHj(this.btnSend, this.onClick), + this.fEHj(this.cbNear, this.onClick), + this.fEHj(this.cbGuild, this.onClick), + this.fEHj(this.btnChannel, this.onClick), + this.fEHj(this.cbPrivate, this.onClick), + this.fEHj(this.showPlayerListBtn, this.onClick), + KdbLz.os.KeyBoard.removeKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.removeKeyUp(this.keyUp, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.MENUITEM_SLECT, this.onShowChatMenu, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.GOODS_SHOW, this.onShowGoods, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.onClearChatInput, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CHAT_SHOW_GOODS_TIPS, this.chatShowTips, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, this.chatChannelChange, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.chatInput.removeEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.chatInput.removeEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOn, this), + this.chatInput.removeEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + this.tabBar.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.selectIndexChange, this), + this.chatList.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + this.barList.removeEventListener(eui.UIEvent.CHANGE, this.onScrollerChange, this); + }), + (i.prototype.onCloseMenu = function (e) { + (this.chatMenuView.visible = !1), "tipsview" != e.target.name && t.uMEZy.ins().closeTips(); + }), + (i.prototype.onShowChatMenu = function (e) { + var i = e[0]; + (this.btnChannel.label = t.CrmPU.language_Chat_Menu_List[i.indexItem]), + (this.channelID = i.indexItem), + 4 == i.indexItem + ? ((this.showPlayerListBtn.visible = !0), (this.chatInput.x = this.showPlayerListBtn.x + this.showPlayerListBtn.width)) + : ((this.showPlayerListBtn.visible = !1), (this.chatInput.x = 282)); + }), + (i.prototype.chatChannelChange = function (e) { + e.view || ((this.cbGuild.selected = !t.ChatView.isCloseGuildChannel), (this.cbNear.selected = !t.ChatView.isCloseNearChannel), (this.cbPrivate.selected = !t.ChatView.isClosePrivateChannel)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnSend: + this.sendMsg(1); + break; + case this.btnChannel: + this.chatMenuView.visible = !this.chatMenuView.visible; + break; + case this.showPlayerListBtn: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.mAYZL.ins().open(t.ChatShowFriendOrNearListView, 1); + break; + case this.cbGuild: + this.cbGuild.selected + ? ((t.ChatView.isCloseGuildChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenGuild_Tips)) + : ((t.ChatView.isCloseGuildChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetCloseGuild_Tips)), + t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 2, + view: !0, + }); + break; + case this.cbPrivate: + this.cbPrivate.selected + ? ((t.ChatView.isClosePrivateChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenPrivate_Tips)) + : ((t.ChatView.isClosePrivateChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetClosePrivate_Tips)), + t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 3, + view: !0, + }); + break; + case this.cbNear: + this.cbNear.selected + ? ((t.ChatView.isCloseNearChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenNear_Tips)) + : ((t.ChatView.isCloseNearChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetCloseNear_Tips)), + t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 1, + view: !0, + }); + } + }), + (i.prototype.sendMsg = function (e, i) { + void 0 === e && (e = 1), void 0 === i && (i = ""); + var n = ""; + if ( + (1 == e && (i = this.chatInput.text), + i != t.CrmPU.language_Chat_ShowInput_Tips && (i.length > 120 && t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ChatInput_OverLen), (this.lastMsg = i), "" != i)) + ) { + this.getChannelId(this.channelID) == t.ChannelID.ChannelSecret ? (this.priChatMeSendMsg(i), (n = this.showPlayerListBtn.text.toString().trim())) : (t.ChatMgr.ins().isPrivateChat = !1); + var s = "", + a = void 0; + this.isGoodsChat + ? ((s = this.includeGoodsChatInfo), + (a = { + isGood: 1, + series: this.infoTemp.series, + })) + : ((s = i), + (a = { + isGood: 0, + })); + var r = i; + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = s), + (this.msgInfo.target = n), + (this.msgInfo.goodsObj = a), + (this.msgInfo.contentStr = r), + t.edHC.ins().qqHallTextFiltering(s, t.QQHallMsgType.msgInfo)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = s), + (this.msgInfo.target = n), + (this.msgInfo.goodsObj = a), + (this.msgInfo.contentStr = r), + t.edHC.ins().yyHallTextFiltering(s, t.YYHallMsgType.chatWinMsg)) + : t.ChatMgr.ins().s_9_1(this.getChannelId(this.channelID), s, n, a, r); + } + }), + (i.prototype.onScrollerChange = function () { + this.barList.viewport.scrollV = Math.max(Math.min(this.barList.viewport.scrollV, this.barList.viewport.contentHeight - this.barList.height), 0); + var t = this.barList.viewport.scrollV, + e = Math.abs(t) / (this.barList.viewport.contentHeight - this.barList.height), + i = e * this.scrollBar.maximum; + this.scrollBar.value = this.scrollBar.maximum - i; + }), + (i.prototype.changeHandler = function (t) { + var e = t.target.value; + this.barList.viewport.scrollV = -(e - (this.barList.viewport.contentHeight - this.barList.height)); + }), + (i.prototype.onTouchDouble = function () { + if (this.chatList.selectedItem) { + var e = this.chatList.selectedItem; + if ("" == e.senderName || e.isMe || t.NWRFmB.ins().getPayer.recog == e.playerId) + return void egret.TouchEvent.dispatchTouchEvent(t.aTwWrO.ins().getStage(), egret.TouchEvent.TOUCH_BEGIN, !0, !0, this.chatInput.x, this.chatInput.y, 0, !0); + (this.btnChannel.label = t.CrmPU.language_Chat_Text0), + (this.channelID = 4), + (this.showPlayerListBtn.text = e.senderName), + (this.showPlayerListBtn.visible = !0), + (this.chatInput.x = this.showPlayerListBtn.x + this.showPlayerListBtn.width); + } + }), + (i.prototype.onShowPrivateName = function (t) { + var e = t[0]; + (this.showPlayerListBtn.text = e.indexText), this.showChatMenu(); + }), + (i.prototype.showChatMenu = function () { + (this.btnChannel.label = t.CrmPU.language_Chat_Text0), + (this.channelID = 4), + (this.showPlayerListBtn.visible = !0), + (this.chatInput.x = this.showPlayerListBtn.width + this.showPlayerListBtn.x); + }), + (i.prototype.keyDown = function (e) { + if (e == KdbLz.KeyCode.KC_ENTER) { + if (this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text) return; + var i = ""; + if ("" != this.chatInput.text) { + if (this.chatInput.text.length > 120) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ChatInput_OverLen); + this.getChannelId(this.channelID) == t.ChannelID.ChannelSecret + ? (this.priChatMeSendMsg(this.chatInput.text), (i = this.showPlayerListBtn.text.toString().trim())) + : (t.ChatMgr.ins().isPrivateChat = !1); + var n = "", + s = void 0; + this.isGoodsChat + ? ((n = this.includeGoodsChatInfo), + (s = { + isGood: 1, + series: this.infoTemp.series, + })) + : ((n = this.chatInput.text), + (s = { + isGood: 0, + })); + var a = this.chatInput.text; + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = n), + (this.msgInfo.target = i), + (this.msgInfo.goodsObj = s), + (this.msgInfo.contentStr = a), + t.edHC.ins().qqHallTextFiltering(n, t.QQHallMsgType.msgInfo)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? ((this.msgInfo.type = this.getChannelId(this.channelID)), + (this.msgInfo.msg = n), + (this.msgInfo.target = i), + (this.msgInfo.goodsObj = s), + (this.msgInfo.contentStr = a), + t.edHC.ins().yyHallTextFiltering(n, t.YYHallMsgType.chatWinMsg)) + : t.ChatMgr.ins().s_9_1(this.getChannelId(this.channelID), n, i, s, a); + } + } + }), + (i.prototype.qqHallSendMsg = function (e) { + e.type == t.QQHallMsgType.msgInfo && this.msgInfo && t.ChatMgr.ins().s_9_1(this.msgInfo.type, e.Msg, this.msgInfo.target, this.msgInfo.goodsObj, this.msgInfo.contentStr); + }), + (i.prototype.yyHallSendMsg = function (e) { + e.msgType == t.YYHallMsgType.chatWinMsg && this.msgInfo.contentStr && t.ChatMgr.ins().s_9_1(this.msgInfo.type, e.msg, this.msgInfo.target, this.msgInfo.goodsObj, this.msgInfo.contentStr); + }), + (i.prototype.priChatMeSendMsg = function (e) { + if (this.showPlayerListBtn.text.toString().trim() != t.CrmPU.language_Chat_Set_Text) { + var i = this.showPlayerListBtn.text.toString().trim(), + n = new t.ChatMessage(); + (n.senderName = "/" + i), (n.message = e), (n.showChannelID = t.ChannelID.ChannelSecret), (n.isMe = !0), (t.ChatMgr.ins().isPrivateChat = !0), (t.ChatMgr.ins().priMessage = n); + } + }), + (i.prototype.getChannelId = function (e) { + var i = null; + switch (e) { + case 0: + i = t.ChannelID.ChannelWorld; + break; + case 1: + i = t.ChannelID.ChannelNear; + break; + case 2: + i = t.ChannelID.ChannelGuild; + break; + case 3: + i = t.ChannelID.ChannelTeam; + break; + case 4: + i = t.ChannelID.ChannelSecret; + break; + case 5: + i = t.ChannelID.ChannelPersonal; + } + return i; + }), + (i.prototype.getChatMenuId = function (t) { + var e = -1; + switch (t) { + case 1: + e = 0; + break; + case 2: + e = 2; + break; + case 3: + e = 3; + break; + case 4: + e = 4; + } + return e; + }), + (i.prototype.selectIndexChange = function (e) { + if (this.cruIndex != this.tabBar.selectedIndex) { + (this.cruIndex = this.tabBar.selectedIndex), t.uMEZy.ins().showFightTips(t.CrmPU["language_Chat_Show_Tips" + this.cruIndex]), this.updateList(!0); + var i = this.getChatMenuId(this.cruIndex); + i > -1 && + t.ckpDj.ins().sendEvent(t.ChatEvent.MENUITEM_SLECT, [ + { + indexItem: i, + }, + ]); + } + }), + (i.prototype.updateList = function (e) { + switch ((void 0 === e && (e = !1), this.cruIndex)) { + case 0: + (this.currentState = "all"), + this.removeDataProviderEvent(), + (this.chatList.dataProvider = null), + this.updateView(t.chatListItem, t.ChatModel.ins().getAllChatData()), + this.addDataProviderEvent(); + break; + case 1: + (this.currentState = "world"), + this.removeDataProviderEvent(), + (this.chatList.dataProvider = null), + this.updateView(t.chatListItem, t.ChatModel.ins().getWorldData()), + this.addDataProviderEvent(); + break; + case 2: + (this.currentState = "guild"), + this.removeDataProviderEvent(), + (this.chatList.dataProvider = null), + this.updateView(t.chatListItem, t.ChatModel.ins().getGuildData()), + this.addDataProviderEvent(); + break; + case 3: + (this.currentState = "team"), this.removeDataProviderEvent(), this.updateView(t.chatListItem, t.ChatModel.ins().getTeamData()), this.addDataProviderEvent(); + break; + case 4: + (this.currentState = "private"), this.removeDataProviderEvent(), this.updateView(t.chatListItem, t.ChatModel.ins().getPrivateData()), this.addDataProviderEvent(); + break; + case 5: + (this.currentState = "personal"), this.removeDataProviderEvent(), this.updateView(t.chatListItem, t.ChatModel.ins().getPersonalData()), this.addDataProviderEvent(); + break; + case 6: + (this.currentState = "personal"), this.removeDataProviderEvent(), this.updateView(t.chatListItem, t.ChatModel.ins().getSystemData()), this.addDataProviderEvent(); + } + this.refushBar(); + }), + (i.prototype.refushBar = function () { + t.KHNO.ins().RTXtZF(this.refushBarList, this) || t.KHNO.ins().tBiJo(30, 3, this.refushBarList, this); + }), + (i.prototype.refushBarList = function () { + if ((this.barList.viewport.validateNow(), this.barList.validateNow(), this.barList.viewport.contentHeight > this.barList.viewport.height)) { + if (this._isRoll) { + this.barList.viewport.scrollV = this.barList.viewport.contentHeight - this.barList.viewport.height; + var t = this.barList.viewport.scrollV, + e = Math.abs(t) / (this.barList.viewport.contentHeight - this.barList.height), + i = e * this.scrollBar.maximum; + this.scrollBar.value = this.scrollBar.maximum - i; + } + } else this._isRoll && ((this.scrollBar.value = 0), this.barList.viewport.$setHeight(this.barList.viewport.contentHeight)); + (this.scrollBar.maximum = this.barList.viewport.contentHeight - this.barList.height), this.removeEventListener(egret.Event.ENTER_FRAME, this.refushBarList, this); + }), + (i.prototype.refushBarListTop = function () { + this.barList.viewport.scrollV = 0; + }), + (i.prototype.addDataProviderEvent = function () { + this.chatList.dataProvider && this.chatList.addEventListener(eui.ItemTapEvent.CHANGING, this.listDataChange, this); + }), + (i.prototype.listDataChange = function () { + this.refushBar(); + }), + (i.prototype.removeDataProviderEvent = function () { + this.chatList.dataProvider && this.chatList.removeEventListener(eui.ItemTapEvent.CHANGING, this.listDataChange, this); + }), + (i.prototype.updateView = function (t, e) { + this.chatList.dataProvider = e; + }), + (i.prototype.keyUp = function (e) { + e == KdbLz.KeyCode.KC_ENTER && this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text; + }), + (i.prototype.getExecStrs = function (t) { + var e = /\[.*?\]\]/g, + i = [], + n = null; + do (n = e.exec(t)), n && i.push(n[0]); + while (n); + return i; + }), + (i.prototype.onShowGoods = function (e) { + var i = e[0]; + if (null != i) { + this.infoTemp = i.info; + var n = 10001, + s = i.info; + if (s.wItemId != this.goodsItemId) { + var a = t.VlaoF.StdItems[s.wItemId]; + this.goodsItemId = s.wItemId; + var r = 5395542, + o = "", + l = "", + h = ""; + a && + ((r = t.ClwSVR.GOODS_COLOR[a.showQuality]), + (o = "|E:1," + n + "," + s.series.createTime + ",&C:7232324&T:[" + a.name + "]"), + (l = "[" + a.name + "]"), + (h = "|E:" + a.id + "," + n + "," + s.series.createTime + ",&U:&C:" + r + "&T:" + a.name + "|")); + var p = [], + u = ""; + if (this.pattern.test(this.chatInput.text)) { + this.pattern.lastIndex = 0; + var c = this.chatInput.text.indexOf(l); + if (-1 != c) return; + var g = this.getExecStrs(this.chatInput.text); + var d = this.chatInput.text.replace(g[0], "|"), + m = d.split("|"); + if ("" == m[0] || "" == m[1]) { + var f = this.chatInput.text.search(d); + "" == m[0] + ? f > 0 + ? ((this._tempChatStr = h + m[1]), (u = o + m[1])) + : ((this._tempChatStr = m[1] + h), (u = m[1] + o)) + : f > 0 + ? ((this._tempChatStr = h + m[0]), (u = o + m[0])) + : ((this._tempChatStr = m[0] + h), (u = m[0] + o)); + } else (this._tempChatStr = m[0] + h + m[1]), (u = m[0] + o + m[1]); + this.chatInput.textFlow = t.hETx.generateTextFlow1(u); + } else + (this.pattern.lastIndex = 0), + this.chatInput.text == t.CrmPU.language_Chat_ShowInput_Tips ? (this._tempChatStr = h) : ((p = this.chatInput.textFlow), (this._tempChatStr = this.chatInput.text + h)), + (this.chatInput.textFlow = p.concat(t.hETx.generateTextFlow1(o))); + (this.includeGoodsChatInfo = this._tempChatStr), (this.isGoodsChat = !0); + } + } + }), + (i.prototype.onClearChatInput = function () { + -1 == this.lastMsg.indexOf("E:}{;") && ((this.chatInput.text = ""), (this.isGoodsChat = !1), (this.includeGoodsChatInfo = ""), (this.goodsItemId = 0)), (this.lastMsg = ""); + }), + (i.prototype.chatShowTips = function (e) { + var i = e[0], + n = i.info.split(","); + if (-1 == n[0]) { + var s = t.NWRFmB.ins().getPayer; + if (s) { + var a = s.ifFindTask(+n[3], +n[1], +n[2]); + if (a && -1 == a.x && -1 == a.y) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips121); + s.setTask(+n[3], +n[1], +n[2], -1, -1, 0, +n[4]); + } + } else -2 == n[0] ? t.mAYZL.ins().openViewId(+n[1]) : (this.seriesId = n[2]); + }), + (i.prototype.textFocusOn = function (e) { + e.type == egret.FocusEvent.FOCUS_IN && this.chatInput && t.CrmPU.language_Chat_ShowInput_Tips == this.chatInput.text && (this.chatInput.text = ""); + }), + (i.prototype.lookItemFunction = function (e) { + if (e && 2 == t.ChatMgr.ins().chatViewType) { + t.ChatMgr.ins().chatViewType = 0; + var i = t.VlaoF.StdItems[e.wItemId]; + if (i) { + var n = t.TipsType.TIPS_EQUIP; + (n = i.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), t.uMEZy.ins().LJzNt(this, n, e, this.clickPoint); + } + } + }), + (i.prototype.showTips = function (e) { + var i = (this.chatList.selectedItem, e.currentTarget); + i && this.seriesId && ((this.clickPoint.x = e.stageX), (this.clickPoint.y = e.stageY), (t.ChatMgr.ins().chatViewType = 2), t.ChatMgr.ins().lookItem(this.seriesId), (this.seriesId = 0)); + }), + (i.prototype.textChange = function (t) { + this.textRresolution(t.target.text); + }), + (i.prototype.textRresolution = function (t) { + var e = /\[.*?\]\]/g, + i = t.replace(e, this._tempChatStr); + this.pattern.test(this.chatInput.text) || ((this._tempChatStr = ""), (this.isGoodsChat = !1)), (this.pattern.lastIndex = 0), (this.includeGoodsChatInfo = i), (this.goodsItemId = 0); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), this.$onClose(); + for (var s, a = 0; 43 > a; a++) (s = this.faceImgGrpup.getChildByName("face_" + a)), (s.visible = !0), (s.source = "chat_bqb_" + (a + 1)), this.fEHj(s, this.onClickFace); + t.MouseScroller.unbind(this.barList), + this.removeEvent(), + this.fEHj(this.chatList, this.showTips), + this.chatMenuView.destroy(), + (this.infoTemp = null), + (this._distance = null), + (this.chatMenuView = null), + t.KHNO.ins().removeAll(this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.stageBegin, this); + }), + (i.isCloseNearChannel = !1), + (i.isCloseGuildChannel = !1), + (i.isClosePrivateChannel = !1), + i + ); + })(t.gIRYTi); + (t.ChatWinView = e), __reflect(e.prototype, "app.ChatWinView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "Btn6Skin"), e; + } + return __extends(e, t), e; + })(eui.Button); + (t.UnfoldBtnItem = e), __reflect(e.prototype, "app.UnfoldBtnItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.ChannelSecret = 0)] = "ChannelSecret"), + (t[(t.ChannelNear = 1)] = "ChannelNear"), + (t[(t.ChannelGuild = 2)] = "ChannelGuild"), + (t[(t.ChannelTeam = 3)] = "ChannelTeam"), + (t[(t.ChannelWorld = 4)] = "ChannelWorld"), + (t[(t.ChannelSystemTips = 5)] = "ChannelSystemTips"), + (t[(t.ChannelSystem = 6)] = "ChannelSystem"), + (t[(t.ChannelActivity = 7)] = "ChannelActivity"), + (t[(t.ChannelPersonal = 8)] = "ChannelPersonal"); + })((e = t.ChannelID || (t.ChannelID = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._actID = -1), (i.skinName = "ActivityCommonViewSkin"), (i.name = "ActivityCommonView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((e[0] && (this._actID = e[0]), -1 != this._actID)) { + var n = t.TQkyOx.ins().getActivityConfigById(this._actID); + n && (this.strLab.textFlow = t.hETx.qYVI(n.description)); + } + this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityCommonView = e), __reflect(e.prototype, "app.ActivityCommonView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._changeFunc = null), (i._container = t), t ? (i.init(), i) : i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + (this.hSlider = this._container.getChildByName("hslider")), + (this.hsLab = this._container.getChildByName("hsLab")), + this.hSlider.addEventListener(egret.Event.CHANGE, this.onChange, this), + this.hSlider.addEventListener(eui.UIEvent.CHANGE_END, this.onChangeEnd, this); + }), + (i.prototype.onChange = function (t) { + debug.log(t.target.value); + var e = t.target.value; + this.hsLab.text = e + "%"; + }), + (i.prototype.onChangeEnd = function (e) { + debug.log(e.target.value); + var i = e.target.value; + (this.scrollValue = i), + (this.HsValue = this.scrollValue), + this.dispatchEvent( + new t.CompEvent(t.CompEvent.SET_HSLIDER, { + type: this.type, + param: this.scrollValue, + }) + ); + }), + Object.defineProperty(i.prototype, "HsValue", { + set: function (t) { + (this.hsLab.text = Math.floor(t) + "%"), (this.hSlider.value = t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.callFunc = function (t, e) { + (this._changeFunc = t[0]), (this._targetObj = e); + }), + Object.defineProperty(i.prototype, "minimum", { + set: function (t) { + this.hSlider.minimum = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "maximum", { + set: function (t) { + this.hSlider.maximum = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "scrollValue", { + get: function () { + return this.hSlider.value; + }, + set: function (t) { + this.hSlider.value = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "type", { + get: function () { + return this._type; + }, + set: function (t) { + this._type = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destory = function () { + this._changeFunc && (this._changeFunc = null), + this._targetObj && (this._targetObj = null), + this.hSlider.removeEventListener(egret.Event.CHANGE, this.onChange, this), + this.hSlider.removeEventListener(eui.UIEvent.CHANGE_END, this.onChangeEnd, this), + t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.ComHSlider = e), __reflect(e.prototype, "app.ComHSlider"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.itemID = 0), (t.qqHallIsSend = !1), (t.skinName = "ChangeNameViewSkin"), (t.name = "ChangeNameWin"), (t.left = t.right = t.top = t.bottom = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System60); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.itemID = e[0]), + this.vKruVZ(this.sureBtn, this.onClick), + this.vKruVZ(this.closeRect, this.onClick), + this.HFTK(t.edHC.ins().post_26_79, this.closeView), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendMsg), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendMsg), + (this.textInput.maxChars = 7); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sureBtn: + if (0 != this.itemID) + if ("" != this.textInput.text) { + var i = t.ThgMu.ins().getItemById(this.itemID); + i && + (Main.vZzwB.pfID == t.PlatFormID.QQGame + ? (t.edHC.ins().qqHallTextFiltering(this.textInput.text, t.QQHallMsgType.nameMsg), (this.qqHallIsSend = !0)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? (t.edHC.ins().yyHallTextFiltering(this.textInput.text, t.YYHallMsgType.changeName), (this.qqHallIsSend = !0)) + : t.edHC.ins().send_26_40(i.series, this.textInput.text + "")); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips71); + break; + case this.closeRect: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.qqHallSendMsg = function (e) { + if (e.type == t.QQHallMsgType.nameMsg && this.qqHallIsSend) { + if (0 == e.isLegal) { + var i = t.ThgMu.ins().getItemById(this.itemID); + i && t.edHC.ins().send_26_40(i.series, e.Msg + ""); + } else t.uMEZy.ins().IrCm("输入的文字不合法"); + this.qqHallIsSend = !1; + } + }), + (i.prototype.yyHallSendMsg = function (e) { + if (e.msgType == t.YYHallMsgType.changeName && this.qqHallIsSend) { + var i = t.ThgMu.ins().getItemById(this.itemID); + i && t.edHC.ins().send_26_40(i.series, e.msg + ""), (this.qqHallIsSend = !1); + } + }), + (i.prototype.closeView = function (e) { + if (0 == e) + if ((FzTZ.reporting(t.ReportDataEnum.CHANGE_NAME, {}, null, !1), t.mAYZL.ins().close(this), Main.vZzwB.pfID == t.PlatFormID.F1 || Main.vZzwB.pfID == t.PlatFormID.comi17)) { + var i = Main.vZzwB.pfID == t.PlatFormID.F1 ? 60 : 17026, + n = t.NWRFmB.ins().getPayer, + s = n.propSet.getName(), + a = this.format_2(), + r = + "&user_id=" + + t.MiOx.openID + + "&game_id=" + + i + + "&server_id=" + + t.MiOx.srvid + + "&role_id=" + + t.MiOx.roleId + + "&role_name=" + + s + + "&create_date=" + + a + + "&ts=" + + Date.parse(new Date().toString()) / 1e3, + o = new XMLHttpRequest(); + o.open("GET", window.roleInfoUrl + r, !0), o.send(null); + } else if ((Main.vZzwB.pfID == t.PlatFormID.gameCat || Main.vZzwB.pfID == t.PlatFormID.gameCatEnd) && KdbLz.qOtrbE.IsPC) { + var n = t.NWRFmB.ins().getPayer, + s = n.propSet.getName(), + l = n.propSet.mBjV(), + a = n.propSet.getRoleCreateTime(), + h = {}; + (h.type = "changeName"), + (h.data = { + level: l, + roleId: t.MiOx.roleId, + roleName: s, + serverId: t.MiOx.srvid, + serverName: t.MiOx.srvname, + roleCreateTime: a, + }), + window.ReportingFunction(h); + } + }), + (i.prototype.format_2 = function () { + var t = new Date(), + e = t.getFullYear(), + i = t.getMonth() + 1, + n = t.getDate(), + s = t.getHours(), + a = t.getMinutes(), + r = t.getSeconds(); + return e + "-" + this.formatTimeNum(i) + "-" + this.formatTimeNum(n) + " " + this.formatTimeNum(s) + ":" + this.formatTimeNum(a) + ":" + this.formatTimeNum(r); + }), + (i.prototype.formatTimeNum = function (t, e) { + return t >= 10 ? t.toString() : 0 == e ? t.toString() : "0" + t; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.sureBtn, this.onClick), this.fEHj(this.closeRect, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ChangeNameWin = e), __reflect(e.prototype, "app.ChangeNameWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "title", { + set: function (t) { + (this.m_Title = t), this._UpdateTitle(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "hideBtn", { + set: function (t) { + this.m_HideBtn = !0; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "topBtn", { + set: function (t) { + this.m_TopBtn = !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype._UpdateTitle = function () { + this.titleLabel && this.m_Title && this.$stage && (this.titleLabel.text = this.m_Title); + }), + (i.prototype.SetReturnButton = function (t) { + return t + ? (this.dialogReturnBtn && ((this.cacheReturnBtn = this.dialogReturnBtn), (this.dialogReturnBtn.visible = !1)), void (this.dialogReturnBtn = t)) + : void (this.cacheReturnBtn && ((this.dialogReturnBtn = this.cacheReturnBtn), (this.dialogReturnBtn.visible = !0), (this.cacheReturnBtn = null))); + }), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + var i = this; + e.prototype.childrenCreated.call(this), + this._UpdateTitle(), + (this.dialogMask.width = t.aTwWrO.ins().getWidth()), + (this.dialogMask.height = t.aTwWrO.ins().getHeight()), + this.m_HideBtn && (this.dialogCloseBtn.visible = !1), + this.m_TopBtn && + this.parent && + (this.m_TempTimer = Timer.TimeOut(function () { + t.lEYZI.SetParent(i.dialogReturnBtn, i.parent); + }, 50)); + }), + (i.prototype.OnAdded = function (t) { + for (var e = 0, n = i.SHOW_DIALOG_LIST; e < n.length; e++) { + var s = n[e]; + s != this && (s.dialogMask.visible = !1); + } + i.SHOW_DIALOG_LIST.push(this), + (this.m_Target = t), + this.dialogCloseBtn && this.dialogCloseBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this), + this.dialogReturnBtn && this.dialogReturnBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this), + this.dialogMask.addEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this); + }), + (i.prototype.OnRemoved = function () { + for (var t = i.SHOW_DIALOG_LIST.length - 1; t >= 0; --t) { + var e = i.SHOW_DIALOG_LIST[t]; + if (null != e && e != this) { + e.dialogMask.visible = !0; + break; + } + i.SHOW_DIALOG_LIST.splice(t, 1); + } + this.dialogReturnBtn && this.dialogReturnBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this), + this.dialogCloseBtn && this.dialogCloseBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this), + this.dialogMask.removeEventListener(egret.TouchEvent.TOUCH_TAP, this._OnClick, this), + this.m_TempTimer && this.m_TempTimer.Stop(); + }), + (i.prototype._Close = function () { + return this.mCallback ? void this.mCallback() : void (this.m_Target && t.mAYZL.ins().close(this.m_Target)); + }), + (i.prototype._OnClick = function (t) { + if ((this.dialogReturnBtn && t.currentTarget == this.dialogReturnBtn && this._Close(), !this.m_HideBtn)) + switch (t.currentTarget) { + case this.dialogMask: + if (this.notClickMask) break; + case this.dialogCloseBtn: + this._Close(); + } + }), + (i.SHOW_DIALOG_LIST = []), + i + ); + })(eui.Component); + (t.CommonDialog = e), __reflect(e.prototype, "app.CommonDialog", ["eui.UIComponent", "egret.DisplayObject"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconList = []), (t.skinName = "FriendFunMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gList.itemRenderer = t.FriendFunMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + var e = this, + i = this.gList.selectedIndex, + n = this.gList.getChildAt(i), + s = n.menuBtn.name; + switch (s) { + case "chatBtn": + t.ckpDj.ins().sendEvent(t.ChatEvent.PLAY_NAME_SLECT, [ + { + indexText: this.itemData.nickName, + }, + ]); + break; + case "showInfoBtn": + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(this.itemData.roleId); + break; + case "addFriendBtn": + var a = new t.CSFriend_Add_Data(); + (a.id = this.itemData.roleId), (a.nickName = ""), t.KWGP.ins().sendAddFriend(a); + break; + case "delFriendBtn": + var r = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt21, this.itemData.nickName)); + t.CautionView.show( + r, + function () { + this.sendDelInfo(t.FriendState.Friend); + }, + this + ); + break; + case "inviteTeamBtn": + if (null == this.itemData) return; + var o = t.CrmPU.language_Team_LeaderinviteJonTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_LeaderinviteJonTeam_tips_1; + t.CautionView.show( + o, + function () { + t.Qskf.ins().onSendInviteJoinTeam(e.itemData.roleId, ""); + }, + this + ); + break; + case "applyTeamBtn": + if (null == this.itemData) return; + var l = t.CrmPU.language_Team_ApplyAddTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_ApplyAddTeam_tips_1; + t.CautionView.show( + l, + function () { + t.Qskf.ins().onSendApplyJoinTeam(e.itemData.roleId); + }, + this + ); + break; + case "addConBtn": + var h = new t.CSFriend_Add_Concern_Data(); + (h.id = this.itemData.roleId), (h.nickName = ""), t.KWGP.ins().sendAddConcern(h); + break; + case "addBlackBtn": + var p = new t.CSFriend_Add_Concern_Data(); + (p.id = this.itemData.roleId), (p.nickName = ""), t.KWGP.ins().sendAddBlackList(p); + break; + case "privateTradeLineBtn": + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + var u = new Object(); + (u.sendName = this.itemData.nickName), t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) || t.mAYZL.ins().open(t.PrivateDealsWin, u); + } + }), + (i.prototype.sendDelInfo = function (e) { + var i = new t.CSFriend_Del_Data(); + (i.id = this.itemData.roleId), (i.nickName = ""), (i.type = e), t.KWGP.ins().sendDeleteFirends(i); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.x = e[0].x), (this.y = e[0].y); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + if ((this.x + this.width > n && (this.x = n - this.width), null != e[1])) { + this.itemData = e[1]; + var s = t.KWGP.ins().findIsFriend(this.itemData.roleId); + s ? (this.iconList = t.CrmPU.language_Friend_Menu_List) : (this.iconList = t.CrmPU.language_Friend_Menu_List1), + (this.height = 48 * this.iconList.length), + (this.bg.height = 47 * this.iconList.length + 5), + (this.y = e[0].y - this.height - 5); + var a = new eui.ArrayCollection(this.iconList); + this.gList.dataProvider = a; + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + i + ); + })(t.gIRYTi); + (t.CommonFunMenuView = e), __reflect(e.prototype, "app.CommonFunMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.lastSelected = -1), (t._itemID = 0), (t.curItemData = null), (t.userItemInfo = null), (t.skinName = "CommonGiftSelectWinSKin"), (t.left = t.right = t.top = t.bottom = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System62), (this.itemList.itemRenderer = t.ItemSelectBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (t.MouseScroller.bind(this.itemScroller), + this.itemList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + this.vKruVZ(this.rect, this.onClick), + this.vKruVZ(this.receiveBtn, this.onClick), + this.HFTK(t.ThgMu.ins().post_8_7, this.closeView), + e[0] && (this._itemID = e[0]), + e[1] && (this.userItemInfo = e[1]), + 0 != this._itemID) + ) { + var n = t.VlaoF.StdItems[this._itemID]; + if (n && n.select) { + var s = []; + for (var a in n.select) s.push(n.select[a]); + this.itemList.dataProvider = new eui.ArrayCollection(s); + } + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.rect: + t.mAYZL.ins().close(this); + break; + case this.receiveBtn: + if (!this.curItemData) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips73); + var i = t.VlaoF.BagRemainConfig[10]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? this.userItemInfo && this.userItemInfo.series && t.ThgMu.ins().send_8_8(this.userItemInfo.series, !0, this.curItemData.index) : t.uMEZy.ins().IrCm(i.bagtips); + } + } + }), + (i.prototype.listClick = function (t) { + this.lastSelected >= 0 && this.itemList.getChildAt(this.lastSelected).setSelect(this.itemList.selectedIndex), + (this.lastSelected = this.itemList.selectedIndex), + (this.curItemData = t.item), + this.itemList.dataProvider && + this.lastSelected > -1 && + this.lastSelected < this.itemList.dataProvider.length && + this.itemList.getChildAt(this.lastSelected).setSelect(this.itemList.selectedIndex); + }), + (i.prototype.closeView = function (e) { + e && 1 == e.isSuccess && (t.uMEZy.ins().IrCm(t.CrmPU.language_Tips40), t.mAYZL.ins().close(this)); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.itemScroller), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.fEHj(this.rect, this.onClick), + this.fEHj(this.receiveBtn, this.onClick), + this.itemList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this); + }), + i + ); + })(t.gIRYTi); + (t.CommonGiftSelectWin = e), __reflect(e.prototype, "app.CommonGiftSelectWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FuLi4366MicroWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewards.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.redPoint.visible = !1), (this.microDownBtn.visible = this.receiveBtn.visible = !0); + var n = t.FuLi4366Mgr.ins().commonIsDown; + 1 == n + ? ((this.microDownBtn.visible = !1), 1 != t.Nzfh.ins().microReceive && (this.redPoint.visible = !0)) + : ((this.receiveBtn.visible = !1), 1 != t.Nzfh.ins().microReceive && (this.redPoint.visible = !0)), + (this.receiveImg.visible = 1 == t.Nzfh.ins().microReceive), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.microDownBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick); + var a = t.VlaoF.NativeRewardConfig; + a && a.reward ? (this.rewards.dataProvider = new eui.ArrayCollection(a.reward)) : (this.rewards.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.onClick = function (e) { + var i = t.VlaoF.NativeConfig[Main.vZzwB.pfID]; + switch (e.currentTarget) { + case this.receiveBtn: + this.receiveBtn.visible = this.redPoint.visible = !1; + t.Nzfh.ins().s_0_29(); + break; + case this.microDownBtn: + i && (window.open(window.webUrl + i.clientURL), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)), (t.FuLi4366Mgr.ins().commonIsDown = 1); + this.microDownBtn.visible = !1; + this.receiveBtn.visible = this.redPoint.visible = !0; + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.receiveBtn, this.onClick), this.fEHj(this.microDownBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.CommonMicroWin = e), __reflect(e.prototype, "app.CommonMicroWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return t.init(), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function () { + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, this.onResize, this), + (this.group = new eui.Group()), + (this.bgGrp = new eui.Group()), + (this.rect = new eui.Rect()), + (this.rect.fillColor = 0), + (this.rect.fillAlpha = 0.2), + this.group.addChild(this.rect), + this.group.addChild(this.bgGrp), + (this.bgGrp.width = 418), + (this.img = new eui.Image("bg_tipstc_png")), + (this.img.left = 0), + (this.img.right = -1), + (this.img.top = -2), + (this.img.bottom = 0), + (this.img.scale9Grid = new egret.Rectangle(74, 116, 269, 44)), + this.bgGrp.addChild(this.img), + (this.title = new eui.Label()), + (this.title.textAlign = "center"), + (this.title.textColor = 14731679), + (this.title.size = 20), + (this.title.touchEnabled = !1), + (this.title.text = t.CrmPU.language_System61), + (this.title.horizontalCenter = 0.5), + (this.title.top = 5), + this.bgGrp.addChild(this.title), + (this.closBtn = new eui.Image("btn_guanbi")), + (this.closBtn.right = 3), + (this.closBtn.top = 2), + this.closBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.closeView, this), + this.bgGrp.addChild(this.closBtn), + (this.strLab = new eui.Label()), + (this.strLab.left = 41), + (this.strLab.top = 55), + (this.strLab.bottom = 69), + (this.strLab.size = 23), + (this.strLab.width = 346), + (this.strLab.textColor = 14731679), + (this.strLab.touchEnabled = !1), + (this.strLab.text = ""), + this.bgGrp.addChild(this.strLab); + }), + (i.prototype.showTextView = function (e, i) { + void 0 === i && (i = t.CrmPU.language_System61), (this.strLab.textFlow = t.hETx.qYVI(e)), (this.title.text = i); + var n = this.strLab.height + 124; + (this.rect.width = this.group.width = t.aTwWrO.ins().getWidth()), + (this.rect.height = this.group.height = t.aTwWrO.ins().getHeight()), + (this.bgGrp.x = (t.aTwWrO.ins().getWidth() - this.bgGrp.width) / 2), + (this.bgGrp.y = (t.aTwWrO.ins().getHeight() - n) / 2), + t.aTwWrO.ins().getStage().addChild(this.group); + }), + (i.prototype.closeView = function () { + t.lEYZI.Naoc(this.group); + }), + (i.prototype.onResize = function () { + (t.aTwWrO.ins().getStage().scaleMode == egret.StageScaleMode.NO_SCALE || t.aTwWrO.ins().getStage().scaleMode == egret.StageScaleMode.FIXED_HEIGHT) && + ((this.group.width = t.aTwWrO.ins().getWidth()), + (this.group.height = t.aTwWrO.ins().getWidth()), + (this.bgGrp.x = (t.aTwWrO.ins().getWidth() - this.bgGrp.width) / 2), + (this.bgGrp.y = (t.aTwWrO.ins().getHeight() - this.bgGrp.height) / 2)); + }), + i + ); + })(t.BaseClass); + (t.CommonPopView = e), __reflect(e.prototype, "app.CommonPopView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.txtIcon1.source = this.data + "1"), (this.txtIcon2.source = this.data + "2"); + }), + e + ); + })(eui.ItemRenderer); + (t.CommonTabBarWin = e), __reflect(e.prototype, "app.CommonTabBarWin"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function s(t, i, n) { + var s = e.call(this) || this; + return (s._currentPage = 1), (s._maxLength = 10), (s._firstBtn = t), (s._prePageBtn = i), (s._nextPageBtn = n), (s._dataList = []), s.initUI(), s; + } + return ( + __extends(s, e), + (s.prototype.initUI = function () { + this._prePageBtn && this._prePageBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageUp, this), + this._nextPageBtn && this._nextPageBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageDown, this), + this._firstBtn && this._firstBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageFirst, this); + }), + (s.prototype.onPageUp = function (t) { + (this.btnType = n.Up), this.toPrePage(); + }), + (s.prototype.onPageDown = function (t) { + (this.btnType = n.Down), this.toNextPage(); + }), + (s.prototype.onPageFirst = function (t) { + this.toFirstPage(); + }), + (s.prototype.toPrePage = function () { + this.currentPage -= 1; + }), + (s.prototype.toNextPage = function () { + this.currentPage += 1; + }), + (s.prototype.toFirstPage = function () { + this.currentPage = 1; + }), + Object.defineProperty(s.prototype, "currentPage", { + get: function () { + return this._currentPage; + }, + set: function (t) { + this.toPage(t); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(s.prototype, "totalPage", { + get: function () { + return this._totalPage; + }, + enumerable: !0, + configurable: !0, + }), + (s.prototype.getPageText = function () { + return this._totalPage ? this._currentPage + " / " + this._totalPage : "0 / 0"; + }), + Object.defineProperty(s.prototype, "maxLength", { + get: function () { + return this._maxLength; + }, + set: function (t) { + this._maxLength = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(s.prototype, "type", { + get: function () { + return this._type; + }, + set: function (t) { + this._type = t; + }, + enumerable: !0, + configurable: !0, + }), + (s.prototype.toPage = function (e) { + 1 > e && (e = 1), e >= this._totalPage && (e = this._totalPage), 0 == this._totalPage && (e = 0), (this._currentPage = e), (this._curData = []); + var n, + s = this._currentPage - 1 < 0 ? 0 : this._currentPage - 1; + if (this.type == i.Special) { + n = s; + for (var a = n; a < this.maxLength + n && a < this._dataList.length; a++) this._curData.push(this._dataList[a]); + } else { + n = s * this.maxLength; + for (var a = n; a < this.maxLength + n && a < this._dataList.length; a++) this._curData.push(this._dataList[a]); + } + this.dispatchEvent(new t.CompEvent(t.CompEvent.PAGE_CHANGE, this._curData)); + }), + (s.prototype.setData = function (t, e) { + void 0 === e && (e = null), (this._dataList = t); + var n = this._dataList.length; + this.type == i.Special ? (this._totalPage = n) : (this._totalPage = Math.ceil(n / this.maxLength)); + }), + (s.prototype.destory = function () { + this.onRemove(); + }), + (s.prototype.onRemove = function () { + this._prePageBtn && (this._prePageBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageUp, this), (this._prePageBtn = null), t.lEYZI.Naoc(this._prePageBtn)), + this._nextPageBtn && (this._nextPageBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageDown, this), (this._nextPageBtn = null), t.lEYZI.Naoc(this._nextPageBtn)), + this._firstBtn && (this._firstBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onPageFirst, this), (this._firstBtn = null), t.lEYZI.Naoc(this._firstBtn)), + this._dataList && ((this._dataList.length = 0), (this._dataList = null)), + this._curData && ((this._curData.length = 0), (this._curData = null)); + }), + (s.prototype.setHide = function (t) { + (this._prePageBtn.visible = t), (this._nextPageBtn.visible = t); + }), + s + ); + })(egret.EventDispatcher); + (t.FlipPage = e), __reflect(e.prototype, "app.FlipPage"); + var i; + !(function (t) { + (t[(t.Normal = 0)] = "Normal"), (t[(t.Special = 1)] = "Special"); + })((i = t.FlipPageType || (t.FlipPageType = {}))); + var n; + !(function (t) { + (t[(t.Up = 1)] = "Up"), (t[(t.Down = 2)] = "Down"); + })((n = t.BtnType || (t.BtnType = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "CommonViewSkin"), (i.name = "GoToMapTipsView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e[0]) { + var n = e[0], + s = t.VlaoF.Scenes[t.GameMap.mapID], + a = s && s.scencename, + r = t.zlkp.replace(t.CrmPU.language_Tips93, a, t.DateUtils.getFormatBySecond(n, t.DateUtils.TIME_FORMAT_19)); + this.strLab.textFlow = t.hETx.qYVI(r); + } + this.vKruVZ(this.btnClose, this.onClick), this.vKruVZ(this.btnCofim, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btnCofim: + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.btnClose, this.onClick), this.fEHj(this.btnCofim, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.GoToMapTipsView = e), __reflect(e.prototype, "app.GoToMapTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.buffCD = 0), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if ( + ((this.rect.visible = !1), + (this.cdLab.text = ""), + (this.image.filters = null), + (this.image.source = "buff_" + this.data.icon), + (this.typeImg.source = 2 != this.data.iconshow ? "buff_zz1" : "buff_zz2"), + (this.typeImg.visible = this.data.iconshow < 2), + (this.buffCD = t.BuffMgr.ins().buffCDInfo[this.data.id]), + this.buffCD) + ) { + var e = this.buffCD - egret.getTimer(); + e > 0 + ? ((this.rect.visible = !0), + (this.rect.height = 40), + (this.typeImg.visible = !1), + 4 != this.data.iconshow && (this.image.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + t.KHNO.ins().RTXtZF(this.updateRect, this) || (this.updateRect(), t.KHNO.ins().tBiJo(100, 0, this.updateRect, this))) + : t.KHNO.ins().RTXtZF(this.updateRect, this) && t.KHNO.ins().remove(this.updateRect, this); + } else t.KHNO.ins().RTXtZF(this.updateRect, this) && t.KHNO.ins().remove(this.updateRect, this); + }), + (i.prototype.updateRect = function () { + var e = this.buffCD - egret.getTimer(); + if (((this.cdLab.text = Math.floor(e / 1e3) + ""), 1e4 >= e)) { + var i = 40 * (e / 1e4); + this.rect.height = i > 40 ? 40 : i; + } + 0 >= e && (t.KHNO.ins().remove(this.updateRect, this), (this.rect.visible = !1), (this.cdLab.text = ""), (this.typeImg.visible = this.data.iconshow < 2), (this.image.filters = null)); + }), + (i.prototype.inItFunction = function () { + this.VoZqXH(this, this.mouseMove), this.EeFPm(this, this.mouseMove); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = this.image.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, this.data.name, { + x: i.x + this.image.width / 2, + y: i.y + this.image.height / 2, + }), + (i = null); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + t.KHNO.ins().RTXtZF(this.updateRect, this) && t.KHNO.ins().remove(this.updateRect, this); + }), + i + ); + })(t.BaseItemRender); + (t.ImageBase = e), __reflect(e.prototype, "app.ImageBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.onEnter = function () { + e.prototype.onEnter.call(this), this.addLayerAt(t.yCIt.CtcxUT, 3), this.addLayerAt(t.yCIt.LjbkQx, 7), t.mAYZL.ins().open(t.CreateRoleView2); + }), + (i.prototype.onExit = function () { + e.prototype.onExit.call(this); + }), + i + ); + })(t.BaseScene); + (t.CreateRoleScene = e), __reflect(e.prototype, "app.CreateRoleScene"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "ItemSelectBaseSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.data && ((this.itemData.data = this.data.item), (this.isSelect.visible = !1)); + }), + (e.prototype.setSelect = function (t) { + this.isSelect.visible = this.itemIndex == t; + }), + e + ); + })(t.BaseItemRender); + (t.ItemSelectBase = e), __reflect(e.prototype, "app.ItemSelectBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + (i._selectJob = 0), + (i._selectSex = 0), + (i.isAutoEnter = !1), + (i.percentHeight = 100), + (i.percentWidth = 100), + (i.skinName = "CreateRole2Skin"), + (i.horizontalCenter = 0), + (i.verticalCenter = 0), + (i.job1.selected.source = "login_zs_1"), + (i.job2.selected.source = "login_fs_1"), + (i.job3.selected.source = "login_ds_1"), + (i.boy.selected.source = "login_nan_1"), + (i.girl.selected.source = "login_nv_1"); + var n = t.aTwWrO.ins().getHeight(); + return n < i.group.height ? (i.group.scaleX = i.group.scaleY = n / i.group.height) : (i.group.scaleX = i.group.scaleY = 1), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.closeButton.visible = 1 == e[0]), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound) && t.AHhkf.ins().createplayBg("chuangjian_mp3"), + (this.roleMc = t.ObjectPool.pop("app.MovieClip")), + (this.roleMc.scaleX = this.roleMc.scaleY = 1.4), + (this.roleMc.touchEnabled = !1), + this.roleGrp.addChild(this.roleMc), + (this.selectMc = t.ObjectPool.pop("app.MovieClip")), + (this.selectMc.blendMode = egret.BlendMode.ADD), + (this.selectMc.scaleX = this.selectMc.scaleY = 1), + (this.selectMc.touchEnabled = !1), + this.roleGrp.addChild(this.selectMc), + (this.createMc = t.ObjectPool.pop("app.MovieClip")), + (this.createMc.scaleX = this.createMc.scaleY = 1), + (this.createMc.touchEnabled = !1), + this.createMcGrp.addChild(this.createMc), + this.createMc.playFileEff(ZkSzi.RES_DIR_EFF + "create_anniu", -1), + window.isTraditional && ((this.bgImg.source = "login_bg1_jpg"), (this.createBtn.icon = "login_btn1")), + (this.selectJob = 1 == Main.vZzwB.gameMode ? 1 : t.MathUtils.limitInteger(1, 3)), + (this.selectSex = t.MathUtils.limitInteger(0, 1)), + this.job1.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job2.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job3.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.boy.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.girl.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.createBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.diceBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.closeButton.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + var n = t.MiOx.nickName; + "null" == n || "" == n ? t.TKZUv.ins().s_255_6(this._selectSex) : this.setName(n), + this.HFTK(t.bqQT.ins().postPerLoadProgress, this.perloadProgress), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendCreate), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendCreate), + t.KHNO.ins().removeAll(this), + this.nameInput.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + (this.nameInput.maxChars = 7), + (this.timeLab.text = ""); + e[0] || + FzTZ.reporting( + t.ReportDataEnum.CREATE_ROLE_VIEW, + {}, + { + uid: t.MiOx.openID, + roleId: t.MiOx.roleId, + serverName: t.MiOx.srvname, + }, + !1 + ); + }), + (i.prototype.updateTiem = function () { + var t = Math.ceil((this.openTime - egret.getTimer()) / 1e3); + (this.timeLab.text = Math.max(t, 0) + "秒后自动创建"), 0 >= t && ((this.isAutoEnter = !0), this.sendCreateRole()); + }), + (i.prototype.createRuselt = function (e) { + 6 == Math.abs(e) && t.TKZUv.ins().s_255_6(this._selectSex); + }), + (i.prototype.perloadProgress = function (t) { + t[0], t[1]; + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + this.job1.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job2.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job3.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.boy.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.girl.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.createBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.diceBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.nameInput.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.closeButton.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.roleMc.destroy(), + (this.roleMc = null), + this.selectMc.destroy(), + (this.selectMc = null), + t.KHNO.ins().removeAll(this), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound) && t.AHhkf.ins().DHzYBI(); + }), + (i.prototype.qqHallSendCreate = function (e) { + e.type == t.QQHallMsgType.nameMsg && (0 == e.isLegal ? t.TKZUv.ins().s_255_4(e.Msg, "", 0, this.curSex(), this.curJob()) : t.uMEZy.ins().IrCm("输入的文字不合法")); + }), + (i.prototype.yyHallSendCreate = function (e) { + e.msgType == t.YYHallMsgType.createRole && t.TKZUv.ins().s_255_4(e.msg, "", 0, this.curSex(), this.curJob()); + }), + (i.prototype.sendCreateRole = function () { + var e = this.nameInput.text.replace(/\s/g, ""); + if (e.length) { + t.KHNO.ins().removeAll(this), (this.timeLab.text = ""); + this.nameInput.text; + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? t.edHC.ins().qqHallTextFiltering(this.nameInput.text, t.QQHallMsgType.nameMsg) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? t.edHC.ins().yyHallTextFiltering(this.nameInput.text, t.YYHallMsgType.createRole) + : t.TKZUv.ins().s_255_4(this.nameInput.text, "", 0, this.curSex(), this.curJob()); + } else Main.XIFoU ? Main.XIFoU(t.CrmPU.language_Common_191) : t.uMEZy.ins().IrCm(t.CrmPU.language_Common_191); + }), + (i.prototype.IrCm = function (e) { + var i = t.ObjectPool.pop("app.TipsItem"); + i.cereateLabel(), (i.labelText = e), (i.labelSize = 20); + var n = (t.aTwWrO.ins().getHeight() - i.levelLab.height) / 2 - 160, + s = (t.aTwWrO.ins().getWidth() - i.levelLab.width) / 2; + (i.left = s), (i.y = n), (i.alpha = 1), this.addChild(i), egret.Tween.removeTweens(i); + var a = egret.Tween.get(i); + a.to( + { + y: n - 30, + }, + 100 + ) + .wait(2500) + .to( + { + alpha: 0, + }, + 500 + ) + .call(function () { + egret.Tween.removeTweens(this), this.parent.removeChild(this); + }); + }), + (i.prototype.onClick = function (e) { + var m = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Sound); + if (1 == Main.vZzwB.gameMode) { + switch (e.currentTarget) { + case this.job1: + case this.job2: + case this.job3: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL); + m && t.AHhkf.ins().touchBg(); + return; + } + } + switch (e.currentTarget) { + case this.createBtn: + this.sendCreateRole(), m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL); + break; + case this.diceBtn: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), t.TKZUv.ins().s_255_6(this._selectSex); + case this.nameInput: + break; + case this.boy: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectSex = 0); + break; + case this.girl: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectSex = 1); + break; + case this.job1: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 1); + break; + case this.job2: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 2); + break; + case this.job3: + m && t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 3); + break; + case this.closeButton: + t.mAYZL.ins().close(i); + } + m && t.AHhkf.ins().touchBg(); + }), + Object.defineProperty(i.prototype, "selectJob", { + set: function (t) { + (this._selectJob = t), this.updateRole(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "selectSex", { + set: function (t) { + (this._selectSex = t), this.updateRole(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.updateRole = function () { + var e = this, + i = this.curJob(), + n = this.curSex(); + (this.selectMc.visible = !0), + this.roleMc.playFileEff(ZkSzi.RES_DIR_CREATE + "create_" + i + "_" + n, -1), + this.selectMc.playFileEff( + ZkSzi.RES_DIR_CREATE + "xuanzhong", + 1, + function () { + e.selectMc.visible = !1; + }, + !1 + ); + for (var s = 1; 3 >= s; s++) { + this["job" + s].currentState = "up"; + } + if (1 == Main.vZzwB.gameMode) { + this.job1.visible = this.job3.visible = !1; + this.job2.currentState = "selected"; + this.job2.label = this.job1.label; + this.job2.selected.source = "login_zs_1"; + } else { + this["job" + i].currentState = "selected"; + } + 0 == n ? ((this.boy.currentState = "selected"), (this.girl.currentState = "up")) : ((this.girl.currentState = "selected"), (this.boy.currentState = "up")); + }), + (i.prototype.setName = function (t) { + (this.nameInput.text = t), this.isAutoEnter && this.sendCreateRole(); + }), + (i.prototype.curJob = function () { + return this._selectJob; + }), + (i.prototype.curSex = function () { + return this._selectSex; + }), + i + ); + })(t.gIRYTi); + (t.CreateRoleView2 = e), __reflect(e.prototype, "app.CreateRoleView2"), t.mAYZL.ins().reg(e, t.yCIt.tKOC); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ItemSlotSkin2"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.onOver = function (t) {}), + (i.prototype.onDoubleClick = function (t) {}), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1), this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this); + }), + (i.prototype.onTouchAp = function (t) { + (this.effect.visible = !0), this.callFunc && this.callFunc(this.id, this.level, this.state); + }), + (i.prototype.setData = function (e, i, n, s, a, r, o, l) { + void 0 === l && (l = 2), (this.txtName.visible = !0), (this.sign.visible = 1 == r), (this.id = e), (this.level = i), (this.icon.source = n + ""), (this._type = l); + var h = 15774976; + (this.txtName.textFlow = t.hETx.qYVI("|C:" + h + "&T:" + s + "|")), + (this.effect.visible = 1 == a), + (this.state = r), + 0 == i ? ((this.count.visible = !1), (this.count.text = "")) : ((this.count.visible = !0), (this.count.text = i + t.CrmPU.language_Common_1)), + 1 != l && (this.redDot.visible = 1 == t.rTRv.ins().isSatisfyItemAct(e) ? !0 : !1), + (this.callFunc = o); + }), + (i.prototype.destroy = function () { + e.prototype.destroy.call(this); + }), + i + ); + })(t.ItemSlot); + (t.ItemSlot2 = e), __reflect(e.prototype, "app.ItemSlot2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "CommonViewSkin"), (i.name = "JumpTipsView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System61), + (this.strLab.textAlign = "center"), + (this.btnClose.label = t.CrmPU.language_Common_216); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.strLab.textFlow = t.hETx.qYVI(e[0])), (this.JumpApp = e[1]), (this.JumpData = e[2]), this.vKruVZ(this.btnClose, this.onClick), this.vKruVZ(this.btnCofim, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnClose: + t.mAYZL.ins().open(this.JumpApp, this.JumpData), t.mAYZL.ins().close(this); + break; + case this.btnCofim: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.btnClose, this.onClick), this.fEHj(this.btnCofim, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.JumpTipsView = e), __reflect(e.prototype, "app.JumpTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.nameLabel.text = this.data.name), + this.data.zsLevel + ? (this.levelLabel.text = t.AttributeData.job[this.data.job] + " " + this.data.zsLevel + t.CrmPU.language_Common_0 + this.data.level + t.CrmPU.language_Common_1) + : (this.levelLabel.text = t.AttributeData.job[this.data.job] + " " + this.data.level + t.CrmPU.language_Common_1), + (this.hairImage.source = "name_" + this.data.job + "_" + this.data.sex), + (this.selectImg.visible = this.data.select), + (this.guildLabel.text = t.CrmPU.language_Player_Text3 + ("" == this.data.guildName ? "无" : this.data.guildName)); + }), + i + ); + })(eui.ItemRenderer); + (t.SwitchPlayerItem = e), __reflect(e.prototype, "app.SwitchPlayerItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconArr = ["icon_jinbi", "icon_bangding", "icon_yinliang", "icon_yuanbao"]), t; + } + return ( + __extends(i, e), + (i.prototype.setCount = function (e) { + this.count.textFlow = t.hETx.qYVI(e); + }), + (i.prototype.setData = function (e, i) { + var n = t.VlaoF.NumericalIcon[e]; + n && + (e >= 1 && 5 > e ? (this.icon.source = this.iconArr[n.id - 1]) : (this.icon.source = n.icon + ""), + (this.Introduction = n.description), + i && (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.moneyMove, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.moneyMove, this))); + }), + (i.prototype.moneyMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = this.localToGlobal(); + this.Introduction && + (t.uMEZy.ins().LJzNt(this, t.TipsType.TIPS_MONEY, this.Introduction, { + x: i.x + this.width / 2, + y: i.y + this.height / 2, + }), + (i = null)); + } + }), + (i.prototype.removeEvent = function () { + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.moneyMove, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.moneyMove, this); + }), + i + ); + })(t.BaseView); + (t.moneyPanel = e), __reflect(e.prototype, "app.moneyPanel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.bind = function (t) { + KdbLz.qOtrbE.iFbP || + (t && + (this.unbind(t), + t.addEventListener(mouse.MouseEvent.MOUSE_OUT, e.createMouseWheel, t), + t.addEventListener(mouse.MouseEvent.MOUSE_OVER, e.createMouseWheel, t), + (e.scrolleres[t.hashCode] = e.onScrollerMouse(t)))); + }), + (e.unbind = function (i) { + KdbLz.qOtrbE.iFbP || + (i && + (t.aTwWrO.ins().getStage().removeEventListener(mouse.MouseEvent.MOUSE_WHEEL, e.scrolleres[i.hashCode], null), + i.removeEventListener(mouse.MouseEvent.MOUSE_OUT, e.createMouseWheel, i), + i.removeEventListener(mouse.MouseEvent.MOUSE_OVER, e.createMouseWheel, i), + delete e.scrolleres[i.hashCode])); + }), + (e.onScrollerMouse = function (t) { + return KdbLz.qOtrbE.iFbP + ? void 0 + : function (e) { + if (t.viewport && !(t.viewport.contentHeight <= t.height)) { + var i = 0; + e.data > 0 && (i = 120), e.data < 0 && (i = -120), (t.viewport.scrollV = Math.max(Math.min(t.viewport.scrollV - i, t.viewport.contentHeight - t.height), 0)); + } + }; + }), + (e.createMouseWheel = function (i) { + if (!KdbLz.qOtrbE.iFbP) { + var n = i.currentTarget; + e.scrolleres[n.hashCode] && + (i.type == mouse.MouseEvent.MOUSE_OUT + ? t.aTwWrO.ins().getStage().removeEventListener(mouse.MouseEvent.MOUSE_WHEEL, e.scrolleres[n.hashCode], null) + : i.type == mouse.MouseEvent.MOUSE_OVER && t.aTwWrO.ins().getStage().addEventListener(mouse.MouseEvent.MOUSE_WHEEL, e.scrolleres[n.hashCode], null)); + } + }), + (e.addCallbackFunction = function (t, i) { + KdbLz.qOtrbE.iFbP || (e.scrolleres[t.hashCode] = i); + }), + (e.scrolleres = []), + e + ); + })(); + (t.MouseScroller = e), __reflect(e.prototype, "app.MouseScroller"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.barText.text = this.data + ""), + this.barText.text && (3 == this.barText.text.length ? (this.barText.lineSpacing = 8) : 4 == this.barText.text.length ? (this.barText.lineSpacing = 0) : (this.barText.lineSpacing = 13)); + }), + e + ); + })(eui.ItemRenderer); + (t.NewTabBarItemRenderer = e), __reflect(e.prototype, "app.NewTabBarItemRenderer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.redadd = "rTRv.isSatisfyClothesAct"), (t.redadd2 = "rTRv.isSatisfyArmsAct"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1); + }), + (i.prototype.dataChanged = function () { + (this.barText.source = this.data.tabImg + ""), this.refresh(); + }), + (i.prototype.refresh = function () { + this.redDot.visible = this.data.isMy && t.rTRv.ins().getFashionRedPoint(this.data.tabType) ? !0 : !1; + }), + i + ); + })(eui.ItemRenderer); + (t.NewTabBarItemRenderer2 = e), __reflect(e.prototype, "app.NewTabBarItemRenderer2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this), (this.redDot.visible = !1); + }), + (e.prototype.dataChanged = function () { + this.barText.source = this.data + ""; + }), + e + ); + })(eui.ItemRenderer); + (t.NewTabBarItemRenderer3 = e), __reflect(e.prototype, "app.NewTabBarItemRenderer3"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1); + }), + (i.prototype.refresh = function () { + this.data == t.CrmPU.language_System80 && (this.redDot.param = null); + }), + (i.prototype.dataChanged = function () { + if ( + ((this.barText.text = this.data + ""), + this.barText.text && + (3 == this.barText.text.length ? (this.barText.lineSpacing = 8) : 4 == this.barText.text.length ? (this.barText.lineSpacing = 0) : (this.barText.lineSpacing = 13), + this.barText.text == t.CrmPU.language_System80)) + ) { + var e = "UyfaJ.isShowRed"; + this.redDot.updateShowFunctions = e; + } + }), + i + ); + })(eui.ItemRenderer); + (t.NewTabBarItemRenderer4 = e), __reflect(e.prototype, "app.NewTabBarItemRenderer4"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._showMessages = ""), (t._updateShowFunctions = ""), t; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addMsgListener(); + }), + (i.prototype.addMsgListener = function () { + if ((this.removeObserve(), this._showMessages && this.updateShowFunction)) { + for (var e = this._showMessages.split(";"), i = e.length, n = null, s = null, a = 0; i > a; a++) + (s = e[a].split(".")), (n = egret.getDefinitionByName("app." + s[0])), n && n.ins && n.ins()[s[1]] && t.rLmMYc.addListener(n.ins()[s[1]], this.delayUpdateShow, this); + this.delayUpdateShow(); + } + }), + (i.prototype.delayUpdateShow = function () { + !t.KHNO.ins().RTXtZF(this.updateShow, this) && this.updateShowFunction && t.KHNO.ins().tBiJo(500, 1, this.updateShow, this); + }), + (i.prototype.updateShow = function () { + if ((t.KHNO.ins().remove(this.updateShow, this), this.img)) { + var e = this.param ? this.updateShowFunction(this.param) : this.updateShowFunction(); + 1 == e ? ((this.img.source = "common_hongdian"), (this.visible = !0)) : 2 == e ? ((this.img.source = "common_chengdian"), (this.visible = !0)) : (this.visible = !1); + } + }), + (i.prototype.setRedImg = function (t) { + 1 == t ? (this.img.source = "common_hongdian") : 2 == t && (this.img.source = "common_chengdian"); + }), + (i.prototype.$onRemoveFromStage = function () { + t.KHNO.ins().removeAll(this), this.removeObserve(), e.prototype.$onRemoveFromStage.call(this); + }), + Object.defineProperty(i.prototype, "showMessages", { + get: function () { + return this._showMessages; + }, + set: function (e) { + t.KHNO.ins().removeAll(this), (this._showMessages = e), this.parent && this.addMsgListener(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "updateShowFunctions", { + get: function () { + return this._updateShowFunctions; + }, + set: function (e) { + if ((t.KHNO.ins().removeAll(this), (this.updateShowFunction = null), e)) { + var i = e.split("."), + n = egret.getDefinitionByName("app." + i[0]); + n && n.ins && n.ins()[i[1]] && (this.updateShowFunction = n.ins()[i[1]]); + } + (this._updateShowFunctions = e), this.delayUpdateShow(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "param", { + get: function () { + return this._param; + }, + set: function (t) { + (this._param = t), this.delayUpdateShow(); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseView); + (t.RedDotControl = e), __reflect(e.prototype, "app.RedDotControl"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._changeFunc = null), (i._endFunc = null), (i._tapFunc = null), (i._container = t), t ? ((i._container.touchEnabled = !1), (i._container.touchChildren = !0), i.init(), i) : i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + var e = this; + (this._scroller = this._container.getChildByName("scroller")), + (this._list = this._container.getChildByName("list")), + (this.vSlider = this._container.getChildByName("verticalSlider")), + this.vSlider && + ((this.vSlider.visible = !1), + this.vSlider.addEventListener( + egret.Event.CHANGE, + function (t) { + var i = e.vSlider, + n = e._scroller, + s = t.target.value, + a = n.viewport.contentHeight - n.height - s >= 0 ? n.viewport.contentHeight - n.height - s : i.maximum - s; + 60 > a && (a -= 60), (n.viewport.scrollV = Math.max(a, 0)); + }, + this + ), + t.KHNO.ins().doNext(this.doNext, this)), + (this._scroller.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scroller.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this._scroller.verticalScrollBar.autoVisibility = !1), + (this._scroller.verticalScrollBar.visible = !1), + this._scroller.addEventListener(egret.TouchEvent.CHANGE, this.onScrollerChange, this), + this._scroller.addEventListener(eui.UIEvent.CHANGE_END, this.onScrollerEnd, this), + this._list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + (this._scroller.viewport = this._list), + t.MouseScroller.bind(this._scroller), + t.MouseScroller.addCallbackFunction(this._scroller, this.onScrollerMouse.bind(this)); + }), + (i.prototype.doNext = function () { + if (this._scroller) { + var t = this._scroller; + 0 == t.viewport.contentHeight + ? ((this.vSlider.visible = !1), (this.vSlider.value = t.height), (this.vSlider.thumb.height = t.height / Math.ceil(t.viewport.measuredHeight / t.height))) + : ((this.vSlider.visible = !1), (this.vSlider.value = t.height), (this.vSlider.thumb.height = t.height / Math.ceil(t.viewport.contentHeight / t.height))); + } + }), + (i.prototype.onScrollerMouse = function (t) { + var e = this._scroller, + i = this._scroller.viewport.scrollV - t.data; + (e.viewport.scrollV = Math.max(Math.min(i, e.viewport.contentHeight - e.height), 0)), + this.vSlider && + (this.vSlider.value = + this.vSlider.value - e.viewport.scrollV * (e.height / this.vSlider.thumb.height) >= 0 && this.vSlider.value - e.viewport.scrollV * (e.height / this.vSlider.thumb.height) > e.height + ? e.height + : this.vSlider.value - i * (e.height / this.vSlider.thumb.height)); + }), + Object.defineProperty(i.prototype, "scrollPolicyV", { + set: function (t) { + this._scroller.scrollPolicyV = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "scrollPolicyH", { + set: function (t) { + this._scroller.scrollPolicyH = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.callFunc = function (t, e) { + (this._changeFunc = t[0]), (this._endFunc = t[1]), (this._tapFunc = t[2]), (this._targetObj = e); + }), + Object.defineProperty(i.prototype, "value", { + set: function (t) { + this.vSlider && (this.vSlider.value = t); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "itemRenderer", { + set: function (t) { + this._list.itemRenderer = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "dataProvider", { + set: function (t) { + this._list.dataProvider = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "list", { + get: function () { + return this._list; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "scroller", { + get: function () { + return this._scroller; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onScrollerChange = function (t) { + var e = this._scroller, + i = e.viewport.scrollV; + return i + e.height >= e.viewport.contentHeight + ? ((e.viewport.scrollV = e.viewport.contentHeight - e.height), void this.stopAnimation()) + : (this.vSlider && + (this.vSlider.value = + this.vSlider.value - i * (e.height / this.vSlider.thumb.height) >= 0 && this.vSlider.value - i * (e.height / this.vSlider.thumb.height) > e.height + ? e.height + : this.vSlider.value - i * (e.height / this.vSlider.thumb.height)), + void (this._changeFunc && this._changeFunc())); + }), + (i.prototype.onScrollerEnd = function (t) { + this._endFunc && this._endFunc(); + }), + (i.prototype.stopAnimation = function () { + this._scroller.stopAnimation(); + }), + (i.prototype.onItemTap = function (t) { + if (this._tapFunc) { + var e = t.itemIndex, + i = this._list.selectedItem, + n = this._list.getElementAt(e), + s = new egret.Point(this._list.x + this.list.width, e * n.height + n.height / 2); + this._tapFunc.call(this._targetObj, i, e, s, n); + } + }), + (i.prototype.destory = function () { + t.KHNO.ins().removeAll(this), + t.MouseScroller.unbind(this._scroller), + this._scroller.removeEventListener(eui.UIEvent.CHANGE, this.onScrollerChange, this), + this._list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this._scroller.removeEventListener(eui.UIEvent.CHANGE_END, this.onScrollerEnd, this), + this.vSlider && this.vSlider.removeEventListener(egret.Event.CHANGE, function (t) {}, this), + (this._scroller.viewport = null), + (this._scroller = null), + (this._list.itemRenderer = null), + (this._list.dataProvider = null), + (this._list = null), + (this.vSlider = null), + (this._changeFunc = null), + (this._endFunc = null), + (this._tapFunc = null), + (this._targetObj = null), + t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.ScrollViewContainer = e), __reflect(e.prototype, "app.ScrollViewContainer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClikcItem, this), e.prototype.$onAddToStage.call(this, t, i); + }), + (i.prototype.$onRemoveFromStage = function () { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.hideView, this), + this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClikcItem, this), + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.onClikcItem = function (t) { + this._clickFunction && this._clickFunction(t.item), this.hideView(); + }), + Object.defineProperty(i.prototype, "setClickFunction", { + set: function (t) { + this._clickFunction = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.itemRenderer = function (t, e) { + void 0 === e && (e = "MainSelectItem"), (this.list.itemRenderer = t), (this.list.itemRendererSkinName = e); + }), + Object.defineProperty(i.prototype, "dataProvider", { + set: function (t) { + this.list.dataProvider = new eui.ArrayCollection(t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.hideView = function (e) { + void 0 === e && (e = null), t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.hideView, this), (this.visible = !1); + }), + (i.prototype.showView = function () { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.hideView, this), this.addEventListener(egret.Event.ENTER_FRAME, this.onEnterFrame, this), (this.visible = !0); + }), + (i.prototype.onEnterFrame = function () { + this.removeEventListener(egret.Event.ENTER_FRAME, this.onEnterFrame, this), t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_TAP, this.hideView, this); + }), + Object.defineProperty(i.prototype, "selectList", { + get: function () { + return this.list; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setBg = function (t, e) { + (this.bg.source = t), (this.bg.scale9Grid = e); + }), + (i.prototype.close = function () { + this.removeEventListener(egret.Event.ENTER_FRAME, this.onEnterFrame, this), (this._clickFunction = null), this.hideView(), t.lEYZI.Naoc(this.list); + }), + Object.defineProperty(i.prototype, "direction", { + set: function (t) { + 2 == t ? ((this.group.bottom = null), (this.group.top = 0)) : ((this.group.top = null), (this.group.bottom = 0)); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseView); + (t.SelectInput = e), __reflect(e.prototype, "app.SelectInput"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ItemBaseSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.VoZqXH(this, this.mouseMove), this.EeFPm(this, this.mouseMove); + }), + (i.prototype.dataChanged = function () { + if (((this.itemCount.visible = this.imgNuBg.visible = !1), (this.itemBg.source = "quality_0"), this.data)) + if (0 == this.data.type) { + var e = t.VlaoF.StdItems[this.data.id]; + e && + ((this.itemBg.source = "quality_" + e.showQuality), + (this.itemIcon.source = e.icon + ""), + (this.itemCount.text = this.data.count > 1 ? this.data.count : ""), + (this.imgNuBg.source = e.iseffect ? "yan_" + e.iseffect : ""), + (this.imgNuBg.visible = e.iseffect ? !0 : !1)); + } else { + var i = t.VlaoF.NumericalIcon[this.data.type]; + i && (this.itemIcon.source = i.icon + ""); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.data) { + var n = i.localToGlobal(); + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this.data.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } else { + var r = t.ZAJw.sztgR(this.data.type, this.data.id); + r && + r[2] && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, r[2], { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + n = null; + } + i = null; + } + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisItemBase = e), __reflect(e.prototype, "app.SynthesisItemBase"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._container = t), (i.tabElements = []), i.init(), i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + var e; + if (null != this._container) { + var i, + n = this._container.numChildren; + for (e = 0; n > e && ((i = this._container.getChildByName("tab_" + e)), i); e++) + i.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + i.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchHandler, this), + i.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchHandler, this), + this.tabElements.push(new t.TabElement(i)); + } + }), + (i.prototype.onTouchHandler = function (t) { + t.stopImmediatePropagation(); + }), + (i.prototype.onTouchTap = function (e) { + var i, n; + if (!this._currTab || this._currTab.skin != e.currentTarget) { + for (n = 0; n < this.tabElements.length; n++) (i = this.tabElements[n]), i.skin == e.currentTarget ? (i["goto"](2), (this._currIndex = n), (this._currTab = i)) : i["goto"](1); + this.dispatchEvent(new t.CompEvent(t.CompEvent.TAB_CHANGE)); + } + }), + (i.prototype.addElement = function (e) { + this.tabElements.push(new t.TabElement(e)); + }), + Object.defineProperty(i.prototype, "currIndex", { + get: function () { + return this._currIndex; + }, + set: function (e) { + var i, n; + if (((i = this.tabElements[e]), !this._currTab || this._currTab != i)) { + for (i["goto"](2), this._currIndex = e, this._currTab = i, n = 0; n < this.tabElements.length; n++) n != e && this.tabElements[n]["goto"](1); + this.dispatchEvent(new t.CompEvent(t.CompEvent.TAB_CHANGE)); + } + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "currTab", { + get: function () { + return this._currTab; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.addEvent = function () { + for (var t, e = 0, i = this.tabElements.length; i > e; e++) (t = this.tabElements[e]), t.skin.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this); + }), + (i.prototype.removeEvent = function () { + for (var t, e = 0, i = this.tabElements.length; i > e; e++) (t = this.tabElements[e]), t.skin.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this); + }), + (i.prototype.destory = function () { + for (var e, i = 0, n = this.tabElements.length; n > i; i++) + (e = this.tabElements[i]), + e.skin.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + e.skin.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchHandler, this), + e.skin.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchHandler, this), + e.destory(), + (e = null); + (this.tabElements.length = 0), (this.tabElements = null), this._container.numChildren > 0 && this._container.removeChildren(), t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.TabBar = e), __reflect(e.prototype, "app.TabBar"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._container = t), this.init(); + } + return ( + (e.prototype.init = function () { + (this._nameTf = this._container.getChildByName("nameTf")), (this._selectImg = this._container.getChildByName("select")), (this._normalImg = this._container.getChildByName("normal")); + }), + Object.defineProperty(e.prototype, "skin", { + get: function () { + return this._container; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype["goto"] = function (e) { + 1 == e + ? ((this._normalImg.visible = !0), (this._selectImg.visible = !1), (this._nameTf.textColor = t.ClwSVR.ROLE_TAB_SELECTED_COLOR)) + : ((this._selectImg.visible = !0), (this._normalImg.visible = !1), (this._nameTf.textColor = t.ClwSVR.ROLE_TAB_COLOR)); + }), + (e.prototype.destory = function () { + this._container.numElements > 0 && this._container.removeChildren(), t.lEYZI.Naoc(this._container); + }), + e + ); + })(); + (t.TabElement = e), __reflect(e.prototype, "app.TabElement"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = !0), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i), + i == this.btn_close && + (this.btn_close.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this), this.btn_close.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onClickHandler, this)); + }), + (i.prototype.onClickHandler = function (e) { + e.type == egret.TouchEvent.TOUCH_BEGIN + ? e.stopPropagation() + : (t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), + this._func && this._func(), + this._parent && (!this._parent.parent || this._parent.parent instanceof t.VbTul ? t.mAYZL.ins().close(this._parent) : t.mAYZL.ins().close(this._parent.parent))); + }), + (i.prototype.setCurrentState = function (t) { + void 0 === t && (t = "default"), (this.currentState = t); + }), + (i.prototype.setParent = function (t) { + this._parent = t; + }), + (i.prototype.setFunc = function (t) { + this._func = t; + }), + (i.prototype.setTitle = function (t) { + this.txt_name && (this.txt_name.text = t); + }), + (i.prototype.destroy = function () { + this.btn_close && + (this.btn_close.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this), this.btn_close.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onClickHandler, this)), + (this._parent = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Component); + (t.UIViewFrame = e), __reflect(e.prototype, "app.UIViewFrame", ["eui.UIComponent", "egret.DisplayObject"]); + var i; + !(function (t) { + (t[(t.ShortcutKeyCancel = 0)] = "ShortcutKeyCancel"), (t[(t.ShortcutKeyNoSet = 1)] = "ShortcutKeyNoSet"), (t[(t.ShortcutKeyOk = 2)] = "ShortcutKeyOk"); + })((i = t.UIViewFrameType || (t.UIViewFrameType = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "VersionUpdateSkin"), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.openView = function () { + var e = new i(); + t.aTwWrO.ins().getStage().addChildAt(e, 100), e.open(); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, this.onResize, this), + this.vKruVZ(this.closeBtn, this.onClick), + (this.strLab.text = t.CrmPU.language_Common_241), + this.onResize(); + }), + (i.prototype.onResize = function () { + var e = t.aTwWrO.ins().getWidth(), + i = t.aTwWrO.ins().getHeight(); + (this.width = e), (this.height = i); + }), + (i.prototype.onClick = function () { + location.reload(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.aTwWrO.ins().getStage().removeEventListener(egret.Event.RESIZE, this.onResize, this), + this.fEHj(this.closeBtn, this.onClick), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.gIRYTi); + (t.VersionUpdateView = e), __reflect(e.prototype, "app.VersionUpdateView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconArr = []), (t.skinName = "YYPlatformFuLiWinSkin"), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "icon", { + get: function () { + return this._icon; + }, + set: function (t) { + (this._icon = t), (this.iconDisplay.source = t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.addBtnArr = function () { + for (var e = 0; e < this.arrGrp.numChildren; e++) this.arrGrp.getChildAt(e).removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + (this.iconArr = []), this.arrGrp.removeChildren(); + for (var i in t.VlaoF.YYPlayFunConfig) { + if (1 == t.VlaoF.YYPlayFunConfig[i].id) { + var n = this.yyDaTingBtn(); + if (0 == n) continue; + } + if (3 == t.VlaoF.YYPlayFunConfig[i].id) { + var s = this.YYwxBtn(); + if (0 == s) continue; + } + var a = new t.MainButton(); + (a.icon = t.VlaoF.YYPlayFunConfig[i].icon), + (a.view = t.VlaoF.YYPlayFunConfig[i].view), + (a.type = t.VlaoF.YYPlayFunConfig[i].id), + this.iconArr.push(a), + a.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.arrGrp.addChild(a); + } + }), + (i.prototype.YYwxBtn = function () { + var e = t.TQkyOx.ins().getActivityInfo(10027); + return e ? 1 : (t.mAYZL.ins().ZbzdY(t.YYWxGiftWin) && t.mAYZL.ins().close(t.YYWxGiftWin), 0); + }), + (i.prototype.yyDaTingBtn = function () { + var e = t.TQkyOx.ins().YYInfo; + for (var i in t.VlaoF.YYPlayFunConfig) + if (1 == t.VlaoF.YYPlayFunConfig[i].id) { + if (!e) return 1; + if (!e.YYNoviceGift) return 1; + var n = 1, + s = 0; + for (var a in t.VlaoF.YYMemberConfig.loginGift) if (((s = t.MathUtils.getValueAtBit(e.YYLoginGift, n)), n++, !s)) return 1; + n = 1; + for (var a in t.VlaoF.YYMemberConfig.levelGift) if (((s = t.MathUtils.getValueAtBit(e.YYLevelGift, n)), n++, !s)) return 1; + n = 1; + for (var a in t.VlaoF.YYMemberConfig.nobleGift) if (((s = t.MathUtils.getValueAtBit(e.YYNobleGift, n)), n++, !s)) return 1; + return t.mAYZL.ins().ZbzdY(t.YYLobbyPrivilegesWin) && t.mAYZL.ins().close(t.YYLobbyPrivilegesWin), 0; + } + }), + (i.prototype.updateBtnRed = function () { + for (var e = 0, i = 0, n = 0; n < this.iconArr.length; n++) + if (((this.iconArr[n].redImage.visible = !1), this.iconArr[n].type)) + if (1 == this.iconArr[n].type) for (var s = 1; 4 >= s; s++) (e = t.TQkyOx.ins().updateYYRed(this.iconArr[n].type, s)), e > 0 && ((this.iconArr[n].redImage.visible = !0), (i = e)); + else if (2 == this.iconArr[n].type) for (var s = 1; 3 >= s; s++) (e = t.TQkyOx.ins().updateYYRed(this.iconArr[n].type, s)), e > 0 && ((this.iconArr[n].redImage.visible = !0), (i = e)); + return i; + }), + (i.prototype.onClick = function (e) { + (t.TQkyOx.ins().YYClick = !0), e.currentTarget && e.currentTarget.view && t.mAYZL.ins().open(e.currentTarget.view); + }), + i + ); + })(eui.Component); + (t.YYPlatformFuLiWin = e), __reflect(e.prototype, "app.YYPlatformFuLiWin"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._openViewCfg = null), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.btn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.btn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this); + }), + (i.prototype.onTouch = function (e) { + if (this._openViewCfg) { + var i = this._openViewCfg.view.split(";"), + n = 0; + for (i.length; n < i.length; n++) { + var s = i[n], + a = this._openViewCfg.WindowRoute[n]; + "app.ShopView" == s || "app.FlyShoesView" == s ? t.mAYZL.ins().ZbzdY(s) || t.mAYZL.ins().open(s, a[0], a[1]) : t.mAYZL.ins().ZbzdY(s) || t.mAYZL.ins().open(s, a), + t.mAYZL.ins().ZbzdY(t.GaimItemWin) && t.mAYZL.ins().close(t.GaimItemWin); + } + } + }), + (i.prototype.dataChanged = function () { + this.data && ((this._openViewCfg = t.VlaoF.OpenWindowConfig[this.data]), this._openViewCfg && (this.btn.icon = this._openViewCfg.icon + "")); + }), + i + ); + })(t.BaseItemRender); + (t.GaimItemListItem = e), __reflect(e.prototype, "app.GaimItemListItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._itemID = 0), + (i._shopCfg = null), + (i.pos = null), + (i.size = null), + (i.maxNum = 999), + (i._hashCode = 0), + (i.curNum = 0), + (i.skinName = "GaimItemWinSKin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.viewList.itemRenderer = t.GaimItemListItem); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && + (e[0] && ((this._itemID = e[0]), e[0].itemId && (this._itemID = e[0].itemId), e[0].needNum && (this.curNum = e[0].needNum > 0 ? e[0].needNum : 0)), + e[1] && (this.pos = e[1]), + e[2] && (this.size = e[2]), + e[3] && (this._hashCode = e[3])), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.jianBtn, this.onClick), + this.vKruVZ(this.buyBtn, this.onClick), + this.inputNum.addEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.inputNum.addEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + this.HFTK(t.Nzfh.ins().post_gaimItemView, this.closeView), + this.setData(); + }), + (i.prototype.closeView = function (e) { + e == this._hashCode && t.mAYZL.ins().close(this); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), this.pos && this.size && this.setPos(); + }), + (i.prototype.setPos = function () { + var t = this.formatView(0, 0.5 * this.size.width); + isNaN(t) || (this.x = this.pos.x + Math.round((this.size.width - this.width) / 2 + t)); + var e = this.formatView(0, 0.5 * this.size.height); + isNaN(e) || (this.y = this.pos.y + Math.round((this.size.height - this.height) / 2 + e)); + }), + (i.prototype.formatView = function (t, e) { + if (!t || "number" == typeof t) return t; + var i = t, + n = i.indexOf("%"); + if (-1 == n) return +i; + var s = +i.substring(0, n); + return 0.01 * s * e; + }), + (i.prototype.textFocusOn = function (t) { + this.inputNum.text = ""; + }), + (i.prototype.textChange = function (t) { + this.curNum = +t.target.text; + }), + (i.prototype.setData = function () { + if (0 != this._itemID) { + var e = t.VlaoF.StdItems[this._itemID]; + e && + ((this.itemBg.source = "quality_" + e.showQuality), + (this.itemIcon.source = e.icon + ""), + (this.itemName.text = e.name + ""), + (this.itemNu.source = e.iseffect ? "yan_" + e.iseffect : ""), + (this.itemNu.visible = e.iseffect ? !0 : !1)); + var i = t.VlaoF.GetItemRouteConfig[this._itemID]; + if (i) { + this.itemDesc.textFlow = t.hETx.qYVI(i.itemdesc); + var n = []; + for (var s in i.Route) { + var a = t.VlaoF.OpenWindowConfig[i.Route[s]]; + if (a) { + if (13 == a.id) { + var r = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge); + if (!r) continue; + if (r.info.sum && r.info.state >= 7) continue; + } + a.openParam ? t.mAYZL.ins().isCheckOpen(a.openParam) && n.push(i.Route[s]) : n.push(i.Route[s]); + } + } + if (((this.viewList.dataProvider = new eui.ArrayCollection(n)), i.shopid)) { + if (((this.inputNum.text = this.curNum + ""), (this.buyGrp.visible = !0), i.shopid.shoptype && i.shopid.Tabshop && i.shopid.shopid)) { + var o = i.shopid.shoptype, + l = i.shopid.Tabshop, + h = i.shopid.shopid; + if (((this._shopCfg = t.VlaoF.ShopConfig[o][l][h]), this._shopCfg)) { + this._shopCfg.Maxbatchbuy && (this.maxNum = this._shopCfg.Maxbatchbuy); + var p = t.ZAJw.sztgR(this._shopCfg.price.type, this._shopCfg.price.id); + p && (this.priceLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt122 + ":|C:0x28ee01&T:" + this._shopCfg.price.count + p[0] + "|")); + } + } + } else this.buyGrp.visible = !1; + } + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.addBtn: + (this.curNum += 1), this.curNum > this.maxNum && (this.curNum = this.maxNum), (this.inputNum.text = this.curNum + ""); + break; + case this.jianBtn: + (this.curNum -= 1), this.curNum < 0 && (this.curNum = 0), (this.inputNum.text = this.curNum + ""); + break; + case this.buyBtn: + this._shopCfg + ? 0 != this.curNum + ? (t.ShopMgr.ins().sendBuyShop(this._shopCfg.shoptype, this._shopCfg.Tabshop, this._shopCfg.shopid, 0, this.curNum), t.mAYZL.ins().close(this)) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt80) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt81); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this._hashCode = -1), + this.inputNum.removeEventListener(egret.FocusEvent.FOCUS_IN, this.textFocusOn, this), + this.inputNum.removeEventListener(egret.FocusEvent.CHANGE, this.textChange, this), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.jianBtn, this.onClick), + this.fEHj(this.buyBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.GaimItemWin = e), __reflect(e.prototype, "app.GaimItemWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "GetPropsItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this, this.onCheck); + }), + (i.prototype.onCheck = function () { + 1 == this.data.check ? this.backFunc && this.backFunc.call(this.target, this.view, this.windowRoute) : this.tips && t.uMEZy.ins().IrCm(this.tips); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + (this.windowRoute = t.route), + (this.txtName.text = t.moudleName), + (this.target = t.target), + (this.backFunc = t.backFunc), + (this.view = t.view), + (this.tips = t.tips), + (this.groupCheck.visible = "挂机" != t.moudleName); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this, this.onCheck), (this.backFunc = null); + }), + i + ); + })(t.BaseItemRender); + (t.GetPropsItemRender = e), __reflect(e.prototype, "app.GetPropsItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.listArr = []), + (i.viewFrames = ["default", "default1", "default2", "default3", "default5"]), + (i.skinName = "GetPropsViewSkin"), + (i.name = "GetPropsView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.scroller.scrollPolicyH = eui.ScrollPolicy.OFF), + (this.scroller.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this.scroller.verticalScrollBar.autoVisibility = !1), + (this.scroller.verticalScrollBar.visible = !1), + (this.scrollerDesc.scrollPolicyH = eui.ScrollPolicy.OFF), + (this.scrollerDesc.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this.scrollerDesc.verticalScrollBar.autoVisibility = !1), + (this.scrollerDesc.verticalScrollBar.visible = !1), + t.MouseScroller.bind(this.scroller), + t.MouseScroller.bind(this.scrollerDesc), + (this.itemArrayCollection = new eui.ArrayCollection()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && + ((this.list.itemRenderer = t.GetPropsItemRender), + (this.list.dataProvider = this.itemArrayCollection), + (this.consume = e[0].consume), + (this.route = e[0].route), + this.setItem(), + this.setData(), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System71)); + }), + (i.prototype.backFunc = function (e, i) { + if (e) { + var n = e.split(";"), + s = 0; + for (n.length; s < n.length; s++) { + var a = n[s], + r = i[s]; + "app.ShopView" == a ? t.mAYZL.ins().ZbzdY(a) || t.mAYZL.ins().open(a, r[0], r[1]) : t.mAYZL.ins().ZbzdY(a) || t.mAYZL.ins().open(a, r); + } + } + }), + (i.prototype.setItem = function () { + var e; + this.consume && + (this.consume[0] + ? ((e = t.ZAJw.sztgR(this.consume[0].type, this.consume[0].id)), e && this.itemSlot.setGetProps(this.consume[0])) + : ((e = t.ZAJw.sztgR(this.consume.type, this.consume.id)), e && this.itemSlot.setGetProps(this.consume))), + e && e[2] ? (this.txtDesc.text = e[2]) : (this.txtDesc.text = ""); + }), + (i.prototype.setData = function () { + this.listArr ? (this.listArr.length = 0) : (this.listArr = []); + for (var e, i = 0, n = this.route.length; n > i; i++) { + var s = this.route[i], + a = t.VlaoF.OpenWindowConfig[s]; + a.openParam + ? (a.openParam.level || (a.openParam.level = 0), + a.openParam.openDay || (a.openParam.openDay = 0), + a.openParam.zsLevel || (a.openParam.zsLevel = 0), + a.openParam.needGuild || (a.openParam.needGuild = 0), + (e = t.mAYZL.ins().isCheckAllOpen(a.openParam) ? 1 : 0)) + : (e = 1), + this.listArr.push({ + view: a.view, + route: a.WindowRoute, + moudleName: a.moudleName, + target: this, + backFunc: this.backFunc, + check: e, + tips: a.tips, + }); + } + this.itemArrayCollection.replaceAll(this.listArr), this.dragDropUI.setCurrentState(this.viewFrames[this.listArr.length - 1]); + }), + (i.getPropsTxt = function (e, i) { + if (e) { + var n = t.VlaoF.GetItemRouteConfig[i]; + if (!n) return void (e.visible = !1); + e.visible = !0; + var s = t.GlobalData.sectionOpenDay, + a = n.itemstr; + (e.textFlow = null), + n.openParam && s < n.openParam.openDay ? (e.visible = !1) : n.Route && n.itemstr ? ((e.textFlow = t.hETx.qYVI("" + a + "")), (e.visible = !0)) : (e.visible = !1); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.scroller), + t.MouseScroller.unbind(this.scrollerDesc), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.list.removeChildren(), + (this.listArr.length = 0), + (this.listArr = null); + }), + i + ); + })(t.gIRYTi); + (t.GetPropsView = e), __reflect(e.prototype, "app.GetPropsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.formatMiniDateTime = function (e) { + return t.GameConst.MiniDateTimeBase + 1e3 * (2147483647 & e); + }), + e + ); + })(); + (t.GlobalFunc = e), __reflect(e.prototype, "app.GlobalFunc"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "MonsterTalkSkin"), (t.name = "MonsterTalkView"), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.visible = !0), + (this.txtDesc.text = e[0]), + (this.x = e[1]), + (this.y = e[2]), + t.KHNO.ins().RTXtZF(this.delayIntervalShow, this) || t.KHNO.ins().tBiJo(8e3, 1, this.delayIntervalShow, this); + }), + (i.prototype.delayIntervalShow = function () { + this.close(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().remove(this.delayIntervalShow, this), (this.visible = !1); + }), + i + ); + })(t.gIRYTi); + (t.MonsterTalkView = e), __reflect(e.prototype, "app.MonsterTalkView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AchieveConfig = e), __reflect(e.prototype, "app.AchieveConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AchievePageConfig = e), __reflect(e.prototype, "app.AchievePageConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AchieveTypeConfig = e), __reflect(e.prototype, "app.AchieveTypeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ACTcrossServerTabCfg = e), __reflect(e.prototype, "app.ACTcrossServerTabCfg"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivitiesConf = e), __reflect(e.prototype, "app.ActivitiesConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivitiesShowConf = e), __reflect(e.prototype, "app.ActivitiesShowConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10001Config = e), __reflect(e.prototype, "app.Activity10001Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10002Config = e), __reflect(e.prototype, "app.Activity10002Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10003Config = e), __reflect(e.prototype, "app.Activity10003Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10004Config = e), __reflect(e.prototype, "app.Activity10004Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10005Config = e), __reflect(e.prototype, "app.Activity10005Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10006Config = e), __reflect(e.prototype, "app.Activity10006Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10007Config = e), __reflect(e.prototype, "app.Activity10007Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10009Config = e), __reflect(e.prototype, "app.Activity10009Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10010Config = e), __reflect(e.prototype, "app.Activity10010Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10014Config = e), __reflect(e.prototype, "app.Activity10014Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10015Config = e), __reflect(e.prototype, "app.Activity10015Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10017Config = e), __reflect(e.prototype, "app.Activity10017Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10018Config = e), __reflect(e.prototype, "app.Activity10018Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10019Config = e), __reflect(e.prototype, "app.Activity10019Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10020Config = e), __reflect(e.prototype, "app.Activity10020Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10021Config = e), __reflect(e.prototype, "app.Activity10021Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity10Config = e), __reflect(e.prototype, "app.Activity10Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity11Config = e), __reflect(e.prototype, "app.Activity11Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity12Config = e), __reflect(e.prototype, "app.Activity12Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity13Config = e), __reflect(e.prototype, "app.Activity13Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity14Config = e), __reflect(e.prototype, "app.Activity14Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity14shopConfig = e), __reflect(e.prototype, "app.Activity14shopConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity14tabConfig = e), __reflect(e.prototype, "app.Activity14tabConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity15Config = e), __reflect(e.prototype, "app.Activity15Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity17Config = e), __reflect(e.prototype, "app.Activity17Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity18Config = e), __reflect(e.prototype, "app.Activity18Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity19Config = e), __reflect(e.prototype, "app.Activity19Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity1Config = e), __reflect(e.prototype, "app.Activity1Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity21Config = e), __reflect(e.prototype, "app.Activity21Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity26Config = e), __reflect(e.prototype, "app.Activity26Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity2Config = e), __reflect(e.prototype, "app.Activity2Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity3Config = e), __reflect(e.prototype, "app.Activity3Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity4Config = e), __reflect(e.prototype, "app.Activity4Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity5Config = e), __reflect(e.prototype, "app.Activity5Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity6Config = e), __reflect(e.prototype, "app.Activity6Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity7Config = e), __reflect(e.prototype, "app.Activity7Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity8Config = e), __reflect(e.prototype, "app.Activity8Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Activity9Config = e), __reflect(e.prototype, "app.Activity9Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityAscriptionConf = e), __reflect(e.prototype, "app.ActivityAscriptionConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityAutoConfig = e), __reflect(e.prototype, "app.ActivityAutoConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityCompetitionConf = e), __reflect(e.prototype, "app.ActivityCompetitionConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityDrawConf = e), __reflect(e.prototype, "app.ActivityDrawConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityNoticeConfig = e), __reflect(e.prototype, "app.ActivityNoticeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityOpenServiceConf = e), __reflect(e.prototype, "app.ActivityOpenServiceConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityPayConf = e), __reflect(e.prototype, "app.ActivityPayConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityPopupConfig = e), __reflect(e.prototype, "app.ActivityPopupConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityPromptConfig = e), __reflect(e.prototype, "app.ActivityPromptConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivitysetConfig = e), __reflect(e.prototype, "app.ActivitysetConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ActivityWelfareConf = e), __reflect(e.prototype, "app.ActivityWelfareConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AppraisalMainConfig = e), __reflect(e.prototype, "app.AppraisalMainConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AttrLookupConfig = e), __reflect(e.prototype, "app.AttrLookupConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BagRemainConfig = e), __reflect(e.prototype, "app.BagRemainConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BasicsSettingmConfig = e), __reflect(e.prototype, "app.BasicsSettingmConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BlessConfig = e), __reflect(e.prototype, "app.BlessConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BlesseConstConfig = e), __reflect(e.prototype, "app.BlesseConstConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BlessLuck = e), __reflect(e.prototype, "app.BlessLuck"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BlueDiamondDailyConfig = e), __reflect(e.prototype, "app.BlueDiamondDailyConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.BossConfig = e), __reflect(e.prototype, "app.BossConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.type = 0), (this.group = 0); + } + return t; + })(); + (t.BuffConf = e), __reflect(e.prototype, "app.BuffConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ChatSystemConfig = e), __reflect(e.prototype, "app.ChatSystemConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.CircleLevel = e), __reflect(e.prototype, "app.CircleLevel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.CrossServerGroupConf = e), __reflect(e.prototype, "app.CrossServerGroupConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.CustomisedTitleConfig = e), __reflect(e.prototype, "app.CustomisedTitleConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.demonsbodyConfig = e), __reflect(e.prototype, "app.demonsbodyConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.demonsconstConfig = e), __reflect(e.prototype, "app.demonsconstConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.demonslevelConfig = e), __reflect(e.prototype, "app.demonslevelConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.DemonsReplaceConfig = e), __reflect(e.prototype, "app.DemonsReplaceConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.DummyBuildConfig = e), __reflect(e.prototype, "app.DummyBuildConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.DummyNameConfig = e), __reflect(e.prototype, "app.DummyNameConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.DummyPlayerConfig = e), __reflect(e.prototype, "app.DummyPlayerConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.Button = 0; + } + return t; + })(); + (t.EditionConf = e), __reflect(e.prototype, "app.EditionConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.EffectsConf = e), __reflect(e.prototype, "app.EffectsConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.EquipStrengthenConfig = e), __reflect(e.prototype, "app.EquipStrengthenConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.EquipValuation = e), __reflect(e.prototype, "app.EquipValuation"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ExchangCircleConfig = e), __reflect(e.prototype, "app.ExchangCircleConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FashionattributeConfig = e), __reflect(e.prototype, "app.FashionattributeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FashionsetConfig = e), __reflect(e.prototype, "app.FashionsetConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FashionupgradeConfig = e), __reflect(e.prototype, "app.FashionupgradeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FlyLevel = e), __reflect(e.prototype, "app.FlyLevel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FlyTable = e), __reflect(e.prototype, "app.FlyTable"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ForgeBaseConfig = e), __reflect(e.prototype, "app.ForgeBaseConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ForgeConfig = e), __reflect(e.prototype, "app.ForgeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FourStarsConfig = e), __reflect(e.prototype, "app.FourStarsConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FubenType1Conf = e), __reflect(e.prototype, "app.FubenType1Conf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FubenType2Conf = e), __reflect(e.prototype, "app.FubenType2Conf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FubenType3Conf = e), __reflect(e.prototype, "app.FubenType3Conf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.FunExhibitionConfig = e), __reflect(e.prototype, "app.FunExhibitionConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GameVIPConfig = e), __reflect(e.prototype, "app.GameVIPConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GetItemRouteConfig = e), __reflect(e.prototype, "app.GetItemRouteConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GiftItemConf = e), __reflect(e.prototype, "app.GiftItemConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GlobalConf = e), __reflect(e.prototype, "app.GlobalConf"); +})(app || (app = {})); + +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SuitConfig = e), __reflect(e.prototype, "app.SuitConfig"); +})(app || (app = {})); + +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.init = function (t) { + this.callbackFunction = t; + var e = this; + e.config || RES.getResByUrl(ZkSzi.XvMAVE + "cfg/config.xml?v=" + Main.vZzwB.tableVersion, this.loadConfig, this, RES.ResourceItem.TYPE_BIN); + }), + (e.readConfig = function (t) { + var i = this; + console.log("解压成功!!"); + var n = (i.config = JSON.parse(t)); + if (n) { + var s = function (t, e, i) { + if (0 == i) t.__proto__ = e; + else for (var n in t) s(t[n], e, i - 1); + }, + a = function (t) { + var a = n[t], + r = egret.getDefinitionByName("app." + t); + if (r) { + var o = "_obj" + t; + i[o] = new r(); + var l = "_bool" + t; + i[l] = !1; + var h = "_" + t + "_"; + Object.defineProperty(i, t, { + get: function () { + var n = i[h]; + if (i[l]) return n; + var a = i[o]; + return s(n, a, e.keys[t] || 0), (i[l] = !0), n; + }, + set: function (t) { + i[h] = t; + }, + }); + } + i[t] = a; + }; + for (var r in n) a(r); + (n = null), (i.config = null), (t = null), i.callbackFunction(), (i.callbackFunction = null), (this.readConfig = null); + } + }), + (e.loadConfig = function (i) { + if (e.isReadConfig) { + (e.isReadConfig = !1), t.MiOx.setLoadProgress(82, "准备好随机传送卷……"); + var n = this; + (n.init = null), + JSZip.loadAsync(i) + .then(function (t) { + return t.file("config.json").async("text"); + }) + .then(n.readConfig.bind(n)); + } + }), + (e.isReadConfig = !0), + (e.keys = { + Scenes: 1, + Npc: 1, + NpcFunctions: 1, + StaticFubens: 1, + Monster: 1, + SkillsLevelConf: 2, + EffectsConf: 1, + BuffConf: 1, + SkillConf: 1, + StdItems: 1, + PlayFunConfig: 1, + PlayFunConfigPos: 1, + LevelUpExp: 1, + SystemOpen: 1, + SystemOpenMain: 1, + BasicsSettingmConfig: 0, + SystemSettingmConfig: 0, + RecyclingSettingConfig: 2, + MedicineSettingConfig: 0, + RankConfig: 0, + ProtectSettingConfig: 0, + ItemSettingConfig: 1, + EquipValuation: 2, + CircleLevel: 0, + ExchangCircleConfig: 1, + RuleConf: 1, + ReliveConfig: 1, + GuildConfig: 0, + GuildBuildConfig: 1, + GuildDonateConfig: 1, + ForgeConfig: 1, + ForgeBaseConfig: 0, + MergeTotal: 1, + MergeConfig: 2, + ItemMergeConfig: 3, + NumericalIcon: 1, + ShopConfig: 1, + TradeLineConfig: 1, + taxconfig: 0, + GuildLogConfig: 1, + ShopnameConfig: 1, + ShoptagConfig: 1, + FunExhibitionConfig: 1, + NpcTransConf: 1, + FlyLevel: 1, + FlyTable: 1, + MeridiansConfig: 1, + MeridiansSetConfig: 0, + BlessConfig: 1, + BlesseConstConfig: 0, + ActivitiesConf: 1, + PActivitiesConf: 1, + ActivityAscriptionConf: 1, + Activity1Config: 1, + AchieveConfig: 2, + AchievePageConfig: 1, + Activity2Config: 1, + WorshipMainConfig: 1, + WorshipCommonConfig: 0, + FubenType1Conf: 1, + FubenType2Conf: 1, + FubenType3Conf: 1, + MedalConfig: 1, + Activity3Config: 1, + Activity4Config: 1, + AppraisalMainConfig: 2, + BossConfig: 1, + Props: 1, + Activity5Config: 1, + Activity6Config: 1, + Activity7Config: 1, + Activity8Config: 1, + Activity10Config: 0, + ShowActivityidConfig: 1, + TaskDisplayConfig: 2, + Activity11Config: 1, + Activity12Config: 1, + LevelTipsConfig: 2, + ServerInfoConfig: 1, + SuitItemCfg: 1, + ActivityPayConf: 2, + Activity10001Config: 1, + Activity10002Config: 2, + GrowTipsConfig: 2, + GrowTipsTagConfig: 1, + BagRemainConfig: 1, + Activity10003Config: 1, + Activity10004Config: 2, + EquipStrengthenConfig: 2, + AttrLookupConfig: 1, + FourStarsConfig: 2, + ProdItemMapConf: 2, + RechargeConf: 1, + GiftItemConf: 1, + Activity10005Config: 2, + ActivityWelfareConf: 1, + ActivityOpenServiceConf: 1, + Activity10006Config: 2, + Activity10007Config: 2, + Activity10009Config: 2, + SpecialRingConfig: 2, + TitleConfig: 1, + ActivityCompetitionConf: 1, + ActivityDrawConf: 0, + Activity10010Config: 2, + Activity14Config: 2, + ActivitiesShowConf: 2, + Activity13Config: 1, + Activity14setConfig: 2, + Activity14tabConfig: 1, + Activity15Config: 3, + YYMemberConfig: 0, + YYPlayFunConfig: 1, + YYVIPConfig: 0, + FashionupgradeConfig: 2, + FashionattributeConfig: 2, + Activity10014Config: 1, + GameVIPConfig: 0, + GetItemRouteConfig: 1, + OpenWindowConfig: 1, + RefiningmaterialsConfig: 1, + RefiningReplaceConfig: 1, + UpstarPriceConfig: 1, + RefiningBaseConfig: 1, + TimeManagerConfigConfig: 0, + talklevelConfig: 1, + monstertalk1Config: 1, + monstertalk2Config: 1, + ActivityPromptConfig: 1, + monstertalk3Config: 1, + ShenZhuangBossConfig: 0, + PopupConfig: 1, + RingBuyJobConfig: 3, + Activity10015Config: 1, + YBrecoverConfig: 1, + HumanAttrConfig: 1, + privilegeLevelConfig: 1, + MonthCardConfig: 1, + UpstarConfig: 2, + ItemTypeConfig: 1, + GrowWayConfig: 1, + GrowWayTabConfig: 2, + NoticeConfig: 1, + demonsbodyConfig: 2, + demonslevelConfig: 2, + demonsconstConfig: 0, + RageconstConfig: 0, + GlobalConf: 0, + ActivityNoticeConfig: 2, + ranktitleconfig: 2, + OfficeConfig: 1, + TransferConfig: 0, + FashionsetConfig: 0, + WarehouseConfig: 0, + RingTabConfig: 1, + Platform4366Config: 0, + Login4366Config: 1, + Activity10017Config: 2, + ChatSystemConfig: 0, + NativeConfig: 1, + NativeRewardConfig: 0, + PlatformQQConfig: 0, + LoginQQConfig: 1, + BlueDiamondDailyConfig: 1, + LevelBlueDiamondConfig: 1, + SkillLocationConf: 2, + Activity10018Config: 1, + UseItemConfig: 1, + ItemOpenUIConfig: 1, + Activity10019Config: 2, + ActivityPopupConfig: 3, + soulWeaponLorderConfig: 2, + soulWeaponLvConfig: 2, + soulWeaponstarConfig: 2, + soulWpRefiningConfig: 1, + soulWpReplaceConfig: 3, + soulWptableConfig: 1, + soulWpViewConfig: 1, + MoneytreeconstConfig: 0, + MoneytreeRewardConfig: 1, + OnlineTimeRewardConfig: 2, + OnlineTimeconstConfig: 0, + Activity17Config: 1, + Activity18Config: 1, + Activity19Config: 1, + Activity21Config: 0, + ACTcrossServerTabCfg: 2, + KFBanViewConfig: 0, + lootPetConfig: 2, + Activity10020Config: 2, + ResonanceItemCfg: 1, + ActivityAutoConfig: 1, + Activity26Config: 0, + ThreeClientConfig: 1, + DemonsReplaceConfig: 1, + Activity10021Config: 1, + editionConf: 0, + CrossServerGroupConf: 1, + Platform360Config: 0, + Platform7youxiConfig: 0, + PlatformludashiConfig: 0, + LudashivipConfig: 1, + LudashimemberConfig: 1, + PlatformKU25Config: 0, + LoginKU25Config: 1, + Platform37Config: 0, + PlatformSogouConfig: 0, + LevelSogouConfig: 1, + LoginSogouConfig: 1, + PlatformTanwanConfig: 0, + PlatformGame2Config: 0, + Platform2144Config: 0, + CustomisedTitleConfig: 1, + PlatformteeqeeConfig: 0, + WordFormulaConfig: 2, + PlatformxunwanConfig: 0, + XunwantitleConfig: 1, + DummyBuildConfig: 1, + DummyPlayerConfig: 1, + DummyNameConfig: 1, + SuitConfig: 1, + }), + e + ); + })(); + (t.VlaoF = e), __reflect(e.prototype, "app.VlaoF"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GrowTipsConfig = e), __reflect(e.prototype, "app.GrowTipsConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GrowTipsTagConfig = e), __reflect(e.prototype, "app.GrowTipsTagConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GrowWayConfig = e), __reflect(e.prototype, "app.GrowWayConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GrowWayTabConfig = e), __reflect(e.prototype, "app.GrowWayTabConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GuildBuildConfig = e), __reflect(e.prototype, "app.GuildBuildConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GuildConfig = e), __reflect(e.prototype, "app.GuildConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GuildDonateConfig = e), __reflect(e.prototype, "app.GuildDonateConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GuildLogConfig = e), __reflect(e.prototype, "app.GuildLogConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.HumanAttrConfig = e), __reflect(e.prototype, "app.HumanAttrConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ItemMergeConfig = e), __reflect(e.prototype, "app.ItemMergeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ItemOpenUIConfig = e), __reflect(e.prototype, "app.ItemOpenUIConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ItemSettingConfig = e), __reflect(e.prototype, "app.ItemSettingConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ItemTypeConfig = e), __reflect(e.prototype, "app.ItemTypeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.viewAry = []; + } + return ( + (t.prototype.isDoNotOpen = function (t) { + return (t = t.substring(4)), this.viewAry.length || (this.viewAry = this.viewName.split(",")), -1 != this.viewAry.indexOf(t); + }), + t + ); + })(); + (t.KFBanViewConfig = e), __reflect(e.prototype, "app.KFBanViewConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LevelBlueDiamondConfig = e), __reflect(e.prototype, "app.LevelBlueDiamondConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LevelSogouConfig = e), __reflect(e.prototype, "app.LevelSogouConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LevelTipsConfig = e), __reflect(e.prototype, "app.LevelTipsConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LevelUpExp = e), __reflect(e.prototype, "app.LevelUpExp"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Login4366Config = e), __reflect(e.prototype, "app.Login4366Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LoginKU25Config = e), __reflect(e.prototype, "app.LoginKU25Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LoginQQConfig = e), __reflect(e.prototype, "app.LoginQQConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LoginSogouConfig = e), __reflect(e.prototype, "app.LoginSogouConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LootPetConfig = e), __reflect(e.prototype, "app.LootPetConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LudashimemberConfig = e), __reflect(e.prototype, "app.LudashimemberConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.LudashivipConfig = e), __reflect(e.prototype, "app.LudashivipConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MedalConfig = e), __reflect(e.prototype, "app.MedalConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MedicineSettingConfig = e), __reflect(e.prototype, "app.MedicineSettingConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MergeConfig = e), __reflect(e.prototype, "app.MergeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MergeTotal = e), __reflect(e.prototype, "app.MergeTotal"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MeridiansConfig = e), __reflect(e.prototype, "app.MeridiansConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MeridiansSetConfig = e), __reflect(e.prototype, "app.MeridiansSetConfig"); +})(app || (app = {})); +var MoneytreeconstConfig = (function () { + function t() {} + return t; +})(); +__reflect(MoneytreeconstConfig.prototype, "MoneytreeconstConfig"); +var MoneytreeRewardConfig = (function () { + function t() {} + return t; +})(); +__reflect(MoneytreeRewardConfig.prototype, "MoneytreeRewardConfig"); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Monster = e), __reflect(e.prototype, "app.Monster"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.monstertalk1Config = e), __reflect(e.prototype, "app.monstertalk1Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.monstertalk2Config = e), __reflect(e.prototype, "app.monstertalk2Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.monstertalk3Config = e), __reflect(e.prototype, "app.monstertalk3Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.monstertalkConfig = e), __reflect(e.prototype, "app.monstertalkConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.MonthCardConfig = e), __reflect(e.prototype, "app.MonthCardConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NativeConfig = e), __reflect(e.prototype, "app.NativeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NativeRewardConfig = e), __reflect(e.prototype, "app.NativeRewardConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NoticeConfig = e), __reflect(e.prototype, "app.NoticeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Npc = e), __reflect(e.prototype, "app.Npc"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NpcFunctions = e), __reflect(e.prototype, "app.NpcFunctions"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NpcTransConf = e), __reflect(e.prototype, "app.NpcTransConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.NumericalIcon = e), __reflect(e.prototype, "app.NumericalIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.OfficeConfig = e), __reflect(e.prototype, "app.OfficeConfig"); +})(app || (app = {})); +var OnlineTimeconstConfig = (function () { + function t() {} + return t; +})(); +__reflect(OnlineTimeconstConfig.prototype, "OnlineTimeconstConfig"); +var OnlineTimeRewardConfig = (function () { + function t() {} + return t; +})(); +__reflect(OnlineTimeRewardConfig.prototype, "OnlineTimeRewardConfig"); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.OpenWindowConfig = e), __reflect(e.prototype, "app.OpenWindowConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PActivitiesConf = e), __reflect(e.prototype, "app.PActivitiesConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Platform2144Config = e), __reflect(e.prototype, "app.Platform2144Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Platform360Config = e), __reflect(e.prototype, "app.Platform360Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Platform37Config = e), __reflect(e.prototype, "app.Platform37Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Platform4366Config = e), __reflect(e.prototype, "app.Platform4366Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Platform7youxiConfig = e), __reflect(e.prototype, "app.Platform7youxiConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformaiqiyiConfig = e), __reflect(e.prototype, "app.PlatformaiqiyiConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformGame2Config = e), __reflect(e.prototype, "app.PlatformGame2Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformKU25Config = e), __reflect(e.prototype, "app.PlatformKU25Config"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformludashiConfig = e), __reflect(e.prototype, "app.PlatformludashiConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformqidianConfig = e), __reflect(e.prototype, "app.PlatformqidianConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformQQConfig = e), __reflect(e.prototype, "app.PlatformQQConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformshunwangConfig = e), __reflect(e.prototype, "app.PlatformshunwangConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformSogouConfig = e), __reflect(e.prototype, "app.PlatformSogouConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformTanwanConfig = e), __reflect(e.prototype, "app.PlatformTanwanConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformteeqeeConfig = e), __reflect(e.prototype, "app.PlatformteeqeeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlatformxunwanConfig = e), __reflect(e.prototype, "app.PlatformxunwanConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlayFunConfig = e), __reflect(e.prototype, "app.PlayFunConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PlayFunConfigPos = e), __reflect(e.prototype, "app.PlayFunConfigPos"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.PopupConfig = e), __reflect(e.prototype, "app.PopupConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.privilegeLevelConfig = e), __reflect(e.prototype, "app.privilegeLevelConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ProdItemMapConf = e), __reflect(e.prototype, "app.ProdItemMapConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Props = e), __reflect(e.prototype, "app.Props"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ProtectSettingConfig = e), __reflect(e.prototype, "app.ProtectSettingConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RageconstConfig = e), __reflect(e.prototype, "app.RageconstConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RankConfig = e), __reflect(e.prototype, "app.RankConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ranktitleconfig = e), __reflect(e.prototype, "app.ranktitleconfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RechargeConf = e), __reflect(e.prototype, "app.RechargeConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RecyclingSettingConfig = e), __reflect(e.prototype, "app.RecyclingSettingConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RefiningBaseConfig = e), __reflect(e.prototype, "app.RefiningBaseConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RefiningmaterialsConfig = e), __reflect(e.prototype, "app.RefiningmaterialsConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RefiningReplaceConfig = e), __reflect(e.prototype, "app.RefiningReplaceConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ReliveConfig = e), __reflect(e.prototype, "app.ReliveConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ResonanceItemCfg = e), __reflect(e.prototype, "app.ResonanceItemCfg"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return __extends(e, t), e; + })(t.SpecialRingConfig); + (t.RingBuyJobConfig = e), __reflect(e.prototype, "app.RingBuyJobConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RingTabConfig = e), __reflect(e.prototype, "app.RingTabConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.RuleConf = e), __reflect(e.prototype, "app.RuleConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.Scenes = e), __reflect(e.prototype, "app.Scenes"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ServerInfoConfig = e), __reflect(e.prototype, "app.ServerInfoConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShopConfig = e), __reflect(e.prototype, "app.ShopConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShopnameConfig = e), __reflect(e.prototype, "app.ShopnameConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShoptagConfig = e), __reflect(e.prototype, "app.ShoptagConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShowActivityidConfig = e), __reflect(e.prototype, "app.ShowActivityidConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SignPrizeConfig = e), __reflect(e.prototype, "app.SignPrizeConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SkillConf = e), __reflect(e.prototype, "app.SkillConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SkillLocationConf = e), __reflect(e.prototype, "app.SkillLocationConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.cooldownTime = 0; + } + return t; + })(); + (t.SkillsLevelConf = e), __reflect(e.prototype, "app.SkillsLevelConf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWeaponLorderConfig = e), __reflect(e.prototype, "app.soulWeaponLorderConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWeaponLvConfig = e), __reflect(e.prototype, "app.soulWeaponLvConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWeaponstarConfig = e), __reflect(e.prototype, "app.soulWeaponstarConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWpRefiningConfig = e), __reflect(e.prototype, "app.soulWpRefiningConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWpReplaceConfig = e), __reflect(e.prototype, "app.soulWpReplaceConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWptableConfig = e), __reflect(e.prototype, "app.soulWptableConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.soulWpViewConfig = e), __reflect(e.prototype, "app.soulWpViewConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectIdx = 0), (t.skinName = "SwitchPlayerSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Player_Text2), + t.MouseScroller.bind(this.playerScroller), + this.createBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.switchBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.list.addEventListener(egret.Event.CHANGE, this.onClick, this), + (this.list.itemRenderer = t.SwitchPlayerItem), + (this.list.itemRendererSkinName = "SwitchPlayerItemSkin"); + for (var n = t.TKZUv.ins().getMyRoleInfo(), s = t.TKZUv.ins().selectRolId, a = 0; a < n.length; a++) + if (s == n[a].id) { + this.selectIdx = a; + break; + } + (n[this.selectIdx].select = !0), + (this.arrayCollection = new eui.ArrayCollection(n)), + (this.list.dataProvider = this.arrayCollection), + (this.createBtn.label = t.CrmPU.language_Player_Text1), + (this.switchBtn.label = t.CrmPU.language_Player_Text2), + n.length >= 3 && t.lEYZI.Naoc(this.createBtn), + (this.list.selectedIndex = this.selectIdx); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.createBtn: + t.mAYZL.ins().open(t.CreateRoleView2, 1); + break; + case this.switchBtn: + var n = this.arrayCollection.getItemAt(this.selectIdx); + t.TKZUv.ins().selectRolId == n.id ? (t.uMEZy.ins().pwYDdQ("当前角色无需切换"), t.mAYZL.ins().close(i)) : ((t.TKZUv.ins().selectRolId = n.id), t.bqQT.closesocket(!1)); + break; + case this.list: + (this.arrayCollection.getItemAt(this.selectIdx).select = !1), + (this.selectIdx = this.list.selectedIndex), + (this.arrayCollection.getItemAt(this.selectIdx).select = !0), + this.arrayCollection.refresh(); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.playerScroller), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.createBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.switchBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.list.removeEventListener(egret.Event.CHANGE, this.onClick, this); + }), + i + ); + })(t.gIRYTi); + (t.SwitchPlayerView = e), __reflect(e.prototype, "app.SwitchPlayerView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.StaticFubens = e), __reflect(e.prototype, "app.StaticFubens"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.canMoveKb = 0), (this.recordLog = 0), (this.denyDeal = 0), (this.denySell = 0), (this.denyDestroy = 0); + } + return ( + Object.defineProperty(t.prototype, "showQuality", { + get: function () { + return this._showQuality ? this._showQuality : 0; + }, + set: function (t) { + this._showQuality = t; + }, + enumerable: !0, + configurable: !0, + }), + t + ); + })(); + (t.StdItems = e), __reflect(e.prototype, "app.StdItems"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SuitItemCfg = e), __reflect(e.prototype, "app.SuitItemCfg"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SystemOpen = e), __reflect(e.prototype, "app.SystemOpen"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SystemOpenMain = e), __reflect(e.prototype, "app.SystemOpenMain"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.SystemSettingmConfig = e), __reflect(e.prototype, "app.SystemSettingmConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShenZhuangBossConfig = e), __reflect(e.prototype, "app.ShenZhuangBossConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.talklevelConfig = e), __reflect(e.prototype, "app.talklevelConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.TaskDisplayConfig = e), __reflect(e.prototype, "app.TaskDisplayConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.taxconfig = e), __reflect(e.prototype, "app.taxconfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ThreeClientConfig = e), __reflect(e.prototype, "app.ThreeClientConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.TimeManagerConfigConfig = e), __reflect(e.prototype, "app.TimeManagerConfigConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.TitleConfig = e), __reflect(e.prototype, "app.TitleConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.TradeLineConfig = e), __reflect(e.prototype, "app.TradeLineConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.TransferConfig = e), __reflect(e.prototype, "app.TransferConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.UpstarConfig = e), __reflect(e.prototype, "app.UpstarConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.UpstarPriceConfig = e), __reflect(e.prototype, "app.UpstarPriceConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.UseItemConfig = e), __reflect(e.prototype, "app.UseItemConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.WarehouseConfig = e), __reflect(e.prototype, "app.WarehouseConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.WordFormulaConfig = e), __reflect(e.prototype, "app.WordFormulaConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.WorshipCommonConfig = e), __reflect(e.prototype, "app.WorshipCommonConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.WorshipMainConfig = e), __reflect(e.prototype, "app.WorshipMainConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.XunwantitleConfig = e), __reflect(e.prototype, "app.XunwantitleConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.YBrecoverConfig = e), __reflect(e.prototype, "app.YBrecoverConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.YYMemberConfig = e), __reflect(e.prototype, "app.YYMemberConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.YYPlayFunConfig = e), __reflect(e.prototype, "app.YYPlayFunConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.YYVIPConfig = e), __reflect(e.prototype, "app.YYVIPConfig"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + this.step = 0; + } + return ( + (e.prototype.clear = function () { + (this.btDir = 0), (this.X = 0), (this.Y = 0), (this.step = 0), t.ObjectPool.push(this); + }), + (e.prototype.init = function (t, e, i, n) { + void 0 === n && (n = 0), (this.btDir = i), (this.X = t), (this.Y = e), (this.step = n); + }), + e + ); + })(); + (t.TrajectoryNode = e), __reflect(e.prototype, "app.TrajectoryNode"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i) { + var n = t.call(this) || this; + return (n._action = e), (n._dir = i), n; + } + return __extends(e, t), e; + })(t.BaseClass); + (t.ActionMessage = e), __reflect(e.prototype, "app.ActionMessage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.TIME_THRESHOLD = 2), (e._delayOpts = []), egret.startTick(e.runCachedFun, e), e; + } + return ( + __extends(e, t), + (e.ins = function () { + return t.ins.call(this); + }), + (e.prototype.addDelayOptFunction = function (t, e, i, n, s) { + this._delayOpts.push({ + fun: e, + funPara: i, + thisObj: t, + callBack: n, + para: s, + }); + }), + (e.prototype.clear = function () { + this._delayOpts.length = 0; + }), + (e.prototype.runCachedFun = function (t) { + if (0 == this._delayOpts.length) return !1; + for ( + var e, i = egret.getTimer(); + this._delayOpts.length && + ((e = this._delayOpts.shift()), + e.funPara ? e.fun.call(e.thisObj, e.funPara) : e.fun.call(e.thisObj), + e.callBack && (void 0 != e.para ? e.callBack.call(e.thisObj, e.para) : e.callBack()), + !(egret.getTimer() - i > this.TIME_THRESHOLD)); + + ); + return !1; + }), + e + ); + })(t.BaseClass); + (t.BtfLl = e), __reflect(e.prototype, "app.BtfLl"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + this.list = []; + } + return ( + (e.prototype.tick = function (e) { + this.list[e] = t.KHNO.ins().getFrameId(); + }), + (e.prototype.isTick = function (e) { + return this.list[e] == t.KHNO.ins().getFrameId(); + }), + (e.prototype.checkAndTick = function (t) { + return this.isTick(t) ? !0 : (this.tick(t), !1); + }), + e + ); + })(); + (t.FrameTick = e), __reflect(e.prototype, "app.FrameTick"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.setInfo = function (t, e, i, n, s) { + void 0 === s && (s = null), (this.ident = t), (this.x = e), (this.y = i), (this.dir = n), (this.data = s), (this.time = egret.getTimer()); + }), + (t.prototype.clear = function () { + (this.ident = 0), (this.x = 0), (this.y = 0), (this.dir = 0), (this.data = null), (this.time = 0); + }), + t + ); + })(); + (t.ActorMessage = e), __reflect(e.prototype, "app.ActorMessage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(i.prototype, "rankModel", { + get: function () { + return this._rankModel || (this._rankModel = new t.RankData()), this._rankModel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "roleModel", { + get: function () { + return this._roleModel || (this._roleModel = new t.RoleData()), this._roleModel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "bossModel", { + get: function () { + return this._bossModel || (this._bossModel = new t.BossData()), this._bossModel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mailModel", { + get: function () { + return this._mailModel || (this._mailModel = new t.MailData()), this._mailModel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "flyShoesModel", { + get: function () { + return this._flyShoesModel || (this._flyShoesModel = new t.FlyShoesData()), this._flyShoesModel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "setUpModel", { + get: function () { + return this._setUpModel || (this._setUpModel = new t.SetUpData()), this._setUpModel; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () {}), + i + ); + })(t.BaseClass); + (t.JgMyc = e), __reflect(e.prototype, "app.JgMyc"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e._pool = []), (e._useNum = 0), e.isLowerQQBrowser() ? (e._maxNum = 18) : (e._maxNum = -1), e; + } + return ( + __extends(e, t), + (e.prototype.isLowerQQBrowser = function () { + if (KdbLz.qOtrbE.IsQQBrowser) { + for (var t = ["2013022", "Lenovo A630t", "SM-G3818", "vivo X3t", "GT-I9100"], e = !1, i = 0, n = t.length; n > i; i++) + if (-1 != navigator.userAgent.indexOf(t[i])) { + e = !0; + break; + } + return e; + } + return !1; + }), + (e.prototype.pop = function () { + var t = this._pool.pop(); + return t || ((-1 == this._maxNum || this._useNum < this._maxNum) && ((t = new egret.RenderTexture()), this._useNum++)), t; + }), + (e.prototype.push = function (t) { + for (var e = !1, i = 0, n = this._pool.length; n > i; i++) + if (this._pool[i] == t) { + e = !0; + break; + } + e || this._pool.push(t); + }), + e + ); + })(t.BaseClass); + (t.RenderTextureManager = e), __reflect(e.prototype, "app.RenderTextureManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.create = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + e ? e : t.GameMap.fbType; + }), + i + ); + })(t.BaseClass); + (t.ResultManager = e), __reflect(e.prototype, "app.ResultManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._appVersion = ""), (t.resVersionData = window.verData), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "appVersion", { + get: function () { + return this._appVersion; + }, + set: function (t) { + this._appVersion = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.has = function (t) { + return this.resVersionData.hasOwnProperty(t); + }), + (i.prototype.getDir = function (t) { + return this.resVersionData[t]; + }), + (i.prototype.hasVer = function () { + return !isNaN(t.MiOx.v); + }), + (i.prototype.loadConfig = function (e, i) { + if (((this.complateFunc = e), (this.complateFuncTarget = i), this.resVersionData)) return void this.complateFunc.call(this.complateFuncTarget); + if (this.hasVer()) { + var n = new egret.HttpRequest(); + n.responseType = egret.HttpResponseType.ARRAY_BUFFER; + var s = function (t) { + switch (t.type) { + case egret.Event.COMPLETE: + break; + case egret.IOErrorEvent.IO_ERROR: + debug.log("respHandler io error"); + } + }; + return ( + n.once(egret.Event.COMPLETE, s, this), n.once(egret.IOErrorEvent.IO_ERROR, s, this), n.open("" + t.MiOx.resAdd + t.MiOx.v + "/" + t.MiOx.v + ".ver", egret.HttpMethod.GET), void n.send() + ); + } + this.complateFunc.call(this.complateFuncTarget); + }), + i + ); + })(t.BaseClass); + (t.ResVersionManager = e), __reflect(e.prototype, "app.ResVersionManager"); +})(app || (app = {})); +var Timer = (function () { + function t() { + this.m_Timer = -1; + } + return ( + (t.TimeOut = function (e, i) { + var n = new t(), + s = function () { + -1 != n.m_Timer && (e(), (n.m_Timer = -1)); + }; + return (n.m_Timer = egret.setTimeout(s, this, i)), n; + }), + (t.prototype.Stop = function () { + -1 != this.m_Timer && egret.clearTimeout(this.m_Timer), (this.m_Timer = -1); + }), + t + ); +})(); +__reflect(Timer.prototype, "Timer"); +var app; +!(function (t) { + var e = (function () { + function e() { + this.stackObj = { + stack: "", + }; + } + return ( + (e.ins = function () { + return (this._ins = this._ins || new e()), this._ins; + }), + (e.prototype.show = function (e) { + var i = function () { + t.lEYZI.Naoc(this), this.fEHj(this.notBtn, i); + }, + n = new t.BaseView(); + (n.skinName = "ErrorSkin"), n.notBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, i, n), (n.lab.text = e), t.aTwWrO.ins().getUIStage().addChild(n); + }), + (e.Assert = function (i, n) { + return i ? !1 : ((n += e.ins().getErrorStackInfo()), t.MiOx.isLocation && t.CommonPopView.ins().showTextView(n), !0); + }), + (e.prototype.getErrorStackInfo = function () { + var t = ""; + try { + Error.captureStackTrace(this.stackObj, e.Assert), (t = "----" + this.stackObj.stack), (this.stackObj.stack = ""); + } catch (i) { + t = ""; + } + return t; + }), + (e.httpLog = !0), + e + ); + })(); + (t.ErrorLog = e), __reflect(e.prototype, "app.ErrorLog"); +})(app || (app = {})); +var Assert = app.ErrorLog.Assert; +window.onerror = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + var i = "", + n = ""; + if (t[4] && t[4].stack) { + var s = t[4].stack.split("at "); + i = s[1].split(" ")[0]; + for (var a = 2; a < s.length; a++) { + var r = s[a].split("/"); + n += r[r.length - 1]; + } + } + var o = "兼容问题无法获取值", + l = "Unexpected token t in JSON at", + h = "错误信息:" + t[0] + "\n" + ("出错位置:" + t[2] + "行" + (t[3] ? t[3] + "列" : o) + "\n") + ("出错函数:" + i + "\n") + ("函数调用:" + n); + h.indexOf(o) >= 0 || + h.indexOf(l) >= 0 || + (window.isHideAlert + ? console.log(h) + : ((h = "时间:" + new Date().getTime() + "\n" + h), window.onerrorFunction && window.onerrorFunction(h, app.MiOx.openID), app.CommonPopView.ins().showTextView(h))); +}; +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.LEFT = 37), + (t.UP = 38), + (t.RIGHT = 39), + (t.DOWN = 40), + (t.KC_1 = 49), + (t.KC_2 = 50), + (t.KC_3 = 51), + (t.KC_4 = 52), + (t.KC_5 = 53), + (t.KC_6 = 54), + (t.KC_7 = 55), + (t.KC_8 = 56), + (t.KC_9 = 57), + (t.KC_0 = 48), + (t.A = 65), + (t.B = 66), + (t.C = 67), + (t.D = 68), + (t.E = 69), + (t.F = 70), + (t.G = 71), + (t.H = 72), + (t.I = 73), + (t.J = 74), + (t.K = 75), + (t.L = 76), + (t.M = 77), + (t.N = 78), + (t.O = 79), + (t.P = 80), + (t.Q = 81), + (t.R = 82), + (t.S = 83), + (t.T = 84), + (t.U = 85), + (t.V = 86), + (t.W = 87), + (t.X = 88), + (t.Y = 89), + (t.Z = 90), + (t.SPACE = 32), + (t.BRACE_L = 219), + (t.BACKSLASH = 220), + (t.BRACE_R = 221), + (t.BACK_QUOTE = 192), + (t.ENTER = 13), + (t.KC_BACKSPACE = 8), + (t.KC_TAB = 9), + (t.KC_ENTER = 13), + (t.KC_SHIFT = 16), + (t.KC_CONTROL = 17), + (t.KC_ESCAPE = 27), + (t.KC_SPACE = 32), + (t.KC_WINDOWS = 91), + (t.KC_MENU = 93), + t + ); + })(); + (t.Keyboard = e), __reflect(e.prototype, "app.Keyboard"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.removeTime = 0), (t._newFrameRate = 0), (t._m_gather = !1), (t.tempName = ""), (t.pixelHitTest = !1), (t._mcFactory = new egret.MovieClipDataFactory()), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "newFrameRate", { + get: function () { + return this._newFrameRate; + }, + set: function (t) { + this._newFrameRate = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "m_gather", { + get: function () { + return this._m_gather; + }, + set: function (t) { + this._m_gather = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.playFile = function (e, n, s, a) { + void 0 === n && (n = 1), + void 0 === s && (s = null), + void 0 === a && (a = !0), + (this.time = egret.getTimer()), + (this._compFun = s), + (this.playCount = n), + (this.remove = a), + t.KHNO.ins().remove(this.playComp, this); + var r = e.split("/"); + if (((this.tempName = r.pop()), this.texture && null == this.texture.bitmapData)); + else if (this.name == e) return void this.createBody(); + (this.name = e), + this.texture && i.removeDisplayObject(this, this.texture.bitmapData), + (this.jsonData = null), + (this.texture = null), + RES.getResByUrl(this.name + ".json?v=7", this.compFuncJson, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(this.name + ".png?v=7", this.compFuncPng, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.compFuncJson = function (t, e) { + this.name + ".json?v=7" == e && t && ((this.jsonData = t), this.createBody()); + }), + (i.prototype.compFuncPng = function (t, e) { + this.name + ".png?v=7" == e && t && t.bitmapData && ((this.texture = t), this.stage && i.addDisplayObject(this, this.texture.bitmapData), this.createBody()); + }), + (i.prototype.playFileChar = function (e, n, s, a) { + void 0 === n && (n = 1), + void 0 === s && (s = null), + void 0 === a && (a = !0), + (this.time = egret.getTimer()), + (this._compFun = s), + (this.playCount = n), + (this.remove = a), + t.KHNO.ins().remove(this.playComp, this); + var r = e.split("/"); + if (((this.tempName = r.pop()), this._m_gather && (e = e.indexOf("s1") >= 0 ? e.substr(0, e.length - 4) : e.substr(0, e.length - 3)), this.texture && null == this.texture.bitmapData)); + else if (this.name == e) return void this.createBody(); + (this.name = e), + this.texture && i.removeDisplayObject(this, this.texture.bitmapData), + (this.jsonData = null), + (this.texture = null), + RES.getResByUrl(this.name + ".json?v=7", this.compFuncJson, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(this.name + ".png?v=7", this.compFuncPng, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.playFileChar8 = function (e, n, s, a) { + void 0 === n && (n = 1), + void 0 === s && (s = null), + void 0 === a && (a = !0), + (this.time = egret.getTimer()), + (this._compFun = s), + (this.playCount = n), + (this.remove = a), + t.KHNO.ins().remove(this.playComp, this); + var r = e.split("/"); + if (((this.tempName = r.pop()), this.texture && null == this.texture.bitmapData)); + else if (this.name == e) return void this.createBody(); + (this.name = e), + this.texture && i.removeDisplayObject(this, this.texture.bitmapData), + (this.jsonData = null), + (this.texture = null), + RES.getResByUrl(this.name + ".json?v=7", this.compFuncJson, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(this.name + ".png?v=7", this.compFuncPng, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.playFileEff8 = function (e, n, s, a) { + void 0 === n && (n = 1), + void 0 === s && (s = null), + void 0 === a && (a = !0), + (this.time = egret.getTimer()), + (this._compFun = s), + (this.playCount = n), + (this.remove = a), + t.KHNO.ins().remove(this.playComp, this); + var r = e.split("/"); + if (((this.tempName = r.pop()), (e = e.substr(0, e.length - 3)), this.texture && null == this.texture.bitmapData)); + else if (this.name == e) return void this.createBody(); + (this.name = e), + this.texture && i.removeDisplayObject(this, this.texture.bitmapData), + (this.jsonData = null), + (this.texture = null), + RES.getResByUrl(this.name + ".json?v=7", this.compFuncJson, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(this.name + ".png?v=7", this.compFuncPng, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.playFileEff = function (e, n, s, a) { + void 0 === n && (n = 1), + void 0 === s && (s = null), + void 0 === a && (a = !0), + (this.time = egret.getTimer()), + (this._compFun = s), + (this.playCount = n), + (this.remove = a), + t.KHNO.ins().remove(this.playComp, this); + var r = e.split("/"); + if (((this.tempName = r.pop()), this.texture && null == this.texture.bitmapData)); + else if (this.name == e) return void this.createBody(); + (this.name = e), + this.texture && i.removeDisplayObject(this, this.texture.bitmapData), + (this.jsonData = null), + (this.texture = null), + RES.getResByUrl(this.name + ".json?v=7", this.compFuncJson, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(this.name + ".png?v=7", this.compFuncPng, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.$onAddToStage = function (t, n) { + e.prototype.$onAddToStage.call(this, t, n), this.texture && this.texture.bitmapData && i.addDisplayObject(this, this.texture.bitmapData); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.texture && i.removeDisplayObject(this, this.texture.bitmapData); + }), + (i.prototype.createBody = function () { + if (this.jsonData && this.texture) { + if ( + (this._mcFactory.clearCache(), + (this._mcFactory.mcDataSet = this.jsonData), + (this._mcFactory.texture = this.texture), + (this.movieClipData = this._mcFactory.generateMovieClipData(this.tempName)), + !this.movieClipData.textureData || !this.movieClipData.spriteSheet) + ) + return void this.playComp(); + if ( + (this.newFrameRate ? (this.frameRate = this.newFrameRate) : (this.frameRate = this.movieClipData.frameRate), this.gotoAndPlay(1, this.playCount), (this.visible = !0), this.playCount > 0) + ) { + var e = egret.getTimer() - this.time; + (e = this.playTime * this.playCount - e), e > 0 ? t.KHNO.ins().tBiJo(e, 1, this.playComp, this) : this.playComp(); + } + this.dispatchEventWith(egret.Event.CHANGE); + } + }), + (i.prototype.playComp = function () { + this.stage && this._compFun && this._compFun(), this.remove && t.lEYZI.Naoc(this); + }), + Object.defineProperty(i.prototype, "playTime", { + get: function () { + return this.movieClipData ? (1 / this.frameRate) * this.totalFrames * 1e3 : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.clearComFun = function () { + this._compFun = null; + }), + (i.prototype.dispose = function () { + this.stop(), this.resetMovieClip(), this.clearComFun(), t.KHNO.ins().removeAll(this); + }), + (i.prototype.destroy = function () { + this.dispose(), t.lEYZI.Naoc(this), t.ObjectPool.push(this); + }), + (i.prototype.resetMovieClip = function () { + var t = this; + (t.rotation = 0), + (t.scaleX = 1), + (t.scaleY = 1), + (t.alpha = 1), + (t.anchorOffsetX = 0), + (t.anchorOffsetY = 0), + (t.x = 0), + (t.y = 0), + (t.newFrameRate = 0), + (t._m_gather = !1), + t.$renderNode && t.$renderNode.cleanBeforeRender(); + var e = t.texture; + e && i.removeDisplayObject(t, e.bitmapData), + t._mcFactory.clearCache(), + (t._mcFactory.mcDataSet = null), + (t._mcFactory.texture = null), + (t.$texture = null), + (t.name = null), + (t.jsonData = null), + (t.filters = null), + (t.removeTime = 0), + (t.texture = null), + (t.remove = !1), + (t.blendMode = egret.BlendMode.NORMAL), + (t.playCount = null), + (t.tempName = null), + egret.Tween.removeTweens(t); + }), + (i.addDisplayObject = function (t, e) { + if (e) { + var i = e.hashCode; + if (!KdbLz.os.RM.getDisplay(i)) return void KdbLz.os.RM.addDisplay(i, [t]); + var n = KdbLz.os.RM.getDisplay(i); + n.indexOf(t) < 0 && (n.push(t), KdbLz.os.RM.addDisplay(i, n)); + } + }), + (i.removeDisplayObject = function (t, e) { + if (e) { + var i = e.hashCode; + if (KdbLz.os.RM.getDisplay(i)) { + var n = KdbLz.os.RM.getDisplay(i), + s = n.indexOf(t); + s >= 0 && n.splice(s, 1), 0 == n.length ? (KdbLz.os.RM.deleteDisplay(i), KdbLz.os.RM.disposeResTime(i)) : KdbLz.os.RM.addDisplay(i, n); + } + } + }), + (i.originalRate = {}), + (i.displayList = egret.createMap()), + i + ); + })(egret.MovieClip); + (t.MovieClip = e), __reflect(e.prototype, "app.MovieClip"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._pickUp = []), (i.sysId = t.jDIWJt.Drop), i.YrTisc(10, i.g_15_10), i.YrTisc(11, i.g_15_11), i.YrTisc(12, i.post_g_15_12), i.YrTisc(13, i.post_g_15_13), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.s_15_9 = function (t) { + if (t.length) { + var e = this.MxGiq(9), + i = t.length; + e.writeByte(i); + for (var n = 0; i > n; n++) e.writeUnsignedInt(t[n]); + this.evKig(e); + } + }), + (i.prototype.s_15_10 = function (t) { + if (t.length) { + var e = this.MxGiq(10), + i = t.length; + e.writeByte(i); + for (var n = 0; i > n; n++) e.writeUnsignedInt(t[n]); + this.evKig(e); + } + }), + (i.prototype.g_15_10 = function (e) { + t.NWRFmB.ins().addDropItem(e); + }), + (i.prototype.g_15_11 = function (e) { + var i = e.readUnsignedInt(); + t.NWRFmB.ins().delDropItem(i); + }), + (i.prototype.post_g_15_12 = function (t) { + for (var e, i = t.readByte(), n = 0; i > n; n++) (e = t.readUnsignedInt()), this._pickUp.push(e); + }), + (i.prototype.post_g_15_13 = function (e) { + var i = t.NWRFmB.ins().getPayer; + i && (i.payPickUpMc(), (i = null)); + for (var n, s = e.readByte(), a = 0; s > a; a++) (n = e.readUnsignedInt()), this._pickUp.push(n); + }), + (i.prototype.getPickUpById = function (t) { + var e = this._pickUp.indexOf(t); + return e > -1 ? (this._pickUp.splice(e, 1), !0) : !1; + }), + (i.prototype.post_pushImage = function (t) { + return t; + }), + (i.prototype.post_skillPushImage = function (t) { + return t; + }), + i + ); + })(t.DlUenA); + (t.hADk = e), __reflect(e.prototype, "app.hADk"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return t.init(), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function () { + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, this.onResize, this), + (this.group = new eui.Group()), + (this.rect = new eui.Rect()), + (this.rect.fillColor = 0), + (this.rect.fillAlpha = 0.2), + this.group.addChild(this.rect), + (this.img = new eui.Image()), + (this.img.anchorOffsetX = 56), + (this.img.anchorOffsetY = 59), + this.group.addChild(this.img); + }), + (i.prototype.showLoading = function () { + if (t.ubnV.ins().isDoTimer) { + (this.rect.width = this.group.width = t.aTwWrO.ins().getWidth()), (this.rect.height = this.group.height = t.aTwWrO.ins().getHeight()); + var e = this; + RES.getResAsync( + "load_Reel_png", + function (t, i) { + e.img.texture = t; + }, + this + ), + (this.img.x = this.group.width / 2), + (this.img.y = this.group.height / 2), + egret.Tween.removeTweens(this.img), + t.aTwWrO.ins().getStage().addChild(this.group); + var i = egret.Tween.get(this.img, { + loop: !0, + }); + i.to( + { + rotation: 360, + }, + 500 + ).to( + { + rotation: 1, + }, + 1 + ); + } + }), + (i.prototype.hideLoading = function () { + egret.Tween.removeTweens(this.img), t.lEYZI.Naoc(this.group); + }), + (i.prototype.onResize = function () { + (t.aTwWrO.ins().getStage().scaleMode == egret.StageScaleMode.NO_SCALE || t.aTwWrO.ins().getStage().scaleMode == egret.StageScaleMode.FIXED_HEIGHT) && + ((this.group.width = t.aTwWrO.ins().getWidth()), (this.group.height = t.aTwWrO.ins().getWidth())); + }), + i + ); + })(t.BaseClass); + (t.LoadingView = e), __reflect(e.prototype, "app.LoadingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.Default = 0)] = "Default"), + (t[(t.Move = 1)] = "Move"), + (t[(t.Buff = 4)] = "Buff"), + (t[(t.Skill = 5)] = "Skill"), + (t[(t.Task = 6)] = "Task"), + (t[(t.Equip = 7)] = "Equip"), + (t[(t.Bag = 8)] = "Bag"), + (t[(t.Chat = 9)] = "Chat"), + (t[(t.Guild = 10)] = "Guild"), + (t[(t.Circle = 11)] = "Circle"), + (t[(t.Shop = 12)] = "Shop"), + (t[(t.PrivateDeals = 13)] = "PrivateDeals"), + (t[(t.Drop = 15)] = "Drop"), + (t[(t.Team = 16)] = "Team"), + (t[(t.Setting = 17)] = "Setting"), + (t[(t.Bless = 18)] = "Bless"), + (t[(t.Forge = 19)] = "Forge"), + (t[(t.FUBEN = 20)] = "FUBEN"), + (t[(t.Warehouse = 23)] = "Warehouse"), + (t[(t.PK = 24)] = "PK"), + (t[(t.Actvity = 25)] = "Actvity"), + (t[(t.Global = 26)] = "Global"), + (t[(t.TradeLine = 27)] = "TradeLine"), + (t[(t.Achievement = 28)] = "Achievement"), + (t[(t.strengthen = 29)] = "strengthen"), + (t[(t.ghost = 31)] = "ghost"), + (t[(t.platform4366 = 32)] = "platform4366"), + (t[(t.kuafu = 33)] = "kuafu"), + (t[(t.petSetting = 34)] = "petSetting"), + (t[(t.petSetting2 = 35)] = "petSetting2"), + (t[(t.Friends = 41)] = "Friends"), + (t[(t.Boss = 49)] = "Boss"), + (t[(t.Mail = 50)] = "Mail"), + (t[(t.Fashion = 51)] = "Fashion"), + (t[(t.Title = 54)] = "Title"), + (t[(t.SoldierSoul = 58)] = "SoldierSoul"), + (t[(t.Login = 255)] = "Login"); + })((e = t.jDIWJt || (t.jDIWJt = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.SVER_URL = window.webUrl), + (t.GET_LAST_SERVER = t.SVER_URL + "api/getlastserver?"), + (t.GET_SEVER_LIST = t.SVER_URL + "api/getserverlist?"), + (t.WAN_BA = t.SVER_URL + "login/wanba?"), + (t.USER_INFO = t.SVER_URL + "payment/userInfo?"), + (t.BUY = t.SVER_URL + "payment/buy?"), + t + ); + })(); + (t.PHPAPI = e), __reflect(e.prototype, "app.PHPAPI"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.update = function (e, i, n) { + void 0 === i && (i = 0), void 0 === n && (n = 0); + var s = 0, + a = 0; + 0 == n && (n = e.length), (e.position = i); + for (var r = i; n > r; ++r) (a = (255 & t.CRCBitReflect(e.readByte(), 8)) ^ ((s >> 8) & 16777215)), (a &= 255), (s = t.CRCTable[a] ^ ((s << 8) & 4294967040)); + return 65535 & (0 ^ t.CRCBitReflect(s, 16)); + }), + (t.makeCRCTable = function () { + for (var e = 0, i = new Array(256), n = 0; 256 > n; ++n) { + e = (n << 8) & 4294967040; + for (var s = 0; 8 > s; ++s) e = 32768 & e ? ((e << 1) & 4294967294) ^ t.POLYNOMIAL : (e << 1) & 4294967294; + i[n] = e; + } + return i; + }), + (t.CRCBitReflect = function (e, i) { + var n = 0, + s = 0; + i--; + for (var a = 0; i >= a; ++a) (s = i - a), 1 & e && (n |= (1 << s) & t.DropBits[s]), (e = (e >> 1) & 2147483647); + return n; + }), + (t.POLYNOMIAL = 4129), + (t.CRCTable = t.makeCRCTable()), + (t.DropBits = [ + 4294967295, 4294967294, 4294967292, 4294967288, 4294967280, 4294967264, 4294967232, 4294967168, 4294967040, 4294966784, 4294966272, 4294965248, 4294963200, 4294959104, 4294950912, 4294934528, + ]), + t + ); + })(); + (t.CRC16 = e), __reflect(e.prototype, "app.CRC16"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.encode = function (t, i, n) { + if ((void 0 === i && (i = 0), void 0 === n && (n = 0), i >= t.length)) return 0; + var s = n ? i + n : t.length; + s > t.length && (s = t.length), (t.position = i); + for (var a = i; s > a; ++a) { + var r = t.readByte(); + (r ^= e.sKeyBuff[a % 4]), t.position--, t.writeByte(r); + } + return s - i; + }), + (e.decode = function (t, i, n) { + return void 0 === i && (i = 0), void 0 === n && (n = 0), e.encode(t, i, n); + }), + (e.getCRC16 = function (e, i) { + return void 0 === i && (i = 0), t.CRC16.update(e, 0, i); + }), + (e.getCRC16ByPos = function (e, i, n) { + return void 0 === i && (i = 0), void 0 === n && (n = 0), t.CRC16.update(e, i, n); + }), + (e.getCheckKey = function () { + var i = new egret.ByteArray(); + (i.endian = egret.Endian.LITTLE_ENDIAN), i.writeUnsignedInt(e.sKey); + var n = t.CRC16.update(i); + return n; + }), + (e.getSelfSalt = function () { + return e.sSelfSalt; + }), + (e.getTargetSalt = function () { + return e.sTargetSalt; + }), + (e.setTargetSalt = function (t) { + (e.sTargetSalt = t), e.makeKey(); + }), + (e.makeSalt = function () { + var t = new Date(); + return Math.random() * t.getTime(); + }), + (e.makeKey = function () { + e.sKey = (e.sSelfSalt ^ e.sTargetSalt) + 8254; + for (var t = 0; 4 > t; ++t) e.sKeyBuff[t] = (e.sKey & (255 << (t << 3))) >> (t << 3); + }), + (e.sSelfSalt = e.makeSalt()), + (e.sKeyBuff = new Array(4)), + e + ); + })(); + (t.Encrypt = e), __reflect(e.prototype, "app.Encrypt"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this._dataCache = []), (this._pUpdate = new t.ProxyUpdate(this._dataCache)); + } + return ( + Object.defineProperty(e.prototype, "pUpdate", { + get: function () { + return this._pUpdate; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getCacheData = function (t) { + return this._dataCache[t] ? this._dataCache[t] : null; + }), + (e.prototype.clearCache = function () { + for (var t = Object.keys(this._dataCache), e = 0, i = t.length; i > e; e++) { + var n = t[e]; + (this._dataCache[n] = null), delete this._dataCache[n]; + } + }), + (e.prototype.getCacheKeyInfos = function () { + for (var t = [], e = Object.keys(this._dataCache), i = 0, n = e.length; n > i; i++) { + var s = e[i], + a = this._dataCache[s]; + t.push(a); + } + return t; + }), + (e.prototype.isCache = function (t) { + return this._dataCache[t]; + }), + e + ); + })(); + (t.DynamicChange = e), __reflect(e.prototype, "app.DynamicChange"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + this._cache = t; + } + return ( + (e.prototype.isArray = function (t) { + return t instanceof Array; + }), + (e.prototype.isObject = function (t) { + return t.indexOf("object") > -1; + }), + (e.prototype.isNormal = function (t) { + var e = t.indexOf("@") > -1, + i = t.indexOf(".") > -1, + n = t.indexOf("_") > -1; + return !e && !i && !n; + }), + (e.prototype.isAddToArray = function (t) { + return "@a" == t; + }), + (e.prototype.isRemoveToArray = function (t) { + var e = t.split("_"); + return e.length <= 3 && "@d" == e[0]; + }), + (e.prototype.isFilter = function (t) { + var e = t.split("_"); + return "@f" == e[0]; + }), + (e.prototype.isNumeric = function (t) { + return parseFloat(t).toString() == t.toString(); + }), + (e.prototype._updateObject = function (t, e, i) { + var n = t.split("."); + "@a" == n[0] || "@s" == n[0] ? (i[n[1]] = e) : "@d" == n[0] && delete i[n[1]]; + }), + (e.prototype._getFilterObject = function (t, e) { + if (e) { + var i = t.split("_"); + if (3 == i.length && "@f" == i[0] && this.isArray(e)) + for (var n = i[1], s = i[2], a = 0; a < e.length; a++) { + var r = e[a]; + if (3 == i.length && this.isObject(r.toString())) { + var o = r[n]; + if (o && ("@" == s[0] && (s = s.replace("@", "")), s == o)) return r; + } + } + } + return null; + }), + (e.prototype._addObjectToArray = function (t, e) { + if (this.isArray(e)) for (var i = 0; i < e.length; i++) t.push(e[i]); + else t.push(e); + }), + (e.prototype._removeObjectFromArray = function (t, e, i) { + var n = e.split("_"); + if (n.length <= 3 && "@d" == n[0] && this.isArray(t)) + for (var s = t.length, a = s - 1; a >= 0; a--) { + var r = t[a]; + if (3 == n.length) { + if (r.hasOwnProperty(n[1])) { + var o = n[2]; + "@" == o[0] && (o = o.replace("@", "")), o == r[n[1]] && t.splice(a, 1); + } + } else 2 == n.length && r.hasOwnProperty(n[1]) ? i == r[n[1]] && t.splice(a, 1) : 1 == n.length && i == r && t.splice(a, 1); + } + }), + (e.prototype.update = function (e, i) { + if (((this._cache[e] = i), i.hasOwnProperty("c"))) + for (var n = i.c, s = Object.keys(n), a = 0, r = s.length; r > a; a++) { + var o = s[a]; + this._cache[o] && (this._update(this._cache[o], n[o]), t.rLmMYc.ins().dispatch(o + "_HttpUpdate")); + } + }), + (e.prototype._update = function (t, e) { + if (t && e && this.isObject(e.toString())) + for (var i = Object.keys(e), n = 0, s = i.length; s > n; n++) { + var a = i[n], + r = e[a]; + if (this.isNormal(a) && this.isObject(r.toString())) t.hasOwnProperty(a) && this._update(t[a], r); + else if (this.isNormal(a) && this.isNumeric(r)) { + var o = t[a]; + t[a] = o + r; + } else if (this.isNormal(a)) t[a] = r; + else if (this.isAddToArray(a)) this._addObjectToArray(t, r); + else if (this.isRemoveToArray(a)) this._removeObjectFromArray(t, a, r); + else if (this.isFilter(a)) { + var l = this._getFilterObject(a, t); + l && this._update(l, r); + } else this._updateObject(a, r, t); + } + }), + e + ); + })(); + (t.ProxyUpdate = e), __reflect(e.prototype, "app.ProxyUpdate"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.ins = function () { + return t.ins.call(this); + }), + (e.prototype.send = function (t, e, i, n, s, a) { + var r = new egret.HttpRequest(); + (r.responseType = e ? egret.HttpResponseType.TEXT : egret.HttpResponseType.ARRAY_BUFFER), + r.open(t, i ? egret.HttpMethod.GET : egret.HttpMethod.POST), + r.once(egret.Event.COMPLETE, n, this), + r.once(egret.IOErrorEvent.IO_ERROR, s ? s : function () {}, this), + r.once(egret.ProgressEvent.PROGRESS, a ? a : function () {}, this), + r.send(); + }), + e + ); + })(t.BaseClass); + (t.Http = e), __reflect(e.prototype, "app.Http"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + (i.packageMgr = [t.FuBenMgr, t.TQkyOx, t.ShopMgr, t.ChatMgr, t.Nzfh, t.XwoNAr, t.TKZUv, t.PKRX, t.BuffMgr, t.NGcJ, t.KWGP, t.hADk, t.MailMgr, t.AchievementMgr, t.edHC, t.UyfaJ]), + (i.preload_load_count = 0), + (i.stepNum = 0), + (egret.TextField.default_fontFamily = "微软雅黑"); + var n = egret.getDefinitionByName("app.ZgOY"); + return ( + (FzTZ = n.ins()), + KdbLz.qOtrbE.iFbP || (ZkSzi.XvMAVE = ZkSzi.WGMF), + Main.vZzwB.userInfo.hasOwnProperty("client") && 2 == parseInt(Main.vZzwB.userInfo.client + "") && (egret.TextField.default_fontFamily = "SimHei"), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.startUp = function (e) { + FzTZ.reporting(t.ReportDataEnum.LOAD_GAMEAPP, {}, null, !1), + t.TKZUv.ins().initInfo(), + Main.phoneLoadingView.showLoadProgress(50, "正在打磨武器……"), + t.aTwWrO.ins().setUIStage(e), + t.MiOx.init(), + this.onConfigComplete(); + }), + (i.prototype.loadResVersionComplete = function () { + KdbLz.qOtrbE.iFbP + ? t.ResourceUtils.ins().addConfig(ZkSzi.XvMAVE + "phonedefault.res.json?v=" + Main.vZzwB.resVersion, "" + ZkSzi.XvMAVE) + : ((ZkSzi.XvMAVE = ZkSzi.WGMF), t.ResourceUtils.ins().addConfig(ZkSzi.XvMAVE + "default.res.json?v=" + Main.vZzwB.resVersion, "" + ZkSzi.XvMAVE)), + t.ResourceUtils.ins().loadConfig(this.onConfigComplete, this); + }), + (i.prototype.onConfigComplete = function () { + t.MiOx.setLoadProgress(59, "正在打磨武器……"), i.LoadingSteps >= i.STEPS_1 ? this.onThemeLoadComplete() : this.loadTheme(); + }), + (i.prototype.loadTheme = function () { + var e = this; + return ( + (i.LoadingSteps = i.STEPS_1), + new Promise(function (i, n) { + var s = new eui.Theme("resource/default.thm.json?v=" + Main.vZzwB.thmVersion, t.aTwWrO.ins().getUIStage().stage); + s.addEventListener( + eui.UIEvent.COMPLETE, + function () { + t.MiOx.setLoadProgress(63, "正在打磨武器……"), e.onThemeLoadComplete(); + }, + e + ); + }) + ); + }), + (i.prototype.onThemeLoadComplete = function () { + i.LoadingSteps >= i.STEPS_2 ? this.complete() : ((i.LoadingSteps = i.STEPS_2), this.load(), mouse.enable(t.aTwWrO.ins().getStage())); + }), + (i.closesocket = function (e) { + (t.TKZUv.ins().switchPlayer = e), t.ubnV.ins().onClose(); + }), + (i.prototype.load = function () { + t.ResourceUtils.ins().loadGroup("preload", this.complete, this.progress, this); + }), + (i.prototype.complete = function () { + if (i.LoadingSteps >= i.STEPS_4) t.ubnV.ins().logon(); + else { + i.LoadingSteps = i.STEPS_3; + (this.stepNum = 1), + t.MiOx.setLoadProgress(70, "准备好随机传送卷……"), + RES.getResByUrl(ZkSzi.MAP_DIR + "maps.xml?v=202111121700", this.createMap, this, RES.ResourceItem.TYPE_BIN), + console.log("资源加载成功!!"); + } + }), + (i.prototype.createMap = function (e) { + Assert(e, "maps 地图数据加载失败!!加载次数:") + ? t.CommonPopView.ins().showTextView("地图加载失败,请检查网络重新登录") + : 1 == this.stepNum && + ((this.stepNum = 2), + t.MiOx.setLoadProgress(75, "准备好随机传送卷……"), + JSZip.loadAsync(e) + .then(function (t) { + return t.file("maps.json").async("text"); + }) + .then(this.loadConfig.bind(this)), + (i.LoadingSteps = i.STEPS_4)); + }), + (i.prototype.loadConfig = function (e) { + if (2 == this.stepNum) { + t.MiOx.setLoadProgress(80, "准备好随机传送卷……"); + var i = this; + t.VlaoF.init(function () { + t.MiOx.setLoadProgress(85, "准备好随机传送卷……"); + for (var n in i.packageMgr) i.packageMgr[n].ins(); + t.GameMap.init(JSON.parse(e)), + t.MiOx.setLoadProgress(90, "欢迎来到玛法大陆……"), + t.ubnV.ins().logon(), + t.MiOx.isFirstLoad && t.ResourceUtils.ins().loadGroup("preload", this.doPerLoadComplete, this.postPerLoadProgress, i), + (this.loadConfig = null); + }); + } + }), + (i.prototype.callbackFunction = function () {}), + (i.prototype.progress = function (e, i) { + t.MiOx.setLoadProgress(40 + (e / i) * 30, "1.75版江山无限"); + }), + (i.prototype.postPerLoadProgress = function (t, e) { + return [t, e]; + }), + (i.prototype.doPerLoadComplete = function () { + t.VlaoF.init(this.postPerLoadComplete.bind(this)); + }), + (i.prototype.postPerLoadComplete = function () {}), + (i.prototype.postLoginInit = function () {}), + (i.prototype.postZeroInit = function () {}), + (i.prototype.loadPreload = function () { + t.ResourceUtils.ins().loadGroup("preload", this.onResourceLoadComplete, function () {}, this); + }), + (i.prototype.onResourceLoadComplete = function () { + var e = ZkSzi.RES_DIR_BODY + "body001_" + t.TKZUv.ins().createSex, + i = ZkSzi.RES_DIR_HAIR + "hair001_" + t.TKZUv.ins().createSex, + n = ZkSzi.RES_DIR_WEAPON + "weapon046_" + t.TKZUv.ins().createSex; + RES.getResByUrl(e + ".json?v=6", this.compFunc, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(e + ".png?v=6", this.compFunc, this, RES.ResourceItem.TYPE_IMAGE), + RES.getResByUrl(i + ".json?v=6", this.compFunc, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(i + ".png?v=6", this.compFunc, this, RES.ResourceItem.TYPE_IMAGE), + RES.getResByUrl(n + ".json?v=6", this.compFunc, this, RES.ResourceItem.TYPE_JSON), + RES.getResByUrl(n + ".png?v=6", this.compFunc, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.compFunc = function () {}), + (i.LoadingSteps = 0), + (i.STEPS_1 = 1), + (i.STEPS_2 = 2), + (i.STEPS_3 = 3), + (i.STEPS_4 = 4), + i + ); + })(t.BaseClass); + (t.bqQT = e), __reflect(e.prototype, "app.bqQT"), t.rLmMYc.compile(e); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.achievementList = []), + (i.pageReds = []), + (i.achievesState = []), + (i.sysId = t.jDIWJt.Achievement), + i.YrTisc(t.AchievementProtocol.SC_AchievementList, i.post_AchievemnetInfo), + i.YrTisc(t.AchievementProtocol.SC_AchievementGetGift, i.post_AchievemnetResult), + i.YrTisc(t.AchievementProtocol.SC_AchievementRedPot, i.post_AchievemnetRedPot), + i.YrTisc(t.AchievementProtocol.SC_AchieveGetMedalData, i.post_AchieveGetMedalData), + i.YrTisc(t.AchievementProtocol.SC_AchieveUpMedalLevel, i.post_AchieveMedalUpLevel), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.post_AchieveGetMedalData = function (e) { + this.curMedalLevel = e.readInt(); + var i = e.readByte(); + this.achievesState = []; + for (var n, s = 0; i > s; s++) { + (n = new t.MedalUpData()), (n.id = e.readInt()), (n.state = e.readInt()); + var a = this.getAchieveConf(n.id); + (n.content = a && t.CrmPU.language_Achieve_Medal_CostFinishAch_text + a.name), (n.type = 3), this.achievesState.push(n); + } + }), + (i.prototype.post_AchieveMedalUpLevel = function (t) { + (this.curMedalLevel = t.readInt()), (this.medalUpResult = t.readByte()); + }), + (i.prototype.post_AchievemnetRedPot = function (t) { + var e = t.readByte(); + this.pageReds = []; + for (var i = 0; e > i; i++) { + var n = t.readByte(); + this.pageReds.push(n); + } + }), + (i.prototype.findPageIndex = function (t) { + for (var e = i.ins().pageReds, n = 0; n < e.length; n++) if (e[n] == t) return 1; + return 0; + }), + (i.prototype.post_AchievemnetInfo = function (e) { + this.pageIndex = e.readByte(); + var i, + n = e.readInt(); + this.achievementList = []; + for (var s = 0; n > s; s++) + (i = new t.AchievementData()), + (i.id = e.readInt()), + (i.condition1 = e.readInt()), + (i.complete1 = e.readInt()), + (i.condition2 = e.readInt()), + (i.complete2 = e.readInt()), + (i.nSate = e.readByte()), + this.achievementList.push(i); + }), + (i.prototype.findAchievementListIsGet = function () { + for (var t = 0; t < this.achievementList.length; t++) { + var e = this.achievementList[t]; + if (1 == e.nSate) return !0; + } + return !1; + }), + (i.prototype.getAchievementList = function () { + return (this.achievementList = this.achievementList.sort(this.sort)), this.achievementList; + }), + (i.prototype.sort = function (t, e) { + return 1 == t.nSate && 1 != e.nSate + ? -1 + : 1 != t.nSate && 1 == e.nSate + ? 1 + : 0 == t.nSate && 0 != e.nSate + ? -1 + : 0 != t.nSate && 0 == e.nSate + ? 1 + : t.id < e.id + ? -1 + : t.id > e.id + ? 1 + : void 0; + }), + (i.prototype.getAchievementGiftData = function () { + return this.achievementGiftData; + }), + (i.prototype.post_AchievemnetResult = function (e) { + (this.achievementGiftData = new t.AchievementGiftData()), + (this.achievementGiftData.id = e.readInt()), + (this.achievementGiftData.errorCode = e.readByte()), + 0 == this.achievementGiftData.errorCode && this.sendRedDot(); + }), + (i.prototype.sendAchievementList = function (e) { + var i = this.MxGiq(t.AchievementProtocol.CS_AchievementList); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.sendAchievementGetGift = function (e) { + var i = this.MxGiq(t.AchievementProtocol.CS_AchievementGetGift); + i.writeInt(e), this.evKig(i); + }), + (i.prototype.sendRedDot = function () { + var e = this.MxGiq(t.AchievementProtocol.CS_AchievementRedPot); + this.evKig(e); + }), + (i.prototype.sendMedalGetData = function () { + var e = this.MxGiq(t.AchievementProtocol.CS_AchieveGetMedalData); + this.evKig(e); + }), + (i.prototype.sendMedalUpLevel = function () { + var e = this.MxGiq(t.AchievementProtocol.CS_AchieveUpMedalLevel); + this.evKig(e); + }), + (i.prototype.findItemIcon = function (e) { + if (0 == e.type) { + var i = t.VlaoF.StdItems[e.id]; + return i; + } + var n = t.VlaoF.NumericalIcon[e.type]; + return n; + }), + (i.prototype.getMedalAttrib = function (e, i, n) { + for (var s = [], a = t.VlaoF.StdItems[e] && t.VlaoF.StdItems[e].staitcAttrs, r = 0; r < (a && a.length); r++) { + var o = t.AttributeData.getItemAttStrByType(a[r], a, 1, i, n); + "" != o && s.push(o); + } + return s; + }), + (i.prototype.getAchieveConf = function (e) { + var i, + n = t.VlaoF.AchieveConfig; + for (var s in n) + if (n[s] && n[s][e]) { + i = n[s][e]; + break; + } + return i; + }), + i + ); + })(t.DlUenA); + (t.AchievementMgr = e), __reflect(e.prototype, "app.AchievementMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.touchEnabled = !1), e; + } + return __extends(e, t), e; + })(egret.DisplayObjectContainer); + (t.BaseSpriteLayer = e), __reflect(e.prototype, "app.BaseSpriteLayer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.AchievementData = e), __reflect(e.prototype, "app.AchievementData"); + var i; + !(function (t) { + (t[(t.CS_AchievementList = 1)] = "CS_AchievementList"), + (t[(t.CS_AchievementGetGift = 2)] = "CS_AchievementGetGift"), + (t[(t.CS_AchievementRedPot = 3)] = "CS_AchievementRedPot"), + (t[(t.CS_AchieveGetMedalData = 11)] = "CS_AchieveGetMedalData"), + (t[(t.CS_AchieveUpMedalLevel = 12)] = "CS_AchieveUpMedalLevel"), + (t[(t.SC_AchievementList = 1)] = "SC_AchievementList"), + (t[(t.SC_AchievementGetGift = 2)] = "SC_AchievementGetGift"), + (t[(t.SC_AchievementRedPot = 3)] = "SC_AchievementRedPot"), + (t[(t.SC_AchieveGetMedalData = 11)] = "SC_AchieveGetMedalData"), + (t[(t.SC_AchieveUpMedalLevel = 12)] = "SC_AchieveUpMedalLevel"); + })((i = t.AchievementProtocol || (t.AchievementProtocol = {}))); + var n = (function () { + function t() {} + return t; + })(); + (t.AchievementGiftData = n), __reflect(n.prototype, "app.AchievementGiftData"); + var s = (function () { + function t() {} + return t; + })(); + (t.MedalUpData = s), __reflect(s.prototype, "app.MedalUpData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.clear = function () { + var t = this._currScene; + t && (t.onExit(), (this._currScene = void 0)); + }), + (i.prototype.runScene = function (e) { + if (null == e) return void t.Log.trace("runScene:scene is null"); + var i = this._currScene; + i && (i.onExit(), (i = void 0)); + var n = new e(); + n.onEnter(), (this._currScene = n); + }), + (i.prototype.getCurrScene = function () { + return this._currScene; + }), + (i.prototype.getSceneName = function () { + return this._currScene ? egret.getQualifiedClassName(this._currScene) : ""; + }), + (i.CREATE_ROLE = "CreateRoleScene"), + (i.MAIN = "MainScene"), + i + ); + })(t.BaseClass); + (t.SceneManager = e), __reflect(e.prototype, "app.SceneManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.className = "@策划@使用此组件必须填写逻辑类名"), e; + } + return ( + __extends(e, t), + (e.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + (e.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + Object.defineProperty(e.prototype, "data", { + get: function () { + return this._data; + }, + set: function (t) { + (this._data = t), eui.PropertyEvent.dispatchPropertyEvent(this, eui.PropertyEvent.PROPERTY_CHANGE, "data"), this.dataChanged && this.dataChanged(); + }, + enumerable: !0, + configurable: !0, + }), + (e.filterKeys = ["data"]), + (e.copyKeys = ["open", "close"]), + e + ); + })(t.BaseView); + (t.BaseComponent = e), __reflect(e.prototype, "app.BaseComponent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + var e = t.AchievementMgr.ins().findItemIcon(this.data); + this.lbGift.text = e && e.name + "*" + this.data.count; + }), + i + ); + })(t.BaseItemRender); + (t.AchieveDetailItemView = e), __reflect(e.prototype, "app.AchieveDetailItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "AchievementDetailedViewSkin"), (i.name = "AchievementDetailedView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + (this.txtGift.text = t.CrmPU.language_Achievement_TxtGift), + this.dragDropUI.setTitle(t.CrmPU.language_Achievement_Title), + this.vKruVZ(this.btnConfim, this.onClick); + }), + (i.prototype.onClick = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = e[0], + s = t.VlaoF.AchieveConfig[t.AchievementMgr.ins().pageIndex][n]; + this.lbDetail.text = s.achievement; + var a = new eui.ArrayCollection(); + (a.source = s.award), (this.listGift.itemRenderer = t.AchieveDetailItemView), (this.listGift.dataProvider = a); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.btnConfim, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.AchievementDetailedView = e), __reflect(e.prototype, "app.AchievementDetailedView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i) { + var n = e.call(this) || this; + return (n._resources = null), (n._myParent = i), (n._isInit = !1), t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, n.onResize, n), n; + } + return ( + __extends(i, e), + (i.prototype.setResources = function (t) { + this._resources = t; + }), + Object.defineProperty(i.prototype, "myParent", { + get: function () { + return this._myParent; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.isInit = function () { + return this._isInit; + }), + (i.prototype.ZbzdY = function () { + return null != this.stage && this.visible; + }), + (i.prototype.addToParent = function () { + this._myParent.addChild(this); + }), + (i.prototype.Naoc = function () { + t.lEYZI.Naoc(this); + }), + (i.prototype.initUI = function () { + this._isInit = !0; + }), + (i.prototype.initData = function () {}), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + (i.prototype.destroy = function () { + (this._myParent = null), (this._resources = null); + }), + (i.prototype.onResize = function () {}), + (i.prototype.loadResource = function (e, i) { + this._resources && this._resources.length > 0 + ? t.ResourceUtils.ins().loadResource( + this._resources, + [], + function () { + e(), i(); + }, + null, + this + ) + : (e(), i()); + }), + (i.prototype.setVisible = function (t) { + this.visible = t; + }), + (i.openCheck = function () { + return !0; + }), + i + ); + })(egret.DisplayObjectContainer); + (t.BaseSpriteView = e), __reflect(e.prototype, "app.BaseSpriteView", ["app.IBaseView"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.btnGet, this.onClick), this.vKruVZ(this.btnShow, this.onClick); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.btnGet.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.btnShow.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.updateAchieveState = function () { + (this.btnGet.visible = !1), (this.achievementData.nSate = 2), (this.reachedIcon.visible = !0); + }), + (i.prototype.dataChanged = function () { + if (null != this.data) { + (this.protxt.text = t.CrmPU.language_Achievement_Txtpro), (this.achievementData = this.data); + var e = t.VlaoF.AchieveConfig[t.AchievementMgr.ins().pageIndex], + i = e && e[this.achievementData.id]; + (this.lbTitle.text = i && i.name), + (this.lbTarget.text = i && i.achievement), + this.achievementData.condition1 && this.achievementData.condition2 + ? this.achievementData.condition1 <= this.achievementData.complete1 || this.achievementData.condition2 <= this.achievementData.complete2 + ? ((this.lbProgress.textColor = 2682369), (this.lbProgress.text = "1/1")) + : ((this.lbProgress.textColor = 13348219), (this.lbProgress.text = "0/1")) + : this.achievementData.condition1 + ? (this.achievementData.condition1 <= this.achievementData.complete1 + ? ((this.lbProgress.textColor = 2682369), (this.achievementData.complete1 = this.achievementData.condition1)) + : (this.lbProgress.textColor = 13348219), + (this.lbProgress.text = this.achievementData.complete1 + "/" + this.achievementData.condition1)) + : (this.achievementData.condition2 <= this.achievementData.complete2 + ? ((this.lbProgress.textColor = 2682369), (this.achievementData.complete2 = this.achievementData.condition2)) + : (this.lbProgress.textColor = 13348219), + (this.lbProgress.text = this.achievementData.complete2 + "/" + this.achievementData.condition2)), + 0 == this.achievementData.nSate + ? ((this.btnGet.visible = !1), (this.reachedIcon.visible = !1)) + : 1 == this.achievementData.nSate + ? ((this.btnGet.label = t.CrmPU.language_Achievement_GetText), (this.btnGet.enabled = !0), (this.btnGet.visible = !0), (this.reachedIcon.visible = !1)) + : ((this.btnGet.visible = !1), (this.reachedIcon.visible = !0)), + this.itemIndex % 2 == 1 ? ((this.state_0.visible = !0), (this.state_1.visible = !1)) : ((this.state_0.visible = !1), (this.state_1.visible = !0)); + } + }), + (i.prototype.onClick = function (e) { + e.currentTarget == this.btnShow + ? t.mAYZL.ins().ZbzdY(t.AchievementDetailedView) + ? (t.mAYZL.ins().close(t.AchievementDetailedView), t.mAYZL.ins().open(t.AchievementDetailedView, this.achievementData.id)) + : t.mAYZL.ins().open(t.AchievementDetailedView, this.achievementData.id) + : 1 == this.achievementData.nSate && (t.AchievementMgr.ins().sendAchievementGetGift(this.achievementData.id), (this.btnGet.enabled = !1)); + }), + (i.prototype.destroy = function () { + for ( + this.achievementData = null, + this.data = null, + this.state_0.source = "", + this.state_1.source = "", + this.lbTitle.text = "", + this.lbTarget.text = "", + this.lbProgress.text = "", + this.reachedIcon.source = "", + this.btnGet.icon = "", + this.protxt.text = ""; + this.gp.numChildren > 0; + + ) { + var t = this.gp.getChildAt(0); + t && (t = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.AchievementItemView = e), __reflect(e.prototype, "app.AchievementItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.getViewPos = function (e) { + var i = t.VlaoF.PlayFunConfigPos; + for (var n in i) if (i[n] && i[n].view && e == i[n].view) return i[n].pos; + return null; + }), + (e.OPENVIEW_DEFAULT = {}), + (e.OPENVIEW_CENTER = { + verticalCenter: 0, + horizontalCenter: 0, + }), + (e.OPENVIEW_CENTER2 = { + verticalCenter: -80, + horizontalCenter: -20, + }), + e + ); + })(); + (t.UIOpenViewMode = e), __reflect(e.prototype, "app.UIOpenViewMode"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.getCrossServerActTab = function (e) { + var i = [], + n = t.VlaoF.ACTcrossServerTabCfg[e]; + for (var s in n) i.push(n[s]); + return i; + }), + (i.prototype.getCrossServerActRed = function () { + var e = 0, + i = t.ubnV.ihUJ ? 2 : 1, + n = t.VlaoF.ACTcrossServerTabCfg[i]; + for (var s in n) { + var a = t.TQkyOx.ins().getActivityConfigById(n[s].activityid); + if (a && a.buttoncolor) { + var r = t.TQkyOx.ins().getActivityInfo(n[s].activityid); + if (r && r.redDot) { + e = a.buttoncolor; + break; + } + } + } + return e; + }), + i + ); + })(t.DlUenA); + (t.CrossServerMgr = e), __reflect(e.prototype, "app.CrossServerMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.tabArr = []), (t._curIndex = -1), (t.openActID = 0), (t._actID = 0), (t.skinName = "CrossServerActViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (t.ubnV.ihUJ ? (this.openActID = e[1]) : (this.openActID = e[0])), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.tabScroller.verticalScrollBar.autoVisibility = !1), + (this.tabScroller.verticalScrollBar.visible = !1), + (this.rewardsList.itemRenderer = t.ItemBase), + (this.tabList.itemRenderer = t.ActivityTabView), + (this.tabList.dataProvider = this.itemArrayCollection), + (this.ruleLab.textFlow = t.hETx.qYVI("" + this.ruleLab.text + "")), + (this.ruleLab2.textFlow = t.hETx.qYVI("" + this.ruleLab2.text + "")), + (this._curIndex = 0), + t.MouseScroller.bind(this.tabScroller), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this), + this.vKruVZ(this.enterBtn, this.onClick), + this.vKruVZ(this.ruleLab, this.onClick), + this.vKruVZ(this.ruleLab2, this.onClick), + this.actPath.addEventListener(egret.TextEvent.LINK, this.Npctransfer, this), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateCurInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateCurInfo), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateCurInfo); + var n = t.ubnV.ihUJ ? 2 : 1; + this.tabArr = t.CrossServerMgr.ins().getCrossServerActTab(n); + this.setTabArr(); + if (0 != this.openActID) { + for (var s = 0; s < this.tabList.dataProvider.length; s++) { + var a = this.tabList.dataProvider.getItemAt(s); + if (a.activityid == this.openActID) { + this._curIndex = s; + break; + } + } + this._curIndex > 6 && (this.tabScroller.validateNow(), (this.tabScroller.viewport.scrollV = this.tabScroller.viewport.contentHeight - this.tabScroller.viewport.height)); + } + (this.tabList.selectedIndex = this._curIndex), this.setOpenIndex(); + }), + (i.prototype.setTabArr = function () { + if (this.tabArr) { + var t = []; + for (var e in this.tabArr) t.push(this.tabArr[e]); + t.sort(this.tabSort), this.itemArrayCollection.replaceAll(t); + } + }), + (i.prototype.tabSort = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e.activityid), + s = t.TQkyOx.ins().getActivityInfo(i.activityid); + if (n && s) { + if (e.sortact > i.sortact) return -1; + if (e.sortact < i.sortact) return 1; + } else { + if (n || s) return n && !s ? -1 : 1; + var a = t.TQkyOx.ins().getActivityConfigById(e.activityid), + r = t.TQkyOx.ins().getActivityConfigById(i.activityid), + o = t.mAYZL.ins().isCheckOpen(a.openParam), + l = t.mAYZL.ins().isCheckOpen(r.openParam); + if (o && !l) return -1; + if (!o && l) return 1; + if (e.sortact < i.sortact) return -1; + if (e.sortact > i.sortact) return 1; + } + }), + (i.prototype.updateCurInfo = function () { + this.setTabArr(), this.setOpenIndex(); + }), + (i.prototype.setOpenIndex = function () { + this._curIndex = this.tabList.selectedIndex; + var e = this.tabList.dataProvider.getItemAt(this.tabList.selectedIndex); + if (e) { + var i = t.TQkyOx.ins().getActivityConfigById(e.activityid); + i && + ((this._actID = e.activityid), + (this.rewardsList.dataProvider = new eui.ArrayCollection(i.rewards)), + (this.enterBtn.visible = i.rewardBtn ? !0 : !1), + (this.enterBtn.label = i.rewardBtn ? i.rewardBtn : ""), + i.ruleID ? ((this.ruleTips.visible = !0), (this.ruleTips.ruleId = i.ruleID)) : (this.ruleTips.visible = !1), + (this.actTitle.textFlow = t.hETx.qYVI(i.Ntipstext_1)), + (this.actTime.textFlow = t.hETx.qYVI(i.Ntipstext_2)), + (this.actDesc.textFlow = t.hETx.qYVI(i.Ntipstext_3)), + i.Ntipstext_4 ? (this.actPath.textFlow = t.hETx.generateTextFlow1(i.Ntipstext_4)) : (this.actPath.text = "")); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.enterBtn: + if (t.ubnV.ihUJ || 36 == this._actID) t.TQkyOx.ins().enterActivity(this._actID), t.mAYZL.ins().close(t.CrossServerWin); + else { + var i = t.TQkyOx.ins().getActivityConfigById(this._actID); + i && + (t.mAYZL.ins().isCheckOpen(i.openParam) + ? t.TQkyOx.ins().send_25_1(this._actID, t.Operate.cKuaFu) + : t.uMEZy.ins().IrCm("|C:0xff7700&T:参与该活动需要开服" + i.openParam.openDay + "天及转生达到" + i.openParam.zsLevel + "转|")); + } + t.mAYZL.ins().close(this); + break; + case this.ruleLab: + t.mAYZL.ins().ZbzdY(t.RuleView) || + t.mAYZL.ins().open(t.RuleView, { + id: this.ruleTips1.ruleId, + }); + break; + case this.ruleLab2: + t.mAYZL.ins().close(t.RuleView); + for (var n in t.VlaoF.CrossServerGroupConf) { + var s = t.VlaoF.CrossServerGroupConf[n]; + if (t.GlobalData.sectionOpenDay <= s.id) { + t.mAYZL.ins().open(t.RuleView, { + id: s.ruleid, + }); + break; + } + } + } + }), + (i.prototype.Npctransfer = function (e) { + var i = e.text, + n = i.split(","), + s = t.NWRFmB.ins().getPayer; + if (s) { + var a = s.ifFindTask(+n[2], +n[0], +n[1]); + if (a && -1 == a.x && -1 == a.y) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips121); + s.setTask(+n[2], +n[0], +n[1], -1, -1, 0, +n[3]); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.tabScroller), + this.fEHj(this.ruleLab, this.onClick), + this.fEHj(this.ruleLab2, this.onClick), + this.fEHj(this.enterBtn, this.onClick), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this), + (this.tabArr = null); + }), + i + ); + })(t.gIRYTi); + (t.CrossServerActView = e), __reflect(e.prototype, "app.CrossServerActView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + this.data && (1 == this.data.type ? (this.label.text = "系统") : 2 == this.data.type && (this.label.text = "战斗"), (this.chatLab.textFlow = t.hETx.generateTextFlow1(this.data.msg))); + }), + i + ); + })(t.BaseItemRender); + (t.CrossServerDetailsItemView = e), __reflect(e.prototype, "app.CrossServerDetailsItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "CrossServerDetailsSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.MouseScroller.bind(this.msgScroller), + (this.msgList.itemRenderer = t.CrossServerDetailsItemView), + (this.msgArray = new eui.ArrayCollection()), + (this.msgList.dataProvider = this.msgArray), + (this.msgScroller.verticalScrollBar.autoVisibility = !1), + (this.msgScroller.verticalScrollBar.visible = !1), + this.HFTK(t.ChatMgr.ins().post_9_11, this.refushBarList), + t.KHNO.ins().tBiJo(5e3, 0, this.sentMsg, this); + var n = t.ChatMgr.ins().kfNoticeAry; + this.refushBarList(n), this.sentMsg(); + }), + (i.prototype.sentMsg = function () { + t.ChatMgr.ins().requestKFNotice(); + }), + (i.prototype.refushBarList = function (t) { + this.msgArray.replaceAll(t), + this.msgScroller.validateNow(), + this.msgScroller.viewport.contentHeight > this.msgScroller.viewport.height && + (this.msgScroller.viewport.scrollV = this.msgScroller.viewport.contentHeight - this.msgScroller.viewport.height); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().removeAll(this), t.MouseScroller.unbind(this.msgScroller), (this.msgArray = null); + }), + i + ); + })(t.gIRYTi); + (t.CrossServerDetailsView = e), __reflect(e.prototype, "app.CrossServerDetailsView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.lastIndex = 0), (t.idx = 0), (t.skinName = "CrossServerWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tabBar.itemRenderer = t.SoldierSoulTabBarWin); + var i = [ + { + icon: "kf_fanye_hd", + view: "app.CrossServerActView", + title: "kf_kfzc", + }, + ]; + if (!t.ubnV.ihUJ) { + i.push({ + icon: "kf_fanye_xq", + view: "app.CrossServerDetailsView", + title: "kf_kfxq", + }); + } + this.tabBar.dataProvider = new eui.ArrayCollection(i); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && e[0] && (this.idx = e[0]), + this.HFTK(t.TQkyOx.ins().post_25_1, this.refreshRed), + this.HFTK(t.TQkyOx.ins().post_25_2, this.refreshRed), + this.HFTK(t.TQkyOx.ins().post_25_3, this.refreshRed), + this.HFTK(t.TQkyOx.ins().post_25_4, this.refreshRed), + this.HFTK(t.TQkyOx.ins().post_25_5, this.refreshRed), + (this.lastIndex = 0), + (this.tabBar.selectedIndex = 0), + this.vKruVZ(this.closeBtn, this.onClick), + this.tabBar.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.updateView(this.lastIndex), + this.refreshRed(); + }), + (i.prototype.updateView = function (e) { + void 0 === e && (e = 0), this.curPanel && (this.curPanel.close(), t.lEYZI.Naoc(this.curPanel), (this.curPanel = null)); + var i = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (i) { + this.titleImg.source = i.title + ""; + var n = egret.getDefinitionByName(i.view); + n && + ((this.curPanel = new n()), + this.curPanel && + ((this.curPanel.left = 0), (this.curPanel.right = 0), (this.curPanel.top = 0), (this.curPanel.bottom = 0), this.infoGrp.addChild(this.curPanel), this.curPanel.open(this.idx))); + } + }), + (i.prototype.onBarItemTap = function (t) { + this.lastIndex != t.itemIndex && ((this.lastIndex = t.itemIndex), this.updateView(this.lastIndex)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.refreshRed = function () { + var e = t.CrossServerMgr.ins().getCrossServerActRed(); + e > 0 ? ((this.redPoint.visible = !0), this.redPoint.setRedImg(e)) : (this.redPoint.visible = !1); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.tabBar.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this); + }), + i + ); + })(t.gIRYTi); + (t.CrossServerWin = e), __reflect(e.prototype, "app.CrossServerWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.state_1 = "rank_bg2"), + (t.state_2 = "rank_bg3"), + (t.colorRank = [16718530, 16742144, 1769471]), + (t.skinName = "CrossServerRankListItemSkin"), + (t.touchEnabled = !1), + (t.touchChildren = !0), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onMouseDouble, this); + }), + (i.prototype.onMouseDouble = function (t) { + this.callFunc && this.callFunc(); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data, + e = t.index % 2 == 0 ? this.state_1 : this.state_2; + this.bg.$setTexture(RES.getRes(e)), + (this.select.visible = 1 == t.isSelected ? !0 : !1), + t.rank < 4 + ? ((this.txt_name.textColor = this.colorRank[t.rank - 1]), (this.rankImg.visible = !0), (this.txt_rank.visible = !1), (this.rankImg.source = "rank_pm" + t.rank)) + : ((this.txt_name.textColor = 15064527), (this.rankImg.visible = !1), (this.txt_rank.visible = !0), (this.txt_rank.text = t.rank + "")), + (this.playerId = t.playerId), + (this.txt_guild.text = t.guildName), + (this.txt_name.text = t.name), + (this.txt_level.text = t.levelDes); + t.superPL; + this.callFunc = t.callFunc; + } + }), + (i.prototype.destroy = function () { + this.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onMouseDouble, this), this.callFunc && (this.callFunc = null), (this.data = null), (this.bg.source = ""), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseItemRender); + (t.CrossServerRankListItemView = e), __reflect(e.prototype, "app.CrossServerRankListItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this.curIdx = -1), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.itemRenderer = t.CrossServerRankListItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []); + }), + (e.prototype.setRankByType = function (e, i, n) { + void 0 === i && (i = null), void 0 === n && (n = null), (this.callFunc1 = i), (this.callFunc2 = n), (this.curIdx = 0); + var s, + a = [], + r = t.JgMyc.ins().rankModel.dicRank[e], + o = ""; + if (r && r.list.length > 0) { + for (var l = r.list, h = 0; h < l.length; h++) { + (s = l[h]), (o = s.circle > 0 ? s.circle + t.CrmPU.language_Common_0 + s.level : s.level + ""); + var p = 0; + 0 == h && + ((p = 1), + i && + i({ + close: 1, + playerID: s.playerId, + })), + a.push({ + index: h, + isSelected: p, + playerId: s.playerId, + rank: s.rank, + name: s.name, + levelDes: o, + superPL: s.superPL, + guildName: s.guildName, + callFunc: this.callFunc.bind(this), + }); + } + this.setData(a); + } else this.setData([]); + n && + n({ + data: a, + }); + }), + (e.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (e.prototype.onItemTap = function (t, e, i, n) { + this.curIdx >= 0 && this.dataAry[this.curIdx] && ((this.dataAry[this.curIdx].isSelected = 0), this._itemArrayCollection.replaceItemAt(this.dataAry[this.curIdx], this.curIdx)), + (this.dataAry[e].isSelected = 1), + this._itemArrayCollection.replaceItemAt(this.dataAry[e], e), + this._itemArrayCollection.refresh(), + (this.curIdx = e), + (this._rankListItemView = n), + this.callFunc1 && + this.callFunc1({ + playerID: t.playerId, + close: 1, + }); + }), + (e.prototype.onMouseDouble = function () { + this.callFunc && this.callFunc(); + }), + (e.prototype.setData = function (t) { + this.creatItem(t); + }), + (e.prototype.creatItem = function (e) { + t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0), (this.curIdx = 0); + for (var i = 0; i < e.length; ++i) this.dataAry.push(e[i]); + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.callFunc = function () { + this._rankListItemView && + this.callFunc1 && + this.callFunc1({ + view: this._rankListItemView, + pos: { + x: 750, + y: 20, + }, + }); + }), + (e.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + e.destroy(), (e = null); + } + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null), + this.callFunc1 && (this.callFunc1 = null), + this.callFunc2 && (this.callFunc2 = null), + this._rankListItemView && (this._rankListItemView = null); + }), + e + ); + })(); + (t.CrossServerRankListView = e), __reflect(e.prototype, "app.CrossServerRankListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.tabArr = []), (t.selectedItem = 0), (t.skinName = "CrossServerRankViewSkin"), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.JgMyc.ins().rankModel.init(), + (this.rankType = t.RankDetailType.CrossServerAllLevel), + (this.roleInnerModel = new t.RoleInnerModel(this.modelGroup)), + (this.flipPage = new t.FlipPage(this.btn_home, this.btn_pre, this.btn_next)), + (this.flipPage.maxLength = 10), + this.flipPage.addEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), + (this.rankListView = new t.CrossServerRankListView(this.rank_list)), + (this.rank_no.visible = t.GlobalData.sectionOpenDay < 2), + (this.menu_group.visible = !1), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.rankRightMenuView = new t.RankRightMenuView()), + this.menu_group.addChild(this.rankRightMenuView), + (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + t.CrmPU.language_Omission_txt89), + this.vKruVZ(this.btn_operation, this.onOperation), + (this.tabArr = t.JgMyc.ins().rankModel.getRankTab()), + this.tabArr && this.onChangeTab(0), + t.ckpDj.ins().addEvent(t.CompEvent.RANK_SHOW_LIST, this.onShowList, this), + t.Nzfh.ins().send_0_23(this.rankType), + this.HFTK(t.Nzfh.ins().post_s_0_71, this.setRankListData), + this.HFTK(t.bPGzk.ins().post_7_8, this.setModel); + }), + (i.prototype.onShowList = function (t) { + t == this.rankType && this.setRankListData([this.rankType]); + }), + (i.prototype.onTabTouch = function (t) { + this.onChangeTab(t.currentTarget.selectedIndex); + }), + (i.prototype.setRankListData = function (e) { + var i = e[0]; + i == this.rankType && + (this.rankListView.setRankByType(i, this.onMenu.bind(this), this.onPageData.bind(this)), + (this.rank_no.visible = null == t.JgMyc.ins().rankModel.dicRank[i] || void 0 == t.JgMyc.ins().rankModel.dicRank[i] || 0 == t.JgMyc.ins().rankModel.dicRank[i].list.length), + this.playerRankInfo(i)); + }), + (i.prototype.playerRankInfo = function (e) { + void 0 === e && (e = 0); + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.mBjV(), + s = i.propSet.getGuildName(); + "" == s ? (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + t.CrmPU.language_Omission_txt89) : (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + s); + var a = t.VlaoF.RankConfig.openlv, + r = t.VlaoF.RankConfig.loadlv; + a > n + ? (this.rank_desc.text = t.CrmPU.language_Omission_txt22) + : n >= a && r > n + ? (this.rank_desc.text = t.CrmPU.language_Omission_txt23) + : t.JgMyc.ins().rankModel.dicRank[e] && t.JgMyc.ins().rankModel.dicRank[e].myData.rank > 0 + ? (this.rank_desc.text = t.CrmPU.language_FuBen_Text7 + t.JgMyc.ins().rankModel.dicRank[e].myData.rank) + : (this.rank_desc.text = t.CrmPU.language_Omission_txt23); + }), + (i.prototype.onChangeTab = function (e) { + t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL); + }), + (i.prototype.onMenu = function (e) { + e.playerID && ((this.selectedItem = e.playerID), t.GameMap.isForbiddenArea ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips118) : t.bPGzk.ins().send_7_8(this.selectedItem, t.ubnV.ihUJ ? 1 : 2)); + }), + (i.prototype.showMenu = function () { + t.caJqU.ins().sendQueryOthersEquips(this.selectedItem, t.ubnV.ihUJ ? 1 : 2); + }), + (i.prototype.onPageData = function (t) { + var e = t.data; + e && this.flipPage.setData(e), (this.flipPage.currentPage = 1); + }), + (i.prototype.onPageChange = function (t) { + var e = t.data; + e && 0 == e.length ? (this.rank_no.visible = !0) : (this.rank_no.visible = !1); + for (var i = 0; i < e.length; i++) + 0 == i + ? ((e[i].isSelected = 1), + this.onMenu({ + playerID: e[i].playerId, + })) + : (e[i].isSelected = 0); + this.rankListView.setData(e), (this.pageLab.text = this.flipPage.getPageText()); + }), + (i.prototype.callfunc = function (e) { + var i = this; + e >= 4 && (e += 1), + t.Nzfh.ins().send_0_23(e, 100, function () { + i.setRankListData([e]); + }); + }), + (i.prototype.setModel = function (t) { + var e = t.equips; + this.roleInnerModel.setOtherData(e, t); + }), + (i.prototype.closeView = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.onOperation = function () { + 0 != this.selectedItem && this.showMenu(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.rankListView && this.rankListView.destroy(), + this.rankRightMenuView && this.rankRightMenuView.destroy(), + (this.dragDropUI = null), + (this.rankListView = null), + (this.rankRightMenuView = null), + this.flipPage && (this.flipPage.removeEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), this.flipPage.destory(), (this.flipPage = null)), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null), + this.menu_group.numElements > 0 && this.menu_group.removeChildren(), + t.lEYZI.Naoc(this.menu_group), + this.rank_list.numElements > 0 && this.rank_list.removeChildren(), + t.lEYZI.Naoc(this.rank_list), + this.roleInnerModel && this.roleInnerModel.destory(), + (this.roleInnerModel = null), + (this.btn_home = this.btn_pre = this.btn_next = null), + (this.btn_operation = null), + t.ckpDj.ins().removeEvent(t.CompEvent.RANK_SHOW_LIST, this.onShowList, this), + this.fEHj(this.btn_operation, this.onOperation), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.CrossServerRankView = e), __reflect(e.prototype, "app.CrossServerRankView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "CrossServerWorshipItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.check, this.onClick), this.vKruVZ(this.worship, this.onClick), (this.roleInnerModel = new t.RoleInnerModel(this.modelGroup)); + }), + (i.prototype.initData = function (e, i, n, s) { + (this.sexjob = e), + (this.configData = n), + (this.imgTitle.source = i), + (this.playName.text = this.configData.name), + (this.callFun = s), + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), this.mc.playFileEff(ZkSzi.RES_DIR_WORSHIP + this.configData.background, -1), this.playEff.addChild(this.mc)); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var t = this.data; + (this.playName.text = t.name), t.otherInfo && (this.roleInnerModel.setOtherData(t.otherInfo.equips, t.otherInfo), this.playEff.removeChildren()); + } + }), + (i.prototype.updateTimes = function (e) { + this.count.text = t.CrmPU.language_Common_61 + e; + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.check: + this.callFun("check", this.sexjob); + break; + case this.worship: + this.callFun("worship", [this.configData.id]); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.check, this.onClick), this.fEHj(this.worship, this.onClick), this.mc && (this.mc.destroy(), (this.mc = null)); + }), + i + ); + })(t.BaseItemRender); + (t.CrossServerWorshipItem = e), __reflect(e.prototype, "app.CrossServerWorshipItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._actID = 36), + (i.lastIdx = 0), + (i.sexjobArr = ["1", "2", "3", "1001", "1002", "1003"]), + (i.itemTitleArr = ["kf_mb_dynz", "kf_mb_dynf", "kf_mb_dynd", "kf_mb_dyvz", "kf_mb_dyvf", "kf_mb_dyvd"]), + (i.skinName = "CrossServerWorshipWinSkin"), + (i.name = "CrossServerWorshipWin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this._actID = e[0]); + for (var n = t.VlaoF.WorshipMainConfig, s = 0; 6 > s; s++) { + if (this.isSingleJob()) { + if (this.isWarrior(s)) { + this["item" + s].x = 0 == s ? 135 : 445; + this["item" + s].y = 150; + } else { + this["item" + s].visible = !1; + continue; + } + } + this["item" + s].initData(this.sexjobArr[s], this.itemTitleArr[s], n[s + 1], this.onClickItem.bind(this)); + } + this.HFTK(t.edHC.ins().post_26_65, this.setPlayTitle), + this.HFTK(t.TQkyOx.ins().postWroshipResult, this.worShipResult), + this.HFTK(t.TQkyOx.ins().post_25_3, this.setRankListData), + this.HFTK(t.TQkyOx.ins().post_25_4, this.setRankListData), + this.HFTK(t.edHC.ins().post_26_46, this.otherPlayerView), + this.vKruVZ(this.closeBtn, this.onClick), + t.edHC.ins().send_26_73(t.RankDetailType.CrossServerMoBaiRankList, 100), + t.TQkyOx.ins().send_25_2(this._actID), + this.setRankListData(); + }), + (i.prototype.isSingleJob = function () { + return 1 == Main.vZzwB.gameMode; + }), + (i.prototype.isWarrior = function (i) { + return i == 0 || i == 3; + }), + (i.prototype.setPlayTitle = function (e) { + if (e && e.type == t.RankDetailType.CrossServerMoBaiRankList) { + var i = e.list; + if (i) + for (var n in i) { + var s = i[n], + a = 0; + s.sexjob > 1e3 ? (a = 3 + ((+s.sexjob % 1e3) - 1)) : (a += s.sexjob - 1); + if (this.isSingleJob() && !this.isWarrior(a)) continue; + this["item" + a].data = s; + } + } + }), + (i.prototype.setRankListData = function () { + var e = t.TQkyOx.ins().getActivityInfo(this._actID); + if (e && e.info && e.info.times >= 0) { + for (var i = 0; 6 > i; i++) { + if (this.isSingleJob() && !this.isWarrior(i)) continue; + this["item" + i].updateTimes(e.info.times); + } + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.onClickItem = function (e, i) { + if ("check" == e) t.edHC.ins().send_26_46(t.RankDetailType.rtMoBaiRankList, i); + else if ("worship" == e) { + var n = this["item" + this.lastIdx]; + n && (n.worship.touchEnabled = !0), t.TQkyOx.ins().send_25_1(this._actID, t.Operate.cWorship, i); + } + }), + (i.prototype.worShipResult = function (e) { + var i = this; + if (e && 0 == e.issure) { + this.lastIdx = e.idx - 1; + var n = this["item" + this.lastIdx]; + (n.worship.touchEnabled = !1), + t.TQkyOx.ins().send_25_2(this._actID), + this.selectMC || (this.selectMC = new t.MovieClip()), + this.selectMC.stop(), + (this.selectMC.visible = !0), + n.playEff.addChild(this.selectMC), + this.selectMC.playFileEff( + ZkSzi.RES_DIR_WORSHIP + "Worship_select", + 1, + function () { + (i.selectMC.visible = !1), (n.worship.touchEnabled = !0); + }, + !1 + ), + t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2)); + } + }), + (i.prototype.otherPlayerView = function (e) { + if (0 != e) { + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(e, t.ubnV.ihUJ ? 1 : 2); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips57); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.selectMC && this.selectMC.destroy(), (this.selectMC = null); + }), + i + ); + })(t.gIRYTi); + (t.CrossServerWorshipWin = e), __reflect(e.prototype, "app.CrossServerWorshipWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.itemId = 302), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.suitBtn, this.onClick); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.suitBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.allGrp.visible = !0), (this.consumeGrp.visible = !1); + var e = t.VlaoF.AppraisalMainConfig[this.data.type]; + if (e) { + var i = e[this.data.id]; + if (i) { + (this.titleName.text = i.title), (this.itemCount.text = i.number[0].count); + var n = t.VlaoF.StdItems[i.number[0].id]; + n && (this.itemIcon.source = n.icon + ""); + var s = t.TQkyOx.ins().getActivityInfo(this.data.type); + if (s && s.info && s.info.item) { + var a = s.info.item[this.data.id - 1]; + if ( + ((this.surplusNum.text = t.CrmPU.language_Common_62 + a.allNum), + 4 == this.data.id && (this.surplusNum.text = t.CrmPU.language_Common_63), + (this.expLabel.text = this.data.tips), + i.gold) + ) { + var r = t.TQkyOx.ins().getActivityConfigById(this.data.type), + o = t.ThgMu.ins().getItemCountById(i.number[0].id), + l = t.ZAJw.MPDpiB(i.gold[0].type); + r && + r.buttoncolor && + ((this.redPoint.visible = o >= i.number[0].count && a.allNum > 0 && l >= i.gold[0].count && 4 != this.data.id && 3 != this.data.id && 2 != this.data.id), + this.redPoint.setRedImg(r.buttoncolor)), + (this.consumeGrp.visible = i.gold[0].count > 0); + var h = t.ZAJw.sztgR(i.gold[0].type); + (this.moneyImg.source = h[1] + ""), (this.moneyNum.text = i.gold[0].count + ""); + var p = t.ZAJw.MPDpiB(i.gold[0].type); + this.moneyNum.textColor = p >= i.gold[0].count ? 16777215 : 15007744; + } + } + } + } + 0 == this.data.idx && (this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), (this.txt_get.visible = !1), t.GetPropsView.getPropsTxt(this.txt_get, this.itemId)); + } else this.allGrp.visible = !1; + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[this.itemId], + i = t.mAYZL.ins().ZzTs(t.CrystalIdentifyWin); + i && + (t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e.itemid, + { + x: i.x, + y: i.y, + }, + { + height: i.height, + width: i.width, + }, + 1e4 + )); + }), + (i.prototype.onClick = function (e) { + var i = t.VlaoF.AppraisalMainConfig[this.data.type], + n = t.NWRFmB.ins().getPayer, + s = t.TQkyOx.ins().getActivityInfo(this.data.type); + switch (e.currentTarget) { + case this.suitBtn: + if (n && n.propSet && i) { + var a = i[this.data.id], + r = n.propSet.getmultipleExp(); + if (4 != this.data.id && s && s.info && s.info.item) { + var o = s.info.item[this.data.id - 1]; + if (0 == o.allNum) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips53); + } + if (a) + if (r < a.mexp) { + var l = t.VlaoF.CircleLevel[+n.propSet.MzYki()]; + if (l && +n.propSet.mBjV() < l.levelblock) { + var h = t.ThgMu.ins().getItemCountById(a.number[0].id); + if (1 != this.data.id) + h >= a.number[0].count ? t.TQkyOx.ins().send_25_1(this.data.type, t.Operate.cAppraisal, [this.data.id]) : (this.onGetProps(), t.uMEZy.ins().IrCm(t.CrmPU.language_Tips54)); + else if (s && s.info && s.info.item) { + var o = s.info.item[this.data.id - 1]; + if (o.useNum >= 5) { + if (a.gold && a.gold[0]) { + var p = t.ZAJw.MPDpiB(a.gold[0].type); + if (h >= a.number[0].count && p >= a.gold[0].count) t.TQkyOx.ins().send_25_1(this.data.type, t.Operate.cAppraisal, [this.data.id]); + else if (h < a.number[0].count) this.onGetProps(), t.uMEZy.ins().IrCm(t.CrmPU.language_Tips54); + else if (p < a.gold[0].count) { + var u = t.ZAJw.sztgR(a.gold[0].type); + u && (this.onGetProps(), t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips58, u[0]))); + } + } + } else h >= a.number[0].count ? t.TQkyOx.ins().send_25_1(this.data.type, t.Operate.cAppraisal, [this.data.id]) : (this.onGetProps(), t.uMEZy.ins().IrCm(t.CrmPU.language_Tips54)); + } + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips55); + } else { + var c = t.CommonUtils.overLength(a.mexp); + t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips56, c)); + } + } + } + }), + i + ); + })(t.BaseItemRender); + (t.CrystalIdentifyItemView = e), __reflect(e.prototype, "app.CrystalIdentifyItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.actID = -1), (i.skinName = "CrystalIdentifyWinSkin"), (i.name = "CrystalIdentifyWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.playList.itemRenderer = t.CrystalIdentifyItemView), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System54); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.TQkyOx.ins().postCrytaldentifyResult, this.appResult), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateList), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateList), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateList), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateList), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateList), + e[0] && (this.actID = e[0]), + this.updateList(); + }), + (i.prototype.updateList = function () { + if (-1 != this.actID) { + var e = t.TQkyOx.ins().getActivitConf(this.actID); + if (e) { + var i = t.VlaoF["Activity" + e.ActivityType + "Config"]; + if (i) { + var n = i[this.actID]; + if (n) { + var s = [], + a = t.VlaoF.AppraisalMainConfig[n.type], + r = 0; + for (var o in a) { + var l = a[o]; + t.mAYZL.ins().isCheckOpen(l.serveropenday) + ? s.push({ + type: n.type, + id: l.id, + idx: r, + tips: l.tips, + }) + : s.push(null), + r++; + } + this.playList.dataProvider = new eui.ArrayCollection(s); + } + } + } + } + }), + (i.prototype.appResult = function (e) { + e && 0 == e.issure ? (t.TQkyOx.ins().send_25_2(this.actID), t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2))) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips52); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.Nzfh.ins().post_gaimItemView(1e4), this.dragDropUI.destroy(), (this.dragDropUI = null), (this.playList = null); + }), + i + ); + })(t.gIRYTi); + (t.CrystalIdentifyWin = e), __reflect(e.prototype, "app.CrystalIdentifyWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.getBtn, this.onClick); + }), + (i.prototype.dataChanged = function () { + var e = this.data, + i = t.edHC.ins().cumulativeOnlineData; + (this.ItemData.data = e.reward[0]), + (this.txtDesc.text = e.LimitTxt), + (this.txtDesc.textColor = 15655172), + (this.getBtn.filters = null), + (this.descGrp.filters = null), + (this.getBtn.touchEnabled = !1), + (this.getBtn.visible = !0), + (this.txtTimer.visible = !0), + (this.receiveImg.visible = !1), + (this.redPoint.visible = !1), + (this.imgBar.visible = !0), + 1 == t.MathUtils.getValueAtBit(i.received, e.id) + ? ((this.descGrp.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.getBtn.visible = !1), + (this.txtTimer.visible = !1), + (this.receiveImg.visible = !0), + (this.imgBar.visible = !1), + this.effMc && (this.effMc.destroy(), (this.effMc = null))) + : t.edHC.ins().getRedCumulativeOnlineById(e.id) > 0 + ? ((this.getBtn.label = t.CrmPU.language_Wlelfare_Text2), + (this.getBtn.touchEnabled = !0), + (this.txtDesc.textColor = 2682369), + (this.imgBar.source = "lj_jdt3"), + (this.redPoint.visible = !0), + this.effMc || ((this.effMc = t.ObjectPool.pop("app.MovieClip")), (this.effMc.touchEnabled = !1), this.effGrp.addChild(this.effMc)), + this.effMc.isPlaying || this.effMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_ljjl", -1, null, !1)) + : ((this.getBtn.label = t.CrmPU.language_Common_226), + (this.getBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.imgBar.source = "lj_jdt4"), + this.effMc && (this.effMc.destroy(), (this.effMc = null))); + var n = i.time + Math.floor((egret.getTimer() - i.time2) / 1e3); + (this.countdownTime = e.onlineTimes - n), + this.countdownTime > 0 + ? (this.updateCountdownTime(), t.KHNO.ins().remove(this.updateCountdownTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this)) + : (this.txtTimer.text = t.CrmPU.language_Common_227); + }), + (i.prototype.updateCountdownTime = function () { + (this.txtTimer.text = t.CrmPU.language_Common_104 + t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_12)), + this.countdownTime <= 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), (this.txtTimer.text = t.CrmPU.language_Common_227)), + this.countdownTime--; + }), + (i.prototype.onClick = function (e) { + t.edHC.ins().send_26_71(this.data.type, this.data.id); + }), + (i.prototype.getCurrTimeId = function () { + var e = 0, + i = t.edHC.ins().cumulativeOnlineData, + n = i.time + Math.floor((egret.getTimer() - i.time2) / 1e3), + s = t.VlaoF.OnlineTimeRewardConfig[1]; + for (var a in s) { + if (n < s[a].onlineTimes && n >= e) return a; + e = s[a].onlineTimes; + } + return 0; + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onClick), t.KHNO.ins().remove(this.updateCountdownTime, this), this.effMc && (this.effMc.destroy(), (this.effMc = null)); + }), + i + ); + })(t.BaseItemRender); + (t.CumulativeOnlineItem = e), __reflect(e.prototype, "app.CumulativeOnlineItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.getBtn, this.onClick); + }), + (i.prototype.dataChanged = function () { + var e = this.data, + i = t.edHC.ins().cumulativeOnlineData; + (this.ItemData.data = e.reward[0]), + (this.receiveImg.visible = t.MathUtils.getValueAtBit(i.received, e.id) > 0), + (this.redPoint.visible = t.edHC.ins().getRedCumulativeOnlineById(e.id) > 0), + (this.getBtn.filters = null), + (this.getBtn.touchEnabled = !1), + 1 == t.MathUtils.getValueAtBit(i.received, e.id) + ? ((this.getBtn.label = t.CrmPU.language_Wlelfare_Text7), (this.getBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), this.effMc && (this.effMc.destroy(), (this.effMc = null))) + : t.edHC.ins().getRedCumulativeOnlineById(e.id) > 0 + ? ((this.getBtn.label = t.CrmPU.language_Wlelfare_Text2), + (this.getBtn.touchEnabled = !0), + this.effMc || ((this.effMc = t.ObjectPool.pop("app.MovieClip")), (this.effMc.touchEnabled = !1), this.effGrp.addChild(this.effMc)), + this.effMc.isPlaying || this.effMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_ljjl", -1, null, !1)) + : ((this.getBtn.label = e.LimitTxt), (this.getBtn.filters = t.FilterUtil.ARRAY_GRAY_FILTER), this.effMc && (this.effMc.destroy(), (this.effMc = null))); + }), + (i.prototype.onClick = function (e) { + t.edHC.ins().send_26_71(this.data.type, this.data.id); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.getBtn, this.onClick), this.effMc && (this.effMc.destroy(), (this.effMc = null)); + }), + i + ); + })(t.BaseItemRender); + (t.CumulativeOnlineItem2 = e), __reflect(e.prototype, "app.CumulativeOnlineItem2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.itemWidth = 140), + (i.currBarStart = 0), + (i.currBarWidth = 0), + (i.currTimerStart = 0), + (i.currTimerEnd = 0), + (i.cumulTime = 0), + (i.skinName = "CumulativeOnlineViewSkin"), + (i.name = "CumulativeOnlineView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.bar.mask = this.barMask; + var n = t.VlaoF.OnlineTimeRewardConfig, + s = n[1]; + this.award1 = []; + for (var a in s) this.award1.push(s[a]); + (this.listArr1 = new eui.ArrayCollection()), (this.list.dataProvider = this.listArr1); + var r = n[2]; + this.award2 = []; + for (var a in r) this.award2.push(r[a]); + (this.listArr2 = new eui.ArrayCollection()), + (this.list2.dataProvider = this.listArr2), + (this.list.itemRenderer = t.CumulativeOnlineItem), + (this.list2.itemRenderer = t.CumulativeOnlineItem2), + this.HFTK(t.edHC.ins().post_26_85, this.updateInfo), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.leftBtn, this.onClick), + this.vKruVZ(this.rightBtn, this.onClick), + t.edHC.ins().send_26_70(), + this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + var e = t.edHC.ins().cumulativeOnlineData, + i = t.VlaoF.OnlineTimeRewardConfig; + for (var n in i[1]) { + var s = i[1][n].id; + if (0 == t.MathUtils.getValueAtBit(e.received, s)) { + this.updateListPos((parseInt(s) - 1) * this.itemWidth); + break; + } + } + this.listArr1.replaceAll(this.award1), + this.listArr2.replaceAll(this.award2), + (this.barBg.width = this.list.width), + (this.bar.width = this.barBg.width - 4), + (this.cumulTime = e.time + Math.floor((egret.getTimer() - e.time2) / 1e3)), + this.updateCurrIndex(), + this.updateCumulTime(), + t.KHNO.ins().remove(this.updateCumulTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateCumulTime, this); + }), + (i.prototype.updateCumulTime = function () { + var e = t.DateUtils.getFormatBySecond(this.cumulTime, t.DateUtils.TIME_FORMAT_9); + (this.timeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_222, e))), this.updateBar(), this.cumulTime++; + }), + (i.prototype.updateListPos = function (t) { + (t = Math.max(Math.min(t, this.list.width - this.itemScroller.width), 0)), + egret.Tween.removeTweens(this.itemScroller.viewport), + egret.Tween.get(this.itemScroller.viewport).to( + { + scrollH: t, + }, + 200 + ); + }), + (i.prototype.updateBar = function () { + var t = 0; + this.cumulTime < this.currTimerEnd + ? (t = this.currBarStart + ((this.cumulTime - this.currTimerStart) / (this.currTimerEnd - this.currTimerStart)) * this.currBarWidth) + : ((t = this.currBarStart + this.currBarWidth), this.updateCurrIndex()), + (this.barMask.width = t); + }), + (i.prototype.updateCurrIndex = function () { + var t = this.getCurrTimeData(); + (this.currTimerStart = t.startTime), + (this.currTimerEnd = t.endTime), + this.cumulTime > this.currTimerEnd + ? ((this.currBarStart = this.barBg.width), (this.currBarWidth = 0)) + : 1 == t.id + ? ((this.currBarStart = 0), (this.currBarWidth = this.itemWidth / 2)) + : ((this.currBarStart = (t.id - 2) * this.itemWidth + this.itemWidth / 2), (this.currBarWidth = this.itemWidth)), + (this.imgArrow.x = (t.id - 1) * this.itemWidth), + this.listArr1.replaceAll(this.award1); + }), + (i.prototype.onClick = function (e) { + var i; + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.leftBtn: + (i = this.itemScroller.viewport.scrollH), (i = Math.round(i / this.itemWidth - 1) * this.itemWidth), this.updateListPos(i); + break; + case this.rightBtn: + (i = this.itemScroller.viewport.scrollH), (i = Math.round(i / this.itemWidth + 1) * this.itemWidth), this.updateListPos(i); + } + }), + (i.prototype.getCurrTimeData = function () { + var e, + i = 0, + n = t.VlaoF.OnlineTimeRewardConfig[1]; + for (e in n) { + if (this.cumulTime < n[e].onlineTimes && this.cumulTime >= i) + return { + id: parseInt(e), + startTime: i, + endTime: n[e].onlineTimes, + }; + i = n[e].onlineTimes; + } + return { + id: parseInt(e), + startTime: i, + endTime: i, + }; + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), t.KHNO.ins().remove(this.updateCumulTime, this); + }), + i + ); + })(t.gIRYTi); + (t.CumulativeOnlineView = e), __reflect(e.prototype, "app.CumulativeOnlineView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.oldExpLowValue = -1), + (i.oldExpHighValue = -1), + (i.newExpLowValue = -1), + (i.newExpHighValue = -1), + (i._recordObj = {}), + (i._phoneSkillTipsIsShow = !1), + (i.isOpenIDCard = !1), + (i.callObject = {}), + (i._microReceive = -1), + (i.sysId = t.jDIWJt.Default), + i.YrTisc(3, i.post_g_0_3), + i.YrTisc(4, i.post_g_0_4), + i.YrTisc(5, i.post_g_0_5), + i.YrTisc(6, i.post_g_0_6), + i.YrTisc(7, i.g_0_7), + i.YrTisc(8, i.g_0_8), + i.YrTisc(9, i.g_0_9), + i.YrTisc(10, i.post_g_0_10), + i.YrTisc(13, i.post_g_0_13), + i.YrTisc(14, i.g_0_14), + i.YrTisc(15, i.g_0_15), + i.YrTisc(18, i.g_0_18), + i.YrTisc(19, i.g_0_19), + i.YrTisc(20, i.g_0_20), + i.YrTisc(24, i.g_0_24), + i.YrTisc(25, i.g_0_25), + i.YrTisc(26, i.g_0_26), + i.YrTisc(27, i.g_0_27), + i.YrTisc(28, i.g_0_28), + i.YrTisc(30, i.g_0_30), + i.YrTisc(32, i.g_0_32), + i.YrTisc(35, i.post_g_0_35), + i.YrTisc(40, i.g_0_40), + i.YrTisc(41, i.post_g_0_41), + i.YrTisc(53, i.g_0_53), + i.YrTisc(54, i.g_0_54), + i.YrTisc(55, i.g_0_55), + i.YrTisc(66, i.g_0_66), + i.YrTisc(67, i.g_0_67), + i.YrTisc(68, i.g_0_68), + i.YrTisc(69, i.g_0_69), + i.YrTisc(70, i.post_0_70), + i.YrTisc(71, i.post_s_0_71), + i.YrTisc(72, i.post_0_72), + i.YrTisc(73, i.post_0_73), + i.YrTisc(74, i.post_0_74), + i.YrTisc(75, i.post_0_75), + i.YrTisc(251, i.g_0_251), + i.YrTisc(252, i.g_0_252), + i.YrTisc(253, i.post_g_0_253), + i.YrTisc(254, i.g_0_254), + i + ); + } + return ( + __extends(i, e), + (i.prototype.clearRecordObj = function () { + t.ObjectPool.wipe(this._recordObj); + }), + (i.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(i.prototype, "phoneSkillTipsIsShow", { + get: function () { + return this._phoneSkillTipsIsShow; + }, + set: function (t) { + this._phoneSkillTipsIsShow = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_phoneSkillTips = function () {}), + (i.prototype.postMoneyChange = function () {}), + (i.prototype.postPlayerCreate = function () {}), + (i.prototype.postPlayerChange = function () {}), + (i.prototype.postUpdateTarget = function (t) { + return t; + }), + (i.prototype.postUpdateState = function (t, e) { + return [t, e]; + }), + (i.prototype.s_0_1 = function (e, i, n) { + void 0 === n && (n = 0); + var s = this.MxGiq(1); + s.writeUnsignedInt(e), s.writeUnsignedInt(i), (t.MiOx.roleId = i), (t.BuffMgr.ins().isAddSavior = !0), s.writeInt(n), this.evKig(s), (s = null), (this.callObject = {}); + }), + (i.prototype.s_0_2 = function () { + var t = this.MxGiq(2); + t.writeUnsignedInt(Math.floor(egret.getTimer() / 1e3)), this.evKig(t), (t = null); + }), + (i.prototype.s_0_24 = function (t) { + var e = this.MxGiq(24); + e.writeByte(t), this.evKig(e), (e = null); + }), + (i.prototype.s_0_25_YY = function (t) { + var e = this.MxGiq(25); + e.writeByte(t), this.evKig(e), (e = null); + }), + Object.defineProperty(i.prototype, "gamescene", { + get: function () { + return t.mAYZL.ins().ZzTs(t.GameSceneView); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "zhuanZhiCD", { + get: function () { + return this._zhuanZhiCD; + }, + set: function (t) { + this._zhuanZhiCD = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_g_0_3 = function (e) { + this.clearRecordObj(), RES.setMaxLoadingThread(8), Main.remLogin(), t.SceneManager.ins().runScene(t.MainScene); + var n = e.readNumber(); + e.readShort(); + for (var s = t.ObjectPool.pop("app.PropertySet"), a = 0; a < t.nRDo.numProperties; a++) s.readProperty(a, e); + var r = e.readString(), + o = r.split("\\"), + l = o[0]; + s.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + o.length > 1 && "" != o[1] && (o[2] && "" != o[2] ? s.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + o[1] + ">(" + o[2] + ")") : s.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + o[1] + ">")), + s.setProperty(t.nRDo.ACTOR_NAME, l), + s.setProperty(t.nRDo.ACTOR_RACE, t.ActorRace.Human); + var h = e.readUnsignedInt(); + h ? (this.zhuanZhiCD = Math.floor(t.GlobalFunc.formatMiniDateTime(h) / 1e3)) : (this.zhuanZhiCD = 0), + t.NWRFmB.ins().yNovAn(n, l, s), + FzTZ.reporting(t.ReportDataEnum.LOGIN_SUCCESS, {}, null, !1), + Main.vZzwB.loginType && + KdbLz.qOtrbE.vDCH && + Main.Native_adJustData({ + type: 1, + }), + Main.remLogin(); + if (s.mBjV() < 2) { + var p = t.VlaoF.editionConf.StartView; + p && p.view ? "" != p.view && t.mAYZL.ins().open(p.view, p.param) : t.mAYZL.ins().open(t.WelcomeView); + } else if (!KdbLz.qOtrbE.iFbP) { + } + if (Main.vZzwB.userInfo) { + if (!this.isOpenIDCard && Main.vZzwB.userInfo.hasOwnProperty("fm")) { + var u = parseInt(Main.vZzwB.userInfo.fm + ""); + !u && s.mBjV() >= 7 && ((this.isOpenIDCard = !0), t.mAYZL.ins().open(t.MainIDCard)), this.s_0_24(u); + } + 10001 == Main.vZzwB.pfID && Main.vZzwB.userInfo.hasOwnProperty("client") && this.s_0_25_YY(parseInt(Main.vZzwB.userInfo.client + "")); + if (Main.vZzwB.userInfo.hasOwnProperty("cm")) { + var c = parseInt(Main.vZzwB.userInfo.cm + ""); + 0 == c && t.mAYZL.ins().open(t.MainAntiAddictionView); + } + } + (n = null), (o = null), (l = null), (r = null), (s = null), i.ins().postPlayerCreate(), i.ins().postPlayerChange(); + }), + (i.prototype.showCrossServerView = function (e) { + var i = t.VlaoF.ActivityAutoConfig[e]; + if (i && (i.openview && 0 == t.GameMap.fubenID && ("app.CrossServerWin" == i.openview ? t.mAYZL.ins().open(i.openview, i.actId) : t.mAYZL.ins().open(i.openview)), i.actId)) { + var n = t.TQkyOx.ins().getActivityInfo(i.actId); + n && 0 == t.GameMap.fubenID && t.TQkyOx.ins().enterActivity(i.actId); + } + }), + (i.prototype.g_0_67 = function (e) { + var i = e.readUnsignedByte(), + n = e.readNumber(), + s = t.NWRFmB.ins().getCharRole(n); + s && t.NWRFmB.ins().removeCharRole(s); + var a = e.readString().split("\\"), + r = a[0], + o = t.ObjectPool.pop("app.PropertySet"); + o.setProperty(t.nRDo.ACTOR_NAME, r), + o.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + o.setProperty(t.nRDo.AP_X, e.readShort()), + o.setProperty(t.nRDo.AP_Y, e.readShort()), + o.setProperty(t.nRDo.ACTOR_RACE, i), + o.setProperty(t.nRDo.AP_BODY_ID, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_DIR, e.readByte()), + o.setProperty(t.nRDo.AP_LEVEL, e.readUnsignedShort()), + o.setProperty(t.nRDo.AP_HP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MAX_HP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MAX_MP, e.readUnsignedInt()), + e.readShort(), + e.readUnsignedShort(), + o.setProperty(t.nRDo.AP_STATE, e.readUnsignedInt()), + e.readUnsignedInt(), + o.setProperty(t.nRDo.AP_ACTOR_ID, e.readUnsignedShort()), + o.setProperty(t.nRDo.MONSTER_LIVETIMEOUT, e.readUnsignedInt()); + for (var l, h = t.NWRFmB.ins().addCharMonster(n, r, o), p = e.readUnsignedByte(), u = 0; p > u; u++) (l = t.ObjectPool.pop("app.CharStatus")), l.read(e), h.initBuff(l); + e.readByte(); + o.setProperty(t.nRDo.PROP_MONSTER_ASCRIPTIONID, e.readUnsignedInt()), this.post_g_0_67(n), (h = null), (p = null), (l = null); + }), + (i.prototype.post_g_0_67 = function (t) { + return t; + }), + (i.prototype.g_0_68 = function (e) { + var i = e.readUnsignedByte(), + n = e.readNumber(), + s = t.NWRFmB.ins().getCharRole(n); + s && t.NWRFmB.ins().removeCharRole(s); + var a = e.readString().split("\\"), + r = a[0], + o = t.ObjectPool.pop("app.PropertySet"); + o.setProperty(t.nRDo.ACTOR_NAME, r), + a.length > 1 && o.setProperty(t.nRDo.ACTOR_HANDLER_NAME, a[1]), + o.setProperty(t.nRDo.AP_X, e.readShort()), + o.setProperty(t.nRDo.AP_Y, e.readShort()), + o.setProperty(t.nRDo.ACTOR_RACE, i), + o.setProperty(t.nRDo.AP_BODY_ID, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_DIR, e.readByte()), + o.setProperty(t.nRDo.AP_LEVEL, e.readUnsignedByte()), + o.setProperty(t.nRDo.AP_HP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MAX_HP, e.readUnsignedInt()), + o.setProperty(t.nRDo.AP_MAX_MP, e.readUnsignedInt()), + e.readShort(), + e.readUnsignedShort(), + o.setProperty(t.nRDo.AP_STATE, e.readUnsignedInt()), + e.readUnsignedInt(), + o.setProperty(t.nRDo.ACTOR_HANDLER, e.readNumber()), + o.setProperty(t.nRDo.AP_ACTOR_ID, e.readUnsignedShort()); + for (var l, h = t.NWRFmB.ins().addCharMonster(n, r, o), p = e.readUnsignedByte(), u = 0; p > u; u++) (l = t.ObjectPool.pop("app.CharStatus")), l.read(e), h.initBuff(l); + (i = null), (n = null), (s = null), (a = null), (r = null), (o = null), (h = null), (p = null); + }), + (i.prototype.g_0_69 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharNpc(i); + n && (n.destroy(), t.NWRFmB.ins().delCharNpc(i)); + var s = e.readString().split("\\"), + a = s[0], + r = t.ObjectPool.pop("app.PropertySet"); + r.setProperty(t.nRDo.ACTOR_NAME, a), + r.setProperty(t.nRDo.AP_ACTOR_ID, e.readUnsignedShort()), + r.setProperty(t.nRDo.AP_X, e.readShort()), + r.setProperty(t.nRDo.AP_Y, e.readShort()), + r.setProperty(t.nRDo.ACTOR_RACE, 2), + r.setProperty(t.nRDo.AP_BODY_ID, e.readUnsignedInt()), + r.setProperty(t.nRDo.AP_DIR, e.readByte()), + t.NWRFmB.ins().addCharNpc(i, a, r), + (i = null), + (n = null), + (s = null), + (a = null), + (r = null); + }), + (i.prototype.post_0_70 = function (e) { + var i, + n = e.readByte(), + s = e.readInt(), + a = t.CrmPU.language_System25[n - 1], + r = ""; + if (a) + if (1 == n || 2 == n) { + if (s > 0) r = "|C:0xe5ddcf&T:获得:||C:0x28ee01&T:" + a + "*" + s + "|"; + else { + var o = Math.abs(s); + r = "|C:0xe50000&T:消耗:||C:0x28ee01&T:" + a + "*" + o + "|"; + } + s > 0 && ((i = a + "+" + s), t.ChatModel.ins().setPersonalData(i)), t.uMEZy.ins().showJingYanTips(r); + } else + (r = s > 0 ? "|C:0xFAD264&T:" + a + " +" + s + "|" : "|C:0xCF15E1&T:" + a + " " + s + "|"), + s > 0 && ((i = a + "+" + s), t.ChatModel.ins().setPersonalData(i)), + t.uMEZy.ins().showMoneyTips(r); + (n = null), (s = null), (a = null), (r = null); + }), + (i.prototype.post_g_0_4 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && t.NWRFmB.ins().removeCharRole(n); + var s = t.NWRFmB.ins().getCharRole(i), + a = e.readString(), + r = a.split("\\"), + o = r[0], + l = t.ObjectPool.pop("app.PropertySet"); + l.setProperty(t.nRDo.ACTOR_RACE, t.ActorRace.Human), + l.setProperty(t.nRDo.ACTOR_NAME, o), + l.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + r.length > 1 && "" != r[1] && (r[2] && "" != r[2] ? l.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + r[1] + ">(" + r[2] + ")") : l.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + r[1] + ">")), + l.setProperty(t.nRDo.AP_X, e.readShort()), + l.setProperty(t.nRDo.AP_Y, e.readShort()), + l.setProperty(t.nRDo.AP_BODY_ID, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_HP, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_MP, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_MAX_HP, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_MAX_MP, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_MOVE_SPEED, e.readUnsignedShort()), + l.setProperty(t.nRDo.AP_SEX, e.readByte()), + l.setProperty(t.nRDo.AP_JOB, e.readByte()), + l.setProperty(t.nRDo.AP_LEVEL, e.readUnsignedShort()), + l.setProperty(t.nRDo.AP_ACTOR_CIRCLE, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_WEAPON, e.readUnsignedShort()), + l.setProperty(t.nRDo.ACTOR_WEAPON_DISPLAY, e.readUnsignedShort()), + l.setProperty(t.nRDo.BODY_SUIT, e.readInt()), + l.setProperty(t.nRDo.AP_SOCIAL_MASK, e.readInt()), + l.setProperty(t.nRDo.AP_FACE_ID, e.readShort()), + l.setProperty(t.nRDo.AP_ATTACK_SPEED, e.readUnsignedShort()), + l.setProperty(t.nRDo.AP_DIR, e.readByte()), + l.setProperty(t.nRDo.AP_STATE, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_VIP_TYPE, e.readInt()), + l.setProperty(t.nRDo.AP_TEAM_ID, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_ZY_ID, e.readByte()), + l.setProperty(t.nRDo.AP_ACTOR_HEAD_TITLE, e.readUnsignedInt()), + l.setProperty(t.nRDo.ACTOR_NAME_COLOR, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_ACTOR_VIP_GRADE, e.readInt()), + l.setProperty(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE, e.readUnsignedShort()), + l.setProperty(t.nRDo.ACTOR_FASHION_DISPLAY, e.readUnsignedShort()), + l.setProperty(t.nRDo.PROP_ACTOR_WEAPON_ID, e.readShort()), + l.setProperty(t.nRDo.AP_GUILD_ID, e.readUnsignedInt()), + l.setProperty(t.nRDo.PROP_ACTOR_MONSTER_BODY, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_EXPLOIT_VALUE, e.readUnsignedInt()), + l.setProperty(t.nRDo.ACK_SKILLID, e.readUnsignedShort()), + l.setProperty(t.nRDo.ACK_SKILLLEVEL, e.readUnsignedShort()), + l.setProperty(t.nRDo.AP_MALICE_STATE, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_PK_VALUE, e.readUnsignedInt()); + for (var h, p = e.readUnsignedByte(), u = [], c = 0; p > c; c++) (h = t.ObjectPool.pop("app.CharStatus")), h.read(e), u.push(h); + l.setProperty(t.nRDo.AP_ACTOR_ID, e.readUnsignedInt()), + l.setProperty(t.nRDo.PROP_AREASTATE1, e.readUnsignedInt()), + l.setProperty(t.nRDo.PROP_AREASTATE2, e.readUnsignedInt()), + l.setProperty(t.nRDo.ACK_RATE, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_ACTOR_VIP_POINT, e.readUnsignedInt()), + l.setProperty(t.nRDo.OFFICIAL_POSITION, e.readUnsignedInt()), + l.setProperty(t.nRDo.AP_PICKUPPET, e.readInt()), + l.setProperty(t.nRDo.PROP_ACTOR_CURCUSTOMTITLE, e.readUnsignedInt()), + t.ubnV.ihUJ || t.ChatMgr.ins().setChatPrivatePlayerListData(o); + for (var g = t.NWRFmB.ins().addCharRole(i, o, l), c = 0; c < u.length; c++) g.initBuff(u[c]); + (u = null), (i = null), (n = null), (s = null), (r = null), (o = null), (l = null), (g = null), (p = null), (h = null); + }), + (i.prototype.post_g_0_5 = function (e) { + var n = e.readNumber(), + s = t.NWRFmB.ins().getPayer; + n == t.qTVCL.ins().ackRecog && t.qTVCL.ins().addBlackRecog(n), + s.lockTarget == n && (i.ins().postUpdateTarget(0), t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122))), + this.post_remDot(n), + t.NWRFmB.ins().delGridChar(n), + s.remPet(n), + (s = null), + t.EhSWiR.ClearChar(n); + var a = t.NWRFmB.ins().getCharRole(n); + if (a) return t.NWRFmB.ins().removeCharRole(a), (a = null), n; + var r = t.NWRFmB.ins().getCharNpc(n); + if (r) return r.destroy(), t.NWRFmB.ins().delCharNpc(n), (r = null), n; + var o = t.NWRFmB.ins().getEntitySp(n); + return o ? (o.destroy(), t.NWRFmB.ins().delEntitySp(n), (o = null), n) : void 0; + }), + (i.prototype.post_g_0_6 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = t.ObjectPool.pop("app.PropertySet"); + s.readMultiProperty(e.readUnsignedByte(), e); + s.getPropValueObj(); + n.changePropertys(s), t.ObjectPool.push(s), (s = null); + } + return i; + }), + (i.prototype.g_0_7 = function (e) { + var i = t.ObjectPool.pop("app.PropertySet"); + i.readMultiProperty(e.readUnsignedByte(), e); + var n = t.NWRFmB.ins().getPayer; + if (n && n.propSet) { + var s = i.getPropValueObj(); + for (var a in s) { + this.showPlayerAttr(+a, s[a]); + var r = +a; + r == t.nRDo.AP_PK_MODE + ? t.ckpDj.ins().sendEvent(t.CommonEvent.PLAYER_PK_MODE, [s[r]]) + : r == t.nRDo.AP_LEVEL + ? t.TKZUv.ins().setMyRoleInfoLevel(s[r]) + : r == t.nRDo.AP_ACTOR_CIRCLE && t.TKZUv.ins().setMyRoleInfoZsLevel(s[r]); + } + var o = n.propSet.mBjV(); + t.NWRFmB.ins().getPayer.changeRoleProperty(i), + s[t.nRDo.AP_LEVEL] && + (this.post_updateLevel(), + FzTZ.reporting( + t.ReportDataEnum.UPDATE_LEVEL, + { + prelevel: o, + }, + null + )), + s[t.nRDo.AP_ACTOR_CIRCLE] && this.post_updateZsLevel(), + s[t.nRDo.AP_ACTOR_HEAD_TITLE] && this.post_updateTitle(), + s[t.nRDo.PROP_ACTOR_CURCUSTOMTITLE] && this.post_updateTitle2(), + t.ObjectPool.push(i), + (2 == Object.keys(s).length && s[t.nRDo.ACK_SKILLID]) || t.KHNO.ins().RTXtZF(this.post_g_0_7, this) || t.KHNO.ins().tBiJo(500, 1, this.post_g_0_7, this), + (i = null), + (s = null); + } + }), + (i.prototype.post_g_0_7 = function () { + t.KHNO.ins().remove(this.post_g_0_7, this); + }), + (i.prototype.post_updateTitle = function () {}), + (i.prototype.post_updateTitle2 = function () {}), + (i.prototype.post_updateLevel = function () {}), + (i.prototype.post_updateZsLevel = function () {}), + (i.prototype.g_0_9 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(), + a = e.readShort(), + r = e.readUnsignedByte(); + n.postActionMessage(t.Qmuk.SAM_WALK, s, a, r); + } + (i = null), (n = null); + }), + (i.prototype.post_g_0_10 = function (t) { + this.s_0_2(); + }), + (i.prototype.g_0_14 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(), + a = e.readShort(); + e.readUnsignedByte(); + n.postCharMessage(t.Qmuk.SAM_REUSE, s, a, 0); + var r = e.readUnsignedInt(), + o = e.readUnsignedInt(); + r == t.TranslateDefine.TRANSLATE_MOVIE && + o && + t.SkillEffPlayer.PlayHitEff( + o, + { + x: s, + y: a, + }, + 0 + ); + } + (i = null), (n = null), t.KHNO.ins().tBiJo(100, 10, this.YFOmNj, this); + }), + (i.prototype.g_0_15 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(), + a = e.readShort(); + n.postActionMessage(t.Qmuk.SAM_RUN, s, a, e.readUnsignedByte()); + } + (i = null), (n = null); + }), + (i.prototype.g_0_18 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(); + if (54 == s) return; + var a = e.readUnsignedByte(), + r = e.readUnsignedByte(), + o = e.readNumber(), + l = e.readShort(), + h = e.readShort(); + if (n.isMy) n.hitRecog = o; + else { + var p = t.VlaoF.SkillsLevelConf[s]; + if ((p && (p = t.VlaoF.SkillsLevelConf[s][a]), p)) { + var u = { + skill: p, + skillId: s, + actorRecog: i, + hitRecog: o, + targetX: l, + targetY: h, + dir: r, + }; + n.postActionMessage(t.Qmuk.SAM_SPELL, 0, 0, r, u); + } + } + (a = null), (r = null), (o = null), (l = null), (h = null); + } + (i = null), (n = null); + }), + (i.prototype.g_0_32 = function (e) { + var i = e.readNumber(), + n = e.readUnsignedShort(), + s = e.readUnsignedShort(), + a = e.readUnsignedShort(), + r = t.XwoNAr.CloseEff(), + o = t.NWRFmB.ins().getPayer; + (r && i != o.recog) || + t.SkillEffPlayer.PlayHitEff( + n, + { + x: s, + y: a, + }, + 0 + ), + (i = null), + (n = null), + (s = null), + (a = null); + }), + (i.prototype.g_0_19 = function (e) { + var i = e.readNumber(), + n = e.readNumber(), + s = e.readUnsignedShort(), + a = e.readUnsignedInt(), + r = t.NWRFmB.ins().getCharRole(n), + o = t.XwoNAr.CloseEff(), + l = t.NWRFmB.ins().getPayer; + r && + ((o && i != l.recog) || + (a > 0 && + (113 == s + ? this.postEntityCriticalHit(9, r.x, r.y, "-" + a) + : 121 == s + ? this.postEntityCriticalHit(12, r.x, r.y, "-" + a + "z") + : 125 == s && this.postEntityCriticalHit(11, r.x, r.y, "-" + a + "z")), + t.SkillEffPlayer.PlayHitEff( + s, + { + x: r.currentX, + y: r.currentY, + }, + 0 + ))), + (i = null), + (n = null), + (s = null), + (r = null); + }), + (i.prototype.g_0_8 = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = e.readUnsignedShort(), + s = e.readUnsignedShort(); + t.NWRFmB.ins().getPayer.refuseNextAction(), i.syncSetCurrentXY(n, s), i.correctAI(), (i = null), (n = null), (s = null); + }), + (i.prototype.clearMap = function () { + t.KHNO.ins().removeAll(t.GameMap), t.NWRFmB.ins().dCGQ(), this.gamescene && this.gamescene.map && (this.gamescene.map.clearAllLayer(), this.gamescene.map.changeMap()); + }), + (i.prototype.post_g_0_13 = function (e) { + i.ins().postUpdateTarget(0), t.GameMap.parser(e), t.KHNO.ins().removeAll(t.GameMap), t.NWRFmB.ins().dCGQ(), this.gamescene.map.clearAllLayer(), this.gamescene.map.changeMap(); + var n = e.readInt(), + s = e.readInt(), + a = e.readInt(); + n == t.TranslateDefine.TRANSLATE_MOVIE && s && t.NWRFmB.ins().addAppearEff(t.NWRFmB.ins().getPayer.recog, s), t.NWRFmB.ins().NWmXYp(t.GameMap.mapX, t.GameMap.mapY); + var r = t.VlaoF.StaticFubens[t.GameMap.fubenID]; + if ( + (r && (r.onHook && (t.qTVCL.ins().edcwsp(), console.log("Nzfh:跳转地图开启挂机")), (t.GameMap.delayOnHook = r.delayOnHook)), + this.previous != t.GameMap.mapID && (t.ckpDj.ins().sendEvent(t.CompEvent.Clear_Timer_Event), t.PKRX.ins().post_clearNpcTime()), + 164 != t.GameMap.mapID && 108 != t.GameMap.mapID && t.PKRX.ins().post_clearDuoBaoTime(), + !t.ubnV.ihUJ || (3 != t.GameMap.mapID && 47 != t.GameMap.mapID && 98 != t.GameMap.mapID)) + ) + t.ubnV.ihUJ && + t.GameMap.fubenID <= 0 && + (t.mAYZL.ins().ZbzdY(t.FuBenView) && t.mAYZL.ins().close(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) || KdbLz.qOtrbE.iFbP || t.mAYZL.ins().open(t.MainTaskWin)); + else { + var o = t.TQkyOx.ins().getActivityInfo(26); + o && o.redDot && (t.mAYZL.ins().ZbzdY(t.FuBenView) || t.mAYZL.ins().open(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) && t.mAYZL.ins().close(t.MainTaskWin)); + } + 317 == t.GameMap.mapID + ? t.mAYZL.ins().ZbzdY(t.DimensionBossRoleInfo) || t.mAYZL.ins().open(t.DimensionBossRoleInfo) + : t.mAYZL.ins().ZbzdY(t.DimensionBossRoleInfo) && t.mAYZL.ins().close(t.DimensionBossRoleInfo), + t.ubnV.ihUJ && 346 == t.GameMap.mapID + ? t.mAYZL.ins().ZbzdY(t.SecretLandTreasureView) || t.mAYZL.ins().open(t.SecretLandTreasureView) + : t.mAYZL.ins().ZbzdY(t.SecretLandTreasureView) && t.mAYZL.ins().close(t.SecretLandTreasureView), + t.mAYZL.ins().ZbzdY(t.MagicBossInfoShowView2) || t.mAYZL.ins().open(t.MagicBossInfoShowView2), + (this.previous = t.GameMap.mapID), + (n = null), + (s = null), + (a = null), + (r = null), + this.YFOmNj(), + this.post_ClearAllAckList(), + t.KHNO.ins().rqDkE(2e3, 0, 1, this.post_ClearAllAckList, this), + t.NWRFmB.ins().clearDummy(), + t.NWRFmB.ins().resetMakeDummy(!0); + }), + (i.prototype.post_ClearAllAckList = function () { + t.KHNO.ins().remove(this.post_ClearAllAckList, this); + var e = t.NWRFmB.ins().getPayer; + if (e) { + var i = e.recog; + return i; + } + return 0; + }), + (i.prototype.YFOmNj = function () { + var e = t.NWRFmB.ins().getPayer; + t.GameMap.getIsSafe && (t.KHNO.ins().removeAll(this), t.qTVCL.ins().YFOmNj(), e.stopTask()), e.stopFinding(), (e = null); + }), + (i.prototype.g_0_24 = function (e) { + var i = e.readBoolean(), + n = e.readUnsignedByte(), + s = 0 == e.readByte(), + a = e.readBoolean(), + r = 0; + a && (r = e.readUnsignedInt()); + var o = t.NWRFmB.ins().getPayer; + return s ? void o.actionAccepted() : (i ? o.actionAccepted() : ((o.isLockTurn = !0), o.correctAI(), o.refuseNextAction()), (i = null), (n = null), (s = null), (a = null), void (r = null)); + }), + (i.prototype.g_0_20 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && !n.isMy && n.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, 0, 0, n.dir), (i = null), (n = null); + }), + (i.prototype.g_0_25 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && n.postActionMessage(t.Qmuk.SAM_IDLE, 0, 0, e.readUnsignedByte()), (i = null), (n = null); + }), + (i.prototype.g_0_26 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n && !n.isMy) { + var s = e.readUnsignedByte(), + a = e.readUnsignedByte(); + e.readUnsignedShort(), + n.postActionMessage(t.Qmuk.SAM_NORMHIT, 0, 0, a, { + act: s, + skillId: n.propSet.getNextAckSkillId(), + level: n.propSet.getNextAckSkillLevel(), + }), + e.readInt(); + } + (i = null), (n = null); + }), + (i.prototype.g_0_27 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + n.isMy && (n.stopTask(), n.stopFinding()); + var s = e.readUnsignedShort(), + a = e.readUnsignedShort(), + r = e.readUnsignedByte(); + n.postActionMessage(t.Qmuk.SAM_TELEPORTING, s, a, r); + var o = e.readUnsignedInt(), + l = e.readUnsignedInt(); + o == t.TranslateDefine.TRANSLATE_MOVIE && + l && + t.SkillEffPlayer.PlayHitEff( + l, + { + x: s, + y: a, + }, + 0 + ); + } + (i = null), (n = null); + }), + (i.prototype.g_0_28 = function (e) { + var i = e.readByte(); + i || t.ubnV.ins().onClose(); + }), + (i.prototype.send_0_28 = function (t, e) { + var i = this.MxGiq(28); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.g_0_30 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readUnsignedShort(), + a = e.readUnsignedShort(), + r = e.readUnsignedShort(), + o = e.readUnsignedShort(); + n.postActionMessage(t.Qmuk.SAM_TELEPORTING, r, o, n.dir), n.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, r, o, n.dir), (s = null), (a = null), (r = null), (o = null); + } + (i = null), (n = null); + }), + (i.prototype.post_g_0_35 = function (e) { + var n = e.readNumber(), + s = e.readNumber(), + a = e.readByte(), + r = t.NWRFmB.ins().getCharRole(n), + o = t.NWRFmB.ins().getPayer; + return ( + o.lockTarget == n && + (i.ins().postUpdateTarget(0), t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), (o.lockTarget = 0)), + s == o.recog && a > 0 && (t.qTVCL.ins().cdTime = egret.getTimer() + 700), + r && + (r.isMy && + (t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog), + t.qTVCL.ins().YFOmNj(), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122))), + (r.deadChar = !0), + r.postActionMessage(t.Qmuk.SAM_NOWDEATH, 0, 0, r.dir), + t.NWRFmB.ins().getPayer.remPet(n)), + t.EhSWiR.ClearChar(n), + (s = null), + (r = null), + n + ); + }), + (i.prototype.post_g_0_41 = function (e) { + for (var i = e.readString(), n = e.readUnsignedByte(), s = [0, 0, 0, 0], a = 0; n > a; a++) s[a] = e.readInt(); + t.GameMap.setAreaState(i, s), (i = null), (n = null), (s = null); + }), + (i.prototype.g_0_40 = function (e) { + var i = t.NWRFmB.ins().getCharRole(e.readNumber()); + if (i) { + var n = t.ObjectPool.pop("app.PropertySet"); + n.setProperty(t.nRDo.ACTOR_NAME, e.readString()), i.changePropertys(n), t.ObjectPool.push(n), (n = null); + } + i = null; + }), + (i.prototype.g_0_53 = function (e) { + var i = e.readNumber(), + n = e.readUnsignedShort(); + t.NWRFmB.ins().addEntitySp(i, e.readUnsignedShort(), e.readUnsignedShort(), e.readString()), (i = null), (n = null); + }), + (i.prototype.g_0_54 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(), + a = e.readShort(), + r = e.readUnsignedShort(), + o = e.readByte(), + l = 0 == e.readByte() ? !0 : !1; + n.postActionMessage(t.Qmuk.SAM_SPECIAL_MOVE, s, a, o), (s = null), (a = null), (r = null), (o = null), (l = null); + } + (i = null), (n = null); + }), + (i.prototype.g_0_55 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readShort(), + a = e.readShort(), + r = e.readUnsignedShort(), + o = e.readByte(), + l = 0 == e.readByte() ? !0 : !1; + n.postActionMessage(t.Qmuk.SAM_TELEPORTING, s, a, o), n.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, s, a, o), (s = null), (a = null), (r = null), (o = null), (l = null); + } + (i = null), (n = null); + }), + (i.prototype.g_0_66 = function (e) { + t.NWRFmB.ins().addAppearEff(e.readNumber(), e.readShort()); + }), + (i.prototype.postEntityHpChange = function (t, e, i, n) { + return void 0 === n && (n = ""), [t, e, i, n]; + }), + (i.prototype.postEntityCriticalHit = function (t, e, i, n) { + return void 0 === n && (n = ""), [t, e, i, n]; + }), + (i.prototype.g_0_251 = function (e) { + (t.ubnV.ins().isDoTimer = !1), t.ubnV.ins().close(), t.mAYZL.ins().open(t.MainBanView, t.CrmPU.language_Error_113); + }), + (i.prototype.g_0_252 = function (e) { + (t.ubnV.ins().isDoTimer = !1), t.ubnV.ins().close(), t.mAYZL.ins().open(t.MainBanView, t.CrmPU.language_Error_104); + }), + (i.prototype.g_0_254 = function (t) { + t.readString(); + }), + (i.prototype.s_0_21 = function () { + var t = this.MxGiq(21); + this.evKig(t), (t = null); + }), + (i.prototype.post_g_0_253 = function (t) {}), + (i.prototype.post_pk = function () {}), + (i.prototype.s_0_5 = function (t, e) { + var i = this.MxGiq(5); + i.writeNumber(t), i.writeShort(e), this.evKig(i), (i = null); + }), + (i.prototype.s_0_5_1 = function (t, e, i) { + var n = this.MxGiq(5); + n.writeNumber(t), n.writeShort(e), n.writeByte(i), this.evKig(n), (n = null); + }), + (i.prototype.send_0_22 = function (t, e) { + var i = this.MxGiq(22); + i.writeByte(t), i.writeByte(e), this.evKig(i), (i = null); + }), + (i.prototype.showPlayerAttr = function (e, i) { + var n = t.NWRFmB.ins().nkJT(), + s = null; + if (n && n.propSet) { + s = t.PropertySet.getPlayerTips(e, n.propSet.getAP_JOB()); + var a = 0, + r = 0, + o = "0xFFFFFF", + l = "", + h = 0; + if ( + (n.propSet.getAP_JOB() == JobConst.ZhanShi && e == t.nRDo.AP_PHYSICAL_ATTACK_MAX + ? (h = 1) + : n.propSet.getAP_JOB() == JobConst.FaShi && e == t.nRDo.AP_MAGIC_ATTACK_MAX + ? (h = 2) + : n.propSet.getAP_JOB() == JobConst.DaoShi && e == t.nRDo.AP_WIZARD_ATTACK_MAX && (h = 3), + 0 != h && + ((a = n.propSet.getValue(e)), + (r = i - a), + r > 0 && + t.uMEZy.ins().showJobAttrTips({ + curVal: a, + tarVal: i, + type: h, + })), + (a = 0), + (r = 0), + null != s && n && n.propSet) + ) + if (((a = n.propSet.getValue(e)), (r = i - a), e == t.nRDo.AP_POPULARITY || e == t.nRDo.AP_VALUE)); + else if (0 != r) { + var p = 1; + e == t.nRDo.PROP_ACTOR_SPEED_MEDICINE + ? r > 0 && ((p = 1), (o = "0xf1ed02"), (l = "|C:" + o + "&T:" + s + " +" + t.MathUtils.GetPercent(r, 1e4) + "|")) + : r > 0 && ((p = 1), (o = "0xf1ed02"), (l = "|C:" + o + "&T:" + s + " +" + r + "|")), + "" != l && + t.uMEZy.ins().showAttrTips({ + str: s, + attrNum: r, + attrType: p, + }); + } + (n = null), (s = null), (a = null), (o = null), (l = null); + } + }), + (i.prototype.send_0_23 = function (e, i, n, s) { + if ((void 0 === i && (i = 100), void 0 === n && (n = null), void 0 === s && (s = 6e5), this._recordObj[e])) { + if (!(egret.getTimer() - this._recordObj[e] > s)) return void t.ckpDj.ins().sendEvent(t.CompEvent.RANK_SHOW_LIST, e); + this._recordObj[e] = egret.getTimer(); + } else (this._recordObj[e] = egret.getTimer()), n && n(); + var a = this.MxGiq(23); + a.writeShort(e), a.writeByte(i), this.evKig(a), (a = null); + }), + (i.prototype.post_s_0_71 = function (e) { + for (var i, n = e.readShort(), s = e.readByte(), a = [], r = 0; s > r; r++) + (i = new t.RankListData()), + (i.isSelected = 0), + (i.rank = r + 1), + (i.playerId = e.readUnsignedInt()), + (i.level = e.readUnsignedInt()), + (i.name = e.readString()), + (i.circle = e.readUnsignedInt()), + (i.superPL = e.readUnsignedInt()), + Main.vZzwB.pfID != t.PlatFormID.QQGame && Main.vZzwB.pfID != t.PlatFormID.YY && (i.superPL = 0), + (i.sexjob = e.readString()), + (i.guildName = e.readString()), + (i.vipLv = e.readString()), + a.push(i); + var o = e.readUnsignedInt(), + l = e.readShort(), + h = { + list: a, + myData: { + rank: l, + value: o, + }, + }; + return (t.JgMyc.ins().rankModel.dicRank[n] = h), (t.JgMyc.ins().rankModel.type = n), [n, h]; + }), + (i.prototype.post_0_72 = function (e) { + var i = new Object(); + (i.id = e.readByte()), (i.fubenReviveCount = e.readByte()); + for (var n = e.readByte(), s = [], a = 0; n > a; a++) s.push(e.readByte()); + (i.reviveArr = s), (i.name = e.readString()), t.mAYZL.ins().open(t.AutoReviveWin, i), (s = null), (i = null), (n = null); + }), + (i.prototype.post_0_73 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && (n.reset(), n.propSet.setProperty(t.nRDo.AP_STATE, 0), n.resurgenceChar()); + }), + (i.prototype.post_0_74 = function (t) { + var e = t.readByte(), + i = t.readUnsignedInt(), + n = t.readUnsignedInt(), + s = t.readUnsignedInt(), + a = t.readString(); + this.callObject[e] = { + type: e, + scenesId: i, + x: n, + y: s, + name: a, + time: egret.getTimer() + 3e6, + }; + }), + (i.prototype.getCallIShow = function (t) { + var e = this.callObject[t]; + return e; + }), + (i.prototype.post_deleteType = function (t) { + delete this.callObject[t]; + }), + (i.prototype.post_setTarget = function (t) { + return t; + }), + (i.prototype.post_Sent = function (t, e) { + return [t, e]; + }), + (i.prototype.post_Get = function (t, e) { + return [t, e]; + }), + (i.prototype.sentMsg = function (e, i, n) { + var s = this.getBytesTwo(e, i); + if ("" != n) + for (var a = n.split(";"), r = void 0, o = 0; o < a.length; o++) { + if (((r = a[o].split("=")), r.length < 2)) return void t.uMEZy.ins().IrCm("第" + o + "个参数错误!"); + if (!s[r[0]]) return void t.uMEZy.ins().IrCm("无" + r[0] + "类型!"); + s[r[0]](r[1]); + } + this.evKig(s), (s = null); + }), + (i.prototype.post_updatePlayerXY = function (t, e) { + return [t, e]; + }), + (i.prototype.post_remDot = function (t) { + return t; + }), + (i.prototype.post_updateCharRectColor = function (t, e) { + return [t, e]; + }), + (i.prototype.post_updateCharRect = function (t) { + return void 0 === t && (t = null), t; + }), + (i.prototype.post_updateMiniBg = function (t, e, i) { + return [t, e, i]; + }), + (i.prototype.post_updateOnHook = function () {}), + (i.prototype.post_AttackState = function () {}), + (i.prototype.post_petChange = function () {}), + (i.prototype.post_playerExpChange = function () {}), + (i.prototype.post_playerVIPChange = function () {}), + (i.prototype.post_playerViolentChange = function () {}), + (i.prototype.post_playerGuildConChange = function () {}), + (i.prototype.post_warehouseChange = function () {}), + (i.prototype.post_playerBlessChange = function () {}), + (i.prototype.post_taskMouse = function () {}), + (i.prototype.post_dimensionalKey = function () {}), + (i.prototype.post_playerRectVisChange = function () {}), + (i.prototype.post_gaimItemView = function (t) { + return t; + }), + (i.prototype.post_autoReceiveTask = function () {}), + (i.prototype.getRoleRed = function () { + var e = t.StrengthenMgr.ins().isSatisStrengthened(), + i = t.StrengthenMgr.ins().isEnoughStrengthened(), + n = t.rTRv.ins().isSatisFashionActOrUpdate(), + s = t.edHC.ins().getZSRed(), + a = t.SoldierSoulMgr.ins().getWeaponTabRed(); + return e || i || n || s || a; + }), + (i.prototype.s_0_26 = function (t) { + var e = this.MxGiq(26); + e.writeByte(t), this.evKig(e), (e = null); + }), + (i.prototype.s_0_27 = function (t) { + var e = this.MxGiq(27); + e.writeByte(t), this.evKig(e), (e = null); + }), + (i.prototype.s_0_29 = function () { + var t = this.MxGiq(29); + this.evKig(t); + }), + Object.defineProperty(i.prototype, "microReceive", { + get: function () { + return this._microReceive; + }, + set: function (t) { + this._microReceive = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_0_75 = function (t) { + var e = t.readByte(); + i.ins().microReceive = e; + }), + (i.prototype.payResultMC = function (e, i) { + if (1 == e) { + this.successMC ? (this.successMC.stop(), t.lEYZI.Naoc(this.successMC)) : ((this.successMC = t.ObjectPool.pop("app.MovieClip")), (this.successMC.touchEnabled = !1)); + var n = this; + (n.successMC.x = i.x), + (n.successMC.y = i.y), + t.yCIt.UIupV.addChild(n.successMC), + this.successMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_lcg", 1, function () { + n.successMC.stop(), t.lEYZI.Naoc(n.successMC); + }); + } else if (2 == e) { + this.activationMc ? (this.activationMc.stop(), t.lEYZI.Naoc(this.activationMc)) : ((this.activationMc = t.ObjectPool.pop("app.MovieClip")), (this.activationMc.touchEnabled = !1)); + var s = this; + (s.activationMc.x = i.x), + (s.activationMc.y = i.y), + t.yCIt.UIupV.addChild(s.activationMc), + this.activationMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jhmsycg", 1, function () { + s.activationMc.stop(), t.lEYZI.Naoc(s.activationMc); + }); + } else { + this.failMC ? (this.failMC.stop(), t.lEYZI.Naoc(this.failMC)) : ((this.failMC = t.ObjectPool.pop("app.MovieClip")), (this.failMC.touchEnabled = !1)); + var a = this; + (a.failMC.x = i.x), + (a.failMC.y = i.y), + t.yCIt.UIupV.addChild(a.failMC), + this.failMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_lsb", 1, function () { + a.failMC.stop(), t.lEYZI.Naoc(a.failMC); + }); + } + }), + (i.prototype.stopSuccessMC = function () { + this.successMC.stop(), t.lEYZI.Naoc(this.successMC); + }), + (i.prototype.postUpdateMapStarPatch = function () {}), + (i.prototype.s_0_30_360 = function () { + var t = this.MxGiq(30); + this.evKig(t), (t = null); + }), + (i.prototype.s_0_31_7game = function () { + var t = this.MxGiq(31); + this.evKig(t), (t = null); + }), + i + ); + })(t.DlUenA); + (t.Nzfh = e), __reflect(e.prototype, "app.Nzfh"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + t.prototype.dataChanged.call(this), (this.imgNuBg.source = "yan_121"), (this.imgNuBg.visible = !0); + }), + e + ); + })(t.ItemBase); + (t.DimensionBossItem = e), __reflect(e.prototype, "app.DimensionBossItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + t.prototype.dataChanged.call(this), (this.imgNuBg.source = "yan_122"), (this.imgNuBg.visible = !0); + }), + e + ); + })(t.ItemBase); + (t.DimensionBossItem2 = e), __reflect(e.prototype, "app.DimensionBossItem2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "DimensionBossListItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.listDataArr1 = new eui.ArrayCollection()), + (this.listDataArr2 = new eui.ArrayCollection()), + (this.list1.itemRenderer = t.DimensionBossItem), + (this.list2.itemRenderer = t.DimensionBossItem2), + (this.list1.dataProvider = this.listDataArr1), + (this.list2.dataProvider = this.listDataArr2); + }), + (i.prototype.dataChanged = function () { + this.data && ((this.imgTitle.source = this.data.title), this.listDataArr1.replaceAll(this.data.list1), this.listDataArr2.replaceAll(this.data.list2)); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.listDataArr1.removeAll(), this.listDataArr2.removeAll(); + }), + i + ); + })(t.BaseItemRender); + (t.DimensionBossListItem = e), __reflect(e.prototype, "app.DimensionBossListItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.skinName = "DimensionBossRoleInfoSkin"), + (t.name = "DimensionBossRoleInfo"), + (t.touchEnabled = !1), + KdbLz.qOtrbE.iFbP ? ((t.left = 0), (t.top = 60)) : ((t.right = 0), (t.verticalCenter = -100)), + t + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.JgMyc.ins().bossModel.getDimensionBossCfgList()[0]; + (this.list1.itemRenderer = t.ItemBase), + (this.list2.itemRenderer = t.ItemBase), + (this.list3.itemRenderer = t.ItemBase), + (this.list1.dataProvider = new eui.ArrayCollection(n.ascription)), + (this.list2.dataProvider = new eui.ArrayCollection(n.brave)), + (this.list3.dataProvider = new eui.ArrayCollection(n.partake)), + this.HFTK(t.Nzfh.ins().post_g_0_3, this.updateView), + this.HFTK(t.Nzfh.ins().post_g_0_4, this.updateView), + this.HFTK(t.Nzfh.ins().post_g_0_5, this.updateView), + this.updateView(); + }), + (i.prototype.updateView = function () { + var e = 0, + i = t.NWRFmB.ins().YUwhM(); + for (var n in i) i[n].isCharRole && e++; + this.labRoleNum.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_237, e)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.DimensionBossRoleInfo = e), __reflect(e.prototype, "app.DimensionBossRoleInfo"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "DimensionBossSkin"), (i.name = "DimensionBossView"), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.JgMyc.ins().bossModel.getDimensionBossCfgList(); + if (e[0]) for (var s = 0; s < n.length; s++) n[s].Serial == e[0] && (this.bossConfig = n[s]); + this.bossConfig || (this.bossConfig = n[0]), (this.btn_go.label = t.CrmPU.language_Common_234); + var a = new Date(t.GlobalData.serverTime), + r = a.getHours() * t.DateUtils.SECOND_PER_HOUR + a.getMinutes() * t.DateUtils.SECOND_PER_MUNITE + a.getSeconds(), + o = "", + l = t.CrmPU.language_Common_203 + "\n"; + for (var s in this.bossConfig.timeslot) { + var h = this.bossConfig.timeslot[s]; + r >= h.StartTime && + r <= h.EndTime && + (o = + t.CrmPU.language_Common_236 + + " " + + t.DateUtils.getFormatBySecond(h.StartTime, t.DateUtils.TIME_FORMAT_1) + + "-" + + t.DateUtils.getFormatBySecond(h.EndTime, t.DateUtils.TIME_FORMAT_1) + + " "), + (l += "\n" + t.DateUtils.getFormatBySecond(h.StartTime, t.DateUtils.TIME_FORMAT_22) + "-" + t.DateUtils.getFormatBySecond(h.EndTime, t.DateUtils.TIME_FORMAT_22)); + } + (this.actTime.textFlow = t.hETx.qYVI(o)), + (this.actTime2.textFlow = t.hETx.qYVI(l)), + (this.labTips.textFlow = t.hETx.qYVI(t.CrmPU.language_Tips141)), + (this.rewardItem1.data = { + title: "kf_cy_gsj", + list1: this.bossConfig.defineshowascription, + list2: this.bossConfig.chanceshowascription, + }), + (this.rewardItem2.data = { + title: "kf_cy_ydj", + list1: this.bossConfig.defineshowbrave, + list2: this.bossConfig.chanceshowbrave, + }), + (this.rewardItem3.data = { + title: "kf_cy_cyj", + list1: this.bossConfig.defineshowpartake, + list2: this.bossConfig.chanceshowpartake, + }), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.btn_go, this.onClick), + this.HFTK(t.UyfaJ.ins().post_49_1, this.onRefreshData), + this.HFTK(t.UyfaJ.ins().post_49_2, this.onEnterMap); + t.UyfaJ.ins().send_49_1(); + this.onRefreshData(); + }), + (i.prototype.onReqBossData = function () { + t.UyfaJ.ins().send_49_1(); + }), + (i.prototype.onRefreshData = function () { + (this.redPoint.visible = !1), (this.bg_boss.source = "kf_cy_bg1_png"), (this.imgDead.source = "kf_cy_bg6"), (this.txt_refresh.visible = !1); + t.KHNO.ins().remove(this.onReqBossData, this); + var e = t.JgMyc.ins().bossModel.getDimensionBossInfo(); + if (e) { + var i = e.bossVo; + if (i.hpMaxCount > 0) { + this.hpBar.maximum = i.hpMaxCount; + } else { + var n = t.VlaoF.Monster[this.bossConfig.entityid], + s = t.VlaoF.Props[n.propid]; + this.hpBar.maximum = s.nMaxHpAdd; + } + (this.hpBar.value = i.hpCurrent), (this.hpBar.labelDisplay.visible = !0), (this.redPoint.visible = t.UyfaJ.ins().getRedDimensionBoss() > 0); + i.hpCurrent <= 0 + ? ((this.countdownTime = Math.floor((i.refreshTime - t.GlobalData.serverTime) / 1e3)), + (this.timeStr = "|C:0xff0000&T:" + t.CrmPU.language_Omission_txt52 + "%s|"), + (this.bg_boss.source = "kf_cy_bg5_png"), + (this.imgDead.source = "kf_cy_bg4"), + (this.txt_refresh.visible = !0), + this.updateCountdownTime(), + this.countdownTime > 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this))) + : t.KHNO.ins().tBiJo(2e3, 0, this.onReqBossData, this); + } + }), + (i.prototype.onEnterMap = function (e) { + var n = t.VlaoF.BossConfig[t.JgMyc.ins().bossModel.bossId]; + 7 == n.mold && n && 0 == t.JgMyc.ins().bossModel.isSuccess && t.mAYZL.ins().close(i, t.yCIt.CtcxUT); + }), + (i.prototype.updateCountdownTime = function () { + var e; + (e = + this.countdownTime >= t.DateUtils.SECOND_PER_HOUR + ? t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_1) + : t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_3)), + (this.txt_refresh.textFlow = t.hETx.qYVI(t.zlkp.replace(this.timeStr, e))), + this.countdownTime <= 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), t.UyfaJ.ins().send_49_1()), + this.countdownTime--; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.btn_go: + t.UyfaJ.ins().send_49_2(this.bossConfig.Serial, this.bossConfig.entityid); + } + }), + (i.prototype.close = function () { + for (var a = [], i = 0; i < arguments.length; i++) a[i] = arguments[i]; + e.prototype.close.call(this, a), this.$onClose(), this.fEHj(this.closeBtn, this.onClick), this.fEHj(this.btn_go, this.onClick), this.Naoc(); + t.KHNO.ins().removeAll(this); + }), + i + ); + })(t.gIRYTi); + (t.DimensionBossView = e), __reflect(e.prototype, "app.DimensionBossView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.data && + (this.data.actorid + ? ((this.moneyLab.visible = !0), + (this.nameLab.textFlow = t.hETx.qYVI("|C:0xeee104&T:" + this.data.name + "|")), + (this.moneyLab.text = t.CrmPU.language_Omission_txt94 + ":" + this.data.value), + (this.rankImg.source = "jxpm_" + this.data.idx)) + : this.data.content && ((this.moneyLab.visible = !1), (this.rankImg.source = "jxpm_" + this.data.reward), (this.nameLab.textFlow = t.hETx.qYVI(this.data.content)))); + }), + i + ); + })(t.BaseItemRender); + (t.DonationRankItemRender = e), __reflect(e.prototype, "app.DonationRankItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._actID = 20), + (i._curIndex = 0), + (i.descInfo = []), + (i.rankInfo = []), + (i.minNum = 10), + (i.curInputNum = 0), + (i.skinName = "DonationRankWinSkin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Omission_txt86), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.itemList.itemRenderer = t.DonationRankItemRender); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.donaTionGrp.visible = !1), + (this.titleLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt92)), + this.vKruVZ(this.donationBtn, this.onClick), + this.vKruVZ(this.sureBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.lessBtn, this.onClick), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.btn_close, this.onClick), + this.vKruVZ(this.jianYiBai, this.onClick), + this.vKruVZ(this.addYiBai, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_3, this.getActInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.getActInfo), + this.HFTK(t.TQkyOx.ins().post_25_5, this.getActInfo), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this), + t.TQkyOx.ins().send_25_2(this._actID), + (this.tabList.dataProvider = new eui.ArrayCollection([ + { + name: t.CrmPU.language_Omission_txt87, + }, + { + name: t.CrmPU.language_Omission_txt88, + }, + ])), + (this.tabList.selectedIndex = this._curIndex); + }), + (i.prototype.getActInfo = function () { + (this.descInfo = []), (this.rankInfo = []); + var e = t.TQkyOx.ins().getActivityInfo(this._actID), + i = t.TQkyOx.ins().getActivityConfigById(this._actID); + if (i && ((this.minNum = i.minValue), i.rewards)) for (var n in i.rewards) this.descInfo.push(i.rewards[n]); + if (((this.doanaTionDescLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt91, this.minNum))), e && e.info)) { + this.myDonation.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt93 + ":|C:0x28ee01&T:" + e.info.myDonaTion + "|"); + var s = e.info.myRanking > 0 ? e.info.myRanking + "" : "|C:0xe50000&T:" + t.CrmPU.language_Omission_txt90 + "|"; + this.myRank.textFlow = t.hETx.qYVI("" + t.CrmPU.language_FuBen_Text7 + s); + for (var a in e.info.item) this.rankInfo.push(e.info.item[a]); + } + if (0 == this.rankInfo.length) + for (var n = 0; 6 > n; n++) { + var r = new Object(); + (r.actorid = 123), (r.value = 0), (r.name = t.CrmPU.language_Omission_txt89), (r.idx = n + 1), this.rankInfo.push(r); + } + this.updateList(this._curIndex); + }), + (i.prototype.setOpenIndex = function () { + (this._curIndex = this.tabList.selectedIndex), this.updateList(this._curIndex); + }), + (i.prototype.updateList = function (t) { + 0 == t ? (this.itemList.dataProvider = new eui.ArrayCollection(this.descInfo)) : 1 == t && (this.itemList.dataProvider = new eui.ArrayCollection(this.rankInfo)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn_close: + case this.closeBtn: + this.donaTionGrp.visible = !1; + break; + case this.lessBtn: + (this.curInputNum -= this.minNum), this.curInputNum < 0 && (this.curInputNum = 0), (this.inputNum.text = this.curInputNum + ""); + break; + case this.addBtn: + (this.curInputNum += this.minNum), (this.inputNum.text = this.curInputNum + ""); + break; + case this.sureBtn: + 0 != this.curInputNum && this.curInputNum >= this.minNum && t.TQkyOx.ins().send_25_1(this._actID, t.Operate.cDonateRank, [this.curInputNum]); + break; + case this.donationBtn: + (this.curInputNum = 0), (this.inputNum.text = this.curInputNum + ""), (this.donaTionGrp.visible = !0); + break; + case this.jianYiBai: + (this.curInputNum -= 100), this.curInputNum < 0 && (this.curInputNum = 0), (this.inputNum.text = this.curInputNum + ""); + break; + case this.addYiBai: + (this.curInputNum += 100), (this.inputNum.text = this.curInputNum + ""); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.donationBtn, this.onClick), + this.fEHj(this.sureBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.lessBtn, this.onClick), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.btn_close, this.onClick), + this.fEHj(this.jianYiBai, this.onClick), + this.fEHj(this.addYiBai, this.onClick), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this); + }), + i + ); + })(t.gIRYTi); + (t.DonationRankWin = e), __reflect(e.prototype, "app.DonationRankWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.MENUITEM_SLECT = "on_menuitem_slect"), + (e.GOODS_SHOW = "on_goods_show"), + (e.PLAY_NAME_SLECT = "on_play_name_slect"), + (e.CLEAR_CHAT_INPUT_TEXT = "on_clear_chat_input"), + (e.CHAT_PRIVATE_LIST_UPDATE = "chat_private_list_update"), + (e.PLAYER_NEAR_SHOW_CHAT = "player_near_show_chat"), + (e.CHAT_SHOW_GOODS_TIPS = "CHAT_SHOW_GOODS_TIPS"), + (e.CHAT_CHANNEL_CHANGE = "CHAT_CHANNEL_CHANGE"), + e + ); + })(egret.Event); + (t.ChatEvent = e), __reflect(e.prototype, "app.ChatEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.PLAYER_PK_MODE = "player_pk_mode"), + (e.SHOW_MSG_ICON = "SHOW_MSG_ICON"), + (e.SELECT_REFINING_RESPLACE = "SELECT_REFINING_RESPLACE"), + (e.SELECT_SOLDIERSOUL_UPSTAR = "SELECT_SOLDIERSOUL_UPSTAR"), + (e.SELECT_SOLDIERSOUL_REFINE = "SELECT_SOLDIERSOUL_REFINE"), + e + ); + })(egret.Event); + (t.CommonEvent = e), __reflect(e.prototype, "app.CommonEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.OPEN_VIEW = "comp_open_view"), + (e.CLOSE_VIEW = "comp_close_view"), + (e.SHORTCUTKEY_SET = "on_shortcutkey_set"), + (e.DRAG_START = "on_drag_start"), + (e.DRAG_END = "on_drag_end"), + (e.TAB_CHANGE = "on_tab_change"), + (e.SHORTCUTKEY = "on_shortcutKey"), + (e.MOUSE_OVER = "on_mouse_over"), + (e.MOUSE_OUT = "on_mouse_out"), + (e.MOUSE_CLICK = "on_mouse_click"), + (e.PAGE_DATA = "on_page_data"), + (e.PAGE_CHANGE = "on_page_change"), + (e.RANK_DATA = "on_rank_data"), + (e.RANK_MENU = "on_rank_menu"), + (e.SET_HSLIDER = "on_set_hslider"), + (e.ROLE_LEVEL_CIRCLE = "on_role_level_circle"), + (e.MAIL_SELECTED_INDEX = "on_mail_selected_index"), + (e.MAIL_DELETE = "on_mail_delete"), + (e.SETUP_ITEM_DATA = "on_setup_item"), + (e.HIDE_ICON = "on_hide_icon"), + (e.TimerEvent = "on_timer"), + (e.Clear_Timer_Event = "on_clear_timer"), + (e.SKILL_GP_Y_EVENT = "SKILL_GP_Y_EVENT"), + (e.RANK_SHOW_LIST = "rank_show_list"), + (e.STRENGTHEN_RED = "strengthen_red"), + (e.MAIL_RED = "mail_red"), + (e.FASHION_ACT = "fashion_act"), + (e.FASHION_UPGRADE = "fashion_upgrade"), + (e.FASHION_WEAR = "fashion_wear"), + (e.FASHION_DISPLAY = "fashion_display"), + (e.FASHION_RED = "fashion_red"), + (e.GET_PROPS_STRENGTHEN_EQUIP = "get_props_strengthen_equip"), + (e.GET_PROPS_STRENGTHEN_SPECIAL = "get_props_strengthen_special"), + (e.GET_PROPS_STRENGTHEN_FOUR_IMAGE = "get_props_strengthen_four_image"), + (e.GET_PROPS_STRENGTHEN_WORD_FORMULA = "get_props_strengthen_word_formula"), + (e.ITEM_NUM_UPDATE = "item_num_update"), + (e.CLOSE_TREASURE = "close_treasure"), + (e.ROLE_ATTR_OPEN = "role_attr_open"), + (e.ROLE_ATTR_CLOSE = "role_attr_close"), + (e.ROLE_UPDATE_RULE = "role_update_rule"), + (e.ROLE_SKILL_DESC = "role_skill_desc"), + (e.ROLE_CLOSE_SKILL_DESC = "role_close_skill_desc"), + (e.ROLE_RED = "role_red"), + (e.ROLE_TITLE_SHORTEN = "role_title_shorten"), + (e.ROLE_TITLE_REVEAL = "role_title_reveal"), + (e.ROLE_TITLE2_OPEN = "role_title2_open"), + (e.ROLE_TITLE2_CLOSE = "role_title2_close"), + (e.ROLE_TITLE2_SHORTEN = "role_title2_shorten"), + (e.ROLE_TITLE2_REVEAL = "role_title2_reveal"), + (e.OTHER_PLAYER_ATTR_OPEN = "other_player_attr_open"), + (e.OTHER_PLAYER_ATTR_CLOSE = "other_player_attr_close"), + (e.OTHER_ROLE_UPDATE_RULE = "other_player_update_rule"), + (e.OTHER_PLAYER_SKILL_DESC = "other_player_skill_desc"), + (e.OTHER_PLAYER_CLOSE_SKILL_DESC = "other_player_close_skill_desc"), + (e.OTHER_PLAYER_RIGHT_MENU_OPEN = "other_player_right_menu_open"), + (e.OTHER_PLAYER_RIGHT_MENU_CLOSE = "other_player_right_menu_close"), + (e.OTHER_PLAYER_TITLE2_OPEN = "other_player_title2_open"), + (e.OTHER_PLAYER_TITLE2_CLOSE = "other_player_title2_close"), + e + ); + })(egret.Event); + (t.CompEvent = e), __reflect(e.prototype, "app.CompEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = (null !== t && t.apply(this, arguments)) || this; + return (e.eventList = {}), e; + } + return ( + __extends(e, t), + (e.ins = function () { + return t.ins.call(this); + }), + (e.prototype.sendEvent = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + var n = this.eventList[t]; + if (null != n) + for (var s = n.length, a = void 0, r = void 0, o = 0; s > o; o++) { + var l = n[o]; + (a = l[0]), (r = l[1]), a.apply(r, e); + } + }), + (e.prototype.addEvent = function (t, e, i) { + var n = this.eventList[t]; + if (null == n) (n = []), (this.eventList[t] = n); + else for (var s = n.length, a = 0; s > a; a++) if (n[a][0] == e && n[a][1] == i) return; + n.push([e, i]); + }), + (e.prototype.removeEvent = function (t, e, i) { + var n = this.eventList[t]; + if (null != n) for (var s = n.length, a = s - 1; a >= 0; a--) n[a][0] == e && n[a][1] == i && n.splice(a, 1); + n && 0 == n.length && ((this.eventList[t] = null), delete this.eventList[t]); + }), + (e.prototype.removeAllEvents = function () { + var t; + for (var e in this.eventList) { + if (((t = this.eventList[e]), null != t)) for (var i = t.length, n = i - 1; n >= 0; n--) t.splice(n, 1); + t && 0 == t.length && ((this.eventList[e] = null), delete this.eventList[e]); + } + }), + e + ); + })(t.BaseClass); + (t.ckpDj = e), __reflect(e.prototype, "app.ckpDj"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.ITEM_SELECTED = "item_selected"), + (e.MENU_ONCLICK = "menu_click"), + (e.BAG_MENU_ONCLICK = "bag_menu_click"), + (e.FORGE_MENU_ONCLICK = "forge_menu_click"), + (e.ITEM_ONCHANGE = "item_onchange"), + (e.COLOR_SET = "COLOR_SET"), + e + ); + })(egret.Event); + (t.FriendEvent = e), __reflect(e.prototype, "app.FriendEvent"); +})(app || (app = {})); +var DebugPlatform = (function () { + function t() {} + return ( + (t.prototype.getUserInfo = function () { + return __awaiter(this, void 0, void 0, function () { + return __generator(this, function (t) { + return [ + 2, + { + nickName: "username", + }, + ]; + }); + }); + }), + (t.prototype.login = function () { + return __awaiter(this, void 0, void 0, function () { + return __generator(this, function (t) { + return [2]; + }); + }); + }), + t + ); +})(); +__reflect(DebugPlatform.prototype, "DebugPlatform", ["Platform"]), window.platform || (window.platform = new DebugPlatform()); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return __extends(e, t), (e.EQUIP_WEAR_EQUIP = "wearEquip"), (e.EQUIP_DROP_EQUIP = "dropEquip"), e; + })(egret.Event); + (t.ItemEvent = e), __reflect(e.prototype, "app.ItemEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.UPDATE_DISPOSABLE_RED = "main_update_disposable_red"), + (e.PLAY_EFF_JIJN = "main_play_eff_jijn"), + (e.PLAY_EFF_JIJN_END = "main_play_eff_jijn_end"), + (e.HIDE_SKILL_TIPS = "main_hide_skill_tips"), + (e.ADD_TASK_EFF = "main_add_task_eff"), + (e.CLOSE_FIRST_CHARGE_TIPS = "main_close_first_charge_tips"), + (e.CLOSE_SECOND_CHARGE_TIPS = "main_close_second_charge_tips"), + (e.CLOSE_VIP_GUIDE_TIPS = "main_close_vip_guide_tips"), + (e.CLOSE_VIOLENT_TIPS = "main_close_violent_tips"), + (e.CLOSE_DONATION_TIPS = "main_close_donation_tips"), + (e.CLICK_MAIN_TASK_LINK = "click_main_task_link"), + e + ); + })(egret.Event); + (t.MainEvent = e), __reflect(e.prototype, "app.MainEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + void 0 === i && (i = null), void 0 === n && (n = !1), void 0 === s && (s = !1); + var a = t.call(this, e, n, s) || this; + return (a.data = i), a; + } + return ( + __extends(e, t), + (e.ITEM_SELECTED = "ITEM_SELECTED"), + (e.TEAM_ADD_MEMBER = "TEAM_ADD_MEMBER"), + (e.TEAM_DEL_MEMBER = "TEAM_DEL_MEMBER"), + (e.TEAM_MEMBER_APPLY_JOIN_TEAM = "TEAM_MEMBER_APPLY_JOIN_TEAM"), + (e.TEAM_SET_LEADER = "TEAM_SET_LEADER"), + (e.TEAM_INVITE_MEMBER_JOIN = "TEAM_INVITE_MEMBER_JOIN"), + e + ); + })(egret.Event); + (t.TeamEvent = e), __reflect(e.prototype, "app.TeamEvent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.prototype.getDataById = function (e) { + var i, + n, + s = []; + for (var a in t.VlaoF.FlyTable) + if (((n = t.VlaoF.FlyTable[a]), n.id == e)) { + for (var r = 0; r < n.map.length; r++) for (var o in t.VlaoF.FlyLevel) (i = t.VlaoF.FlyLevel[o]), n.map[r].id == i.id && s.push(i); + break; + } + return s; + }), + e + ); + })(); + (t.FlyShoesData = e), __reflect(e.prototype, "app.FlyShoesData"); + var i = (function () { + function t() {} + return t; + })(); + (t.ListBtnVo = i), __reflect(i.prototype, "app.ListBtnVo"); + var n = (function () { + function t() {} + return t; + })(); + (t.ListItemVo = n), __reflect(n.prototype, "app.ListItemVo"); + var s = (function () { + function t() {} + return t; + })(); + (t.TableVo = s), __reflect(s.prototype, "app.TableVo"); + var a = (function () { + function t() {} + return t; + })(); + (t.LevelVo = a), __reflect(a.prototype, "app.LevelVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.begin = "btn_9"), (t.end = "btn_9"), (t.skinName = "Btn15Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.setData = function (t) { + (this.visible = 1 == t.ZbzdY), + (this.lock.visible = 0 == t.isOpen), + (this.labelDisplay.textColor = 0 == t.isOpen ? 8420211 : 15779990), + (this.labelDisplay.text = t.data.name), + (this.select.visible = 1 == t.select); + }), + (i.prototype.destroy = function () { + (this.lock.source = ""), (this.icon.source = ""), (this.labelDisplay.text = ""), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Component); + (t.BtnItem = e), __reflect(e.prototype, "app.BtnItem", ["eui.UIComponent", "egret.DisplayObject"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectedUrl = "com_yeqian_3"), (t.noSelectedUrl = "com_yeqian_4"), (t.skinName = "FlyShoesBtnItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + t.FlyTable, e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data.isSelected, + e = this.data.data, + i = 1 == t ? this.selectedUrl : this.noSelectedUrl; + this.select.$setTexture(RES.getRes(i)), (this.select.x = this.select.y = t ? -1 : 3), (this.nameTf.text = e.name); + } + }), + (i.prototype.destroy = function () { + (this.data = null), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.FlyShoesBtnItemView = e), __reflect(e.prototype, "app.FlyShoesBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._itemArrayCollection = null), (i.curIndex = 0), (i._container = t), t ? ((i._itemArrayCollection = new eui.ArrayCollection()), i.init(), i) : i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._list.selectedIndex = 0), + (this._scrollViewContainer.itemRenderer = t.TradeLineTabView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []); + }), + Object.defineProperty(i.prototype, "index", { + set: function (e) { + (this.curIndex = e - 1), (this._list.selectedIndex = this.curIndex), this.setData(t.VlaoF.FlyTable); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (i.prototype.onItemTap = function (t, e) { + (this.target = t.data), this.curIndex != e && ((this.curIndex = e), this._callfunc && this._callfunc(this.target.id)); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e in t) { + var i = t[e]; + i.hidden || + this.dataAry.push({ + name: t[e].name, + data: t[e], + }); + } + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (i.prototype.destroy = function () { + (this.dataAry.length = 0), + (this.dataAry = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._callfunc && (this._callfunc = null), + t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.FlyShoesBtnListView = e), __reflect(e.prototype, "app.FlyShoesBtnListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FlyShoesListItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + (this.callFunc = t.callFunc), this.btn_go.setData(t); + } + }), + (i.prototype.destroy = function () { + this.callFunc && (this.callFunc = null), (this.data = null), this.btn_go.destroy(), (this.btn_go = null), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.FlyShoesListItemView = e), __reflect(e.prototype, "app.FlyShoesListItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._itemArrayCollection = null), (i.preTime = 0), (i.curTime = 0), (i._container = t), t ? ((i._itemArrayCollection = new eui.ArrayCollection()), i.init(), i) : i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.itemRenderer = t.FlyShoesListItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []), + t.KHNO.ins().remove(this.onFlyCD, this), + t.KHNO.ins().tBiJo(100, 0, this.onFlyCD, this); + }), + Object.defineProperty(i.prototype, "selectedId", { + set: function (t) { + this._selectedId = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onFlyCD = function () { + this.curTime = egret.getTimer(); + }), + (i.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (i.prototype.onItemTap = function (e, i, n, s) { + if (!(this.curTime - this.preTime < 1e3)) { + this.preTime = this.curTime; + var a = e.data, + r = t.NWRFmB.ins().getPayer; + if (r && r.propSet) + if (r.propSet.getState() & t.ActorState.DEATH) t.uMEZy.ins().IrCm(t.CrmPU.language_Tips103); + else if (r.propSet.mBjV() >= a.openlevel && r.propSet.MzYki() >= a.opencircle && t.GlobalData.sectionOpenDay >= a.openday) + if (r.propSet.getFlyshoes() >= a.cost) + if (a.yuanbao) { + var o = r.propSet.getRechargeSum(); + o ? (t.PKRX.ins().s_1_6(t.JgMyc.ins().flyShoesModel.selectedId, a.id), t.mAYZL.ins().close(t.FlyShoesView)) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips107); + } else t.PKRX.ins().s_1_6(t.JgMyc.ins().flyShoesModel.selectedId, a.id), t.mAYZL.ins().close(t.FlyShoesView); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips109); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips108); + } + }), + (i.prototype.setDataById = function (e) { + (this.voArr = t.JgMyc.ins().flyShoesModel.getDataById(e)), this.setData(this.voArr); + }), + (i.prototype.setData = function (e) { + if (e && e.length > 0) { + for ( + var i = [], n = void 0, s = t.NWRFmB.ins().getPayer, a = s.propSet.mBjV(), r = s.propSet.MzYki(), o = t.GlobalData.sectionOpenDay, l = void 0, h = void 0, p = 0, u = e.length; + u > p; + p++ + ) + (n = e[p]), + (l = a >= n.level && r >= n.circle && o >= n.day ? 1 : 0), + (h = a >= n.openlevel && r >= n.opencircle && o >= n.openday ? 1 : 0), + 1 == l && + i.push({ + ZbzdY: l, + isOpen: h, + data: n, + select: n.id == this._selectedId ? 1 : 0, + }); + this.creatItem(i); + } + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (i.prototype.destroy = function () { + for (t.KHNO.ins().remove(this.onFlyCD, this); this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + e.destroy(), (e = null); + } + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + (this.dataAry.length = 0), + (this.dataAry = null), + t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.FlyShoesListView = e), __reflect(e.prototype, "app.FlyShoesListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "FlyShoesSkin"), (i.name = "FlyShoesView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System42), + (this.flyShoesBtnListView = new t.FlyShoesBtnListView(this.btn_list)), + (this.flyShoesBtnListView._callfunc = this.callfunc.bind(this)), + (this.flyShoesListView = new t.FlyShoesListView(this.list)); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (t.JgMyc.ins().flyShoesModel.selectedId = e[0] ? e[0] : 1), + (this.flyShoesBtnListView.index = e[0] ? e[0] : 1), + (this.flyShoesListView.selectedId = e[1]), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.refreshData), + this.refreshData(); + }), + (i.prototype.refreshData = function () { + this.flyShoesListView && this.flyShoesListView.setDataById(t.JgMyc.ins().flyShoesModel.selectedId), this.setBottom(); + }), + (i.prototype.callfunc = function (e) { + (t.JgMyc.ins().flyShoesModel.selectedId = e), this.refreshData(); + }), + (i.prototype.setBottom = function () { + var e = t.NWRFmB.ins().getPayer, + i = "当前飞鞋:|C:0xF7F2EA&T:" + e.propSet.getFlyshoes(), + n = t.VlaoF.FlyTable[t.JgMyc.ins().flyShoesModel.selectedId], + s = "传送一次消耗飞鞋:|C:0xF7F2EA&T:" + n.cost; + (this.txt_count.textFlow = t.hETx.qYVI(i)), (this.txt_consume.textFlow = t.hETx.qYVI(s)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.list && (this.list.removeChildren(), (this.list = null)), + this.btn_list && (this.btn_list.removeChildren(), (this.btn_list = null)), + this.dragDropUI && this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.flyShoesBtnListView && this.flyShoesBtnListView.destroy(), + (this.flyShoesBtnListView = null), + this.flyShoesListView && this.flyShoesListView.destroy(), + (this.flyShoesListView = null), + (this.txt_count.textFlow = null), + (this.txt_consume.textFlow = null), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.FlyShoesView = e), __reflect(e.prototype, "app.FlyShoesView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.history = []), + (i.historyIdx = -1), + (i.errCode = ["配置错误", "等级,转生未到", "开放时间未到", "时间已结束", "回收次数不足", "特权等级不足", "物品不存在", "数据异常", "数据异常"]), + (i._recycleInfo = {}), + (i.sysId = t.jDIWJt.Forge), + i.YrTisc(1, i.post_19_1), + i.YrTisc(2, i.post_19_2), + i.YrTisc(3, i.post_19_3), + i.YrTisc(4, i.post_19_4), + i.YrTisc(5, i.post_19_5), + i.YrTisc(6, i.post_19_6), + i.YrTisc(7, i.post_19_7), + i.YrTisc(8, i.post_19_8), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_19_1 = function (t, e) { + var i = this.MxGiq(1); + i.writeUnsignedShort(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_19_1 = function () {}), + (i.prototype.forgeRed = function () { + t.KHNO.ins().RTXtZF(this.updateRed, this) || t.KHNO.ins().tBiJo(2e3, 1, this.updateRed, this); + }), + (i.prototype.post_updateItem = function () {}), + (i.prototype.updateRed = function () { + this.post_updateItem(); + }), + (i.prototype.send_19_2 = function (t) { + var e = this.MxGiq(2); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_19_2 = function (e) { + var i, + n = [], + s = e.readByte(); + if (s > 0) + for (var a = 0; s > a; a++) { + (i = new t.RewardData()), i.parser(e), n.push(i); + var r = new Object(), + o = Date.now(), + l = t.DateUtils.getFormatBySecond(o / 1e3, t.DateUtils.TIME_FORMAT_8), + h = t.VlaoF.StdItems[i.id]; + h && + ((l += " " + t.CrmPU.language_Common_33 + " |C:0x2eb52d&T:" + h.name + "|"), + (this.historyIdx += 1), + (r.desc = l), + (r.idx = this.historyIdx), + this.history.length < 200 && this.history.push(r)); + } + return n; + }), + (i.prototype.send_19_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.post_19_3 = function (t) { + var e = t.readByte(); + return e > 0 ? e : void 0; + }), + (i.prototype.getMergeMenu = function () { + var e = [], + i = t.VlaoF.MergeTotal, + n = t.GlobalData.sectionOpenDay, + s = 0, + a = 0, + r = t.NWRFmB.ins().getPayer; + r && r.propSet && ((s = r.propSet.mBjV()), (a = r.propSet.MzYki())); + for (var o in i) i[o].openLv <= s && i[o].openZs <= a && i[o].openserverDay <= n && e.push(i[o]); + return e.sort(this.sortMenu), e; + }), + (i.prototype.getMergeSecMenu = function (e) { + var i = t.VlaoF.MergeConfig[e], + n = 0, + s = 0, + a = [], + r = t.GlobalData.sectionOpenDay, + o = t.NWRFmB.ins().getPayer; + o && o.propSet && ((n = o.propSet.mBjV()), (s = o.propSet.MzYki())); + for (var l in i) { + if (1 != Main.vZzwB.gameMode || 4 != i[l].id || (4 == i[l].id && 1 == Main.vZzwB.gameMode && (1 == i[l].index || 3 == i[l].index))) { + if ((i[l].rebornconds || 0) <= s && (i[l].levelconds || 0) <= n && i[l].dayconds <= r) { + a.push(i[l]); + } + } + } + return a; + }), + (i.prototype.getItemSynthesis = function (e, i) { + var n = 0, + s = 0, + a = [], + b, + r = t.GlobalData.sectionOpenDay, + o = t.VlaoF.ItemMergeConfig[e][i], + l = t.NWRFmB.ins().getPayer, + m = Main.vZzwB.gameMode; + l && l.propSet && ((n = l.propSet.mBjV()), (s = l.propSet.MzYki())); + for (var h in o) { + b = o[h]; + if ( + (1 == b.second_index && ((0 == m && 801 <= b.Eid && 807 >= b.Eid) || (1 == m && 80 <= b.Eid && 85 >= b.Eid))) || + (3 == b.second_index && ((0 == m && 105 <= b.Eid && 111 >= b.Eid) || (1 == m && 98 <= b.Eid && 104 >= b.Eid))) + ) { + continue; + } + (b.circle || 0) <= s && (b.level || 0) <= n && b.openserverday <= r && a.push(b); + } + return a; + }), + (i.prototype.sortMenu = function (t, e) { + return t.sort < e.sort ? -1 : t.sort > e.sort ? 1 : 0; + }), + (i.prototype.isSynthesisItem = function (e, i) { + void 0 === i && (i = 1); + for (var n = (t.NWRFmB.ins().nkJT(), 0); n < e.length; n++) { + var s = t.ZAJw.MPDpiB(e[n].type, e[n].id); + if (s < e[n].count * i) return !1; + } + return !0; + }), + (i.prototype.getShowTips = function (e, i) { + void 0 === i && (i = 1); + for (var n = t.CrmPU.language_Common_37 + "\n", s = 0; s < e.length; s++) + if (0 == e[s].type) { + var a = t.VlaoF.StdItems[e[s].id]; + a && ((n += e[s].count * i + t.CrmPU.language_Common_38 + a.name), s != e.length - 1 && (n += "\n")); + } else { + var r = ""; + (r = e[s].count * i + t.CrmPU.language_System25[e[s].type - 1]), + (3 != e[s].type || 4 != e[s].type) && (r = t.CommonUtils.overLength(e[s].count * i) + t.CrmPU.language_System25[e[s].type - 1]), + (n += r), + s != e.length - 1 && (n += "\n"); + } + return n; + }), + (i.prototype.getForgeRed = function (e, i, n) { + void 0 === n && (n = 1); + for (var s in e) { + var a = t.ZAJw.MPDpiB(e[s].type, e[s].id); + if (a < e[s].count * n) return !1; + } + if (i) { + var r = t.mAYZL.ins().isCheckOpen(i); + if (!r) return !1; + } + return !0; + }), + (i.prototype.getForgeRed2 = function () { + var e = t.VlaoF.MergeTotal; + for (var n in e) { + var s = i.ins().getOneLvRed(e[n].id); + if (s) return 1; + } + return 0; + }), + (i.prototype.openSystemTips = function (e) { + var i = "", + n = t.NWRFmB.ins().getPayer; + if (n) { + if (!e) return i; + if (e.level && n.propSet.mBjV() < e.level) return (i = e.level + "级开放"); + if (e.zsLevel && n.propSet.MzYki() < e.zsLevel) return (i = e.zsLevel + "转开放"); + if (e.openDay && t.GlobalData.sectionOpenDay < e.openDay) return (i = "第" + e.openDay + "天开放"); + if (e.office && n.propSet.getOfficialPositicon() < e.office) return (i = "官阶不足"); + } + return i; + }), + (i.prototype.getTwoLvRed = function (e, i) { + var n = 0, + s = t.VlaoF.ItemMergeConfig[e]; + if (s) { + var a = s[i]; + if (a) + for (var r in a) + if (a[r].redpoint) { + (n = 0), (n = t.mAYZL.ins().isCheckOpen(a[r].mergelimit) ? 0 : 1); + for (var o in a[r].table) { + var l = t.ZAJw.MPDpiB(a[r].table[o].type, a[r].table[o].id); + if (l < a[r].table[o].count) { + n = 1; + break; + } + } + if (a[r].redpointlimit) { + var h = t.mAYZL.ins().isCheckOpen(a[r].redpointlimit); + h || (n = 1); + } + if (0 == n) return !0; + } + return !1; + } + return !1; + }), + (i.prototype.getOneLvRed = function (e) { + var i = 0, + n = t.VlaoF.ItemMergeConfig[e]; + if (n) + for (var s in n) + for (var a in n[s]) { + var r = n[s][a]; + if (r.redpoint) { + (i = 0), (i = t.mAYZL.ins().isCheckOpen(r.mergelimit) ? 0 : 1); + for (var o in r.table) { + var l = t.ZAJw.MPDpiB(r.table[o].type, r.table[o].id); + if (l < r.table[o].count) { + i = 1; + break; + } + } + if (r.redpointlimit) { + var h = t.mAYZL.ins().isCheckOpen(r.redpointlimit); + h || (i = 1); + } + if (0 == i) return !0; + } + } + return !1; + }), + (i.prototype.send_19_4 = function (t, e, i) { + var n = this.MxGiq(4); + n.writeByte(t), e.writeToBytes(n), n.writeByte(i), this.evKig(n); + }), + (i.prototype.send_19_5 = function (t, e) { + var i = this.MxGiq(5); + i.writeByte(t), e.writeToBytes(i), this.evKig(i); + }), + (i.prototype.post_19_4 = function (t) { + var e = t.readByte(), + i = t.readNumber(), + n = t.readByte(), + s = t.readString(), + a = t.readString(); + this.refiningRuslt = { + errcode: e, + goodId: i, + currAttr: s, + newAttr: a, + replace: n, + }; + }), + (i.prototype.post_19_5 = function (t) { + var e = t.readByte(); + if (!(e > 0)) { + var i = t.readNumber(), + n = t.readString(), + s = t.readString(); + this.refiningReplaceRuslt = { + errcode: e, + goodId: i, + currAttr: n, + newAttr: s, + }; + } + }), + (i.prototype.send_19_6 = function (t) { + var e = this.MxGiq(6); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.post_19_6 = function (e) { + var i = e.readByte(); + if (0 == i) { + t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt51); + var n = e.readInt(), + s = e.readShort(); + s > -1 && ((this._recycleInfo[n].num = s), this.postItemUpdated(n)); + } else 7 != i && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + this.errCode[i - 1] + "|"); + }), + (i.prototype.postItemUpdated = function (t) { + return t; + }), + (i.prototype.send_19_7 = function () { + var t = this.MxGiq(7); + this.evKig(t); + }), + (i.prototype.send_19_8 = function (t, e) { + var i = this.MxGiq(8); + t.writeToBytes(i), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_19_7 = function (t) { + this._recycleInfo = {}; + for (var e, i = t.readInt(), n = 0; i > n; n++) (e = new Object()), (e.id = t.readInt()), (e.cd = t.readInt()), (e.num = t.readShort()), (this._recycleInfo[e.id] = e); + }), + (i.prototype.post_19_8 = function (e) { + var i = e.readByte(); + return ( + 0 == i || + (1 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips97) : 2 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt68) : 3 == i && t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt69)), + i + ); + }), + Object.defineProperty(i.prototype, "recycleInfo", { + get: function () { + return this._recycleInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getRecycleArr = function () { + var e = []; + for (var n in t.VlaoF.YBrecoverConfig) { + var s = t.VlaoF.YBrecoverConfig[n]; + if (t.mAYZL.ins().isCheckOpen(s.displaylimit)) { + var a = i.ins().recycleInfo; + if (a[s.id] && 0 == a[s.id].cd) continue; + e.push(s.id); + } + } + return e; + }), + i + ); + })(t.DlUenA); + (t.ForgeMgr = e), __reflect(e.prototype, "app.ForgeMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.sortEquip = function (e) { + for (var i = [], n = 0; n < e.length; n++) { + var s = e[n]; + if (t.VlaoF.RefiningmaterialsConfig[s.wItemId]) { + var a = t.VlaoF.StdItems[s.wItemId], + r = 0; + r = 4 == a.type ? 3 : 7 == a.type ? 4 : 6 == a.type ? 5 : 3 == a.type ? 6 : 8 == a.type ? 7 : 9 == a.type ? 8 : a.type; + var o = { + items: a, + item: s, + sortId: r, + }; + i.push(o); + } + } + return ( + i.sort(function (t, e) { + return t.sortId < e.sortId ? -1 : t.sortId > e.sortId ? 1 : t.items.itemlevel > e.items.itemlevel ? -1 : t.items.itemlevel < e.items.itemlevel ? 1 : void 0; + }), + i + ); + }), + (i.prototype.getPosList = function () { + var e = t.VlaoF.RefiningReplaceConfig, + i = []; + for (var n in e) Number(n) && i.push(e[n]); + return i; + }), + (i.prototype.getStarPosList = function () { + var e = t.VlaoF.UpstarPriceConfig, + i = []; + for (var n in e) Number(n) && i.push(e[n]); + return i; + }), + i + ); + })(t.DlUenA); + (t.RefiningData = e), __reflect(e.prototype, "app.RefiningData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.parser = function (t) { + (this.type = t.readByte()), (this.id = t.readInt()), (this.count = t.readInt()); + }), + t + ); + })(); + (t.RewardData = e), __reflect(e.prototype, "app.RewardData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.sortEquipXiLian = function (e, i) { + void 0 === i && (i = null); + for (var n = [], s = 0; s < e.length; s++) { + var a = e[s]; + if (t.VlaoF.RefiningmaterialsConfig[a.wItemId]) { + var r = t.VlaoF.StdItems[a.wItemId], + o = 0; + o = + 4 == r.type + ? 3 + : 7 == r.type + ? 4 + : 6 == r.type + ? 5 + : 3 == r.type + ? 6 + : 8 == r.type + ? 7 + : 9 == r.type + ? 8 + : 11 == r.type + ? 10 + : 12 == r.type + ? 11 + : 13 == r.type + ? 12 + : 14 == r.type + ? 13 + : r.type; + var l = { + items: r, + item: a, + sortId: o, + }; + n.push(l); + } + } + if (i) + for (var s = 0; s < i.length; s++) { + var a = i[s]; + if (t.VlaoF.RefiningmaterialsConfig[a.wItemId]) { + var r = t.VlaoF.StdItems[a.wItemId], + o = 0; + o = + 4 == r.type + ? 3 + : 7 == r.type + ? 4 + : 6 == r.type + ? 5 + : 3 == r.type + ? 6 + : 8 == r.type + ? 7 + : 9 == r.type + ? 8 + : 11 == r.type + ? 10 + : 12 == r.type + ? 11 + : 13 == r.type + ? 12 + : 14 == r.type + ? 13 + : r.type; + var l = { + items: r, + item: a, + sortId: o, + }; + n.push(l); + } + } + return ( + n.sort(function (t, e) { + return t.sortId < e.sortId ? -1 : t.sortId > e.sortId ? 1 : t.items.itemlevel > e.items.itemlevel ? -1 : t.items.itemlevel < e.items.itemlevel ? 1 : void 0; + }), + n + ); + }), + (i.prototype.sortEquip = function (e, i) { + void 0 === i && (i = null); + for (var n = [], s = 0; s < e.length; s++) { + var a = e[s]; + if (t.VlaoF.UpstarConfig[a.wItemId]) { + var r = t.VlaoF.StdItems[a.wItemId], + o = 0; + o = + 4 == r.type + ? 3 + : 7 == r.type + ? 4 + : 6 == r.type + ? 5 + : 3 == r.type + ? 6 + : 8 == r.type + ? 7 + : 9 == r.type + ? 8 + : 11 == r.type + ? 10 + : 12 == r.type + ? 11 + : 13 == r.type + ? 12 + : 14 == r.type + ? 13 + : r.type; + var l = { + items: r, + item: a, + sortId: o, + }; + n.push(l); + } + } + if (i) + for (var s = 0; s < i.length; s++) { + var a = i[s]; + if (t.VlaoF.UpstarConfig[a.wItemId]) { + var r = t.VlaoF.StdItems[a.wItemId], + o = 0; + o = + 4 == r.type + ? 3 + : 7 == r.type + ? 4 + : 6 == r.type + ? 5 + : 3 == r.type + ? 6 + : 8 == r.type + ? 7 + : 9 == r.type + ? 8 + : 11 == r.type + ? 10 + : 12 == r.type + ? 11 + : 13 == r.type + ? 12 + : 14 == r.type + ? 13 + : r.type; + var l = { + items: r, + item: a, + sortId: o, + }; + n.push(l); + } + } + return ( + n.sort(function (t, e) { + return t.sortId < e.sortId ? -1 : t.sortId > e.sortId ? 1 : t.items.itemlevel > e.items.itemlevel ? -1 : t.items.itemlevel < e.items.itemlevel ? 1 : void 0; + }), + n + ); + }), + i + ); + })(t.DlUenA); + (t.UpstarData = e), __reflect(e.prototype, "app.UpstarData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ForgeWinSkin"), (i.name = "ForgeWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + (this.forgeRefining = new t.ForgeRefiningView()), + (this.forgeRefining.skinName = "ForgeRefiningSkin"), + (this.forgeRefining.name = t.CrmPU.language_System88), + (this.forgeRefining.left = 0), + (this.forgeRefining.right = 0), + (this.forgeRefining.top = 0), + (this.forgeRefining.bottom = 0), + (this.forgeRefining.x = 0), + (this.forgeRefining.y = 0), + this.viewStack.addChild(this.forgeRefining); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.ruleTips.visible = !1), this.dragDropUI.setTitle(t.CrmPU.language_System88), this.forgeRefining.open(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.forgeRefining && this.forgeRefining.close(), this.dragDropUI.destroy(), (this.dragDropUI = null), (this.ruleTips = null); + }), + i + ); + })(t.gIRYTi); + (t.BaptismWin = e), __reflect(e.prototype, "app.BaptismWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconList = []), (t.skinName = "FriendFunMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gList.itemRenderer = t.FriendFunMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + var e = this.gList.selectedIndex, + i = this.gList.getChildAt(e), + n = i.menuBtn.name; + t.ckpDj.ins().sendEvent(t.FriendEvent.FORGE_MENU_ONCLICK, [n]); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.iconList = e[1]), (this.x = e[0].x - 4); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + this.x + this.width > n && (this.x = n - this.width), (this.height = 41 * this.iconList.length), (this.bg.height = 41 * this.iconList.length + 5), (this.y = e[0].y - this.height - 5); + var s = new eui.ArrayCollection(this.iconList); + this.gList.dataProvider = s; + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), (this.gList = null), (this.bg = null); + }), + i + ); + })(t.gIRYTi); + (t.ForgeFunMenuView = e), __reflect(e.prototype, "app.ForgeFunMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + this.desc.textFlow = t.hETx.qYVI(this.data.desc); + var e = this.data.idx % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"; + this.bg.source = e; + } + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRecordItemView = e), __reflect(e.prototype, "app.ForgeRecordItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ForgeRecordSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System34), (this.msgList.itemRenderer = t.ForgeRecordItemView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.MouseScroller.bind(this.msgScroller), + this.vKruVZ(this.sure, this.onTouch), + this.HFTK(t.ForgeMgr.ins().post_19_2, this.updateHistory), + (this.msgScroller.verticalScrollBar.autoVisibility = !1), + (this.msgScroller.verticalScrollBar.visible = !1), + this.updateHistory(); + }), + (i.prototype.updateHistory = function () { + t.ForgeMgr.ins().history.length > 0 && (this.msgList.dataProvider = new eui.ArrayCollection(t.ForgeMgr.ins().history)); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.sure: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + t.MouseScroller.unbind(this.msgScroller), + this.fEHj(this.sure, this.onTouch), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.sure = null), + (this.msgList = null), + (this.maxHight = null); + }), + i + ); + })(t.gIRYTi); + (t.ForgeRecordView = e), __reflect(e.prototype, "app.ForgeRecordView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.cdTimer = 0), (t.recycleInfo = null), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.recycleBtn, this.onTouch), this.VoZqXH(this.moneyImg, this.mouseMove), this.EeFPm(this.moneyImg, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.recycleBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this), + this.moneyImg.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.moneyImg.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + t.KHNO.ins().remove(this.updateTime, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.recycleInfo) { + var n = i.localToGlobal(); + if (0 == this.recycleInfo.type) { + var s = t.VlaoF.StdItems[this.recycleInfo.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + s = null; + } else { + var r = t.ZAJw.sztgR(this.recycleInfo.type, this.recycleInfo.id); + r && + r[2] && + (t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, r[2], { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }), + (r = null)); + } + n = null; + } + } + }), + (i.prototype.dataChanged = function () { + if (("" == this.moneyImg.source, this.data)) { + var e = t.VlaoF.YBrecoverConfig[this.data]; + if (e) { + (this.angleImg.source = 0 == e.privilegelimit ? "" : "recovery_zs_" + e.privilegelimit), (this.item.data = e.item[0]); + var i = t.ZAJw.sztgR(e.item[0].type, e.item[0].id); + if ((i && (this.title.text = i[0] + ""), (this.recycleInfo = e.displayaward), 0 == e.displayaward.type)) { + var n = t.VlaoF.StdItems[e.displayaward.id]; + n && (this.moneyImg.source = n.icon + ""); + } else { + var s = t.ZAJw.sztgR(e.displayaward.type); + s && (this.moneyImg.source = s[1] + ""); + } + this.recycleMoney.text = "*" + e.displayaward.count; + var a = t.ForgeMgr.ins().recycleInfo; + a && a[this.data] + ? (-1 == a[this.data].num + ? ((this.recycleNum.text = t.CrmPU.language_Omission_txt49), (this.recycleNum.visible = !1)) + : ((this.recycleNum.visible = !0), (this.recycleNum.text = t.CrmPU.language_Common_62 + a[this.data].num)), + (this.cdTime.visible = !1), + a[this.data].cd > 0 + ? (this.txtGrp.addChildAt(this.cdTime, 1), + (this.cdTime.visible = !0), + (this.cdTimer = 1e3 * a[this.data].cd + egret.getTimer()), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this), + this.updateTime()) + : t.lEYZI.Naoc(this.cdTime)) + : ((this.recycleNum.visible = !1), (this.cdTime.visible = !1), t.lEYZI.Naoc(this.cdTime)), + (this.rect.visible = !0); + var r = t.VipData.ins().getMyVipLv(), + o = t.mAYZL.ins().isCheckOpen(e.recoverlimit), + l = 0 == e.privilegelimit || r >= e.privilegelimit; + o && l && (this.rect.visible = !1); + } + } + }), + (i.prototype.updateTime = function () { + var e = this.cdTimer - egret.getTimer(); + (this.cdTime.text = t.CrmPU.language_Omission_txt52 + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), t.DateUtils.TIME_FORMAT_20)), + 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.cdTime.text = ""), (this.cdTime.visible = !1), t.lEYZI.Naoc(this.cdTime), t.ForgeMgr.ins().send_19_7()); + }), + (i.prototype.onTouch = function (e) { + t.ForgeMgr.ins().send_19_6(this.data); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRecycleItemView = e), __reflect(e.prototype, "app.ForgeRecycleItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.name = t.CrmPU.language_Omission_txt55), (i.skinName = "ForgeRecycleViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + (this.recycleList.itemRenderer = t.ForgeRecycleItemView), + (this._dataInfo = new eui.ArrayCollection()), + (this.recycleList.dataProvider = this._dataInfo), + t.MouseScroller.bind(this.recycleScroller), + t.ForgeMgr.ins().send_19_7(), + this.HFTK(t.ForgeMgr.ins().post_19_7, this.updateList), + this.HFTK(t.Nzfh.ins().post_playerVIPChange, this.updateList), + this.HFTK(t.ForgeMgr.ins().postItemUpdated, this.listItemUpdated); + }), + (i.prototype.listItemUpdated = function (e) { + var i = t.ForgeMgr.ins().recycleInfo; + i[e] && this._dataInfo.itemUpdated(e); + }), + (i.prototype.updateList = function () { + var e = t.ForgeMgr.ins().getRecycleArr(); + this._dataInfo.replaceAll(e); + }), + (i.prototype.close = function () { + t.MouseScroller.unbind(this.recycleScroller), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.ForgeRecycleView = e), __reflect(e.prototype, "app.ForgeRecycleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ForgeRefiningShowAttrSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.btn_close, this.onClick); + var n = e[0], + s = t.VlaoF.RefiningBaseConfig[n]; + this.lbDesc.text = s.attribute; + }), + (i.prototype.onClick = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.btn_close, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ForgeRefiningAttrShowView = e), __reflect(e.prototype, "app.ForgeRefiningAttrShowView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.id = this.data.id; + var e = t.ZAJw.MPDpiB(this.data.type, this.data.id), + i = { + type: this.data.type, + id: this.data.id, + count: 0, + }; + this.itembase.data = i; + var n = e >= this.data.count ? 15779990 : 15926018, + s = "|C:" + n + "&T:" + t.CommonUtils.overLength(this.data.count), + a = "|C:" + n + "&T:" + t.CommonUtils.overLength(e) + "|C:0xf0c896&T:/" + t.CommonUtils.overLength(this.data.count); + this.lbGoodsNum.textFlow = t.hETx.qYVI(this.data.type > 0 ? s : a); + }), + (i.prototype.setReplace = function (t) {}), + i + ); + })(t.BaseItemRender); + (t.ForgeRefiningCostGoodsItem = e), __reflect(e.prototype, "app.ForgeRefiningCostGoodsItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.attrValue = this.data.attrValue), (this.txt_next.textFlow = t.hETx.qYVI(this.data.attrStr)); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRefiningCurrAttrItem = e), __reflect(e.prototype, "app.ForgeRefiningCurrAttrItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + var e = this.data; + (this.item.data = e.item), (this.lbEquip.text = t.CrmPU["language_Equip_Type_" + this.data.items.type]), (this.labelDisplay.text = this.data.items.name); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRefiningEquipItem = e), __reflect(e.prototype, "app.ForgeRefiningEquipItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.checkYes, this.onClick); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.checkYes, this.onClick); + }), + (i.prototype.onClick = function () { + var e = this.checkYes.selected; + t.ckpDj.ins().sendEvent(t.CommonEvent.SELECT_REFINING_RESPLACE, [this.goodsId, e]); + }), + (i.prototype.setSeleted = function (t) { + this.checkYes.selected = t; + }), + (i.prototype.dataChanged = function () { + this.goodsId = this.data.itemid; + var e = this.data.price, + i = 2682369, + n = t.VlaoF.StdItems[this.data.itemid], + s = "|C:" + i + "&T:" + e + "|C:0xdcb789&T:" + t.CrmPU.language_CURRENCY_NAME_2 + t.CrmPU.language_Refining_Text2 + "|C:0xe68246&T:" + n.name + "|"; + this.lbMoney.textFlow = t.hETx.qYVI(s); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRefiningMoneyItem = e), __reflect(e.prototype, "app.ForgeRefiningMoneyItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + var e = this.data.sort; + (this.txt_next.textFlow = t.hETx.qYVI(this.data.attrStr)), + 0 == e + ? ((this.iconFlat.visible = !0), (this.iconUp.visible = !1), (this.iconDown.visible = !1)) + : 1 == e + ? ((this.iconFlat.visible = !1), (this.iconUp.visible = !0), (this.iconDown.visible = !1)) + : ((this.iconFlat.visible = !1), (this.iconUp.visible = !1), (this.iconDown.visible = !0)); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRefiningNewAttrItem = e), __reflect(e.prototype, "app.ForgeRefiningNewAttrItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.labelDisplay.text = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.ForgeRefiningTabItem = e), __reflect(e.prototype, "app.ForgeRefiningTabItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.seletePos = 0), + (i.itemCosts = [932, 951]), + (i.attrColor = { + 11: 14838538, + 15: 45296, + 19: 16746752, + 23: 16776960, + 27: 16776960, + 5: 14214305, + 33: 14024885, + 29: 14024885, + 35: 14325396, + 31: 14325396, + }), + (i.skinName = "ForgeRefiningSkin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.equipArr = new eui.ArrayCollection()), + (this.costGoods = new eui.ArrayCollection()), + (this.currAttrArr = new eui.ArrayCollection()), + (this.moneyArr = new eui.ArrayCollection()), + (this.newAttrArr = new eui.ArrayCollection()), + (this.tabItem.itemRenderer = t.ForgeRefiningTabItem), + (this.tabItem.dataProvider = new eui.ArrayCollection(t.CrmPU.language_Refining_Text1)), + (this.tabEq.itemRenderer = t.ForgeRefiningEquipItem); + var i = t.UpstarData.ins().sortEquipXiLian(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + (this.equipArr.source = i), + (this.tabEq.dataProvider = this.equipArr), + (this.listCurAttr.itemRenderer = t.ForgeRefiningCurrAttrItem), + (this.listCurAttr.dataProvider = this.currAttrArr), + (this.listGoods.itemRenderer = t.ForgeRefiningCostGoodsItem), + (this.listGoods.dataProvider = this.costGoods), + (this.listMoney.itemRenderer = t.ForgeRefiningMoneyItem), + (this.listMoney.dataProvider = this.moneyArr), + (this.listNewAttr.itemRenderer = t.ForgeRefiningNewAttrItem), + (this.listNewAttr.dataProvider = this.newAttrArr), + this.tabItem.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.tabEq.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.vKruVZ(this.btnRefining, this.onClick), + this.vKruVZ(this.btnReplace, this.onClick), + this.vKruVZ(this.lbShowDesc, this.onClick), + (this.tabEq.selectedIndex = 0), + this.showCurrentEquip(); + var n = "|C:0xe68246&T:" + t.CrmPU.language_Refining_Text3 + "|"; + (this.lbShowDesc.textFlow = t.hETx.qYVI(n)), t.ckpDj.ins().addEvent(t.CommonEvent.SELECT_REFINING_RESPLACE, this.refreshReplace, this), t.MouseScroller.bind(this.scroller); + }), + (i.prototype.showGetPropsView = function () { + for (var e = 0; 2 > e; e++) t.GetPropsView.getPropsTxt(this["txt_get" + e], this.itemCosts[e]), this.vKruVZ(this["txt_get" + e], this.onGetProps); + }), + (i.prototype.onGetProps = function (e) { + var i, n; + if ( + (e.currentTarget == this.txt_get0 + ? ((i = t.VlaoF.GetItemRouteConfig[this.itemCosts[0]]), + (n = { + type: 0, + id: i.itemid, + count: 0, + })) + : ((i = t.VlaoF.GetItemRouteConfig[this.itemCosts[1]]), + (n = { + type: 0, + id: i.itemid, + count: 0, + })), + !t.mAYZL.ins().ZbzdY(t.GaimItemWin)) + ) { + var s = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + i.itemid, + { + x: s.x, + y: s.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.onClick = function (e) { + var i = this; + if (e.currentTarget == this.btnRefining) { + var n = t.VlaoF.RefiningmaterialsConfig[this.seleteItem.wItemId]; + if (n) { + for (var s = [], a = 0; a < this.listMoney.numElements; a++) { + var r = this.listMoney.getVirtualElementAt(a); + r && r.data && r.checkYes.selected && s.push(r.data.itemid); + } + var o = t.edHC.ins().getItemIDByCost2(n.consume, s); + if (0 != o.itemId) { + var l = t.VlaoF.GetItemRouteConfig[o.itemId]; + if (l) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var h = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + o, + { + x: h.x, + y: h.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21); + } else t.ForgeMgr.ins().send_19_4(this.tabItem.selectedIndex + 1, this.seleteItem.series, this.seletePos); + } + } else if (e.currentTarget == this.lbShowDesc) { + if (!this.tabEq.selectedItem) return; + var n = t.VlaoF.RefiningmaterialsConfig[this.seleteItem.wItemId]; + n && t.mAYZL.ins().open(t.ForgeRefiningAttrShowView, n.refineId); + } else { + var p = t.CrmPU.language_Refining_Text4; + t.CautionView.show( + p, + function () { + t.ForgeMgr.ins().send_19_5(i.tabItem.selectedIndex + 1, i.seleteItem.series); + }, + this + ); + } + }), + (i.prototype.refreshReplace = function (e) { + for (var i = [], n = 0; n < this.listMoney.numElements; n++) { + var s = this.listMoney.getVirtualElementAt(n); + s && s.data && s.checkYes.selected && i.push(s.data.itemid); + } + var a, + r = t.RefiningData.ins().getPosList(); + this.seletePos = 0; + for (var n = 0; n < r.length; n++) (a = r[n]), -1 != i.indexOf(a.itemid) && (this.seletePos = this.seletePos ^ (1 << a.id)); + }), + (i.prototype.showCurrentEquip = function (e) { + if ((void 0 === e && (e = !1), !this.tabEq.selectedItem)) + return ( + this.currAttrArr.removeAll(), + this.costGoods.removeAll(), + this.newAttrArr.removeAll(), + (this.item.data = null), + (this.iconNo.visible = !0), + (this.btnRefining.visible = !1), + void (this.seletePos = 0) + ); + (this.btnRefining.visible = !0), (this.iconNo.visible = !1); + var i = this.tabEq.selectedItem.item; + (this.seleteItem = i), + (this.item.data = i), + i.topLine == i.refining && (i.refining = ""), + this.refiningBind(i.topLine), + this.refiningNewAttrBind(i.topLine, i.refining), + i.refining ? (this.btnReplace.visible = !0) : (this.btnReplace.visible = !1); + var n = t.VlaoF.RefiningmaterialsConfig[i.wItemId]; + if (!n) return this.currAttrArr.removeAll(), this.costGoods.removeAll(), this.moneyArr.removeAll(), this.newAttrArr.removeAll(), void (this.seletePos = 0); + var s = n.consume, + a = this.refiningmaterialsGetData(s); + e ? ((this.listGoods.dataProvider = null), (this.listGoods.dataProvider = this.costGoods), (this.costGoods.source = a)) : this.costGoods.replaceAll(a); + }), + (i.prototype.refiningmaterialsGetData = function (e) { + for (var i = [], n = t.VlaoF.RefiningReplaceConfig, s = 0; s < e.length; s++) { + var a = e[s], + r = a.type, + o = a.id, + l = a.count, + h = n[o] ? !0 : !1; + i.push({ + type: r, + id: o, + count: l, + isShowMoneyTxt: h, + }); + } + return i; + }), + (i.prototype.updateLeftList = function () { + if (0 == this.tabItem.selectedIndex) { + var e = t.UpstarData.ins().sortEquipXiLian(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + this.equipArr.replaceAll(e); + } else { + var e = t.RefiningData.ins().sortEquip(t.ThgMu.ins().bagItem[1]); + this.equipArr.replaceAll(e); + } + (this.lbFail.visible = !1), (this.lbReplaceState.visible = !1), this.showCurrentEquip(!0); + }), + (i.prototype.updateList = function () { + if (0 == this.tabItem.selectedIndex) { + var e = t.UpstarData.ins().sortEquipXiLian(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + this.equipArr.replaceAll(e); + } else { + var e = t.RefiningData.ins().sortEquip(t.ThgMu.ins().bagItem[1]); + this.equipArr.replaceAll(e); + } + (this.lbFail.visible = !1), (this.lbReplaceState.visible = !1), this.showCurrentEquip(); + }), + (i.prototype.onBarItemTap = function (e) { + if (e.currentTarget == this.tabItem) { + if (0 == e.itemIndex) { + var i = t.UpstarData.ins().sortEquipXiLian(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + this.equipArr.source = i; + } else { + var i = t.RefiningData.ins().sortEquip(t.ThgMu.ins().bagItem[1]); + this.equipArr.source = i; + } + this.tabEq.selectedIndex = 0; + } else this.tabEq.selectedIndex = e.itemIndex; + (this.lbFail.visible = !1), (this.lbReplaceState.visible = !1), this.showCurrentEquip(), this.refresh(); + }), + (i.prototype.refresh = function () {}), + (i.prototype.update = function () { + var e = t.ForgeMgr.ins().refiningRuslt; + if (0 == e.errcode) { + (this.lbFail.visible = !1), this.refiningBind(e.currAttr); + var i = this.tabEq.selectedItem.item, + n = t.VlaoF.RefiningmaterialsConfig[i.wItemId], + s = this.refiningmaterialsGetData(n.consume); + this.costGoods.replaceAll(s), + e.replace + ? ((this.lbReplaceState.visible = !0), (this.btnReplace.visible = !1), this.refiningNewAttrBind(e.currAttr, e.currAttr)) + : e.newAttr + ? ((i.refining = e.newAttr), + (this.lbFail.visible = !1), + (this.lbReplaceState.visible = !1), + (this.btnReplace.visible = !0), + this.refiningNewAttrBind(e.currAttr, e.newAttr), + t.uMEZy.ins().IrCm(t.CrmPU.language_Refining_Text6)) + : ((this.lbFail.visible = !0), (this.lbReplaceState.visible = !1), (this.btnReplace.visible = !1), this.newAttrArr.removeAll(), t.uMEZy.ins().IrCm(t.CrmPU.language_Refining_Text5)); + } + }), + (i.prototype.refiningBind = function (e) { + if (e) { + for (var i = e.split("|"), n = [], s = [], a = 0; a < i.length; a++) { + var r = i[a].split(","), + o = { + type: Number(r[0]), + value: Number(r[1]), + }; + n.push(o); + } + for (var a = 0; a < n.length; a++) { + var l = this.attrColor[n[a].type], + h = t.AttributeData.getRiningItemAttStrByType(n[a], l, l); + "" != h && + s.push({ + attrStr: h, + attrValue: n[a], + }); + } + this.currAttrArr.replaceAll(s); + } else this.currAttrArr.removeAll(); + }), + (i.prototype.refiningNewAttrBind = function (e, i) { + if (i) { + for (var n = e.split("|"), s = i.split("|"), a = [], r = [], o = 0; o < s.length; o++) { + var l = s[o].split(","), + h = { + type: Number(l[0]), + value: Number(l[1]), + }; + a.push(h); + } + for (var o = 0; o < a.length; o++) { + for (var p = 1, u = 0, c = n; u < c.length; u++) { + var g = c[u], + h = g.split(","); + h[0] == a[o].type && (p = a[o].value > h[1] ? 1 : a[o].value < h[1] ? 2 : 0); + } + var d = this.attrColor[a[o].type], + m = t.AttributeData.getRiningItemAttStrByType(a[o], d, d); + "" != m && + r.push({ + attrStr: m, + sort: p, + }); + } + this.newAttrArr.replaceAll(r); + } else this.newAttrArr.removeAll(); + }), + (i.prototype.updateCost = function () { + if (this.seleteItem) { + var e = t.VlaoF.RefiningmaterialsConfig[this.seleteItem.wItemId], + i = this.refiningmaterialsGetData(e.consume); + this.costGoods.replaceAll(i); + } + }), + (i.prototype.open = function () { + this.HFTK(t.ForgeMgr.ins().post_19_4, this.update), + this.HFTK(t.ForgeMgr.ins().post_19_5, this.showCurrentEquip), + this.HFTK(t.ThgMu.ins().post_8_6, this.updateList), + this.HFTK(t.bPGzk.ins().post_7_4, this.updateList), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCost), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateCost), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateLeftList), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateLeftList); + var e = t.VlaoF.RefiningReplaceConfig, + i = []; + this.seletePos = 0; + for (var n in e) t.mAYZL.ins().isCheckOpen(e[n].showlimit) && i.push(e[n]); + i.sort(function (t, e) { + return t.id - e.id; + }), + this.moneyArr.replaceAll(i); + }), + (i.prototype.close = function () { + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.tabItem.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.tabEq.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.fEHj(this.btnRefining, this.onClick), + this.fEHj(this.btnReplace, this.onClick), + this.fEHj(this.lbShowDesc, this.onClick), + t.ckpDj.ins().removeEvent(t.CommonEvent.SELECT_REFINING_RESPLACE, this.refreshReplace, this), + t.MouseScroller.unbind(this.scroller), + this.equipArr.removeAll(), + (this.equipArr = null), + (this.seleteItem = null), + (this.seletePos = 0), + this.costGoods.removeAll(), + (this.costGoods = null), + this.currAttrArr.removeAll(), + (this.currAttrArr = null), + this.moneyArr.removeAll(), + (this.moneyArr = null), + this.newAttrArr.removeAll(), + (this.newAttrArr = null); + for (var e = 0; 2 > e; e++) this.fEHj(this["txt_get" + e], this.onGetProps); + }), + i + ); + })(t.gIRYTi); + (t.ForgeRefiningView = e), __reflect(e.prototype, "app.ForgeRefiningView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return t.VoZqXH(t, t.mouseMove), t.EeFPm(t, t.mouseMove), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data, + i = t.VlaoF.StdItems[e.id]; + i && ((this.itemBg.source = "quality_" + i.showQuality), (this.itemIcon.source = i.icon + "")); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.data && this.data.id) { + var n = i.localToGlobal(), + s = t.VlaoF.StdItems[this.data.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + n = null; + } + i = null; + } + }), + i + ); + })(t.BaseItemRender); + (t.ForgeRewardItem = e), __reflect(e.prototype, "app.ForgeRewardItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.txt_next.textFlow = t.hETx.qYVI(this.data.attrStr); + }), + i + ); + })(t.BaseItemRender); + (t.ForgeUpStarNextAttrItem = e), __reflect(e.prototype, "app.ForgeUpStarNextAttrItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.seletePos = 0), (i.itemCosts = [852, 932, 954]), (i.skinName = "ForgeUpStarSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.equipArr = new eui.ArrayCollection()), + (this.costGoods = new eui.ArrayCollection()), + (this.currAttrArr = new eui.ArrayCollection()), + (this.nextAttrArr = new eui.ArrayCollection()), + (this.moneyArr = new eui.ArrayCollection()), + (this.listMoney.itemRenderer = t.ForgeRefiningMoneyItem), + (this.listMoney.dataProvider = this.moneyArr), + (this.tabEq.itemRenderer = t.ForgeRefiningEquipItem); + var i = t.UpstarData.ins().sortEquip(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + (this.equipArr.source = i), + (this.tabEq.dataProvider = this.equipArr), + (this.listCurAttr.itemRenderer = t.ForgeRefiningCurrAttrItem), + (this.listCurAttr.dataProvider = this.currAttrArr), + (this.listGoods.itemRenderer = t.ForgeRefiningCostGoodsItem), + (this.listGoods.dataProvider = this.costGoods), + (this.listNextAttr.itemRenderer = t.ForgeUpStarNextAttrItem), + (this.listNextAttr.dataProvider = this.nextAttrArr), + this.vKruVZ(this.btnUpStar, this.onClick), + this.tabEq.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + t.MouseScroller.bind(this.scroller), + (this.tabEq.selectedIndex = 0), + this.showCurrentEquip(), + this.showGetPropsView(), + t.ckpDj.ins().addEvent(t.CommonEvent.SELECT_REFINING_RESPLACE, this.refreshReplace, this); + }), + (i.prototype.showGetPropsView = function () { + for (var e = 0; 3 > e; e++) t.GetPropsView.getPropsTxt(this["txt_get" + e], this.itemCosts[e]), this.vKruVZ(this["txt_get" + e], this.onGetProps); + }), + (i.prototype.onGetProps = function (e) { + var i; + if ( + ((i = + e.currentTarget == this.txt_get0 + ? t.VlaoF.GetItemRouteConfig[this.itemCosts[0]] + : e.currentTarget == this.txt_get1 + ? t.VlaoF.GetItemRouteConfig[this.itemCosts[1]] + : t.VlaoF.GetItemRouteConfig[this.itemCosts[2]]), + !t.mAYZL.ins().ZbzdY(t.GaimItemWin)) + ) { + var n = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + i.itemid, + { + x: n.x, + y: n.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.onClick = function (e) { + if (this.seleteItem) { + var i = t.VlaoF.UpstarConfig[this.seleteItem.wItemId][this.seleteItem.wStar]; + if (i) { + for (var n = [], s = 0; s < this.listMoney.numElements; s++) { + var a = this.listMoney.getVirtualElementAt(s); + a && a.data && a.checkYes.selected && n.push(a.data.itemid); + } + var r = t.edHC.ins().getItemIDByCost2(i.consume, n); + if (0 != r.itemId) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var o = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + r, + { + x: o.x, + y: o.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + return; + } + } + t.ForgeMgr.ins().send_19_8(this.seleteItem.series, this.seletePos); + } + }), + (i.prototype.onBarItemTap = function (t) { + (this.tabEq.selectedIndex = t.itemIndex), this.showCurrentEquip(); + }), + (i.prototype.refiningmaterialsGetData = function (t) { + for (var e = [], i = 0; i < t.length; i++) { + var n = t[i], + s = n.type, + a = n.id, + r = n.count; + e.push({ + type: s, + id: a, + count: r, + }); + } + return e; + }), + (i.prototype.showCurrentEquip = function () { + if (((this.lbMax.visible = !1), (this.listMoney.visible = !0), !this.tabEq.selectedItem)) return (this.item.visible = !1), void (this.lbTitle.visible = !1); + var e = this.tabEq.selectedItem.item; + (this.seleteItem = e), (this.item.data = e); + var i = e.wStar, + n = t.VlaoF.StdItems[e.wItemId]; + (this.lbTitle.text = n.name), (this.item.visible = !0), (this.lbTitle.visible = !0); + for (var s = 1; 12 >= s; s++) (this["imgStar" + s].source = "forge_xxbg"), i >= s && (this["imgStar" + s].source = 7 > i ? "forge_xx1" : "forge_xx2"); + var a = t.VlaoF.UpstarConfig[e.wItemId]; + if (a) { + var r = a[i] ? a[i] : a[i + 1], + o = Object.keys(a), + l = Number(o[o.length - 1]); + if (i >= l) (this.rateLabel.text = ""), this.costGoods.removeAll(), this.nextAttrArr.removeAll(), (this.listMoney.visible = !1), (this.lbMax.visible = !0); + else { + for (var h = [], s = (t.VlaoF.UpstarPriceConfig, 0); s < r.consume.length; s++) { + var p = r.consume[s], + u = p.type, + c = p.id, + g = p.count; + h.push({ + type: u, + id: c, + count: g, + }); + } + this.costGoods.replaceAll(h); + var d = a[i + 1].attribute; + (this.rateLabel.text = t.CrmPU.language_Common_161 + t.MathUtils.GetPercent(a[i + 1].rate, 1e4) + "\n" + t.CrmPU.language_Omission_txt142), + this.nextAttrArr.replaceAll(this.upStarAttrBind(d, "0xE0AE75", "0x28ee01")); + } + this.currAttrArr.replaceAll(this.upStarAttrBind(r.attribute, "0xbb8f5e", "0xcbc2b2")); + } else this.costGoods.removeAll(), this.nextAttrArr.removeAll(), this.currAttrArr.removeAll(), (this.listMoney.visible = !1); + }), + (i.prototype.upStarAttrBind = function (e, i, n) { + for (var s = [], a = 0; a < e.length; a++) { + var r = t.AttributeData.getItemAttStrByType(e[a], e, 0, !1, !0, i, n); + "" != r && + s.push({ + attrStr: r, + attrValue: e[a], + }); + } + return s; + }), + (i.prototype.updateList = function () { + var e = t.UpstarData.ins().sortEquip(t.caJqU.ins().equips, t.caJqU.ins().suitEquips); + this.equipArr.replaceAll(e), this.showCurrentEquip(), this.updateCost(); + }), + (i.prototype.refreshReplace = function (e) { + for (var i = [], n = 0; n < this.listMoney.numElements; n++) { + var s = this.listMoney.getVirtualElementAt(n); + s && s.data && s.checkYes.selected && i.push(s.data.itemid); + } + var a, + r = t.RefiningData.ins().getStarPosList(); + this.seletePos = 0; + for (var n = 0; n < r.length; n++) (a = r[n]), -1 != i.indexOf(a.itemid) && (this.seletePos = this.seletePos ^ (1 << a.id)); + }), + (i.prototype.open = function () { + this.HFTK(t.bPGzk.ins().post_7_4, this.updateList), + this.HFTK(t.ForgeMgr.ins().post_19_8, this.post_19_8), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCost), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateList); + var e = t.VlaoF.UpstarPriceConfig, + i = []; + this.seletePos = 0; + for (var n in e) i.push(e[n]); + i.sort(function (t, e) { + return t.id - e.id; + }), + this.moneyArr.replaceAll(i); + }), + (i.prototype.post_19_8 = function (e) { + e ? 4 == e && t.Nzfh.ins().payResultMC(0, this.localToGlobal(this.width / 2 + 120, this.height / 2)) : t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2 + 120, this.height / 2)), + this.showCurrentEquip(); + }), + (i.prototype.updateCost = function () { + if (this.seleteItem) { + var e = t.VlaoF.UpstarConfig[this.seleteItem.wItemId]; + if (e) { + var i = this.seleteItem.wStar, + n = e[i] ? e[i] : e[i + 1], + s = Object.keys(e), + a = Number(s[s.length - 1]); + if (i >= a) this.costGoods.removeAll(); + else { + var r = this.refiningmaterialsGetData(n.consume); + this.costGoods.replaceAll(r); + } + } + } + }), + (i.prototype.close = function () { + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.fEHj(this.btnUpStar, this.onClick), + t.ckpDj.ins().removeEvent(t.CommonEvent.SELECT_REFINING_RESPLACE, this.refreshReplace, this), + this.tabEq.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + t.MouseScroller.unbind(this.scroller), + this.equipArr.removeAll(), + (this.equipArr = null), + (this.seleteItem = null), + (this.seletePos = 0), + this.costGoods.removeAll(), + (this.costGoods = null), + this.currAttrArr.removeAll(), + (this.currAttrArr = null), + this.nextAttrArr.removeAll(), + (this.nextAttrArr = null), + this.moneyArr.removeAll(), + (this.nextAttrArr = null); + }), + i + ); + })(t.gIRYTi); + (t.ForgeUpStarView = e), __reflect(e.prototype, "app.ForgeUpStarView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.itemCount = 0), (i.probabilityID = 1), (i.ruleArr = [24, 25, 26]), (i.name = t.CrmPU.language_System33), (i.dSpriteSheet = new how.DSpriteSheet()), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.forgeList.itemRenderer = t.ItemBase), + (this.rewardList.itemRenderer = t.ForgeRewardItem), + (this.useMaterial = how.getQuickLabel(this.dSpriteSheet)), + (this.useMaterial.x = 187), + (this.useMaterial.y = 369), + (this.useMaterial.size = 18), + (this.useMaterial.textWidth = 271), + (this.useMaterial.textColor = 16758867), + (this.useMaterial.textStroke = 1), + (this.useMaterial.textStrokeColor = 0), + (this.useMaterial.textAlign = "center"), + this.addChild(this.useMaterial), + (this.curHave = how.getQuickLabel(this.dSpriteSheet)), + (this.curHave.x = 187), + (this.curHave.y = 399), + (this.curHave.size = 18), + (this.curHave.textWidth = 271), + (this.curHave.textColor = 16758867), + (this.curHave.textStroke = 1), + (this.curHave.textStrokeColor = 0), + (this.curHave.textAlign = "center"), + this.addChild(this.curHave), + (this.obtain.visible = !1), + (this.itemQua.visible = !1), + (this.itemIcon.visible = !1), + (this.rewardList.visible = !1), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + (this.txt_get.visible = !1), + t.GetPropsView.getPropsTxt(this.txt_get, t.VlaoF.ForgeBaseConfig.itemID), + this.initMaterial(); + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[t.VlaoF.ForgeBaseConfig.itemID]; + t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e.itemid, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + }), + (i.prototype.initMaterial = function () { + var e = t.VlaoF.ForgeBaseConfig.itemID, + i = t.VlaoF.ForgeBaseConfig.one; + if (e) { + var n = t.VlaoF.StdItems[e]; + n && i && (this.useMaterial.text = t.zlkp.replace(t.CrmPU.language_Common_35, i, n.name)), + (this.itemCount = t.ThgMu.ins().getItemCountById(e)), + (this.curHave.text = t.zlkp.replace(t.CrmPU.language_Common_36, this.itemCount)); + } + }), + (i.prototype.open = function () { + t.ForgeMgr.ins().send_19_3(), + this.vKruVZ(this.recycle, this.onTouch), + this.vKruVZ(this.bulkRecycle, this.onTouch), + this.vKruVZ(this.historyRecord, this.onTouch), + this.vKruVZ(this.forge, this.onTouch), + this.vKruVZ(this.forgeTen, this.onTouch), + this.vKruVZ(this.rule, this.onTouch), + this.VoZqXH(this.itemIcon, this.mouseMove), + this.EeFPm(this.itemIcon, this.mouseMove), + this.HFTK(t.ForgeMgr.ins().post_19_3, this.refeshReward), + this.HFTK(t.ThgMu.ins().post_8_1, this.initMaterial), + this.HFTK(t.ThgMu.ins().post_8_3, this.initMaterial), + this.HFTK(t.ThgMu.ins().post_8_4, this.initMaterial), + this.HFTK(t.ThgMu.ins().post_8_10, this.initMaterial), + this.HFTK(t.ForgeMgr.ins().post_19_2, this.updaView), + t.MouseScroller.bind(this.scroller), + t.ckpDj.ins().addEvent(t.FriendEvent.FORGE_MENU_ONCLICK, this.onMenuClick, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this); + }), + (i.prototype.updaView = function (e) { + if (e.length > 0) + if (1 == e.length) { + (this.rewardList.visible = !1), (this.oneGrp.visible = !0), (this.obtain.visible = !0), (this.itemQua.visible = !0), (this.itemIcon.visible = !0); + var i = e[0].id; + if (i) { + var n = t.VlaoF.StdItems[i]; + n && ((this.itemQua.source = "quality_" + n.showQuality), (this.itemIcon.itemID = n.id), (this.itemIcon.source = n.icon + "")); + } + } else (this.oneGrp.visible = !1), (this.rewardList.visible = !0), (this.obtain.visible = !0), (this.rewardList.dataProvider = new eui.ArrayCollection(e)); + }), + (i.prototype.refeshReward = function (e) { + this.probabilityID = e; + var i = t.VlaoF.ForgeConfig[e]; + i && i.showRewards ? (this.forgeList.dataProvider = new eui.ArrayCollection(i.showRewards)) : (this.forgeList.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (i && i.itemID) { + var n = i.localToGlobal(), + s = t.VlaoF.StdItems[i.itemID]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } + } + }), + (i.prototype.onTouch = function (e) { + var i = t.VlaoF.ForgeBaseConfig.one, + n = t.VlaoF.ForgeBaseConfig.ten, + s = t.VlaoF.ForgeBaseConfig.forgeonelevel, + a = t.VlaoF.ForgeBaseConfig.forgetenlevel, + r = t.NWRFmB.ins().nkJT(); + switch (e.currentTarget) { + case this.recycle: + t.mAYZL.ins().ZbzdY(t.BagView) || + t.mAYZL.ins().open(t.BagView, { + 0: 1, + }), + t.mAYZL.ins().ZbzdY(t.BagRecycleView) || t.mAYZL.ins().open(t.BagRecycleView); + break; + case this.bulkRecycle: + t.mAYZL.ins().open(t.ForgeFunMenuView, this.bulkRecycle.localToGlobal(0, 0), t.CrmPU.language_System30); + break; + case this.historyRecord: + t.mAYZL.ins().ZbzdY(t.ForgeRecordView) || t.mAYZL.ins().open(t.ForgeRecordView); + break; + case this.forge: + var o = t.VlaoF.BagRemainConfig[8]; + if (o) { + var l = t.ThgMu.ins().getBagCapacity(o.bagremain); + if (l) { + if (i && s && r) { + var h = r.propSet; + +h.mBjV() >= s + ? this.itemCount >= i + ? t.ForgeMgr.ins().send_19_2(1) + : (t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21), this.onGetProps()) + : t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips22, s)); + } + } else t.uMEZy.ins().IrCm(o.bagtips); + } + break; + case this.forgeTen: + var p = t.VlaoF.BagRemainConfig[9]; + if (p) { + var l = t.ThgMu.ins().getBagCapacity(p.bagremain); + if (l) { + if (n && a && r) { + var u = r.propSet; + +u.mBjV() >= a + ? this.itemCount >= n + ? t.ForgeMgr.ins().send_19_2(10) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21) + : t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips22, a)); + } + } else t.uMEZy.ins().IrCm(p.bagtips); + } + break; + case this.rule: + var c = this.ruleArr[this.probabilityID - 1]; + c && + t.mAYZL.ins().open(t.RuleView, { + id: c, + }); + } + }), + (i.prototype.onMenuClick = function (e) { + var i = e[0], + n = new t.ItemSeries(); + n.setData(0); + var s = t.VlaoF.BagRemainConfig[5], + a = !1; + switch ((s && (a = t.ThgMu.ins().getBagCapacity(s.bagremain)), i)) { + case "lowEquip": + a ? t.ThgMu.ins().send_8_10(0, n) : s && t.uMEZy.ins().IrCm(s.bagtips); + break; + case "fertileEquip": + a + ? t.CautionView.show( + t.CrmPU.language_Common_31, + function () { + t.ThgMu.ins().send_8_10(1, n); + }, + this + ) + : s && t.uMEZy.ins().IrCm(s.bagtips); + break; + case "zuMaEquip": + a + ? t.CautionView.show( + t.CrmPU.language_Common_32, + function () { + t.ThgMu.ins().send_8_10(2, n); + }, + this + ) + : s && t.uMEZy.ins().IrCm(s.bagtips); + } + }), + (i.prototype.onCloseMenu = function () { + t.mAYZL.ins().close(t.ForgeFunMenuView); + }), + (i.prototype.close = function () { + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + t.MouseScroller.unbind(this.scroller), + this.fEHj(this.recycle, this.onTouch), + this.fEHj(this.bulkRecycle, this.onTouch), + this.fEHj(this.historyRecord, this.onTouch), + this.fEHj(this.forge, this.onTouch), + this.fEHj(this.forgeTen, this.onTouch), + this.fEHj(this.rule, this.onTouch), + t.mAYZL.ins().ZbzdY(t.ForgeFunMenuView) && t.mAYZL.ins().close(t.ForgeFunMenuView), + this.itemIcon.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.itemIcon.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + t.ckpDj.ins().removeEvent(t.FriendEvent.FORGE_MENU_ONCLICK, this.onMenuClick, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.dSpriteSheet.dispose(), + (this.obtain = null), + (this.recycle = null), + (this.bulkRecycle = null), + (this.historyRecord = null), + (this.forge = null), + (this.forgeTen = null), + (this.rule = null), + (this.oneGrp = null), + (this.itemQua = null), + (this.itemIcon = null), + (this.forgeList = null), + (this.rewardList = null), + (this.dSpriteSheet = null), + (this.useMaterial = null), + (this.curHave = null), + (this.itemCount = null), + (this.probabilityID = null), + (this.ruleArr = null); + }), + i + ); + })(t.gIRYTi); + (t.ForgeView = e), __reflect(e.prototype, "app.ForgeView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ForgeWinSkin"), (i.name = "ForgeWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + (this.forgeUpStar = new t.ForgeUpStarView()), + (this.forgeUpStar.skinName = "ForgeUpStarSkin"), + (this.forgeUpStar.name = "升星"), + (this.forgeUpStar.left = 0), + (this.forgeUpStar.right = 0), + (this.forgeUpStar.top = 0), + (this.forgeUpStar.bottom = 0), + (this.forgeUpStar.x = 0), + (this.forgeUpStar.y = 0), + this.viewStack.addChild(this.forgeUpStar); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + (this.ruleTips.visible = !1), this.dragDropUI.setTitle("升星"), this.forgeUpStar.open(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.forgeUpStar && this.forgeUpStar.close(), this.dragDropUI.destroy(), (this.dragDropUI = null), (this.ruleTips = null); + }), + i + ); + })(t.gIRYTi); + (t.ForgeWin = e), __reflect(e.prototype, "app.ForgeWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SynthesisItem2CostItemSkin"), t.VoZqXH(t.costName, t.mouseMove), t.EeFPm(t.costName, t.mouseMove), t; + } + return ( + __extends(i, e), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.costName.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.costName.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.data) { + var n = i.localToGlobal(); + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this.data.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } + } + } + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.iconImg.visible = !1; + var e = 15064527, + i = 0, + n = t.ClwSVR.NAME_RED; + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this.data.id]; + if (s) { + (e = t.ClwSVR.GOODS_COLOR[s.showQuality]), (i = t.ZAJw.MPDpiB(this.data.type, this.data.id)), (n = i >= this.data.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED); + var a = ""; + (a = t.CommonUtils.overLength(i)), (this.costName.textFlow = t.hETx.qYVI("|C:" + e + "&T:" + s.name + "| (|C:" + n + "&T:" + a + "|/" + this.data.count + ")")); + } + } else { + this.iconImg.visible = !0; + var r = t.VlaoF.NumericalIcon[this.data.type]; + if (r) { + var o = ""; + (o = 2 == this.data.type ? t.CrmPU.language_Omission_txt101 : r.name + ""), + (this.iconImg.source = r.icon + ""), + (i = t.ZAJw.MPDpiB(this.data.type, this.data.id)), + (n = i >= this.data.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED); + var l = ""; + (l = this.data.count + ""), + (3 != this.data.type || 4 != this.data.type) && (l = t.CommonUtils.overLength(this.data.count)), + (this.costName.textFlow = t.hETx.qYVI("|C:" + e + "&T:" + o + "| (|C:" + n + "&T:" + t.CommonUtils.overLengthChange(i) + "|/" + l + ")")); + } + } + } + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisItem2ItemView = e), __reflect(e.prototype, "app.SynthesisItem2ItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SynthesisItem2Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.costList.itemRenderer = t.SynthesisItem2ItemView), + this.vKruVZ(this.syntheticBtn, this.onTouch), + this.vKruVZ(this.syntheticBtn1, this.onTouch), + this.vKruVZ(this.syntheticBtn2, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.syntheticBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this), + this.syntheticBtn1.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this), + this.syntheticBtn2.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this); + }), + (i.prototype.onTouch = function (t) { + switch (t.currentTarget) { + case this.syntheticBtn: + case this.syntheticBtn1: + this.onSynthetic(1); + break; + case this.syntheticBtn2: + this.onSynthetic(10); + } + }), + (i.prototype.onSynthetic = function (e) { + var i = this, + n = t.ForgeMgr.ins().isSynthesisItem(this.itemCfg.table, e), + s = 1 == e ? t.VlaoF.BagRemainConfig[6] : t.VlaoF.BagRemainConfig[19], + a = !1; + if ((s && (a = t.ThgMu.ins().getBagCapacity(s.bagremain)), n)) + if (a) { + var r = t.ForgeMgr.ins().getShowTips(this.itemCfg.table, e); + if (0 == this.itemCfg.compose.type) { + var o = t.VlaoF.StdItems[this.itemCfg.compose.id]; + o && (r += "\n" + t.CrmPU.language_Common_34 + this.itemCfg.compose.count * e + t.CrmPU.language_Common_38 + o.name); + } else { + var l = t.ZAJw.sztgR(this.itemCfg.compose.type, this.itemCfg.compose.id); + l && (r += "\n" + t.CrmPU.language_Common_34 + this.itemCfg.compose.count * e + t.CrmPU.language_Common_38 + l[0]); + } + this.itemCfg.clicklimit + ? t.ForgeMgr.ins().send_19_1(this.itemCfg.Eid, e) + : t.CautionView.show( + r, + function () { + t.ForgeMgr.ins().send_19_1(i.itemCfg.Eid, e); + }, + this, + null, + null, + null, + null, + t.XwoNAr.COMPOSE + ); + } else s && t.uMEZy.ins().IrCm(s.bagtips); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21); + (n = null), (a = null); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.limitLab.visible = !1; + var e = 15064527; + if (((this.itemCfg = this.data), this.itemCfg)) { + if (this.itemCfg.compose) + if (((this.itemData.data = this.itemCfg.compose), 0 == this.itemCfg.compose.type)) { + var i = t.VlaoF.StdItems[this.itemCfg.compose.id]; + i && ((e = t.ClwSVR.GOODS_COLOR[i.showQuality]), (this.itemName.textFlow = t.hETx.qYVI("|C:" + e + "&T:" + i.name + "|"))); + } else { + var n = t.VlaoF.NumericalIcon[this.itemCfg.compose.type]; + n && (this.itemName.text = this.itemCfg.compose.count + n.name); + } + this.itemCfg.table && (this.costList.dataProvider = new eui.ArrayCollection(this.itemCfg.table)), + (this.syntheticBtn.visible = !1), + (this.syntheticBtn1.visible = !1), + (this.syntheticBtn2.visible = !1), + (this.redPoint.visible = !1), + (this.redPoint1.visible = !1), + (this.redPoint2.visible = !1); + var s = t.mAYZL.ins().isCheckOpen(this.itemCfg.mergelimit); + if (s) + if (this.itemCfg.mergebutton10) { + var a = t.ZAJw.isRedDot(this.itemCfg.table); + a + ? ((this.syntheticBtn1.label = this.itemCfg.text), (this.syntheticBtn1.alpha = 1), (this.syntheticBtn1.labelDisplay.textColor = 15779990)) + : ((this.syntheticBtn1.label = t.CrmPU.language_Omission_txt102), (this.syntheticBtn1.alpha = 0.7), (this.syntheticBtn1.labelDisplay.textColor = 8420211)), + (this.syntheticBtn1.enabled = !0), + (this.syntheticBtn1.visible = !0); + var r = t.ZAJw.isRedDot(this.itemCfg.table, 10); + r + ? ((this.syntheticBtn2.label = this.itemCfg.buttontxt10), (this.syntheticBtn2.alpha = 1), (this.syntheticBtn2.labelDisplay.textColor = 15779990)) + : ((this.syntheticBtn2.label = t.CrmPU.language_Omission_txt102), (this.syntheticBtn2.alpha = 0.7), (this.syntheticBtn2.labelDisplay.textColor = 8420211)), + (this.syntheticBtn2.enabled = !0), + (this.syntheticBtn2.visible = !0), + this.itemCfg.redpoint && + ((this.redPoint1.visible = t.ForgeMgr.ins().getForgeRed(this.itemCfg.table, this.itemCfg.redpointlimit) && s), + this.redPoint1.setRedImg(this.itemCfg.redpoint), + (this.redPoint2.visible = t.ForgeMgr.ins().getForgeRed(this.itemCfg.table, this.itemCfg.redpointlimit, 10) && s), + this.redPoint2.setRedImg(this.itemCfg.redpoint)); + } else { + var o = t.ZAJw.isRedDot(this.itemCfg.table); + o + ? ((this.syntheticBtn.label = this.itemCfg.text), (this.syntheticBtn.alpha = 1), (this.syntheticBtn.labelDisplay.textColor = 15779990)) + : ((this.syntheticBtn.label = t.CrmPU.language_Omission_txt102), (this.syntheticBtn.alpha = 0.7), (this.syntheticBtn.labelDisplay.textColor = 8420211)), + (this.syntheticBtn.enabled = !0), + (this.syntheticBtn.visible = !0), + this.itemCfg.redpoint && + ((this.redPoint.visible = t.ForgeMgr.ins().getForgeRed(this.itemCfg.table, this.itemCfg.redpointlimit) && s), this.redPoint.setRedImg(this.itemCfg.redpoint)); + } + else (this.limitLab.visible = !0), (this.limitLab.textFlow = t.hETx.qYVI(this.itemCfg.limitTips)); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisItem2View = e), __reflect(e.prototype, "app.SynthesisItem2View"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SynthesisItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.sure, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.sure.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this); + }), + (i.prototype.onTouch = function (e) { + var i = this; + switch (e.currentTarget) { + case this.sure: + var n = t.ForgeMgr.ins().isSynthesisItem(this.itemCfg.table), + s = t.VlaoF.BagRemainConfig[6], + a = !1; + if ((s && (a = t.ThgMu.ins().getBagCapacity(s.bagremain)), n)) + if (a) { + var r = t.ForgeMgr.ins().getShowTips(this.itemCfg.table), + o = t.ZAJw.sztgR(this.itemCfg.compose.type, this.itemCfg.compose.id); + o && (r += "\n" + t.CrmPU.language_Common_34 + this.itemCfg.compose.count + t.CrmPU.language_Common_38 + o[0]), + this.itemCfg.clicklimit + ? t.ForgeMgr.ins().send_19_1(this.itemCfg.Eid, 1) + : t.CautionView.show( + r, + function () { + t.ForgeMgr.ins().send_19_1(i.itemCfg.Eid, 1); + }, + this, + null, + null, + null, + null, + t.XwoNAr.COMPOSE + ); + } else s && t.uMEZy.ins().IrCm(s.bagtips); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21); + (n = null), (a = null); + } + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.limitLab.visible = !1; + var e = 15064527; + if (((this.itemCfg = this.data), this.itemCfg && this.itemCfg.table)) { + this.currentState = "item" + this.itemCfg.table.length; + for (var i = 0; i < this.itemCfg.table.length; i++) { + this["item" + (i + 1)].data = this.itemCfg.table[i]; + var n = 0, + s = t.ClwSVR.NAME_RED; + if (0 == this.itemCfg.table[i].type) { + var a = t.VlaoF.StdItems[this.itemCfg.table[i].id]; + a && + ((e = t.ClwSVR.GOODS_COLOR[a.showQuality]), + (n = t.ZAJw.MPDpiB(this.itemCfg.table[i].type, this.itemCfg.table[i].id)), + (s = n >= this.itemCfg.table[i].count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED), + (this["name" + (i + 1)].textFlow = t.hETx.qYVI("|C:" + e + "&T:" + a.name + "|\n|C:" + s + "&T:" + t.CommonUtils.overLengthChange(n) + "|/" + this.itemCfg.table[i].count))); + } else { + var r = t.VlaoF.NumericalIcon[this.itemCfg.table[i].type]; + if (r) { + (n = t.ZAJw.MPDpiB(this.itemCfg.table[i].type, this.itemCfg.table[i].id)), (s = n >= this.itemCfg.table[i].count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED); + var o = ""; + (o = this.itemCfg.table[i].count + ""), + (3 != this.itemCfg.table[i].type || 4 != this.itemCfg.table[i].type) && (o = t.CommonUtils.overLength(this.itemCfg.table[i].count)), + (this["name" + (i + 1)].textFlow = t.hETx.qYVI(r.name + "\n|C:" + s + "&T:" + t.CommonUtils.overLengthChange(n) + "/" + o)); + } + } + } + if (this.itemCfg.compose) + if (((this.itemData.data = this.itemCfg.compose), 0 == this.itemCfg.compose.type)) { + var l = t.VlaoF.StdItems[this.itemCfg.compose.id]; + l && + ((e = t.ClwSVR.GOODS_COLOR[l.showQuality]), + this.itemCfg.compose.count > 1 + ? (this.itemName.textFlow = t.hETx.qYVI("|C:" + e + "&T:" + l.name + "|\nx" + this.itemCfg.compose.count)) + : (this.itemName.textFlow = t.hETx.qYVI("|C:" + e + "&T:" + l.name + "|"))); + } else { + var r = t.VlaoF.NumericalIcon[this.itemCfg.compose.type]; + r && (this.itemName.text = r.name + "\nx" + this.itemCfg.compose.count); + } + (this.sure.label = this.itemCfg.text), (this.sure.enabled = !0), (this.sure.visible = !0), (this.sure.labelDisplay.textColor = 15779990); + var h = t.mAYZL.ins().isCheckOpen(this.itemCfg.mergelimit); + if (h) { + var p = t.ZAJw.isRedDot(this.itemCfg.table); + p ? (this.sure.alpha = 1) : ((this.sure.label = t.CrmPU.language_Omission_txt102), (this.sure.alpha = 0.7), (this.sure.labelDisplay.textColor = 8420211)); + } else (this.sure.visible = !1), (this.limitLab.visible = !0), (this.limitLab.textFlow = t.hETx.qYVI(this.itemCfg.limitTips)); + (this.redPoint.visible = !1), + this.itemCfg.redpoint && ((this.redPoint.visible = t.ForgeMgr.ins().getForgeRed(this.itemCfg.table, this.itemCfg.redpointlimit) && h), this.redPoint.setRedImg(this.itemCfg.redpoint)); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisItemView = e), __reflect(e.prototype, "app.SynthesisItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SynthesisTab2Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.data && ((this.itemName.text = this.data.name), (this.redPoint.visible = t.ForgeMgr.ins().getTwoLvRed(this.data.id, this.data.index))); + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisTab2View = e), __reflect(e.prototype, "app.SynthesisTab2View"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SynthesisTabSkin"), (t.currentState = "clickUp"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.list.itemRenderer = t.SynthesisTab2View), this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClickBoss, this); + }), + (i.prototype.onClickBoss = function (e) { + var i = this.list.selectedItem, + n = t.mAYZL.ins().ZzTs(t.RecycleWin).synthesisPanel; + n.refreshScroller(), n.updateView(i), n.unSelectList(), n.setCurIndex(this.data.id, e.itemIndex + 1), (this.list.selectedIndex = e.itemIndex); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClickBoss, this); + }), + (i.prototype.dataChanged = function () { + if (this.data && ((this.redPoint.visible = t.ForgeMgr.ins().getOneLvRed(this.data.id)), (this.equipName.text = this.data.btn_source), this.data.id)) { + var e = t.ForgeMgr.ins().getMergeSecMenu(this.data.id); + e && (this.list.dataProvider = new eui.ArrayCollection(e)); + } + }), + (i.prototype.setCurState = function (t) { + this.currentState = t; + }), + i + ); + })(t.BaseItemRender); + (t.SynthesisTabView = e), __reflect(e.prototype, "app.SynthesisTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.selectedIndex = 0), (i.tadIdx = 1), (i.tabListIdx = 1), (i.name = t.CrmPU.language_Common_34), (i.skinName = "SynthesisViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.open = function (e, i) { + (this.tadIdx = e), + (this.tabListIdx = i), + (this.itemList2.itemRenderer = t.SynthesisItemView), + (this._itemListData2 = new eui.ArrayCollection()), + (this.itemList2.dataProvider = this._itemListData2), + (this.itemList1.itemRenderer = t.SynthesisItem2View), + (this._itemListData1 = new eui.ArrayCollection()), + (this.itemList1.dataProvider = this._itemListData1), + (this.TabList.itemRenderer = t.SynthesisTabView), + (this._tabListData = new eui.ArrayCollection()), + (this.TabList.dataProvider = this._tabListData), + this.TabList.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickMenu, this), + t.MouseScroller.bind(this.itemScroller1), + t.MouseScroller.bind(this.itemScroller2), + t.MouseScroller.bind(this.tabScroller), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.moneyChange), + this.HFTK(t.ForgeMgr.ins().post_19_1, this.post_19_1), + this.HFTK(t.ForgeMgr.ins().post_updateItem, this.updateRedView); + var n = t.ForgeMgr.ins().getMergeMenu(); + this._tabListData.replaceAll(n), this.unSelectTab(), this.unSelectList(), t.KHNO.ins().remove(this.defaultSelect, this), t.KHNO.ins().tBiJo(100, 1, this.defaultSelect, this), (n = null); + }), + (i.prototype.defaultSelect = function () { + t.KHNO.ins().remove(this.defaultSelect, this), this.selectList(this.tadIdx, this.tabListIdx, this.tabListIdx - 1); + }), + (i.prototype.post_19_1 = function () { + this.updateRedView(), t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2 + this.itemScroller1.x - 80, this.height / 2)); + }), + (i.prototype.moneyChange = function () { + t.KHNO.ins().RTXtZF(this.updateRedView, this) || t.KHNO.ins().tBiJo(2e3, 1, this.updateRedView, this); + }), + (i.prototype.updateRedView = function () { + var e = t.ForgeMgr.ins().getMergeMenu(); + this._tabListData.replaceAll(e), this.selectList(this.tadIdx, this.tabListIdx, this.tabListIdx - 1); + }), + (i.prototype.setCurIndex = function (t, e) { + (this.tadIdx = t), (this.tabListIdx = e); + }), + (i.prototype.refreshScroller = function () { + (this.itemScroller2.viewport.scrollV = 0), this.itemScroller2.stopAnimation(); + }), + (i.prototype.updateView = function (e) { + (this.itemScroller2.visible = this.itemScroller1.visible = !1), (this.isVisible.visible = !1); + var i = t.ForgeMgr.ins().getItemSynthesis(e.id, e.index); + 1 == e.Uitype + ? i.length > 0 + ? ((this.itemScroller1.visible = !0), this._itemListData1.replaceAll(i)) + : (this.isVisible.visible = !0) + : i.length > 0 + ? ((this.itemScroller2.visible = !0), this._itemListData2.replaceAll(i)) + : (this.isVisible.visible = !0); + }), + (i.prototype.unSelectTab = function () { + for (var t = this.TabList.dataProvider.length, e = 0; t > e; e++) { + var i = this.TabList.getVirtualElementAt(e); + i && (i.currentState = "clickUp"); + } + t = null; + }), + (i.prototype.unSelectList = function () { + for (var t = this.TabList.dataProvider.length, e = 0; t > e; e++) { + var i = this.TabList.getVirtualElementAt(e); + if (i) { + var n = i.list; + n.selectedIndex = -1; + } + } + t = null; + }), + (i.prototype.selectList = function (t, e, i) { + void 0 === i && (i = 0); + for (var n = 0, s = 0; s < this._tabListData.length; s++) { + var a = this._tabListData.getItemAt(s).id; + if (t == a) { + n = s; + break; + } + } + var r = this.TabList.getVirtualElementAt(n); + if (r) { + r.currentState = "clickDown"; + var o = r.list; + o.selectedIndex = i; + var l = o.dataProvider.getItemAt(e - 1); + l && this.updateView(l), (o = null), (l = null); + } + (n = null), (r = null); + }), + (i.prototype.onClickMenu = function (t) { + if (t.target.parent instanceof eui.Group) { + this.tadIdx = this.TabList.selectedIndex; + var e = this.TabList.selectedIndex; + this.selData = this.TabList.getVirtualElementAt(e); + var i = "clickUp" == this.selData.currentState ? "clickDown" : "clickUp"; + this.selData.setCurState(i), this.TabList.validateNow(), (e = null), (i = null); + } + }), + (i.prototype.close = function () { + this.$onClose(), + t.MouseScroller.unbind(this.itemScroller2), + t.MouseScroller.unbind(this.tabScroller), + t.MouseScroller.unbind(this.itemScroller1), + t.KHNO.ins().remove(this.defaultSelect, this), + t.KHNO.ins().RTXtZF(this.updateRedView, this) && t.KHNO.ins().remove(this.updateRedView, this), + this.TabList.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickMenu, this), + (this.TabList = null), + (this.selectedIndex = null), + (this.selData = null), + (this._tabListData = null), + (this.itemList2 = null), + (this.isVisible = null); + }), + i + ); + })(t.gIRYTi); + (t.SynthesisView = e), __reflect(e.prototype, "app.SynthesisView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.friendsList = []), + (i.blackList = []), + (i.concernList = []), + (i.applyList = []), + (i.reportList = []), + (i._NearPlayerListData = []), + (i.sysId = t.jDIWJt.Friends), + i.YrTisc(t.FriendProtocol.sc_friend_list, i.post_gFriendsList), + i.YrTisc(t.FriendProtocol.sc_friend_req_info, i.postReqList), + i.YrTisc(t.FriendProtocol.sc_friend_del_friend, i.post_gDelRqInfo), + i.YrTisc(t.FriendProtocol.sc_friend_reprot_list, i.post_Report), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.sendFriendsList = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_list); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.sendAddFriend = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_add_friend); + i.writeUnsignedInt(e.id), i.writeString(e.nickName), this.evKig(i); + }), + (i.prototype.sendAllAddFriend = function () { + var e = this.MxGiq(t.FriendProtocol.cs_friend_all_add_friend); + this.evKig(e); + }), + (i.prototype.sendResponseFriend = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_add_rutrun_friend); + i.writeByte(e.isAgree), i.writeUnsignedInt(e.id), this.evKig(i); + }), + (i.prototype.sendAddBlackList = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_add_blacklist); + i.writeUnsignedInt(e.id), i.writeString(e.nickName), this.evKig(i); + }), + (i.prototype.sendDeleteFirends = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_del_friend); + i.writeByte(e.type), i.writeUnsignedInt(e.id), i.writeString(e.nickName), this.evKig(i); + }), + (i.prototype.post_gDelRqInfo = function (t) { + this.delId = t.readUnsignedInt(); + }), + (i.prototype.sendAddConcern = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_add_concern); + i.writeUnsignedInt(e.id), i.writeString(e.nickName), this.evKig(i); + }), + (i.prototype.sendSetConcernColor = function (e) { + var i = this.MxGiq(t.FriendProtocol.cs_friend_set_concern_color); + i.writeByte(e.color), i.writeUnsignedInt(e.id), this.evKig(i); + }), + (i.prototype.sendReport = function () { + var e = this.MxGiq(t.FriendProtocol.cs_friend_req_report_info); + this.evKig(e); + }), + (i.prototype.post_Report = function (e) { + for (var i = [], n = e.readByte(), s = t.FriendState.Report, a = 0; n > a; a++) { + var r = new t.SCFriendData(); + (r.roleId = e.readUnsignedInt()), (r.nickName = e.readString()), (r.time = e.readUnsignedInt()), (r.sceneID = e.readUnsignedInt()), (r.killType = e.readByte()), (r.type = s), i.push(r); + } + i.sort(function (t, e) { + return t.time > e.time ? -1 : t.time < e.time ? 1 : void 0; + }), + (this.reportList = i); + }), + (i.prototype.post_gFriendsList = function (e) { + for (var i, n = [], s = e.readInt(), a = e.readByte(), r = 0; s > r; r++) + (i = new t.SCFriendData()), + (i.roleId = e.readUnsignedInt()), + (i.nickName = e.readString()), + (i.profession = e.readByte()), + (i.level = e.readInt()), + (i.icon = e.readByte()), + (i.sex = e.readByte()), + (i.color = e.readByte()), + (i.turn = e.readByte()), + (i.online = e.readByte()), + (i.guild = e.readString()), + (i.time = e.readUnsignedInt()), + (i.superLv = e.readUnsignedInt()), + (i.type = a), + n.push(i); + n.sort(function (t, e) { + return t.online && !e.online ? -1 : !t.online && e.online ? 1 : void 0; + }), + a == t.FriendState.Friend ? (this.friendsList = n) : a == t.FriendState.BlackList ? (this.blackList = n) : a == t.FriendState.Concern && (this.concernList = n), + t.EhSWiR.updateNaemColor(); + }), + (i.prototype.findIsFriend = function (t) { + for (var e = 0; e < this.friendsList.length; e++) if (t == this.friendsList[e].roleId) return !0; + return !1; + }), + (i.prototype.getListNumbyType = function (t) { + var e = 0; + return ( + 0 == t + ? (e = this.friendsList.length) + : 1 == t + ? (e = this._NearPlayerListData.length) + : 2 == t + ? (e = this.concernList.length) + : 3 == t + ? (e = this.blackList.length) + : 4 == t + ? (e = this.applyList.length) + : 5 == t && (e = this.reportList.length), + e + ); + }), + (i.prototype.getFriendOnLineNum = function () { + for (var t = 0, e = 0; e < this.friendsList.length; e++) 1 == this.friendsList[e].online && t++; + return t; + }), + (i.prototype.getAttentionOnLineNum = function () { + for (var t = 0, e = 0; e < this.concernList.length; e++) 1 == this.concernList[e].online && t++; + return t; + }), + (i.prototype.concernIsFriend = function (t) { + for (var e, i = 0; i < this.concernList.length; i++) if (((e = this.concernList[i]), t == e.roleId)) return e; + return null; + }), + (i.prototype.postReqList = function (e) { + var i = new t.SCFriendData(); + (i.roleId = e.readUnsignedInt()), + (i.nickName = e.readString()), + (i.level = e.readInt()), + (i.profession = e.readByte()), + (i.sex = e.readByte()), + (i.superLv = e.readUnsignedInt()), + (i.type = t.FriendState.Other); + for (var n = 0; n < this.applyList.length; n++) if (i.roleId == this.applyList[n].roleId) return; + this.applyList.push(i); + }), + (i.prototype.setNearPlayerListData = function () { + this._NearPlayerListData = t.edHC.ins().nearPlayerList; + }), + (i.prototype.getNearPlayerListData = function () { + return this._NearPlayerListData; + }), + (i.prototype.delNearPlayerListData = function (e) { + for (var i = 0; i < this._NearPlayerListData.length; i++) e == this._NearPlayerListData[i].roleId && this._NearPlayerListData.splice(i, 1); + t.ckpDj.ins().sendEvent(t.FriendEvent.ITEM_ONCHANGE); + }), + i + ); + })(t.DlUenA); + (t.KWGP = e), __reflect(e.prototype, "app.KWGP"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.superLv = 0; + } + return ( + (t.prototype.getColor = function () { + var t; + return (t = 1 == this.color ? 14549407 : 2 == this.color ? 4513277 : 3 == this.color ? 7873229 : 4 == this.color ? 14549407 : 15856626); + }), + t + ); + })(); + (t.SCFriendData = e), __reflect(e.prototype, "app.SCFriendData"); + var i = (function () { + function t() {} + return t; + })(); + (t.CSFriend_Add_Data = i), __reflect(i.prototype, "app.CSFriend_Add_Data"); + var n = (function () { + function t() {} + return t; + })(); + (t.CSFriend_Del_Data = n), __reflect(n.prototype, "app.CSFriend_Del_Data"); + var s = (function () { + function t() {} + return t; + })(); + (t.CSFriend_Return_Data = s), __reflect(s.prototype, "app.CSFriend_Return_Data"); + var a = (function () { + function t() {} + return t; + })(); + (t.CSFriend_Add_Concern_Data = a), __reflect(a.prototype, "app.CSFriend_Add_Concern_Data"); + var r = (function () { + function t() {} + return t; + })(); + (t.CSFriend_set_Concern_Color_Data = r), __reflect(r.prototype, "app.CSFriend_set_Concern_Color_Data"); + var o; + !(function (t) { + (t[(t.Friend = 1)] = "Friend"), (t[(t.BlackList = 2)] = "BlackList"), (t[(t.Concern = 3)] = "Concern"), (t[(t.Near = 4)] = "Near"), (t[(t.Report = 5)] = "Report"), (t[(t.Other = 6)] = "Other"); + })((o = t.FriendState || (t.FriendState = {}))); + var l; + !(function (t) { + (t[(t.cs_friend_add_friend = 1)] = "cs_friend_add_friend"), + (t[(t.cs_friend_add_rutrun_friend = 2)] = "cs_friend_add_rutrun_friend"), + (t[(t.cs_friend_list = 3)] = "cs_friend_list"), + (t[(t.cs_friend_add_blacklist = 4)] = "cs_friend_add_blacklist"), + (t[(t.cs_friend_add_concern = 5)] = "cs_friend_add_concern"), + (t[(t.cs_friend_set_concern_color = 6)] = "cs_friend_set_concern_color"), + (t[(t.cs_friend_del_friend = 7)] = "cs_friend_del_friend"), + (t[(t.cs_friend_req_report_info = 8)] = "cs_friend_req_report_info"), + (t[(t.cs_friend_all_add_friend = 9)] = "cs_friend_all_add_friend"), + (t[(t.sc_friend_add_friend = 1)] = "sc_friend_add_friend"), + (t[(t.sc_friend_add_rutrun_friend = 2)] = "sc_friend_add_rutrun_friend"), + (t[(t.sc_friend_list = 3)] = "sc_friend_list"), + (t[(t.sc_friend_add_blacklist = 4)] = "sc_friend_add_blacklist"), + (t[(t.sc_friend_add_concern = 5)] = "sc_friend_add_concern"), + (t[(t.sc_friend_set_concern_color = 6)] = "sc_friend_set_concern_color"), + (t[(t.sc_friend_del_friend = 7)] = "sc_friend_del_friend"), + (t[(t.sc_friend_req_info = 8)] = "sc_friend_req_info"), + (t[(t.sc_friend_reprot_list = 9)] = "sc_friend_reprot_list"); + })((l = t.FriendProtocol || (t.FriendProtocol = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.isTopLevel = !0), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "FriendAddViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n, s; + (this.ConfirmBtn.label = t.CrmPU.language_Common_59), + (this.type = e[0]), + e[0] == t.FriendState.Friend + ? ((n = t.CrmPU.language_System12), (s = t.CrmPU.language_Friend_Add_Friend_tips)) + : e[0] == t.FriendState.Concern + ? ((n = t.CrmPU.language_System14), (s = t.CrmPU.language_Friend_Add_Concern_tips)) + : e[0] == t.FriendState.BlackList && ((n = t.CrmPU.language_System15), (s = t.CrmPU.language_Friend_Add_Black_tips)), + (this.typeLb.text = s), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(n), + this.vKruVZ(this.ConfirmBtn, this.onClick); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.ConfirmBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + if ("" != this.playerNameText.text.trim()) { + if (this.type == t.FriendState.Friend) { + var n = new t.CSFriend_Add_Data(); + (n.id = 0), (n.nickName = this.playerNameText.text), t.KWGP.ins().sendAddFriend(n); + } else if (this.type == t.FriendState.Concern) { + var n = new t.CSFriend_Add_Concern_Data(); + (n.id = 0), (n.nickName = this.playerNameText.text), t.KWGP.ins().sendAddConcern(n); + } else if (this.type == t.FriendState.BlackList) { + var n = new t.CSFriend_Add_Concern_Data(); + (n.id = 0), (n.nickName = this.playerNameText.text), t.KWGP.ins().sendAddBlackList(n); + } + t.mAYZL.ins().close(i); + } + }), + i + ); + })(t.gIRYTi); + (t.FriendAddGoodFriendView = e), __reflect(e.prototype, "app.FriendAddGoodFriendView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.colorBtn.source = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.FriendColorMenuItem = e), __reflect(e.prototype, "app.FriendColorMenuItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FriendColorMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.gList.itemRenderer = t.FriendColorMenuItem), + (this.gList.dataProvider = new eui.ArrayCollection(["szys_2", "szys_3", "szys_4"])), + this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + t.ckpDj.ins().sendEvent(t.FriendEvent.COLOR_SET, [this.gList.selectedIndex + 2]); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.x = e[0].x + 4), (this.y = e[0].y); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + this.x + this.width > n && (this.x = n - this.width), (this.height = 96), (this.bg.height = 101), (this.y = e[0].y - this.height - 5); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + i + ); + })(t.gIRYTi); + (t.FriendColorMenuView = e), __reflect(e.prototype, "app.FriendColorMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "FriendQQItemSkin" : "FriendCommonItemSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.setShowGp = function (t) { + for (var e = 6 == t ? 1 : t, i = 1; 6 > i; i++) (this["gp_" + i].visible = !1), i == e && (this["gp_" + i].visible = !0); + }), + (i.prototype.dataChanged = function () { + if ( + ((this.itemData = this.data), + this.setShowGp(this.itemData.type), + this.itemData.type == t.FriendState.Friend + ? (this.curState = "common") + : this.itemData.type == t.FriendState.Near + ? (this.curState = "near") + : this.itemData.type == t.FriendState.Concern + ? (this.curState = "concern") + : this.itemData.type == t.FriendState.BlackList + ? (this.curState = "black") + : this.itemData.type == t.FriendState.Report + ? (this.curState = "report") + : this.itemData.type == t.FriendState.Other && (this.curState = "other"), + (this.selected = !1), + Main.vZzwB.pfID == t.PlatFormID.QQGame) + ) { + var e = this.itemData.superLv >> 16, + i = e >> 8, + n = 255 & e, + s = 65535 & this.itemData.superLv; + (this.blueImg.visible = i && s > 0), (this.blueImg.source = i && s > 0 ? (1 == i ? "lz_pt" + (s + 1) : "lz_hh" + (s + 1)) : ""), (this.blueYearImg.visible = 1 == n); + } + if ("common" == this.curState) + (this.id = this.itemData.roleId), + (this.playerName.text = this.itemData.nickName), + (this.playerLevel.text = this.setLevelStyle()), + (this.playerProfession.text = t.CrmPU["language_Role_Name_" + this.itemData.profession]), + (this.playerGuild.text = this.itemData.guild), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.blueImg.x = 6), (this.blueYearImg.x = 39)), + 0 == this.itemData.online + ? ((this.playerName.textColor = 8420211), (this.playerLevel.textColor = 8420211), (this.playerProfession.textColor = 8420211), (this.playerGuild.textColor = 8420211)) + : ((this.playerName.textColor = 15064527), (this.playerLevel.textColor = 15064527), (this.playerProfession.textColor = 15064527), (this.playerGuild.textColor = 15064527)), + this.itemIndex % 2 == 1 ? ((this.state_1.visible = !0), (this.state_2.visible = !1)) : ((this.state_1.visible = !1), (this.state_2.visible = !0)); + else if ("near" == this.curState) + (this.id = this.itemData.roleId), + (this.near_playerName.text = this.itemData.nickName), + (this.near_playerLevel.text = this.setLevelStyle()), + (this.near_playerProfession.text = t.CrmPU["language_Role_Name_" + this.itemData.profession]), + (this.near_playerSex.text = t.CrmPU["language_Role_Sex_" + this.itemData.sex]), + (this.near_playerGuild.text = this.itemData.guild), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.blueImg.x = 6), (this.blueYearImg.x = 39)), + this.itemIndex % 2 == 1 ? ((this.near_state_1.visible = !0), (this.near_state_2.visible = !1)) : ((this.near_state_1.visible = !1), (this.near_state_2.visible = !0)); + else if ("concern" == this.curState) + (this.id = this.itemData.roleId), + (this.concern_playerName.text = this.itemData.nickName), + (this.concern_playerLevel.text = this.setLevelStyle()), + (this.concern_playerProfession.text = t.CrmPU["language_Role_Name_" + this.itemData.profession]), + (this.concern_colorBg.source = 0 == this.itemData.color ? "" : "szys_" + this.itemData.color), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.blueImg.x = 6), (this.blueYearImg.x = 39)), + 0 == this.itemData.online + ? ((this.concern_playerName.textColor = 8420211), (this.concern_playerLevel.textColor = 8420211), (this.concern_playerProfession.textColor = 8420211)) + : ((this.concern_playerName.textColor = 15064527), (this.concern_playerLevel.textColor = 15064527), (this.concern_playerProfession.textColor = 15064527)), + this.itemIndex % 2 == 1 ? ((this.concern_state_1.visible = !0), (this.concern_state_2.visible = !1)) : ((this.concern_state_1.visible = !1), (this.concern_state_2.visible = !0)); + else if ("black" == this.curState) + (this.id = this.itemData.roleId), + (this.black_playerName.text = this.itemData.nickName), + (this.black_playerLevel.text = this.setLevelStyle()), + Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.blueImg.x = 80), (this.blueYearImg.x = 114)), + 0 == this.itemData.online + ? ((this.black_playerName.textColor = 8420211), (this.black_playerLevel.textColor = 8420211)) + : ((this.black_playerName.textColor = 15064527), (this.black_playerLevel.textColor = 15064527)), + this.itemIndex % 2 == 1 ? ((this.black_state_1.visible = !0), (this.black_state_2.visible = !1)) : ((this.black_state_1.visible = !1), (this.black_state_2.visible = !0)); + else if ("report" == this.curState) { + (this.id = this.itemData.roleId), Main.vZzwB.pfID == t.PlatFormID.QQGame && ((this.blueImg.visible = !1), (this.blueYearImg.visible = !1)); + var a = "", + r = t.VlaoF.Scenes[this.itemData.sceneID]; + if (r) + if (0 == this.itemData.killType) { + var o = ""; + (o = 0 == this.itemData.roleId ? "【BOSS】" : "【" + t.CrmPU.language_Omission_txt132 + "】"), + (a = t.zlkp.replace(t.CrmPU.language_Omission_txt130, o, this.itemData.nickName, r.scencename)); + } else 1 == this.itemData.killType && (a = t.zlkp.replace(t.CrmPU.language_Omission_txt131, r.scencename, this.itemData.nickName)); + (this.report_playerName.textFlow = t.hETx.qYVI(a)), + (this.report_timer.text = t.DateUtils.getFormatBySecond(this.itemData.time, t.DateUtils.TIME_FORMAT_2)), + this.itemIndex % 2 == 1 ? ((this.report_state_1.visible = !0), (this.report_state_2.visible = !1)) : ((this.report_state_1.visible = !1), (this.report_state_2.visible = !0)); + } + "other" == this.curState && + ((this.id = this.itemData.roleId), + (this.playerName.text = this.itemData.nickName), + (this.playerLevel.text = this.setLevelStyle()), + (this.playerProfession.text = t.CrmPU["language_Role_Name_" + this.itemData.profession]), + (this.playerGuild.text = t.CrmPU["language_Role_Sex_" + this.itemData.sex]), + this.itemIndex % 2 == 1 ? ((this.state_1.visible = !0), (this.state_2.visible = !1)) : ((this.state_1.visible = !1), (this.state_2.visible = !0))); + }), + (i.prototype.setLevelStyle = function () { + var e = + 0 == this.itemData.turn || null == this.itemData.turn + ? this.itemData.level.toString() + : this.itemData.turn + t.CrmPU.language_Friend_Turn_txt + this.itemData.level.toString() + t.CrmPU.language_Friend_Level_txt; + return e; + }), + (i.prototype.setColor = function (t) { + this.concern_colorBg.source = "szys_" + t; + }), + Object.defineProperty(i.prototype, "selected", { + set: function (t) { + "common" == this.curState + ? ((this.selectedBg.visible = t), + t + ? ((this.playerName.textColor = 15655172), (this.playerLevel.textColor = 15655172), (this.playerProfession.textColor = 15655172), (this.playerGuild.textColor = 15655172)) + : 0 == this.itemData.online + ? ((this.playerName.textColor = 8420211), (this.playerLevel.textColor = 8420211), (this.playerProfession.textColor = 8420211), (this.playerGuild.textColor = 8420211)) + : ((this.playerName.textColor = 15064527), (this.playerLevel.textColor = 15064527), (this.playerProfession.textColor = 15064527), (this.playerGuild.textColor = 15064527))) + : "near" == this.curState + ? ((this.selectedBg3.visible = t), + t + ? ((this.near_playerName.textColor = 15655172), + (this.near_playerLevel.textColor = 15655172), + (this.near_playerProfession.textColor = 15655172), + (this.near_playerSex.textColor = 15655172), + (this.near_playerGuild.textColor = 15655172)) + : ((this.near_playerName.textColor = 15064527), + (this.near_playerLevel.textColor = 15064527), + (this.near_playerProfession.textColor = 15064527), + (this.near_playerSex.textColor = 15064527), + (this.near_playerSex.textColor = 15064527))) + : "concern" == this.curState + ? ((this.selectedBg1.visible = t), + t + ? ((this.concern_playerName.textColor = 15655172), (this.concern_playerLevel.textColor = 15655172), (this.concern_playerProfession.textColor = 15655172)) + : ((this.concern_playerName.textColor = 15064527), (this.concern_playerLevel.textColor = 15064527), (this.concern_playerProfession.textColor = 15064527))) + : "black" == this.curState + ? ((this.selectedBg2.visible = t), + t + ? ((this.black_playerName.textColor = 15655172), (this.black_playerLevel.textColor = 15655172)) + : ((this.black_playerName.textColor = 15064527), (this.black_playerLevel.textColor = 15064527))) + : "report" == this.curState + ? ((this.selectedBg0.visible = t), + t ? ((this.report_playerName.textColor = 15655172), (this.report_timer.textColor = 15655172)) : ((this.report_playerName.textColor = 15064527), (this.report_timer.textColor = 15064527))) + : "other" == this.curState && + ((this.selectedBg.visible = t), + t + ? ((this.playerName.textColor = 15655172), (this.playerLevel.textColor = 15655172), (this.playerProfession.textColor = 15655172), (this.playerGuild.textColor = 15655172)) + : ((this.playerName.textColor = 15064527), (this.playerLevel.textColor = 15064527), (this.playerProfession.textColor = 15064527), (this.playerGuild.textColor = 15064527))); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseItemRender); + (t.FriendCommonItemView = e), __reflect(e.prototype, "app.FriendCommonItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.menuBtn.name = this.data.name), (this.menuBtn.label = this.data.txt); + }), + e + ); + })(t.BaseItemRender); + (t.FriendFunMenuItem = e), __reflect(e.prototype, "app.FriendFunMenuItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconList = []), (t.skinName = "FriendFunMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gList.itemRenderer = t.FriendFunMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + var e = this.gList.selectedIndex, + i = this.gList.getChildAt(e), + n = i.menuBtn.name; + t.ckpDj.ins().sendEvent(t.FriendEvent.MENU_ONCLICK, [n]); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.iconList = e[1]), (this.x = e[0].x), (this.y = e[0].y); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + this.x + this.width > n && (this.x = n - this.width), (this.height = 41 * this.iconList.length), (this.y = e[0].y - this.height); + var s = new eui.ArrayCollection(this.iconList); + this.gList.dataProvider = s; + }), + i + ); + })(t.gIRYTi); + (t.FriendFunMenuView = e), __reflect(e.prototype, "app.FriendFunMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.setHeadTxt = function () { + for (var e = 0; 5 >= e; e++) + (this["txt" + e + "PlayerName"].text = t.CrmPU.language_Friend_Txt0), + this["txt" + e + "Lv"] && (this["txt" + e + "Lv"].text = t.CrmPU.language_Friend_Txt1), + this["txt" + e + "Job"] && (this["txt" + e + "Job"].text = t.CrmPU.language_Friend_Txt2), + this["txt" + e + "Guild"] && (this["txt" + e + "Guild"].text = t.CrmPU.language_Friend_Txt3), + this["txt" + e + "Sex"] && (this["txt" + e + "Sex"].text = t.CrmPU.language_Friend_Txt5), + this["txt" + e + "ShowColor"] && (this["txt" + e + "ShowColor"].text = t.CrmPU.language_Friend_Txt4), + this["txt" + e + "Date"] && (this["txt" + e + "Date"].text = t.CrmPU.language_Friend_Txt6); + }), + i + ); + })(t.gIRYTi); + (t.FriendHeaderView = e), __reflect(e.prototype, "app.FriendHeaderView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.createChildren = function () { + t.prototype.createChildren.call(this); + }), + (e.prototype.dataChanged = function () { + this.loadData(); + }), + (e.prototype.loadData = function () { + var t = this.data, + e = t.selected; + e ? (this.tarText.source = t.down) : (this.tarText.source = t.up); + }), + e + ); + })(t.BaseItemRender); + (t.FriendTarBtnItem = e), __reflect(e.prototype, "app.FriendTarBtnItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.lastindex = 0), (i.data2TabBar_arr = null), (i.skinName = "FriendViewSkin"), (i.name = "FriendView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setText(), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System13); + }), + (i.prototype.setText = function () {}), + (i.prototype.bindTabBar = function () { + (this.arrayCollection = new eui.ArrayCollection(["t_gxyq_hy", "t_gxyq_fj", "t_gxyq_gz", "t_gxyq_hmd", "t_gxyq_qq", "t_gxyq_zb"])), + (this.tabBar.itemRenderer = t.CommonTabBarWin), + (this.tabBar.dataProvider = this.arrayCollection); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.bindTabBar(), + this.addChangeEvent(this.tabBar, this.onClick), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.operationBtn, this.onClick), + this.vKruVZ(this.operationBtn0, this.onClick), + this.vKruVZ(this.operationBtn5, this.onClick), + this.vKruVZ(this.setColorBtn, this.onClick), + this.vKruVZ(this.acceptBtn, this.onClick), + this.vKruVZ(this.addConcernBtn, this.onClick), + this.vKruVZ(this.dragDropUI.btn_close, this.onClose), + this.vKruVZ(this.rejectBtn, this.onClick), + this.vKruVZ(this.allAcceptBtn, this.onClick), + this.vKruVZ(this.addBlackBtn, this.onClick), + this.vKruVZ(this.blackDelBtn, this.onClick), + this.vKruVZ(this.delConcernBtn, this.onClick), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onCloseMenu, this), + this.tabBar.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + (this.tabBar.selectedIndex = null == e[0] ? 0 : e[0]), + (this.lastindex = this.tabBar.selectedIndex), + this.page.updateData(this.lastindex), + this.setFunBtns(this.lastindex), + t.KWGP.ins().sendFriendsList(t.FriendState.Friend), + this.HFTK(t.KWGP.ins().post_gFriendsList, this.updateData), + this.HFTK(t.KWGP.ins().post_gDelRqInfo, this.updateListInfo), + this.HFTK(t.edHC.ins().post_26_44, this.updateNearList), + this.HFTK(t.KWGP.ins().post_Report, this.updateReportInfo), + t.ckpDj.ins().addEvent(t.FriendEvent.ITEM_SELECTED, this.selectedItem, this), + t.ckpDj.ins().addEvent(t.FriendEvent.COLOR_SET, this.onSetColor, this); + }), + (i.prototype.updateReportInfo = function () { + this.page.updateData(this.lastindex), this.setFunBtns(this.lastindex); + }), + (i.prototype.onSetColor = function (e) { + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + var i = new t.CSFriend_set_Concern_Color_Data(); + (i.id = this.itemData.roleId), (i.color = e[0]), t.KWGP.ins().sendSetConcernColor(i), (this.itemData = null); + }), + (i.prototype.updateNearList = function () { + t.KWGP.ins().setNearPlayerListData(); + var e = t.KWGP.ins().getListNumbyType(this.lastindex); + e > 0 && (this["firendGp_" + this.lastindex].visible = !0), this.updateData(); + }), + (i.prototype.updateListInfo = function () { + if (0 == this.lastindex) + for (var e = 0; e < t.KWGP.ins().friendsList.length; e++) { + var i = t.KWGP.ins().friendsList[e]; + t.KWGP.ins().delId == i.roleId && t.KWGP.ins().friendsList.splice(e, 1); + } + else if (2 == this.lastindex) + for (var e = 0; e < t.KWGP.ins().concernList.length; e++) { + var i = t.KWGP.ins().concernList[e]; + t.KWGP.ins().delId == i.roleId && t.KWGP.ins().concernList.splice(e, 1); + } + else if (3 == this.lastindex) + for (var e = 0; e < t.KWGP.ins().blackList.length; e++) { + var i = t.KWGP.ins().blackList[e]; + t.KWGP.ins().delId == i.roleId && t.KWGP.ins().blackList.splice(e, 1); + } + this.page.updateData(this.lastindex); + }), + (i.prototype.sendDelInfo = function (e) { + var i = new t.CSFriend_Del_Data(); + (i.id = this.itemData.roleId), (i.nickName = ""), (i.type = e), t.KWGP.ins().sendDeleteFirends(i); + }), + (i.prototype.selectedItem = function (t) { + var e = t[0]; + this.itemData = e; + }), + (i.prototype.onCloseMenu = function () { + t.mAYZL.ins().close(t.CommonFunMenuView), t.mAYZL.ins().close(t.FriendColorMenuView); + }), + (i.prototype.updateData = function () { + this.page.updateData(this.lastindex); + }), + (i.prototype.onClose = function () { + t.mAYZL.ins().close(i); + }), + (i.prototype.onBarItemTap = function (e) { + this.arrayCollection.getItemAt(this.lastindex); + (this.lastindex = e.itemIndex), + this.page.setScroller(), + 0 == e.itemIndex + ? (t.KWGP.ins().sendFriendsList(t.FriendState.Friend), (this.ruleTipsButton.ruleId = 10)) + : 1 == e.itemIndex + ? (t.edHC.ins().sendNearPlayerList(), (this.ruleTipsButton.ruleId = 11)) + : 2 == e.itemIndex + ? ((this.ruleTipsButton.ruleId = 12), t.KWGP.ins().sendFriendsList(t.FriendState.Concern)) + : 3 == e.itemIndex + ? ((this.ruleTipsButton.ruleId = 13), t.KWGP.ins().sendFriendsList(t.FriendState.BlackList)) + : 4 == e.itemIndex + ? ((this.ruleTipsButton.ruleId = 14), this.page.updateData(this.lastindex)) + : 5 == e.itemIndex && (t.KWGP.ins().sendReport(), (this.ruleTipsButton.ruleId = 15)), + this.setFunBtns(e.itemIndex), + (this.itemData = null); + }), + (i.prototype.setFunBtns = function (e) { + for (var i = 0, n = 0; 6 > n; n++) + (this["firendGp_" + n].visible = !1), + e == n && + (0 == e + ? ((this["firendGp_" + e].visible = !0), + (this.operationBtn.visible = !1), + (this.addBtn.visible = !0), + (i = t.KWGP.ins().getListNumbyType(n)), + i > 0 && (this.operationBtn.visible = !0)) + : 2 == e + ? ((this["firendGp_" + e].visible = !0), + (this.setColorBtn.visible = this.delConcernBtn.visible = !1), + (this.addConcernBtn.visible = !0), + (i = t.KWGP.ins().getListNumbyType(n)), + i > 0 && (this.setColorBtn.visible = this.delConcernBtn.visible = !0)) + : 2 == e + ? ((this["firendGp_" + e].visible = !0), + (this.blackDelBtn.visible = !1), + (this.addBlackBtn.visible = !0), + (i = t.KWGP.ins().getListNumbyType(n)), + i > 0 && (this.blackDelBtn.visible = !0)) + : ((i = t.KWGP.ins().getListNumbyType(n)), i > 0 && (this["firendGp_" + e].visible = !0))); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.addBtn: + t.mAYZL.ins().open(t.FriendAddGoodFriendView, t.FriendState.Friend); + break; + case this.addBlackBtn: + t.mAYZL.ins().open(t.FriendAddGoodFriendView, t.FriendState.BlackList); + break; + case this.blackDelBtn: + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + this.sendDelInfo(t.FriendState.BlackList); + break; + case this.delConcernBtn: + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + this.sendDelInfo(t.FriendState.Concern); + break; + case this.addConcernBtn: + t.mAYZL.ins().open(t.FriendAddGoodFriendView, t.FriendState.Concern); + break; + case this.operationBtn: + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + t.mAYZL.ins().open(t.CommonFunMenuView, this.operationBtn.localToGlobal(0, 0), this.itemData); + break; + case this.operationBtn0: + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + t.mAYZL.ins().open(t.CommonFunMenuView, this.operationBtn0.localToGlobal(0, 0), this.itemData); + break; + case this.operationBtn5: + if (null == this.itemData) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + if (0 == this.itemData.roleId) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Omission_txt71); + t.mAYZL.ins().open(t.CommonFunMenuView, this.operationBtn5.localToGlobal(0, 0), this.itemData); + break; + case this.acceptBtn: + if (this.itemData) { + var i = new t.CSFriend_Return_Data(); + (i.id = this.itemData.roleId), (i.isAgree = 1), t.KWGP.ins().sendResponseFriend(i); + for (var n = t.KWGP.ins().applyList.length, s = 0; n > s; s++) { + var a = t.KWGP.ins().applyList[s]; + if (a.roleId == this.itemData.roleId) return void t.KWGP.ins().applyList.splice(s, 1); + } + this.updateData(); + } else t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + break; + case this.rejectBtn: + if (this.itemData) { + var i = new t.CSFriend_Return_Data(); + (i.id = this.itemData.roleId), (i.isAgree = 0), t.KWGP.ins().sendResponseFriend(i); + for (var n = t.KWGP.ins().applyList.length, s = 0; n > s; s++) { + var a = t.KWGP.ins().applyList[s]; + a.roleId == this.itemData.roleId && t.KWGP.ins().applyList.splice(s, 1); + } + this.updateData(); + } else t.uMEZy.ins().showFightTips(t.CrmPU.language_Friend_Selected_tips); + break; + case this.allAcceptBtn: + t.KWGP.ins().sendAllAddFriend(), (t.KWGP.ins().applyList = []); + break; + case this.setColorBtn: + t.mAYZL.ins().open(t.FriendColorMenuView, this.setColorBtn.localToGlobal(0, 0)); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.operationBtn, this.onClick), + this.fEHj(this.operationBtn0, this.onClick), + this.fEHj(this.operationBtn5, this.onClick), + this.fEHj(this.setColorBtn, this.onClick), + this.fEHj(this.acceptBtn, this.onClick), + this.fEHj(this.addConcernBtn, this.onClick), + this.fEHj(this.dragDropUI.btn_close, this.onClose), + this.fEHj(this.rejectBtn, this.onClick), + this.fEHj(this.allAcceptBtn, this.onClick), + this.fEHj(this.addBlackBtn, this.onClick), + this.fEHj(this.blackDelBtn, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onClick, this), + this.tabBar.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onCloseMenu, this), + (this.itemData = null), + this.page.destroy(), + this.dragDropUI.destroy(), + (this.dragDropUI = null); + }), + i + ); + })(t.gIRYTi); + (t.FriendView = e), __reflect(e.prototype, "app.FriendView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.list = new eui.ArrayCollection()), (t.lastIndex = -1), (t.crrentType = -1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + t.MouseScroller.bind(this.scroller), + (this.gList.itemRenderer = t.FriendCommonItemView), + (this.gList.dataProvider = this.list), + this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.gList.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.ckpDj.ins().addEvent(t.FriendEvent.ITEM_ONCHANGE, this.onListChange, this), + this.header.setHeadTxt(); + }), + (i.prototype.setScroller = function () { + this.scroller.stopAnimation(), this.scroller.viewport.validateNow(), (this.scroller.viewport.scrollV = 0); + }), + (i.prototype.onTouchDouble = function () { + var e = this.gp.localToGlobal(this.gp.width, this.gp.height - 100); + this.selectedItem && ((e.x += 5), (e.y += 3), t.mAYZL.ins().open(t.CommonFunMenuView, e, this.selectedItem.itemData)); + }), + (i.prototype.onListChange = function (t) { + var e = t[0], + i = e; + (this.selected = e.itemIndex), (this.selectedItem = e.itemRenderer), this.selectedItem.setColor(i.color); + }), + (i.prototype.refreshList = function () { + this.selectedItem && (this.selectedItem.selected = !1); + }), + (i.prototype.onChange = function (e) { + this.refreshList(), + (this.selected = e.itemIndex), + (this.selectedItem = e.itemRenderer), + 0 == this.crrentType + ? (this.selectedItem.currentState = "common") + : 1 == this.crrentType + ? (this.selectedItem.currentState = "near") + : 2 == this.crrentType + ? (this.selectedItem.currentState = "concern") + : 3 == this.crrentType + ? (this.selectedItem.currentState = "black") + : 4 == this.crrentType + ? (this.selectedItem.currentState = "other") + : 5 == this.crrentType && (this.selectedItem.currentState = "report"), + (this.selectedItem.selected = !0), + t.ckpDj.ins().sendEvent(t.FriendEvent.ITEM_SELECTED, [this.selectedItem.itemData]); + }), + (i.prototype.setHead = function (t) { + for (var e = 0; 6 > e; e++) (this.header["gHeader" + e].visible = !1), e == t && (this.header["gHeader" + e].visible = !0); + }), + (i.prototype.updateData = function (e) { + (this.friendNumGrp.visible = !1), + (this.lastIndex = -1), + (this.crrentType = e), + (this.gList.dataProvider = new eui.ArrayCollection()), + this.setHead(e), + 0 == e && + ((this.friendNumGrp.visible = !0), + (this.friendNumLab.text = t.CrmPU.language_Omission_txt84 + ":" + t.KWGP.ins().friendsList.length + "/99"), + (this.onLineFriendLab.text = t.CrmPU.language_Omission_txt85 + ":" + t.KWGP.ins().getFriendOnLineNum()), + (this.list.source = t.KWGP.ins().friendsList)), + 1 == e + ? (this.list.source = t.KWGP.ins().getNearPlayerListData()) + : 2 == e + ? ((this.friendNumGrp.visible = !0), + (this.friendNumLab.text = t.CrmPU.language_Omission_txt84 + ":" + t.KWGP.ins().concernList.length + "/99"), + (this.onLineFriendLab.text = t.CrmPU.language_Omission_txt85 + ":" + t.KWGP.ins().getAttentionOnLineNum()), + (this.list.source = t.KWGP.ins().concernList)) + : 3 == e + ? (this.list.source = t.KWGP.ins().blackList) + : 4 == e + ? (this.list.source = t.KWGP.ins().applyList) + : 5 == e && (this.list.source = t.KWGP.ins().reportList), + (this.gList.dataProvider = this.list), + this.gList.validateNow(), + this.list.length < 1 + ? ((this.noListTipsLb.visible = !0), + 0 == e && (this.noListTipsLb.text = t.CrmPU.language_Friend_NoGoodFriend_tips), + 1 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Friend_NoNear_tips) + : 2 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Friend_NoConcern_tips) + : 3 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Friend_NoBlackList_tips) + : 4 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Friend_NoFriend_Apply_tips) + : 5 == e && (this.noListTipsLb.text = t.CrmPU.language_Friend_NoReport_tips)) + : (this.noListTipsLb.visible = !1); + }), + (i.prototype.destroy = function () { + t.MouseScroller.unbind(this.scroller), + this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.gList.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.ckpDj.ins().removeEvent(t.FriendEvent.ITEM_ONCHANGE, this.onListChange, this); + }), + i + ); + })(t.BaseView); + (t.FriendViewPage = e), __reflect(e.prototype, "app.FriendViewPage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.FUBEN), i.YrTisc(4, i.post_g20_4), i.YrTisc(5, i.post_20_5), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_20_1 = function (t) { + var e = this.MxGiq(1); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.send_20_2 = function (t) { + var e = this.MxGiq(2); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.send_20_3 = function (t) { + var e = this.MxGiq(3); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.post_g20_4 = function (t) { + this.timeRemaining = 1e3 * t.readInt() + egret.getTimer(); + }), + (i.prototype.post_20_5 = function (t) { + var e = t.readByte(), + i = t.readByte(), + n = t.readByte(); + return { + curWave: e, + allWave: i, + surplusMonNum: n, + }; + }), + i + ); + })(t.DlUenA); + (t.FuBenMgr = e), __reflect(e.prototype, "app.FuBenMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.label.text = this.data + ""; + }), + e + ); + })(eui.ItemRenderer); + (t.EUILabel = e), __reflect(e.prototype, "app.EUILabel"); +})(app || (app = {})), + (function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.dir = 0), (t.skinName = "debugViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.y = 100), + this.vKruVZ(this.btn1, this.onClick), + this.vKruVZ(this.btn2, this.onClick), + this.vKruVZ(this.btn3, this.onClick), + this.vKruVZ(this.btn4, this.onClick), + this.vKruVZ(this.btnSent, this.onClick), + this.dragDropUI.setParent(this), + (this.getList.itemRenderer = t.EUILabel), + (this.sentList.itemRenderer = t.EUILabel), + (this.getArrayCollection = new eui.ArrayCollection()), + (this.sentArrayCollection = new eui.ArrayCollection()), + (this.getList.dataProvider = this.getArrayCollection), + (this.getList.itemRendererSkinName = "LabelSkinSkin"), + (this.sentList.dataProvider = this.sentArrayCollection), + (this.sentList.itemRendererSkinName = "LabelSkinSkin"), + this.HFTK(t.Nzfh.ins().post_Sent, this.updateSent), + this.HFTK(t.Nzfh.ins().post_Get, this.updateGet); + }), + (i.prototype.updateSent = function (t) { + var e = "sysId=" + t[0] + " msgId=" + t[1]; + this.sentArrayCollection.addItem(e); + }), + (i.prototype.updateGet = function (t) { + var e = "sysId=" + t[0] + " msgId=" + t[1]; + this.getArrayCollection.addItem(e); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn1: + t.FuBenMgr.ins().send_20_1(+this.inputTxt1.text); + break; + case this.btn2: + t.FuBenMgr.ins().send_20_2(+this.inputTxt2.text); + break; + case this.btn3: + RES.profile(); + break; + case this.btn4: + var i = t.NWRFmB.ins().getNpcList(), + n = t.NWRFmB.ins().YUwhM(); + this.charSum.text = "" + (Object.keys(i).length + Object.keys(n).length); + break; + case this.btnSent: + "" == this.sysId.text && t.uMEZy.ins().IrCm("sysId 不能为空"), "" == this.msgId.text && t.uMEZy.ins().IrCm("msgId 不能为空"); + var s = +this.sysId.text, + a = +this.msgId.text; + t.Nzfh.ins().sentMsg(s, a, this.msgInfo.text); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), + this.fEHj(this.btn1, this.onClick), + this.fEHj(this.btn2, this.onClick), + this.fEHj(this.btn3, this.onClick), + this.fEHj(this.btn4, this.onClick), + this.fEHj(this.btnSent, this.onClick), + (this.getArrayCollection = null), + (this.sentArrayCollection = null); + }), + i + ); + })(t.gIRYTi); + (t.DebugView = e), __reflect(e.prototype, "app.DebugView"), t.mAYZL.ins().reg(e, t.yCIt.LjbkQx); + })(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.DLD_ScoreRank = 1)] = "DLD_ScoreRank"), (t[(t.DLD_RankReward = 2)] = "DLD_RankReward"), (t[(t.DLD_ScorReward = 3)] = "DLD_ScorReward"); + })((e = t.FubenRankEnum || (t.FubenRankEnum = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if ( + ((this.bg.source = this.itemIndex % 2 == 1 ? "bg_quyu_1" : "bg_quyu_2"), + (this.numLabel.visible = !1), + (this.rankImage.visible = !1), + 1 == this.data.rank + ? ((this.rankImage.visible = !0), (this.rankImage.source = "Act_pm_1"), (this.label1.textColor = 15655172), (this.label2.textColor = 15655172)) + : 2 == this.data.rank + ? ((this.rankImage.visible = !0), (this.rankImage.source = "Act_pm_2"), (this.label1.textColor = 16718530), (this.label2.textColor = 16718530)) + : 3 == this.data.rank + ? ((this.rankImage.visible = !0), (this.rankImage.source = "Act_pm_3"), (this.label1.textColor = 2682369), (this.label2.textColor = 2682369)) + : ((this.numLabel.visible = !0), (this.numLabel.text = this.data.rank + ""), (this.label1.textColor = 15064527), (this.label2.textColor = 15064527)), + (this.label1.text = this.data.name), + (this.label2.text = this.data.level), + t.JgMyc.ins().rankModel.type == t.RankDetailType.CrossServerEscapeFromTrial) + ) { + var e = t.TQkyOx.ins().EscapeRoleInfo; + e.indexOf(this.data.playerId) > -1 && (this.label2.text = t.CrmPU.language_Common_249); + } + }), + i + ); + })(eui.ItemRenderer); + (t.FubenRankItemView = e), __reflect(e.prototype, "app.FubenRankItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._actID = 0), (t.skinName = "FubenRankPagSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && e[0] && (this._actID = e[0]), + (this.label1.text = t.CrmPU.language_FuBen_Text10), + (this.label3.text = 26 == this._actID ? "行会名" : t.CrmPU.language_Friend_Txt0), + (this.label2.text = t.CrmPU.language_FuBen_Text8), + (this.list.itemRenderer = t.FubenRankItemView), + (this.list.itemRendererSkinName = "FubenRankItemSkin"), + (this.dataProvider = new eui.ArrayCollection()), + (this.list.dataProvider = this.dataProvider), + this.HFTK(t.Nzfh.ins().post_s_0_71, this.setRankListData), + this.HFTK(t.edHC.ins().post_26_86, this.updateShabakRankList), + t.KHNO.ins().RTXtZF(this.sendRank, this) || (this.sendRank(), t.KHNO.ins().tBiJo(5e3, 0, this.sendRank, this)); + }), + (i.prototype.sendRank = function () { + if (26 == this._actID) t.edHC.ins().send_26_72(t.RankDetailType.CrossServerShabak, 50); + else { + var e = t.TQkyOx.ins().getActivitConf(t.TQkyOx.ins().currentActId); + !e || (e.ActivityType != t.ISYR.Inspire && e.ActivityType != t.ISYR.WorldBoss) + ? e && e.ActivityType == t.ISYR.NightVoma + ? t.Nzfh.ins().send_0_23(t.RankDetailType.NightVoma, 50, null, 0) + : e && e.ActivityType == t.ISYR.CrossServerChaos + ? t.Nzfh.ins().send_0_23(t.RankDetailType.CrossServerChaosRank, 50, null, 0) + : e && e.ActivityType == t.ISYR.CrossServerBoss + ? t.Nzfh.ins().send_0_23(t.RankDetailType.CrossServerBoss, 50, null, 0) + : e && e.ActivityType == t.ISYR.CrossServerNightVoma + ? t.Nzfh.ins().send_0_23(t.RankDetailType.CrossServerNightVoma, 50, null, 0) + : e && e.ActivityType == t.ISYR.EscapeFromTrial + ? t.Nzfh.ins().send_0_23(t.RankDetailType.CrossServerEscapeFromTrial, 50, null, 0) + : t.Nzfh.ins().send_0_23(t.RankDetailType.rtScore, 50, null, 0) + : t.Nzfh.ins().send_0_23(t.RankDetailType.wboss, 50, null, 0); + } + }), + (i.prototype.setRankListData = function (e) { + (e[0] == t.RankDetailType.rtScore || + e[0] == t.RankDetailType.wboss || + e[0] == t.RankDetailType.NightVoma || + e[0] == t.RankDetailType.CrossServerChaosRank || + e[0] == t.RankDetailType.CrossServerBoss || + e[0] == t.RankDetailType.CrossServerNightVoma || + e[0] == t.RankDetailType.CrossServerEscapeFromTrial) && + this.dataProvider.replaceAll(e[1].list); + }), + (i.prototype.updateShabakRankList = function (t) { + this.dataProvider.replaceAll(t); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), t.KHNO.ins().removeAll(this), (this.dataProvider = null); + }), + i + ); + })(t.gIRYTi); + (t.FubenRankPagView = e), __reflect(e.prototype, "app.FubenRankPagView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.scoreRank = null), (t.rankReward = null), (t.rcorReward = null), (t.killReward = null), (t.skinName = "FubenRankSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), (this.tabBar.itemRenderer = t.CommonTabBarWin), this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this); + }), + (i.prototype.updatePag = function () { + for (var t = 0; t < this.pagAry.length; t++) + t == this.tabBar.selectedIndex + ? (this[this.pagAry[t]] || this.openPag(this.pagAry[t]), (this[this.pagAry[t]].visible = !0), this.dragDropUI.setTitle(this[this.pagAry[t]].name), 26 == this.actId && this.setLabVis(t)) + : this[this.pagAry[t]] && (this[this.pagAry[t]].visible = !1); + }), + (i.prototype.setLabVis = function (t) { + switch (t) { + case 0: + (this.myRank.visible = this.myScore.visible = !0), (this.myShaBakScore.visible = !1); + break; + case 1: + (this.myRank.visible = this.myScore.visible = !0), (this.myShaBakScore.visible = !1); + break; + case 2: + (this.myRank.visible = this.myScore.visible = !1), (this.myShaBakScore.visible = !0); + } + }), + (i.prototype.openPag = function (e) { + switch (e) { + case "scoreRank": + (this.scoreRank = new t.FubenRankPagView()), + (this.scoreRank.name = t.CrmPU.language_FuBen_Text1), + this.pagGroup.addChild(this.scoreRank), + this.scoreRank.open(this.actId), + 26 == this.actId && this.setLabVis(0); + break; + case "rankReward": + (this.rankReward = new t.FubenScoreView()), (this.rankReward.name = t.CrmPU.language_FuBen_Text5), this.pagGroup.addChild(this.rankReward); + var n = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (n && n.rankAward) { + var s = []; + for (var a in n.rankAward) s.push(n.rankAward[a]); + this.actId == i.EscapeFromTrial_ID && + s.push({ + rank: t.CrmPU.language_Common_248, + awards: n.partakeAward, + }); + var r = 26 == this.actId ? "行会排名" : t.CrmPU.language_FuBen_Text10, + o = 26 == this.actId ? "会长、副会长奖励" : t.CrmPU.language_FuBen_Text9; + this.rankReward.open(s, r, o), (s = null); + } + 26 == this.actId && this.setLabVis(1); + break; + case "rcorReward": + (this.rcorReward = new t.FubenScoreView()), (this.rcorReward.name = t.CrmPU.language_FuBen_Text6), this.pagGroup.addChild(this.rcorReward); + var l = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (l && l.phaseAward) { + var s = []; + for (var a in l.phaseAward) s.push(l.phaseAward[a]); + this.rcorReward.open(s, t.CrmPU.language_FuBen_Text8, t.CrmPU.language_FuBen_Text9), (s = null); + } + 26 == this.actId && this.setLabVis(2); + break; + case "killReward": + (this.killReward = new t.FubenScoreView()), (this.killReward.name = t.CrmPU.language_FuBen_Text15), this.pagGroup.addChild(this.killReward); + var h = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (h && h.killaward) { + var s = []; + for (var a in h.killaward) s.push(h.killaward[a]); + this.killReward.open(s, "", t.CrmPU.language_FuBen_Text9), (s = null); + } + } + }), + (i.prototype.updateMyRank = function (e) { + (this.myRank.text = 26 == this.actId ? "我的行会排名:" + e[1] : t.CrmPU.language_FuBen_Text7 + e[1]), + (this.myScore.text = 26 == this.actId ? "我的行会积分:" + e[0] : t.CrmPU.language_FuBen_Text3 + ":" + e[0]); + }), + (i.prototype.updateShaBakBoxSorce = function (e) { + this.myShaBakScore.text = t.CrmPU.language_FuBen_Text3 + ":" + e[0]; + }), + (i.prototype.open = function () { + for (var e = [], n = 0; n < arguments.length; n++) e[n] = arguments[n]; + (this.myShaBakScore.text = ""), (this.myRank.visible = this.myScore.visible = !0), (this.myShaBakScore.visible = !1); + var s; + t.ISYR.PActivity3 == e[2] && + ((this.actId = e[3]), + this.actId == i.BOSS_ID || this.actId == i.KuaFu_BOSS_ID || this.actId == i.EscapeFromTrial_ID + ? ((this.pagAry = ["scoreRank", "rankReward"]), (s = ["actpm_tab_pm", "actpm_tab_jf"])) + : ((this.pagAry = ["scoreRank", "rankReward", "rcorReward"]), (s = ["actpm_tab_pm", "actpm_tab_jf", "actpm_tab_jl"])), + (this.tabBar.dataProvider = new eui.ArrayCollection(s)), + (this.tabBar.selectedIndex = 0), + this.updatePag(), + this.updateMyRank(e), + this.HFTK(t.TQkyOx.ins().post_MyRankData, this.updateMyRank), + 26 == this.actId && this.HFTK(t.TQkyOx.ins().post_shaBakNextArard, this.updateShaBakBoxSorce)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + (this.tabBar.dataProvider = null), + this.dragDropUI.destroy(), + (this.dragDropUI = null); + for (var n = 0; n < this.pagAry.length; n++) this[this.pagAry[n]] && this[this.pagAry[n]].close(); + this.pagAry = null; + }), + (i.BOSS_ID = 11), + (i.KuaFu_BOSS_ID = 24), + (i.EscapeFromTrial_ID = 38), + i + ); + })(t.gIRYTi); + (t.FuBenRankView = e), __reflect(e.prototype, "app.FuBenRankView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.bg.source = this.itemIndex % 2 == 1 ? "bg_quyu_1" : "bg_quyu_2"), + (this.numLabel.visible = !0), + this.data.rank ? (this.numLabel.text = this.data.rank + "") : (this.numLabel.text = this.data.value + ""), + this.array + ? this.array.replaceAll(this.data.awards) + : ((this.array = new eui.ArrayCollection(this.data.awards)), (this.list.itemRenderer = t.ItemBase), (this.list.dataProvider = this.array)); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), (this.array = null); + }), + i + ); + })(eui.ItemRenderer); + (t.FubenScoreItemView = e), __reflect(e.prototype, "app.FubenScoreItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FubenScoreSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.list.itemRenderer = t.FubenScoreItemView), + (this.list.itemRendererSkinName = "FubenScoreItemSkin"), + (this.list.dataProvider = new eui.ArrayCollection(e[0])), + (this.label1.text = e[1]), + (this.label2.text = e[2]); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), (this.list.dataProvider = null); + }), + i + ); + })(t.gIRYTi); + (t.FubenScoreView = e), __reflect(e.prototype, "app.FubenScoreView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.myRankParam = [0, 0]), (t.curCDTime = 0), (t.firstFourArr = []), (t.canEscape = !1), (t.canEscapeNum = 0), (t.skinName = "FubenSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), KdbLz.qOtrbE.iFbP ? ((this.left = 0), (this.top = 40)) : ((this.right = 10), (this.top = 180)), (this.touchEnabled = !1), (this.touchChildren = !0); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.rankGroup.visible = !1), (this.timeGrp.visible = !1), (this.crossSeverBossLab.visible = !1); + for (var n = 0; 4 > n; n++) this["rankGrp" + n].touchEnabled = !1; + this.HFTK(t.TQkyOx.ins().post_currentActId, this.updateActId), this.updateActId(), (this.lbDcty.visible = !1), (this.lbDctyImg.visible = !1); + }), + (i.prototype.updateActId = function () { + var e = this; + if (t.TQkyOx.ins().currentActId) { + var i = t.TQkyOx.ins().getActivitConf(t.TQkyOx.ins().currentActId); + if ( + i.ActivityType == t.ISYR.PActivity3 || + i.ActivityType == t.ISYR.NightVoma || + i.ActivityType == t.ISYR.CrossServerChaos || + i.ActivityType == t.ISYR.CrossServerNightVoma || + i.ActivityType == t.ISYR.CrossServerShabak + ) + (this.fbLabel1.text = t.CrmPU.language_FuBen_Text1), + (this.fbLabel2.text = t.CrmPU.language_FuBen_Text2), + (this.fbLabel3.text = t.CrmPU.language_FuBen_Text3), + this.HFTK(t.TQkyOx.ins().post_RankData, this.updateRank), + this.HFTK(t.TQkyOx.ins().post_MyRankData, this.updateMyRank), + this.HFTK(t.TQkyOx.ins().post_NextAwardIndex, this.updateBox), + this.HFTK(t.TQkyOx.ins().post_jingjiTime, this.updateJingJiTime), + this.HFTK(t.TQkyOx.ins().post_zhenyingTime, this.updateZhenYingTime), + (this.rankGroup.visible = !0), + (this.campGrp.visible = !1), + this.vKruVZ(this.fbLabel2, this.onClick), + this.vKruVZ(this.boxImage, this.onClick), + this.updateRank([]), + this.updateJingJiTime(), + this.updateZhenYingTime(); + else if (i.ActivityType == t.ISYR.Inspire || i.ActivityType == t.ISYR.CrossServerBoss || i.ActivityType == t.ISYR.WorldBoss) { + if ( + ((this.fbLabel1.text = t.CrmPU.language_FuBen_Text1), + (this.fbLabel2.text = t.CrmPU.language_FuBen_Text2), + (this.fbLabel3.text = t.CrmPU.language_FuBen_Text3), + this.HFTK(t.TQkyOx.ins().post_RankData, this.updateRank), + this.HFTK(t.TQkyOx.ins().post_MyRankData, this.refreshMyRank), + this.HFTK(t.TQkyOx.ins().post_jingjiTime, this.updateJingJiTime), + i.ActivityType == t.ISYR.CrossServerBoss) + ) + for (var n = 0; 4 > n; n++) + (this["rankGrp" + n].touchEnabled = !0), + (this["rankGrp" + n].idx = n), + this.addBeginEvent(this["rankGrp" + n], this.lockTarget), + this.addDoubleDownEvent(this["rankGrp" + n], this.onClickPK), + this.VoZqXH(this["rankGrp" + n], this.mouseMove), + this.EeFPm(this["rankGrp" + n], this.mouseMove); + (this.rankGroup.visible = !0), + (this.campGrp.visible = !1), + (this.boxGroup.visible = !1), + this.vKruVZ(this.fbLabel2, this.onClick), + this.vKruVZ(this.boxImage, this.onClick), + this.updateRank([]), + this.updateJingJiTime(), + this.updateWorldBossTime(), + t.mAYZL.ins().ZbzdY(t.InspireView) || t.mAYZL.ins().open(t.InspireView); + } else if (!i || (i.ActivityType != t.ISYR.PActivity && i.ActivityType != t.ISYR.Material)) { + if (i && i.ActivityType == t.ISYR.Tower) + this.HFTK(t.TQkyOx.ins().post_TowerMonsterNum, function () { + 174 == t.GameMap.mapID + ? ((e.campGrp.visible = !1), (e.timeGrp.visible = !1), (e.actGrp.visible = !1)) + : ((e.campGrp.visible = !1), + (e.timeGrp.visible = !0), + (e.actGrp.visible = !0), + (e.actTime.visible = !0), + (e.actTime.text = "" + t.CrmPU.language_FuBen_Text12 + (t.TQkyOx.ins().towerMonsterNum > 10 ? 10 : t.TQkyOx.ins().towerMonsterNum) + "/10"), + (e.lbDcty.visible = !0), + (e.lbDctyImg.visible = !0)); + }); + else if (i.ActivityType == t.ISYR.EscapeFromTrial) { + var s = t.VlaoF.Activity26Config[t.TQkyOx.ins().currentActId]; + (this.canEscapeNum = s.Standardscore), + (this.enterFb.filters = t.FilterUtil.ARRAY_GRAY_FILTER), + (this.fbLabel1.text = t.CrmPU.language_FuBen_Text1), + (this.fbLabel2.text = t.CrmPU.language_FuBen_Text2), + (this.fbLabel3.text = t.CrmPU.language_FuBen_Text3), + this.HFTK(t.TQkyOx.ins().post_RankData, this.updateRank2), + this.HFTK(t.TQkyOx.ins().post_MyRankData, this.refreshMyRank2), + this.HFTK(t.TQkyOx.ins().post_MyRankData, this.updateEscapeState), + this.HFTK(t.TQkyOx.ins().post_25_12, this.updateEscape), + this.HFTK(t.TQkyOx.ins().post_jingjiTime, this.updateJingJiTime), + (this.canEscape = !1), + (this.rankGroup.visible = !0), + (this.campGrp.visible = !1), + (this.boxGroup.visible = !1), + (this.escapeGroup.visible = !0), + this.vKruVZ(this.fbLabel2, this.onClick), + this.vKruVZ(this.enterFb, this.onClick), + this.updateRank2([]), + this.updateEscape(), + this.updateJingJiTime(); + } + } else + this.HFTK(t.FuBenMgr.ins().post_g20_4, this.updateFbTime), + this.HFTK(t.FuBenMgr.ins().post_20_5, this.updatefbData), + (this.rankGroup.visible = !1), + (this.campGrp.visible = !1), + this.updateFbTime(); + } else if (t.ubnV.ihUJ) { + var a = t.TQkyOx.ins().getActivityInfo(26); + a && + a.redDot && + ((this.fbLabel1.text = t.CrmPU.language_FuBen_Text1), + (this.fbLabel2.text = t.CrmPU.language_FuBen_Text2), + (this.fbLabel3.text = "我的行会积分"), + this.HFTK(t.TQkyOx.ins().post_shaBakRank, this.updateShabakRank), + this.HFTK(t.TQkyOx.ins().post_shaBakMyRank, this.updateShaBakMyRank), + this.HFTK(t.TQkyOx.ins().post_shaBakNextArard, this.updateShaBakBoxSorce), + this.vKruVZ(this.fbLabel2, this.onClick), + this.vKruVZ(this.boxImage, this.onClick), + this.updateRank([])); + } + }), + (i.prototype.updateZhenYingTime = function () { + var e = (t.TQkyOx.ins().zhenyingTime - egret.getTimer()) >> 0; + t.GameMap.fubenID > 0 && + e > 0 && + ((this.timeGrp.visible = !0), (this.campGrp.visible = !0), this.zhenYingTime(), t.KHNO.ins().remove(this.zhenYingTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.zhenYingTime, this)); + }), + (i.prototype.zhenYingTime = function () { + var e = t.TQkyOx.ins().zhenyingTime - egret.getTimer(); + (this.campTime.text = t.CrmPU.language_Common_83 + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), t.DateUtils.TIME_FORMAT_10)), + 0 >= e && (t.KHNO.ins().remove(this.zhenYingTime, this), (this.campTime.text = ""), (this.campGrp.visible = !1)); + }), + (i.prototype.updateJingJiTime = function () { + var e = (t.TQkyOx.ins().jingjiTime - egret.getTimer()) >> 0; + t.GameMap.fubenID > 0 && + e > 0 && + ((this.timeGrp.visible = !0), + (this.actGrp.visible = !0), + (this.curCDTime = t.TQkyOx.ins().jingjiTime), + this.updateTime(), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + }), + (i.prototype.updateWorldBossTime = function () { + var e = (t.TQkyOx.ins().worldBossTime - egret.getTimer()) >> 0; + t.GameMap.fubenID > 0 && + e > 0 && + ((this.timeGrp.visible = !0), + (this.actGrp.visible = !0), + (this.curCDTime = t.TQkyOx.ins().worldBossTime), + this.updateTime(), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + }), + (i.prototype.updateFbTime = function () { + var e = (t.FuBenMgr.ins().timeRemaining - egret.getTimer()) >> 0; + t.GameMap.fubenID > 0 && + e > 0 && + ((this.timeGrp.visible = !0), + (this.actGrp.visible = !0), + (this.curCDTime = t.FuBenMgr.ins().timeRemaining), + this.updateTime(), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + }), + (i.prototype.updateTime = function () { + var e = this.curCDTime - egret.getTimer(); + (this.actTime.text = t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), t.DateUtils.TIME_FORMAT_10)), + 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.actTime.text = ""), (this.timeGrp.visible = !1)); + }), + (i.prototype.updatefbData = function (e) { + e && + ((this.waveNumGrp.visible = !0), + (this.monsterGrp.visible = !0), + (this.waveNum.text = "" + t.CrmPU.language_Common_101 + e.curWave + "/" + e.allWave), + (this.monsterNum.text = "" + t.CrmPU.language_Common_102 + e.surplusMonNum)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.fbLabel2: + if (t.TQkyOx.ins().currentActId) t.mAYZL.ins().open(t.FuBenRankView, this.myRankParam[0], this.myRankParam[1], t.ISYR.PActivity3, t.TQkyOx.ins().currentActId); + else if (t.ubnV.ihUJ) { + var i = t.TQkyOx.ins().getActivityInfo(26); + i && i.redDot && t.mAYZL.ins().open(t.FuBenRankView, this.myRankParam[0], this.myRankParam[1], t.ISYR.PActivity3, 26); + } + break; + case this.boxImage: + if (t.ubnV.ihUJ) + if (t.TQkyOx.ins().currentActId) t.mAYZL.ins().open(t.FuBenRankView, this.myRankParam[0], this.myRankParam[1], t.ISYR.PActivity3, t.TQkyOx.ins().currentActId); + else { + var i = t.TQkyOx.ins().getActivityInfo(26); + i && i.redDot && t.mAYZL.ins().open(t.FuBenRankView, this.myRankParam[0], this.myRankParam[1], t.ISYR.PActivity3, 26); + } + else { + var n = t.VlaoF.BagRemainConfig[1]; + if (n) { + var s = t.ThgMu.ins().getBagCapacity(n.bagremain); + s ? t.TQkyOx.ins().send_25_1(t.TQkyOx.ins().currentActId, t.Operate.cGetPhaseAward) : t.uMEZy.ins().IrCm(n.bagtips); + } + } + break; + case this.enterFb: + this.canEscape ? t.TQkyOx.ins().send_25_1(t.TQkyOx.ins().currentActId, t.Operate.cGetPhaseAward) : t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips142, this.canEscapeNum)); + } + }), + (i.prototype.updateShabakRank = function (t) { + t && t.length > 0 && ((this.rankGroup.visible = !0), this.updateRank(t)); + }), + (i.prototype.updateShaBakMyRank = function (t) { + t && t[0] > 0 && ((this.rankGroup.visible = !0), this.refreshMyRank(t)); + }), + (i.prototype.updateShaBakBoxSorce = function (e) { + if (t.ubnV.ihUJ) { + var i = t.TQkyOx.ins().getActivityInfo(26); + i && i.redDot && this.updateBoxSorce(26, e[0]); + } + }), + (i.prototype.updateRank = function (t) { + this.firstFourArr = t; + for (var e, i = 0; 4 > i; i++) + (e = this.rankGroup.getChildByName("group" + i)), t[i] ? ((e.visible = !0), (e.getChildByName("nameLab").text = t[i].name), (e.getChildByName("score").text = t[i].score)) : (e.visible = !1); + }), + (i.prototype.updateRank2 = function (e) { + this.firstFourArr = e; + for (var i, n = t.TQkyOx.ins().EscapeRoleInfo, s = 0; 4 > s; s++) + (i = this.rankGroup.getChildByName("group" + s)), + e[s] + ? ((i.visible = !0), + n.indexOf(e[s].playerId) > -1 + ? ((i.getChildByName("nameLab").text = e[s].name), (i.getChildByName("score").text = t.CrmPU.language_Common_249)) + : ((i.getChildByName("nameLab").text = e[s].name), (i.getChildByName("score").text = e[s].score))) + : (i.visible = !1); + }), + (i.prototype.updateMyRank = function (t) { + (this.myRankParam = t), (this.myRank.text = t[1] + ""), (this.myScore.text = t[0] + ""), this.updateBox(); + }), + (i.prototype.refreshMyRank = function (t) { + (this.myRankParam = t), (this.myRank.text = t[1] + ""), (this.myScore.text = t[0] + ""); + }), + (i.prototype.refreshMyRank2 = function (e) { + e[0] >= this.canEscapeNum + ? (this.myScore.textFlow = t.hETx.qYVI(t.zlkp.replace("|C:0x28ee01&T:%s||C:0xe5ddcf&T: / %s|", e[0], this.canEscapeNum))) + : (this.myScore.textFlow = t.hETx.qYVI(t.zlkp.replace("|C:0xe50000&T:%s||C:0xe5ddcf&T: / %s|", e[0], this.canEscapeNum))); + }), + (i.prototype.updateBox = function () { + t.TQkyOx.ins().currentActId && this.updateBoxSorce(t.TQkyOx.ins().currentActId, this.myRankParam[0]); + }), + (i.prototype.updateBoxSorce = function (e, i) { + (this.redPoint.visible = !1), (this.boxMyScore.text = i + ""); + var n = t.TQkyOx.ins().getActivityConfigById(e); + if (n && ((this.boxMyScore.textColor = 15064527), (this.boxScore.textColor = 15064527), n && n.phaseAward && n.phaseAward[t.TQkyOx.ins().nextAward])) { + var s = n.phaseAward[t.TQkyOx.ins().nextAward].value; + return ( + (this.boxScore.text = "/" + s), + i >= s && ((this.boxMyScore.textColor = 2682369), (this.boxScore.textColor = 2682369), (this.redPoint.visible = t.ubnV.ihUJ ? !1 : !0)), + (this.boxGroup.visible = !0), + void (this.boxGroup.right = KdbLz.qOtrbE.iFbP ? 186 : 0) + ); + } + this.boxGroup.visible = !1; + }), + (i.prototype.updateEscape = function () { + var e = t.TQkyOx.ins().EscapeRoleNum; + this.labEscapeRoleNum.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_247, e)); + }), + (i.prototype.updateEscapeState = function (e) { + e[0] >= this.canEscapeNum && + ((this.canEscape = !0), + (this.enterFb.filters = null), + this.canEscapeMc || + ((this.canEscapeMc = t.ObjectPool.pop("app.MovieClip")), + (this.canEscapeMc.scaleX = this.canEscapeMc.scaleY = 1), + (this.canEscapeMc.x = 30), + (this.canEscapeMc.y = 32), + (this.canEscapeMc.touchEnabled = !1), + this.escapeGroup.addChild(this.canEscapeMc)), + this.canEscapeMc.isPlaying || this.canEscapeMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_djtt", -1)); + }), + (i.prototype.lockTarget = function (e) { + var i, + n = e.currentTarget.idx; + this.firstFourArr[n] && (i = this.firstFourArr[n].playerReg); + var s = t.NWRFmB.ins().getPayer; + i && s.recog != i && t.uMEZy.ins().IrCm("双击自动智能PK"); + }), + (i.prototype.onClickPK = function (e) { + var i, + n = e.currentTarget.idx; + this.firstFourArr[n] && (i = this.firstFourArr[n].playerReg); + var s = t.NWRFmB.ins().getPayer; + if (i && s.recog != i) { + t.EhSWiR.m_Move_Char = null; + var a = t.NWRFmB.ins().getPayer; + t.Nzfh.ins().postUpdateTarget(i), (a.lockTarget = i), t.Nzfh.ins().post_pk(); + } + }), + (i.prototype.mouseMove = function (t) { + var e = t.currentTarget.getChildByName("selectImg"); + e && (t.type == mouse.MouseEvent.MOUSE_OUT ? (e.visible = !1) : (e.visible = !0)); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.canEscapeMc && (this.canEscapeMc.destroy(), (this.canEscapeMc = null)), + this.fEHj(this.fbLabel2, this.onClick), + this.fEHj(this.boxImage, this.onClick), + this.fEHj(this.enterFb, this.onClick), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().remove(this.zhenYingTime, this); + for (var s = 0; 4 > s; s++) + this.removeBeginEvent(this["rankGrp" + s], this.lockTarget), + this.removeDoubleDownEvent(this["rankGrp" + s], this.onClickPK), + this.lbpdAJ(this["rankGrp" + s], this.mouseMove), + this.lvpAF(this["rankGrp" + s], this.mouseMove); + }), + i + ); + })(t.gIRYTi); + (t.FuBenView = e), __reflect(e.prototype, "app.FuBenView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._ghostInfo = {}), (i.sysId = t.jDIWJt.ghost), i.YrTisc(1, i.post_31_1), i.YrTisc(2, i.post_31_2), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_31_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.send_31_2 = function (t, e) { + var i = this.MxGiq(2); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + Object.defineProperty(i.prototype, "ghostInfo", { + get: function () { + return this._ghostInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_31_1 = function (e) { + t.ObjectPool.wipe(this._ghostInfo); + for (var i, n, s, a = e.readByte(), r = 0; a > r; r++) + (i = e.readByte()), + (n = e.readInt()), + (s = e.readInt()), + (this._ghostInfo[i] = { + nLv: n, + nBless: s, + }); + }), + (i.prototype.post_31_2 = function (e) { + var i = e.readByte(); + if (i && 4 != i) return t.uMEZy.ins().IrCm(t.CrmPU.language_Ghost_result[i - 1]), null; + var n = e.readByte(), + s = e.readInt(), + a = e.readInt(); + return ( + (this._ghostInfo[n] = { + nLv: s, + nBless: a, + }), + i + ); + }), + (i.prototype.getRed = function (e) { + void 0 === e && (e = 0); + var n = t.NWRFmB.ins().getPayer; + if (n && n.propSet.MzYki() >= 4) { + var s = t.ZAJw.MPDpiB(ZnGy.qatEquipment, 970); + if (s) { + var a = i.ins().ghostInfo; + if (e) { + if (!a[e] || !a[e].nLv) return 1; + } else for (var r = 1; 5 >= r; r++) if (!a[r] || !a[r].nLv) return 1; + } + } + return 0; + }), + (i.prototype.getRedById = function (e) { + var i = t.VlaoF.demonsbodyConfig; + for (var n in i) { + var s = i[n][1]; + if (s && s.cost) { + var a = s.cost.filter(function (t) { + return t.id == e; + }); + if (a.length > 0) return this.getRed(); + } + } + return 0; + }), + i + ); + })(t.DlUenA); + (t.GhostMgr = e), __reflect(e.prototype, "app.GhostMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "GhostAutoViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Ghost_TITLE), + (this.sureBtn.label = t.CrmPU.language_Common_59), + (this.cancelBtn.label = t.CrmPU.language_Common_60), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.jianBtn, this.onClick), + this.vKruVZ(this.sureBtn, this.onClick), + this.vKruVZ(this.cancelBtn, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = ""; + e && ((this.id = e[0]), (n = e[1]), (this.lvMin = e[2]), (this.lvMax = e[3])), (this.curNum = this.lvMin), (this.lbCount.text = this.curNum + ""); + var s = "", + a = t.mAYZL.ins().ZzTs(t.GhostView); + if (a) + if (a.checkYes.selected) s = "|C:0x28ee01&T:" + t.CrmPU.language_System25[3] + "|"; + else { + var r = t.VlaoF.demonsbodyConfig[this.id][this.lvMin]; + if (r) { + var o = t.edHC.ins().getItemIDByCost(r.cost), + l = t.VlaoF.StdItems[o.itemId2]; + s = "|C:0x28ee01&T:" + l.name + "|"; + } + } + (this.strLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Ghost_DESC14, s))), (this.typeLab.text = n + t.CrmPU.language_Common_263); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.addBtn: + (this.curNum += 1), this.curNum > this.lvMax && (this.curNum = this.lvMax), (this.lbCount.text = this.curNum + ""); + break; + case this.jianBtn: + (this.curNum -= 1), this.curNum < this.lvMin && (this.curNum = this.lvMin), (this.lbCount.text = this.curNum + ""); + break; + case this.sureBtn: + var i = t.mAYZL.ins().ZzTs(t.GhostView); + i && (i.upPost2(this.id, this.curNum), (i = null)), t.mAYZL.ins().close(this); + break; + case this.cancelBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.jianBtn, this.onClick), + this.fEHj(this.sureBtn, this.onClick), + this.fEHj(this.cancelBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.GhostAutoView = e), __reflect(e.prototype, "app.GhostAutoView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectIdx = 0), (t.isAuto = !1), (t.autoLock = !1), (t.itemId = 0), (t.cfgCur = null), (t.skinName = "GhostSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_Ghost_TITLE); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.selectIdx = 0), t.MouseScroller.bind(this.scroller), (this.checkYes.selected = !1); + var n, + s = t.VlaoF.DemonsReplaceConfig; + for (var a in s) n = s[a]; + if (n) { + this.price = parseInt(n.price); + var r = t.VlaoF.StdItems[n.itemid].name; + this.lbMoney.text = t.zlkp.replace(t.CrmPU.language_Ghost_DESC13, r, n.price); + } + (this.info1_desc1.text = t.CrmPU.language_Ghost_DESC), + (this.info1_desc3.text = t.CrmPU.language_Ghost_DESC4), + (this.txt_get.text = t.CrmPU.language_Common_155), + (this.info2_desc1.text = t.CrmPU.language_Ghost_DESC5), + (this.info3_desc.text = t.CrmPU.language_Ghost_DESC6), + (this.info3_desc2.text = t.CrmPU.language_Ghost_DESC7), + (this.info3_desc4.text = t.CrmPU.language_Ghost_DESC8), + (this.info3_desc5.text = t.CrmPU.language_Ghost_DESC9), + (this.info4_desc.textFlow = t.hETx.qYVI(t.CrmPU.language_Ghost_DESC10)), + (this.info4_desc1.textFlow = t.hETx.qYVI(t.VlaoF.demonsconstConfig.demonspoints)), + (this.receiveBtn.label = t.CrmPU.language_Ghost_Btn2), + this.vKruVZ(this.receiveBtn, this.clickFunction), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.HFTK(t.GhostMgr.ins().post_31_1, this.refreshView), + this.HFTK(t.GhostMgr.ins().post_31_2, this.post_31_2), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updatelistCost), + this.HFTK(t.ThgMu.ins().post_8_1, this.refreshView), + this.HFTK(t.ThgMu.ins().post_8_4, this.refreshView), + this.HFTK(t.ThgMu.ins().post_8_3, this.refreshView), + t.GhostMgr.ins().send_31_1(), + (this.optTab.itemRenderer = t.TradeLineTabView), + this.optTab.addEventListener(eui.ItemTapEvent.CHANGING, this.onBarItemTap, this), + (this.optTab.dataProvider = new eui.ArrayCollection([ + { + id: 1, + name: t.CrmPU.language_Ghost_TABl, + }, + { + id: 2, + name: t.CrmPU.language_Ghost_TAB2, + }, + { + id: 3, + name: t.CrmPU.language_Ghost_TAB3, + }, + { + id: 4, + name: t.CrmPU.language_Ghost_TAB4, + }, + ])), + (this.info1_ListAry = new eui.ArrayCollection()), + (this.info1_List.itemRenderer = t.ResonateItemRender), + (this.info1_List.dataProvider = this.info1_ListAry), + (this.info2_list.itemRenderer = t.ResonateItem2Render); + var o, + l = [], + h = t.VlaoF.demonslevelConfig[0], + p = t.VlaoF.demonslevelConfig[1], + u = ""; + for (var c in h) (u = ""), (o = h[c]), (u = o.text + "|C:0xe5ddcf&T:,|"), (o = p[c]), (u += o.text + ""), l.push(u); + (this.info2_list.dataProvider = new eui.ArrayCollection(l)), + (this.info3_list.itemRenderer = t.ResonateItem2Render), + (this.info3_list.dataProvider = new eui.ArrayCollection(t.VlaoF.demonsconstConfig.titleattr)), + (this.listCost.itemRenderer = t.FourImagesCostItem), + this.updateView(); + }), + (i.prototype.updatelistCost = function () { + this.cfgCur && (this.listCost.dataProvider = new eui.ArrayCollection(this.cfgCur.cost)); + }), + (i.prototype.onGetProps = function () { + var e = t.edHC.ins().getItemIDByCost(this.cfgCur.cost); + e.itemId && + (t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + )); + }), + (i.prototype.getCostObj = function () { + var e; + return (e = this.checkYes.selected ? t.edHC.ins().getItemIDByCost2(this.cfgCur.cost, [this.itemId]) : t.edHC.ins().getItemIDByCost(this.cfgCur.cost)); + }), + (i.prototype.clickFunction = function () { + t.mAYZL.ins().open(t.VipView); + }), + (i.prototype.onBarItemTap = function (t) { + (this.selectIdx = this.optTab.selectedIndex), this.updateView(); + }), + (i.prototype.post_31_2 = function (e) { + e ? 4 == e && t.Nzfh.ins().payResultMC(0, this.localToGlobal(this.width / 2 + 40, this.height / 2)) : t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2 + 40, this.height / 2)), + this.updateView(); + }), + (i.prototype.refreshView = function () { + t.KHNO.ins().RTXtZF(this.updateView, this) || t.KHNO.ins().doNext(this.updateView, this); + }), + (i.prototype.updateView = function () { + (this.autoLock = !1), + (this.group1.visible = 0 == this.selectIdx), + (this.group2.visible = 1 == this.selectIdx), + (this.group3.visible = 2 == this.selectIdx), + (this.group4.visible = 3 == this.selectIdx); + var e, + i, + n, + s, + a, + r = [], + o = t.GhostMgr.ins().ghostInfo, + l = 999, + h = 0, + p = 0, + u = 0; + this.dotImage.visible = !1; + for (var c in t.VlaoF.demonsbodyConfig) { + var g = {}; + (e = ""), + (g.id = c), + o[c] && o[c].nLv + ? ((g.nLv = o[c].nLv), + (g.nBless = o[c].nBless), + (g.isRed = !1), + (i = t.VlaoF.demonsbodyConfig[c][g.nLv]), + i && + (g.nLv < l && (l = g.nLv), + g.nLv > p && (p = g.nLv), + (e = t.AttributeData.getItemAttStrByType(i.attr[0], i.attr)), + 79 == i.attr[0].type && (e = e.replace(t.CrmPU.language_Omission_txt103, t.CrmPU.language_Omission_txt104))), + (g.attr = e), + (g.name = i.name)) + : ((l = 0), + (g.isRed = t.GhostMgr.ins().getRed(+c)), + g.isRed && (this.dotImage.visible = !0), + (g.nLv = 0), + o[c] ? (g.nBless = o[c].nBless) : (g.nBless = 0), + (i = t.VlaoF.demonsbodyConfig[c][0]), + i && ((e = t.AttributeData.getItemAttStrByType(i.attr[0], i.attr)), 79 == i.attr[0].type && (e = e.replace(t.CrmPU.language_Omission_txt103, t.CrmPU.language_Omission_txt104))), + (g.attr = e), + (g.name = i.name)), + (n = this.group4.getChildByName("img" + c)), + (n.source = "t_shenmo_" + c), + (s = this.group4.getChildByName("bar" + c)), + (s.value = g.nBless), + (s.maximum = 1e4), + (a = this.group4.getChildByName("lab" + c)); + var d = 100; + g.nBless < 1e4 && (d = 40 + 0.1 * Math.floor(g.nBless / 100)), + (a.text = t.CrmPU.language_Ghost_DESC11 + d + "%"), + r.push(g), + this.info1_ListAry.replaceAll(r), + this.isAuto && g.id == this.autoId && g.nLv >= this.autoLevel && ((this.isAuto = !1), t.KHNO.ins().remove(this.autoUpPost, this), this.info1_List.getChildAt(this.autoId - 1).isAuto(!1)); + } + if (i) { + var m = void 0, + f = 0, + v = void 0, + _ = void 0; + for (var c in i.cost) { + if (((v = this.info1_Item.getChildByName("item" + f)), (_ = this.info1_Item.getChildByName("itemName" + f)), v)) + if (((m = i.cost[c]), (v.data = m), m.type)) { + this.cfgCur = i; + var y = t.ZAJw.sztgR(m.type); + (_.text = y[0]), (_.textColor = t.ClwSVR.GOODS_COLOR[0]); + } else { + this.itemId = m.id; + var T = t.VlaoF.StdItems[m.id]; + T && (t.GetPropsView.getPropsTxt(this.txt_get, m.id), (_.text = T.name), (_.textColor = t.ClwSVR.GOODS_COLOR[T.showQuality])); + } + f++; + } + } + if (l) { + var M = t.VlaoF.demonslevelConfig[0]; + M[l] && (h = M[l].attr[0].value); + } + if (p) { + var C = t.VlaoF.demonslevelConfig[1]; + C[p] && (u = C[p].attr[0].value); + } + (this.info1_desc2.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Ghost_DESC2, l, p, h + u))), + (this.info2_desc2.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Ghost_DESC2, l, p, h + u))), + (this.info3_desc1.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Ghost_DESC2, l, p, h + u))), + this.updatelistCost(); + }), + (i.prototype.upPost = function (e) { + var i = this.getCostObj(); + return i.itemId + ? void ( + t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + i, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ) + ) + : void t.GhostMgr.ins().send_31_2(e, +this.checkYes.selected); + }), + (i.prototype.upPost2 = function (e, i) { + t.KHNO.ins().RTXtZF(this.autoUpPost, this) && t.KHNO.ins().remove(this.autoUpPost, this), + (this.isAuto = !0), + (this.autoId = e), + (this.autoLevel = i), + this.info1_List.getChildAt(this.autoId - 1).isAuto(!0), + this.autoUpPost(), + t.KHNO.ins().tBiJo(150, 0, this.autoUpPost, this); + }), + (i.prototype.stopAutoUp = function () { + t.KHNO.ins().RTXtZF(this.autoUpPost, this) && t.KHNO.ins().remove(this.autoUpPost, this), (this.isAuto = !1), this.info1_List.getChildAt(this.autoId - 1).isAuto(!1); + }), + (i.prototype.autoUpPost = function () { + var e = this.getCostObj(); + return e.itemId + ? ((this.isAuto = !1), + (this.autoLock = !1), + t.KHNO.ins().remove(this.autoUpPost, this), + this.info1_List.getChildAt(this.autoId - 1).isAuto(!1), + void ( + t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ) + )) + : void ( + this.autoLock || + ((this.autoLock = !0), + this.checkYes.selected && + t.ZAJw.MPDpiB(ZnGy.qatYuanbao) < this.price && + ((this.isAuto = !1), (this.autoLock = !1), t.KHNO.ins().remove(this.autoUpPost, this), this.info1_List.getChildAt(this.autoId - 1).isAuto(!1)), + t.GhostMgr.ins().send_31_2(this.autoId, +this.checkYes.selected)) + ); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + t.KHNO.ins().removeAll(this), + t.MouseScroller.unbind(this.scroller), + this.fEHj(this.receiveBtn, this.clickFunction), + this.optTab.removeEventListener(eui.ItemTapEvent.CHANGING, this.onBarItemTap, this); + }), + i + ); + })(t.gIRYTi); + (t.GhostView = e), __reflect(e.prototype, "app.GhostView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ResonateItem2Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.label.textFlow = t.hETx.qYVI(this.data); + }), + i + ); + })(t.BaseItemRender); + (t.ResonateItem2Render = e), __reflect(e.prototype, "app.ResonateItem2Render"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isClick = !0), (t.skinName = "ResonateItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.isClick && ((this.isClick = !1), this.vKruVZ(this.button, this.clickFunction), this.vKruVZ(this.button2, this.clickFunction2)), + (this.button.label = t.CrmPU.language_Ghost_Btn), + (this.button2.label = t.CrmPU.language_Ghost_Btn4); + var e = t.mAYZL.ins().ZzTs(t.GhostView); + e && e.isAuto && e.autoId == this.data.id && (this.button2.label = t.CrmPU.language_Ghost_Btn5), + (this.nameImage.source = "sm_t" + this.data.id), + (this.totallyImage.visible = this.data.nBless >= 1e4), + (this.lvLabel.text = t.zlkp.replace(t.CrmPU.language_Ghost_DESC3, this.data.nLv)), + (this.attrLabel.text = this.data.attr), + (this.dotImage.visible = this.data.isRed); + }), + (i.prototype.isAuto = function (e) { + e ? (this.button2.label = t.CrmPU.language_Ghost_Btn5) : (this.button2.label = t.CrmPU.language_Ghost_Btn4); + }), + (i.prototype.clickFunction = function () { + if (this.data.nLv >= t.VlaoF.demonsconstConfig.maxlevel) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips85); + var e = t.mAYZL.ins().ZzTs(t.GhostView); + e && (e.upPost(+this.data.id), (e = null)); + }), + (i.prototype.clickFunction2 = function () { + var e = t.mAYZL.ins().ZzTs(t.GhostView); + if (e) { + if (e.isAuto) return void e.stopAutoUp(); + e = null; + } + return this.data.nLv >= t.VlaoF.demonsconstConfig.maxlevel + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips85) + : void (t.mAYZL.ins().ZbzdY(t.GhostAutoView) || t.mAYZL.ins().open(t.GhostAutoView, +this.data.id, this.data.name, this.data.nLv + 1, 10)); + }), + (i.prototype.$onRemoveFromStage = function () { + (this.isClick = !1), this.fEHj(this.button, this.clickFunction), this.fEHj(this.button2, this.clickFunction2), e.prototype.$onRemoveFromStage.call(this); + }), + i + ); + })(t.BaseItemRender); + (t.ResonateItemRender = e), __reflect(e.prototype, "app.ResonateItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.type = 0), (i.ruleId = 83), (i.titleStr = t.CrmPU.language_System86), (i.skinName = "RoleGhostSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.open = function (t) { + t && (this.type = t.type); + }), + (i.prototype.showView = function (t) { + (this.ghostInfo = t), this.updateinfo(t); + }), + (i.prototype.init = function () { + this.updateinfo(this.ghostInfo), + this.type ? ((this.button.visible = !0), (this.button.label = t.CrmPU.language_Ghost_Btn3), this.vKruVZ(this.button, this.clickFunction)) : (this.button.visible = !1); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.fEHj(this.button, this.clickFunction); + }), + (i.prototype.clickFunction = function () { + t.mAYZL.ins().open(t.GhostView); + }), + (i.prototype.updateinfo = function (e) { + e = e ? e : {}; + for (var i, n = 0, s = 1; 5 >= s; s++) (i = this.infoGroup.getChildByName("lv" + s)), e[s] ? ((i.text = "Lv" + e[s].nLv), (n += e[s].nLv)) : (i.text = "Lv0"); + this.descLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Ghost_DESC12, n)); + }), + i + ); + })(t.BaseView); + (t.RoleGhostView = e), __reflect(e.prototype, "app.RoleGhostView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "GongGaoWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.vKruVZ(this.sureBtn, this.onClick), this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e) { + this.str.textFlow = t.hETx.qYVI(e[0]); + var n = this.str.height + 113; + (this.x = (t.aTwWrO.ins().getWidth() - this.width) / 2), (this.y = (t.aTwWrO.ins().getHeight() - n) / 2 - 30); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sureBtn: + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.GongGaoWin = e), __reflect(e.prototype, "app.GongGaoWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "ShengQuNoticeWinSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.initUI = function () { + t.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle("公告"), (this.noticeLab.text = ""); + }), + (e.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + }), + (e.prototype.onChange = function (t) {}), + (e.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.prototype.close.call(this, e), this.$onClose(); + }), + e + ); + })(t.gIRYTi); + (t.ShengQuNoticeWin = e), __reflect(e.prototype, "app.ShengQuNoticeWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "GrowWayRendererSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + var e = this.data; + t.lEYZI.Naoc(this.titleLabel), t.lEYZI.Naoc(this.list), t.lEYZI.Naoc(this.descLabel); + var i = t.VlaoF.GrowWayConfig[e]; + i.title && ((this.titleLabel.textFlow = t.hETx.generateTextFlow1(i.title)), this.group.addChild(this.titleLabel)), + i.items && ((this.list.itemRenderer = t.ItemBase), (this.list.dataProvider = new eui.ArrayCollection(i.items)), this.group.addChild(this.list)), + i.desc && ((this.descLabel.textFlow = t.hETx.generateTextFlow1(i.desc)), this.group.addChild(this.descLabel)); + }), + i + ); + })(eui.ItemRenderer); + (t.GrowWayItemRenderer = e), __reflect(e.prototype, "app.GrowWayItemRenderer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.pagMax = 0), (i.btnArr = []), (i.tabIdxAry = []), (i.tabIdx = 0), (i.btnIdx = 0), (i.pagIdx = 0), (i.skinName = "GrowWaySkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tab.itemRenderer = t.CommonTabBarWin), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_GrowWay_txt0), + (this.btnList.itemRenderer = t.TradeLineTabView), + (this.itemList.itemRenderer = t.GrowWayItemRenderer); + }), + (i.prototype.clickTab = function (t) { + (this.tabIdx = t.currentTarget.selectedIndex), this.updatePag(); + }), + (i.prototype.updatePag = function () { + var e = t.VlaoF.GrowWayTabConfig[this.tabIdxAry[this.tabIdx]]; + if (e) { + (this.btnIdx = 0), (this.btnArr.length = 0); + new eui.ArrayCollection(); + for (var i in e) { + var n = e[i].tabinfo.slice(); + this.btnArr.push({ + id: e[i].index, + name: e[i].itemname, + tabinfo: n, + }); + } + var s = this.btnArr[this.btnIdx]; + (this.btnList.dataProvider = new eui.ArrayCollection(this.btnArr)), + (this.btnList.selectedIndex = this.btnIdx), + (this.pagIdx = 0), + s && s.tabinfo && (this.pagMax = s.length), + this.updateItemList(); + } + }), + (i.prototype.clickBtnList = function (t) { + (this.btnIdx = this.btnList.selectedIndex), (this.pagIdx = 0), this.updateItemList(); + }), + (i.prototype.updateItemList = function () { + var e = this.btnArr[this.btnIdx], + i = []; + if (e && e.tabinfo) { + (this.pagMax = e.tabinfo.length), + (this.pagIdx = this.pagIdx < 0 ? 0 : this.pagIdx), + (this.pagIdx = this.pagIdx > this.pagMax - 1 ? this.pagMax - 1 : this.pagIdx), + (this.pageLabel.text = this.pagIdx + 1 + "/" + this.pagMax); + var n = e.tabinfo[this.pagIdx]; + if (n) for (var s = void 0, a = 0; a < n.length; a++) (s = t.VlaoF.GrowWayConfig[n[a]]), s && i.push(n[a]); + } + this.itemList.dataProvider = new eui.ArrayCollection(i); + }), + (i.prototype.clickBtn = function (t) { + t.currentTarget == this.leftButton ? this.pagIdx-- : t.currentTarget == this.rightButton && this.pagIdx++, this.updateItemList(); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = [], + s = new eui.ArrayCollection(); + for (var a in t.VlaoF.GrowWayTabConfig) + if ((n = t.VlaoF.GrowWayTabConfig[a])) { + var r = ""; + for (var o in n) r = n[o].title; + s.addItem(r), this.tabIdxAry.push(a); + } + (this.tab.dataProvider = s), + this.addChangingEvent(this.tab, this.clickTab), + this.addChangingEvent(this.btnList, this.clickBtnList), + this.vKruVZ(this.leftButton, this.clickBtn), + this.vKruVZ(this.rightButton, this.clickBtn), + this.updatePag(); + }), + (i.prototype.close = function () { + e.prototype.close.call(this), + this.$onClose(), + (this.tab.itemRenderer = null), + (this.btnList.itemRenderer = null), + (this.itemList.itemRenderer = null), + this.removeChangingEvent(this.tab, this.clickTab), + this.removeChangingEvent(this.btnList, this.clickBtnList), + this.fEHj(this.leftButton, this.clickBtn), + this.fEHj(this.rightButton, this.clickBtn); + }), + i + ); + })(t.gIRYTi); + (t.GrowWayView = e), __reflect(e.prototype, "app.GrowWayView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._guildMembers = []), + (i.applyGuilds = []), + (i._applyList = []), + (i._guildListInfos = []), + (i._guildBuilds = []), + (i._guildLogs = []), + (i.devoteNums = []), + (i.declareWarAry = []), + (i.isShowView = !1), + (i.isSendToServer = !1), + (i.sysId = t.jDIWJt.Guild), + i.YrTisc(t.GuildProtocol.SC_GuildInfo, i.post_GuildInfo), + i.YrTisc(t.GuildProtocol.SC_GuildMember, i.post_GuildMembers), + i.YrTisc(t.GuildProtocol.SC_GuildList, i.post_GuildList), + i.YrTisc(t.GuildProtocol.SC_AddGuild, i.post_GuildCreate), + i.YrTisc(t.GuildProtocol.SC_DelGuild, i.post_GuildDel), + i.YrTisc(t.GuildProtocol.SC_JoinApplyMsgList, i.post_ApplyInfos), + i.YrTisc(t.GuildProtocol.SC_AddGuildGuildManager, i.post_Meanager), + i.YrTisc(t.GuildProtocol.SC_UpdateMemo, i.post_Notice), + i.YrTisc(t.GuildProtocol.SC_GuildDonate, i.post_GuildDonate), + i.YrTisc(t.GuildProtocol.SC_JoinApply, i.post_GuildJoinApply), + i.YrTisc(t.GuildProtocol.SC_DeleteMember, i.post_DelMember), + i.YrTisc(t.GuildProtocol.SC_ChangeGuildPos, i.post_ChangeGuildPos), + i.YrTisc(t.GuildProtocol.SC_LeaderChange, i.post_LeaderChange), + i.YrTisc(t.GuildProtocol.SC_LeftGuild, i.post_LeftGuild), + i.YrTisc(t.GuildProtocol.SC_SetAddMemberFlag, i.post_SetAddMemberFlag), + i.YrTisc(t.GuildProtocol.SC_GuildUpdateBuild, i.post_GuildUpdateBuild), + i.YrTisc(t.GuildProtocol.SC_DealGuildApply, i.post_DealGuildApply), + i.YrTisc(t.GuildProtocol.SC_ImpeachmentLeader, i.post_ImpeachmentLeader), + i.YrTisc(t.GuildProtocol.SC_DeclareWar, i.post_DeclareWar), + i.YrTisc(t.GuildProtocol.SC_ApplySuccess, i.post_ApproveSuccess), + i.YrTisc(t.GuildProtocol.SC_GuildDonateNum, i.post_ShowGuildDonateNum), + i.YrTisc(t.GuildProtocol.SC_DeclareWarList, i.post_DeclareWarList), + i.YrTisc(t.GuildProtocol.SC_guildLog, i.post_LogList), + i.YrTisc(t.GuildProtocol.SC_GuildRedPos, i.post_UpdateRedPos), + i.YrTisc(25, i.post_10_25), + i.YrTisc(26, i.post_10_26), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.post_UpdateRedPos = function (t) { + var e = t.readByte(), + i = t.readByte(), + n = t.readByte(); + this.redPosObj = { + redType: e, + redIndex: i, + redState: n, + }; + }), + (i.prototype.findPageIndex = function (t) { + return i.ins().redPosObj && t == i.ins().redPosObj.redIndex && 1 == i.ins().redPosObj.redState ? i.ins().redPosObj.redType : 0; + }), + (i.prototype.post_LogList = function (e) { + var i = e.readByte(); + this._guildLogs = []; + for (var n, s = 0; i > s; s++) + (n = new t.GuildLog()), + (n.logTime = e.readUnsignedInt()), + (n.logType = e.readByte()), + (n.name1 = e.readString()), + (n.name2 = e.readString()), + (n.par1 = e.readInt()), + (n.par2 = e.readInt()), + (n.index = s), + this._guildLogs.push(n); + this._guildLogs = this._guildLogs.sort(function (t, e) { + return e.logTime - t.logTime; + }); + }), + (i.prototype.getConverContent = function (e, i) { + var n = {}; + switch (e) { + case t.GuildLogType.enGuildEvent_Create: + case t.GuildLogType.enGuildEvent_MemberJoin: + case t.GuildLogType.enGuildEvent_MemberLeft: + n.name1 = "|C:0x0066ff&T:[" + i.name1 + "]|"; + break; + case t.GuildLogType.enGuildEvent_TickMember: + case t.GuildLogType.enGuildEvent_LeaderChange: + (n.name1 = "|C:0x0066ff&T:[" + i.name1 + "]|"), (n.name2 = "|C:0x0066ff&T:[" + i.name2 + "]|"); + break; + case t.GuildLogType.enGuildEvent_AddOfficer: + case t.GuildLogType.enGuildEvent_DelOfficer: + (n.name1 = "|C:0x0066ff&T:[" + i.name1 + "]|"), (n.offcial = t.CrmPU.language_Guild_Jobs_Log_txt[i.par1]); + break; + case t.GuildLogType.enGuildEvent_levelUp: + n.level = i.par1; + break; + case t.GuildLogType.enGuildEvent_Impeach: + (n.name1 = "|C:0x0066ff&T:[" + i.name1 + "]|"), (n.offical = t.CrmPU.language_Guild_Jobs_Log_txt[i.par1]); + break; + case t.GuildLogType.enGuildEvent_War: + case t.GuildLogType.enGuildEvent_ToWar: + n.guild = "|C:0x0066ff&T:[" + i.name1 + "]|"; + break; + case t.GuildLogType.enGuildEvent_DonateCoin: + case t.GuildLogType.enGuildEvent_DonateYB: + var s = "|C:0x0066ff&T:[" + i.name1 + "]|"; + (n.name1 = s), (n.money = i.par1); + break; + case t.GuildLogType.enGuildEvent_joyUp: + var a = "|C:0x0066ff&T:[" + i.name1 + "]|"; + (n.name1 = a), (n.offical = t.CrmPU.language_Guild_Jobs_Log_txt[i.par1]); + } + return n; + }), + (i.prototype.post_ApproveSuccess = function (t) { + this.approveGuildId = t.readUnsignedInt(); + }), + (i.prototype.post_DeclareWar = function (t) { + this.declareWarGuildId = t.readUnsignedInt(); + }), + (i.prototype.post_ShowGuildDonateNum = function (e) { + var i = e.readByte(); + this.devoteNums = []; + for (var n, s = 0; i > s; s++) (n = new t.GuildDonateNum()), (n.type = e.readByte()), (n.num = e.readByte()), this.devoteNums.push(n); + }), + (i.prototype.findGuildDonateNum = function (t) { + for (var e = this.devoteNums.length, i = 0; e > i; i++) { + var n = this.devoteNums[i]; + if (n.type == t) return n.num; + } + return 0; + }), + (i.prototype.post_ImpeachmentLeader = function (t) {}), + (i.prototype.post_DealGuildApply = function (t) {}), + (i.prototype.post_GuildUpdateBuild = function (t) {}), + (i.prototype.post_SetAddMemberFlag = function (e) { + (this.guildSetData = new t.GuildSetData()), (this.guildSetData.isApp = e.readByte()), (this.guildSetData.setLv = e.readUnsignedShort()); + }), + (i.prototype.post_LeftGuild = function (t) { + this.leftGuildState = t.readByte(); + }), + (i.prototype.post_LeaderChange = function (t) {}), + (i.prototype.post_ChangeGuildPos = function (t) {}), + (i.prototype.post_DelMember = function (t) {}), + (i.prototype.post_GuildJoinApply = function (t) { + (this.applyGuildId = t.readUnsignedInt()), (this.JoinApplyState = t.readByte()); + }), + (i.prototype.post_GuildDonate = function (t) {}), + (i.prototype.post_Notice = function (t) {}), + (i.prototype.post_Meanager = function (e) { + var i, + n = e.readByte(); + this._guildBuilds = []; + for (var s = 0; n > s; s++) (i = new t.GuildBuilds()), (i.type = e.readByte()), (i.level = e.readByte()), this._guildBuilds.push(i); + }), + (i.prototype.getGuildBuilds = function () { + return this._guildBuilds; + }), + (i.prototype.post_GuildInfo = function (e) { + this.isSendToServer = !1; + var i = new t.GuildData(), + n = e.readByte(); + 1 == n + ? ((i.guildId = e.readUnsignedInt()), + (i.guildName = e.readString()), + (i.guildLeader = e.readString()), + (i.guildNotice = e.readString()), + (i.guildLevel = e.readUnsignedShort()), + (i.memberNum = e.readInt()), + (i.mebmerMaxNum = e.readInt()), + (i.guildMoney = e.readInt()), + (i.memberDevote = e.readInt()), + (i.guildJob = e.readByte()), + (i.guildSetIsApprove = e.readByte()), + (i.guildSetLv = e.readUnsignedShort()), + (this._guildInfo = i), + (this.isGuild = !0)) + : 2 == n + ? (this.isShowView = !1) + : (this.isGuild = !1); + }), + (i.prototype.getMyGuildInfo = function () { + return this._guildInfo; + }), + (i.prototype.post_GuildMembers = function (e) { + var i, + n = e.readInt(); + this._guildMembers = []; + for (var s = 0; n > s; s++) + (i = new t.GuildMemberInfo()), + (i.roleId = e.readUnsignedInt()), + (i.nickName = e.readString()), + (i.level = e.readInt()), + (i.turn = e.readByte()), + (i.job = e.readByte()), + (i.sex = e.readByte()), + (i.post = e.readByte()), + (i.devote = e.readInt()), + (i.online = e.readByte()), + (i.loginTime = e.readUnsignedInt()), + (i.superLv = e.readUnsignedInt()), + this._guildMembers.push(i); + }), + (i.prototype.getMembers = function () { + return this._guildMembers.sort(this.guildMembersSort), this._guildMembers; + }), + (i.prototype.guildMembersSort = function (t, e) { + return t.online && !e.online ? -1 : !t.online && e.online ? 1 : t.post > e.post ? -1 : t.post < e.post ? 1 : t.devote > e.devote ? -1 : t.devote < e.devote ? 1 : void 0; + }), + (i.prototype.post_GuildList = function (e) { + var i, + n = e.readInt(); + this._guildListInfos = []; + for (var s = 0; n > s; s++) + (i = new t.GuildListInfo()), + (i.guildName = e.readString()), + (i.guildId = e.readUnsignedInt()), + (i.guildRankId = e.readInt()), + (i.guildLeader = e.readString()), + (i.guildLevel = e.readInt()), + (i.guildNumber = e.readInt()), + (i.guildMaxNum = e.readInt()), + (i.guildDemand = e.readByte()), + (i.addGuildLevel = e.readInt()), + (i.xuanzhanState = e.readByte()), + (i.isApply = e.readBoolean()), + this._guildListInfos.push(i); + }), + (i.prototype.guildSort = function (t, e) { + return t.guildLevel > e.guildLevel ? -1 : t.guildLevel < e.guildLevel ? 1 : t.guildNumber > e.guildNumber ? -1 : t.guildNumber < e.guildNumber ? 1 : void 0; + }), + (i.prototype.getGuildListInfos = function () { + return this._guildListInfos.sort(this.guildSort), this._guildListInfos; + }), + (i.prototype.post_GuildCreate = function (e) { + var i = e.readByte(), + n = e.readInt(); + (this.guildCreatState = 0 == i), Main.vZzwB.pfID == t.PlatFormID.HUYU37 && 0 == i && t.edHC.ins().guildReport37("", t.YYHallMsgType.createGuild, n, 1); + }), + (i.prototype.post_GuildDel = function (e) { + var i = e.readByte(); + 0 == i && t.mAYZL.ins().ZbzdY(t.GuildInfoView) && (t.mAYZL.ins().close(t.GuildInfoView), t.mAYZL.ins().open(t.GuildNoGuildListView)); + }), + (i.prototype.post_ApplyInfos = function (e) { + var i, + n = e.readInt(); + this._applyList = []; + for (var s = 0; n > s; s++) + (i = new t.GuildApplyInfo()), + (i.roleId = e.readUnsignedInt()), + (i.roleName = e.readString()), + (i.level = e.readInt()), + (i.turn = e.readByte()), + (i.job = e.readByte()), + (i.sex = e.readByte()), + (i.superLv = e.readUnsignedInt()), + this._applyList.push(i); + }), + (i.prototype.getApplyList = function () { + return this._applyList; + }), + (i.prototype.sendGuildLog = function () { + var e = this.MxGiq(t.GuildProtocol.CS_GuildLog); + this.evKig(e); + }), + (i.prototype.sendCreateGuild = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_AddGuild); + i.writeString(e), this.evKig(i); + }), + (i.prototype.sendGuildInfo = function (e) { + if ((void 0 === e && (e = !1), (this.isShowView = e), !this.isSendToServer)) { + this.isSendToServer = !0; + var i = this.MxGiq(t.GuildProtocol.CS_GuildInfo); + this.evKig(i); + } + }), + (i.prototype.getIsShowView = function () { + return this.isShowView; + }), + (i.prototype.sendGuildMember = function () { + var e = this.MxGiq(t.GuildProtocol.CS_GuildMember); + this.evKig(e); + }), + (i.prototype.sendGuildList = function () { + var e = this.MxGiq(t.GuildProtocol.CS_GuildList); + this.evKig(e); + }), + (i.prototype.sendGuildAppList = function () { + var e = this.MxGiq(t.GuildProtocol.CS_JoinApplyMsgList); + this.evKig(e); + }), + (i.prototype.sendDelGuild = function () { + var e = this.MxGiq(t.GuildProtocol.CS_DelGuild); + this.evKig(e); + }), + (i.prototype.sendGuildBuilds = function () { + var e = this.MxGiq(t.GuildProtocol.CS_GuildBuilds); + this.evKig(e); + }), + (i.prototype.sendUpdateGuildNotice = function (e) { + var i = t.GlobalData.serverTime / 1e3; + if (window.prohibitText && i > 1625068680 && 1625155080 > i) { + if ( + Main.vZzwB.pfID == t.PlatFormID.PF4366 && + ("t1" == t.MiOx.serverAlias || + "t2" == t.MiOx.serverAlias || + "t3" == t.MiOx.serverAlias || + "t4" == t.MiOx.serverAlias || + "t5" == t.MiOx.serverAlias || + "h1" == t.MiOx.serverAlias || + "t7" == t.MiOx.serverAlias || + "t6" == t.MiOx.serverAlias || + "t8" == t.MiOx.serverAlias || + "t9" == t.MiOx.serverAlias || + "t10" == t.MiOx.serverAlias || + "t11" == t.MiOx.serverAlias || + "t12" == t.MiOx.serverAlias) + ) + return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + if (Main.vZzwB.pfID == t.PlatFormID.YY) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + } + var n = this.MxGiq(t.GuildProtocol.CS_UpdateMemo); + n.writeString(e), this.evKig(n); + }), + (i.prototype.sendGuildDonate = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_GuildDonate); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.sendJoinGuildAppy = function (e, i) { + void 0 === i && (i = 0); + var n = this.MxGiq(t.GuildProtocol.CS_JoinApply); + n.writeUnsignedInt(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.sendDelMember = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_DeleteMember); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.sendSetChangeGuildPos = function (e, i) { + var n = this.MxGiq(t.GuildProtocol.SC_ChangeGuildPos); + n.writeUnsignedInt(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.sendLeaderChange = function (e) { + var i = this.MxGiq(t.GuildProtocol.SC_LeaderChange); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.sendLeftChange = function () { + var e = this.MxGiq(t.GuildProtocol.SC_LeftGuild); + this.evKig(e); + }), + (i.prototype.sendSetAddMemberFlag = function (e, i) { + var n = this.MxGiq(t.GuildProtocol.CS_SetAddMemberFlag); + n.writeByte(e), n.writeUnsignedShort(i), this.evKig(n); + }), + (i.prototype.sendGuildUpdateBuild = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_GuildUpdateBuild); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.sendDealGuildApply = function (e, i) { + var n = this.MxGiq(t.GuildProtocol.CS_DealGuildApply); + n.writeByte(i), n.writeUnsignedInt(e), this.evKig(n); + }), + (i.prototype.sendImpeachmentLeader = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_ImpeachmentLeader); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.sendDeclareWar = function (e) { + var i = this.MxGiq(t.GuildProtocol.CS_DeclareWar); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.sendGuildDonateNum = function () { + var e = this.MxGiq(t.GuildProtocol.CS_GuildDonateNum); + this.evKig(e); + }), + (i.prototype.getDeclareWarList = function () { + this.declareWarAry = []; + var e = this.MxGiq(t.GuildProtocol.SC_DeclareWarList); + this.evKig(e); + }), + (i.prototype.post_DeclareWarList = function (e) { + for (var i = e.readByte(), n = 0; i > n; n++) this.declareWarAry.push(e.readUnsignedInt()); + t.EhSWiR.updateNaemColor(); + }), + (i.prototype.send_10_24 = function () { + var t = this.MxGiq(24); + this.evKig(t); + }), + (i.prototype.post_10_25 = function (e) { + var i = "", + n = e.readByte(); + 1 == n + ? (i = t.CrmPU.language_Omission_txt62) + : 2 == n + ? (i = t.CrmPU.language_Omission_txt63) + : 3 == n + ? (i = t.CrmPU.language_Omission_txt64) + : 4 == n + ? (i = t.CrmPU.language_Omission_txt65) + : 5 == n && (i = t.CrmPU.language_Omission_txt66), + t.uMEZy.ins().IrCm("|C:0xff7700&T:" + i + "|"); + }), + (i.prototype.send_10_25 = function () { + var t = this.MxGiq(25); + this.evKig(t); + }), + (i.prototype.post_10_26 = function (t) { + var e = t.readString(), + i = t.readString(); + return [e, i]; + }), + (i.prototype.getIsDeclareWar = function (t) { + for (var e = this.declareWarAry.length, i = 0; e > i; i++) if (t == this.declareWarAry[i]) return t; + return 0; + }), + (i.prototype.getIsOwnDeclareWar = function () { + return this.declareWarAry.length > 0; + }), + (i.prototype.getGuildRed = function () { + if (i.ins().redPosObj) { + var t = i.ins().redPosObj; + return 2 == t.redState ? 0 : t.redType; + } + return 0; + }), + i + ); + })(t.DlUenA); + (t.bfhrJ = e), __reflect(e.prototype, "app.bfhrJ"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.GuildData = e), __reflect(e.prototype, "app.GuildData"); + var i; + !(function (t) { + (t[(t.CS_GuildInfo = 1)] = "CS_GuildInfo"), + (t[(t.CS_GuildMember = 2)] = "CS_GuildMember"), + (t[(t.CS_GuildList = 3)] = "CS_GuildList"), + (t[(t.CS_AddGuild = 4)] = "CS_AddGuild"), + (t[(t.CS_DelGuild = 5)] = "CS_DelGuild"), + (t[(t.CS_JoinApplyMsgList = 6)] = "CS_JoinApplyMsgList"), + (t[(t.CS_GuildBuilds = 7)] = "CS_GuildBuilds"), + (t[(t.CS_UpdateMemo = 8)] = "CS_UpdateMemo"), + (t[(t.CS_GuildDonate = 9)] = "CS_GuildDonate"), + (t[(t.CS_JoinApply = 10)] = "CS_JoinApply"), + (t[(t.CS_DeleteMember = 11)] = "CS_DeleteMember"), + (t[(t.CS_ChangeGuildPos = 12)] = "CS_ChangeGuildPos"), + (t[(t.CS_LeaderChange = 13)] = "CS_LeaderChange"), + (t[(t.CS_LeftGuild = 14)] = "CS_LeftGuild"), + (t[(t.CS_SetAddMemberFlag = 15)] = "CS_SetAddMemberFlag"), + (t[(t.CS_GuildUpdateBuild = 16)] = "CS_GuildUpdateBuild"), + (t[(t.CS_DealGuildApply = 17)] = "CS_DealGuildApply"), + (t[(t.CS_ImpeachmentLeader = 18)] = "CS_ImpeachmentLeader"), + (t[(t.CS_DeclareWar = 19)] = "CS_DeclareWar"), + (t[(t.CS_GuildDonateNum = 21)] = "CS_GuildDonateNum"), + (t[(t.CS_GuildLog = 23)] = "CS_GuildLog"), + (t[(t.SC_GuildInfo = 1)] = "SC_GuildInfo"), + (t[(t.SC_GuildMember = 2)] = "SC_GuildMember"), + (t[(t.SC_GuildList = 3)] = "SC_GuildList"), + (t[(t.SC_AddGuild = 4)] = "SC_AddGuild"), + (t[(t.SC_DelGuild = 5)] = "SC_DelGuild"), + (t[(t.SC_JoinApplyMsgList = 6)] = "SC_JoinApplyMsgList"), + (t[(t.SC_AddGuildGuildManager = 7)] = "SC_AddGuildGuildManager"), + (t[(t.SC_UpdateMemo = 8)] = "SC_UpdateMemo"), + (t[(t.SC_GuildDonate = 9)] = "SC_GuildDonate"), + (t[(t.SC_JoinApply = 10)] = "SC_JoinApply"), + (t[(t.SC_DeleteMember = 11)] = "SC_DeleteMember"), + (t[(t.SC_ChangeGuildPos = 12)] = "SC_ChangeGuildPos"), + (t[(t.SC_LeaderChange = 13)] = "SC_LeaderChange"), + (t[(t.SC_LeftGuild = 14)] = "SC_LeftGuild"), + (t[(t.SC_SetAddMemberFlag = 15)] = "SC_SetAddMemberFlag"), + (t[(t.SC_GuildUpdateBuild = 16)] = "SC_GuildUpdateBuild"), + (t[(t.SC_DealGuildApply = 17)] = "SC_DealGuildApply"), + (t[(t.SC_ImpeachmentLeader = 18)] = "SC_ImpeachmentLeader"), + (t[(t.SC_DeclareWar = 19)] = "SC_DeclareWar"), + (t[(t.SC_ApplySuccess = 20)] = "SC_ApplySuccess"), + (t[(t.SC_GuildDonateNum = 21)] = "SC_GuildDonateNum"), + (t[(t.SC_guildLog = 23)] = "SC_guildLog"), + (t[(t.SC_DeclareWarList = 22)] = "SC_DeclareWarList"), + (t[(t.SC_GuildRedPos = 24)] = "SC_GuildRedPos"); + })((i = t.GuildProtocol || (t.GuildProtocol = {}))); + var n; + !(function (t) { + (t[(t.smGuildCommon = 0)] = "smGuildCommon"), + (t[(t.smGuildElite = 1)] = "smGuildElite"), + (t[(t.smGuildTangzhu = 2)] = "smGuildTangzhu"), + (t[(t.smGuildAssistLeader = 3)] = "smGuildAssistLeader"), + (t[(t.smGuildLeader = 4)] = "smGuildLeader"); + })((n = t.GuildLeaderType || (t.GuildLeaderType = {}))); + var s = (function () { + function t() {} + return t; + })(); + (t.GuildDonateNum = s), __reflect(s.prototype, "app.GuildDonateNum"); + var a = (function () { + function t() { + this.superLv = 0; + } + return t; + })(); + (t.GuildMemberInfo = a), __reflect(a.prototype, "app.GuildMemberInfo"); + var r = (function () { + function t() { + (this.turn = 0), (this.superLv = 0); + } + return t; + })(); + (t.GuildApplyInfo = r), __reflect(r.prototype, "app.GuildApplyInfo"); + var o = (function () { + function t() {} + return t; + })(); + (t.GuildListInfo = o), __reflect(o.prototype, "app.GuildListInfo"); + var l = (function () { + function t() {} + return t; + })(); + (t.GuildBuilds = l), __reflect(l.prototype, "app.GuildBuilds"); + var h = (function () { + function t() {} + return t; + })(); + (t.GuildLog = h), __reflect(h.prototype, "app.GuildLog"); + var p; + !(function (t) { + (t[(t.enGuildEvent_Create = 1)] = "enGuildEvent_Create"), + (t[(t.enGuildEvent_MemberJoin = 2)] = "enGuildEvent_MemberJoin"), + (t[(t.enGuildEvent_MemberLeft = 3)] = "enGuildEvent_MemberLeft"), + (t[(t.enGuildEvent_TickMember = 4)] = "enGuildEvent_TickMember"), + (t[(t.enGuildEvent_LeaderChange = 5)] = "enGuildEvent_LeaderChange"), + (t[(t.enGuildEvent_AddOfficer = 6)] = "enGuildEvent_AddOfficer"), + (t[(t.enGuildEvent_DelOfficer = 7)] = "enGuildEvent_DelOfficer"), + (t[(t.enGuildEvent_levelUp = 8)] = "enGuildEvent_levelUp"), + (t[(t.enGuildEvent_Impeach = 9)] = "enGuildEvent_Impeach"), + (t[(t.enGuildEvent_War = 10)] = "enGuildEvent_War"), + (t[(t.enGuildEvent_ToWar = 11)] = "enGuildEvent_ToWar"), + (t[(t.enGuildEvent_DonateCoin = 12)] = "enGuildEvent_DonateCoin"), + (t[(t.enGuildEvent_DonateYB = 13)] = "enGuildEvent_DonateYB"), + (t[(t.enGuildEvent_joyUp = 14)] = "enGuildEvent_joyUp"); + })((p = t.GuildLogType || (t.GuildLogType = {}))); + var u = (function () { + function t() {} + return t; + })(); + (t.GuildSetData = u), __reflect(u.prototype, "app.GuildSetData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.qqHallIsSend = !1), (i.skinName = "CreatGuildViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setText(); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Guild_CreatGuild_txt), + this.vKruVZ(this.ConfirmBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.bfhrJ.ins().post_GuildCreate, this.updateData), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendMsg), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendMsg), + (this.moneyLb.text = t.VlaoF.GuildConfig.createNeedYb.toString()), + t.VlaoF.editionConf.viplevel && t.VlaoF.editionConf.viplevel.CardLv + ? ((this.conditionText.visible = !0), (this.conditionText.textFlow = t.hETx.qYVI(t.CrmPU.Language_Guild_Vip[t.VlaoF.editionConf.viplevel.CardLv]))) + : (this.conditionText.visible = !1); + }), + (i.prototype.setText = function () { + (this.typeLb.text = t.CrmPU.Language_Guild_Creat_Txt0), + (this.txt.text = t.CrmPU.Language_Guild_Creat_Txt1), + (this.ConfirmBtn.label = t.CrmPU.language_Common_59), + (this.closeBtn.label = t.CrmPU.language_Common_60); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), + this.$onClose(), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.fEHj(this.ConfirmBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.removeObserve(); + }), + (i.prototype.updateData = function () { + t.bfhrJ.ins().guildCreatState && (t.mAYZL.ins().close(this), t.mAYZL.ins().close(t.GuildNoGuildListView), t.bfhrJ.ins().sendGuildInfo(!0)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.ConfirmBtn: + var i = this.guildNameText.text.trim(); + if (null == i) return; + if (t.VlaoF.editionConf.viplevel && t.VlaoF.editionConf.viplevel.CardLv) { + var n = t.VipData.ins().getMyVipLv(); + if (t.VlaoF.editionConf.viplevel.CardLv > n) return (n = null), void t.uMEZy.ins().IrCm(t.CrmPU.Language_Guild_Vip[t.VlaoF.editionConf.viplevel.CardLv]); + } + Main.vZzwB.pfID == t.PlatFormID.QQGame + ? (t.edHC.ins().qqHallTextFiltering(i, t.QQHallMsgType.msgInfo), (this.qqHallIsSend = !0)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? (t.edHC.ins().yyHallTextFiltering(i, t.YYHallMsgType.createGuild), (this.qqHallIsSend = !0)) + : t.bfhrJ.ins().sendCreateGuild(i); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.qqHallSendMsg = function (e) { + e.type == t.QQHallMsgType.msgInfo && this.qqHallIsSend && (0 == e.isLegal ? t.bfhrJ.ins().sendCreateGuild(e.Msg) : t.uMEZy.ins().IrCm("输入的文字不合法"), (this.qqHallIsSend = !1)); + }), + (i.prototype.yyHallSendMsg = function (e) { + e.msgType == t.YYHallMsgType.createGuild && this.qqHallIsSend && (t.bfhrJ.ins().sendCreateGuild(e.msg), (this.qqHallIsSend = !1)); + }), + i + ); + })(t.gIRYTi); + (t.CreatGuildView = e), __reflect(e.prototype, "app.CreatGuildView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "GuildQQApplyItemViewSkin" : "GuildApplyItemViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.rejectBtn, this.onClick), this.vKruVZ(this.agreeBtn, this.onClick); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.rejectBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.agreeBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.setText = function () { + (this.rejectBtn.label = t.CrmPU.Language_Guild_Member_Btn_Txt0), (this.agreeBtn.label = t.CrmPU.Language_Guild_Member_Btn_Txt1); + }), + (i.prototype.dataChanged = function () { + if (null != this.data) { + this.setText(), + (this.applyInfo = this.data), + (this.roleNameLb.text = this.applyInfo.roleName), + (this.rolePrensionLb.text = t.CrmPU["language_Role_Sex_" + this.applyInfo.sex] + t.CrmPU["language_Role_Name_" + this.applyInfo.job]), + (this.roleLevelLb.text = + this.applyInfo.turn >= 1 + ? this.applyInfo.turn + t.CrmPU.language_Friend_Turn_txt + this.applyInfo.level + t.CrmPU.language_Friend_Level_txt + : this.applyInfo.level + t.CrmPU.language_Friend_Level_txt); + var e = t.bfhrJ.ins().getMyGuildInfo(); + if ( + (e && (e.guildJob < 2 ? ((this.rejectBtn.visible = !1), (this.agreeBtn.visible = !1)) : ((this.rejectBtn.visible = !0), (this.agreeBtn.visible = !0))), + Main.vZzwB.pfID == t.PlatFormID.QQGame) + ) { + var i = this.applyInfo.superLv >> 16, + n = i >> 8, + s = 255 & i, + a = 65535 & this.applyInfo.superLv; + (this.blueImg.visible = n && a > 0), (this.blueImg.source = n && a > 0 ? (1 == n ? "lz_pt" + (a + 1) : "lz_hh" + (a + 1)) : ""), (this.blueYearImg.visible = 1 == s); + } + } + }), + (i.prototype.onClick = function (e) { + var i = -1; + (i = e.target == this.rejectBtn ? 0 : 1), t.bfhrJ.ins().sendDealGuildApply(this.applyInfo.roleId, i); + }), + (i.prototype.destroy = function () { + for (this.applyInfo = null; this.gp.numChildren > 0; ) { + var t = this.gp.getChildAt(0); + t && (t = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.GuildApplyItemView = e), __reflect(e.prototype, "app.GuildApplyItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "GuildDevoteViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setTxt(); + }), + (i.prototype.setTxt = function () { + for (var e = 0; 2 > e; e++) + (this["txt" + e + "Get"].text = t.CrmPU.Language_Guild_Devote_Txt0), + (this["txt" + e + "Money"].text = t.CrmPU.Language_Guild_Devote_Txt1), + (this["txt" + e + "Devote"].text = t.CrmPU.Language_Guild_Devote_Txt2), + (this["goldDevoteBtn" + e].label = t.CrmPU.Language_Guild_Devote_Txt3); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Guild_DevoteTitle_txt), + t.bfhrJ.ins().sendGuildDonateNum(), + this.HFTK(t.bfhrJ.ins().post_ShowGuildDonateNum, this.updateData), + this.HFTK(t.bfhrJ.ins().post_GuildDonate, this.updateDonate), + this.vKruVZ(this.goldDevoteBtn0, this.onClick), + this.vKruVZ(this.goldDevoteBtn1, this.onClick), + this.updateData(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.goldDevoteBtn0, this.onClick), + this.fEHj(this.goldDevoteBtn1, this.onClick), + this.dragDropUI.destroy(), + (this.dragDropUI = null); + }), + (i.prototype.updateDonate = function () { + t.bfhrJ.ins().sendGuildDonateNum(); + }), + (i.prototype.updateData = function () { + var e = t.VlaoF.GuildDonateConfig, + i = 0; + for (var n in e) { + var s = t.VlaoF.NumericalIcon[e[n].type]; + (this["goldLb" + i].text = "" + t.CrmPU.Language_Guild_Devote_Txt3 + e[n].cost + (s && s.name)), + (this["goldAddCionLb" + i].text = "+" + e[n].addcion), + (this["goldAddDevoteLb" + i].text = "+" + e[n].adddonate), + (this["goldIcon" + i].source = s && s.icon.toString()), + (this["goldDayNum" + i].text = t.bfhrJ.ins().findGuildDonateNum(e[n].type) + "/" + e[n].limittimes), + (this["goldDevoteBtn" + i].name = e[n].type), + i++; + } + }), + (i.prototype.onClick = function (e) { + t.bfhrJ.ins().sendGuildDonate(e.currentTarget.name); + }), + i + ); + })(t.gIRYTi); + (t.GuildDevoteView = e), __reflect(e.prototype, "app.GuildDevoteView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.iconList = []), (t.skinName = "FriendFunMenuViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.gList.itemRenderer = t.FriendFunMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + (i.prototype.onChange = function () { + var e = this.gList.selectedIndex, + i = this.gList.getChildAt(e), + n = i.menuBtn.name, + s = this.itemData; + switch (n) { + case "chatBtn": + t.ckpDj.ins().sendEvent(t.ChatEvent.PLAY_NAME_SLECT, [ + { + indexText: this.itemData.nickName, + }, + ]); + break; + case "showInfoBtn": + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(this.itemData.roleId); + break; + case "addFriendBtn": + var a = new t.CSFriend_Add_Data(); + (a.id = this.itemData.roleId), (a.nickName = ""), t.KWGP.ins().sendAddFriend(a); + break; + case "delFriendBtn": + var r = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt21, this.itemData.nickName)); + t.CautionView.show( + r, + function () { + this.sendDelInfo(t.FriendState.Friend); + }, + this + ); + break; + case "inviteTeamBtn": + if (null == this.itemData) return; + var o = t.CrmPU.language_Team_LeaderinviteJonTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_LeaderinviteJonTeam_tips_1; + t.CautionView.show( + o, + function () { + t.Qskf.ins().onSendInviteJoinTeam(s.roleId, ""); + }, + this + ); + break; + case "applyTeamBtn": + if (null == this.itemData) return; + var l = t.CrmPU.language_Team_ApplyAddTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_ApplyAddTeam_tips_1; + t.CautionView.show( + l, + function () { + t.Qskf.ins().onSendApplyJoinTeam(s.roleId); + }, + this + ); + break; + case "addConBtn": + var h = new t.CSFriend_Add_Concern_Data(); + (h.id = this.itemData.roleId), (h.nickName = ""), t.KWGP.ins().sendAddConcern(h); + break; + case "addBlackBtn": + var p = new t.CSFriend_Add_Concern_Data(); + (p.id = this.itemData.roleId), (p.nickName = ""), t.KWGP.ins().sendAddBlackList(p); + break; + case "kickBuildBtn": + if (null == this.itemData) return; + var u = t.CrmPU.language_Guild_kickRole_txt; + t.CautionView.show( + u, + function () { + t.bfhrJ.ins().sendDelMember(s.roleId); + }, + this + ); + break; + case "GiveLeaderBuildBtn": + if (null == this.itemData) return; + var c = t.CrmPU.language_Guild_GiveLeaderRole_txt; + t.CautionView.show( + c, + function () { + t.bfhrJ.ins().sendLeaderChange(s.roleId); + }, + this + ); + break; + case "setViceBtn": + if (null == this.itemData) return; + var g = t.CrmPU.language_Guild_SetViceRole_txt; + t.CautionView.show( + g, + function () { + t.bfhrJ.ins().sendSetChangeGuildPos(s.roleId, t.GuildLeaderType.smGuildAssistLeader); + }, + this + ); + break; + case "delViceBtn": + if (null == this.itemData) return; + var d = t.CrmPU.language_Guild_DelViceRole_txt; + t.CautionView.show( + d, + function () { + t.bfhrJ.ins().sendSetChangeGuildPos(s.roleId, t.GuildLeaderType.smGuildCommon); + }, + this + ); + break; + case "setThBtn": + if (null == this.itemData) return; + var m = t.zlkp.replace(t.CrmPU.language_Guild_ThLeader_txt, t.VlaoF.GuildConfig.impeachcost, this.itemData.nickName); + t.CautionView.show( + m, + function () { + t.bfhrJ.ins().sendImpeachmentLeader(s.roleId); + }, + this + ); + break; + case "privateTradeLineBtn": + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + var f = new Object(); + (f.sendName = this.itemData.nickName), t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) || t.mAYZL.ins().open(t.PrivateDealsWin, f); + } + }), + (i.prototype.sendDelInfo = function (e) { + var i = new t.CSFriend_Del_Data(); + (i.id = this.itemData.roleId), (i.nickName = ""), (i.type = e), t.KWGP.ins().sendDeleteFirends(i); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.x = e[0].x), (this.y = e[0].y); + var n = t.aTwWrO.ins().getWidth(); + t.aTwWrO.ins().getHeight(); + if ((this.x + this.width > n && (this.x = n - this.width), null != e[1])) { + var s = t.bfhrJ.ins().getMyGuildInfo(); + this.itemData = e[1]; + var a = t.DateUtils.getSecondByDay(this.itemData.loginTime); + s.guildJob == t.GuildLeaderType.smGuildLeader + ? (this.itemData.post == t.GuildLeaderType.smGuildAssistLeader ? this.iconList.push(t.CrmPU.language_Guild_Btn_Delvice_txt) : this.iconList.push(t.CrmPU.language_Guild_Btn_Setvice_txt), + this.iconList.push(t.CrmPU.language_Guild_Btn_KickGuild_txt), + this.iconList.push(t.CrmPU.language_Guild_Btn_GiveLeaderGuild_txt)) + : s.guildJob == t.GuildLeaderType.smGuildAssistLeader + ? this.itemData.post == t.GuildLeaderType.smGuildLeader + ? a >= t.VlaoF.GuildConfig.protectDay && 0 == this.itemData.online && this.iconList.push(t.CrmPU.language_Guild_Btn_Th_txt) + : this.iconList.push(t.CrmPU.language_Guild_Btn_KickGuild_txt) + : s.guildJob == t.GuildLeaderType.smGuildTangzhu && + (this.itemData.post == t.GuildLeaderType.smGuildElite || this.itemData.post == t.GuildLeaderType.smGuildCommon + ? this.iconList.push(t.CrmPU.language_Guild_Btn_KickGuild_txt) + : this.itemData.post == t.GuildLeaderType.smGuildLeader && a >= t.VlaoF.GuildConfig.protectDay && this.iconList.push(t.CrmPU.language_Guild_Btn_Th_txt)); + var r = t.KWGP.ins().findIsFriend(this.itemData.roleId); + r ? (this.iconList = this.iconList.concat(t.CrmPU.language_Friend_Menu_List)) : (this.iconList = this.iconList.concat(t.CrmPU.language_Friend_Menu_List1)), + (this.height = 48 * this.iconList.length), + (this.bg.height = 47 * this.iconList.length + 5), + (this.y = e[0].y - this.height - 5); + var o = new eui.ArrayCollection(this.iconList); + this.gList.dataProvider = o; + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), (this.iconList = []), (this.itemData = null); + }), + i + ); + })(t.gIRYTi); + (t.GuildFunMenuView = e), __reflect(e.prototype, "app.GuildFunMenuView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.guildMemberList = new eui.ArrayCollection()), + (t.guildAppList = new eui.ArrayCollection()), + (t.guildListData = new eui.ArrayCollection()), + (t.guildLogListData = new eui.ArrayCollection()), + (t.qqHallIsSend = !1), + (t.skinName = "GuildInfoViewSkin"), + (t.name = "GuildInfoView"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setBuildTxt(), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System28); + }), + (i.prototype.setBuildTxt = function () { + (this.lgfLvBtn.label = t.CrmPU.Language_Guild_Btn_Txt), + (this.assemblyHallLvBtn.label = t.CrmPU.Language_Guild_Btn_Txt), + (this.mgrHallLvBtn.label = t.CrmPU.Language_Guild_Btn_Txt), + (this.allRejectBtn.label = t.CrmPU.Language_Guild_Info_Btn_Txt2), + (this.setBtn.label = t.CrmPU.Language_Guild_Info_Btn_Txt0), + (this.allagreeBtn.label = t.CrmPU.Language_Guild_Info_Btn_Txt1), + (this.exitGuildBtn.label = t.CrmPU.language_Guild_Btn_Exit_txt), + (this.optGuildBtn.label = t.CrmPU.Language_Guild_Info_Btn_Txt3); + for (var e = 0; 13 > e; e++) (this["txtBuild" + e].text = t.CrmPU["language_Guild_Build_Txt" + e]), this["txtInfo" + e] && (this["txtInfo" + e].text = t.CrmPU["Language_Guild_Info_Txt" + e]); + }), + (i.prototype.bindTabBar = function () { + this.tabBar.itemRenderer = t.GuildTarBtnView; + var e = new eui.ArrayCollection(t.CrmPU.language_Guild_Tar_txt); + this.tabBar.dataProvider = e; + }), + (i.prototype.setCrrentGp = function (t) { + for (var e = 0; 6 > e; e++) (this["gp_" + e].visible = !1), t == e && (this["gp_" + t].visible = !0); + }), + (i.prototype.bindOptTabBar = function () { + this.optTab.itemRenderer = t.GuildOptTarBtnItemView; + var e = new eui.ArrayCollection(t.CrmPU.language_Guild_Opt_tar_txt); + this.optTab.dataProvider = e; + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.bindTabBar(), + this.bindOptTabBar(), + this.bindLogList(), + (this.guildShopList.itemRenderer = t.GuildShopItemView), + (this.tabBar.selectedIndex = 0), + this.optTab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + (this.optTab.selectedIndex = 0), + this.setCrrentGp(0), + t.MouseScroller.bind(this.scroller_guildList), + t.MouseScroller.bind(this.scroller_log), + t.MouseScroller.bind(this.scroller_member), + t.MouseScroller.bind(this.scroller_app), + t.bfhrJ.ins().sendGuildInfo(), + this.HFTK(t.bfhrJ.ins().post_GuildMembers, this.showGuildMemberList), + this.HFTK(t.bfhrJ.ins().post_LeftGuild, this.updateLeftGuild), + this.HFTK(t.bfhrJ.ins().post_ApplyInfos, this.updateApplyList), + this.HFTK(t.bfhrJ.ins().post_GuildList, this.updateGuildListData), + this.HFTK(t.bfhrJ.ins().post_GuildInfo, this.updateGuildInfo), + this.HFTK(t.Nzfh.ins().post_playerGuildConChange, this.updateGuildCod), + this.HFTK(t.bfhrJ.ins().post_DeclareWar, this.updateDeclareWar), + this.HFTK(t.bfhrJ.ins().post_Meanager, this.updateBuild), + this.HFTK(t.bfhrJ.ins().post_LogList, this.updateLoglist), + this.HFTK(t.ShopMgr.ins().post_onReceiveshopList, this.updateShopList), + this.HFTK(t.edHC.ins().post_qqHallTextFiltering, this.qqHallSendMsg), + this.HFTK(t.edHC.ins().postYYVerification, this.yyHallSendMsg), + this.HFTK(t.edHC.ins().post37Verification, this.yyHallSendMsg), + this.vKruVZ(this.exitGuildBtn, this.onClick), + this.vKruVZ(this.editGuildNoticeBtn, this.onClick), + this.vKruVZ(this.devoteBtn, this.onClick), + this.vKruVZ(this.mgrHallLvBtn, this.onClick), + this.vKruVZ(this.lgfLvBtn, this.onClick), + this.vKruVZ(this.assemblyHallLvBtn, this.onClick), + this.vKruVZ(this.optGuildBtn, this.onClick), + this.vKruVZ(this.setBtn, this.onClick), + this.vKruVZ(this.allagreeBtn, this.onClick), + this.vKruVZ(this.allRejectBtn, this.onClick), + this.memberList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.memberList.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this); + var n = t.NWRFmB.ins().getPayer; + (this.propSet = n.propSet), this.updateGuildCod(); + }), + (i.prototype.updateGuildCod = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) { + var i = e.propSet; + (this.guildContributionLab.text = i.getGuildDevote()), (this.guildMyDevoteLb.text = i.getGuildDevote()), (this.myDevoteLb.text = i.getGuildDevote()); + } + }), + (i.prototype.onTouchDouble = function () { + if (this.memberInfo && this.memberInfo.roleId != this.propSet.getACTOR_ID()) { + var e, + i = t.bfhrJ.ins().getMyGuildInfo(); + (e = i.guildJob == t.GuildLeaderType.smGuildLeader ? this.gp_2.localToGlobal(this.gp_2.width + 10, this.gp_2.height - 25) : this.gp_2.localToGlobal(this.gp_2.width + 10, 407)), + t.mAYZL.ins().open(t.GuildFunMenuView, e, this.memberInfo); + } + }), + (i.prototype.bindLogList = function () { + (this.guildLogList.itemRenderer = t.GuildLogItemView), (this.guildLogList.dataProvider = this.guildLogListData); + }), + (i.prototype.updateLoglist = function () { + this.guildLogListData.source = t.bfhrJ.ins()._guildLogs; + }), + (i.prototype.updateBuild = function () { + t.bfhrJ.ins().sendGuildInfo(); + var e = t.bfhrJ.ins().getGuildBuilds(), + i = t.VlaoF.GuildBuildConfig, + n = t.VlaoF.GuildConfig.buildMaxNum, + s = e[0].level == n ? e[0].level : e[0].level + 1, + a = e[1].level == n ? e[1].level : e[1].level + 1, + r = e[2].level == n ? e[2].level : e[2].level + 1; + (this.hallNeedMoneyLb.text = i[1][s].cost + ""), + (this.lgfNeedMoneyLb.text = i[2][a].cost + ""), + (this.assNeedMoneyLb.text = i[3][r].cost + ""), + (this.hallBuildLevelLb.text = e[0].level + t.CrmPU.language_Common_1), + (this.liangongBuildLevelLb.text = e[1].level + t.CrmPU.language_Common_1), + (this.assemblyHallLb.text = e[2].level + t.CrmPU.language_Common_1), + (this.hallBuildpb.maximum = i[1][s].cost), + (this.hallBuildpb.value = this.guildInfo.guildMoney), + (this.lgfBuildpb.maximum = i[2][a].cost), + (this.lgfBuildpb.value = this.guildInfo.guildMoney), + (this.assemblyHallBuildpb.maximum = i[3][r].cost), + (this.assemblyHallBuildpb.value = this.guildInfo.guildMoney); + }), + (i.prototype.onCloseMenu = function () { + t.mAYZL.ins().close(t.GuildFunMenuView); + }), + (i.prototype.onChange = function (t) { + this.memberItemView && this.memberItemView.setSelected(!0); + var e = t.itemRenderer; + (this.memberItemView = e), this.memberItemView.setSelected(!1), (this.memberInfo = this.memberItemView.memberInfo); + }), + (i.prototype.updateDeclareWar = function () { + for (var e = 0; e < this.guildList.numChildren; e++) { + var i = this.guildList.getChildAt(e); + t.bfhrJ.ins().declareWarGuildId == i._info.guildId && i.updateDeclareWarState(); + } + }), + (i.prototype.updateGuildInfo = function () { + this.showGuildInfo(), (this.hallBuildpb.value = this.guildInfo.guildMoney), (this.lgfBuildpb.value = this.guildInfo.guildMoney), (this.assemblyHallBuildpb.value = this.guildInfo.guildMoney); + }), + (i.prototype.updateGuildListData = function () { + (this.guildListData.source = t.bfhrJ.ins().getGuildListInfos()), (this.guildList.itemRenderer = t.GuildItemView), (this.guildList.dataProvider = this.guildListData); + }), + (i.prototype.updateApplyList = function () { + (this.guildAppList.source = t.bfhrJ.ins().getApplyList()), + (this.memberAppList.itemRenderer = t.GuildApplyItemView), + (this.memberAppList.dataProvider = this.guildAppList), + this.guildInfo.guildJob == t.GuildLeaderType.smGuildCommon || this.guildInfo.guildJob == t.GuildLeaderType.smGuildElite + ? ((this.allRejectBtn.visible = !1), (this.allagreeBtn.visible = !1), (this.setBtn.visible = !1), (this.editGuildNoticeBtn.visible = !1)) + : (this.guildInfo.guildJob == t.GuildLeaderType.smGuildTangzhu ? (this.editGuildNoticeBtn.visible = !1) : (this.editGuildNoticeBtn.visible = !0), + (this.allRejectBtn.visible = !0), + (this.allagreeBtn.visible = !0), + (this.setBtn.visible = !0)); + }), + (i.prototype.updateLeftGuild = function () { + t.bfhrJ.ins().leftGuildState && (t.mAYZL.ins().close(this), t.mAYZL.ins().open(t.GuildNoGuildListView)); + }), + (i.prototype.updateShopList = function () { + 2 == t.ShopMgr.ins().shopType && (this.guildShopList.dataProvider = new eui.ArrayCollection(t.ShopMgr.ins().getShopList())); + }), + (i.prototype.qqHallSendMsg = function (e) { + e.type == t.QQHallMsgType.msgInfo && this.qqHallIsSend && (0 == e.isLegal ? t.bfhrJ.ins().sendUpdateGuildNotice(e.Msg) : t.uMEZy.ins().IrCm("输入的文字不合法"), (this.qqHallIsSend = !1)); + }), + (i.prototype.yyHallSendMsg = function (e) { + e.msgType == t.YYHallMsgType.guildGongGao && this.qqHallIsSend && (t.bfhrJ.ins().sendUpdateGuildNotice(e.msg), (this.qqHallIsSend = !1)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.exitGuildBtn: + t.CautionView.show( + t.CrmPU.language_Guild_Exit_txt, + function () { + t.bfhrJ.ins().sendLeftChange(); + }, + this + ); + break; + case this.editGuildNoticeBtn: + if (this.guildInfo.guildJob == t.GuildLeaderType.smGuildLeader || this.guildInfo.guildJob == t.GuildLeaderType.smGuildAssistLeader) { + if (this.noiceLb.touchEnabled) { + this.editGuildNoticeBtn.label = t.CrmPU.language_Guild_Edit_Noti_txt; + var i = this.noiceLb.text.trim(); + return i.length > 255 + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips144) + : (Main.vZzwB.pfID == t.PlatFormID.QQGame + ? (t.edHC.ins().qqHallTextFiltering(i, t.QQHallMsgType.msgInfo), (this.qqHallIsSend = !0)) + : Main.vZzwB.pfID == t.PlatFormID.YY + ? (t.edHC.ins().yyHallTextFiltering(i, t.YYHallMsgType.guildGongGao), (this.qqHallIsSend = !0)) + : Main.vZzwB.pfID == t.PlatFormID.HUYU37 + ? (t.edHC.ins().guildReport37(i, t.YYHallMsgType.guildGongGao, this.guildInfo.guildId, 2), (this.qqHallIsSend = !0)) + : t.bfhrJ.ins().sendUpdateGuildNotice(i), + void (this.noiceLb.touchEnabled = !1)); + } + (this.editGuildNoticeBtn.label = t.CrmPU.language_Guild_Save_Noti_txt), (this.noiceLb.touchEnabled = !0), this.noiceLb.setFocus(); + } + break; + case this.mgrHallLvBtn: + t.bfhrJ.ins().sendGuildUpdateBuild(1); + break; + case this.lgfLvBtn: + t.bfhrJ.ins().sendGuildUpdateBuild(2); + break; + case this.assemblyHallLvBtn: + t.bfhrJ.ins().sendGuildUpdateBuild(3); + break; + case this.optGuildBtn: + if (!this.memberInfo) return; + if (this.memberInfo.roleId == this.propSet.getACTOR_ID()) return; + t.mAYZL.ins().open(t.GuildFunMenuView, this.optGuildBtn.localToGlobal(0, 0), this.memberInfo); + break; + case this.allRejectBtn: + for (var n = t.bfhrJ.ins().getApplyList(), s = 0; s < n.length; s++) { + var a = n[s]; + t.bfhrJ.ins().sendDealGuildApply(a.roleId, 0); + } + break; + case this.allagreeBtn: + for (var r = t.bfhrJ.ins().getApplyList(), s = 0; s < r.length; s++) { + var a = r[s]; + t.bfhrJ.ins().sendDealGuildApply(a.roleId, 1); + } + break; + case this.devoteBtn: + t.mAYZL.ins().open(t.GuildDevoteView); + break; + case this.setBtn: + t.mAYZL.ins().open(t.GuildSetView); + } + }), + (i.prototype.onBarItemTap = function (e) { + this.setCrrentGp(e.itemIndex), + 0 == e.itemIndex + ? ((this.ruleBtn.ruleId = 21), t.bfhrJ.ins().sendGuildInfo()) + : 1 == e.itemIndex + ? (t.bfhrJ.ins().sendGuildBuilds(), t.bfhrJ.ins().sendGuildLog()) + : 2 == e.itemIndex + ? t.bfhrJ.ins().sendGuildMember() + : 3 == e.itemIndex + ? t.bfhrJ.ins().sendGuildAppList() + : 4 == e.itemIndex + ? t.bfhrJ.ins().sendGuildList() + : 5 == e.itemIndex && t.ShopMgr.ins().sendShopList(2, 1), + (this.editGuildNoticeBtn.label = t.CrmPU.language_Guild_Edit_Noti_txt), + (this.noiceLb.touchEnabled = !1); + }), + (i.prototype.showGuildInfo = function () { + (this.guildInfo = t.bfhrJ.ins().getMyGuildInfo()), + null != this.guildInfo && + ((this.guildNameLb.text = this.guildInfo.guildName), + (this.guildPresident.text = this.guildInfo.guildLeader), + (this.guildLevelLb.text = this.guildInfo.guildLevel + t.CrmPU.language_Common_1), + (this.guildMoneyLb.text = this.guildInfo.guildMoney.toString()), + (this.guildMermerNumLb.text = this.guildInfo.memberNum + "/" + this.guildInfo.mebmerMaxNum), + (this.memberNumLb.text = this.guildInfo.memberNum + "/" + this.guildInfo.mebmerMaxNum), + (this.guildMyPostLb.textFlow = t.hETx.qYVI(t.CrmPU.language_Guild_Jobs_txt[this.guildInfo.guildJob])), + (this.noiceLb.text = this.guildInfo.guildNotice), + (this.myPostLB.textFlow = t.hETx.qYVI(t.CrmPU.language_Guild_Jobs_txt[this.guildInfo.guildJob])), + this.guildInfo.guildJob == t.GuildLeaderType.smGuildLeader + ? ((this.mgrHallLvBtn.visible = !0), (this.lgfLvBtn.visible = !0), (this.assemblyHallLvBtn.visible = !0), (this.editGuildNoticeBtn.visible = !0)) + : this.guildInfo.guildJob == t.GuildLeaderType.smGuildAssistLeader + ? ((this.editGuildNoticeBtn.visible = !0), (this.mgrHallLvBtn.visible = !0), (this.lgfLvBtn.visible = !0), (this.assemblyHallLvBtn.visible = !0)) + : ((this.editGuildNoticeBtn.visible = !1), (this.mgrHallLvBtn.visible = !1), (this.lgfLvBtn.visible = !1), (this.assemblyHallLvBtn.visible = !1))); + }), + (i.prototype.showGuildMemberList = function () { + (this.guildMemberList.source = t.bfhrJ.ins().getMembers()), (this.memberList.itemRenderer = t.GuildMemberItemView), (this.memberList.dataProvider = this.guildMemberList); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + for ( + e.prototype.close.call(this, i), + this.$onClose(), + this.onCloseMenu(), + t.MouseScroller.unbind(this.scroller_guildList), + t.MouseScroller.unbind(this.scroller_log), + t.MouseScroller.unbind(this.scroller_member), + t.MouseScroller.unbind(this.scroller_app), + this.fEHj(this.exitGuildBtn, this.onClick), + this.fEHj(this.editGuildNoticeBtn, this.onClick), + this.fEHj(this.devoteBtn, this.onClick), + this.fEHj(this.mgrHallLvBtn, this.onClick), + this.fEHj(this.lgfLvBtn, this.onClick), + this.fEHj(this.assemblyHallLvBtn, this.onClick), + this.fEHj(this.optGuildBtn, this.onClick), + this.fEHj(this.setBtn, this.onClick), + this.fEHj(this.allagreeBtn, this.onClick), + this.fEHj(this.allRejectBtn, this.onClick), + this.optTab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.memberList.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.guildInfo = null, + this.memberInfo = null, + this.propSet = null, + this.memberItemView = null, + this.guildMemberList.removeAll(), + this.guildAppList.removeAll(), + this.guildListData.removeAll(), + this.guildLogListData.removeAll(); + this.guildList.numChildren > 0; + + ) { + var s = this.guildList.getChildAt(0); + s.destroy(), this.guildList.removeChild(s), (s = null); + } + for (; this.memberList.numChildren > 0; ) { + var s = this.memberList.getChildAt(0); + s.destroy(), this.memberList.removeChild(s), (s = null); + } + for (; this.memberAppList.numChildren > 0; ) { + var s = this.memberAppList.getChildAt(0); + s.destroy(), this.memberAppList.removeChild(s), (s = null); + } + for (var a = 0; 5 > a; a++) { + for (; this["gp_" + a].numChildren > 0; ) { + var s = this["gp_" + a].getChildAt(0); + s && (s = null), this["gp_" + a].removeChildAt(0); + } + this["gp_" + a] = null; + } + this.dragDropUI.destroy(), (this.dragDropUI = null); + }), + i + ); + })(t.gIRYTi); + (t.GuildInfoView = e), __reflect(e.prototype, "app.GuildInfoView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.myGuildInfo = t.bfhrJ.ins().getMyGuildInfo()), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.setText(), this.vKruVZ(this.fightBtn, this.onTap); + }), + (i.prototype.setText = function () { + (this.txt0.text = t.CrmPU.Language_Guild_ListItem_Txt0), + (this.txt1.text = t.CrmPU.Language_Guild_ListItem_Txt1), + (this.txt2.text = t.CrmPU.Language_Guild_ListItem_Txt3), + (this.fightBtn.label = t.CrmPU.Language_Guild_ListItem_Txt2), + (this.xuanzhanLb.text = t.CrmPU.Language_Guild_ListItem_Txt4); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fightBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTap, this); + }), + (i.prototype.onTap = function (e) { + t.bfhrJ.ins().sendDeclareWar(this._info.guildId); + }), + (i.prototype.updateDeclareWarState = function () { + (this.fightBtn.visible = !1), (this._info.xuanzhanState = 1), (this.xuanzhanLb.visible = !0); + }), + (i.prototype.dataChanged = function () { + if (((this._info = this.data), this._info)) { + var e = this.itemIndex + 1; + (this.guildNameLb.text = "<" + this._info.guildName + ">"), + 4 > e + ? ((this.rankLb.visible = !1), (this.levelIcon.visible = !0), (this.levelIcon.source = "guild_pm_" + e)) + : ((this.rankLb.visible = !0), (this.levelIcon.visible = !1), (this.rankLb.text = e.toString())), + (this.guildLevelLb.text = this._info.guildLevel + t.CrmPU.language_Friend_Level_txt), + (this.roleLevelLb.text = this._info.addGuildLevel.toString()), + (this.guildMemberNumLb.text = this._info.guildNumber + "/" + this._info.guildMaxNum), + (this.rolePrensionLevelLb.text = this._info.guildLeader), + 1 == this._info.xuanzhanState ? ((this.xuanzhanLb.visible = !0), (this.fightBtn.visible = !1)) : ((this.xuanzhanLb.visible = !1), (this.fightBtn.visible = !0)), + this.myGuildInfo && this.myGuildInfo.guildJob == t.GuildLeaderType.smGuildCommon && ((this.xuanzhanLb.visible = !1), (this.fightBtn.visible = !1)), + this._info.guildId == (this.myGuildInfo && this.myGuildInfo.guildId) && ((this.xuanzhanLb.visible = !1), (this.fightBtn.visible = !1)); + } + }), + (i.prototype.destroy = function () { + for (this.htmlText = null, this._info = null, this.myGuildInfo = null; this.gp.numChildren > 0; ) { + var t = this.gp.getChildAt(0); + t && (t = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.GuildItemView = e), __reflect(e.prototype, "app.GuildItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.guildLog = this.data; + var e = t.DateUtils.getFormatBySecond(this.guildLog.logTime, t.DateUtils.TIME_FORMAT_2), + i = t.VlaoF.GuildLogConfig[this.guildLog.logType].logContent, + n = t.bfhrJ.ins().getConverContent(this.guildLog.logType, this.guildLog); + (this.imgBg.source = this.guildLog.index % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"), (this.logInfoLb.textFlow = t.hETx.generateTextFlow1(e + " " + this.getReplaceStr(i, n))); + }), + (i.prototype.getReplaceStr = function (t, e) { + for (var i in e) t = t.replace(new RegExp("\\{\\{" + i + "\\}\\}", "g"), e[i]); + return t; + }), + i + ); + })(t.BaseItemRender); + (t.GuildLogItemView = e), __reflect(e.prototype, "app.GuildLogItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "GuildQQMemberItemViewSkin" : "GuildMemberItemViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (null != this.data) { + this.setText(), this.setSelected(!0); + var e = this.data; + if ( + ((this.memberInfo = e), + (this.roleNameLb.text = e.nickName), + (this.rolePrensionLb.text = t.CrmPU["language_Role_Sex_" + e.sex] + t.CrmPU["language_Role_Name_" + e.job]), + (this.roleLevelLb.text = e.turn >= 1 ? e.turn + t.CrmPU.language_Friend_Turn_txt + e.level + t.CrmPU.language_Friend_Level_txt : e.level + t.CrmPU.language_Friend_Level_txt), + (this.job.textFlow = t.hETx.qYVI(t.CrmPU.language_Guild_Jobs_txt[e.post])), + (this.devoteLb.text = e.devote.toString()), + (this.onlineLb.textFlow = t.hETx.qYVI(1 == e.online ? t.CrmPU.language_Common_29 : t.DateUtils.getFormatBySecond(e.loginTime, t.DateUtils.TIME_FORMAT_4))), + Main.vZzwB.pfID == t.PlatFormID.QQGame) + ) { + var i = e.superLv >> 16, + n = i >> 8, + s = 255 & i, + a = 65535 & e.superLv; + (this.blueImg.visible = n && a > 0), (this.blueImg.source = n && a > 0 ? (1 == n ? "lz_pt" + (a + 1) : "lz_hh" + (a + 1)) : ""), (this.blueYearImg.visible = 1 == s); + } + } + }), + (i.prototype.setText = function () { + (this.txt0.text = t.CrmPU.Language_Guild_Member_Txt0), (this.txt1.text = t.CrmPU.Language_Guild_Member_Txt1), (this.txt2.text = t.CrmPU.Language_Guild_Member_Txt2); + }), + (i.prototype.setSelected = function (t) { + this.bg.visible = t; + }), + (i.prototype.destroy = function () { + for (this.htmlText = null, this.memberInfo = null; this.gp.numChildren > 0; ) { + var t = this.gp.getChildAt(0); + t && (t = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.GuildMemberItemView = e), __reflect(e.prototype, "app.GuildMemberItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.setText(), this.vKruVZ(this.applyBtn, this.onTap); + }), + (i.prototype.setText = function () { + (this.txt0.text = t.CrmPU.Language_Guild_ListItem_Txt0), (this.txt1.text = t.CrmPU.Language_Guild_ListItem_Txt1), (this.txt2.text = t.CrmPU.Language_Guild_ListItem_Txt3); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.applyBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTap, this); + }), + (i.prototype.onTap = function (e) { + t.bfhrJ.ins().sendJoinGuildAppy(this._info.guildId); + }), + (i.prototype.updateApplyState = function () { + (this.applyBtn.enabled = !1), (this.applyBtn.label = t.CrmPU.language_Guild_Apply_State_txt), (this._info.isApply = !0); + }), + (i.prototype.dataChanged = function () { + this._info = this.data; + var e = this.itemIndex + 1; + if (this._info) { + (this.guildNameLb.text = "<" + this._info.guildName + ">"), + 4 > e + ? ((this.rankLb.visible = !1), (this.levelIcon.visible = !0), (this.levelIcon.source = "guild_pm_" + e)) + : ((this.rankLb.visible = !0), (this.levelIcon.visible = !1), (this.rankLb.text = e.toString())), + (this.applyBtn.enabled = !this._info.isApply), + this._info.isApply ? (this.applyBtn.label = t.CrmPU.language_Guild_Apply_State_txt) : (this.applyBtn.label = t.CrmPU.language_Guild_Apply_State_txt1), + (this.guildLevelLb.text = this._info.guildLevel + t.CrmPU.language_Friend_Level_txt), + (this.guildLeaderNameLb.text = this._info.guildLeader), + (this.roleLevelLb.text = this._info.addGuildLevel.toString()), + (this.guildMemberNumLb.text = this._info.guildNumber + "/" + this._info.guildMaxNum); + var i = 0 == this._info.guildDemand ? t.CrmPU.language_Guild_Approve_txt : t.CrmPU.language_Guild_No_Approve_txt; + this.isApproveLb.textFlow = t.hETx.qYVI(i); + } + }), + i + ); + })(t.BaseItemRender); + (t.GuildNoGuildItemView = e), __reflect(e.prototype, "app.GuildNoGuildItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.list = new eui.ArrayCollection()), (i.skinName = "GuildListViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System29), this.setText(); + }), + (i.prototype.setText = function () { + (this.creatGuildBtn.label = t.CrmPU.language_Guild_CreatGuild_txt), (this.onekeyAppBtn.label = t.CrmPU.Language_Guild_OneKeyApply); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.MouseScroller.bind(this.scroller), + t.bfhrJ.ins().sendGuildList(), + this.vKruVZ(this.creatGuildBtn, this.onClick), + this.vKruVZ(this.onekeyAppBtn, this.onClick), + this.bindData(), + this.HFTK(t.bfhrJ.ins().post_GuildList, this.updateList), + this.HFTK(t.bfhrJ.ins().post_GuildJoinApply, this.updateGuildAppState), + this.HFTK(t.bfhrJ.ins().post_ApproveSuccess, this.updateAppSuccess); + }), + (i.prototype.updateAppSuccess = function () { + t.mAYZL.ins().close(this), t.mAYZL.ins().open(t.GuildInfoView); + }), + (i.prototype.updateGuildAppState = function () { + return 1 == t.bfhrJ.ins().JoinApplyState + ? void (t.mAYZL.ins().ZbzdY(t.GuildInfoView) || (t.mAYZL.ins().open(t.GuildInfoView), t.mAYZL.ins().close(this))) + : void (0 != t.bfhrJ.ins().JoinApplyState && (t.mAYZL.ins().ZbzdY(t.GuildInfoView) || t.bfhrJ.ins().sendGuildList())); + }), + (i.prototype.updateList = function () { + (this.list.source = t.bfhrJ.ins().getGuildListInfos()), this.list.source.length <= 0 ? (this.noListTipsLb.visible = !0) : (this.noListTipsLb.visible = !1); + }), + (i.prototype.bindData = function () { + (this.gList.itemRenderer = t.GuildNoGuildItemView), (this.gList.dataProvider = this.list); + }), + (i.prototype.onClick = function (e) { + if (e.target == this.creatGuildBtn) t.mAYZL.ins().open(t.CreatGuildView); + else { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.mBjV(), + s = this.list.length; + if (n < t.VlaoF.GuildConfig.levelLimit) { + var a = t.CrmPU.language_Guild_Apply_Level_Fail_txt + t.VlaoF.GuildConfig.levelLimit + t.CrmPU.language_Guild_Apply_Level_Fail1_txt; + return void t.uMEZy.ins().showFightTips(a); + } + if (0 == t.bfhrJ.ins().getGuildListInfos().length) { + t.CautionView.show( + "行会列表为空,是否创建行会?", + function () { + !t.mAYZL.ins().ZbzdY(t.CreatGuildView) && t.mAYZL.ins().open(t.CreatGuildView); + }, + this + ); + return; + } + t.uMEZy.ins().showFightTips(t.CrmPU.language_Guild_Apply_Fail_txt); + for (var r = 0; s > r; r++) { + var o = this.list.source[r]; + !o.isApply && n >= o.addGuildLevel && t.bfhrJ.ins().sendJoinGuildAppy(o.guildId, 1); + } + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + t.MouseScroller.unbind(this.scroller), + this.fEHj(this.creatGuildBtn, this.onClick), + this.fEHj(this.onekeyAppBtn, this.onClick), + this.dragDropUI.destroy(), + (this.dragDropUI = null); + }), + i + ); + })(t.gIRYTi); + (t.GuildNoGuildListView = e), __reflect(e.prototype, "app.GuildNoGuildListView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.redDot.visible = !1), (this.labelDisplay.text = this.data.name), this.setRedDot(); + }), + (e.prototype.setRedDot = function () { + var t = "bfhrJ.post_UpdateRedPos", + e = "bfhrJ.findPageIndex"; + (this.redDot.param = this.itemIndex + 1), (this.redDot.updateShowFunctions = e), (this.redDot.showMessages = t); + }), + e + ); + })(t.BaseItemRender); + (t.GuildOptTarBtnItemView = e), __reflect(e.prototype, "app.GuildOptTarBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "GuildSetViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setText(); + }), + (i.prototype.setText = function () { + (this.btnConfirm.label = t.CrmPU.language_Common_59), (this.btnCancel.label = t.CrmPU.language_Common_60); + for (var e = 0; 5 > e; e++) this["txt" + e].text = t.CrmPU["Language_Guild_Set_Txt" + e]; + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Guild_Set_Title_txt), + this.vKruVZ(this.btnConfirm, this.onClick), + this.vKruVZ(this.btnCancel, this.onClick), + this.checkYes.addEventListener(egret.TouchEvent.TOUCH_TAP, this.clickCheck, this), + this.checkNo.addEventListener(egret.TouchEvent.TOUCH_TAP, this.clickCheck, this), + this.HFTK(t.bfhrJ.ins().post_SetAddMemberFlag, this.updateData), + (this.guildInfo = t.bfhrJ.ins().getMyGuildInfo()), + (this.checkYes.selected = 0 == this.guildInfo.guildSetIsApprove ? !0 : !1), + (this.checkNo.selected = 1 == this.guildInfo.guildSetIsApprove ? !0 : !1), + (this.levelTpText.text = this.guildInfo.guildSetLv.toString()); + }), + (i.prototype.updateData = function () { + (t.bfhrJ.ins().getMyGuildInfo().guildSetIsApprove = t.bfhrJ.ins().guildSetData.isApp), + (t.bfhrJ.ins().getMyGuildInfo().guildSetLv = t.bfhrJ.ins().guildSetData.setLv), + (this.checkYes.selected = 0 == this.guildInfo.guildSetIsApprove ? !0 : !1), + (this.checkNo.selected = 1 == this.guildInfo.guildSetIsApprove ? !0 : !1), + (this.levelTpText.text = this.guildInfo.guildSetLv.toString()), + t.mAYZL.ins().close(this); + }), + (i.prototype.clickCheck = function (t) { + t.target == this.checkYes ? ((this.checkYes.selected = !0), (this.checkNo.selected = !1)) : ((this.checkYes.selected = !1), (this.checkNo.selected = !0)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.btnConfirm, this.onClick), + this.fEHj(this.btnCancel, this.onClick), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.guildInfo = null); + }), + (i.prototype.onClick = function (e) { + if (e.currentTarget == this.btnConfirm) { + var i = this.checkYes.selected ? 0 : 1, + n = parseInt(this.levelTpText.text); + if (0 > n || n > 999) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips143); + t.bfhrJ.ins().sendSetAddMemberFlag(i, n); + } else t.mAYZL.ins().close(this); + }), + i + ); + })(t.gIRYTi); + (t.GuildSetView = e), __reflect(e.prototype, "app.GuildSetView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.batchbuy = 0), (i.item = new Object()), (i.hot = new t.ShopHotView()), (i.buyBtn = new t.ShopBuyBtnView()), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.hot.x = this.hot.y = 0), + (this.buyBtn.x = 101), + (this.buyBtn.y = 85), + this.addChild(this.hot), + this.addChild(this.buyBtn), + this.vKruVZ(this.buyBtn, this.onClick), + this.VoZqXH(this.goodsItem, this.mouseMove), + this.EeFPm(this.goodsItem, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (i && this.itemId) { + var n = i.localToGlobal(), + s = t.VlaoF.StdItems[this.itemId]; + if (this.item.type > 0) return; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + n = null; + } + i = null; + } + }), + (i.prototype.onClick = function () { + var e = this; + if (this.batchbuy) { + var i = "" == this.numLb.text ? -1 : Number(this.numLb.text); + return 0 == i ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Shop_Limit_Txt) : void t.mAYZL.ins().open(t.ShopBatchBuyView, this.itemData.shopId, 2, 1, i); + } + var n = + "|C:0xFFFFFF&T:" + + t.CrmPU.language_Shop_Buy_Item_txt + + "|C:0xDBC789&T:" + + t.CommonUtils.overLength(this.item.price) + + this.item.moneyType + + "|C:0xFFFFFF&T:" + + t.CrmPU.language_System45 + + "|C:0xDBC789&T:" + + this.item.name + + "*" + + t.CommonUtils.overLength(this.item.count), + s = t.hETx.qYVI(n); + 3 == this.item.id || 4 == this.item.id + ? t.CautionView.show( + s, + function () { + t.ShopMgr.ins().sendBuyShop(2, 1, e.itemData.shopId, 0); + }, + this + ) + : t.ShopMgr.ins().sendBuyShop(2, 1, this.itemData.shopId, 0); + }), + (i.prototype.dataChanged = function () { + if (((this.itemData = this.data), null != this.itemData)) { + 0 == this.itemData.buyLimitNum + ? ((this.numTxt.visible = this.numLb.visible = !1), (this.numLb.text = "")) + : ((this.numTxt.text = t.CrmPU.language_Common_62), + (this.numTxt.visible = this.numLb.visible = !0), + -1 == this.itemData.buyLimitNum ? (this.numLb.text = "") : (this.numLb.text = "" + (this.itemData.buyLimitNum - this.itemData.buyCountNum))); + var e = t.ShopConfData.findShopCnf(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + this.buyBtn.labelDisplay.text = e && t.CommonUtils.overLength(e.price.count); + var i = e && { + type: e.price.type, + id: e.price.id, + }; + (this.buyBtn.iconDisplay.source = e && t.ShopConfData.convertItemIcon(i).icon.toString()), (this.countLb.text = e && t.CommonUtils.overLength(e.shop.count)); + var n = t.ShopConfData.findItemIcon(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + if ( + ((this.item.moneyType = e && t.VlaoF.NumericalIcon[e.price.type].name), + (this.item.id = e && t.VlaoF.NumericalIcon[e.price.type].id), + (this.item.price = e && e.price.count), + (this.item.count = e && e.shop.count), + (this.item.type = e && e.shop.type), + (this.batchbuy = e.batchbuy), + 0 == this.itemData.buySell) + ) + this.hot.visible = !1; + else if (((this.hot.visible = !0), (this.itemData.buySell = this.itemData.buySell < 10 ? 10 : this.itemData.buySell), this.itemData.buySell % 10 == 0 || this.itemData.buySell >= 100)) + this.hot.setState(!0), this.hot.setOddNum(this.itemData.buySell); + else { + this.hot.setState(!1); + var s = this.itemData.buySell.toString().split(""); + this.hot.setDualNum(s[0], s[1]); + } + n + ? ((this.itemId = n.id), (this.goodsItem.source = n.icon.toString()), (this.shopItemNameLb.text = n.name), (this.item.name = n.name)) + : (this.shopItemNameLb.text = t.CrmPU.language_Tips83), + (e = null), + t.ObjectPool.wipe(i), + (n = null); + } + }), + (i.prototype.destroy = function () { + for ( + this.buyBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.hot.destroy(), + this.buyBtn.destroy(), + this.data = null, + this.itemData = null, + this.buyBtn = null, + t.ObjectPool.wipe(this.item), + this.item = null, + this.hot = null; + this.gp.numChildren > 0; + + ) { + var e = this.gp.getChildAt(0); + e && (e = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.GuildShopItemView = e), __reflect(e.prototype, "app.GuildShopItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.barText.text = this.data; + }), + e + ); + })(t.BaseItemRender); + (t.GuildTarBtnView = e), __reflect(e.prototype, "app.GuildTarBtnView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.icon.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.setData = function (e, i, n, s) { + if ( + ((this.type = e), + (this.icon.source = 1 == e ? "boss_gw_jb" : "boss_gw_yb"), + t.ubnV.ihUJ ? (this.txtAdd.text = "(剩余" + n + "次)") : (this.txtAdd.text = "伤害+" + i + "%(剩余" + n + "次)"), + s.length > 0) + ) { + var a = s[0].type, + r = s[0].id, + o = s[0].count; + if (0 == a) { + var l = t.VlaoF.StdItems[r]; + this.money.source = l.icon + ""; + } else { + var h = t.VlaoF.NumericalIcon[r]; + this.money.source = h.icon + ""; + } + this.txtConsume.text = t.CrmPU.language_Omission_txt4 + ": " + o; + } + }), + (i.prototype.onClick = function (e) { + t.TQkyOx.ins().send_25_1(t.TQkyOx.ins().currentActId, t.Operate.cInspire, [this.type]); + }), + (i.prototype.destroy = function () { + this.icon.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + (this.icon.source = ""), + (this.money.source = ""), + (this.txtAdd.text = ""), + (this.txtConsume.text = ""), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Component); + (t.InspireItemView = e), __reflect(e.prototype, "app.InspireItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "InspireSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.bottom = 323), (this.horizontalCenter = "25"); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.TQkyOx.ins().post_25_6, this.refreshInspire); + var n = t.TQkyOx.ins().getActivityInfo(t.TQkyOx.ins().currentActId); + if (n && n.info && n.info.item) for (var s = n.info.item, a = 0; a < s.length; a++) this.refreshInspire(n.info.item[a]); + }), + (i.prototype.refreshInspire = function (e) { + if (e) { + var i = e.type, + n = e.value, + s = e.times, + a = t.TQkyOx.ins().getActivityConfigById(t.TQkyOx.ins().currentActId), + r = []; + if (a) { + var o = a.inspire; + if (o) { + var l = o[i - 1].costs; + for (var h in l) r.push(l[h]); + } + } + 1 == i ? ((this.inspire_1.visible = !0), this.inspire_1.setData(i, n, s, r)) : ((this.inspire_2.visible = !0), this.inspire_2.setData(i, n, s, r)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.inspire_1 && (this.inspire_1.destroy(), (this.inspire_1 = null)), this.inspire_2 && (this.inspire_2.destroy(), (this.inspire_2 = null)); + }), + i + ); + })(t.gIRYTi); + (t.InspireView = e), __reflect(e.prototype, "app.InspireView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + (this.type = t.readByte()), (this.pos = t.readInt()), (this.id = t.readInt()); + } + return t; + })(); + (t.KeyUiData = e), __reflect(e.prototype, "app.KeyUiData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.keyInfo = {}), + (i.setUpInfo = {}), + (i._cautionObj = {}), + (i.sysId = t.jDIWJt.Setting), + i.YrTisc(1, i.post_17_1), + i.YrTisc(2, i.post_17_2), + i.YrTisc(3, i.post_17_3), + i.YrTisc(4, i.post_17_4), + i.YrTisc(5, i.post_17_5), + i.YrTisc(7, i.post_17_7), + i.YrTisc(11, i.post_17_11), + i.YrTisc(12, i.post_17_12), + i + ); + } + return ( + __extends(i, e), + (i.prototype.getCautionValue = function (t) { + return this._cautionObj[t]; + }), + (i.prototype.setCautionValue = function (t, e) { + this._cautionObj[t] = e; + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_17_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_17_1 = function (e) { + var i = e.readInt(); + this.keyInfo = {}; + for (var n = 0; i > n; n++) { + var s = new t.KeyUiData(e); + this.keyInfo[s.pos] = s; + } + }), + (i.prototype.getSkillKey = function (t) { + for (var e in this.keyInfo) if (this.keyInfo[e].id == t) return +e; + return -1; + }), + (i.prototype.send_17_2 = function (t, e, i, n) { + var s = this.MxGiq(2); + s.writeInt(t), s.writeInt(e), s.writeInt(i), s.writeInt(n), this.evKig(s); + }), + (i.prototype.post_17_2 = function (e) { + if (!KdbLz.qOtrbE.iFbP) + for (var i = e.readInt(), n = 0; i > n; n++) { + var s = new t.KeyUiData(e); + if (this.keyInfo && this.keyInfo[s.pos] && 0 == this.keyInfo[s.pos].id && 0 == this.keyInfo[s.pos].type && 1 == s.type) { + var a = t.NWRFmB.ins().getPayer.getUserSkill(s.id); + a || (t.ckpDj.ins().sendEvent(t.MainEvent.PLAY_EFF_JIJN_END), t.hADk.ins().post_skillPushImage(s)); + } + this.keyInfo[s.pos] = s; + } + }), + (i.prototype.post_17_3 = function (t) { + this.setUpInfo = {}; + this.getBasic(t), this.getSystem(t), this.getDrugs(t), this.getProtection(t), this.getAi(t), this.getRecycle(t), this.getItems(t), this.initSeting(); + }), + (i.prototype.initSeting = function () { + t.NWRFmB.ins().updateMonsterName(), + t.AHhkf.ins().setEffectOn(i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Sound)), + t.AHhkf.ins().setBgOn(i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound)); + }), + (i.prototype.post_17_5 = function (e) { + for (var i = e.readInt(), n = 0; i > n; n++) { + var s = new t.KeyUiData(e); + this.keyInfo[s.pos] = s; + } + }), + (i.prototype.send_17_4 = function (t, e, i) { + var n = this.MxGiq(4); + n.writeByte(t), n.writeShort(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.send_17_5 = function (t, e, i) { + var n = this.MxGiq(5); + n.writeByte(e), n.writeInt(i), this.evKig(n); + }), + (i.prototype.send_17_6 = function (t) { + var e = this.MxGiq(6); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_17_7 = function (t, e) { + var i = this.MxGiq(7); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_17_4 = function (e) { + var i = e.readByte(); + switch (i) { + case t.BRMgl.SetUp_Basics: + delete this.setUpInfo[t.BRMgl.SetUp_Basics], this.getBasic(e); + break; + case t.BRMgl.SetUp_System: + delete this.setUpInfo[t.BRMgl.SetUp_System], this.getSystem(e); + break; + case t.BRMgl.SetUp_Drugs: + delete this.setUpInfo[t.BRMgl.SetUp_Drugs], this.getDrugs(e); + break; + case t.BRMgl.SetUp_Protection: + delete this.setUpInfo[t.BRMgl.SetUp_Protection], this.getProtection(e); + break; + case t.BRMgl.SetUp_AI: + delete this.setUpInfo[t.BRMgl.SetUp_AI], this.getAi(e); + break; + case t.BRMgl.SetUp_Items: + delete this.setUpInfo[t.BRMgl.SetUp_Items], this.getItems(e); + } + }), + (i.prototype.post_17_7 = function (t) {}), + (i.prototype.getBasic = function (e) { + var i = {}, + n = e.readInt(); + (i[t.Kdae.SetUp_Type_ShowHuman] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_ShowHuman)), + (i[t.Kdae.SetUp_Type_ShowMonster] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_ShowMonster)), + (i[t.Kdae.SetUp_Type_Bit3] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Bit3)), + (i[t.Kdae.SetUp_Type_Network] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Network)), + (i[t.Kdae.SetUp_Type_Recommend] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Recommend)), + (i[t.Kdae.SetUp_Type_Chase] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Chase)), + (i[t.Kdae.SetUp_Type_Skill1] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Skill1)), + (i[t.Kdae.SetUp_Type_Skill2] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Skill2)), + (i[t.Kdae.SetUp_Type_Skill3] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Skill3)), + (i[t.Kdae.SetUp_Type_autoRecycle] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_autoRecycle)), + (i[t.Kdae.SetUp_Type_autoTask] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_autoTask)), + (i[t.Kdae.SetUp_Type_counterAtk] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_counterAtk)), + (i[t.Kdae.SetUp_Type_shieldPet] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_shieldPet)), + (this.setUpInfo[t.BRMgl.SetUp_Basics] = i), + t.NWRFmB.ins().updateTitle(); + }), + (i.prototype.getSystem = function (e) { + var n = e.readShort(), + s = {}; + (s[t.Kdae.SetUp_Type_Sound] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Sound)), + (s[t.Kdae.SetUp_Type_BgSound] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_BgSound)), + (s[t.Kdae.SetUp_Type_HighQuality] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_HighQuality)), + (s[t.Kdae.SetUp_Type_LowQuality] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_LowQuality)), + (s[t.Kdae.SetUp_Type_SwimShow] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_SwimShow)), + (s[t.Kdae.SetUp_Type_scale1] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_scale1)), + (s[t.Kdae.SetUp_Type_scale2] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_scale2)), + (s[t.Kdae.SetUp_Type_scale3] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_scale3)), + (s[t.Kdae.SetUp_Type_closeEff] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_closeEff)), + (s[t.Kdae.SetUp_Type_closeMap] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_closeMap)), + (s[t.Kdae.SetUp_Type_Rocker] = t.MathUtils.getValueAtBit(n, t.Kdae.SetUp_Type_Rocker)), + (this.setUpInfo[t.BRMgl.SetUp_System] = s); + var a = s[t.Kdae.SetUp_Type_HighQuality] ? 60 : s[t.Kdae.SetUp_Type_LowQuality] ? 30 : s[t.Kdae.SetUp_Type_SwimShow] ? 10 : 60, + r = KdbLz.qOtrbE.iFbP ? 1.25 : 1, + o = t.mAYZL.gamescene; + t.aTwWrO.ins().setFrameRate(a); + if (t.NWRFmB.ins().getPayer.propSet.mBjV() < 2) { + if (!KdbLz.qOtrbE.iFbP) { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1) || + (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, 0)); + } else { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2) || + (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, 0)); + } + } + i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1) && (r = 1), + i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2) && (r = 1.25), + i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3) && (r = 1.5); + t.aTwWrO.ins().setScale(r); + o && t.mAYZL.gamescene.updateScale(), (o = null), this.updateRocker(); + }), + (i.prototype.updateRocker = function () { + if (KdbLz.qOtrbE.iFbP) { + var e = this.ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker); + e + ? (t.mAYZL.ins().close("app.RockerView"), t.mAYZL.ins().ZbzdY("app.Rocker2View") || t.mAYZL.ins().open("app.Rocker2View")) + : (t.mAYZL.ins().close("app.Rocker2View"), t.mAYZL.ins().ZbzdY("app.RockerView") || t.mAYZL.ins().open("app.RockerView")); + } + }), + (i.prototype.getDrugs = function (e) { + var i = e.readShort(), + n = {}; + (n[t.Kdae.SetUp_Drugs_Per] = t.MathUtils.getValueAtBit(i, 1)), + (n[t.Kdae.SetUp_Drugs_Blood] = t.MathUtils.getValueAtBit(i, 2)), + (n[t.Kdae.SetUp_Drugs_COM_Red] = t.MathUtils.getValueAtBit(i, 3)), + (n[t.Kdae.SetUp_Drugs_COM_BLUE] = t.MathUtils.getValueAtBit(i, 4)), + (n[t.Kdae.SetUp_Drugs_MOMENT_RED] = t.MathUtils.getValueAtBit(i, 5)), + (n[t.Kdae.SetUp_Drugs_MOMENT_BLUE] = t.MathUtils.getValueAtBit(i, 6)), + (n[t.Kdae.SetUp_Drugs_Select_LiaoShangYao] = t.MathUtils.getValueAtBit(i, 7)), + 0 == n[t.Kdae.SetUp_Drugs_Per] && 0 == n[t.Kdae.SetUp_Drugs_Blood] && (n[t.Kdae.SetUp_Drugs_Per] = 1); + var s = e.readByte(); + n[t.Kdae.SetUp_Drugs_Red] = s; + var a = e.readByte(); + n[t.Kdae.SetUp_Drugs_Blue] = a; + var r = e.readByte(); + n[t.Kdae.SetUp_Drugs_Wink_Red] = r; + var o = e.readByte(); + n[t.Kdae.SetUp_Drugs_Wink_Blue] = o; + var l = e.readByte(); + n[t.Kdae.SetUp_Drugs_LiaoShangYao] = l; + var h = e.readInt(); + n[t.Kdae.SetUp_Drugs_HP] = h; + var p = e.readInt(); + (p = 300 > p ? 300 : p), (n[t.Kdae.SetUp_Drugs_HP_TIME] = p); + var u = e.readInt(); + n[t.Kdae.SetUp_Drugs_MP] = u; + var c = e.readInt(); + (c = 300 > c ? 300 : c), (n[t.Kdae.SetUp_Drugs_MP_TIME] = c); + var g = e.readInt(); + n[t.Kdae.SetUp_Drugs_MOMENT_HP] = g; + var d = e.readInt(); + (d = 300 > d ? 300 : d), (n[t.Kdae.SetUp_Drugs_MOMENT_HP_TIME] = d); + var m = e.readInt(); + n[t.Kdae.SetUp_Drugs_MOMENT_MP] = m; + var f = e.readInt(); + (f = 300 > f ? 300 : f), (n[t.Kdae.SetUp_Drugs_MOMENT_MP_TIME] = f); + var v = e.readInt(); + n[t.Kdae.SetUp_Drugs_LiaoShangYaoHp] = v; + var _ = e.readInt(); + (_ = 300 > _ ? 300 : _), (n[t.Kdae.SetUp_Drugs_LiaoShangYaoTime] = _), (this.setUpInfo[t.BRMgl.SetUp_Drugs] = n); + }), + (i.prototype.getProtection = function (e) { + var i = {}, + n = e.readInt(); + i[t.Kdae.SetUp_Hp1Val] = n; + var s = e.readInt(); + i[t.Kdae.SetUp_Hp1Item] = s; + var a = e.readInt(); + i[t.Kdae.SetUp_Hp2Val] = a; + var r = e.readInt(); + i[t.Kdae.SetUp_Hp2Item] = r; + var o = e.readShort(); + (i[t.Kdae.SetUp_Hp1State] = t.MathUtils.getValueAtBit(o, 1)), (i[t.Kdae.SetUp_Hp2State] = t.MathUtils.getValueAtBit(o, 2)), (this.setUpInfo[t.BRMgl.SetUp_Protection] = i); + }), + (i.prototype.getAi = function (e) { + var i = {}, + n = e.readShort(); + (i[t.Kdae.SetUp_AI_MaxHpMonster1] = t.MathUtils.getValueAtBit(n, 1)), + (i[t.Kdae.SetUp_AI_DotPickItem1] = t.MathUtils.getValueAtBit(n, 2)), + (i[t.Kdae.SetUp_AI_PickItem1] = t.MathUtils.getValueAtBit(n, 3)), + (i[t.Kdae.SetUp_AI_Huofu] = t.MathUtils.getValueAtBit(n, 4)), + (i[t.Kdae.SetUp_AI_ZhaoHuanShenShou] = t.MathUtils.getValueAtBit(n, 5)), + (i[t.Kdae.SetUp_AI_HpMin] = t.MathUtils.getValueAtBit(n, 6)), + (i[t.Kdae.SetUp_AI_Hemophagy] = t.MathUtils.getValueAtBit(n, 7)), + (i[t.Kdae.SetUp_AI_Thunderbolt] = t.MathUtils.getValueAtBit(n, 8)), + (i[t.Kdae.SetUp_AI_Poison] = t.MathUtils.getValueAtBit(n, 9)), + (i[t.Kdae.SetUp_AI_iceBluster] = t.MathUtils.getValueAtBit(n, 10)), + (i[t.Kdae.SetUp_AI_isRainFire] = t.MathUtils.getValueAtBit(n, 11)), + (i[t.Kdae.SetUp_AI_ltZhanShi] = t.MathUtils.getValueAtBit(n, 12)), + (i[t.Kdae.SetUp_AI_ltFashi] = t.MathUtils.getValueAtBit(n, 13)), + (i[t.Kdae.SetUp_AI_ltDaoShi] = t.MathUtils.getValueAtBit(n, 14)); + var s = e.readByte(); + i[t.Kdae.SetUp_AI_skillID] = s; + var a = e.readByte(); + i[t.Kdae.SetUp_AI_pet] = a; + var r = e.readByte(); + i[t.Kdae.SetUp_AI_hpLess] = r; + var o = e.readByte(); + (i[t.Kdae.SetUp_AI_hpLessSkill] = o), (this.setUpInfo[t.BRMgl.SetUp_AI] = i); + }), + (i.prototype.getRecycle = function (e) { + for (var i, n = {}, s = [], a = 0; 4 > a; a++) (i = e.readInt()), s.push(i); + var r = t.VlaoF.RecyclingSettingConfig; + for (var a in r) { + var o = r[a]; + for (var l in o) n[o[l].optionid - 1] = t.MathUtils.getValueBitByArr(s, o[l].optionid - 1); + } + this.setUpInfo[t.BRMgl.SetUp_Recycle] = n; + }), + (i.prototype.getItems = function (e) { + for (var i, n = e.readByte(), s = [], a = 0; n > a; a++) (i = e.readInt()), s.push(i); + var r = {}; + (r[t.Kdae.SetUp_Item_All_Pick] = t.MathUtils.getValueSAtBit(s, 1)), (r[t.Kdae.SetUp_Item_All_Mark] = t.MathUtils.getValueSAtBit(s, 2)); + var o = t.VlaoF.ItemSettingConfig; + if (o) { + var l = 0, + h = [], + p = void 0, + u = void 0, + c = void 0; + for (var g in o) + (p = o[g]), + (u = new t.SetUpListData()), + (c = t.VlaoF.StdItems[p.itemid]), + c + ? (u.itemName = c.name) + : 65533 == p.itemid + ? (u.itemName = t.CrmPU.language_CURRENCY_NAME_18) + : 65534 == p.itemid + ? (u.itemName = t.CrmPU.language_CURRENCY_NAME_1) + : 65535 == p.itemid && (u.itemName = t.CrmPU.language_CURRENCY_NAME_2), + (u.itemId = p.itemid), + (u.idx = p.idx), + (u.openDay = p.openday), + (u.type = p.type), + (u.isSelected1 = 1 == p.value1 ? 1 : 0), + (u.isSelected2 = 1 == p.value2 ? 1 : 0), + h.push(u), + l++; + for (var d = 1, m = 1, f = void 0, a = 0; l > a; a++) + (f = h[a].idx), + (h[a].isSelected1 = t.MathUtils.getValueSAtBit( + s, + 2 * (f - 1) + 3, + function (t) { + 0 == t && 1 == d && (d = t); + }, + function (t) { + 0 == t && 1 == m && (m = t); + } + )), + (h[a].isSelected2 = t.MathUtils.getValueSAtBit( + s, + 2 * (f - 1) + 4, + function (t) { + 0 == t && 1 == d && (d = t); + }, + function (t) { + 0 == t && 1 == m && (m = t); + } + )), + (h[a].pos = [2 * (f - 1) + 3, 2 * (f - 1) + 4]), + (r[2 * (f - 1) + 3] = h[a]), + (r[2 * (f - 1) + 4] = h[a]); + (r[t.Kdae.SetUp_Item_Pick] = d), (r[t.Kdae.SetUp_Item_Mark] = m), (this.setUpInfo[t.BRMgl.SetUp_Items] = r), (t.JgMyc.ins().setUpModel.setItemData = h); + } + }), + (i.prototype.ZSGIua = function (t, e) { + if (!this.setUpInfo[t]) return 0; + var i = this.setUpInfo[t][e]; + return i; + }), + (i.prototype.ywzle = function (t, e, i) { + this.setUpInfo[t] && (this.setUpInfo[t][e] = i); + }), + (i.prototype.postSetWIFI = function () {}), + (i.prototype.getDataById = function (e) { + var i = this.setUpInfo[t.BRMgl.SetUp_Items]; + if (i) { + var n = void 0; + for (var s in i) if (i[s] instanceof t.SetUpListData && ((n = i[s]), e == n.itemId)) return n; + } + return null; + }), + (i.prototype.send_17_3 = function (t) { + var e = this.MxGiq(3); + e.writeInt(t), this.evKig(e); + }), + (i.prototype.getSkillPosByID = function (t) { + for (var e = 0; 12 > e; e++) if (this.keyInfo[e] && 0 != this.keyInfo[e].id && 1 == this.keyInfo[e].type && this.keyInfo[e].id == t) return this.keyInfo[e].pos; + return -1; + }), + (i.prototype.post_counterAtk = function () {}), + (i.prototype.send_17_11 = function () { + var t = this.MxGiq(11); + this.evKig(t); + }), + (i.prototype.post_17_11 = function (t) { + this.post_17_1(t); + }), + (i.prototype.send_17_12 = function (t, e, i, n) { + var s = this.MxGiq(12); + s.writeInt(t), s.writeInt(e), s.writeInt(i), s.writeInt(n), this.evKig(s); + }), + (i.prototype.post_17_12 = function (e) { + if (KdbLz.qOtrbE.iFbP) + for (var i = e.readInt(), n = 0; i > n; n++) { + var s = new t.KeyUiData(e); + this.keyInfo && this.keyInfo[s.pos] && 0 == this.keyInfo[s.pos].id && 0 == this.keyInfo[s.pos].type && 1 == s.type, (this.keyInfo[s.pos] = s); + } + }), + (i.prototype.send_17_13 = function (t) { + var e = this.MxGiq(13); + e.writeInt(t), this.evKig(e); + }), + (i.CloseEff = function () { + var e = i.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeEff); + return e ? !0 : 22 == t.GameMap.fubenID && t.SkillEffPlayer.bottomLayer.$children.length > 5 ? !0 : !1; + }), + (i.COMPOSE = 1), + i + ); + })(t.DlUenA); + (t.XwoNAr = e), __reflect(e.prototype, "app.XwoNAr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.kuafu), i.YrTisc(1, i.post_g_33_1), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.s_33_1 = function () { + var s = this, + time = t.MathUtils.limit(2e3, 4e3); + t.mAYZL.ins().open(t.KFView, !0, time); + t.KHNO.ins().rqDkE( + time, + 0, + 1, + function () { + t.KFManager.ins().originalRoleId = t.MiOx.roleId; + var e = s.MxGiq(1); + s.evKig(e); + }, + this + ); + }), + Object.defineProperty(i.prototype, "kfRoleId", { + get: function () { + return this._kfRoleId; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.post_g_33_1 = function (e) { + var i = e.readByte(); + if (i) { + t.mAYZL.ins().close(t.KFView), t.uMEZy.ins().IrCm(t.CrmPU.language_Tips138); + } else { + var n = e.readString(), + s = e.readUnsignedInt(), + a = e.readUnsignedInt(); + this._kfRoleId = a; + var r = e.readUnsignedInt(); + t.ubnV.ins().KFLogin(a, s, n, r, s); + } + }), + i + ); + })(t.DlUenA); + (t.KFManager = e), __reflect(e.prototype, "app.KFManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "KuanFuView"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function (type, speed) { + (this.doubleRoleExp.labelFunction = function (e, i) { + return (type ? t.CrmPU.language_Common_231 : t.CrmPU.language_Common_231_1) + (((e / i) * 100) | 0) + "%"; + }), + (this.doubleRoleExp.value = 1); + egret.Tween.get(this.doubleRoleExp).to( + { + value: 100, + }, + speed + ); + t.KHNO.ins().rqDkE( + 3e4, + 0, + 1, + function () { + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips138), t.ubnV.ins().onClose(); + }, + this + ); + }), + (i.prototype.close = function () { + for (var a = [], i = 0; i < arguments.length; i++) a[i] = arguments[i]; + e.prototype.close.call(this, a), this.$onClose(), egret.Tween.removeTweens(this.doubleRoleExp); + t.KHNO.ins().removeAll(this); + }), + i + ); + })(t.gIRYTi); + (t.KFView = e), __reflect(e.prototype, "app.KFView"), t.mAYZL.ins().reg(e, t.yCIt.tKOC); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.Mail), i.YrTisc(1, i.post_50_1), i.YrTisc(2, i.post_50_2), i.YrTisc(3, i.post_50_3), i.YrTisc(4, i.post_50_4), i.YrTisc(6, i.post_50_6), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_50_1 = function (t, e) { + var i = this.MxGiq(1); + i.writeByte(t), i.writeDouble(e), this.evKig(i); + }), + (i.prototype.postMailStateChange = function () {}), + (i.prototype.send_50_2 = function (t) { + var e = this.MxGiq(2); + e.writeDouble(t), this.evKig(e); + }), + (i.prototype.send_50_3 = function (t) { + var e = this.MxGiq(3); + e.writeDouble(t), this.evKig(e); + }), + (i.prototype.send_50_4 = function () { + var t = this.MxGiq(4); + this.evKig(t); + }), + (i.prototype.send_50_5 = function () { + var t = this.MxGiq(5); + this.evKig(t); + }), + (i.prototype.post_50_1 = function (e) { + var i, + n, + s, + a, + r, + o, + l, + h, + p, + u, + c, + g, + d = e.readByte(), + m = e.readByte(); + for (0 == d && t.JgMyc.ins().mailModel.deleteDic(), c = 0; m > c; c++) { + (g = new t.MailDataVo()), + (i = e.readDouble()), + (n = e.readUnsignedInt()), + (s = e.readString()), + (a = e.readString()), + (r = e.readUnsignedInt()), + (o = e.readByte()), + (l = e.readByte()), + (g.id = i), + (g.resource = n), + (g.title = s), + (g.content = a), + (g.status = o), + (g.time = r), + (p = []); + for (var f = 0; l > f; f++) + (h = e.readByte()), + (u = new t.userItem(e)), + p.push({ + type: h, + item: u, + }); + (g.items = p), t.JgMyc.ins().mailModel.addDic(i, g); + } + }), + (i.prototype.filterMail = function (e) { + var i = Math.floor(t.GlobalData.serverTime / 1e3); + return i - e.time >= 604800 && 0 != e.status && 0 == e.items.length ? 0 : 1; + }), + (i.prototype.post_50_3 = function (e) { + for (var i, n = e.readUnsignedShort(), s = [], a = 0; n > a; a++) (i = e.readDouble()), s.push(i); + t.JgMyc.ins().mailModel.deletedIds = s; + }), + (i.prototype.post_50_2 = function (e) { + var i, + n, + s = [], + a = e.readDouble(), + r = e.readUnsignedInt(), + o = e.readString(), + l = e.readString(), + h = e.readUnsignedInt(), + p = e.readByte(), + u = e.readByte(), + c = new t.MailDataVo(); + (c.id = a), (c.resource = r), (c.title = o), (c.content = l), (c.status = p), (c.time = h); + for (var g = 0; u > g; g++) + (i = e.readByte()), + (n = new t.userItem(e)), + s.push({ + type: i, + item: n, + }); + (c.items = s), (t.JgMyc.ins().mailModel.addMail = c), t.JgMyc.ins().mailModel.addDic(a, c); + }), + (i.prototype.post_50_4 = function (e) { + for (var i, n = e.readUnsignedShort(), s = [], a = 0; n > a; a++) (i = e.readDouble()), s.push(i); + t.JgMyc.ins().mailModel.attachIds = s; + }), + (i.prototype.send_50_6 = function (t) { + var e = this.MxGiq(6); + e.writeByte(t.length); + for (var i = 0; i < t.length; i++) e.writeDouble(t[i]); + this.evKig(e); + }), + (i.prototype.post_50_6 = function (e) { + for (var i, n = e.readByte(), s = [], a = 0; n > a; a++) (i = e.readDouble()), s.push(i); + t.JgMyc.ins().mailModel.deletedIds = s; + }), + (i.prototype.post_Mail_Update = function () {}), + (i.prototype.isHaveRed = function () { + return t.JgMyc.ins().mailModel.isHaveRed(); + }), + (i.prototype.isHaveRed2 = function (e) { + return t.JgMyc.ins().mailModel.isHaveRed2(e); + }), + (i.prototype.getState = function (t) { + return t; + }), + (i.prototype.getBagRed = function () { + return t.JgMyc.ins().mailModel.isHaveRed(); + }), + i + ); + })(t.DlUenA); + (t.MailMgr = e), __reflect(e.prototype, "app.MailMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.dicMail = {}), (e.deleteIds = []), (e.getAttachIds = []), (e.noRead = 0), (e.canGet = 0), (e.complete = 0), e; + } + return ( + __extends(e, t), + (e.prototype.clearMailGetData = function () {}), + (e.prototype.deleteDic = function () { + for (var t in this.dicMail) delete this.dicMail[t]; + }), + (e.prototype.addDic = function (t, e) { + (this.dicMail[t] = e), 0 == e.status && this.noRead++, 2 > e.status && e.items.length > 0 && this.canGet++; + }), + Object.defineProperty(e.prototype, "deletedIds", { + set: function (t) { + (this.deleteIds = []), t && t.length > 0 && (this.deleteIds = t); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "attachIds", { + set: function (t) { + if (((this.deleteIds = []), t && t.length > 0)) { + this.getAttachIds = t; + for (var e = 0; e < t.length; e++) this.canGet > 0 && this.canGet--; + } + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "addMail", { + set: function (t) { + this.newMail = t; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getDataByIdx = function (t) { + var e = []; + for (var i in this.dicMail) e.push(this.dicMail[i]); + return e.sort(this.mysort), e[t]; + }), + (e.prototype.mysort = function (t, e) { + return t.time > e.time ? -1 : t.time < e.time ? 1 : 0; + }), + (e.prototype.getNoReadNum = function () { + var t = 0; + for (var e in this.dicMail) 0 == this.dicMail[e].status && t++; + return t; + }), + (e.prototype.getCanGetNum = function () { + var t = 0; + for (var e in this.dicMail) 2 > this.dicMail[e].status && this.dicMail[e].items.length > 0 && t++; + return t; + }), + (e.prototype.getComNum = function () { + var t = 0; + for (var e in this.dicMail) 0 == this.dicMail[e].items.length && t++; + return t; + }), + (e.prototype.getCompleteNum = function () { + var t = 0; + for (var e in this.dicMail) ((0 < this.dicMail[e].status && this.dicMail[e].items.length == 0) || (2 <= this.dicMail[e].status && this.dicMail[e].items.length > 0)) && t++; + return t; + }), + (e.prototype.isHaveRed = function () { + var t; + for (var e in this.dicMail) if (((t = this.dicMail[e]), t && 0 == t.status)) return 1; + return 0; + }), + (e.prototype.isHaveRed2 = function (t) { + var e; + for (var i in this.dicMail) if (((e = this.dicMail[i]), e && t == e.id && 0 == e.status)) return 1; + return 0; + }), + e + ); + })(egret.EventDispatcher); + (t.MailData = e), __reflect(e.prototype, "app.MailData"); + var i = (function () { + function t() {} + return t; + })(); + (t.MailDataVo = i), __reflect(i.prototype, "app.MailDataVo"); + var n = (function () { + function t() {} + return t; + })(); + (t.IconCount = n), __reflect(n.prototype, "app.IconCount"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + var n = e.call(this) || this; + return (n._container = t), (n._callFunc = i), n.init(), n; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + (this._nameTf = this._container.getChildByName("txt_name")), + (this._timeTf = this._container.getChildByName("txt_time")), + (this._descTf = this._container.getChildByName("txt_desc")), + (this._sendPlayer = this._container.getChildByName("txt_sendName")), + (this._itemContainer = this._container.getChildByName("item_group")), + (this._itemArr = []); + for (var t, e = 0; 6 > e; e++) (t = this._itemContainer.getChildByName("item_" + e)), this._itemArr.push(t); + }), + (i.prototype.setData = function (e) { + void 0 === e && (e = 0); + var i; + if ((this.deleteItem(), (i = e > 0 ? t.JgMyc.ins().mailModel.dicMail[e] : t.JgMyc.ins().mailModel.getDataByIdx(0)))) { + this._nameTf.text = t.CrmPU.language_Omission_txt105 + ":" + i.title; + var n = t.CrmPU.language_Tips115 + t.DateUtils.formatFullTime(1e3 * i.time, 1); + (this._timeTf.textFlow = t.hETx.qYVI(n)), (this._descTf.textFlow = t.hETx.qYVI(i.content)); + var s = 0; + i.items && i.items.length > 0 && (s = i.items.length); + for (var a = void 0, r = void 0, o = 0; s > o; o++) + if (((a = i.items[o].type), 0 == a)) (r = t.VlaoF.StdItems[i.items[o].item.wItemId]), r && this._itemArr[o].setItem(null, r.showQuality, r.icon, 2, r, i.items[o].item.btCount); + else { + var l = t.VlaoF.NumericalIcon[i.items[o].item.wItemId]; + l && this._itemArr[o].setItem(i.items[o].item, 0, l.icon, 3, null, i.items[o].item.btCount); + } + (this._nameTf.visible = !0), (this._timeTf.visible = !0), (this._sendPlayer.visible = !0), (this._descTf.visible = !0), (this._itemContainer.visible = !0); + } else + (this._nameTf.visible = !1), + (this._timeTf.visible = !1), + (this._sendPlayer.visible = !1), + (this._descTf.visible = !1), + (this._itemContainer.visible = !0), + this._callFunc && this._callFunc(); + }), + (i.prototype.deleteItem = function () { + for (var t = 0; 6 > t; t++) this._itemArr[t].setItem(); + }), + (i.prototype.destroy = function () { + for (var e = 0; 6 > e; e++) this._itemArr[e].destroy(), (this._itemArr[e] = null); + (this._itemArr.length = 0), (this._itemArr = null), (this._timeTf.textFlow = null), (this._descTf.textFlow = null), this._callFunc && (this._callFunc = null), t.lEYZI.Naoc(this._container); + }), + i + ); + })(egret.EventDispatcher); + (t.MailContent = e), __reflect(e.prototype, "app.MailContent"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectedUrl = "mail_tab_2"), (t.noSelectedUrl = "mail_tab_1"), (t.readIcon = "icon_bangding"), (t.redIcon = "icon_bangding"), (t.skinName = "MailItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data, + i = 1 == e.isSelected ? this.selectedUrl : this.noSelectedUrl; + (this.bg.source = i), + (this.img_icon.visible = e.items && e.items.length > 0), + (this.redImage.visible = 0 == e.status), + (this.mailState.text = ((0 == e.status && 0 == e.items.length) || (2 > e.status && 0 < e.items.length) ? "未" : "已") + (0 == e.items.length ? "读" : "领")), + (this.mailState.textColor = (0 == e.status && 0 == e.items.length) || (2 > e.status && 0 < e.items.length) ? 14724725 : 15064527); + var n = t.CrmPU.language_Omission_txt25 + t.DateUtils.getFormatBySecond(e.time, t.DateUtils.TIME_FORMAT_16); + (this.txt_name.textFlow = t.hETx.qYVI(n)), (this.txt_desc.text = e.title); + } + }), + (i.prototype.destroy = function () { + (this.txt_name.textFlow = null), (this.txt_desc.text = ""), (this.bg.source = ""), (this.img_icon.source = ""), (this.img_com.source = ""), (this.redImage.source = ""), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.MailItemView = e), __reflect(e.prototype, "app.MailItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._itemArrayCollection = null), (i.preIndex = 0), (i._container = t), t ? ((i._itemArrayCollection = new eui.ArrayCollection()), i.init(), i) : i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + (this.dataAry = []), + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.MailItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection); + }), + (i.prototype.onItemTap = function (e, i, n, s) { + this.preIndex != i && + ((this.id = s.data.id), + this.dataAry[this.preIndex] && this.dataAry[this.preIndex].isSelected && (this.dataAry[this.preIndex].isSelected = 0), + this.id && + t.ckpDj.ins().sendEvent(t.CompEvent.MAIL_SELECTED_INDEX, [ + { + index: i, + id: this.id, + }, + ])); + }), + (i.prototype.setData = function (e, i, y) { + void 0 === e && (e = 0), void 0 === i && (i = null); + this.dataAry ? (this.dataAry.length = 0) : (this.dataAry = []), (this.dataAry = i); + if (0 != e && this.dataAry.length > 0 && !y) { + for (var n = this.dataAry[0], s = 0; s < this.dataAry.length; s++) { + (n = this.dataAry[s]), + 0 == s + ? ((n.isSelected = 1), + 0 == n.status && + ((n.status = 1), + t.JgMyc.ins().mailModel.noRead > 0 && t.JgMyc.ins().mailModel.noRead--, + t.MailMgr.ins().send_50_1(1, n.id), + t.MailMgr.ins().postMailStateChange(), + t.MailMgr.ins().post_Mail_Update())) + : (n.isSelected = 0); + } + } + this._itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.refreshData = function (t) { + var e = this.dataAry.length; + if (e > 0) { + for (var i = 0; e > i; i++) { + var n = this.dataAry[i]; + n.isSelected = i == t; + } + this._itemArrayCollection.replaceAll(this.dataAry), (this.preIndex = t); + } + }), + (i.prototype.resetData = function (y) { + this.dataAry.length = 0; + for (var e in t.JgMyc.ins().mailModel.dicMail) { + this.dataAry.push(t.JgMyc.ins().mailModel.dicMail[e]); + } + this.dataAry.sort(t.JgMyc.ins().mailModel.mysort); + var i = this.dataAry.length; + for (var n = 0; i > n; n++) { + if (1 == this.dataAry[n].isSelected) { + this.preIndex = n; + break; + } + } + if (!y) { + for (var n = 0; i > n; n++) { + 1 == this.dataAry[n].isSelected && (this.dataAry[n].isSelected = 0); + } + this.dataAry[0] && 0 == this.dataAry[0].isSelected && (this.dataAry[0].isSelected = 1); + } + this.dataAry.length > 0 ? this._itemArrayCollection.replaceAll(this.dataAry) : (this._itemArrayCollection.source = this.dataAry); + !y && + this.dataAry[0] && + t.ckpDj.ins().sendEvent(t.CompEvent.MAIL_SELECTED_INDEX, [ + { + index: 0, + id: this.dataAry[0].id, + }, + ]); + }), + (i.prototype.addDataVo = function (e, i) { + if (this.dataAry) { + this.dataAry.push(e); + var n = 0; + 1 == this.dataAry.length && + ((e.isSelected = 1), 0 == e.items.length && (e.status = 1), t.MailMgr.ins().post_Mail_Update(), t.JgMyc.ins().mailModel.noRead > 0 && t.JgMyc.ins().mailModel.noRead--), + this.dataAry.sort(t.JgMyc.ins().mailModel.mysort); + for (var s = this.dataAry.length, a = 0; s > a; a++) + if (1 == this.dataAry[a].isSelected) { + (n = this.dataAry[a].id), (this.preIndex = a); + break; + } + this._itemArrayCollection.replaceAll(this.dataAry), i && i(n); + } + }), + (i.prototype.removeDataVo = function (t) { + this.dataAry && this.dataAry.length > 0 && (this.dataAry.length > t && this.dataAry.splice(t, 1), this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh()); + }), + (i.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var t = this._list.getChildAt(0); + t.destroy(), (t = null); + } + (this.dataAry.length = 0), + (this.dataAry = null), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null); + }), + (i.prototype.removeView = function () { + this._container && this._container.removeChildren(); + }), + i + ); + })(egret.EventDispatcher); + (t.MailListView = e), __reflect(e.prototype, "app.MailListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.selectedIndex = 0), (i.selectedId = 0), (i.skinName = "MailSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System37), + this.vKruVZ(this.btn_delete, this.onTouchAp), + this.vKruVZ(this.btn_get_attach, this.onTouchAp), + this.vKruVZ(this.btn_onekey_get, this.onTouchAp), + this.vKruVZ(this.btn_delete_com, this.onTouchAp), + this.HFTK(t.MailMgr.ins().post_50_2, this.onNewMail), + this.HFTK(t.MailMgr.ins().post_50_3, this.onDeleteCom), + this.HFTK(t.MailMgr.ins().post_50_6, this.onDeleteCom), + this.HFTK(t.MailMgr.ins().post_50_4, this.onGetAttach), + this.HFTK(t.MailMgr.ins().post_50_1, this.updateData), + t.ckpDj.ins().addEvent(t.CompEvent.MAIL_SELECTED_INDEX, this.onSelected, this), + t.ckpDj.ins().addEvent(t.CompEvent.MAIL_DELETE, this.onDelete, this), + (this.mailContent = new t.MailContent(this.container, this.callFunc.bind(this))), + (this.mailListView = new t.MailListView(this.list)), + this.onRefreshMail(1); + }), + (i.prototype.onSelected = function (e) { + var i = e[0], + n = i.index, + s = i.id, + dm = t.JgMyc.ins().mailModel.dicMail; + this.selectedId = s; + n > -1 && + this.selectedId > 0 && + (0 == dm[s].status && + (t.MailMgr.ins().send_50_1(1, this.selectedId), + t.MailMgr.ins().postMailStateChange(), + t.JgMyc.ins().mailModel.noRead > 0 && t.JgMyc.ins().mailModel.noRead--, + (t.JgMyc.ins().mailModel.dicMail[s].status = 1)), + (this.selectedIndex = n), + (t.JgMyc.ins().mailModel.dicMail[s].isSelected = 1), + this.mailContent.setData(s), + this.mailListView.refreshData(n), + this.setBottom()), + (this.btn_get_attach.visible = 2 > t.JgMyc.ins().mailModel.dicMail[s].status && 0 < dm[s].items.length), + t.MailMgr.ins().post_Mail_Update(); + }), + (i.prototype.onDelete = function (e) { + var i = e[0], + n = i.id; + (this.selectedId = n), t.MailMgr.ins().send_50_2(this.selectedId); + }), + (i.prototype.onTouchAp = function (e) { + switch (e.currentTarget) { + case this.btn_delete: + t.MailMgr.ins().send_50_2(this.selectedId); + break; + case this.btn_get_attach: + t.MailMgr.ins().send_50_3(this.selectedId); + break; + case this.btn_onekey_get: + var n = Object.keys(t.JgMyc.ins().mailModel.dicMail).length; + if (n) { + if (0 < t.JgMyc.ins().mailModel.getNoReadNum() || 0 < t.JgMyc.ins().mailModel.getCanGetNum()) { + t.MailMgr.ins().send_50_5(); + } else { + t.uMEZy.ins().pwYDdQ("没有可领取的邮件"); + } + } else { + t.uMEZy.ins().pwYDdQ("邮件列表为空"); + } + break; + case this.btn_delete_com: + var n = Object.keys(t.JgMyc.ins().mailModel.dicMail).length; + if (n) { + if (0 < t.JgMyc.ins().mailModel.getCompleteNum()) { + t.CautionView.show( + "确定要删除已完成的邮件?", + function () { + t.MailMgr.ins().send_50_4(); + }, + this + ); + } else { + t.uMEZy.ins().pwYDdQ("没有可删除的邮件"); + } + } else { + t.uMEZy.ins().pwYDdQ("邮件列表为空"); + } + } + }), + (i.prototype.onRefreshMail = function (e, y) { + var i = [], + x = t.JgMyc.ins().mailModel.dicMail; + for (var n in x) i.push(x[n]); + i.sort(t.JgMyc.ins().mailModel.mysort); + if (!y || !e) { + var s = t.JgMyc.ins().mailModel.getDataByIdx(0); + s && (this.selectedId = s.id); + } + this.mailListView.setData(!e && this.selectedId ? this.selectedId : e, i, !e ? !1 : y); + if (i.length > 120) { + for (var a = [], r = i.length - 1; r >= 0 && !(i.length - a.length <= 120); r--) { + 0 != i[r].status && 0 == i[r].items.length && a.push(i[r].id); + } + t.MailMgr.ins().send_50_6(a); + } + if (!y || !e) { + this.mailContent.setData(this.selectedId); + this.btn_get_attach.visible = 0 < i.length && 2 > i[0].status && 0 < i[0].items.length; + } else { + this.updateGetBtn(); + } + this.setBottom(); + }), + (i.prototype.onNewMail = function () { + var e = this; + t.JgMyc.ins().mailModel.newMail && + (this.mailListView.addDataVo(t.JgMyc.ins().mailModel.newMail, function (t) { + e.onRefreshMail(e.selectedId, !0); + }), + this.setBottom()); + }), + (i.prototype.updateData = function () { + this.mailListView.resetData(), this.mailContent.setData(); + var e = []; + for (var i in t.JgMyc.ins().mailModel.dicMail) e.push(t.JgMyc.ins().mailModel.dicMail[i]); + e.sort(t.JgMyc.ins().mailModel.mysort), this.mailListView.setData(0, e), this.setBottom(); + if (0 >= e.length) { + this.selectedId = 0; + } + }), + (i.prototype.updateGetBtn = function () { + if (this.selectedId) { + var a = t.JgMyc.ins().mailModel.dicMail[this.selectedId]; + if (a) { + ((0 < a.status && 0 == a.items.length) || (2 <= a.status && 0 < a.items.length)) && (this.btn_get_attach.visible = !1); + } + } + }), + (i.prototype.onGetAttach = function () { + var e = t.JgMyc.ins().mailModel.getAttachIds; + if (0 != e.length) { + for (var i = 0; i < e.length; i++) { + var n = e[i], + s = t.JgMyc.ins().mailModel.dicMail[n]; + s && (t.JgMyc.ins().mailModel.noRead > 0 && 0 == s.status && (t.MailMgr.ins().send_50_1(1, s.id), t.MailMgr.ins().postMailStateChange(), t.JgMyc.ins().mailModel.noRead--), (s.status = 2)); + } + this.updateGetBtn(), this.mailListView.resetData(!0), this.setBottom(); + } + }), + (i.prototype.onDeleteCom = function () { + var e = t.JgMyc.ins().mailModel.deleteIds.length; + if (0 != e) { + for (var i, n = 0; e > n; n++) + if (((i = t.JgMyc.ins().mailModel.deleteIds[n]), i > 0)) { + if (!t.JgMyc.ins().mailModel.dicMail[i]) continue; + 0 == t.JgMyc.ins().mailModel.dicMail[i].status && t.JgMyc.ins().mailModel.noRead > 0 && t.JgMyc.ins().mailModel.noRead--, delete t.JgMyc.ins().mailModel.dicMail[i]; + } + var s = Object.keys(t.JgMyc.ins().mailModel.dicMail); + if (s && s.length > 0) { + (this.selectedIndex = 0), + (this.selectedId = Number(s[0])), + (t.JgMyc.ins().mailModel.dicMail[this.selectedId].isSelected = 1), + (t.JgMyc.ins().mailModel.dicMail[this.selectedId].status = 1), + this.mailContent.setData(this.selectedId); + var a = []; + for (var r in t.JgMyc.ins().mailModel.dicMail) a.push(t.JgMyc.ins().mailModel.dicMail[r]); + a.sort(t.JgMyc.ins().mailModel.mysort), this.mailListView.setData(0, a), this.mailListView.refreshData(this.selectedIndex); + } else { + this.mailContent.setData(); + var a = []; + for (var r in t.JgMyc.ins().mailModel.dicMail) a.push(t.JgMyc.ins().mailModel.dicMail[r]); + a.sort(t.JgMyc.ins().mailModel.mysort), this.mailListView.setData(0, a); + } + this.setBottom(); + } + }), + (i.prototype.callFunc = function () { + this.setBottom(); + }), + (i.prototype.setBottom = function () { + (this.txt_count.text = Object.keys(t.JgMyc.ins().mailModel.dicMail).length + "/150"), + (this.txt_no_read.text = t.JgMyc.ins().mailModel.getNoReadNum() + ""), + (this.txt_no_get.text = t.JgMyc.ins().mailModel.getCanGetNum() + ""), + (this.txt_no_com.text = t.JgMyc.ins().mailModel.getComNum() + ""); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.dragDropUI && this.dragDropUI.destroy(), + this.mailContent && this.mailContent.destroy(), + this.mailListView && this.mailListView.destroy(), + (this.dragDropUI = null), + (this.mailContent = null), + (this.mailListView = null), + t.ckpDj.ins().removeEvent(t.CompEvent.MAIL_SELECTED_INDEX, this.onSelected, this), + t.ckpDj.ins().removeEvent(t.CompEvent.MAIL_DELETE, this.onSelected, this), + this.fEHj(this.btn_onekey_get, this.onTouchAp), + this.fEHj(this.btn_get_attach, this.onTouchAp), + this.fEHj(this.btn_delete_com, this.onTouchAp), + this.fEHj(this.btn_delete, this.onTouchAp), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.MailView = e), __reflect(e.prototype, "app.MailView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.isClick = !1), e; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.isClick || ((this.isClick = !0), this.EeFPm(this, this.MoveEvent), this.VoZqXH(this, this.MoveEvent)), + (this.lbPlayerName.text = this.data.name), + (this.playerLevel.text = this.data.lv + ""), + (this.guildLevel.text = this.data.guild + ""), + (this.lbJob.source = "m_task_zy" + this.data.job), + (this.bg.visible = this.data.isSelect); + }), + (e.prototype.MoveEvent = function (t) { + t.type == mouse.MouseEvent.MOUSE_OUT ? (this.selectImg.visible = !1) : t.type == mouse.MouseEvent.MOUSE_OVER && (this.selectImg.visible = !0); + }), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this), (this.isClick = !1), (this.selectImg.visible = !1), this.lvpAF(this, this.MoveEvent), this.lbpdAJ(this, this.MoveEvent); + }), + e + ); + })(t.BaseItemRender); + (t.AttackCharItem = e), __reflect(e.prototype, "app.AttackCharItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + this.ItemData.data = this.data; + var e = t.ZAJw.sztgR(this.data.type, this.data.id); + if (e) { + var i = t.ClwSVR.GOODS_COLOR[0 | e[3]], + n = "|C:" + i + "&T:" + e[0] + "|"; + this.itemName.textFlow = t.hETx.generateTextFlow1(n); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.BulletFrameItem = e), __reflect(e.prototype, "app.BulletFrameItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "BulletFrameSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.touchChildren = !1), (this.touchEnabled = !1), (this.anchorOffsetX = 130); + }), + (i.prototype.open = function () { + this.payTweens(); + }), + (i.prototype.payTweens = function () { + egret.Tween.removeTweens(this); + var e = t.ChatMgr.ins().getBulletFrameStr(); + if (e) { + (this.alpha = 0), (this.x = -130), (this.verticalCenter = -250); + var i = (e + "").split("\\"), + n = i[0], + s = i[1]; + (this.imgType.source = "icontype_" + n), (this.nameLabel.text = s); + var a = t.aTwWrO.ins().getWidth(); + (this.visible = !0), + egret.Tween.get(this) + .to( + { + alpha: 1, + x: a / 2, + }, + a / 6 + ) + .wait(5e3) + .to( + { + alpha: 0, + x: a + 130, + }, + a / 3 + ) + .call(function () { + egret.Tween.removeTweens(this), this.payTweens(); + }); + } else t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.BulletFrameView = e), __reflect(e.prototype, "app.BulletFrameView"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "BulletFrameSkin2"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.touchChildren = !1), + (this.touchEnabled = !1), + (this.anchorOffsetX = 130), + (this.awardArr = new eui.ArrayCollection()), + (this.itemList.itemRenderer = t.BulletFrameItem), + (this.itemList.dataProvider = this.awardArr); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.payTweens(); + }), + (i.prototype.payTweens = function () { + egret.Tween.removeTweens(this); + var e = t.ChatMgr.ins().getBulletFrameStr2(); + if (e) { + (this.alpha = 0), (this.x = -130), (this.verticalCenter = -250); + for ( + var i = (e + "").split("\\"), + n = i.filter(function (t) { + return "" != t; + }), + s = [], + a = 0; + a < n.length; + a += 3 + ) + s.push({ + type: n[a], + id: n[a + 1], + count: n[a + 2], + }); + this.awardArr.replaceAll(s); + var r = t.aTwWrO.ins().getWidth(); + (this.visible = !0), + egret.Tween.get(this) + .to( + { + alpha: 1, + x: r / 2, + }, + r / 6 + ) + .wait(1500) + .to( + { + alpha: 0, + x: r + 130, + }, + r / 3 + ) + .call(function () { + egret.Tween.removeTweens(this), this.payTweens(); + }); + } else t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(); + }), + i + ); + })(t.gIRYTi); + (t.BulletFrameView2 = e), __reflect(e.prototype, "app.BulletFrameView2"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "AntiAddictionView"), (e.percentHeight = 100), (e.percentWidth = 100), e; + } + return ( + __extends(e, t), + (e.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.enterBtn, this.onClick); + }), + (e.prototype.onClick = function (t) { + window.IdCardFunction(); + }), + (e.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.prototype.close.call(this, e), this.$onClose(), this.fEHj(this.enterBtn, this.onClick); + }), + e + ); + })(t.gIRYTi); + (t.MainAntiAddictionView = e), __reflect(e.prototype, "app.MainAntiAddictionView"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MainBanSkin"), (e.percentHeight = 100), (e.percentWidth = 100), e; + } + return ( + __extends(e, t), + (e.prototype.initUI = function () {}), + (e.prototype.open = function (t) { + this.desc.text = t; + }), + e + ); + })(t.gIRYTi); + (t.MainBanView = e), __reflect(e.prototype, "app.MainBanView"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.noticeAry = []), + (t.noticeAry1 = []), + (t.noticeAry2 = []), + (t.isShowNotice = !1), + (t.skillTipsArr = []), + (t.isPlaySkillTween = !1), + (t.itemImagAry = []), + (t.touchEnabled = t.touchChildren = !1), + (t.bottom = t.top = t.right = t.left = 0), + (t.skinName = "MianBottomNotice"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + (this.noticeAry.length = 0), + (this.noticeAry1.length = 0), + (this.noticeAry2.length = 0), + (this.isShowNotice = this.skillTipsGrp.visible = !1), + egret.Tween.removeTweens(this.noticeGroup), + egret.Tween.removeTweens(this.noticeGroup1), + egret.Tween.removeTweens(this.noticeGroup2), + (this.noticeGroup.visible = !1), + (this.noticeGroup1.visible = !1), + (this.noticeGroup2.visible = !1), + KdbLz.qOtrbE.iFbP && ((this.noticeGroup1.top = 10), (this.noticeGroup.top = 50), (this.noticeGroup2.top = 180)), + this.HFTK(t.ChatMgr.ins().postAddnotice, this.Addnotice), + this.HFTK(t.hADk.ins().post_skillPushImage, this.pushSkillTween), + t.ckpDj.ins().addEvent(t.MainEvent.ADD_TASK_EFF, this.addTaskEff, this); + }), + (i.prototype.Addnotice = function (t) { + var e = t[1], + i = t[0]; + console.log(e + " - " + i); + 1 == e + ? (this.noticeAry1.push(i), this.payNotice1()) + : 2 == e + ? (this.noticeAry2.push(i), this.payNotice2()) + : -1 == i.indexOf("银两") && (this.noticeAry.push(i), this.isShowNotice || this.payNotice()); + }), + (i.prototype.payNotice1 = function () { + var e = this; + if (!this.noticeGroup1.visible && this.noticeAry1.length) { + egret.Tween.removeTweens(this.noticeLabel1); + var i = this.noticeAry1.shift(); + (this.noticeLabel1.textFlow = t.hETx.qYVI(i)), (this.noticeLabel1.x = this.noticeGroup1.width); + var n = -this.noticeLabel1.size * this.noticeLabel1.text.length * 0.9; + this.noticeGroup1.visible = !0; + var s = egret.Tween.get(this.noticeLabel1), + a = 3 * (this.noticeLabel1.x - n), + r = this; + s.to( + { + x: n, + }, + a + ).call(function () { + (r.noticeGroup1.visible = !1), egret.Tween.removeTweens(e), r.payNotice1(); + }); + } + }), + (i.prototype.payNotice2 = function () { + var e = this; + if (!this.noticeGroup2.visible && this.noticeAry2.length) { + egret.Tween.removeTweens(this.noticeLabel2); + var i = this.noticeAry2.shift(); + (this.noticeLabel2.textFlow = t.hETx.qYVI(i)), (this.noticeLabel2.x = this.noticeGroup2.width); + var n = -this.noticeLabel2.size * this.noticeLabel2.text.length * 0.9; + this.noticeGroup2.visible = !0; + var s = egret.Tween.get(this.noticeLabel2), + a = 3 * (this.noticeLabel2.x - n), + r = this; + s.to( + { + x: n, + }, + a + ).call(function () { + (r.noticeGroup2.visible = !1), egret.Tween.removeTweens(e), r.payNotice2(); + }); + } + }), + (i.prototype.payNotice = function () { + if ((egret.Tween.removeTweens(this.noticeGroup), this.noticeAry.length)) { + this.isShowNotice = !0; + var e = this.noticeAry.shift(); + this.noticeLabel.textFlow = t.hETx.qYVI(e); + var i = this; + (this.noticeGroup.alpha = 1), (this.noticeGroup.scaleX = this.noticeGroup.scaleY = 2), (this.noticeGroup.visible = !0); + var n = egret.Tween.get(this.noticeGroup), + time = -1 != e.indexOf("爆出了|C:0xff1ac2&T:") ? 1e3 : 3e3; + n.to( + { + scaleX: 0.85, + scaleY: 0.85, + }, + 100 + ) + .to( + { + scaleX: 1, + scaleY: 1, + }, + 100 + ) + .wait(time) + .to( + { + alpha: 0, + }, + 800 + ) + .call(function () { + (this.visible = !1), (i.isShowNotice = !1), i.payNotice(); + }); + } + }), + (i.prototype.addTaskEff = function (t) { + var e = this; + this.feelingsImg || ((this.feelingsImg = new eui.Image()), (this.feelingsImg.horizontalCenter = 0)), + egret.Tween.removeTweens(this.feelingsImg), + (this.feelingsImg.source = t), + (this.feelingsImg.alpha = 0), + (this.feelingsImg.y = 0), + this.feelingsGrp.addChild(this.feelingsImg), + egret.Tween.get(this.feelingsImg) + .to( + { + y: -50, + alpha: 1, + }, + 1200 + ) + .to( + { + y: -62, + }, + 1200 + ) + .to( + { + y: -70, + alpha: 0, + }, + 700 + ) + .call(function () { + egret.Tween.removeTweens(e.feelingsImg), e.feelingsImg.parent && e.feelingsImg.parent.removeChild(e.feelingsImg); + }); + }), + (i.prototype.pushSkillTween = function (t) { + this.skillTipsArr.push(t), this.addSkillItem(); + }), + (i.prototype.addSkillItem = function () { + var e = this; + if (this.skillTipsArr.length > 0 && !this.isPlaySkillTween) { + this.isPlaySkillTween = !0; + var i = this.skillTipsArr.shift(), + n = this.getImage(); + if (1 == i.type) { + var s = t.NWRFmB.ins().getPayer.getUserSkill(i.id); + if (s) { + var a = t.VlaoF.SkillsLevelConf[i.id][s.nLevel]; + a && ((this.skillTipsIcon.source = a.skillName + ""), (n.source = a.skillName + "")); + var r = t.VlaoF.SkillConf[i.id]; + r && (this.skillTipsName.text = r.name + ""); + } + } + (this.skillTipsBgGrp.scaleX = this.skillTipsBgGrp.scaleY = this.skillTipsIconGrp.scaleX = this.skillTipsIconGrp.scaleY = 0), + (this.skillTipsBgGrp.alpha = this.skillTipsIconGrp.alpha = 1), + (this.skillTipsGrp.visible = this.skillTipsIcon.visible = !0), + egret.Tween.removeTweens(this.skillTipsBgGrp); + var o = egret.Tween.get(this.skillTipsBgGrp); + o + .to( + { + scaleX: 1.3, + scaleY: 1.3, + }, + 200 + ) + .to( + { + scaleX: 1, + scaleY: 1, + }, + 100 + ) + .wait(850) + .to( + { + alpha: 0, + }, + 400 + ), + egret.Tween.removeTweens(this.skillTipsIconGrp); + var l = this, + h = this.skillTipsIcon.localToGlobal(); + (n.x = h.x - 113), (n.y = h.y - 29), (n.visible = !1), this.addGroup.addChild(n); + var p = egret.Tween.get(this.skillTipsIconGrp); + p.to( + { + scaleX: 1.3, + scaleY: 1.3, + }, + 200 + ) + .to( + { + scaleX: 1, + scaleY: 1, + }, + 100 + ) + .wait(850) + .call(function () { + (e.skillTipsIcon.visible = !1), + t.ckpDj.ins().sendEvent( + t.MainEvent.PLAY_EFF_JIJN, + i.pos, + n, + function () { + (l.skillTipsGrp.visible = !1), l.pushImage(n); + }, + function () { + (l.isPlaySkillTween = !1), l.addSkillItem(); + } + ); + }); + } + }), + (i.prototype.getImage = function () { + return this.itemImagAry.shift() || new eui.Image(); + }), + (i.prototype.pushImage = function (e) { + t.lEYZI.Naoc(e), egret.Tween.removeTweens(e), (e.source = null), this.itemImagAry.push(e); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.ckpDj.ins().removeEvent(t.MainEvent.ADD_TASK_EFF, this.addTaskEff, this), + (this.noticeAry.length = 0), + (this.noticeAry1.length = 0), + (this.noticeAry2.length = 0), + (this.isShowNotice = !1), + egret.Tween.removeTweens(this.noticeGroup), + egret.Tween.removeTweens(this.noticeGroup1), + egret.Tween.removeTweens(this.noticeGroup2), + (this.noticeGroup.visible = !1), + (this.noticeGroup1.visible = !1), + (this.noticeGroup2.visible = !1); + }), + i + ); + })(t.gIRYTi); + (t.MainBottomNotice = e), __reflect(e.prototype, "app.MainBottomNotice"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._selfMapId = 0), + (t.functionKey = 0), + (t.skillNum = 11), + (t.pkArr = [ + { + img: "m_t_ms_heping", + index: 1, + }, + { + img: "m_t_ms_zudui", + index: 2, + }, + { + img: "m_t_ms_hanghui", + index: 3, + }, + { + img: "m_t_ms_didui", + index: 4, + }, + { + img: "m_t_ms_quanti", + index: 5, + }, + { + img: "m_t_ms_zhenying", + index: 6, + }, + ]), + (t.ruleList = {}), + (t.ruleKey = {}), + (t.buttonKey = {}), + (t.ruleParent = {}), + (t.ruleEff = {}), + (t.petState = 0), + (t.followCd = 0), + (t.actMonsterIsShow = !0), + (t.actCircleIsShow = !0), + (t.actLevelIsShow = !0), + (t.actEquipIsShow = !0), + (t.recog = 0), + (t.lockSkillId = 0), + (t.npcTimers = 0), + (t.duoBaoTimers = 0), + (t.duoBaoTxt = ""), + (t.kyes = {}), + (t.buttonAry = []), + (t.browserImage = ""), + (t.redArr = []), + (t.yellowArr = []), + (t.currentMultipleExp = -1), + (t._skillTipsRoleLevel = 0), + (t._isShow = !1), + (t.itemImagAry = []), + (t.isTweenOver = !1), + (t.onHookType = 0), + (t.sbkcdTime = 0), + (t._actID = 13), + (t.ackArr = []), + (t.payExpTime = 0), + (t.sendTime = 0), + (t.actTipsID = 10012), + (t.levelEffPlayInfo = {}), + (t.circleTipsActID = 10077), + (t.effPlayInfo = {}), + (t.actMonsterActID = 10147), + (t.monsterEffInfo = {}), + (t.sprotesEquipActID = 10020), + (t.equipEffInfo = {}), + (t.bottom = t.top = t.right = t.left = 0), + (t.touchChildren = !0), + (t.touchEnabled = !1), + (t.dSpriteSheet = new how.DSpriteSheet()), + (t.skinName = "MainBottomSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.updateHp = function (t) { + this.updateState([t, this.lockSkillId]); + }), + (i.prototype.updateState = function (e) { + var i = e[0], + n = e[1], + s = t.NWRFmB.ins().getPayer; + if (s && s.propSet) { + (s.lockTarget = i), (s.lockSkillId = n), (this.recog = i), (this.lockSkillId = n); + var a = t.NWRFmB.ins().getCharRole(i); + if ((a || (a = t.NWRFmB.ins().getDummyChar(i)), a)) { + if ( + ((this.topGroup.visible = !0), + (this.topGroup2.visible = !0), + (this.lockName.visible = !0), + (this.lockHpLabel.visible = !0), + (this.jobImage.visible = !0), + (this.jobImg.visible = !1), + (this.hpBar.value = a.propSet.getHp()), + (this.hpBar.maximum = a.propSet.getMaxHp()), + (this.lockHpLabel.text = a.propSet.getHp() + "/" + a.propSet.getMaxHp()), + (this.lockName.text = a.charName), + a.isCharRole || a.isDummyCharRole) + ) { + var r = a.propSet.getAP_JOB(), + o = a.propSet.MzYki(), + l = a.propSet.mBjV(); + (this.jobImg.visible = !0), + (this.jobImg.source = "m_job" + r), + (this.lockName.text = o > 0 ? a.charName + " " + o + "转" + l : a.charName + " Lv" + l), + (this.jobImage.source = "name_" + r + "_" + a.propSet.getSex()); + } else { + this.clickStage(); + var h = t.VlaoF.Monster[a.propSet.getACTOR_ID()]; + h && (3 == h.monsterType || 4 == h.monsterType || 8 == h.monsterType || 9 == h.monsterType) ? (this.jobImage.source = "m_m_lock_2") : (this.jobImage.source = "m_m_lock_1"); + } + return; + } + } + (this.topGroup.visible = !1), (this.topGroup2.visible = !1), this.clickStage(); + }), + (i.prototype.clickStage = function () { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.clickStage, this), (this.rightMenuView.visible = !1); + }), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.rightMenuView = new t.RankRightMenuView()), + (this.rightMenuView.visible = !1), + this.topGroup.addChild(this.rightMenuView), + (t.RuleIconBase.updateShow = this.updateRuleAndSort.bind(this)), + (t.RuleIconBase.update = this.updateRule.bind(this)), + (t.RuleIconBase.updateCount = this.updateCount.bind(this)), + (this.rulePos = { + 1: this.lyaer1, + 2: null, + 3: null, + 4: this.lyaer4, + 5: this.lyaer5, + 6: this.lyaer6, + 7: this.lyaer7, + }), + (this.skillArr = []); + for (var i = 0; i < this.skillNum; i++) + this["skill" + i].setSkillImg(""), + (this["skill" + i].keyIndex = i), + this["skill" + i].setCountState(!1), + (this["skillMC" + i] = t.ObjectPool.pop("app.MovieClip")), + (this["skillMC" + i].blendMode = egret.BlendMode.ADD), + (this["skillMC" + i].scaleX = this["skillMC" + i].scaleY = 1), + (this["skillMC" + i].touchEnabled = !1), + this["cdGrp" + i].addChild(this["skillMC" + i]), + (this["skillMC" + i].visible = !1), + this["skill" + i].addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + this["skill" + i].addEventListener(egret.TouchEvent.TOUCH_TAP, this.keyClick, this), + this["skill" + i].addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onMouseMove, this), + this["skill" + i].addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onMouseMove, this), + this.skillArr.push(this["skill" + i]); + if (((this.blueImg.visible = this.qqGrp.visible = this.blueYearImg.visible = this.shengQuGrp.visible = !1), Main.vZzwB.pfID == t.PlatFormID.YFBX && Main.vZzwB.specialId != t.MiOx.srvid)) { + (this.qqGrp.visible = !0), + (this.qqOpenID.text = "您的平台ID:" + Main.vZzwB.userInfo.openID), + (this.qqTxt.text = t.zlkp.replace(this.qqTxt.text, Main.vZzwB.kfQQ)), + (this.qqGrpTxt.text = t.zlkp.replace(this.qqGrpTxt.text, Main.vZzwB.kfQQ)), + (this.playerName.x = 132); + var n = 0, + s = 0, + a = 0, + r = t.edHC.ins().getQQBlueInfo(); + (n = r[0]), + (s = r[1]), + (a = r[2]), + (this.blueImg.visible = n && a > 0), + (this.blueImg.source = n && a > 0 ? (1 == n ? "name_lz_pt" + (a + 1) : "name_lz_hh" + (a + 1)) : ""), + (this.blueYearImg.visible = 1 == s); + } else Main.vZzwB.pfID == t.PlatFormID.ShengQu ? (this.shengQuGrp.visible = !0) : (this.playerName.x = 97); + (this.multipleExp = how.getQuickLabel(this.dSpriteSheet)), + (this.multipleExp.x = 25), + (this.multipleExp.y = 157), + (this.multipleExp.size = 18), + (this.multipleExp.textAlign = "left"), + (this.multipleExp.textStroke = 1), + (this.multipleExp.textStrokeColor = 0), + (this.multipleExp.textWidth = 250), + (this.multipleExp.textHeight = 32), + this.InfoGrp.addChild(this.multipleExp), + KdbLz.os.KeyBoard.addKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.addKeyUp(this.keyUp, this), + this.keyInfo(), + (this.pkSelect.setClickFunction = this._pkClickFunction.bind(this)), + this.pkSelect.itemRenderer(t.MainSelectRender, "MainSelectArrItem"), + (this.pkSelect.dataProvider = this.pkArr), + (this.bubbleLabel.text = t.CrmPU.language_Omission_txt46), + (this.bubbleLabel.visible = !1), + (this.newGrp = new eui.Group()), + (this.newGrp.width = 59), + (this.newGrp.height = 59), + (this.newIcon = new eui.Image()), + (this.newIcon.horizontalCenter = 0), + (this.newIcon.verticalCenter = 0), + this.newGrp.addChild(this.newIcon), + (this.newGrp.x = 691), + (this.newGrp.y = 966), + (this.newGrp.visible = !1), + (this.timerGrp.visible = !1), + t.yCIt.UIupV.addChild(this.newGrp), + t.ckpDj.ins().addEvent(t.CompEvent.TimerEvent, this.onTimerStart, this), + t.ckpDj.ins().addEvent(t.CompEvent.Clear_Timer_Event, this.onClearTimer, this), + (this.msgdelay = []), + (this.msgAry = [this.msg1, this.msg2, this.msg3]), + this.HFTK(t.Nzfh.ins().post_g_0_253, this.updateMsg), + this.HFTK(t.XwoNAr.ins().post_17_3, this.updateWIFI), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateWIFI), + this.HFTK(t.XwoNAr.ins().postSetWIFI, this.updateWIFI), + this.HFTK(t.Nzfh.ins().post_pk, this.clickPK), + this.HFTK(t.edHC.ins().post_26_28, this.setActTimeCD), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.setActTimeCD), + this.updateWIFI(), + t.KHNO.ins().remove(this.updateSkillCD, this), + t.KHNO.ins().tBiJo(10, 0, this.updateSkillCD, this), + this.updateSkillCD(); + var btns = [ + { + btn: this.roleButton, + icon: "m_icon_juese", + lab: "icont_juese", + eAvIy: [t.Nzfh.ins().post_g_0_7, t.Nzfh.ins().post_g_0_3, t.edHC.ins().post_26_28, t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_3, t.ThgMu.ins().post_8_4], + getRed: ["app.Nzfh", "getRoleRed"], + }, + { + btn: this.bagButton, + icon: "m_icon_beibao", + lab: "icont_beibao", + eAvIy: [t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_2, t.ThgMu.ins().post_8_3, t.ThgMu.ins().post_8_4, t.ThgMu.ins().post_8_10, t.Nzfh.ins().post_dimensionalKey, t.ThgMu.ins().post_8_13], + getRed: ["app.ThgMu", "getBagRed"], + }, + { + btn: this.mailButton, + icon: "btn_youjian", + eAvIy: [t.MailMgr.ins().post_50_1, t.MailMgr.ins().post_50_2, t.MailMgr.ins().post_50_3, t.MailMgr.ins().post_50_6, t.MailMgr.ins().post_50_4, t.MailMgr.ins().postMailStateChange], + getRed: ["app.MailMgr", "getBagRed"], + }, + { + btn: this.setupButton, + icon: "m_icon_huishou", + lab: "icont_huishou", + }, + { + btn: this.skillButton, + icon: "m_icon_jineng", + lab: "icont_jineng", + eAvIy: [ + t.XwoNAr.ins().post_17_2, + t.Nzfh.ins().post_g_0_7, + t.NGcJ.ins().post_updateSkill, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + t.GhostMgr.ins().post_31_1, + t.GhostMgr.ins().post_31_2, + ], + getRed: ["app.NGcJ", "getSkillredDot"], + }, + { + btn: this.shopButton, + icon: "m_icon_shangcheng", + }, + { + btn: this.guildButton, + icon: "m_icon_caidan", + lab: "icont_hanghui", + eAvIy: [t.bfhrJ.ins().post_UpdateRedPos], + getRed: ["app.bfhrJ", "getGuildRed"], + }, + { + btn: this.composeButton, + icon: "icon_hecheng", + lab: "icont_hecheng", + eAvIy: [t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_2, t.ThgMu.ins().post_8_4, t.Nzfh.ins().postPlayerChange, t.ForgeMgr.ins().post_19_1], + getRed: ["app.ForgeMgr", "getForgeRed2"], + }, + { + btn: this.friendsButton, + icon: "btn_haoyou", + }, + { + btn: this.growWayBtn, + icon: "icon_czzl", + }, + { + btn: this.growButton, + icon: "icon_bianqiang", + }, + { + btn: this.teamButton, + icon: "btn_zudui", + }, + { + btn: this.teamButton2, + icon: "icon_hanghui", + eAvIy: [t.bfhrJ.ins().post_UpdateRedPos], + getRed: ["app.bfhrJ", "getGuildRed"], + }, + { + btn: this.rankBtn, + icon: "btn_paihang", + }, + { + btn: this.flyButton, + icon: "btn_feixiei", + }, + { + btn: this.settingBtn, + icon: "m_btn_shezhi", + }, + ]; + if (Main.vZzwB.specialId != t.MiOx.srvid) { + btns.push({ + btn: this.CrossServerButton, + icon: "icon_kaifuzhanchang", + eAvIy: [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5, t.Nzfh.ins().post_updateZsLevel], + getRed: ["app.CrossServerMgr", "getCrossServerActRed"], + }); + btns.push({ + btn: this.returnServerButton, + icon: "icon_huidaoyuanfu", + }); + btns.push({ + btn: this.privateDealsButton, + icon: "btn_jiaoyi", + }); + btns.push({ + btn: this.tradeLineWinButton, + icon: "btn_jishou", + eAvIy: [t.TradeLineMgr.ins().post_27_9], + getRed: ["app.TradeLineMgr", "getReceiveRed"], + }); + } + this.buttonAry = btns; + }), + (i.prototype.getDummy = function () { + t.NWRFmB.ins().getDummy(); + }), + (i.prototype.onMouseMove = function (e) { + t.KHNO.ins().remove(this.onShowSkillTips, this), + (this.curTarget = e.target.parent), + e.type == mouse.MouseEvent.MOUSE_OUT ? (t.uMEZy.ins().closeTips(), (this.curTarget = null)) : t.KHNO.ins().tBiJo(750, 1, this.onShowSkillTips, this); + }), + (i.prototype.onShowSkillTips = function () { + var e = t.XwoNAr.ins().keyInfo, + i = -1; + if (this.curTarget) { + for (var n = 0; n < this.skillNum; n++) + if (this["skill" + n] == this.curTarget) { + i = n; + break; + } + if (-1 != i) { + var s = t.NWRFmB.ins().getPayer.getUserSkill(e[i].id); + if (s) { + var a = t.VlaoF.SkillsLevelConf[e[i].id][s.nLevel]; + if (a) { + if ("" == a.skillDesc) return; + var r = this.curTarget.localToGlobal(), + o = a.skillDesc; + t.uMEZy.ins().LJzNt( + this.curTarget, + t.TipsType.TIPS_SKILL_DESC, + { + conds: null, + desc: o, + }, + { + x: r.x + this.curTarget.width / 2, + y: r.y + this.curTarget.height / 2, + } + ); + } + } + } + } + }), + (i.prototype.npcTimer = function (e) { + (this.npcTimers = e), (this.npcTimerGrp.visible = !0), t.KHNO.ins().remove(this.updateNpcTimer, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateNpcTimer, this), this.updateNpcTimer(); + }), + (i.prototype.updateNpcTimer = function () { + var e = this.npcTimers; + (this.npcTime.text = t.CrmPU.language_Common_65 + ("" + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10))), + (this.npcTimers -= 1), + 0 >= e && (t.KHNO.ins().remove(this.updateNpcTimer, this), (this.npcTime.text = ""), (this.npcTimerGrp.visible = !1)); + }), + (i.prototype.clearNpcTime = function () { + t.KHNO.ins().remove(this.updateNpcTimer, this), (this.npcTime.text = ""), (this.npcTimerGrp.visible = !1); + }), + (i.prototype.duoBaoTimer = function (e) { + (this.duoBaoTimers = e.time - Math.floor(t.GlobalData.serverTime / 1e3)), + this.duoBaoTimers && + ((this.duoBaoTimers += Math.floor(egret.getTimer() / 1e3)), + (this.duoBaoTxt = "夺宝捡取倒计时:"), + (this.duoBaoTimerGrp.visible = !0), + t.KHNO.ins().remove(this.updateDuoBaoTimer, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateDuoBaoTimer, this), + this.updateDuoBaoTimer()); + }), + (i.prototype.updateDuoBaoTimer = function () { + var e = this.duoBaoTimers - Math.floor(egret.getTimer() / 1e3); + (this.duoBaoTime.text = this.duoBaoTxt + ("" + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10))), + 0 >= e && (t.KHNO.ins().remove(this.updateNpcTimer, this), (this.duoBaoTime.text = ""), (this.duoBaoTimerGrp.visible = !1)); + }), + (i.prototype.clearDuoBaoTime = function () { + t.KHNO.ins().remove(this.updateDuoBaoTimer, this), (this.duoBaoTime.text = ""), (this.duoBaoTimerGrp.visible = !1), (this.duoBaoTimers = 0); + }), + (i.prototype.onTimerStart = function (e) { + (this.time = e[0]), t.KHNO.ins().remove(this.updateTimer, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTimer, this), (this.timerGrp.visible = !0); + }), + (i.prototype.updateTimer = function () { + var e = this.time - Math.floor(egret.getTimer() / 1e3); + if (0 >= e) return (this.actTime.text = ""), t.KHNO.ins().remove(this.updateTimer, this), void (this.timerGrp.visible = !1); + var i = "" + t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10); + this.actTime.text = i; + }), + (i.prototype.onClearTimer = function () { + (this.actTime.text = ""), (this.timerGrp.visible = !1), t.KHNO.ins().remove(this.updateTimer, this); + }), + (i.prototype.keyDown = function (e) { + var i = this; + if (t.NWRFmB.ins().getPayer) + if (e == KdbLz.KeyCode.KC_SHIFT || e == KdbLz.KeyCode.KC_Alt || e == KdbLz.KeyCode.KC_CONTROL) this.functionKey = e; + else { + if (this.functionKey == KdbLz.KeyCode.KC_Alt && this.kyes[e]) return; + if (this.functionKey == KdbLz.KeyCode.KC_CONTROL && e == KdbLz.KeyCode.KC_I) + return (this.editionLabel.visible = !this.editionLabel.visible), void (this.editionLabel.visible && (this.editionLabel.text = "客户端版本:v" + t.ResVersionManager.ins().appVersion)); + if (this.functionKey == KdbLz.KeyCode.KC_Alt) { + if (this.kyes[e]) return; + if (e == KdbLz.KeyCode.KC_H) { + this.kyes[e] = !0; + var n = t.NWRFmB.ins().getPayer, + s = 0; + if (n && n.propSet) + for (var a = 0; a < this.pkArr.length - 1; a++) + if (this.pkArr[a].index == n.propSet.getPKtype()) { + s = a + 1; + break; + } + return (s = 5 == s ? 0 : s), (s %= this.pkArr.length), void t.PkMgr.ins().s_24_3(this.pkArr[s].index); + } + } + if (this.ruleKey[e] || this.buttonKey[e]) { + if (this.kyes[e]) return; + this.kyes[e] = !0; + var r = this.ruleList[this.ruleKey[e]]; + if (!r) { + var o = this.buttonAry[this.buttonKey[e] - 1]; + o && (r = o.btn); + } + if (r) { + var l = r.getConfig(); + r.ZbzdY && (l.keys.length > 1 ? l.keys[0] == this.functionKey && r.tapExecute(1) : (debug.log("快捷键!!!!!!"), r.tapExecute(1))); + } + } else if (-1 != t.EhSWiR.KEYS.indexOf(e)) { + var h = t.XwoNAr.ins().keyInfo[t.EhSWiR.KEYS.indexOf(e)]; + if (h && 1 == h.type) { + var p = t.NWRFmB.ins().getPayer.getUserSkill(h.id); + if (p && egret.getTimer() > p.dwResumeTick) + if (p.isDisable) { + var u = t.VlaoF.SkillConf[p.nSkillId]; + u && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips110, u.name)); + } else { + var c = this.skillArr[h.pos]; + c && c.onClick(null), + egret.Tween.get(this["skill" + h.pos]) + .call(function () { + i["skill" + h.pos].currentState = "down"; + }) + .wait(150) + .call(function () { + (i["skill" + h.pos].currentState = "up"), egret.Tween.removeTweens(i["skill" + h.pos]); + }); + } + } else if (h && 0 == h.type && 0 == t.ThgMu.clickCd) { + t.ThgMu.clickCd = !0; + var g = t.ThgMu.ins().getItemById(h.id); + if (g) { + var d = t.pWFTj.ins().useItem(g.series, g.wItemId); + d && + egret.Tween.get(this["skill" + h.pos]) + .call(function () { + i["skill" + h.pos].currentState = "down"; + }) + .wait(150) + .call(function () { + (i["skill" + h.pos].currentState = "up"), egret.Tween.removeTweens(i["skill" + h.pos]); + }); + } + egret.setTimeout( + function () { + t.ThgMu.clickCd = !1; + }, + this, + 150 + ); + } + } else { + if (this.kyes[e]) return; + if (e == KdbLz.KeyCode.KC_SPECIALCOMMA_EARTHWORM && t.EhSWiR.m_Move_Char) { + t.Nzfh.ins().postUpdateTarget(t.EhSWiR.m_Move_Char.recog); + var m = t.NWRFmB.ins().getCharRole(t.EhSWiR.m_Move_Char.recog); + m && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System95 + "||C:0xffffff&T:" + m.propSet.getName() + "|"); + } else e == KdbLz.KeyCode.KC_ESCAPE && t.mAYZL.ins().escCloseView(); + } + } + }), + (i.prototype.keyUp = function (t) { + (t == KdbLz.KeyCode.KC_SHIFT || t == KdbLz.KeyCode.KC_Alt || t == KdbLz.KeyCode.KC_CONTROL) && (this.functionKey = 0), delete this.kyes[t]; + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + (this.attackGroup.visible = !1), + (this.buttonGroup.visible = !0), + (this.btnBg.height = 352), + (this.teamButton2.visible = this.sbkCdGrp.visible = !1), + (this.stretchBtn.scaleY = 1), + (this.bagMaxImage.visible = !1), + (this.skillTipsImage.visible = !1), + (this._actID = t.ubnV.ihUJ ? 26 : t.GlobalData.sectionOpenDay <= 3 ? 41 : 13), + (this.iconToggle.visible = t.ubnV.ihUJ ? !1 : !0), + (this.CrossServerButton.visible = Main.vZzwB.specialId == t.MiOx.srvid || t.ubnV.ihUJ ? !1 : !0), + (this.returnServerButton.visible = t.ubnV.ihUJ ? !0 : !1), + this.updateState([0, 0]), + this.chatView.open(), + (this.buffList1.itemRenderer = t.ImageBase), + (this.buffList2.itemRenderer = t.ImageBase), + (this.buffList3.itemRenderer = t.ImageBase), + (this.buffList4.itemRenderer = t.ImageBase), + (this.buffList.itemRenderer = t.ImageBase), + (this.attackList.itemRenderer = t.AttackCharItem), + (this.attackListData = null), + (this.attackListData = new eui.ArrayCollection()), + (this.attackList.dataProvider = this.attackListData), + (this.hpMc = t.ObjectPool.pop("app.MovieClip")), + (this.hpMc.x = 55), + (this.hpMc.y = 52), + this.hpGroup.addChild(this.hpMc), + this.hpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_hq", -1), + (this.mpMc = t.ObjectPool.pop("app.MovieClip")), + (this.mpMc.x = 0), + (this.mpMc.y = 52), + this.mpGroup.addChild(this.mpMc), + this.mpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_lq", -1), + (this.hpMc.mask = new egret.Rectangle(-56, -50, 53, 109)), + (this.mpMc.mask = new egret.Rectangle(1, -50, 55, 109)), + t.ubnV.ihUJ || ((this.clientguideTips = new t.ClientguideTips()), this.clientguideTips.init()), + (this.donationGuideTips = new t.DonationGuideTips()), + this.donationGuideTips.init(this.donationGuideTipsGrp), + (this.firstChargeTips = new t.FirstChargeTips()), + this.firstChargeTips.init(this.firstChargeTipsGrp), + (this.secondChargeTips = new t.SecondChargeTips()), + this.secondChargeTips.init(this.secondChargeTipsGrp), + (this.violentGuideTips = new t.ViolentGuideTips()), + this.violentGuideTips.init(this.violentGuideTipsGrp), + (this.vipGuideTips = new t.VipGuideTips()), + this.vipGuideTips.init(this.vipGuideTipsGrp), + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, this.keyInfo, this), + this.attackList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + this.HFTK(t.NGcJ.ins().postUpdateLock, this.updateState), + this.HFTK(t.Nzfh.ins().postUpdateTarget, this.updateHp), + this.HFTK(t.Nzfh.ins().post_g_0_3, this.initRuleList), + this.HFTK(t.XwoNAr.ins().post_17_1, this.updateKeyUI), + this.HFTK(t.XwoNAr.ins().post_17_2, this.updateKeyUI), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updatePlayerInfo), + this.HFTK(t.NGcJ.ins().postg_5_1, this.updateKeyUI), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateKeyUI), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateKeyUI), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateKeyUI), + this.HFTK(t.NGcJ.ins().post_updateSkill, this.updateSkillTips), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateSkillTips), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateSkillTips), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateSkillTips), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateSkillTips), + this.HFTK(t.NGcJ.ins().postg_5_5, this.skillCD), + this.HFTK(t.bfhrJ.ins().post_GuildInfo, this.updataGuildInfo), + this.HFTK(t.ThgMu.ins().post_8_7, this.itemCd), + this.HFTK(t.ThgMu.ins().postKeyXY, this.keyInfo), + this.HFTK(t.BuffMgr.ins().postUpdateBuff, this.updateBuff), + this.HFTK(t.BuffMgr.ins().post_4_6, this.updateSavior), + this.HFTK(t.BuffMgr.ins().post_updateSavior, this.updateSavior), + this.HFTK(t.Nzfh.ins().post_g_0_13, this.updateMap), + this.HFTK(t.hADk.ins().post_pushImage, this.addItem), + this.HFTK(t.Nzfh.ins().post_updateOnHook, this.updateOnHook), + this.HFTK(t.Nzfh.ins().post_AttackState, this.updateOnHook), + this.HFTK(t.NGcJ.ins().post_playSkillMc, this.playSkillKeyEff), + this.HFTK(t.NGcJ.ins().post_g_5_6, this.updateAckList), + this.HFTK(t.VrAZQ.ins().postUpdateTask, this.updateTask), + this.HFTK(t.PKRX.ins().post_1_7, this.npcTimer), + this.HFTK(t.TQkyOx.ins().postDuoBaoCD, this.duoBaoTimer), + this.HFTK(t.PKRX.ins().post_clearNpcTime, this.clearNpcTime), + this.HFTK(t.PKRX.ins().post_clearDuoBaoTime, this.clearDuoBaoTime), + this.HFTK(t.Nzfh.ins().post_g_0_10, this.updateserverTime), + this.HFTK(t.edHC.ins().post_26_8, this.setActTimeCD), + this.HFTK(t.TQkyOx.ins().post_25_2, this.setActTimeCD), + this.HFTK(t.TQkyOx.ins().post_25_4, this.setActTimeCD), + this.HFTK(t.TQkyOx.ins().post_25_5, this.setActTimeCD), + this.HFTK(t.TQkyOx.ins().post_shaBakNextArard, this.setActTimeCD), + this.HFTK(t.Nzfh.ins().post_petChange, this.updatePet), + this.HFTK(t.PetSettingMgr.ins().postPetNum, this.updatePet), + this.HFTK(t.Nzfh.ins().post_g_0_5, this.updateAllAckList), + this.HFTK(t.Nzfh.ins().post_g_0_35, this.updateAllAckList), + this.HFTK(t.Nzfh.ins().post_ClearAllAckList, this.updateAllAckList), + this.HFTK(t.XwoNAr.ins().post_counterAtk, this.setAttackGroupVis), + this.HFTK(t.ChatMgr.ins().postAddExp, this.addExp), + t.ckpDj.ins().addEvent(t.CompEvent.DRAG_END, this.onDragEnd, this), + t.ckpDj.ins().addEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, this.updateDisposableredpoint, this), + t.ckpDj.ins().addEvent(t.MainEvent.PLAY_EFF_JIJN, this.playJnjhboom, this), + t.ckpDj.ins().addEvent(t.MainEvent.PLAY_EFF_JIJN_END, this.playJnjhboomEnd, this), + t.ckpDj.ins().addEvent(t.MainEvent.HIDE_SKILL_TIPS, this.hideSkillTips, this), + t.ckpDj.ins().addEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, this.chatChannelChange, this), + this.updateBuff(), + (this.currentMultipleExp = -1), + this.updatePlayerInfo(), + this.updateTime(), + this.vKruVZ(this.actEquipGrp, this.onClick), + this.vKruVZ(this.actLevelGrp, this.onClick), + this.vKruVZ(this.actMonsterBtn, this.onClick), + this.vKruVZ(this.actCircleBtn, this.onClick), + this.vKruVZ(this.addGrpBtn, this.onClick), + this.vKruVZ(this.shengQuAddGrpBtn, this.onClick), + this.vKruVZ(this.chatBtn, this.onClick), + this.vKruVZ(this.suitBtn, this.onClick), + this.vKruVZ(this.iconToggle, this.onClick), + this.vKruVZ(this.drugBtn, this.onClick), + this.vKruVZ(this.pickupBtn, this.onClick), + this.vKruVZ(this.splitBtn, this.onClick), + this.vKruVZ(this.petFollow, this.onClick), + this.vKruVZ(this.petAck, this.onClick), + this.vKruVZ(this.patternButton, this.onClick), + this.vKruVZ(this.shieldNearButton, this.onClick), + this.vKruVZ(this.shieldGuildButton, this.onClick), + this.vKruVZ(this.shieldPrivateButton, this.onClick), + this.vKruVZ(this.ruletipsButton, this.onClick), + this.vKruVZ(this.topGroup, this.onClick), + this.vKruVZ(this.switchButton, this.onClick), + this.vKruVZ(this.rechargeButton, this.onClick), + this.vKruVZ(this.stretchBtn, this.onClick), + this.vKruVZ(this.vipImg, this.onClick), + this.vKruVZ(this.qqOpenID, this.onClick), + this.vKruVZ(this.actCircleGrp, this.onClick), + this.vKruVZ(this.actMonsterGrp, this.onClick), + this.vKruVZ(this.donationGuideTipsGrp, this.onClick), + this.vKruVZ(this.firstChargeTipsGrp, this.onClick), + this.vKruVZ(this.secondChargeTipsGrp, this.onClick), + this.vKruVZ(this.violentGuideTipsGrp, this.onClick), + this.vKruVZ(this.vipGuideTipsGrp, this.onClick); + for (var s, a, r = 0; r < this.buttonAry.length; r++) + (s = this.buttonAry[r]), + (a = t.VlaoF.PlayFunConfig[s.btn.configid]), + a && a.keys && a.keys.length && (this.buttonKey[a.keys[a.keys.length - 1]] = r + 1), + s.btn.setButtonInfo(s.icon, s.lab, s.eAvIy, s.getRed); + this.EeFPm(this.levelGroup, this.mouseMove), + this.EeFPm(this.expGroup, this.mouseMove), + this.EeFPm(this.hpGroup, this.mouseMove), + this.EeFPm(this.mpGroup, this.mouseMove), + this.VoZqXH(this.levelGroup, this.mouseMove), + this.VoZqXH(this.hpGroup, this.mouseMove), + this.VoZqXH(this.mpGroup, this.mouseMove), + this.VoZqXH(this.expGroup, this.mouseMove), + this.EeFPm(this.shieldNearButton, this.chatBtnMouseMove), + this.VoZqXH(this.shieldNearButton, this.chatBtnMouseMove), + this.EeFPm(this.shieldGuildButton, this.chatBtnMouseMove), + this.VoZqXH(this.shieldGuildButton, this.chatBtnMouseMove), + this.EeFPm(this.shieldPrivateButton, this.chatBtnMouseMove), + this.VoZqXH(this.shieldPrivateButton, this.chatBtnMouseMove), + this.EeFPm(this.patternButton, this.chatBtnMouseMove), + this.VoZqXH(this.patternButton, this.chatBtnMouseMove), + this.EeFPm(this.ruletipsButton, this.chatBtnMouseMove), + this.VoZqXH(this.ruletipsButton, this.chatBtnMouseMove), + this.EeFPm(this.chatBtn, this.chatBtnMouseMove), + this.VoZqXH(this.chatBtn, this.chatBtnMouseMove), + (this.shopMc = t.ObjectPool.pop("app.MovieClip")), + (this.shopMc.blendMode = egret.BlendMode.ADD), + this.shopGroup.addChild(this.shopMc), + this.shopMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_spu", -1), + this.setActTimeCD(), + t.KHNO.ins().tBiJo(1e4, 0, this.updateAllAckList, this), + t.ubnV.ihUJ + ? ((this.actTipsAllGrp.visible = !1), + (this.actEquipGrp.visible = !1), + (this.rechargeButton.visible = !1), + (this.switchButton.visible = !1), + (this.growWayBtn.visible = !1), + (this.growButton.visible = !1), + this.HFTK(t.TQkyOx.ins().post_25_1, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateCrossServerAct)) + : (this.rechargeEff || + ((this.rechargeEff = t.ObjectPool.pop("app.MovieClip")), + (this.rechargeEff.blendMode = egret.BlendMode.ADD), + (this.rechargeEff.scaleX = this.rechargeEff.scaleY = 1), + (this.rechargeEff.touchEnabled = !0), + this.rechargeEffGrp.addChild(this.rechargeEff)), + this.rechargeEff.playFileEff(ZkSzi.RES_DIR_EFF + "eff_czan", -1), + (this.actTipsAllGrp.visible = !0), + (this.actEquipGrp.visible = !0), + (this.rechargeButton.visible = !1), + (this.switchButton.visible = !0), + (this.growWayBtn.visible = !0), + (this.growButton.visible = !0), + this.HFTK(t.TQkyOx.ins().post_25_1, this.updateSprotsActTips), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateSprotsActTips), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateSprotsActTips), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateSprotsActTips), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateSprotsActTips), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.updateSprotsActTips), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateSprotsActTips), + this.updateSprotsActTips()), + t.KHNO.ins().tBiJo(3e3, 0, this.getDummy, this); + }), + (i.prototype.playJnjhboom = function (t, e, i, n) { + var s = this; + egret.Tween.removeTweens(e), (e.visible = !0); + var a = this["skill" + t].localToGlobal(); + egret.Tween.get(e) + .to( + { + scaleX: 1.5, + scaleY: 1.5, + }, + 80 + ) + .to( + { + x: a.x, + y: a.y, + }, + 200 + ) + .to( + { + scaleX: 1, + scaleY: 1, + }, + 20 + ) + .call(function () { + (s.isTweenOver = !1), s.updateKeyUI(), i && i(); + var e = s["skillMC" + t]; + e && + ((e.visible = !0), + e.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_jnjhboom", + 1, + function () { + (e.visible = !1), n && n(); + }, + !1 + )); + }); + }), + (i.prototype.playJnjhboomEnd = function () { + this.isTweenOver = !0; + }), + (i.prototype.updateserverTime = function () { + this.labelTime.text = t.DateUtils.getFormatBySecond(t.GlobalData.serverTime / 1e3, t.DateUtils.TIME_FORMAT_6); + }), + (i.prototype.updateTask = function (e) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask) && !t.qTVCL.ins().isFinding && 0 == t.GameMap.fubenID && 1 == t.edHC.ins().isLargeMapAct) { + var i = t.VrAZQ.ins().getTaskArr(), + n = t.mAYZL.ins().ZzTs(t.SetUpView); + if (1 == e && (!n || 6 != n.getUpViewIdx) && i && i[0]) { + var s = t.VlaoF.TaskDisplayConfig[i[0].taskID][i[0].taskState]; + if (s && 1 == s.taskstate) { + if (!this.mouseMc) { + (this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1); + var a = this.setupButton.localToGlobal(); + (this.mouseMc.x = a.x + 22), (this.mouseMc.y = a.y + 25), this.addChild(this.mouseMc); + } + return ( + (t.MainTaskWin.isTaskSetUpMC = !0), + t.KHNO.ins().tBiJo(1e3 * s.automatic, 1, this.updateMouseEff, this), + this.mouseMc.isPlaying || this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), + void (10 == s.taskname.type && this.playOpenMc(this.mouseMc.x, this.mouseMc.y)) + ); + } + } + } + this.stopTaskMC(); + }), + (i.prototype.updateMouseEff = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), t.mAYZL.ins().ZbzdY(t.SetUpView) && t.mAYZL.ins().close(t.SetUpView), t.mAYZL.ins().open(t.SetUpView, 6, 1); + }), + (i.prototype.stopTaskMC = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), (t.MainTaskWin.isTaskSetUpMC = !1), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(); + }), + (i.prototype.playOpenMc = function (e, i) { + this.openMc || ((this.openMc = t.ObjectPool.pop("app.MovieClip")), (this.openMc.touchEnabled = !1), this.addChild(this.openMc)), + (this.openMc.x = e), + (this.openMc.y = i), + this.openMc.isPlaying || this.openMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", -1); + }), + (i.prototype.stopOpenMc = function () { + this.openMc && (this.openMc.destroy(), (this.openMc = null)); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = t.NWRFmB.ins().getPayer; + if (i && i.propSet) { + var n = ""; + switch (e.currentTarget) { + case this.levelGroup: + (n = t.CrmPU.language_Friend_Txt1 + " :" + (i.propSet.MzYki() > 0 ? i.propSet.MzYki() + "转" + i.propSet.mBjV() + "级" : i.propSet.mBjV() + "级") + "\n"), + (n += t.CrmPU.language_Friend_Txt7 + ":" + i.propSet.getEXP() + "\n"), + (n += t.CrmPU.language_Friend_Txt8 + ":" + (t.edHC.ins().getLevelUpExp() - i.propSet.getEXP()) + "\n"), + (n += t.CrmPU.language_Common_56 + this.currentMultipleExp); + break; + case this.hpGroup: + var s = i.propSet.getHp() > i.propSet.getMaxHp() ? i.propSet.getMaxHp() : i.propSet.getHp(); + n = "HP " + s + "/" + i.propSet.getMaxHp(); + break; + case this.mpGroup: + var a = i.propSet.getCurMp() > i.propSet.getMaxMp() ? i.propSet.getMaxMp() : i.propSet.getCurMp(); + n = "MP " + a + "/" + i.propSet.getMaxMp(); + break; + case this.expGroup: + n = t.CrmPU.language_Common_162; + break; + default: + return; + } + var r = e.currentTarget.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, n, { + x: r.x + e.currentTarget.width, + y: r.y, + }), + (r = null); + } + } + }), + (i.prototype.chatBtnMouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = t.VlaoF.ChatSystemConfig, + n = ""; + switch (e.currentTarget) { + case this.shieldNearButton: + n = i.nearChannelChatTips; + break; + case this.shieldGuildButton: + n = i.guideChannelChatTips; + break; + case this.shieldPrivateButton: + n = i.secretChannelChatCD; + break; + case this.patternButton: + n = i.AttackModeTips; + break; + case this.ruletipsButton: + n = i.ChatRuleTips; + break; + case this.chatBtn: + n = i.ChatExpansionTips; + } + if (n) { + var s = e.currentTarget, + a = s.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, n, { + x: a.x + s.width / 2, + y: a.y + s.height / 2, + }), + (a = null); + } + } + }), + (i.prototype.chatChannelChange = function (e) { + 1 == e.type && (t.ChatView.isCloseNearChannel ? (this.shieldNearButton.icon = "m_chat_ltpb_fj2") : (this.shieldNearButton.icon = "m_chat_ltpb_fj1")), + 2 == e.type && (t.ChatView.isCloseGuildChannel ? (this.shieldGuildButton.icon = "m_chat_ltpb_hh2") : (this.shieldGuildButton.icon = "m_chat_ltpb_hh1")), + 3 == e.type && (t.ChatView.isClosePrivateChannel ? (this.shieldPrivateButton.icon = "m_chat_ltpb_sl2") : (this.shieldPrivateButton.icon = "m_chat_ltpb_sl1")); + }), + (i.prototype.setMainMouseGrp = function () {}), + (i.prototype.updateToggleRed = function (t) { + var e = t.checkShowRedPoint(); + (4 == t.getConfig().layer || 6 == t.getConfig().layer) && + (1 == e && t.checkShowIcon() + ? (-1 != this.yellowArr.indexOf(t.getConfig().id) && this.yellowArr.splice(this.yellowArr.indexOf(t.getConfig().id), 1), + -1 == this.redArr.indexOf(t.getConfig().id) && this.redArr.push(t.getConfig().id)) + : 2 == e && t.checkShowIcon() + ? (-1 != this.redArr.indexOf(t.getConfig().id) && this.redArr.splice(this.redArr.indexOf(t.getConfig().id), 1), + -1 == this.yellowArr.indexOf(t.getConfig().id) && this.yellowArr.push(t.getConfig().id)) + : (-1 != this.redArr.indexOf(t.getConfig().id) && this.redArr.splice(this.redArr.indexOf(t.getConfig().id), 1), + -1 != this.yellowArr.indexOf(t.getConfig().id) && this.yellowArr.splice(this.yellowArr.indexOf(t.getConfig().id), 1))); + }), + (i.prototype.updateDisposableredpoint = function (t) { + for (var e in this.ruleList) { + var i = this.ruleList[e]; + if (i.id == t) { + this.updateRule(i); + break; + } + } + }), + (i.prototype.updateMap = function () { + (this.suitBtn.visible = t.GameMap.fubenID > 0), + t.GameMap.fubenID > 0 ? t.mAYZL.ins().ZbzdY(t.MainTaskWin) && t.mAYZL.ins().close(t.MainTaskWin) : t.mAYZL.ins().ZbzdY(t.MainTaskWin) || t.mAYZL.ins().open(t.MainTaskWin), + t.GameMap.mapID != this._selfMapId && ((this._selfMapId = t.GameMap.mapID), 3 != t.GameMap.mapID && t.NWRFmB.ins().clearDummy(), t.NWRFmB.ins().resetMakeDummy(!0)); + }), + (i.prototype.updataGuildInfo = function () { + if (0 != t.bfhrJ.ins().getIsShowView()) { + var e = t.bfhrJ.ins().isGuild; + e + ? t.mAYZL.ins().ZbzdY(t.GuildInfoView) + ? t.mAYZL.ins().close(t.GuildInfoView) + : t.mAYZL.ins().open(t.GuildInfoView) + : t.mAYZL.ins().ZbzdY(t.GuildNoGuildListView) + ? t.mAYZL.ins().close(t.GuildNoGuildListView) + : t.mAYZL.ins().open(t.GuildNoGuildListView); + } + }), + (i.prototype.updatePlayerInfo = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + this.changeMoney(), t.ubnV.ihUJ || (this.CrossServerButton.visible = Main.vZzwB.specialId != t.MiOx.srvid && this.CrossServerButton.ZbzdY()); + var i = e.propSet.MzYki() > 0 ? e.propSet.MzYki() + "z" + e.propSet.mBjV() + "j" : e.propSet.mBjV() + "j"; + (this.levelLab.text = i), + (this.playerName.text = e.propSet.getName()), + (this.lvLabel.text = e.propSet.MzYki() > 0 ? e.propSet.MzYki() + "转" + e.propSet.mBjV() + "级" : e.propSet.mBjV() + "级"), + (this.charIcon.source = "name_" + e.propSet.getAP_JOB() + "_" + e.propSet.getSex()); + var n = t.VipData.ins().getMyVipLv(); + (this.vipImg.source = "name_hy" + n), + n > 1 && 6 > n ? ((this.vipbg.source = "eff_" + n), (this.vipbg.visible = !1)) : (this.vipbg.visible = !1), + n > 5 + ? ((this.vipEffGrp.visible = !1), + this.vipMc || ((this.vipMc = t.ObjectPool.pop("app.MovieClip")), (this.vipMc.blendMode = egret.BlendMode.ADD), this.vipEffGrp.addChild(this.vipMc)), + 6 == n ? this.vipMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cxhy", -1, null, !1) : 7 == n && this.vipMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cyhy", -1, null, !1)) + : (this.vipEffGrp.visible = !1); + var s = e.propSet.getHp() > e.propSet.getMaxHp() ? e.propSet.getMaxHp() : e.propSet.getHp(), + a = e.propSet.getCurMp() > e.propSet.getMaxMp() ? e.propSet.getMaxMp() : e.propSet.getCurMp(), + r = this.hpMc.mask, + o = this.mpMc.mask; + (r.y = 109 * (1 - s / e.propSet.getMaxHp()) - 50), (o.y = 109 * (1 - a / e.propSet.getMaxMp()) - 50); + var l = +e.propSet.getmultipleExp(); + if (((l = l ? l : 0), this.currentMultipleExp > -1 && this.currentMultipleExp != l)) + if (l > this.currentMultipleExp) { + var h = t.ObjectPool.pop("app.MovieClip"); + h.blendMode = egret.BlendMode.ADD; + var p = e.localToGlobal(), + u = this.expGroup.localToGlobal(); + (u.x += 30), + (h.x = p.x), + (h.y = p.y), + (h.rotation = t.MathUtils.getAngle2(p.x, p.y, u.x, u.y)), + this.addGroup.addChild(h), + egret.Tween.removeTweens(h), + h.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dbjy", -1); + var c = this, + g = egret.Tween.get(h), + d = 1.8 * t.MathUtils.getDistanceByObject(h, u); + g.to( + { + x: u.x, + y: u.y, + }, + d + ).call(function () { + egret.Tween.removeTweens(h), h.destroy(), (h = null), c.doubleExpMc(1), (c.doubleRoleExp.value = l), (c.doubleExpLab.text = l + ""); + }); + } else this.doubleExpMc(0), (this.doubleRoleExp.value = l), (this.doubleExpLab.text = l + ""); + else (this.doubleRoleExp.value = l), (this.doubleExpLab.text = l + ""); + (this.currentMultipleExp = l), (this.doubleRoleExp.maximum = t.VlaoF.GlobalConf.maxexp); + var m = t.VlaoF.LevelUpExp[+e.propSet.mBjV()]; + if (m) { + var f = 100 * +e.propSet.getEXP(), + v = Math.floor(f / m.value); + (this.expLab.text = v + "b"), (this.roleExp.value = v + 2), (this.roleExp.maximum = 100); + } + for (var _ = 0; _ < this.pkArr.length; _++) + if (this.pkArr[_].index == e.propSet.getPKtype()) { + this.patternButton.icon = this.pkArr[_].img; + break; + } + } else (this.levelLab.text = ""), (this.expLab.text = ""), (this.multipleExp.text = ""), (this.bubbleLabel.visible = !1); + this.updateTime(); + }), + (i.prototype.doubleExpMc = function (e) { + e + ? (this.addExpMc || ((this.addExpMc = t.ObjectPool.pop("app.MovieClip")), (this.addExpMc.blendMode = egret.BlendMode.ADD), this.expMcGroup.addChild(this.addExpMc)), + (this.addExpMc.visible = !0), + this.addExpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jszj", 1, this.stopAddMc.bind(this))) + : (this.delExpMc || ((this.delExpMc = t.ObjectPool.pop("app.MovieClip")), (this.delExpMc.blendMode = egret.BlendMode.ADD), this.expMcGroup.addChild(this.delExpMc)), + (this.delExpMc.visible = !0), + this.delExpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jsjy", 1, this.stopDelMc.bind(this))); + }), + (i.prototype.stopAddMc = function () { + this.addExpMc && (this.addExpMc.destroy(), (this.addExpMc = null)); + }), + (i.prototype.stopDelMc = function () { + this.delExpMc && (this.delExpMc.destroy(), (this.delExpMc = null)); + }), + (i.prototype.updateSkillCD = function () { + for (var e = t.XwoNAr.ins().keyInfo, i = -1, n = 0; n < this.skillNum; n++) + if ((this["skill" + n].stopTween(), e[n] && 0 != e[n].id)) + if (1 == e[n].type) { + var s = t.NWRFmB.ins().getPayer.getUserSkill(e[n].id); + if (s) { + var a = t.VlaoF.SkillsLevelConf[e[n].id][s.nLevel]; + if (a) { + var r = s.dwResumeTick - egret.getTimer(); + r > 0 && (this["skill" + n].playTween3(a.cooldownTime, r, !0), i++); + } + } + } else if (0 == e[n].type) { + var o = t.ThgMu.ins().cdItemArr[e[n].id], + l = t.VlaoF.StdItems[e[n].id]; + if (o) { + var r = o - egret.getTimer(); + l && r > 0 && (this["skill" + n].playTween3(l.cdTime / 1e3, l.cdTime - r, !1), i++); + } + } + -1 == i && t.KHNO.ins().remove(this.updateSkillCD, this); + }), + (i.prototype.updateKeyUI = function () { + for (var e = t.XwoNAr.ins().keyInfo, i = 0; i < this.skillNum; i++) + if (e[i] && 0 != e[i].id) { + if (1 == e[i].type) { + var n = t.VlaoF.SkillsLevelConf[e[i].id][1]; + n && (this.isTweenOver || (this["skill" + i].setSkillImg(n.skillName), (this["skill" + i].ID = n.id), (this["skill" + i].TYPES = e[i].type), this["skill" + i].setCountState(!1))); + } else if (0 == e[i].type) { + var s = t.VlaoF.StdItems[e[i].id]; + if (s) { + this["skill" + i].setSkillImg(s.icon + ""), (this["skill" + i].ID = s.id), (this["skill" + i].TYPES = e[i].type); + var a = t.ThgMu.ins().getItemCountById(s.id); + this["skill" + i].setCountState(!0), this["skill" + i].setCount(a); + } + } + } else this["skill" + i].setSkillImg(""), this["skill" + i].setCountState(!1), (this["skill" + i].ID = null), (this["skill" + i].TYPES = null); + this.bagMaxImage.visible = t.ThgMu.ins().getBagTypeItemNum(1) <= 0; + }), + (i.prototype.updateSkillTips = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = t.VlaoF.TimeManagerConfigConfig.Skillguide; + if (t.mAYZL.ins().isCheckOpen(n)) { + var s = e.propSet.getAP_JOB(), + a = t.NGcJ.ins().getJobSkillredDot(s) > 0; + a || (this._isShow = !1), (this._skillTipsRoleLevel == i && this._isShow) || ((this.skillTipsImage.visible = a), a && ((this._skillTipsRoleLevel = i), (this._isShow = !0))); + } + }), + (i.prototype.hideSkillTips = function () { + this.skillTipsImage.visible = !1; + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), + (this.ackArr.length = 0), + (this._selfMapId = 0), + t.KHNO.ins().remove(this.updateAllAckList, this), + egret.Tween.removeTweens(this.addGroup), + this.closeExpMc(), + this.expDian.clsoeTween(), + this.expDian0.clsoeTween(), + this.expDian1.clsoeTween(), + this.expDian2.clsoeTween(), + this.expDian3.clsoeTween(), + this.chatView.close(), + this.stopAddMc(), + this.stopDelMc(), + this.stopTaskMC(), + this.clickStage(), + this.rechargeEff && (this.rechargeEff.destroy(), (this.rechargeEff = null)), + this.hpMc && ((this.hpMc.mask = null), this.hpMc.destroy(), (this.hpMc = null)), + this.mpMc && ((this.mpMc.mask = null), this.mpMc.destroy(), (this.mpMc = null)), + this.clientguideTips && (this.clientguideTips.destroy(), (this.clientguideTips = null)), + this.donationGuideTips && (this.donationGuideTips.destroy(), (this.donationGuideTips = null)), + this.firstChargeTips && (this.firstChargeTips.destroy(), (this.firstChargeTips = null)), + this.secondChargeTips && (this.secondChargeTips.destroy(), (this.secondChargeTips = null)), + this.violentGuideTips && (this.violentGuideTips.destroy(), (this.violentGuideTips = null)), + this.vipGuideTips && (this.vipGuideTips.destroy(), (this.vipGuideTips = null)); + for (var n = 0; n < this.skillNum; n++) + this["skill" + n].removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + this["skill" + n].removeEventListener(egret.TouchEvent.TOUCH_TAP, this.keyClick, this), + this["skill" + n].removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onMouseMove, this), + this["skill" + n].removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onMouseMove, this), + this["skillMC" + n].destroy(); + for (var s in this.ruleList) { + var a = this.ruleList[s]; + a.removeAll(); + } + for (var r, o = 0; o < this.buttonAry.length; o++) (r = this.buttonAry[o]), r.btn.removeButton(); + (this.ruleList = {}), + (this.ruleParent = {}), + (this.ruleKey = {}), + (this.skillArr = []), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + KdbLz.os.KeyBoard.removeKeyDown(this.keyDown, this), + KdbLz.os.KeyBoard.removeKeyUp(this.keyUp, this), + t.ckpDj.ins().removeEvent(t.CompEvent.DRAG_END, this.onDragEnd, this), + t.ckpDj.ins().removeEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, this.updateDisposableredpoint, this), + t.ckpDj.ins().removeEvent(t.MainEvent.PLAY_EFF_JIJN, this.playJnjhboom, this), + t.ckpDj.ins().removeEvent(t.MainEvent.PLAY_EFF_JIJN_END, this.playJnjhboomEnd, this), + t.ckpDj.ins().removeEvent(t.MainEvent.HIDE_SKILL_TIPS, this.hideSkillTips, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, this.chatChannelChange, this), + this.dSpriteSheet.dispose(), + (this.dSpriteSheet = null), + this.attackList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + this.fEHj(this.actEquipGrp, this.onClick), + this.fEHj(this.actLevelGrp, this.onClick), + this.fEHj(this.actMonsterBtn, this.onClick), + this.fEHj(this.actCircleBtn, this.onClick), + this.fEHj(this.actMonsterGrp, this.onClick), + this.fEHj(this.actCircleGrp, this.onClick), + this.fEHj(this.addGrpBtn, this.onClick), + this.fEHj(this.shengQuAddGrpBtn, this.onClick), + this.fEHj(this.chatBtn, this.onClick), + this.fEHj(this.suitBtn, this.onClick), + this.fEHj(this.iconToggle, this.onClick), + this.fEHj(this.drugBtn, this.onClick), + this.fEHj(this.pickupBtn, this.onClick), + this.fEHj(this.splitBtn, this.onClick), + this.fEHj(this.qqOpenID, this.onClick), + this.fEHj(this.patternButton, this.onClick), + this.fEHj(this.shieldNearButton, this.onClick), + this.fEHj(this.shieldGuildButton, this.onClick), + this.fEHj(this.shieldPrivateButton, this.onClick), + this.fEHj(this.ruletipsButton, this.onClick), + this.fEHj(this.ruletipsButton, this.onClick), + this.fEHj(this.topGroup, this.onClick), + this.fEHj(this.switchButton, this.onClick), + this.fEHj(this.rechargeButton, this.onClick), + this.fEHj(this.stretchBtn, this.onClick), + this.fEHj(this.vipImg, this.onClick), + this.fEHj(this.donationGuideTipsGrp, this.onClick), + this.fEHj(this.firstChargeTipsGrp, this.onClick), + this.fEHj(this.secondChargeTipsGrp, this.onClick), + this.fEHj(this.violentGuideTipsGrp, this.onClick), + this.fEHj(this.vipGuideTipsGrp, this.onClick), + this.lvpAF(this.levelGroup, this.mouseMove), + this.lvpAF(this.expGroup, this.mouseMove), + this.lvpAF(this.hpGroup, this.mouseMove), + this.lvpAF(this.mpGroup, this.mouseMove), + this.lbpdAJ(this.levelGroup, this.mouseMove), + this.lbpdAJ(this.expGroup, this.mouseMove), + this.lbpdAJ(this.hpGroup, this.mouseMove), + this.lbpdAJ(this.mpGroup, this.mouseMove), + this.lvpAF(this.shieldNearButton, this.chatBtnMouseMove), + this.lbpdAJ(this.shieldNearButton, this.chatBtnMouseMove), + this.lvpAF(this.shieldGuildButton, this.chatBtnMouseMove), + this.lbpdAJ(this.shieldGuildButton, this.chatBtnMouseMove), + this.lvpAF(this.shieldPrivateButton, this.chatBtnMouseMove), + this.lbpdAJ(this.shieldPrivateButton, this.chatBtnMouseMove), + this.lvpAF(this.patternButton, this.chatBtnMouseMove), + this.lbpdAJ(this.patternButton, this.chatBtnMouseMove), + this.lvpAF(this.ruletipsButton, this.chatBtnMouseMove), + this.lbpdAJ(this.ruletipsButton, this.chatBtnMouseMove), + this.lvpAF(this.chatBtn, this.chatBtnMouseMove), + this.lbpdAJ(this.chatBtn, this.chatBtnMouseMove), + t.aTwWrO.ins().getStage().removeEventListener(egret.Event.RESIZE, this.keyInfo, this), + t.ckpDj.ins().removeEvent(t.CompEvent.TimerEvent, this.onTimerStart, this), + t.ckpDj.ins().removeEvent(t.CompEvent.Clear_Timer_Event, this.onClearTimer, this), + this.removeRuleEvent(), + t.lEYZI.Naoc(this.newGrp), + t.KHNO.ins().removeAll(this), + (this.itemImagAry.length = 0); + for (var n = 0; n < this.addGroup.$children.length; n++) egret.Tween.removeTweens(this.addGroup.$children[n]); + this.addGroup.removeChildren(); + }), + (i.prototype.onTouchBegin = function (e) { + if (e.target.parent instanceof t.MainSkillIconItem) { + (this.curObj = e.currentTarget), (this.newIcon.source = this.curObj.getSkillImg()), (this.grpOldIdx = e.currentTarget.keyIndex); + var i = e.currentTarget.localToGlobal(0, 0); + (this.newGrp.x = i.x), + (this.newGrp.y = i.y), + (this.newGrp._index = e.currentTarget.keyIndex), + (this.oldstoreX = i.x), + (this.oldstoreY = i.y), + (this.XTouch = e.stageX - this.newGrp.x), + (this.YTouch = e.stageY - this.newGrp.y), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + } + }), + (i.prototype.onTouchMove = function (t) { + (this.newGrp.visible = !0), this.newGrp.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this); + var e = this.curObj.getChildAt(1); + (e.visible = !1), this.curObj.setSkillImg(""), (this.newGrp.x = t.stageX - this.XTouch), (this.newGrp.y = t.stageY - this.YTouch); + }), + (i.prototype.onTouchEnd = function (e) { + if (1 == this.newGrp.visible) { + for (var i = this, n = -1, s = 20, a = 0, r = this["skill" + this.grpOldIdx].TYPES, o = this["skill" + this.grpOldIdx].ID, l = void 0, h = 0; h < this.skillNum; h++) + (l = this.skillArr[h].parent.localToGlobal(this.skillArr[h].x, this.skillArr[h].y)), + (a = Math.sqrt(Math.pow(l.x - i.newGrp.x, 2) + Math.pow(l.y - i.newGrp.y, 2))), + s > a && ((s = a), (n = h)); + if (-1 != n && n != this.grpOldIdx) { + var p = 0; + 0 == r && (p = t.ThgMu.ins().getItemCountById(o)), + 1 == r || p > 0 ? t.XwoNAr.ins().send_17_2(n, r, o, i.grpOldIdx) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips3), + egret.Tween.removeTweens(i.newGrp), + egret.Tween.get(i.newGrp).to( + { + x: i.oldstoreX, + y: i.oldstoreY, + }, + 0, + egret.Ease.cubicOut + ); + } else + n == this.grpOldIdx + ? (egret.Tween.removeTweens(i.newGrp), + egret.Tween.get(i.newGrp).to( + { + x: i.oldstoreX, + y: i.oldstoreY, + }, + 400, + egret.Ease.cubicOut + )) + : (egret.Tween.removeTweens(i.newGrp), + egret.Tween.get(i.newGrp).to( + { + x: i.oldstoreX, + y: i.oldstoreY, + }, + 400, + egret.Ease.cubicOut + ), + 1 != r && t.XwoNAr.ins().send_17_3(i.grpOldIdx)); + } + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + (this.newGrp.x = 691), + (this.newGrp.y = 966), + (this.newGrp.visible = !1), + this.updateKeyUI(); + }), + (i.prototype._clickFunction = function (e) { + switch (e.index) { + case 0: + t.mAYZL.ins().open(t.SetUpView); + break; + case 1: + t.mAYZL.ins().open(t.ChangePowerfulWin); + break; + case 2: + t.mAYZL.ins().open(t.SwitchPlayerView); + break; + case 3: + } + }), + (i.prototype._pkClickFunction = function (e) { + e.index && t.PkMgr.ins().s_24_3(e.index); + }), + (i.prototype._tradeClickFunction = function (e) { + switch (e.index) { + case 1: + t.mAYZL.ins().openViewId(12); + break; + case 2: + t.mAYZL.ins().openViewId(11); + } + }), + (i.prototype._socialClickFunction = function (e) { + switch (e.index) { + case 1: + t.mAYZL.ins().openViewId(14); + break; + case 2: + t.bfhrJ.ins().sendGuildInfo(!0); + break; + case 3: + t.mAYZL.ins().openViewId(15); + break; + case 4: + t.ckpDj.ins().sendEvent(t.CompEvent.HIDE_ICON), t.mAYZL.ins().openViewId(9); + break; + case 5: + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.mBjV(), + s = t.VlaoF.RankConfig.openlv; + if (s > n) return void t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips18, s)); + t.mAYZL.ins().openViewId(10); + } + }), + (i.prototype.onClick = function (e) { + var i = !0, + n = null, + s = null; + switch (e.currentTarget) { + case this.petFollow: + this.followCd <= 0 + ? ((this.followCd = 100), (this.followRect.width = 93), t.PetSettingMgr.ins().send_34_2(), t.KHNO.ins().tBiJo(100, 0, this.updateFollowCd, this)) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips105); + break; + case this.petAck: + t.KHNO.ins().RTXtZF(this.updateActCd, this) + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips105) + : (t.KHNO.ins().tBiJo(1e3, 1, this.updateActCd, this), + t.PetSettingMgr.ins().send_34_1(1 == this.petState ? 2 : 1), + (this.petAck.label = 1 == this.petState ? t.CrmPU.language_Common_135 : t.CrmPU.language_Common_136), + (this.petState = 1 == this.petState ? 2 : 1)); + break; + case this.chatBtn: + return void (t.mAYZL.ins().ZbzdY(t.ChatWinView) ? t.mAYZL.ins().close(t.ChatWinView) : t.mAYZL.ins().open(t.ChatWinView)); + case this.firstChargeTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_FIRST_CHARGE_TIPS), void t.mAYZL.ins().open(t.ActvityFirstChargeView); + case this.secondChargeTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_SECOND_CHARGE_TIPS), void t.mAYZL.ins().open(t.ActvitySecondChargeView); + case this.vipImg: + case this.vipGuideTipsGrp: + return t.ubnV.ihUJ ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips139) : (t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIP_GUIDE_TIPS), void t.mAYZL.ins().open(t.VipView)); + case this.stretchBtn: + return ( + (this.buttonGroup.visible = !this.buttonGroup.visible), + (this.btnBg.height = this.buttonGroup.visible ? 352 : 106), + (this.stretchBtn.scaleY = this.buttonGroup.visible ? 1 : -1), + void (this.teamButton2.visible = this.buttonGroup.visible ? !1 : !0) + ); + case this.switchButton: + return void t.mAYZL.ins().open(t.SwitchPlayerView); + case this.rechargeButton: + return void t.RechargeMgr.ins().onPay(""); + case this.shieldNearButton: + return ( + t.ChatView.isCloseNearChannel + ? ((this.shieldNearButton.icon = "m_chat_ltpb_fj1"), (t.ChatView.isCloseNearChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenNear_Tips)) + : ((this.shieldNearButton.icon = "m_chat_ltpb_fj2"), (t.ChatView.isCloseNearChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetCloseNear_Tips)), + void t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 1, + view: !1, + }) + ); + case this.shieldGuildButton: + return ( + t.ChatView.isCloseGuildChannel + ? ((this.shieldGuildButton.icon = "m_chat_ltpb_hh1"), (t.ChatView.isCloseGuildChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenGuild_Tips)) + : ((this.shieldGuildButton.icon = "m_chat_ltpb_hh2"), (t.ChatView.isCloseGuildChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetCloseGuild_Tips)), + void t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 2, + view: !1, + }) + ); + case this.shieldPrivateButton: + return ( + t.ChatView.isClosePrivateChannel + ? ((this.shieldPrivateButton.icon = "m_chat_ltpb_sl1"), (t.ChatView.isClosePrivateChannel = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetOpenPrivate_Tips)) + : ((this.shieldPrivateButton.icon = "m_chat_ltpb_sl2"), (t.ChatView.isClosePrivateChannel = !0), t.uMEZy.ins().showFightTips(t.CrmPU.language_Chat_ShowSetClosePrivate_Tips)), + void t.ckpDj.ins().sendEvent(t.ChatEvent.CHAT_CHANNEL_CHANGE, { + type: 3, + view: !1, + }) + ); + case this.ruletipsButton: + return void t.mAYZL.ins().open(t.RuleView, { + id: 9, + }); + case this.patternButton: + var a = this.pkArr.slice(0, this.pkArr.length - 1); + return (this.pkSelect.dataProvider = a), void this.pkSelect.showView(); + case this.suitBtn: + t.CautionView.show( + t.CrmPU.language_Tips48, + function () { + t.FuBenMgr.ins().send_20_2(t.GameMap.fubenID); + }, + this + ); + break; + case this.iconToggle: + for (var r = !this.iconToggle.selected, o = 0; o < this.lyaer4.numChildren; o++) { + var l = this.lyaer4.getChildAt(o); + 26 != l.ID && 37 != l.ID && 78 != l.ID && (l.visible = r); + } + for (var o = 0; o < this.lyaer6.numChildren; o++) { + var h = this.lyaer6.getChildAt(o); + 26 != h.ID && 37 != h.ID && 78 != h.ID && (h.visible = r); + } + return ( + (this.sbkCdGrp.visible = r), + 1 == this.sbkCdGrp.visible && this.setSbkTimeLab(), + (this.toggleRed.visible = !1), + 1 == this.iconToggle.selected && + ((this.toggleRed.visible = !0), this.redArr.length > 0 ? this.toggleRed.setRedImg(1) : this.yellowArr.length > 0 ? this.toggleRed.setRedImg(2) : (this.toggleRed.visible = !1)), + (this.donationGuideTipsGrp.visible = r), + (this.firstChargeTipsGrp.visible = r), + (this.secondChargeTipsGrp.visible = r), + (this.violentGuideTipsGrp.visible = r), + (this.vipGuideTipsGrp.visible = r), + void (t.MainManager.ins().isShowActivityIcon = r) + ); + case this.drugBtn: + return void t.mAYZL.ins().open(t.SetUpView, 3); + case this.pickupBtn: + return void t.mAYZL.ins().open(t.SetUpView, 2); + case this.splitBtn: + return void t.mAYZL.ins().open(t.SetUpView, 6); + case this.addGrpBtn: + case this.shengQuAddGrpBtn: + return void window.addQQGrp(); + case this.qqOpenID: + if (1 == this.qqGrp.visible && Main.vZzwB.userInfo.openID) { + var p = document.createElement("input"); + (p.value = Main.vZzwB.userInfo.openID), + document.body.appendChild(p), + p.select(), + p.setSelectionRange(0, p.value.length), + document.execCommand("Copy"), + document.body.removeChild(p), + t.uMEZy.ins().IrCm("已复制到粘贴板"); + } + return; + case this.topGroup: + if (!this.rightMenuView.visible) { + var u = t.NWRFmB.ins().getCharRole(this.recog); + u || (u = t.NWRFmB.ins().getDummyChar(this.recog)), + u && + (u.isCharRole || u.isDummyCharRole) && + ((t.GlobalData.otherPlayerId = u.propSet.getACTOR_ID()), + (t.GlobalData.otherPlayerName = u.propSet.getName()), + (t.GlobalData.otherPlayerIdDummy = u.isDummyCharRole), + this.rightMenuView.setData(), + t.mAYZL.ins().ZbzdY(t.OtherPlayerView) && t.mAYZL.ins().close(t.OtherPlayerView), + (this.rightMenuView.y = 66), + (this.rightMenuView.x = -20), + (this.rightMenuView.visible = !0), + e && e.stopPropagation(), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_TAP, this.clickStage, this)); + } + return; + case this.violentGuideTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIOLENT_TIPS), void t.mAYZL.ins().open(t.ViolentStateWin); + case this.donationGuideTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_DONATION_TIPS), void t.mAYZL.ins().open(t.DonationRankWin); + case this.actCircleGrp: + return void (t.mAYZL.ins().ZbzdY(t.OpenServerSportsWin) || t.mAYZL.ins().open(t.OpenServerSportsWin, this.circleTipsActID)); + case this.actMonsterGrp: + return void (t.mAYZL.ins().ZbzdY(t.OpenServerSportsWin) || t.mAYZL.ins().open(t.OpenServerSportsWin, this.actMonsterActID)); + case this.actLevelGrp: + return void (t.mAYZL.ins().ZbzdY(t.OpenServerSportsWin) || t.mAYZL.ins().open(t.OpenServerSportsWin, this.actTipsID)); + case this.actEquipGrp: + return void (t.mAYZL.ins().ZbzdY(t.OpenServerSportsWin) || t.mAYZL.ins().open(t.OpenServerSportsWin, this.sprotesEquipActID)); + case this.actMonsterBtn: + return (this.actMonsterGrp.visible = !this.actMonsterIsShow), (this.actMonsterBtn.scaleX = this.actMonsterIsShow ? -1 : 1), void (this.actMonsterIsShow = !this.actMonsterIsShow); + case this.actCircleBtn: + return (this.actCircleGrp.visible = !this.actCircleIsShow), (this.actCircleBtn.scaleX = this.actCircleIsShow ? -1 : 1), void (this.actCircleIsShow = !this.actCircleIsShow); + } + n && (t.mAYZL.ins().ZbzdY(n) ? t.mAYZL.ins().close(n) : i && t.mAYZL.ins().open(n, s)); + }), + (i.prototype.keyClick = function (e) { + e.target.parent instanceof t.MainSkillIconItem && t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + }), + (i.prototype.skillCD = function (e) { + t.KHNO.ins().RTXtZF(this.updateSkillCD, this) || t.KHNO.ins().tBiJo(10, 0, this.updateSkillCD, this); + }), + (i.prototype.itemCd = function (e) { + t.KHNO.ins().RTXtZF(this.updateSkillCD, this) || t.KHNO.ins().tBiJo(10, 0, this.updateSkillCD, this); + }), + (i.prototype.playSkillKeyEff = function (t) { + for ( + var e, + i = function (i) { + if (((e = n.skillArr[i]), e.ID == t.id)) { + var s = n["skillMC" + e.keyIndex]; + return ( + s && + ((s.visible = !0), + s.playFileEff( + ZkSzi.RES_DIR_EFF + t.skillName, + 1, + function () { + s.visible = !1; + }, + !1 + )), + { + value: void 0, + } + ); + } + }, + n = this, + s = 0; + s < this.skillArr.length; + s++ + ) { + var a = i(s); + if ("object" == typeof a) return a.value; + } + }), + (i.prototype.keyInfo = function () { + t.ThgMu.ins().keyXY.length = 0; + for (var e = 0; e < this.skillNum; e++) { + var i = new Object(), + n = this["skill" + e].localToGlobal(0, 0); + (i.x = n.x), (i.y = n.y), t.ThgMu.ins().keyXY.push(i); + } + this.setSbkTimeLab(); + }), + (i.prototype.updateBuff = function () { + t.NWRFmB.ins().getPayer && + ((this.buffList.y = 44), + (this.buffList4.dataProvider = new eui.ArrayCollection(t.NWRFmB.ins().getPayer.buffType4Ary)), + (this.buffList.dataProvider = new eui.ArrayCollection(t.NWRFmB.ins().getPayer.buffTypeAry))); + }), + (i.prototype.updateSavior = function () { + t.NWRFmB.ins().getPayer && + (t.NWRFmB.ins().getPayer.saviorBuff.length > 0 + ? ((this.buffList.x = 45), (this.saviorBuff.x = 4), (this.saviorBuff.y = 44), (this.saviorBuff.visible = !0), (this.saviorBuff.data = t.NWRFmB.ins().getPayer.saviorBuff[0])) + : ((this.buffList.x = 4), (this.saviorBuff.visible = !1))); + }), + (i.prototype.onDragEnd = function (e) { + for (var i, n = e[0], s = n.point.x, a = n.point.y, r = 0, o = this.skillArr.length; o > r; r++) + if (((i = this.skillArr[r].parent.localToGlobal(this.skillArr[r].x, this.skillArr[r].y)), i.x < s && s < i.x + this.skillArr[r].width && i.y < a && a < i.y + this.skillArr[r].height)) { + n.target.visible = !1; + var l = n.from.localToGlobal(0, 0); + if (((n.target.x = l.x), (n.target.y = l.y), n.from.parent)) { + var h = n.from.parent.data; + t.XwoNAr.ins().send_17_2(r, t.ShortcutKeySetView.TYPE, h.skillId, t.ShortcutKeySetView.OLD_POS), + t.ckpDj.ins().sendEvent(t.CompEvent.SHORTCUTKEY, [ + { + dragName: n.from.name, + state: r, + }, + ]); + } + return; + } + var p = n.from.localToGlobal(0, 0); + egret.Tween.get(n.target) + .to( + { + x: p.x, + y: p.y, + }, + 100, + egret.Ease.sineInOut + ) + .call(function () { + n.target.visible = !1; + }); + }), + (i.prototype.initRuleList = function () { + for (var e in this.ruleList) { + var i = this.ruleList[e]; + i.removeAll(); + } + (this.ruleList = {}), (this.ruleParent = {}), (this.ruleKey = {}); + var n = t.VlaoF.PlayFunConfig, + isSpecial = Main.vZzwB.specialId == t.MiOx.srvid; + for (var s in n) { + var a = n[s]; + if ("app.CrossServerWin" == a.view && isSpecial) { + //console.log('跳过PC端跨服图标', a); + continue; + } + if ((!a.pfIDArray || -1 != a.pfIDArray.indexOf(Main.vZzwB.pfID)) && a.layer) { + var r = a.cls ? egret.getDefinitionByName(a.cls) : t.RuleIconBase; + r + ? t.ubnV.ihUJ + ? a.displayType && (1 == a.displayType || 2 == a.displayType) && this.addRuleList(new r(a.id)) + : (a.displayType && 2 != a.displayType) || this.addRuleList(new r(a.id)) + : t.CommonPopView.ins().showTextView("功能入口配置错误,id:" + s + " cls:" + a.cls); + } + } + this.addRuleEvent(), this.updateButton(); + }), + (i.prototype.addRuleList = function (e) { + var i = t.VlaoF.PlayFunConfig[e.id]; + i.layer && + this.rulePos[i.layer] && + ((this.ruleList[e.hashCode] = e), + e.tar && e.tar.parent ? ((this.ruleParent[e.hashCode] = e.tar.parent), e.tar.parent.removeChild(e.tar)) : (this.ruleParent[e.hashCode] = this.rulePos[i.layer]), + this.updateRule(e)); + }), + (i.prototype.getRuleBtId = function (t) { + for (var e in this.ruleList) if (this.ruleList[e].id == t) return this.ruleList[e]; + return null; + }), + (i.prototype.updateButton = function () { + var t = !1; + for (var e in this.ruleList) { + var i = this.ruleList[e]; + this.updateShow(i) && (t = !0); + } + t && (this.sortBtnList(), this.setSbkTimeLab()); + }), + (i.prototype.sortRule = function (e, i) { + var n = t.VlaoF.PlayFunConfig[e.id], + s = t.VlaoF.PlayFunConfig[i.id]; + return n.sort > s.sort ? 1 : -1; + }), + (i.prototype.updateShow = function (e) { + var i, + n = e.checkShowIcon(); + if (e.ZbzdY == n) return !1; + if (((e.ZbzdY = n), n)) { + (i = e.getTar()), e.addEventListeners(); + var s = this.ruleParent[e.hashCode]; + s && s.addChild(i), (i.visible = !0), 26 != i.ID && 37 != i.ID && 78 != i.ID && (t.MainManager.ins().isShowActivityIcon || (i.visible = !1)); + } else (i = e.tar), i && (e.removeEventListeners(), t.lEYZI.Naoc(i), t.lEYZI.Naoc(this.ruleEff[i.hashCode])); + return !0; + }), + (i.prototype.sortBtnList = function () { + this.ruleKey = {}; + var t, + e, + i = { + 1: [], + 2: [], + 3: [], + 4: [], + 5: [], + 6: [], + 7: [], + }; + for (var n in this.ruleList) + (t = this.ruleList[n]), (e = t.getConfig()), e.layer && t.ZbzdY && (i[e.layer].push(t), e.keys && e.keys.length && (this.ruleKey[e.keys[e.keys.length - 1]] = t.hashCode)); + var s = i[1]; + s = s.sort(this.sortRule); + for (var n = 0; n < s.length; n++) { + if (((t = s[n]), (e = t.getConfig()), e.layer && ((t.tar.right = 80 * n), e.position))) for (var a in e.position) t.tar[a] = e.position[a]; + e.layer; + } + (s = i[4]), (s = s.sort(this.sortRule)); + for (var n = 0; n < s.length; n++) { + if (((t = s[n]), (e = t.getConfig()), (t.tar.right = 80 * n), e.position)) for (var a in e.position) t.tar[a] = e.position[a]; + 51 == e.id + ? (this.donationGuideTipsGrp.right = this.lyaer4.right + t.tar.right + 80) + : 50 == e.id + ? (this.violentGuideTipsGrp.right = this.lyaer4.right + t.tar.right + 80) + : 37 == e.id && (this.vipGuideTipsGrp.right = this.lyaer4.right + t.tar.right + 80); + } + (s = i[5]), (s = s.sort(this.sortRule)); + for (var n = 0; n < s.length; n++) if (((t = s[n]), (e = t.getConfig()), (t.tar.x = 52 * n), e.position)) for (var a in e.position) t.tar[a] = e.position[a]; + (s = i[6]), (s = s.sort(this.sortRule)); + for (var n = 0; n < s.length; n++) if (((t = s[n]), (e = t.getConfig()), (t.tar.right = 80 * n), e.position)) for (var a in e.position) t.tar[a] = e.position[a]; + (s = i[7]), (s = s.sort(this.sortRule)); + for (var n = 0; n < s.length; n++) if (((t = s[n]), (e = t.getConfig()), (t.tar.x = 80 * n), e.position)) for (var a in e.position) t.tar[a] = e.position[a]; + }), + (i.prototype.updateRuleAndSort = function (e) { + t.KHNO.ins().tBiJo( + 1e3, + 1, + function () { + this.updateShow(e) && (this.sortBtnList(), this.setSbkTimeLab()); + }, + this + ); + }), + (i.prototype.setSbkTimeLab = function () { + if (!this.iconToggle.selected) { + var e = t.VlaoF.ActivityNoticeConfig[1][this._actID]; + e && + 0 != t.GlobalData.sectionOpenDay && + t.mAYZL.ins().isCheckOpen(e.isOpenNeed) && + t.KHNO.ins().tBiJo( + 100, + 1, + function () { + for (var e = t.ubnV.ihUJ ? 4 : 6, i = 0; i < this["lyaer" + e].numChildren; i++) { + var n = this["lyaer" + e].getChildAt(i), + s = t.ubnV.ihUJ ? 68 : 49; + if (n.ID == s) { + var a = n.localToGlobal(); + (this.sbkCdGrp.x = a.x - 15), (this.sbkCdGrp.y = a.y + 73); + } + } + }, + this + ); + } + }), + (i.prototype.updateRule = function (e) { + var i = e.getTar(); + if (i.redImage) { + var n = e.checkShowRedPoint(); + (i.redImage.visible = n > 0), (i.redImage.source = 1 == n ? "common_hongdian" : "common_chengdian"); + } + var s = e.getEffName(e.checkShowRedPoint()); + if (s) + if (this.ruleEff[i.hashCode] && this.ruleEff[i.hashCode].parent) this.ruleEff[i.hashCode].play(-1); + else { + var a = this.getEff(i.hashCode, s); + "eff_tygq_1" != s && (a.blendMode = egret.BlendMode.ADD), (a.x = e.effX), (a.y = e.effY), i.addChildAt(a, 100); + } + else t.lEYZI.Naoc(this.ruleEff[i.hashCode]); + this.updateToggleRed(e); + }), + (i.prototype.getEff = function (e, i) { + return (this.ruleEff[e] = this.ruleEff[e] || new t.MovieClip()), i && this.ruleEff[e].playFile(ZkSzi.RES_DIR_EFF + i, -1), this.ruleEff[e]; + }), + (i.prototype.updateCount = function (e) { + var i = e.getTar(); + if (i.txtCount) + if (e instanceof t.FlyShoesRuleIcon) { + var n = t.NWRFmB.ins().getPayer.propSet.getFlyshoes(); + i.txtCount.text = n; + } else i.txtCount.text = ""; + }), + (i.prototype.addRuleEvent = function () { + for (var t in this.ruleList) { + var e = this.ruleList[t]; + e.addShowEvents(), e.addCountEvents(), e.addRedEvents(); + } + }), + (i.prototype.removeRuleEvent = function () { + for (var t in this.ruleList) { + var e = this.ruleList[t]; + e.removeEvents(); + } + }), + (i.prototype.getImage = function () { + return this.itemImagAry.shift() || new eui.Image(); + }), + (i.prototype.pushImage = function (e) { + t.lEYZI.Naoc(e), egret.Tween.removeTweens(e), (e.source = null), this.itemImagAry.push(e); + }), + (i.prototype.addItem = function (t) { + if (this.bagButton && t) { + var e = this.getImage(); + (e.source = t.source), (e.x = t.point.x), (e.y = t.point.y), this.addGroup.addChild(e), this.addTweens(e); + } + }), + (i.prototype.addTweens = function (e) { + var i = this.bagButton.localToGlobal(), + n = this, + s = egret.Tween.get(e), + a = 0.8 * t.MathUtils.getDistanceByObject(e, i); + s.to( + { + x: i.x, + y: i.y, + }, + a + ).call(function () { + n.pushImage(this); + }); + }), + (i.prototype.addSkillTween = function (t, e) {}), + (i.prototype.updateOnHook = function () { + t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(500, 1, this.updateTime, this); + }), + (i.prototype.updateTime = function () { + if (t.qTVCL.ins().isOpen) { + if (this.effMC) return; + (this.effMC = t.ObjectPool.pop("app.MovieClip")), + (this.effMC.x = this.effMC.y = 0), + this.effGroup.addChild(this.effMC), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.effMC.x = 0), + this.effMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdzd1", -1), + (this.onHookGroup.visible = !0), + (this.effMC.visible = !0); + } else if (t.qTVCL.ins().isFinding) { + if (this.xunLuMC) return; + (this.xunLuMC = t.ObjectPool.pop("app.MovieClip")), + (this.xunLuMC.x = this.xunLuMC.y = 0), + this.effGroup.addChild(this.xunLuMC), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.effMC && (this.effMC.destroy(), (this.effMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.xunLuMC.x = 50), + this.xunLuMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdxl1", -1), + (this.onHookGroup.visible = !1), + (this.xunLuMC.visible = !0); + } else if (t.qTVCL.ins().attackState) { + if (this.autoPkMc) return; + (this.autoPkMc = t.ObjectPool.pop("app.MovieClip")), + (this.autoPkMc.x = this.autoPkMc.y = 0), + this.effGroup.addChild(this.autoPkMc), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.effMC && (this.effMC.destroy(), (this.effMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + (this.autoPkMc.x = 50), + this.autoPkMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_znpk1", -1), + (this.onHookGroup.visible = !1), + (this.autoPkMc.visible = !0); + } else if (t.GameMap.isBubble && t.GameMapInfo.ins().getIsSafe) { + if (this.paoDianMC) return; + (this.paoDianMC = t.ObjectPool.pop("app.MovieClip")), + (this.paoDianMC.x = this.paoDianMC.y = 0), + this.effGroup.addChild(this.paoDianMC), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.effMC && (this.effMC.destroy(), (this.effMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.paoDianMC.x = 50), + this.paoDianMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdpd1", -1), + (this.onHookGroup.visible = !1), + (this.paoDianMC.visible = !0); + } else + (this.onHookGroup.visible = !1), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.effMC && (this.effMC.destroy(), (this.effMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)); + }), + (i.prototype.changeMoney = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) { + var i = e.propSet; + (this.bindGoldNum.text = t.CommonUtils.zhuanhuan(i.getBindCoin())), (this.yuanbaoNum.text = t.CommonUtils.zhuanhuan(i.getNotBindYuanBao())); + } else (this.yuanbaoNum.text = "0"), (this.bindGoldNum.text = "0"); + }), + (i.prototype.setActTimeCD = function () { + t.KHNO.ins().remove(this.updateSBKCDTime, this), (this.sbkCdGrp.visible = !1), (this._actID = t.ubnV.ihUJ ? 26 : t.GlobalData.sectionOpenDay <= 3 ? 41 : 13), this.setSbkTimeLab(); + var e = t.VlaoF.ActivityNoticeConfig[1][this._actID]; + if (e && 0 != t.GlobalData.sectionOpenDay && t.mAYZL.ins().isCheckOpen(e.isOpenNeed)) { + var i = t.TQkyOx.ins().getActivityInfo(this._actID); + t.TQkyOx.ins().getActivityConfigById(this._actID); + if (i && i.redDot) + t.KHNO.ins().remove(this.updateSBKCDTime, this), + (this.sbkTimeLab.textFlow = t.hETx.qYVI("|C:0x28ee01&T:进行中|")), + !t.ubnV.ihUJ || (3 != t.GameMap.mapID && 47 != t.GameMap.mapID && 98 != t.GameMap.mapID) + ? t.ubnV.ihUJ && + t.GameMap.fubenID <= 0 && + (t.mAYZL.ins().ZbzdY(t.FuBenView) && t.mAYZL.ins().close(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) || t.mAYZL.ins().open(t.MainTaskWin)) + : (t.mAYZL.ins().ZbzdY(t.FuBenView) || t.mAYZL.ins().open(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) && t.mAYZL.ins().close(t.MainTaskWin)); + else { + t.ubnV.ihUJ && t.GameMap.fubenID <= 0 && (t.mAYZL.ins().ZbzdY(t.FuBenView) && t.mAYZL.ins().close(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) || t.mAYZL.ins().open(t.MainTaskWin)); + if (e && e.TimeDetail) + for (var n in e.TimeDetail) { + var s = e.TimeDetail[n], + a = s.StartTime, + r = new Date(t.GlobalData.serverTime), + o = r.getHours(), + l = r.getMinutes(), + h = r.getSeconds(), + p = r.getDay(), + u = 0, + c = 0; + if (s.type) { + if (3 == t.GlobalData.sectionOpenDay) { + var g = a.split(":"); + if (+g[0] > o || (+g[0] == o && +g[1] > l)) { + if ( + ((u = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = g[0] * t.DateUtils.MS_PER_HOUR + g[1] * t.DateUtils.MS_PER_MINUTE), + c > u ? (this.sbkcdTime = c - u) : u > c && (this.sbkcdTime = t.DateUtils.MS_PER_DAY - (u - c)), + this.sbkcdTime > 0) + ) { + (this.sbkCdGrp.visible = !0), (this.sbkcdTime += egret.getTimer()), this.updateSBKCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateSBKCDTime, this); + break; + } + } else t.KHNO.ins().remove(this.updateSBKCDTime, this), (this.sbkCdGrp.visible = !1); + } + } else { + var d = a.split("-"), + m = d[1].split(":"); + if (0 == p && 7 != +d[0]) { + this.sbkTimeLab.textFlow = t.hETx.qYVI("3天后"); + break; + } + if ((+d[0] == p && (+m[0] > o || (+m[0] == o && +m[1] > l))) || (0 == p && 7 == +d[0] && (+m[0] > o || (+m[0] == o && +m[1] > l)))) { + if ( + ((u = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = +m[0] * t.DateUtils.MS_PER_HOUR + m[1] * t.DateUtils.MS_PER_MINUTE), + c > u ? (this.sbkcdTime = c - u) : u > c && (this.sbkcdTime = t.DateUtils.MS_PER_DAY - (u - c)), + this.sbkcdTime > 0) + ) { + (this.sbkcdTime += egret.getTimer()), this.updateSBKCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateSBKCDTime, this); + break; + } + } else { + if (+d[0] == p && (m[0] < o || (m[0] == o && +m[1] < l))) { + var f = 3 == p ? "3" : 6 == p ? "4" : 0 == p ? "7" : ""; + this.sbkTimeLab.textFlow = t.hETx.qYVI(f + "天后"); + break; + } + if (+d[0] > p) { + this.sbkTimeLab.textFlow = t.hETx.qYVI(+d[0] - p + "天后"); + break; + } + } + } + } + } + } + }), + (i.prototype.updateSBKCDTime = function () { + var e = this.sbkcdTime - egret.getTimer(), + i = t.DateUtils.getMainShaBaKeCD(e); + (this.sbkTimeLab.textFlow = t.hETx.qYVI(i)), 0 >= e && (t.KHNO.ins().remove(this.updateSBKCDTime, this), (this.sbkTimeLab.text = "")); + }), + (i.prototype.listClick = function (e) { + var i = t.NWRFmB.ins().getPayer; + i.lockTarget = e.item.recog; + for (var n in this.ruleList) + if (39 == this.ruleList[n].id) { + this.ruleList[n].tapExecute(1); + break; + } + for (var s = 0; s < this.ackArr.length; s++) (this.ackArr[s].isSelect = !1), this.ackArr[s].recog == e.item.recog && (this.ackArr[s].isSelect = !0); + this.attackListData.replaceAll(this.ackArr), this.attackListData.refresh(); + }), + (i.prototype.clickPK = function () { + for (var t in this.ruleList) + if (39 == this.ruleList[t].id) { + this.ruleList[t].tapExecute(1); + break; + } + }), + (i.prototype.updateAckList = function (e) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_counterAtk)) { + if (e) { + var i = t.NWRFmB.ins().getCharRole(e); + if (i && i.propSet && !i.isMy) { + for (var n = 0; n < this.ackArr.length; n++) if (this.ackArr[n].recog == e) return void (this.ackArr[n].time = egret.getTimer()); + var s = i.propSet.MzYki() ? i.propSet.MzYki() + "转" + i.propSet.mBjV() : "Lv" + i.propSet.mBjV(); + this.ackArr.push({ + recog: e, + time: egret.getTimer(), + name: i.charName, + lv: s, + guild: i.propSet.getGuildName(), + job: i.propSet.getAP_JOB(), + isSelect: !1, + }), + (this.attackGroup.visible = this.ackArr.length > 0), + this.attackListData.replaceAll(this.ackArr), + this.attackListData.refresh(); + } + } + } else + this.ackArr && + this.ackArr.length > 0 && + ((this.ackArr.length = 0), (this.attackGroup.visible = this.ackArr.length > 0), this.attackListData.replaceAll(this.ackArr), this.attackListData.refresh()); + }), + (i.prototype.updateAllAckList = function (e) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_counterAtk)) { + var i = t.NWRFmB.ins().getPayer; + if (i.recog == e) this.ackArr.length = 0; + else { + var n = this.ackArr.length; + if (e) for (; n--; ) this.ackArr[n].recog == e && this.ackArr.splice(n, 1); + else for (var s = egret.getTimer(); n--; ) s - this.ackArr[n].time > 2e4 && this.ackArr.splice(n, 1); + } + (this.attackGroup.visible = this.ackArr.length > 0), this.attackListData.replaceAll(this.ackArr), this.attackListData.refresh(); + } else + this.ackArr && + this.ackArr.length > 0 && + ((this.ackArr.length = 0), (this.attackGroup.visible = this.ackArr.length > 0), this.attackListData.replaceAll(this.ackArr), this.attackListData.refresh()); + }), + (i.prototype.setAttackGroupVis = function () { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_counterAtk) || + ((this.ackArr.length = 0), (this.attackGroup.visible = this.ackArr.length > 0), this.attackListData.replaceAll(this.ackArr), this.attackListData.refresh()); + }), + (i.prototype.updatePet = function () { + this.petGrp.visible = !1; + var e = t.NWRFmB.ins().getPayer; + e && + e.propSet && + t.PetSettingMgr.ins().petNum > 0 && + (e.propSet.getPetState() > 0 && + ((this.petState = e.propSet.getPetState()), + 1 == this.petState ? (this.petAck.label = t.CrmPU.language_Common_136) : 2 == this.petState && (this.petAck.label = t.CrmPU.language_Common_135)), + this.petState <= 0 && (t.PetSettingMgr.ins().send_34_1(2), (this.petAck.label = t.CrmPU.language_Common_135)), + (this.petGrp.visible = !0)); + }), + (i.prototype.updateFollowCd = function () { + var e = this; + (this.followCd -= 1), + (this.followRect.visible = !0), + (this.followRect.width = this.followRect.width - +(0.93).toFixed(1)), + 0 == this.followCd && + ((this.followRect.visible = !1), + (this.petKuang.visible = !0), + egret.setTimeout( + function () { + e.petKuang.visible = !1; + }, + this, + 100 + ), + t.KHNO.ins().remove(this.updateFollowCd, this)); + }), + (i.prototype.updateActCd = function () { + t.KHNO.ins().remove(this.updateActCd, this); + }), + (i.prototype.closeExpMc = function () { + this.addDoubleExpMC && (this.addDoubleExpMC.destroy(), (this.addDoubleExpMC = null)); + }), + (i.prototype.addExp = function () { + var e = t.NWRFmB.ins().getPayer; + if (e) { + var i = egret.getTimer(); + if (i - this.payExpTime > 4e3) { + this.payExpTime = i; + var n = e.localToGlobal(); + this.addDoubleExpMC || ((this.addDoubleExpMC = t.ObjectPool.pop("app.MovieClip")), this.addGroup.addChild(this.addDoubleExpMC), (this.addDoubleExpMC.blendMode = egret.BlendMode.ADD)), + (this.addDoubleExpMC.x = n.x), + (this.addDoubleExpMC.y = n.y), + (this.addDoubleExpMC.visible = !0); + var s = this; + this.addDoubleExpMC.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_badypaodian", + 1, + function () { + s.closeExpMc(); + }, + !1 + ); + var a = this.expLab.parent.localToGlobal(-10, -10); + (this.expDian.scaleX = this.expDian.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian0.scaleX = this.expDian0.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian1.scaleX = this.expDian1.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian2.scaleX = this.expDian2.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian3.scaleX = this.expDian3.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian.visible = !1), + (this.expDian0.visible = !1), + (this.expDian1.visible = !1), + (this.expDian2.visible = !1), + (this.expDian3.visible = !1); + var r = 2 * t.MathUtils.getDistance(n.x, n.y, a.x, a.y); + egret.Tween.removeTweens(this.addGroup), + egret.Tween.get(this.addGroup) + .wait(500) + .call(function () { + s.expDian.payTween( + { + x: n.x, + y: n.y - 150, + }, + { + x: n.x + 100, + y: n.y - 250, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian0.payTween( + { + x: n.x - 100, + y: n.y - 150, + }, + { + x: n.x, + y: n.y - 300, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian1.payTween( + { + x: n.x, + y: n.y - 200, + }, + { + x: n.x + 100, + y: n.y - 300, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian2.payTween( + { + x: n.x - 150, + y: n.y - 150, + }, + { + x: n.x + 100, + y: n.y - 250, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian3.payTween( + { + x: n.x - 50, + y: n.y - 220, + }, + { + x: n.x + 80, + y: n.y - 150, + }, + { + x: a.x, + y: a.y, + }, + r + ); + }) + .wait(r + 100) + .call(function () { + s.expDian.clsoeTween(), s.expDian0.clsoeTween(), s.expDian1.clsoeTween(), s.expDian2.clsoeTween(), s.expDian3.clsoeTween(); + }); + } + } + }), + (i.prototype.updateWIFI = function () { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Network) + ? (t.KHNO.ins().RTXtZF(this.heartbeat, this) || t.KHNO.ins().tBiJo(3e3, 0, this.heartbeat, this), (this.msgGroup.visible = !0)) + : ((this.msgGroup.visible = !1), t.KHNO.ins().remove(this.heartbeat, this)); + }), + (i.prototype.heartbeat = function () { + this.sendTime && (this.msgdelay.push(3e3), this.msgdelay.length > 3 && this.msgdelay.shift()), (this.sendTime = egret.getTimer()), t.Nzfh.ins().s_0_21(); + }), + (i.prototype.updateMsg = function () { + this.msgdelay.push(egret.getTimer() - this.sendTime), (this.sendTime = 0), this.msgdelay.length > 3 && this.msgdelay.shift(); + for (var e = 0, i = 0; i < this.msgdelay.length; i++) + (e = this.msgdelay[i]), + (this.msgAry[i].visible = !0), + (this.msgAry[i].text = t.CrmPU.language_Delay + this.getDelay(e)), + 100 > e ? (this.msgAry[i].textColor = 2682369) : 300 > e ? (this.msgAry[i].textColor = t.ClwSVR.NAME_YELLOW) : (this.msgAry[i].textColor = t.ClwSVR.NAME_RED); + }), + (i.prototype.getDelay = function (t) { + return t > 1e3 ? (t / 1e3).toFixed(2) + "m" : t + "ms"; + }), + (i.prototype.updateCrossServerAct = function () { + t.ubnV.ihUJ && 0 != t.TQkyOx.ins().crossServerActID && t.Nzfh.ins().showCrossServerView(t.TQkyOx.ins().crossServerActID); + }), + (i.prototype.updateSprotsActTips = function () { + this.updateActLevel(), this.updateActCircle(), this.updateActMonsterTips(), this.updateBestEquipTips(), this.changeCrossServerBtnIcon(); + }), + (i.prototype.updateActLevel = function () { + var e = this; + (this.actLevelIcon.source = ""), (this.actLevelQuality.source = ""), (this.actLevelStr.text = ""); + var i = t.TQkyOx.ins().getActivityInfo(this.actTipsID); + if (i) { + if (((this.actLevelGrp.visible = !0), (this.actLevelStr.visible = !0), (this.actLevelReceive.visible = !1), 0 != i.redDot)) { + (this.actLevelStr.visible = !1), + (this.actLevelReceive.visible = !0), + (this.actLevelReceive.textFlow = t.hETx.qYVI("< u > " + this.actLevelReceive.text + " ")), + this.receiveMc || + ((this.receiveMc = t.ObjectPool.pop("app.MovieClip")), + (this.receiveMc.scaleX = this.receiveMc.scaleY = 1), + (this.receiveMc.touchEnabled = !1), + (this.receiveMc.blendMode = egret.BlendMode.ADD), + this.receiveEffGrp.addChild(this.receiveMc)), + this.receiveMc.isPlaying || this.receiveMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xdcts", -1); + var n = 0; + for (var s in i.info) + if (1 == i.info[s].state) { + n = i.info[s].index; + break; + } + this.levelEffPlayInfo[n] || + (this.levelEffMc || + ((this.levelEffMc = t.ObjectPool.pop("app.MovieClip")), + (this.levelEffMc.scaleX = this.levelEffMc.scaleY = 1), + (this.levelEffMc.touchEnabled = !1), + this.levelEffGrp.addChild(this.levelEffMc)), + (this.levelEffMc.visible = !0), + this.levelEffMc.isPlaying || + this.levelEffMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", 1, function () { + e.levelEffMc && (e.levelEffMc.destroy(), (e.levelEffMc = null)), (e.levelEffPlayInfo[n] = !0); + })); + } else this.receiveMc && (this.receiveMc.destroy(), (this.receiveMc = null)), this.levelEffMc && (this.levelEffMc.destroy(), (this.levelEffMc = null)); + this.actLevelMc || + ((this.actLevelMc = t.ObjectPool.pop("app.MovieClip")), + (this.actLevelMc.scaleX = this.actLevelMc.scaleY = 1), + (this.actLevelMc.touchEnabled = !1), + (this.actLevelMc.blendMode = egret.BlendMode.ADD), + this.actLevelEff.addChild(this.actLevelMc)), + this.actLevelMc.isPlaying || this.actLevelMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xlz", -1); + var a = t.NWRFmB.ins().getPayer, + r = 0, + o = !1; + if (a && a.propSet) { + var l = -1, + h = a.propSet.mBjV(); + if (0 != i.redDot) for (var p in i.info) 1 == i.info[p].state && i.info[p].index > l && ((l = i.info[p].index), (o = !0)); + else { + for (var s in i.info) + if (0 == i.info[s].state || 1 == i.info[s].state) { + o = !0; + break; + } + var u = t.TQkyOx.ins().getActivityConfigById(this.actTipsID); + if (u) + for (var c in u) + if (h < u[c].value) { + (l = u[c].level), (r = u[c].value); + break; + } + } + var g = a.propSet.getAP_JOB(), + d = t.VlaoF.ActivityPopupConfig[this.actTipsID][g][l]; + o && d + ? (d.leftpicture1 && + ((this.actLevelIcon.source = d.leftpicture1 + ""), + this.actLevelTween || + ((this.actLevelTween = egret.Tween.get(this.actLevelIcon, { + loop: !0, + })), + this.actLevelTween + .to( + { + y: -16, + }, + 1e3 + ) + .to( + { + y: -6, + }, + 1e3 + ))), + d.leftpicture2 && (this.actLevelQuality.source = d.leftpicture2 + ""), + d.text && 0 == i.redDot && (this.actLevelStr.textFlow = t.hETx.qYVI(t.zlkp.replace(d.text, r - h)))) + : ((this.actLevelGrp.visible = !1), + this.actLevelTween && ((this.actLevelIcon.y = -6), egret.Tween.removeTweens(this.actLevelTween), (this.actLevelTween = null)), + this.actLevelMc && (this.actLevelMc.destroy(), (this.actLevelMc = null)), + this.levelEffMc && (this.levelEffMc.destroy(), (this.levelEffMc = null)), + this.receiveMc && (this.receiveMc.destroy(), (this.receiveMc = null))); + } + } else + (this.actLevelGrp.visible = !1), + this.actLevelTween && ((this.actLevelIcon.y = -6), egret.Tween.removeTweens(this.actLevelTween), (this.actLevelTween = null)), + this.actLevelMc && (this.actLevelMc.destroy(), (this.actLevelMc = null)), + this.levelEffMc && (this.levelEffMc.destroy(), (this.levelEffMc = null)), + this.receiveMc && (this.receiveMc.destroy(), (this.receiveMc = null)); + this.actLevelIcon.source && "" != this.actLevelIcon.source ? (this.actLevelIcon.filters = t.FilterUtil.SHINE()) : (this.actLevelIcon.filters = null); + }), + (i.prototype.updateActCircle = function () { + var e = this; + (this.actCircleIcon.source = ""), (this.actCircleQuality.source = ""), (this.actTipsTopImg1.source = ""), (this.actTipsTopImg2.source = ""), (this.actCircleStr.text = ""); + var i = t.TQkyOx.ins().getActivityInfo(this.circleTipsActID); + if (i) { + if ( + (this.actTipsGrp1.parent || this.actTipsAllGrp.addChildAt(this.actTipsGrp1, 0), + (this.actCircleBtn.visible = !0), + (this.actCircleGrp.visible = !0), + (this.actCircleStrGrp.visible = !0), + (this.clickReceive.visible = !1), + 0 != i.redDot) + ) { + (this.actCircleStrGrp.visible = !1), (this.clickReceive.visible = !0), (this.clickReceive.textFlow = t.hETx.qYVI("" + this.clickReceive.text + "")); + var n = 0; + for (var s in i.info) + if (1 == i.info[s].state) { + n = i.info[s].index; + break; + } + this.effPlayInfo[n] || + (this.circleReceiveMc || + ((this.circleReceiveMc = t.ObjectPool.pop("app.MovieClip")), + (this.circleReceiveMc.scaleX = this.circleReceiveMc.scaleY = 1), + (this.circleReceiveMc.touchEnabled = !1), + this.cieclereceiveEffGrp.addChild(this.circleReceiveMc)), + (this.circleReceiveMc.visible = !0), + this.circleReceiveMc.isPlaying || + this.circleReceiveMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", 1, function () { + e.circleReceiveMc && (e.circleReceiveMc.destroy(), (e.circleReceiveMc = null)), (e.effPlayInfo[n] = !0); + })), + this.actCircleMc0 || + ((this.actCircleMc0 = t.ObjectPool.pop("app.MovieClip")), + (this.actCircleMc0.scaleX = this.actCircleMc0.scaleY = 1), + (this.actCircleMc0.touchEnabled = !1), + (this.actCircleMc0.blendMode = egret.BlendMode.ADD), + this.actCircleEffGrp0.addChild(this.actCircleMc0)), + this.actCircleMc0.isPlaying || this.actCircleMc0.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dclg3", -1); + } else this.actCircleMc0 && (this.actCircleMc0.destroy(), (this.actCircleMc0 = null)), this.circleReceiveMc && (this.circleReceiveMc.destroy(), (this.circleReceiveMc = null)); + var a = t.NWRFmB.ins().getPayer; + if (a && a.propSet) { + var r = -1, + o = a.propSet.MzYki(); + if (0 != i.redDot) for (var l in i.info) 1 == i.info[l].state && i.info[l].index > r && (r = i.info[l].index); + else r = o + 1; + var h = a.propSet.getAP_JOB(), + p = t.VlaoF.ActivityPopupConfig[this.circleTipsActID][h][r]; + p + ? (this.actCircleMc || + ((this.actCircleMc = t.ObjectPool.pop("app.MovieClip")), + (this.actCircleMc.scaleX = this.actCircleMc.scaleY = 1), + (this.actCircleMc.touchEnabled = !1), + (this.actCircleMc.blendMode = egret.BlendMode.ADD), + this.actCircleEffGrp.addChild(this.actCircleMc)), + this.actCircleMc.isPlaying || this.actCircleMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dczq2", -1), + p.leftpicture1 && (this.actCircleIcon.source = p.leftpicture1 + ""), + p.leftpicture2 && (this.actCircleQuality.source = p.leftpicture2 + ""), + p.rightpicture1 && (this.actTipsTopImg1.source = p.rightpicture1 + ""), + p.rightpicture2 && (this.actTipsTopImg2.source = p.rightpicture2 + ""), + p.text && (this.actCircleStr.textFlow = t.hETx.qYVI(p.text))) + : ((this.actCircleGrp.visible = this.actCircleBtn.visible = !1), + this.actCircleMc && (this.actCircleMc.destroy(), (this.actCircleMc = null)), + this.actCircleMc0 && (this.actCircleMc0.destroy(), (this.actCircleMc0 = null)), + this.circleReceiveMc && (this.circleReceiveMc.destroy(), (this.circleReceiveMc = null)), + t.lEYZI.Naoc(this.actTipsGrp1)); + } + } else + (this.actCircleGrp.visible = this.actCircleBtn.visible = !1), + this.actCircleMc && (this.actCircleMc.destroy(), (this.actCircleMc = null)), + this.actCircleMc0 && (this.actCircleMc0.destroy(), (this.actCircleMc0 = null)), + this.circleReceiveMc && (this.circleReceiveMc.destroy(), (this.circleReceiveMc = null)), + t.lEYZI.Naoc(this.actTipsGrp1); + }), + (i.prototype.updateActMonsterTips = function () { + var e = this; + (this.actMOnsterStr.text = ""), (this.actMonsterImg1.source = ""), (this.actMonsterImg2.source = ""); + var i = !1, + n = -1, + s = -1, + a = t.TQkyOx.ins().getActivityInfo(this.actMonsterActID); + if (a) { + if ((this.actTipsGrp2.parent || this.actTipsAllGrp.addChildAt(this.actTipsGrp2, 1), a.info)) { + for (var r in a.info) { + var o = a.info[r]; + (0 == o.state || 1 == o.state) && (i = !0), -1 == n && (n = o.value), -1 == s && 1 == o.state && (s = o.index); + } + if (i) { + if ( + (this.actMonsterMc || + ((this.actMonsterMc = t.ObjectPool.pop("app.MovieClip")), + (this.actMonsterMc.scaleX = this.actMonsterMc.scaleY = 1), + (this.actMonsterMc.touchEnabled = !1), + this.actMonsterEff.addChild(this.actMonsterMc)), + this.actMonsterMc.isPlaying || this.actMonsterMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dcjs2", -1), + (this.actMonsterBtn.visible = !0), + (this.actMonsterGrp.visible = !0), + (this.actMOnsterStr.visible = !0), + (this.monsterClickReceive.visible = !1), + 0 != a.redDot) + ) { + (this.actMOnsterStr.visible = !1), (this.monsterClickReceive.visible = !0), (this.monsterClickReceive.textFlow = t.hETx.qYVI("" + this.monsterClickReceive.text + "")); + var l = 0; + for (var h in a.info) + if (1 == a.info[h].state) { + l = a.info[h].index; + break; + } + this.monsterEffInfo[l] || + (this.monsterMc || + ((this.monsterMc = t.ObjectPool.pop("app.MovieClip")), + (this.monsterMc.scaleX = this.monsterMc.scaleY = 1), + (this.monsterMc.touchEnabled = !1), + this.monsterEffGrp.addChild(this.monsterMc)), + (this.monsterMc.visible = !0), + this.monsterMc.isPlaying || + this.monsterMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", 1, function () { + e.monsterMc && (e.monsterMc.destroy(), (e.monsterMc = null)), (e.monsterEffInfo[l] = !0); + })), + this.actMonsterMc0 || + ((this.actMonsterMc0 = t.ObjectPool.pop("app.MovieClip")), + (this.actMonsterMc0.scaleX = this.actMonsterMc0.scaleY = 1), + (this.actMonsterMc0.touchEnabled = !1), + (this.actMonsterMc0.blendMode = egret.BlendMode.ADD), + this.actMonsterEff0.addChild(this.actMonsterMc0)), + this.actMonsterMc0.isPlaying || this.actMonsterMc0.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dclg2", -1); + } else this.actMonsterMc0 && (this.actMonsterMc0.destroy(), (this.actMonsterMc0 = null)), this.monsterMc && (this.monsterMc.destroy(), (this.monsterMc = null)); + var p = t.TQkyOx.ins().getActivityConfigById(this.actMonsterActID), + u = 1, + c = 0; + if (p) { + if (-1 != s) u = s; + else + for (var g in p) + if (n < p[g].value) { + u = p[g].level; + break; + } + p[u] && (c = p[u].value); + } + var d = t.NWRFmB.ins().getPayer; + if (d && d.propSet) { + var m = d.propSet.getAP_JOB(), + f = t.VlaoF.ActivityPopupConfig[this.actMonsterActID][m][u]; + f && + (f.rightpicture1 && (this.actMonsterImg1.source = f.rightpicture1 + ""), + f.rightpicture2 && (this.actMonsterImg2.source = f.rightpicture2 + ""), + f.text && (this.actMOnsterStr.textFlow = t.hETx.qYVI(t.zlkp.replace(f.text, c - n)))); + } + } else + (this.actMonsterGrp.visible = this.actMonsterBtn.visible = !1), + this.actMonsterMc && (this.actMonsterMc.destroy(), (this.actMonsterMc = null)), + this.actMonsterMc0 && (this.actMonsterMc0.destroy(), (this.actMonsterMc0 = null)), + this.monsterMc && (this.monsterMc.destroy(), (this.monsterMc = null)), + t.lEYZI.Naoc(this.actTipsGrp2); + } + } else + (this.actMonsterGrp.visible = this.actMonsterBtn.visible = !1), + this.actMonsterMc && (this.actMonsterMc.destroy(), (this.actMonsterMc = null)), + this.actMonsterMc0 && (this.actMonsterMc0.destroy(), (this.actMonsterMc0 = null)), + this.monsterMc && (this.monsterMc.destroy(), (this.monsterMc = null)), + t.lEYZI.Naoc(this.actTipsGrp2); + }), + (i.prototype.updateBestEquipTips = function () { + var e = this; + (this.actEquipIcon.source = ""), (this.actEquipProgress.text = ""), (this.actEquipImg1.source = ""), (this.actEquipImg2.source = ""), (this.actEquipNum.source = ""); + var i = !1, + n = -1, + s = -1, + a = 0, + r = -1, + o = 0, + l = t.TQkyOx.ins().getActivityInfo(this.sprotesEquipActID); + if (l) { + if (l.info) { + for (var h in l.info) { + var p = l.info[h]; + (0 == p.state || 1 == p.state) && (i = !0), 1 == p.state && p.index > s && ((s = p.index), (a = p.value)), 0 == p.state && (-1 == r || p.index < r) && ((r = p.index), (o = p.value)); + } + if (i) { + if (((this.actEquipGrp.visible = !0), (this.actEquipImgGrp.visible = !0), (this.actEquipProgress.visible = !0), (this.actEquipReceive.visible = !1), 0 != l.redDot)) { + (this.actEquipImgGrp.visible = !1), (this.actEquipReceive.visible = !0), (this.actEquipReceive.textFlow = t.hETx.qYVI("" + this.actEquipReceive.text + "")); + var u = 0; + for (var c in l.info) + if (1 == l.info[c].state) { + u = l.info[c].index; + break; + } + this.equipEffInfo[u] || + (this.equipEffMc || + ((this.equipEffMc = t.ObjectPool.pop("app.MovieClip")), + (this.equipEffMc.scaleX = this.equipEffMc.scaleY = 1), + (this.equipEffMc.touchEnabled = !1), + this.equipEffGrp.addChild(this.equipEffMc)), + (this.equipEffMc.visible = !0), + this.equipEffMc.isPlaying || + this.equipEffMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", 1, function () { + e.equipEffMc && (e.equipEffMc.destroy(), (e.equipEffMc = null)), (e.equipEffInfo[u] = !0); + })), + this.actEquipMc || + ((this.actEquipMc = t.ObjectPool.pop("app.MovieClip")), + (this.actEquipMc.scaleX = this.actEquipMc.scaleY = 1), + (this.actEquipMc.touchEnabled = !1), + (this.actEquipMc.blendMode = egret.BlendMode.ADD), + this.actEquipEffGrp.addChild(this.actEquipMc)), + this.actEquipMc.isPlaying || this.actEquipMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dclg3", -1); + } else this.actEquipMc && (this.actEquipMc.destroy(), (this.actEquipMc = null)), this.equipEffMc && (this.equipEffMc.destroy(), (this.equipEffMc = null)); + var g = t.TQkyOx.ins().getActivityConfigById(this.sprotesEquipActID), + d = 1, + m = 0; + g && (-1 != s ? ((d = s), (n = a)) : ((d = r), (n = o)), g[d] && (m = g[d].value)); + var f = t.NWRFmB.ins().getPayer; + if (f && f.propSet) { + var v = f.propSet.getAP_JOB(), + _ = t.VlaoF.ActivityPopupConfig[this.sprotesEquipActID][v][d]; + _ && + (_.leftpicture1 && (this.actEquipIcon.source = _.leftpicture1 + ""), + _.leftpicture2 && (this.actEquipNum.source = _.leftpicture2 + ""), + _.rightpicture1 && (this.actEquipImg1.source = _.rightpicture1 + ""), + _.rightpicture2 && (this.actEquipImg2.source = _.rightpicture2 + ""), + (this.actEquipProgress.text = "(" + n + "/" + m + ")")); + } + } else (this.actEquipGrp.visible = !1), this.actEquipMc && (this.actEquipMc.destroy(), (this.actEquipMc = null)), this.equipEffMc && (this.equipEffMc.destroy(), (this.equipEffMc = null)); + } + } else (this.actEquipGrp.visible = !1), this.actEquipMc && (this.actEquipMc.destroy(), (this.actEquipMc = null)), this.equipEffMc && (this.equipEffMc.destroy(), (this.equipEffMc = null)); + }), + (i.prototype.changeCrossServerBtnIcon = function () { + if (!t.ubnV.ihUJ && Main.vZzwB.specialId != t.MiOx.srvid && this.CrossServerButton.ZbzdY()) { + var e = t.ubnV.ihUJ ? 2 : 1, + i = t.CrossServerMgr.ins().getCrossServerActTab(e), + n = []; + for (var s in i) n.push(i[s]); + n.sort(this.tabSort), (this.CrossServerButton.icon = "icon_kaifuzhanchang"), (this.CrossServerButton.ingGrp.visible = !1); + var a = t.NWRFmB.ins().nkJT(); + if (a && a.propSet) { + var r = a.propSet; + r.MzYki() < 3 && ((this.CrossServerButton.timeLab.text = t.zlkp.replace(t.CrmPU.language_Common_259, 3)), (this.CrossServerButton.ingGrp.visible = !0)); + } + if (n.length > 0) + if (36 == n[0].activityid) this.crossServerMc && (this.crossServerMc.destroy(), (this.crossServerMc = null)); + else { + var o = t.TQkyOx.ins().getActivityInfo(n[0].activityid); + o && o.redDot + ? (n[0].mainIcon ? (this.CrossServerButton.icon = n[0].mainIcon + "") : "icon_kaifuzhanchang", + (this.CrossServerButton.timeLab.text = t.CrmPU.language_Common_260), + (this.CrossServerButton.ingGrp.visible = !0), + this.crossServerMc || + ((this.crossServerMc = t.ObjectPool.pop("app.MovieClip")), + (this.crossServerMc.scaleX = this.crossServerMc.scaleY = 1), + (this.crossServerMc.touchEnabled = !1), + (this.crossServerMc.blendMode = egret.BlendMode.ADD), + this.crossServerEffGrp.addChild(this.crossServerMc)), + this.crossServerMc.isPlaying || this.crossServerMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_tygq_1", -1)) + : this.crossServerMc && (this.crossServerMc.destroy(), (this.crossServerMc = null)); + } + } else this.crossServerMc && (this.crossServerMc.destroy(), (this.crossServerMc = null)); + }), + (i.prototype.tabSort = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e.activityid), + s = t.TQkyOx.ins().getActivityInfo(i.activityid); + if (n && s) { + if (e.sortact > i.sortact) return -1; + if (e.sortact < i.sortact) return 1; + } else { + if (n || s) return n && !s ? -1 : 1; + if (e.sortact < i.sortact) return -1; + if (e.sortact > i.sortact) return 1; + } + }), + i + ); + })(t.gIRYTi); + (t.MainBottomView = e), __reflect(e.prototype, "app.MainBottomView"), t.mAYZL.ins().reg(e, t.yCIt.dShUbY); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MainBtnSkin"), e; + } + return __extends(e, t), (e.prototype.updateShow = function () {}), e; + })(eui.Button); + (t.MainButton = e), __reflect(e.prototype, "app.MainButton"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._configid = 0), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "configid", { + get: function () { + return this._configid; + }, + set: function (t) { + this._configid = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setButtonInfo = function (e, i, n, s) { + void 0 === i && (i = null), + void 0 === n && (n = null), + (this.iconDisplay.source = e), + this.imageLabel && (i ? ((this.imageLabel.source = i), (this.imageLabel.visible = !0)) : (this.imageLabel.visible = !1)); + var a = t.VlaoF.PlayFunConfig[this._configid]; + if ( + (a && + (this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.tapExecute, this), + a.str && (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this))), + n && n.length && s && ((this.updateClase = egret.getDefinitionByName(s[0])), (this.updateFun = s[1]), this.updateClase && this.updateFun)) + ) { + for (var r = 0; r < n.length; r++) t.rLmMYc.addListener(n[r], this.delayUpdate, this); + (this.getRed = s), this.delayUpdate(); + } + }), + (i.prototype.delayUpdate = function () { + t.KHNO.ins().tBiJo(1e3, 1, this.updateRed, this); + }), + (i.prototype.updateRed = function () { + var t = 0; + this.isCheckOpen() && (t = this.updateClase.ins()[this.updateFun]()), + 1 == t + ? ((this.redImage.source = "common_hongdian"), (this.redImage.visible = !0)) + : 2 == t + ? ((this.redImage.source = "common_chengdian"), (this.redImage.visible = !0)) + : (this.redImage.visible = !1); + }), + (i.prototype.removeButton = function () { + (this.updateClase = null), + (this.updateFun = null), + t.rLmMYc.ins().removeAll(this), + t.KHNO.ins().removeAll(this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.tapExecute, this); + }), + (i.prototype.tapExecute = function (t) { + egret.Tween.removeTweens(this), + 1 == t && this.currentState + ? egret.Tween.get(this) + .call(function () { + this.currentState = "down"; + }) + .wait(200) + .call(function () { + (this.currentState = "up"), egret.Tween.removeTweens(this), this.onClick(); + }) + : this.onClick(); + }), + (i.prototype.getConfig = function () { + return t.VlaoF.PlayFunConfig[this._configid]; + }), + (i.prototype.ZbzdY = function () { + var e = this.getConfig(); + return t.mAYZL.ins().isCheckOpen(e.isShowNeed); + }), + (i.prototype.onClick = function () { + var e = t.VlaoF.PlayFunConfig[this._configid]; + var reLogin = function () { + var time = t.MathUtils.limit(2e3, 4e3); + t.mAYZL.ins().open(t.KFView, !1, time); + t.KHNO.ins().rqDkE( + time, + 0, + 1, + function () { + t.ubnV.ins().reLogin(); + }, + this + ); + }; + return t.ubnV.ihUJ && !e.displayType + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips139) + : (3 == this._configid && t.ckpDj.ins().sendEvent(t.MainEvent.HIDE_SKILL_TIPS), + 8 == this._configid + ? void t.bfhrJ.ins().sendGuildInfo(!0) + : (40 == this._configid && t.ckpDj.ins().sendEvent(t.CompEvent.HIDE_ICON), + 44 == this._configid && t.GameMap.isForbiddenArea + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips120) + : (66 == this._configid && reLogin(), + void ( + e.view && + t.mAYZL.ins().openSystemTips(e.isOpenNeed) && + (t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), t.mAYZL.ins().ZbzdY(e.view) ? t.mAYZL.ins().close(e.view) : t.mAYZL.ins().open(e.view, e.param)) + )))); + }), + (i.prototype.isCheckOpen = function () { + var e = t.VlaoF.PlayFunConfig[this._configid]; + return t.mAYZL.ins().isCheckOpen(e.isOpenNeed); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = t.VlaoF.PlayFunConfig[this._configid]; + if (i.str) { + var n = this.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, i.str, { + x: n.x + this.width / 2, + y: n.y + this.height / 2, + }), + (n = null); + } + } + }), + i + ); + })(eui.Button); + (t.MainButton3 = e), __reflect(e.prototype, "app.MainButton3"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.gongGaoData = []), (t.skinName = "GongGaoView"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.gongGaoData = []), + (this.tab.itemRenderer = t.MainGongGaoItemView), + this.sureBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.btn_close.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.tab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + var n = this, + s = new XMLHttpRequest(); + (s.onreadystatechange = function () { + if (4 == s.readyState && 200 == s.status) + try { + (n.gongGaoData = JSON.parse(s.responseText)), n.updateTabInfo(e[0]); + } catch (t) {} + }), + s.open("GET", Main.vZzwB.gongGaoUrl + "?platform=" + Main.vZzwB.game + "&v=" + new Date().getTime(), !0), + s.send(null), + (this.gongGaoScroller.viewport.scrollV = 0), + this.gongGaoScroller && this.gongGaoScroller.verticalScrollBar && ((this.gongGaoScroller.verticalScrollBar.autoVisibility = !1), (this.gongGaoScroller.verticalScrollBar.visible = !1)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sureBtn: + case this.btn_close: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.updateTabInfo = function (t) { + this.gongGaoData.length > 0 && ((this.tab.dataProvider = new eui.ArrayCollection(this.gongGaoData)), (this.tab.selectedIndex = t || 0), this.updateGongGaoText()); + }), + (i.prototype.onChange = function (t) { + (this.gongGaoScroller.viewport.scrollV = 0), this.updateGongGaoText(); + }), + (i.prototype.updateGongGaoText = function () { + if (this.gongGaoData.length > 0) { + var t = this.tab.dataProvider.getItemAt(this.tab.selectedIndex); + t && t.text && (this.textLab.textFlow = new egret.HtmlTextParser().parser(t.text)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this.gongGaoData = []), + this.sureBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.btn_close.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.tab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + i + ); + })(t.gIRYTi); + (t.MainGongGao = e), __reflect(e.prototype, "app.MainGongGao"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "IDCard"), (t.percentHeight = 100), (t.percentWidth = 100), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.vKruVZ(this.verificationImg, this.onClick), this.vKruVZ(this.closeImg, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.verificationImg: + window.IdCardFunction(), t.mAYZL.ins().close(this); + break; + case this.closeImg: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.verificationImg, this.onClick), this.fEHj(this.closeImg, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.MainIDCard = e), __reflect(e.prototype, "app.MainIDCard"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.recog = 0), (t.lockSkillId = 0), (t.imgAry = []), (t.verticalCenter = 160), (t.left = 0), (t.touchEnabled = !1), (t.skinName = "MainLockSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.HFTK(t.NGcJ.ins().postUpdateLock, this.updateState), + this.HFTK(t.Nzfh.ins().postUpdateTarget, this.updateHp), + this.vKruVZ(this.iconImage, this.clickFunction), + this.vKruVZ(this.hpBar, this.clickFunction); + }), + (i.prototype.clickFunction = function (e) { + if (e.currentTarget == this.iconImage) this.updateState([this.recog, 0]), t.Nzfh.ins().postUpdateTarget(0); + else { + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + var i = t.NWRFmB.ins().getCharRole(this.recog); + i && t.caJqU.ins().sendQueryOthersEquips(i.propSet.getACTOR_ID()); + } + }), + (i.prototype.updateHp = function (t) { + this.updateState([t, this.lockSkillId]); + }), + (i.prototype.updateState = function (e) { + var i = e[0], + n = e[1]; + (t.NWRFmB.ins().getPayer.lockTarget = i), (t.NWRFmB.ins().getPayer.lockSkillId = n), (this.recog = i), (this.lockSkillId = n); + var s = t.NWRFmB.ins().getCharRole(i); + if (s || n) { + if (((this.currentState = "nOpen"), (this.charName.visible = !0), n)) + if (1000000001 == n) this.iconImage.source = "skillicon_ty7"; + else { + var a = t.VlaoF.SkillsLevelConf[n][1]; + this.iconImage.source = a ? a.skillName : "m_suoding"; + } + else this.iconImage.source = "m_suoding"; + s + ? ((t.mAYZL.gamescene.map.selectImg.visible = !0), + s.propSet.getRace() == t.ActorRace.Human + ? (this.hpBar.labelFunction = function (e, i) { + return t.CrmPU.language_Lock_Text0; + }) + : (this.hpBar.labelFunction = function (t, e) { + return t + "/" + e; + }), + (this.hpBar.maximum = s.propSet.getMaxHp()), + (this.hpBar.value = Math.min(s.propSet.getHp(), s.propSet.getMaxHp())), + s.isCharRole && t.GameMap.aaCannotSeeName ? (this.charName.text = t.CrmPU.language_Lock_Text2) : (this.charName.text = s.charName), + (this.hpBar.visible = !0)) + : ((this.charName.text = t.CrmPU.language_Lock_Text1), (this.hpBar.visible = !1), (t.mAYZL.gamescene.map.selectImg.visible = !1)); + } else (t.mAYZL.gamescene.map.selectImg.visible = !1), (this.iconImage.source = "m_lock"), (this.currentState = "nWalk"), (this.hpBar.visible = !1), (this.charName.visible = !1); + }), + (i.prototype.getImage = function () { + return this.imgAry.pop() || new eui.Image(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), this.$onClose(), this.fEHj(this.iconImage, this.clickFunction), this.fEHj(this.hpBar, this.clickFunction); + }), + i + ); + })(t.gIRYTi); + (t.MainLockView = e), __reflect(e.prototype, "app.MainLockView"), t.mAYZL.ins().reg(e, t.yCIt.dShUbY); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.isShowActivityIcon = !0), e; + } + return ( + __extends(e, t), + (e.ins = function () { + return t.ins.call(this); + }), + e + ); + })(t.BaseClass); + (t.MainManager = e), __reflect(e.prototype, "app.MainManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.onEnter = function () { + e.prototype.onEnter.call(this), + FzTZ.reporting(t.ReportDataEnum.ENTERMAIN, {}, null, !1), + this.addLayerAt(t.yCIt.cvmJ, 1), + this.addLayerAt(t.yCIt.dShUbY, 3), + this.addLayerAt(t.yCIt.CtcxUT, 4), + this.addLayerAt(t.yCIt.LjbkQx, 6), + this.addLayerAt(t.yCIt.UIupV, 7), + this.addLayerAt(t.yCIt.VdZy, 8), + this.addLayerAt(t.yCIt.tKOC, 9), + t.ubnV.ins().isNewRole && ((t.ubnV.ins().isNewRole = !1), t.mAYZL.ins().open(t.WelcomeView2)), + t.mAYZL.ins().open(t.GameSceneView), + t.mAYZL.ins().open(t.MapMiniView), + KdbLz.qOtrbE.iFbP ? t.mAYZL.ins().open(t.PhoneMainView) : t.mAYZL.ins().open(t.MainBottomView), + KdbLz.qOtrbE.iFbP ? t.ubnV.ihUJ || t.mAYZL.ins().open(t.MainTaskWin) : t.mAYZL.ins().open(t.MainTaskWin), + t.mAYZL.ins().open(t.MainBottomNotice), + t.AHhkf.ins().DHzYBI(), + t.bqQT.ins().postLoginInit(), + egret.MainContext.instance.stage.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchPlaySound, this); + }), + (i.prototype.onTouchPlaySound = function () { + egret.MainContext.instance.stage.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchPlaySound, this), t.OSzbc.ins().Uvxk(t.OSzbc.WINDOW); + }), + (i.prototype.onExit = function () { + e.prototype.onExit.call(this); + }), + i + ); + })(t.BaseScene); + (t.MainScene = e), __reflect(e.prototype, "app.MainScene"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.touchEnabled = !0), e; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.img.source = this.data.img), + this.red && this.data.redadd && (this.red.updateShowFunctions = this.data.redadd), + this.red && this.data.redShow && (this.red.showMessages = this.data.redShow); + }), + (e.prototype.$onAddToStage = function (e, i) { + this.VoZqXH(this, this.mouseMove), this.EeFPm(this, this.mouseMove), t.prototype.$onAddToStage.call(this, e, i); + }), + (e.prototype.$onRemoveFromStage = function () { + this.lbpdAJ(this, this.mouseMove), this.lvpAF(this, this.mouseMove), t.prototype.$onRemoveFromStage.call(this); + }), + (e.prototype.mouseMove = function (t) { + t.type == mouse.MouseEvent.MOUSE_OUT ? (this.selectImg.visible = !1) : t.type == mouse.MouseEvent.MOUSE_OVER && (this.selectImg.visible = !0); + }), + e + ); + })(t.BaseItemRender); + (t.MainSelectRender = e), __reflect(e.prototype, "app.MainSelectRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._index = -1), (t.skinName = "skillItemSkin"), t.init(), t; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + this.vKruVZ(this, this.onClick); + }), + (i.prototype.playSkillKeyEff = function (e) { + var i = this; + this.skillMC || ((this.skillMC = new t.MovieClip()), (this.skillMC.touchEnabled = !1), (this.skillMC.x = 27), (this.skillMC.y = 27), (this.skillMC.visible = !0), this.addChild(this.skillMC)), + this.skillMC.playFile(ZkSzi.RES_DIR_EFF + e, 1, function () { + t.lEYZI.Naoc(i.skillMC), (i.skillMC = null); + }); + }), + (i.prototype.play3 = function (t, e, i) { + if (20 >= e) return this.stopTween(), void this.playSkillKeyEff("jnjh1"); + if (i) { + this.rect.visible = !0; + var n = 55 * (e / t); + this.rect.height = n > 55 ? 55 : n; + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this, this.onClick); + }), + (i.prototype.onClick = function (e) { + var i = this.TYPES, + n = this.ID; + if (i && 1 == i) { + var s = t.NWRFmB.ins().getPayer.getUserSkill(n); + if (s && egret.getTimer() > s.dwResumeTick) { + if (s.isDisable) { + var a = t.VlaoF.SkillConf[s.nSkillId]; + a && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips110, a.name)); + } else { + -1 != t.qTVCL.ins().stopBreakSkillAry.indexOf(n) && t.qTVCL.ins().YFOmNj(), (t.EhSWiR.m_clickSkillId = n), t.NGcJ.ins().post_playSkillMc("skillcd", n); + } + } else { + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips1); + } + } else if (0 == i) { + var r = t.ThgMu.ins().getItemById(n); + r && (console.log("ID:" + r.wItemId), t.pWFTj.ins().useItem(r.series, r.wItemId)); + } + }), + (i.prototype.playTween3 = function (t, e, i) { + void 0 === i && (i = !0), this.play3(t, e, i); + }), + (i.prototype.stopTween = function () { + this.rect.visible = !1; + }), + (i.prototype.setSkillImg = function (t) { + this.skillIcon.source = t; + }), + (i.prototype.getSkillImg = function () { + return this.skillIcon.source; + }), + Object.defineProperty(i.prototype, "keyIndex", { + get: function () { + return this._index; + }, + set: function (t) { + this._index = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setCount = function (t) { + this.itemCount.text = t; + }), + (i.prototype.setCountState = function (t) { + this.itemCount.visible = t; + }), + i + ); + })(t.BaseItemRender); + (t.MainSkillIconItem = e), __reflect(e.prototype, "app.MainSkillIconItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.petState = 0), (t.followCd = 0), (t.left = 4), (t.top = 0), (t.skinName = "MainTopLeftSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.HFTK(t.Nzfh.ins().postUpdateState, this.updateState), + this.HFTK(t.Nzfh.ins().post_petChange, this.updatePet), + this.HFTK(t.PetSettingMgr.ins().postPetNum, this.updatePet), + this.HFTK(t.Nzfh.ins().post_g_0_10, this.updateTime), + this.HFTK(t.edHC.ins().post_26_28, this.updatePop), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.updatePop), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.updatePopView), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updatePopView), + this.vKruVZ(this.petFollow, this.onClick), + this.vKruVZ(this.petAck, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.petFollow: + this.followCd <= 0 + ? ((this.followCd = 100), (this.followRect.width = 93), t.PetSettingMgr.ins().send_34_2(), t.KHNO.ins().tBiJo(100, 0, this.updateFollowCd, this)) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips105); + break; + case this.petAck: + t.KHNO.ins().RTXtZF(this.updateActCd, this) + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips105) + : (t.KHNO.ins().tBiJo(1e3, 1, this.updateActCd, this), + t.PetSettingMgr.ins().send_34_1(1 == this.petState ? 2 : 1), + (this.petAck.label = 1 == this.petState ? t.CrmPU.language_Common_135 : t.CrmPU.language_Common_136), + (this.petState = 1 == this.petState ? 2 : 1)); + } + }), + (i.prototype.updateFollowCd = function () { + var e = this; + (this.followCd -= 1), + (this.followRect.visible = !0), + (this.followRect.width = this.followRect.width - +(0.93).toFixed(1)), + 0 == this.followCd && + ((this.followRect.visible = !1), + (this.petKuang.visible = !0), + egret.setTimeout( + function () { + e.petKuang.visible = !1; + }, + this, + 100 + ), + t.KHNO.ins().remove(this.updateFollowCd, this)); + }), + (i.prototype.updateActCd = function () { + t.KHNO.ins().remove(this.updateActCd, this); + }), + (i.prototype.updatePop = function () { + t.edHC.ins().getPopViewData(); + }), + (i.prototype.updatePopView = function () { + var e = t.NWRFmB.ins().getPayer; + if (e) + for (var i in t.edHC.ins().levelData) { + var n = t.edHC.ins().levelData[i]; + e.propSet.mBjV() == n.lvLim && 0 == n.isPop && ((n.isPop = 1), t.mAYZL.ins().open(n.view, n.id)); + } + }), + (i.prototype.updateTime = function () { + if (((this.labelTime.text = t.DateUtils.getFormatBySecond(t.GlobalData.serverTime / 1e3, t.DateUtils.TIME_FORMAT_15)), t.edHC.ins().timeData)) { + var e = new Date(t.GlobalData.serverTime); + for (var i in t.edHC.ins().timeData) { + var n = t.edHC.ins().timeData[i], + s = n.timeLim[0], + a = n.timeLim[1]; + s == e.getHours() && a == e.getMinutes() && 0 == n.isPop && ((n.isPop = 1), t.mAYZL.ins().open(n.view, n.id)); + } + } + }), + (i.prototype.updatePet = function () { + this.petGrp.visible = !1; + var e = t.NWRFmB.ins().getPayer; + e && + e.propSet && + t.PetSettingMgr.ins().petNum > 0 && + (e.propSet.getPetState() > 0 && + ((this.petState = e.propSet.getPetState()), + 1 == this.petState ? (this.petAck.label = t.CrmPU.language_Common_136) : 2 == this.petState && (this.petAck.label = t.CrmPU.language_Common_135)), + this.petState <= 0 && (t.PetSettingMgr.ins().send_34_1(2), (this.petAck.label = t.CrmPU.language_Common_135)), + (this.petGrp.visible = !0)); + }), + (i.prototype.updateState = function (e) { + var i = e[0], + n = e[1]; + i == t.EntityAction.WALK ? (this.currentState = "nWalk") : i == t.EntityAction.RUN ? (this.currentState = "nRun") : (this.currentState = "nStand"), (this.stateArrow.rotation = 45 * n); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.petFollow, this.onClick), this.fEHj(this.petAck, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.MainTopLeftView = e), __reflect(e.prototype, "app.MainTopLeftView"), t.mAYZL.ins().reg(e, t.yCIt.dShUbY); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.petNum = 0), (i.sysId = t.jDIWJt.petSetting), i.YrTisc(1, i.postPetNum), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_34_1 = function (t) { + var e = this.MxGiq(1); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.postPetNum = function (t) { + this.petNum = t.readByte(); + }), + (i.prototype.send_34_2 = function () { + var t = this.MxGiq(2); + this.evKig(t); + }), + (i.prototype.send_34_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + i + ); + })(t.DlUenA); + (t.PetSettingMgr = e), __reflect(e.prototype, "app.PetSettingMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.petNum = 0), (i.peiTypeList = {}), (i.sysId = t.jDIWJt.petSetting2), i.YrTisc(1, i.post_35_1), i.YrTisc(2, i.post_35_2), i.YrTisc(3, i.post_35_3), i.YrTisc(4, i.post_35_4), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_35_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_35_1 = function (e) { + t.ObjectPool.wipe(this.peiTypeList); + for (var i, n, s, a = e.readInt(), r = 0; a > r; r++) + (i = e.readUnsignedShort()), + (n = e.readUnsignedShort()), + (s = t.DateUtils.formatMiniDateTime(e.readInt())), + (this.peiTypeList[n] = { + id: i, + type: n, + time: s, + }); + }), + (i.prototype.send_35_2 = function (t) { + var e = this.MxGiq(2); + e.writeUnsignedInt(t), this.evKig(e); + }), + (i.prototype.post_35_2 = function (e) { + var n = e.readUnsignedShort(), + s = e.readUnsignedShort(), + a = t.DateUtils.formatMiniDateTime(e.readInt()); + i.ins().peiTypeList[s] = { + id: n, + type: s, + time: a, + }; + }), + (i.prototype.post_35_3 = function (t) { + var e = (t.readUnsignedShort(), t.readUnsignedShort()); + delete i.ins().peiTypeList[e]; + }), + (i.prototype.post_35_4 = function (e) { + var n = e.readUnsignedShort(), + s = e.readUnsignedShort(), + a = t.DateUtils.formatMiniDateTime(e.readInt()); + i.ins().peiTypeList[s] = { + id: n, + type: s, + time: a, + }; + }), + i + ); + })(t.DlUenA); + (t.PetSettingTwoMgr = e), __reflect(e.prototype, "app.PetSettingTwoMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.payTween = function (t, e, i, n) { + egret.Tween.removeTweens(this), + (this.point = t), + (this.point1 = e), + (this.point2 = i), + t && + e && + i && + n && + ((this.visible = !0), + egret.Tween.get(this) + .to( + { + factor: 1, + }, + n + ) + .call(this.moveOver, this)); + }), + (e.prototype.clsoeTween = function () { + this.moveOver(); + }), + Object.defineProperty(e.prototype, "factor", { + get: function () { + return 0; + }, + set: function (t) { + (this.x = (1 - t) * (1 - t) * this.point.x + 2 * t * (1 - t) * this.point1.x + t * t * this.point2.x), + (this.y = (1 - t) * (1 - t) * this.point.y + 2 * t * (1 - t) * this.point1.y + t * t * this.point2.y); + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.moveOver = function () { + egret.Tween.removeTweens(this), (this.visible = !1); + }), + e + ); + })(eui.Image); + (t.TweenImage = e), __reflect(e.prototype, "app.TweenImage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "WelcomeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var id = 3 >= t.GlobalData.sectionOpenDay ? 4 : t.MathUtils.limitInteger(2, 4); + this.welcomeBG.source = "huanying_bg_" + id + "_png"; + if (1 < id) { + switch (id) { + case 2: + this.startBtn.y = 240; + break; + case 3: + this.startBtn.y = 290; + break; + case 4: + this.closeBtn.y = 80; + this.startBtn.x = 497; + this.startBtn.y = 285; + } + switch (id) { + case 2: + case 3: + this.startBtn.x = 450; + this.closeBtn.y = 23; + } + switch (id) { + case 2: + case 3: + case 4: + this.closeBtn.x = 680; + this.welcomeBG.x = 25; + } + } + this.vKruVZ(this, this.onClick), + (this.effMC = t.ObjectPool.pop("app.MovieClip")), + (this.effMC.x = this.startBtn.x - 158), + (this.effMC.y = this.startBtn.y - 81), + (this.effMC.blendMode = egret.BlendMode.ADD), + this.startBtn.parent.addChild(this.effMC), + this.effMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kslc", -1); + }), + (i.prototype.onClick = function () { + t.KHNO.ins().removeAll(this), FzTZ.reporting(t.ReportDataEnum.ONCLICK_WELCOME, {}, null, !1), this.fEHj(this, this.onClick), t.mAYZL.ins().close(this); + if (!t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask)) { + t.CautionView.show( + "勇士,是否开启新人【任务引导】?\n\n如果想体验原汁原味的传奇,请点取消!\n(您还可以在系统设置中开启)", + function () { + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask, 1); + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask, !0); + if (!t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound)) { + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound, 1); + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound, !0); + t.AHhkf.ins().setBgOn(1); + } + }, + this + ); + } + }), + i + ); + })(t.gIRYTi); + (t.WelcomeView = e), __reflect(e.prototype, "app.WelcomeView"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.time = 4), (t.horizontalCenter = 0), (t.verticalCenter = 0), (t.skinName = "Welcome2Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.percentHeight = 100), (this.percentWidth = 100), t.bqQT.ins().loadPreload(), this.vKruVZ(this, this.onClick); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.timeLabel.text = ""; + }), + (i.prototype.udpateTime = function () { + this.time--, (this.timeLabel.text = t.zlkp.replace(t.CrmPU.language_Common_170, this.time)), 0 == this.time && this.onClick(null); + }), + (i.prototype.onClick = function (e) { + t.KHNO.ins().removeAll(this), FzTZ.reporting(t.ReportDataEnum.ONCLICK_WELCOME2, {}, null, !1), this.fEHj(this, this.onClick), t.mAYZL.ins().close(this), t.TKZUv.ins().s_255_3(); + t.AHhkf.ins().Uvxk("npc_welcome_mp3"); + }), + i + ); + })(t.gIRYTi); + (t.WelcomeView2 = e), __reflect(e.prototype, "app.WelcomeView2"), t.mAYZL.ins().reg(e, t.yCIt.tKOC); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), (s.eAvIy = [t.AchievementMgr.ins().post_AchievemnetRedPot]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + return t.AchievementMgr.ins().pageReds.length > 0 ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.AchievementRuleIcon = e), __reflect(e.prototype, "app.AchievementRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.TQkyOx.ins().post_25_3]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge); + return e && e.info.sum ? (e.info.state < 7 ? !1 : !0) : !1; + }), + (i.prototype.onClick = function () { + t.RechargeMgr.ins().onPay(""); + }), + i + ); + })(t.RuleIconBase); + (t.ActivityChargeRuleIcon = e), __reflect(e.prototype, "app.ActivityChargeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var i = t.ActivityCopiesMgr.ins().getFbTab(), + n = []; + for (var s in i) n.push(i[s]); + if ((n.sort(this.tabSort), n.length > 0)) + if (3 == n[0].activityid || 5 == n[0].activityid) this.tar.ingGrp && (this.tar.ingGrp.visible = !1), (this.tar.icon = "icon_activity"); + else { + this.tar.icon = n[0].mainIcon + ""; + var a = t.TQkyOx.ins().getActivityInfo(n[0].activityid); + this.tar.ingGrp && (a && a.redDot ? ((this.tar.ingGrp.visible = !0), this.tar.timeLab && (this.tar.timeLab.text = "进行中")) : (this.tar.ingGrp.visible = !1)); + } + return e.prototype.checkShowIcon.call(this); + }), + (i.prototype.tabSort = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e.activityid), + s = t.TQkyOx.ins().getActivityInfo(i.activityid); + if (n && s) { + if (e.sortact > i.sortact) return -1; + if (e.sortact < i.sortact) return 1; + } else { + if (n || s) return n && !s ? -1 : 1; + if (e.sortact < i.sortact) return -1; + if (e.sortact > i.sortact) return 1; + } + }), + (i.prototype.checkShowRedPoint = function () { + var e = 0, + i = t.TQkyOx.ins().getActivityConfigById(3), + n = t.TQkyOx.ins().getAppraisalRed(3); + if (n && i && i.buttoncolor) { + if (1 == i.buttoncolor) return 1; + e = i.buttoncolor; + } + var s = t.TQkyOx.ins().pActRed, + a = t.TQkyOx.ins().actRed; + for (var r in s) { + if (1 == s[r]) return 1; + 2 == s[r] && (e = 2); + } + for (var o in a) { + if (1 == a[o]) return 1; + 2 == a[o] && (e = 2); + } + return e; + }), + i + ); + })(t.RuleIconBase); + (t.ActivityCopiesRuleIcon = e), __reflect(e.prototype, "app.ActivityCopiesRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.TQkyOx.ins().post_25_3]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + var e = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge); + return e && e.redDot ? 1 : 0; + }), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_FIRST_CHARGE_TIPS); + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq"; + }), + (i.prototype.checkShowIcon = function () { + var e = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge); + if (e) { + if (!e.info.sum) return !0; + if (e.info.sum && e.info.state < 7) return !0; + } + return !1; + }), + i + ); + })(t.RuleIconBase); + (t.ActivityFirstChargeRuleIcon = e), __reflect(e.prototype, "app.ActivityFirstChargeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), (s.eAvIy = [t.edHC.ins().post_26_8, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = this.getNextActivityInfo(); + return i + ? ((this.tar.icon = i.iconName), + this.tar.ingGrp && (this.tar.ingGrp.visible = !0), + (this.countdownTime = i.time + egret.getTimer()), + this.updateCountdownTime(), + this.countdownTime > 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this)), + !0) + : !1; + }), + (i.prototype.onClick = function () { + var e = this.getConfig(); + e.view && this.isCheckOpen() && (t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), t.mAYZL.ins().ZbzdY(e.view) ? t.mAYZL.ins().close(e.view) : t.mAYZL.ins().open(e.view, this.param)); + }), + (i.prototype.updateCountdownTime = function () { + var e = Math.floor((this.countdownTime - egret.getTimer()) / 1e3), + i = ""; + (i = e >= t.DateUtils.SECOND_PER_HOUR ? Math.ceil(e / t.DateUtils.SECOND_PER_HOUR) + t.CrmPU.language_Time_Hours2 : Math.ceil(e / t.DateUtils.SECOND_PER_MUNITE) + t.CrmPU.language_Time_Min), + (this.tar.timeLab.text = t.zlkp.replace(t.CrmPU.language_Common_251, i)), + this.countdownTime <= 0 && t.KHNO.ins().remove(this.updateCountdownTime, this); + }), + (i.prototype.getNextActivityInfo = function () { + var e, + i = new Date(t.GlobalData.serverTime), + n = i.getHours(), + s = i.getMinutes(), + a = i.getSeconds(), + r = i.getDay() || 7, + o = n * t.DateUtils.MS_PER_HOUR + s * t.DateUtils.MS_PER_MINUTE + a * t.DateUtils.MS_PER_SECOND, + l = t.VlaoF.ActivityAscriptionConf; + for (var h in l) { + var p = l[h]; + if (1 == p.herald && !t.mAYZL.ins().isCheckClose(p.closelimit)) { + var u = t.TQkyOx.ins().getActivitConf(p.activityid); + if (u) { + if (u instanceof t.ActivitiesConf); + else if ( + u instanceof t.PActivitiesConf && + !t.mAYZL.ins().isCheckOpen({ + openDay: u.OpenSrvDate, + level: u.Level, + zsLevel: u.ZSLevel, + }) + ) + continue; + if (u.TimeDetail && 3 == u.TimeType) + for (var c in u.TimeDetail) { + var g = u.TimeDetail[c].StartTime, + d = g.split("-"), + m = d[1].split(":"), + f = parseInt(m[0]) * t.DateUtils.MS_PER_HOUR + parseInt(m[1]) * t.DateUtils.MS_PER_MINUTE, + v = 0; + 0 == +d[0] + ? ((v = f - o), 0 >= v && (v += t.DateUtils.MS_PER_DAY)) + : ((v = parseInt(d[0]) * t.DateUtils.MS_PER_DAY + f - (r * t.DateUtils.MS_PER_DAY + o)), 0 >= v && (v += 7 * t.DateUtils.MS_PER_DAY)), + (!e || v < e.time) && + ((this.param = p.activityid), + (e = { + time: v, + activitId: p.activityid, + iconName: p.mainIcon, + })); + } + } + } + } + return e; + }), + i + ); + })(t.RuleIconBase); + (t.ActivityNoticeRuleIcon = e), __reflect(e.prototype, "app.ActivityNoticeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.edHC.ins().post_26_28, + t.edHC.ins().post_26_45, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + this.updateDisposableredpoint(); + var e = this.getConfig(); + if (e && e.param) { + var n = e.param[0], + s = t.VlaoF.ActivityPayConf[n]; + for (var a in s) { + var r = s[a], + o = t.TQkyOx.ins().getActivityInfo(r.actId); + if (o && o.info) { + if (!t.mAYZL.ins().isCheckOpen(r.openlimit)) continue; + if (o && 0 != o.redDot) return 1; + if (1 == i.disposableredpointObj[r.actId]) return 1; + if (r.redpoint) return r.redpoint; + } + } + } + return 0; + }), + (i.prototype.checkShowIcon = function () { + var e = [], + i = (t.GlobalData.sectionOpenDay, this.getConfig()); + if (i && i.param) { + var n = i.param[0], + s = t.VlaoF.ActivityPayConf[n]; + for (var a in s) { + var r = t.TQkyOx.ins().getActivityInfo(s[a].actId); + r && t.mAYZL.ins().isCheckOpen(s[a].openlimit) && e.push(s[a]); + } + } + return 0 == e.length && t.mAYZL.ins().ZbzdY(i.view) && t.mAYZL.ins().close(i.view), e.length > 0; + }), + (i.prototype.updateDisposableredpoint = function () { + var e = this.getConfig(); + if (e && e.param) { + var n = e.param[0], + s = t.VlaoF.ActivityPayConf[n]; + for (var a in s) { + var r = s[a]; + t.mAYZL.ins().isCheckOpen(r.openlimit) && + (r.disposableredpoint1 && t.mAYZL.ins().isCheckOpen(r.disposableredpoint1) && !t.mAYZL.ins().isCheckOpen(r.disposableredpoint2) + ? 2 != i.disposableredpointObj[r.actId] && (i.disposableredpointObj[r.actId] = 1) + : (i.disposableredpointObj[r.actId] = 0)); + } + } + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq_1"; + }), + (i.disposableredpointObj = {}), + i + ); + })(t.RuleIconBase); + (t.ActivityPayRuleIcon = e), __reflect(e.prototype, "app.ActivityPayRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.secondChargeId = 10274), + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.TQkyOx.ins().post_25_3]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + var e = t.TQkyOx.ins().getActivityInfo(this.secondChargeId); + return e && e.redDot ? 1 : 0; + }), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_SECOND_CHARGE_TIPS); + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq"; + }), + (i.prototype.checkShowIcon = function () { + var e = t.TQkyOx.ins().getActivityInfo(this.secondChargeId); + return e && e.info && e.info.sum > 0 && e.info.state < 1 ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.ActivitySecondChargeRuleIcon = e), __reflect(e.prototype, "app.ActivitySecondChargeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.Nzfh.ins().postPlayerChange, + t.Nzfh.ins().post_g_0_3, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = t.TQkyOx.ins().warActId; + if (0 != e) { + var i = t.TQkyOx.ins().getActivityInfo(e); + if (i) return !0; + t.mAYZL.ins().ZbzdY(t.ActivityWarView) && t.mAYZL.ins().close(t.ActivityWarView); + } + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.TQkyOx.ins().warActId, + i = t.TQkyOx.ins().getActivityInfo(e); + if (i && i.redDot > 0) return 1; + for (var n in t.VlaoF.Activity15Config) { + var s = t.TQkyOx.ins().getActivityInfo(Number(n)); + if (s && s.redDot > 0) return 1; + } + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.ActivityWarRuleIcon = e), __reflect(e.prototype, "app.ActivityWarRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.TQkyOx.ins().post_25_3]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.Nzfh.ins().postPlayerChange, + t.Nzfh.ins().post_g_0_3, + t.edHC.ins().post_26_83, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !0; + }), + (i.prototype.checkShowRedPoint = function () { + return t.ActivityWlelfareData.ins().getAllRedDotState(); + }), + i + ); + })(t.RuleIconBase); + (t.ActivityWlelfareRuleIcon = e), __reflect(e.prototype, "app.ActivityWlelfareRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), + (s.eAvIy = [t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_2, t.ThgMu.ins().post_8_3, t.ThgMu.ins().post_8_4, t.ThgMu.ins().post_8_10, t.Nzfh.ins().post_dimensionalKey]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + return t.ThgMu.redPointArr.length > 0 ? 1 : t.ThgMu.yellowPointArr.length > 0 ? 2 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.BagRuleIcon = e), __reflect(e.prototype, "app.BagRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), (s.eAvIy = [t.UyfaJ.ins().post_49_1, t.Nzfh.ins().postPlayerChange]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + var e = t.UyfaJ.ins().isShowRed(); + return e; + }), + i + ); + })(t.RuleIconBase); + (t.BossRuleIcon = e), __reflect(e.prototype, "app.BossRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel, t.Nzfh.ins().post_0_75]), (s.eAvIy = [t.Nzfh.ins().post_0_75, t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return window.isMicro && !KdbLz.qOtrbE.iFbP && 0 == t.Nzfh.ins().microReceive ? e.prototype.checkShowIcon.call(this) : (t.mAYZL.ins().close(t.CommonMicroWin), !1); + }), + (i.prototype.checkShowRedPoint = function () { + return window.isMicro && 0 == t.Nzfh.ins().microReceive ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.CommonMicroRuleIcon = e), __reflect(e.prototype, "app.CommonMicroRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.Nzfh.ins().post_updateZsLevel, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var i = t.ubnV.ihUJ ? 2 : 1, + n = t.CrossServerMgr.ins().getCrossServerActTab(i), + s = []; + for (var a in n) s.push(n[a]); + s.sort(this.tabSort), (this.tar.icon = "icon_kaifuzhanchang"), this.tar.ingGrp && (this.tar.ingGrp.visible = !1); + var r = t.NWRFmB.ins().nkJT(); + if (r && r.propSet) { + var o = r.propSet; + o.MzYki() < 3 && this.tar.ingGrp && ((this.tar.timeLab.text = t.zlkp.replace(t.CrmPU.language_Common_259, 3)), (this.tar.ingGrp.visible = !0)); + } + if (s.length > 0) + if (36 == s[0].activityid) this.tar.icon = "icon_kaifuzhanchang"; + else { + var l = t.TQkyOx.ins().getActivityInfo(s[0].activityid); + l && + l.redDot && + (s[0].mainIcon ? (this.tar.icon = s[0].mainIcon + "") : "icon_kaifuzhanchang", + this.tar.ingGrp && ((this.tar.timeLab.text = t.CrmPU.language_Common_260), (this.tar.ingGrp.visible = !0))); + } + return e.prototype.checkShowIcon.call(this); + }), + (i.prototype.tabSort = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e.activityid), + s = t.TQkyOx.ins().getActivityInfo(i.activityid); + if (n && s) { + if (e.sortact > i.sortact) return -1; + if (e.sortact < i.sortact) return 1; + } else { + if (n || s) return n && !s ? -1 : 1; + if (e.sortact < i.sortact) return -1; + if (e.sortact > i.sortact) return 1; + } + }), + (i.prototype.checkShowRedPoint = function () { + var e = 0; + return (e = t.CrossServerMgr.ins().getCrossServerActRed()); + }), + i + ); + })(t.RuleIconBase); + (t.CrossServerActRuleIcon = e), __reflect(e.prototype, "app.CrossServerActRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.edHC.ins().post_26_85]), (s.eAvIy = [t.UyfaJ.ins().post_49_1, t.Nzfh.ins().postPlayerChange, t.edHC.ins().post_26_85]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if ((t.KHNO.ins().remove(this.updateCumulOnlineTime, this), !e.prototype.checkShowIcon.call(this))) return !1; + var i = t.edHC.ins().cumulativeOnlineData; + if (!i) return t.edHC.ins().send_26_70(), !1; + var n = t.VlaoF.OnlineTimeRewardConfig, + s = n[1], + a = n[2], + r = !0; + for (var o in s) + if (0 == t.MathUtils.getValueAtBit(i.received, s[o].id)) { + r = !1; + break; + } + for (var o in a) + if (0 == t.MathUtils.getValueAtBit(i.received, a[o].id)) { + r = !1; + break; + } + if (r) return !1; + if ((this.tar.ingGrp && (this.tar.ingGrp.visible = !0), t.edHC.ins().getRedCumulativeOnline() > 0)) this.tar.timeLab.text = t.CrmPU.language_Common_223; + else { + this.tar.timeLab.text = t.CrmPU.language_Common_228; + for (var o in s) + if (0 == t.MathUtils.getValueAtBit(i.received, s[o].id)) { + var l = i.time + Math.floor((egret.getTimer() - i.time2) / 1e3); + (this.cumulOnlineTime = s[o].onlineTimes - l), this.updateCumulOnlineTime(), this.cumulOnlineTime > 0 && t.KHNO.ins().tBiJo(1e3, 0, this.updateCumulOnlineTime, this); + break; + } + } + return !0; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.edHC.ins().getRedCumulativeOnline(); + return e; + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq"; + }), + (i.prototype.updateCumulOnlineTime = function () { + var e = t.DateUtils.getFormatBySecond(this.cumulOnlineTime, t.DateUtils.TIME_FORMAT_12); + (this.tar.timeLab.text = t.zlkp.replace(t.CrmPU.language_Common_224, e)), + this.cumulOnlineTime <= 0 && (t.KHNO.ins().remove(this.updateCumulOnlineTime, this), t.edHC.ins().send_26_70()), + this.cumulOnlineTime--; + }), + i + ); + })(t.RuleIconBase); + (t.CumulativeOnlineRuleIcon = e), __reflect(e.prototype, "app.CumulativeOnlineRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return e.prototype.checkShowIcon.call(this) + ? (t.KHNO.ins().remove(this.updateShowRedPoint, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateShowRedPoint, this), this.updateShowRedPoint(), !0) + : !1; + }), + (i.prototype.checkShowRedPoint = function () { + return t.UyfaJ.ins().getRedDimensionBoss(); + }), + (i.prototype.updateShowRedPoint = function () { + this.delayUpdate(); + }), + i + ); + })(t.RuleIconBase); + (t.DimensionBossRuleIcon = e), __reflect(e.prototype, "app.DimensionBossRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_DONATION_TIPS); + }), + i + ); + })(t.RuleIconBase); + (t.DonationRankRuleIcon = e), __reflect(e.prototype, "app.DonationRankRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + if ((t.KHNO.ins().remove(this.updateCountDown, this), !e.prototype.checkShowIcon.call(this))) return !1; + var i = new Date(t.GlobalData.serverTime), + n = i.getMonth() + 1, + s = i.getDate(); + return t.KHNO.ins().tBiJo(1e3, 0, this.updateCountDown, this), this.updateCountDown(), !0; + }), + (i.prototype.onClick = function () { + window.open(window.webUrl); + }), + (i.prototype.updateCountDown = function () { + var e = new Date(t.GlobalData.serverTime), + i = e.getMonth() + 1, + n = e.getDate(); + (11 != i || 8 > n || n > 14) && this.updateShow(); + }), + i + ); + })(t.RuleIconBase); + (t.DoubleElevenRuleIcon = e), __reflect(e.prototype, "app.DoubleElevenRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + return e.call(this, t, i) || this; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + var e = t.NWRFmB.ins().getPayer; + e && + window.feedbackFunction({ + uid: t.MiOx.openID, + rolename: e.propSet.getName(), + }); + }), + (i.prototype.checkShowIcon = function () { + return !1; + }), + i + ); + })(t.RuleIconBase); + (t.FeedbackRuleIcon = e), __reflect(e.prototype, "app.FeedbackRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.countMessage = [t.Nzfh.ins().postPlayerChange]), (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), s; + } + return __extends(i, e), i; + })(t.RuleIconBase); + (t.FlyShoesRuleIcon = e), __reflect(e.prototype, "app.FlyShoesRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), + (s.eAvIy = [t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_2, t.ThgMu.ins().post_8_4, t.Nzfh.ins().postPlayerChange, t.ForgeMgr.ins().post_19_1]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + var e = t.VlaoF.MergeTotal; + for (var i in e) { + var n = t.ForgeMgr.ins().getOneLvRed(e[i].id); + if (n) return 1; + } + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.ForgeRuleIcon = e), __reflect(e.prototype, "app.ForgeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.KWGP.ins().postReqList]), s; + } + return ( + __extends(i, e), + (i.prototype.delayUpdateShow = function () { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: n, + ZbzdY: !0, + }), + e.prototype.delayUpdateShow.call(this); + }), + (i.prototype.checkShowIcon = function () { + t.ckpDj.ins().addEvent(t.CompEvent.HIDE_ICON, this.onHide, this); + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getACTOR_ID(), + n = t.GlobalData.dicIcon; + for (var s in n) if (n[s].id == i && s == this.id + "") return n[s].ZbzdY; + return !1; + }), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.onClick = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: i, + ZbzdY: !1, + }), + this.updateShow(), + t.ckpDj.ins().removeEvent(t.CompEvent.HIDE_ICON, this.onHide, this), + t.mAYZL.ins().ZbzdY(t.FriendView) || t.mAYZL.ins().open(t.FriendView, 4); + }), + (i.prototype.onHide = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: n, + ZbzdY: !1, + }), + this.updateShow(); + }), + i + ); + })(t.RuleIconBase); + (t.FriendFlyIcon = e), __reflect(e.prototype, "app.FriendFlyIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.eAvIy = [t.Nzfh.ins().post_AttackState]), s; + } + return ( + __extends(i, e), + (i.prototype.update = function () { + (this.isDelayUpdate = !1), t.qTVCL.ins().attackState ? this.play(-1) : this.stopMc(); + }), + (i.prototype.stopMc = function () { + this.mc && (this.mc.destroy(), (this.mc = null)); + }), + (i.prototype.play = function (e) { + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), (this.mc.x = 36), (this.mc.y = 36), (this.mc.blendMode = egret.BlendMode.ADD), this.getTar().addChild(this.mc)), + e ? this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_tykx1", e, this.stopMc.bind(this)) : this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_tykx1", e); + }), + (i.prototype.onClick = function () { + if (!t.RockerView.INOPERATION) { + var e = "", + i = t.NWRFmB.ins().getPayer; + if (i) { + if ((t.qTVCL.ins().YFOmNj(), t.EhSWiR.m_Move_Char)) + return ( + (t.EhSWiR.m_ack_Char = t.NWRFmB.ins().getCharRole(t.EhSWiR.m_Move_Char.recog)), + t.EhSWiR.m_ack_Char && t.EhSWiR.m_ack_Char.propSet && ((e = t.EhSWiR.m_ack_Char.propSet.getName()), t.uMEZy.ins().showFightTips('开始自动PK"' + e + '"')), + t.Nzfh.ins().postUpdateTarget(t.EhSWiR.m_Move_Char.recog), + (t.qTVCL.ins().attackState = !0), + void this.play(1) + ); + if (i.lockTarget) { + var n = t.NWRFmB.ins().getCharRole(i.lockTarget); + if (n) + return n.propSet.getRace() == t.ActorRace.Human && 1 == i.propSet.getPKtype() + ? void t.uMEZy.ins().IrCm("|C:0xff7700&T:当前为和平攻击模式|") + : ((t.EhSWiR.m_ack_Char = n), + t.EhSWiR.m_ack_Char && t.EhSWiR.m_ack_Char.propSet && ((e = t.EhSWiR.m_ack_Char.propSet.getName()), t.uMEZy.ins().showFightTips('开始自动PK"' + e + '"')), + (t.qTVCL.ins().attackState = !0), + void this.play(1)); + } + t.uMEZy.ins().IrCm(t.CrmPU.language_System55); + } + } + }), + (i.prototype.checkShowIcon = function () { + return !0; + }), + (i.prototype.isRange = function (t, e, i, n) { + return Math.abs(t - i) > 10 || Math.abs(e - n) > 5 ? !1 : !0; + }), + i + ); + })(t.RuleIconBase); + (t.GeneralAckRuleIcon = e), __reflect(e.prototype, "app.GeneralAckRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i) { + return t.call(this, e, i) || this; + } + return ( + __extends(e, t), + (e.prototype.checkShowIcon = function () { + return t.prototype.checkShowIcon.call(this); + }), + (e.prototype.checkShowRedPoint = function () { + return e.isRed; + }), + (e.prototype.onClick = function () { + (e.isRed = 0), this.tar.redImage && (this.tar.redImage.visible = !1), this.tar.redDot && (this.tar.redDot.visible = !1), t.prototype.onClick.call(this); + }), + (e.isRed = 1), + e + ); + })(t.RuleIconBase); + (t.GongGaoRuleIcon = e), __reflect(e.prototype, "app.GongGaoRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), (s.eAvIy = [t.bfhrJ.ins().post_UpdateRedPos]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + if (t.bfhrJ.ins().redPosObj) { + var e = t.bfhrJ.ins().redPosObj; + return 2 == e.redState ? 0 : e.redType; + } + return 0; + }), + (i.prototype.onClick = function () { + t.bfhrJ.ins().sendGuildInfo(!0); + }), + i + ); + })(t.RuleIconBase); + (t.GuildRuleIcon = e), __reflect(e.prototype, "app.GuildRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s._isOpen = !1), (s.eAvIy = [t.Nzfh.ins().post_updateOnHook]), s; + } + return ( + __extends(i, e), + (i.prototype.update = function () { + (this.isDelayUpdate = !1), t.qTVCL.ins().isOpen ? (this._isOpen != t.qTVCL.ins().isOpen && this.playOpenMc(), this.play(-1)) : this.stopMc(), (this._isOpen = t.qTVCL.ins().isOpen); + }), + (i.prototype.playOpenMc = function () { + this.openMc || + ((this.openMc = t.ObjectPool.pop("app.MovieClip")), + (this.openMc.touchEnabled = !1), + (this.openMc.x = KdbLz.qOtrbE.iFbP ? 37 : 39), + (this.openMc.y = KdbLz.qOtrbE.iFbP ? 36 : 38), + this.getTar().addChildAt(this.openMc, 11)), + this.openMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", 1, this.stopOpenMc.bind(this)); + }), + (i.prototype.stopOpenMc = function () { + this.openMc && (this.openMc.destroy(), (this.openMc = null)); + }), + (i.prototype.play = function (e) { + this.mc || + ((this.mc = t.ObjectPool.pop("app.MovieClip")), + (this.mc.x = KdbLz.qOtrbE.iFbP ? 37 : 39), + (this.mc.y = KdbLz.qOtrbE.iFbP ? 36 : 38), + (this.mc.blendMode = egret.BlendMode.ADD), + this.getTar().addChildAt(this.mc, 10)), + e ? this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_tykx1", e, this.stopMc.bind(this)) : this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_tykx1", e); + }), + (i.prototype.stopMc = function () { + this.mc && (this.mc.destroy(), (this.mc = null)); + }), + (i.prototype.onClick = function () { + t.RockerView.INOPERATION || + (t.NWRFmB.ins().getPayer && (t.qTVCL.ins().isOpen ? t.qTVCL.ins().YFOmNj() : (t.qTVCL.ins().edcwsp(), this._isOpen != t.qTVCL.ins().isOpen && this.playOpenMc())), + (this._isOpen = t.qTVCL.ins().isOpen), + this.play(1)); + }), + (i.prototype.checkShowIcon = function () { + return !0; + }), + i + ); + })(t.RuleIconBase); + (t.HangUpRuleIcon = e), __reflect(e.prototype, "app.HangUpRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + return e.call(this, t, i) || this; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + var time = t.MathUtils.limit(2e3, 4e3); + t.mAYZL.ins().open(t.KFView, !1, time); + t.KHNO.ins().rqDkE( + time, + 0, + 1, + function () { + t.ubnV.ins().reLogin(); + }, + this + ); + }), + i + ); + })(t.RuleIconBase); + (t.KuaFuQuitRuleIcon = e), __reflect(e.prototype, "app.KuaFuQuitRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.MailMgr.ins().post_50_2]), (s.eAvIy = [t.MailMgr.ins().post_50_1, t.MailMgr.ins().post_50_2, t.MailMgr.ins().post_50_3, t.MailMgr.ins().post_50_6, t.MailMgr.ins().post_50_4]), s + ); + } + return ( + __extends(i, e), + (i.prototype.delayUpdateShow = function () { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: n, + ZbzdY: !0, + }), + e.prototype.delayUpdateShow.call(this); + }), + (i.prototype.checkShowIcon = function () { + t.ckpDj.ins().addEvent(t.CompEvent.HIDE_ICON, this.onHide, this); + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getACTOR_ID(), + n = t.GlobalData.dicIcon, + s = !1; + for (var a in n) + if (n[a].id == i && a == this.id + "") { + s = n[a].ZbzdY; + break; + } + return s; + }), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.onClick = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: i, + ZbzdY: !1, + }), + this.updateShow(), + t.ckpDj.ins().removeEvent(t.CompEvent.HIDE_ICON, this.onHide, this), + t.mAYZL.ins().ZbzdY(t.MailView) || t.mAYZL.ins().open(t.MailView); + }), + (i.prototype.onHide = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: n, + ZbzdY: !1, + }), + this.updateShow(); + }), + i + ); + })(t.RuleIconBase); + (t.MailFlyIcon = e), __reflect(e.prototype, "app.MailFlyIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), + (s.eAvIy = [ + t.MailMgr.ins().post_50_1, + t.MailMgr.ins().post_50_2, + t.MailMgr.ins().post_50_3, + t.MailMgr.ins().post_50_6, + t.MailMgr.ins().post_50_4, + t.MailMgr.ins().postMailStateChange, + t.MailMgr.ins().post_Mail_Update, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + return t.MailMgr.ins().getBagRed(); + }), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.CompEvent.HIDE_ICON), this.updateShow(); + }), + i + ); + })(t.RuleIconBase); + (t.MailRuleIcon = e), __reflect(e.prototype, "app.MailRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), s; + } + return __extends(i, e), i; + })(t.RuleIconBase); + (t.MainServerInfoRuleIcon = e), __reflect(e.prototype, "app.MainServerInfoRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = this.getConfig(), + i = t.NWRFmB.ins().getPayer; + if (e && e.isShowNeed) { + if (e.isShowNeed.level && i.propSet.mBjV() < e.isShowNeed.level) return !1; + if (e.isShowNeed.openDay) { + if (0 == t.GlobalData.sectionOpenDay) return !1; + if (t.GlobalData.sectionOpenDay >= e.isShowNeed.openDay) return !1; + } + return !0; + } + }), + i + ); + })(t.RuleIconBase); + (t.MainTomorrowRuleIcon = e), __reflect(e.prototype, "app.MainTomorrowRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + return e.call(this, t, i) || this; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (KdbLz.qOtrbE.iFbP) return !1; + var i = t.VlaoF.ThreeClientConfig, + n = []; + for (var s in i) 0 != i[s].IsShow && n.push(i[s]); + return 0 == n.length ? !1 : e.prototype.checkShowIcon.call(this); + }), + i + ); + })(t.RuleIconBase); + (t.MultiVersionRuleIcon = e), __reflect(e.prototype, "app.MultiVersionRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_0_74, t.Nzfh.ins().post_deleteType]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = t.Nzfh.ins().getCallIShow(2); + if ((t.KHNO.ins().removeAll(this), e)) { + var i = e.time - egret.getTimer(); + return i && t.KHNO.ins().tBiJo(i, 1, this.stopTime, this), !0; + } + return !1; + }), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.stopTime = function () { + t.KHNO.ins().removeAll(this), t.Nzfh.ins().post_deleteType(2); + }), + (i.prototype.onClick = function () { + var e = t.Nzfh.ins().getCallIShow(2); + e && (t.Nzfh.ins().post_deleteType(2), this.updateShow(), t.mAYZL.ins().open(t.CallView, e)); + }), + i + ); + })(t.RuleIconBase); + (t.NewGuildRuleIcon = e), __reflect(e.prototype, "app.NewGuildRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_0_74, t.Nzfh.ins().post_deleteType]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = t.Nzfh.ins().getCallIShow(1); + if ((t.KHNO.ins().removeAll(this), e)) { + var i = e.time - egret.getTimer(); + return i && t.KHNO.ins().tBiJo(i, 1, this.stopTime, this), !0; + } + return !1; + }), + (i.prototype.stopTime = function () { + t.KHNO.ins().removeAll(this), t.Nzfh.ins().post_deleteType(1); + }), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.onClick = function () { + var e = t.Nzfh.ins().getCallIShow(1); + e && (t.Nzfh.ins().post_deleteType(1), this.updateShow(), t.mAYZL.ins().open(t.CallView, e)); + }), + i + ); + })(t.RuleIconBase); + (t.NewRanksRuleIcon = e), __reflect(e.prototype, "app.NewRanksRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5, t.edHC.ins().post_26_28]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = [], + i = t.VlaoF.ActivityOpenServiceConf; + for (var n in i) { + var s = t.TQkyOx.ins().getActivityInfo(i[n].actId); + s && t.mAYZL.ins().isCheckOpen(i[n].openlimit) && e.push(i[n]); + } + return 0 == e.length && t.mAYZL.ins().ZbzdY(t.OpenServerGiftWin) && t.mAYZL.ins().close(t.OpenServerGiftWin), e.length > 0; + }), + (i.prototype.checkShowRedPoint = function () { + t.GlobalData.sectionOpenDay; + for (var e in t.VlaoF.ActivityOpenServiceConf) { + var i = t.VlaoF.ActivityOpenServiceConf[e], + n = t.TQkyOx.ins().getActivityInfo(i.actId); + if (n && t.mAYZL.ins().isCheckOpen(i.openlimit) && 0 != n.redDot) return 1; + } + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.OpenServerRuleIcon = e), __reflect(e.prototype, "app.OpenServerRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.edHC.ins().post_26_28, + t.edHC.ins().post_26_45, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = [], + i = t.VlaoF.ActivityCompetitionConf; + for (var n in i) { + var s = t.TQkyOx.ins().getActivityInfo(i[n].actId); + s && t.mAYZL.ins().isCheckOpen(i[n].openlimit) && e.push(i[n]); + } + return 0 == e.length && t.mAYZL.ins().ZbzdY(t.OpenServerSportsWin) && t.mAYZL.ins().close(t.OpenServerSportsWin), e.length > 0; + }), + (i.prototype.checkShowRedPoint = function () { + this.updateDisposableredpoint(); + for (var e in t.VlaoF.ActivityCompetitionConf) { + var n = t.VlaoF.ActivityCompetitionConf[e], + s = t.TQkyOx.ins().getActivityInfo(n.actId); + if (s && s.info) { + if (!t.mAYZL.ins().isCheckOpen(n.openlimit)) continue; + if (s && 0 != s.redDot) return 1; + if (1 == i.disposableredpointObj[n.actId]) return 1; + } + } + return 0; + }), + (i.prototype.updateDisposableredpoint = function () { + for (var e in t.VlaoF.ActivityCompetitionConf) { + var n = t.VlaoF.ActivityCompetitionConf[e]; + t.TQkyOx.ins().getActivityInfo(n.actId); + t.mAYZL.ins().isCheckOpen(n.openlimit) && + (n.disposableredpoint1 && t.mAYZL.ins().isCheckOpen(n.disposableredpoint1) && !t.mAYZL.ins().isCheckOpen(n.disposableredpoint2) + ? 2 != i.disposableredpointObj[n.actId] && (i.disposableredpointObj[n.actId] = 1) + : (i.disposableredpointObj[n.actId] = 0)); + } + }), + (i.disposableredpointObj = {}), + i + ); + })(t.RuleIconBase); + (t.OpenServerSportsRuleIcon = e), __reflect(e.prototype, "app.OpenServerSportsRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.actId = 0), + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + t.KHNO.ins().remove(this.updateCountdownTime, this); + var e = t.VlaoF.ActivityDrawConf.ActivityId; + for (var i in e) { + var n = t.TQkyOx.ins().getActivityInfo(e[i]); + if (n && n.info) { + if ( + ((this.actId = e[i]), + this.delayUpdate(), + (this.countdownTime = n.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.tar.ingGrp && (this.tar.ingGrp.visible = !0), + this.tar.timeLab && (this.updateCountdownTime(), this.countdownTime)) + ) + return t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this), !0; + } else t.ckpDj.ins().sendEvent(t.CompEvent.CLOSE_TREASURE); + } + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + if (0 != this.actId) { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + var i = t.GlobalData.sectionOpenDay, + n = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (n && n[i]) { + var s = n[i]; + if (e.info.extractCount < s.Maxcount) return 1; + } + } else this.actId = 0; + } + return 0; + }), + (i.prototype.updateCountdownTime = function () { + this.tar.timeLab && (this.tar.timeLab.text = t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_12)), + this.countdownTime <= 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), this.tar.ingGrp && (this.tar.ingGrp.visible = !1), this.delayUpdateShow()), + this.countdownTime--; + }), + i + ); + })(t.RuleIconBase); + (t.OpenServerTreasureRuleIcon = e), __reflect(e.prototype, "app.OpenServerTreasureRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.actId = 0), + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + t.KHNO.ins().remove(this.updateCountdownTime, this); + var e = t.VlaoF.ActivityDrawConf.GlobalId2; + for (var i in e) { + var n = t.TQkyOx.ins().getActivityInfo(e[i]); + if (n && n.info) { + if ( + ((this.actId = e[i]), + this.delayUpdate(), + (this.countdownTime = n.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.tar.ingGrp && (this.tar.ingGrp.visible = !0), + this.tar.timeLab && (this.updateCountdownTime(), this.countdownTime)) + ) + return t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this), !0; + } else t.ckpDj.ins().sendEvent(t.CompEvent.CLOSE_TREASURE); + } + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + if (0 != this.actId) { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + var i = new Date(1e3 * e.openTime), + n = new Date(i.getFullYear(), i.getMonth(), i.getDate()).getTime(), + s = Math.floor((t.GlobalData.serverTime - n) / t.DateUtils.MS_PER_DAY) + 1, + a = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (a && a[s]) { + var r = a[s]; + if (e.info.extractCount < r.Maxcount) return 1; + } + } + } + return 0; + }), + (i.prototype.updateCountdownTime = function () { + this.tar.timeLab && (this.tar.timeLab.text = t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_12)), + this.countdownTime <= 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), this.tar.ingGrp && (this.tar.ingGrp.visible = !1), this.delayUpdateShow()), + this.countdownTime--; + }), + i + ); + })(t.RuleIconBase); + (t.OpenServerTreasureThreeRuleIcon = e), __reflect(e.prototype, "app.OpenServerTreasureThreeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.actId = 0), + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + t.KHNO.ins().remove(this.updateCountdownTime, this); + var e = t.VlaoF.ActivityDrawConf.GlobalId; + for (var i in e) { + var n = t.TQkyOx.ins().getActivityInfo(e[i]); + if (n && n.info) { + if ( + ((this.actId = e[i]), + this.delayUpdate(), + (this.countdownTime = n.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.tar.ingGrp && (this.tar.ingGrp.visible = !0), + this.tar.timeLab && (this.updateCountdownTime(), this.countdownTime)) + ) + return t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this), !0; + } else t.ckpDj.ins().sendEvent(t.CompEvent.CLOSE_TREASURE); + } + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + if (0 != this.actId) { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + var i = new Date(1e3 * e.openTime), + n = new Date(i.getFullYear(), i.getMonth(), i.getDate()).getTime(), + s = Math.floor((t.GlobalData.serverTime - n) / t.DateUtils.MS_PER_DAY) + 1, + a = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (a && a[s]) { + var r = a[s]; + if (e.info.extractCount < r.Maxcount) return 1; + } + } + } + return 0; + }), + (i.prototype.updateCountdownTime = function () { + this.tar.timeLab && (this.tar.timeLab.text = t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_12)), + this.countdownTime <= 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), this.tar.ingGrp && (this.tar.ingGrp.visible = !1), this.delayUpdateShow()), + this.countdownTime--; + }), + i + ); + })(t.RuleIconBase); + (t.OpenServerTreasureTwoRuleIcon = e), __reflect(e.prototype, "app.OpenServerTreasureTwoRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.eAvIy = [t.ThgMu.ins().post_8_1, t.ThgMu.ins().post_8_2, t.ThgMu.ins().post_8_4, t.Nzfh.ins().postPlayerChange, t.ForgeMgr.ins().post_19_1]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + return t.ForgeMgr.ins().getForgeRed2(); + }), + i + ); + })(t.RuleIconBase); + (t.PhoneComposeRuleIcon = e), __reflect(e.prototype, "app.PhoneComposeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_updateLevel, t.Nzfh.ins().post_updateZsLevel, t.edHC.ins().post_26_28]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return e.prototype.checkShowIcon.call(this); + }), + i + ); + })(t.RuleIconBase); + (t.PhoneForgeUpStarRuleIcon = e), __reflect(e.prototype, "app.PhoneForgeUpStarRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.XZAqnu.ins().post_13_1, t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.XZAqnu.ins().post_13_3, t.XZAqnu.ins().post_deleteInfo]), s; + } + return ( + __extends(i, e), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.checkShowIcon = function () { + for (var e in t.XZAqnu.ins().playerTradeList) if (t.XZAqnu.ins().playerTradeList[e]) return !0; + return !1; + }), + i + ); + })(t.RuleIconBase); + (t.PrivateDealsRuleIcon = e), __reflect(e.prototype, "app.PrivateDealsRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + var n = e.call(this, t, i) || this; + return (n.eAvIy = []), n; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + var e = this.getConfig(); + if (e) { + var i = t.mAYZL.ins().isCheckOpen(e.isOpenNeed); + if (!i) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips119); + if (t.GameMap.isForbiddenArea) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips120); + t.mAYZL.ins().ZbzdY(t.RankView) ? t.mAYZL.ins().close(t.RankView) : t.mAYZL.ins().open(t.RankView); + } + }), + (i.prototype.checkShowIcon = function () { + return !0; + }), + i + ); + })(t.RuleIconBase); + (t.RankRuleIcon = e), __reflect(e.prototype, "app.RankRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s._skillTipsRoleLevel = 0), + (s.skillTipsShowLimit = !1), + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.Nzfh.ins().post_g_0_3, t.edHC.ins().post_26_28]), + (s.eAvIy = [ + t.Nzfh.ins().post_g_0_7, + t.Nzfh.ins().post_g_0_3, + t.edHC.ins().post_26_28, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + t.XwoNAr.ins().post_17_2, + t.NGcJ.ins().post_updateSkill, + t.GhostMgr.ins().post_31_1, + t.GhostMgr.ins().post_31_2, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + var i = this.updateSkillTips(); + i + ? t.mAYZL.ins().ZbzdY(t.RoleView) + ? t.mAYZL.ins().close(t.RoleView) + : (t.mAYZL.ins().open(t.RoleView, [1, 0]), (t.Nzfh.ins().phoneSkillTipsIsShow = !0), t.Nzfh.ins().post_phoneSkillTips()) + : e.prototype.onClick.call(this); + }), + (i.prototype.updateSkillTips = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = t.VlaoF.TimeManagerConfigConfig.Skillguide; + if (!t.mAYZL.ins().isCheckOpen(n)) return !1; + if (t.Nzfh.ins().phoneSkillTipsIsShow) return !1; + var s = e.propSet.getAP_JOB(), + a = t.NGcJ.ins().getJobSkillredDot(s) > 0; + return a ? ((this._skillTipsRoleLevel == i && this._isShow) || !a ? !1 : ((this._skillTipsRoleLevel = i), !0)) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.StrengthenMgr.ins().isSatisStrengthened(), + i = t.StrengthenMgr.ins().isEnoughStrengthened(), + n = t.rTRv.ins().isSatisFashionActOrUpdate(), + s = t.edHC.ins().getZSRed(), + a = t.NGcJ.ins().getSkillredDot(); + return e || i || n || s || a; + }), + i + ); + })(t.RuleIconBase); + (t.RoleRuleIcon = e), __reflect(e.prototype, "app.RoleRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.actId = 43), + (s.OGsurv = [ + t.Nzfh.ins().post_g_0_7, + t.edHC.ins().post_26_28, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + t.Nzfh.ins().postPlayerChange, + t.Nzfh.ins().post_g_0_3, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + return e ? !0 : (t.mAYZL.ins().ZbzdY(t.SecretLandTreasureView) && t.mAYZL.ins().close(t.SecretLandTreasureView), !1); + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + return e && e.redDot > 0 ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.SecretLandTreasureRuleIcon = e), __reflect(e.prototype, "app.SecretLandTreasureRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s._actID = 13), + (s.sbkcdTime = 0), + (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), + (s.eAvIy = [t.edHC.ins().post_26_8, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5, t.TQkyOx.ins().post_shaBakNextArard]), + KdbLz.qOtrbE.iFbP && (s.countMessage = [t.edHC.ins().post_26_8, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5, t.TQkyOx.ins().post_shaBakNextArard]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + if (((this._actID = t.GlobalData.sectionOpenDay <= 3 ? 41 : t.ubnV.ihUJ ? 26 : 13), KdbLz.qOtrbE.iFbP)) { + var e = t.TQkyOx.ins().getActivityInfo(this._actID); + if (e && e.redDot) return 1; + } + return 0; + }), + (i.prototype.checkShowCountDown = function () { + t.KHNO.ins().remove(this.updateSBKCDTime, this), (this._actID = t.GlobalData.sectionOpenDay <= 3 ? 41 : t.ubnV.ihUJ ? 26 : 13); + var e = t.VlaoF.ActivityNoticeConfig[1][this._actID]; + if (e && !t.mAYZL.ins().isCheckOpen(e.isOpenNeed)) return 0; + var i = t.TQkyOx.ins().getActivityInfo(this._actID); + t.TQkyOx.ins().getActivityConfigById(this._actID); + if (i && i.redDot) + t.KHNO.ins().remove(this.updateSBKCDTime, this), + this.tar.timeLab && (this.tar.timeLab.textFlow = t.hETx.qYVI("|C:0x28ee01&T:进行中|")), + !t.ubnV.ihUJ || (3 != t.GameMap.mapID && 47 != t.GameMap.mapID && 98 != t.GameMap.mapID) + ? t.ubnV.ihUJ && t.GameMap.fubenID <= 0 && t.mAYZL.ins().ZbzdY(t.FuBenView) && t.mAYZL.ins().close(t.FuBenView) + : (t.mAYZL.ins().ZbzdY(t.FuBenView) || t.mAYZL.ins().open(t.FuBenView), t.mAYZL.ins().ZbzdY(t.MainTaskWin) && t.mAYZL.ins().close(t.MainTaskWin)); + else { + t.ubnV.ihUJ && t.GameMap.fubenID <= 0 && t.mAYZL.ins().ZbzdY(t.FuBenView) && t.mAYZL.ins().close(t.FuBenView); + if (!(e && e.TimeDetail && this.tar.timeLab)) return 0; + for (var n in e.TimeDetail) { + var s = e.TimeDetail[n], + a = s.StartTime, + r = new Date(t.GlobalData.serverTime), + o = r.getHours(), + l = r.getMinutes(), + h = r.getSeconds(), + p = r.getDay(), + u = 0, + c = 0; + if (s.type) { + var g = a.split(":"); + if (!(+g[0] > o || (+g[0] == o && +g[1] > l))) return t.KHNO.ins().remove(this.updateSBKCDTime, this), 0; + if ( + ((u = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = +g[0] * t.DateUtils.MS_PER_HOUR + g[1] * t.DateUtils.MS_PER_MINUTE), + c > u ? (this.sbkcdTime = c - u) : u > c && (this.sbkcdTime = t.DateUtils.MS_PER_DAY - (u - c)), + this.sbkcdTime > 0) + ) { + (this.sbkcdTime += egret.getTimer()), this.updateSBKCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateSBKCDTime, this); + break; + } + } else { + var d = a.split("-"), + m = d[1].split(":"); + if (0 == p && 7 != +d[0]) { + this.tar.timeLab.textFlow = t.hETx.qYVI("3天后"); + break; + } + if ((+d[0] == p && (+m[0] > o || (+m[0] == o && +m[1] > l))) || (0 == p && 7 == +d[0] && (+m[0] > o || (+m[0] == o && +m[1] > l)))) { + var f = 0, + c = 0; + if ( + ((f = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = +m[0] * t.DateUtils.MS_PER_HOUR + m[1] * t.DateUtils.MS_PER_MINUTE), + c > f ? (this.sbkcdTime = c - f) : f > c && (this.sbkcdTime = t.DateUtils.MS_PER_DAY - (f - c)), + this.sbkcdTime > 0) + ) { + (this.sbkcdTime += egret.getTimer()), this.updateSBKCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateSBKCDTime, this); + break; + } + } else { + if (+d[0] == p && (m[0] < o || (m[0] == o && +m[1] < l))) { + var v = 3 == p ? "3" : 6 == p ? "4" : 0 == p ? "7" : ""; + this.tar.timeLab.textFlow = t.hETx.qYVI(v + "天后"); + break; + } + if (+d[0] > p) { + this.tar.timeLab.textFlow = t.hETx.qYVI(+d[0] - p + "天后"); + break; + } + } + } + } + } + return 1; + }), + (i.prototype.updateSBKCDTime = function () { + var e = this.sbkcdTime - egret.getTimer(), + i = t.DateUtils.getMainShaBaKeCD(e); + this.tar.timeLab && ((this.tar.timeLab.textFlow = t.hETx.qYVI(i)), 0 >= e && (t.KHNO.ins().remove(this.updateSBKCDTime, this), (this.tar.timeLab.text = ""))); + }), + i + ); + })(t.RuleIconBase); + (t.ShaChengStarcraftRuleIcon = e), __reflect(e.prototype, "app.ShaChengStarcraftRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t, i) { + var n = e.call(this, t, i) || this; + return (n.isOpen = !1), n; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return Main.vZzwB.pfID == t.PlatFormID.ShengQu; + }), + (i.prototype.onClick = function () { + this.isOpen ? this.removeIfram() : this.getActorInfo(); + }), + (i.prototype.getActorInfo = function () { + (this.httpReq = new egret.HttpRequest()), + this.httpReq.addEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + this.httpReq.open(window.noticeUrl, egret.HttpMethod.GET), + this.httpReq.send(); + }), + (i.prototype.completeFunction = function (t) { + var e = t.target; + if (null != e.response || "" != e.response) { + var i = JSON.parse(e.response); + this.removeIfram(), (this.isOpen = !0); + var n = document.createElement("div"); + (n.id = "iframDiv"), + (n.innerHTML = i.data.notice_content), + (n.style.position = "relative"), + (n.style.top = "5%"), + (n.style.width = "912px"), + (n.style.height = "646px"), + (n.style.margin = "0 auto"), + (n.style.textAlign = "left"), + (n.style.backgroundImage = "url(com_bg_kuang_7.png?v=1)"), + (n.style.backgroundPosition = "center center"), + (n.style.backgroundRepeat = "no-repeat"), + (n.style.paddingTop = "75px"), + (n.style.paddingLeft = "50px"), + document.body.appendChild(n); + var s = document.createElement("div"); + (s.id = "btnDiv"), + (s.innerHTML = ''), + (s.style.position = "absolute"), + (s.style.right = "-15px"), + (s.style.top = "30px"), + (s.style.width = "60px"), + (s.style.height = "60px"), + n.appendChild(s); + var a = document.getElementById("closeImg"); + a.onclick = this.removeIfram; + } + }), + (i.prototype.errorFunction = function (t) {}), + (i.prototype.removeIfram = function () { + var t = document.getElementById("iframDiv"); + t && document.body.removeChild(t), (t = document.getElementById("btnDiv")), t && document.body.removeChild(t), (this.isOpen = !1); + }), + i + ); + })(t.RuleIconBase); + (t.ShengQuNoticeRuleIcon = e), __reflect(e.prototype, "app.ShengQuNoticeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + var i = this.getConfig(); + if (i && 63 == i.id) { + var n = t.VlaoF.ShoptagConfig[1][6]; + return n && !t.mAYZL.ins().isCheckOpen(n.closelimit) && t.mAYZL.ins().isCheckOpen(n.openlimit) + ? ((this.countdownTime = (n.closelimit.openDay - t.GlobalData.sectionOpenDay) * t.DateUtils.SECOND_PER_DAY - t.DateUtils.getTodayPassedSecond()), + this.tar.ingGrp && (this.tar.ingGrp.visible = !0), + this.updateCountdownTime(), + this.countdownTime > 0 && (t.KHNO.ins().remove(this.updateCountdownTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCountdownTime, this)), + !0) + : !1; + } + return e.prototype.checkShowIcon.call(this); + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq_1"; + }), + (i.prototype.updateCountdownTime = function () { + (this.tar.timeLab.text = t.DateUtils.getFormatBySecond(this.countdownTime, t.DateUtils.TIME_FORMAT_12)), + this.countdownTime <= 0 && t.KHNO.ins().remove(this.updateCountdownTime, this), + this.countdownTime--; + }), + i + ); + })(t.RuleIconBase); + (t.ShopRuleIcon = e), __reflect(e.prototype, "app.ShopRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28]), + (s.eAvIy = [ + t.XwoNAr.ins().post_17_2, + t.Nzfh.ins().post_g_0_7, + t.NGcJ.ins().post_updateSkill, + t.ThgMu.ins().post_8_1, + t.ThgMu.ins().post_8_3, + t.ThgMu.ins().post_8_4, + t.GhostMgr.ins().post_31_1, + t.GhostMgr.ins().post_31_2, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + var e = t.NGcJ.ins().getSkillredDot(), + i = t.GhostMgr.ins().getRed(); + return e && i ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.SkillRuleIcon = e), __reflect(e.prototype, "app.SkillRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this, + a = t.NWRFmB.ins().getPayer, + r = a.propSet.getACTOR_ID(); + return ( + (t.GlobalData.dicIcon[s.id] = { + id: r, + ZbzdY: !0, + }), + (s.OGsurv = [t.Qskf.ins().post_onReceiveAppJoinMsg]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.showMsgIcon = function () { + var e = this; + t.KHNO.ins().rqDkE( + 15e3, + 0, + 1, + function () { + if (!(t.Qskf.ins().inviteList.length <= 0) && (t.Qskf.ins().inviteList.splice(0, 1), t.Qskf.ins().inviteList.length < 1)) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[e.id] = { + id: n, + ZbzdY: !1, + }), + e.updateShow(); + } + }, + this.getTar() + ); + }), + (i.prototype.updateMC = function (t) { + var e = this.getTar(); + if (e) + if (((e.y = 0), t)) { + var i = egret.Tween.get(e, { + loop: !0, + }); + i.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } else egret.Tween.removeTweens(e); + }), + (i.prototype.checkShowIcon = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getACTOR_ID(); + t.GlobalData.dicIcon[this.id] = { + id: i, + ZbzdY: !1, + }; + for (var n in t.Qskf.ins().inviteList) + t.Qskf.ins().curRequestTeamRoleId == t.Qskf.ins().inviteList[n].roleId && + ((t.GlobalData.dicIcon[this.id] = { + id: i, + ZbzdY: !0, + }), + this.showMsgIcon()); + for (var s in t.GlobalData.dicIcon) if (t.GlobalData.dicIcon[s].id == i && s == this.id + "") return t.GlobalData.dicIcon[s].ZbzdY; + return !1; + }), + (i.prototype.onClick = function () { + var e = t.Qskf.ins().inviteList[0]; + if (null != e) { + var i = e.nickName + t.CrmPU.language_Team_ReqAddTeam_tips; + if ((t.Qskf.ins().findInviteListDel(e.roleId), t.Qskf.ins().inviteList.length <= 0)) { + var n = t.NWRFmB.ins().getPayer, + s = n.propSet.getACTOR_ID(); + (t.GlobalData.dicIcon[this.id] = { + id: s, + ZbzdY: !1, + }), + this.updateShow(); + } + t.CautionView.show( + i, + function () { + t.Qskf.ins().onSendApplyJoinTeamReply(e.roleId, 1); + }, + this, + function () { + t.Qskf.ins().onSendApplyJoinTeamReply(e.roleId, 0); + } + ); + } + }), + i + ); + })(t.RuleIconBase); + (t.TeamFlyIcon = e), __reflect(e.prototype, "app.TeamFlyIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = [t.TradeLineMgr.ins().post_27_9]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowRedPoint = function () { + return t.TradeLineMgr.ins().getReceiveRed(); + }), + i + ); + })(t.RuleIconBase); + (t.TradeLineRuleIcon = e), __reflect(e.prototype, "app.TradeLineRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIOLENT_TIPS); + }), + i + ); + })(t.RuleIconBase); + (t.ViolentStateRuleIcon = e), __reflect(e.prototype, "app.ViolentStateRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.Nzfh.ins().post_g_0_7, t.edHC.ins().post_26_28, t.TQkyOx.ins().post_25_3]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !0; + }), + (i.prototype.onClick = function () { + e.prototype.onClick.call(this), t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIP_GUIDE_TIPS); + }), + (i.prototype.getEffName = function (t) { + return (this.effX = 35), (this.effY = 35), "eff_tygq"; + }), + i + ); + })(t.RuleIconBase); + (t.VipRuleIcon = e), __reflect(e.prototype, "app.VipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_3]), (s.eAvIy = [t.FuLi4366Mgr.ins().post_32_3]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuli360Info; + return i ? (i.isGetAllFcm() ? (t.mAYZL.ins().close(t.Fuli360AttestationWin), !1) : !0) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + return t.FuLi4366Mgr.ins().getRed_attestation(); + }), + i + ); + })(t.RuleIconBase); + (t.Fuli360AttestationRuleIcon = e), __reflect(e.prototype, "app.Fuli360AttestationRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_3]), (s.eAvIy = [t.FuLi4366Mgr.ins().post_32_3]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuli360Info; + return i ? !0 : !1; + }), + (i.prototype.checkShowRedPoint = function () { + return t.FuLi4366Mgr.ins().getRed_dawanjia(); + }), + (i.prototype.onClick = function () { + var i = t.FuLi4366Mgr.ins().fuli360Info; + return i && i.isGetAllDawanjia() ? void window.openDawanjia() : void e.prototype.onClick.call(this); + }), + i + ); + })(t.RuleIconBase); + (t.FuLi360RuleIcon = e), __reflect(e.prototype, "app.FuLi360RuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post37Gift]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuli37Info; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.Fuli37RuleIcon = e), __reflect(e.prototype, "app.Fuli37RuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel, t.FuLi4366Mgr.ins().post_32_1]), + (s.eAvIy = [t.FuLi4366Mgr.ins().post_32_1, t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return 10004 == Main.vZzwB.pfID && t.FuLi4366Mgr.ins().giftInfo && 0 == t.FuLi4366Mgr.ins().giftInfo.isMicro + ? e.prototype.checkShowIcon.call(this) + : (t.mAYZL.ins().close(t.FuLi4366MicroWin), !1); + }), + (i.prototype.checkShowRedPoint = function () { + return 10004 == Main.vZzwB.pfID && + t.FuLi4366Mgr.ins().giftInfo && + 0 == t.FuLi4366Mgr.ins().giftInfo.isMicro && + (1 == window.loginWay || (0 == window.loginWay && t.NWRFmB.ins().getPayer && t.NWRFmB.ins().getPayer.propSet && t.NWRFmB.ins().getPayer.propSet.mBjV() > 50)) + ? 1 + : 0; + }), + i + ); + })(t.RuleIconBase); + (t.FuLi4366MicroRuleIcon = e), __reflect(e.prototype, "app.FuLi4366MicroRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = [t.FuLi4366Mgr.ins().post_32_1, t.FuLi4366Mgr.ins().postRuleIconRed]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return 10004 == Main.vZzwB.pfID ? e.prototype.checkShowIcon.call(this) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + for (var e = 1; 4 > e; e++) { + var i = t.FuLi4366Mgr.ins().getRedPoint(e); + if (i) return i; + } + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.FuLi4366RuleIcon = e), __reflect(e.prototype, "app.FuLi4366RuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return 10004 == Main.vZzwB.pfID ? e.prototype.checkShowIcon.call(this) : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuLi4366VipRuleIcon = e), __reflect(e.prototype, "app.FuLi4366VipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + return !0; + }), + (i.prototype.onClick = function () { + window.open(window.webUrl); + }), + i + ); + })(t.RuleIconBase); + (t.Fuli7GameCaiGiftRuleIcon = e), __reflect(e.prototype, "app.Fuli7GameCaiGiftRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.onClick = function () { + window.open(window.kfQQGroupUrl); + }), + i + ); + })(t.RuleIconBase); + (t.Fuli7GameFuLiQunRuleIcon = e), __reflect(e.prototype, "app.Fuli7GameFuLiQunRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + i + ); + })(t.RuleIconBase); + (t.Fuli7GameVipRuleIcon = e), __reflect(e.prototype, "app.Fuli7GameVipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_4]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return e.prototype.checkShowIcon.call(this) && t.FuLi4366Mgr.ins().fuli7gameInfo + ? 1 == t.FuLi4366Mgr.ins().fuli7gameInfo.isWxGift + ? (t.mAYZL.ins().close(t.Fuli7GameWXGiftWin), !1) + : !0 + : !1; + }), + i + ); + })(t.RuleIconBase); + (t.Fuli7GameWXGiftRuleIcon = e), __reflect(e.prototype, "app.Fuli7GameWXGiftRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_4]), + (s.eAvIy = [t.TQkyOx.ins().post_25_1, t.TQkyOx.ins().post_25_2, t.TQkyOx.ins().post_25_3, t.TQkyOx.ins().post_25_4, t.TQkyOx.ins().post_25_5]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return t.OnlineRewardsManager.ins().checkCanShow(); + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.TQkyOx.ins().getActivityInfo(t.ISYR.onlineRewardAid); + return e && 0 != e.redDot; + }), + i + ); + })(t.RuleIconBase); + (t.FuliOnlineRewardRuleIcon = e), __reflect(e.prototype, "app.FuliOnlineRewardRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = []), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return Main.vZzwB.specialId == t.MiOx.srvid ? !1 : !0; + }), + i + ); + })(t.RuleIconBase); + (t.FuliIqiyiQQGroupRuleIcon = e), __reflect(e.prototype, "app.FuliIqiyiQQGroupRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_35]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + for (var e = 1; 6 > e; e++) if (t.TQkyOx.ins().updateYYRed(4, e) > 0) return 1; + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.FuLiKu25RuleIcon = e), __reflect(e.prototype, "app.FuLiKu25RuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.FuLiKu25SuperVipRuleIcon = e), __reflect(e.prototype, "app.FuLiKu25SuperVipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_5]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliLuDaShiInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliLuDaShiGiftRuleIcon = e), __reflect(e.prototype, "app.FuliLuDaShiGiftRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_5]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliLuDaShiInfo; + return i ? (i.isGetAllMicro() ? (t.mAYZL.ins().close(t.FuliLuDaShiMicroWin), !1) : !0) : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliLuDaShiMicroRuleIcon = e), __reflect(e.prototype, "app.FuliLuDaShiMicroRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_5]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliLuDaShiInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliLuDaShiPhoneGiftRuleIcon = e), __reflect(e.prototype, "app.FuliLuDaShiPhoneGiftRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_32_5]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliLuDaShiInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliLuDaShiVipRuleIcon = e), __reflect(e.prototype, "app.FuliLuDaShiVipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().postSogouGift]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliSogouInfo; + return i ? (i.isGetAllMicro() ? (t.mAYZL.ins().close(t.FuliSogouMicroWin), !1) : !0) : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliSogouMicroRuleIcon = e), __reflect(e.prototype, "app.FuliSogouMicroRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().postSogouGift]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliSogouInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliSogouVipWinRuleIcon = e), __reflect(e.prototype, "app.FuliSogouVipWinRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().postSogouGift]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliSogouInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliSogouWeixinWinRuleIcon = e), __reflect(e.prototype, "app.FuliSogouWeixinWinRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().postSogouGift]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.FuLi4366Mgr.ins().fuliSogouInfo; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.FuliSogouWinRuleIcon = e), __reflect(e.prototype, "app.FuliSogouWinRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.onClick = function () { + window.open(window.webUrl); + }), + i + ); + })(t.RuleIconBase); + (t.FuliYaodouCustomerRuleIcon = e), __reflect(e.prototype, "app.FuliYaodouCustomerRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), (s.eAvIy = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? (i.isGetPhoneBindGift() ? !1 : !0) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.bXKx.ins().bXBd; + return e && e.getRed_phoneBindGift() ? 1 : 0; + }), + (i.prototype.onClick = function () { + var i = this.getConfig(); + if (!i.view) { + var n = t.bXKx.ins().VbEA; + return void n.onBindPhone(); + } + e.prototype.onClick.call(this); + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliBindingRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliBindingRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), (s.eAvIy = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? (i.isGetIndulgeGift() ? !1 : !0) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.bXKx.ins().bXBd; + return e && e.getRed_indulgeGift() ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliIndulgeRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliIndulgeRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), + (s.eAvIy = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli, t.Nzfh.ins().post_updateLevel]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? (i.isGetMicroGift() ? !1 : !0) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.bXKx.ins().bXBd; + return e && e.getRed_microGift() ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliMicroRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliMicroRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), (s.eAvIy = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), s; + } + return ( + __extends(i, e), + (i.prototype.createTar = function () { + var i = e.prototype.createTar.call(this), + n = t.bXKx.ins().VbEA; + return n && n.getRuleIcon() && (i.icon = n.getRuleIcon()), i; + }), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? !0 : !1; + }), + (i.prototype.checkShowRedPoint = function () { + var e = t.bXKx.ins().bXBd; + return e && e.getRed_viewGift() ? 1 : 0; + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? !0 : !1; + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliSuperVipRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliSuperVipRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.FuLi4366Mgr.ins().post_updatePlatformFuli]), (s.eAvIy = []), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + if (!e.prototype.checkShowIcon.call(this)) return !1; + var i = t.bXKx.ins().bXBd; + return i ? (i.isGetWeChatGift() ? !1 : !0) : !1; + }), + i + ); + })(t.RuleIconBase); + (t.PlatformFuliWeixinRuleIcon = e), __reflect(e.prototype, "app.PlatformFuliWeixinRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = [t.edHC.ins().post_26_82]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return t.isQQpf() ? e.prototype.checkShowIcon.call(this) : !1; + }), + (i.prototype.checkShowRedPoint = function () { + for (var e = 1, i = 1; 4 >= i; i++) if (t.edHC.ins().updateQQRed(e, i) > 0) return 1; + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.QQBlueDiamondRuleIcon = e), __reflect(e.prototype, "app.QQBlueDiamondRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + function e() { + return !1; + } + t.isQQpf = e; + var i = (function (i) { + function n(e, n) { + var s = i.call(this, e, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = [t.FuLi4366Mgr.ins().post_32_2, t.Nzfh.ins().post_updateLevel]), s; + } + return ( + __extends(n, i), + (n.prototype.checkShowIcon = function () { + return e() ? i.prototype.checkShowIcon.call(this) : !1; + }), + (n.prototype.checkShowRedPoint = function () { + for (var e = 1, i = 1; 3 >= i; i++) if (t.FuLi4366Mgr.ins().updateQQRed(e, i) > 0) return 1; + return 0; + }), + n + ); + })(t.RuleIconBase); + (t.QQLobbyPrivilegesWinRuleIcon = i), __reflect(i.prototype, "app.QQLobbyPrivilegesWinRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + i + ); + })(t.RuleIconBase); + (t.QQVipFuLiRuleIcon = e), __reflect(e.prototype, "app.QQVipFuLiRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), (s.eAvIy = [t.TQkyOx.ins().post_25_11]), s; + } + return ( + __extends(i, e), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + for (var e = 3, i = 1; 3 > i; i++) if (t.TQkyOx.ins().updateYYRed(e, i) > 0) return 1; + return 0; + }), + i + ); + })(t.RuleIconBase); + (t.YYChaoWanRuleIcon = e), __reflect(e.prototype, "app.YYChaoWanRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n) { + var s = e.call(this, i, n) || this; + return ( + (s.OGsurv = [t.edHC.ins().post_26_28, t.Nzfh.ins().post_updateLevel]), + (s.eAvIy = [ + t.TQkyOx.ins().post_25_9, + t.TQkyOx.ins().post_25_10, + t.TQkyOx.ins().post_25_1, + t.TQkyOx.ins().post_25_2, + t.TQkyOx.ins().post_25_3, + t.TQkyOx.ins().post_25_4, + t.TQkyOx.ins().post_25_5, + ]), + s + ); + } + return ( + __extends(i, e), + (i.prototype.createTar = function () { + var t = e.prototype.createTar.call(this); + return t.addBtnArr(), t; + }), + (i.prototype.onClick = function () { + if ( + (egret.Tween.get(this) + .call(function () { + this.tar.currentState = "down"; + }) + .wait(100) + .call(function () { + (this.tar.currentState = "up"), egret.Tween.removeTweens(this); + }), + t.TQkyOx.ins().YYClick) + ) + return void (t.TQkyOx.ins().YYClick = !1); + var e = this.getTar(); + e.iconGrp.visible = !e.iconGrp.visible; + }), + (i.prototype.checkShowIcon = function () { + return !1; + }), + (i.prototype.checkShowRedPoint = function () { + var t = this.getTar(); + return t.addBtnArr(), t.updateBtnRed(); + }), + i + ); + })(t.RuleIconBase); + (t.YYPlatformFuLiRuleIcon = e), __reflect(e.prototype, "app.YYPlatformFuLiRuleIcon"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0), (this.ZbzdY = !1); + } + return ( + (e.prototype.init = function () { + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + (this.newLevel = e.propSet.mBjV()), !this.ZbzdY && this.oldLevel > 0 && this.getShowTips() && ((this.ZbzdY = !0), this.showTips()), (this.oldLevel = this.newLevel); + }), + (e.prototype.showTips = function () { + var e; + (e = KdbLz.qOtrbE.iFbP + ? t.mAYZL.ins().ZzTs(t.PhoneMainView).getRuleBtId(54) || t.mAYZL.ins().ZzTs(t.PhoneMainView).getRuleBtId(58) + : t.mAYZL.ins().ZzTs(t.MainBottomView).getRuleBtId(54) || t.mAYZL.ins().ZzTs(t.MainBottomView).getRuleBtId(58)), + e && e.checkShowIcon() && (t.mAYZL.ins().ZbzdY(t.MicrotermsView) || t.mAYZL.ins().open(t.MicrotermsView)); + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Clientguide; + if (e) for (var i in e) if (this.oldLevel < e[i].lv && this.newLevel >= e[i].lv) return !0; + return !1; + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this); + }), + e + ); + })(); + (t.ClientguideTips = e), __reflect(e.prototype, "app.ClientguideTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0), (this.oldZSLevel = 0), (this.newZSLevel = 0), (this.ZbzdY = !1); + } + return ( + (e.prototype.init = function (e) { + (this.grp = e), + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateZsLevel, this.update, this), + t.ckpDj.ins().addEvent(t.MainEvent.CLOSE_DONATION_TIPS, this.onClose, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + (this.newLevel = e.propSet.mBjV()), + (this.newZSLevel = e.propSet.MzYki()), + !this.ZbzdY && this.oldLevel > 0 && this.getShowTips() && ((this.ZbzdY = !0), this.showTips()), + (this.oldLevel = this.newLevel), + (this.oldZSLevel = this.newZSLevel); + }), + (e.prototype.showTips = function () { + this.tipsMc || + ((this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.touchEnabled = !0), + (this.tipsMc.x = -110), + (this.tipsMc.y = 165), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jxb", -1), + this.grp.addChild(this.tipsMc)); + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Donationguide; + if (e) for (var i in e) if (this.newLevel >= e[i].lv && this.newZSLevel >= e[i].zslv && (this.oldLevel < e[i].lv || this.oldZSLevel < e[i].zslv)) return !0; + return !1; + }), + (e.prototype.onClose = function () { + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this), (this.grp = null); + }), + e + ); + })(); + (t.DonationGuideTips = e), __reflect(e.prototype, "app.DonationGuideTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0); + } + return ( + (e.prototype.init = function (e) { + (this.grp = e), + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this), + t.ckpDj.ins().addEvent(t.MainEvent.CLOSE_FIRST_CHARGE_TIPS, this.onClose, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + this.newLevel = e.propSet.mBjV(); + var i = e.propSet.getRechargeSum(); + if (!i && this.oldLevel > 0) { + if (this.getShowTips()) { + var n = void 0; + (n = KdbLz.qOtrbE.iFbP ? t.mAYZL.ins().ZzTs(t.PhoneMainView).getRuleBtId(26) : t.mAYZL.ins().ZzTs(t.MainBottomView).getRuleBtId(26)), n && n.checkShowIcon() && this.showTips(); + } + this.getShowTips2() && this.showView(); + } + this.oldLevel = this.newLevel; + }), + (e.prototype.showTips = function () { + this.tipsMc || + ((this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.touchEnabled = !0), + (this.tipsMc.x = -110), + (this.tipsMc.y = 165), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_sctips", -1), + this.grp.addChild(this.tipsMc)); + }), + (e.prototype.showView = function () { + t.mAYZL.ins().ZbzdY(t.ActvityFirstChargeView) || t.mAYZL.ins().open(t.ActvityFirstChargeView); + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Firstchargeguide; + for (var i in e) if (this.oldLevel < e[i].lv && this.newLevel >= e[i].lv) return !0; + return !1; + }), + (e.prototype.getShowTips2 = function () { + return this.oldLevel < 45 && this.newLevel >= 45 ? !0 : !1; + }), + (e.prototype.onClose = function () { + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this), (this.grp = null); + }), + e + ); + })(); + (t.FirstChargeTips = e), __reflect(e.prototype, "app.FirstChargeTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0); + } + return ( + (e.prototype.init = function (e) { + (this.grp = e), + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this), + t.ckpDj.ins().addEvent(t.MainEvent.CLOSE_SECOND_CHARGE_TIPS, this.onClose, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + this.newLevel = e.propSet.mBjV(); + var i = e.propSet.getRechargeSum(); + if (i && this.oldLevel > 0) { + var n = t.TQkyOx.ins().getActivityInfo(10274); + if (n && n.info && n.info.sum < 2 && this.getShowTips()) { + var s = void 0; + (s = KdbLz.qOtrbE.iFbP ? t.mAYZL.ins().ZzTs(t.PhoneMainView).getRuleBtId(78) : t.mAYZL.ins().ZzTs(t.MainBottomView).getRuleBtId(78)), s && s.checkShowIcon() && this.showTips(); + } + } + this.oldLevel = this.newLevel; + }), + (e.prototype.showTips = function () { + this.tipsMc || + ((this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.touchEnabled = !0), + (this.tipsMc.x = -110), + (this.tipsMc.y = 165), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_ectips", -1), + this.grp.addChild(this.tipsMc)); + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Firstchargeguide; + for (var i in e) if (this.oldLevel < e[i].lv && this.newLevel >= e[i].lv) return !0; + return !1; + }), + (e.prototype.onClose = function () { + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this), (this.grp = null); + }), + e + ); + })(); + (t.SecondChargeTips = e), __reflect(e.prototype, "app.SecondChargeTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0), (this.oldZSLevel = 0), (this.newZSLevel = 0), (this.ZbzdY = !1); + } + return ( + (e.prototype.init = function (e) { + (this.grp = e), + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateZsLevel, this.update, this), + t.ckpDj.ins().addEvent(t.MainEvent.CLOSE_VIOLENT_TIPS, this.onClose, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + (this.newLevel = e.propSet.mBjV()), + (this.newZSLevel = e.propSet.MzYki()), + !this.ZbzdY && this.oldLevel > 0 && this.getShowTips() && ((this.ZbzdY = !0), this.showTips()), + (this.oldLevel = this.newLevel); + }), + (e.prototype.showTips = function () { + this.tipsMc || + ((this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.touchEnabled = !0), + (this.tipsMc.x = -110), + (this.tipsMc.y = 165), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kbzl", -1), + this.grp.addChild(this.tipsMc)); + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Violentguide; + if (e) for (var i in e) if (this.newLevel >= e[i].lv && this.newZSLevel >= e[i].zslv && (this.oldLevel < e[i].lv || this.oldZSLevel < e[i].zslv)) return !0; + return !1; + }), + (e.prototype.onClose = function () { + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this), (this.grp = null); + }), + e + ); + })(); + (t.ViolentGuideTips = e), __reflect(e.prototype, "app.ViolentGuideTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.oldLevel = 0), (this.newLevel = 0); + } + return ( + (e.prototype.init = function (e) { + (this.grp = e), + t.rLmMYc.addListener(t.Nzfh.ins().postPlayerCreate, this.update, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.update, this), + t.ckpDj.ins().addEvent(t.MainEvent.CLOSE_VIP_GUIDE_TIPS, this.onClose, this); + }), + (e.prototype.update = function () { + var e = t.NWRFmB.ins().getPayer; + (this.newLevel = e.propSet.mBjV()), this.oldLevel > 0 && this.getShowTips() && this.showTips(), (this.oldLevel = this.newLevel); + }), + (e.prototype.showTips = function () { + var e = t.VipData.ins().getMyVipLv(); + if (e < t.VipData.ins().getMaxLv()) { + var i = t.VipData.ins().getVipDataByLv(e + 1); + if (i && t.mAYZL.ins().isCheckOpen(i.displaylimit)) { + var n = "eff_tips" + (e + 5); + this.tipsMc || + ((this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.touchEnabled = !0), + (this.tipsMc.x = -110), + (this.tipsMc.y = 165), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + n, -1), + this.grp.addChild(this.tipsMc)); + } + } + }), + (e.prototype.getShowTips = function () { + var e = t.VlaoF.TimeManagerConfigConfig.Previlegeguide; + if (e) for (var i in e) if (this.oldLevel < e[i].lv && this.newLevel >= e[i].lv) return !0; + return !1; + }), + (e.prototype.onClose = function () { + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (e.prototype.destroy = function () { + t.rLmMYc.ins().removeAll(this), (this.grp = null); + }), + e + ); + })(); + (t.VipGuideTips = e), __reflect(e.prototype, "app.VipGuideTips"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "MainServerInfoWinSkin"), (i.name = "MainServerInfoWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setCurrentState("default7"), this.dragDropUI.setParent(this), (this.title.text = t.CrmPU.language_Common_91); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = ""; + t.GlobalData.serverID && (n += t.CrmPU.language_Common_94 + "S" + t.GlobalData.serverID + "\n\n"), + t.GlobalData.sectionOpenDay && (n += t.CrmPU.language_Common_93 + "|C:0x28ee01&T:" + t.GlobalData.sectionOpenDay + "|" + t.CrmPU.language_Time_Days + "\n\n"), + t.GlobalData.combineServerCount && t.GlobalData.sectionOpenDay >= 8 && (n += "" + t.CrmPU.language_Common_92 + t.GlobalData.combineServerCount + "\n\n"); + var s = ""; + for (var a in t.VlaoF.ServerInfoConfig) { + var r = t.VlaoF.ServerInfoConfig[a]; + t.GlobalData.sectionOpenDay >= r.openserverday && (s = r.ServerInfo); + } + (n += s), (this.contentLabel.textFlow = t.hETx.qYVI(n)); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null); + }), + i + ); + })(t.gIRYTi); + (t.MainServerInfoWin = e), __reflect(e.prototype, "app.MainServerInfoWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "CallSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (((this.obj = e[0]), this.vKruVZ(this.okButton, this.onClick), this.vKruVZ(this.cancelButton, this.onClick), this.obj)) { + t.Nzfh.ins().post_deleteType(this.obj.type); + var n = t.VlaoF.Scenes[this.obj.scenesId]; + 1 == this.obj.type + ? (this.dragDropUI.setTitle(t.CrmPU.language_Common_168), + (this.descLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_166, this.obj.name, n.scencename, this.obj.x, this.obj.y)))) + : (this.dragDropUI.setTitle(t.CrmPU.language_Common_169), + (this.descLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_167, this.obj.name, n.scencename, this.obj.x, this.obj.y)))); + } else t.mAYZL.ins().close(this); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.okButton: + return t.Nzfh.ins().s_0_27(this.obj.type), void t.mAYZL.ins().close(this); + case this.cancelButton: + return void t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + this.fEHj(this.okButton, this.onClick), this.fEHj(this.cancelButton, this.onClick), e.prototype.close.call(this), this.$onClose(), (this.obj = null); + }), + i + ); + })(t.gIRYTi); + (t.CallView = e), __reflect(e.prototype, "app.CallView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + (i._maximum = 100), + (i._value = 50), + (i.hpStr = ""), + (i.levelStr = ""), + (i._labelFunction = function (t, e) { + return t + "x" + e; + }); + var n = new eui.Image("boolBg"); + return ( + (n.scale9Grid = new egret.Rectangle(2, 1, 45, 2)), + i.addChild(n), + (i.width = n.width = 40), + (i.height = n.height = 5), + (i.thumb = new eui.Image("boolRed")), + (i.thumb.x = i.thumb.y = 1), + (i.thumb.width = 38), + (i.thumb.height = 3), + i.addChild(i.thumb), + (i.labelDisplay = t.mAYZL.gamescene.map.getCharHpLable()), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "maximum", { + get: function () { + return this._maximum; + }, + set: function (t) { + (t = +t || 0), this._maximum != t && ((this._maximum = t), this.updateBar()); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "value", { + get: function () { + return this._value; + }, + set: function (t) { + (t = +t || 0), this.setValue(t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setValue = function (t) { + t != this.value && ((this._value = t), this.updateBar()); + }), + (i.prototype.updateBar = function () { + (this.thumb.width = 38 * Math.min(this.value / this.maximum, 1)), + this.labelFunction && this.labelDisplay && ((this.hpStr = this.labelFunction(this.value, this.maximum)), (this.labelDisplay.text = this.hpStr + this.levelStr)); + }), + (i.prototype.updateLevel = function (t) { + (this.levelStr = t), (this.labelDisplay.text = this.hpStr + this.levelStr); + }), + (i.prototype.updateChaoWanVip = function (e) { + if (t.ubnV.ihUJ) return t.lEYZI.Naoc(this.vipImag), void t.lEYZI.Naoc(this.blueYearImg); + if (Main.vZzwB.pfID == t.PlatFormID.YY) + e + ? (this.vipImag || ((this.vipImag = new eui.Image("blood_chaowan")), (this.vipImag.scaleX = this.vipImag.scaleY = 0.8), (this.vipImag.x = -40), (this.vipImag.y = -16)), + this.addChild(this.vipImag)) + : t.lEYZI.Naoc(this.vipImag); + else { + var i = e >> 16, + n = i >> 8, + s = 255 & i, + a = 65535 & e, + r = Main.vZzwB.pfID == t.PlatFormID.QQGame ? n > 0 && a > 0 : e > 0; + if (r) { + var o = Main.vZzwB.pfID == t.PlatFormID.QQGame ? (1 == n ? "name_lz_pt" + (a + 1) : "name_lz_hh" + (a + 1)) : "blood_chaowan"; + this.vipImag || ((this.vipImag = new eui.Image(o)), (this.vipImag.x = -42), (this.vipImag.y = -2)), + s && (this.blueYearImg || ((this.blueYearImg = new eui.Image("name_lz_nf")), (this.blueYearImg.x = -20), (this.blueYearImg.y = -0)), this.addChild(this.blueYearImg)), + this.addChild(this.vipImag); + } else t.lEYZI.Naoc(this.vipImag), t.lEYZI.Naoc(this.blueYearImg); + } + }), + Object.defineProperty(i.prototype, "labelFunction", { + get: function () { + return this._labelFunction; + }, + set: function (t) { + this._labelFunction != t && (this._labelFunction = t); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.$setVisible = function (t) { + (this.labelDisplay.visible = t), e.prototype.$setVisible.call(this, t); + }), + (i.prototype.$setX = function (t) { + return (this.labelDisplay.x = t - 55), e.prototype.$setX.call(this, t); + }), + (i.prototype.$setY = function (t) { + return (this.labelDisplay.y = t - 15), e.prototype.$setY.call(this, t); + }), + (i.prototype.$onAddToStage = function (i, n) { + e.prototype.$onAddToStage.call(this, i, n), this.labelDisplay && t.mAYZL.gamescene.map.addCharHpLabel(this.labelDisplay); + }), + (i.prototype.$onRemoveFromStage = function () { + this.labelDisplay && t.lEYZI.Naoc(this.labelDisplay), e.prototype.$onRemoveFromStage.call(this); + }), + i + ); + })(egret.DisplayObjectContainer); + (t.CharHpBar = e), __reflect(e.prototype, "app.CharHpBar"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._hpBar = new eui.ProgressBar()), + (t._hpBar.skinName = "bloodBarSkin"), + (t._hpBar.labelDisplay.size = 14), + (t._nameTxt = new eui.Label()), + (t._nameTxt.size = 14), + (t._nameTxt.textColor = 15589033), + t.addChild(t._nameTxt), + t + ); + } + return ( + __extends(i, e), + (i.prototype.updateXY = function (t, e) { + (this.x = t), (this.y = e); + }), + (i.prototype.updateMaxHp = function (t) { + this._hpBar.maximum = t; + }), + (i.prototype.updateHp = function (t) { + (this._hpBar.value = Math.min(t, this._hpBar.maximum)), (this._hpBar.visible = !0); + }), + (i.prototype.setNameTxtColor = function (t) { + t ? (this._nameTxt.textColor = t) : (this._nameTxt.textColor = 16777215); + }), + (i.prototype.setCharName = function (e) { + this._nameTxt.textFlow = t.hETx.qYVI(e); + }), + i + ); + })(eui.Group); + (t.CharNameLabel = e), __reflect(e.prototype, "app.CharNameLabel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.offY = 0), + (i.labelList = []), + (i.bjLableAry = []), + (i.touchEnabled = !1), + (i.touchChildren = !1), + t.rLmMYc.addListener(t.Nzfh.ins().postEntityHpChange, i.showBloodHp, i), + t.rLmMYc.addListener(t.Nzfh.ins().postEntityCriticalHit, i.criticalHit, i), + i + ); + } + return ( + __extends(i, e), + (i.prototype.showBloodHp = function (t) { + var e = t[0], + i = t[1], + n = t[2], + s = t[3], + a = "" + n; + n > 0 && ((s = "num_4_fnt"), (a = "+" + n)); + var r = this.createLabel(a, i, s); + (r.x = e.x), (r.y = e.y - 100), this.addChild(r); + var o = egret.Tween.get(r), + l = r.y, + h = r.x; + n > 0 + ? o + .to( + { + y: l - 35, + x: h - 15, + }, + 400 + ) + .to( + { + y: l - 37, + x: h - 25, + }, + 350 + ) + .to( + { + y: l - 39, + x: h - 30, + }, + 300 + ) + .to( + { + y: l - 40, + x: h - 35, + }, + 350 + ) + .call(this.removeFloatTarget, this, [r]) + : ((r.scaleX = r.scaleY = 0), + o + .to( + { + scaleX: 1.5, + scaleY: 1.5, + }, + 120 + ) + .to( + { + scaleX: 1, + scaleY: 1, + }, + 70 + ) + .wait(150) + .to( + { + x: h - 10, + y: l - 30, + alpha: 0, + }, + 300 + ) + .call(this.removeFloatTarget, this, [r])); + }), + (i.prototype.animation1 = function (t) { + var e = egret.Tween.get(t), + i = t.y - 40; + e.to( + { + y: i, + }, + 750 + ) + .wait(200) + .call(this.removeFloatTarget, this, [t]); + }), + (i.prototype.removeFloatTarget = function (e) { + t.lEYZI.Naoc(e), this.destroyBlood(e); + }), + (i.prototype.destroyBlood = function (t) { + (t.x = 0), (t.y = 0), (t.alpha = 1), (t.scaleX = t.scaleY = 1), (t.touchChildren = !1), this.labelList.push(t); + }), + (i.prototype.createLabel = function (t, e, i) { + void 0 === i && (i = ""); + var n = this.getLabe(); + return n.createLabel(t, e, i), egret.Tween.removeTweens(n), n; + }), + (i.prototype.getLabe = function () { + return this.labelList.pop() || new t.HpLabelView(); + }), + (i.prototype.removeChildren = function () { + for (var t in this.$children) egret.Tween.removeTweens(this.$children[t]); + e.prototype.removeChildren.call(this); + }), + (i.prototype.criticalHit = function (e) { + var i = e[0], + n = e[1], + s = e[2], + a = e[3], + r = this.bjLableAry.pop() || new eui.BitmapLabel(), + o = this; + egret.Tween.removeTweens(r), i && ((r.font = "hitnum" + i + "_fnt"), (r.anchorOffsetY = 54)), (r.text = a), (r.letterSpacing = -9); + var l = n, + h = s - 60 - t.MathUtils.limit(1, 10); + (r.scaleX = r.scaleY = 0.5), (r.x = l), (r.y = h), (r.alpha = 1), this.addChild(r); + var p = egret.Tween.get(r); + p.to( + { + x: l + 35, + scaleX: 1, + scaleY: 1, + }, + 50 + ) + .wait(600) + .to( + { + x: l + 45, + y: h - 50, + alpha: 0, + scaleX: 0, + scaleY: 0, + }, + 200 + ) + .call(function () { + (r.text = ""), egret.Tween.removeTweens(r), t.lEYZI.Naoc(r), o.bjLableAry.push(r); + }); + }), + (i.sp1 = 60), + (i.sp2 = 80), + (i.sp3 = 80), + (i.sp4 = 400), + (i.sp5 = 720), + (i.fun1 = egret.Ease.circInOut), + (i.fun2 = egret.Ease.circInOut), + (i.fun3 = egret.Ease.sineIn), + (i.fun4 = null), + (i.fun5 = egret.Ease.sineIn), + (i.s0 = 1.2), + (i.s1 = 0.4), + (i.s2 = 0.75), + (i.s3 = 0.6), + (i.s4 = 0.6), + (i.s5 = 0.6), + (i.posX6 = -18), + (i.posX7 = -20), + (i.posX8 = -23), + (i.posX9 = -30), + (i.posY6 = 10), + (i.posY7 = 13), + (i.posY8 = 16), + (i.posY9 = 20), + (i.alpha6 = 0.6), + (i.alpha7 = 0.5), + (i.alpha8 = 0.4), + (i.alpha9 = 0), + (i.sp6 = 600), + (i.sp7 = 200), + (i.sp8 = 400), + (i.sp9 = 400), + (i.fun6 = null), + (i.fun7 = null), + (i.fun8 = null), + (i.fun9 = null), + (i.s6 = 0.6), + (i.s7 = 0.6), + (i.s8 = 0.6), + (i.s9 = 0.6), + (i.posX1 = 90), + (i.posX2 = 0), + (i.posX3 = 0), + (i.posY1 = 100), + (i.posY2 = 0), + (i.posY3 = 0), + (i.posY4 = 10), + (i.alpha0 = 1), + (i.alpha1 = 1), + (i.alpha2 = 1), + (i.alpha3 = 0.9), + (i.alpha4 = 0.5), + (i.alpha5 = 0), + (i.startX = 70), + (i.startY = 75), + (i.changeTime1 = 300), + (i.changeTime2 = 1e3), + (i.changeY = 0.5), + (i.bigScale = 3), + (i.endScale = 0.6), + (i.bigAlpha = 1), + (i.endAlpha1 = 1), + (i.endAlpha2 = 0.3), + (i.endTime1 = 600), + (i.endTime2 = 500), + (i.c_sp1 = 80), + (i.c_sp2 = 200), + (i.c_sp3 = 200), + (i.c_sp4 = 1e3), + (i.c_sp5 = 1200), + (i.c_fun1 = egret.Ease.circInOut), + (i.c_fun2 = egret.Ease.circInOut), + (i.c_fun3 = egret.Ease.sineIn), + (i.c_fun4 = null), + (i.c_fun5 = egret.Ease.sineIn), + (i.c_s0 = 0.1), + (i.c_s1 = 0.8), + (i.c_s2 = 0.8), + (i.c_s3 = 0.8), + (i.c_s4 = 0.6), + (i.c_s5 = 0.1), + (i.c_posX1 = 0), + (i.c_posX2 = 100), + (i.c_posX3 = 120), + (i.c_posY1 = 120), + (i.c_posY2 = 10), + (i.c_posY3 = 10), + (i.c_posY4 = 10), + (i.c_alpha0 = 1), + (i.c_alpha1 = 1), + (i.c_alpha2 = 1), + (i.c_alpha3 = 0.6), + (i.c_alpha4 = 0), + (i.c_alpha5 = 0), + (i.h_sp1 = 80), + (i.h_sp2 = 300), + (i.h_sp3 = 200), + (i.h_sp4 = 1e3), + (i.h_sp5 = 1200), + (i.h_fun1 = egret.Ease.circInOut), + (i.h_fun2 = egret.Ease.circInOut), + (i.h_fun3 = egret.Ease.sineIn), + (i.h_fun4 = null), + (i.h_fun5 = egret.Ease.sineIn), + (i.h_s0 = 0.1), + (i.h_s1 = 1.2), + (i.h_s2 = 1.2), + (i.h_s3 = 1.2), + (i.h_s4 = 1.2), + (i.h_s5 = 1.2), + (i.h_posX1 = 0), + (i.h_posX2 = 100), + (i.h_posX3 = 120), + (i.h_posY1 = 150), + (i.h_posY2 = 10), + (i.h_posY3 = -30), + (i.h_posY4 = -30), + (i.h_alpha0 = 1), + (i.h_alpha1 = 1), + (i.h_alpha2 = 1), + (i.h_alpha3 = 0.6), + (i.h_alpha4 = 0), + (i.h_alpha5 = 0), + (i.NORMAL_SCALE_1 = 1.1), + (i.NORMAL_SCALE_2 = 0.95), + (i.sn_sp1 = 600), + (i.sn_sp2 = 200), + (i.sn_sp3 = 200), + (i.sn_fun1 = null), + (i.sn_fun2 = null), + (i.sn_s0 = 1.3), + (i.sn_s1 = 1.3), + (i.sn_s2 = 1.3), + (i.sc_sp1 = 600), + (i.sc_sp2 = 200), + (i.sc_sp3 = 200), + (i.sc_fun1 = null), + (i.sc_fun2 = null), + (i.sc_s0 = 1.5), + (i.sc_s1 = 1.5), + (i.sc_s2 = 1.5), + (i.C_END_DES = 0), + (i.C_YPOS1 = 120), + (i.C_YPOS2 = 0), + (i.C_YPOS3 = -20), + (i.C_WAIT1 = 200), + (i.C_SPEED1 = 100), + (i.C_SPEED2 = 600), + i + ); + })(egret.DisplayObjectContainer); + (t.FloatView = e), __reflect(e.prototype, "app.FloatView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._CELL_SIZE = 64), + (t._STAGE_HALFWIDTH = 960), + (t._STAGE_HALFHEIGHT = 600), + (t._fbType = 0), + (t.lastFbTyp = 0), + (t.lastFbId = 0), + (t.mapFiel = ""), + (t.areaState = []), + (t._areaName = ""), + (t.isOpenSceneHeJi = !1), + t + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "CELL_SIZE", { + get: function () { + return this._CELL_SIZE; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "MAX_WIDTH", { + get: function () { + return this._MAX_WIDTH; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "MAX_HEIGHT", { + get: function () { + return this._MAX_HEIGHT; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "COL", { + get: function () { + return this._COL; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "ROW", { + get: function () { + return this._ROW; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapZip", { + get: function () { + return this._mapZip; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapID", { + get: function () { + return this._mapID; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapX", { + get: function () { + return this._mapX; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapY", { + get: function () { + return this._mapY; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "fbType", { + get: function () { + return this._fbType; + }, + set: function (t) { + this._fbType = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapName", { + get: function () { + return this._mapName; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function (t) { + (this.aStar = this.aStar || new KdbLz.DVnj(this.checkCell, this)), (this._mapZip = t); + }), + (i.prototype.checkCell = function (e) { + var i = t.NWRFmB.ins().getPayer; + return (t.qTVCL.ins().isOpen || i.isDothetask() || i.isMiniMapPath() || t.qTVCL.ins().attackState) && (t.NWRFmB.ins().checkWalkable(e.x, e.y) || (e.x == i.lockCell.x && e.y == i.lockCell.y)) + ? !1 + : t.NWRFmB.ins().getTeleport(e.x, e.y) + ? !1 + : !0; + }), + Object.defineProperty(i.prototype, "scenes", { + get: function () { + return this._scenes; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "delayOnHook", { + get: function () { + return this._delayOnHook; + }, + set: function (t) { + this._delayOnHook = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isNoPickUp", { + get: function () { + return this._isNoPickUp; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.parser = function (e) { + (this._delayOnHook = 0), (this._isNoPickUp = 0), (this._mapName = e.readString()); + var i = e.readString(); + (this._mapID = e.readShort()), (this.fubenID = e.readShort()), (this._mapX = e.readShort()), (this._mapY = e.readShort()); + var n = t.NWRFmB.ins().getPayer; + if ( + (n ? (n.propSet.setProperty(t.nRDo.PROP_AREASTATE1, e.readUnsignedInt()), n.propSet.setProperty(t.nRDo.PROP_AREASTATE2, e.readUnsignedInt())) : (e.readUnsignedInt(), e.readUnsignedInt()), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + (this._scenes = t.VlaoF.Scenes[this._mapID]), + this._scenes.isHook && + this._scenes.hook && + (this._scenes.hook = this._scenes.hook.sort(function () { + return 0.5 - Math.random(); + })), + (this._isNoPickUp = this._scenes.isNoPickUp), + t.qTVCL.ins().isOpen && !this._scenes.isHook && t.qTVCL.ins().YFOmNj(), + i != this.mapFiel) + ) { + this.mapFiel = i; + var s = this.mapZip[i]; + (this._MAX_HEIGHT = s.pixHeight), (this._MAX_WIDTH = s.pixWidth), (this._COL = s.maxX), (this._ROW = s.maxY), this.aStar.initFromMap(s); + } + }), + (i.prototype.attackAStarPatch = function (t, e, i, n) { + for ( + var s = !1, a = !1, r = 0, o = 0, l = 0; + 8 > l && + ((r = t + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[l]), + (o = e + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[l]), + !(s = this.checkCell({ + x: r, + y: o, + }))); + ++l + ); + (r = 0), (o = 0); + for ( + var l = 0; + 8 > l && + ((r = i + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[l]), + (o = n + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[l]), + !(a = this.checkCell({ + x: r, + y: o, + }))); + ++l + ); + return s && a ? !0 : !1; + }), + (i.prototype.getAStarPatch = function (e, i, n, s) { + var a; + if (t.qTVCL.ins().isOpen) { + for ( + var r = 0, o = 0, l = !1, h = 0; + 8 > h && + ((r = n + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[h]), + (o = s + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[h]), + !(l = this.checkCell({ + x: r, + y: o, + }))); + ++h + ); + a = l ? this.aStar.getPatch(e, i, n, s) : []; + } else a = this.aStar.getPatch(e, i, n, s); + return a; + }), + (i.prototype.checkWalkable = function (t, e) { + var i = this.aStar.isWalkableTile(t, e); + return i; + }), + (i.prototype.checkAlpha = function (t, e) { + var i = this.aStar.ishidden(t, e); + return i; + }), + Object.defineProperty(i.prototype, "areaName", { + get: function () { + return this._areaName; + }, + set: function (t) { + this._areaName = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setAreaState = function (t, e) { + this._areaName = t; + }), + (i.prototype.getValueByBit = function (e) { + if (t.NWRFmB.ins().getPayer) { + var i = e >> 5, + n = 31 & e; + return Boolean((t.NWRFmB.ins().getPayer.propSet.getAreaState()[i] >>> n) & 1); + } + }), + Object.defineProperty(i.prototype, "getIsSafe", { + get: function () { + var t = this.getValueByBit(1); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "getAAZY", { + get: function () { + var t = this.getValueByBit(13); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "getAACamp", { + get: function () { + var e = t.VlaoF.StaticFubens[t.GameMap.fubenID]; + return e ? 1 == e.warType : !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isThroughMonster", { + get: function () { + var t = this.getValueByBit(6); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isThroughHuman", { + get: function () { + var t = this.getValueByBit(5); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isCall", { + get: function () { + var t = this.getValueByBit(8); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isForbiddenArea", { + get: function () { + var t = this.getValueByBit(18); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "aaCannotSeeName", { + get: function () { + var t = this.getValueByBit(19); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isBubble", { + get: function () { + var t = this.getValueByBit(45); + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "fubenID", { + get: function () { + return this._fubenID; + }, + set: function (e) { + this._fubenID != e && + ((t.TQkyOx.ins().currentActId = 0), + (t.FuBenMgr.ins().timeRemaining = 0), + (this._fubenID = e), + e > 0 + ? (t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + t.mAYZL.ins().close(t.ActivityCopiesWin), + t.mAYZL.ins().close(t.CrossServerWin), + t.mAYZL.ins().ZbzdY(t.FuBenView) || t.mAYZL.ins().open(t.FuBenView), + t.mAYZL.ins().ZbzdY(t.ActivityMaterialView) && t.mAYZL.ins().close(t.ActivityMaterialView), + ((t.GameMap.fubenID > 6 && t.GameMap.fubenID < 14) || 23 == t.GameMap.fubenID) && (t.mAYZL.ins().ZbzdY(t.MagicBossInfoShowView) || t.mAYZL.ins().open(t.MagicBossInfoShowView))) + : ((t.TQkyOx.ins().EscapeRoleInfo = []), t.mAYZL.ins().close(t.FuBenView), t.mAYZL.ins().close(t.InspireView), t.mAYZL.ins().close(t.MagicBossInfoShowView)), + t.qTVCL.ins().isOpen && this._fubenID && t.qTVCL.ins().YFOmNj()); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.sceneInMain = function () { + return 0 == this._fbType && 0 == this.fubenID; + }), + (i.prototype.sceneInMine = function () { + return 0 == this._fbType && 0 != this.fubenID; + }), + (i.prototype.canStartAI = function () { + return 0 == this._fbType; + }), + (i.prototype.getFileName = function () { + return this.mapFiel; + }), + (i.prototype.autoPunch = function () { + return !1; + }), + (i.prototype.getRectangle = function (t, e, i) { + var n = t.x + (e - 0.5) * this._CELL_SIZE, + s = t.y + (i - 0.5) * this._CELL_SIZE; + return new egret.Rectangle(n, s, this._CELL_SIZE, this._CELL_SIZE); + }), + (i.prototype.getIncludeElement = function (t, e, i) { + var n = []; + for (var s in e) { + var a = this.getRectangle(t, e[s].x, e[s].y); + for (var r in i) { + var o = i[r]; + o.x >= a.x && o.y >= a.y && o.x < a.x + a.width && o.y < a.y + a.height && n.push(o); + } + } + return n; + }), + (i.prototype.getPoint = function (t, e, i) { + var n = Math.floor(t / e) - Math.floor(i / 2), + s = Math.floor(t % e) - Math.floor(e / 2); + return new egret.Point(s, n); + }), + (i.prototype.getTargetIndex = function (t, e, i, n) { + var s = e.x - t.x + this._CELL_SIZE * (i / 2), + a = e.y - t.y + this._CELL_SIZE * (n / 2), + r = Math.floor(s / this._CELL_SIZE), + o = Math.floor(a / this._CELL_SIZE); + return i * o + r; + }), + (i.prototype.checkWalkableByPixel = function (t, e) { + var i = Math.floor(t / this._CELL_SIZE), + n = Math.floor(e / this._CELL_SIZE); + return this.checkWalkable(i, n); + }), + (i.prototype.getPosRange = function (e, i, n) { + var s = t.MathUtils.limitInteger(-n, +n), + a = t.MathUtils.limitInteger(-n, +n); + +s != +n && (a = Math.random() < 0.5 ? -n : n); + for (var r = 0, o = s, l = a; ; ) { + var h = this.checkWalkable(e + o, i + l); + if (h) return [e + o, i + l]; + if ( + (o == n && n > l ? (l += 1) : l == n && o > -n ? (o -= 1) : o == -n && l > -n ? (l -= 1) : l == -n && n > o && (o += 1), + o == s && l == a && (s == n && (o = s = n + 1), s == -n && (o = s = -n - 1), a == n && (l = a = n + 1), a == -n && (l = a = -n - 1), (n += 1)), + (r += 1), + r > 100) + ) + break; + } + return [e, i]; + }), + (i.prototype.getPosRangeByDir = function (t, e, i, n) { + var s = t, + a = e; + return ((i >= 0 && 1 >= i) || 7 == i) && (a -= n), i >= 3 && 5 >= i && (a += n), i >= 1 && 3 >= i && (s += n), i >= 5 && 7 >= i && (s -= n), [s, a, this.checkWalkable(s, a)]; + }), + (i.prototype.getPosRangeRandom = function (t, e, i, n) { + void 0 === n && (n = 1); + var s = this.point2Grip(t), + a = this.point2Grip(e), + r = [i], + o = Math.random(); + o > 0.66 + ? ((i = 0 > i - 1 ? 7 : i - 1), r.unshift(i), o > 0.8 ? r.push((i + 2) % 8) : r.splice(1, 0, (i + 2) % 8)) + : o > 0.33 && ((i = i + 1 > 7 ? 0 : i + 1), r.unshift(i), o > 0.5 ? r.push((i - 2 + 8) % 8) : r.splice(1, 0, (i - 2 + 8) % 8)); + for (var l, h = !1, p = 0; p < r.length; p++) + if (((l = this.getPosRangeByDir(s, a, r[p], n)), l[2])) { + h = !0; + break; + } + return h || (l = this.getPosRange(s, a, n)), l; + }), + (i.prototype.getAround8 = function (t, e) { + if (t.X == e.X && t.Y == e.Y) return !0; + for (var i = 0, n = 0, s = 0; 8 > s; ++s) if (((i = e.X + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[s]), (n = e.Y + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[s]), i == t.X && n == t.Y)) return !0; + return !1; + }), + (i.prototype.point2Grip = function (t) { + return Math.floor(t / this._CELL_SIZE); + }), + (i.prototype.grip2Point = function (t) { + return t * this._CELL_SIZE + (this._CELL_SIZE >> 1); + }), + (i.prototype.point2Dir = function (t, e) { + return 0 > t + e ? 8 + e : (t + e) % 8; + }), + (i.prototype.checkRange = function (e, i, n, s) { + var a = t.aTwWrO.ins().getWidth(), + r = t.aTwWrO.ins().getHeight(); + return e + n + this._CELL_SIZE >= 0 && i + s + this._CELL_SIZE > 0 && e + n - this._CELL_SIZE < a && i + s - this._CELL_SIZE < r ? !0 : void 0; + }), + (i.prototype.checkOverstepScreen = function (e, i, n) { + t.aTwWrO.ins().getWidth(), t.aTwWrO.ins().getHeight(); + }), + i + ); + })(t.BaseClass); + (t.GameMapInfo = e), __reflect(e.prototype, "app.GameMapInfo"), (t.GameMap = new e()); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), t.updateScale(), (t.skinName = "GameFightSceneSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.updateScale = function () { + this.scaleX = this.scaleY = t.aTwWrO.ins().getScale(); + }), + Object.defineProperty(i.prototype, "map", { + get: function () { + return this._map; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "mapgBgImge", { + get: function () { + return this._mapgBgImge; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.touchEnabled = !1), (this._map = new t.EhSWiR()), this.addChild(this._map), this._map.initMap(); + }), + (i.prototype.destroyRes = function () { + (KdbLz.os.RM.clearRes = 1e4), KdbLz.os.RM.destroyRes(); + }), + (i.prototype.destroy = function () { + e.prototype.destroy.call(this), t.KHNO.ins().removeAll(this); + }), + (i.prototype.open = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.open.call(this, t); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t); + }), + (i.prototype.destoryView = function () {}), + i + ); + })(t.gIRYTi); + (t.GameSceneView = e), __reflect(e.prototype, "app.GameSceneView"), t.mAYZL.ins().reg(e, t.yCIt.cvmJ); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + (e.thisVal = 0), (e._maximum = 0), (e.touchEnabled = !0), (e.touchChildren = !0); + var i = new eui.Image("boolBg"); + return ( + (i.scale9Grid = new egret.Rectangle(2, 1, 45, 2)), + (i.width = 40), + (i.height = 5), + e.addChild(i), + (e.thumb = new eui.Image("boolRed")), + (e.thumb.x = 1), + (e.thumb.y = 1), + (e.thumb.width = 38), + (e.thumb.height = 3), + e.addChild(e.thumb), + e + ); + } + return ( + __extends(e, t), + Object.defineProperty(e.prototype, "Thumb", { + set: function (t) { + this.thumb.source = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "value", { + get: function () { + return this.thisVal; + }, + set: function (t) { + (this.thisVal = t), this.updateHp(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "maximum", { + get: function () { + return this._maximum; + }, + set: function (t) { + (this._maximum = t), this.updateHp(); + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.updateHp = function () { + this.thumb.width = 38 * Math.max(Math.min(this.thisVal / this._maximum, 1), 0); + }), + e + ); + })(eui.Group); + (t.HPGroup = e), __reflect(e.prototype, "app.HPGroup"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return ( + (e.touchChildren = !1), + (e.touchEnabled = !1), + (e.bimapLabe = new eui.BitmapLabel()), + (e.bimapLabe.letterSpacing = -3), + (e.bimapLabe.width = 300), + (e.bimapLabe.x = -150), + (e.bimapLabe.textAlign = egret.HorizontalAlign.CENTER), + e.addChild(e.bimapLabe), + e + ); + } + return ( + __extends(e, t), + (e.prototype.createLabel = function (t, e, i) { + void 0 === i && (i = ""), + (this.bimapLabe.text = ""), + "0" == t ? (this.bimapLabe.visible = !1) : (i && "" != i ? (this.bimapLabe.font = i) : (this.bimapLabe.font = "num_2_fnt"), (this.bimapLabe.text = t), (this.bimapLabe.visible = !0)); + }), + e + ); + })(egret.DisplayObjectContainer); + (t.HpLabelView = e), __reflect(e.prototype, "app.HpLabelView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.osMove = !1), + (t.type = 0), + (t.skillArr = []), + (t.skillKeyArr = [55, 58]), + (t.postX = 0), + (t.postY = 0), + (t.teleportObj = {}), + (t.arrowObj = {}), + (t.isMayrecog = null), + (t.charRectObj = {}), + (t.skinName = "MapMaxSkin"), + (t.touchEnabled = !0), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tipsLabel.text = t.CrmPU.language_System69); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.Nzfh.ins().post_g_0_41, this.updateAreaName), + this.HFTK(t.Nzfh.ins().post_setTarget, this.updateTarget), + this.HFTK(t.NGcJ.ins().post_playSkillMc, this.playSkillKeyEff), + this.HFTK(t.NGcJ.ins().postg_5_5, this.skillCD), + this.HFTK(t.Nzfh.ins().postUpdateMapStarPatch, this.updateMapStarPatch), + t.KHNO.ins().remove(this.updateSkillCD, this), + t.KHNO.ins().tBiJo(10, 0, this.updateSkillCD, this), + this.updateSkillCD(), + this.updateMaxMap(e[0]), + this.updateAreaName(), + this.updateSkill(), + this.clearRoute(), + this.addChar(), + KdbLz.qOtrbE.iFbP + ? this.mapImage.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onDoubleDownClick, this) + : (this.vKruVZ(this.mapImage, this.onDoubleDownClick), + this.VoZqXH(this.mapImage, this.mouseMove), + this.EeFPm(this.mapImage, this.mouseMove), + this.VoZqXH(this.troopsImage, this.mouseMove), + this.EeFPm(this.troopsImage, this.mouseMove), + this.VoZqXH(this.guildImage, this.mouseMove), + this.EeFPm(this.guildImage, this.mouseMove), + this.VoZqXH(this.skill0, this.mouseMove), + this.EeFPm(this.skill0, this.mouseMove), + this.VoZqXH(this.skill1, this.mouseMove), + this.EeFPm(this.skill1, this.mouseMove)), + this.vKruVZ(this.btn_close, this.onClick), + this.vKruVZ(this.btn_close2, this.onClick), + this.vKruVZ(this.troopsImage, this.onClick), + this.vKruVZ(this.guildImage, this.onClick), + this.vKruVZ(this.okButton, this.onClick), + this.vKruVZ(this.cancelButton, this.onClick), + (this.tipsGroup.visible = !1); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn_close: + return void t.mAYZL.ins().close(this); + case this.okButton: + return (this.tipsGroup.visible = !1), void t.Nzfh.ins().s_0_26(this.type); + case this.cancelButton: + return void (this.tipsGroup.visible = !1); + case this.btn_close2: + return void (this.tipsGroup.visible = !1); + case this.troopsImage: + this.type = 1; + var i = t.NWRFmB.ins().getPayer; + return (this.descLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_164, t.GameMap.mapName, i.currentX, i.currentY))), void (this.tipsGroup.visible = !0); + case this.guildImage: + this.type = 2; + var n = t.NWRFmB.ins().getPayer; + return (this.descLabel.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_165, t.GameMap.mapName, n.currentX, n.currentY))), void (this.tipsGroup.visible = !0); + } + }), + (i.prototype.updateSkill = function () { + for (var e = 0; e < this.skillKeyArr.length; e++) { + var i = t.VlaoF.SkillsLevelConf[this.skillKeyArr[e]][1]; + i && + (this["skill" + e].setSkillImg(i.skillName + ""), + (this["skill" + e].keyIndex = e), + this["skill" + e].setCountState(!1), + (this["skill" + e].ID = i.id), + (this["skill" + e].TYPES = 1), + (this["skillMC" + e] = t.ObjectPool.pop("app.MovieClip")), + (this["skillMC" + e].blendMode = egret.BlendMode.ADD), + (this["skillMC" + e].scaleX = this["skillMC" + e].scaleY = 1), + (this["skillMC" + e].touchEnabled = !1), + this["cdGrp" + e].addChild(this["skillMC" + e]), + (this["skillMC" + e].visible = !1), + this.skillArr.push(this["skill" + e])); + } + }), + (i.prototype.updateSkillCD = function () { + for (var e = -1, i = 0; i < this.skillKeyArr.length; i++) { + this["skill" + i].stopTween(); + var n = t.NWRFmB.ins().getPayer.getUserSkill(this.skillKeyArr[i]); + if (n) { + var s = t.VlaoF.SkillsLevelConf[this.skillKeyArr[i]][n.nLevel]; + if (s) { + var a = n.dwResumeTick - egret.getTimer(); + a > 0 && (this["skill" + i].playTween3(s.cooldownTime, a, !0), e++); + } + } + } + -1 == e && t.KHNO.ins().remove(this.updateSkillCD, this); + }), + (i.prototype.skillCD = function (e) { + t.KHNO.ins().RTXtZF(this.updateSkillCD, this) || (t.KHNO.ins().tBiJo(10, 0, this.updateSkillCD, this), this.updateSkillCD()); + }), + (i.prototype.playSkillKeyEff = function (t) { + for ( + var e, + i = function (i) { + if (((e = n.skillArr[i]), e.ID == t.id)) { + var s = n["skillMC" + e.keyIndex]; + return ( + s && + ((s.visible = !0), + s.playFileEff( + ZkSzi.RES_DIR_EFF + t.skillName, + 1, + function () { + s.visible = !1; + }, + !1 + )), + { + value: void 0, + } + ); + } + }, + n = this, + s = 0; + s < this.skillArr.length; + s++ + ) { + var a = i(s); + if ("object" == typeof a) return a.value; + } + }), + (i.prototype.updateTarget = function (e) { + e && e.x && e.y + ? ((this.targetImage.x = t.GameMap.grip2Point(e.x) / this.nScale), (this.targetImage.y = t.GameMap.grip2Point(e.y) / this.nScale), (this.targetImage.visible = !0)) + : ((this.targetImage.visible = !1), this.clearRoute()); + }), + (i.prototype.clearRoute = function () { + this.routeGroup.removeChildren(); + }), + (i.prototype.addChar = function () { + var e, + i = t.NWRFmB.ins().getNpcList(); + for (var n in i) (e = i[n]), this.addRead(e); + var s, + a = t.NWRFmB.ins().YUwhM(); + for (var n in a) (s = a[n]), this.addRead(s); + }), + (i.prototype.updateMaxMap = function (e) { + e ? (this.mapSource = e) : (this.mapSource = "" + ZkSzi.MAP_DIR + t.GameMap.getFileName() + "/small.jpg?v=1"), + RES.getResByUrl(this.mapSource, this.onComplete, this, RES.ResourceItem.TYPE_IMAGE); + }), + (i.prototype.updateAreaName = function () { + this.areaName.text = t.GameMap.areaName; + }), + (i.prototype.onComplete = function (e, i) { + if (e && this.mapSource == i) { + this.nameLabel.text = t.GameMap.mapName; + var n = 800, + s = 500; + this.nScale = t.GameMap.MAX_WIDTH / n; + var a = 800 / e.textureWidth; + (s = a * e.textureHeight), + (this.mapImage.width = n), + (this.mapImage.height = s), + (this.mapGroup.width = n), + (this.mapGroup.height = s), + (this.width = n + this.mapGroup.left + this.mapGroup.right), + (this.height = s + this.mapGroup.top + this.mapGroup.bottom), + (this.mapImage.source = e), + this.teleportNameGroup.removeChildren(), + this.teleportImageGroup.removeChildren(), + t.ObjectPool.wipe(this.charRectObj); + var r = t.NWRFmB.ins().getPayer; + this.updateTarget(r.pathXY), (this.charRectObj[r.recog] = this.myRect), this.rectGroup.removeChildren(); + for (var o = void 0, l = void 0, h = void 0, p = 0; p < t.GameMap.scenes.teleport.length; p++) + if (((o = t.GameMap.scenes.teleport[p]), o && !o.mapHide)) { + (l = new eui.Label(o)), (h = new eui.Image("map_jiantou")); + var u = o.posx * t.GameMap.CELL_SIZE, + c = o.posy * t.GameMap.CELL_SIZE - 20; + (h.x = u / this.nScale), + (h.y = c / this.nScale), + (l.size = 14), + (l.textAlign = egret.HorizontalAlign.CENTER), + (l.text = o.name), + this.teleportNameGroup.addChild(l), + (l.x = Math.max(1, h.x + 8)), + l.x + 300 > n && (l.x = h.x - l.width - 3), + (l.y = Math.min(Math.max(1, h.y), s - l.height - 1)), + this.teleportImageGroup.addChild(h); + } + this.updateXY(r), this.addChar(), this.updateMapStarPatch(); + } + }), + (i.prototype.mouseMove = function (e) { + if (t.GameMap.scenes && t.GameMap.scenes.ismini) + if (e.type == mouse.MouseEvent.MOUSE_OUT) + switch (e.currentTarget) { + case this.mapImage: + (this.osMove = !1), this.mapImage.removeEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this); + break; + default: + t.uMEZy.ins().closeTips(); + } + else if (e.type == mouse.MouseEvent.MOUSE_OVER) + switch (e.currentTarget) { + case this.mapImage: + (this.osMove = !0), this.mapImage.addEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this); + break; + default: + var i = e.currentTarget.localToGlobal(), + n = ""; + e.currentTarget == this.troopsImage + ? (n = t.CrmPU.language_Common_182) + : e.currentTarget == this.guildImage + ? (n = t.CrmPU.language_Common_181) + : e.currentTarget == this.skill0 + ? (n = t.CrmPU.language_Common_180) + : e.currentTarget == this.skill1 && (n = t.CrmPU.language_Common_179), + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, n, { + x: i.x + e.currentTarget.width / 2, + y: i.y + e.currentTarget.height / 2, + }), + (i = null); + } + else + e.type == mouse.MouseEvent.ROLL_OVER && + ((this.postX = Math.max(Math.floor((e.localX * this.nScale) / t.GameMap.CELL_SIZE), 0)), + (this.postY = Math.max(Math.floor((e.localY * this.nScale) / t.GameMap.CELL_SIZE), 0)), + (this.xyLabel.text = this.postX + ":" + this.postY)); + }), + (i.prototype.onDoubleDownClick = function (e) { + e.stopPropagation(); + var i = t.NWRFmB.ins().getPayer; + if (i) { + if (KdbLz.qOtrbE.iFbP) { + //this.globalToLocal(i.stageX, i.stageY) + var o = this.globalToLocal(e.stageX - 25, e.stageY - 60); + //t.UserTips.ins().showUITips('x=' + o.x + ', y=' + o.y); + (this.postX = Math.max(t.GameMap.point2Grip(o.x * this.nScale), 0)), (this.postY = Math.max(t.GameMap.point2Grip(o.y * this.nScale), 0)), i.pathFinding(this.postX, this.postY); + } else { + i.pathFinding(this.postX, this.postY); + } + } + }), + (i.prototype.updatePlayerXY = function (t, e) { + this.osMove || (this.xyLabel.text = t + ":" + e); + }), + (i.prototype.remDot = function (e) { + var i = t.NWRFmB.ins().getPayer; + e != i.recog && this.charRectObj[e] && (t.lEYZI.Naoc(this.charRectObj[e]), delete this.charRectObj[e]); + }), + (i.prototype.updateXY = function (t) { + if (this.charRectObj[t.recog]) { + var e = t.x / this.nScale, + i = t.y / this.nScale; + (this.charRectObj[t.recog].x = e), (this.charRectObj[t.recog].y = i), t.isMy && (this.updatePlayerXY(t.currentX, t.currentY), this.updateMapStarPatch()); + } else this.addRead(t); + }), + (i.prototype.addRead = function (e) { + if (!this.charRectObj[e.recog]) { + if (e instanceof t.sxkGBT) this.charRectObj[e.recog] = new eui.Image("map_dian_3"); + else { + if (e.isMy) return; + if (e.isCharRole) { + var i = this.getCharRectColor(e, e.getMapColor()); + this.charRectObj[e.recog] = new eui.Image(i); + } else if (e.isPet) this.charRectObj[e.recog] = new eui.Image("map_dian_6"); + else { + var n = t.VlaoF.Monster[e.propSet.getACTOR_ID()]; + 3 == n.monsterType || 4 == n.monsterType || 8 == n.monsterType || 10 == n.monsterType + ? (this.charRectObj[e.recog] = new eui.Image("map_boss")) + : (this.charRectObj[e.recog] = new eui.Image("map_dian_5")); + } + } + (this.charRectObj[e.recog].anchorOffsetX = 3), + (this.charRectObj[e.recog].anchorOffsetX = 3), + (this.charRectObj[e.recog].width = 6), + (this.charRectObj[e.recog].height = 6), + this.rectGroup.addChild(this.charRectObj[e.recog]), + this.updateXY(e); + } + }), + (i.prototype.getCharRectColor = function (e, i) { + return i == t.ClwSVR.NAME_BLUE + ? "map_dian_1" + : i == t.ClwSVR.NAME_ORANGE + ? "map_dian_2" + : i == t.ClwSVR.NAME_GREEN + ? "map_dian_3" + : i == t.ClwSVR.NAME_pinkGreen + ? "map_dian_8" + : 14549407 == i + ? "map_dian_9" + : 4513277 == i + ? "map_dian_10" + : 7873229 == i + ? "map_dian_11" + : "map_dian_4"; + }), + (i.prototype.updateMapStarPatch = function () { + if ((this.clearRoute(), this.targetImage.visible)) { + var e = t.NWRFmB.ins().getPayer, + i = e.aStarPatch; + if (i.length > 2) { + var n = i.length, + s = void 0, + a = void 0, + r = void 0, + o = Math.floor(this.nScale / 4); + o = o ? o : 1; + for (var l = 0; n > l; l++) + l % o == 0 && + ((s = new eui.Image("mpa_way")), + (a = t.GameMap.grip2Point(i[l].X) / this.nScale), + (r = t.GameMap.grip2Point(i[l].Y) / this.nScale), + (s.x = a - 4), + (s.y = r - 4), + this.routeGroup.addChild(s)); + } + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + this.clearRoute(), + (this.teleportObj = null), + (this.arrowObj = null), + KdbLz.qOtrbE.iFbP + ? this.mapImage.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onDoubleDownClick, this) + : (this.fEHj(this, this.onDoubleDownClick), + this.lbpdAJ(this.mapImage, this.mouseMove), + this.lvpAF(this.mapImage, this.mouseMove), + this.lbpdAJ(this.troopsImage, this.mouseMove), + this.lvpAF(this.troopsImage, this.mouseMove), + this.lbpdAJ(this.guildImage, this.mouseMove), + this.lvpAF(this.guildImage, this.mouseMove), + this.lbpdAJ(this.skill0, this.mouseMove), + this.lvpAF(this.skill0, this.mouseMove), + this.lbpdAJ(this.skill1, this.mouseMove), + this.lvpAF(this.skill1, this.mouseMove)), + this.fEHj(this.btn_close, this.onClick), + this.fEHj(this.btn_close2, this.onClick), + this.fEHj(this.troopsImage, this.onClick), + this.fEHj(this.guildImage, this.onClick), + this.fEHj(this.okButton, this.onClick), + this.fEHj(this.cancelButton, this.onClick), + this.mapImage.removeEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this); + for (var s = 0; s < this.skillArr.length; s++) this["skillMC" + s].destroy(); + t.KHNO.ins().remove(this.updateSkillCD, this); + }), + i + ); + })(t.gIRYTi); + (t.MapMaxView = e), __reflect(e.prototype, "app.MapMaxView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.nimiImageW = 0), + (t.nimiImageH = 0), + (t.isRightClick = !1), + (t.osMove = !1), + (t.postX = 0), + (t.postY = 0), + (t.nScale = 0), + (t.teleportObj = {}), + (t.arrowObj = {}), + (t.isMayrecog = null), + (t.charRectObj = {}), + (t.skinName = "MapMiniSkin"), + (t.right = 0), + (t.top = 0), + t.vKruVZ(t, t.onClickBtn), + t.addRightDownEvent(t, t.rightClick), + t.VoZqXH(t.mapGroup, t.mouseMove), + t.EeFPm(t.mapGroup, t.mouseMove), + t.childrenCreated(), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initUIView(); + }), + (i.prototype.initUIView = function () { + KdbLz.qOtrbE.iFbP && (this.scaleX = this.scaleY = 0.9), + this.HFTK(t.Nzfh.ins().post_setTarget, this.updateTarget), + this.HFTK(t.Nzfh.ins().post_updatePlayerXY, this.updatePlayerXY), + this.HFTK(t.Nzfh.ins().post_remDot, this.remDot), + this.HFTK(t.Nzfh.ins().post_updateCharRectColor, this.updateCharRectColor), + this.HFTK(t.Nzfh.ins().post_updateCharRect, this.updateCharRect), + this.HFTK(t.Nzfh.ins().post_updateMiniBg, this.updateMiniBg), + this.updateEntity(), + t.KHNO.ins().RTXtZF(this.updateEntity, this) || t.KHNO.ins().tBiJo(2e3, 0, this.updateEntity, this); + }), + (i.prototype.updateEntity = function () { + var e, + i = t.mAYZL.ins().ZzTs(t.MapMaxView), + n = t.NWRFmB.ins().getNpcList(); + for (var s in n) (e = n[s]), this.updateCharRect(e), i && i.addRead(e); + var a = t.NWRFmB.ins().YUwhM(); + for (var s in a) (e = a[s]), this.updateCharRect(e), i && i.updateXY(e); + }), + (i.prototype.updateTarget = function (e) { + e + ? ((this.targetImage.x = t.GameMap.grip2Point(e.x) / this.nScale), + (this.targetImage.y = t.GameMap.grip2Point(e.y) / this.nScale), + (this.routeImage.visible = !0), + (this.routeImage.x = this.targetImage.x), + (this.routeImage.y = this.targetImage.y), + (this.targetImage.visible = !0)) + : ((this.targetImage.visible = !1), (this.routeImage.visible = !1)); + }), + (i.prototype.mouseMove = function (e) { + if (t.GameMap.scenes && t.GameMap.scenes.ismini) + if (e.type == mouse.MouseEvent.MOUSE_OUT) { + (this.osMove = !1), this.mapGroup.removeEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this); + var i = t.NWRFmB.ins().getPayer; + i && (this.xyLabel.text = i.currentX + ":" + i.currentY); + } else + e.type == mouse.MouseEvent.MOUSE_OVER + ? ((this.osMove = !0), this.mapGroup.addEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this)) + : e.type == mouse.MouseEvent.ROLL_OVER && + ((this.postX = Math.max(Math.floor(((e.localX - this.miniGroup.x) * this.nScale) / t.GameMap.CELL_SIZE), 0)), + (this.postY = Math.max(Math.floor(((e.localY - this.miniGroup.y) * this.nScale) / t.GameMap.CELL_SIZE), 0)), + (this.xyLabel.text = this.postX + ":" + this.postY)); + }), + (i.prototype.onClickBtn = function (e) { + e && e.stopPropagation(), t.mAYZL.ins().ZbzdY(t.MapMaxView) ? t.mAYZL.ins().close(t.MapMaxView) : t.mAYZL.ins().open(t.MapMaxView); + }), + (i.prototype.updateMapSize = function () { + (this.rectGroup.visible = !0), (this.miniImage.width = this.nimiImageW), (this.miniImage.height = this.nimiImageH); + for (var e = 0; e < t.GameMap.scenes.teleport.length; e++) { + var i = this.teleportObj[e], + n = this.arrowObj[e]; + if (n) { + var s = t.GameMap.scenes.teleport[e].posx * t.GameMap.CELL_SIZE, + a = t.GameMap.scenes.teleport[e].posy * t.GameMap.CELL_SIZE - 20; + (n.x = s / this.nScale - 1), + (n.y = a / this.nScale - 3), + (i.x = Math.max(1, n.x + 8)), + i.x + i.width > this.nimiImageW && (i.x = n.x - i.width - 3), + (i.y = Math.min(Math.max(1, n.y), this.nimiImageH - i.height - 1)); + } + } + }), + (i.prototype.onLeftDownClick = function (t) { + t.stopPropagation(); + }), + (i.prototype.onDoubleDownClick = function (e) { + e.stopPropagation(); + var i = t.NWRFmB.ins().getPayer; + i && i.pathFinding(this.postX, this.postY); + }), + (i.prototype.rightClick = function (e) { + e && e.stopPropagation(), t.GameMap.scenes && t.GameMap.scenes.ismini && (this.isRightClick ? (this.alpha = 1) : (this.alpha = 0.5), (this.isRightClick = !this.isRightClick)); + }), + (i.prototype.updateMiniBg = function (e) { + var i = e[0], + n = e[1], + s = e[2]; + t.GameMap.scenes && t.GameMap.scenes.ismini + ? ((this.myRect.visible = !0), + egret.Tween.removeTweens(this.myRect), + (this.mapW = i), + (this.mapH = n), + (this.img = new eui.Image()), + this.miniGroup.addChildAt(this.img, 0), + this.img.addEventListener(egret.Event.COMPLETE, this.onComplete, this), + (this.mapSource = s), + (this.img.source = "" + ZkSzi.MAP_DIR + s + "/small.jpg?v=1")) + : (egret.Tween.removeTweens(this.myRect), + this.onComplete(null), + this.img && (this.img.visible = !1), + (this.myRect.visible = !1), + (this.height = this.width = 150), + (this.rectGroup.visible = !0), + (this.miniImage.width = this.nimiImageW), + (this.miniImage.height = this.nimiImageH), + t.mAYZL.ins().close(t.MapMaxView)), + (this.areaName.textColor = t.ClwSVR.GREEN_COLOR), + (this.nameLabel.text = t.GameMap.mapName); + }), + (i.prototype.udpatePlayer = function () { + var e = t.NWRFmB.ins().getPayer; + e && (this.updateCharRect(e), (e = null)); + }), + (i.prototype.onFinish = function () { + t.KHNO.ins().remove(this.udpatePlayer, this); + }), + (i.prototype.onComplete = function (e) { + if ( + (t.KHNO.ins().remove(this.udpatePlayer, this), + this.rectGroup.removeChildren(), + this.teleportGroup.removeChildren(), + this.arrowGroup.removeChildren(), + t.ObjectPool.wipe(this.teleportObj), + t.ObjectPool.wipe(this.arrowObj), + t.GameMap.scenes && t.GameMap.scenes.ismini) + ) { + var i = t.mAYZL.ins().ZzTs(t.MapMaxView); + if ((i && (i.updateMaxMap(this.img.source), (i = null)), t.GameMap.scenes && t.GameMap.scenes.teleport)) { + if (((this.charRectObj = {}), this.isMayrecog && (this.charRectObj[this.isMayrecog] = this.myRect), t.GameMap.MAX_WIDTH > 28032)) + (e.target.width = t.GameMap.MAX_WIDTH / 40), (e.target.height = t.GameMap.MAX_HEIGHT / 40); + else if (t.GameMap.MAX_WIDTH > 3840) { + if (((e.target.width = t.GameMap.MAX_WIDTH / 36), (e.target.height = t.GameMap.MAX_HEIGHT / 36), e.target.height < 150)) { + e.target.height = 150; + var n = t.GameMap.MAX_HEIGHT / 150; + e.target.width = t.GameMap.MAX_WIDTH / n; + } + } else { + var s = t.GameMap.MAX_WIDTH / 150; + (e.target.width = 150), (e.target.height = t.GameMap.MAX_HEIGHT / s); + } + (this.nScale = t.GameMap.MAX_WIDTH / e.target.width), + e.target.removeEventListener(egret.Event.COMPLETE, this.onComplete, this), + (this.nimiImageW = e.target.width + 0), + (this.nimiImageH = e.target.height + 0); + for (var a = void 0, r = 0; r < t.GameMap.scenes.teleport.length; r++) + if (((a = t.GameMap.scenes.teleport[r]), a && !a.mapHide)) { + var o = new eui.Label(a); + (o.size = 14), (o.textAlign = egret.HorizontalAlign.CENTER), (o.text = a.name), this.teleportGroup.addChild(o), (this.teleportObj[r] = o); + var l = new eui.Image("map_jiantou"); + this.arrowGroup.addChild(l), (this.arrowObj[r] = l); + var h = a.posx * t.GameMap.CELL_SIZE, + p = a.posy * t.GameMap.CELL_SIZE - 20; + (l.x = h / this.nScale - 1), + (l.y = p / this.nScale - 4), + (o.x = Math.max(1, l.x + 8)), + o.x + o.width > this.nimiImageW && (o.x = l.x - o.width - 3), + (o.y = Math.min(Math.max(1, l.y), this.nimiImageH - o.height - 1)); + } + } + t.lEYZI.Naoc(this.miniImage), (this.miniImage = null), (this.miniImage = e.target); + var u = egret.Tween.get(this.myRect, { + loop: !0, + }); + u.wait(500) + .to( + { + visible: !1, + }, + 1 + ) + .wait(500) + .to( + { + visible: !0, + }, + 1 + ); + } + t.KHNO.ins().tBiJo(500, 10, this.udpatePlayer, this, this.onFinish), this.udpatePlayer(); + }), + (i.prototype.updateCharRect = function (e) { + if ((void 0 === e && (e = null), e && e.propSet && t.GameMap.scenes && t.GameMap.scenes.ismini)) + if (this.charRectObj[e.recog]) this.updateXY(e); + else { + if (e.isMy) (this.isMayrecog = e.recog), (this.charRectObj[this.isMayrecog] = this.myRect); + else if (e.isCharRole) (this.charRectObj[e.recog] = new eui.Image()), this.rectGroup.addChild(this.charRectObj[e.recog]), this.updateCharRectColor([e.recog, e.getMapColor()]); + else if (e.isPet) (this.charRectObj[e.recog] = new eui.Image("map_dian_6")), this.rectGroup.addChild(this.charRectObj[e.recog]); + else if (e.isNpc) (this.charRectObj[e.recog] = new eui.Image("map_dian_3")), this.rectGroup.addChild(this.charRectObj[e.recog]); + else { + var i = t.VlaoF.Monster[e.propSet.getACTOR_ID()]; + 3 == i.monsterType || 4 == i.monsterType || 8 == i.monsterType || 10 == i.monsterType + ? (this.charRectObj[e.recog] = new eui.Image("map_boss")) + : (this.charRectObj[e.recog] = new eui.Image("map_dian_5")), + this.rectGroup.addChild(this.charRectObj[e.recog]); + } + this.updateXY(e); + } + this.areaName.text = t.GameMap.areaName; + }), + (i.prototype.updateXY = function (e) { + var i = e.x / this.nScale, + n = e.y / this.nScale; + (this.charRectObj[e.recog].x = i), + (this.charRectObj[e.recog].y = n), + e.isMy && + (this.routeImage.visible && + ((this.routeImage.rotation = t.MathUtils.getAngle(t.MathUtils.getRadian2(this.routeImage.x, this.routeImage.y, i, n))), + (this.routeImage.width = t.MathUtils.getDistanceByObject(this.routeImage, this.charRectObj[e.recog]))), + (this.miniGroup.x = Math.max(Math.min(-i + 75, 0), -this.nimiImageW + 150)), + (this.miniGroup.y = Math.max(Math.min(-n + 75, 0), -this.nimiImageH + 150))); + var s = t.mAYZL.ins().ZzTs(t.MapMaxView); + s && (s.updateXY(e), (s = null)); + }), + (i.prototype.updateCharRectColor = function (e) { + if (t.GameMap.scenes && t.GameMap.scenes.ismini) { + var i = this.charRectObj[e[0]]; + i && + (e[1] == t.ClwSVR.NAME_BLUE + ? (i.source = "map_dian_1") + : e[1] == t.ClwSVR.NAME_ORANGE + ? (i.source = "map_dian_2") + : e[1] == t.ClwSVR.NAME_GREEN + ? (i.source = "map_dian_3") + : e[1] == t.ClwSVR.NAME_pinkGreen + ? (i.source = "map_dian_8") + : 14549407 == e[1] + ? (i.source = "map_dian_9") + : 4513277 == e[1] + ? (i.source = "map_dian_10") + : 7873229 == e[1] + ? (i.source = "map_dian_11") + : (i.source = "map_dian_4")); + } + }), + (i.prototype.updatePlayerXY = function (t) { + this.osMove || (this.xyLabel.text = t[0] + ":" + t[1]); + }), + (i.prototype.remDot = function (e) { + if (t.GameMap.scenes && t.GameMap.scenes.ismini && e != t.NWRFmB.ins().getPayer.recog) { + this.charRectObj[e] && (t.lEYZI.Naoc(this.charRectObj[e]), (this.charRectObj[e] = null), delete this.charRectObj[e]); + var i = t.mAYZL.ins().ZzTs(t.MapMaxView); + i && (i.remDot(e), (i = null)); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.$onClose(), + t.KHNO.ins().removeAll(this), + egret.Tween.removeTweens(this.myRect), + (this.teleportObj = null), + (this.arrowObj = null), + this.mapGroup.removeEventListener(mouse.MouseEvent.ROLL_OVER, this.mouseMove, this), + this.img && this.img.addEventListener(egret.Event.COMPLETE, this.onComplete, this), + this.removeDoubleDownEvent(this, this.onDoubleDownClick), + this.removeLeftDownEvent(this, this.onLeftDownClick), + this.removeRightDownEvent(this, this.rightClick), + this.lbpdAJ(this.mapGroup, this.mouseMove), + this.lvpAF(this.mapGroup, this.mouseMove), + this.fEHj(this, this.onClickBtn); + }), + i + ); + })(t.gIRYTi); + (t.MapMiniView = e), __reflect(e.prototype, "app.MapMiniView"), t.mAYZL.ins().reg(e, t.yCIt.dShUbY); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.nameObj = {}), (t.touchEnabled = !1), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.addCharMonsterName = function (e) { + if (this.nameObj[e]) this.nameObj[e].visible = !0; + else { + var i = t.ObjectPool.pop("app.CharNameLabel"); + this.addChild(i), (this.nameObj[e] = i); + } + return this.nameObj[e]; + }), + i + ); + })(eui.Group); + (t.MapNameView = e), __reflect(e.prototype, "app.MapNameView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.CLICK_TYPE0 = 0), (t.CLICK_LEFT = 1), (t.CLICK_RIGHT = 2), t; + })(); + (t.ClickClass = e), __reflect(e.prototype, "app.ClickClass"); + var i = (function (i) { + function n() { + var e = i.call(this) || this; + if ( + ((e.selectImg = new eui.Image()), + (e.downIdx = 0), + (e.dropEffObj = {}), + (e.udpateAry = []), + (e.timeInterval = 10), + (e.currentTime = 0), + (e.payerXY = { + x: 0, + y: 0, + }), + (e.teleportObj = {}), + (e.safeMCAry = []), + (e.safeMCXY = []), + (e.shadowObj = {}), + (e.imgAry = []), + (e.touchEnabled = !0), + (e.touchChildren = !0), + (e.dSpriteSheet = new how.DSpriteSheet(300)), + (e.dropSS = new how.DSpriteSheet(300)), + (e.clickWalkMovieClip = new t.MovieClip()), + (e.clickRunMovieClip = new t.MovieClip()), + (e.selectImg.source = "select_png"), + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, e.onResize, e), + KdbLz.qOtrbE.iFbP) + ) + t.mAYZL.gamescene.addEventListener(egret.TouchEvent.TOUCH_TAP, e.touchBeginFunction, e), + t.mAYZL.gamescene.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, e.onTouchDouble, e), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_BEGIN, e.phoneCloseTips, e); + else { + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_BEGIN, e.updateMouseTime, e), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, e.moveDailyPost, e), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, e.updateMouseTime, e), + window.loginWay && t.mAYZL.gamescene.addEventListener(mouse.MouseEvent.RIGHT_DOWN, e.touchBeginFunction, e), + t.mAYZL.gamescene.addEventListener(mouse.MouseEvent.LEFT_DOWN, e.touchBeginFunction, e), + t.mAYZL.gamescene.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, e.onTouchDouble, e), + e.addEventListener(mouse.MouseEvent.MOUSE_MOVE_MAP, e.moveOver, n), + KdbLz.os.KeyBoard.addKeyDown(e.keyDown, e), + KdbLz.os.KeyBoard.addKeyUp(e.keyUp, e); + var s = e; + (window.onblur = function (t) { + s.mouseupFun(t), (n.m_isClickShift = !1), (n.m_keyCode = 0); + }), + document.addEventListener( + "mouseup", + function () { + t.KHNO.ins().doNext(function () { + (n.m_isClickShift = !1), s.mouseupFun(null); + }, s); + }, + !0 + ); + } + return (e.currentTime = egret.getTimer()), egret.startTick(e.onEnterFrame, e), e; + } + return ( + __extends(n, i), + (n.prototype.moveOver = function (e) { + var i = t.NWRFmB.ins().getPayer; + i && (n.overXY = t.mAYZL.gamescene.map.globalToLocal(e.stageX, e.stageY)); + }), + Object.defineProperty(n, "m_AiSkillId", { + set: function (e) { + t.qTVCL.ins().isOpen && -1 != t.qTVCL.ins().stopBreakSkillAry.indexOf(e) && t.qTVCL.ins().YFOmNj(), (n.m_clickSkillId = e); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(n, "m_clickSkillId", { + get: function () { + return n.clickSkillId; + }, + set: function (e) { + if (e == t.NGcJ.SKILL_ZHKL || e == t.NGcJ.SKILL_ZHSS) { + var i = t.NWRFmB.ins().getPayer; + if (t.PetSettingMgr.ins().petNum > 0) return void t.uMEZy.ins().showFightTips(t.CrmPU.language_Common_99); + } + var s = t.NWRFmB.ins().getPayer.getUserSkill(e); + if (s && !s.isDisable && egret.getTimer() > s.dwResumeTick) { + if (((n.ackXy = null), 13 == s.nSkillId || 55 == s.nSkillId || 56 == s.nSkillId || 57 == s.nSkillId || 58 == s.nSkillId)) { + var i = t.NWRFmB.ins().getPayer; + if (i) { + var a = i.propSet.getAP_JOB(); + return void t.NGcJ.ins().s_5_2(s.nSkillId, 0, i.currentX, i.currentY, i.dir, a); + } + } + e == t.NGcJ.SKILL_CX || e == t.NGcJ.SKILL_BY + ? ((this.clickSkillId = 0), s.isOpen ? t.NGcJ.ins().s_5_19(e) : t.NGcJ.ins().s_5_18(e)) + : e == t.NGcJ.SKILL_LH || e == t.NGcJ.SKILL_ZR + ? ((this.clickSkillId = 0), egret.getTimer() > s.dwResumeTick && t.NGcJ.ins().s_5_18(e)) + : (this.clickSkillId = e); + } else this.clickSkillId = 0; + n.m_keyCode = 0; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.keyDown = function (e) { + if (e == KdbLz.KeyCode.KC_S) return void t.qTVCL.ins().onClickTab(); + (n.autoState = !1), (n.taskState = null); + var i = t.VlaoF.TimeManagerConfigConfig, + s = 1; + if ((i && i.Taskfingertime && (s = i.Taskfingertime), (t.VrAZQ.ins().clickTime = egret.getTimer() + 1e3 * s), t.Nzfh.ins().post_autoReceiveTask(), n.m_isClickCtrl && e == KdbLz.KeyCode.KC_P)) + return void this._mapImage.keyDown(); + if (-1 != n.KEYS.indexOf(e)) + if (((n.m_keyCode = e), e == KdbLz.KeyCode.KC_SHIFT)) (n.m_isClickShift = !0), n.m_playerActon != t.PlayerAction.TURN && this.checkFuncion(); + else if (e == KdbLz.KeyCode.KC_CONTROL) (n.m_isClickCtrl = !0), this.checkFuncion(); + else { + var a = t.XwoNAr.ins().keyInfo[n.KEYS.indexOf(e)]; + if (a) + if (a.type) { + if ( + (t.qTVCL.ins().isOpen, + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122), (n.m_playerActon = t.PlayerAction.IDLE), n.m_ack_Char)) + ) { + var r = n.m_ack_Char.recog; + n.ClearChar(n.m_ack_Char.recog), t.Nzfh.ins().postUpdateTarget(r), (r = null); + } + n.m_clickSkillId = a.id; + } else n.m_keyCode = 0; + } + }), + (n.prototype.keyUp = function (e) { + t.NWRFmB.ins().getPayer; + e == KdbLz.KeyCode.KC_SHIFT ? ((n.m_isClickShift = !1), this.checkFuncion()) : e == KdbLz.KeyCode.KC_CONTROL && ((n.m_isClickCtrl = !1), this.checkFuncion()), + n.m_keyCode == e && (n.m_keyCode = 0); + }), + (n.prototype.onClick = function (t) {}), + (n.prototype.onTouchDouble = function (e) { + t.qTVCL.ins().YFOmNj(); + }), + (n.prototype.beginFunction = function (t) {}), + (n.prototype.touchBeginFunction = function (i) { + var s = this, + a = t.NWRFmB.ins().getPayer; + (n.m_forceAck_Recog = 0), + a.stopTask(), + a.stopFinding(), + (n.overXY = this.globalToLocal(i.stageX, i.stageY)), + t.mAYZL.gamescene.removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + var r = t.NWRFmB.ins().getPayer; + if (r) { + KdbLz.qOtrbE.iFbP && ((n.m_ack_Char = null), t.qTVCL.ins().isOpen || (n.isClickMap = !0)); + var o = this.globalToLocal(i.stageX, i.stageY); + (n.m_downX = t.GameMap.point2Grip(o.x)), (n.m_downY = t.GameMap.point2Grip(o.y)), (n.m_moveX = n.m_downX + 0), (n.m_moveY = n.m_downY + 0); + var l = t.DirUtil.get8DirBy2Point(r, o); + if (((n.moveDir = l), i.type == mouse.MouseEvent.RIGHT_DOWN)) { + if ((t.qTVCL.ins().YFOmNj(), (n.m_Click_Type = e.CLICK_RIGHT), t.GameMap.checkWalkable(n.m_downX, n.m_downY))) { + var h = t.NWRFmB.ins().getGridChar(n.m_downX, n.m_downY); + h || + (n.m_downX == a.currentX && n.m_downY == a.currentY) || + ((this.clickRunMovieClip.x = t.GameMap.grip2Point(n.m_downX)), + (this.clickRunMovieClip.y = t.GameMap.grip2Point(n.m_downY)), + this._teleporLayer.addChild(this.clickRunMovieClip), + (this.clickRunMovieClip.visible = !0), + this.clickRunMovieClip.playFile(ZkSzi.RES_DIR_EFF + "select_run", 1, function () { + s.clickRunMovieClip.visible = !1; + })); + } + } else if ((t.qTVCL.ins().isOpen && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips133), (n.m_Click_Type = e.CLICK_LEFT), t.GameMap.checkWalkable(n.m_downX, n.m_downY))) { + var h = t.NWRFmB.ins().getGridChar(n.m_downX, n.m_downY); + h || + (n.m_downX == a.currentX && n.m_downY == a.currentY) || + ((this.clickWalkMovieClip.x = t.GameMap.grip2Point(n.m_downX)), + (this.clickWalkMovieClip.y = t.GameMap.grip2Point(n.m_downY)), + this._teleporLayer.addChild(this.clickWalkMovieClip), + (this.clickWalkMovieClip.visible = !0), + this.clickWalkMovieClip.playFile(ZkSzi.RES_DIR_EFF + "select_walk", 1, function () { + s.clickWalkMovieClip.visible = !1; + })); + } + t.mAYZL.gamescene.addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + KdbLz.qOtrbE.iFbP || t.mAYZL.gamescene.addEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + } else n.m_Click_Type = e.CLICK_TYPE0; + this.checkFuncion(); + }), + (n.prototype.mouseupFun = function (t) { + (n.m_Click_Type = e.CLICK_TYPE0), (n.m_downX = 0), (n.m_downY = 0), (n.m_moveX = 0), (n.m_moveY = 0), (n.m_endTask.X = 0), (n.m_endTask.X = 0), (n.m_isClickCtrl = !1), this.checkFuncion(); + }), + (n.mouseUpFunction = function () { + (n.isClickMap = !1), + (n.m_Click_Type = e.CLICK_TYPE0), + (n.m_downX = 0), + (n.m_downY = 0), + (n.m_moveX = 0), + (n.m_moveY = 0), + (n.m_endTask.X = 0), + (n.m_endTask.X = 0), + (n.m_playerActon = t.PlayerAction.IDLE); + }), + (n.prototype.phoneCloseTips = function (e) { + KdbLz.qOtrbE.iFbP && + ("tipsview" != e.target.name && t.uMEZy.ins().closeTips(), + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_CLOSE_SKILL_DESC), + t.VrAZQ.ins().post_selectIsShow(0, 0), + !t.mAYZL.ins().ZbzdY(t.PhoneAtkModelView) || e.target.parent instanceof t.PhoneAtkModelView || t.mAYZL.ins().close(t.PhoneAtkModelView)); + }), + Object.defineProperty(n, "m_ack_Char", { + get: function () { + return n._m_ack_Char; + }, + set: function (t) { + n._m_ack_Char = t; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.endFunction = function (e) { + t.mAYZL.gamescene.removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), this.mouseupFun(e); + }), + (n.prototype.touchMoveFunction = function (e) { + if (!t.qTVCL.ins().isOpen) { + var i = t.NWRFmB.ins().getPayer; + if (i) { + var s = this.globalToLocal(e.stageX, e.stageY), + a = t.DirUtil.get8DirBy2Point(i, s); + (n.m_moveX = t.GameMap.point2Grip(s.x)), + (n.m_moveY = t.GameMap.point2Grip(s.y)), + (n.moveDir = a), + (n.m_playerActon == t.PlayerAction.DIR || n.m_playerActon == t.PlayerAction.PICKUP) && this.checkFuncion(); + } + } + }), + (n.ClearChar = function (e) { + n.m_ack_Char && n.m_ack_Char.recog == e && (n.m_ack_Char = null), + n.m_Move_Char && n.m_Move_Char.recog == e && (n.m_Move_Char = null), + t.NWRFmB.ins().getPayer.lockTarget == e && t.Nzfh.ins().postUpdateTarget(0); + }), + (n.prototype.checkFuncion = function () { + n.m_playerActon = t.PlayerAction.IDLE; + var i = t.NWRFmB.ins().getPayer; + if (n.m_Click_Type == e.CLICK_LEFT) + return ( + (n.m_ack_Char = null), + KdbLz.qOtrbE.iFbP && t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + n.m_moveX == i.currentX && n.m_moveY == i.currentY + ? void (n.m_playerActon = t.PlayerAction.PICKUP) + : window.loginWay + ? void (n.m_playerActon = t.PlayerAction.WALK) + : t.GameMap.getAround8( + { + X: n.m_moveX, + Y: n.m_moveY, + }, + { + X: i.currentX, + Y: i.currentY, + } + ) + ? void (n.m_playerActon = t.PlayerAction.WALK) + : void (n.m_playerActon = t.PlayerAction.TURN) + ); + if (n.m_Click_Type == e.CLICK_RIGHT) + if ( + ((n.m_playerActon = t.PlayerAction.TURN), + t.qTVCL.ins().attackState && + ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122), n.m_ack_Char && ((n.m_playerActon = t.PlayerAction.IDLE), (n.m_ack_Char = null))), + n.m_moveX == i.currentX && n.m_moveY == i.currentY) + ) + (n.m_playerActon = t.PlayerAction.DIR), debug.log("周围8格子"); + else + for (var s = 0, a = 0, r = 0; 8 > r; ++r) + if (((s = n.m_moveX + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[r]), (a = n.m_moveY + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[r]), s == i.currentX && a == i.currentY)) { + (n.m_playerActon = t.PlayerAction.DIR), debug.log("周围8格子"); + break; + } + }), + (n.prototype.initMap = function () { + (mouse.MouseEvent.map = this), + (this._mapImage = new t.MapViewBg()), + this.addChild(this._mapImage), + (this._safeDisplay = new egret.DisplayObjectContainer()), + this.addChild(this._safeDisplay), + (this._teleporLayer = new egret.DisplayObjectContainer()), + this.addChild(this._teleporLayer), + (this._dropLayer = new egret.DisplayObjectContainer()), + this.addChild(this._dropLayer), + (this.shadowGrou = new egret.DisplayObjectContainer()), + this.addChild(this.shadowGrou), + (this._chassisLayer = new egret.DisplayObjectContainer()), + this.addChild(this._chassisLayer), + (this._pickUpPetLayer = new egret.DisplayObjectContainer()), + this.addChild(this._pickUpPetLayer), + (this._entityLayer = new egret.DisplayObjectContainer()), + this.addChild(this._entityLayer), + (this.nameGroup = new egret.DisplayObjectContainer()), + this.addChild(this.nameGroup), + (this.hpGroup = new egret.DisplayObjectContainer()), + this.addChild(this.hpGroup), + (this.hpLabelGroup = new egret.DisplayObjectContainer()), + this.addChild(this.hpLabelGroup), + (this._titleLayer = new egret.DisplayObjectContainer()), + this.addChild(this._titleLayer), + (this._titleLayer2 = new egret.DisplayObjectContainer()), + this.addChild(this._titleLayer2), + (this._dropNameLayer = new egret.DisplayObjectContainer()), + this.addChild(this._dropNameLayer), + (this._effBottomLayer = new egret.DisplayObjectContainer()), + this.addChild(this._effBottomLayer), + (t.SkillEffPlayer.bottomLayer = this._effBottomLayer), + (this.floatView = new t.FloatView()), + this.addChild(this.floatView), + (t.NWRFmB.ins().isShowMakeDummy = !1), + t.KHNO.ins().RTXtZF(this.updateEntity, this) || t.KHNO.ins().tBiJo(2e3, 0, this.updateEntity, this), + this.mpaGrey(!1); + }), + (n.prototype.updateEntity = function () { + var e, + i, + n = t.aTwWrO.ins().getWidth(), + s = t.aTwWrO.ins().getHeight(); + t.mAYZL.ins().ZzTs(t.MapMaxView); + for (var a in this.teleportObj) (i = this.teleportObj[a]), (e = i.localToGlobal()), e.x < -64 || e.x > n + 64 || e.y < -64 || e.y > s + 64 ? (i.visible = !1) : (i.visible = !0); + this._entityLayer.$children.sort(this.sortF), (e = null); + }), + (n.prototype.sortF = function (t, e) { + return t.weight > e.weight ? 1 : t.weight < e.weight ? -1 : 0; + }), + (n.prototype.addEntity = function (t) { + this._entityLayer.addChild(t); + }), + (n.prototype.addDropEntity = function (t) { + this._dropLayer.addChildAt(t, 300); + }), + (n.prototype.addDropEff = function (e, i, n, s) { + var a = t.ObjectPool.pop("app.MovieClip"); + (a.x = n + 25), (a.y = s + 30), (a.touchEnabled = !1), a.playFileEff(ZkSzi.RES_DIR_EFF + "eff_guangzhu" + i, -1), (this.dropEffObj[e] = a), this._dropLayer.addChildAt(a, i + 1); + }), + (n.prototype.removeDropEff = function (t) { + var e = this.dropEffObj[t]; + e && (delete this.dropEffObj[t], e.destroy(), (e = null)); + }), + (n.prototype.addTelepor = function (t) { + this._teleporLayer.addChild(t); + }), + (n.prototype.onEnterFrame = function (e) { + var i = egret.getTimer(); + i < t.VrAZQ.ins().clickTime && (n.autoState = !0); + var s = t.NWRFmB.ins().getPayer; + if (s) { + var a = void 0; + if (i - this.currentTime > 1e4) { + this.udpateAry.length = 0; + var r = t.NWRFmB.ins().YUwhM(), + o = void 0; + for (var l in r) { + for (a = r[l]; a.m_CharMsgList.length > 0; ) (o = a.m_CharMsgList.shift()), a.dispatchActorMsg(o), t.ObjectPool.push(o); + a.speedAction(); + } + } else { + for ( + s.advanceTime(e); + this.udpateAry.length > 0 && ((a = t.NWRFmB.ins().getCharRole(this.udpateAry.shift())), a && !a.isMy && a.advanceTime(e), !(egret.getTimer() - i > this.timeInterval)); + + ); + var r = t.NWRFmB.ins().YUwhM(); + for (var l in r) -1 == this.udpateAry.indexOf(l) && this.udpateAry.push(l); + if (!t.ubnV.ihUJ && 3 == t.GameMap.mapID && t.NWRFmB.ins().isDuRange) { + var h = t.NWRFmB.ins().dummyCharList(); + for (var l in h) h[+l].advanceTime(e); + } + (r = null), + (a = null), + (this.payerXY.x != s.currentX || this.payerXY.y != s.currentY) && + ((this.payerXY.x = s.currentX), (this.payerXY.y = s.currentY), t.Nzfh.ins().post_updatePlayerXY(s.currentX, s.currentY), t.Nzfh.ins().post_updateCharRect(s)); + } + } + return (this.currentTime = i), (s = null), (i = null), this.addSafeMc(), !1; + }), + (n.prototype.minValue = function (t, e, i) { + return -Math.min(Math.max(t - (e >> 1), -(e >> 1)), i - (e >> 1)); + }), + (n.prototype.lookAt = function (e, i, n) { + void 0 === n && (n = !1); + var s = t.aTwWrO.ins().getWidth() / t.aTwWrO.ins().getScale(), + a = t.aTwWrO.ins().getHeight() / t.aTwWrO.ins().getScale(), + r = this.minValue(e, s, t.GameMap.MAX_WIDTH), + o = this.minValue(i, a, t.GameMap.MAX_HEIGHT); + (this.x != r || this.y != o || n) && + ((this.x = r), + (this.y = o), + this._mapImage.updateHDMap( + { + x: r, + y: o, + }, + n + )); + }), + (n.prototype.changeMap = function () { + if ( + ((n.m_Move_Char = null), + (n.m_ack_Char = null), + egret.Tween.removeTweens(this), + egret.Tween.removeTweens(this._mapImage), + this._mapImage.initThumbnail(t.GameMap.MAX_WIDTH, t.GameMap.MAX_HEIGHT, t.GameMap.getFileName()), + this.lookAt(t.GameMap.grip2Point(t.GameMap.mapX), t.GameMap.grip2Point(t.GameMap.mapY), !0), + t.GameMap.scenes && t.GameMap.scenes.teleport) + ) + for (var e = void 0, i = 0, s = 0, a = 0; a < t.GameMap.scenes.teleport.length; a++) + if (((e = t.GameMap.scenes.teleport[a]), e.modelid)) { + if (((i = e.posx * t.GameMap.CELL_SIZE), (s = e.posy * t.GameMap.CELL_SIZE), !this.teleportObj[e.posx + "_" + e.posy])) { + var r = t.ObjectPool.pop("app.CharTeleport"); + r.setPropertySet(e.name, e, i + (t.GameMap.CELL_SIZE >> 1), s + (t.GameMap.CELL_SIZE >> 1)), this._teleporLayer.addChildAt(r, 0), (this.teleportObj[e.posx + "_" + e.posy] = r); + } + t.NWRFmB.ins().addTeleport(e.posx, e.posy); + } + this.safeMCXY.length = 0; + for (var o; this._safeDisplay.$children.length > 0; ) + (o = this._safeDisplay.$children[this._safeDisplay.$children.length - 1]), t.KHNO.ins().removeAll(o), o.stop(), t.lEYZI.Naoc(o), this.safeMCAry.push(o); + if (t.GameMap.scenes.safe && t.GameMap.scenes.safe.length) { + for (var a = 0; a < t.GameMap.scenes.safe.length; a++) + this.safeMCXY.push({ + x: t.GameMap.scenes.safe[a].x, + y: t.GameMap.scenes.safe[a].y, + }); + this._safeDisplay.visible = !0; + } else this._safeDisplay.visible = !1; + t.NWRFmB.ins().isShowMakeDummy = !1; + }), + (n.prototype.addSafeMc = function () { + if (this.safeMCXY.length) { + var e = this.safeMCXY.pop(), + i = void 0; + (i = this.safeMCAry.length ? this.safeMCAry.pop() : new t.MovieClip()), + (i.x = t.GameMap.grip2Point(e.x)), + (i.y = t.GameMap.grip2Point(e.y)), + this._safeDisplay.addChild(i), + i.playFile(ZkSzi.RES_DIR_EFF + "aqq5_eff", -1); + } + }), + (n.prototype.adjustMapPos = function () { + (this.x = this.x >> 0), (this.y = this.y >> 0); + }), + (n.prototype.onResize = function () { + t.aTwWrO.ins().getWidth(), t.aTwWrO.ins().getHeight(); + this.lookAt(t.NWRFmB.ins().getPayer.x, t.NWRFmB.ins().getPayer.y, !0); + }), + (n.prototype.updateMouseTime = function () { + var e = egret.getTimer(); + (n.clickTime = e), (n.autoState = !1), (n.taskState = null); + var i = t.VlaoF.TimeManagerConfigConfig, + s = 1; + i && i.Taskfingertime && (s = i.Taskfingertime), (t.VrAZQ.ins().clickTime = e + 1e3 * s), t.Nzfh.ins().post_autoReceiveTask(); + }), + (n.prototype.moveDailyPost = function () { + t.KHNO.ins().RTXtZF(this.refreshPost, this) || t.KHNO.ins().tBiJo(2e3, 1, this.refreshPost, this); + }), + (n.prototype.refreshPost = function () { + t.Nzfh.ins().post_autoReceiveTask(), t.KHNO.ins().remove(this.refreshPost, this); + }), + (n.prototype.clearAllLayer = function () { + for (var e in this.dropEffObj) this.dropEffObj[e].destroy(); + t.ObjectPool.wipe(this.dropEffObj), + this._entityLayer.removeChildren(), + this._dropLayer.removeChildren(), + this._teleporLayer.removeChildren(), + this.shadowGrou.removeChildren(), + t.ObjectPool.wipe(this.teleportObj), + t.ObjectPool.wipe(this.shadowObj), + this.floatView.removeChildren(), + (this.selectImg.visible = !1), + this.shadowGrou.addChild(this.selectImg), + this.monsterTalkView && this.monsterTalkView.close(); + }), + (n.prototype.showTalkView = function (e, i, n) { + e && (this.monsterTalkView || ((this.monsterTalkView = new t.MonsterTalkView()), this.addChild(this.monsterTalkView)), this.monsterTalkView.open(e, i, n)); + }), + (n.prototype.getShadowImg = function () { + if (this.imgAry.length > 0) return this.imgAry.pop(); + var t = new eui.Image("yingzi_png"); + return (t.anchorOffsetX = 64), (t.anchorOffsetY = 64), t; + }), + (n.prototype.getShadow = function () { + var t = new eui.Image("yingzi_png"); + return (t.anchorOffsetX = t.anchorOffsetY = 64), this.shadowGrou.addChild(t), t; + }), + (n.prototype.getTitleImage = function () { + var t = new eui.Image(); + return (t.touchEnabled = !1), (t.anchorOffsetY = 46), (t.anchorOffsetX = 68), this._titleLayer.addChildAt(t, 0), t; + }), + (n.prototype.getNpcTitleImage = function () { + var t = new eui.Image(); + return (t.touchEnabled = !1), (t.anchorOffsetY = 20), (t.anchorOffsetX = 68), this._titleLayer.addChildAt(t, 0), t; + }), + (n.prototype.getRageImage = function () { + var t = new eui.Image(); + return (t.touchEnabled = !1), (t.anchorOffsetY = 20), (t.anchorOffsetX = 77), (t.source = "rage_ch"), this._titleLayer.addChildAt(t, 2e3), t; + }), + (n.prototype.getGzImage = function () { + var t = new eui.Image(); + return (t.touchEnabled = !1), (t.anchorOffsetY = 18), (t.anchorOffsetX = 91), (t.scaleX = t.scaleY = 0.8), this._titleLayer.addChildAt(t, 4e3), t; + }), + (n.prototype.getBuffImage = function () { + var t = new eui.Image(); + return (t.touchEnabled = !1), (t.anchorOffsetY = 15), (t.anchorOffsetX = 42), (t.scaleX = t.scaleY = 0.8), this._titleLayer.addChildAt(t, 5e3), t; + }), + (n.prototype.addTitleImage = function (t) { + this._titleLayer.addChildAt(t, 0); + }), + (n.prototype.addTitleMC = function (t) { + (t.touchEnabled = !1), this._titleLayer.addChildAt(t, 500); + }), + (n.prototype.addTitle2MC = function (t) { + (t.touchEnabled = !1), this._titleLayer2.addChild(t); + }), + (n.prototype.addShadow = function (t) { + this.shadowGrou.addChild(t); + }), + (n.prototype.setShadowXY = function (e, i, n) { + var s = t.NWRFmB.ins().getPayer.lockTarget; + s ? e == s && ((this.selectImg.x = i - 64), (this.selectImg.y = n - 64), (this.selectImg.visible = !0)) : (this.selectImg.visible = !1); + }), + (n.updateNaemColor = function () { + var e, + i = t.NWRFmB.ins().YUwhM(); + for (var n in i) (e = i[n]), e.isCharRole && (e.deleteMessage(t.Qmuk.NAME_UPDATE_COLOR), e.postCharMessage(t.Qmuk.NAME_UPDATE_COLOR, 0, 0, 0, null)); + }), + (n.prototype.getCharNameLable = function () { + var e = how.getQuickLabel(this.dSpriteSheet, 0); + return ( + (e.textAlign = "center"), + (e.textWidth = 500), + (e.size = 40), + (e.textStroke = 3), + (e.textStrokeColor = 0), + (e.textColor = t.ClwSVR.NAME_WHITE), + (e.lineSpacing = 3), + (e.touchEnabled = !1), + (e.scaleX = e.scaleY = 0.4), + this.nameGroup.addChild(e), + e + ); + }), + (n.prototype.addNameLabel = function (t) { + this.nameGroup.addChild(t); + }), + (n.prototype.getCharHpBar = function () { + var e = new t.CharHpBar(); + return (e.visible = !1), (e.touchEnabled = !1), (e.touchChildren = !1), this.hpGroup.addChild(e), e; + }), + (n.prototype.addCharHbBar = function (t) { + this.hpGroup.addChild(t); + }), + (n.prototype.getCharHpLable = function () { + var t = new eui.BitmapLabel(); + return (t.font = "hp_fnt_fnt"), (t.width = 150), (t.letterSpacing = -3), (t.textAlign = egret.HorizontalAlign.CENTER), this.hpLabelGroup.addChild(t), t; + }), + (n.prototype.addCharHpLabel = function (t) { + this.hpLabelGroup.addChild(t); + }), + (n.prototype.getDropLable = function () { + var t = how.getQuickLabel(this.dropSS, 0); + return ( + (t.textAlign = "center"), + (t.textWidth = 400), + (t.size = 40), + (t.textStroke = 3), + (t.textStrokeColor = 0), + (t.touchEnabled = !1), + (t.textColor = 10602993), + (t.scaleX = t.scaleY = 0.4), + this._dropNameLayer.addChild(t), + t + ); + }), + (n.prototype.addDropLable = function (t) { + this._dropNameLayer.addChild(t); + }), + (n.prototype.sortF2 = function (t, e) { + return t.sortId > e.sortId ? 1 : 0; + }), + (n.prototype.addAhassis = function (t) { + this._chassisLayer.addChild(t), this._chassisLayer.$children.sort(this.sortF2); + }), + (n.prototype.addPickUpPet = function (t) { + this._pickUpPetLayer.addChild(t); + }), + (n.prototype.close = function () {}), + (n.prototype.mpaGrey = function (e) { + var i = t.NWRFmB.ins().getPayer; + i && i.mpaGrey(e); + }), + (n.autoState = !1), + (n.taskState = null), + (n.m_Click_Type = 0), + (n.m_playerActon = t.PlayerAction.IDLE), + (n.m_downX = 0), + (n.m_downY = 0), + (n.m_moveX = 0), + (n.m_moveY = 0), + (n.moveDir = 0), + (n.m_isClickShift = !1), + (n.m_isClickCtrl = !1), + (n.m_endTask = { + X: 0, + Y: 0, + }), + (n.m_keyCode = 0), + (n.clickSkillId = 0), + (n.KEYS = [ + KdbLz.KeyCode.KC_1, + KdbLz.KeyCode.KC_2, + KdbLz.KeyCode.KC_3, + KdbLz.KeyCode.KC_4, + KdbLz.KeyCode.KC_5, + KdbLz.KeyCode.KC_6, + KdbLz.KeyCode.KC_Q, + KdbLz.KeyCode.KC_W, + KdbLz.KeyCode.KC_E, + KdbLz.KeyCode.KC_R, + KdbLz.KeyCode.KC_T, + KdbLz.KeyCode.KC_Y, + KdbLz.KeyCode.KC_SHIFT, + KdbLz.KeyCode.KC_CONTROL, + ]), + (n.isClickMap = !1), + (n.clickTime = 0), + (n.overXY = { + x: 0, + y: 0, + }), + (n._m_ack_Char = null), + (n.m_forceAck_Recog = 0), + (n.m_Move_Char = null), + n + ); + })(egret.DisplayObjectContainer); + (t.EhSWiR = i), __reflect(i.prototype, "app.EhSWiR"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.lastUpdateX = 0), + (t.lastUpdateY = 0), + (t.mapImageArray = []), + (t.retmTime = 0), + (t.isGridDebug = !1), + (t.shape = []), + (t.touchChildren = !1), + (t.touchEnabled = !1), + (t._imageList = []), + (t.showImages = []), + (t._poolImages = []), + (t._fileDic = {}), + (t.remImage = {}), + t + ); + } + return ( + __extends(i, e), + (i.prototype.createDiscardMap = function () { + void 0 != this.mapName && "" != this.mapName && KdbLz.os.RM.createDiscardMap(ZkSzi.MAP_DIR + this.mapName); + }), + (i.prototype.keyDown = function () { + (this.isGridDebug = !this.isGridDebug), + this.isGridDebug || this.clearDrawGrid(), + this.updateHDMap( + { + x: this.lastUpdateX, + y: this.lastUpdateY, + }, + !0 + ); + }), + (i.prototype.onThumbnailComplete = function (t) { + (this.isThumbnailComplete = !0), + t.target && + t.target.name == this.mapName && + this.updateHDMap( + { + x: this.lastUpdateX, + y: this.lastUpdateY, + }, + !0 + ); + }), + (i.prototype.initThumbnail = function (e, i, n) { + var m; + this.mapName != n && (this.isThumbnailComplete = !1), + t.GameMap.scenes && t.GameMap.scenes.music && "" != t.GameMap.scenes.music + ? ((m = + "biqi" == t.GameMap.scenes.music + ? "biqi_" + (2 > t.NWRFmB.ins().getPayer.propSet.mBjV() ? 1 : t.MathUtils.limitInteger(1, 3)) + : "mengzhong" == t.GameMap.scenes.music + ? "mengzhong_" + t.MathUtils.limitInteger(1, 2) + : t.GameMap.scenes.music), + t.AHhkf.ins().KVqx(m + "_mp3")) + : t.AHhkf.ins().DHzYBI(), + this.mapName != n && this.clearHDMap(), + this.mapName != n && this.destroyFile(), + (this.mapName = n), + (this.maxImagX = Math.ceil(e / 256)), + (this.maxImagY = Math.ceil(i / 256)), + (this.isThumbnailComplete = !0), + t.Nzfh.ins().post_updateMiniBg(e, i, n); + }), + (i.prototype.clearHDMap = function () { + (this._imageList.length = 0), + (this.showImages.length = 0), + (this.mapImageArray.length = 0), + t.ObjectPool.wipe(this.remImage), + this.removeChildren(), + void 0 != this.mapName && "" != this.mapName && KdbLz.os.RM.createMap(ZkSzi.MAP_DIR + this.mapName); + }), + (i.prototype.destroyFile = function () {}), + (i.prototype.getImage = function () { + return this.mapImageArray.pop() || new eui.Image(); + }), + (i.prototype.pushImage = function (t) {}), + (i.prototype.updateHDMap = function (e, i) { + void 0 === i && (i = !1); + var n = 256; + if (i || Math.abs(this.lastUpdateX - e.x) > n / 10 || Math.abs(this.lastUpdateY - e.y) > n / 10 || 0 == this.lastUpdateX) { + if (((this.lastUpdateX = e.x), (this.lastUpdateY = e.y), !this.isThumbnailComplete)) return; + var s = [], + a = t.aTwWrO.ins().getWidth(), + r = t.aTwWrO.ins().getHeight(); + e.x > 0 || e.y > 0 || t.GameMap.MAX_WIDTH + e.x < a || t.GameMap.MAX_HEIGHT + e.y < r + ? (t.mAYZL.gamescene.mapgBgImge.visible = !1) + : ((t.mAYZL.gamescene.mapgBgImge.visible = !0), (t.mAYZL.gamescene.mapgBgImge.x = e.x > 0 ? e.x : 0), (t.mAYZL.gamescene.mapgBgImge.y = e.y > 0 ? e.y : 0)); + var o = Math.max(Math.floor(-e.x / n) - 1, 0), + l = Math.max(Math.floor(-e.y / n) - 1, 0), + h = o + Math.floor(a / n) + 2, + p = l + Math.floor(r / n) + 2, + u = egret.getTimer(), + c = this.remImage; + if (u - this.retmTime > 3e3) { + for (var g in c) + if (u - c[g].removeTime > 3e3) { + var d = c[g].posJ, + m = c[g].posI; + (this._imageList[d][m] = null), this.pushImage(c[g]), delete c[g]; + } + this.retmTime = u; + } + for (var m = o; h >= m && m < this.maxImagX + 1; m++) + for (var d = l; p >= d && d < this.maxImagY + 1; d++) + if (((this._imageList[d] = this._imageList[d] || []), !(m >= this.maxImagX || d >= this.maxImagY))) { + if (this._imageList[d][m]) + this._imageList[d][m].parent || ((this._imageList[d][m].removeTime = 0), delete this.remImage[this._imageList[d][m].hashCode], this.addChild(this._imageList[d][m])); + else { + var f = "" + ZkSzi.MAP_DIR + this.mapName + "/image/" + d + "_" + m + ".jpg?v=1"; + this._fileDic[f] = 1; + var v = this.getImage(); + (v.source = f), (v.name = f), (v.x = m * n), (v.y = d * n), (v.posI = m), (v.posJ = d), (v.removeTime = 0), this.addChild(v), (this._imageList[d][m] = v); + } + s.push(this._imageList[d][m]); + } + for (var _ = this.showImages.length, m = _ - 1; m >= 0; m--) + s.indexOf(this.showImages[m]) >= 0 || ((this.showImages[m].removeTime = u), t.lEYZI.Naoc(this.showImages[m]), (this.remImage[this.showImages[m].hashCode] = this.showImages[m])); + this.showImages = s; + } + if (this.isGridDebug) { + var a = (t.aTwWrO.ins().getWidth() / 1) >> 0, + r = (t.aTwWrO.ins().getHeight() / 1) >> 0, + y = Math.max(Math.floor(-e.x / t.GameMap.CELL_SIZE), 0), + T = Math.max(Math.floor(-e.y / t.GameMap.CELL_SIZE), 0), + M = y + Math.ceil(a / t.GameMap.CELL_SIZE), + C = T + Math.ceil(r / t.GameMap.CELL_SIZE); + this.drawGrid( + { + x: y, + y: T, + }, + { + x: M, + y: C, + } + ); + } + }), + (i.prototype.drawGrid = function (e, i) { + this.clearDrawGrid(), (this.shapeContainer = this.shapeContainer || new egret.DisplayObjectContainer()), (this.shapeContainer.touchEnabled = !1), (this.shapeContainer.touchChildren = !1); + for (var n = e.x; n < i.x; n++) + for (var s = e.y; s < i.y; s++) { + var a = n * i.x + s, + r = this.shape[a]; + r || (r = this.shape[a] = new egret.Shape()), + r.graphics.lineStyle(1, 16777215), + t.GameMap.checkAlpha(n, s) ? r.graphics.beginFill(255, 0.3) : t.GameMap.checkWalkable(n, s) ? r.graphics.beginFill(15007744, 0) : r.graphics.beginFill(2682369, 0.3), + r.graphics.drawRect(0, 0, t.GameMap.CELL_SIZE, t.GameMap.CELL_SIZE), + r.graphics.endFill(), + (r.x = n * t.GameMap.CELL_SIZE), + (r.y = s * t.GameMap.CELL_SIZE); + var o = new eui.Label(); + (o.size = 12), + (o.text = n + "," + s), + (o.x = n * t.GameMap.CELL_SIZE), + (o.y = s * t.GameMap.CELL_SIZE), + (o.name = "label" + n + "," + s), + this.shapeContainer.addChild(r), + this.shapeContainer.addChild(o); + } + this.addChild(this.shapeContainer); + }), + (i.prototype.clearDrawGrid = function () { + if (this.shapeContainer && this.shape) { + for (; this.shapeContainer.numChildren > 0; ) this.shapeContainer.removeChildAt(0); + this.shape.length = 0; + } + }), + i + ); + })(egret.DisplayObjectContainer); + (t.MapViewBg = e), __reflect(e.prototype, "app.MapViewBg"); +})(app || (app = {})), + (document.oncontextmenu = function () { + return !1; + }); +var mouse; +!(function (t) { + var e, + i = 0 / 0, + n = 0 / 0, + s = null, + a = null; + t.enable = function (o) { + if (((e = o), !KdbLz.qOtrbE.iFbP)) { + var l = document.querySelectorAll(".egret-player"), + h = l[0]["egret-player"].webTouchHandler, + p = e.$displayList.renderBuffer.surface; + egret.sys.TouchHandler.prototype; + p.addEventListener("mousemove", function (e) { + t.MouseEvent.map && (a = e); + }), + r(), + p.addEventListener("dblclick", function (e) { + if (0 == e.button) { + var i = h.getLocation(e), + n = i.x, + s = i.y, + a = (e.identifier, o.$hitTest(n, s)); + a || (a = o), egret.TouchEvent.dispatchTouchEvent(a, t.MouseEvent.MOUSE_DOUBLECLICK, !0, !0, i.x, i.y, e.identifier, !0); + } + }), + window.navigator.msPointerEnabled + ? p.addEventListener( + "MSPointerDown", + function (e) { + var i = h.getLocation(e), + n = i.x, + s = i.y, + a = (e.identifier, o.$hitTest(n, s)); + a || (a = o), + 2 == e.button + ? egret.TouchEvent.dispatchTouchEvent(a, t.MouseEvent.RIGHT_DOWN, !0, !0, n, s, e.identifier, !0) + : egret.TouchEvent.dispatchTouchEvent(a, t.MouseEvent.LEFT_DOWN, !0, !0, n, s, e.identifier, !0), + d(n, s); + }, + !1 + ) + : p.addEventListener("mousedown", function (e) { + var i = h.getLocation(e), + n = i.x, + s = i.y, + a = (e.identifier, o.$hitTest(n, s)); + a || (a = o), + 2 == e.button + ? egret.TouchEvent.dispatchTouchEvent(a, t.MouseEvent.RIGHT_DOWN, !0, !0, n, s, e.identifier, !0) + : egret.TouchEvent.dispatchTouchEvent(a, t.MouseEvent.LEFT_DOWN, !0, !0, n, s, e.identifier, !0), + d(n, s); + }); + var u = egret.sys.TouchHandler.prototype.onTouchMove; + egret.sys.TouchHandler.prototype.onTouchMove = function (t, e, i) { + var n = t, + s = e, + a = u.call(this, n, s, i); + return d(n, s), a; + }; + var c = egret.sys.TouchHandler.prototype.onTouchBegin; + egret.sys.TouchHandler.prototype.onTouchBegin = function (t, e, i) { + var n = t, + s = e, + a = c.call(this, t, e, i); + return d(n, s), a; + }; + var g = egret.sys.TouchHandler.prototype.onTouchEnd; + (egret.sys.TouchHandler.prototype.onTouchEnd = function (t, e, i) { + var n = t, + s = e, + a = g.call(this, t, e, i); + return d(n, s), a; + }), + o.addEventListener( + egret.Event.ENTER_FRAME, + function () { + if (a && t.MouseEvent.map) { + var e = h.getLocation(a); + egret.TouchEvent.dispatchTouchEvent(t.MouseEvent.map, t.MouseEvent.MOUSE_MOVE_MAP, !0, !0, e.x, e.y, a.identifier, !0); + } + }, + null + ); + var d = function (e, a) { + if (i != e || n != a || app.EhSWiR.m_Click_Type == app.ClickClass.CLICK_LEFT) { + (i = e), (n = a); + var r = o.$hitTest(e, a); + if (r) { + if ((egret.TouchEvent.dispatchTouchEvent(r, t.MouseEvent.ROLL_OVER, !1, !1, e, a, null), s)) { + if (r == s) return; + s.hashCode != r.hashCode && egret.TouchEvent.dispatchTouchEvent(s, t.MouseEvent.MOUSE_OUT, !0, !1, e, a, null); + } + (s = r), egret.TouchEvent.dispatchTouchEvent(r, t.MouseEvent.MOUSE_OVER, !0, !1, e, a, null); + } else s && egret.TouchEvent.dispatchTouchEvent(s, t.MouseEvent.MOUSE_OUT, !1, !1, e, a, null); + } + }; + } + }; + var r = function () { + var i = "mousewheel", + n = function (i) { + var n = i.type; + ("DOMMouseScroll" == n || "mousewheel" == n) && ((i.delta = i.wheelDelta ? i.wheelDelta : -(i.detail || 0)), e.dispatchEventWith(t.MouseEvent.MOUSE_WHEEL, !1, i.delta)); + }; + window.addEventListener + ? ("mousewheel" === i && void 0 !== document.mozFullScreen && (i = "DOMMouseScroll"), + window.addEventListener( + i, + function (t) { + n(t); + }, + !1 + )) + : window.attachEvent && + window.attachEvent("on" + i, function (t) { + (t = t || window.event), n(t); + }); + }; +})(mouse || (mouse = {})); +var mouse; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.MOUSE_MOVE = "mouseMove"), + (t.RIGHT_DOWN = "rightDown"), + (t.LEFT_DOWN = "leftDown"), + (t.RIGHT_UP = "rightUp"), + (t.MOUSE_DOUBLECLICK = "doubleClick"), + (t.MOUSE_MOVE_MAP = "mouseMoveMap"), + (t.MOUSE_OVER = "mouseOver"), + (t.MOUSE_OUT = "mouseOut"), + (t.ROLL_OVER = "rollOver"), + (t.ROLL_OUT = "rollOut"), + (t.MOUSE_WHEEL = "mouseWheel"), + (t.map = null), + t + ); + })(); + (t.MouseEvent = e), __reflect(e.prototype, "mouse.MouseEvent"); +})(mouse || (mouse = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.playAckEff = function (e, i, n) { + void 0 === n && (n = 1); + var s = t.XwoNAr.CloseEff(); + if (i.isMy || !s) { + var a = t.VlaoF.EffectsConf[e]; + if (a) { + if (a.effects) { + var r = t.ObjectPool.pop("app.MovieClip"); + (r.newFrameRate = 8 * n), + (r.blendMode = a.blendMode ? egret.BlendMode.NORMAL : egret.BlendMode.ADD), + (r.m_gather = !0), + (r.x = i.x), + (r.y = i.y), + (r.scaleX = r.scaleY = 1.25), + this.bottomLayer.addChild(r), + a.isDir + ? r.playFileEff8(ZkSzi.RES_DIR_SKILL + a.effects + "_a" + i.dir, 1, function () { + r.destroy(), (r = null); + }) + : r.playFileEff(ZkSzi.RES_DIR_SKILL + a.effects, 1, function () { + r.destroy(), (r = null); + }); + } + a.sound && t.OSzbc.ins().wVgAo(a.sound + "_mp3"); + } + } + }), + (e.PlayBallisticEff = function (e, i, n, s, a) { + var r = t.XwoNAr.CloseEff(); + if (i.isMy || !r) { + var o = t.VlaoF.EffectsConf[e]; + if (o) { + if (o.effects) { + var l = t.ObjectPool.pop("app.MovieClip"); + (l.m_gather = !0), (l.x = i.x), (l.y = i.y - 70), (l.scaleX = l.scaleY = 1.25), this.bottomLayer.addChild(l); + var h = 1.3; + if (25 == e) + (l.rotation = 45 * i.dir), + l.playFileEff(ZkSzi.RES_DIR_SKILL + o.effects, 1, function () { + egret.Tween.removeTweens(l), l.destroy(), (l = null); + }); + else { + var a; + s + ? (a = { + x: s.x, + y: s.y, + }) + : a || + (a = t.DirUtil.getGridByDir(n, -18, { + x: l.x, + y: l.y, + })); + var p = t.MathUtils.getDistance(i.x, i.y, a.x, a.y), + u = 0; + p > 64 && (u = p / h), + u + ? ((l.rotation = t.MathUtils.getAngle2(i.x, i.y, a.x, a.y)), + l.playFileEff(ZkSzi.RES_DIR_SKILL + o.effects, -1), + egret.Tween.get(l) + .to( + { + x: a.x, + y: a.y, + }, + u + ) + .call(function () { + l.destroy(), (l = null); + })) + : (l.destroy(), (l = null)); + } + } + o.sound && t.OSzbc.ins().wVgAo(o.sound + "_mp3"); + } + } + }), + (e.remMovie = function (t) { + t.destroy(), (t = null); + }), + (e.PlayHitEff = function (e, i, n) { + var s = t.VlaoF.EffectsConf[e]; + if (s) { + if (s.effects) { + debug.log("播放命中!!!!"); + var a = t.ObjectPool.pop("app.MovieClip"); + (a.blendMode = s.blendMode ? egret.BlendMode.NORMAL : egret.BlendMode.ADD), + (a.m_gather = !0), + (a.x = t.GameMap.grip2Point(i.x)), + (a.y = t.GameMap.grip2Point(i.y)), + (a.scaleX = a.scaleY = 1.25), + this.bottomLayer.addChild(a), + a.playFileEff(ZkSzi.RES_DIR_SKILL + s.effects, 1, function () { + a.destroy(), (a = null); + }); + } + s.sound && t.OSzbc.ins().wVgAo(s.sound + "_mp3"); + } + }), + (e.PlayTaskEff = function (e, i) { + var n = t.XwoNAr.CloseEff(); + if (!n) { + var s = t.ObjectPool.pop("app.MovieClip"), + a = t.GameMap.grip2Point(i.x), + r = t.GameMap.grip2Point(i.y); + (s.x = a), + (s.y = r - 250), + (s.scaleX = s.scaleY = 1), + this.bottomLayer.addChild(s), + s.playFileEff(ZkSzi.RES_DIR_EFF + e, 1, function () { + s.destroy(), (s = null); + }); + } + }), + e + ); + })(); + (t.SkillEffPlayer = e), __reflect(e.prototype, "app.SkillEffPlayer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.TRANSLATE_MOVIE = 0), (t.TRANSLATE_QUEST = 1), (t.TRANSLATE_ACTIVITY = 2), (t.TRANSLATE_UPLEVEL = 3), t; + })(); + (t.TranslateDefine = e), __reflect(e.prototype, "app.TranslateDefine"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "MicrotermsViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewards.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = [], + s = t.VlaoF.NativeRewardConfig; + s && (n = s.reward); + (this.rewards.dataProvider = new eui.ArrayCollection(n)), this.vKruVZ(this.microDownBtn, this.onClick), this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + if (1 == t.FuLi4366Mgr.ins().commonIsDown) { + t.mAYZL.ins().close(this); + break; + } + case this.microDownBtn: + var i = t.VlaoF.NativeConfig[window.isMicro]; + i && (window.open(window.webUrl + i.clientURL), FzTZ.reporting(t.ReportDataEnum.MICROTERMS_DOWNLOAD, {}, null, !1)); + (t.FuLi4366Mgr.ins().commonIsDown = 1), t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.microDownBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.MicrotermsView = e), __reflect(e.prototype, "app.MicrotermsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.prototype.PlayerEquipInfo = function (e) { + if ((void 0 === e && (e = null), (this.equips = []), (this.propertyArray = []), (this.userBadges = []), e)) { + for (var i = e.readUnsignedByte(), n = 0; i > n; n++) { + var s = new t.userItem(e); + this.equips.push(s); + } + (this.vipType = e.readByte()), (this.vipGrade = e.readByte()); + for (var a, r = 0; 22 > r; r++) (a = e.readUnsignedByte()), this.propertyArray.push(a); + e.readUnsignedByte(), + e.readUnsignedByte(), + e.readUnsignedByte(), + e.readUnsignedByte(), + e.readUnsignedByte(), + (this.canUseWardrobeNum = e.readUnsignedShort()), + this.initSoulEffectList(e.readUnsignedByte()), + (this.weaponItemId = e.readUnsignedShort()); + for (var o, l = {}, h = e.readUnsignedByte(), n = 0; h > n; n++) { + o = []; + var p = e.readUnsignedByte(); + e && ((o[0] = e.readUnsignedShort()), (o[1] = e.readUnsignedShort()), (o[2] = e.readUnsignedShort()), (o[3] = e.readUnsignedShort()), (o[4] = e.readUnsignedShort())), (l[p] = o); + } + } + }), + (e.prototype.initSoulEffectList = function (t) { + this.soulEffectList = []; + }), + (e.prototype.initData = function (e) { + (this.id = e.readUnsignedByte()), + (this.job = e.readUnsignedByte()), + (this.circle = e.readUnsignedByte()), + (this.level = e.readUnsignedByte()), + (this.sex = e.readUnsignedByte()), + (this.titleID = e.readUnsignedByte()), + (this.battlePower = e.readUnsignedByte()), + (this.bodyModel = e.readUnsignedByte()), + (this.weaponModel = e.readUnsignedByte()), + (this.mountModel = e.readUnsignedByte()), + (this.wingModel = e.readUnsignedByte()); + e.readUnsignedByte(); + this.footprnumberModel = e.readUnsignedByte(); + for (var i = (e.readUnsignedByte(), e.readUnsignedByte()), n = 0; i > n; n++) { + var s = new t.userItem(e); + this.equips.push(s); + } + for (var a, r = {}, o = e.readUnsignedByte(), n = 0; o > n; n++) { + a = new Array(5); + var l = e.readUnsignedByte(); + e && ((a[0] = e.readUnsignedShort()), (a[1] = e.readUnsignedShort()), (a[2] = e.readUnsignedShort()), (a[3] = e.readUnsignedShort()), (a[4] = e.readUnsignedShort())), (r[l] = a); + } + }), + e + ); + })(); + (t.PlayerEquipInfo = e), __reflect(e.prototype, "app.PlayerEquipInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.lastIndex = 0), + (i.pageIndex = 0), + (i.achieveArrList = new eui.ArrayCollection()), + (i.curAttribArr = new eui.ArrayCollection()), + (i.nextAttribArr = new eui.ArrayCollection()), + (i.skinName = "AchievementViewSkin"), + (i.name = "AchievementView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System50), + this.showAchievementList(), + (this.txtMyCount.text = t.CrmPU.language_Achievement_TxtPopularity), + (this.txtCurAtt.text = t.CrmPU.language_Achievement_TxtCurAtt), + (this.txtNextAtt.text = t.CrmPU.language_Achievement_TxtNextAtt); + }), + (i.prototype.bindTabBar = function () { + this.tabBar.itemRenderer = t.GuildTarBtnView; + var e = new eui.ArrayCollection(t.CrmPU.language_Achievement_TabText); + this.tabBar.dataProvider = e; + }), + (i.prototype.bindOptTabBar = function () { + var e = t.VlaoF.AchievePageConfig, + i = []; + for (var n in e) i.push(e[n]); + this.optTab.itemRenderer = t.AchieveOptTarBtnItemView; + var s = new eui.ArrayCollection(i); + (this.optTab.dataProvider = s), (e = null); + }), + (i.prototype.showAchievementList = function () { + (this.listAchieve.useVirtualLayout = !0), (this.listAchieve.dataProvider = this.achieveArrList), (this.listAchieve.itemRenderer = t.AchievementItemView); + }), + (i.prototype.updateAchieveItem = function () { + var e = t.AchievementMgr.ins().getAchievementGiftData(); + if (1 == e.errorCode) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Achievement_GetGiftFail); + var i = this.optTab.selectedItem.id; + t.AchievementMgr.ins().sendAchievementList(i); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (this.bindTabBar(), + this.bindOptTabBar(), + t.MouseScroller.bind(this.scroller), + this.HFTK(t.AchievementMgr.ins().post_AchievemnetInfo, this.updateData), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateCountData), + this.HFTK(t.AchievementMgr.ins().post_AchievemnetResult, this.updateAchieveItem), + this.HFTK(t.AchievementMgr.ins().post_AchieveGetMedalData, this.initMadel), + this.HFTK(t.AchievementMgr.ins().post_AchieveMedalUpLevel, this.initMadel), + this.tabBar.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.optTab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onAchieveBarItemTap, this), + this.vKruVZ(this.btnUp, this.onClick), + this.vKruVZ(this.shopBtn, this.onClick), + (this.lastIndex = null == e[0] ? 0 : e[0]), + (this.pageIndex = null == e[1] ? 0 : e[1]), + (this.tabBar.selectedIndex = this.lastIndex), + (this.optTab.selectedIndex = this.pageIndex), + this.setShowContent(this.lastIndex), + this.lastIndex < 1) + ) { + var n = this.optTab.selectedItem.id; + t.AchievementMgr.ins().sendAchievementList(n); + } + }), + (i.prototype._DoRefresh = function () { + this.achieveArrList.removeAll(), + this.scroller.stopAnimation(), + this.scroller.viewport.validateNow(), + (this.scroller.viewport.scrollV = 0), + this.listAchieve.validateNow(), + (this.listAchieve.scrollV = 0); + }), + (i.prototype.updateData = function () { + this.achieveArrList.source = t.AchievementMgr.ins().getAchievementList(); + }), + (i.prototype.setShowContent = function (t) { + for (var e = 0; 2 > e; e++) (this["gp_" + e].visible = !1), e == t && (this["gp_" + e].visible = !0); + }), + (i.prototype.onAchieveBarItemTap = function (e) { + var i = this.optTab.selectedItem.id; + this._DoRefresh(), t.AchievementMgr.ins().sendAchievementList(i); + }), + (i.prototype.onBarItemTap = function (e) { + (this.lastIndex = e.itemIndex), this.setShowContent(this.lastIndex), 1 == this.lastIndex && t.AchievementMgr.ins().sendMedalGetData(); + }), + (i.prototype.onClick = function (e) { + e.currentTarget == this.btnUp ? t.AchievementMgr.ins().sendMedalUpLevel() : t.mAYZL.ins().open(t.ShopView, 8, 1); + }), + (i.prototype.updateCountData = function () { + var e = t.NWRFmB.ins().getPayer.propSet.getPopularity(); + this.lbCount.text = e + ""; + }), + (i.prototype.updateItem = function (t, e) { + var i = { + type: 0, + id: e, + count: 0, + }; + t.data = i; + }), + (i.prototype.initMadel = function () { + var e = t.NWRFmB.ins().getPayer.propSet.getPopularity(); + this.lbCount.text = e + ""; + var i = t.AchievementMgr.ins().curMedalLevel, + n = t.VlaoF.MedalConfig[i]; + if (n) { + var s = t.VlaoF.StdItems[n.medal]; + s ? ((this.lbCurItem.text = s.name), this.updateItem(this.curItem, s.id)) : (this.curItem.data = null), + (s = t.VlaoF.StdItems[n.nextmedal]), + s ? ((this.lbNextItem.text = s.name), this.updateItem(this.nextItem, s.id)) : ((this.nextItem.data = null), (this.lbNextItem.text = "")); + } + var a = t.NWRFmB.ins().getPayer, + r = a.propSet.MzYki(), + o = a.propSet.mBjV(), + l = t.GlobalData.sectionOpenDay, + h = 0 == n.medal ? n.nextmedal : n.medal; + (this.curAttribArr.source = t.AchievementMgr.ins().getMedalAttrib(h, !1, n.medal > 0)), + (this.nextAttribArr.source = t.AchievementMgr.ins().getMedalAttrib(n.nextmedal, !0, !0)), + (this.gCurList.itemRenderer = t.MedalAttrItemCurView), + (this.gCurList.dataProvider = this.curAttribArr), + (this.gNextList.itemRenderer = t.MedalAttrItemNextView), + (this.gNextList.dataProvider = this.nextAttribArr), + this.nextAttribArr.length <= 0 && (this.txt_max_lev.text = t.CrmPU.language_Achieve_Medal_MaxLevel_text); + var p = new eui.ArrayCollection(); + (p.source = n.needitem), (this.gUpNeedList.itemRenderer = t.AchieveDetailItemView), (this.gUpNeedList.dataProvider = p), (this.gUpList.itemRenderer = t.MedalUpItemCurView); + var u, + c = new eui.ArrayCollection(), + g = [], + d = t.zlkp.replace(t.CrmPU.language_Achieve_Medal_NeedLevel_text, n.nextlevel); + null != n.nextlevel && ((u = new t.MedalUpData()), (u.id = n.nextlevel), (u.content = d), (u.type = 0), (u.state = o >= n.nextlevel ? 1 : 0), g.push(u)); + var m = t.zlkp.replace(t.CrmPU.language_Achieve_Medal_OpenDay_text, n.openday); + null != n.openday && ((u = new t.MedalUpData()), (u.id = n.openday), (u.content = m), (u.type = 0), (u.state = l >= n.openday ? 1 : 0), g.push(u)); + var f = t.zlkp.replace(t.CrmPU.language_Achieve_Medal_CostCircleLevel_text, n.circle); + null != n.circle && ((u = new t.MedalUpData()), (u.id = n.circle), (u.content = f), (u.type = 0), (u.state = r >= n.circle ? 1 : 0), g.push(u)), + t.AchievementMgr.ins().achievesState.length > 0 && (g = g.concat(t.AchievementMgr.ins().achievesState)), + (c.source = g), + (this.gUpList.dataProvider = c); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + for ( + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.scroller), + this.dragDropUI.destroy(), + this.dragDropUI = null, + this.tabBar.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.optTab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onAchieveBarItemTap, this), + this.fEHj(this.btnUp, this.onClick), + this.fEHj(this.shopBtn, this.onClick); + this.listAchieve.numChildren > 0; + + ) { + var s = this.listAchieve.getChildAt(0); + s.destroy(), this.listAchieve.removeChild(s), (s = null); + } + for (this.curAttribArr.removeAll(), this.nextAttribArr.removeAll(), this.achieveArrList.removeAll(); this.gpAll.numChildren > 0; ) { + var s = this.gpAll.getChildAt(0); + s && (s = null), this.gpAll.removeChildAt(0); + } + this.gpAll = null; + }), + i + ); + })(t.gIRYTi); + (t.AchievementView = e), __reflect(e.prototype, "app.AchievementView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "MultiVersionViewSkin"), (i.name = "MultiVersionView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_Common_250); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.VlaoF.ThreeClientConfig, + s = []; + for (var a in n) 0 != n[a].IsShow && s.push(n[a]); + (this.optTab.dataProvider = new eui.ArrayCollection(s)), + (this.optTab.itemRenderer = t.TradeLineTabView), + this.optTab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.vKruVZ(this.btnCopy, this.onClick), + (this.optTab.selectedIndex = 0), + this.onBarItemTap(null); + }), + (i.prototype.onClick = function () { + var e = this.optTab.selectedItem; + if (KdbLz.qOtrbE.vDCH) return void Main.Native_onCopy(window.webUrl + e.Address); + var i = document.createElement("input"); + (i.value = window.webUrl + e.Address), + document.body.appendChild(i), + i.select(), + i.setSelectionRange(0, i.value.length), + document.execCommand("Copy"), + document.body.removeChild(i), + t.uMEZy.ins().IrCm(e.ButtonTips); + }), + (i.prototype.onBarItemTap = function (t) { + var e = this.optTab.selectedItem; + (this.imgBg.source = e.BgPicture), + e.ButtonName ? ((this.btnCopy.icon = e.ButtonName), (this.btnCopy.visible = !0)) : (this.btnCopy.visible = !1), + e.ButtonPos ? (this.btnCopy.y = e.ButtonPos.y) : (this.btnCopy.y = 430); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.optTab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this); + }), + i + ); + })(t.gIRYTi); + (t.MultiVersionView = e), __reflect(e.prototype, "app.MultiVersionView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var ZnGy; +!(function (t) { + (t[(t.qatEquipment = 0)] = "qatEquipment"), + (t[(t.qatMoney = 1)] = "qatMoney"), + (t[(t.qatBindMoney = 2)] = "qatBindMoney"), + (t[(t.qatBindYb = 3)] = "qatBindYb"), + (t[(t.qatYuanbao = 4)] = "qatYuanbao"), + (t[(t.qatExp = 5)] = "qatExp"), + (t[(t.qatCircleSoul = 6)] = "qatCircleSoul"), + (t[(t.qatFlyShoes = 7)] = "qatFlyShoes"), + (t[(t.qatBroat = 8)] = "qatBroat"), + (t[(t.qaIntegral = 9)] = "qaIntegral"), + (t[(t.qaGuildDonate = 10)] = "qaGuildDonate"), + (t[(t.qaPrestige = 11)] = "qaPrestige"), + (t[(t.qaActivity = 12)] = "qaActivity"), + (t[(t.qaMultipleExp = 13)] = "qaMultipleExp"), + (t[(t.warNumber = 20)] = "warNumber"), + (t[(t.qatDimensionalKey = 21)] = "qatDimensionalKey"); +})(ZnGy || (ZnGy = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + this.mfLabel.textFlow = t.hETx.qYVI("" + this.data.sName + ""); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + }), + i + ); + })(t.BaseItemRender); + (t.NpcItemRender = e), __reflect(e.prototype, "app.NpcItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.lookRwardsDesc = ""), (t.skinName = "NpcSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + (this.list.itemRenderer = t.NpcItemRender), + (this.transList.itemRenderer = t.NpcItemRender), + this.vKruVZ(this.list, this.onListTouch), + this.vKruVZ(this.transList, this.onGroupTouch), + this.HFTK(t.VrAZQ.ins().post_6_2, this.refreshView), + this.HFTK(t.VrAZQ.ins().post_6_3, this.refreshView), + this.HFTK(t.VrAZQ.ins().post_6_4, this.refreshView); + }), + (i.prototype.onGroupTouch = function (e) { + if (this.transList.selectedItem) { + var i = t.NWRFmB.ins().getPayer, + si = this.transList.selectedItem; + if (i.propSet.mBjV() < si.nLevel) return void t.uMEZy.ins().pwYDdQ(t.zlkp.replace(t.CrmPU.language_NPC1, [si.nLevel])); + // 检查套装 + var msg = t.zlkp.replace(t.CrmPU.language_NPC2, [si.zsLevel]); + if (i.propSet.MzYki() >= si.zsLevel) { + //通过检查 + } else if (t.VlaoF.editionConf.suit == t.MiOx.srvid && si.suit) { + var suit = t.VlaoF.SuitConfig[si.suit]; + if (!t.caJqU.ins().zihiqG(si.suit)) return void t.uMEZy.ins().IrCm(msg + "|C:0xff7700&T:或穿戴[" + (suit ? suit.name : "") + "]才能进入|"); + } else return void t.uMEZy.ins().pwYDdQ(msg); + + if (t.GlobalData.sectionOpenDay < si.openDay) return void t.uMEZy.ins().pwYDdQ(t.zlkp.replace(t.CrmPU.language_NPC3, [si.openDay])); + var n = "", + s = void 0, + a = void 0; + for (var r in si.Consumelist) { + if (((s = si.Consumelist[r]), t.ZAJw.MPDpiB(s.type, s.id) < s.count)) { + var o = t.ZAJw.sztgR(s.type, s.id); + return void t.uMEZy.ins().pwYDdQ(t.zlkp.replace(t.CrmPU.language_Tips58, o[0])); + } + si.isTips && ((a = t.ZAJw.sztgR(s.type, s.id)), a && (n += a[0] + "x" + s.count + ",")); + } + if ("" == n) t.PKRX.ins().send_1_7(this.recog, si.id), t.mAYZL.ins().close(this); + else { + n = t.zlkp.replace(t.CrmPU.language_TransmitConsume, [n]); + var l = this; + t.CautionView.show( + n, + function () { + t.PKRX.ins().send_1_7(l.recog, l.transList.selectedItem.id), t.mAYZL.ins().close(this); + }, + this + ); + } + } + }), + (i.prototype.onListTouch = function (e) { + if (this.list.selectedItem) { + var i = this.list.selectedItem.info; + if (1 == i.funcType) t.Nzfh.ins().s_0_5(this.recog, i.id), t.mAYZL.ins().close(this); + else if (2 == i.funcType) t.mAYZL.ins().openViewId(i.param1, this.recog, i.id), t.mAYZL.ins().close(this); + else if (3 == i.funcType) { + var n = t.NWRFmB.ins().getPayer, + s = new eui.ArrayCollection(), + a = void 0; + for (var r in i.param1) + if ((a = t.VlaoF.NpcTransConf[i.param1[r]])) { + if (n.propSet.mBjV() < a.displayLevel || n.propSet.MzYki() < a.displayZsLevel || t.GlobalData.sectionOpenDay < a.displayDay) continue; + if (a.random) { + a.nX = a.nX + t.MathUtils.limitInteger(2, 5); + a.nY = a.nY + t.MathUtils.limitInteger(2, 5); + } + s.addItem(a); + } + (this.transList.dataProvider = s), (this.transList.visible = !0), (this.list.visible = !1); + } else if (4 == i.funcType) t.mAYZL.ins().open(t.TaskInfoWin, i.param1, i.param2), this.refreshView(); + else if (5 == i.funcType) { + var o = t.VlaoF.ShowActivityidConfig[i.param1]; + if (o) { + for (var l in o.actIDArr) { + var h = o.actIDArr[l], + p = t.TQkyOx.ins().getActivityInfo(h); + if (p) { + var u = t.VlaoF.BagRemainConfig[1]; + if (u) { + var c = t.ThgMu.ins().getBagCapacity(u.bagremain); + return void (c ? (t.TQkyOx.ins().send_25_1(h, i.param2), t.TQkyOx.ins().send_25_2(h), t.mAYZL.ins().close(this)) : t.uMEZy.ins().IrCm(u.bagtips)); + } + } + } + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips62); + } + } else 6 == i.funcType && (t.mAYZL.ins().ZbzdY(i.param2) && t.mAYZL.ins().close(i.param2), t.mAYZL.ins().open(i.param2, i.param3), t.mAYZL.ins().close(this)); + } + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.recog = e[0]), + (this.propSet = e[1]), + (this.transList.visible = !1), + (this.lookRewardLab.text = ""), + (this.lookRewardLab.visible = !1), + (this.lookRwardsDesc = ""), + this.vKruVZ(this.lookRewardLab, this.openRewardTips), + this.HFTK(t.TQkyOx.ins().post_TowerBonusNum, this.refreshTalkGiftNum), + this.refreshView(); + }), + (i.prototype.openRewardTips = function (e) { + if ("" != this.lookRwardsDesc) { + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this); + var i = e.currentTarget, + n = i.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_NPCLOOKREWARDS, this.lookRwardsDesc, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + }), + (i.prototype.onCloseMenu = function () { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), t.uMEZy.ins().closeTips(); + }), + (i.prototype.isTaskInfo = function () { + var e = t.VlaoF.Npc[this.propSet.getACTOR_ID()]; + if (e && e.funcGroup) { + var i = void 0; + for (var n in e.funcGroup) + if (((i = t.VlaoF.NpcFunctions[e.funcGroup[n]]), i && 4 == i.funcType)) { + var s = t.VrAZQ.ins().taskInfo[i.param1]; + if (s && s.taskState == i.param2) return !0; + } + } + return !1; + }), + (i.prototype.refreshView = function () { + var e = t.VlaoF.Npc[this.propSet.getACTOR_ID()]; + if (e) { + (this.npcCfg = e), + (this.npcName.text = e.name), + e.talk && "" != e.talk ? (this.descLabel.textFlow = t.hETx.qYVI(e.talk)) : t.lEYZI.Naoc(this.descLabel), + e.lookRewardStr && ((this.lookRewardLab.visible = !0), (this.lookRewardLab.textFlow = t.hETx.qYVI(e.lookRewardStr)), (this.lookRwardsDesc = e.lookRewardDesc + "")); + var i = 1, + n = t.NWRFmB.ins().getPayer; + if ((n && n.propSet && (i = n.propSet.mBjV()), e.funcGroup)) { + var s = void 0, + a = []; + if (25 > i && this.isTaskInfo()) { + for (var r in e.funcGroup) + if (((s = t.VlaoF.NpcFunctions[e.funcGroup[r]]), s && 4 == s.funcType)) { + var o = t.VrAZQ.ins().taskInfo[s.param1]; + if (o && o.taskState == s.param2) { + var l = t.VlaoF.TaskDisplayConfig[o.taskID][o.taskState]; + l && + a.push({ + sName: l.NpcName, + info: s, + }); + } + } + } else + for (var h = 0; h < e.funcGroup.length; h++) + if ((s = t.VlaoF.NpcFunctions[e.funcGroup[h]])) + if (1 == s.funcType) { + var p = t.VlaoF.ShopnameConfig[s.param1]; + p && + a.push({ + sName: p.shopname, + info: s, + }); + } else if (2 == s.funcType) { + var u = t.VlaoF.FunExhibitionConfig[s.param1]; + u && + a.push({ + sName: u.funName, + info: s, + }); + } else if (3 == s.funcType) + a.push({ + sName: t.CrmPU.language_Transmit, + info: s, + }); + else if (4 == s.funcType) { + var o = t.VrAZQ.ins().taskInfo[s.param1]; + if (o && o.taskState == s.param2) { + var l = t.VlaoF.TaskDisplayConfig[o.taskID][o.taskState]; + l && + a.push({ + sName: l.NpcName, + info: s, + }); + } + } else if (5 == s.funcType) { + var c = t.VlaoF.ShowActivityidConfig[s.param1]; + c && + (a.push({ + sName: c.btnName, + info: s, + }), + 12 == c.actIDArr[0] && t.TQkyOx.ins().send_25_1(t.TQkyOx.ins().currentActId, t.Operate.cGetBonusNum)); + } else + 6 == s.funcType && + a.push({ + sName: s.param1, + info: s, + }); + this.transList && 0 == this.transList.visible && ((this.list.visible = !0), (this.list.dataProvider = new eui.ArrayCollection(a))); + } + } + }), + (i.prototype.refreshTalkGiftNum = function () { + if (this.npcCfg) + if (this.npcCfg.talk && "" != this.npcCfg.talk) { + var e = t.zlkp.replace(this.npcCfg.talk, t.TQkyOx.ins().towerBonusNum); + this.descLabel.textFlow = t.hETx.qYVI(e); + } else t.lEYZI.Naoc(this.descLabel); + }), + (i.prototype.closeView = function () {}), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.onCloseMenu(), + this.dragDropUI.destroy(), + (this.npcCfg = null), + this.fEHj(this.list, this.onListTouch), + this.fEHj(this.transList, this.onGroupTouch); + }), + i + ); + })(t.gIRYTi); + (t.NpcView = e), __reflect(e.prototype, "app.NpcView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ShabakRewardsWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewardsList.itemRenderer = t.ItemBase), (this.receiveLab.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Wlelfare_Text2 + "")); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.bfhrJ.ins().post_10_26, this.updateName), this.vKruVZ(this.receiveLab, this.onClick), this.vKruVZ(this.btn_close, this.onClick), t.bfhrJ.ins().send_10_25(); + var n = t.VlaoF.NoticeConfig[4]; + n && (this.rewardsList.dataProvider = new eui.ArrayCollection(n.showreward)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveLab: + t.bfhrJ.ins().send_10_24(); + break; + case this.btn_close: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.updateName = function (e) { + "" == e[0] ? (this.playerName.text = t.CrmPU.language_Omission_txt89) : (this.playerName.text = e[0] + ""), + "" == e[1] ? (this.guildName.text = t.CrmPU.language_Omission_txt89) : (this.guildName.text = e[1] + ""); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.receiveLab, this.onClick), this.fEHj(this.btn_close, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ShabakRewardsWin = e), __reflect(e.prototype, "app.ShabakRewardsWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "WashRedNameViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setText(); + }), + (i.prototype.setText = function () { + (this.txt0.text = t.CrmPU.language_Wash_txt0), + (this.txt1.text = t.CrmPU.language_Wash_txt0), + (this.goldWashBtn0.label = t.CrmPU.language_System49), + (this.goldWashBtn1.label = t.CrmPU.language_System49); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this); + var n = e[0]; + (this.recog = n[0]), + (this.npcId = n[1]), + this.dragDropUI.setTitle(t.CrmPU.language_System49), + this.vKruVZ(this.goldWashBtn0, this.onClick), + this.vKruVZ(this.goldWashBtn1, this.onClick), + this.HFTK(t.edHC.ins().post_26_78, this.updateData), + this.initConfData(); + }), + (i.prototype.initConfData = function () { + for (var e = t.VlaoF.NpcFunctions[this.npcId], i = e.param3, n = 0; n < i.length; n++) { + var s = i[n], + a = t.VlaoF.NumericalIcon[s.consume.type]; + (this["goldLb" + n].text = "" + a.name + t.CrmPU.language_System49), + (this["goldAddCionLb" + n].text = s.consume.count), + (this["goldPkvalLb" + n].text = "" + t.CrmPU.language_WashRedName_text2 + s.pkval + t.CrmPU.language_WashRedName_text3), + (this["money1Icon" + n].source = a.icon.toString()), + s.limitday > -1 + ? (this["goldDayNum" + n].text = t.CrmPU.language_Guild_DayNum_txt + (t.edHC.ins().washRedNameCount + "/" + s.limitday)) + : (this["goldDayNum" + n].text = t.CrmPU.language_WashRedName_text4); + } + }), + (i.prototype.updateData = function () { + this.initConfData(); + }), + (i.prototype.onClick = function (e) { + e.currentTarget == this.goldWashBtn0 ? t.Nzfh.ins().s_0_5_1(this.recog, this.npcId, 0) : t.Nzfh.ins().s_0_5_1(this.recog, this.npcId, 1); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), this.fEHj(this.goldWashBtn0, this.onClick), this.fEHj(this.goldWashBtn1, this.onClick), this.dragDropUI.destroy(); + }), + i + ); + })(t.gIRYTi); + (t.WashRedNameView = e), __reflect(e.prototype, "app.WashRedNameView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); + var i = (function () { + function t() {} + return t; + })(); + (t.WashRedNameCof = i), __reflect(i.prototype, "app.WashRedNameCof"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._init = !1), (t._rewardIndex = 0), (t._rewardTime = 0), (t._rewardGetTime = 0), (t._rewardNumMax = 0), (t._isCanGet = !1), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function (e) { + this._init || + ((this._init = !0), + t.rLmMYc.addListener(t.TQkyOx.ins().post_25_2, this.updateInfo, this), + t.rLmMYc.addListener(t.TQkyOx.ins().post_25_4, this.updateInfo, this), + t.rLmMYc.addListener(t.Nzfh.ins().post_updateLevel, this.updateInfo, this)), + this.actId != e && ((this.actId = e), (this._rewardNumMax = 0)), + t.KHNO.ins().RTXtZF(this.updateInfo, this) || t.KHNO.ins().doNext(this.updateInfo, this); + }), + (i.prototype.updateInfo = function () { + t.KHNO.ins().remove(this.updateGetTime, this); + var e, + i = t.TQkyOx.ins().getActivityInfo(this.actId), + n = t.VlaoF.ActivityWelfareConf; + for (var s in n) + if (n[s].actId == this.actId) { + e = n[s]; + break; + } + if (i && e) { + var a = t.TQkyOx.ins().getActivityConfigById(this.actId), + r = i.info.index; + if (r <= this.rewardNumMax) { + var o = a.reward[r]; + if (o) { + var l = i.info.time, + h = l + Math.floor(egret.getTimer() / 1e3) >= o.time; + if (!this._isCanGet && h) { + t.mAYZL.ins().open(t.OnlineRewardsTipsView); + t.KHNO.ins().rqDkE( + 10e3, + 0, + 1, + function () { + t.mAYZL.ins().ZbzdY(t.OnlineRewardsTipsView) && t.mAYZL.ins().close(t.OnlineRewardsTipsView); + }, + this + ); + } + (this._rewardIndex = r), (this._rewardTime = l), (this._rewardGetTime = o.time), (this._isCanGet = h), t.KHNO.ins().tBiJo(1e3, 0, this.updateGetTime, this); + } + } + } + }), + (i.prototype.checkCanShow = function () { + var e, + i = t.TQkyOx.ins().getActivityInfo(this.actId), + n = t.VlaoF.ActivityWelfareConf; + for (var s in n) + if (n[s].actId == this.actId) { + e = n[s]; + break; + } + if (i && e) { + return 0 < i.endTime - Math.floor(t.GlobalData.serverTime / 1e3); + } + return !1; + }), + (i.prototype.updateGetTime = function () { + var e = this._rewardTime + Math.floor(egret.getTimer() / 1e3) > this._rewardGetTime; + if (!this._isCanGet && e) { + (this._isCanGet = e), t.TQkyOx.ins().send_25_2(this.actId), t.mAYZL.ins().open(t.OnlineRewardsTipsView), t.KHNO.ins().remove(this.updateGetTime, this); + t.KHNO.ins().rqDkE( + 10e3, + 0, + 1, + function () { + t.mAYZL.ins().ZbzdY(t.OnlineRewardsTipsView) && t.mAYZL.ins().close(t.OnlineRewardsTipsView); + }, + this + ); + } + }), + Object.defineProperty(i.prototype, "rewardNumMax", { + get: function () { + if (!this._rewardNumMax) { + var e = t.TQkyOx.ins().getActivityConfigById(this.actId); + for (var i in e.reward) { + var n = parseInt(i); + n > this._rewardNumMax && (this._rewardNumMax = n); + } + } + return this._rewardNumMax; + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseClass); + (t.OnlineRewardsManager = e), __reflect(e.prototype, "app.OnlineRewardsManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "OnlineRewardsTipsViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.descLabel.text = t.CrmPU.language_Common_282), this.vKruVZ(this.btn_close, this.onClick), this.vKruVZ(this.okButton, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn_close: + t.mAYZL.ins().close(this); + break; + case this.okButton: + t.mAYZL.ins().open(t.ActivityWlelfareView, t.OnlineRewardsManager.ins().actId), t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.btn_close, this.onClick), this.fEHj(this.okButton, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.OnlineRewardsTipsView = e), __reflect(e.prototype, "app.OnlineRewardsTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.cdTime = 0), (t.getTime = 0), (t.onlineTime = 0), (t.getTimeNum = 0), (t.index = 0), (t.skinName = "OnlineRewardsViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((e[0] && (this.actId = e[0]), (this.redPoint.visible = !1), (this.receiveImg.visible = !1), 0 != this.actId)) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n && (this.HFTK(t.TQkyOx.ins().post_25_2, this.updateView), this.HFTK(t.TQkyOx.ins().post_25_4, this.updateView), this.updateView()); + this.vKruVZ(this.getBtn, this.onClick), t.TQkyOx.ins().send_25_2(this.actId); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.getBtn: + this.getTime <= 0 ? t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cGetPhaseAward) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips162); + } + }), + (i.prototype.updateView = function () { + t.KHNO.ins().remove(this.updateGetTime, this), t.KHNO.ins().remove(this.updateGetTime2, this); + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + var i = t.TQkyOx.ins().getActivityConfigById(this.actId); + (this.cdTime = e.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)), + (this.index = e.info.index); + if (this.index > t.OnlineRewardsManager.ins().rewardNumMax) { + (this.actTime2.text = ""), (this.getBtn.visible = !1), (this.redPoint.visible = !1), (this.receiveImg.visible = !0); + var n = i.reward[t.OnlineRewardsManager.ins().rewardNumMax]; + n && (this.itemData.data = n.awards[0]), + (this.onlineTime = t.DateUtils.getTodayPassedSecond2() - Math.floor(egret.getTimer() / 1e3)), + (this.getTimeNum = t.DateUtils.SECOND_PER_DAY), + t.KHNO.ins().tBiJo(1e3, 0, this.updateGetTime2, this), + this.updateGetTime2(); + } else { + (this.receiveImg.visible = !1), (this.getBtn.visible = !0); + var n = i.reward[this.index]; + n && + ((this.itemData.data = n.awards[0]), + (this.getTimeNum = n.time), + (this.getTime = this.getTimeNum - (e.info.time + Math.floor(egret.getTimer() / 1e3))), + (this.onlineTime = e.info.time), + this.getTime && t.KHNO.ins().tBiJo(1e3, 0, this.updateGetTime, this), + this.updateGetTime()); + } + } else { + this.actTime.textFlow = t.hETx.qYVI("|C:0xff7700&T:已结束|"); + } + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.updateGetTime = function () { + if (((this.getTime = this.getTimeNum - (this.onlineTime + Math.floor(egret.getTimer() / 1e3))), this.getTime <= 0)) + (this.actTime2.text = t.CrmPU.language_Common_223), (this.redPoint.visible = !0), t.KHNO.ins().remove(this.updateGetTime, this); + else { + var e = t.DateUtils.getFormatBySecond(this.getTime, t.DateUtils.TIME_FORMAT_1); + (this.actTime2.text = t.zlkp.replace(t.CrmPU.language_Common_224, e)), (this.redPoint.visible = !1); + } + }), + (i.prototype.updateGetTime2 = function () { + if (((this.getTime = this.getTimeNum - (this.onlineTime + Math.floor(egret.getTimer() / 1e3))), this.getTime <= 0)) { + var e = t.DateUtils.getFormatBySecond(0, t.DateUtils.TIME_FORMAT_1); + (this.actTime2.text = t.zlkp.replace(t.CrmPU.language_Common_283, e)), t.KHNO.ins().remove(this.updateGetTime2, this); + } else { + var e = t.DateUtils.getFormatBySecond(this.getTime, t.DateUtils.TIME_FORMAT_1); + this.actTime2.text = t.zlkp.replace(t.CrmPU.language_Common_283, e); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.KHNO.ins().remove(this.updateCDTime, this), + t.KHNO.ins().remove(this.updateGetTime, this), + t.KHNO.ins().remove(this.updateGetTime2, this), + this.fEHj(this.getBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.OnlineRewardsView = e), __reflect(e.prototype, "app.OnlineRewardsView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectIdx = 0), (t.skinName = "OpenServerGiftWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.OpenServerTabItemView), + this.vKruVZ(this.closeBtn, this.onClick), + this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this), + this.HFTK(t.edHC.ins().post_26_28, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_1, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_2, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_3, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_4, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_5, this.getAllTabList); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.titleImg.source = "biaoti_kaifuhaoli"), t.MouseScroller.bind(this.btnScroller), this.getAllTabList(), this.updatePag(); + }), + (i.prototype.getAllTabList = function () { + var e = [], + i = (t.GlobalData.sectionOpenDay, t.VlaoF.ActivityOpenServiceConf); + for (var n in i) { + var s = t.TQkyOx.ins().getActivityInfo(i[n].actId); + s && t.mAYZL.ins().isCheckOpen(i[n].openlimit) && e.push(i[n]); + } + (this.tabBar.dataProvider = new eui.ArrayCollection(e)), (this.tabBar.selectedIndex = this.selectIdx <= this.tabBar.dataProvider.length - 1 ? this.selectIdx : 0); + }), + (i.prototype.updatePag = function () { + this.selectIdx = this.tabBar.selectedIndex; + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e && e.view) { + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + var i = egret.getDefinitionByName(e.view); + i && + ((this.curPanel = new i()), + this.curPanel && + ((this.curPanel.left = 0), (this.curPanel.right = 0), (this.curPanel.top = 0), (this.curPanel.bottom = 0), this.infoGrp.addChild(this.curPanel), this.curPanel.open(e.actId))); + } + e = null; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.btnScroller), + this.fEHj(this.closeBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + (this.selectIdx = null), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerGiftWin = e), __reflect(e.prototype, "app.OpenServerGiftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.redDot.visible = !1), (this.labelDisplay.text = this.data.name + ""); + var e = t.TQkyOx.ins().getActivityInfo(this.data.actId); + if (this.data.redpoint) { + if (e && e.info) { + if (e.id == t.ISYR.investment && 1 == e.info.IsBuy) return void (this.redDot.visible = 0 != e.redDot); + (this.redDot.visible = !0), this.redDot.setRedImg(this.data.redpoint); + } + } else e && (this.redDot.visible = 0 != e.redDot); + }), + i + ); + })(eui.ItemRenderer); + (t.OpenServerTabItemView = e), __reflect(e.prototype, "app.OpenServerTabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.isSelectImg.visible = this.data.isVis), (this.openDesc.visible = !1), (this.buyImg.visible = !1), (this.unopenedImg.visible = !1); + var e = t.TQkyOx.ins().getActivityConfigById(this.data.actID); + e && + e[this.data.giftId] && + ((this.giftIcon.source = e[this.data.giftId].actlogo + ""), + (this.giftTitle.source = e[this.data.giftId].titleImg + ""), + 1 == this.data.state + ? ((this.unopenedImg.visible = !0), (this.buyImg.visible = !0)) + : 0 == this.data.state + ? ((this.unopenedImg.visible = !0), (this.openDesc.visible = !0), (this.openDesc.text = t.zlkp.replace(t.CrmPU.language_Common_105, e[this.data.giftId].BuyDayLmt))) + : 2 == this.data.state); + } + }), + i + ); + })(t.BaseItemRender); + (t.OpenServerGiftItemView = e), __reflect(e.prototype, "app.OpenServerGiftItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.lastSelected = -1), (t.curItemData = null), (t.actId = 0), (t.listInfo = []), (t.cdTime = 0), (t.skinName = "OpenServerGiftViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.actId = e[0]), + (this.rewards.itemRenderer = t.ItemBase), + (this.giftScroller.horizontalScrollBar.autoVisibility = !1), + (this.giftScroller.horizontalScrollBar.visible = !1), + (this.giftList.itemRenderer = t.OpenServerGiftItemView), + (this.arrList = new eui.ArrayCollection()), + (this.giftList.dataProvider = this.arrList), + this.giftList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateList), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateList), + this.vKruVZ(this.receiveBtn, this.onClick), + this.updateList(); + }), + (i.prototype.updateList = function () { + this.listInfo = []; + var e = t.GlobalData.sectionOpenDay, + i = t.TQkyOx.ins().getActivityInfo(this.actId), + n = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (i && i.info && n) { + (this.cdTime = i.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)); + for (var s in i.info) { + var a = i.info[s]; + n[a.id] && n[a.id].BuyDayLmt <= e + ? 0 == a.times + ? this.listInfo.push({ + giftId: a.id, + state: 1, + actID: this.actId, + isVis: !1, + }) + : this.listInfo.push({ + giftId: a.id, + state: 2, + actID: this.actId, + isVis: !1, + }) + : this.listInfo.push({ + giftId: a.id, + state: 0, + actID: this.actId, + isVis: !1, + }); + } + } + this.listInfo.sort(this.sortFun), + (this.listInfo[0].isVis = !0), + this.arrList.replaceAll(this.listInfo), + (this.lastSelected = 0), + (this.giftList.selectedIndex = this.lastSelected), + this.updateView(this.giftList.selectedIndex); + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = "" + t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), + 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.sortFun = function (t, e) { + return t.state > e.state ? -1 : t.state < e.state ? 1 : t.giftId < e.giftId ? -1 : t.giftId > e.giftId ? 1 : 0; + }), + (i.prototype.listClick = function (t) { + 0 != t.item.state && + (this.lastSelected >= 0 && (this.listInfo[this.lastSelected].isVis = !1), + (this.lastSelected = this.giftList.selectedIndex), + (this.curItemData = t.item), + this.giftList.dataProvider && this.lastSelected > -1 && this.lastSelected < this.giftList.dataProvider.length && (this.listInfo[this.giftList.selectedIndex].isVis = !0), + this.arrList.replaceAll(this.listInfo), + this.updateView(this.giftList.selectedIndex)); + }), + (i.prototype.updateView = function (e) { + (this.buyImg.visible = !1), (this.receiveBtn.visible = !0); + var i = this.listInfo[e], + n = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (i && n) + for (var s in n) + if (n[s].GiftBoxNum == i.giftId) { + (this.curItemData = i), + (this.rewards.dataProvider = new eui.ArrayCollection(n[s].award)), + (this.giftIcon.source = n[s].actlogo + ""), + (this.giftDesc.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_106, n[s].price[0].count, n[s].name))), + (this.giftMoney.text = n[s].price[0].count), + 1 == i.state && ((this.buyImg.visible = !0), (this.receiveBtn.visible = !1)); + break; + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + this.curItemData && t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cBuy, [this.curItemData.giftId]); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.giftList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + t.KHNO.ins().remove(this.updateCDTime, this), + this.fEHj(this.receiveBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerGiftView = e), __reflect(e.prototype, "app.OpenServerGiftView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.buyButton, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.buyButton.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this); + }), + (i.prototype.onTouch = function (e) { + t.TQkyOx.ins().send_25_1(this.data.actID, t.Operate.cReceiveInvestment, [this.data.index]); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.buyButton.enabled = !0), (this.redPoint.visible = !1), (this.curDay.text = this.data.index); + var e = t.TQkyOx.ins().getActivityInfo(this.data.actID); + e && + e.info && + (e.info.IsBuy + ? this.data.isReceive + ? ((this.receiveImg.visible = !0), (this.buyButton.visible = !1)) + : ((this.receiveImg.visible = !1), + (this.buyButton.visible = !0), + this.data.index <= e.info.LoginDay + ? ((this.redPoint.visible = !0), (this.buyButton.label = t.CrmPU.language_Wlelfare_Text2), (this.buyButton.labelDisplay.textColor = 15779990)) + : ((this.redPoint.visible = !1), (this.buyButton.enabled = !1), (this.buyButton.label = t.CrmPU.language_Wlelfare_Text1), (this.buyButton.labelDisplay.textColor = 12171705))) + : ((this.receiveImg.visible = !1), (this.buyButton.visible = !1))); + var i = t.TQkyOx.ins().getActivityConfigById(this.data.actID); + i && i[this.data.index] && (this.rewards.dataProvider = new eui.ArrayCollection(i[this.data.index].GiftTable)); + } + }), + i + ); + })(t.BaseItemRender); + (t.InvestmentItemView = e), __reflect(e.prototype, "app.InvestmentItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.dayInfo = []), (t.cdTime = 0), (t.buyCdTime = 0), (t.skinName = "InvestmentViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (e[0] && (this.actId = e[0]), + (this.InvestmentArr = new eui.ArrayCollection()), + (this.InvestmentList.itemRenderer = t.InvestmentItemView), + (this.InvestmentList.dataProvider = this.InvestmentArr), + t.MouseScroller.bind(this.InvestmentScroller), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateInfo), + 0 != this.actId) + ) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n.description && (this.actDesc.textFlow = t.hETx.qYVI(n.description)); + var s = t.TQkyOx.ins().getActivityConfigById(this.actId); + for (var a in s) + if (s[a] && s[a].consume) { + this.buyBannerNum.text = this.buyBannerNum2.text = s[a].consume[0].count; + break; + } + } + this.vKruVZ(this.receiveBtn, this.onClick), this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + (this.buyGrp.visible = !1), (this.InvestmentScroller.height = 372), (this.dayInfo = []); + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + if ( + ((this.cdTime = e.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)), + !e.info.IsBuy) + ) { + (this.buyGrp.visible = !0), (this.InvestmentScroller.height = 245), (this.buyText.visible = !0); + var i = (e.info.BuyTime - egret.getTimer()) >> 0; + i > 0 && ((this.buyCdTime = e.info.BuyTime), this.updateBuyTime(), t.KHNO.ins().remove(this.updateBuyTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateBuyTime, this)); + } + var n = t.TQkyOx.ins().getActivityConfigById(this.actId), + s = 7; + n && (s = Object.keys(n).length + 2); + for (var a = 2; s > a; a++) + this.dayInfo.push({ + isReceive: t.MathUtils.getValueAtBit(e.info.DayInfo, a), + index: a - 1, + actID: this.actId, + }); + this.InvestmentArr.replaceAll(this.dayInfo); + } + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.updateBuyTime = function () { + var e = this.buyCdTime - egret.getTimer(); + (this.buyTime.text = t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateBuyTime, this), (this.buyTime.text = "")); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + 0 != this.actId && t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cBuyInvestment); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.KHNO.ins().remove(this.updateCDTime, this), + t.KHNO.ins().remove(this.updateBuyTime, this), + t.MouseScroller.unbind(this.InvestmentScroller), + this.fEHj(this.receiveBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.InvestmentView = e), __reflect(e.prototype, "app.InvestmentView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.receive.visible = 1 == this.data.receiveState), (this.redPoint.visible = 1 == this.data.redInfo); + }), + (e.prototype.setSelect = function (t) { + this.isSelect.visible = t; + }), + (e.prototype.setCurDay = function (t) { + this.dayImg.source = "qr_t1_" + t; + }), + e + ); + })(t.BaseItemRender); + (t.SevenDayItemView = e), __reflect(e.prototype, "app.SevenDayItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.lastIndex = 0), (t.curIndex = 0), (t.actId = 0), (t.dayInfo = []), (t.redPointInfo = []), (t.cdTime = 0), (t.skinName = "SevenDayLoginViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.actId = e[0]), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateInfo), + t.TQkyOx.ins().send_25_2(this.actId), + (this.rewardList.itemRenderer = t.ItemBase), + this.vKruVZ(this.receiveBtn, this.reveiveFun); + for (var n = 1; 7 >= n; n++) this["dayItem" + n].setCurDay(n), (this["dayItem" + n].dayIndex = n), this.vKruVZ(this["dayItem" + n], this.onClick); + this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + (this.dayInfo = []), (this.redPointInfo = [0, 0, 0, 0, 0, 0, 0]); + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if (e && e.info) { + for (var i = 2; 8 >= i; i++) this.dayInfo.push(t.MathUtils.getValueAtBit(e.info.dayInfo, i)); + (this.curLogin.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_103, e.info.loginDay))), + (this.cdTime = e.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)); + for (var n = 0; n < this.redPointInfo.length; n++) { + var s = t.MathUtils.getValueAtBit(e.redDot, n + 2); + if (1 == s) { + this.redPointInfo[n] = s; + break; + } + } + } + for (var a = 7, r = 0; r < this.dayInfo.length; r++) + if (0 == this.dayInfo[r]) { + a = r + 1; + break; + } + for (var o = 0; 7 > o; o++) + this["dayItem" + (o + 1)].data = { + receiveState: this.dayInfo[o], + redInfo: this.redPointInfo[o], + }; + (this.lastIndex = this.curIndex), (this.curIndex = a), this.refeshView(this.curIndex); + }), + (i.prototype.onClick = function (t) { + var e = t.currentTarget.dayIndex; + (this.lastIndex = this.curIndex), (this.curIndex = e), this.refeshView(this.curIndex); + }), + (i.prototype.refeshView = function (e) { + (this.receiveBtn.visible = !0), + (this.receiveImg.visible = !1), + 0 != this.lastIndex && this["dayItem" + this.lastIndex].setSelect(!1), + this["dayItem" + e].setSelect(!0), + (this.dayImg.source = "qr_t2_" + e); + var i = t.TQkyOx.ins().getActivityConfigById(this.actId); + i && i[e] && (this.rewardList.dataProvider = new eui.ArrayCollection(i[e].GiftTable)); + var n = this.dayInfo[e - 1]; + 1 == n && ((this.receiveBtn.visible = !1), (this.receiveImg.visible = !0)); + }), + (i.prototype.reveiveFun = function () { + if (0 != this.curIndex) { + var e = t.VlaoF.BagRemainConfig[7]; + if (e) { + var i = t.ThgMu.ins().getBagCapacity(e.bagremain); + i ? t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cBuy, [this.curIndex]) : t.uMEZy.ins().IrCm(e.bagtips); + } + } + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), this.fEHj(this.receiveBtn, this.reveiveFun); + for (var s = 1; 7 >= s; s++) this.fEHj(this["dayItem" + s], this.onClick); + t.KHNO.ins().remove(this.updateCDTime, this), (this.dayInfo = null); + }), + i + ); + })(t.gIRYTi); + (t.SevenDayLoginView = e), __reflect(e.prototype, "app.SevenDayLoginView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.redDot.visible = !1), (this.labelDisplay.text = this.data.name + ""); + var e = t.TQkyOx.ins().getActivityInfo(this.data.actId); + e && + e.info && + (e && 0 != e.redDot && ((this.redDot.visible = !0), this.redDot.setRedImg(1)), + 1 == t.OpenServerSportsRuleIcon.disposableredpointObj[this.data.actId] && ((this.redDot.visible = !0), this.redDot.setRedImg(1)), + this.data.redpoint && ((this.redDot.visible = !0), this.redDot.setRedImg(this.data.redpoint))); + }), + i + ); + })(eui.ItemRenderer); + (t.OpenServerSportsTabItemView = e), __reflect(e.prototype, "app.OpenServerSportsTabItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.selectIdx = 0), (t.actIdIdx = 0), (t.firstEnter = !1), (t.skinName = "OpenServerSportsWinSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabBar.itemRenderer = t.OpenServerSportsTabItemView), + this.vKruVZ(this.closeBtn, this.onClick), + this.tabBar.addEventListener(egret.Event.CHANGE, this.updatePag, this), + this.HFTK(t.edHC.ins().post_26_28, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_1, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_2, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_3, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_4, this.getAllTabList), + this.HFTK(t.TQkyOx.ins().post_25_5, this.getAllTabList); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.firstEnter = !1), + e && e[0] && (this.actIdIdx = e[0]), + t.MouseScroller.bind(this.btnScroller), + this.curPanel || + ((this.curPanel = new t.OpenServerSportsView()), + (this.curPanel.left = 0), + (this.curPanel.right = 0), + (this.curPanel.top = 0), + (this.curPanel.bottom = 0), + this.infoGrp.addChild(this.curPanel), + this.curPanel.open()), + this.getAllTabList(), + this.updateDisposableredpoint(); + }), + (i.prototype.getAllTabList = function () { + var e = [], + i = t.VlaoF.ActivityCompetitionConf; + for (var n in i) { + var s = t.TQkyOx.ins().getActivityInfo(i[n].actId); + s && t.mAYZL.ins().isCheckOpen(i[n].openlimit) && e.push(i[n]); + } + if (((this.tabBar.dataProvider = new eui.ArrayCollection(e)), this.tabBar.validateNow(), this.firstEnter || 0 == this.actIdIdx)) + this.tabBar.selectedIndex = this.selectIdx <= this.tabBar.dataProvider.length - 1 ? this.selectIdx : 0; + else { + this.firstEnter = !0; + for (var n = 0; n < this.tabBar.dataProvider.length; n++) { + var a = this.tabBar.dataProvider.getItemAt(n); + if (a.actId == this.actIdIdx) { + this.tabBar.selectedIndex = n; + break; + } + } + } + this.updateViewInfo(); + }), + (i.prototype.updateViewInfo = function () { + this.selectIdx = this.tabBar.selectedIndex; + var t = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + t && this.curPanel && this.curPanel.updateView(t.actId); + }), + (i.prototype.updatePag = function () { + this.selectIdx = this.tabBar.selectedIndex; + var t = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + t && this.curPanel && this.curPanel.updateViewInfo(t.actId), this.updateDisposableredpoint(); + }), + (i.prototype.updateDisposableredpoint = function () { + var e = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (e && 1 == t.OpenServerSportsRuleIcon.disposableredpointObj[e.actId]) { + (t.OpenServerSportsRuleIcon.disposableredpointObj[e.actId] = 2), t.ckpDj.ins().sendEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, 29); + var i = this.tabBar.getElementAt(this.selectIdx); + i && i.dataChanged(); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.btnScroller), + this.fEHj(this.closeBtn, this.onClick), + this.tabBar.removeEventListener(egret.Event.CHANGE, this.updatePag, this), + this.curPanel && (t.lEYZI.Naoc(this.curPanel), this.curPanel.close()); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerSportsWin = e), __reflect(e.prototype, "app.OpenServerSportsWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.rewards.itemRenderer = t.ItemBase), this.vKruVZ(this.buyButton, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyButton, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.TQkyOx.ins().send_25_1(this.data.activityID, t.Operate.cSportsReveive, [this.data.levelIndex]); + }), + (i.prototype.dataChanged = function () { + if (((this.buyButton.y = 22), (this.redPoint.y = 20), this.data)) { + (this.imgBg.source = this.data.bgIdx % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"), + (this.receiveImg.visible = !1), + (this.buyButton.visible = !0), + (this.buyButton.enabled = !0), + (this.redPoint.visible = !1), + (this.taskValue.visible = this.curValue.visible = !1), + (this.taskName.textColor = 14724725); + var e = t.TQkyOx.ins().getActivityConfigById(this.data.activityID); + if ( + e && + e[this.data.levelIndex] && + ((this.taskName.text = e[this.data.levelIndex].name + ""), + (this.taskValue.visible = e[this.data.levelIndex].showType ? !0 : !1), + (this.taskValue.textFlow = e[this.data.levelIndex].showType ? t.hETx.qYVI(e[this.data.levelIndex].value + "") : t.hETx.qYVI("")), + (this.rewards.dataProvider = new eui.ArrayCollection(e[this.data.levelIndex].GiftTable)), + e[this.data.levelIndex].scheduletips) + ) { + (this.buyButton.y = 10), (this.redPoint.y = 8), (this.curValue.visible = !0); + var i = this.data.curValue >= e[this.data.levelIndex].value ? 2682369 : 15926028; + this.curValue.textFlow = t.hETx.qYVI("|C:" + i + "&T:" + this.data.curValue + "||C:0xe5ddcf&T:/" + e[this.data.levelIndex].value + "|"); + } + 0 == this.data.reveiveState + ? ((this.taskName.textColor = 8420211), (this.buyButton.enabled = !1), (this.buyButton.label = t.CrmPU.language_Wlelfare_Text1)) + : 1 == this.data.reveiveState + ? ((this.buyButton.label = t.CrmPU.language_Wlelfare_Text2), (this.redPoint.visible = !0)) + : 2 == this.data.reveiveState && ((this.receiveImg.visible = !0), (this.buyButton.visible = this.curValue.visible = !1)); + } + }), + i + ); + })(t.BaseItemRender); + (t.OpenServerSportsItemView = e), __reflect(e.prototype, "app.OpenServerSportsItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.actId = 0), (t.cdTime = 0), (t.skinName = "OpenServerSportsViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ( + (e[0] && (this.actId = e[0]), + (this.curValue.text = ""), + t.MouseScroller.bind(this.sportsScroller), + (this.sportsArr = new eui.ArrayCollection()), + (this.sportsList.itemRenderer = t.OpenServerSportsItemView), + (this.sportsList.dataProvider = this.sportsArr), + (this.sportsScroller.viewport.scrollV = 0), + 0 != this.actId) + ) { + var n = t.TQkyOx.ins().getActivitConf(this.actId); + n && + (this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), + (this.sportsName.text = t.CrmPU.language_Common_107), + this.updateView(this.actId)); + } + }), + (i.prototype.updateInfo = function () { + 0 != this.actId && this.updateView(this.actId); + }), + (i.prototype.updateViewInfo = function (t) { + (this.sportsScroller.viewport.scrollV = 0), this.updateView(t); + }), + (i.prototype.updateView = function (e) { + var i = t.TQkyOx.ins().getActivitConf(e); + (this.actDesc.text = ""), + (this.descLab.visible = !0), + i.description ? (this.actDesc.textFlow = t.hETx.qYVI(i.description)) : (this.descLab.visible = !1), + i.bg ? (this.bgImg.source = i.bg + "_png") : (this.bgImg.source = "kf_jj_bg_png"); + var n = t.TQkyOx.ins().getActivityInfo(e), + s = t.TQkyOx.ins().getActivityConfigById(e); + if (n && n.info) { + n.endTime - 1262275200 == 0 + ? ((this.actTime.visible = !1), (this.timeLab.visible = !1), (this.descLab.y = 18), (this.actDesc.y = 18)) + : ((this.actTime.visible = !0), + (this.timeLab.visible = !0), + (this.descLab.y = 48), + (this.actDesc.y = 48), + (this.cdTime = n.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this))); + var a = [], + r = -1, + o = 0, + b, + item; + for (var l in n.info) { + b = s[n.info[l].index]; + if (1 == Main.vZzwB.gameMode) { + item = t.VlaoF.StdItems[b.subtype]; + if (item && item.suggVocation && 1 != item.suggVocation) { + continue; + } + } + -1 == r && (r = n.info[l].value); + s && + b && + (b.displaylimit + ? n.info[l].value >= b.displaylimit && + ((o += 1), + a.push({ + activityID: e, + reveiveState: n.info[l].state, + levelIndex: n.info[l].index, + bgIdx: o, + curValue: n.info[l].value, + })) + : ((o += 1), + a.push({ + activityID: e, + reveiveState: n.info[l].state, + levelIndex: n.info[l].index, + bgIdx: o, + curValue: n.info[l].value, + }))); + } + for (var h = a.sort(this.sortFun), p = 0; p < h.length; p++) h[p].bgIdx = p; + this.sportsArr.replaceAll(h), (this.curValue.text = ""); + var u = t.TQkyOx.ins().getActivityConfigById(e); + if (-1 != r) + for (var p in u) + if (u[p].scheduletips) { + this.curValue.textFlow = t.hETx.qYVI(u[p].scheduletips + " |C:0xE7C590&T:" + r + "|"); + break; + } + } + }), + (i.prototype.sortFun = function (t, e) { + return 1 == t.reveiveState && 2 == e.reveiveState + ? -1 + : 2 == t.reveiveState && 1 == e.reveiveState + ? 1 + : 0 == t.reveiveState && 2 == e.reveiveState + ? -1 + : 2 == t.reveiveState && 0 == e.reveiveState + ? 1 + : 1 == t.reveiveState && 0 == e.reveiveState + ? -1 + : 0 == t.reveiveState && 1 == e.reveiveState + ? 1 + : t.levelIndex < e.levelIndex + ? -1 + : t.levelIndex > e.levelIndex + ? 1 + : 0; + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.MouseScroller.unbind(this.sportsScroller), t.KHNO.ins().remove(this.updateCDTime, this); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerSportsView = e), __reflect(e.prototype, "app.OpenServerSportsView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.redDot.visible = !1; + var t = this.data; + (this.pageIndex = t.id), (this.labelDisplay.text = t.page), this.setRedDot(); + }), + (e.prototype.setRedDot = function () { + var t = "AchievementMgr.post_AchievemnetRedPot", + e = "AchievementMgr.findPageIndex"; + (this.redDot.param = this.pageIndex), (this.redDot.updateShowFunctions = e), (this.redDot.showMessages = t); + }), + e + ); + })(t.BaseItemRender); + (t.AchieveOptTarBtnItemView = e), __reflect(e.prototype, "app.AchieveOptTarBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return __extends(e, t), e; + })(t.OpenServerTreasureWin); + (t.OpenServerTreasureWin2 = e), __reflect(e.prototype, "app.OpenServerTreasureWin2"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return ( + __extends(e, t), + (e.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.viewType = 2), t.prototype.open.apply(this, e); + }), + e + ); + })(t.OpenServerTreasureWin); + (t.OpenServerTreasureWin3 = e), __reflect(e.prototype, "app.OpenServerTreasureWin3"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.cdTime = 0), (t._type = 0), (t.actId = 0), (t.isHasTimes = !1), (t.isFree = !1), (t.chouNumber = 0), (t.skinName = "OpenServerTreasureViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function (e, i) { + (this._type = e), + (this.actId = i), + (this.highScroller.verticalScrollBar.autoVisibility = !1), + (this.highScroller.verticalScrollBar.visible = !1), + (this.otherScroller.verticalScrollBar.autoVisibility = !1), + (this.otherScroller.verticalScrollBar.visible = !1), + (this.red.visible = !1), + (this.highList.itemRenderer = t.ItemBase), + (this.otherList.itemRenderer = t.ItemBase), + t.MouseScroller.bind(this.highScroller), + t.MouseScroller.bind(this.otherScroller), + (this.labConsume_2.text = t.CrmPU.language_Common_245), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateInfo), + this.HFTK(t.TQkyOx.ins().post_extractResult, this.playMcSound), + this.HFTK(t.edHC.ins().post_26_28, this.updateRewards), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateMoney), + t.ckpDj.ins().addEvent(t.CompEvent.ITEM_NUM_UPDATE, this.updateMoney2, this), + this.vKruVZ(this.receiveBtn, this.onClick), + this.vKruVZ(this.receiveBtn2, this.onClick), + this.VoZqXH(this.moneyImg, this.mouseMove), + this.EeFPm(this.moneyImg, this.mouseMove), + this.VoZqXH(this.moneyImg2, this.mouseMove), + this.EeFPm(this.moneyImg2, this.mouseMove), + this.VoZqXH(this.moneyImg3, this.mouseMove), + this.EeFPm(this.moneyImg3, this.mouseMove), + this.VoZqXH(this.moneyImg4, this.mouseMove), + this.EeFPm(this.moneyImg4, this.mouseMove), + this.updateRewards(), + this.updateInfo(); + }), + (i.prototype.updateInfo = function () { + if (0 != this.actId) { + (this.againCount.text = ""), (this.againImg.visible = !1); + var e = t.TQkyOx.ins().getActivityInfo(this.actId); + if ( + e && + e.info && + ((this.cdTime = e.endTime - Math.floor(t.GlobalData.serverTime / 1e3)), + this.cdTime && + ((this.cdTime += Math.floor(egret.getTimer() / 1e3)), this.updateCDTime(), t.KHNO.ins().remove(this.updateCDTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)), + this.curDayMoney) + ) { + (this.chouNumber = e.info.extractCount), + (this.extractCount.text = e.info.extractCount + "/" + this.curDayMoney.Maxcount), + (this.extractCount.textColor = e.info.extractCount >= this.curDayMoney.Maxcount ? 15926028 : 2682369); + for (var i in this.curDayMoney.SpecialCount) + if (e.info.extractCount < this.curDayMoney.SpecialCount[i]) { + (this.againCount.text = this.curDayMoney.SpecialCount[i] - e.info.extractCount + ""), (this.againImg.visible = !0); + break; + } + (this.isHasTimes = e.info.extractCount < this.curDayMoney.Maxcount), + (this.red.visible = this.isHasTimes && t.ZAJw.MPDpiB(this.firstCost.type, this.firstCost.id) > 0), + this.curDayMoney.freeNum && (this.isFree = this.curDayMoney.freeNum.indexOf(e.info.extractCount + 1) >= 0), + this.isFree ? ((this.consumeGrp1.visible = !1), (this.consumeGrp2.visible = !0)) : ((this.consumeGrp1.visible = !0), (this.consumeGrp2.visible = !1)); + } + } + }), + (i.prototype.updateRewards = function () { + if (0 != this.actId) { + var e = 0; + if (1 == this._type) { + var i = t.TQkyOx.ins().getActivityInfo(this.actId), + n = new Date(1e3 * i.openTime), + s = new Date(n.getFullYear(), n.getMonth(), n.getDate()).getTime(); + e = Math.floor((t.GlobalData.serverTime - s) / t.DateUtils.MS_PER_DAY) + 1; + } else e = t.GlobalData.sectionOpenDay; + var a = t.TQkyOx.ins().getActivityConfigById(this.actId); + if (a && a[e]) { + var r = a[e]; + (this.curDayMoney = r), + (this.highList.dataProvider = new eui.ArrayCollection(r.SpecialRewards)), + (this.otherList.dataProvider = new eui.ArrayCollection(r.NormalRewards)), + (this.actDesc.textFlow = t.hETx.qYVI(r.Description)); + var o = r.DrawPrice[0]; + if ( + (o && + ((this.drawPrice = o), + (this.moneyImg.source = t.ZAJw.getMoneyIcon(o.type)), + (this.labConsume.text = t.CrmPU.language_Common_246), + (this.extractMoney.text = o.count), + (this.labSurplus.text = t.CrmPU.language_Common_104), + (this.labSurplusNum.text = t.ZAJw.MPDpiB(o.type) + ""), + (this.moneyImg3.source = t.ZAJw.getMoneyIcon(o.type))), + (this.moneyImg2.visible = !1), + (this.labConsume2.visible = !1), + (this.extractMoney2.visible = !1), + (this.labSurplus2.visible = !1), + (this.labSurplusNum2.visible = !1), + (this.moneyImg4.visible = !1), + r.FirstCost) + ) { + var l = r.FirstCost[0]; + if (l) { + (this.firstCost = l), (this.red.visible = this.isHasTimes && t.ZAJw.MPDpiB(l.type, l.id) > 0); + var h = t.ZAJw.sztgR(l.type, l.id)[1] + ""; + (this.labConsume2.text = "(" + t.CrmPU.language_Common_242), + (this.extractMoney2.text = "*" + l.count + ")"), + (this.moneyImg2.source = h), + (this.labSurplus2.text = t.CrmPU.language_Common_104), + (this.labSurplusNum2.text = t.ZAJw.MPDpiB(l.type, l.id) + ""), + (this.moneyImg4.source = h), + (this.moneyImg2.visible = !0), + (this.labConsume2.visible = !0), + (this.extractMoney2.visible = !0), + (this.labSurplus2.visible = !0), + (this.labSurplusNum2.visible = !0), + (this.moneyImg4.visible = !0); + } + } + } + } + }), + (i.prototype.updateMoney = function () { + this.drawPrice && (this.labSurplusNum.text = t.ZAJw.MPDpiB(this.drawPrice.type) + ""); + }), + (i.prototype.updateMoney2 = function (e) { + this.firstCost && + e == this.firstCost.id && + ((this.labSurplusNum2.text = t.ZAJw.MPDpiB(this.firstCost.type, this.firstCost.id) + ""), (this.red.visible = this.isHasTimes && t.ZAJw.MPDpiB(this.firstCost.type, this.firstCost.id) > 0)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.receiveBtn: + this.onLuckDraw(); + break; + case this.receiveBtn2: + this.onLuckDraws(10); + } + }), + (i.prototype.onLuckDraw = function () { + var e = this.canLuckDraw(); + 1 == e ? t.TQkyOx.ins().send_25_1(this.actId, t.Operate.cOpenServerTreasure) : t.KHNO.ins().remove(this.onLuckDraw, this); + }), + (i.prototype.onLuckDraws = function (e) { + t.KHNO.ins().RTXtZF(this.onLuckDraw, this) || t.KHNO.ins().tBiJo(150, e, this.onLuckDraw, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget.localToGlobal(); + switch (e.currentTarget) { + case this.moneyImg: + case this.moneyImg3: + var n = t.VlaoF.NumericalIcon[this.drawPrice.type]; + n.description && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, n.description, { + x: i.x, + y: i.y, + }); + break; + case this.moneyImg2: + case this.moneyImg4: + var s = t.VlaoF.StdItems[this.firstCost.id]; + s && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, s, { + x: i.x, + y: i.y, + }); + } + i = null; + } + }), + (i.prototype.mouseMove2 = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget.localToGlobal(); + switch (e.currentTarget) { + case this.moneyImg: + case this.moneyImg3: + var n = t.VlaoF.NumericalIcon[this.drawPrice.type]; + n.description && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, n.description, { + x: i.x, + y: i.y, + }); + break; + case this.moneyImg2: + case this.moneyImg4: + var s = t.VlaoF.StdItems[this.firstCost.id]; + s && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, s, { + x: i.x, + y: i.y, + }); + } + i = null; + } + }), + (i.prototype.playMcSound = function (e) { + var i = this; + e.length > 0 && + ((this.isExtractImg.visible = !1), + (this.extractItem.data = e[0]), + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), (this.mc.x = 0), (this.mc.y = 0), (this.mc.blendMode = egret.BlendMode.ADD), this.extractMc.addChild(this.mc)), + (this.extractMc.visible = !0), + this.mc.playFile( + ZkSzi.RES_DIR_EFF + "kfcj", + 1, + function () { + i.extractMc.visible = !1; + }, + !1 + ), + t.AHhkf.ins().Uvxk(t.OSzbc.GOLD)); + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.actTime.text = t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTime.text = "")); + }), + (i.prototype.canLuckDraw = function () { + if (!this.curDayMoney) return -1; + if (this.chouNumber >= this.curDayMoney.Maxcount) return t.uMEZy.ins().IrCm(t.CrmPU.language_Tips90), -2; + var e = t.VlaoF.BagRemainConfig[12]; + if (e && !t.ThgMu.ins().getBagCapacity(e.bagremain)) return t.uMEZy.ins().IrCm(e.bagtips), -3; + if (this.drawPrice && !this.isFree) { + var i = t.ZAJw.MPDpiB(this.drawPrice.type); + if (i < this.curDayMoney.DrawPrice[0].count && (!this.firstCost || t.ThgMu.ins().getItemCountById(this.firstCost.id) < this.firstCost.count)) + return t.mAYZL.ins().open(t.TipsInsuffResourcesView, ZnGy.qatYuanbao), -4; + } + return 1; + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.highScroller), + t.MouseScroller.unbind(this.otherScroller), + this.mc && (this.mc.destroy(), (this.mc = null)), + (this.drawPrice = null), + (this.firstCost = null), + (this.curDayMoney = null), + this.fEHj(this.receiveBtn, this.onClick), + this.fEHj(this.receiveBtn2, this.onClick), + this.lbpdAJ(this.moneyImg, this.mouseMove), + this.lvpAF(this.moneyImg, this.mouseMove), + this.lbpdAJ(this.moneyImg2, this.mouseMove), + this.lvpAF(this.moneyImg2, this.mouseMove), + this.lbpdAJ(this.moneyImg3, this.mouseMove), + this.lvpAF(this.moneyImg3, this.mouseMove), + this.lbpdAJ(this.moneyImg4, this.mouseMove), + this.lvpAF(this.moneyImg4, this.mouseMove), + t.KHNO.ins().remove(this.updateCDTime, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ITEM_NUM_UPDATE, this.updateMoney2, this); + }), + i + ); + })(t.gIRYTi); + (t.OpenServerTreasureView = e), __reflect(e.prototype, "app.OpenServerTreasureView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.jobSkillListData = {}), (t.currencySkillListData = {}), t; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + var e = t.VlaoF.CircleLevel; + this.setCircleData(e); + var i = t.VlaoF.SkillConf; + this.setSkillData(i), (this.blessConfig = t.VlaoF.BlessConfig), this.setBless(this.blessConfig); + }), + (i.prototype.setCircleData = function (e) { + if (!(this.circleListData && this.circleListData.length > 0)) { + var i, + n, + s, + a, + r, + o, + l = [], + h = "", + p = ""; + for (var u in e) { + if (((i = new t.RoleCircleData()), (n = e[u]), (s = e[Number(u) + 1]), n.attrs)) + for (a = n.attrs, o = 0; o < a.length; o++) (h = t.AttributeData.getItemAttStrByType(a[o], a, 1)), "" != h && i.attrsCur.push(h); + if (s) for (r = s.attrs, o = 0; o < r.length; o++) (p = t.AttributeData.getItemAttStrByType(r[o], r, 1, !0)), "" != p && i.attrsNext.push(p); + (i.level = n.level), (i.levellimit = n.levellimit), l.push(i); + } + this.circleListData = l; + } + }), + (i.prototype.setSkillData = function (e) { + if (!((this.jobSkillListData && Object.keys(this.jobSkillListData).length > 0) || (this.currencySkillListData && Object.keys(this.currencySkillListData).length > 0))) { + var i, + n = {}, + s = {}, + a = t.caJqU.ins().otherPlayerEquips.job; + for (var r in e) (i = e[r]), (a != i.vocation && 0 != i.vocation) || i.isDelete || (1 == i.skillClass && (n[r] = i), 3 == i.skillClass && (s[r] = i)); + (this.jobSkillListData = n), (this.currencySkillListData = s); + } + }), + (i.prototype.setBless = function (e) { + if (!(this.blessDatas && this.blessDatas.length > 0)) { + var i, + n, + s, + a, + r, + o, + l = [], + h = "", + p = ""; + for (var u in e) { + (i = new t.BlessLucklevel()), (n = e[u]), (s = e[Number(u) + 1]), (i.level = n.level); + var c = void 0, + g = void 0; + if (n) + for (a = n.attrs, i.blessCur = n.needBlessValue, c = t.CrmPU.language_bless[1], i.attrsCur.push(c), o = 0; o < a.length; o++) + (h = t.AttributeData.getItemAttStrByType(a[o], a, 1)), "" != h && i.attrsCur.push(h); + if (s) + for (r = s.attrs, i.blessNext = s.needBlessValue, g = t.CrmPU.language_bless[2], i.attrsNext.push(g), o = 0; o < r.length; o++) + (p = t.AttributeData.getItemAttStrByType(r[o], r, 1)), "" != p && i.attrsNext.push(p); + l.push(i); + } + this.blessDatas = l; + } + }), + (i.prototype.getStarLev = function () { + for (var e, i = t.caJqU.ins().otherPlayerEquips, n = i.propSet, s = n.getBless(), a = this.blessDatas.length, r = 0; a > r; r++) + if (((e = this.blessDatas[r]), s >= e.blessCur && s < e.blessNext)) return e.level; + var o = this.blessDatas[0].level; + for (var r in this.blessDatas) { + var l = this.blessDatas[r]; + l.level > o && (o = l.level); + } + return o; + }), + (i.prototype.getMeridiansCurLevel = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.propSet; + return i && i.getMeridians(); + }), + (i.prototype.getAllFashionData = function () { + var e, + i = t.caJqU.ins().otherPlayerEquips, + n = i.fashionDic, + s = [], + a = t.VlaoF.FashionupgradeConfig; + for (var r in a) { + var o = a[r][0]; + (e = new t.FashionupgradeConfig()), (e.id = o.id), (e.lv = o.lv), (e.consume = o.consume), (e.attribute = o.attribute), s.push([e, 0]); + } + for (var r in n) + for (var l = n[r], h = 0, p = s.length; p > h; h++) + if (s[h][0].id == l.id) { + (s[h][0].lv = l.lv), (s[h][1] = l.state); + break; + } + return s; + }), + i + ); + })(egret.EventDispatcher); + (t.OtherPlayerData = e), __reflect(e.prototype, "app.OtherPlayerData"), (t.otherPlayerData = new e()); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(e, i) { + if ( + (void 0 === e && (e = null), + void 0 === i && (i = !0), + (this.skills = {}), + (this._strengthenDic = {}), + (this._fashionDic = {}), + (this._ghostInfo = {}), + (this._weaponSoulInfo = {}), + (this._peiInfo = {}), + (this.equips = []), + (this.suitEquips = []), + (this._titleDataArr = []), + (this._titleDataArr2 = []), + e) + ) { + (this.id = e.readUnsignedInt()), (this.name = e.readString()), (this.job = e.readByte()), (this.circle = e.readByte()), (this.level = e.readUnsignedInt()), (this.sex = e.readByte()); + var n, + s, + a, + r = e.readByte(); + for (n = 0; r > n; n++) + (a = e.readByte()), (s = new t.userItem(e)), (s.nPos = a), s.nPos >= t.StdItemType.itEquipDiamond && s.nPos < t.StdItemType.itShield ? this.suitEquips.push(s) : this.equips.push(s); + for (r = e.readByte(), n = 0; r > n; n++) { + var o = new t.OtherPlayerSkill(e); + this.skills[o.skillId] = o; + } + var l = (e.readUnsignedShort(), t.nRDo.numProperties), + h = new t.OtherPlayerPropertySet(); + for (n = 0; l > n; n++) h.readProperty(n, e); + (this.guildName = e.readString()), (this.propSet = h); + var p = e.readByte(); + (this._strengthenDic[t.StrengthenType.Equip] = []), (this._strengthenDic[t.StrengthenType.Four] = []), (this._strengthenDic[t.StrengthenType.Special] = []); + var u; + for (n = 0; p > n; n++) { + for (var c = e.readByte(), g = e.readByte(), d = [], m = 0; g > m; m++) (u = new t.StrengthenData()), (u.pos = e.readByte()), (u.lv = e.readInt()), d.push(u); + if (t.StrengthenType.Equip == c) { + var f = d.length; + if (8 > f) for (var v = void 0, _ = f; 8 > _; _++) (v = new t.StrengthenData()), (v.pos = _ + 1), (v.lv = 0), d.push(v); + } + d.sort(this.mysort), (this._strengthenDic[c] = d); + } + var y = e.readInt(); + for (this._titleDataArr = [], n = 0; y > n; n++) { + var T = new t.TitleData(); + (T.titleId = e.readUnsignedInt()), (T.timer = e.readUnsignedInt()); + var M = t.VlaoF.TitleConfig[T.titleId]; + if (M) { + if (M.displayType && t.ubnV.ihUJ) continue; + this._titleDataArr.push(T); + } + } + var C = e.readInt(); + for (this._titleDataArr2 = [], n = 0; C > n; n++) { + var T = new t.TitleData2(); + (T.titleId = e.readUnsignedInt()), (T.timer = e.readUnsignedInt()); + var M = t.VlaoF.CustomisedTitleConfig[T.titleId]; + if (M) { + if (M.displayType && t.ubnV.ihUJ) continue; + this._titleDataArr2.push(T); + } + } + for (var b, I = e.readByte(), S = 0; I > S; S++) (b = new t.FashionData()), (b.id = e.readInt()), (b.state = e.readByte()), (b.lv = e.readInt()), (this._fashionDic[b.id] = b); + t.ObjectPool.wipe(this._ghostInfo), (r = e.readByte()); + for (var E, w, A, x = 0; r > x; x++) + (E = e.readByte()), + (w = e.readInt()), + (A = e.readInt()), + (this._ghostInfo[E] = { + nLv: w, + nBless: A, + }); + t.ObjectPool.wipe(this._weaponSoulInfo), (r = e.readByte()); + for (var L, D, P, k, U, B = 0; r > B; B++) + (L = e.readByte()), + (D = e.readInt()), + (P = e.readInt()), + (k = e.readInt()), + (U = e.readString()), + (this._weaponSoulInfo[L] = { + soulID: L, + soulOrder: D, + soulStar: P, + soulLv: k, + soulTopLine: U, + }); + if (i) { + t.ObjectPool.wipe(this._peiInfo), (r = e.readInt()); + for (var R = void 0, O = void 0, G = 0; r > G; G++) + (E = e.readUnsignedShort()), + (O = e.readUnsignedShort()), + (R = t.DateUtils.formatMiniDateTime(e.readInt())), + (this._peiInfo[O] = { + id: E, + type: O, + time: R, + }); + } + } + } + return ( + Object.defineProperty(e.prototype, "ghostInfo", { + get: function () { + return this._ghostInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "weaponSoulInfo", { + get: function () { + return this._weaponSoulInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "peiInfo", { + get: function () { + return this._peiInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "titleDataArr", { + get: function () { + return this._titleDataArr; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "titleDataArr2", { + get: function () { + return this._titleDataArr2; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "fashionDic", { + get: function () { + return this._fashionDic; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.mysort = function (t, e) { + return t.pos > e.pos ? 1 : -1; + }), + Object.defineProperty(e.prototype, "strengthenDic", { + get: function () { + return this._strengthenDic; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.getFourImagesData = function (t) { + for (var e = this._strengthenDic[2], i = 0; e && i < e.length; i++) { + var n = e[i]; + if (n.pos == t) return e[i]; + } + return null; + }), + (e.prototype.getCurStrengthenData = function (t) { + var e = this.strengthenDic[t]; + if (e && e.length > 0) { + for (var i = e[e.length - 1].lv, n = e[e.length - 1].pos, s = e.length - 1; s >= 0; s--) { + var a = e[s].lv, + r = e[s].pos >= 8 ? 1 : e[s].pos; + if (i > a || a > i) return (n = r), n++, n > 8 ? ((n = 1), i++) : (i = a), [i, n]; + } + return n++, n > 8 && ((n = 1), i++), [i, n]; + } + return null; + }), + (e.prototype.getAllRingData = function () { + var e = this.strengthenDic[t.StrengthenType.Special], + i = this.strengthenDic[t.StrengthenType.RingJob], + n = [], + s = t.VlaoF.SpecialRingConfig, + a = t.VlaoF.RingBuyJobConfig, + r = this.propSet.getAP_JOB(); + for (var o in s) { + var l = s[o][0]; + n.push(l); + } + var h = a[2][1][r], + p = new t.SpecialRingConfig(); + if (((p.attr = h.attr), (p.cost = h.cost), (p.lv = h.lv), (p.name = h.name), (p.pos = h.pos), (p.job = h.job), n.push(p), i && i.length > 0)) { + var u = a[3][1][r], + p = new t.SpecialRingConfig(); + (p.attr = u.attr), (p.cost = u.cost), (p.lv = u.lv), (p.name = u.name), (p.pos = u.pos), (p.job = u.job), n.push(p); + } + if (e && e.length > 0) + for (var o in e) + for (var c = e[o], g = 0, d = n.length; d > g; g++) + if (n[g].pos == c.pos) { + n[g].lv = c.lv; + break; + } + return n; + }), + (e.prototype.getSuitDataById = function (e) { + var i, + n, + s = t.VlaoF.SuitItemCfg[e], + a = new t.SuitItemData(), + r = "", + o = s.attr, + l = s.percent, + h = []; + for (i = 0; i < o.length; i++) (n = {}), (n.type = s.attr[i].type), (n.value = s.attr[i].value), h.push(n); + var p, + u = this.getBasicEquipAttr(); + for (i = 0; i < h.length; i++) { + p = 0; + for (var c = s.attr[i].type, g = 0; g < u.length; g++) + for (var d = u[g], m = 0; m < d.length; m++) + if (d[m].type == c) { + p += d[m].value; + break; + } + (h[i].value = l > 0 ? Math.floor(p * (l / 100)) : h[i].value), (r = t.AttributeData.getItemAttStrByType(h[i], h, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != r && a.attrs.push(r); + } + return a.attrs; + }), + (e.prototype.getBasicEquipAttr = function () { + for (var e = [], i = this.equips, n = 0; n < i.length; n++) { + var s = i[n], + a = t.VlaoF.StdItems[s.wItemId]; + e.push(a.staitcAttrs); + } + return e; + }), + (e.prototype.getAllEquip = function (t) { + for (var e = this.suitEquips.concat(this.equips), i = 0; i < e.length; i++) if (e[i].wItemId == t) return !0; + return !1; + }), + (e.prototype.getSuitAttrColor = function (e, i, n) { + for (var s = 0, a = 8421504, r = this.suitEquips.concat(this.equips), o = 0; o < r.length; o++) + if (r[o].wItemId) { + var l = t.VlaoF.StdItems[r[o].wItemId]; + if (l && l.suitId > 0) { + var h = Math.floor(l.suitId / 100); + if (h == e) { + var p = l.suitId % 100; + p >= i && (s += 1); + } + } + } + return s == n && (a = 2682369), a; + }), + e + ); + })(); + (t.OtherPlayerInfos = e), __reflect(e.prototype, "app.OtherPlayerInfos"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.dicBtn = {}), (i.main = 0), (i.sub = 0), (i.tempBtnArr = []), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "RoleViewSkin"), (i.name = "OtherPlayerView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.panelDataObj = []), + (this.panelDataObj[t.RoleTabEnum.EQUIP] = new t.RoleItemView({ + panelClass: t.OtherPlayerEquipView, + })), + (this.panelDataObj[t.RoleTabEnum.DIVINE] = new t.RoleItemView({ + panelClass: t.OtherPlayerGodEquipView, + })), + (this.panelDataObj[t.RoleTabEnum.FASHION] = new t.RoleItemView({ + panelClass: t.OtherPlayerNewFashionView, + })), + (this.panelDataObj[t.RoleTabEnum.JOB] = new t.RoleItemView({ + panelClass: t.OtherPlayerBasicSkillView, + })), + (this.panelDataObj[t.RoleTabEnum.CURRENCY] = new t.RoleItemView({ + panelClass: t.OtherPlayerBasicSkillView, + openData: { + type: 1, + }, + })), + (this.panelDataObj[t.RoleTabEnum.MERIDIANS] = new t.RoleItemView({ + panelClass: t.OtherPlayerMeridiansView, + })), + (this.panelDataObj[t.RoleTabEnum.CIRCLE] = new t.RoleItemView({ + panelClass: t.OtherPlayerCircleView, + })), + (this.panelDataObj[t.RoleTabEnum.BLESS] = new t.RoleItemView({ + panelClass: t.OtherPlayerBlessView, + })), + (this.panelDataObj[t.RoleTabEnum.FOUR] = new t.RoleItemView({ + panelClass: t.OtherPlayerFourImagesView, + })), + (this.panelDataObj[t.RoleTabEnum.RING] = new t.RoleItemView({ + panelClass: t.OtherNewPlayerRingView, + })), + (this.panelDataObj[t.RoleTabEnum.DESIGNAT] = new t.RoleItemView({ + panelClass: t.OtherPlayerTitleView, + })), + (this.panelDataObj[t.RoleTabEnum.SHENMO] = new t.RoleItemView({ + panelClass: t.RoleGhostView, + openData: { + type: 0, + }, + })), + (this.panelDataObj[t.RoleTabEnum.SOLDIERSOUL] = new t.RoleItemView({ + panelClass: t.OtherRoleWeaponSoulView, + })), + (this.panelDataObj[t.RoleTabEnum.PET] = new t.RoleItemView({ + panelClass: t.OtherRolePetView, + })), + (this.panelDataObj[t.RoleTabEnum.WORDFORMULA] = new t.RoleItemView({ + panelClass: t.WordFormulaView, + openData: { + roleType: t.RoleViewEnum.otherPlayerPanel, + }, + })), + (this.tabBar = new t.Tab_Bar(this.tab_group)), + this.tabBar.addEventListener(t.CompEvent.TAB_CHANGE, this.onChangeTab, this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (this.main = e[0]), e[1] && (this.sub = e[1]); + this.showSubBtnByIdx(0), + this.showSubBtnByIdx(1), + this.showSubBtnByIdx(5), + this.dragDropUI.setCurrentState(), + this.dragDropUI.setParent(this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN, this.onOpenAttrPanel, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, this.onCloseAttrPanel, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_ROLE_UPDATE_RULE, this.isShowBtn, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_SKILL_DESC, this.onShowSkillDesc, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_CLOSE_SKILL_DESC, this.onCloseSkillDesc, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_OPEN, this.onOpenRightMenu, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_CLOSE, this.onCloseRightMenu, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_TITLE2_OPEN, this.onOpenTitle2Panel, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_TITLE2_CLOSE, this.onCloseTitle2Panel, this), + (this.tabBar.currIndex = this.main), + this.dicBtn[this.main] && this.onClickSelectHandler(this.dicBtn[this.main][this.sub]), + this.refreshData(); + }), + (i.prototype.onOpenAttrPanel = function () { + this.attrPanel || ((this.attrPanel = new t.OtherPlayerAttrView()), this.attrGroup.addChild(this.attrPanel)), (this.attrGroup.visible = !0); + }), + (i.prototype.onCloseAttrPanel = function () { + this.attrGroup.visible = !1; + }), + (i.prototype.onShowSkillDesc = function (e) { + this.roleSkillDescView || ((this.roleSkillDescView = new t.RoleSkillDescView()), this.skillDescGroup.addChild(this.roleSkillDescView)), + this.roleSkillDescView.setData(e), + (this.skillDescGroup.visible = !0); + }), + (i.prototype.onCloseSkillDesc = function () { + this.skillDescGroup.visible = !1; + }), + (i.prototype.onOpenRightMenu = function () { + this.rightMenuView || ((this.rightMenuView = new t.RankRightMenuView()), this.stateGroup.addChild(this.rightMenuView)), this.rightMenuView.setData(), (this.stateGroup.visible = !0); + }), + (i.prototype.onCloseRightMenu = function () { + this.stateGroup.visible = !1; + }), + (i.prototype.onOpenTitle2Panel = function () { + this.titleView2 || ((this.titleView2 = new t.OtherPlayerTitleView2()), this.title2Group.addChild(this.titleView2)), (this.title2Group.visible = !0); + }), + (i.prototype.onCloseTitle2Panel = function () { + this.title2Group.visible = !1; + }), + (i.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE), e && (this.showViewById(e.btnId), t.Nzfh.ins().post_gaimItemView(8888)); + }), + (i.prototype.showViewById = function (e) { + var i = this.panelDataObj[e]; + if (i) { + this.currPanel && this.currPanel != i && this.currPanel.hideView(); + var n = null; + e == t.RoleTabEnum.SHENMO && (n = t.caJqU.ins().otherPlayerEquips.ghostInfo), (this.currPanel = i), this.currPanel.showView(n), this.type_group.addChild(this.currPanel.panel); + var s = this.dicBtn[this.tabBar.currIndex]; + if (s && s.length) for (var a = 0; a < s.length; a++) s[a].btnId == e ? s[a].setCurState("up") : s[a].setCurState("down"); + this.isShowBtn(e), this.dragDropUI.setTitle(this.currPanel.panel.titleStr); + } + }), + (i.prototype.isShowBtn = function (e) { + 0 == this.currPanel.ruleId + ? (this.helpBtn.visible = !1) + : ((this.helpBtn.ruleId = this.currPanel.ruleId), + (this.helpBtn.visible = !0), + e == t.RoleTabEnum.JOB || e == t.RoleTabEnum.CURRENCY ? ((this.helpBtn.x = 360), (this.helpBtn.y = 570)) : ((this.helpBtn.x = 23), (this.helpBtn.y = 96))); + }), + (i.prototype.onChangeTab = function (e) { + t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL), this.setSubTabView(this.tabBar.currIndex), this.getSubShowByIdx(this.tabBar.currIndex), this.refreshData(this.tabBar.currIndex); + }), + (i.prototype.showSubBtnByIdx = function (e) { + var i, + n, + s, + a = [], + r = t.edHC.ins().getSubIdsByMainId(e); + for (n = 0; n < r.length; n++) + (i = new t.ButtonStateElement()), + (s = r[n].id), + (i.btnId = s), + i.setImagePath(t.RoleSubBtn.ins().mainDic[i.btnId]), + (i.name = "btn_" + n), + (i.isOpen = !0), + a.push(i), + i.setBackFunc(this.onClickSelectHandler, this); + this.dicBtn[e] = a; + }), + (i.prototype.getSubShowByIdx = function (e) { + for (; this.btnGroup.numElements > 0; ) this.btnGroup.removeChildAt(0); + var i, + n, + s = t.edHC.ins().getSubIdsByMainId(e); + for (n = 0; n < s.length; n++) { + var a = this.dicBtn[e]; + a && + ((i = a[n]), + i && (this.dicBtn[e].length <= n ? (i.visible = !1) : ((i.visible = !0), i.setImagePath(t.RoleSubBtn.ins().mainDic[i.btnId]), this.btnGroup.contains(i) || this.btnGroup.addChild(i)))); + } + }), + (i.prototype.setSubTabView = function (e) { + var i = t.edHC.ins().getSubIdsByMainId(e); + this.showViewById(i[0].id), e == t.RoleSubBtnType.ROLE_CIRCLE ? ((this.btnGroup.visible = !1), (this.lineImg.visible = !1)) : ((this.btnGroup.visible = !0), (this.lineImg.visible = !0)); + }), + (i.prototype.refreshData = function (e) { + void 0 === e && (e = null); + var i = t.NWRFmB.ins().nkJT(); + if (i && i.propSet) { + var n = i.propSet.mBjV(), + s = i.propSet.MzYki(), + a = t.GlobalData.sectionOpenDay; + this.setMainBtnState(n, s, a), e ? this.setSubBtnByMainId(e) : this.setSubBtnByMainId(this.tabBar.currIndex); + } + }), + (i.prototype.setSubBtnByMainId = function (e) { + var i = t.NWRFmB.ins().nkJT(); + if (i && i.propSet) { + var n = i.propSet.mBjV(), + s = i.propSet.MzYki(), + a = t.GlobalData.sectionOpenDay, + r = t.edHC.ins().getSubIdsByMainId(e); + e == t.RoleSubBtnType.ROLE_EQUIP + ? this.setRoleSubBtnState(r, n, s, a) + : e == t.RoleSubBtnType.ROLE_SKILL + ? this.setSkillSubBtnState(r, n, s, a) + : e == t.RoleSubBtnType.ROLE_SACRED && this.setSoldierSoulSubBtnState(r, n, s, a); + } + }), + (i.prototype.setRoleSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r] && this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].isOpen = !1); + } + }), + (i.prototype.setSkillSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].isOpen = !1); + } + }), + (i.prototype.setBlessSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].isOpen = !1); + } + }), + (i.prototype.setStrengthenSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].isOpen = !1); + } + }), + (i.prototype.setSoldierSoulSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].isOpen = !1); + } + }), + (i.prototype.setMainBtnState = function (e, i, n) { + var s = t.edHC.ins().dicMenu[1]; + this.isSHowIds = []; + var a, r; + for (a = 0; a < s.length; a++) { + if (e >= s[a].level && i >= s[a].circle && n >= s[a].day) + for (r = 0; r < this.tabBar.tabElements.length; r++) + if (this.tabBar.tabElements[r].id == s[a].id) { + this.isSHowIds.push(s[a].id); + break; + } + var o = this.tabBar.tabElements.filter(function (t) { + return t.id == s[a].id; + }); + o && 1 == o.length && (e >= s[a].openLevel && i >= s[a].openCircle && n >= s[a].openDay ? (o[0].isOpen = !0) : (o[0].isOpen = !1)); + } + this.tabBar.setData(this.isSHowIds); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + for (e.prototype.close.call(this, i), this.currPanel = null; this.btnGroup.numElements > 0; ) { + var s = this.btnGroup.removeChildAt(0); + s.destroy(), t.lEYZI.Naoc(s), (s = null); + } + for (var a = 0; a < this.panelDataObj.length; a++) this.panelDataObj[a] && this.panelDataObj[a].destroy(), (this.panelDataObj[a] = null); + (this.panelDataObj.length = 0), + (this.panelDataObj = null), + t.lEYZI.Naoc(this.type_group), + t.lEYZI.Naoc(this.btnGroup), + t.lEYZI.Naoc(this.iconGroup), + t.lEYZI.Naoc(this.attrGroup), + t.lEYZI.Naoc(this.stateGroup), + t.lEYZI.Naoc(this.modelGroup), + t.lEYZI.Naoc(this.tab_group), + this.dragDropUI && this.dragDropUI.destroy(), + this.rightMenuView && this.rightMenuView.destroy(), + (this.rightMenuView = null), + (this.dragDropUI = null), + this.attrPanel && this.attrPanel.$onClose(), + (this.attrPanel = null), + this.roleSkillDescView && this.roleSkillDescView.$onClose(), + (this.roleSkillDescView = null), + this.titleView2 && this.titleView2.$onClose(), + (this.titleView2 = null), + this.type_group && this.type_group.removeChildren(), + this.iconGroup && this.iconGroup.removeChildren(), + this.attrGroup && this.attrGroup.removeChildren(), + this.stateGroup && this.stateGroup.removeChildren(), + this.modelGroup && this.modelGroup.removeChildren(), + this.tab_group && this.tab_group.removeChildren(), + (this.type_group = null), + (this.iconGroup = null), + (this.attrGroup = null), + (this.stateGroup = null), + (this.modelGroup = null), + (this.tab_group = null), + (this.skillDescGroup = null), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN, this.onOpenAttrPanel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, this.onCloseAttrPanel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_ROLE_UPDATE_RULE, this.isShowBtn, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_SKILL_DESC, this.onShowSkillDesc, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_CLOSE_SKILL_DESC, this.onCloseSkillDesc, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_OPEN, this.onOpenRightMenu, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_CLOSE, this.onCloseRightMenu, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_TITLE2_OPEN, this.onOpenTitle2Panel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_TITLE2_CLOSE, this.onCloseTitle2Panel, this), + this.tabBar.removeEventListener(t.CompEvent.TAB_CHANGE, this.onChangeTab, this), + this.tabBar.destory(), + (this.tabBar = null), + (this.btnGroup = null); + var r, o; + for (r = 0, o = this.tempBtnArr.length; o > r; r++) { + var l = this.tempBtnArr[r]; + l.destroy(), (l = null); + } + (this.tempBtnArr.length = 0), + (this.tempBtnArr = null), + t.ObjectPool.wipe(this.dicBtn), + (this.dicBtn = null), + this.helpBtn.$onRemoveFromStage(), + (this.helpBtn = null), + this.isSHowIds && ((this.isSHowIds.length = 0), (this.isSHowIds = null)), + this.$onClose(), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerView = e), __reflect(e.prototype, "app.OtherPlayerView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.dataAry = []), + (i.newArr = []), + (i._itemArrayCollection = null), + (i.starUrlBg = "blessing_xingxing"), + (i.starUrl = "blessing_xingxing1"), + (i.starUrlBg2 = "blessing_yueliang"), + (i.starUrl2 = "blessing_yueliang1"), + (i.starUrlBg3 = "blessing_taiyan"), + (i.starUrl3 = "blessing_taiyan1"), + (i.starUrlBgNum = 0), + (i.starUrlNum = 0), + (i.starUrl2Num = 10), + (i.starUrl3Num = 20), + (i.ruleId = 30), + (i.titleStr = t.CrmPU.language_Omission_txt58), + (i.skinName = "BlessSkin"), + (i._itemArrayCollection = new eui.ArrayCollection()), + i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.btn_bless0.visible = !1), + (this.btn_bless1.visible = !1), + (this.txt_consume1.visible = !1), + (this.icon_1.visible = !1), + (this._scrollViewContainer = new t.ScrollViewContainer(this.arrGroup)), + this._scrollViewContainer.callFunc([null, null, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this._scrollViewContainer.itemRenderer = t.BlessAttrItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection); + var e = this.group_star.numElements; + this.starArr = []; + for (var i, n = 0; e > n; n++) (i = this.group_star.getElementAt(n)), this.starArr.push(i), (i.source = this.starUrlBg); + this.initData(); + }), + (i.prototype.initData = function () { + var e, + i = t.otherPlayerData.blessDatas, + n = 0, + s = t.caJqU.ins().otherPlayerEquips, + a = s.propSet, + r = a.getBless(), + o = (t.VlaoF.BlesseConstConfig.blessone, t.VlaoF.BlesseConstConfig.blessten, t.VlaoF.BlesseConstConfig.blessdown, t.otherPlayerData.getStarLev()), + l = t.VlaoF.BlessConfig[o]; + (this.txt_star.text = t.CrmPU.language_Omission_txt18 + o), + (this.txt_blessing.text = t.CrmPU.language_Omission_txt24 + r), + (this.txt_desc.text = t.CrmPU.language_Omission_txt19 + t.CrmPU.language_Omission_txt20 + (l && l.blessdown) + "点"); + var h = 0, + p = "", + u = ""; + o > this.starUrl3Num + ? ((h = o - this.starUrl3Num), (p = this.starUrl3), (u = this.starUrlBg3)) + : o > this.starUrl2Num + ? ((h = o - this.starUrl2Num), (p = this.starUrl2), (u = this.starUrlBg2)) + : o > this.starUrlNum && ((h = o - this.starUrlNum), (p = this.starUrl), (u = this.starUrlBg)); + for (var c = 0, g = this.starArr.length; g > c; c++) h > c ? (this.starArr[c].source = p) : (this.starArr[c].source = u); + var d, m, f; + if (((this.newArr = []), i)) { + for (n = i.length, m = 0; n > m; m++) + if (((e = i[m]), e.level == o)) { + for (d = 0; d < e.attrsCur.length; d++) (f = new t.BlessAttrVo()), (f.desc1 = e.attrsCur[d]), (f.desc2 = e.attrsNext[d]), this.newArr.push(f); + break; + } + this.setData(this.newArr); + } else this.setData([]); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this); this._list.numChildren > 0; ) { + var i = this._list.getChildAt(0); + this._list.removeChild(i), i.destroy(), (i = null); + } + (this.dataAry.length = 0), + (this.dataAry = null), + (this.newArr.length = 0), + (this.newArr = null), + t.lEYZI.Naoc(this.group_star), + this.group_star && this.group_star.removeChildren(), + (this.group_star = null), + (this.starArr.length = 0), + (this.starArr = null), + this._scrollViewContainer.destory(), + this._itemArrayCollection.removeAll(), + (this.txt_star.text = ""), + (this.txt_blessing.text = ""), + (this.txt_desc.text = ""), + (this.txt_consume1.text = ""), + (this.btn_bless1 = null), + (this.txt_star = null), + (this.txt_blessing = null), + (this.txt_desc = null), + (this.txt_consume1 = null), + (this.starUrlBg = ""), + (this.starUrl = ""), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this.arrGroup && this.arrGroup.removeChildren(), + (this.arrGroup = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerBlessView = e), __reflect(e.prototype, "app.OtherPlayerBlessView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "RoleCircleAttrItemSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + t.desc1 && (this.txt_cur.text = t.desc1), t.desc2 ? (this.txt_next.text = t.desc2) : ((this.txt_next.text = ""), (this.arrow.visible = !1)); + } + }), + e + ); + })(eui.ItemRenderer); + (t.OtherPlayerCircleAttrItemView = e), __reflect(e.prototype, "app.OtherPlayerCircleAttrItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._itemArrayCollection = null), (i.ruleId = 8), (i.titleStr = t.CrmPU.language_System8), (i.skinName = "CircleSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.btnCircle.visible = !1), + this._itemArrayCollection || + ((this.list.itemRenderer = t.RoleCircleAttrItemView), (this._itemArrayCollection = new eui.ArrayCollection()), (this.list.dataProvider = this._itemArrayCollection)), + this.refreshData(), + this.mc || + ((this.mc = t.ObjectPool.pop("app.MovieClip")), + (this.mc.blendMode = egret.BlendMode.ADD), + (this.mc.x = 194), + (this.mc.y = 160), + this.reinGroup.addChildAt(this.mc, 10), + this.mc.playFile(ZkSzi.RES_DIR_EFF + "eff_zsyw1", -1)); + }), + (i.prototype.refreshData = function () { + this.updateView(); + }), + (i.prototype.updateView = function () { + this.conditionGroup.visible = !1; + var e = t.caJqU.ins().otherPlayerEquips.circle; + this.txt_circle.text = t.CrmPU.language_Omission_txt13 + e + t.CrmPU.language_Common_0; + for (var i, n, s, a = t.VlaoF.CircleLevel[e], r = t.VlaoF.CircleLevel[e + 1], o = null, l = {}, h = [], p = 0; p < a.attrs.length; p++) (i = a.attrs[p]), (l[i.type] = i.value); + if (r) { + o = {}; + for (var p = 0; p < r.attrs.length; p++) (i = r.attrs[p]), (o[i.type] = i.value); + for (var u in o) + (s = t.AttributeData.getAttrValue(+u, o)), + s && + ((n = t.AttributeData.getAttrValue(+u, l, !0)), + h.push({ + desc1: n, + desc2: s, + })); + this.txt_max_lev.visible = !1; + } else { + for (var u in l) + (n = t.AttributeData.getAttrValue(+u, l, !0)), + n && + h.push({ + desc1: n, + desc2: null, + }); + (this.txt_max_lev.visible = !0), (this.txt_max_lev.text = t.CrmPU.language_Omission_txt14); + } + this._itemArrayCollection.replaceAll(h); + }), + (i.prototype.$onClose = function () { + this.mc && (this.mc.destroy(), (this.mc = null)), e.prototype.$onClose.call(this); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerCircleView = e), __reflect(e.prototype, "app.OtherPlayerCircleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RoleAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this); + }), + (i.prototype.onClickHandler = function (t) { + var e = this.data.attr_explain; + this.func && this.func(e); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data && this.data.attrConfigVo) { + var i = new egret.Point(e.stageX, e.stageY), + n = this.data.attrConfigVo; + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_SKILL_DESC, n.desc, { + x: i.x, + y: i.y, + }); + } + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + (this.txt_name.text = t.attr_name + ":"), (this.txt_value.text = t.attr_value), (this.func = t.func); + } + }), + (i.prototype.removeListener = function () { + this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this); + }), + (i.prototype.addListener = function () { + this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickHandler, this); + }), + i + ); + })(eui.ItemRenderer); + (t.OtherPlayerAttrtemView = e), __reflect(e.prototype, "app.OtherPlayerAttrtemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._itemArrayCollection = null), + (t.dataAry = []), + (t._itemArrayCollection2 = null), + (t.dataAry2 = []), + (t.endScrollV = 0), + (t.selectedIndex = -1), + (t.skinName = "AttrSkin"), + (t._itemArrayCollection = new eui.ArrayCollection()), + (t._itemArrayCollection2 = new eui.ArrayCollection()), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.attrBtn.currentState = "show"), + (this.stateBtn.currentState = "hide"), + (this.stateScroller.visible = !1), + (this.stateBtn.visible = !1), + (this.stateScroller.visible = !1), + this.init(); + }), + (i.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this.attrGroup)), + this._scrollViewContainer.callFunc([this.onScrollerChange, this.onScrollerEnd, this.onTouchTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.RoleAttrItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.attrConfigArr = []), + (this.btn_close.visible = !0), + this.vKruVZ(this.attrBtn, this.onClose), + this.vKruVZ(this.stateBtn, this.onClose), + this.vKruVZ(this.btn_close, this.onClose); + (this.stateList.itemRenderer = t.RoleStateItemView), (this.stateList.dataProvider = this._itemArrayCollection2), this.refreshData2(), t.MouseScroller.bind(this.stateScroller); + var e, + i, + n = t.caJqU.ins().otherPlayerEquips, + s = (n.propSet, []); + for (var a in t.VlaoF.HumanAttrConfig) { + var r = t.VlaoF.HumanAttrConfig[a]; + (e = new t.RoleAttrVo()), + (e.attr_name = r.attrName), + (i = t.JgMyc.ins().roleModel.getPropValueByIndex(n.propSet, r.attrID, r.lv)), + null != i && + ((e.attr_value = i + ""), + (e.attr_explain = ""), + r.tips && + (e.attrConfigVo = { + desc: r.tips, + name: "", + }), + s.push(e)); + } + this.setData(s); + }), + (i.prototype.refreshData2 = function () { + for (var e, i = t.caJqU.ins().otherPlayerEquips, n = i.propSet, s = [], a = (n.mBjV(), t.CrmPU.stateName.length), r = 0; a > r; ++r) { + var o = t.JgMyc.ins().roleModel.getStateValueByIndex(n, r); + if (o) { + (e = new t.RoleAttrVo()), (e.attr_name = t.RoleData.GetStateName(r)), (e.attr_value = o), (e.attr_explain = ""); + var l = t.CrmPU["stateArr" + r]; + l && + (e.attrConfigVo = { + name: l[0], + desc: l[1], + }), + s.push(e); + } + } + this.setData2(s); + }), + (i.prototype.setData2 = function (t) { + this.creatItem2(t); + }), + (i.prototype.creatItem2 = function (t) { + this.dataAry2.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry2.push(t[e]); + this._itemArrayCollection2.replaceAll(this.dataAry2); + }), + (i.prototype.onClose = function (e) { + switch (e.currentTarget) { + case this.attrBtn: + (this.attrBtn.currentState = "show"), (this.stateBtn.currentState = "hide"), (this.stateScroller.visible = !1), (this.attrScroller.visible = !0), (this.attrList.visible = !0); + break; + case this.stateBtn: + (this.stateScroller.visible = !0), (this.attrScroller.visible = !1), (this.attrList.visible = !1), (this.attrBtn.currentState = "hide"), (this.stateBtn.currentState = "show"); + break; + case this.btn_close: + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, !0), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_CLOSE); + } + }), + (i.prototype.onTouch = function (e) { + t.uMEZy.ins().closeTips(); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry), this._scroller.validateNow(); + }), + (i.prototype.onScrollerChange = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.removeListener(); + }), + (i.prototype.onScrollerEnd = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.addListener(); + }), + (i.prototype.onTouchTap = function (t, e, i) {}), + (i.prototype.callFunc = function (t) {}), + (i.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + this._list.removeChild(e), e.destroy(), (e = null); + } + this.fEHj(this.attrBtn, this.onClose), + this.fEHj(this.stateBtn, this.onClose), + this.fEHj(this.btn_close, this.onClose), + this._itemArrayCollection.removeAll(), + this._scrollViewContainer.destory(), + t.lEYZI.Naoc(this.attrGroup); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerAttrView = e), __reflect(e.prototype, "app.OtherPlayerAttrView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isShowAtrr = !0), (t.ruleId = 4), (t.titleStr = ""), (t.skinName = "EquipSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.init(); + }), + (i.prototype.init = function () { + t.JgMyc.ins().roleModel.init(), (this.roleInnerModel = new t.OtherRoleInnerModel(this.modelGroup)); + var e, i; + for (this.equipArr = [], i = 0; i < this.iconGroup.numElements; i++) (e = this.iconGroup.getChildByName("icon_" + i)), e.setEquipBg(i), this.equipArr.push(e); + (this.neiGongBtn.visible = !1), (this.neiGongGrp.visible = !1); + var n = t.VlaoF.MeridiansSetConfig.equipOpen, + s = t.VlaoF.MeridiansSetConfig.equipOpenBS; + if (n) { + var a = 0, + r = []; + t.mAYZL.ins().isCheckOpen(n) && + (r.push({ + type: "equipOpen", + img1: "tab_ngzbt01", + img2: "tab_ngzbt02", + }), + (this.neiGongBtn.visible = !0), + (a = r.length - 1)), + t.mAYZL.ins().isCheckOpen(s) && + r.push({ + type: "equipOpenBS", + img1: "tab_ngzbt12", + img2: "tab_ngzbt11", + }), + (this.ngEquiTabBar.itemRenderer = t.NGEquipTab), + (this.ngEquiTabBar.dataProvider = new eui.ArrayCollection(r)), + this.ngEquipView.init(1, "otherPlayerView"), + this.ngGemstoneView.init(2, "otherPlayerView"), + (this.ngEquiTabBar.selectedIndex = a), + this.onTabTouch(null); + } + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN, this.showAtrr, this), + t.ckpDj.ins().addEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, this.hideAtrr, this), + this.vKruVZ(this.gzClickGroup, this.onClick), + this.vKruVZ(this.btnAtrr, this.onClick), + this.vKruVZ(this.btnAtrr0, this.onClick), + this.vKruVZ(this.neiGongBtn, this.onClick), + this.vKruVZ(this.neiGongCloseBtn, this.onClick), + this.addChangeEvent(this.ngEquiTabBar, this.onTabTouch), + this.setEquipData(), + this.showAtrr(), + this.refreshData(); + }), + (i.prototype.showView = function () { + this.isShowAtrr && (t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_OPEN)); + }), + (i.prototype.hideView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_CLOSE), (this.neiGongGrp.visible = !1); + }), + (i.prototype.showAtrr = function () { + (this.btnAtrr.visible = !1), (this.btnAtrr0.visible = !0); + }), + (i.prototype.hideAtrr = function (t) { + void 0 === t && (t = !1), t && (this.isShowAtrr = !1), (this.btnAtrr.visible = !0), (this.btnAtrr0.visible = !1); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.gzClickGroup: + t.mAYZL.ins().open(t.OtherPlayerGuanZhiView); + break; + case this.btnAtrr: + (this.isShowAtrr = !0), this.showAtrr(), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_OPEN); + break; + case this.btnAtrr0: + (this.isShowAtrr = !1), this.hideAtrr(), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_RIGHT_MENU_CLOSE); + break; + case this.neiGongBtn: + var i = t.VlaoF.MeridiansSetConfig; + i && t.mAYZL.ins().isCheckOpen(i.openLimit) ? (this.neiGongGrp.visible = !this.neiGongGrp.visible) : i && i.limitStr && t.uMEZy.ins().IrCm(i.limitStr); + break; + case this.neiGongCloseBtn: + this.neiGongGrp.visible = !1; + } + }), + (i.prototype.onTabTouch = function (t) { + (this.ngEquipView.visible = !1), (this.ngGemstoneView.visible = !1); + var e = this.ngEquiTabBar.selectedItem; + e && ("equipOpen" == e.type ? (this.ngEquipView.visible = !0) : "equipOpenBS" == e.type && (this.ngGemstoneView.visible = !0)); + }), + (i.prototype.refreshData = function () { + var e = t.caJqU.ins().otherPlayerEquips; + (this.titleStr = e.name), (t.GlobalData.otherPlayerId = e.id), (t.GlobalData.otherPlayerName = e.name); + var i = e.propSet.getAP_JOB(), + n = e.propSet.mBjV(), + s = e.propSet.MzYki(), + a = e.propSet.getOfficialPositicon(), + r = e.guildName, + o = ""; + switch (i) { + case JobConst.ZhanShi: + o = t.AttributeData.job[JobConst.ZhanShi]; + break; + case JobConst.FaShi: + o = t.AttributeData.job[JobConst.FaShi]; + break; + case JobConst.DaoShi: + o = t.AttributeData.job[JobConst.DaoShi]; + } + (this.job = o), (this.txt_job.text = o), (this.txt_guild.text = r); + var l = s > 0 ? o + " " + s + t.CrmPU.language_Common_0 + n + t.CrmPU.language_Common_1 : o + " " + n + t.CrmPU.language_Common_1; + (this.txt_job.text = l), (this.gzImage.source = "gz_zw_" + a); + }), + (i.prototype.setEquipData = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.equips; + if (i) { + for (var n, s = 0; s < i.length; s++) + (n = i[s].nPos), + (n >= t.StdItemType.itEquipDiamond && n < t.StdItemType.itShield) || + n > t.StdItemType.itMoQi || + (n >= t.StdItemType.itShield && n <= t.StdItemType.itMoQi && (n -= 4), this.equipArr[n].setItem(i[s], null, null, 1)); + this.setModel(); + } + }), + (i.prototype.setModel = function () { + var e = t.caJqU.ins().getOtherModeEquip(); + this.roleInnerModel.setData(e); + }), + (i.prototype.deatroy = function () { + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN, this.showAtrr, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, this.hideAtrr, this), + this.fEHj(this.gzClickGroup, this.onClick), + this.fEHj(this.btnAtrr, this.onClick), + this.fEHj(this.btnAtrr0, this.onClick), + this.fEHj(this.neiGongBtn, this.onClick), + this.fEHj(this.neiGongCloseBtn, this.onClick), + t.lEYZI.Naoc(this.iconGroup), + this.iconGroup && this.iconGroup.removeChildren(), + this.modelGroup && this.modelGroup.removeChildren(), + (this.iconGroup = null), + (this.modelGroup = null); + var e, i; + for (e = 0, i = this.equipArr.length; i > e; e++) { + var n = this.equipArr[e]; + n.destroy(), (n = null); + } + this.ngEquiTabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.ngEquiTabBar = null), + (this.equipArr.length = 0), + (this.equipArr = null), + this.roleInnerModel && this.roleInnerModel.destory(), + (this.roleInnerModel = null), + (this.txt_job.text = ""), + (this.txt_job = null), + (this.txt_guild.text = ""), + (this.txt_guild = null), + this.removeObserve(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerEquipView = e), __reflect(e.prototype, "app.OtherPlayerEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._container = t), this.init(); + } + return ( + (e.prototype.init = function () { + (this._helmet = this._container.getChildByName("helmet")), (this._cloth = this._container.getChildByName("cloth")), (this._arm = this._container.getChildByName("arm")); + }), + (e.prototype.onTouchTap = function (t) {}), + Object.defineProperty(e.prototype, "skin", { + get: function () { + return this._container; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.setData = function (e) { + if ((void 0 === e && (e = null), e)) { + var i; + (this._arm.source = ""), (this._helmet.source = ""), (this.bg.source = ""), (this.bg.visible = !1); + var n = 0, + s = t.caJqU.ins().otherPlayerEquips; + s && 0 == s.sex ? (this._cloth.source = "model_" + t.RoleInnerModel.INIT_MODEL[0] + "_png") : (this._cloth.source = "model_" + t.RoleInnerModel.INIT_MODEL[1] + "_png"), + (this._helmet.source = s.propSet.getFacteStr() + "_" + s.sex + "_png"); + for (var a = 0; a < e.length; a++) { + i = e[a]; + var r = t.VlaoF.StdItems[i.wItemId]; + if (r) { + var o = Number(r.type); + 1 == o + ? ((this._arm.source = "model_" + r.icon + "_png"), (n = r.imgeff)) + : 2 == o + ? ((this._cloth.source = "model_" + r.icon + "_png"), r.imgeff && ((this.bg.source = "bodyimgeff" + r.imgeff + "_" + s.sex + "_png"), (this.bg.visible = !0))) + : 3 == o && (this._helmet.source = "model_" + r.icon + "_png"); + } + } + n + ? (this.weaponMC || ((this.weaponMC = t.ObjectPool.pop("app.MovieClip")), (this.weaponMC.blendMode = egret.BlendMode.ADD), this._container.addChild(this.weaponMC)), + this.weaponMC.playFileEff(ZkSzi.RES_DIR_WIMGEFF + "weaponeff" + n + "_n", -1)) + : this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)); + } + }), + (e.prototype.destory = function () { + this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)), t.lEYZI.Naoc(this._container); + }), + (e.INIT_MODEL = ["11000", "11005"]), + e + ); + })(); + (t.OtherPlayerInnerModel = e), __reflect(e.prototype, "app.OtherPlayerInnerModel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.prototype.setData = function (e) { + if ((void 0 === e && (e = null), e)) { + var i, + n = 0; + (this._arm.source = ""), (this._helmet.source = ""), (this.bg.source = ""), (this.bg.visible = !1); + var s = t.caJqU.ins().otherPlayerEquips, + a = s.sex; + 0 == a ? (this._cloth.source = "body" + t.RoleInnerModel.INIT_MODEL[0] + "_" + a + "_png") : (this._cloth.source = "body" + t.RoleInnerModel.INIT_MODEL[1] + "_" + a + "_png"), + (this._helmet.source = s.propSet.getFacteStr() + "_" + a + "_png"); + for (var r = 0; r < e.length; r++) { + i = e[r]; + var o = t.VlaoF.StdItems[i.wItemId]; + if (o) { + var l = Number(o.type); + 1 == l + ? ((this._arm.source = "weapon_" + o.icon + "_png"), (n = o.imgeff)) + : 2 == l + ? ((this._cloth.source = s.propSet.getBodyModelStr() + "_" + a + "_png"), o.imgeff && ((this.bg.source = "bodyimgeff" + o.imgeff + "_" + a + "_png"), (this.bg.visible = !0))) + : 3 == l && (this._helmet.source = "helmet_" + o.icon + "_png"); + } + } + n + ? (this.weaponMC || ((this.weaponMC = t.ObjectPool.pop("app.MovieClip")), (this.weaponMC.blendMode = egret.BlendMode.ADD), this._container.addChild(this.weaponMC)), + this.weaponMC.playFileEff(ZkSzi.RES_DIR_WIMGEFF + "weaponeff" + n + "_n", -1)) + : this.weaponMC && (this.weaponMC.destroy(), (this.weaponMC = null)); + } + }), + i + ); + })(t.RoleInnerModel); + (t.OtherRoleInnerModel = e), __reflect(e.prototype, "app.OtherRoleInnerModel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 61), (i.titleStr = t.CrmPU.language_System63), (i.skinName = "FourImagesViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.goBtn.visible = !1; + for (var t = 1; 5 > t; t++) { + var e = this["fourImagesItemView_" + t]; + (e.pos = t), e.updateData(), this.VoZqXH(e, this.mouseMove), this.EeFPm(e, this.mouseMove); + } + this.updateData(); + }), + (i.prototype.updateData = function () { + for (var t = 1; 5 > t; t++) { + var e = this["fourImagesItemView_" + t]; + e && e.setData(1); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.localToGlobal(); + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_FOURIMAGE, + { + pos: i.pos, + type: 1, + }, + { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + } + ); + } + }), + (i.prototype.destroy = function () {}), + i + ); + })(t.BaseView); + (t.OtherPlayerFourImagesView = e), __reflect(e.prototype, "app.OtherPlayerFourImagesView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.suitDic = {}), (i.ruleId = 59), (i.titleStr = t.CrmPU.language_System3), (i.skinName = "GodEquipSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + var t, e, i; + for (this.equipArr = [], this.imgArr = [], e = 0; e < this.iconGroup.numElements; e++) + (t = this.iconGroup.getChildByName("item_" + e)), this.equipArr.push(t), (i = this.getChildByName("img_" + e)), this.imgArr.push(i); + this.setSuitData(), this.refreshSuitEquipAtrr(); + }), + (i.prototype.refreshSuitEquipAtrr = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.suitEquips; + if (4 == i.length) { + for (var n = void 0, s = void 0, a = [], r = 0, o = i.length; o > r; r++) (n = i[r]), (s = t.VlaoF.StdItems[n.wItemId]), a.push(s.suitId); + for (var l = a[0], h = 0, p = a.length; p > h; h++) { + var u = a[h]; + l > u && (l = u); + } + this.setData(l); + } else this.setData(); + }), + (i.prototype.setData = function (e) { + if ((void 0 === e && (e = null), !e)) return (this.group_yjh.visible = !1), void (this.img_wjh.visible = !0); + var i = t.caJqU.ins().otherPlayerEquips, + n = i.getSuitDataById(e); + (this.group_yjh.visible = !0), + (this.img_wjh.visible = !1), + (this.suitLv.text = t.zlkp.replace(t.CrmPU.language_Omission_txt61, (e + "").substring(2))), + (this.attrLab.textFlow = t.hETx.qYVI(n.toString())); + }), + (i.prototype.setSuitData = function () { + for (var e = 0; e < this.equipArr.length; e++) (this.equipArr[e].visible = !1), (this.imgArr[e].visible = !0); + var i = t.caJqU.ins().otherPlayerEquips, + n = i.suitEquips; + if (n) + for (var s, e = 0; e < n.length; e++) + (s = n[e].nPos), this.equipArr[s - 10].setItem(n[e], null, null, 10, null, null, null, ""), (this.equipArr[s - 10].visible = !0), (this.imgArr[s - 10].visible = !1); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), t.lEYZI.Naoc(this.iconGroup), this.iconGroup && this.iconGroup.removeChildren(), (this.iconGroup = null); + var i, n; + for (i = 0, n = this.equipArr.length; n > i; i++) { + var s = this.equipArr[i]; + s.destroy(), (s = null); + } + (this.equipArr.length = 0), (this.equipArr = null), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerGodEquipView = e), __reflect(e.prototype, "app.OtherPlayerGodEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "GuanZhiSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.costArr = new eui.ArrayCollection()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setTitle(t.CrmPU.language_System93), + this.dragDropUI.setParent(this), + (this.currentLabel.text = t.CrmPU.language_GuanZhi_Label), + (this.costList.itemRenderer = t.FourImagesCostItem), + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + (this.costList.dataProvider = this.costArr), + this.updateView(), + (this.btnUp.visible = !1); + }), + (i.prototype.updateView = function () { + (this.isMaxLab.visible = !1), (this.jiantou.visible = !0); + var e = t.caJqU.ins().otherPlayerEquips, + i = e.propSet.getOfficialPositicon(), + n = t.VlaoF.OfficeConfig[i]; + if (n) { + (this.curGzImage.source = "gz_zw_" + i), (this.gzImage.source = "gz_zw_" + i), (this.gCurList.visible = !0); + for (var s = n.attribute, a = [], r = 0; r < s.length; r++) a.push(s[r]); + for (var o = [], l = "", r = 0; r < a.length; r++) (l = t.AttributeData.getItemAttStrByType(a[r], a)), "" != l && o.push(l); + this.gCurList.dataProvider = new eui.ArrayCollection(o); + } else (this.gCurList.visible = !1), (this.gzImage.source = "gz_zw_0"); + var h = i + 1, + p = t.VlaoF.OfficeConfig[h]; + if (p) { + (this.nextGzImage.visible = !0), (this.nextGzImage.source = "gz_zw_" + h), (this.gNextList.visible = !0); + for (var s = p.attribute, a = [], r = 0; r < s.length; r++) a.push(s[r]); + for (var o = [], l = "", r = 0; r < a.length; r++) (l = t.AttributeData.getItemAttStrByType(a[r], a)), "" != l && o.push(l); + this.gNextList.dataProvider = new eui.ArrayCollection(o); + } else + (this.nextGzImage.visible = !1), + (this.gNextList.visible = !1), + (this.levelLabel.visible = !1), + (this.btnUp.visible = !1), + (this.txt_get.visible = !1), + (this.isMaxLab.visible = !0), + (this.jiantou.visible = !1), + (this.curGzImage.x = 366), + (this.gCurList.x = 392); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerGuanZhiView = e), __reflect(e.prototype, "app.OtherPlayerGuanZhiView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.titleStr = t.CrmPU.language_System99), (i.skinName = "RoleWeaponSoulViewSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.goBtn.visible = this.redPoint.visible = !1; + for (var t = 1; 5 > t; t++) { + var e = this["weaponItem" + t]; + e.setData(t, 2); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this); + }), + i + ); + })(t.gIRYTi); + (t.OtherRoleWeaponSoulView = e), __reflect(e.prototype, "app.OtherRoleWeaponSoulView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MeridiansAttrItemCurSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_cur.text = this.data); + }), + e + ); + })(eui.ItemRenderer); + (t.OtherPlayerMeridiansItemCurView = e), __reflect(e.prototype, "app.OtherPlayerMeridiansItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.breakthrough = !1), (i.ruleId = 7), (i.titleStr = t.CrmPU.language_System7), (i.skinName = "MeridiansViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.initUI(); + }), + (i.prototype.initUI = function () { + (this.neiGongBtn.visible = !1), (this.neiGongGrp.visible = !1); + var e = t.VlaoF.MeridiansSetConfig.equipOpen, + i = t.VlaoF.MeridiansSetConfig.equipOpenBS; + if (i) { + var n = 0, + s = []; + t.mAYZL.ins().isCheckOpen(e) && + s.push({ + type: "equipOpen", + img1: "tab_ngzbt01", + img2: "tab_ngzbt02", + }), + t.mAYZL.ins().isCheckOpen(i) && + (s.push({ + type: "equipOpenBS", + img1: "tab_ngzbt12", + img2: "tab_ngzbt11", + }), + (this.neiGongBtn.visible = !0), + (n = s.length - 1)), + (this.ngEquiTabBar.itemRenderer = t.NGEquipTab), + (this.ngEquiTabBar.dataProvider = new eui.ArrayCollection(s)), + this.ngEquipView.init(1, "otherPlayerView"), + this.ngGemstoneView.init(2, "otherPlayerView"), + (this.ngEquiTabBar.selectedIndex = n), + this.onTabTouch(null); + } + (this.redDotMeridians.visible = !1), + (this.maxLevel = t.VlaoF.MeridiansSetConfig.limit), + (this.maxTipsLabel.text = t.CrmPU.language_Meridians_Max_Lv), + (this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.blendMode = egret.BlendMode.ADD), + (this.tipsMc.touchEnabled = !1), + (this.tipsMc.x = 20), + this.tipsGP.addChild(this.tipsMc), + (this.roleMc = t.ObjectPool.pop("app.MovieClip")), + (this.roleMc.blendMode = egret.BlendMode.ADD), + (this.roleMc.touchEnabled = !1), + (this.roleMc.x = 20), + this.roleGP.addChild(this.roleMc), + (this.curAttribArr = new eui.ArrayCollection()), + (this.nextAttribArr = new eui.ArrayCollection()), + (this.gCurList.itemRenderer = t.OtherPlayerMeridiansItemCurView), + (this.gCurList.dataProvider = this.curAttribArr), + (this.gNextList.itemRenderer = t.MeridiansAttrItemNextView), + (this.gNextList.dataProvider = this.nextAttribArr), + (this.txt_level.visible = !1), + (this.materImg.visible = !1), + (this.costLabel.visible = !1), + (this.costTipsLabel.visible = !1), + (this.btnUp.visible = !1), + this.vKruVZ(this.neiGongBtn, this.onClick), + this.vKruVZ(this.neiGongCloseBtn, this.onClick), + this.addChangeEvent(this.ngEquiTabBar, this.onTabTouch), + this.initData(); + }), + (i.prototype.showView = function () {}), + (i.prototype.hideView = function () { + this.neiGongGrp.visible = !1; + }), + (i.prototype.initData = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.propSet; + this.meridiansLevel = i.getMeridians(); + var n = this.meridiansLevel >= this.maxLevel; + n ? ((this.maxTipsLabel.visible = !0), (this.gNextList.visible = !1), (this.gCurList.x = 110)) : ((this.maxTipsLabel.visible = !1), (this.gNextList.visible = !0)); + for (var s = this.meridiansLevel % 10, a = 0; 9 > a; a++) this["meridiansLine" + a].source = "Meridians_xian_" + (s > a + 1 ? "1" : "2"); + for (var r, a = 0; 10 > a; a++) + (r = this["meridiansitemView" + a]), (r.item.visible = (n && 0 == s) || (s >= a + 1 ? !0 : !1)), r.setEffPayer(r.item.visible), r.setLights(a + 1 == s), (r.bg.visible = !r.item.visible); + this.meridiansShowLevel.setLevelValue(this.meridiansLevel); + var o = t.MeridiansData.getMeridiansAttrib(this.meridiansLevel, !1), + l = t.MeridiansData.getMeridiansAttrib(this.meridiansLevel + 1, !0); + (this.curAttribArr.source = o), (this.nextAttribArr.source = l); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.neiGongBtn: + var i = t.VlaoF.MeridiansSetConfig.equipOpenBS; + i && t.mAYZL.ins().isCheckOpen(i.openLimit) ? (this.neiGongGrp.visible = !this.neiGongGrp.visible) : i && i.limitStr && t.uMEZy.ins().IrCm(i.limitStr); + break; + case this.neiGongCloseBtn: + this.neiGongGrp.visible = !1; + } + }), + (i.prototype.onTabTouch = function (t) { + (this.ngEquipView.visible = !1), (this.ngGemstoneView.visible = !1); + var e = this.ngEquiTabBar.selectedItem; + e && ("equipOpen" == e.type ? (this.ngEquipView.visible = !0) : "equipOpenBS" == e.type && (this.ngGemstoneView.visible = !0)); + }), + (i.prototype.destroy = function () { + this.roleMc && (this.roleMc.destroy(), (this.roleMc = null)), this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)); + }), + (i.prototype.removeView = function () { + t.lEYZI.Naoc(this); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.ngEquipView && (this.ngEquipView.$onClose(), (this.ngEquipView = null)), + this.ngGemstoneView && (this.ngGemstoneView.$onClose(), (this.ngGemstoneView = null)), + (this.gCurList.itemRenderer = null), + (this.gCurList.dataProvider = null), + this.gCurList.removeChildren(), + (this.gCurList = null), + (this.gNextList.itemRenderer = null), + (this.gNextList.dataProvider = null), + this.gNextList.removeChildren(), + (this.gNextList = null); + var i; + for (i = 0; 9 > i; i++) this["meridiansLine" + i].source = ""; + for (var n, s = 0; 10 > s; s++) (n = this["meridiansitemView" + s]), n.destroy(), (n = null); + egret.Tween.removeTweens(this), + this.roleMc && (this.roleMc.destroy(), (this.roleMc = null)), + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)), + this.fEHj(this.neiGongBtn, this.onClick), + this.fEHj(this.neiGongCloseBtn, this.onClick), + this.ngEquiTabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.ngEquiTabBar = null), + t.lEYZI.Naoc(this), + t.KHNO.ins().removeAll(this); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerMeridiansView = e), __reflect(e.prototype, "app.OtherPlayerMeridiansView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._curIndex = -1), (i.curItemData = null), (i.ruleId = 74), (i.titleStr = t.CrmPU.language_System4), (i.dir = 4), (i.curListInfo = []), (i.lastSelected = -1), (i.skinName = "FashionSkin"), i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.itemArrayCollection = new eui.ArrayCollection()), (this.tabBarArrayCollection = new eui.ArrayCollection()), this.initView(); + }), + (i.prototype.initView = function () { + (this.btn_activat.visible = this.btn_wear.visible = this.lvGrp.visible = !1), + (this.tabBar.itemRenderer = t.NewTabBarItemRenderer2), + (this.tabBar.dataProvider = this.tabBarArrayCollection), + (this.list_cost.itemRenderer = t.FourImagesCostItem), + (this.list.itemRenderer = t.FashionNewItemRender), + (this.list.dataProvider = this.itemArrayCollection), + (this.scroller.horizontalScrollBar.autoVisibility = !1), + (this.scroller.horizontalScrollBar.visible = !1), + this.vKruVZ(this.btn_activat, this.onTouchAp), + this.vKruVZ(this.btn_wear, this.onTouchAp), + this.vKruVZ(this.btn_upgrade, this.onTouchAp), + this.vKruVZ(this.btn_inverse, this.onTouchAp), + this.vKruVZ(this.btn_along, this.onTouchAp), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.await.setData(t.RoleAction.Await, this.callFunc, this), + this.attack.setData(t.RoleAction.Attack, this.callFunc, this), + this.walk.setData(t.RoleAction.Walk, this.callFunc, this), + this.run.setData(t.RoleAction.Run, this.callFunc, this), + this.HFTK(t.rTRv.ins().post_51_1, this.updateCurInfo), + this.HFTK(t.rTRv.ins().post_51_2, this.wearFashionData), + this.HFTK(t.rTRv.ins().post_51_3, this.activationData), + this.HFTK(t.rTRv.ins().post_51_4, this.fashionUpData), + this.HFTK(t.ThgMu.ins().post_8_1, this.setCurFashionCost), + this.HFTK(t.ThgMu.ins().post_8_4, this.setCurFashionCost), + this.HFTK(t.ThgMu.ins().post_8_3, this.setCurFashionCost), + this.setTabArray(), + this.createPlayerModel(), + t.rTRv.ins().send_51_1(), + (this._curIndex = 0), + (this.tabBar.selectedIndex = this._curIndex), + (this.fashionAtrrView = new t.FashionAtrrView()), + this.fashionAtrrGroup.addChild(this.fashionAtrrView); + }), + (i.prototype.setTabArray = function () { + var e = t.VlaoF.FashionattributeConfig, + i = []; + for (var n in e) { + var s = e[n], + a = "", + r = 0; + for (var o in s) + if (s[o].tabImg) { + (a = s[o].tabImg), (r = s[o].type); + break; + } + i.push({ + tabType: r, + tabImg: a, + isMy: 0, + }); + } + this.tabBarArrayCollection.replaceAll(i); + }), + (i.prototype.createPlayerModel = function () { + (this.modelCharRole = t.ObjectPool.pop("app.ModelCharRole")), (this.modelCharRole.propSet = new t.PropertySet()), this.modelCharRole.showBodyContainer(); + var e = t.caJqU.ins().otherPlayerEquips, + i = e.propSet.getSex(); + this.modelCharRole.propSet.setProperty(t.nRDo.AP_SEX, i), + e.propSet.getFacte() + ? (this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), this.modelCharRole.propSet.setProperty(t.nRDo.AP_FACE_ID, e.propSet.getFacte())) + : this.modelCharRole.initHair(null), + e.propSet.getWeapon() + ? (this.modelCharRole.setWeaponFileName(e.propSet.getWeaponStr()), this.modelCharRole.propSet.setProperty(t.nRDo.AP_WEAPON, e.propSet.getWeapon())) + : this.modelCharRole.setWeaponFileName(null), + this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + e.propSet.getBodyStr() + "_" + i), + this.modelCharRole.propSet.setProperty(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE, e.propSet.getFashionDisplayStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.AP_BODY_ID, e.propSet.getBody()), + this.modelCharRole.setBodyEff(e.propSet.getBodyEFFStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.ACTOR_FASHION_DISPLAY, e.propSet.getValue(t.nRDo.ACTOR_FASHION_DISPLAY)), + this.modelCharRole.setWeaponEff(e.propSet.getWeaponEffStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.ACTOR_WEAPON_DISPLAY, e.propSet.getValue(t.nRDo.ACTOR_WEAPON_DISPLAY)), + this.bodyContainer.addChild(this.modelCharRole), + this.modelCharRole.addSpecialMC(), + (this.modelCharRole.dir = 4); + this.modelCharRole.scaleX = this.modelCharRole.scaleY = 1.3; + }), + (i.prototype.setDisplay = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.propSet.getSex(); + if (this.curItemData && this.curItemData.itemInfo) { + var n = this.curItemData.itemInfo; + 2 == n.type + ? (this.modelCharRole.updateSuit(0), + e.propSet.getFacte() && this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), + n.display ? this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + this.getBodyStr(n.display)) : this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + e.propSet.getBodyStr() + "_" + i), + n.back ? this.modelCharRole.setBodyEff(this.getBodyEffStr(n.back)) : this.modelCharRole.setBodyEff("")) + : 1 == n.type + ? (this.modelCharRole.updateSuit(0), + e.propSet.getFacte() && this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), + n.display + ? this.modelCharRole.setWeaponFileName(this.getWeaponStr(n.display)) + : e.propSet.getWeapon() + ? this.modelCharRole.setWeaponFileName(e.propSet.getWeaponStr()) + : this.modelCharRole.setWeaponFileName(null), + n.back ? this.modelCharRole.setWeaponEff(this.getWeaponEffStr(n.back)) : this.modelCharRole.setWeaponEff("")) + : 3 == n.type && n.display && this.modelCharRole.updateSuit(n.display); + } + }), + (i.prototype.getWeaponEffStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "weaponeff" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.getWeaponStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "weapon" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.getBodyEffStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "bodyeff_" + e + "_" + n; + }), + (i.prototype.getBodyStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "body" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.PrefixInteger = function (t, e) { + return (Array(e).join("0") + t).slice(-e); + }), + (i.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex); + }), + (i.prototype.activationData = function (e) { + if (0 == e) { + for (var i = t.caJqU.ins().otherPlayerEquips.fashionDic, n = 0; n < this.curListInfo.length; n++) { + var s = this.curListInfo[n]; + i && i[s.itemInfo.id] && 1 == i[s.itemInfo.id].state ? ((s.dressState = 1), (s.Lv = 1)) : (s.dressState = 0); + } + this.itemArrayCollection.replaceAll(this.curListInfo), this.setCurFashionCost(); + } + }), + (i.prototype.fashionUpData = function (e) { + if (0 == e && this.curItemData && this.curItemData.itemInfo && this.curListInfo) { + var i = t.caJqU.ins().otherPlayerEquips.fashionDic; + i[this.curItemData.itemInfo.id] && + this.curListInfo[this.lastSelected] && + ((this.curListInfo[this.lastSelected].Lv = i[this.curItemData.itemInfo.id].lv), this.itemArrayCollection.replaceAll(this.curListInfo), this.setCurFashionCost()); + } + }), + (i.prototype.wearFashionData = function (e) { + if (0 == e) + (this.btn_wear.label = t.CrmPU.language_Omission_txt36), + this.curListInfo && this.curListInfo[this.lastSelected] && ((this.curListInfo[this.lastSelected].dressState = 0), this.itemArrayCollection.replaceAll(this.curListInfo)); + else { + this.btn_wear.label = t.CrmPU.language_Omission_txt37; + for (var i = t.caJqU.ins().otherPlayerEquips.fashionDic, n = 0; n < this.curListInfo.length; n++) { + var s = this.curListInfo[n]; + i && i[s.itemInfo.id] && 1 == i[s.itemInfo.id].state ? (s.dressState = 1) : (s.dressState = 0); + } + this.itemArrayCollection.replaceAll(this.curListInfo); + } + }), + (i.prototype.onTabTouch = function (t) { + (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.setScrollerH = function () { + t.KHNO.ins().remove(this.updateScrollerH, this), t.KHNO.ins().tBiJo(50, 2, this.updateScrollerH, this); + }), + (i.prototype.updateScrollerH = function () { + if (this.lastSelected <= 3) this.scroller.viewport.scrollH = 0; + else { + var t = Math.floor((this.scroller.viewport.contentWidth - this.scroller.viewport.width) / (this.lastSelected + 1)), + e = t * (this.lastSelected + 1); + e > this.scroller.viewport.contentWidth - this.scroller.viewport.width && (e = this.scroller.viewport.contentWidth - this.scroller.viewport.width), (this.scroller.viewport.scrollH = e); + } + }), + (i.prototype.callFunc = function (e) { + switch (e) { + case t.RoleAction.Await: + this.modelCharRole.playStand(); + break; + case t.RoleAction.Attack: + this.modelCharRole.playAttack(); + break; + case t.RoleAction.Walk: + this.modelCharRole.playWalk(); + break; + case t.RoleAction.Run: + this.modelCharRole.playRun(); + } + }), + (i.prototype.onTouchAp = function (e) { + var i = t.caJqU.ins().otherPlayerEquips.fashionDic; + switch (e.currentTarget) { + case this.btn_activat: + this.curItemData && this.curItemData.itemInfo && t.rTRv.ins().send_51_3(this.curItemData.itemInfo.id); + break; + case this.btn_wear: + this.curItemData && this.curItemData.itemInfo && i[this.curItemData.itemInfo.id] && t.rTRv.ins().send_51_2(this.curItemData.itemInfo.id, i[this.curItemData.itemInfo.id].state ? 0 : 1); + break; + case this.btn_upgrade: + this.curItemData && this.curItemData.itemInfo && i[this.curItemData.itemInfo.id] && t.rTRv.ins().send_51_4(this.curItemData.itemInfo.id); + break; + case this.btn_along: + (this.dir += 1), this.dir > 8 && (this.dir = this.dir % 8), (this.modelCharRole.dir = this.dir); + break; + case this.btn_inverse: + (this.dir -= 1), this.dir < 0 && (this.dir = 8), (this.modelCharRole.dir = this.dir); + } + }), + (i.prototype.onItemTap = function (t) { + this.lastSelected >= 0 && (this.curListInfo[this.lastSelected].wearState = 0), + (this.lastSelected = this.list.selectedIndex), + (this.curItemData = t.item), + this.list.dataProvider && this.lastSelected > -1 && this.lastSelected < this.list.dataProvider.length && (this.curListInfo[this.list.selectedIndex].wearState = 1), + this.itemArrayCollection.replaceAll(this.curListInfo), + this.setDisplay(), + this.setCurFashionCost(); + }), + (i.prototype.setOpenIndex = function (e) { + var i = t.VlaoF.FashionattributeConfig[e + 1]; + this.curListInfo = []; + var n = t.caJqU.ins().otherPlayerEquips.fashionDic; + if (i) { + var s = 0; + for (var a in i) + this.curListInfo.push({ + itemInfo: i[a], + wearState: 0, + dressState: 0, + Lv: 0, + isMy: 0, + }); + for (var r = 0; r < this.curListInfo.length; r++) { + var o = this.curListInfo[r]; + n && n[o.itemInfo.id] && ((o.Lv = n[o.itemInfo.id].lv), 1 == n[o.itemInfo.id].state && ((o.wearState = 1), (o.dressState = 1), (this.lastSelected = r), (s = 1), (this.curItemData = o))); + } + 0 == s && this.curListInfo && this.curListInfo[0] && ((this.curListInfo[0].wearState = 1), (this.lastSelected = 0), (this.curItemData = this.curListInfo[0])), + (this.list.selectedIndex = this.lastSelected), + this.itemArrayCollection.replaceAll(this.curListInfo), + this.setDisplay(), + this.setCurFashionCost(), + this.setScrollerH(); + } + }), + (i.prototype.setCurFashionCost = function () { + if (((this.list_cost.visible = !1), this.curItemData && this.curItemData.itemInfo)) { + var e = this.curItemData.itemInfo, + i = t.caJqU.ins().otherPlayerEquips.fashionDic; + i && i[e.id] ? this.fashionAtrrView.setAttr(e.id, i[e.id].lv, 1, 3 == e.type ? 1 : 0) : this.fashionAtrrView.setAttr(e.id, 0, 1, 3 == e.type ? 1 : 0); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.fEHj(this.btn_inverse, this.onTouchAp), + this.fEHj(this.btn_along, this.onTouchAp), + this.fEHj(this.btn_activat, this.onTouchAp), + this.fEHj(this.btn_wear, this.onTouchAp), + this.fEHj(this.btn_upgrade, this.onTouchAp), + this.fashionAtrrView && this.fashionAtrrView.destroy(), + this.modelCharRole && this.modelCharRole.destruct(); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerNewFashionView = e), __reflect(e.prototype, "app.OtherPlayerNewFashionView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.data && ((this.redPoint.visible = !1), (this.iconDark.source = this.data.tabImg + "_d"), (this.iconLight.source = this.data.tabImg + "_u")); + }), + e + ); + })(t.BaseItemRender); + (t.OtherNewPlayerRingTabView = e), __reflect(e.prototype, "app.OtherNewPlayerRingTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.mcName = ""), (i.playerJob = 0), (i.curSelect = 0), (i.ruleId = 0), (i.titleStr = t.CrmPU.language_System66), (i.skinName = "NewRingSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.txt_max.visible = !1), + (this.iconList.itemRenderer = t.OtherNewPlayerRingTabView), + (this.listCost.itemRenderer = t.FourImagesCostItem), + (this.itemList.itemRenderer = t.RingAttrItemView), + (this.itemArr = new eui.ArrayCollection()), + (this.itemList.dataProvider = this.itemArr), + this.ringEff || ((this.ringEff = t.ObjectPool.pop("app.MovieClip")), (this.ringEff.touchEnabled = !1), this.mcGroup.addChild(this.ringEff)); + var i = t.caJqU.ins().otherPlayerEquips; + (this.playerJob = i.propSet.getAP_JOB()), + this.addChangeEvent(this.iconList, this.onTabTouch), + this.init(), + (this.iconList.selectedIndex = 0), + (this.curSelect = 0), + (this.txt_get.visible = !1), + this.updateData(), + this.setRuleId(); + }), + (i.prototype.init = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = t.VlaoF.RingTabConfig, + n = (e.strengthenDic[t.StrengthenType.Special], e.strengthenDic[t.StrengthenType.RingJob], []); + for (var s in i) { + var a = !0; + if (t.mAYZL.ins().isCheckOpen(i[s].showLimit)) { + if (i[s].ringLimit) for (var r in i[s].ringLimit) if (((a = this.getRingInfo(i[s].ringLimit[r])), !a)) break; + a && n.push(i[s]); + } + } + this.iconList.dataProvider = new eui.ArrayCollection(n); + }), + (i.prototype.getRingInfo = function (e) { + var i = t.caJqU.ins().otherPlayerEquips, + n = t.VlaoF.RingTabConfig[e]; + if (n) { + var s = i.strengthenDic[t.StrengthenType.Special], + a = i.strengthenDic[t.StrengthenType.RingJob], + r = 1 == n.type ? s : a; + if (r) for (var o in r) if (r[o].pos == e && r[o].lv >= 1) return !0; + } + return !1; + }), + (i.prototype.setRuleId = function () { + var e = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + e && (e.ruleid ? (this.ruleId = e.ruleid) : (this.ruleId = 0), t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_ROLE_UPDATE_RULE, t.RoleTabEnum.RING)); + }), + (i.prototype.onTouchAp = function (e) { + switch (e.currentTarget) { + case this.btn_strengthen: + var i = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + if (i) { + var n = 1 == i.type ? t.StrengthenType.Special : t.StrengthenType.RingJob; + t.StrengthenMgr.ins().sendStrengthenInfo(n, i.id); + } + } + }), + (i.prototype.onTabTouch = function (t) { + (this.curSelect = t.currentTarget.selectedIndex), this.updateData(), this.setRuleId(); + }), + (i.prototype.updateData = function () { + var e = t.caJqU.ins().otherPlayerEquips; + (this.txt_max.visible = this.redDot.visible = !1), (this.listCost.visible = this.btn_strengthen.visible = this.txt_get.visible = !1); + var i = e.strengthenDic[t.StrengthenType.Special], + n = e.strengthenDic[t.StrengthenType.RingJob], + s = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + if (s) { + this.btn_strengthen.label = 1 == s.type ? t.CrmPU.language_System84 : t.CrmPU.language_System83; + var a = 1 == s.type ? i : n, + r = t.VlaoF.SpecialRingConfig[s.id]; + for (var o in a) + if (a[o].pos == s.id) + return ( + (this.bt_lv.visible = 1 == s.type ? !0 : !1), + (this.bt_lv.text = a[o].lv + ""), + (this.mcName = s.ringeff), + (this.strengthen_name.source = s.ringname), + (this.txt_max.visible = (2 == s.type && 1 == a[o].lv) || (1 == s.type && a[o].lv == Object.keys(r).length - 1) ? !0 : !1), + (this.txt_max.text = 1 == s.type ? t.CrmPU.language_Omission_txt115 : t.CrmPU.language_System85), + this.ringEff.playFileEff(ZkSzi.RES_DIR_EFF + s.ringeff, -1), + void this.setAttrList(a[o].lv, a[o].pos, s.type) + ); + (this.txt_max.visible = 2 == s.type ? !0 : !1), + (this.txt_max.text = 2 == s.type ? "未激活" : ""), + (this.bt_lv.visible = 1 == s.type ? !0 : !1), + (this.bt_lv.text = "0"), + (this.mcName = s.ringeff), + (this.strengthen_name.source = s.ringname), + this.ringEff.playFileEff(ZkSzi.RES_DIR_EFF + s.ringeff, -1); + var l = 1 == s.type ? 0 : 1; + this.setAttrList(l, s.id, s.type); + } + }), + (i.prototype.setAttrList = function (e, i, n) { + void 0 === n && (n = 1), (this.curAttr.text = ""), (this.nextAttr.text = ""); + var s = ""; + if (1 == n) { + s = this.getAttrStr(i, e); + var a = this.getAttrStr(i, e + 1); + s && (this.curAttr.textFlow = t.hETx.qYVI(s)), a ? ((this.arrow.visible = !0), (this.nextAttr.textFlow = t.hETx.qYVI(a))) : (this.arrow.visible = !1); + } else (this.arrow.visible = !1), (s = this.getAttrStr(i, e, n)), s && (this.curAttr.textFlow = t.hETx.qYVI(s)); + }), + (i.prototype.getAttrStr = function (e, i, n) { + void 0 === n && (n = 1); + var s; + s = 1 == n ? t.VlaoF.SpecialRingConfig[e][i] : t.VlaoF.RingBuyJobConfig[e][i][this.playerJob]; + var a = null; + if (s) { + var r = [], + o = "", + l = 1 == n ? "0xcbc2b2" : "0x28ee01"; + a = ""; + for (var h in s.attr) r.push(s.attr[h]); + for (var h = 0; h < r.length; h++) (o = t.AttributeData.getItemAttStrByType(r[h], r, 1, !1, !0, "0xE0AE75", l)), "" != o && (a += o + "\n"); + } + return a; + }), + (i.prototype.setCostList = function (e, i, n) { + void 0 === n && (n = 1); + var s; + if (1 == n) + (s = t.VlaoF.SpecialRingConfig[i][e + 1]), + s + ? ((this.curCfg = s), (this.redDot.visible = t.ZAJw.isRedDot(s.cost) ? !0 : !1), (this.listCost.dataProvider = new eui.ArrayCollection(s.cost))) + : ((this.listCost.visible = !1), (this.redDot.visible = !1)); + else if ((s = t.VlaoF.RingBuyJobConfig[i][e][this.playerJob])) { + this.curCfg = s; + var a = this.getRingInfo(i); + a || (this.redDot.visible = t.ZAJw.isRedDot(s.cost) ? !0 : !1), (this.listCost.dataProvider = new eui.ArrayCollection(s.cost)); + } else (this.listCost.visible = !1), (this.redDot.visible = !1); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.iconList.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this); + }), + i + ); + })(t.gIRYTi); + (t.OtherNewPlayerRingView = e), __reflect(e.prototype, "app.OtherNewPlayerRingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 98), (i.titleStr = t.CrmPU.language_System101), (i.skinName = "RolePetSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.petMc || ((this.petMc = t.ObjectPool.pop("app.MovieClip")), (this.petMc.touchEnabled = !1), this.effGrp.addChild(this.petMc)), (this.iconList.itemRenderer = t.RolePetItem); + var e = this.getPetDataList(); + (this.iconList.dataProvider = new eui.ArrayCollection(e)), + (this.iconList.selectedIndex = 0), + (this.btn_goOut.visible = !1), + this.addChangeEvent(this.iconList, this.onTabTouch), + t.PetSettingTwoMgr.ins().send_35_1(), + this.updateData(); + }), + (i.prototype.onTabTouch = function (t) { + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + (this.imgName.source = e.nameIcon), this.petMc.playFileEff(ZkSzi.RES_DIR_PET + e.icon, -1), (this.iconState.visible = !1), (this.labTips.text = e.PetStr); + var i = []; + for (var n in e.attr) i.push(e.attr[n]); + var s, + a = "", + r = t.caJqU.ins().otherPlayerEquips; + if ((r && (s = r.peiInfo[e.id]), s && s.time > 0 && s.time > t.GlobalData.serverTime)) { + (this.iconState.source = "chongwu_btn2"), (this.iconState.visible = !0); + var o = Math.floor((s.time - t.GlobalData.serverTime) / 1e3); + a += "|C:0x28ee01&T:" + (t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(o, t.DateUtils.TIME_FORMAT_18)) + "|"; + for (var n = 0; n < i.length; n++) { + var l = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0, "0xE0AE75", "0x28ee01"); + "" != l && (a += "\n" + l); + } + this.labTips.textColor = 16742144; + } else { + (this.iconState.source = "chongwu_btn1"), (this.iconState.visible = !0), (a += t.CrmPU.language_System72); + for (var n = 0; n < i.length; n++) { + var l = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0); + "" != l && (a += "\n" + l); + } + this.labTips.textColor = 15064527; + } + this.labAttribute.textFlow = t.hETx.qYVI(a); + }), + (i.prototype.getPetDataList = function () { + var e = t.VlaoF.lootPetConfig, + i = []; + for (var n in e) { + var s = t.CommonUtils.objectToArray(e[n]), + a = s[0]; + i.push({ + type: a.type, + id: a.id, + attr: a.attr, + icon: a.icon, + nameIcon: a.nameIcon, + PetStr: a.PetStr, + }); + } + return ( + i.sort(function (t, e) { + return t.type - e.type; + }), + i + ); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.iconList.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this); + }), + i + ); + })(t.gIRYTi); + (t.OtherRolePetView = e), __reflect(e.prototype, "app.OtherRolePetView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1), (this.labelDisplay.text = "升 级"); + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.OtherPlayerRingBtnItemView = e), __reflect(e.prototype, "app.OtherPlayerRingBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.maxSize = 5), (t.isInit = !0), (t.selectedIndex = 0), (t.skinName = "RingSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.redDot.updateShowFunctions = null), + (this.redDot.visible = !1), + (this.btn_strengthen.visible = !1), + (this.flipPage = new t.FlipPage(null, this.btn_prev, this.btn_next)), + (this.flipPage.maxLength = 5), + (this.flipPage.type = t.FlipPageType.Special), + this.flipPage.addEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this); + var e = t.VlaoF.SpecialRingConfig, + i = Object.keys(e).length, + n = i >= this.maxSize; + this.flipPage.setHide(n), + (this.dataAry = []), + (this.txt_max.visible = !1), + (this.img_money.visible = !1), + (this.txt_consume.visible = !1), + (this.listCost.visible = !1), + (this.iconArrayCollection = new eui.ArrayCollection()), + (this.iconList.itemRenderer = t.RingIconItemView), + (this.iconList.dataProvider = this.iconArrayCollection), + this.iconList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.itemList.itemRenderer = t.RingAttrItemView), + (this.itemList.dataProvider = this.itemArrayCollection), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.Special), + this.initPageData(); + }), + (i.prototype.initPageData = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.getAllRingData(), + n = i; + n && this.flipPage.setData(n), (this.flipPage.currentPage = 1); + }), + (i.prototype.onItemTap = function (t) { + (this.selectedIndex = t.itemIndex), (this.selectedItem = t.item), this.onRefreshTab(), this.setStrengthenData(); + }), + (i.prototype.onRefreshTab = function () { + this.selectedItem && this.setTabData(this.showData); + }), + (i.prototype.setTabData = function (e) { + void 0 === e && (e = null), this.tabArr ? (this.tabArr.length = 0) : (this.tabArr = []); + for (var i, n = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], s = n.name, a = 0; a < e.length; a++) + for (var r in s) + if (s[r].ringid == e[a].pos) { + (i = 0), + this.selectedItem ? this.selectedItem.pos == e[a].pos && (i = 1) : 0 == a && (i = 1), + this.tabArr.push({ + name: s[r].ringpc.ringpcid, + pos: e[a].pos, + lv: e[a].lv, + job: e[a].job, + ZbzdY: i, + }); + break; + } + this.iconArrayCollection.replaceAll(this.tabArr); + }), + (i.prototype.onPageChange = function (t) { + var e = t.data; + (this.showData = e), this.setTabData(e), this.setStrengthenData(); + }), + (i.prototype.setStrengthenData = function () { + var e; + this.showData && !this.selectedItem + ? ((e = this.showData[this.selectedIndex]), + (this.curCfg = e), + e && ((this.bt_lv.text = e.lv + ""), (this.nextCfg = t.JgMyc.ins().roleModel.getRingConfig(e.pos, e.lv + 1, e.job)), this.setAttr(e.lv, e.pos, e.job))) + : this.selectedItem && + ((e = t.JgMyc.ins().roleModel.getRingConfig(this.selectedItem.pos, this.selectedItem.lv, this.selectedItem.job)), + (this.curCfg = e), + e && ((this.bt_lv.text = e.lv + ""), (this.nextCfg = t.JgMyc.ins().roleModel.getRingConfig(e.pos, e.lv + 1, e.job)), this.setAttr(e.lv, e.pos, e.job))), + this.showConsume(this.nextCfg); + }), + (i.prototype.setRuleId = function () { + var e = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + i = e.name; + if (this.curCfg) { + var n = i[this.curCfg.pos - 1].ringpc.ruleid; + n && this.callFunc ? this.callFunc(n) : this.callFunc && this.callFunc(0); + } + }), + Object.defineProperty(i.prototype, "curPageData", { + get: function () { + var e, + i = t.caJqU.ins().otherPlayerEquips, + n = i.getAllRingData(); + if (n && n.length > 0) { + var s = void 0; + e = []; + for (var a = this.flipPage.currentPage, r = (a - 1) * this.maxSize, o = a * this.maxSize; o > r && r < n.length; r++) (s = t.VlaoF.SpecialRingConfig[n[r].pos][n[r].lv]), e.push(s); + } + return e; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.showConsume = function (e) { + void 0 === e && (e = null), (this.txt_max.visible = !1); + var i = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + n = i.name; + for (var s in n) + if (n[s].ringid == this.curCfg.pos) { + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), this.mcGroup.addChild(this.mc)), + this.mcName != n[s].ringpc.ringpcid && this.mc.playFileEff(ZkSzi.RES_DIR_EFF + n[s].ringpc.ringpcid, -1), + (this.strengthen_name.source = n[s].ringpc.ringname); + break; + } + if (1 == this.curCfg.pos) this.bt_lv.visible = !0; + else { + this.bt_lv.visible = !1; + for (var a = t.caJqU.ins().otherPlayerEquips, r = a.strengthenDic[t.StrengthenType.RingJob], o = !1, l = 0, h = r && r.length; h > l; l++) r[l].pos == this.curCfg.pos && (o = !0); + (this.txt_max.text = t.CrmPU.language_System85), o && (this.txt_max.visible = !0); + } + }), + (i.prototype.setAttr = function (e, i, n) { + var s; + (s = t.JgMyc.ins().roleModel.getRingAttr(e, i, n)), e++, (this.cfg1Dic = t.JgMyc.ins().roleModel.getRingAttr(e, i, n)); + var a, + r, + o, + l, + h, + p = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + u = [], + c = [], + g = [], + d = [], + m = []; + for (r = 0; r < p.attr.length; r++) (a = {}), (a.type = p.attr[r]), (a.value = 0), c.push(a); + var f = 0; + if (s) { + for (var v in s) + for (r = 0; r < s[v].attr.length; r++) { + var _ = {}; + (_.type = s[v].attr[r].type), (f = s[v].attr[r].value), (_.value = f), m.push(_); + } + for (o = 0, l = c.length; l > o; o++) + for (r = 0; r < m.length; r++) { + var y = m[r].type; + y == c[o].type && (c[o].value += m[r].value); + } + var T = []; + for (r = 0; r < c.length; r++) { + var M = m.filter(function (t) { + return t.type == c[r].type; + }); + M[0] && T.push(M[0]); + } + for (r = 0; r < c.length; r++) + for (var C = 0; C < T.length; C++) c[r].type == T[C].type && ((h = t.AttributeData.getItemAttStrByType(c[r], c, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != h && g.push(h)); + } + for (r = 0; r < c.length; r++) c[r].value = 0; + var b = "|C:0xE0AE75&T:" + t.CrmPU.language_Friend_Txt1 + ":||C:0xcbc2b2&T:" + (e - 1) + "|"; + if ((1 == i && g.unshift(b), (m.length = 0), this.cfg1Dic)) { + for (var v in this.cfg1Dic) + for (r = 0; r < this.cfg1Dic[v].attr.length; r++) { + var _ = {}; + (_.type = this.cfg1Dic[v].attr[r].type), (f = this.cfg1Dic[v].attr[r].value), (_.value = f), m.push(_); + } + for (o = 0, l = c.length; l > o; o++) + for (r = 0; r < m.length; r++) { + var y = m[r].type; + y == c[o].type && (c[o].value += m[r].value); + } + var T = []; + for (r = 0; r < c.length; r++) { + var M = m.filter(function (t) { + return t.type == c[r].type; + }); + M[0] && T.push(M[0]); + } + for (r = 0; r < c.length; r++) + for (var I = 0; I < T.length; I++) c[r].type == T[I].type && ((h = t.AttributeData.getItemAttStrByType(c[r], c, 1, !1, !0, "0xE0AE75", "0x28ee01")), "" != h && d.push(h)); + var S = "|C:0xE0AE75&T:" + t.CrmPU.language_Friend_Txt1 + ":||C:0x28ee01&T:" + e + "|"; + d.unshift(S); + } + for (var E = 0, w = g.length; w > E; E++) + d.length < E + ? u.push({ + desc1: g[E], + desc2: null, + }) + : u.push({ + desc1: g[E], + desc2: d[E], + }); + this.setData(u); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.flipPage && (this.flipPage.removeEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), this.flipPage.destory(), (this.flipPage = null)), + (this.mcName = null), + this.mc && (this.mc.destroy(), (this.mc = null)), + (this.dataAry.length = 0), + (this.dataAry = null), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null), + this.iconArrayCollection.removeAll(), + (this.iconArrayCollection = null), + (this.tabArr.length = 0), + (this.tabArr = null), + (this.nextCfg = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerRingView = e), __reflect(e.prototype, "app.OtherPlayerRingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._itemArrayCollection = null), (t.maxHight = 415), (t._type = 0), (t.itemId = 261), (t.ruleId = 0), (t.titleStr = ""), (t.isMoving = !1), (t.skinName = "SkillSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.init(); + }), + (i.prototype.open = function (e) { + e && (this._type = e.type), + 0 == this._type ? ((this.ruleId = 5), (this.titleStr = t.CrmPU.language_System5)) : 1 == this._type && ((this.ruleId = 6), (this.titleStr = t.CrmPU.language_System6)); + }), + (i.prototype.init = function () { + this._scrollViewContainer || + ((this._scrollViewContainer = new t.ScrollViewContainer(this.container)), + this._scrollViewContainer.callFunc([this.onScrollerChange, this.onScrollerEnd, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.OtherPlayerSkillItemView), + (this._itemArrayCollection = new eui.ArrayCollection()), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.txt_get.visible = !1)), + this.updateSkillList(); + }), + (i.prototype.updateSkillList = function () { + t.KHNO.ins().remove(this.updateSkillList, this); + var e, + i, + n, + s, + a = t.caJqU.ins().otherPlayerEquips.skills, + r = t.caJqU.ins().otherPlayerEquips.job, + o = 0, + l = -1, + h = []; + for (var p in t.VlaoF.SkillConf) + if (((e = t.VlaoF.SkillConf[p]), (o = 0), t.mAYZL.ins().isCheckOpen(e.isShowNeed) && !e.isDelete)) { + if (e.vocation == r || 0 == e.vocation) { + (i = a[e.id]), i && (o = i.skillLevel), (n = t.VlaoF.SkillsLevelConf[e.id][o]), (s = t.VlaoF.SkillsLevelConf[e.id][o + 1]); + var u = !0; + if (e) { + if (1 == this._type) { + if (3 != e.skillClass) continue; + } else if (1 != e.skillClass) continue; + (l = -1), + n + ? h.push({ + skillId: e.id, + level: o, + name: e.name, + state: l, + dragName: "skillIcon_" + e.skillType + h.length, + icon: n.skillName, + isMax: !s, + isUpgrade: u, + skillType: e.skillType, + }) + : h.push({ + skillId: e.id, + level: o, + name: e.name, + state: l, + dragName: "skillIcon_" + e.skillType + h.length, + icon: s.skillName, + isMax: !s, + isUpgrade: u, + skillType: e.skillType, + }); + } + } + this._itemArrayCollection.replaceAll(h); + } + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[this.itemId]; + t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + e.itemid, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + } + ); + }), + (i.prototype.onDragStart = function (t) { + (this.isMoving = !0), (this._scroller.scrollPolicyV = eui.ScrollPolicy.OFF); + }), + (i.prototype.onDragEnd = function (t) { + (this.isMoving = !1), (this._scroller.scrollPolicyV = eui.ScrollPolicy.AUTO); + }), + (i.prototype.onScrollerChange = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.removeListener(); + }), + (i.prototype.onScrollerEnd = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.addListener(); + }), + (i.prototype.callFunc = function (e, i, n) { + (this.curIdx = e), (this.curSkillId = i), (this.curSkillLev = n), t.NGcJ.ins().send_5_3(i); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this); this._list.numChildren > 0; ) { + var i = this._list.getChildAt(0); + i.destroy(), (i = null); + } + this._scrollViewContainer.destory(), (this._scrollViewContainer = null), this._itemArrayCollection.removeAll(), (this._itemArrayCollection = null), t.lEYZI.Naoc(this.container); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerBasicSkillView = e), __reflect(e.prototype, "app.OtherPlayerBasicSkillView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.prototype.closeTips = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_CLOSE_SKILL_DESC); + }), + (i.prototype.showTips = function (e) { + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_SKILL_DESC, e); + }), + i + ); + })(t.RoleSkillItemView); + (t.OtherPlayerSkillItemView = e), __reflect(e.prototype, "app.OtherPlayerSkillItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.iconBg = "qh_icon_bg"), (i.iconUrl = t.CrmPU.language_Omission_txt43), (i.selectPosLv = 0), (i.pointAry = []), (i.itemSlotAry = []), (i.skinName = "StrengthenSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (!this.pointAry.length) { + for (var n = void 0, s = 0; 8 > s; s++) + (n = this.icon_group.getChildByName("icon_" + s)), + this.pointAry.push({ + x: n.x, + y: n.y, + }), + this.itemSlotAry.push(n); + (this.itemList.itemRenderer = t.StrengthenAttrItemView), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.itemList.dataProvider = this.itemArrayCollection), + (this.txt_consume.text = t.CrmPU.language_Omission_txt4), + (this.txt_get.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")); + } + this.updateData(); + }), + (i.prototype.updateData = function () { + var e = t.caJqU.ins().otherPlayerEquips, + i = e.strengthenDic[t.StrengthenType.Equip]; + if (!i.length) for (var n = void 0, s = 1; 8 >= s; s++) (n = new t.StrengthenData()), (n.lv = 0), (n.pos = s), i.push(n); + if (((this.group2.visible = !1), i)) { + var a = void 0, + n = void 0, + r = i[0].lv; + (this.selectPosLv = r), (this.selectPos = 1); + for (var o = 7, s = 0; 8 > s; s++) + (a = this.itemSlotAry[s]), + (n = i[s]), + a.setData(t.CrmPU.language_Omission_txt43[s][0], t.CrmPU.language_Omission_txt43[s][1], n.lv), + n.lv < r && + ((r = n.lv), + (this.selectPosLv = n.lv), + (this.selectPos = n.pos), + (o = s - 1), + (this.txt_desc.text = t.CrmPU.language_Omission_txt43[s][1] + t.CrmPU.language_Common_154 + ":" + r + t.CrmPU.language_Common_1), + (this.txt_desc2.text = r + 1 + t.CrmPU.language_Common_1)); + o = 0 > o ? 7 : o; + for (var l = void 0, h = void 0, s = 0; 8 > s; s++) (l = this.pointAry[s]), (h = Math.abs((this.selectPos - 1 + s) % 8)), (a = this.itemSlotAry[h]), (a.x = l.x), (a.y = l.y); + var p = t.VlaoF.AttrLookupConfig[t.StrengthenType.Equip]; + if (p) { + for (var u = p.name, s = 0; 8 > s; s++) + if (+u[s].equipid == this.selectPos) { + (this.selectImg.source = u[s].equippc.equippcid), (this.selectName.source = u[s].equippc.equipname); + break; + } + n = i[o]; + var c = t.VlaoF.EquipStrengthenConfig[n.pos][n.lv], + g = t.VlaoF.EquipStrengthenConfig[this.selectPos][r + 1]; + this.txt_max.visible = !g; + var d = {}, + m = {}, + f = [], + v = void 0, + _ = null, + y = []; + if (c) for (var s = 0; s < c.attrnew.length; s++) m[c.attrnew[s].type] = c.attrnew[s].value; + if (g) for (var s = 0; s < g.attrnew.length; s++) d[g.attrnew[s].type] = g.attrnew[s].value; + for (var s = 0; s < p.attrnew.length; s++) + c + ? ((_ = null), + (v = p.attrnew[s].des + ":"), + (y = p.attrnew[s].att), + y.length > 1 ? ((v += m[y[0]] ? m[y[0]] : 0), (v += "-"), (v += m[y[1]] ? m[y[1]] : 0)) : ((v += "+"), (v += m[y[0]] ? m[y[0]] : 0)), + g && ((_ = p.attrnew[s].des + ":"), y.length > 1 ? ((_ += d[y[0]] ? d[y[0]] : 0), (_ += "-"), (_ += d[y[1]] ? d[y[1]] : 0)) : ((_ += "+"), (_ += d[y[0]] ? d[y[0]] : 0)))) + : g && + ((v = p.attrnew[s].des + ":0"), + (_ = p.attrnew[s].des + ":"), + (y = p.attrnew[s].att), + y.length > 1 ? ((_ += d[y[0]] ? d[y[0]] : 0), (_ += "-"), (_ += d[y[1]] ? d[y[1]] : 0)) : ((_ += "+"), (_ += d[y[0]] ? d[y[0]] : 0))), + f.push({ + desc1: v, + desc2: _, + }); + this.itemArrayCollection.replaceAll(f); + } + } + }), + (i.prototype.init = function () {}), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = (i.localToGlobal(), t.VlaoF.StdItems[this.selectedId]), + s = i.localToGlobal(); + if (n) { + var a = t.TipsType.TIPS_EQUIP; + (a = n.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } + } + }), + (i.prototype.getItemVisible = function () { + this.txt_get.visible = !1; + var e; + if (this.cfg1Dic) { + for (var i in this.cfg1Dic) { + e = this.cfg1Dic[i].cost[0].id; + break; + } + var n = t.VlaoF.GetItemRouteConfig[e], + s = t.GlobalData.sectionOpenDay, + a = n.itemstr; + (this.txt_get.textFlow = null), + n.openParam && s < n.openParam.openDay + ? (this.txt_get.visible = !1) + : n.Route + ? ((this.txt_get.textFlow = t.hETx.qYVI("" + a + "")), (this.txt_get.visible = !0)) + : (this.txt_get.visible = !1); + } + }), + (i.prototype.refreshRedDot = function () { + (this.redDot.param = null), this.showConsume(this.curCfg); + }), + (i.prototype.onRefreshStrengthen = function () { + t.AHhkf.ins().Uvxk(t.OSzbc.STRENGTHEN), this.setStrengthenData(); + }), + (i.prototype.setStrengthenData = function () { + this.selectedId = -1; + var e = t.JgMyc.ins().roleModel.getCurStrengthenData(t.StrengthenType.Equip), + i = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Equip]; + if (((this.temp = e), e)) { + this.iconUrl = [ + ["qh_icon_wuqi", "武器"], + ["qh_icon_yifu", "衣服"], + ["qh_icon_yaodai", "腰带"], + ["qh_icon_xiezi", "鞋子"], + ["qh_icon_jiezhi", "戒指"], + ["qh_icon_huwan", "护腕"], + ["qh_icon_xianglian", "项链"], + ["qh_icon_toukui", "头盔"], + ]; + var n = void 0, + s = void 0; + this.setAttr(e[0], e[1]); + var a = e[1], + r = [], + o = [], + l = void 0, + h = void 0, + p = void 0, + u = a - 1, + c = a - 1; + for (p = 0; p < i.length; p++) { + var g = i[p]; + this.strenghtenLvArr[g.pos - 1] = g.lv; + } + for (p = 0; p < this.iconUrl.length; p++) + 1 == a + ? ((l = this.iconUrl[p]), (h = this.strenghtenLvArr[p])) + : ((l = this.iconUrl[p + a - 1]), (h = this.strenghtenLvArr[p + a - 1]), l || ((l = this.iconUrl[a - 1 - u]), u--), null == h && ((h = this.strenghtenLvArr[a - 1 - c]), c--)), + o.push(h), + (r[p] = l); + var d = [], + m = void 0; + for (u = a - 1, p = 0; p < i.length; p++) 1 == a ? (m = i[p]) : ((m = i[p + a - 1]), m || ((m = i[a - 1 - u]), u--)), (d[p] = m); + var f = d.filter(function (t) { + return 125 == t.lv; + }); + for (p = 0; p < this.iconArr.length; p++) + 0 == p ? ((n = 8 == f.length ? 0 : 1), (s = t.VlaoF.EquipStrengthenConfig[e[1]][e[0]]), this.showConsume(s), (this.curCfg = s)) : (n = 0), + this.iconArr[p].setStengthenData(this.iconBg, r[p][0], r[p][1], o[p], n); + } else { + for (var p = 0, v = this.iconArr.length; v > p; p++) this.iconArr[p].setStengthenData(this.iconBg, this.iconUrl[p][0], this.iconUrl[p][1], this.strenghtenLvArr[p], 0); + var s = t.VlaoF.EquipStrengthenConfig[1][1]; + (this.curCfg = s), this.setAttr(1, 1, !0), this.showConsume(s); + } + }), + (i.prototype.showConsume = function (e) { + if ((void 0 === e && (e = null), (this.txt_get.visible = !1), !e)) return (this.img_money.visible = !1), void (this.txt_consume.visible = !1); + if (!this.cfg1Dic) + return ( + (this.img_money.visible = !1), + (this.txt_consume.visible = !1), + (this.btn_strengthen.visible = !1), + (this.txt_max.visible = !0), + (this.strengthen_item.visible = !1), + (this.strengthen_icon.visible = !1), + void t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_RED) + ); + this.getItemVisible(), (this.btn_strengthen.visible = !0), (this.img_money.visible = !0), (this.txt_consume.visible = !0); + var i = e.cost[0].type, + n = e.cost[0].id, + s = e.cost[0].count; + this.selectedId = n; + if (0 == i) { + var a = t.VlaoF.StdItems[n]; + this.img_money.source = a.icon + ""; + } else { + var r = t.VlaoF.NumericalIcon[n]; + this.img_money.source = r.icon + ""; + } + var o, + l = t.ThgMu.ins().getItemCountById(n); + l + ? l >= s + ? ((o = t.CrmPU.language_Omission_txt4 + ": |C:0x2eb52d&T:" + l + "|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))) + : ((o = t.CrmPU.language_Omission_txt4 + ": |C:0xe50000&T:" + l + "|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))) + : ((o = t.CrmPU.language_Omission_txt4 + ": |C:0xe50000&T:0|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))); + var h, + p = t.VlaoF.AttrLookupConfig[t.StrengthenType.Equip], + u = p.name; + for (var c in u) + if (u[c].equipid == e.pos) { + this.strengthen_icon.setData(u[c].equippc.equippcid), (this.strengthen_name.source = u[c].equippc.equipname), (h = e.lv); + var g = t.JgMyc.ins().roleModel.dicStrengthen[e.pos]; + t.VlaoF.EquipStrengthenConfig[e.pos][h] + ? this.strengthen_item.setData({ + desc1: g + ":" + (e.lv - 1) + t.CrmPU.language_Common_1, + desc2: h + t.CrmPU.language_Common_1, + }) + : this.strengthen_item.setData({ + desc1: g + ":" + (e.lv - 1) + t.CrmPU.language_Common_1, + desc2: null, + }); + break; + } + }), + (i.prototype.setAttr = function (e, i, n) { + void 0 === n && (n = !1); + var s, + a, + r = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Equip], + o = 1, + l = !1; + if (r.length > 0) { + o = r[0].lv; + for (var h = 0; h < r.length; h++) o < r[h].lv && ((o = r[h].lv), (l = !0)); + } + n + ? ((s = t.JgMyc.ins().roleModel.getStrengthenAttr(e, 1, 1)), (this.cfg1Dic = t.JgMyc.ins().roleModel.getStrengthenAttr(e, 1, 1))) + : ((a = 1 != i || l ? 8 * o - (8 - i + 1) : 8 * o), (s = t.JgMyc.ins().roleModel.getStrengthenAttr(e, i - 1, a)), a++, (this.cfg1Dic = t.JgMyc.ins().roleModel.getStrengthenAttr(e, i, a))); + var p, + u, + c, + g, + d, + m = t.VlaoF.AttrLookupConfig[1], + f = [], + v = [], + _ = [], + y = [], + T = []; + for (u = 0; u < m.attr.length; u++) (p = {}), (p.type = m.attr[u]), (p.value = 0), v.push(p); + var M = 0; + if (s) { + for (var C in s) + for (u = 0; u < s[C].attr.length; u++) { + var b = {}; + (b.type = s[C].attr[u].type), (M = s[C].attr[u].value), n ? (b.value = 0) : (b.value = M), T.push(b); + } + for (c = 0, g = v.length; g > c; c++) { + for (u = 0; u < T.length; u++) { + var I = T[u].type; + I == v[c].type && (v[c].value += T[u].value); + } + (d = t.AttributeData.getItemAttStrByType(v[c], v, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != d && _.push(d); + } + } + var S = t.CrmPU.attrMinMax[5]; + for (u = 0, g = _.length; g > u; u++) + if (_[u].indexOf(S) > -1) { + var E = _.splice(u, 1); + _.unshift(E[0]); + break; + } + for (u = 0; u < v.length; u++) v[u].value = 0; + if (((T.length = 0), this.cfg1Dic)) { + for (var C in this.cfg1Dic) + for (u = 0; u < this.cfg1Dic[C].attr.length; u++) { + var b = {}; + (b.type = this.cfg1Dic[C].attr[u].type), (M = this.cfg1Dic[C].attr[u].value), (b.value = M), T.push(b); + } + for (c = 0, g = v.length; g > c; c++) { + for (u = 0; u < T.length; u++) { + var I = T[u].type; + I == v[c].type && (v[c].value += T[u].value); + } + (d = t.AttributeData.getItemAttStrByType(v[c], v, 1, !1, !0, "0xE0AE75", "0x28ee01")), "" != d && y.push(d); + } + } + for (u = 0, g = y.length; g > u; u++) + if (y[u].indexOf(S) > -1) { + var E = y.splice(u, 1); + y.unshift(E[0]); + break; + } + for (var w = 0, A = _.length; A > w; w++) + y.length < w + ? f.push({ + desc1: _[w], + desc2: null, + }) + : f.push({ + desc1: _[w], + desc2: y[w], + }); + this.setData(f); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this); + }), + i + ); + })(t.gIRYTi); + (t.OtherPlayerStrengthenView = e), __reflect(e.prototype, "app.OtherPlayerStrengthenView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 63), (i.titleStr = t.CrmPU.language_System67), (i.currRevealItem = -1), (i.skinName = "TitleViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.showView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_TITLE2_OPEN); + }), + (i.prototype.hideView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.OTHER_PLAYER_TITLE2_CLOSE); + }), + (i.prototype.init = function () { + (this.currRevealItem = t.caJqU.ins().otherPlayerEquips.propSet.getTITLE()), t.MouseScroller.bind(this.scroller), (this.lbNoTitle.visible = !1), this.updateData(); + }), + (i.prototype.updateData = function () { + this.onClearItemList(); + for (var e = t.caJqU.ins().otherPlayerEquips, i = e.titleDataArr, n = 0; n < i.length; n++) { + var s = new t.TitleItemView(1); + s.setData(i[n]), s.onShowSelect(!1), s.setShorten(!0), s.setReveal(i[n].titleId == this.currRevealItem), this.listTitle.addChild(s); + } + this.lbNoTitle.visible = i.length <= 0 ? !0 : !1; + }), + (i.prototype.onClearItemList = function () { + for (; this.listTitle.numChildren > 0; ) { + var t = this.listTitle.getChildAt(0); + this.listTitle.removeChild(t), t.destroy(), (t = null); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.onClearItemList(); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerTitleView = e), __reflect(e.prototype, "app.OtherPlayerTitleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.currRevealItem = -1), (t.skinName = "TitleViewSkin2"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.currRevealItem = t.caJqU.ins().otherPlayerEquips.propSet.getCurCustomTitle()), t.MouseScroller.bind(this.scroller), (this.lbNoTitle.visible = !1), this.updateData(); + }), + (i.prototype.updateData = function () { + this.onClearItemList(); + for (var e = t.caJqU.ins().otherPlayerEquips, i = e.titleDataArr2, n = 0; n < i.length; n++) { + var s = new t.TitleItemView2(1); + s.setData(i[n]), s.onShowSelect(!1), s.setShorten(!0), s.setReveal(i[n].titleId == this.currRevealItem), this.listTitle.addChild(s); + } + this.lbNoTitle.visible = i.length <= 0 ? !0 : !1; + }), + (i.prototype.onClearItemList = function () { + for (; this.listTitle.numChildren > 0; ) { + var t = this.listTitle.getChildAt(0); + this.listTitle.removeChild(t), t.destroy(), (t = null); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.onClearItemList(); + }), + i + ); + })(t.BaseView); + (t.OtherPlayerTitleView2 = e), __reflect(e.prototype, "app.OtherPlayerTitleView2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.pkArr = [ + { + img: "m_heping", + index: 1, + }, + { + img: "m_zudui", + index: 2, + }, + { + img: "m_hanghui", + index: 3, + }, + { + img: "m_didui", + index: 4, + }, + { + img: "m_quanti", + index: 5, + }, + { + img: "m_zhenying", + index: 6, + }, + ]), + (t.horizontalCenter = -350), + (t.bottom = 37), + (t.skinName = "PhoneAtkModelViewSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + this.vKruVZ(this.pkImage1, this.onClickPk), + this.vKruVZ(this.pkImage2, this.onClickPk), + this.vKruVZ(this.pkImage3, this.onClickPk), + this.vKruVZ(this.pkImage4, this.onClickPk), + this.vKruVZ(this.pkImage5, this.onClickPk), + this.updatePKState(); + }), + (i.prototype.updatePKState = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = void 0; + this.pkbg.visible = !1; + for (var n = 0; n < this.pkArr.length; n++) + (i = this.pkArr[n].index), + 6 > i && (this["pkImage" + i].source = this.pkArr[n].img), + i == e.propSet.getPKtype() && 6 > i && ((this["pkImage" + i].source = this.pkArr[n].img + "1"), (this.pkbg.y = this["pkImage" + i].y), (this.pkbg.visible = !0)); + } + }), + (i.prototype.onClickPk = function (e) { + switch (e.currentTarget) { + case this.pkImage1: + t.PkMgr.ins().s_24_3(1); + break; + case this.pkImage2: + t.PkMgr.ins().s_24_3(2); + break; + case this.pkImage3: + t.PkMgr.ins().s_24_3(3); + break; + case this.pkImage4: + t.PkMgr.ins().s_24_3(4); + break; + case this.pkImage5: + t.PkMgr.ins().s_24_3(5); + } + t.mAYZL.ins().close(this); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.fEHj(this.pkImage1, this.onClickPk), + this.fEHj(this.pkImage2, this.onClickPk), + this.fEHj(this.pkImage3, this.onClickPk), + this.fEHj(this.pkImage4, this.onClickPk), + this.fEHj(this.pkImage5, this.onClickPk); + }), + i + ); + })(t.gIRYTi); + (t.PhoneAtkModelView = e), __reflect(e.prototype, "app.PhoneAtkModelView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "PhoneMainButtonSkin"), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "ruleIconBase", { + get: function () { + return this._ruleIconBase; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "configid", { + get: function () { + return this._configid; + }, + set: function (t) { + this._configid = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.init = function () { + var e = t.VlaoF.PlayFunConfig[this._configid]; + if (e) { + var i = e.phoneCls ? e.phoneCls : "app.RuleIconBase", + n = egret.getDefinitionByName(i); + (this._ruleIconBase = new n(e.id, this)), this._ruleIconBase.addEventListeners(), this._ruleIconBase.addCountEvents(); + } + }), + (i.prototype.closeButton = function () { + this._ruleIconBase && (this._ruleIconBase.removeAll(), (this._ruleIconBase = null)); + }), + i + ); + })(eui.Button); + (t.PhoneMainButton = e), __reflect(e.prototype, "app.PhoneMainButton"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._selfMapId = 0), + (t.skillType = !1), + (t.currentLevel = 0), + (t.currentMultipleExp = -1), + (t.doubleMcIsPlay = !1), + (t.pkArr = [ + { + img: "m_heping", + index: 1, + }, + { + img: "m_zudui", + index: 2, + }, + { + img: "m_hanghui", + index: 3, + }, + { + img: "m_didui", + index: 4, + }, + { + img: "m_quanti", + index: 5, + }, + { + img: "m_zhenying", + index: 6, + }, + ]), + (t.touchPointID = 0), + (t.petState = 0), + (t.switchRedNum = 0), + (t.switchRedArr = {}), + (t._skillTipsRoleLevel = 0), + (t._isShow = !1), + (t.skillTipsShowLimit = !1), + (t.newMsgInfo = {}), + (t.skillNum = 5), + (t.payExpTime = 0), + (t.npcTimers = 0), + (t.duoBaoTimers = 0), + (t.duoBaoTxt = ""), + (t.sendTime = 0), + (t.percentHeight = 100), + (t.percentWidth = 100), + (t.touchEnabled = !1), + (t.skinName = "PhoneMainSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.shapeArray = []), + (this.buttonAry = [this.bagButton, this.roleButton, this.pkButton, this.aiButton, this.shopButton, this.firstRechargeBtn, this.vipButton]), + (t.RuleIconBase.updateShow = this.updateRuleAndSort.bind(this)), + (t.RuleIconBase.update = this.updateRule.bind(this)), + (t.RuleIconBase.updateCount = this.updateCount.bind(this)), + (this.startPoint = new egret.Point()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (var n = 0; n < this.buttonAry.length; n++) this.buttonAry[n].init(); + this.onResize(), + (this.switchRedArr = {}), + (this.packUpButton.iconDisplay.scaleX = -1), + (this.packUpGroup.visible = !0), + (this.skillGroup.right = 0), + (this.skillGroup.visible = !0), + (this.skillShapeGroup.visible = !0), + (this.buttonGroup.right = -376), + (this.buttonGroup.visible = !0), + (this.switchRed.visible = !1), + (this.recog = 0), + (this.currentLevel = 0), + (this.currentMultipleExp = -1), + (this.skillType = !1), + (this.petAckButton.visible = this.petFollowButton.visible = this.bagMaxImage.visible = this.skillTipsImage.visible = this.firstRechargeBtn.visible = this.vipButton.visible = !1), + (this.pkGroup.visible = !1), + (this.pkbg.visible = !1), + (this.rightMenuView.visible = !1), + (this.timerGrp.visible = this.npcTimerGrp.visible = this.duoBaoTimerGrp.visible = !1), + (this.buffList1.itemRenderer = t.ImageBase), + (this.buffList.itemRenderer = t.ImageBase), + (this.hpMc = t.ObjectPool.pop("app.MovieClip")), + (this.mpMc = t.ObjectPool.pop("app.MovieClip")); + var hpEff, mpEff; + if (0 == Main.vZzwB.uiStyle) { + (hpEff = "eff_hq"), (mpEff = "eff_lq"); + (this.hpMc.x = 60), (this.mpMc.x = -10); + } else if (1 == Main.vZzwB.uiStyle) { + this.hpScroller.horizontalCenter = this.hpTipsGrp.horizontalCenter = -250; + this.mpScroller.horizontalCenter = this.mpTipsGrp.horizontalCenter = -204; + this.bg1.source = "m_bg_zhuui1_1"; + this.bg2.source = "m_bg_zhuui2_1"; + (hpEff = "hp_eff"), (mpEff = "mp_eff"); + (this.hpMc.scaleX = this.hpMc.scaleY = this.mpMc.scaleX = this.mpMc.scaleY = 1.1), (this.hpMc.x = 21); + this.mpMc.x = 22.5; + this.shopButton.width = this.shopButton.height = 88; + this.shopButton.bottom = 29; + this.shopButton.horizontalCenter = 233; + this.shopButton.icon = "btn_shop"; + } + this.hpGroup.addChild(this.hpMc), + this.mpGroup.addChild(this.mpMc), + this.hpMc.playFileEff(ZkSzi.RES_DIR_EFF + hpEff, -1), + this.mpMc.playFileEff(ZkSzi.RES_DIR_EFF + mpEff, -1), + (this.chatList.itemRenderer = t.chatListItem), + (this.chatArr = new eui.ArrayCollection()), + (this.chatList.dataProvider = this.chatArr); + for (var n = 0; 9 > n; n++) { + this.vKruVZ(this["skillButton" + n], this.onClickSkill); + var s = new egret.Shape(); + (s.visible = !1), (s.x = this["skillButton" + n].x + 4), (s.y = this["skillButton" + n].y + 4), (s.dwResumeTick = 0), this.shapeArray.push(s), this.skillShapeGroup.addChild(s); + } + for (var a = 0; a < this.skillNum; a++) this["itemKey" + a].addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.stageBeginFunction, this); + (this.msgdelay = []), + (this.msgAry = [this.msg1, this.msg2, this.msg3]), + t.ubnV.ihUJ || ((this.clientguideTips = new t.ClientguideTips()), this.clientguideTips.init()), + (this.donationGuideTips = new t.DonationGuideTips()), + this.donationGuideTips.init(this.donationGuideTipsGrp), + (this.firstChargeTips = new t.FirstChargeTips()), + this.firstChargeTips.init(this.firstChargeTipsGrp), + (this.secondChargeTips = new t.SecondChargeTips()), + this.secondChargeTips.init(this.secondChargeTipsGrp), + (this.violentGuideTips = new t.ViolentGuideTips()), + this.violentGuideTips.init(this.violentGuideTipsGrp), + (this.vipGuideTips = new t.VipGuideTips()), + this.vipGuideTips.init(this.vipGuideTipsGrp), + this.keyInfo(), + this.setLockChar(!1), + this.updateBuff(), + this.updatePlayerInfo(), + this.updateserverTime(), + this.updateSkill(), + this.updateChat(), + this.vKruVZ(this.pkImage1, this.onClickPk), + this.vKruVZ(this.pkImage2, this.onClickPk), + this.vKruVZ(this.pkImage3, this.onClickPk), + this.vKruVZ(this.pkImage4, this.onClickPk), + this.vKruVZ(this.pkImage5, this.onClickPk), + this.vKruVZ(this.modelButton, this.onClick), + this.vKruVZ(this.petAckButton, this.onClick), + this.vKruVZ(this.petFollowButton, this.onClick), + this.vKruVZ(this.switchGrp, this.onClick), + this.vKruVZ(this.packUpButton, this.onClick), + this.vKruVZ(this.chatGroup, this.onClick), + this.vKruVZ(this.switchRoleButton, this.onClick), + this.vKruVZ(this.stormButton, this.onClick), + this.vKruVZ(this.lockIcon, this.onClick), + this.vKruVZ(this.skillTipsImage, this.onClick), + this.vKruVZ(this.suitBtn, this.onClick), + this.vKruVZ(this.rechargeButton, this.onClick), + this.vKruVZ(this.drugBtn, this.onClick), + this.vKruVZ(this.pickupBtn, this.onClick), + this.addBeginEvent(this.stormButton, this.beginFunction), + this.vKruVZ(this.donationGuideTipsGrp, this.onClick), + this.vKruVZ(this.firstChargeTipsGrp, this.onClick), + this.vKruVZ(this.secondChargeTipsGrp, this.onClick), + this.vKruVZ(this.violentGuideTipsGrp, this.onClick), + this.vKruVZ(this.vipGuideTipsGrp, this.onClick), + this.vKruVZ(this.doubleGrp, this.doubleExpTips), + this.vKruVZ(this.hpTipsGrp, this.doubleExpTips), + this.vKruVZ(this.mpTipsGrp, this.doubleExpTips), + t.aTwWrO.ins().getStage().addEventListener(egret.Event.RESIZE, this.onResize, this), + this.HFTK(t.Nzfh.ins().post_petChange, this.updatePet), + this.HFTK(t.PetSettingMgr.ins().postPetNum, this.updatePet), + this.HFTK(t.Nzfh.ins().post_g_0_3, this.initRuleList), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updatePlayerInfo), + this.HFTK(t.Nzfh.ins().post_g_0_10, this.updateserverTime), + this.HFTK(t.Nzfh.ins().postUpdateTarget, this.updateState), + this.HFTK(t.NGcJ.ins().postg_5_1, this.updateSkill), + this.HFTK(t.NGcJ.ins().postg_5_2, this.updateSkill), + this.HFTK(t.NGcJ.ins().postg_5_5, this.updateSkillCD), + this.HFTK(t.ChatMgr.ins().postChatInfo, this.updateChat), + this.HFTK(t.ChatMgr.ins().postPrivateChat, this.updateChat), + this.HFTK(t.ChatMgr.ins().post_9_12, this.updateChat), + this.HFTK(t.ChatMgr.ins().post_9_15, this.updateChat), + this.HFTK(t.VrAZQ.ins().postUpdateTask, this.updateTask), + this.HFTK(t.Nzfh.ins().post_phoneSkillTips, this.updateSkillTips), + this.HFTK(t.NGcJ.ins().postg_5_2, this.updateSkillTips), + this.HFTK(t.ThgMu.ins().post_8_1, this.bagAddItem), + this.HFTK(t.ThgMu.ins().post_8_3, this.bagDelItem), + this.HFTK(t.ThgMu.ins().post_8_4, this.bagChangeItem), + this.HFTK(t.MailMgr.ins().post_50_2, this.newMailFun), + this.HFTK(t.KWGP.ins().postReqList, this.newFriendFun), + this.HFTK(t.XZAqnu.ins().post_13_1, this.newPrivateDealsFun), + this.HFTK(t.XZAqnu.ins().post_deleteInfo, this.newPrivateDealsFun), + this.HFTK(t.Qskf.ins().post_onReceiveAppJoinMsg, this.newTeamFun), + this.HFTK(t.Nzfh.ins().post_0_74, this.newRankGuildFun), + this.HFTK(t.Nzfh.ins().post_deleteType, this.newRankGuildFun), + this.HFTK(t.XwoNAr.ins().post_17_11, this.updateKeyUI), + this.HFTK(t.XwoNAr.ins().post_17_12, this.updateKeyUI), + this.HFTK(t.ThgMu.ins().postKeyXY, this.keyInfo), + this.HFTK(t.Nzfh.ins().post_g_0_13, this.updateMap), + this.HFTK(t.BuffMgr.ins().post_4_6, this.updateSavior), + this.HFTK(t.BuffMgr.ins().post_updateSavior, this.updateSavior), + this.HFTK(t.BuffMgr.ins().postUpdateBuff, this.updateBuff), + this.HFTK(t.Nzfh.ins().post_updateOnHook, this.updateOnHook), + this.HFTK(t.Nzfh.ins().post_AttackState, this.updateOnHook), + this.HFTK(t.ChatMgr.ins().postAddExp, this.addExp), + this.HFTK(t.bfhrJ.ins().post_GuildInfo, this.updataGuildInfo), + this.HFTK(t.PKRX.ins().post_1_7, this.npcTimer), + this.HFTK(t.PKRX.ins().post_clearNpcTime, this.clearNpcTime), + this.HFTK(t.TQkyOx.ins().postDuoBaoCD, this.duoBaoTimer), + this.HFTK(t.PKRX.ins().post_clearDuoBaoTime, this.clearDuoBaoTime), + this.HFTK(t.Nzfh.ins().post_pk, this.autoClickPK), + this.HFTK(t.Nzfh.ins().post_g_0_253, this.updateMsg), + this.HFTK(t.XwoNAr.ins().post_17_3, this.updateWIFI), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateWIFI), + this.HFTK(t.XwoNAr.ins().postSetWIFI, this.updateWIFI), + t.ckpDj.ins().addEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChat, this), + t.ckpDj.ins().addEvent(t.MainEvent.HIDE_SKILL_TIPS, this.hideSkillTips, this), + t.ckpDj.ins().addEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, this.updateDisposableredpoint, this), + t.ckpDj.ins().addEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().addEvent(t.CompEvent.TimerEvent, this.onTimerStart, this), + t.ckpDj.ins().addEvent(t.CompEvent.Clear_Timer_Event, this.onClearTimer, this), + egret.startTick(this.onEnterFrame, this), + this.updatePet(), + this.updatePlayerState(), + this.clickStage(), + this.updateWIFI(), + t.ubnV.ihUJ + ? ((this.rechargeButton.visible = !1), + this.rechargeEff && (this.rechargeEff.destroy(), (this.rechargeEff = null)), + this.HFTK(t.TQkyOx.ins().post_25_1, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateCrossServerAct), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateCrossServerAct)) + : ((this.rechargeButton.visible = !0), + this.rechargeEff || + ((this.rechargeEff = t.ObjectPool.pop("app.MovieClip")), + (this.rechargeEff.blendMode = egret.BlendMode.ADD), + (this.rechargeEff.scaleX = this.rechargeEff.scaleY = 1), + (this.rechargeEff.x = 289), + (this.rechargeEff.y = 4), + this.mcGroup.addChild(this.rechargeEff)), + this.rechargeEff.playFileEff(ZkSzi.RES_DIR_EFF + "eff_czan", -1)), + t.KHNO.ins().tBiJo(3e3, 0, this.getDummy, this); + }), + (i.prototype.getDummy = function () { + t.NWRFmB.ins().getDummy(); + }), + (i.prototype.clickStage = function () { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.clickStage, this), this.rightMenuView && (this.rightMenuView.visible = !1); + }), + (i.prototype.stageBeginFunction = function (e) { + var i = e.touchPointID, + n = e.stageX, + s = e.stageY; + (this.dragImg.x = 0), (this.dragImg.y = 0), (this.dragImg.visible = !1); + for (var a = 0; a < this.skillNum; a++) + if (this["itemKey" + a].hitTestPoint(n, s)) { + (this._touchPointID = i), + (this.clickIdx = a), + (this.delayTime = 0), + (this.startPoint = this["itemKey" + a].localToGlobal(0, 0)), + (this.dragImg.source = this["itemKey" + a].source), + (this.XTouch = n - this.startPoint.x), + (this.YTouch = s - this.startPoint.y), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.stageTouchMoveFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.stageEndFunction, this); + break; + } + }), + (i.prototype.stageEndFunction = function (e) { + if (this._touchPointID == e.touchPointID) { + (this.dragImg.visible = !1), (this.dragImg.x = 0), (this.dragImg.y = 0); + var i = t.XwoNAr.ins().keyInfo[this.clickIdx]; + if (this.delayTime >= 5) { + for (var n = -1, s = 0; s < this.skillNum; s++) + if (this["itemKey" + s].hitTestPoint(e.stageX, e.stageY)) { + n = s; + break; + } + -1 != n && i ? t.XwoNAr.ins().send_17_12(n, i.type, i.id, this.clickIdx) : i && 0 == i.type && t.XwoNAr.ins().send_17_13(this.clickIdx); + } else if (i) + if (1 == i.type) { + var a = t.NWRFmB.ins().getPayer.getUserSkill(i.id); + if (a && egret.getTimer() > a.dwResumeTick) + if (a.isDisable) { + var r = t.VlaoF.SkillConf[a.nSkillId]; + r && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips110, r.name)); + } else -1 != t.qTVCL.ins().stopBreakSkillAry.indexOf(i.id) && t.qTVCL.ins().YFOmNj(), (t.EhSWiR.m_clickSkillId = i.id); + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips1); + } else if (0 == i.type) { + var o = t.ThgMu.ins().getItemById(i.id); + o && t.pWFTj.ins().useItem(o.series, o.wItemId); + } + (this._touchPointID = 0), + (this.delayTime = 0), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.stageTouchMoveFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.stageEndFunction, this); + } + }), + (i.prototype.stageTouchMoveFunction = function (e) { + if (this._touchPointID == e.touchPointID) { + var i = t.MathUtils.getDistance(this.startPoint.x, this.startPoint.y, e.stageX, e.stageY); + i > 3 + ? (this.delayTime++, (this.dragImg.visible = !0), this.delayTime >= 5 && ((this.dragImg.x = e.stageX - this.XTouch), (this.dragImg.y = e.stageY - this.YTouch))) + : (this.dragImg.visible = !1); + } + }), + (i.prototype.beginFunction = function (e) { + switch (e.currentTarget) { + case this.stormButton: + (this.touchPointID = e.touchPointID), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.moveFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.moveFunction, this); + } + }), + (i.prototype.moveFunction = function (t) { + if (this.touchPointID == t.touchPointID && !this.stormButton.hitTestPoint(t.stageX, t.stageY)) { + var e = t.$stageY < this.swPKGroup.y; + e ? ((this.topImage.source = "m_skillwj2"), (this.bottomImage.source = "m_skillgw1")) : ((this.topImage.source = "m_skillwj1"), (this.bottomImage.source = "m_skillgw2")); + } + }), + (i.prototype.endFunction = function (e) { + if (this.touchPointID == e.touchPointID) { + if (!this.stormButton.hitTestPoint(e.stageX, e.stageY)) { + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.moveFunction, this); + var i = e.$stageY < this.swPKGroup.y; + if (i) t.qTVCL.ins().onClickTab(); + else { + var n = t.qTVCL.ins().getNearestMonster(), + s = t.NWRFmB.ins().getCharRole(n); + s + ? t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System95 + "|C:0xffffff&T:" + s.propSet.getName() + "||") + : t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System104 + "|"); + } + } + (this.topImage.source = "m_skillwj1"), (this.bottomImage.source = "m_skillgw1"); + } + }), + (i.prototype.updateChat = function () { + t.KHNO.ins().remove(this.updateChatList, this), t.KHNO.ins().tBiJo(100, 1, this.updateChatList, this); + }), + (i.prototype.updateChatList = function () { + t.KHNO.ins().remove(this.updateChatList, this); + var e = t.ChatModel.ins().getAllMsgData(), + i = 0; + e.length > 3 && (i = e.length - 3); + var n = []; + for (i; i < e.length; i++) n.push(t.CommonUtils.copyDataHandler(e[i])); + this.chatArr.replaceAll(n), t.KHNO.ins().remove(this.updateChatV, this), t.KHNO.ins().tBiJo(1e3, 1, this.updateChatV, this); + }), + (i.prototype.updateChatV = function () { + t.KHNO.ins().remove(this.updateChatV, this), + this.chatList.height >= this.chatScroller.height ? (this.chatList.bottom = 0) : (this.chatList.bottom = this.chatScroller.height - this.chatList.height); + }), + (i.prototype.updateState = function (e) { + var i = t.NWRFmB.ins().getPayer; + if (i && i.propSet) { + (i.lockTarget = e), (this.recog = e); + var n = t.NWRFmB.ins().getCharRole(e); + if ((n || (n = t.NWRFmB.ins().getDummyChar(e)), n)) + if ( + ((this.hpImage.scaleX = n.propSet.getHp() / n.propSet.getMaxHp()), + (this.lockHpLabel.text = n.propSet.getHp() + "/" + n.propSet.getMaxHp()), + this.setLockChar(!0), + n.isCharRole || n.isDummyCharRole) + ) { + var s = n.propSet.getAP_JOB(), + a = n.propSet.MzYki(), + r = n.propSet.mBjV(); + (this.jobImg.visible = !0), + (this.jobImg.source = "m_job" + s), + (this.lockName.text = a > 0 ? n.charName + " " + a + "转" + r : n.charName + " Lv" + r), + (this.lockIcon.source = "name_" + s + "_" + n.propSet.getSex()); + } else { + (this.jobImg.visible = !1), (this.lockName.text = n.charName); + var o = t.VlaoF.Monster[n.propSet.getACTOR_ID()]; + o && (3 == o.monsterType || 4 == o.monsterType || 8 == o.monsterType || 9 == o.monsterType) ? (this.lockIcon.source = "m_m_lock_2") : (this.lockIcon.source = "m_m_lock_1"); + } + else this.setLockChar(!1); + } + }), + (i.prototype.setLockChar = function (t) { + (this.lockName.visible = t), + (this.jobImg.visible = t), + (this.jobImg.visible = t), + (this.lockHpLabel.visible = t), + (this.hpBg.visible = t), + (this.hpImage.visible = t), + (this.lockNameBg.visible = t), + (this.lockIconBg.visible = t), + (this.lockIcon.visible = t), + (this.rightMenuView.visible = !1); + }), + (i.prototype.updateSkill = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) + for (var i = e.propSet.getAP_JOB(), n = t.VlaoF.SkillLocationConf[i], s = void 0, a = 0; 9 > a; a++) { + if ((s = n[a])) { + var r = t.NWRFmB.ins().getPayer.getUserSkill(s.id); + if (r && r.nLevel) { + var o = t.VlaoF.SkillsLevelConf[s.id][r.nLevel]; + (this["skillButton" + a].skillId = s.id), + (this["skillButton" + a].shapeId = a), + (this["skillButton" + a].isActive = s.isActive), + (this["skillButton" + a].visible = !0), + (this["skillButton" + a].icon = s.skillName), + (this["skillButton" + a].visible = !0); + var l = this.shapeArray[a]; + (l.sumTime = o.cooldownTime), this.updateSkillCD(s.id); + continue; + } + } + this["skillButton" + a].visible = !1; + var h = this.shapeArray[a]; + h.visible = !1; + } + }), + (i.prototype.onClickSkill = function (e) { + var i = t.NWRFmB.ins().getPayer; + if (!i.lockTarget) { + var n = e.currentTarget.isActive; + if (n) { + var s = t.qTVCL.ins().getNearestMonster(); + if (!s) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System104 + "|"); + i.lockTarget = s; + } + } + var a = e.currentTarget.skillId, + r = t.NWRFmB.ins().getPayer.getUserSkill(a); + if (r && egret.getTimer() > r.dwResumeTick) { + var o = t.VlaoF.SkillConf[r.nSkillId]; + o.skillType && + (r.isDisable + ? o && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips110, o.name)) + : (-1 != t.qTVCL.ins().stopBreakSkillAry.indexOf(a) && t.qTVCL.ins().YFOmNj(), (t.EhSWiR.m_clickSkillId = a))); + } + }), + (i.prototype.udpateSkillShape = function (t, e, i) { + var n = 32; + t.graphics.clear(), + (t.visible = !0), + t.graphics.beginFill(0), + (t.alpha = 0.7), + t.graphics.moveTo(n, n), + t.graphics.lineTo(2 * n, n), + t.graphics.drawArc(n, n, n, 0, ((e / i) * 360 * Math.PI) / 180, !1), + t.graphics.lineTo(n, n), + t.graphics.endFill(); + }), + (i.prototype.updateSkillCD = function (e) { + for (var i = t.NWRFmB.ins().getPayer.getUserSkill(e), n = 0; 9 > n; n++) + if (this["skillButton" + n].skillId == e) { + var s = egret.getTimer(), + a = this.shapeArray[n]; + i && i.dwResumeTick > s ? ((a.visible = !0), (a.dwResumeTick = i.dwResumeTick)) : (a.visible = !1); + break; + } + for (var r = t.XwoNAr.ins().keyInfo, o = 0; o < this.skillNum; o++) { + var l = r[o]; + if (l && 1 == l.type) { + var h = t.NWRFmB.ins().getPayer.getUserSkill(l.id); + if (h && h.dwResumeTick > egret.getTimer()) { + (this["skillBarCD" + o].visible = !0), (this["skillBarCD" + o].dwResumeTick = h.dwResumeTick), (this["skillBarCD" + o].sumTime = 1e3); + var p = t.VlaoF.SkillsLevelConf[l.id][h.nLevel]; + p && (this["skillBarCD" + o].sumTime = p.cooldownTime); + } else this["skillBarCD" + o].visible = !1; + } else this["skillBarCD" + o].visible = !1; + } + }), + (i.prototype.updateSkillBarCD = function (t, e, i) { + var n = 55 * (e / t); + this["skillBarCD" + i].height = n > 55 ? 55 : n; + }), + (i.prototype.onEnterFrame = function (t) { + var e, + i, + n = egret.getTimer(); + if (this.skillShapeGroup.visible) + for (var s = void 0, a = 0; a < this.shapeArray.length; a++) + (s = this.shapeArray[a]), s.visible && ((e = s.sumTime), (i = s.dwResumeTick - n), i > 0 ? ((s.visible = !0), this.udpateSkillShape(s, i, e)) : (s.visible = !1)); + for (var r, o = 0; o < this.skillNum; o++) + (r = this["skillBarCD" + o]), r.visible && ((e = r.sumTime), (i = r.dwResumeTick - n), i > 0 ? ((r.visible = !0), this.updateSkillBarCD(e, i, o)) : (r.visible = !1)); + return !1; + }), + (i.prototype.updatePet = function () { + var e = t.NWRFmB.ins().getPayer; + if (((this.petAckButton.visible = this.petFollowButton.visible = !1), e && e.propSet)) { + var i = e.propSet.getAP_JOB(); + i == JobConst.DaoShi && + t.PetSettingMgr.ins().petNum > 0 && + (this.petState ? (this.petState = e.propSet.getPetState()) : ((this.petState = 2), t.PetSettingMgr.ins().send_34_1(2)), (this.petAckButton.visible = this.petFollowButton.visible = !0)); + } + }), + (i.prototype.updatePlayerInfo = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + (this.bindGoldNum.text = t.CommonUtils.zhuanhuan(e.propSet.getBindCoin())), + (this.yuanbaoNum.text = t.CommonUtils.zhuanhuan(e.propSet.getNotBindYuanBao())), + (this.levelLab.text = e.propSet.MzYki() > 0 ? e.propSet.MzYki() + "转" + e.propSet.mBjV() + "级" : e.propSet.mBjV() + "级"), + this.currentLevel > 0 && this.currentLevel < +e.propSet.mBjV() && ((t.Nzfh.ins().phoneSkillTipsIsShow = !1), this.updateSkillTips()), + (this.currentLevel = +e.propSet.mBjV()); + var i = t.VlaoF.LevelUpExp[+e.propSet.mBjV()]; + if (i) { + var n = 100 * +e.propSet.getEXP(), + s = Math.floor(n / i.value); + (this.lvBar.value = s + 2), (this.lvBar.maximum = 100); + } + var a = +e.propSet.getmultipleExp(); + if (((a = a ? a : 0), this.currentMultipleExp > -1 && this.currentMultipleExp != a)) + if (a > this.currentMultipleExp && !this.doubleMcIsPlay) { + var r = t.ObjectPool.pop("app.MovieClip"); + (this.doubleMcIsPlay = !0), (r.blendMode = egret.BlendMode.ADD); + var o = e.localToGlobal(), + l = this.expBar.localToGlobal(); + (l.x += 30), + (r.x = o.x + 50), + (r.y = o.y), + (r.rotation = t.MathUtils.getAngle2(o.x, o.y, l.x, l.y)), + this.mcGroup.addChild(r), + egret.Tween.removeTweens(r), + r.playFileEff(ZkSzi.RES_DIR_EFF + "eff_dbjy", -1); + var h = this, + p = egret.Tween.get(r), + u = 1.8 * t.MathUtils.getDistanceByObject(r, l); + p.to( + { + x: l.x, + y: l.y, + }, + u + ).call(function () { + egret.Tween.removeTweens(r), r.destroy(), (h.doubleMcIsPlay = !1), (r = null), h.doubleExpMc(1), (h.expBar.value = a); + }); + } else this.doubleExpMc(0), (this.expBar.value = a); + else this.expBar.value = a; + (this.currentMultipleExp = a), (this.expBar.maximum = t.VlaoF.GlobalConf.maxexp); + var c = e.propSet.getHp() > e.propSet.getMaxHp() ? e.propSet.getMaxHp() : e.propSet.getHp(), + g = e.propSet.getCurMp() > e.propSet.getMaxMp() ? e.propSet.getMaxMp() : e.propSet.getCurMp(); + (this.hpScroller.height = (107 * c) / e.propSet.getMaxHp()), (this.mpScroller.height = (107 * g) / e.propSet.getMaxMp()); + var d = void 0; + this.pkbg.visible = !1; + for (var m = 0; m < this.pkArr.length; m++) + (d = this.pkArr[m].index), + 6 > d && (this["pkImage" + d].source = this.pkArr[m].img), + d == e.propSet.getPKtype() && + ((this.modelButton.icon = this.pkArr[m].img + "2"), 6 > d && ((this["pkImage" + d].source = this.pkArr[m].img + "1"), (this.pkbg.y = this["pkImage" + d].y), (this.pkbg.visible = !0))); + this.updatePlayerState(); + } + }), + (i.prototype.updateserverTime = function () { + this.labelTime.text = t.DateUtils.getFormatBySecond(t.GlobalData.serverTime / 1e3, t.DateUtils.TIME_FORMAT_6); + }), + (i.prototype.initRuleList = function () { + t.NWRFmB.ins().getPayer; + if (!this.ruleList) { + this.ruleList = { + 1: {}, + 2: {}, + 3: {}, + 4: {}, + 5: {}, + 6: {}, + 7: {}, + }; + var e = t.VlaoF.PlayFunConfig, + isSpecial = Main.vZzwB.specialId == t.MiOx.srvid; + for (var i in e) { + var n = e[i]; + if ("app.CrossServerWin" == n.view && isSpecial) { + //console.log('跳过移动端跨服图标', n); + continue; + } + if ((!n.pfIDArray || -1 != n.pfIDArray.indexOf(Main.vZzwB.pfID)) && n.phoneLayer) { + var s = n.phoneCls ? egret.getDefinitionByName(n.phoneCls) : t.RuleIconBase; + s + ? t.ubnV.ihUJ + ? n.displayType && this.addRuleList(new s(n.id, new t.PhoneMainButton())) + : (n.displayType && 2 != n.displayType) || this.addRuleList(new s(n.id, new t.PhoneMainButton())) + : t.CommonPopView.ins().showTextView("功能入口配置错误,id:" + i + " cls:" + n.cls); + } + } + } + }), + (i.prototype.addRuleList = function (t) { + var e = t.getConfig(); + t.tar && (e.phoneIcon && (t.tar.icon = e.phoneIcon), t.tar.parent && t.tar.parent.removeChild(t.tar)), + t.addShowEvents(), + t.addRedEvents(), + t.addCountEvents(), + (this.ruleList[e.phoneLayer][t.hashCode] = t), + this.updateRuleAndSort(t), + this.updateRule(t); + }), + (i.prototype.getRuleBtId = function (t) { + for (var e in this.ruleList) { + var i = this.ruleList[e]; + for (var n in i) if (i[n].id == t) return i[n]; + } + return null; + }), + (i.prototype.onClickPk = function (e) { + switch (e.currentTarget) { + case this.pkImage1: + t.PkMgr.ins().s_24_3(1); + break; + case this.pkImage2: + t.PkMgr.ins().s_24_3(2); + break; + case this.pkImage3: + t.PkMgr.ins().s_24_3(3); + break; + case this.pkImage4: + t.PkMgr.ins().s_24_3(4); + break; + case this.pkImage5: + t.PkMgr.ins().s_24_3(5); + } + this.pkGroup.visible = !1; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.modelButton: + t.mAYZL.ins().ZbzdY(t.PhoneAtkModelView) ? t.mAYZL.ins().close(t.PhoneAtkModelView) : t.mAYZL.ins().open(t.PhoneAtkModelView); + break; + case this.petAckButton: + t.PetSettingMgr.ins().send_34_1(1 == this.petState ? 2 : 1); + break; + case this.petFollowButton: + t.PetSettingMgr.ins().send_34_2(); + break; + case this.switchGrp: + this.updateBtnGroup(); + break; + case this.packUpButton: + (this.packUpButton.iconDisplay.scaleX = this.packUpGroup.visible ? 1 : -1), (this.packUpGroup.visible = !this.packUpGroup.visible); + var i = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge), + n = !1; + i && (i.info.sum || (n = !0), i.info.sum && i.info.state < 7 && (n = !0)), + (this.firstRechargeBtn.visible = t.ubnV.ihUJ || !n ? !1 : !this.packUpGroup.visible), + (this.vipButton.visible = t.ubnV.ihUJ ? !1 : !this.packUpGroup.visible), + (this.vipButton.right = n ? 256 : 179); + break; + case this.chatGroup: + t.mAYZL.ins().open(t.ChatWinView); + break; + case this.switchRoleButton: + t.mAYZL.ins().open(t.SwitchPlayerView); + break; + case this.skillTipsImage: + t.mAYZL.ins().ZbzdY(t.RoleView) || t.mAYZL.ins().open(t.RoleView, [1, 0]), (t.Nzfh.ins().phoneSkillTipsIsShow = !0), this.updateSkillTips(); + break; + case this.suitBtn: + t.CautionView.show( + t.CrmPU.language_Tips48, + function () { + t.FuBenMgr.ins().send_20_2(t.GameMap.fubenID); + }, + this + ); + break; + case this.lockIcon: + if (!this.rightMenuView.visible) { + var s = t.NWRFmB.ins().getCharRole(this.recog); + s || (s = t.NWRFmB.ins().getDummyChar(this.recog)), + s && + (s.isCharRole || s.isDummyCharRole) && + ((t.GlobalData.otherPlayerId = s.propSet.getACTOR_ID()), + (t.GlobalData.otherPlayerName = s.propSet.getName()), + (t.GlobalData.otherPlayerIdDummy = s.isDummyCharRole), + this.rightMenuView.setData(), + t.mAYZL.ins().ZbzdY(t.OtherPlayerView) && t.mAYZL.ins().close(t.OtherPlayerView), + (this.rightMenuView.visible = !0), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_TAP, this.clickStage, this), + e && e.stopPropagation()); + } + break; + case this.stormButton: + if ( + ((this.topImage.source = "m_skillwj1"), + (this.bottomImage.source = "m_skillgw1"), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.endFunction, this), + t.RockerView.INOPERATION) + ) + return; + if ( + (this.stormMC || + ((this.stormMC = t.ObjectPool.pop("app.MovieClip")), + this.stormGroup.addChild(this.stormMC), + (this.stormMC.blendMode = egret.BlendMode.ADD), + this.stormMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_anatt", 1, this.stopAnattMc.bind(this))), + !t.qTVCL.ins().isOpen) + ) { + var a = t.NWRFmB.ins().getPayer; + if (a) { + var r = void 0; + if (a.lockTarget && ((r = t.NWRFmB.ins().getCharRole(a.lockTarget)), r && r.propSet.getRace() == t.ActorRace.Human && 1 == a.propSet.getPKtype())) + return void t.uMEZy.ins().IrCm("|C:0xff7700&T:当前为和平攻击模式|"); + if (!r) { + var o = t.qTVCL.ins().getNearestMonster(); + if (!o) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:附近没有可攻击的怪物|"); + r = t.NWRFmB.ins().getCharRole(o); + } + if (r) { + if (((t.EhSWiR.m_ack_Char = r), t.EhSWiR.m_ack_Char && t.EhSWiR.m_ack_Char.propSet)) { + var l = t.EhSWiR.m_ack_Char.propSet.getName(); + t.uMEZy.ins().showFightTips('开始自动PK"' + l + '"'); + } + t.qTVCL.ins().attackState = !0; + } + } + } + break; + case this.rechargeButton: + t.RechargeMgr.ins().onPay(""); + break; + case this.drugBtn: + t.mAYZL.ins().open(t.SetUpView, 3); + break; + case this.pickupBtn: + t.mAYZL.ins().open(t.SetUpView, 2); + break; + case this.firstChargeTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_FIRST_CHARGE_TIPS), void t.mAYZL.ins().open(t.ActvityFirstChargeView); + case this.secondChargeTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_SECOND_CHARGE_TIPS), void t.mAYZL.ins().open(t.ActvitySecondChargeView); + case this.vipGuideTipsGrp: + return t.ubnV.ihUJ ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips139) : (t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIP_GUIDE_TIPS), void t.mAYZL.ins().open(t.VipView)); + case this.violentGuideTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_VIOLENT_TIPS), void t.mAYZL.ins().open(t.ViolentStateWin); + case this.donationGuideTipsGrp: + return t.ckpDj.ins().sendEvent(t.MainEvent.CLOSE_DONATION_TIPS), void t.mAYZL.ins().open(t.DonationRankWin); + } + }), + (i.prototype.stopAnattMc = function () { + this.stormMC = null; + }), + (i.prototype.updateBtnGroup = function () { + (this.skillType = !this.skillType), egret.Tween.removeTweens(this.skillGroup); + var t = egret.Tween.get(this.skillGroup), + e = egret.Tween.get(this.buttonGroup), + i = this; + this.skillType + ? ((this.skillGroup.right = 0), + (this.skillGroup.visible = !0), + (this.buttonGroup.right = -376), + (this.buttonGroup.visible = !0), + (this.skillShapeGroup.visible = !1), + egret.Tween.removeTweens(this.switchImage), + egret.Tween.get(this.switchImage).to( + { + rotation: 90, + }, + 250 + ), + t + .to( + { + right: -376, + }, + 150, + egret.Ease.sineInOut + ) + .call(function () { + (this.visible = !1), (t = null); + }), + e.to( + { + right: 0, + }, + 150, + egret.Ease.sineInOut + )) + : ((this.skillGroup.right = -376), + (this.skillGroup.visible = !0), + (this.buttonGroup.right = 0), + (this.buttonGroup.visible = !0), + egret.Tween.removeTweens(this.switchImage), + egret.Tween.get(this.switchImage).to( + { + rotation: 0, + }, + 250 + ), + t.to( + { + right: 0, + }, + 150, + egret.Ease.sineInOut + ), + e + .to( + { + right: -376, + }, + 150, + egret.Ease.sineInOut + ) + .call(function () { + (this.visible = !1), (i.skillShapeGroup.visible = !0), (e = null); + })); + }), + (i.prototype.updateRuleAndSort = function (e) { + t.KHNO.ins().tBiJo( + 1e3, + 1, + function () { + var t = e.getConfig(); + if (t && t.phoneLayer) { + var i = this.updateShow(e); + i && (this.sortBtnList(t.phoneLayer), (t = null)); + } + }, + this + ); + }), + (i.prototype.updateShow = function (e) { + var i = e.checkShowIcon(), + n = e.getConfig(); + i && t.ubnV.ihUJ && (n.displayType || (i = !1)); + var s; + return e.ZbzdY == i + ? !1 + : ((e.ZbzdY = i), + (s = e.getTar()), + i ? (e.addEventListeners(), this["layer" + n.phoneLayer].addChild(s), (n = null)) : (e.removeEventListeners(), e.removeCountEvents(), t.lEYZI.Naoc(s)), + !0); + }), + (i.prototype.sortBtnList = function (t) { + if (this.ruleList) { + var e = this.ruleList[t]; + if (e) { + var i = [], + n = void 0; + for (var s in e) (n = e[s]), n.ZbzdY && i.push(n); + i.length > 1 && (i = i.sort(this.sortRule)); + for (var a = 0; a < i.length; a++) { + t > 2 ? (i[a].tar.y = 77 * a) : (i[a].tar.right = 77 * a); + var r = i[a].tar.parent; + 51 == i[a].id + ? ((this.donationGuideTipsGrp.right = r.right + i[a].tar.right + 77), (this.donationGuideTipsGrp.top = r.top + i[a].tar.y)) + : 50 == i[a].id + ? ((this.violentGuideTipsGrp.right = r.right + i[a].tar.right + 77), (this.violentGuideTipsGrp.top = r.top + i[a].tar.y)) + : 37 == i[a].id + ? ((this.vipGuideTipsGrp.right = r.right + i[a].tar.right + 77), (this.vipGuideTipsGrp.top = r.top + i[a].tar.y)) + : 26 == i[a].id + ? ((this.firstChargeTipsGrp.right = r.right + i[a].tar.right + 77), (this.firstChargeTipsGrp.top = r.top + i[a].tar.y)) + : 78 == i[a].id && ((this.secondChargeTipsGrp.right = r.right + i[a].tar.right + 77), (this.secondChargeTipsGrp.top = r.top + i[a].tar.y)); + } + } + } + }), + (i.prototype.sortRule = function (t, e) { + var i = t.getConfig(), + n = e.getConfig(); + return i.phoneSort > n.phoneSort ? 1 : -1; + }), + (i.prototype.updateRule = function (t) { + var e = t.getTar(); + if (e.redDot) { + var i = t.checkShowRedPoint(), + n = t.getConfig(); + n.phoneLayer > 2 && n.phoneLayer <= 7 && (i > 0 ? this.switchRedArr[n.id] || (this.switchRedArr[n.id] = 1) : this.switchRedArr[n.id] && delete this.switchRedArr[n.id]), + Object.keys(this.switchRedArr).length > 0 ? (this.switchRed.visible = !0) : (this.switchRed.visible = !1), + (e.redDot.visible = i > 0), + (e.redDot.source = 1 == i ? "common_hongdian" : "common_chengdian"); + } + }), + (i.prototype.updateCount = function (t) { + var e = t.getTar(); + e.ingGrp && (e.ingGrp.visible = t.checkShowCountDown() > 0); + }), + (i.prototype.updateTask = function (e) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask) && !t.qTVCL.ins().isFinding && 0 == t.GameMap.fubenID && 1 == t.edHC.ins().isLargeMapAct) { + var i = t.VrAZQ.ins().getTaskArr(), + n = t.mAYZL.ins().ZzTs(t.BagView); + if (1 == e && !n && i && i[0]) { + var s = t.VlaoF.TaskDisplayConfig[i[0].taskID][i[0].taskState]; + if (s && 1 == s.taskstate) { + if (!this.mouseMc) { + (this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1); + var a = this.bagButton.localToGlobal(); + (this.mouseMc.x = a.x + 22), (this.mouseMc.y = a.y + 35), this.mcGroup.addChild(this.mouseMc); + } + return ( + (t.MainTaskWin.isTaskSetUpMC = !0), + t.KHNO.ins().tBiJo(1e3 * s.automatic, 1, this.updateMouseEff, this), + this.mouseMc.isPlaying || this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), + void (10 == s.taskname.type) + ); + } + } + } + this.stopTaskMC(); + }), + (i.prototype.updateMouseEff = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), t.mAYZL.ins().ZbzdY(t.BagView) && t.mAYZL.ins().close(t.BagView), t.mAYZL.ins().open(t.BagView, 1); + }), + (i.prototype.stopTaskMC = function () { + t.KHNO.ins().remove(this.updateMouseEff, this), (t.MainTaskWin.isTaskSetUpMC = !1), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + }), + (i.prototype.bagAddItem = function () { + (this.bagMaxImage.visible = t.ThgMu.ins().getBagTypeItemNum(1) <= 0), this.updateSkillTips(), this.updateKeyUI(); + }), + (i.prototype.bagDelItem = function () { + (this.bagMaxImage.visible = t.ThgMu.ins().getBagTypeItemNum(1) <= 0), this.updateSkillTips(), this.updateKeyUI(); + }), + (i.prototype.bagChangeItem = function () { + (this.bagMaxImage.visible = t.ThgMu.ins().getBagTypeItemNum(1) <= 0), this.updateSkillTips(), this.updateKeyUI(); + }), + (i.prototype.updateSkillTips = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = t.VlaoF.TimeManagerConfigConfig.Skillguide; + if (t.mAYZL.ins().isCheckOpen(n)) { + if (t.Nzfh.ins().phoneSkillTipsIsShow) return void (this.skillTipsImage.visible = !1); + var s = e.propSet.getAP_JOB(), + a = t.NGcJ.ins().getJobSkillredDot(s) > 0; + a || (this._isShow = !1), (this._skillTipsRoleLevel == i && this._isShow) || ((this.skillTipsImage.visible = a), a && ((this._skillTipsRoleLevel = i), (this._isShow = !0))); + } + }), + (i.prototype.hideSkillTips = function () { + this.skillTipsImage.visible = !1; + }), + (i.prototype.newMailFun = function () { + this.newMsgInfo[1] || ((this.newMsgInfo[1] = "mail"), this.newMsgTips(1)); + }), + (i.prototype.newFriendFun = function () { + this.newMsgInfo[2] || ((this.newMsgInfo[2] = "friend"), this.newMsgTips(2)); + }), + (i.prototype.newPrivateDealsFun = function () { + if (!this.newMsgInfo[3]) + for (var e in t.XZAqnu.ins().playerTradeList) + if (t.XZAqnu.ins().playerTradeList[e]) { + (this.newMsgInfo[3] = "privateDeals"), this.newMsgTips(3); + break; + } + }), + (i.prototype.newTeamFun = function () { + this.newMsgInfo[4] || ((this.newMsgInfo[4] = "team"), this.newMsgTips(4)); + }), + (i.prototype.newRankGuildFun = function () { + var e, i; + this.newMsgInfo[5] || + ((e = t.Nzfh.ins().getCallIShow(1)), e && ((this.newMsgInfo[5] = "teamCall"), this.newMsgTips(5), (i = e.time - egret.getTimer()), i && t.KHNO.ins().tBiJo(i, 1, this.removeTeamCall, this))), + this.newMsgInfo[6] || + ((e = t.Nzfh.ins().getCallIShow(2)), + e && ((this.newMsgInfo[6] = "guildCall"), this.newMsgTips(6), (i = e.time - egret.getTimer()), i && t.KHNO.ins().tBiJo(i, 1, this.removeGuildCall, this))); + }), + (i.prototype.removeTeamCall = function () { + t.KHNO.ins().remove(this.removeTeamCall, this), t.Nzfh.ins().post_deleteType(1); + }), + (i.prototype.removeGuildCall = function () { + t.KHNO.ins().remove(this.removeTeamCall, this), t.Nzfh.ins().post_deleteType(2); + }), + (i.prototype.newMsgTips = function (t) { + var e, + i = "", + n = ""; + if ( + (1 == t + ? ((i = "mail"), (n = "zjm_shan_youjian")) + : 2 == t + ? ((i = "friend"), (n = "zjm_shan_haoyou")) + : 3 == t + ? ((i = "privateDeals"), (n = "zjm_shan_jiaoyi")) + : 4 == t + ? ((i = "team"), (n = "zjm_shan_zudui")) + : 5 == t + ? ((i = "teamCall"), (n = "zjm_shan_zhzd")) + : 6 == t && ((i = "guildCall"), (n = "zjm_shan_zhhh")), + (e = this.newMsgTipsGrp.getChildByName(i)), + !e) + ) { + (e = new eui.Button()), + (e.skinName = "PhoneMainButtonSkin"), + (e.name = i), + (e.icon = n), + (e.width = 51), + (e.height = 51), + (e.x = 60 * this.newMsgTipsGrp.numChildren), + (e.y = 0), + this.vKruVZ(e, this.newMsgBtnClick), + this.newMsgTipsGrp.addChild(e); + var s = egret.Tween.get(e, { + loop: !0, + }); + s.to( + { + y: -15, + }, + 150 + ) + .to( + { + y: 0, + }, + 100 + ) + .to( + { + y: -5, + }, + 100 + ) + .to( + { + y: 0, + }, + 100 + ) + .wait(1500); + } + }), + (i.prototype.newMsgBtnClick = function (e) { + switch ((egret.Tween.removeTweens(e.currentTarget), this.fEHj(e.currentTarget, this.newMsgBtnClick), e.currentTarget.name)) { + case "mail": + t.mAYZL.ins().open(t.MailView), delete this.newMsgInfo[1]; + break; + case "friend": + t.mAYZL.ins().open(t.FriendView, 4), delete this.newMsgInfo[2]; + break; + case "privateDeals": + t.mAYZL.ins().open(t.IsAgreeTransView), delete this.newMsgInfo[3]; + break; + case "team": + var i = t.Qskf.ins().inviteList[0]; + if (null == i) return; + var n = i.nickName + t.CrmPU.language_Team_ReqAddTeam_tips; + t.Qskf.ins().findInviteListDel(i.roleId), + t.CautionView.show( + n, + function () { + t.Qskf.ins().onSendApplyJoinTeamReply(i.roleId, 1); + }, + this, + function () { + t.Qskf.ins().onSendApplyJoinTeamReply(i.roleId, 0); + } + ), + delete this.newMsgInfo[4]; + break; + case "teamCall": + var s = t.Nzfh.ins().getCallIShow(1); + s && (t.Nzfh.ins().post_deleteType(1), t.mAYZL.ins().open(t.CallView, s)), delete this.newMsgInfo[5]; + break; + case "guildCall": + var a = t.Nzfh.ins().getCallIShow(2); + a && (t.Nzfh.ins().post_deleteType(2), t.mAYZL.ins().open(t.CallView, a)), delete this.newMsgInfo[6]; + } + t.lEYZI.Naoc(e.currentTarget); + }), + (i.prototype.updateKeyUI = function () { + for (var e = 0, i = t.XwoNAr.ins().keyInfo, n = 0; n < this.skillNum; n++) { + var s = i[n]; + if (s && 0 != s.id) { + if (((this["itemKey" + n].visible = !0), (this["itemKeyLab" + n].visible = !1), 1 == s.type)) { + var a = t.VlaoF.SkillsLevelConf[s.id][1]; + a && (this.updateSkillCD(a.id), (this["itemKey" + n].source = a.skillName + "")); + } else if (0 == s.type) { + var r = t.VlaoF.StdItems[s.id]; + r && ((this["itemKey" + n].source = r.icon + ""), (e = t.ThgMu.ins().getItemCountById(r.id)), (this["itemKeyLab" + n].visible = !0), (this["itemKeyLab" + n].text = e + "")); + } + } else (this["itemKeyLab" + n].visible = !1), (this["itemKey" + n].visible = !1); + } + }), + (i.prototype.keyInfo = function () { + t.ThgMu.ins().keyXY.length = 0; + for (var e = 0; e < this.skillNum; e++) { + var i = new Object(), + n = this["itemKey" + e].localToGlobal(0, 0); + (i.x = n.x), (i.y = n.y), t.ThgMu.ins().keyXY.push(i); + } + }), + (i.prototype.updateMap = function () { + (this.suitBtn.visible = t.GameMap.fubenID > 0), + t.GameMap.fubenID > 0 + ? t.mAYZL.ins().ZbzdY(t.MainTaskWin) && t.mAYZL.ins().close(t.MainTaskWin) + : t.mAYZL.ins().ZbzdY(t.MainTaskWin) || (KdbLz.qOtrbE.iFbP && t.ubnV.ihUJ) || t.mAYZL.ins().open(t.MainTaskWin), + t.GameMap.mapID != this._selfMapId && ((this._selfMapId = t.GameMap.mapID), 3 != t.GameMap.mapID && t.NWRFmB.ins().clearDummy(), t.NWRFmB.ins().resetMakeDummy(!0)); + }), + (i.prototype.updateBuff = function () { + t.NWRFmB.ins().getPayer && + ((this.buffList1.dataProvider = new eui.ArrayCollection(t.NWRFmB.ins().getPayer.buffType4Ary)), (this.buffList.dataProvider = new eui.ArrayCollection(t.NWRFmB.ins().getPayer.buffTypeAry))); + }), + (i.prototype.updateSavior = function () { + t.NWRFmB.ins().getPayer && + (t.NWRFmB.ins().getPayer.saviorBuff.length > 0 + ? ((this.buffList.left = 70), (this.saviorBuff.visible = !0), (this.saviorBuff.data = t.NWRFmB.ins().getPayer.saviorBuff[0])) + : ((this.buffList.left = 29), (this.saviorBuff.visible = !1))); + }), + (i.prototype.doubleExpTips = function (e) { + var i = t.NWRFmB.ins().getPayer; + if (i && i.propSet) { + var n = ""; + switch (e.currentTarget) { + case this.doubleGrp: + (n = t.CrmPU.language_Friend_Txt1 + " :" + (i.propSet.MzYki() > 0 ? i.propSet.MzYki() + "转" + i.propSet.mBjV() + "级" : i.propSet.mBjV() + "级") + "\n"), + (n += t.CrmPU.language_Friend_Txt7 + ":" + i.propSet.getEXP() + "\n"), + (n += t.CrmPU.language_Friend_Txt8 + ":" + (t.edHC.ins().getLevelUpExp() - i.propSet.getEXP()) + "\n"), + (n += t.CrmPU.language_Common_56 + i.propSet.getmultipleExp()); + break; + case this.hpTipsGrp: + var s = i.propSet.getHp() > i.propSet.getMaxHp() ? i.propSet.getMaxHp() : i.propSet.getHp(); + n = "HP " + s + "/" + i.propSet.getMaxHp(); + t.mAYZL.ins().escCloseView(); + break; + case this.mpTipsGrp: + var a = i.propSet.getCurMp() > i.propSet.getMaxMp() ? i.propSet.getMaxMp() : i.propSet.getCurMp(); + n = "MP " + a + "/" + i.propSet.getMaxMp(); + t.mAYZL.ins().escCloseView(); + } + var r = e.currentTarget.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, n, { + x: r.x + e.currentTarget.width, + y: r.y, + }), + (r = null); + } + }), + (i.prototype.updateOnHook = function () { + t.KHNO.ins().remove(this.updatePlayerState, this), t.KHNO.ins().tBiJo(500, 1, this.updatePlayerState, this); + }), + (i.prototype.updatePlayerState = function () { + if (t.qTVCL.ins().isOpen) { + if (this.playerStateMC) return; + (this.playerStateMC = t.ObjectPool.pop("app.MovieClip")), + (this.playerStateMC.x = this.playerStateMC.y = 0), + this.playerStateGrp.addChild(this.playerStateMC), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.playerStateMC.x = 0), + this.playerStateMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdzd1", -1), + (this.onHookGroup.visible = !0), + (this.playerStateMC.visible = !0); + } else if (t.qTVCL.ins().isFinding) { + if (this.xunLuMC) return; + (this.xunLuMC = t.ObjectPool.pop("app.MovieClip")), + (this.xunLuMC.x = this.xunLuMC.y = 0), + this.playerStateGrp.addChild(this.xunLuMC), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.playerStateMC && (this.playerStateMC.destroy(), (this.playerStateMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.xunLuMC.x = 50), + this.xunLuMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdxl1", -1), + (this.onHookGroup.visible = !1), + (this.xunLuMC.visible = !0); + } else if (t.qTVCL.ins().attackState) { + if (this.autoPkMc) return; + (this.autoPkMc = t.ObjectPool.pop("app.MovieClip")), + (this.autoPkMc.x = this.autoPkMc.y = 0), + this.playerStateGrp.addChild(this.autoPkMc), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.playerStateMC && (this.playerStateMC.destroy(), (this.playerStateMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + (this.autoPkMc.x = 50), + this.autoPkMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_znpk1", -1), + (this.onHookGroup.visible = !1), + (this.autoPkMc.visible = !0); + } else if (t.GameMap.isBubble && t.GameMapInfo.ins().getIsSafe) { + if (this.paoDianMC) return; + (this.paoDianMC = t.ObjectPool.pop("app.MovieClip")), + (this.paoDianMC.x = this.paoDianMC.y = 0), + this.playerStateGrp.addChild(this.paoDianMC), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.playerStateMC && (this.playerStateMC.destroy(), (this.playerStateMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)), + (this.paoDianMC.x = 50), + this.paoDianMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zdpd1", -1), + (this.onHookGroup.visible = !1), + (this.paoDianMC.visible = !0); + } else + (this.onHookGroup.visible = !1), + this.paoDianMC && (this.paoDianMC.destroy(), (this.paoDianMC = null)), + this.playerStateMC && (this.playerStateMC.destroy(), (this.playerStateMC = null)), + this.xunLuMC && (this.xunLuMC.destroy(), (this.xunLuMC = null)), + this.autoPkMc && (this.autoPkMc.destroy(), (this.autoPkMc = null)); + }), + (i.prototype.closeExpMc = function () { + this.addDoubleExpMC && (this.addDoubleExpMC.destroy(), (this.addDoubleExpMC = null)); + }), + (i.prototype.addExp = function () { + var e = t.NWRFmB.ins().getPayer; + if (e) { + var i = egret.getTimer(); + if (i - this.payExpTime > 4e3) { + this.payExpTime = i; + var n = e.localToGlobal(); + this.addDoubleExpMC || ((this.addDoubleExpMC = t.ObjectPool.pop("app.MovieClip")), this.addExpGrp.addChild(this.addDoubleExpMC), (this.addDoubleExpMC.blendMode = egret.BlendMode.ADD)), + (this.addDoubleExpMC.x = n.x), + (this.addDoubleExpMC.y = n.y), + (this.addDoubleExpMC.visible = !0); + var s = this; + this.addDoubleExpMC.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_badypaodian", + 1, + function () { + s.closeExpMc(); + }, + !1 + ); + var a = this.lvBar.localToGlobal(-10, -10); + (this.expDian.scaleX = this.expDian.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian0.scaleX = this.expDian0.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian1.scaleX = this.expDian1.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian2.scaleX = this.expDian2.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian3.scaleX = this.expDian3.scaleY = t.MathUtils.limit(5, 10) / 10), + (this.expDian.visible = !1), + (this.expDian0.visible = !1), + (this.expDian1.visible = !1), + (this.expDian2.visible = !1), + (this.expDian3.visible = !1); + var r = 2 * t.MathUtils.getDistance(n.x, n.y, a.x, a.y); + egret.Tween.removeTweens(this.addExpGrp), + egret.Tween.get(this.addExpGrp) + .wait(500) + .call(function () { + s.expDian.payTween( + { + x: n.x, + y: n.y - 150, + }, + { + x: n.x + 100, + y: n.y - 250, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian0.payTween( + { + x: n.x - 100, + y: n.y - 150, + }, + { + x: n.x, + y: n.y - 300, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian1.payTween( + { + x: n.x, + y: n.y - 200, + }, + { + x: n.x + 100, + y: n.y - 300, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian2.payTween( + { + x: n.x - 150, + y: n.y - 150, + }, + { + x: n.x + 100, + y: n.y - 250, + }, + { + x: a.x, + y: a.y, + }, + r + ), + s.expDian3.payTween( + { + x: n.x - 50, + y: n.y - 220, + }, + { + x: n.x + 80, + y: n.y - 150, + }, + { + x: a.x, + y: a.y, + }, + r + ); + }) + .wait(r + 100) + .call(function () { + s.expDian.clsoeTween(), s.expDian0.clsoeTween(), s.expDian1.clsoeTween(), s.expDian2.clsoeTween(), s.expDian3.clsoeTween(); + }); + } + } + }), + (i.prototype.updataGuildInfo = function () { + if (0 != t.bfhrJ.ins().getIsShowView()) { + var e = t.bfhrJ.ins().isGuild; + e + ? t.mAYZL.ins().ZbzdY(t.GuildInfoView) + ? t.mAYZL.ins().close(t.GuildInfoView) + : t.mAYZL.ins().open(t.GuildInfoView) + : t.mAYZL.ins().ZbzdY(t.GuildNoGuildListView) + ? t.mAYZL.ins().close(t.GuildNoGuildListView) + : t.mAYZL.ins().open(t.GuildNoGuildListView); + } + }), + (i.prototype.updateDisposableredpoint = function (t) { + for (var e in this.ruleList) { + var i = this.ruleList[e]; + for (var n in i) + if (i[n].id == t) { + this.updateRule(i[n]); + break; + } + } + }), + (i.prototype.doubleExpMc = function (e) { + e + ? (this.addExpMc || + ((this.addExpMc = t.ObjectPool.pop("app.MovieClip")), (this.addExpMc.blendMode = egret.BlendMode.ADD), (this.addExpMc.scaleX = 0.8), this.doubleMcGrp.addChild(this.addExpMc)), + (this.addExpMc.visible = !0), + this.addExpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jszj", 1, this.stopAddMc.bind(this))) + : (this.delExpMc || + ((this.delExpMc = t.ObjectPool.pop("app.MovieClip")), (this.delExpMc.blendMode = egret.BlendMode.ADD), (this.delExpMc.scaleX = 0.8), this.doubleMcGrp.addChild(this.delExpMc)), + (this.delExpMc.visible = !0), + this.delExpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jsjy", 1, this.stopDelMc.bind(this))); + }), + (i.prototype.stopDelMc = function () { + this.delExpMc && (this.delExpMc.destroy(), (this.delExpMc = null)); + }), + (i.prototype.stopAddMc = function () { + this.addExpMc && (this.addExpMc.destroy(), (this.addExpMc = null)); + }), + (i.prototype.onShowPrivateName = function (e) { + t.mAYZL.ins().ZbzdY(t.ChatWinView) || t.mAYZL.ins().open(t.ChatWinView, e[0]); + }), + (i.prototype.onTimerStart = function (e) { + (this.time = e[0]), t.KHNO.ins().remove(this.updateTimer, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTimer, this), (this.timerGrp.visible = !0); + }), + (i.prototype.updateTimer = function () { + var e = this.time - Math.floor(egret.getTimer() / 1e3); + if (0 >= e) return (this.actTime.text = ""), t.KHNO.ins().remove(this.updateTimer, this), void (this.timerGrp.visible = !1); + var i = "" + t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10); + this.actTime.text = i; + }), + (i.prototype.onClearTimer = function () { + (this.actTime.text = ""), (this.timerGrp.visible = !1), t.KHNO.ins().remove(this.updateTimer, this); + }), + (i.prototype.npcTimer = function (e) { + (this.npcTimers = e), (this.npcTimerGrp.visible = !0), t.KHNO.ins().remove(this.updateNpcTimer, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateNpcTimer, this), this.updateNpcTimer(); + }), + (i.prototype.updateNpcTimer = function () { + var e = this.npcTimers; + (this.npcTime.text = t.CrmPU.language_Common_65 + ("" + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10))), + (this.npcTimers -= 1), + 0 >= e && (t.KHNO.ins().remove(this.updateNpcTimer, this), (this.npcTime.text = ""), (this.npcTimerGrp.visible = !1)); + }), + (i.prototype.clearNpcTime = function () { + t.KHNO.ins().remove(this.updateNpcTimer, this), (this.npcTime.text = ""), (this.npcTimerGrp.visible = !1); + }), + (i.prototype.duoBaoTimer = function (e) { + (this.duoBaoTimers = e.time - Math.floor(t.GlobalData.serverTime / 1e3)), + this.duoBaoTimers && + ((this.duoBaoTimers += Math.floor(egret.getTimer() / 1e3)), + (this.duoBaoTxt = "夺宝捡取倒计时:"), + (this.duoBaoTimerGrp.visible = !0), + t.KHNO.ins().remove(this.updateDuoBaoTimer, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateDuoBaoTimer, this), + this.updateDuoBaoTimer()); + }), + (i.prototype.updateDuoBaoTimer = function () { + var e = this.duoBaoTimers - Math.floor(egret.getTimer() / 1e3); + (this.duoBaoTime.text = this.duoBaoTxt + ("" + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_10))), + 0 >= e && (t.KHNO.ins().remove(this.updateNpcTimer, this), (this.duoBaoTime.text = ""), (this.duoBaoTimerGrp.visible = !1)); + }), + (i.prototype.clearDuoBaoTime = function () { + t.KHNO.ins().remove(this.updateDuoBaoTimer, this), (this.duoBaoTime.text = ""), (this.duoBaoTimerGrp.visible = !1), (this.duoBaoTimers = 0); + }), + (i.prototype.autoClickPK = function () { + var t = this.pkButton.ruleIconBase; + t.tapExecute(1); + }), + (i.prototype.updateCrossServerAct = function () { + t.ubnV.ihUJ && 0 != t.TQkyOx.ins().crossServerActID && t.Nzfh.ins().showCrossServerView(t.TQkyOx.ins().crossServerActID); + }), + (i.prototype.updateWIFI = function () { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Network) + ? (t.KHNO.ins().RTXtZF(this.heartbeat, this) || t.KHNO.ins().tBiJo(3e3, 0, this.heartbeat, this), (this.msgGroup.visible = !0)) + : ((this.msgGroup.visible = !1), t.KHNO.ins().remove(this.heartbeat, this)); + }), + (i.prototype.heartbeat = function () { + this.sendTime && (this.msgdelay.push(3e3), this.msgdelay.length > 3 && this.msgdelay.shift()), (this.sendTime = egret.getTimer()), t.Nzfh.ins().s_0_21(); + }), + (i.prototype.updateMsg = function () { + this.msgdelay.push(egret.getTimer() - this.sendTime), (this.sendTime = 0), this.msgdelay.length > 3 && this.msgdelay.shift(); + for (var e = 0, i = 0; i < this.msgdelay.length; i++) + (e = this.msgdelay[i]), + (this.msgAry[i].visible = !0), + (this.msgAry[i].text = t.CrmPU.language_Delay + this.getDelay(e)), + 100 > e ? (this.msgAry[i].textColor = 2682369) : 300 > e ? (this.msgAry[i].textColor = t.ClwSVR.NAME_YELLOW) : (this.msgAry[i].textColor = t.ClwSVR.NAME_RED); + }), + (i.prototype.getDelay = function (t) { + return t > 1e3 ? (t / 1e3).toFixed(2) + "m" : t + "ms"; + }), + (i.prototype.onResize = function () { + var e = t.aTwWrO.ins().getWidth(), + i = (e - 364) / 2; + this.bg1.width = i + 3; + this.bg2.width = i; + if (1 == Main.vZzwB.uiStyle) { + if (!this.dragonHeadMc) { + this.dragonHeadMc = t.ObjectPool.pop("app.MovieClip"); + this.dragonTailMc = t.ObjectPool.pop("app.MovieClip"); + this.dragonHeadMc.alpha = 0.9; + this.dragonTailMc.alpha = 0.9; + this.mcGroup.addChild(this.dragonHeadMc); + this.mcGroup.addChild(this.dragonTailMc); + this.dragonHeadMc.playFileEff(ZkSzi.RES_DIR_EFF + "dragon_head_eff", -1); + this.dragonTailMc.playFileEff(ZkSzi.RES_DIR_EFF + "dragon_tail_eff", -1); + } + var l = t.aTwWrO.ins().getHeight() - 100; + this.dragonHeadMc.x = this.bg1.width - 60; + this.dragonHeadMc.y = l; + this.dragonTailMc.x = this.bg1.width + this.chatScroller.width + 60; + this.dragonTailMc.y = l; + } + this.keyInfo(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + egret.stopTick(this.onEnterFrame, this), + (this.shapeArray.length = 0), + this.skillShapeGroup.removeChildren(), + egret.Tween.removeTweens(this.addExpGrp), + this.closeExpMc(), + this.stopAddMc(), + this.stopDelMc(), + this.rechargeEff && (this.rechargeEff.destroy(), (this.rechargeEff = null)), + this.clientguideTips && (this.clientguideTips.destroy(), (this.clientguideTips = null)), + this.donationGuideTips && (this.donationGuideTips.destroy(), (this.donationGuideTips = null)), + this.firstChargeTips && (this.firstChargeTips.destroy(), (this.firstChargeTips = null)), + this.secondChargeTips && (this.secondChargeTips.destroy(), (this.secondChargeTips = null)), + this.violentGuideTips && (this.violentGuideTips.destroy(), (this.violentGuideTips = null)), + this.vipGuideTips && (this.vipGuideTips.destroy(), (this.vipGuideTips = null)), + this.expDian.clsoeTween(), + this.expDian0.clsoeTween(), + this.expDian1.clsoeTween(), + this.expDian2.clsoeTween(), + this.expDian3.clsoeTween(), + t.KHNO.ins().remove(this.updatePlayerState, this), + t.KHNO.ins().remove(this.updateMouseEff, this), + t.KHNO.ins().remove(this.updateChatList, this), + t.KHNO.ins().remove(this.updateChatV, this), + t.KHNO.ins().removeAll(this), + egret.Tween.removeTweens(this.skillGroup), + egret.Tween.removeTweens(this.buttonGroup); + for (var s = 0; s < this.buttonAry.length; s++) this.buttonAry[s].closeButton(); + for (var a in this.ruleList) { + var r = this.ruleList[a]; + for (var o in r) r[o].removeAll(); + } + (this.ruleList = null), this.layer1.removeChildren(), this.layer2.removeChildren(); + for (var s = 0; 9 > s; s++) this.fEHj(this["skillButton" + s], this.onClickSkill); + for (var l = 0; l < this.skillNum; l++) this["itemKey" + l].addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.stageBeginFunction, this); + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.stageBeginFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.stageEndFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.Event.RESIZE, this.onResize, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.moveFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.clickStage, this), + this.fEHj(this.pkImage1, this.onClickPk), + this.fEHj(this.pkImage2, this.onClickPk), + this.fEHj(this.pkImage3, this.onClickPk), + this.fEHj(this.pkImage4, this.onClickPk), + this.fEHj(this.pkImage5, this.onClickPk), + this.fEHj(this.petAckButton, this.onClick), + this.fEHj(this.modelButton, this.onClick), + this.fEHj(this.petFollowButton, this.onClick), + this.fEHj(this.switchGrp, this.onClick), + this.fEHj(this.packUpButton, this.onClick), + this.fEHj(this.chatGroup, this.onClick), + this.fEHj(this.switchRoleButton, this.onClick), + this.fEHj(this.stormButton, this.onClick), + this.fEHj(this.lockIcon, this.onClick), + this.fEHj(this.skillTipsImage, this.onClick), + this.fEHj(this.suitBtn, this.onClick), + this.fEHj(this.rechargeButton, this.onClick), + this.fEHj(this.donationGuideTipsGrp, this.onClick), + this.fEHj(this.firstChargeTipsGrp, this.onClick), + this.fEHj(this.secondChargeTipsGrp, this.onClick), + this.fEHj(this.violentGuideTipsGrp, this.onClick), + this.fEHj(this.vipGuideTipsGrp, this.onClick), + this.fEHj(this.doubleGrp, this.doubleExpTips), + this.fEHj(this.hpTipsGrp, this.doubleExpTips), + this.fEHj(this.mpTipsGrp, this.doubleExpTips), + this.fEHj(this.drugBtn, this.onClick), + this.fEHj(this.pickupBtn, this.onClick), + this.removeBeginEvent(this.stormButton, this.beginFunction), + t.ckpDj.ins().removeEvent(t.ChatEvent.CLEAR_CHAT_INPUT_TEXT, this.updateChat, this), + t.ckpDj.ins().removeEvent(t.MainEvent.HIDE_SKILL_TIPS, this.hideSkillTips, this), + t.ckpDj.ins().removeEvent(t.MainEvent.UPDATE_DISPOSABLE_RED, this.updateDisposableredpoint, this), + t.ckpDj.ins().removeEvent(t.ChatEvent.PLAY_NAME_SLECT, this.onShowPrivateName, this), + t.ckpDj.ins().removeEvent(t.CompEvent.TimerEvent, this.onTimerStart, this), + t.ckpDj.ins().removeEvent(t.CompEvent.Clear_Timer_Event, this.onClearTimer, this), + this.hpMc.destroy(), + this.mpMc.destroy(), + (this.hpMc = null), + (this.mpMc = null); + if (1 == Main.vZzwB.uiStyle) { + this.dragonHeadMc.destroy(), (this.dragonHeadMc = null), this.dragonTailMc.destroy(), (this.dragonTailMc = null); + } + (this._selfMapId = 0), this.stormMC && (this.stormMC.destroy(), (this.stormMC = null)); + }), + i + ); + })(t.gIRYTi); + (t.PhoneMainView = e), __reflect(e.prototype, "app.PhoneMainView"), t.mAYZL.ins().reg(e, t.yCIt.dShUbY); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isMove = !1), (t.isTurn = !1), (t.left = t.bottom = 0), (t.skinName = "Rocker2Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.touchEnabled = !1), (this.startPoint = new egret.Point()); + }), + (i.prototype.open = function () { + (t.RockerView.INOPERATION = !1), + (this.rockerGroup.visible = !0), + (this.rockerGroup1.visible = !0), + this.rockerBg.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), + this.rockerBg1.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), + this.clearFunction(); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.clearFunction(), + t.KHNO.ins().removeAll(this), + this.rockerBg.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), + this.rockerBg1.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + }), + (i.prototype.beginFunction = function (e) { + var i = e.touchPointID, + n = e.stageX, + s = e.stageY; + this.rockerBg.hitTestPoint(n, s) + ? ((this.isTurn = !0), + (this.beginX = n), + (this.beginY = s), + (this.delayTime = 0), + (this.startPoint = this.rockerGroup.globalToLocal(n, s)), + (this.rockerGroup.alpha = 1), + (this.isMove = !1), + (this.touchPointID = i), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this)) + : this.rockerBg1.hitTestPoint(n, s) && + ((this.isTurn = !1), + (this.beginX = n), + (this.beginY = s), + (this.delayTime = 0), + (this.startPoint = this.rockerGroup1.globalToLocal(n, s)), + (this.rockerGroup1.alpha = 1), + (this.isMove = !1), + (this.touchPointID = i), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this)); + }), + (i.prototype.clearFunction = function () { + (this.touchPointID = 0), + (this.actionGroup.visible = !1), + (this.actionGroup1.visible = !1), + (this.rockerGroup.alpha = 0.7), + (this.rockerGroup1.alpha = 0.7), + (this.angleGroup.visible = !1), + (this.angleGroup1.visible = !1), + (this.actionGroup.x = 0), + (this.actionGroup.y = 0), + (this.actionGroup1.x = 0), + (this.actionGroup1.y = 0), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + }), + (i.prototype.endFunction = function (e) { + this.touchPointID == e.touchPointID && (this.delayTime >= 10 ? this.endTouche() : ((this.delayTime = 20), this.touchMoveFunction(e), t.KHNO.ins().tBiJo(60, 0, this.endTouche, this))); + }), + (i.prototype.endTouche = function () { + t.KHNO.ins().removeAll(this), this.clearFunction(), (this.isMove = !1), (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE), (t.RockerView.INOPERATION = !1); + }), + (i.prototype.touchMoveFunction = function (e) { + if (this.touchPointID == e.touchPointID) + if (this.isMove) this.udpateMove(e), t.KHNO.ins().RTXtZF(this.setAutoTaskTime, this) || t.KHNO.ins().tBiJo(2e3, 1, this.setAutoTaskTime, this); + else { + var i = t.MathUtils.getDistance(e.stageX, e.stageY, this.beginX, this.beginY); + if (i > 10) { + this.isMove = !0; + var n = t.NWRFmB.ins().getPayer; + n.stopTask(), + n.stopFinding(), + (t.EhSWiR.m_ack_Char = null), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + t.qTVCL.ins().YFOmNj(), + this.setAutoTaskTime(); + } + } + }), + (i.prototype.udpateMove = function (e) { + var i; + i = this.isTurn ? this.rockerGroup.globalToLocal(e.stageX, e.stageY) : this.rockerGroup1.globalToLocal(e.stageX, e.stageY); + var n = t.MathUtils.getDistance(this.startPoint.x, this.startPoint.y, 2.5 * i.x, 2.5 * i.y); + if (n > 1) { + if ((this.delayTime++, this.delayTime >= 3)) { + t.RockerView.INOPERATION = !0; + var s = t.DirUtil.get8DirBy2Point(this.startPoint, i); + (t.EhSWiR.moveDir = s % 8), + (i.x = 2.5 * i.x), + (i.y = 2.5 * i.y), + this.isTurn + ? ((this.actionGroup.visible = !0), + (this.rockerGroup.alpha = 1), + (this.angleGroup.visible = !0), + (this.angleGroup.rotation = 45 * (s - 2)), + n > 98 && ((i.x = (98 * i.x) / n), (i.y = (98 * i.y) / n)), + (this.actionGroup.x = i.x), + (this.actionGroup.y = i.y), + (t.EhSWiR.m_playerActon = t.PlayerAction.TURN)) + : ((this.actionGroup1.visible = !0), + (this.rockerGroup1.alpha = 1), + (this.angleGroup1.visible = !0), + (this.angleGroup1.rotation = 45 * (s - 2)), + n > 75 && ((i.x = (75 * i.x) / n), (i.y = (75 * i.y) / n)), + (this.actionGroup1.x = i.x), + (this.actionGroup1.y = i.y), + (t.EhSWiR.m_playerActon = t.PlayerAction.WALK)); + } + } else + this.isTurn + ? ((this.actionGroup.visible = !1), (this.rockerGroup.alpha = 0.7), (this.angleGroup.visible = !1)) + : ((this.actionGroup1.visible = !1), (this.rockerGroup1.alpha = 0.7), (this.angleGroup1.visible = !1)), + (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE); + }), + (i.prototype.setAutoTaskTime = function () { + t.KHNO.ins().remove(this.setAutoTaskTime, this); + var e = t.VlaoF.TimeManagerConfigConfig, + i = 1; + e && e.Taskfingertime && (i = e.Taskfingertime), (t.VrAZQ.ins().clickTime = egret.getTimer() + 1e3 * i), t.Nzfh.ins().post_autoReceiveTask(); + }), + (i.INOPERATION = !1), + i + ); + })(t.gIRYTi); + (t.Rocker2View = e), __reflect(e.prototype, "app.Rocker2View"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isMove = !1), (t.left = t.bottom = 0), (t.skinName = "RockerSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.touchEnabled = !1), (this.startPoint = new egret.Point()); + }), + (i.prototype.open = function () { + (i.INOPERATION = !1), (this.rockerGroup.visible = !0), this.rockerBg.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), this.clearFunction(); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.clearFunction(), + t.KHNO.ins().removeAll(this), + this.rockerBg.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.beginFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + }), + (i.prototype.beginFunction = function (e) { + var i = e.touchPointID, + n = e.stageX, + s = e.stageY; + this.rockerBg.hitTestPoint(n, s) && + ((this.beginX = n), + (this.beginY = s), + (this.delayTime = 0), + (this.startPoint = this.rockerGroup.globalToLocal(n, s)), + (this.alpha = 1), + (this.isMove = !1), + (this.touchPointID = i), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this)); + }), + (i.prototype.clearFunction = function () { + (this.touchPointID = 0), + (this.actionGroup.visible = !1), + (this.alpha = 0.5), + (this.angleGroup.visible = !1), + (this.actionGroup.x = 0), + (this.actionGroup.y = 0), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.endFunction, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.touchMoveFunction, this); + }), + (i.prototype.endFunction = function (e) { + this.touchPointID == e.touchPointID && (this.delayTime >= 10 ? this.endTouche() : ((this.delayTime = 20), this.touchMoveFunction(e), t.KHNO.ins().tBiJo(60, 0, this.endTouche, this))); + }), + (i.prototype.endTouche = function () { + t.KHNO.ins().removeAll(this), this.clearFunction(), (this.isMove = !1), (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE), (i.INOPERATION = !1); + }), + (i.prototype.touchMoveFunction = function (e) { + if (this.touchPointID == e.touchPointID) + if (this.isMove) this.udpateMove(e), t.KHNO.ins().RTXtZF(this.setAutoTaskTime, this) || t.KHNO.ins().tBiJo(2e3, 1, this.setAutoTaskTime, this); + else { + var i = t.MathUtils.getDistance(e.stageX, e.stageY, this.beginX, this.beginY); + if (i > 10) { + this.isMove = !0; + var n = t.NWRFmB.ins().getPayer; + n.stopTask(), + n.stopFinding(), + (t.EhSWiR.m_ack_Char = null), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + t.qTVCL.ins().YFOmNj(), + this.setAutoTaskTime(); + } + } + }), + (i.prototype.udpateMove = function (e) { + var n = this.rockerGroup.globalToLocal(e.stageX, e.stageY), + s = t.MathUtils.getDistance(this.startPoint.x, this.startPoint.y, 2.5 * n.x, 2.5 * n.y); + if (s > 3) { + if ((this.delayTime++, this.delayTime >= 10)) { + (i.INOPERATION = !0), (this.actionGroup.visible = !0), (this.alpha = 1), (this.angleGroup.visible = !0); + var a = t.DirUtil.get8DirBy2Point(this.startPoint, n); + (t.EhSWiR.moveDir = a % 8), + (this.angleGroup.rotation = 45 * (a - 2)), + (n.x = 2.5 * n.x), + (n.y = 2.5 * n.y), + s >= 120 + ? (s > 210 && ((n.x = (210 * n.x) / s), (n.y = (210 * n.y) / s)), + (this.actionGroup.x = n.x), + (this.actionGroup.y = n.y), + (t.EhSWiR.m_playerActon = t.PlayerAction.TURN), + (this.actionImg.source = "m_yg5")) + : ((this.actionGroup.x = n.x), (this.actionGroup.y = n.y), (t.EhSWiR.m_playerActon = t.PlayerAction.WALK), (this.actionImg.source = "m_yg4")); + } + } else (this.actionGroup.visible = !1), (this.alpha = 0.5), (this.angleGroup.visible = !1), (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE); + }), + (i.prototype.setAutoTaskTime = function () { + t.KHNO.ins().remove(this.setAutoTaskTime, this); + var e = t.VlaoF.TimeManagerConfigConfig, + i = 1; + e && e.Taskfingertime && (i = e.Taskfingertime), (t.VrAZQ.ins().clickTime = egret.getTimer() + 1e3 * i), t.Nzfh.ins().post_autoReceiveTask(); + }), + (i.INOPERATION = !1), + i + ); + })(t.gIRYTi); + (t.RockerView = e), __reflect(e.prototype, "app.RockerView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.PK), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.s_24_3 = function (t) { + var e = this.MxGiq(3); + e.writeByte(t), this.evKig(e); + }), + i + ); + })(t.DlUenA); + (t.PkMgr = e), __reflect(e.prototype, "app.PkMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.playerTradeList = {}), + (i.itemGlobalPos = []), + (i.isDeals = !1), + (i.isLock = !1), + (i.isOtherLock = !1), + (i.sysId = t.jDIWJt.PrivateDeals), + i.YrTisc(1, i.post_13_1), + i.YrTisc(2, i.post_13_2), + i.YrTisc(3, i.post_13_3), + i.YrTisc(4, i.post_13_4), + i.YrTisc(5, i.post_13_5), + i.YrTisc(6, i.post_13_6), + i.YrTisc(7, i.post_13_7), + i.YrTisc(8, i.post_13_8), + i.YrTisc(9, i.post_13_9), + i.YrTisc(10, i.post_13_10), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_13_1 = function (t, e) { + void 0 === t && (t = 0), void 0 === e && (e = ""); + var i = this.MxGiq(1); + i.writeUnsignedInt(t), i.writeString(e), this.evKig(i); + }), + (i.prototype.post_13_1 = function (e) { + var i = e.readUnsignedInt(), + n = e.readString(), + s = Object.keys(this.playerTradeList); + s.length >= 3 || + ((this.playerTradeList[i] = { + InitiateId: i, + InitiateName: n, + time: 3e4 + egret.getTimer(), + }), + (i = null), + (n = null), + this.updateTime(), + t.KHNO.ins().remove(this.updateTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + }), + (i.prototype.updateTime = function () { + for (var e in i.ins().playerTradeList) { + var n = i.ins().playerTradeList[e]; + return n.time < egret.getTimer() ? (delete i.ins().playerTradeList[e], void this.post_deleteInfo()) : void 0; + } + t.KHNO.ins().remove(this.updateTime, this); + }), + (i.prototype.post_deleteInfo = function () {}), + (i.prototype.send_13_2 = function (t, e) { + var i = this.MxGiq(2); + i.writeUnsignedInt(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_13_2 = function (t) { + t.readString(); + }), + (i.prototype.send_13_3 = function (t, e, i) { + var n = this.MxGiq(3); + n.writeByte(t), n.writeByte(e), i.writeToBytes(n), this.evKig(n); + }), + (i.prototype.post_13_3 = function (e) { + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + var i = new Object(); + return ( + (i.playerInitiateID = e.readUnsignedInt()), + (i.playerName = e.readString()), + (i.playerLevel = e.readInt()), + (i.playerZsLevel = e.readByte()), + t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) || t.mAYZL.ins().open(t.PrivateDealsWin, i), + t.mAYZL.ins().close(t.IsAgreeTransView), + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView), + i + ); + }), + (i.prototype.send_13_4 = function (t, e) { + var i = this.MxGiq(4); + i.writeByte(t), i.writeInt(e), this.evKig(i); + }), + (i.prototype.post_13_4 = function (e) { + var i, + n = e.readBoolean(); + if (n) { + var s = new Object(); + return (s.type = e.readByte()), 1 == s.type ? ((s.pos = e.readByte()), (i = new t.userItem(e)), (s.myitem = i)) : 2 == s.type && (s.pos = e.readByte()), s; + } + return null; + }), + (i.prototype.send_13_5 = function () { + var t = this.MxGiq(5); + this.evKig(t); + }), + (i.prototype.post_13_5 = function (e) { + var i, + n = new Object(); + return (n.type = e.readByte()), 1 == n.type ? ((n.pos = e.readByte()), (i = new t.userItem(e)), (n.otheritem = i)) : 2 == n.type && (n.pos = e.readByte()), n; + }), + (i.prototype.send_13_6 = function () { + var t = this.MxGiq(6); + this.evKig(t); + }), + (i.prototype.post_13_6 = function (t) { + var e = t.readBoolean(); + if (e) { + var i = t.readByte(), + n = t.readInt(); + return { + type: i, + num: n, + }; + } + return null; + }), + (i.prototype.send_13_7 = function () { + var t = this.MxGiq(7); + this.evKig(t); + }), + (i.prototype.post_13_7 = function (t) { + var e = t.readBoolean(); + if (e) { + var i = t.readByte(), + n = t.readInt(); + return { + type: i, + num: n, + }; + } + return null; + }), + (i.prototype.post_13_8 = function (t) { + (i.ins().isLock = t.readBoolean()), (i.ins().isOtherLock = t.readBoolean()); + }), + (i.prototype.post_13_9 = function (t) {}), + (i.prototype.post_13_10 = function (t) {}), + i + ); + })(t.DlUenA); + (t.XZAqnu = e), __reflect(e.prototype, "app.XZAqnu"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.verticalCenter = -100), (t.horizontalCenter = 0), (t.skinName = "IsAgreeTransPanel"), (t.name = "IsAgreeTransView"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System44), + this.vKruVZ(this.sureBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.HFTK(t.XZAqnu.ins().post_13_2, this.closeView); + for (var n in t.XZAqnu.ins().playerTradeList) + if (t.XZAqnu.ins().playerTradeList[n]) { + (this.curInfo = t.XZAqnu.ins().playerTradeList[n]), delete t.XZAqnu.ins().playerTradeList[n], t.XZAqnu.ins().post_deleteInfo(); + break; + } + this.curInfo && this.curInfo.InitiateName && (this.tradingLab.text = this.curInfo.InitiateName + t.CrmPU.language_Common_46); + }), + (i.prototype.openView = function (e) { + t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) && t.mAYZL.ins().close(t.PrivateDealsWin), t.mAYZL.ins().close(this); + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView), t.mAYZL.ins().open(t.PrivateDealsWin, e); + }), + (i.prototype.closeView = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sureBtn: + this.curInfo && t.XZAqnu.ins().send_13_2(this.curInfo.InitiateId, 1); + break; + case this.closeBtn: + this.curInfo && t.XZAqnu.ins().send_13_2(this.curInfo.InitiateId, 0), t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.fEHj(this.sureBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.tradingLab = null), + (this.sureBtn = null), + (this.closeBtn = null); + }), + i + ); + })(t.gIRYTi); + (t.IsAgreeTransView = e), __reflect(e.prototype, "app.IsAgreeTransView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sendName = ""), (i.skinName = "PrivateDealsWinSkin"), (i.name = "privateDealsWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.newGrp = new eui.Group()), + (this.newGrp.width = 60), + (this.newGrp.height = 60), + (this.newIcon = new eui.Image()), + (this.newIcon.horizontalCenter = 0), + (this.newIcon.verticalCenter = 0), + this.newGrp.addChild(this.newIcon), + (this.newGrp.x = this.x), + (this.newGrp.y = this.y), + (this.newGrp.visible = !1), + (this.newGrp.touchThrough = !0), + (this.newGrp.touchChildren = !1), + (this.newIcon.touchEnabled = !1), + t.yCIt.UIupV.addChild(this.newGrp); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.trading.visible = !1), + (this.myLock.visible = !0), + (this.otherInfo = null), + e[0] && e[0].playerName && (this.otherInfo = e[0]), + e[0] && e[0].sendName && (this.sendName = e[0].sendName), + null != this.otherInfo + ? this.otherInfo && + ((t.XZAqnu.ins().isDeals = !0), + (this.playerName.text = this.otherInfo.playerName + " " + this.otherInfo.playerZsLevel + t.CrmPU.language_Common_0 + this.otherInfo.playerLevel + t.CrmPU.language_Common_1)) + : e[0] + ? (this.playerName.text = t.CrmPU.language_Common_44) + : (this.playerName.text = t.CrmPU.language_Common_215); + for (var n = 0; 5 > n; n++) + (this["otherItem" + n].data = null), + (this["myItem" + n].data = null), + (this["myItem" + n].Pos = n), + this["myItem" + n].addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this); + this.otherWing.setData(ZnGy.qatYuanbao, !1), + this.otherGold.setData(ZnGy.qatMoney, !1), + this.setOtherMoneyCount(0, 0), + this.myWing.setData(ZnGy.qatYuanbao, !1), + this.myGold.setData(ZnGy.qatMoney, !1), + this.setMyMoneyCount(0, 0), + (this.wingInput.text = ""), + (this.goldInput.text = ""), + (this.myName.text = this.getPlayerRoleInfo()), + (this.otherIsLock.visible = !1), + (this.myIsLock.visible = !1), + (this.otherLockBtn.touchEnabled = !1), + (this.myLock.touchEnabled = !0), + (this.ruleTips.ruleDesc = t.VlaoF.taxconfig.rule2), + this.wingInput.addEventListener(egret.TextEvent.FOCUS_IN, this.onFocusIn, this), + this.wingInput.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.goldInput.addEventListener(egret.TextEvent.FOCUS_IN, this.onFocusIn, this), + this.goldInput.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.vKruVZ(this.search, this.onClick), + this.vKruVZ(this.myLock, this.onClick), + this.vKruVZ(this.trading, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.HFTK(t.XZAqnu.ins().post_13_3, this.agreeTrade), + this.HFTK(t.XZAqnu.ins().post_13_4, this.updateMyData), + this.HFTK(t.XZAqnu.ins().post_13_5, this.updateOtherData), + this.HFTK(t.XZAqnu.ins().post_13_6, this.changeMoney), + this.HFTK(t.XZAqnu.ins().post_13_7, this.changeOtherMoney), + this.HFTK(t.XZAqnu.ins().post_13_8, this.changeLock), + this.HFTK(t.XZAqnu.ins().post_13_9, this.closeView), + this.HFTK(t.XZAqnu.ins().post_13_10, this.closeView), + t.KHNO.ins().tBiJo(500, 1, this.stopMove, this), + "" != this.sendName && t.XZAqnu.ins().send_13_1(0, this.sendName); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), (t.XZAqnu.ins().itemGlobalPos = []); + for (var i = 0; 5 > i; i++) { + var n = this["myItem" + i].localToGlobal(0, 0); + t.XZAqnu.ins().itemGlobalPos.push(n); + } + }), + (i.prototype.updateMyData = function (t) { + null != t && (1 == t.type ? t.myitem && t.myitem.wItemId && (this["myItem" + t.pos].data = t.myitem) : 2 == t.type && (this["myItem" + t.pos].data = null)); + }), + (i.prototype.updateOtherData = function (t) { + 1 == t.type ? t.otheritem && t.otheritem.wItemId && (this["otherItem" + t.pos].data = t.otheritem) : 2 == t.type && (this["otherItem" + t.pos].data = null); + }), + (i.prototype.stopMove = function () { + t.XZAqnu.ins().itemGlobalPos = []; + for (var e = 0; 5 > e; e++) { + var i = this["myItem" + e].localToGlobal(0, 0); + t.XZAqnu.ins().itemGlobalPos.push(i); + } + }), + (i.prototype.agreeTrade = function (e) { + e && ((t.XZAqnu.ins().isDeals = !0), (this.playerName.text = e.playerName + " " + e.playerZsLevel + t.CrmPU.language_Common_0 + e.playerLevel + t.CrmPU.language_Common_1)), + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView); + }), + (i.prototype.getPlayerRoleInfo = function () { + var e = "", + i = t.NWRFmB.ins().getPayer; + return i && i.propSet && (e = i.propSet.getName() + " " + i.propSet.MzYki() + t.CrmPU.language_Common_0 + i.propSet.mBjV() + t.CrmPU.language_Common_1), e; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.search: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.XZAqnu.ins().isDeals ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips45) : t.mAYZL.ins().open(t.ChatShowFriendOrNearListView, 2); + break; + case this.myLock: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.XZAqnu.ins().isDeals ? (t.XZAqnu.ins().send_13_5(), (this.myLock.visible = !1), (this.trading.visible = !0)) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips31); + break; + case this.trading: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + t.XZAqnu.ins().isDeals ? (t.XZAqnu.ins().isLock ? t.XZAqnu.ins().send_13_7() : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips32)) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips31); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.changeLock = function () { + t.XZAqnu.ins().isLock && ((this.myIsLock.visible = !0), (this.myLock.touchEnabled = !1)), + t.XZAqnu.ins().isOtherLock && ((this.otherLockBtn.label = t.CrmPU.language_Common_45), (this.otherIsLock.visible = !0)); + }), + (i.prototype.onTouchBegin = function (e) { + if (null != e.currentTarget.data) { + (this.newIcon.source = e.target.source), (this.newGrp.name = e.target.name); + var i = e.currentTarget.localToGlobal(0, 0); + (this.newGrp.x = i.x), + (this.newGrp.y = i.y), + t.uMEZy.ins().closeTips(), + (this.grpOldIdx = e.currentTarget.Pos), + (this.XTouch = e.stageX - this.newGrp.x), + (this.YTouch = e.stageY - this.newGrp.y), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + } + }), + (i.prototype.onTouchMove = function (t) { + (this.newGrp.visible = !0), this.newGrp.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this); + var e = this["myItem" + this.grpOldIdx]; + e && e.setVis(!1), (this.newGrp.x = t.stageX - this.XTouch), (this.newGrp.y = t.stageY - this.YTouch); + }), + (i.prototype.onTouchEnd = function (e) { + if (1 == this.newGrp.visible) { + for (var i = -1, n = 50, s = 0, a = this.newGrp.localToGlobal(0, 0), r = 0; 5 > r; r++) { + var o = this["myItem" + r].localToGlobal(0, 0); + (s = Math.sqrt(Math.pow(o.x - a.x, 2) + Math.pow(o.y - a.y, 2))), n > s && ((n = s), (i = this["myItem" + r].Pos)); + } + if (-1 == i || i != this.grpOldIdx) { + var l = new t.ItemSeries(); + l.setData(0), t.XZAqnu.ins().send_13_3(2, this.grpOldIdx, l); + } + var h = this["myItem" + this.grpOldIdx]; + h && h.setVis(!0), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + (this.newGrp.x = this.x), + (this.newGrp.y = this.y), + (this.newGrp.visible = !1), + (i = null), + (n = null), + (s = null), + (a = null), + (h = null); + } + }), + (i.prototype.setOtherMoneyCount = function (e, i) { + var n = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(e) + "|", + s = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i) + "|"; + this.otherWing.setCount(n), this.otherGold.setCount(s), (n = null), (s = null); + }), + (i.prototype.setMyMoneyCount = function (e, i) { + var n = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(e) + "|", + s = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i) + "|"; + this.myWing.setCount(n), this.myGold.setCount(s), (n = null), (s = null); + }), + (i.prototype.onFocusIn = function (t) { + var e = t.currentTarget; + switch (e) { + case this.wingInput: + this.myWing.setCount(""); + break; + case this.goldInput: + this.myGold.setCount(""); + } + }), + (i.prototype.onFocusOut = function (e) { + var i = e.currentTarget, + n = 0, + s = 0; + if (t.XZAqnu.ins().isDeals) + switch (i) { + case this.wingInput: + (s = t.ZAJw.MPDpiB(ZnGy.qatYuanbao)), + (n = +this.wingInput.text), + n > s && (this.wingInput.text = s + ""), + t.XZAqnu.ins().send_13_4(4, +this.wingInput.text), + this.myWing.setCount(""), + (this.wingInput.text = ""); + break; + case this.goldInput: + (s = t.ZAJw.MPDpiB(ZnGy.qatMoney)), + (n = +this.goldInput.text), + n > s && (this.goldInput.text = s + ""), + t.XZAqnu.ins().send_13_4(1, +this.goldInput.text), + this.myGold.setCount(""), + (this.goldInput.text = ""); + } + else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips31), this.setMyMoneyCount(0, 0), (this.wingInput.text = ""), (this.goldInput.text = ""); + (i = null), (n = null), (s = null); + }), + (i.prototype.changeMoney = function (e) { + if (null != e) { + var i = "0xFFFFFF", + n = ""; + 1 == e.type + ? ((i = t.ClwSVR.getMoneyColor(e.num)), (n = "|C:" + i + "&T:" + t.CommonUtils.zhuanhuan(e.num) + "|"), this.myGold.setCount(n)) + : 4 == e.type && ((i = t.ClwSVR.getMoneyColor(e.num)), (n = "|C:" + i + "&T:" + t.CommonUtils.zhuanhuan(e.num) + "|"), this.myWing.setCount(n)), + (i = null), + (n = null); + } + }), + (i.prototype.changeOtherMoney = function (e) { + if (null != e) { + var i = "0xFFFFFF", + n = ""; + 1 == e.type + ? ((i = t.ClwSVR.getMoneyColor(e.num)), (n = "|C:" + i + "&T:" + t.CommonUtils.zhuanhuan(e.num) + "|"), this.otherGold.setCount(n)) + : 4 == e.type && ((i = t.ClwSVR.getMoneyColor(e.num)), (n = "|C:" + i + "&T:" + t.CommonUtils.zhuanhuan(e.num) + "|"), this.otherWing.setCount(n)), + (i = null), + (n = null); + } + }), + (i.prototype.closeView = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + t.XZAqnu.ins().send_13_6(), + this.wingInput.removeEventListener(egret.TextEvent.FOCUS_IN, this.onFocusIn, this), + this.wingInput.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.goldInput.removeEventListener(egret.TextEvent.FOCUS_IN, this.onFocusIn, this), + this.goldInput.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.fEHj(this.search, this.onClick), + this.fEHj(this.myLock, this.onClick), + this.fEHj(this.trading, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + (t.XZAqnu.ins().itemGlobalPos = []), + (t.XZAqnu.ins().isLock = !1), + (t.XZAqnu.ins().isDeals = !1); + for (var s = 0; 5 > s; s++) this["myItem" + s].removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this); + t.lEYZI.Naoc(this.newGrp), + (this.dragDropUI = null), + (this.otherItem0 = null), + (this.otherItem1 = null), + (this.otherItem2 = null), + (this.otherItem3 = null), + (this.otherItem4 = null), + (this.otherWing = null), + (this.otherGold = null), + (this.otherLockBtn = null), + (this.search = null), + (this.playerName = null), + (this.otherIsLock = null), + (this.myItem0 = null), + (this.myItem1 = null), + (this.myItem2 = null), + (this.myItem3 = null), + (this.myItem4 = null), + (this.myWing = null), + (this.myGold = null), + (this.wingInput = null), + (this.goldInput = null), + (this.myLock = null), + (this.trading = null), + (this.myName = null), + (this.myIsLock = null), + (this.otherInfo = null), + (this.newGrp = null), + (this.newIcon = null), + (this.grpOldIdx = null), + (this.XTouch = null), + (this.YTouch = null); + }), + i + ); + })(t.gIRYTi); + (t.PrivateDealsWin = e), __reflect(e.prototype, "app.PrivateDealsWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.btnNameLev = []), (this.dicName = {}), (this.dicRank = {}), (this.RANK_TYPE = 5), (this.recordObj = {}), (this.tabBarTxt = ["等级榜"]), (this.type = a.rtAllLevel); + } + return ( + (t.prototype.init = function () { + if (1 == Main.vZzwB.gameMode) { + this.btnNameLev = [ + ["1", "玛法英雄榜"], + ["0", "战神榜"], + ["0", "物攻榜"], + ]; + } else { + this.btnNameLev = [ + ["1", "玛法英雄榜"], + ["0", "战神榜"], + ["0", "法神榜"], + ["0", "道尊榜"], + ]; + } + var t, e, i; + for (var a = 0; a < this.RANK_TYPE; a++) { + i = []; + switch (a) { + case s.RANK_LEVE: + if (this.dicName[s.RANK_LEVE] && 0 != this.dicName[s.RANK_LEVE].length) { + for (e = 0; e < this.btnNameLev.length; e++) { + this.dicName[s.RANK_LEVE][e].select = 0 == e ? 1 : 0; + } + } else { + for (e = 0; e < this.btnNameLev.length; e++) { + (t = new n()), (t.id = a), (t.select = Number(this.btnNameLev[e][0])), (t.iconRes = this.btnNameLev[e][1]), i.push(t); + } + this.registerBtn(s.RANK_LEVE, i); + } + } + } + }), + (t.prototype.registerBtn = function (t, e) { + this.dicName[t] = e; + }), + (t.prototype.getRankTab = function () { + return this.tabBarTxt; + }), + t + ); + })(); + (t.RankData = e), __reflect(e.prototype, "app.RankData"); + var i = (function () { + function t() {} + return t; + })(); + (t.RankListData = i), __reflect(i.prototype, "app.RankListData"); + var n = (function () { + function t() {} + return t; + })(); + (t.ListBtnInfo = n), __reflect(n.prototype, "app.ListBtnInfo"); + var s; + !(function (t) { + (t[(t.RANK_LEVE = 0)] = "RANK_LEVE"), (t[(t.RANK_FIGHT = 1)] = "RANK_FIGHT"), (t[(t.RANK_HERO = 2)] = "RANK_HERO"), (t[(t.RANK_MEDAL = 3)] = "RANK_MEDAL"), (t[(t.RANK_SOUL = 4)] = "RANK_SOUL"); + })((s = t.RankType || (t.RankType = {}))); + var a; + !(function (t) { + (t[(t.rtAllLevel = 0)] = "rtAllLevel"), + (t[(t.rtWarriorLevel = 1)] = "rtWarriorLevel"), + (t[(t.rtMagicianLevel = 2)] = "rtMagicianLevel"), + (t[(t.rtWizardLevel = 3)] = "rtWizardLevel"), + (t[(t.rtMoBaiRankList = 4)] = "rtMoBaiRankList"), + (t[(t.rtPhyAtkMaxRankList = 5)] = "rtPhyAtkMaxRankList"), + (t[(t.rtMagicAtkMAxRankList = 6)] = "rtMagicAtkMAxRankList"), + (t[(t.rtWizardAtkMaxRankList = 7)] = "rtWizardAtkMaxRankList"), + (t[(t.CrossServerAllLevel = 8)] = "CrossServerAllLevel"), + (t[(t.CrossServerMoBaiRankList = 9)] = "CrossServerMoBaiRankList"), + (t[(t.rtScore = 1001)] = "rtScore"), + (t[(t.wboss = 1002)] = "wboss"), + (t[(t.NightVoma = 1003)] = "NightVoma"), + (t[(t.CrossServerChaosRank = 1005)] = "CrossServerChaosRank"), + (t[(t.CrossServerBoss = 1006)] = "CrossServerBoss"), + (t[(t.CrossServerNightVoma = 1007)] = "CrossServerNightVoma"), + (t[(t.CrossServerEscapeFromTrial = 1008)] = "CrossServerEscapeFromTrial"), + (t[(t.CrossServerShabak = 10021)] = "CrossServerShabak"); + })((a = t.RankDetailType || (t.RankDetailType = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "RankBtnItemSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + (this.currentState = 1 == t.isSelected ? "down" : "up"), (this.label.text = t.iconRes); + } + }), + e + ); + })(eui.ItemRenderer); + (t.RankBtnItemView = e), __reflect(e.prototype, "app.RankBtnItemView"); + var i = (function () { + function t() {} + return t; + })(); + (t.RankBtnVo = i), __reflect(i.prototype, "app.RankBtnVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this.dataAry = []), (this.curIndex = 0), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.RankBtnItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []), + this.setRankByType(t.RankType.RANK_LEVE); + }), + (e.prototype.setRankByType = function (e) { + (this.rankType = e), (this.curIndex = 0); + this.dataAry.length > 0 && t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0); + for (var i = 0; i < t.JgMyc.ins().rankModel.dicName[e].length; i++) + this.dataAry.push({ + isSelected: t.JgMyc.ins().rankModel.dicName[e][i].select, + iconRes: t.JgMyc.ins().rankModel.dicName[e][i].iconRes, + }); + this.setData(this.dataAry); + }), + (e.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (e.prototype.onItemTap = function (e, i) { + (this.target = e), + this.curIndex != i && + ((t.JgMyc.ins().rankModel.dicName[this.rankType][this.curIndex].select = 0), + (t.JgMyc.ins().rankModel.dicName[this.rankType][i].select = 1), + (this.dataAry[this.curIndex].isSelected = t.JgMyc.ins().rankModel.dicName[this.rankType][this.curIndex].select), + (this.dataAry[this.curIndex].iconRes = t.JgMyc.ins().rankModel.dicName[this.rankType][this.curIndex].iconRes), + this._itemArrayCollection.replaceItemAt(this.dataAry[this.curIndex], this.curIndex), + (this.dataAry[i].isSelected = t.JgMyc.ins().rankModel.dicName[this.rankType][i].select), + (this.dataAry[i].iconRes = t.JgMyc.ins().rankModel.dicName[this.rankType][i].iconRes), + this._itemArrayCollection.replaceItemAt(this.dataAry[i], i), + (this.curIndex = i), + this._callfunc && this._callfunc(i)); + }), + (e.prototype.setData = function (t) { + this.creatItem(t); + }), + (e.prototype.creatItem = function (t) { + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.destroy = function () { + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this.dataAry.length > 0 && t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null), + this._callfunc && (this._callfunc = null); + }), + e + ); + })(); + (t.RankBtnListView = e), __reflect(e.prototype, "app.RankBtnListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.state_1 = "rank_bg2"), + (i.state_2 = "rank_bg3"), + (i.colorRank = [16718530, 16742144, 1769471]), + (i.vipStr = ["rank_bk", "rank_lk", "rank_lk1", "rank_zk", "rank_ck", "rank_cx", "rank_cy"]), + (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "RankQQListItemSkin" : "RankListItemSkin"), + (i.touchEnabled = !1), + (i.touchChildren = !0), + i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onMouseDouble, this), + this.VoZqXH(this.imgTitle, this.mouseMove), + this.EeFPm(this.imgTitle, this.mouseMove), + (this.logo.visible = !1); + }), + (i.prototype.onMouseDouble = function (t) { + this.callFunc && this.callFunc(); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (this.data) { + var n = i.localToGlobal(); + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_RANKTIPS, + { + type: t.JgMyc.ins().rankModel.type, + rank: this.data.rank, + }, + { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + } + ); + } + } + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + if ( + ((this.imgTitle.visible = 0 == t.JgMyc.ins().rankModel.type ? !1 : this.data.rank < 11 ? !0 : !1), + 1 == t.JgMyc.ins().rankModel.type || 2 == t.JgMyc.ins().rankModel.type || 3 == t.JgMyc.ins().rankModel.type + ? (this.imgTitle.source = 1 == this.data.rank ? "rank_ch1" : "rank_ch2") + : (this.imgTitle.source = this.data.rank < 4 ? "rank_ch1" : this.data.rank <= 10 ? "rank_ch2" : ""), + (this.imgVip.visible = !1), + t.JgMyc.ins().rankModel.type == t.RankDetailType.rtAllLevel) + ) { + var e = t.VipData.ins().getVipLv(this.data.vipLv); + e > 0 && ((this.imgVip.source = this.vipStr[e - 1]), (this.imgVip.visible = !0)); + } + var i = this.data, + n = i.index % 2 == 0 ? this.state_1 : this.state_2; + this.bg.$setTexture(RES.getRes(n)), + (this.select.visible = 1 == i.isSelected ? !0 : !1), + i.rank < 4 + ? ((this.txt_name.textColor = this.colorRank[i.rank - 1]), (this.rankImg.visible = !0), (this.txt_rank.visible = !1), (this.rankImg.source = "rank_pm" + i.rank)) + : ((this.txt_name.textColor = 15064527), (this.rankImg.visible = !1), (this.txt_rank.visible = !0), (this.txt_rank.text = i.rank + "")), + (this.txt_guild.text = i.guildName), + (this.playerId = i.playerId), + (this.txt_name.text = i.name), + (this.txt_level.text = i.levelDes); + var s = i.superPL; + if (((this.callFunc = i.callFunc), Main.vZzwB.pfID == t.PlatFormID.QQGame)) { + var a = s >> 16, + r = a >> 8, + o = 255 & a, + l = 65535 & s; + (this.logo.visible = r && l > 0), (this.logo.source = r && l > 0 ? (1 == r ? "lz_pt" + (l + 1) : "lz_hh" + (l + 1)) : ""), (this.isBlueYear.visible = 1 == o); + } else this.logo.visible = s > 0; + } + }), + (i.prototype.destroy = function () { + this.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onMouseDouble, this), + this.imgTitle.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.imgTitle.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.callFunc && (this.callFunc = null), + (this.data = null), + (this.bg.source = ""), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseItemRender); + (t.RankListItemView = e), __reflect(e.prototype, "app.RankListItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this.curIdx = -1), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, this.onItemTap], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.itemRenderer = t.RankListItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []); + }), + (e.prototype.setRankByType = function (e, i, n) { + void 0 === i && (i = null), void 0 === n && (n = null), (this.callFunc1 = i), (this.callFunc2 = n), (this.curIdx = 0); + var s, + a = [], + r = t.JgMyc.ins().rankModel.dicRank[e], + o = ""; + if (r && r.list.length > 0) { + for (var l = r.list, h = 0; h < l.length; h++) { + (s = l[h]), (o = s.circle > 0 ? s.circle + t.CrmPU.language_Common_0 + s.level : s.level + ""); + var p = 0; + 0 == h && + ((p = 1), + i && + i({ + close: 1, + playerID: s.playerId, + })), + a.push({ + index: h, + isSelected: p, + playerId: s.playerId, + rank: s.rank, + name: s.name, + levelDes: o, + superPL: s.superPL, + guildName: s.guildName, + vipLv: s.vipLv, + callFunc: this.callFunc.bind(this), + }); + } + this.setData(a); + } else this.setData([]); + n && + n({ + data: a, + }); + }), + (e.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE); + }), + (e.prototype.onItemTap = function (t, e, i, n) { + this.curIdx >= 0 && this.dataAry[this.curIdx] && ((this.dataAry[this.curIdx].isSelected = 0), this._itemArrayCollection.replaceItemAt(this.dataAry[this.curIdx], this.curIdx)), + (this.dataAry[e].isSelected = 1), + this._itemArrayCollection.replaceItemAt(this.dataAry[e], e), + this._itemArrayCollection.refresh(), + (this.curIdx = e), + (this._rankListItemView = n), + this.callFunc1 && + this.callFunc1({ + playerID: t.playerId, + close: 1, + }); + }), + (e.prototype.onMouseDouble = function () { + this.callFunc && this.callFunc(); + }), + (e.prototype.setData = function (t) { + this.creatItem(t); + }), + (e.prototype.creatItem = function (e) { + t.ObjectPool.wipe(this.dataAry), (this.dataAry.length = 0), (this.curIdx = 0); + for (var i = 0; i < e.length; ++i) this.dataAry.push(e[i]); + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.callFunc = function () { + this._rankListItemView && + this.callFunc1 && + this.callFunc1({ + view: this._rankListItemView, + pos: { + x: 750, + y: 20, + }, + }); + }), + (e.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + e.destroy(), (e = null); + } + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null), + this.callFunc1 && (this.callFunc1 = null), + this.callFunc2 && (this.callFunc2 = null), + this._rankListItemView && (this._rankListItemView = null); + }), + e + ); + })(); + (t.RankListView = e), __reflect(e.prototype, "app.RankListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "Btn9Skin"), (e.touchEnabled = !1), (e.touchChildren = !0), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.labelDisplay && this.data.text && (this.labelDisplay.text = this.data.text); + }), + e + ); + })(eui.ItemRenderer); + (t.RankRightMenuItem = e), __reflect(e.prototype, "app.RankRightMenuItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RankRightMenuSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (i, n) { + e.prototype.partAdded.call(this, i, n), n == this.gList && ((this.gList.itemRenderer = t.RankRightMenuItem), this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this)); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.setData = function () { + (this.x = 0), (this.y = 0), this.bindList(); + }), + (i.prototype.onChange = function (e) { + var i = this.gList.selectedItem; + if (t.GlobalData.otherPlayerIdDummy) { + if (t.GlobalData.otherPlayerId < 1e3) return; + if ("showInfoBtn" != i.name) return; + } + switch (i.name) { + case "chatBtn": + t.ckpDj.ins().sendEvent(t.ChatEvent.PLAY_NAME_SLECT, [ + { + indexText: t.GlobalData.otherPlayerName, + }, + ]); + break; + case "showInfoBtn": + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(t.GlobalData.otherPlayerId); + break; + case "addFriendBtn": + var n = new t.CSFriend_Add_Data(); + (n.id = t.GlobalData.otherPlayerId), (n.nickName = ""), t.KWGP.ins().sendAddFriend(n); + break; + case "delFriendBtn": + var s = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt21, t.GlobalData.otherPlayerName)); + t.CautionView.show( + s, + function () { + this.sendDelInfo(t.FriendState.Friend); + }, + this + ); + break; + case "inviteTeamBtn": + var a = t.CrmPU.language_Team_LeaderinviteJonTeam_tips_0 + t.GlobalData.otherPlayerName + t.CrmPU.language_Team_LeaderinviteJonTeam_tips_1; + t.CautionView.show( + a, + function () { + t.Qskf.ins().onSendInviteJoinTeam(t.GlobalData.otherPlayerId, ""); + }, + this + ); + break; + case "applyTeamBtn": + var r = t.CrmPU.language_Team_ApplyAddTeam_tips_0 + t.GlobalData.otherPlayerName + t.CrmPU.language_Team_ApplyAddTeam_tips_1; + t.CautionView.show( + r, + function () { + t.Qskf.ins().onSendApplyJoinTeam(t.GlobalData.otherPlayerId); + }, + this + ); + break; + case "addConBtn": + var o = new t.CSFriend_Add_Concern_Data(); + (o.id = t.GlobalData.otherPlayerId), (o.nickName = ""), t.KWGP.ins().sendAddConcern(o); + break; + case "addBlackBtn": + var l = new t.CSFriend_Add_Concern_Data(); + (l.id = t.GlobalData.otherPlayerId), (l.nickName = ""), t.KWGP.ins().sendAddBlackList(l); + break; + case "privateTradeLineBtn": + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + var h = new Object(); + (h.sendName = t.GlobalData.otherPlayerName), t.mAYZL.ins().ZbzdY(t.PrivateDealsWin) || t.mAYZL.ins().open(t.PrivateDealsWin, h); + } + }), + (i.prototype.bindList = function () { + var e = t.KWGP.ins().findIsFriend(t.GlobalData.otherPlayerId); + e + ? (this.gList.dataProvider = new eui.ArrayCollection([ + { + state: 0, + text: t.CrmPU.language_Omission_txt111, + name: "chatBtn", + }, + { + state: 1, + text: t.CrmPU.language_Omission_txt112, + name: "showInfoBtn", + }, + { + state: 1, + text: t.CrmPU.language_System43, + name: "privateTradeLineBtn", + }, + { + state: 1, + text: t.CrmPU.language_Omission_txt113, + name: "delFriendBtn", + }, + { + state: 0, + text: t.CrmPU.language_System52, + name: "inviteTeamBtn", + }, + { + state: 0, + text: t.CrmPU.Language_Team_Btn_Text4, + name: "applyTeamBtn", + }, + { + state: 0, + text: t.CrmPU.language_System14, + name: "addConBtn", + }, + { + state: 0, + text: t.CrmPU.language_Omission_txt114, + name: "addBlackBtn", + }, + ])) + : (this.gList.dataProvider = new eui.ArrayCollection([ + { + state: 0, + text: t.CrmPU.language_Omission_txt111, + name: "chatBtn", + }, + { + state: 1, + text: t.CrmPU.language_Omission_txt112, + name: "showInfoBtn", + }, + { + state: 1, + text: t.CrmPU.language_System43, + name: "privateTradeLineBtn", + }, + { + state: 0, + text: t.CrmPU.language_System12, + name: "addFriendBtn", + }, + { + state: 0, + text: t.CrmPU.language_System52, + name: "inviteTeamBtn", + }, + { + state: 0, + text: t.CrmPU.Language_Team_Btn_Text4, + name: "applyTeamBtn", + }, + { + state: 0, + text: t.CrmPU.language_System14, + name: "addConBtn", + }, + { + state: 0, + text: t.CrmPU.language_Omission_txt114, + name: "addBlackBtn", + }, + ])), + (this.gList.height = 48 * this.gList.dataProvider.length), + (this.bg.height = 47 * this.gList.dataProvider.length), + (this.height = this.bg.height), + this.gList.validateNow(); + }), + (i.prototype.sendDelInfo = function (e) { + var i = new t.CSFriend_Del_Data(); + (i.id = t.GlobalData.otherPlayerId), (i.nickName = ""), (i.type = e), t.KWGP.ins().sendDeleteFirends(i); + }), + (i.prototype.destroy = function () { + (t.GlobalData.otherPlayerIdDummy = !1), + this.gList && + (this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.gList.removeChildren(), + (this.gList.itemRenderer = null), + (this.gList.dataProvider = null), + (this.gList = null)), + this.bg && ((this.bg.source = ""), (this.bg = null)), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Component); + (t.RankRightMenuView = e), __reflect(e.prototype, "app.RankRightMenuView", ["eui.UIComponent", "egret.DisplayObject"]); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RankTipsSkin"), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.updateStr = function (i, n) { + if (i && 0 != i.type) { + var s = t.VlaoF.ranktitleconfig[i.type][i.rank]; + s && ((this.titleImg.source = s.pictips + ""), (this.descLab.textFlow = t.hETx.qYVI(s.tips))); + } + e.prototype.onResizeUI.call(this, i, n); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + (this.titleImg.source = ""), (this.descLab.text = ""); + }), + i + ); + })(t.TipsBase); + (t.RankTipsView = e), __reflect(e.prototype, "app.RankTipsView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.tabArr = []), (i.selectedItem = 0), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "RankViewSkin"), (i.name = "RankView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + t.JgMyc.ins().rankModel.init(), + (this.tabBar.itemRenderer = t.NewTabBarItemRenderer), + (this.roleInnerModel = new t.RoleInnerModel(this.modelGroup)), + (this.flipPage = new t.FlipPage(this.btn_home, this.btn_pre, this.btn_next)), + (this.flipPage.maxLength = 10), + this.flipPage.addEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), + (this.rankBtnListView = new t.RankBtnListView(this.btn_list)), + (this.rankBtnListView._callfunc = this.callfunc.bind(this)), + (this.rankListView = new t.RankListView(this.rank_list)), + (this.rank_no.visible = t.GlobalData.sectionOpenDay < 2), + (this.menu_group.visible = !1), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.rankRightMenuView = new t.RankRightMenuView()), + this.menu_group.addChild(this.rankRightMenuView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + t.CrmPU.language_Omission_txt89), + this.vKruVZ(this.btn_operation, this.onOperation), + this.vKruVZ(this.closeBtn, this.closeView), + this.addChangeEvent(this.tabBar, this.onTabTouch), + (this.tabArr = t.JgMyc.ins().rankModel.getRankTab()), + this.tabArr && ((this.tabBar.dataProvider = new eui.ArrayCollection(this.tabArr)), this.onChangeTab(0)), + t.ckpDj.ins().addEvent(t.CompEvent.RANK_SHOW_LIST, this.onShowList, this), + t.Nzfh.ins().send_0_23(t.RankDetailType.rtAllLevel), + this.HFTK(t.Nzfh.ins().post_s_0_71, this.setRankListData), + this.HFTK(t.bPGzk.ins().post_7_7, this.setModel); + }), + (i.prototype.onShowList = function (e) { + e > t.RankDetailType.rtWizardAtkMaxRankList || this.setRankListData([t.JgMyc.ins().rankModel.type]); + }), + (i.prototype.onTabTouch = function (t) { + this.onChangeTab(t.currentTarget.selectedIndex); + }), + (i.prototype.setRankListData = function (e) { + var i = e[0]; + i > t.RankDetailType.rtWizardAtkMaxRankList || + ((this.valueStr.text = t.CrmPU.language_Friend_Txt1), + 5 == i + ? (this.valueStr.text = t.CrmPU.language_Omission_txt95) + : 6 == i + ? (this.valueStr.text = t.CrmPU.language_Attribute_Name_3) + : 7 == i && (this.valueStr.text = t.CrmPU.language_Omission_txt96), + this.rankListView.setRankByType(i, this.onMenu.bind(this), this.onPageData.bind(this)), + (this.rank_no.visible = null == t.JgMyc.ins().rankModel.dicRank[i] || void 0 == t.JgMyc.ins().rankModel.dicRank[i] || 0 == t.JgMyc.ins().rankModel.dicRank[i].list.length), + this.playerRankInfo(i)); + }), + (i.prototype.playerRankInfo = function (e) { + void 0 === e && (e = 0); + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.mBjV(), + s = i.propSet.getGuildName(); + "" == s ? (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + t.CrmPU.language_Omission_txt89) : (this.rank_guild.text = t.CrmPU.language_Friend_Txt3 + ":" + s); + var a = t.VlaoF.RankConfig.openlv, + r = t.VlaoF.RankConfig.loadlv; + a > n + ? (this.rank_desc.text = t.CrmPU.language_Omission_txt22) + : n >= a && r > n + ? (this.rank_desc.text = t.CrmPU.language_Omission_txt23) + : t.JgMyc.ins().rankModel.dicRank[e] && t.JgMyc.ins().rankModel.dicRank[e].myData.rank > 0 + ? (this.rank_desc.text = t.CrmPU.language_FuBen_Text7 + t.JgMyc.ins().rankModel.dicRank[e].myData.rank) + : (this.rank_desc.text = t.CrmPU.language_Omission_txt23); + }), + (i.prototype.onChangeTab = function (e) { + t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL), this.rankBtnListView && this.rankBtnListView.setRankByType(e); + }), + (i.prototype.onMenu = function (e) { + e.playerID && ((this.selectedItem = e.playerID), t.GameMap.isForbiddenArea ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips118) : t.bPGzk.ins().send_7_7(this.selectedItem)); + }), + (i.prototype.showMenu = function () { + t.caJqU.ins().sendQueryOthersEquips(this.selectedItem); + }), + (i.prototype.onPageData = function (t) { + var e = t.data; + e && this.flipPage.setData(e), (this.flipPage.currentPage = 1); + }), + (i.prototype.onPageChange = function (t) { + var e = t.data; + e && 0 == e.length ? (this.rank_no.visible = !0) : (this.rank_no.visible = !1); + for (var i = 0; i < e.length; i++) + 0 == i + ? ((e[i].isSelected = 1), + this.onMenu({ + playerID: e[i].playerId, + })) + : (e[i].isSelected = 0); + this.rankListView.setData(e), (this.pageLab.text = this.flipPage.getPageText()); + }), + (i.prototype.callfunc = function (e) { + var i = this; + if (1 == Main.vZzwB.gameMode && 2 == e) { + e = 4; + } + e >= 4 && (e += 1); + t.JgMyc.ins().rankModel.type = e; + t.Nzfh.ins().send_0_23(e, 100, function () { + i.setRankListData([e]); + }); + }), + (i.prototype.setModel = function (t) { + var e = t.equips; + this.roleInnerModel.setOtherData(e, t); + }), + (i.prototype.closeView = function () { + t.mAYZL.ins().close(this); + }), + (i.prototype.onOperation = function () { + 0 != this.selectedItem && this.showMenu(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.rankBtnListView && this.rankBtnListView.destroy(), + this.rankListView && this.rankListView.destroy(), + this.rankRightMenuView && this.rankRightMenuView.destroy(), + (this.dragDropUI = null), + (this.rankBtnListView = null), + (this.rankListView = null), + (this.rankRightMenuView = null), + this.flipPage && (this.flipPage.removeEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), this.flipPage.destory(), (this.flipPage = null)), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.tabBar = null), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null), + this.menu_group.numElements > 0 && this.menu_group.removeChildren(), + t.lEYZI.Naoc(this.menu_group), + this.rank_list.numElements > 0 && this.rank_list.removeChildren(), + t.lEYZI.Naoc(this.rank_list), + this.roleInnerModel && this.roleInnerModel.destory(), + (this.roleInnerModel = null), + (this.btn_home = this.btn_pre = this.btn_next = null), + (this.btn_operation = null), + (t.JgMyc.ins().rankModel.type = t.RankDetailType.rtAllLevel), + t.ckpDj.ins().removeEvent(t.CompEvent.RANK_SHOW_LIST, this.onShowList, this), + this.fEHj(this.btn_operation, this.onOperation), + this.fEHj(this.closeBtn, this.closeView), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.RankView = e), __reflect(e.prototype, "app.RankView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + this.init(); + } + return ( + (e.prototype.init = function () { + (this.srvid = t.MiOx.srvid), + (this.serverid = t.MiOx.originalSrvid), + (this.serverName = t.MiOx.srvname), + (this.serverAlias = t.MiOx.serverAlias), + (this.uid = t.MiOx.openID), + (this.roleId = t.MiOx.roleId), + (this.isMobil = KdbLz.qOtrbE.vDCH ? (KdbLz.qOtrbE.IsIOS ? "3" : "1") : "2"); + }), + (e.prototype.updateOrderInfo = function (t) { + (this.prodId = t.prodId), (this.itemName = t.itemName), (this.description = t.description), (this.price = t.price), (this.money = t.price / 100), (this.rechargeNum = t.rechargeNum); + }), + (e.prototype.getRechargeData = function () { + var e = this, + i = t.NWRFmB.ins().getPayer; + return { + uid: e.uid, + srvid: e.srvid, + serverid: e.serverid, + serverId: e.serverid, + serverName: e.serverName, + serverAlias: e.serverAlias, + roleId: e.roleId, + roleName: i.propSet.getName(), + }; + }), + (e.prototype.getRechargeData_web = function () { + var e = this, + i = t.NWRFmB.ins().getPayer; + return { + orderid: e.orderid, + orderId: e.orderid, + prodId: e.prodId, + productId: e.prodId, + itemName: e.itemName, + productName: e.itemName, + description: e.description, + goodsDesc: e.description, + productDec: e.description, + price: e.price, + money: e.money, + rechargeNum: e.rechargeNum, + buyNum: 1, + ratio: 100, + isMobil: e.isMobil, + srvid: e.srvid, + serverid: e.serverid, + serverId: e.serverid, + serverName: e.serverName, + serverAlias: e.serverAlias, + uid: e.uid, + roleId: e.roleId, + roleName: i.propSet.getName(), + roleLevel: i.propSet.mBjV(), + coinNum: i.propSet.getNotBindYuanBao(), + guildName: i.propSet.getGuildName(), + vip: t.VipData.ins().getMyVipLv(), + payNotifyUrl: Main.vZzwB.payNotice, + orderTime: Math.round(new Date().getTime() / 1e3), + extension: e.orderid + "|" + e.isMobil + "|" + e.serverid + "|" + e.roleId, + }; + }), + (e.prototype.getRechargeData_Native = function () { + var e = this, + i = t.NWRFmB.ins().getPayer; + return { + orderid: e.orderid, + orderID: e.orderid, + prodId: e.prodId, + productId: e.prodId, + itemName: e.itemName, + productName: e.itemName, + description: e.description, + productDescription: e.description, + price: e.price, + money: e.money, + rechargeNum: e.rechargeNum, + buyNum: 1, + ratio: 100, + isMobil: e.isMobil, + srvid: e.srvid, + serverid: e.serverid, + serverId: e.serverid, + serverID: e.serverid, + serverName: e.serverName, + serverAlias: e.serverAlias, + uid: e.uid, + roleId: e.roleId, + roleName: i.propSet.getName(), + roleLevel: i.propSet.mBjV(), + coinNum: i.propSet.getNotBindYuanBao(), + guildName: i.propSet.getGuildName(), + vip: t.VipData.ins().getMyVipLv(), + payNotifyUrl: Main.vZzwB.payNotice, + orderTime: Math.round(new Date().getTime() / 1e3), + extension: e.orderid + "|" + e.isMobil + "|" + e.serverid + "|" + e.roleId, + }; + }), + e + ); + })(); + (t.RechargeData = e), __reflect(e.prototype, "app.RechargeData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._isInit = !1), (i.process1 = 1), (i.process2 = 2), (i.process3 = 3), (i.requestOrderInfo = new t.RechargeData()), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.init = function () { + this._isInit = !0; + var e = Main.vZzwB.pfID; + switch (e) { + case t.PlatFormID.PFQIDIAN: + case t.PlatFormID.PF7game: + case t.PlatFormID.PFYAODOU: + case t.PlatFormID.FeiHuo: + case t.PlatFormID.GeMen: + case t.PlatFormID.PF355wan: + case t.PlatFormID.PF360uu: + case t.PlatFormID.teeqee: + case t.PlatFormID.xunwan: + case t.PlatFormID.chinaGame: + case t.PlatFormID.bvwan: + case t.PlatFormID.keleyx: + case t.PlatFormID.wan2323: + case t.PlatFormID.GameNo1: + case t.PlatFormID.PF37tang: + case t.PlatFormID.heheyx: + case t.PlatFormID.PF52gg: + case t.PlatFormID.PF1771wan: + case t.PlatFormID.wuxiagu: + case t.PlatFormID.zixia: + case t.PlatFormID.MaYi: + this._processType = this.process3; + } + }), + (i.prototype.onPay = function (e) { + return void t.mAYZL.ins().close(t.RechargeView), t.mAYZL.ins().open(t.RechargeView); + var i = t.NWRFmB.ins().getPayer; + if (Main.vZzwB.isDisablePay) t.uMEZy.ins().IrCm(t.CrmPU.language_Error_102); + else if ((this._isInit || this.init(), this._processType == this.process3)) this.onRecharge(); + else if (10001 == Main.vZzwB.pfID) { + t.RechargeMgr.ins().recharge({ + uid: t.MiOx.openID, + serverId: t.MiOx.srvid, + serverAlias: t.MiOx.serverAlias, + }); + } else if (10002 == Main.vZzwB.pfID) + t.CautionView.show( + "您将前往夜风官网充值,充值会发到本账号当前在线角色\n充值到账前请不要切换区服和角色,防止充值异常", + function () { + t.RechargeMgr.ins().recharge({ + serverId: t.MiOx.srvid, + }); + }, + this + ); + else if (10003 == Main.vZzwB.pfID) t.mAYZL.ins().close(t.RechargeView), t.mAYZL.ins().open(t.RechargeView); + else if (10004 == Main.vZzwB.pfID) t.mAYZL.ins().close(t.Recharge4366View), (window["4366Pay"] = this.pay4366View.bind(this)), t.RechargeMgr.ins().recharge({}); + else if (10005 == Main.vZzwB.pfID) t.mAYZL.ins().close(t.RechargeView), t.mAYZL.ins().open(t.RechargeView); + else if (Main.vZzwB.pfID == t.PlatFormID.QQGame) t.mAYZL.ins().close(t.RechargeQQView), t.mAYZL.ins().open(t.RechargeQQView); + else if (Main.vZzwB.pfID == t.PlatFormID.F1) t.mAYZL.ins().close(t.RechargeF1View), t.mAYZL.ins().open(t.RechargeF1View); + else if (window.pfID == t.PlatFormID.comi17) t.mAYZL.ins().close(t.RechargeComiView), t.mAYZL.ins().open(t.RechargeComiView); + else if ( + Main.vZzwB.pfID == t.PlatFormID.gameCat || + Main.vZzwB.pfID == t.PlatFormID.suHai || + Main.vZzwB.pfID == t.PlatFormID.gameCatEnd || + Main.vZzwB.pfID == t.PlatFormID.Potato || + Main.vZzwB.pfID == t.PlatFormID.PotatoBXSC || + Main.vZzwB.pfID == t.PlatFormID.BaYe || + Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe || + Main.vZzwB.pfID == t.PlatFormID.shengMa || + Main.vZzwB.pfID == t.PlatFormID.HuoYan || + Main.vZzwB.pfID == t.PlatFormID.ShuangHuo || + Main.vZzwB.pfID == t.PlatFormID.gameCatGaoBao + ) + t.mAYZL.ins().close(t.RechargeGameCatView), t.mAYZL.ins().open(t.RechargeGameCatView); + else if (Main.vZzwB.pfID == t.PlatFormID.PF360) KdbLz.qOtrbE.vDCH || (t.mAYZL.ins().close(t.RechargeView), t.mAYZL.ins().open(t.RechargeView)); + else if (Main.vZzwB.pfID == t.PlatFormID.PF4399) + i && + i.propSet && + t.RechargeMgr.ins().recharge({ + serverAlias: t.MiOx.serverAlias, + roleId: t.MiOx.roleId, + roleName: i.propSet.getName(), + }); + else if (Main.vZzwB.pfID == t.PlatFormID.HUYU37) { + var n = new egret.HttpRequest(); + (n.responseType = egret.HttpResponseType.TEXT), + n.addEventListener( + egret.Event.COMPLETE, + function (e) { + var i = e.target; + if (null != i.response && "" != i.response) { + var n = JSON.parse(i.response); + (1 == n.code || "1" == n.code) && (t.mAYZL.ins().close(t.Recharge37QRCodeView), t.mAYZL.ins().open(t.Recharge37QRCodeView)), + -2 == n.code || "-2" == n.code || t.uMEZy.ins().IrCm("未通过实名认证的用户不能进行充值!"); + } + }, + this + ), + n.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errHttp, this); + var s = "login_account=" + Main.vZzwB.userInfo.user_name + "&actor_id=" + t.MiOx.roleId + "&sid=" + (t.MiOx.originalSrvid % 1e4) + "&pay_referer=" + Main.vZzwB.userInfo.client; + n.open(window.payRealName + "?" + s, egret.HttpMethod.GET), n.send(); + } else + Main.vZzwB.pfID == t.PlatFormID.PFAQIYI || Main.vZzwB.pfID == t.PlatFormID.PF2144Game || Main.vZzwB.pfID == t.PlatFormID.shunwang + ? (t.mAYZL.ins().close(t.RechargeQRCodeView), t.mAYZL.ins().open(t.RechargeQRCodeView)) + : (t.mAYZL.ins().close(t.RechargeView), t.mAYZL.ins().open(t.RechargeView)); + }), + (i.prototype.onRecharge = function () { + t.RechargeMgr.ins().recharge({ + serverId: t.MiOx.originalSrvid, + }); + }), + (i.prototype.recharge = function (s) { + return void KdbLz.qOtrbE.iFbP ? t.uMEZy.ins().IrCm("请联系客服获得更多充值福利哦~客服微信: " + Main.vZzwB.kfQQ) : t.mAYZL.ins().open(t.RechargeQRCodeView); + }), + (i.prototype.openRechargeView = function () {}), + (i.prototype.openRechargeCodeView = function () {}), + (i.prototype.pay4366View = function () { + t.mAYZL.ins().open(t.Recharge4366View); + }), + (i.prototype.payFunction = function (e) { + this.requestOrderInfo.updateOrderInfo(e); + if (10001 == Main.vZzwB.pfID) + Main.Native_onClickPay({ + productId: e.prodId, + productName: e.itemName, + productDescription: e.description, + amount: e.price / 100, + serverId: t.MiOx.serverAlias, + gameExtra: t.MiOx.roleId + "", + }); + else if (Main.vZzwB.pfID == t.PlatFormID.PF360) { + var i = { + price: e.price, + roleId: t.MiOx.roleId, + prodId: e.prodId, + }; + t.RechargeMgr.ins().recharge(i); + } else if (Main.vZzwB.pfID == t.PlatFormID.PFLuDaShi) t.mAYZL.ins().close(t.RechargeQRCodeView), t.mAYZL.ins().open(t.RechargeQRCodeView, e); + else if (Main.vZzwB.pfID == t.PlatFormID.SOUGOU) t.mAYZL.ins().close(t.RechargeQRCodeView), t.mAYZL.ins().open(t.RechargeQRCodeView, e); + else { + t.KHNO.ins().removeAll(this), t.mAYZL.ins().close(t.RechargeRequestView), t.mAYZL.ins().open(t.RechargeRequestView); + var n = new egret.HttpRequest(); + n.addEventListener(egret.Event.COMPLETE, this.completeHttp, this), n.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errHttp, this); + var s = "&server_id=" + t.MiOx.originalSrvid + "&actor_id=" + t.MiOx.originalSrvid + "&goods_id=" + e.prodId + "&time=" + new Date().getTime() + Math.random(); + n.open(Main.vZzwB.orderUrl + s, egret.HttpMethod.GET), n.send(); + var a = this; + t.KHNO.ins().tBiJo( + 1e4, + 1, + function () { + n.removeEventListener(egret.Event.COMPLETE, a.completeHttp, a), n.removeEventListener(egret.IOErrorEvent.IO_ERROR, a.errHttp, a), a.errHttpOvertime(null), (n = null); + }, + this + ); + } + }), + (i.prototype.errHttp = function (e) { + t.KHNO.ins().removeAll(this), t.mAYZL.ins().close(t.RechargeRequestView), t.uMEZy.ins().IrCm(t.CrmPU.language_Error_103); + }), + (i.prototype.errHttpOvertime = function (e) { + t.KHNO.ins().removeAll(this), t.mAYZL.ins().close(t.RechargeRequestView), t.uMEZy.ins().IrCm(t.CrmPU.language_Error_109); + }), + (i.prototype.completeHttp = function (e) { + t.KHNO.ins().removeAll(this); + var i = e.target; + if ((t.mAYZL.ins().close(t.RechargeRequestView), null == i.response || "" == i.response || -1 != i.response.indexOf("参数错误"))) + t.uMEZy.ins().IrCm("错误码:" + i.response), this.errHttp(null); + else { + var n = KdbLz.qOtrbE.IsIOS ? "3" : "1", + s = t.NWRFmB.ins().getPayer, + a = i.response + ""; + if (Main.vZzwB.pfID == t.PlatFormID.gameCat || Main.vZzwB.pfID == t.PlatFormID.gameCatEnd || Main.vZzwB.pfID == t.PlatFormID.gameCatGaoBao) + if (KdbLz.qOtrbE.vDCH) + Main.Native_onClickPay({ + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + productDescription: this.requestOrderInfo.description, + price: this.requestOrderInfo.price / 100, + buyNum: 1, + coinNum: s.propSet.getNotBindYuanBao(), + serverID: t.MiOx.originalSrvid, + serverName: t.MiOx.srvname, + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + vip: t.VipData.ins().getMyVipLv(), + payNotifyUrl: Main.vZzwB.payNotice, + extension: a + "|" + n, + productType: 1, + }); + else { + var r = { + productId: this.requestOrderInfo.prodId, + money: this.requestOrderInfo.price, + goodsDesc: this.requestOrderInfo.description, + productType: 1, + notifyUrl: Main.vZzwB.payNotice, + roleId: t.MiOx.roleId, + roleName: s.propSet.getName(), + serverName: t.MiOx.srvname, + serverId: t.MiOx.originalSrvid, + extension: a + "|2", + roleLevel: s.propSet.mBjV(), + }; + t.RechargeMgr.ins().recharge(r); + } + else if (10011 == Main.vZzwB.pfID) + if (KdbLz.qOtrbE.vDCH) + Main.Native_onClickPay({ + coinNum: s.propSet.getNotBindYuanBao(), + buyNum: 1, + payNotifyUrl: Main.vZzwB.payNotice, + extension: a + "|1", + orderID: a, + guildName: s.propSet.getGuildName(), + price: this.requestOrderInfo.price, + productDescription: this.requestOrderInfo.description, + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + proportion: 10, + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + roleName: s.propSet.getName(), + serverID: t.MiOx.originalSrvid, + serverName: t.MiOx.srvname, + orderTime: Math.round(new Date().getTime() / 1e3), + totalPrice: this.requestOrderInfo.price, + vip: t.VipData.ins().getMyVipLv(), + }); + else { + var o = { + coinNum: s.propSet.getNotBindYuanBao(), + buyNum: 1, + payNotifyUrl: Main.vZzwB.payNotice, + extension: a + "|2", + orderid: a, + guildName: s.propSet.getGuildName(), + price: this.requestOrderInfo.price, + goodsDesc: this.requestOrderInfo.description, + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + ratio: 10, + roleId: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + roleName: s.propSet.getName(), + serverId: t.MiOx.originalSrvid, + serverName: t.MiOx.srvname, + orderTime: Math.round(new Date().getTime() / 1e3), + vip: t.VipData.ins().getMyVipLv(), + }; + t.RechargeMgr.ins().recharge(o); + } + else if (10012 == Main.vZzwB.pfID || 10041 == Main.vZzwB.pfID) + KdbLz.qOtrbE.vDCH + ? Main.Native_onClickPay({ + roleCreateTime: Math.floor(s.propSet.getRoleCreateTime() / 1e3), + serverID: 10041 == Main.vZzwB.pfID ? t.MiOx.originalSrvid % 1e4 : t.MiOx.originalSrvid, + serverName: t.MiOx.srvname, + roleName: s.propSet.getName(), + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + vip: t.VipData.ins().getMyVipLv(), + coinNum: s.propSet.getNotBindYuanBao(), + guildName: s.propSet.getGuildName(), + orderID: a, + productName: "元宝", + moneyCount: this.requestOrderInfo.rechargeNum, + amount: this.requestOrderInfo.price / 100, + productId: this.requestOrderInfo.prodId, + productDescription: this.requestOrderInfo.description, + price: Math.floor(this.requestOrderInfo.price / 100 / this.requestOrderInfo.rechargeNum), + extension: a + "|" + n + "|" + (10041 == Main.vZzwB.pfID ? t.MiOx.originalSrvid % 1e4 : t.MiOx.originalSrvid) + "|" + t.MiOx.roleId, + }) + : t.RechargeMgr.ins().recharge({ + roleId: t.MiOx.roleId, + roleName: s.propSet.getName(), + serverId: 10041 == Main.vZzwB.pfID ? t.MiOx.originalSrvid % 1e4 : t.MiOx.originalSrvid, + serverName: t.MiOx.srvname, + rolelevel: s.propSet.mBjV(), + orderid: a, + price: this.requestOrderInfo.price, + itemName: this.requestOrderInfo.itemName, + description: this.requestOrderInfo.description, + prodId: this.requestOrderInfo.prodId, + }); + else if (10013 == Main.vZzwB.pfID) + if (KdbLz.qOtrbE.vDCH) + Main.Native_onClickPay({ + productId: this.requestOrderInfo.prodId, + itemName: this.requestOrderInfo.itemName, + description: this.requestOrderInfo.description, + price: this.requestOrderInfo.price, + serverName: t.MiOx.srvname, + serverID: t.MiOx.originalSrvid, + roleName: s.propSet.getName(), + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + extension: a + "|" + n + "|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }); + else { + var l = { + itemName: this.requestOrderInfo.itemName, + description: this.requestOrderInfo.description, + price: this.requestOrderInfo.price, + serverName: t.MiOx.srvname, + serverID: t.MiOx.originalSrvid, + roleName: s.propSet.getName(), + roleId: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + extension: a + "|2|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }; + t.RechargeMgr.ins().recharge(l); + } + else if (Main.vZzwB.pfID == t.PlatFormID.Potato || Main.vZzwB.pfID == t.PlatFormID.BaYe || Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe) + KdbLz.qOtrbE.vDCH + ? Main.Native_onClickPay({ + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + coinNum: s.propSet.getNotBindYuanBao(), + vip: t.VipData.ins().getMyVipLv(), + guildName: s.propSet.getGuildName(), + serverName: t.MiOx.srvname, + serverID: Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe ? t.MiOx.originalSrvid % 2e4 : t.MiOx.originalSrvid % 1e4, + orderID: a, + productId: this.requestOrderInfo.prodId, + money: this.requestOrderInfo.price / 100, + productCount: 1, + productName: this.requestOrderInfo.itemName, + productDescription: this.requestOrderInfo.description, + exchangeRate: 10, + currencyName: "元宝", + notifyUrl: Main.vZzwB.payNotice, + extension: a + "|" + n + "|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }) + : t.RechargeMgr.ins().recharge({ + appId: window.userInfo.appId, + userId: window.userInfo.uid, + money: this.requestOrderInfo.price, + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + productDec: this.requestOrderInfo.description, + serverId: Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe ? t.MiOx.originalSrvid % 2e4 : t.MiOx.originalSrvid % 1e4, + serverName: t.MiOx.srvname, + roleId: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + balance: s.propSet.getNotBindYuanBao(), + roleVip: t.VipData.ins().getMyVipLv(), + partyName: s.propSet.getGuildName(), + time: Date.parse(new Date().toString()) / 1e3, + orderId: a, + notifyUrl: Main.vZzwB.payNotice, + extInfo: a + "|2|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }); + else if (Main.vZzwB.pfID == t.PlatFormID.PotatoBXSC) + KdbLz.qOtrbE.vDCH + ? Main.Native_onClickPay({ + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + coinNum: s.propSet.getNotBindYuanBao(), + vip: t.VipData.ins().getMyVipLv(), + guildName: s.propSet.getGuildName(), + serverName: t.MiOx.srvname, + serverID: t.MiOx.originalSrvid % 2e4, + orderID: a, + productId: this.requestOrderInfo.prodId, + money: this.requestOrderInfo.price / 100, + productCount: 1, + productName: this.requestOrderInfo.itemName, + productDescription: this.requestOrderInfo.description, + exchangeRate: 10, + currencyName: "元宝", + extension: a + "|" + n + "|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }) + : t.RechargeMgr.ins().recharge({ + appId: window.userInfo.appId, + userId: window.userInfo.uid, + money: this.requestOrderInfo.price, + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + productDec: this.requestOrderInfo.description, + serverId: t.MiOx.originalSrvid % 2e4, + serverName: t.MiOx.srvname, + roleId: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + balance: s.propSet.getNotBindYuanBao(), + roleVip: t.VipData.ins().getMyVipLv(), + partyName: s.propSet.getGuildName() ? s.propSet.getGuildName() : "无帮派", + time: Date.parse(new Date().toString()) / 1e3, + extInfo: a + "|2|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + }); + else if (Main.vZzwB.pfID == t.PlatFormID.xiaoqi) { + if (KdbLz.qOtrbE.vDCH) { + var h = + "?game_area=" + + t.MiOx.originalSrvid + + "&game_guid=" + + t.MiOx.openID + + "&game_orderid=" + + a + + "&game_price=" + + (+this.requestOrderInfo.price / 100).toFixed(2) + + "&subject=" + + this.requestOrderInfo.description + + "&type=" + + n + + "&time=" + + new Date().getTime() + + Math.random(), + p = this, + u = new XMLHttpRequest(); + (u.onreadystatechange = function () { + 4 == u.readyState && + 200 == u.status && + Main.Native_onClickPay({ + userId: t.MiOx.openID, + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + serverId: t.MiOx.originalSrvid, + orderID: a, + money: (+p.requestOrderInfo.price / 100).toFixed(2), + productDec: p.requestOrderInfo.description, + extension: a + "|" + n + "|" + (+p.requestOrderInfo.price / 100).toFixed(2) + "|" + t.MiOx.openID, + paySign: u.responseText, + }); + }), + u.open("GET", Main.vZzwB.payUrl + h, !0), + u.send(null); + } + } else if (Main.vZzwB.pfID == t.PlatFormID.HuoYan) + if (KdbLz.qOtrbE.vDCH) + Main.Native_onClickPay({ + productName: this.requestOrderInfo.itemName, + productDescription: this.requestOrderInfo.description, + money: this.requestOrderInfo.price, + serverName: t.MiOx.srvname, + serverID: t.MiOx.originalSrvid % 1e3, + roleName: s.propSet.getName(), + roleId: t.MiOx.roleId, + roleID: t.MiOx.roleId, + roleLevel: s.propSet.mBjV(), + extension: a + "|" + n + "|" + (t.MiOx.originalSrvid % 1e3) + "|" + t.MiOx.roleId + "|" + this.requestOrderInfo.price / 100 + "|" + t.MiOx.openID, + }); + else { + var p = this, + c = a + "|2|" + (t.MiOx.originalSrvid % 1e3) + "|" + t.MiOx.roleId + "|" + p.requestOrderInfo.price / 100 + "|" + t.MiOx.openID, + g = + "?amount=" + + this.requestOrderInfo.price + + "&channelExt=" + + window.userInfo.channelExt + + "&game_appid=" + + window.userInfo.game_appid + + "&props_name=" + + this.requestOrderInfo.itemName + + "&trade_no=" + + c + + "&user_id=" + + window.userInfo.uid + + "×tamp=" + + Date.parse(new Date().toString()) / 1e3, + u = new XMLHttpRequest(); + (u.onreadystatechange = function () { + 4 == u.readyState && + 200 == u.status && + t.RechargeMgr.ins().recharge({ + money: p.requestOrderInfo.price, + productName: p.requestOrderInfo.itemName, + orderID: a + "|2|" + (t.MiOx.originalSrvid % 1e3) + "|" + t.MiOx.roleId + "|" + p.requestOrderInfo.price / 100 + "|" + t.MiOx.openID, + time: Date.parse(new Date().toString()) / 1e3, + sign: u.responseText, + serverId: t.MiOx.originalSrvid % 1e3, + serverName: t.MiOx.srvname, + roleId: t.MiOx.roleId, + roleName: s.propSet.getName(), + roleLevel: s.propSet.mBjV(), + }); + }), + u.open("GET", Main.vZzwB.payUrl + g, !0), + u.send(null); + } + else + Main.vZzwB.pfID == t.PlatFormID.ShuangHuo + ? KdbLz.qOtrbE.vDCH && + Main.Native_onClickPay({ + money: this.requestOrderInfo.price, + extension: a + "|" + n + "|" + t.MiOx.originalSrvid + "|" + t.MiOx.roleId, + orderID: a, + notifyUrl: KdbLz.qOtrbE.IsIOS ? "" : Main.vZzwB.payNotice, + productDescription: this.requestOrderInfo.description, + productId: this.requestOrderInfo.prodId, + productName: this.requestOrderInfo.itemName, + roleID: t.MiOx.roleId, + AppleOrderID: "com.bdhcgame.6", + }) + : ((this.requestOrderInfo.orderid = a), + (this.requestOrderInfo.serverId = t.MiOx.originalSrvid), + (this.requestOrderInfo.serverName = t.MiOx.srvname), + (this.requestOrderInfo.uid = t.MiOx.openID), + (this.requestOrderInfo.roleId = t.MiOx.roleId), + (this.requestOrderInfo.roleName = s.propSet.getName()), + (this.requestOrderInfo.rolelevel = s.propSet.mBjV()), + (this.requestOrderInfo.vip = t.VipData.ins().getMyVipLv()), + t.RechargeMgr.ins().recharge(this.requestOrderInfo)); + } + }), + (i.prototype.qqPayFun = function (e) { + t.KHNO.ins().removeAll(this), t.mAYZL.ins().close(t.RechargeRequestView), t.mAYZL.ins().open(t.RechargeRequestView); + var i = new egret.HttpRequest(); + i.addEventListener(egret.Event.COMPLETE, this.qqHallcompleteHttp, this), i.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errHttp, this); + var n = + "?openID=" + + Main.vZzwB.userInfo.openID + + "&openkey=" + + Main.vZzwB.userInfo.openkey + + "&pf=" + + Main.vZzwB.userInfo.pf + + "&amt=" + + e.price + + "&appmode=1&goodsmeta=" + + e.ItemName + + "*" + + e.description + + "&goodsurl=" + + window.payImgURL + + e.icon + + ".png&payitem=" + + e.ItemId + + "*" + + e.price + + "*1&pfkey=" + + Main.vZzwB.userInfo.pfkey + + "&ts=" + + Math.round(new Date().getTime() / 1e3) + + "&zoneid=" + + Main.vZzwB.userInfo.serverid + + "&roleID=" + + t.MiOx.roleId; + i.open(window.payUrl + n, egret.HttpMethod.GET), i.send(); + }), + (i.prototype.qqHallcompleteHttp = function (e) { + t.KHNO.ins().removeAll(this); + var i = e.target; + if ((t.mAYZL.ins().close(t.RechargeRequestView), null == i.response || "" == i.response || -1 != i.response.indexOf("参数错误"))) this.errHttp(null); + else { + var n = JSON.parse(i.response); + n && 0 == n.ret && t.RechargeMgr.ins().recharge(n.url_params); + } + }), + (i.prototype.qqHallerrHttp = function (e) { + t.KHNO.ins().removeAll(this), t.mAYZL.ins().close(t.RechargeRequestView), t.uMEZy.ins().IrCm(t.CrmPU.language_Error_103); + }), + i + ); + })(t.BaseClass); + (t.RechargeMgr = e), __reflect(e.prototype, "app.RechargeMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeQRCodeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.closeBtn, this.onClick), + (this.linkLabel.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Error_111 + "")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this), + this.unusualLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.refreshCode, this), + this.refreshCode(); + }), + (i.prototype.refreshCode = function () { + this.httpReq && (this.httpReq.removeEventListener(egret.Event.COMPLETE, this.completeFunction, this), this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this)), + (this.httpReq = new egret.HttpRequest()), + this.httpReq.addEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.unusualGroup.visible = !1), + (this.pf37.visible = !0), + (this.img.visible = !1), + (this.unusualLabel.visible = !0), + (this.linkLabel.visible = !0), + (this.httpReq.responseType = egret.HttpResponseType.TEXT); + var e = + (t.NWRFmB.ins().getPayer, + "?login_account=" + + Main.vZzwB.userInfo.user_name + + "&actor_id=" + + t.MiOx.roleId + + "&sid=" + + (t.MiOx.originalSrvid % 1e4) + + "&trade_type=1&pay_referer=" + + Main.vZzwB.userInfo.client + + "&t=" + + Math.random().toString()); + this.httpReq.open(Main.vZzwB.payUrl + e, egret.HttpMethod.GET), this.httpReq.send(); + }), + (i.prototype.linkClick = function () { + var e = t.MiOx.originalSrvid % 1e4; + window.open(window.webUrl + "/select.php?gamename=shuangbei&gameserver=S" + e + "&username=" + Main.vZzwB.userInfo.user_name); + }), + (i.prototype.unusualFunction = function () { + (this.img.visible = !1), (this.pf37.visible = !1), (this.rect.visible = !1), (this.unusualGroup.visible = !0), (this.unusualLabel.textFlow = t.hETx.qYVI(t.CrmPU.language_Error_110)); + }), + (i.prototype.completeFunction = function (e) { + var i = e.target; + if (null == i.response || 0 == i.response || "" == i.response) this.unusualFunction(); + else { + var n = void 0, + s = JSON.parse(i.response); + 1 == s.code || "1" == s.code + ? ((n = s.data.img_base_64), this.createImage(n), t.KHNO.ins().tBiJo(3e5, 1, this.showRefreshCode, this)) + : (this.unusualFunction(), t.uMEZy.ins().IrCm("错误:" + s.code)); + } + }), + (i.prototype.showRefreshCode = function () { + t.KHNO.ins().remove(this.showRefreshCode, this), this.unusualFunction(), (this.unusualLabel.textFlow = t.hETx.qYVI(t.CrmPU.language_Error_112)); + }), + (i.prototype.createImage = function (t) { + if (t) { + var e = this, + i = new Image(); + (i.onload = function () { + i.onload = null; + var t = new egret.Texture(), + n = new egret.BitmapData(i); + (t.bitmapData = n), (e.img.visible = !0), (e.pf37.visible = !1), (e.img.texture = t); + }), + (i.src = t); + } + }), + (i.prototype.errorFunction = function (t) { + this.unusualFunction(); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.KHNO.ins().remove(this.showRefreshCode, this), + this.httpReq.removeEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.httpReq = null), + this.fEHj(this.closeBtn, this.onClick), + this.linkLabel.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this); + }), + i + ); + })(t.gIRYTi); + (t.Recharge37QRCodeView = e), __reflect(e.prototype, "app.Recharge37QRCodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Recharge4366Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.closeBtn, this.onClick), + (this.httpReq = new egret.HttpRequest()), + this.httpReq.addEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.linkLabel.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_192 + "")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this), + (this.img.visible = !1), + (this.httpReq.responseType = egret.HttpResponseType.TEXT), + this.httpReq.open(window.webUrl + "/qrcode?server=" + t.MiOx.originalSrvid + "&uname=" + t.MiOx.openID + "&role_id=" + t.MiOx.roleId, egret.HttpMethod.GET), + this.httpReq.send(); + }), + (i.prototype.linkClick = function () { + window.open(window.webUrl + "/pay?gid=4650&server=" + t.MiOx.originalSrvid + "&uname=" + t.MiOx.openID); + }), + (i.prototype.completeFunction = function (t) { + var e = t.target; + if (null == e.response || 0 == e.response || "" == e.response) this.img.visible = !1; + else { + var i = this, + n = e.response, + s = new Image(); + (s.onload = function () { + s.onload = null; + var t = new egret.Texture(), + e = new egret.BitmapData(s); + (t.bitmapData = e), (i.img.visible = !0), (i.img.texture = t); + }), + (s.src = n); + } + }), + (i.prototype.errorFunction = function (t) {}), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.httpReq.removeEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.httpReq = null), + this.fEHj(this.closeBtn, this.onClick), + this.linkLabel.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this); + }), + i + ); + })(t.gIRYTi); + (t.Recharge4366View = e), __reflect(e.prototype, "app.Recharge4366View"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeF1Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.confgAry = []); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.confgAry.length = 0), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.buyButton1, this.onClick), + this.vKruVZ(this.buyButton2, this.onClick), + this.vKruVZ(this.buyButton3, this.onClick), + this.vKruVZ(this.buyButton4, this.onClick), + this.vKruVZ(this.buyButton5, this.onClick), + this.vKruVZ(this.buyButton6, this.onClick), + this.vKruVZ(this.buyButton7, this.onClick), + this.vKruVZ(this.buyButton8, this.onClick); + var n = t.VlaoF.ProdItemMapConf[Main.vZzwB.pfID + ""]; + for (var s in n) this.confgAry.push(n[s]); + this.confgAry = this.confgAry.sort(function (t, e) { + return t.price - e.price; + }); + for (var a = this.confgAry.length, r = 0; a > r; r++) + (this["grp" + (r + 1)].visible = !0), (this["lab" + (r + 1)].text = this.confgAry[r].ItemName), (this["buyButton" + (r + 1)].label = this.confgAry[r].price + t.CrmPU.language_System92); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.buyButton1: + this.onPay(0); + break; + case this.buyButton2: + this.onPay(1); + break; + case this.buyButton3: + this.onPay(2); + break; + case this.buyButton4: + this.onPay(3); + break; + case this.buyButton5: + this.onPay(4); + break; + case this.buyButton6: + this.onPay(5); + break; + case this.buyButton7: + this.onPay(6); + break; + case this.buyButton8: + this.onPay(7); + } + }), + (i.prototype.onPay = function (e) { + var i = this.confgAry[e]; + if (i) { + var n = new XMLHttpRequest(); + (n.onreadystatechange = function () { + if (4 == n.readyState && 200 == n.status) { + var e = JSON.parse(n.responseText); + e && + e.sign && + window.recharge && + window.recharge({ + game_id: 17026, + server_id: t.MiOx.srvid, + user_id: t.MiOx.openID, + role_id: t.MiOx.roleId, + item_id: i.ProdId, + pay_money: i.price, + params: "comi|" + i.price + "|" + i.price + "|" + i.price + "|" + Main.vZzwB.pfID, + sign: e.sign, + ts: e.ts, + }); + } + }), + n.open("GET", window.payUrl + "?user_id=" + t.MiOx.openID + "&item_id=" + i.ProdId + "&role_id=" + t.MiOx.roleId, !0), + n.send(null); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this.confgAry.length = 0), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.buyButton1, this.onClick), + this.fEHj(this.buyButton2, this.onClick), + this.fEHj(this.buyButton3, this.onClick), + this.fEHj(this.buyButton4, this.onClick), + this.fEHj(this.buyButton5, this.onClick), + this.fEHj(this.buyButton6, this.onClick), + this.fEHj(this.buyButton7, this.onClick), + this.fEHj(this.buyButton8, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.RechargeComiView = e), __reflect(e.prototype, "app.RechargeComiView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeF1Skin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.confgAry = []); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.confgAry.length = 0), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.buyButton1, this.onClick), + this.vKruVZ(this.buyButton2, this.onClick), + this.vKruVZ(this.buyButton3, this.onClick), + this.vKruVZ(this.buyButton4, this.onClick), + this.vKruVZ(this.buyButton5, this.onClick), + this.vKruVZ(this.buyButton6, this.onClick), + this.vKruVZ(this.buyButton7, this.onClick), + this.vKruVZ(this.buyButton8, this.onClick); + var n = t.VlaoF.ProdItemMapConf[Main.vZzwB.pfID + ""]; + for (var s in n) this.confgAry.push(n[s]); + this.confgAry = this.confgAry.sort(function (t, e) { + return t.price - e.price; + }); + for (var a = this.confgAry.length, r = 0; a > r; r++) + (this["grp" + (r + 1)].visible = !0), (this["lab" + (r + 1)].text = this.confgAry[r].ItemName), (this["buyButton" + (r + 1)].label = this.confgAry[r].price + t.CrmPU.language_System92); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.buyButton1: + this.onPay(0); + break; + case this.buyButton2: + this.onPay(1); + break; + case this.buyButton3: + this.onPay(2); + break; + case this.buyButton4: + this.onPay(3); + break; + case this.buyButton5: + this.onPay(4); + break; + case this.buyButton6: + this.onPay(5); + break; + case this.buyButton7: + this.onPay(6); + break; + case this.buyButton8: + this.onPay(7); + } + }), + (i.prototype.onPay = function (e) { + var i = this.confgAry[e]; + if (i) { + var n = { + game_id: 60, + server_id: t.MiOx.srvid, + user_id: t.MiOx.openID, + role_id: t.MiOx.roleId, + item_id: i.ProdId, + pay_money: i.price, + params: "F1|" + i.price + "|" + i.price + "|" + i.price + "|" + Main.vZzwB.pfID, + }; + if (KdbLz.qOtrbE.vDCH) Main.Native_onClickPay(n); + else { + var s = new XMLHttpRequest(); + (s.onreadystatechange = function () { + if (4 == s.readyState && 200 == s.status) { + var t = JSON.parse(s.responseText); + t && t.sign && window.recharge && ((n.sign = t.sign), (n.ts = t.ts), window.recharge(n)); + } + }), + s.open("GET", Main.vZzwB.payUrl + "?user_id=" + t.MiOx.openID, !0), + s.send(null); + } + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this.confgAry.length = 0), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.buyButton1, this.onClick), + this.fEHj(this.buyButton2, this.onClick), + this.fEHj(this.buyButton3, this.onClick), + this.fEHj(this.buyButton4, this.onClick), + this.fEHj(this.buyButton5, this.onClick), + this.fEHj(this.buyButton6, this.onClick), + this.fEHj(this.buyButton7, this.onClick), + this.fEHj(this.buyButton8, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.RechargeF1View = e), __reflect(e.prototype, "app.RechargeF1View"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyButton, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + if (this.data) { + var i = this.data.cfgInfo; + if (i) { + var n = t.VlaoF.RechargeConf[i.ItemId]; + t.RechargeMgr.ins().payFunction({ + prodId: i.ProdId, + price: i.price, + itemName: i.ItemName, + description: i.description, + rechargeNum: n.Num, + }); + } + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.buyButton, this.onTouch); + }), + (i.prototype.dataChanged = function () { + this.data && + ((this.rebateImg.visible = !0), + (this.lab.text = this.data.itemName), + (this.buyButton.label = this.data.btnLab), + (this.icon.source = this.data.idx > 7 ? "cz_icon8" : "cz_icon" + (this.data.idx + 1)), + (Main.vZzwB.pfID == t.PlatFormID.Potato || Main.vZzwB.pfID == t.PlatFormID.BaYe || Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe || Main.vZzwB.pfID == t.PlatFormID.HuoYan) && + (this.rebateImg.visible = !1)); + }), + i + ); + })(t.BaseItemRender); + (t.RechargeGameCatItemView = e), __reflect(e.prototype, "app.RechargeGameCatItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeGameCatSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.confgAry = []); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.rebateTxt.visible = !0), + (Main.vZzwB.pfID == t.PlatFormID.Potato || Main.vZzwB.pfID == t.PlatFormID.BaYe || Main.vZzwB.pfID == t.PlatFormID.xiuLuoBaYe || Main.vZzwB.pfID == t.PlatFormID.HuoYan) && + (this.rebateTxt.visible = !1), + (this.confgAry.length = 0), + t.MouseScroller.bind(this.payScroller), + this.vKruVZ(this.closeBtn, this.onClick), + (this.rechargeList.itemRenderer = t.RechargeGameCatItemView); + var n = t.VlaoF.ProdItemMapConf[Main.vZzwB.pfID + ""]; + for (var s in n) this.confgAry.push(n[s]); + this.confgAry = this.confgAry.sort(function (t, e) { + return t.price - e.price; + }); + for (var a = this.confgAry.length, r = [], o = 0; a > o; o++) + r.push({ + idx: o, + itemName: this.confgAry[o].ItemName, + btnLab: this.confgAry[o].price / 100 + " " + t.CrmPU.language_System92, + cfgInfo: this.confgAry[o], + }); + this.rechargeList.dataProvider = new eui.ArrayCollection(r); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), (this.confgAry.length = 0), t.MouseScroller.unbind(this.payScroller); + }), + i + ); + })(t.gIRYTi); + (t.RechargeGameCatView = e), __reflect(e.prototype, "app.RechargeGameCatView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeQQSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (this.confgAry = []); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.confgAry.length = 0), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.buyButton1, this.onClick), + this.vKruVZ(this.buyButton2, this.onClick), + this.vKruVZ(this.buyButton3, this.onClick), + this.vKruVZ(this.buyButton4, this.onClick), + this.vKruVZ(this.buyButton5, this.onClick), + this.vKruVZ(this.buyButton6, this.onClick), + this.vKruVZ(this.buyButton7, this.onClick), + this.vKruVZ(this.buyButton8, this.onClick), + this.vKruVZ(this.openBlue, this.onClick); + var n = t.VlaoF.ProdItemMapConf[Main.vZzwB.pfID + ""]; + for (var s in n) this.confgAry.push(n[s]); + this.confgAry = this.confgAry.sort(function (t, e) { + return t.price - e.price; + }); + var a = this.confgAry.length, + r = 0; + Main.vZzwB.userInfo.blueDiamond && Main.vZzwB.userInfo.blueDiamond.is_blue_vip && (r = 1); + for (var o = 0; a > o; o++) + this.buyButton1.labelDisplay, + (this["lab" + (o + 1)].text = this.confgAry[o].ItemName), + (this["buyButton" + (o + 1)].labelDisplay.textColor = 15655172), + (this["buyButton" + (o + 1)].label = "¥" + this.confgAry[o].price / 10); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.buyButton1: + this.onPay(0); + break; + case this.buyButton2: + this.onPay(1); + break; + case this.buyButton3: + this.onPay(2); + break; + case this.buyButton4: + this.onPay(3); + break; + case this.buyButton5: + this.onPay(4); + break; + case this.buyButton6: + this.onPay(5); + break; + case this.buyButton7: + this.onPay(6); + break; + case this.buyButton8: + this.onPay(7); + break; + case this.openBlue: + window.openBlueFunction(); + } + }), + (i.prototype.onPay = function (e) { + var i = this.confgAry[e]; + i && Main.vZzwB.pfID == t.PlatFormID.QQGame && t.RechargeMgr.ins().qqPayFun(i); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this.confgAry.length = 0), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.buyButton1, this.onClick), + this.fEHj(this.buyButton2, this.onClick), + this.fEHj(this.buyButton3, this.onClick), + this.fEHj(this.buyButton4, this.onClick), + this.fEHj(this.buyButton5, this.onClick), + this.fEHj(this.buyButton6, this.onClick), + this.fEHj(this.buyButton7, this.onClick), + this.fEHj(this.buyButton8, this.onClick), + this.fEHj(this.openBlue, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.RechargeQQView = e), __reflect(e.prototype, "app.RechargeQQView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeQRCodeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = e[0]; + Main.vZzwB.pfID == t.PlatFormID.SOUGOU && (this.dragDropUI.source = "saomachongzhi3_png"), + this.vKruVZ(this.closeBtn, this.onClick), + (this.rect.visible = !0), + (this.httpReq = new egret.HttpRequest()), + this.httpReq.addEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.addEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.img.visible = !1), + (this.linkLabel.visible = !1), + (this.linkLabel.x = 311), + (this.httpReq.responseType = egret.HttpResponseType.TEXT); + var s, + a = t.NWRFmB.ins().getPayer; + if (Main.vZzwB.pfID == t.PlatFormID.PFLuDaShi) { + var r = +n.price / 100, + o = +n.prodId; + (s = + "?game_id=" + + Main.vZzwB.userInfo.gid + + "&server_num=" + + (t.MiOx.originalSrvid % 1e4) + + "&uid=" + + t.MiOx.openID + + "&daifu_user=" + + t.MiOx.openID + + "&product_id=" + + o + + "&product_name=" + + encodeURIComponent(n.itemName) + + "&money=" + + r + + "&role_id=" + + t.MiOx.roleId + + "&role_name=" + + encodeURIComponent(a.propSet.getName())), + this.httpReq.open(Main.vZzwB.payUrl + s, egret.HttpMethod.GET), + this.httpReq.send(); + } else if (Main.vZzwB.pfID == t.PlatFormID.SOUGOU) { + (this.linkLabel.visible = !0), + (this.linkLabel.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_192 + "")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this); + var r = +n.price / 100, + o = +n.prodId; + (s = "?gid=" + Main.vZzwB.userInfo.gid + "&sid=" + (t.MiOx.originalSrvid % 1e3) + "&uid=" + t.MiOx.openID + "&role=" + t.MiOx.roleId.toString() + "&width=200&amount=" + r), + this.httpReq.open(Main.vZzwB.payUrl + s, egret.HttpMethod.GET), + this.httpReq.send(); + } else if (Main.vZzwB.pfID == t.PlatFormID.PFAQIYI) + (this.linkLabel.visible = !0), + (this.linkLabel.x = 192), + (this.linkLabel.textFlow = t.hETx.qYVI("更多充值")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this), + (window.iqiyiPay = this.createImage.bind(this)), + t.RechargeMgr.ins().recharge({ + serverId: t.MiOx.originalSrvid, + }); + else if (Main.vZzwB.pfID == t.PlatFormID.PF2144Game) + (this.linkLabel.visible = !0), + (this.linkLabel.x = 192), + (this.linkLabel.textFlow = t.hETx.qYVI("更多充值")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this), + (s = window.payUrl2 + "?gid=361&ssid=" + (t.MiOx.originalSrvid % 25e3) + "&token=" + window.userInfo.callback_info + "&qrcode=2"), + this.httpReq.open(window.payQRcode + "?url=" + encodeURIComponent(s), egret.HttpMethod.GET), + this.httpReq.send(); + else if (Main.vZzwB.pfID == t.PlatFormID.shunwang) { + (this.rect.visible = !1), + (this.linkLabel.visible = !0), + (this.linkLabel.x = 192), + (this.linkLabel.textFlow = t.hETx.qYVI("更多充值")), + this.linkLabel.addEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this); + var l = new egret.HttpRequest(); + l.addEventListener(egret.Event.COMPLETE, this.orderCompleteHttp, this), l.addEventListener(egret.IOErrorEvent.IO_ERROR, this.orderErrHttp, this); + var h = "&server_id=" + t.MiOx.originalSrvid + "&actor_id=" + t.MiOx.originalSrvid + "&time=" + new Date().getTime() + Math.random(); + l.open(Main.vZzwB.orderUrl + h, egret.HttpMethod.GET), l.send(); + } + }), + (i.prototype.linkClick = function () { + Main.vZzwB.pfID == t.PlatFormID.SOUGOU + ? window.open(window.webUrl + "/pay?gid=1373&sid=" + (t.MiOx.originalSrvid % 1e3) + "&u=" + t.MiOx.openID) + : Main.vZzwB.pfID == t.PlatFormID.PFAQIYI + ? window.open(window.webUrl + "pay?g_id=11171&server_type=" + (t.MiOx.originalSrvid % 5e3)) + : Main.vZzwB.pfID == t.PlatFormID.PF2144Game + ? t.RechargeMgr.ins().recharge({ + serverId: t.MiOx.originalSrvid, + }) + : Main.vZzwB.pfID == t.PlatFormID.shunwang && window.open(window.webUrl); + }), + (i.prototype.completeFunction = function (e) { + var i = e.target; + if (null == i.response || 0 == i.response || "" == i.response) this.img.visible = !1; + else + try { + var n = void 0; + if (Main.vZzwB.pfID == t.PlatFormID.PFLuDaShi) { + var s = JSON.parse(i.response); + n = window.getQrcode(window.webUrl + "/qrcode?change=0&sign=" + s.data.sign, 174, 174); + } else Main.vZzwB.pfID == t.PlatFormID.SOUGOU ? (n = i.response) : Main.vZzwB.pfID == t.PlatFormID.PF2144Game && (n = "data:png;base64," + i.response); + this.createImage(n); + } catch (a) { + t.uMEZy.ins().IrCm("|C:0xe500000&T:支付错误:" + i.response + "|"); + } + }), + (i.prototype.createImage = function (t) { + if (t) { + var e = this, + i = new Image(); + (i.onload = function () { + i.onload = null; + var t = new egret.Texture(), + n = new egret.BitmapData(i); + (t.bitmapData = n), (e.img.visible = !0), (e.img.texture = t); + }), + (i.src = t); + } + }), + (i.prototype.errorFunction = function (e) { + t.uMEZy.ins().IrCm("|C:0xe500000&T:支付接口请求错误|"); + }), + (i.prototype.orderCompleteHttp = function (e) { + var i = e.target; + if (null == i.response || "" == i.response || -1 != i.response.indexOf("参数错误")) t.uMEZy.ins().IrCm("请求订单号错误码:" + i.response); + else { + var n = + (i.response + "", + "?guid=" + t.MiOx.openID + "&idx=" + (t.MiOx.originalSrvid % 2e4) + "&time=" + Date.parse(new Date().toString()) / 1e3 + "&size=512&swTag=swjoy&roleId=" + t.MiOx.roleId), + s = this, + a = new XMLHttpRequest(); + (a.onreadystatechange = function () { + if (4 == a.readyState && 200 == a.status) { + var t = JSON.parse(a.responseText); + t.response && 0 == t.response.code && s.createImage("data:png;base64," + t.response.qrcode); + } + }), + a.open("GET", Main.vZzwB.payUrl + n, !0), + a.send(null); + } + }), + (i.prototype.orderErrHttp = function () { + t.uMEZy.ins().IrCm("|C:0xe500000&T:获取订单号失败|"); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.httpReq.removeEventListener(egret.Event.COMPLETE, this.completeFunction, this), + this.httpReq.removeEventListener(egret.IOErrorEvent.IO_ERROR, this.errorFunction, this), + (this.httpReq = null), + this.fEHj(this.closeBtn, this.onClick), + this.linkLabel.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.linkClick, this); + }), + i + ); + })(t.gIRYTi); + (t.RechargeQRCodeView = e), __reflect(e.prototype, "app.RechargeQRCodeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.percentHeight = 100), (t.percentWidth = 100), (t.skinName = "RechargeRequestSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tipsLabel.text = t.CrmPU.language_Error_101); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t); + }), + i + ); + })(t.gIRYTi); + (t.RechargeRequestView = e), __reflect(e.prototype, "app.RechargeRequestView"), t.mAYZL.ins().reg(e, t.yCIt.LjbkQx); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RechargeSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.confgAry = []); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.confgAry.length = 0), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.buyButton1, this.onClick), + this.vKruVZ(this.buyButton2, this.onClick), + this.vKruVZ(this.buyButton3, this.onClick), + this.vKruVZ(this.buyButton4, this.onClick), + this.vKruVZ(this.buyButton5, this.onClick), + this.vKruVZ(this.buyButton6, this.onClick), + this.vKruVZ(this.buyButton7, this.onClick), + this.vKruVZ(this.buyButton8, this.onClick); + var n = t.VlaoF.ProdItemMapConf[Main.vZzwB.pfID + ""]; + for (var s in n) this.confgAry.push(n[s]); + this.confgAry = this.confgAry.sort(function (t, e) { + return t.price - e.price; + }); + for (var a = this.confgAry.length, r = 0; a > r; r++) + (this["lab" + (r + 1)].text = this.confgAry[r].ItemName), (this["buyButton" + (r + 1)].label = this.confgAry[r].price / 100 + " " + t.CrmPU.language_System92); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.buyButton1: + this.onPay(0); + break; + case this.buyButton2: + this.onPay(1); + break; + case this.buyButton3: + this.onPay(2); + break; + case this.buyButton4: + this.onPay(3); + break; + case this.buyButton5: + this.onPay(4); + break; + case this.buyButton6: + this.onPay(5); + break; + case this.buyButton7: + this.onPay(6); + break; + case this.buyButton8: + this.onPay(7); + } + }), + (i.prototype.onPay = function (e) { + var i = this.confgAry[e]; + if (i) { + var n = t.VlaoF.RechargeConf[i.ItemId]; + t.RechargeMgr.ins().payFunction({ + prodId: i.ProdId, + price: i.price, + itemName: i.ItemName, + description: i.description, + rechargeNum: n.Num, + }); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this.confgAry.length = 0), + this.fEHj(this.closeBtn, this.onClick), + this.fEHj(this.buyButton1, this.onClick), + this.fEHj(this.buyButton2, this.onClick), + this.fEHj(this.buyButton3, this.onClick), + this.fEHj(this.buyButton4, this.onClick), + this.fEHj(this.buyButton5, this.onClick), + this.fEHj(this.buyButton6, this.onClick), + this.fEHj(this.buyButton7, this.onClick), + this.fEHj(this.buyButton8, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.RechargeView = e), __reflect(e.prototype, "app.RechargeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.idx = 0), (i.idx2 = 0), (i.recycleTabIdx = 1), (i.recycleTabIdx2 = 1), (i.skinName = "RecycleWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i.dragDropUI.setParent(i), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.tab.itemRenderer = t.CommonTabBarWin), (this.tab.dataProvider = new eui.ArrayCollection(["hc_tab_hs", "hc_tab_hc"])); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + for (; t[0] instanceof Array; ) t = t[0]; + t[0] && (this.idx = t[0]), + t[1] && (this.recycleTabIdx = t[1]), + t[2] && (this.recycleTabIdx2 = t[2]), + this.addChangeEvent(this.tab, this.onTabTouch), + this.addChangingEvent(this.tab, this.onTabTouching), + (this.tab.selectedIndex = this.idx), + this.setOpenIndex(this.idx); + }), + (i.prototype.onTabTouch = function (t) { + (this.tab.selectedIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (i.prototype.setOpenIndex = function (e) { + switch (e) { + case 0: + this.recycleView ? (this.recycleView.visible = !0) : ((this.recycleView = new t.ForgeRecycleView()), this.pageGroup.addChild(this.recycleView), this.recycleView.open()), + this.synthesisPanel && (this.synthesisPanel.visible = !1), + this.dragDropUI.setTitle(t.CrmPU.language_Omission_txt55); + break; + case 1: + this.synthesisPanel + ? (this.synthesisPanel.visible = !0) + : ((this.synthesisPanel = new t.SynthesisView()), this.pageGroup.addChild(this.synthesisPanel), this.synthesisPanel.open(this.recycleTabIdx, this.recycleTabIdx2)), + this.recycleView && (this.recycleView.visible = !1), + this.dragDropUI.setTitle(t.CrmPU.language_System32); + } + }), + (i.prototype.checkIsOpen = function (t) { + switch (t) { + case 0: + return !0; + case 1: + return !0; + case 2: + return !0; + case 3: + return !0; + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this), + this.recycleView && this.recycleView.close(), + this.synthesisPanel && this.synthesisPanel.close(); + }), + i + ); + })(t.gIRYTi); + (t.RecycleWin = e), __reflect(e.prototype, "app.RecycleWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.cdTime = 10), (t.resultType = 0), (t.rewadrs = []), (t.skinName = "FightResultWinSkin1"), (t.bottom = t.top = t.right = t.left = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + if ((e.prototype.initUI.call(this), null != t.TQkyOx.ins().resuleInfo)) { + var i = t.TQkyOx.ins().resuleInfo.actid, + n = t.TQkyOx.ins().getActivitConf(i); + n && + (3 == n.ActivityType || n.ActivityType == t.ISYR.NightVoma || n.ActivityType == t.ISYR.CrossServerNightVoma || n.ActivityType == t.ISYR.CrossServerChaos + ? (this.skinName = "FightResultWinSkin3") + : n.ActivityType == t.ISYR.CrossServerBoss || n.ActivityType == t.ISYR.WorldBoss + ? (this.skinName = "FightResultWinSkin8") + : (this.skinName = "FightResultWinSkin" + n.ActivityType)); + } + this.itemList1 && (this.itemList1.itemRenderer = t.ItemBase), this.itemList && (this.itemList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.resultData = e[0]), + this.resultData.issuccess && this.resultData.issuccess >= 0 && (this.resultType = this.resultData.issuccess), + this.updateView(), + this.vKruVZ(this.suitBtn, this.onClick); + this.autoTaskOpen = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask); + if (this.autoTaskOpen) { + this.cdTime > 0 && (this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + } else { + this.autoSuit.text = ""; + } + }), + (i.prototype.updateView = function () { + if (1 == this.resultType) { + (this.bgIcon.source = "result_win"), (this.titleIcon.source = "result_win1"), (this.failGrp.visible = !1), (this.listGrp.visible = !0), (this.suitBtn.label = t.CrmPU.language_Common_66); + var e; + if (this.resultData.actid) { + var i = t.TQkyOx.ins().getActivitConf(this.resultData.actid); + if (1 == i.ActivityType || 12 == i.ActivityType) { + if (((e = t.TQkyOx.ins().getActivityConfigById(this.resultData.actid)), e && e.Persongift)) { + var n = []; + for (var s in e.Persongift) n.push(e.Persongift[s]); + this.itemList.dataProvider = new eui.ArrayCollection(n); + } + } else if (3 == i.ActivityType || i.ActivityType == t.ISYR.NightVoma || i.ActivityType == t.ISYR.CrossServerNightVoma || i.ActivityType == t.ISYR.CrossServerChaos) { + if ( + this.resultData.source >= 0 && + this.resultData.rank >= 0 && + ((this.rankLab.text = t.zlkp.replace(t.CrmPU.language_Common_76, this.resultData.source, this.resultData.rank)), (e = t.TQkyOx.ins().getActivityConfigById(this.resultData.actid))) + ) { + var a, + r = []; + for (var o in e.phaseAward) { + var l = e.phaseAward[o]; + this.resultData.source >= l.value && (a = l.awards); + } + this.itemList1 && ((r = this.getRewards(a)), (this.itemList1.dataProvider = new eui.ArrayCollection(r))), (a = null); + var h; + for (var p in e.rankAward) { + var u = e.rankAward[p]; + if (u.value >= this.resultData.rank) { + h = u.awards; + break; + } + } + (r = this.getRewards(h)), (this.itemList.dataProvider = new eui.ArrayCollection(r)), (r = null), (h = null); + } + } else if (i.ActivityType == t.ISYR.Inspire || i.ActivityType == t.ISYR.CrossServerBoss || i.ActivityType == t.ISYR.WorldBoss) { + if (this.resultData.rank >= 0) { + var c = ""; + if ( + ((c += "" == this.resultData.skill ? "" : "|C:0xeee104&T:" + this.resultData.skill + " ||C:0xe50000&T:" + t.CrmPU.language_Common_98 + "|\n"), + (c += "" == this.resultData.first ? "" : "|C:0xff1ac2&T:" + t.CrmPU.language_Common_95 + " " + this.resultData.first + "|\n"), + (c += "" == this.resultData.second ? "" : "|C:0xff7700&T:" + t.CrmPU.language_Common_96 + " " + this.resultData.second + "|\n"), + (c += "" == this.resultData.third ? "" : "|C:0x1affff&T:" + t.CrmPU.language_Common_97 + " " + this.resultData.third + "|\n"), + (c += 0 == this.resultData.rank ? "" : "|C:0xe5ddcf&T:" + t.CrmPU.language_FuBen_Text7 + " " + this.resultData.rank + "|"), + (this.rankLab0.textFlow = t.hETx.qYVI(c)), + this.bossName) + ) { + var g = i.ActivityType == t.ISYR.Inspire || i.ActivityType == t.ISYR.WorldBoss ? 171 : i.ActivityType == t.ISYR.CrossServerBoss ? 385 : 0, + d = t.VlaoF.Monster[g]; + d && (this.bossName.text = d.name + t.CrmPU.language_Omission_txt124); + } + if ((e = t.TQkyOx.ins().getActivityConfigById(this.resultData.actid))) { + var m = void 0, + f = []; + if (1 == this.resultData.islast) { + for (var o in e.killaward) { + var l = e.killaward[o]; + m = l.awards; + } + f = this.getRewards(m); + } + m = null; + var v = void 0; + for (var p in e.rankAward) { + var u = e.rankAward[p]; + if (u.value >= this.resultData.rank) { + v = u.awards; + break; + } + } + var _ = f.concat(this.getRewards(v)); + (this.itemList.dataProvider = new eui.ArrayCollection(_)), (f = null), (v = null); + } + } + } else if (i.ActivityType == t.ISYR.EscapeFromTrial) { + var y = this.resultData.rank, + c = ""; + (c = y > 0 ? t.zlkp.replace(t.CrmPU.language_Common_253, y) : t.CrmPU.language_Common_254), + (this.rankLab.textFlow = t.hETx.qYVI(c)), + (this.itemList.dataProvider = new eui.ArrayCollection(this.resultData.list)); + } else if (i.ActivityType == t.ISYR.SecretLandTreasure && (e = t.TQkyOx.ins().getActivityConfigById(this.resultData.actid))) { + var n = []; + if (this.resultData.secretBoxScore && e.AwardA) { + var T = e.AwardA[0]; + n.push({ + type: T.type, + id: T.id, + count: this.resultData.secretBoxScore, + }); + } + if (this.resultData.wordsBoxScore && e.AwardB) { + var T = e.AwardB[0]; + n.push({ + type: T.type, + id: T.id, + count: this.resultData.wordsBoxScore, + }); + } + if (this.resultData.materialsBoxScore && e.AwardC) { + var T = e.AwardC[0]; + n.push({ + type: T.type, + id: T.id, + count: this.resultData.materialsBoxScore, + }); + } + (this.itemList.itemRenderer = t.FightResulItem1), (this.itemList.dataProvider = new eui.ArrayCollection(n)), 0 == n.length && (this.failGrp.visible = !0); + } + } + } else + (this.bgIcon.source = "result_lost"), (this.titleIcon.source = "result_lost1"), (this.failGrp.visible = !0), (this.listGrp.visible = !1), (this.suitBtn.label = t.CrmPU.language_Common_67); + }), + (i.prototype.getRewards = function (t) { + var e = []; + for (var i in t) e.push(t[i]); + return e; + }), + (i.prototype.updateTime = function () { + var e = (this.cdTime -= 1); + (this.autoSuit.text = 1 == this.resultType ? "" + e + t.CrmPU.language_Common_68 : "" + e + t.CrmPU.language_Common_69), + 0 >= e && + (t.KHNO.ins().remove(this.updateTime, this), + (this.autoSuit.text = ""), + 1 == this.resultType && t.FuBenMgr.ins().send_20_3(t.GameMap.fubenID), + t.FuBenMgr.ins().send_20_2(t.GameMap.fubenID), + t.mAYZL.ins().close(this)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.suitBtn: + 1 == this.resultType && t.FuBenMgr.ins().send_20_3(t.GameMap.fubenID), t.FuBenMgr.ins().send_20_2(t.GameMap.fubenID), t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(); + this.autoTaskOpen && t.KHNO.ins().remove(this.updateTime, this); + this.fEHj(this.suitBtn, this.onClick), + (this.bgIcon = null), + (this.titleIcon = null), + (this.failGrp = null), + (this.suitBtn = null), + (this.resultData = null), + (this.listGrp = null), + (this.itemList = null), + (this.autoSuit = null), + (this.cdTime = null), + (this.resultType = null), + (this.rewadrs = null); + }), + i + ); + })(t.gIRYTi); + (t.FightResultWin = e), __reflect(e.prototype, "app.FightResultWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.cdTime = 10), (t.skinName = "FightResultWinSkin4"), (t.bottom = t.top = t.right = t.left = 0), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.itemList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.resultData = e[0]), + (this.labTitle.text = t.CrmPU.language_Common_240), + (this.suitBtn.label = t.CrmPU.language_Common_66), + this.updateView(), + this.vKruVZ(this.suitBtn, this.onClick); + this.autoTaskOpen = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask); + if (this.autoTaskOpen) { + this.cdTime > 0 && (this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + } else { + this.autoSuit.text = ""; + } + }), + (i.prototype.updateView = function () { + (this.bossName.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_238, this.resultData.name))), + (this.labDesc.text = t.CrmPU.language_Common_239), + (this.itemList.dataProvider = new eui.ArrayCollection(this.resultData.list)); + }), + (i.prototype.updateTime = function () { + var e = (this.cdTime -= 1); + (this.autoSuit.text = "" + e + t.CrmPU.language_Common_69), 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.autoSuit.text = ""), t.mAYZL.ins().close(this)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.suitBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), + this.autoTaskOpen && t.KHNO.ins().remove(this.updateTime, this), + this.fEHj(this.suitBtn, this.onClick), + (this.bgIcon = null), + (this.suitBtn = null), + (this.resultData = null), + (this.listGrp = null), + (this.itemList = null), + (this.autoSuit = null), + (this.cdTime = null); + }), + i + ); + })(t.gIRYTi); + (t.FightResultWin2 = e), __reflect(e.prototype, "app.FightResultWin2"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + this.ItemData.data = this.data; + var e = t.ZAJw.sztgR(this.data.type, this.data.id); + e && (this.itemName.textFlow = t.hETx.qYVI(e[0] + ("|C:0x28ee01&T:*" + this.data.count + "|"))); + } + }), + i + ); + })(t.BaseItemRender); + (t.FightResulItem1 = e), __reflect(e.prototype, "app.FightResulItem1"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.applyFunc = null), (t.skinName = "CommonBtnSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.setBackFunc = function (t, e, i) { + (this.applyFunc = t), (this.targetObj = e); + }), + (i.prototype.childrenCreated = function () { + if ((e.prototype.childrenCreated.call(this), (this.redDot.visible = !1), this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickFunc, this), 4 == this._btnId)) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "rTRv.isSatisFashionAct"; + this.redDot.updateShowFunctions = i; + } + } else if (6 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "NGcJ.getJobSkillredDot", + n = t.NWRFmB.ins().getPayer; + (this.redDot.param = n.propSet.getAP_JOB()), (this.redDot.updateShowFunctions = i); + } + } else if (7 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "NGcJ.getJobSkillredDot"; + (this.redDot.param = null), (this.redDot.updateShowFunctions = i); + } + } else if (16 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "StrengthenMgr.isSatisStrengthened"; + this.redDot.updateShowFunctions = i; + } + } else if (14 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "StrengthenMgr.isEnoughStrengthened"; + this.redDot.updateShowFunctions = i; + } + } else if (12 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "BlessMgr.isCanBless"; + this.redDot.updateShowFunctions = i; + } + } else if (13 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "StrengthenMgr.fourImageRed"; + this.redDot.updateShowFunctions = i; + } + } else if (2 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "edHC.getOfficeRed"; + this.redDot.updateShowFunctions = i; + } + } else if (18 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "GhostMgr.getRed"; + this.redDot.updateShowFunctions = i; + } + } else if (8 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "MeridiansMgr.getDot"; + this.redDot.updateShowFunctions = i; + } + } else if (20 == this._btnId) { + if (this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "SoldierSoulMgr.getWeaponRed"; + this.redDot.updateShowFunctions = i; + } + } else if (22 == this._btnId && this.targetObj && this.targetObj instanceof t.RoleView) { + var i = "WordFormulaManager.getViewRed"; + this.redDot.updateShowFunctions = i; + } + }), + (i.prototype.setImagePath = function (t) { + void 0 === t && (t = null), null != t && ((this.bg.source = t), (this.bg0.source = t + "2")); + }), + (i.prototype.onClickFunc = function (e) { + var i = e.currentTarget; + if (!this.isOpen) { + var n = t.VlaoF.SystemOpen, + s = n[i.btnId].name; + return void t.uMEZy.ins().IrCm(s); + } + null != this.applyFunc && this.applyFunc.call(this.targetObj, i); + }), + (i.prototype.refresh = function () { + this.redDot && this.redDot.delayUpdateShow(); + }), + Object.defineProperty(i.prototype, "btnId", { + get: function () { + return this._btnId; + }, + set: function (t) { + this._btnId = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isOpen", { + get: function () { + return this._isOpen; + }, + set: function (t) { + this._isOpen = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setCurState = function (t) { + this.currentState = t; + }), + (i.prototype.destroy = function () { + this.applyFunc && (this.applyFunc = null), this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClickFunc, this), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.ButtonStateElement = e), __reflect(e.prototype, "app.ButtonStateElement"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.dir = 4), (this.team = Team.NotAtk); + } + return t; + })(); + (t.BHsI = e), __reflect(e.prototype, "app.BHsI"); +})(app || (app = {})); +var Team; +!(function (t) { + (t[(t.My = 0)] = "My"), (t[(t.Monster = 1)] = "Monster"), (t[(t.WillEntity = 2)] = "WillEntity"), (t[(t.WillBoss = 3)] = "WillBoss"), (t[(t.NotAtk = 4)] = "NotAtk"), (t[(t.Faker = 5)] = "Faker"); +})(Team || (Team = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.errorCode = ["", t.CrmPU.language_Error_11, t.CrmPU.language_Error_12, t.CrmPU.language_Error_13, t.CrmPU.language_Error_14, t.CrmPU.language_Error_108, t.CrmPU.language_Error_114]), + (i.myRoleInfo = {}), + (i._switchPlayer = !1), + (i._createSex = 0), + (i.createSign = !1), + (i.selectRolId = 0), + (i._count = 1), + (i.sysId = t.jDIWJt.Login), + i.YrTisc(1, i.g_255_1), + i.YrTisc(2, i.g_255_2), + i.YrTisc(3, i.g_255_3), + i.YrTisc(5, i.g_255_5), + i.YrTisc(8, i.g_255_8), + i.YrTisc(9, i.g_255_9), + i + ); + } + return ( + __extends(i, e), + (i.prototype.PUmMeO = function () { + t.ubnV.ins().login(t.MiOx.openID, t.MiOx.password, t.MiOx.srvid, t.MiOx.serverIP, t.MiOx.serverPort, t.MiOx.originalSrvid); + }), + (i.prototype.initMyRoleInfo = function () { + t.ObjectPool.wipe(this.myRoleInfo), (this._count = 1), (this.selectRolId = 0); + }), + (i.prototype.getMyRoleInfo = function () { + var t = []; + for (var e in this.myRoleInfo) (this.myRoleInfo[e].select = !1), t.push(this.myRoleInfo[e]); + return t; + }), + (i.prototype.setMyRoleInfoLevel = function (e) { + this.myRoleInfo[t.MiOx.roleId] && (this.myRoleInfo[t.MiOx.roleId].level = e); + }), + (i.prototype.setMyRoleInfoZsLevel = function (e) { + this.myRoleInfo[t.MiOx.roleId] && (this.myRoleInfo[t.MiOx.roleId].zsLevel = e); + }), + (i.prototype.setMyRoleInfoGuildName = function (e) { + this.myRoleInfo[t.MiOx.roleId] && (this.myRoleInfo[t.MiOx.roleId].guildName = e); + }), + (i.prototype.setMyRoleInfoName = function (e) { + this.myRoleInfo[t.MiOx.roleId] && (this.myRoleInfo[t.MiOx.roleId].name = e); + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.initInfo = function () { + this.myRoleInfo = {}; + for (var e = t.ubnV.ins().getMyRoleInfo(), i = 0; i < e.length; i++) this.myRoleInfo[e[i].id] = e[i]; + (this.openDay = t.ubnV.ins().openDay), (this.selectRolId = t.ubnV.ins().selectRolId); + }), + Object.defineProperty(i.prototype, "switchPlayer", { + get: function () { + return this._switchPlayer; + }, + set: function (t) { + this._switchPlayer = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.s_255_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.s_255_6 = function (t) { + var e = this.MxGiq(6); + e.writeByte(t), this.evKig(e); + }), + Object.defineProperty(i.prototype, "createSex", { + get: function () { + return this._createSex; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.s_255_4 = function (e, i, n, s, a) { + void 0 === s && (s = 0), + void 0 === a && (a = 0), + (this.createSign = !0), + (this._createSex = s), + FzTZ.reporting( + t.ReportDataEnum.CLICK_CREATE_ROLE, + {}, + { + uid: t.MiOx.openID, + roleId: 0, + serverName: t.MiOx.srvname, + }, + !1 + ); + var r = this.MxGiq(4); + r.writeString(e), r.writeByte(s), r.writeByte(a), r.writeByte(0), r.writeByte(0), r.writeString(""), r.writeInt(0), this.evKig(r); + }), + (i.prototype.g_255_1 = function (e) { + var i = e.readByte(); + this.errorCode[Math.abs(i)] + ? Main.XIFoU + ? Main.XIFoU(this.errorCode[Math.abs(i)]) + : t.uMEZy.ins().IrCm(this.errorCode[Math.abs(i)]) + : 17 == Math.abs(i) + ? Main.XIFoU + ? Main.XIFoU(t.CrmPU.language_Error_104) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Error_104) + : 18 == Math.abs(i) + ? Main.XIFoU + ? Main.XIFoU(t.CrmPU.language_Error_108) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Error_108) + : Main.XIFoU + ? Main.XIFoU(t.CrmPU.language_Error_100 + ":" + i) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Error_100 + ":" + i), + t.ubnV.ihUJ && (t.ubnV.ihUJ = !1); + }), + Object.defineProperty(i.prototype, "openDay", { + get: function () { + return this._openDay; + }, + set: function (t) { + this._openDay = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.g_255_2 = function (e) { + this._openDay = e.readUnsignedInt(); + var n = (e.readByte(), e.readInt()), + s = e.readByte(); + if (s > this._count && this._count > 0) { + this._count = s; + for (var a, r = 0; s > r; r++) + if (((a = new t.SimplePlayerInfo()), a.read(e), !this.myRoleInfo[a.id])) { + this.selectRolId = a.id; + break; + } + return void t.bqQT.closesocket(!1); + } + if (((this._count = s), 0 == s || i.ins().switchPlayer)) return t.SceneManager.ins().runScene(t.CreateRoleScene), void (i.ins().switchPlayer = !1); + if ((t.ObjectPool.wipe(this.myRoleInfo), s > 0 && 100 > s)) { + for (var a, r = 0; s > r; r++) (a = new t.SimplePlayerInfo()), a.read(e), this.selectRolId || (this.selectRolId = a.id), (this.myRoleInfo[a.id] = a); + if ( + (this.createSign && + (FzTZ.reporting( + t.ReportDataEnum.CREATE_ROLE_SUCCESS, + {}, + { + roleId: a.id, + roleName: a.name, + level: 0, + sex: a.sex, + job: a.job, + guildName: a.guildName, + zsLevel: 0, + }, + !1 + ), + FzTZ.reporting( + t.ReportDataEnum.UPDATE_LEVEL, + {}, + { + roleId: a.id, + roleName: a.name, + level: 1, + prelevel: 1, + sex: a.sex, + job: a.job, + guildName: a.guildName, + zsLevel: 0, + }, + !1 + ), + (this.createSign = !1), + Main.vZzwB.pfID == t.PlatFormID.QQGame && this.qqIDCard(), + 10007 == Main.vZzwB.pfID && + Main.vZzwB.loginType && + KdbLz.qOtrbE.vDCH && + Main.Native_adJustData({ + type: 2, + })), + !this.myRoleInfo[this.selectRolId]) + ) + for (var o in this.myRoleInfo) { + this.selectRolId = +o; + break; + } + t.Nzfh.ins().s_0_1(n, this.myRoleInfo[this.selectRolId].id); + } + }), + (i.prototype.g_255_5 = function (t) { + var e = t.readByte(); + if (0 == e) { + var i = (t.readByte(), t.readUTF()); + this.setName(i); + } + }), + (i.prototype.g_255_3 = function (e) { + var i = (e.readInt(), e.readByte()); + if (i) { + var n = t.mAYZL.ins().ZzTs(t.CreateRoleView2); + n && (this.errorCode[Math.abs(i)] ? n.IrCm(this.errorCode[Math.abs(i)]) : n.IrCm(t.CrmPU.language_Error_100 + ":" + i)); + } else t.OSzbc.ins().delayTime(3e3), this.createSign ? (t.mAYZL.ins().open(t.WelcomeView2), t.mAYZL.ins().close(t.CreateRoleView2)) : this.s_255_3(); + }), + (i.prototype.g_255_8 = function (e) { + (t.ubnV.ins().automaticLink = !1), t.mAYZL.ins().open(t.MainBanView, t.CrmPU.language_Error_105); + }), + (i.prototype.g_255_9 = function (e) { + var i = e.readInt(), + n = t.KFManager.ins().kfRoleId; + t.Nzfh.ins().s_0_1(i, n); + }), + (i.prototype.setName = function (t) { + this.createRoleView.setName(t); + }), + Object.defineProperty(i.prototype, "createRoleView", { + get: function () { + return t.mAYZL.ins().ZzTs(t.CreateRoleView2); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.qqIDCard = function () { + var t = "openID=" + Main.vZzwB.userInfo.openID + "&openkey=" + Main.vZzwB.userInfo.openkey + "&pf=" + Main.vZzwB.userInfo.pf, + e = new XMLHttpRequest(); + (e.onreadystatechange = function () { + if (4 == e.readyState && 200 == e.status) { + var t = JSON.parse(e.responseText); + t && 0 == t.ret; + } + }), + e.open("GET", window.Verified + t, !0), + e.send(null); + }), + i + ); + })(t.DlUenA); + (t.TKZUv = e), __reflect(e.prototype, "app.TKZUv"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.Move), i.YrTisc(6, i.postFlyShoes), i.YrTisc(7, i.post_1_7), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.s_1_1 = function (t, e, i) { + var n = Math.floor(egret.getTimer()), + s = this.MxGiq(2); + s.writeShort(t), s.writeShort(e), s.writeShort(i), s.writeUnsignedInt(n), this.evKig(s); + }), + (i.prototype.s_1_2 = function (t, e, i) { + var n = Math.floor(egret.getTimer()), + s = this.MxGiq(3); + s.writeShort(t), s.writeShort(e), s.writeShort(i), s.writeUnsignedInt(n), this.evKig(s); + }), + (i.prototype.s_1_4 = function (t) { + var e = this.MxGiq(5); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_1_7 = function (t, e) { + var i = this.MxGiq(7); + i.writeNumber(t), i.writeShort(e), this.evKig(i); + }), + (i.prototype.post_1_7 = function (t) { + var e = t.readInt(); + return e; + }), + (i.prototype.post_clearNpcTime = function () {}), + (i.prototype.post_clearDuoBaoTime = function () {}), + (i.prototype.s_1_6 = function (t, e) { + var i = this.MxGiq(6); + i.writeByte(t), i.writeByte(0), i.writeByte(e), i.writeByte(0), this.evKig(i); + }), + (i.prototype.postFlyShoes = function (t) { + var e = t.readShort(); + 0 != e && this.isOpenNpcView(e); + }), + (i.prototype.isOpenNpcView = function (e) { + var i, + n, + s = t.NWRFmB.ins().getNpcList(); + for (var a in s) + if (((i = s[a]), (n = i.propSet.getACTOR_ID()), n == e)) { + t.mAYZL.ins().ZbzdY(t.NpcView) && t.mAYZL.ins().close(t.NpcView), t.mAYZL.ins().open(t.NpcView, i.recog, i.propSet); + break; + } + }), + i + ); + })(t.DlUenA); + (t.PKRX = e), __reflect(e.prototype, "app.PKRX"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + var n = e.call(this) || this; + (n._mainDic = {}), + (n.subImages = [ + ["btn_js_zb", "btn_js_shiz", "btn_js_sx", "btn_js_zf", "btn_js_ch", "btn_js_sz"], + ["btn_jn_zy", "btn_jn_ty", "btn_shenmo", "btn_neigong"], + [], + [], + [], + ["btn_jn_bh", "btn_chongwu_icon", "btn_js_zj"], + ]); + var s, + a = t.edHC.ins().getSubIdsByMainId(i.ROLE_EQUIP), + r = t.edHC.ins().getSubIdsByMainId(i.ROLE_SKILL), + o = t.edHC.ins().getSubIdsByMainId(i.ROLE_CIRCLE), + l = t.edHC.ins().getSubIdsByMainId(i.ROLE_TREASURE), + h = t.edHC.ins().getSubIdsByMainId(i.ROLE_STRENGTHEN), + p = t.edHC.ins().getSubIdsByMainId(i.ROLE_SACRED); + for (s = 0; s < a.length; s++) n._mainDic[a[s].id] = n.subImages[i.ROLE_EQUIP][s]; + for (s = 0; s < r.length; s++) n._mainDic[r[s].id] = n.subImages[i.ROLE_SKILL][s]; + for (s = 0; s < o.length; s++) n._mainDic[o[s].id] = n.subImages[i.ROLE_CIRCLE][s]; + for (s = 0; s < l.length; s++) n._mainDic[l[s].id] = n.subImages[i.ROLE_TREASURE][s]; + for (s = 0; s < h.length; s++) n._mainDic[h[s].id] = n.subImages[i.ROLE_STRENGTHEN][s]; + for (s = 0; s < p.length; s++) n._mainDic[p[s].id] = n.subImages[i.ROLE_SACRED][s]; + return n; + } + return ( + __extends(n, e), + (n.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(n.prototype, "mainDic", { + get: function () { + return this._mainDic; + }, + enumerable: !0, + configurable: !0, + }), + n + ); + })(t.BaseClass); + (t.RoleSubBtn = e), __reflect(e.prototype, "app.RoleSubBtn"); + var i = (function () { + function t() {} + return (t.ROLE_EQUIP = 0), (t.ROLE_SKILL = 1), (t.ROLE_CIRCLE = 2), (t.ROLE_TREASURE = 3), (t.ROLE_STRENGTHEN = 4), (t.ROLE_SACRED = 5), t; + })(); + (t.RoleSubBtnType = i), __reflect(i.prototype, "app.RoleSubBtnType"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.ROLE = 1), + (t.EQUIP = 2), + (t.DIVINE = 3), + (t.FASHION = 4), + (t.SKILL = 5), + (t.JOB = 6), + (t.CURRENCY = 7), + (t.MERIDIANS = 8), + (t.CIRCLE = 10), + (t.TREASURE = 11), + (t.BLESS = 12), + (t.FOUR = 13), + (t.RING = 14), + (t.STRENGTH = 16), + (t.DESIGNAT = 17), + (t.SHENMO = 18), + (t.HALIDOM = 19), + (t.SOLDIERSOUL = 20), + (t.PET = 21), + (t.WORDFORMULA = 22), + t + ); + })(); + (t.RoleTabEnum = e), __reflect(e.prototype, "app.RoleTabEnum"); + var i = (function () { + function t() {} + return (t.myRolePanel = 1), (t.otherPlayerPanel = 2), t; + })(); + (t.RoleViewEnum = i), __reflect(i.prototype, "app.RoleViewEnum"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this, t) || this; + return (i.tabName = ["role_tab_js", "role_tab_jn", "role_tab_zs", "role_tab_bw", "role_tab_qh", "role_tab_sw"]), (i._container = t), i.init(), i; + } + return ( + __extends(i, e), + (i.prototype.init = function () { + if (null != this._container) { + this.tabElements = []; + for (var e, i, n = t.edHC.ins().dicMenu[1], s = 0, a = this.tabName.length; a > s; s++) + (e = new t.RolePriBtnView()), + (i = new t.Tab_Element(e)), + i.setData({ + txt: this.tabName[s], + id: n[s].id, + isOpen: !0, + }), + e.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + this.tabElements.push(i); + } + }), + (i.prototype.refresh = function () { + for (var t = 0, e = this.tabElements.length; e > t; t++) this.tabElements[t].refresh(); + }), + (i.prototype.setData = function (e) { + this.removeAllChild(); + for (var i, n = (t.edHC.ins().dicMenu[1], 0); n < e.length; n++) + for (var s = 0; s < this.tabElements.length; s++) + if (((i = this.tabElements[s].tabBtn), i.id == e[n])) { + this._container.addChild(i); + break; + } + }), + (i.prototype.removeAllChild = function () { + for (; this._container.numElements > 0; ) this._container.removeChildAt(0); + }), + (i.prototype.onTouchTap = function (e) { + var i, + n, + s, + a = e.currentTarget; + if (!this._currTab || this._currTab.tabBtn != a) + for (n = 0; n < this.tabElements.length; n++) + if (((i = this.tabElements[n]), (s = a.id), i.tabBtn == a)) { + if (!i.isOpen) { + var r = t.VlaoF.SystemOpen, + o = r[a.id].name; + t.uMEZy.ins().IrCm(o), this._currTab["goto"](2); + continue; + } + i["goto"](2), (this._currIndex = n), this._currTab["goto"](1), (this._currTab = i), this.dispatchEvent(new t.CompEvent(t.CompEvent.TAB_CHANGE)); + } else i.isOpen && this._currTab != i && i["goto"](1); + }), + Object.defineProperty(i.prototype, "currIndex", { + get: function () { + return this._currIndex; + }, + set: function (e) { + var i, n; + if (((i = this.tabElements[e]), !this._currTab || this._currTab != i || i)) { + for (i["goto"](2), this._currIndex = e, this._currTab = i, n = 0; n < this.tabElements.length; n++) n != e && this.tabElements[n]["goto"](1); + this.dispatchEvent(new t.CompEvent(t.CompEvent.TAB_CHANGE)); + } + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "currTab", { + get: function () { + return this._currTab; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destory = function () { + for (var t, e = void 0, i = this.tabElements.length; i > e; e++) + (t = this.tabElements[e]), t.tabBtn && t.tabBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), t.destory(), (t = null); + }), + i + ); + })(egret.EventDispatcher); + (t.Tab_Bar = e), __reflect(e.prototype, "app.Tab_Bar"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e) { + var i = t.call(this, e) || this; + return (i._tabBtn = e), i; + } + return ( + __extends(e, t), + Object.defineProperty(e.prototype, "tabBtn", { + get: function () { + return this._tabBtn; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype["goto"] = function (t) { + this._tabBtn["goto"](t); + }), + Object.defineProperty(e.prototype, "id", { + get: function () { + return this._tabBtn.id; + }, + set: function (t) { + this._tabBtn.id = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "isOpen", { + get: function () { + return this._tabBtn.isOpen; + }, + set: function (t) { + this._tabBtn.isOpen = t; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.setData = function (t) { + t && this._tabBtn.setData(t); + }), + (e.prototype.refresh = function () { + this._tabBtn.refresh(); + }), + (e.prototype.destroy = function () { + this._tabBtn.destory(), (this._tabBtn = null); + }), + e + ); + })(egret.EventDispatcher); + (t.Tab_Element = e), __reflect(e.prototype, "app.Tab_Element"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.Bless), i.YrTisc(1, i.post_18_1), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_18_1 = function (t) { + var e = this.MxGiq(1); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_18_1 = function (t) { + t.readInt(); + }), + (i.prototype.isCanBless = function () { + var e = 1, + i = 0, + n = t.ZAJw.MPDpiB(ZnGy.qatEquipment, 269), + s = t.NWRFmB.ins().getPayer; + if (s && s.propSet) + for (var a in t.VlaoF.BlessConfig) { + var r = t.VlaoF.BlessConfig[a]; + if (!(s.propSet.getBless() >= r.needBlessValue)) break; + i = r.level; + } + return (e = i && i > 5 ? 5 : 1), n >= e ? 1 : 0; + }), + (i.prototype.isCanBless2 = function () { + return i.ins().isCanAuto ? i.ins().isCanBless() : 0; + }), + (i.prototype.getRedById = function (t) { + return 269 == t ? this.isCanBless() : 0; + }), + Object.defineProperty(i.prototype, "isCanAuto", { + get: function () { + var e = t.NWRFmB.ins().getPayer, + i = t.VipData.ins().getMyVipLv(); + return i > 3 || e.propSet.MzYki() > 5 ? !0 : !1; + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.DlUenA); + (t.BlessMgr = e), __reflect(e.prototype, "app.BlessMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.Circle), i.YrTisc(1, i.post_11_1), i.YrTisc(2, i.post_11_2), i.YrTisc(3, i.post_11_3), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_11_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.send_11_2 = function () { + var t = this.MxGiq(2); + this.evKig(t); + }), + (i.prototype.send_11_3 = function (t) { + var e = this.MxGiq(3); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_11_1 = function (t) { + for (var e, i, n = t.readByte(), s = 0; n > s; s++) (e = t.readByte()), (i = t.readByte()), this.setExchangeData(e, i); + }), + (i.prototype.post_11_2 = function (e) { + var i = e.readByte(); + 1 == i && t.edHC.ins().send_26_45(); + }), + (i.prototype.post_11_3 = function (t) { + t.readByte(); + }), + (i.prototype.setExchangeData = function (e, i) { + t.JgMyc.ins().roleModel.exchangeListData[e].useTimes = t.JgMyc.ins().roleModel.exchangeListData[e].useLimit - i; + }), + i + ); + })(t.DlUenA); + (t.CircleMgr = e), __reflect(e.prototype, "app.CircleMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + (this.isWk = !1), (this.recog = 0), (this.btDir = 0), (this.X = 0), (this.Y = 0); + } + return ( + (t.prototype.read = function (t, e, i, n, s, a) { + void 0 === t && (t = !1), + void 0 === e && (e = 0), + void 0 === i && (i = 0), + void 0 === n && (n = 0), + void 0 === s && (s = 0), + void 0 === a && (a = 0), + (this.isWk = t), + (this.recog = e), + (this.btDir = i), + (this.X = n), + (this.Y = s), + (this.Action = a); + }), + (t.prototype.init = function () { + (this.isWk = !1), (this.recog = 0), (this.btDir = 0), (this.X = 0), (this.Y = 0), (this.Action = 0); + }), + t + ); + })(); + (t.ActionInfo = e), __reflect(e.prototype, "app.ActionInfo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MedalAttrItemCurSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_cur.text = this.data); + }), + e + ); + })(eui.ItemRenderer); + (t.MedalAttrItemCurView = e), __reflect(e.prototype, "app.MedalAttrItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.Human = 0), (t.Monster = 1), (t.Npc = 2), (t.enDropItem = 3), (t.enPet = 4), (t.enFire = 5), (t.offlineDummy = 6), (t.dummy = 7), t; + })(); + (t.ActorRace = e), __reflect(e.prototype, "app.ActorRace"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.STAND = 1), + (t.MOVE = 2), + (t.RIDE = 4), + (t.ZANZEN = 8), + (t.STALL = 16), + (t.SING = 32), + (t.BATTLE = 64), + (t.DEATH = 8), + (t.MOVE_FORBID = 256), + (t.DIZZY = 512), + (t.AUTO_BATTLE = 1024), + (t.RETURN_BURN = 2048), + (t.DISABLE_SKILLCD = 4096), + (t.CHALLENGE = 8192), + (t.TRAFFIC = 16384), + (t.COUPLE_ZANZEN = 32768), + (t.BODY_CHANGE = 65536), + (t.SWIMMING = 131072), + (t.KISS_SWIMMING = 262144), + (t.FAST_BATTLE = 524288), + (t.KISS_LAND = 1048576), + (t.SILENT = 2097152), + (t.CARRIER = 4194304), + (t.PASSENGGER = 8388608), + (t.DongFang = 16777216), + (t.Own_Pet = 33554432), + (t.HERO_FIT = 67108864), + (t.GM = 134217728), + (t.Chariot = 268435456), + (t.DenyAttacked = 536870912), + (t.YUNBIAO = 2147483648), + t + ); + })(); + (t.ActorState = e), __reflect(e.prototype, "app.ActorState"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.ZbzdY = !1), t; + } + return ( + __extends(i, e), + (i.prototype.advanceTime = function (e) { + this.checkIsVisible(), t.mAYZL.gamescene.map.setShadowXY(this.recog, this.x, this.y); + }), + (i.prototype.initialize = function () { + (this.ZbzdY = !1), e.prototype.initialize.call(this), this.checkIsVisible(), this.updateNameType(); + }), + (i.prototype.updateNameType = function () { + this.propSet && ((this._nameTxt.visible = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowHuman) && !t.GameMap.aaCannotSeeName ? !0 : !1), this.updateLabelxy()); + }), + (i.prototype.setNameTxtColor = function () { + this._nameTxt.textColor = t.ClwSVR.NAME_WHITE; + }), + (i.prototype.onEndClick = function (e) { + t.NWRFmB.ins().getPayer; + t.Nzfh.ins().postUpdateTarget(this.recog); + }), + (i.prototype.mouseMove = function (e) { + if ((e.stopPropagation(), e.type == mouse.MouseEvent.MOUSE_OUT)) + (this.filters = null), (t.EhSWiR.m_Move_Char = null), this.updateNameType(), t.uMEZy.ins().closeTips(), (this.isShowGuanZhi = !1); + else if (e.type == mouse.MouseEvent.MOUSE_OVER) { + (this.isShowGuanZhi = !0), (this.filters = t.FilterUtil.WHITE()); + var i = t.NWRFmB.ins().getPayer; + this.isDead || (this.isMyPet && 5 != i.propSet.getPKtype()) || (t.EhSWiR.m_Move_Char = this), + this.parent && (this.isCharRole || this.isPet ? (this._nameTxt.visible = !t.GameMap.aaCannotSeeName) : (this._nameTxt.visible = !0)); + } + }), + Object.defineProperty(i.prototype, "isCharRole", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isDummyCharRole", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.checkIsVisible = function () { + 3 == t.GameMap.mapID && t.NWRFmB.ins().isVisibleDummy(this.recog) ? this.setIsVisible(!0) : this.setIsVisible(!1); + }), + (i.prototype.setIsVisible = function (i) { + if (i != this.ZbzdY) + if ((this.updateNameType(), (this.ZbzdY = i), this.ZbzdY)) e.prototype.initialize.call(this), this.updateNameType(), t.mAYZL.gamescene.map.addEntity(this), (this.visible = !0); + else { + (this.visible = !1), t.lEYZI.Naoc(this); + var n = t.NWRFmB.ins().getPayer; + this.recog == n.lockTarget && t.Nzfh.ins().postUpdateTarget(0); + } + }), + i + ); + })(t.hNqkna); + (t.CharDummy = e), __reflect(e.prototype, "app.CharDummy"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MedalAttrItemNextSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_next.text = this.data); + }), + e + ); + })(eui.ItemRenderer); + (t.MedalAttrItemNextView = e), __reflect(e.prototype, "app.MedalAttrItemNextView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + this.visible = null != this.data; + var t = this.data; + if (t) { + t.type; + t.state > 0 ? (this.lbGift.textColor = 1827328) : (this.lbGift.textColor = 15779990), (this.lbGift.text = t.content); + } + }), + e + ); + })(eui.ItemRenderer); + (t.MedalUpItemCurView = e), __reflect(e.prototype, "app.MedalUpItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.ZbzdY = !1), t; + } + return ( + __extends(i, e), + (i.prototype.initialize = function () { + (this.ZbzdY = !1), e.prototype.initialize.call(this), this.updateNameType(), (this._nameTxt.visible = !0); + }), + (i.prototype.updateNameType = function () { + this.propSet && ((this._nameTxt.visible = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowHuman) && !t.GameMap.aaCannotSeeName ? !0 : !1), this.updateLabelxy()); + }), + (i.prototype.setNameTxtColor = function () { + this._nameTxt.textColor = t.ClwSVR.NAME_WHITE; + }), + (i.prototype.onEndClick = function (e) { + t.NWRFmB.ins().getPayer; + t.Nzfh.ins().postUpdateTarget(this.recog); + }), + (i.prototype.mouseMove = function (e) { + if ((e.stopPropagation(), e.type == mouse.MouseEvent.MOUSE_OUT)) + (this.filters = null), (t.EhSWiR.m_Move_Char = null), this.updateNameType(), t.uMEZy.ins().closeTips(), (this.isShowGuanZhi = !1); + else if (e.type == mouse.MouseEvent.MOUSE_OVER) { + (this.isShowGuanZhi = !0), (this.filters = t.FilterUtil.WHITE()); + var i = t.NWRFmB.ins().getPayer; + this.isDead || (this.isMyPet && 5 != i.propSet.getPKtype()) || (t.EhSWiR.m_Move_Char = this), + this.parent && (this.isCharRole || this.isPet ? (this._nameTxt.visible = !t.GameMap.aaCannotSeeName) : (this._nameTxt.visible = !0)); + } + }), + (i.prototype.updateNameText = function (e) { + this.propSet.setProperty(t.nRDo.ACTOR_NAME, e), this.setCharName(e), (this.charName = e), this._nameTxt && !this._nameTxt.parent && t.mAYZL.gamescene.map.addNameLabel(this._nameTxt); + }), + (i.prototype.updateXY = function (e, i) { + (this.dir = t.MathUtils.limitInteger(0, 7)), this.syncSetCurrentXY(e, i), this.advanceTime(egret.getTimer()); + }), + Object.defineProperty(i.prototype, "isCharRole", { + get: function () { + return !1; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isDummyCharRole", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setIsVisible = function (i) { + if ((!this.parent && i && this.ZbzdY && (this.ZbzdY = !1), i != this.ZbzdY)) + if ((this.updateNameType(), (this.ZbzdY = i), this.ZbzdY)) e.prototype.initialize.call(this), this.updateNameType(), t.mAYZL.gamescene.map.addEntity(this), (this.visible = !0); + else { + (this.visible = !1), t.lEYZI.Naoc(this); + var n = t.NWRFmB.ins().getPayer; + this.recog == n.lockTarget && t.Nzfh.ins().postUpdateTarget(0); + } + }), + i + ); + })(t.hNqkna); + (t.CharMakeDummy = e), __reflect(e.prototype, "app.CharMakeDummy"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.getFbTab = function () { + var e = [], + i = t.VlaoF.ActivityAscriptionConf; + for (var n in i) (i[n].closelimit && t.mAYZL.ins().isCheckClose(i[n].closelimit)) || e.push(i[n]); + return e; + }), + (i.prototype.getTabInfo = function (t) {}), + i + ); + })(t.DlUenA); + (t.ActivityCopiesMgr = e), __reflect(e.prototype, "app.ActivityCopiesMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._nameTxt = null), + (i.touchEnabled = !1), + (i._body = t.ObjectPool.pop("app.MovieClip")), + i.addChild(i._body), + (i._nameTxt = t.mAYZL.gamescene.map.getCharNameLable()), + (i._nameTxt.textColor = 2682369), + i + ); + } + return ( + __extends(i, e), + (i.prototype.onBeginClick = function (t) { + t.stopPropagation(); + }), + (i.prototype.onEndClick = function (e) { + e.stopPropagation(), t.mAYZL.ins().ZbzdY(t.NpcView) && t.mAYZL.ins().close(t.NpcView), t.mAYZL.ins().open(t.NpcView, this.recog, this.propSet); + }), + (i.prototype.mouseMove = function (e) { + e.type == mouse.MouseEvent.MOUSE_OUT ? (this._body.filters = null) : e.type == mouse.MouseEvent.MOUSE_OVER && (this._body.filters = t.FilterUtil.WHITE()); + }), + Object.defineProperty(i.prototype, "isNpc", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setPropertySet = function (e, i, n) { + this.propSet = n; + var r = t.VlaoF.Npc[this.propSet.getACTOR_ID()], + scale = 1.25, + npcID = 0; + if (1 == Main.vZzwB.npcStyle) { + if (!isNaN(r.modelid)) { + npcID = r.modelid; + } else { + if (r.modelid[1]) { + npcID = r.modelid[1][0]; + if (r.modelid[1][1]) { + scale = r.modelid[1][1]; + } + } else { + npcID = r.modelid[0]; + } + } + } + (this._body.touchEnabled = !0), + KdbLz.qOtrbE.iFbP + ? (this._body.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onEndClick, this), this._body.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onBeginClick, this)) + : (this._body.addEventListener(mouse.MouseEvent.LEFT_DOWN, this.onEndClick, this), + this._body.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this._body.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + (this._body.scaleX = this._body.scaleY = scale), + (this.x = t.GameMap.grip2Point(n.getX())), + (this.y = t.GameMap.grip2Point(n.getY())), + (this.recog = e), + t.mAYZL.gamescene.map.addNameLabel(this._nameTxt), + (this._nameTxt.text = i), + (this._nameTxt.x = this.x - (this._nameTxt.textWidth / 2) * 0.4), + (this._nameTxt.y = this.y - 40), + this.loadBody(npcID), + this.updateTitle(); + var s = t.VrAZQ.ins().getMainTaskInfoData(); + if (s) { + var a = t.VlaoF.TaskDisplayConfig[s.taskID][s.taskState]; + a && a.npcid == this.propSet.getACTOR_ID() && this.updateTask(a.mark); + } + void 0 != r.npcEff && "" != r.npcEff + ? (this._addMC || ((this._addMC = t.ObjectPool.pop("app.MovieClip")), (this._addMC.blendMode = egret.BlendMode.ADD), this.addChild(this._addMC)), + this._addMC.playFile(ZkSzi.RES_DIR_NPC + r.npcEff, -1), + (this._addMC.alpha = r.nAlpha ? r.nAlpha / 100 : 1)) + : this._addMC && (this._addMC.destroy(), (this._addMC = null)); + }), + (i.prototype.loadBody = function (id) { + this._body.stop(), this._body.addEventListener(egret.Event.CHANGE, this.playBody, this); + this._body.playFile(ZkSzi.RES_DIR_NPC + "npc" + (id || this.propSet.getBody()), -1, null, !1); + }), + (i.prototype.playBody = function (t) { + var e = 1; + this._body.gotoAndPlay(e, -1); + }), + Object.defineProperty(i.prototype, "weight", { + get: function () { + return this.y + 2; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.updateTitle = function () { + var e = t.VlaoF.Npc[this.propSet.getACTOR_ID()]; + if (e) { + if (e.scale) { + var i = e.scale ? e.scale / 100 : 1; + this._body.scaleX = this._body.scaleY = 1.25 * i; + } + e.Npctitle + ? (this._titleImage ? t.mAYZL.gamescene.map.addTitleImage(this._titleImage) : (this._titleImage = t.mAYZL.gamescene.map.getNpcTitleImage()), + (this._titleImage.anchorOffsetX = 0), + (this._titleImage.x = this.x + e.Npctitle.x), + (this._titleImage.y = this.y + e.Npctitle.y), + (this._titleImage.source = e.Npctitle.source), + (this._titleImage.visible = !0)) + : this._titleImage && ((this._titleImage.source = ""), t.lEYZI.Naoc(this._titleImage), (this._titleImage.visible = !1)), + e.Npctitle2 + ? (this._titleImage2 ? t.mAYZL.gamescene.map.addTitleImage(this._titleImage2) : (this._titleImage2 = t.mAYZL.gamescene.map.getNpcTitleImage()), + (this._titleImage2.anchorOffsetX = 0), + (this._titleImage2.x = this.x + e.Npctitle2.x), + (this._titleImage2.y = this.y + e.Npctitle2.y), + (this._titleImage2.source = e.Npctitle2.source), + (this._titleImage2.visible = !0)) + : this._titleImage2 && ((this._titleImage2.source = ""), t.lEYZI.Naoc(this._titleImage2), (this._titleImage2.visible = !1)), + e.Npctitle3 + ? (this._titleImage3 ? t.mAYZL.gamescene.map.addTitleImage(this._titleImage3) : (this._titleImage3 = t.mAYZL.gamescene.map.getNpcTitleImage()), + (this._titleImage3.anchorOffsetX = 0), + (this._titleImage3.x = this.x + e.Npctitle3.x), + (this._titleImage3.y = this.y + e.Npctitle3.y), + (this._titleImage3.source = e.Npctitle3.source), + (this._titleImage3.visible = !0)) + : this._titleImage3 && ((this._titleImage3.source = ""), t.lEYZI.Naoc(this._titleImage3), (this._titleImage3.visible = !1)); + } else + this._titleImage && ((this._titleImage.source = ""), t.lEYZI.Naoc(this._titleImage), (this._titleImage.visible = !1)), + this._titleImage2 && ((this._titleImage2.source = ""), t.lEYZI.Naoc(this._titleImage2), (this._titleImage2.visible = !1)), + this._titleImage3 && ((this._titleImage3.source = ""), t.lEYZI.Naoc(this._titleImage3), (this._titleImage3.visible = !1)), + this.taskImage && ((this.taskImage.visible = !1), t.lEYZI.Naoc(this.taskImage)); + }), + (i.prototype.updateTask = function (e) { + e + ? (this.taskImage ? t.mAYZL.gamescene.map.addTitleImage(this.taskImage) : (this.taskImage = t.mAYZL.gamescene.map.getNpcTitleImage()), + (this.taskImage.source = "rw_sign_" + e), + (this.taskImage.anchorOffsetX = 22), + (this.taskImage.x = this.x), + (this.taskImage.y = this.y - 170), + (this.taskImage.visible = !0)) + : this.removeTask(); + }), + (i.prototype.removeTask = function () { + this.taskImage && ((this.taskImage.visible = !1), t.lEYZI.Naoc(this.taskImage)); + }), + (i.prototype.destroy = function () { + KdbLz.qOtrbE.iFbP + ? (this._body.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onEndClick, this), this._body.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onBeginClick, this)) + : (this._body.removeEventListener(mouse.MouseEvent.LEFT_DOWN, this.onEndClick, this), + this._body.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this._body.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + this._body.stop(), + this._body.dispose(), + this._addMC && (this._addMC.destroy(), (this._addMC = null)), + (this._nameTxt.text = ""), + this._titleImage && ((this._titleImage.source = ""), t.lEYZI.Naoc(this._titleImage), (this._titleImage.visible = !1)), + this._titleImage2 && ((this._titleImage2.source = ""), t.lEYZI.Naoc(this._titleImage2), (this._titleImage2.visible = !1)), + this._titleImage3 && ((this._titleImage3.source = ""), t.lEYZI.Naoc(this._titleImage3), (this._titleImage3.visible = !1)), + this.taskImage && ((this.taskImage.source = ""), (this.taskImage.visible = !1), t.lEYZI.Naoc(this.taskImage)), + t.lEYZI.Naoc(this._nameTxt), + t.lEYZI.Naoc(this), + t.ObjectPool.push(this); + }), + i + ); + })(eui.Group); + (t.sxkGBT = e), __reflect(e.prototype, "app.sxkGBT"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initInfo = function (t, i, n) { + e.prototype.initInfo.call(this, t, i, n); + }), + Object.defineProperty(i.prototype, "isMyPet", { + get: function () { + return this.propSet.getHandler() == t.NWRFmB.ins().getPayer.recog; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isPet", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setCharName = function (t) { + this._nameTxt.text = t + "(" + this.propSet.getMasterName() + ")"; + }), + i + ); + })(t.eGgn); + (t.CharPet = e), __reflect(e.prototype, "app.CharPet"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.itemList.itemRenderer = t.ItemBase), + (this.itemScroller.horizontalScrollBar.autoVisibility = !1), + (this.itemScroller.horizontalScrollBar.visible = !1), + this.vKruVZ(this.enterFb, this.onClick); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.VlaoF["Activity" + this.data.actiType + "Config"]; + if (e) { + var i = e[this.data.actiID]; + if (i) { + if ( + ((this.systemBg.source = i.bg + "_png"), + (this.title.source = i.titleIcon), + (this.systemJieShao.textFlow = t.hETx.qYVI(i.describe)), + (this.enterFb.label = i.rewardBtn), + i.ruleID ? ((this.rule.visible = !0), (this.rule.ruleId = i.ruleID)) : (this.rule.visible = !1), + (this.redPoint.visible = !1), + i.buttoncolor) + ) { + var n = t.TQkyOx.ins().getActivityInfo(this.data.actiID); + n && n.redDot && ((this.redPoint.visible = !0), this.redPoint.setRedImg(i.buttoncolor)); + } + this.itemList.dataProvider = new eui.ArrayCollection(i.rewards); + } + } + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.enterFb.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.enterFb: + t.TQkyOx.ins().enterActivity(this.data.actiID); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityCopiesItem1 = e), __reflect(e.prototype, "app.ActivityCopiesItem1"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._body = t.ObjectPool.pop("app.MovieClip")), + i.addChild(i._body), + (i._nameTxt = new eui.Label()), + (i._nameTxt.width = 140), + (i._nameTxt.anchorOffsetX = 70), + (i._nameTxt.y = -60), + (i._nameTxt.size = 14), + (i._nameTxt.textAlign = "center"), + (i._nameTxt.textColor = 2682369), + (i._nameTxt.stroke = 1), + (i._nameTxt.strokeColor = 0), + i.addChild(i._nameTxt), + (i.touchEnabled = !0), + (i.touchChildren = !1), + i + ); + } + return ( + __extends(i, e), + (i.prototype.setPropertySet = function (t, e, i, n) { + (this.teleport = e), (this.x = i), (this.y = n), (this._nameTxt.text = t), this.loadBody(); + }), + (i.prototype.loadBody = function () { + this._body.stop(), this._body.addEventListener(egret.Event.CHANGE, this.playBody, this), this._body.playFile(ZkSzi.RES_DIR_TELEPORT + "teleport_" + this.teleport.modelid, -1, null, !1); + }), + (i.prototype.playBody = function (t) { + var e = 1; + this._body.gotoAndPlay(e, -1); + }), + Object.defineProperty(i.prototype, "weight", { + get: function () { + return this.y; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () { + this._body.stop(), t.ObjectPool.push(this); + }), + i + ); + })(eui.Group); + (t.CharTeleport = e), __reflect(e.prototype, "app.CharTeleport"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.nameTxt = null), + (i.touchChildren = !1), + (i.nameTxt = t.mAYZL.gamescene.map.getDropLable()), + (i.iconImage = new eui.Image()), + (i.iconImage.width = i.iconImage.height = 50), + i.addChild(i.iconImage), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "nX", { + get: function () { + return this._nX; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "nY", { + get: function () { + return this._nY; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "packetId", { + get: function () { + return this._packetId; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.initInfo = function (e) { + t.mAYZL.gamescene.map.addDropLable(this.nameTxt), + (this.packId = e.readUnsignedInt()), + (this._packetId = e.readUnsignedShort()), + (this._nX = e.readUnsignedShort()), + (this._nY = e.readUnsignedShort()); + var i = e.readUnsignedInt(); + i ? (this.timeRemaining = 1e3 * i + egret.getTimer()) : (this.timeRemaining = 0), (this.isBest = e.readByte()); + var n = e.readUnsignedShort(); + if ( + ((this.x = t.GameMap.grip2Point(this._nX) - 25), + (this.y = t.GameMap.grip2Point(this._nY) - 25), + (this.nameTxt.x = this.x - 57), + (this.nameTxt.y = this.y - 10), + (this.posKey = this._nX * t.GameMap.ROW + this._nY), + (this.nameTxt.textColor = 10602993), + 65534 == this._packetId) + ) + (this.nameTxt.text = t.CrmPU.language_CURRENCY_NAME_1), (this.iconImage.source = t.ZAJw.getCoinIcon(n) + ""); + else if (65535 == this._packetId) (this.nameTxt.text = t.CrmPU.language_CURRENCY_NAME_2), (this.iconImage.source = t.ZAJw.getYBIcon(n) + ""); + else { + var s = t.VlaoF.StdItems[this._packetId]; + if (s) { + if (s.showQuality > 0) { + var a = t.ClwSVR.GOODS_COLOR[s.showQuality]; + (a = a ? a : t.ClwSVR.GOODS_COLOR[0]), (this.nameTxt.textColor = a); + } + (this.iconImage.source = s.icon + ""), + this.isBest ? (this.nameTxt.text = s.name + "[极]") : (this.nameTxt.text = s.name), + s.dropEffect && t.mAYZL.gamescene.map.addDropEff(this.packId, s.dropEffect, this.x, this.y); + } + } + this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), this.updateNameColor(); + var r = egret.Tween.get(this.iconImage); + (this.iconImage.y = 50), + r + .to( + { + y: 0, + }, + 170 + ) + .to( + { + y: 30, + }, + 100 + ) + .to( + { + y: 0, + }, + 60 + ) + .to( + { + y: 10, + }, + 60 + ) + .to( + { + y: 10, + }, + 60 + ) + .call(function () { + egret.Tween.removeTweens(this); + }); + }), + (i.prototype.getIcon = function () { + return this.iconImage.source; + }), + (i.prototype.updateNameColor = function () { + if (this.isBest); + else if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Mark)) this.nameTxt.textColor = 15991041; + else { + var e = t.XwoNAr.ins().getDataById(this._packetId); + e && e.isSelected2 && (this.nameTxt.textColor = 15991041); + } + }), + (i.prototype.mouseMove = function (e) { + e.type == mouse.MouseEvent.MOUSE_OUT ? t.uMEZy.ins().closeTips() : e.type == mouse.MouseEvent.MOUSE_OVER && this.showDrop(); + }), + (i.prototype.showDrop = function () { + var e = t.NWRFmB.ins().getKeyDropEntity(this.posKey); + if (e) { + for (var i = "", n = void 0, s = 0; s < e.length; s++) { + var a = t.NWRFmB.ins().getDropItem(e[s]); + if (a) + if (65534 == a._packetId) (i += "\n" + t.CrmPU.language_CURRENCY_NAME_1), (n = t.CrmPU.language_CURRENCY_NAME_1); + else if (65535 == a._packetId) i += "\n" + t.CrmPU.language_CURRENCY_NAME_2; + else { + var r = t.VlaoF.StdItems[a._packetId]; + r && (i += "\n" + r.name); + } + } + if ("" == i) return; + i = i.replace("\n", ""); + var o = this.localToGlobal(); + t.uMEZy.ins().LJzNt(this, t.TipsType.TIPS_DROP, i, { + x: o.x + 20, + y: o.y - 25, + }), + (o = null); + } + }), + Object.defineProperty(i.prototype, "weight", { + get: function () { + return 1; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () { + egret.Tween.removeTweens(this.iconImage), t.mAYZL.gamescene.map.removeDropEff(this.packId), (this.nameTxt.textColor = 10602993); + var e = t.hADk.ins().getPickUpById(this.packId); + e && + t.hADk.ins().post_pushImage({ + source: this.getIcon(), + point: this.localToGlobal(), + }), + t.NWRFmB.ins().delKeyDrop(this.posKey, this.packId), + (this.posKey = null), + (this._packetId = null), + (this.packId = null), + this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + t.lEYZI.Naoc(this.nameTxt), + t.lEYZI.Naoc(this), + t.ObjectPool.push(this); + }), + i + ); + })(eui.Group); + (t.DropEntity = e), __reflect(e.prototype, "app.DropEntity"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.no = 0)] = "no"), + (t[(t.hard = 1)] = "hard"), + (t[(t.lightblue = 2)] = "lightblue"), + (t[(t.poison = 3)] = "poison"), + (t[(t.invisible = 4)] = "invisible"), + (t[(t.shield = 5)] = "shield"), + (t[(t.fixed = 6)] = "fixed"), + (t[(t.disabled = 7)] = "disabled"); + })((e = t.EntityFilter || (t.EntityFilter = {}))); + var i = (function () { + function e() {} + return ( + (e.buffFilter = { + 0: null, + 1: t.FilterUtil.ARRAY_GRAY_FILTER, + 2: t.FilterUtil.ARRAY_LIGHTBLUE_FILTER, + 3: t.FilterUtil.ARRAY_GREEN_FILTER, + 4: null, + 5: null, + 6: t.FilterUtil.ARRAY_DARK_BLUE_FILTER, + }), + e + ); + })(); + (t.EntityFilterUtil = i), __reflect(i.prototype, "app.EntityFilterUtil"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.entityList = {}), + (t.petList = {}), + (t.recog = 0), + (t.entityNpcList = {}), + (t.entitySpecialList = {}), + (t.appearEffObj = {}), + (t._dropList = {}), + (t.dropKeyObj = {}), + (t.gridNpcObj = {}), + (t.gridCharObj = {}), + (t.teleportObj = {}), + (t.dummyRecogArray = []), + (t._dummyCharList = {}), + (t._isDuRange = !1), + (t._makeDummyCharList = []), + (t._isShowMakeDummy = !1), + t + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.yNovAn = function (e, i, n) { + this.plyaerRole || (this.plyaerRole = new t.PlayerRole()), + this.plyaerRole.destruct(), + this.plyaerRole.initInfo(e, i, n), + t.NGcJ.ins().s_5_1(), + t.caJqU.ins().sendQueryEquip(), + t.ThgMu.ins().send_8_2(), + t.ThgMu.ins().send_8_12(), + t.bfhrJ.ins().getDeclareWarList(), + t.VrAZQ.ins().send_6_1(), + t.UyfaJ.ins().send_49_1(), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.Equip), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.Special), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.RingJob), + t.rTRv.ins().send_51_1(), + t.SoldierSoulMgr.ins().send_58_1(1), + KdbLz.qOtrbE.iFbP ? t.XwoNAr.ins().send_17_11() : t.XwoNAr.ins().send_17_1(), + t.StrengthenMgr.ins().sendStrengthenInit(2), + t.edHC.ins().getPopViewData(), + t.Qskf.ins().onSendMyTeamList(), + t.GhostMgr.ins().send_31_1(), + t.edHC.ins().send_26_68(), + t.bXKx.ins().initPlatformFuli(); + }), + Object.defineProperty(i.prototype, "getPayer", { + get: function () { + return this.plyaerRole; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.nkJT = function () { + return this.plyaerRole ? this.plyaerRole : null; + }), + (i.prototype.YUwhM = function () { + return this.entityList; + }), + (i.prototype.NWmXYp = function (e, i) { + t.mAYZL.gamescene.map.mpaGrey(!1), + t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog), + this.plyaerRole.reset(), + this.plyaerRole.propSet.setProperty(t.nRDo.AP_STATE, 0), + this.plyaerRole.resurgenceChar(), + (this.entityList[this.plyaerRole.recog] = this.plyaerRole), + this.plyaerRole.syncSetCurrentXY(e, i), + t.Nzfh.ins().postPlayerChange(), + t.mAYZL.gamescene.map.addEntity(this.plyaerRole), + this.appearEffObj[this.plyaerRole.recog] && + (t.SkillEffPlayer.PlayHitEff( + this.appearEffObj[this.plyaerRole.recog], + { + x: this.plyaerRole.currentX, + y: this.plyaerRole.currentY, + }, + 0 + ), + delete this.appearEffObj[this.plyaerRole.recog]); + }), + (i.prototype.dCGQ = function () { + for (var e in this.entityList) +e != this.plyaerRole.recog && this.entityList[+e].destruct(); + for (var e in this.entityNpcList) this.entityNpcList[+e].destroy(); + for (var e in this.entitySpecialList) this.entitySpecialList[+e].destroy(); + for (var e in this._dropList) this._dropList[+e].destroy(); + t.ObjectPool.wipe(this.gridCharObj), + t.ObjectPool.wipe(this.entityList), + t.ObjectPool.wipe(this.gridNpcObj), + t.ObjectPool.wipe(this.entityNpcList), + t.ObjectPool.wipe(this.entitySpecialList), + t.ObjectPool.wipe(this._dropList), + t.ObjectPool.wipe(this.dropKeyObj), + t.ObjectPool.wipe(this.teleportObj), + t.qTVCL.ins().clearBlackRecogAll(), + t.qTVCL.ins().createDestinationXY(); + }), + (i.prototype.addCharRole = function (e, n, s) { + var a = i.ins().getCharRole(e); + a && i.ins().removeCharRole(a); + var r = t.ObjectPool.pop("app.hNqkna"); + return ( + r.initInfo(e, n, s), + r.initialize(), + r.reset(), + s.getState() & t.ActorState.DEATH && + ((r.CharVisible = !1), + r.onDead(function () { + r.CharVisible = !0; + })), + (this.entityList[r.recog] = r), + t.mAYZL.gamescene.map.addEntity(r), + r + ); + }), + (i.prototype.removeCharRole = function (e) { + e && (t.Nzfh.ins().post_remDot(e.recog), t.EhSWiR.ClearChar(e.recog), this.delGridChar(e.recog), delete this.entityList[e.recog], e.destruct()); + }), + (i.prototype.addCharNpc = function (e, i, n) { + var s = t.ObjectPool.pop("app.sxkGBT"); + s.setPropertySet(e, i, n), (this.entityNpcList[s.recog] = s), t.mAYZL.gamescene.map.addEntity(s), this.addNpcGrid(e, n.getX(), n.getY()); + }), + (i.prototype.getNpcList = function () { + return this.entityNpcList; + }), + (i.prototype.addEntitySp = function (e, i, n, s) { + var a = t.ObjectPool.pop("app.FireWall"); + a.initInfo(e, i, n, s), t.mAYZL.gamescene.map.addTelepor(a), (this.entitySpecialList[e] = a); + }), + (i.prototype.delEntitySp = function (t) { + delete this.entitySpecialList[t]; + }), + (i.prototype.getEntitySp = function (t) { + return this.entitySpecialList[t]; + }), + (i.prototype.addCharMonster = function (e, i, n) { + var s = n.getRace() == t.ActorRace.enPet ? t.ObjectPool.pop("app.CharPet") : t.ObjectPool.pop("app.eGgn"); + return ( + n.getRace() == t.ActorRace.enPet && n.getActorId() == this.getPayer.recog && this.getPayer.addPet(e), + s.initInfo(e, i, n), + s.initialize(), + s.reset(), + n.getState() & t.ActorState.DEATH && + ((s.visible = !1), + s.onDead(function () { + s.visible = !0; + })), + (this.entityList[s.recog] = s), + t.mAYZL.gamescene.map.addEntity(s), + s + ); + }), + (i.prototype.getCharRole = function (t) { + return this.entityList[t]; + }), + (i.prototype.getCharNpc = function (t) { + return this.entityNpcList[t]; + }), + (i.prototype.updateTaskNpc = function (t, e) { + var i; + for (var n in this.entityNpcList) (i = this.entityNpcList[n]), i.propSet.getACTOR_ID() == t ? i.updateTask(e) : i.removeTask(); + }), + (i.prototype.getFireWall = function (t) { + return this.entitySpecialList[t]; + }), + (i.prototype.delCharNpc = function (e) { + t.Nzfh.ins().post_remDot(e), delete this.entityNpcList[e]; + }), + (i.prototype.addAppearEff = function (t, e) { + this.appearEffObj[t] = e; + }), + (i.prototype.addDropItem = function (e) { + var i = t.ObjectPool.pop("app.DropEntity"); + i.initInfo(e), this.addKeyDrop(i.posKey, i.packId), t.mAYZL.gamescene.map.addDropEntity(i), (this._dropList[i.packId] = i); + }), + Object.defineProperty(i.prototype, "dropList", { + get: function () { + return this._dropList; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.delDropItem = function (t) { + this._dropList[t] && (this._dropList[t].destroy(), delete this._dropList[t]); + }), + (i.prototype.getDropItem = function (t) { + return this._dropList[t]; + }), + (i.prototype.addKeyDrop = function (t, e) { + this.dropKeyObj[t] ? this.dropKeyObj[t].push(e) : (this.dropKeyObj[t] = [e]); + }), + (i.prototype.delKeyDrop = function (t, e) { + if (this.dropKeyObj[t]) { + var i = this.dropKeyObj[t].indexOf(e); + i > -1 && this.dropKeyObj[t].splice(i, 1); + } + }), + (i.prototype.getKeyDropEntity = function (t) { + return this.dropKeyObj[t]; + }), + (i.prototype.get_X_Y_CharRole = function (t, e) { + var i = this.getGridChar(t, e); + if (i && i != this.recog) { + var n = this.getCharRole(i); + if (n && !n.isDead) return n; + } + return null; + }), + (i.prototype.addNpcGrid = function (e, i, n) { + this.gridNpcObj[i * t.GameMap.ROW + n] = e; + }), + (i.prototype.getXYGridNpc = function (e, i) { + return this.gridNpcObj[e * t.GameMap.ROW + i]; + }), + (i.prototype.setGridChar = function (e, i, n, s, a) { + if (i != s || n != a) { + var r = i * t.GameMap.ROW + n, + o = this.gridCharObj[r]; + o && (delete o[e], 0 == Object.keys(o).length && delete this.gridCharObj[r]), (r = s * t.GameMap.ROW + a), (o = this.gridCharObj[r]), o || ((o = {}), (this.gridCharObj[r] = o)), (o[e] = e); + } + }), + (i.prototype.getGridChar = function (e, i) { + var n = e * t.GameMap.ROW + i, + s = this.gridCharObj[n]; + if (s) for (var a in s) return +a; + return null; + }), + (i.prototype.getTeleport = function (e, i) { + return this.teleportObj[e * t.GameMap.ROW + i]; + }), + (i.prototype.addTeleport = function (e, i) { + this.teleportObj[e * t.GameMap.ROW + i] = !0; + }), + (i.prototype.delGridChar = function (t) { + for (var e in this.gridCharObj) + if (this.gridCharObj[e] && this.gridCharObj[e][t] == t) { + delete this.gridCharObj[e][t]; + break; + } + }), + (i.prototype.getBeginFrame = function (e, i) { + switch (e) { + case t.EntityAction.STAND: + return 4 * i; + case t.EntityAction.WALK: + return 32 + 6 * i; + case t.EntityAction.RUN: + return 80 + 6 * i; + case t.EntityAction.STAND1: + return 128 + 1 * i; + case t.EntityAction.ATTACK: + return 136 + 6 * i; + case t.EntityAction.CAST: + return 296 + 6 * i; + case t.EntityAction.HIT: + return 360 + 3 * i; + case t.EntityAction.DIE: + return 384 + 4 * i; + } + return 0; + }), + (i.prototype.checkWalkable = function (e, i) { + var n = this.getGridChar(e, i); + if (n) { + var s = this.getCharRole(n); + if (!s) return 0; + if (s.propSet.getRace() == t.ActorRace.Human) { + if (t.GameMap.isThroughHuman) return 0; + } else if (t.GameMap.isThroughMonster) return 0; + return n; + } + return (n = this.getXYGridNpc(e, i)), n ? n : 0; + }), + (i.prototype.FindChatNearPlayer = function (t) { + this.entityList[t.playerId] && this.entityList[t.playerId].setNearChat(t.senderName + ":" + t.message); + }), + (i.prototype.updateMonsterName = function () { + var e = this.YUwhM(); + for (var i in e) e[i].postCharMessage(t.Qmuk.UPDATA_NAME_TYPE, 0, 0, 0); + for (var n in this._dummyCharList) this._dummyCharList[+n] && this._dummyCharList[+n].updateNameType(); + for (var n in this._makeDummyCharList) this._makeDummyCharList[+n] && this._makeDummyCharList[+n].updateNameType(); + }), + (i.prototype.updateRolePet = function () { + var t = this.YUwhM(); + for (var e in t) t[e].isCharRole && t[e].updatePet(); + }), + (i.prototype.updateTitle = function () { + var e = this.YUwhM(); + for (var i in e) { + e[i].isCharRole && e[i].postCharMessage(t.Qmuk.TITLE_UPDATE, 0, 0, 0); + } + for (var n in this._dummyCharList) this._dummyCharList[+n] && this._dummyCharList[+n].updateTitle(); + for (var n in this._makeDummyCharList) this._makeDummyCharList[+n] && this._makeDummyCharList[+n].updateTitle(); + }), + (i.prototype.dummyCharList = function () { + return this._dummyCharList; + }), + (i.prototype.getDummy = function () { + if ((this.checkDeummyRange(), this.resetMakeDummy(), !t.ubnV.ihUJ && this._isDuRange && this.dummyRecogArray.length)) + for (var e = 0; e < this.dummyRecogArray.length; e++) + if (!this._dummyCharList[this.dummyRecogArray[e]]) { + t.edHC.ins().send_26_94(this.dummyRecogArray[e]); + break; + } + }), + Object.defineProperty(i.prototype, "isDuRange", { + get: function () { + return this._isDuRange; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.checkDeummyRange = function () { + var e = !1; + if (3 == t.GameMap.mapID && !t.ubnV.ihUJ) { + var n = i.ins().getPayer, + s = n.propSet.getX(), + a = n.propSet.getY(); + s > 200 && 234 > s && a > 135 && 163 > a && (e = !0); + } + if (e != this._isDuRange && ((this._isDuRange = e), !e)) for (var r in this._dummyCharList) this._dummyCharList[+r] && this._dummyCharList[+r].setIsVisible(!1); + }), + (i.prototype.isVisibleDummy = function (e) { + return !t.ubnV.ihUJ && this._isDuRange && -1 != this.dummyRecogArray.indexOf(e); + }), + (i.prototype.addDummyRid = function (t) { + -1 == this.dummyRecogArray.indexOf(t) && this.dummyRecogArray.push(t); + }), + (i.prototype.getDummyChar = function (t) { + return this._dummyCharList[t] || this._makeDummyCharList[t - 100]; + }), + (i.prototype.delDummyRid = function (t) { + var e = this.dummyRecogArray.indexOf(t); + -1 != e && (this.dummyRecogArray.splice(e, 1), this._dummyCharList[t] && this._dummyCharList[t].setIsVisible(!1)); + }), + (i.prototype.clearDummy = function () { + this.dummyRecogArray.length = 0; + for (var t in this._dummyCharList) this._dummyCharList && this._dummyCharList[+t].setIsVisible(!1); + }), + (i.prototype.addDummyPropertySet = function (e) { + if (!this._dummyCharList[e.getACTOR_ID()]) { + var i = t.ObjectPool.pop("app.CharDummy"); + i.initInfo(e.getACTOR_ID(), e.getName(), e), i.initialize(), (this._dummyCharList[e.getACTOR_ID()] = i); + } + }), + Object.defineProperty(i.prototype, "isShowMakeDummy", { + get: function () { + return this._isShowMakeDummy; + }, + set: function (t) { + this._isShowMakeDummy = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.resetMakeDummy = function (e) { + if ((void 0 === e && (e = !1), !t.ubnV.ihUJ)) { + e && (this._isShowMakeDummy = !1); + var n = void 0, + s = i.ins().getPayer, + a = s.propSet.getX(), + r = s.propSet.getY(); + for (var o in t.VlaoF.DummyBuildConfig) { + n = t.VlaoF.DummyBuildConfig[+o]; + var l = n.num; + if (l && n.map == t.GameMap.mapID && a > n.region[0] - 10 && a < n.region[2] + 10 && r > n.region[1] - 10 && r < n.region[5] + 10 && !t.mAYZL.ins().isCheckOpen(n.hideask)) { + if (this._isShowMakeDummy) return; + l < this._makeDummyCharList.length && (l = this._makeDummyCharList.length); + for (var h = 0; l > h; h++) + if (h < n.num) { + var p = t.MathUtils.limitInteger(n.dummy[0], n.dummy[1]), + u = t.VlaoF.DummyPlayerConfig[p]; + if (!u) continue; + var c = t.MathUtils.limitInteger(n.region[0], n.region[2]), + g = t.MathUtils.limitInteger(n.region[1], n.region[5]), + d = t.ObjectPool.pop("app.PropertySet"); + d.setProperty(t.nRDo.AP_X, c), + d.setProperty(t.nRDo.AP_Y, g), + d.setProperty(t.nRDo.AP_DIR, t.MathUtils.limitInteger(0, 7)), + d.setProperty(t.nRDo.ACTOR_RACE, t.ActorRace.dummy), + d.setProperty(t.nRDo.ACTOR_NAME, ""), + d.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + d.setProperty(t.nRDo.AP_ACTOR_ID, h + 100), + d.setProperty(t.nRDo.AP_BODY_ID, u.info.apBodyId), + d.setProperty(t.nRDo.AP_HP, u.info.apHp), + d.setProperty(t.nRDo.AP_MP, u.info.apMp), + d.setProperty(t.nRDo.AP_MAX_HP, u.info.apMaxHp), + d.setProperty(t.nRDo.AP_MAX_MP, u.info.apMaxMp), + d.setProperty(t.nRDo.AP_SEX, u.info.apSex), + d.setProperty(t.nRDo.AP_JOB, u.info.apJob), + d.setProperty(t.nRDo.AP_LEVEL, u.info.apLevel), + d.setProperty(t.nRDo.AP_ACTOR_CIRCLE, u.info.apActorCircle), + d.setProperty(t.nRDo.AP_WEAPON, u.info.apWeapon), + d.setProperty(t.nRDo.ACTOR_WEAPON_DISPLAY, u.info.actorWeaponDisplay), + d.setProperty(t.nRDo.BODY_SUIT, u.info.bodySuit), + d.setProperty(t.nRDo.AP_FACE_ID, u.info.apFaceId), + d.setProperty(t.nRDo.AP_ACTOR_HEAD_TITLE, u.info.apActorHeadTitle), + d.setProperty(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE, u.info.propActorSoldiersoulappearance), + d.setProperty(t.nRDo.ACTOR_FASHION_DISPLAY, u.info.actorFashionDisplay), + d.setProperty(t.nRDo.PROP_ACTOR_WEAPON_ID, u.info.propActorWeaponId), + d.setProperty(t.nRDo.AP_ACTOR_VIP_POINT, u.info.apActorVipPoint), + d.setProperty(t.nRDo.OFFICIAL_POSITION, u.info.officialPosition), + d.setProperty(t.nRDo.AP_PICKUPPET, u.info.apPickuppet), + d.setProperty(t.nRDo.PROP_ACTOR_CURCUSTOMTITLE, u.info.propActorCurcustomtitle), + this._makeDummyCharList[h] || this._makeDummyCharList.push(t.ObjectPool.pop("app.CharMakeDummy")), + this._makeDummyCharList[h].initInfo(d.getACTOR_ID(), d.getName(), d), + this._makeDummyCharList[h].initialize(), + this._makeDummyCharList[h].updateXY(c, g), + this._makeDummyCharList[h].updateNameText(this.getMakeDummyName()), + this._makeDummyCharList[h].setIsVisible(!0); + } else this._makeDummyCharList[h] && this._makeDummyCharList[h].setIsVisible(!1); + return void (this._isShowMakeDummy = !0); + } + } + } + if (this._isShowMakeDummy || e) { + for (var h = 0; h < this._makeDummyCharList.length; h++) this._makeDummyCharList[h].setIsVisible(!1); + this._isShowMakeDummy = !1; + } + }), + (i.prototype.getMakeDummyName = function () { + var e = t.VlaoF.DummyNameConfig[1].name, + i = t.VlaoF.DummyNameConfig[2].name; + return e[t.MathUtils.limitInteger(0, e.length - 1)] + i[t.MathUtils.limitInteger(0, i.length - 1)]; + }), + i + ); + })(t.BaseClass); + (t.NWRFmB = e), __reflect(e.prototype, "app.NWRFmB"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.initInfo = function (e, i, n, s) { + if (((this.x = t.GameMap.grip2Point(i)), (this.y = t.GameMap.grip2Point(n)), (this.recog = e), this.movieClip)) this.movieClip.playFile(ZkSzi.RES_DIR_SKILL + "hq_c0", -1, null, !1); + else { + this.effAry = []; + for (var a = 0; 1 > a; a++) (this.movieClip = t.ObjectPool.pop("app.MovieClip")), this.addChild(this.movieClip), this.movieClip.playFile(ZkSzi.RES_DIR_SKILL + "hq_c0", -1, null, !1); + } + this.movieClip.blendMode = egret.BlendMode.ADD; + }), + (i.prototype.destroy = function () { + this.movieClip.destroy(), (this.movieClip = null), t.lEYZI.Naoc(this), t.ObjectPool.push(this); + }), + i + ); + })(eui.Group); + (t.FireWall = e), __reflect(e.prototype, "app.FireWall"); +})(app || (app = {})); +var JobConst; +!(function (t) { + (t[(t.None = 0)] = "None"), (t[(t.ZhanShi = 1)] = "ZhanShi"), (t[(t.FaShi = 2)] = "FaShi"), (t[(t.DaoShi = 3)] = "DaoShi"); +})(JobConst || (JobConst = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.dir = 4), (i._hpBar.visible = !1), t.lEYZI.Naoc(i._hpBar), i; + } + return ( + __extends(i, e), + (i.prototype.loadFile = function (e, i, n) { + if (i && !(t.CharEffect.ACTION_ODER[n] && t.CharEffect.ACTION_ODER[n].indexOf(this._state) < 0)) { + var s = this.getResDir(n), + a = i + "_" + s + this._state; + (e.newFrameRate = 0), + (this._state != t.EntityAction.STAND || (n != CharMcOrder.BODYEFF && n != CharMcOrder.WEAPONEFF)) && + (this._state == t.EntityAction.HIT ? (e.newFrameRate = 10) : this._state == t.EntityAction.STAND ? (e.newFrameRate = 3) : (e.newFrameRate = 8)), + (e.m_gather = n == CharMcOrder.HAIR || n == CharMcOrder.WEAPONEFF || n == CharMcOrder.WEAPON || n == CharMcOrder.BODY || n == CharMcOrder.BODYEFF); + var r = this.propSet.getSuit(); + if (r) { + if (((this._body.y = 3), n == CharMcOrder.HAIR)) return; + e.playFileChar8(a, this.playCount(), e == this._body ? this.playComplete : null, !1); + } else (this._body.y = 0), e.playFileChar(a, this.playCount(), e == this._body ? this.playComplete : null, !1); + } + }), + (i.prototype.setWeaponFileName = function (t) { + t ? this.addMc(CharMcOrder.WEAPON, ZkSzi.RES_DIR_WEAPON + t) : this.removeMc(CharMcOrder.WEAPON); + }), + (i.prototype.addSpecialMC = function () { + t.lEYZI.Naoc(this._hpBar); + }), + (i.prototype.playRun = function () { + this.playAction(t.EntityAction.RUN); + }), + (i.prototype.playWalk = function () { + this.playAction(t.EntityAction.WALK); + }), + (i.prototype.playStand = function () { + this.playAction(t.EntityAction.STAND); + }), + (i.prototype.playAttack = function () { + this.playAction(t.EntityAction.ATTACK, this.playSTAND1.bind(this)); + }), + (i.prototype.playSTAND1 = function () { + this.playAction(t.EntityAction.STAND1, this.playAttack.bind(this)); + }), + (i.prototype.updateTitle = function () {}), + (i.prototype.updateCustomisedTitle = function () {}), + (i.prototype.updateRage = function () {}), + i + ); + })(t.hNqkna); + (t.ModelCharRole = e), __reflect(e.prototype, "app.ModelCharRole"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.propObj = {}), t; + } + return ( + __extends(i, e), + (i.prototype.readProperty = function (e, i) { + if (e == t.nRDo.NEXT_ACK_SKILLID) return (this.propObj[t.nRDo.ACK_SKILLID] = i.readUnsignedShort()), void (this.propObj[t.nRDo.ACK_SKILLLEVEL] = i.readUnsignedShort()); + if (e == t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE) + return (this.propObj[t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE] = i.readUnsignedShort()), void (this.propObj[t.nRDo.ACTOR_FASHION_DISPLAY] = i.readUnsignedShort()); + if (e == t.nRDo.AP_WEAPON) return (this.propObj[t.nRDo.AP_WEAPON] = i.readUnsignedShort()), void (this.propObj[t.nRDo.ACTOR_WEAPON_DISPLAY] = i.readUnsignedShort()); + var n, + s = this.getDataType(e); + switch (s) { + case t.PropertySet.DT_UNSIGNED_INT: + n = i.readUnsignedInt(); + break; + case t.PropertySet.DT_FLOAT: + n = i.readFloat(); + break; + case t.PropertySet.DT_DOUBLE: + n = i.readNumber(); + break; + default: + n = i.readInt(); + } + this.propObj[e] = n; + }), + (i.prototype.getValue = function (t) { + return this.propObj[t]; + }), + i + ); + })(t.PropertySet); + (t.OtherPlayerPropertySet = e), __reflect(e.prototype, "app.OtherPlayerPropertySet"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._state = t.EntityAction.STAND), + (i._dir = 0), + (i._fileName = ""), + (i._nX = 0), + (i._nY = 0), + (i.m_dwNextActionTime = 0), + (i.isPay = !1), + (i.touchEnabled = !1), + (i.touchChildren = !1), + (i._body = t.ObjectPool.pop("app.MovieClip")), + i.addChild(i._body), + (i._Shadow = t.mAYZL.gamescene.map.getShadow()), + (i._Shadow.scaleX = 0.5), + (i._Shadow.scaleY = 0.25), + i + ); + } + return ( + __extends(i, e), + (i.prototype.playAction = function (t) { + this._state != t && ((this._state = t), this._body.clearComFun(), this.loadBody()); + }), + (i.prototype.playMC = function (e) { + (this._fileName = e), t.mAYZL.gamescene.map.addShadow(this._Shadow), this.loadBody(); + }), + (i.prototype.loadBody = function () { + this._body.stop(), this._body.addEventListener(egret.Event.CHANGE, this.playBody, this), this.loadFile(this._body, ZkSzi.RES_DIR_PETEXTERIOR + this._fileName); + }), + (i.prototype.playBody = function (t) { + this._body.gotoAndPlay(1, -1), this.removeBodyEvent(this._body); + }), + (i.prototype.removeBodyEvent = function (t) { + t.removeEventListener(egret.Event.CHANGE, this.playBody, this); + }), + (i.prototype.loadFile = function (t, e) { + if (e) { + var i = this.getResDir(); + t.scaleX = this.dir > 4 ? -1 : 1; + var n = e + "_" + i + this._state; + (t.newFrameRate = 0), (t.m_gather = !0), t.playFileChar(n, -1, t == this._body ? this.playComplete : null, !1); + } + }), + (i.prototype.setXY_Dir = function (e, i, n, s) { + (this.dir = n), (this._nX != e || this._nY != i) && ((this._nX = e), (this._nY = i), this.playAction(t.EntityAction.WALK), this.moveTo(e, i, s)); + }), + Object.defineProperty(i.prototype, "dir", { + get: function () { + return this._dir; + }, + set: function (e) { + (e %= 8), this._dir != e && this._state != t.EntityAction.DIE && ((this._dir = e), this.loadBody()); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getResDir = function () { + return 5 == this.dir ? 3 : 6 == this.dir ? 2 : 7 == this.dir ? 1 : this.dir; + }), + (i.prototype.destruct = function () { + this.pickUpMc && (this.pickUpMc.stop(), this.pickUpMc.destroy(), (this.pickUpMc = null)), + this._chatTxt && (t.KHNO.ins().removeAll(this._chatTxt), t.lEYZI.Naoc(this._chatTxt), (this._chatTxt = null)), + (this.isPay = !1), + (this.x = -300), + (this.y = -300), + t.lEYZI.Naoc(this._Shadow), + (this._state = t.EntityAction.STAND), + this._body.dispose(), + this.removeBodyEvent(this._body), + t.lEYZI.Naoc(this), + t.ObjectPool.push(this); + }), + (i.prototype.moveTo = function (e, i, n) { + (this.m_dwNextActionTime = n), (this.m_dwMoveStartTick = this.m_nCurrentActionTime); + var s = { + x: t.GameMap.grip2Point(e), + y: t.GameMap.grip2Point(i), + }, + a = { + x: s.x - this.x, + y: s.y - this.y, + }, + r = t.StandardActionsTime.SAM_WALK_TIME; + (a.x = a.x / r), + (a.y = a.y / r), + (this.moveObjDic = { + endPoint: s, + vec: a, + time: this.m_nCurrentActionTime + 0, + }); + }), + (i.prototype.advanceTime = function (e) { + if (((this.m_nCurrentActionTime = e), this.moveObjDic)) + if (e >= this.m_dwNextActionTime) (this.x = this.moveObjDic.endPoint.x), (this.y = this.moveObjDic.endPoint.y), (this.moveObjDic = null), this.playAction(t.EntityAction.STAND); + else { + var i = e - this.moveObjDic.time, + n = this.moveObjDic.vec.x * i, + s = this.moveObjDic.vec.y * i; + (this.moveObjDic.time = e), (this.x += n), (this.y += s); + } + (this._Shadow.x = this.x), (this._Shadow.y = this.y); + }), + (i.prototype.payPickUpMc = function () { + if ((this.pickUpMc || ((this.pickUpMc = t.ObjectPool.pop("app.MovieClip")), this.addChild(this.pickUpMc)), !this.isPay)) { + var e = this; + (this.isPay = !0), + this.pickUpMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cwjdx2", 1, function () { + e.pickUpMc.dispose(), (e.isPay = !1); + }); + } + }), + (i.prototype.dialogueLabel = function () { + var e = this; + this._chatTxt || + ((this._chatTxt = new eui.Label()), + (this._chatTxt.textAlign = egret.HorizontalAlign.CENTER), + (this._chatTxt.width = 240), + (this._chatTxt.anchorOffsetX = 120), + (this._chatTxt.size = 14), + (this._chatTxt.stroke = 1), + (this._chatTxt.strokeColor = 0), + (this._chatTxt.textColor = 15856626), + (this._chatTxt.touchEnabled = !1), + this.addChild(this._chatTxt)), + t.KHNO.ins().removeAll(this._chatTxt), + (this._chatTxt.visible = !0), + (this._chatTxt.text = "组队中无法自动拾取"), + (this._chatTxt.y = -102 - this._chatTxt.height), + t.KHNO.ins().rqDkE( + 5e3, + 0, + 1, + function () { + e._chatTxt && (e._chatTxt.visible = !1); + }, + this + ); + }), + i + ); + })(eui.Group); + (t.PickUpPet = e), __reflect(e.prototype, "app.PickUpPet"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.YY = 10000)] = "YY"), + (t[(t.YFBX = 10001)] = "YFBX"), + (t[(t.ShengQu = 10002)] = "ShengQu"), + (t[(t.HongHu = 10003)] = "HongHu"), + (t[(t.PF4366 = 10004)] = "PF4366"), + (t[(t.bqQT = 10005)] = "bqQT"), + (t[(t.QQGame = 10006)] = "QQGame"), + (t[(t.F1 = 10007)] = "F1"), + (t[(t.comi17 = 10008)] = "comi17"), + (t[(t.gameCat = 10010)] = "gameCat"), + (t[(t.huoWu = 10011)] = "huoWu"), + (t[(t.QuickBT = 10012)] = "QuickBT"), + (t[(t.suHai = 10013)] = "suHai"), + (t[(t.PF360 = 10014)] = "PF360"), + (t[(t.PF4399 = 10015)] = "PF4399"), + (t[(t.PF7game = 10016)] = "PF7game"), + (t[(t.PFLuDaShi = 10017)] = "PFLuDaShi"), + (t[(t.PFAQIYI = 10018)] = "PFAQIYI"), + (t[(t.PFQIDIAN = 10019)] = "PFQIDIAN"), + (t[(t.PFYAODOU = 10020)] = "PFYAODOU"), + (t[(t.HUYU37 = 10021)] = "HUYU37"), + (t[(t.PFKu25 = 10022)] = "PFKu25"), + (t[(t.SOUGOU = 10023)] = "SOUGOU"), + (t[(t.gameCatEnd = 10024)] = "gameCatEnd"), + (t[(t.Potato = 10025)] = "Potato"), + (t[(t.FeiHuo = 10026)] = "FeiHuo"), + (t[(t.TanWan = 10027)] = "TanWan"), + (t[(t.GeMen = 10028)] = "GeMen"), + (t[(t.PotatoBXSC = 10029)] = "PotatoBXSC"), + (t[(t.PF45yx = 10030)] = "PF45yx"), + (t[(t.PF355wan = 10031)] = "PF355wan"), + (t[(t.PF360uu = 10032)] = "PF360uu"), + (t[(t.PF2144Game = 10033)] = "PF2144Game"), + (t[(t.teeqee = 10034)] = "teeqee"), + (t[(t.xiaoqi = 10035)] = "xiaoqi"), + (t[(t.shunwang = 10036)] = "shunwang"), + (t[(t.xunwan = 10037)] = "xunwan"), + (t[(t.BaYe = 10038)] = "BaYe"), + (t[(t.xiuLuoBaYe = 10039)] = "xiuLuoBaYe"), + (t[(t.chinaGame = 10040)] = "chinaGame"), + (t[(t.shengMa = 10041)] = "shengMa"), + (t[(t.keleyx = 10042)] = "keleyx"), + (t[(t.wan2323 = 10043)] = "wan2323"), + (t[(t.bvwan = 10044)] = "bvwan"), + (t[(t.GameNo1 = 10045)] = "GameNo1"), + (t[(t.HuoYan = 10046)] = "HuoYan"), + (t[(t.PF37tang = 10047)] = "PF37tang"), + (t[(t.heheyx = 10048)] = "heheyx"), + (t[(t.PF52gg = 10049)] = "PF52gg"), + (t[(t.PF1771wan = 10050)] = "PF1771wan"), + (t[(t.wuxiagu = 10051)] = "wuxiagu"), + (t[(t.zixia = 10052)] = "zixia"), + (t[(t.ShuangHuo = 10053)] = "ShuangHuo"), + (t[(t.MaYi = 10054)] = "MaYi"), + (t[(t.gameCatGaoBao = 10055)] = "gameCatGaoBao"); + })((e = t.PlatFormID || (t.PlatFormID = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.skillsData = {}), + (t._lockTarget = 0), + (t.lockSkillId = 0), + (t.sutomaticAckCD = 500), + (t.satime = 0), + (t._ishomingMove = 1), + (t.moveCD = 5e3), + (t.hitRecog = 0), + (t.petCharObj = {}), + (t.AckX = 0), + (t.AckY = 0), + (t.mouseXY = { + x: 0, + y: 0, + }), + (t._nNextAction = 0), + (t._aStarPatch = []), + (t.ackHashCode = 0), + (t.dropPackId = 0), + (t._xy = { + x: 0, + y: 0, + }), + (t.protectCDTime = -5e3), + (t.protectCDTime2 = -5e3), + (t.hpTime = 0), + (t.hpMaxTime = 0), + (t.mpTime = 0), + (t.mpMaxTime = 0), + (t.hpNewTime = 0), + (t.slowTimePercentage = -3e3), + (t.fastTimePercentage = -1e3), + (t.daoShiSkillAry = [30, 22, 33, 24]), + (t.zhiYuCDTime = -3e3), + (t._taskInfo = {}), + (t._isLockTurn = !1), + (t._lockCell = { + x: -1, + y: -1, + }), + (t._pathXY = { + x: 0, + y: 0, + }), + (t.maxLv = 0), + (t.maxOpen = 0), + (t.randomT = 0), + (t.cdTime = 0), + (t.petDialogueTime = 0), + (t.logXy = { + x: 0, + y: 0, + }), + (t.logTime = 0), + t + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "lockTarget", { + get: function () { + return this._lockTarget; + }, + set: function (t) { + this._lockTarget = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "ishomingMove", { + get: function () { + return this._ishomingMove; + }, + set: function (t) { + this._ishomingMove = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "m_nNextAction", { + get: function () { + return this._nNextAction; + }, + set: function (t) { + this._nNextAction = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "aStarPatch", { + get: function () { + return this._aStarPatch; + }, + set: function (e) { + (this._aStarPatch = e), t.Nzfh.ins().postUpdateMapStarPatch(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isLockTurn", { + get: function () { + return this._isLockTurn; + }, + set: function (e) { + (this._isLockTurn = e), !e || (this.m_nNextAction != t.Qmuk.SAM_WALK && this.m_nNextAction != t.Qmuk.SAM_RUN) || ((this._lockCell.x = this.currentX), (this._lockCell.y = this.currentY)); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.clearLockCell = function () { + this._lockCell.x = this._lockCell.y = -1; + }), + Object.defineProperty(i.prototype, "lockCell", { + get: function () { + return this._lockCell; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setTask = function (e, i, n, s, a, r, o) { + void 0 === s && (s = -1), + void 0 === a && (a = -1), + void 0 === r && (r = 0), + void 0 === o && (o = -1), + (this._taskInfo.sceneid != e || this._taskInfo.posx != i || this._taskInfo.posy != n) && + (t.qTVCL.ins().YFOmNj(), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + this.stopTask(), + this.stopFinding(), + (this._taskInfo.sceneid = e), + (this._taskInfo.posx = i), + (this._taskInfo.posy = n), + (this._taskInfo.taskid = s), + (this._taskInfo.taskstate = a), + (this._taskInfo.isstartAi = r), + (this._taskInfo.npcID = o)); + }), + Object.defineProperty(i.prototype, "pathXY", { + get: function () { + return this._pathXY; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.pathFinding = function (e, i) { + t.GameMap.checkWalkable(e, i) && + (t.qTVCL.ins().YFOmNj(), + (t.EhSWiR.m_ack_Char = null), + (this.aStarPatch.length = 0), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)), + this.stopTask(), + (this._pathXY.x = e), + (this._pathXY.y = i), + (t.qTVCL.ins().isFinding = !0), + t.Nzfh.ins().post_setTarget({ + x: e, + y: i, + })); + }), + (i.prototype.stopFinding = function () { + (this._pathXY.x = this._pathXY.y = 0), (t.qTVCL.ins().isFinding = !1), t.Nzfh.ins().post_setTarget(null); + }), + (i.prototype.isDothetask = function () { + return this._taskInfo.sceneid; + }), + (i.prototype.isMiniMapPath = function () { + return this._pathXY.x || this._pathXY.y; + }), + (i.prototype.ifFindTask = function (e, i, n) { + var s = {}; + if (((s.posx = i), (s.posy = n), e && e != t.GameMap.mapID)) { + if (!s.tposx) + for (var a = t.GameMap.scenes, r = 0; r < a.teleport.length; r++) + if (a.teleport[r].toSceneid == this._taskInfo.sceneid) { + (s.tposx = a.teleport[r].posx), (s.tposy = a.teleport[r].posy); + break; + } + return s.tposx + ? { + type: 2, + x: s.tposx, + y: s.tposy, + } + : (this.stopTask(), + { + type: 2, + x: -1, + y: -1, + }); + } + return { + type: 2, + x: s.posx, + y: s.posy, + }; + }), + (i.prototype.getTaskPos = function () { + if (this._taskInfo.sceneid && this._taskInfo.sceneid != t.GameMap.mapID) { + if (!this._taskInfo.tposx) + for (var e = t.GameMap.scenes, i = 0; i < e.teleport.length; i++) + if (e.teleport[i].toSceneid == this._taskInfo.sceneid) { + (this._taskInfo.tposx = e.teleport[i].posx), (this._taskInfo.tposy = e.teleport[i].posy); + break; + } + return this._taskInfo.tposx + ? { + type: 2, + x: this._taskInfo.tposx, + y: this._taskInfo.tposy, + } + : (this.stopTask(), + { + type: 2, + x: -1, + y: -1, + }); + } + return { + type: 2, + x: this._taskInfo.posx, + y: this._taskInfo.posy, + }; + }), + (i.prototype.stopTask = function () { + (t.qTVCL.ins().isFinding = !1), (this.aStarPatch.length = 0), this._taskInfo.sceneid && t.ObjectPool.wipe(this._taskInfo); + }), + (i.prototype.isCheckTeleport = function () { + return this._taskInfo.sceneid && this._taskInfo.sceneid != t.GameMap.mapID ? !1 : !0; + }), + (i.prototype.playAction = function (i, n) { + e.prototype.playAction.call(this, i, n), t.Nzfh.ins().postUpdateState(this._state, this.dir); + }), + Object.defineProperty(i.prototype, "isMy", { + get: function () { + return !0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.changeRoleProperty = function (t) { + this.changePropertys(t); + }), + (i.prototype.initInfo = function (i, n, s) { + t.ObjectPool.wipe(this.skillsData), + t.ObjectPool.wipe(this.petCharObj), + t.ObjectPool.wipe(this._taskInfo), + this.clearLockCell(), + (this._lockTarget = 0), + (this.lockSkillId = 0), + (this.ishomingMove = 1), + (this.hitRecog = 0), + (this.m_nNextAction = 0), + (this.hpTime = 0), + (this.hpMaxTime = 0), + (this.mpTime = 0), + (this.mpMaxTime = 0), + (this.hpNewTime = 0), + (this.slowTimePercentage = -3e3), + (this.fastTimePercentage = -1e3), + (this.zhiYuCDTime = -3e3), + (this.protectCDTime = -5e3), + (this.protectCDTime2 = -5e3), + (this._hpBar.thumb.source = "boolGreen"), + e.prototype.initInfo.call(this, i, n, s), + this.stopFinding(), + this.stopTask(), + t.VrAZQ.ins().delTaskInfo(), + (t.qTVCL.ins().isFinding = !1); + }), + (i.prototype.$onAddToStage = function (i, n) { + e.prototype.$onAddToStage.call(this, i, n), + t.KHNO.ins().RTXtZF(this.updateTime1000, this) || t.KHNO.ins().tBiJo(1e3, 0, this.updateTime1000, this), + t.KHNO.ins().RTXtZF(this.doTimer300, this) || t.KHNO.ins().tBiJo(300, 0, this.doTimer300, this); + var s = Object.keys(t.VlaoF.talklevelConfig).length, + a = t.VlaoF.talklevelConfig[s]; + a && ((this.maxLv = a.maxlevel), (this.maxOpen = a.maxopenday)), t.KHNO.ins().RTXtZF(this.delayIntervalShow, this) || t.KHNO.ins().tBiJo(1e3, 0, this.delayIntervalShow, this); + }), + (i.prototype.delayIntervalShow = function () { + var e = this.propSet.mBjV(), + i = t.GlobalData.sectionOpenDay; + if (e > this.maxLv || i > this.maxOpen) return void t.KHNO.ins().remove(this.delayIntervalShow, this); + if (egret.getTimer() > this.cdTime && this.findMonster()) { + var n = t.VlaoF.TimeManagerConfigConfig.Monstertalkmintime, + s = t.VlaoF.TimeManagerConfigConfig.Monstertalkmaxtime; + (this.randomT = t.MathUtils.limitInteger(1e3 * n, 1e3 * s)), (this.cdTime = egret.getTimer() + this.randomT); + } + }), + (i.prototype.findMonster = function () { + var e, + i, + n, + s = (Number.MAX_VALUE, []), + a = t.NWRFmB.ins().YUwhM(); + t.aTwWrO.ins().getWidth(), t.aTwWrO.ins().getHeight(); + for (var r in a) + (e = a[r]), + (n = e.localToGlobal()), + e.propSet.getRace() == t.ActorRace.Monster && + ((i = t.VlaoF.Monster[e.propSet.getACTOR_ID()]), + i && i.monsterType < 3 && !e.deadChar && 1 == i.entityType && !i.isAIAck && Math.abs(this.currentX - e.currentX) <= 7 && Math.abs(this.currentY - e.currentY) <= 4 && s.push(e)); + if (s.length > 0) { + var o = t.MathUtils.limitInteger(1, s.length) - 1, + l = s[o], + h = t.VlaoF.talklevelConfig, + p = this.propSet.mBjV(), + u = t.GlobalData.sectionOpenDay, + c = void 0; + for (var g in h) { + var d = h[g]; + if (p > d.minlevel && p <= d.maxlevel && u >= d.minopenday && u <= d.maxopenday) { + c = d.level; + break; + } + } + var m = t.VlaoF["monstertalk" + c + "Config"]; + if (!m) return !1; + var f = Object.keys(m).length, + v = t.MathUtils.limitInteger(1, f), + _ = void 0; + return m[v] && (_ = m[v].txt), t.mAYZL.ins().ZbzdY(t.MonsterTalkView) ? t.mAYZL.ins().close(t.MonsterTalkView) : t.mAYZL.gamescene.map.showTalkView(_, l.x, l.y), !0; + } + return !1; + }), + (i.prototype.addPet = function (t) { + this.petCharObj[t] = 1; + }), + (i.prototype.remPet = function (t) { + delete this.petCharObj[t]; + }), + (i.prototype.getPetSum = function () { + return Object.keys(this.petCharObj).length; + }), + (i.prototype.advanceTime = function (i) { + e.prototype.advanceTime.call(this, i), KdbLz.qOtrbE.iFbP && t.EhSWiR.isClickMap && t.EhSWiR.mouseUpFunction(); + }), + (i.prototype.updateTime = function (e) { + if (this.propSet) { + if (this.pickUpPet) { + var i = t.Qskf.ins().myTeamList; + i.length && e - this.petDialogueTime > 2e4 && ((this.petDialogueTime = e), this.pickUpPet.dialogueLabel()); + } + if (this.m_CharMsgList.length) { + var n = this.m_CharMsgList.shift(); + this.dispatchActorMsg(n), t.ObjectPool.push(n), (n = null); + } + if (this.isDead) return; + if ((t.mAYZL.gamescene.map.lookAt(this.x, this.y), egret.getTimer() < this.ishomingMove)) return; + if ((this.createNextActionTime(), e >= this.m_dwNextActionTime)) { + if ( + (t.EhSWiR.overXY.x + ? ((this.mouseXY.x = t.EhSWiR.overXY.x), (this.mouseXY.y = t.EhSWiR.overXY.y)) + : ((this.mouseXY.x = t.EhSWiR.overXY.x = this.x), (this.mouseXY.y = t.EhSWiR.overXY.y = this.y)), + this.m_ActionMsgList.length) + ) { + var s = this.m_ActionMsgList.shift(); + return void this.setHumanAction(s); + } + if (!this.isHard()) { + if (t.EhSWiR.m_clickSkillId > 0) { + var a = this.getUserSkill(t.EhSWiR.m_clickSkillId); + if (a && egret.getTimer() >= a.dwResumeTick) { + var r = void 0, + o = this.dir + 0, + l = t.VlaoF.SkillsLevelConf[a.nSkillId][a.nLevel]; + if (!t.qTVCL.ins().isOpen || (a.nSkillId != t.NGcJ.SKILL_SSZJ && a.nSkillId != t.NGcJ.SKILL_ZY)) + if (t.qTVCL.ins().isOpen && t.EhSWiR.m_ack_Char) + (o = t.DirUtil.get8DirBy2Point(this, t.EhSWiR.m_ack_Char)), + (r = { + skill: l, + skillId: a.nSkillId, + actorRecog: t.EhSWiR.m_ack_Char.recog, + targetX: t.EhSWiR.m_ack_Char.currentX, + targetY: t.EhSWiR.m_ack_Char.currentY, + dir: o, + }); + else if (t.qTVCL.ins().attackState && t.EhSWiR.m_ack_Char) + (o = t.DirUtil.get8DirBy2Point(this, t.EhSWiR.m_ack_Char)), + (r = { + skill: l, + skillId: a.nSkillId, + actorRecog: t.EhSWiR.m_ack_Char.recog, + targetX: t.EhSWiR.m_ack_Char.currentX, + targetY: t.EhSWiR.m_ack_Char.currentY, + dir: o, + }); + else { + var h = 0; + if (KdbLz.qOtrbE.iFbP) { + h = this.lockTarget; + var p = t.NWRFmB.ins().getCharRole(h); + if (p) (o = t.DirUtil.get8DirBy2Point(this, p)), (p = null); + else { + var u = t.NWRFmB.ins().getDummyChar(h); + u && ((o = t.DirUtil.get8DirBy2Point(this, u)), (this.mouseXY.x = u.x), (this.mouseXY.y = u.y), (u = null), (h = 0)); + } + } else t.EhSWiR.m_Move_Char && (h = t.EhSWiR.m_Move_Char.recog); + if ((t.EhSWiR.ackXy && ((this.mouseXY.x = t.EhSWiR.ackXy.x), (this.mouseXY.y = t.EhSWiR.ackXy.y), (t.EhSWiR.ackXy = null)), KdbLz.qOtrbE.iFbP)) { + if (a.nSkillId == t.NGcJ.SKILL_HUOQIANG) + if (t.EhSWiR.m_ack_Char) (this.mouseXY.x = t.EhSWiR.m_ack_Char.x), (this.mouseXY.y = t.EhSWiR.m_ack_Char.y); + else { + var p = t.NWRFmB.ins().getCharRole(this._lockTarget); + if (p) (this.mouseXY.x = p.x), (this.mouseXY.y = p.y); + else { + var u = t.NWRFmB.ins().getDummyChar(this._lockTarget); + u + ? ((o = t.DirUtil.get8DirBy2Point(this, u)), (this.mouseXY.x = u.x), (this.mouseXY.y = u.y), (u = null), (h = 0)) + : ((this.mouseXY.x = this.x), (this.mouseXY.y = this.y)); + } + } + } else { + var u = t.NWRFmB.ins().getDummyChar(this._lockTarget); + u && ((o = t.DirUtil.get8DirBy2Point(this, u)), (this.mouseXY.x = u.x), (this.mouseXY.y = u.y), (u = null), (h = 0)); + } + t.EhSWiR.m_clickSkillId != t.NGcJ.SKILL_YMCZ && + (KdbLz.qOtrbE.iFbP ? t.EhSWiR.m_ack_Char && (o = t.DirUtil.get8DirBy2Point(this, t.EhSWiR.m_ack_Char)) : (o = t.DirUtil.get8DirBy2Point(this, this.mouseXY))), + (r = { + skill: l, + skillId: t.EhSWiR.m_clickSkillId, + actorRecog: h, + targetX: t.GameMap.point2Grip(this.mouseXY.x), + targetY: t.GameMap.point2Grip(this.mouseXY.y), + dir: o, + }); + } + else + r = { + skill: l, + skillId: a.nSkillId, + actorRecog: 0, + targetX: this.currentX, + targetY: this.currentY, + dir: this.dir, + }; + var c = t.VlaoF.SkillConf[a.nSkillId]; + if (c.action) return this.skillAck(r), (t.EhSWiR.m_clickSkillId = 0), void (a = null); + t.EhSWiR.m_clickSkillId = 0; + var g = this.propSet.getAP_JOB(); + t.NGcJ.ins().s_5_2(r.skillId, r.actorRecog, r.targetX, r.targetY, r.dir, g), (l = null), (r = null); + } + a = null; + } + if (t.EhSWiR.m_keyCode > 0) { + var d = t.XwoNAr.ins().keyInfo[t.EhSWiR.KEYS.indexOf(t.EhSWiR.m_keyCode)]; + if (d && d.type) { + var a = this.getUserSkill(d.id); + if (a && egret.getTimer() > a.dwResumeTick) { + var h = 0; + t.EhSWiR.m_Move_Char && t.EhSWiR.m_Move_Char.propSet.getRace() != t.ActorRace.Human && (h = t.EhSWiR.m_Move_Char.recog); + var o = this.dir + 0; + a.nSkillId != t.NGcJ.SKILL_YMCZ && (o = t.DirUtil.get8DirBy2Point(this, this.mouseXY)); + var l = t.VlaoF.SkillsLevelConf[a.nSkillId][a.nLevel]; + return void this.skillAck({ + skill: l, + skillId: a.nSkillId, + actorRecog: h, + targetX: t.GameMap.point2Grip(this.mouseXY.x), + targetY: t.GameMap.point2Grip(this.mouseXY.y), + dir: o, + }); + } + } + } + if (t.qTVCL.ins().isOpen) { + if (this.isSutomaticAck(1)) return; + } else if (this.isSutomaticAck(1)) return; + if (t.EhSWiR.m_isClickShift) { + var p = t.NWRFmB.ins().getCharRole(this._lockTarget); + if ( + (p && + !p.deadChar && + t.EhSWiR.m_Move_Char && + t.EhSWiR.m_Move_Char.recog != p.recog && + ((this._lockTarget = t.EhSWiR.m_Move_Char.recog), t.NGcJ.ins().postUpdateLock(this._lockTarget, this.lockSkillId)), + (p = t.NWRFmB.ins().getCharRole(this._lockTarget)), + p && !p.deadChar) + ) + t.EhSWiR.m_forceAck_Recog = p.recog; + else { + var m = !0, + f = 0, + o = t.DirUtil.get8DirBy2Point(this, this.mouseXY); + if (t.EhSWiR.m_Move_Char) (m = !1), (f = t.EhSWiR.m_Move_Char.recog); + else { + var v = t.GameMap.getPosRangeByDir(this.currentX, this.currentY, o, 1); + f = t.NWRFmB.ins().getGridChar(v[0], v[1]); + } + if (!f) + return void this.rawSetNextAction(t.Qmuk.SAM_NORMHIT, { + recog: f, + Dir: o, + TargetX: this.currentX, + TargetY: this.currentY, + prohibitLock: !0, + }); + if (((p = t.NWRFmB.ins().getCharRole(f)), !p || p.deadChar)) + return void this.rawSetNextAction(t.Qmuk.SAM_NORMHIT, { + recog: f, + Dir: o, + TargetX: this.currentX, + TargetY: this.currentY, + prohibitLock: !0, + }); + if ( + ((this._lockTarget = f), + t.NGcJ.ins().postUpdateLock(this._lockTarget, this.lockSkillId), + t.GameMap.getAround8( + { + X: this.currentX, + Y: this.currentY, + }, + { + X: p.currentX, + Y: p.currentY, + } + )) + ) + return void this.rawSetNextAction(t.Qmuk.SAM_NORMHIT, { + recog: f, + Dir: o, + TargetX: this.currentX, + TargetY: this.currentY, + prohibitLock: m, + }); + t.EhSWiR.m_forceAck_Recog = f; + } + } else { + if (t.EhSWiR.m_playerActon == t.PlayerAction.PICKUP) { + if (this.isFixed()) return; + return (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE), void this.pickUpFunction(); + } + if (t.EhSWiR.m_playerActon == t.PlayerAction.WALK) { + if (this.isFixed()) return; + if ((this.clearStarPatch(), (t.EhSWiR.m_ack_Char = null), !t.EhSWiR.m_isClickShift)) { + var f = t.NWRFmB.ins().getGridChar(t.EhSWiR.m_moveX, t.EhSWiR.m_moveY); + if (f) { + var _ = t.NWRFmB.ins().getCharRole(f); + if (_ && _.isCharRole) return void this.setToIdleAction(); + } + } + var y = this.nextMouseMoveEntity(t.Qmuk.SA_WALK); + if (y) + return void this.rawSetNextAction(t.Qmuk.SAM_WALK, { + Dir: y.btDir, + X: this.currentX, + Y: this.currentY, + TargetX: y.X, + TargetY: y.Y, + }); + t.EhSWiR.moveDir != this.dir && + (debug.log("转向"), + this.setToIdleAction(), + this.rawSetNextAction(t.Qmuk.SAM_IDLE, { + Dir: t.EhSWiR.moveDir, + X: this.currentX, + Y: this.currentY, + })); + } else if (t.EhSWiR.m_playerActon == t.PlayerAction.TURN) { + if (this.isFixed()) return; + this.clearStarPatch(); + var y = this.nextMouseMoveEntity(t.Qmuk.SA_RUN); + if (y) + return void (y.step == t.Qmuk.SA_RUN + ? this.rawSetNextAction(t.Qmuk.SAM_RUN, { + Dir: y.btDir, + X: this.currentX, + Y: this.currentY, + TargetX: y.X, + TargetY: y.Y, + }) + : this.rawSetNextAction(t.Qmuk.SAM_WALK, { + Dir: y.btDir, + X: this.currentX, + Y: this.currentY, + TargetX: y.X, + TargetY: y.Y, + })); + t.EhSWiR.moveDir != this.dir && + (debug.log("转向"), + this.setToIdleAction(), + this.rawSetNextAction(t.Qmuk.SAM_IDLE, { + Dir: t.EhSWiR.moveDir, + X: this.currentX, + Y: this.currentY, + })); + } else if (t.EhSWiR.m_playerActon == t.PlayerAction.DIR) + return ( + this.setToIdleAction(), + void ( + t.EhSWiR.moveDir != this.dir && + (debug.log("转向"), + this.setToIdleAction(), + this.rawSetNextAction(t.Qmuk.SAM_IDLE, { + Dir: t.EhSWiR.moveDir, + X: this.currentX, + Y: this.currentY, + })) + ) + ); + } + var T = !1; + if (t.EhSWiR.m_forceAck_Recog) { + var p = t.NWRFmB.ins().getCharRole(t.EhSWiR.m_forceAck_Recog); + if (p && !p.deadChar && (T = this.searchTagret(p, 1))) return; + } + if ((T = this.isDothetask())) { + var M = this.getTaskPos(); + if ((T = this.searchTagret(M))) return void (t.qTVCL.ins().isFinding = !0); + t.qTVCL.ins().isFinding = !1; + } + if ((T = this.searchTagret(t.EhSWiR.m_ack_Char))) return; + if (t.qTVCL.ins().isOpen && !t.EhSWiR.m_ack_Char) { + if (t.qTVCL.ins().dropRecog && this.searchTagret(t.NWRFmB.ins().getDropItem(t.qTVCL.ins().dropRecog))) return; + if (-1 != t.qTVCL.ins().destinationXY.x && -1 != t.qTVCL.ins().destinationXY.y && this.searchTagret(t.qTVCL.ins().destinationXY)) return; + } + if (this._pathXY.x || this._pathXY.y) { + if ((T = this.searchTagret(this._pathXY, 3))) return; + this._pathXY.x == this.currentX && this._pathXY.y == this.currentY && this.stopFinding(); + } + } + this.setToIdleAction(); + } + } + }), + (i.prototype.getNextAstarPatchNode = function () { + var e = t.ObjectPool.pop("app.ActionInfo"); + if (this.aStarPatch && this.aStarPatch.length > 0) { + var i = this.aStarPatch[this.aStarPatch.length - 1], + n = t.NWRFmB.ins().checkWalkable(i.X, i.Y); + if (n) return e.read(!1, n, i.btDir, i.X, i.Y), e; + if (((i = this.aStarPatch.pop()), this.aStarPatch.length)) { + var s = this.aStarPatch[this.aStarPatch.length - 1]; + if (!this.isLockTurn && i.btDir == s.btDir && !t.NWRFmB.ins().checkWalkable(s.X, s.Y)) return (s = this.aStarPatch.pop()), e.read(!0, 0, i.btDir, s.X, s.Y, t.Qmuk.SAM_RUN), e; + } + return (this.isLockTurn = !1), e.read(!0, 0, i.btDir, i.X, i.Y, t.Qmuk.SAM_WALK), e; + } + return e; + }), + (i.prototype.pursuitTarget = function (e) { + if (e && t.EhSWiR.m_playerActon != t.PlayerAction.TURN && (!this.aStarPatch.length || this.AckX != e.currentX || this.AckY != e.currentY || this.ackHashCode != e.hashCode)) { + if (((this.ackHashCode = +e.hashCode + 0), (this.AckX = e.currentX + 0), (this.AckY = e.currentY + 0), t.qTVCL.ins().attackState)) { + var i = t.GameMap.attackAStarPatch(this.currentX, this.currentY, e.currentX, e.currentY); + if (!i) return; + } + (this.aStarPatch = t.GameMap.getAStarPatch(this.currentX, this.currentY, e.currentX, e.currentY)), + this.aStarPatch.length > 0 + ? this.aStarPatch.pop() + : (t.EhSWiR.ClearChar(e.recog), + t.qTVCL.ins().createDestinationXY(), + t.qTVCL.ins().isOpen && (t.qTVCL.ins().addBlackRecog(e.recog), t.qTVCL.ins().addBlackRecog(t.qTVCL.ins().dropRecog))), + this.aStarPatch.length > 0 && this.aStarPatch.shift(); + } + }), + (i.prototype.dropTarget = function (e) { + e + ? (this.aStarPatch.length && this.dropPackId == e.packId) || + ((this.dropPackId = e.packId), + (this.aStarPatch = t.GameMap.getAStarPatch(this.currentX, this.currentY, e.nX, e.nY)), + this.aStarPatch.length > 0 + ? this.aStarPatch.pop() + : (t.qTVCL.ins().addBlackRecog(t.qTVCL.ins().dropRecog), (t.qTVCL.ins().dropRecog = 0), (this.dropPackId = 0), t.qTVCL.ins().createDestinationXY())) + : (this.dropPackId = 0); + }), + (i.prototype.trackTarget = function (e) { + e && + ((this.aStarPatch.length && this._xy.x == e.x && this._xy.y == e.y) || + ((this._xy.x = e.x), + (this._xy.y = e.y), + (this.aStarPatch = t.GameMap.getAStarPatch(this.currentX, this.currentY, e.x, e.y)), + this.aStarPatch.length > 0 ? this.aStarPatch.pop() : ((t.qTVCL.ins().dropRecog = 0), (this.dropPackId = 0), t.qTVCL.ins().createDestinationXY()))); + }), + (i.prototype.teleport = function (e) { + if ( + e && + (!this.aStarPatch.length || this._xy.x != e.x || this._xy.y != e.y) && + ((this._xy.x = e.x), + (this._xy.y = e.y), + (this.aStarPatch = t.GameMap.getAStarPatch(this.currentX, this.currentY, e.x, e.y)), + this.aStarPatch.length > 0 && this.aStarPatch.pop(), + this._taskInfo.sceneid && this._taskInfo.sceneid == t.GameMap.mapID && this.aStarPatch.length > 0 && this.aStarPatch.shift(), + 0 == this.aStarPatch.length && this._taskInfo.sceneid && this._taskInfo.sceneid == t.GameMap.mapID) + ) { + var i = this.getTaskPos(), + n = t.MathUtils.getDistanceByObject( + { + x: this.x, + y: this.y, + }, + { + x: i.x * t.GameMap.CELL_SIZE, + y: i.y * t.GameMap.CELL_SIZE, + } + ); + 220 > n && + (-1 != this._taskInfo.npcID && this.isOpenNpcView(this._taskInfo.npcID), + -1 != this._taskInfo.taskid && -1 != this._taskInfo.taskstate && (t.mAYZL.ins().ZbzdY(t.TaskInfoWin) || t.mAYZL.ins().open(t.TaskInfoWin, this._taskInfo.taskid, this._taskInfo.taskstate)), + 1 == this._taskInfo.isstartAi && (t.qTVCL.ins().edcwsp(), egret.getTimer() > t.VrAZQ.ins().clickTime && t.VrAZQ.ins().post_taskAiStart()), + this.stopTask()); + } + }), + (i.prototype.protectSkill = function () { + var e = egret.getTimer(); + if (!(this.propSet.getHp() >= this.propSet.getMaxHp())) { + if (this.getWeaponnSoulBuff()) return null; + if ( + this.propSet.getHp() > 0 && + !t.GameMap.getIsSafe && + e - this.protectCDTime > 5e3 && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1State) && + this.propSet.getHp() < t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Val) + ) { + var i = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Item); + if (i) { + var n = t.NWRFmB.ins().getPayer.getUserSkill(i); + if (n && !n.isDisable && egret.getTimer() > n.dwResumeTick) { + t.EhSWiR.m_AiSkillId = n.nSkillId; + var s = t.VlaoF.SkillConf[n.nSkillId]; + return t.uMEZy.ins().showFightTips(t.zlkp.replace(t.CrmPU.language_SetUp_Text50, s.name)), (this.protectCDTime = e), n; + } + } + } + if ( + this.propSet.getHp() > 0 && + !t.GameMap.getIsSafe && + e - this.protectCDTime2 > 5e3 && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2State) && + this.propSet.getHp() < t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Val) + ) { + var a = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Item); + if (a) { + var n = t.NWRFmB.ins().getPayer.getUserSkill(a); + if (n && n && !n.isDisable && egret.getTimer() > n.dwResumeTick) { + (t.EhSWiR.m_AiSkillId = n.nSkillId), (this.protectCDTime2 = e); + var s = t.VlaoF.SkillConf[n.nSkillId]; + return t.uMEZy.ins().showFightTips(t.zlkp.replace(t.CrmPU.language_SetUp_Text50, s.name)), n; + } + } + } + return null; + } + }), + (i.prototype.isSutomaticAck = function (e) { + if ((void 0 === e && (e = 0), this.propSet.getHp() > 0 && egret.getTimer() - this.satime > this.sutomaticAckCD)) { + this.satime = egret.getTimer(); + var i = this.protectSkill(); + if (i) return i; + var n = this.propSet.getAP_JOB(), + p = t.NWRFmB.ins().getPayer; + if (JobConst.ZhanShi == n) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Skill1)) { + var s = p.getUserSkill(t.NGcJ.SKILL_LH); + s && + !s.isDisable && + egret.getTimer() > s.dwResumeTick && + (this.propSet.setProperty(t.nRDo.ACK_SKILLID, t.NGcJ.SKILL_LH), this.propSet.setProperty(t.nRDo.ACK_SKILLLEVEL, s.nLevel), (t.EhSWiR.m_AiSkillId = s.nSkillId)); + } + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Skill2)) { + var a = p.getUserSkill(t.NGcJ.SKILL_ZR); + a && + !a.isDisable && + egret.getTimer() > a.dwResumeTick && + (this.propSet.setProperty(t.nRDo.ACK_SKILLID, t.NGcJ.SKILL_ZR), this.propSet.setProperty(t.nRDo.ACK_SKILLLEVEL, a.nLevel), (t.EhSWiR.m_AiSkillId = a.nSkillId)); + } + if (1 == e && t.qTVCL.ins().isOpen && p.lockTarget && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Skill3)) { + var a = p.getUserSkill(t.NGcJ.SKILL_YMCZ); + if (a && !a.isDisable && egret.getTimer() > a.dwResumeTick) { + return (t.EhSWiR.m_AiSkillId = a.nSkillId); + } + } + } else if (1 == e && JobConst.FaShi == n) { + if (this.propSet.getCurMp() > 30 && !this.getIsEQSecure() && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Skill1)) { + var r = p.getUserSkill(t.NGcJ.SKILL_MFD); + if (r && !r.isDisable && egret.getTimer() > r.dwResumeTick) return (t.EhSWiR.m_AiSkillId = r.nSkillId), r; + } + } else if (1 == e && JobConst.DaoShi == n && this.propSet.getCurMp() > 30 && !this.getIsWarframe() && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Skill1)) { + var o = p.getUserSkill(t.NGcJ.SKILL_SSZJ); + if (o && !o.isDisable && egret.getTimer() > o.dwResumeTick) return (t.EhSWiR.m_AiSkillId = o.nSkillId), o; + } + } + return null; + }), + (i.prototype.createNextActionTime = function () { + (this.m_nAction == t.Qmuk.SAM_UNDER_ATTACK || this.m_nAction == t.Qmuk.SAM_UNDER_RECRUIT) && + (this.m_nNextAction || t.EhSWiR.m_playerActon != t.PlayerAction.IDLE || t.EhSWiR.m_ack_Char || t.EhSWiR.m_keyCode || t.EhSWiR.m_clickSkillId) && + ((this.m_dwNextActionTime = 0), (this.m_HitTime = 0)); + }), + (i.prototype.pickUpFunction = function () { + var e = t.NWRFmB.ins().getKeyDropEntity(this.currentX * t.GameMap.ROW + this.currentY); + if (e) { + for (var i = void 0, n = !1, s = 0; s < e.length; s++) { + var a = t.NWRFmB.ins().getDropItem(e[s]); + if (a && egret.getTimer() >= a.timeRemaining) { + if (65534 != a.packetId && 65535 != a.packetId) { + var r = t.VlaoF.StdItems[a.packetId]; + if ((r && (i = t.ThgMu.ins().getBagTypeItemNum(r.packageType)), 1 > i)) { + n = !0; + continue; + } + } + return void t.hADk.ins().s_15_9([a.packId]); + } + return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips44); + } + n && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips72); + } + }), + (i.prototype.doTimer300 = function () { + this.propSet && (this.recoveryHpFun(), this.pickUpALLFunction()); + }), + (i.prototype.pickUpALLFunction = function () { + var e = []; + if (!t.qTVCL.ins().isOpen || t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1)) { + var i; + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Pick)) { + var n = t.NWRFmB.ins().getKeyDropEntity(this.currentX * t.GameMap.ROW + this.currentY); + if (n) { + for (var s = 0; s < n.length; s++) { + var a = t.NWRFmB.ins().getDropItem(n[s]); + if (a && 65534 != a.packetId && 65535 != a.packetId) { + var r = t.VlaoF.StdItems[a.packetId]; + if ((r && (i = t.ThgMu.ins().getBagTypeItemNum(r.packageType)), 1 > i)) continue; + } + a && egret.getTimer() >= a.timeRemaining ? e.push(a.packId) : (this.currentX != this.lastX || this.currentY != this.lastY) && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips44); + } + n = null; + } + } else { + var n = t.NWRFmB.ins().getKeyDropEntity(this.currentX * t.GameMap.ROW + this.currentY); + if (n) { + for (var o = t.XwoNAr.ins().getDataById(65533).isSelected1, s = 0; s < n.length; s++) { + var a = t.NWRFmB.ins().getDropItem(n[s]); + if (65534 != a.packetId && 65535 != a.packetId) { + var r = t.VlaoF.StdItems[a.packetId]; + if ((r && (i = t.ThgMu.ins().getBagTypeItemNum(r.packageType)), 1 > i)) continue; + } + if (a && egret.getTimer() >= a.timeRemaining) { + var l = t.XwoNAr.ins().getDataById(a.packetId); + l && (l.isSelected1 || (o && a.isBest)) && e.push(a.packId); + } + } + n = null; + } + } + t.hADk.ins().s_15_9(e), (e = null), (this.lastX = this.currentX), (this.lastY = this.currentY); + } + }), + (i.prototype.recoveryHpFun = function () { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Blood)) { + var e = egret.getTimer(); + this.propSet.getHp() < this.propSet.getMaxHp() && + (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_COM_Red) && + e - this.hpTime >= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_HP_TIME) && + this.propSet.getHp() <= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_HP) && + (this.getHpBuff() || (this.useItem(t.VlaoF.MedicineSettingConfig.itemHp), (this.hpTime = e))), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_COM_BLUE) && + e - this.hpMaxTime >= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MP_TIME) && + this.propSet.getHp() <= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MP) && + (this.useItem(t.VlaoF.MedicineSettingConfig.itemMaxHp), (this.hpMaxTime = e)), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_RED) && + e - this.mpTime >= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_HP_TIME) && + this.propSet.getHp() <= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_HP) && + (this.useItem(t.VlaoF.MedicineSettingConfig.itemMp), (this.mpTime = e)), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_BLUE) && + e - this.mpMaxTime >= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_MP_TIME) && + this.propSet.getHp() <= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_MOMENT_MP) && + (this.useItem(t.VlaoF.MedicineSettingConfig.itemMaxMp), (this.mpMaxTime = e)), + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Select_LiaoShangYao) && + e - this.hpNewTime >= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_LiaoShangYaoTime) && + this.propSet.getHp() <= t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_LiaoShangYaoHp) && + (this.useItem(t.VlaoF.MedicineSettingConfig.itemTherapy), (this.hpNewTime = e))); + } + }), + (i.prototype.updateTime1000 = function () { + if (this.propSet) { + var e = egret.getTimer(); + if ( + (t.GameMap.delayOnHook && !t.qTVCL.ins().isOpen && this.logXy.x == this.x && this.logXy.y == this.y + ? e - this.logTime > 3e3 && ((this.logTime = e), t.qTVCL.ins().edcwsp()) + : ((this.logTime = e), (this.logXy.x = this.x), (this.logXy.y = this.y)), + this.isDead) + ) + return; + if ( + !t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Blood) && + (this.propSet.getHp() < this.propSet.getMaxHp() && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Red) >= this.propSet.getHpPercentage() && + (this.getHpBuff() || this.useItem(t.VlaoF.MedicineSettingConfig.itemHp)), + e - this.fastTimePercentage > 600) + ) { + if ( + this.propSet.getHp() < this.propSet.getMaxHp() && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Blue) >= this.propSet.getHpPercentage() && + this.useItem(t.VlaoF.MedicineSettingConfig.itemMaxHp) + ) + return (this.fastTimePercentage = e), void this.clearLockCell(); + if ( + this.propSet.getHp() < this.propSet.getMaxHp() && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Wink_Red) >= this.propSet.getHpPercentage() && + this.useItem(t.VlaoF.MedicineSettingConfig.itemMp) + ) + return (this.fastTimePercentage = e), void this.clearLockCell(); + if ( + this.propSet.getHp() < this.propSet.getMaxHp() && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_Wink_Blue) >= this.propSet.getHpPercentage() && + this.useItem(t.VlaoF.MedicineSettingConfig.itemMaxMp) + ) + return (this.fastTimePercentage = e), void this.clearLockCell(); + if ( + this.propSet.getHp() < this.propSet.getMaxHp() && + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, t.Kdae.SetUp_Drugs_LiaoShangYao) >= this.propSet.getHpPercentage() && + this.useItem(t.VlaoF.MedicineSettingConfig.itemTherapy) + ) + return (this.fastTimePercentage = e), void this.clearLockCell(); + } + } + }), + (i.prototype.useItem = function (e) { + if (this.propSet.getState() & t.ActorState.DEATH) return !1; + for (var i, n = 0; n < e.length; n++) if ((i = t.ThgMu.ins().getItemById(e[n]))) return t.ThgMu.ins().send_8_8(i.series), !0; + return !1; + }), + (i.prototype.getDaoShiSkill = function (e) { + var i = this.protectSkill(); + if (i && !i.isDisable) return i; + if (((i = this.getUserSkill(91)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltDaoShi) && this.propSet.getCurMp() > 30 && egret.getTimer() > i.dwResumeTick)) + return i; + if (((i = this.getUserSkill(t.NGcJ.SKILL_ZHSS)), i && !i.isDisable)) { + if (this.propSet.getCurMp() > 30 && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ZhaoHuanShenShou) && 0 == t.PetSettingMgr.ins().petNum && egret.getTimer() > i.dwResumeTick) + return i; + } else if ( + this.propSet.getCurMp() > 30 && + ((i = this.getUserSkill(t.NGcJ.SKILL_ZHKL)), + i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ZhaoHuanShenShou) && 0 == t.PetSettingMgr.ins().petNum && egret.getTimer() > i.dwResumeTick) + ) + return i; + if (((i = this.getUserSkill(22)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_HpMin) && this.propSet.getCurMp() > 30)) { + var n = egret.getTimer(); + if (n - this.zhiYuCDTime > 3e3 && this.propSet.getHpPercentage() < t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_hpLess)) return (this.zhiYuCDTime = n), i; + } + i = this.getUserSkill(23); + var s = e.modelBuffAr[t.EntityFilter.poison]; + if (!s && i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Poison) && this.propSet.getCurMp() > 30 && egret.getTimer() > i.dwResumeTick) return i; + if (((i = this.getUserSkill(33)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Hemophagy) && this.propSet.getCurMp() > 30 && egret.getTimer() > i.dwResumeTick)) + return i; + var a = this.isSutomaticAck(1); + return a + ? a + : this.isRange(e.currentX, e.currentY) && this.propSet.getCurMp() > 30 && ((i = this.getUserSkill(24)), i && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu)) + ? i + : null; + }), + (i.prototype.floatingBlood = function (t, e, i) { + void 0 === e && (e = 700), void 0 === i && (i = !1); + var n = t - this.getHP(); + this.updateHp(t), 0 != n && (this.floatingBloodAry.push(n), this.payFB()); + }), + (i.prototype.isRange = function (t, e) { + return Math.abs(this.currentX - t) > 10 || Math.abs(this.currentY - e) > 5 ? !1 : !0; + }), + (i.prototype.searchTagret = function (e, i) { + if ((void 0 === i && (i = 0), this.isFixed() || !e)) return !1; + if (e instanceof t.eGgn) { + var n = this.propSet.getAP_JOB(); + if (t.qTVCL.ins().isOpen && ((this.satime = 0), this.propSet.getCurMp() > 30)) { + var s = null; + if (JobConst.ZhanShi == n) { + if (((s = this.isSutomaticAck(1)), !s)) { + if ( + ((s = this.getUserSkill(89)), + s && !s.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltZhanShi) && this.propSet.getCurMp() > 30 && egret.getTimer() > s.dwResumeTick) + ) + return void (t.EhSWiR.m_AiSkillId = s.nSkillId); + s = null; + } + } else if (JobConst.FaShi == n) { + if (this.isSutomaticAck(1)) return void (this.aStarPatch.length = 0); + s = this.getFaShiSKill(e); + } else JobConst.DaoShi == n && (s = this.getDaoShiSkill(e)); + if (s && !s.isDisable && egret.getTimer() > s.dwResumeTick) return (this.aStarPatch.length = 0), void (t.EhSWiR.m_AiSkillId = s.nSkillId); + if (s) { + if (JobConst.FaShi == n && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt) && this.isRange(e.currentX, e.currentY)) return; + if (JobConst.FaShi == n && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster) && this.isRange(e.currentX, e.currentY)) return; + if (JobConst.FaShi == n && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire) && this.isRange(e.currentX, e.currentY)) return; + if (JobConst.DaoShi == n && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu) && this.isRange(e.currentX, e.currentY)) return; + } + } + if (t.qTVCL.ins().attackState) + if (this.propSet.getAP_JOB() == JobConst.ZhanShi) { + var s = null; + if ( + ((s = this.getUserSkill(89)), + s && !s.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltFashi) && this.propSet.getCurMp() > 30 && egret.getTimer() > s.dwResumeTick) + ) + return void (t.EhSWiR.m_clickSkillId = s.nSkillId); + s = null; + } else if (this.propSet.getAP_JOB() == JobConst.FaShi) { + var s = null; + if (((s = this.getFaShiSKill(e)), s && !s.isDisable && egret.getTimer() > s.dwResumeTick)) return (this.aStarPatch.length = 0), void (t.EhSWiR.m_clickSkillId = s.nSkillId); + if (s) { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt) && this.isRange(e.currentX, e.currentY)) return; + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster) && this.isRange(e.currentX, e.currentY)) return; + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire) && this.isRange(e.currentX, e.currentY)) return; + } + } else if (this.propSet.getAP_JOB() == JobConst.DaoShi) { + var s = null; + if (((s = this.getDaoShiSkill(e)), s && !s.isDisable && egret.getTimer() > s.dwResumeTick)) return (this.aStarPatch.length = 0), void (t.EhSWiR.m_clickSkillId = s.nSkillId); + if (s && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu) && this.isRange(e.currentX, e.currentY)) return; + } + if ( + t.GameMap.getAround8( + { + X: this.currentX, + Y: this.currentY, + }, + { + X: e.currentX, + Y: e.currentY, + } + ) + ) { + var a = t.DirUtil.get8DirBy2Point( + { + x: this.currentX, + y: this.currentY, + }, + { + x: e.currentX, + y: e.currentY, + } + ); + return ( + a != this.dir && + this.rawSetNextAction(t.Qmuk.SAM_IDLE, { + Dir: a, + TargetX: this.currentX, + TargetY: this.currentY, + }), + this.rawSetNextAction(t.Qmuk.SAM_NORMHIT, { + Dir: a, + TargetX: this.currentX, + TargetY: this.currentY, + recog: e.recog, + }), + debug.log("检测到目标攻击"), + i && (t.EhSWiR.m_forceAck_Recog = 0), + !0 + ); + } + this.pursuitTarget(e); + } else if (e instanceof t.DropEntity) { + if (this.currentX == e.nX && this.currentY == e.nY) return !1; + this.dropTarget(e); + } else if (1 == e.type) { + if (this.currentX == e.x && this.currentY == e.y) return !1; + this.trackTarget(e); + } else if (2 == e.type) { + if (this.currentX == e.x && this.currentY == e.y) { + if (0 == this.aStarPatch.length && this._taskInfo.sceneid && this._taskInfo.sceneid == t.GameMap.mapID) { + var r = this.getTaskPos(), + o = t.MathUtils.getDistanceByObject( + { + x: this.x, + y: this.y, + }, + { + x: r.x * t.GameMap.CELL_SIZE, + y: r.y * t.GameMap.CELL_SIZE, + } + ); + 220 > o && + (-1 != this._taskInfo.npcID && this.isOpenNpcView(this._taskInfo.npcID), + -1 != this._taskInfo.taskid && + -1 != this._taskInfo.taskstate && + (t.mAYZL.ins().ZbzdY(t.TaskInfoWin) || t.mAYZL.ins().open(t.TaskInfoWin, this._taskInfo.taskid, this._taskInfo.taskstate)), + 1 == this._taskInfo.isstartAi && (t.qTVCL.ins().edcwsp(), egret.getTimer() > t.VrAZQ.ins().clickTime && t.VrAZQ.ins().post_taskAiStart()), + this.stopTask()); + } + return !1; + } + this.teleport(e); + } else if (3 == i) { + if (this.currentX == e.x && this.currentY == e.y) return !1; + this.trackTarget(e); + } + var l = this.getNextAstarPatchNode(); + if (l.isWk) + return ( + this.rawSetNextAction(l.Action, { + Dir: l.btDir, + X: this.currentX, + Y: this.currentY, + TargetX: l.X, + TargetY: l.Y, + }), + t.ObjectPool.push(l), + !0 + ); + if (t.qTVCL.ins().isOpen) { + if (((this.aStarPatch.length = 0), t.EhSWiR.m_ack_Char)) { + var h = t.EhSWiR.m_ack_Char.recog; + t.qTVCL.ins().addBlackRecog(h), t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog); + } + if (l.recog) { + var p = t.NWRFmB.ins().getCharRole(l.recog); + if (p && p.propSet.getRace() == t.ActorRace.Monster) { + var u = t.VlaoF.Monster[p.propSet.getACTOR_ID()]; + u && !u.isAIAck && (t.EhSWiR.m_ack_Char = p); + } + } + t.qTVCL.ins().createDestinationXY(), (t.qTVCL.ins().dropRecog = 0), (this.dropPackId = 0); + } else if (this.isDothetask()) { + if (((this.aStarPatch.length = 0), this._taskInfo.sceneid && this._taskInfo.sceneid == t.GameMap.mapID)) { + var r = this.getTaskPos(), + o = t.MathUtils.getDistanceByObject( + { + x: this.x, + y: this.y, + }, + { + x: r.x * t.GameMap.CELL_SIZE, + y: r.y * t.GameMap.CELL_SIZE, + } + ); + 220 > o && + (-1 != this._taskInfo.npcID && this.isOpenNpcView(this._taskInfo.npcID), + -1 != this._taskInfo.taskid && + -1 != this._taskInfo.taskstate && + (t.mAYZL.ins().ZbzdY(t.TaskInfoWin) || t.mAYZL.ins().open(t.TaskInfoWin, this._taskInfo.taskid, this._taskInfo.taskstate)), + 1 == this._taskInfo.isstartAi && t.qTVCL.ins().edcwsp(), + this.stopTask()); + } + } else 3 == i ? (this.aStarPatch.length = 0) : t.qTVCL.ins().attackState && (this.aStarPatch.length = 0); + return t.ObjectPool.push(l), !1; + }), + (i.prototype.getFaShiSKill = function (e) { + var i = null; + if (this.isRange(e.currentX, e.currentY)) { + if (((i = this.getUserSkill(90)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltFashi) && this.propSet.getCurMp() > 30 && egret.getTimer() > i.dwResumeTick)) + return i; + if ( + ((i = this.getUserSkill(21)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire) && this.propSet.getCurMp() > 30 && egret.getTimer() > i.dwResumeTick) + ) + return i; + if (((i = this.getUserSkill(18)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster) && this.propSet.getCurMp() > 30)) return i; + if (((i = this.getUserSkill(12)), i && !i.isDisable && t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt) && this.propSet.getCurMp() > 30)) return i; + } + return null; + }), + (i.prototype.isOpenNpcView = function (e) { + var i, + n, + s = t.NWRFmB.ins().getNpcList(); + for (var a in s) + if (((i = s[a]), (n = i.propSet.getACTOR_ID()), n == e)) { + t.mAYZL.ins().ZbzdY(t.NpcView) && t.mAYZL.ins().close(t.NpcView), t.mAYZL.ins().open(t.NpcView, i.recog, i.propSet); + break; + } + }), + (i.prototype.clearStarPatch = function () { + (this.AckX = 0), (this.AckY = 0), (this.aStarPatch.length = 0); + }), + (i.prototype.think = function () { + return !1; + }), + (i.prototype.nextMouseMoveEntity = function (e) { + void 0 === e && (e = 1), e == t.Qmuk.SA_RUN && (this.isFrozen() || this.isLockTurn) && ((e = t.Qmuk.SA_WALK), (this.isLockTurn = !1)); + var i = null, + n = this.currentX, + s = this.currentY, + a = t.GameMap.getPosRangeByDir(n, s, t.EhSWiR.moveDir, 1), + r = t.NWRFmB.ins().checkWalkable(a[0], a[1]); + if (r) return null; + if (a && a[2]) (i = t.ObjectPool.pop("app.TrajectoryNode")), i.init(a[0], a[1], t.EhSWiR.moveDir, t.Qmuk.SA_WALK); + else { + var o = t.GameMap.point2Dir(t.EhSWiR.moveDir, 1); + if (((a = t.GameMap.getPosRangeByDir(n, s, o, 1)), a && a[2] && !t.NWRFmB.ins().checkWalkable(a[0], a[1]))) + return (i = t.ObjectPool.pop("app.TrajectoryNode")), i.init(a[0], a[1], o, t.Qmuk.SA_WALK), i; + if (((o = t.GameMap.point2Dir(t.EhSWiR.moveDir, -1)), (a = t.GameMap.getPosRangeByDir(n, s, o, 1)), a[2] && !t.NWRFmB.ins().checkWalkable(a[0], a[1]))) + return (i = t.ObjectPool.pop("app.TrajectoryNode")), i.init(a[0], a[1], o, t.Qmuk.SA_WALK), i; + } + if (i && e == t.Qmuk.SA_RUN) { + if (((a = t.GameMap.getPosRangeByDir(n, s, t.EhSWiR.moveDir, 2)), (r = t.NWRFmB.ins().checkWalkable(a[0], a[1])))) return i; + a[2] && !t.NWRFmB.ins().checkWalkable(a[0], a[1]) && ((i = t.ObjectPool.pop("app.TrajectoryNode")), i.init(a[0], a[1], t.EhSWiR.moveDir, t.Qmuk.SA_RUN)); + } + return i; + }), + (i.prototype.actionCast = function () {}), + (i.prototype.skillAck = function (e) { + this.rawSetNextAction(t.Qmuk.SAM_SPELL, { + Dir: e.dir, + TargetX: this.currentX, + TargetY: this.currentY, + ackObj: e, + }); + }), + (i.prototype.rawSetNextAction = function (e, i) { + if (this.ishomingMove <= egret.getTimer() || this.m_nAction == t.Qmuk.SAM_UNDER_ATTACK) { + this.m_nNextAction = e; + var n = void 0; + switch (e) { + case t.Qmuk.SAM_NORMHIT: + this.postActionMessage(t.Qmuk.SAM_NORMHIT, i.TargetX, i.TargetY, i.Dir, { + recog: i.recog, + Dir: i.Dir, + skillId: this.propSet.getNextAckSkillId(), + level: this.propSet.getNextAckSkillLevel(), + prohibitLock: i.prohibitLock, + }); + break; + case t.Qmuk.SAM_SPELL: + this.propSet.setProperty(t.nRDo.AP_DIR, i.Dir), this.postActionMessage(t.Qmuk.SAM_SPELL, i.TargetX, i.TargetY, i.Dir, i.ackObj); + break; + case t.Qmuk.SAM_IDLE: + (n = t.ObjectPool.pop("app.ActorMessage")), + n.setInfo(t.Qmuk.SAM_IDLE, i.X, i.Y, i.Dir), + this.setHumanAction(n), + t.PKRX.ins().s_1_4(i.Dir), + this.propSet.setProperty(t.nRDo.AP_DIR, i.Dir), + (this.m_nNextAction = 0); + break; + case t.Qmuk.SAM_WALK: + (n = t.ObjectPool.pop("app.ActorMessage")), + n.setInfo(t.Qmuk.SAM_WALK, i.TargetX, i.TargetY, i.Dir), + (this.ishomingMove = egret.getTimer() + this.moveCD), + this.setHumanAction(n), + t.PKRX.ins().s_1_1(i.X, i.Y, i.Dir), + this.propSet.setProperty(t.nRDo.AP_DIR, i.Dir); + break; + case t.Qmuk.SAM_RUN: + (n = t.ObjectPool.pop("app.ActorMessage")), + n.setInfo(t.Qmuk.SAM_RUN, i.TargetX, i.TargetY, i.Dir), + (this.ishomingMove = egret.getTimer() + this.moveCD), + this.setHumanAction(n), + t.PKRX.ins().s_1_2(i.X, i.Y, i.Dir), + this.propSet.setProperty(t.nRDo.AP_DIR, i.Dir); + break; + default: + this.m_nNextAction = 0; + } + } + i = null; + }), + (i.prototype.resurgenceChar = function () { + (this.m_nNextAction = 0), this.refuseNextAction(), this.initialize(), this.showBodyContainer(); + }), + (i.prototype.refuseNextAction = function () { + (this.m_nNextAction = 0), + (this.m_nNextDirection = 0), + (this.ishomingMove = 1), + (this.aStarPatch.length = 0), + t.qTVCL.ins().isOpen && (t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog), t.qTVCL.ins().createDestinationXY()); + }), + (i.prototype.actionAccepted = function () { + if (this.m_nNextAction > 0) + switch (this.m_nNextAction) { + case t.Qmuk.SAM_NORMHIT: + this.ishomingMove = 1; + break; + case t.Qmuk.SAM_SPELL: + if (((this.ishomingMove = 1), this.m_MoveAction.data && this.m_MoveAction.data.skill.ballisticId)) { + var e = t.NWRFmB.ins().getCharRole(this.hitRecog); + (this.m_MoveAction.data.targeRole = e), this.playDanDao(this.m_MoveAction.data, 400 - (egret.getTimer() - this.acktTime)), (this.hitRecog = 0); + } + } + (this.m_nNextAction = 0), (this.m_nNextDirection = 0), (this.ishomingMove = 1); + }), + (i.prototype.setHumanAction = function (i) { + var n = egret.getTimer(); + if (i.ident == t.Qmuk.SAM_NORMHIT) { + (this.ishomingMove = n + this.moveCD), (this.m_MoveAction.Action = t.Qmuk.SAM_NORMHIT), (this.m_MoveAction.Dir = i.dir), (this.dir = i.dir), (this.m_nAction = i.ident); + var s = this.getNormhitTime(); + this.m_dwNextActionTime = this.m_nCurrentActionTime + s; + var a = i.data, + r = t.EntityAction.ATTACK; + t.OSzbc.ins().playAck2(this.propSet.getSex()); + if ( + ((this.lockSkillId = 1000000001), + a.recog ? (a.prohibitLock || (this._lockTarget = a.recog), t.NGcJ.ins().s_5_6(a.recog, a.Dir)) : t.NGcJ.ins().s_5_6(0, a.Dir), + t.NGcJ.ins().postUpdateLock(this._lockTarget, this.lockSkillId), + a && a.skillId) + ) { + this.ackEffid(a.skillId, a.level); + var o = t.VlaoF.SkillConf[a.skillId]; + o && 2 == o.action && (r = t.EntityAction.CAST); + } else t.OSzbc.ins().playAck(); + this.playAction(r); + } else if (i.ident == t.Qmuk.SAM_SPELL) { + var o = t.VlaoF.SkillConf[i.data.skillId]; + if (!i.data.actorRecog && this._lockTarget && o && o.isSwitchSkill && !o.isIgnoreLock) { + var l = t.NWRFmB.ins().getCharRole(this._lockTarget); + l && + ((this.hitRecog = l.recog), + (i.data.actorRecog = l.recog), + (i.data.targetX = l.currentX), + (i.data.targetY = l.currentY), + (i.dir = t.DirUtil.get8DirBy2Point(this, { + x: l.x, + y: l.y, + }))); + } + o.isIgnoreDir && (i.dir = this.dir); + var h = i.data; + (this.ishomingMove = n + this.moveCD), + (this.m_MoveAction.Dir = i.dir), + (this.m_MoveAction.data = i.data), + t.NGcJ.SKILL_YMCZ != i.data.skillId && (this.m_dwNextActionTime = this.m_nCurrentActionTime + t.StandardActionsTime.SAM_SPELL_TIME), + o + ? (o.action && ((this.m_nAction = i.ident), (this.m_MoveAction.Action = t.Qmuk.SAM_SPELL)), + 1 == o.action ? this.playAction(t.EntityAction.ATTACK) : 2 == o.action ? this.playAction(t.EntityAction.CAST) : ((this.m_dwNextActionTime = 0), (this.m_nAction = 0))) + : ((this.m_dwNextActionTime = 0), (this.m_nAction = 0), this.playAction(t.EntityAction.ATTACK)), + (this.acktTime = n), + o && (o.isSwitchSkill && (this.lockSkillId = h.skillId), o.isLockTarget && h.actorRecog && (this._lockTarget = h.actorRecog)), + t.NGcJ.ins().postUpdateLock(this._lockTarget, this.lockSkillId); + var p = this.propSet.getAP_JOB(); + t.NGcJ.ins().s_5_2(h.skillId, h.actorRecog, h.targetX, h.targetY, i.dir, p), + h.skill.id != t.NGcJ.SKILL_YMCZ && + o.action && + ((this.dir = i.dir), + o && 2 == o.action ? this.playAction(t.EntityAction.CAST) : this.playAction(t.EntityAction.ATTACK), + h.skill.prepareId && t.SkillEffPlayer.playAckEff(h.skill.prepareId, this)); + } else e.prototype.setHumanAction.call(this, i); + }), + (i.prototype.addUserSkill = function (t) { + this.skillsData[t.nSkillId] = t; + }), + (i.prototype.updateSkillCd = function (t, e) { + this.skillsData[t] && (this.skillsData[t].dwResumeTick = e); + }), + (i.prototype.getUserSkill = function (t) { + return this.skillsData[t]; + }), + (i.prototype.getUserSkills = function () { + return this.skillsData; + }), + Object.defineProperty(i.prototype, "weight", { + get: function () { + return this.isDead ? -1 : this.y + 5; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.initBody = function (t, i) { + (KdbLz.os.RM.filterMoviceResource = ZkSzi.RES_DIR_BODY + this.propSet.getBodyStr()), e.prototype.initBody.call(this, t, i); + }), + (i.prototype.setNameTxtColor = function () { + if (t.GameMap.getAACamp) this._nameTxt.textColor = t.ClwSVR.NAME_BLUE; + else { + var e = t.KWGP.ins().concernIsFriend(this.propSet.getACTOR_ID()); + if (e) return void (this._nameTxt.textColor = e.getColor()); + t.GameMap.getIsSafe + ? this.pkTextColor() + : this.propSet.getGuildId() + ? t.GameMap.getAAZY + ? (this._nameTxt.textColor = t.ClwSVR.NAME_BLUE) + : t.bfhrJ.ins().getIsOwnDeclareWar() + ? (this._nameTxt.textColor = t.ClwSVR.NAME_BLUE) + : this.pkTextColor() + : t.GameMap.getAAZY + ? (this._nameTxt.textColor = t.ClwSVR.GREEN_COLOR) + : this.pkTextColor(); + } + }), + (i.prototype.pickUpPetRange = function () { + if (this.isDead) return 0; + var e = this.propSet.getPickUpPetRange(); + if (e) { + if (t.GameMap.isNoPickUp) return 0; + var i = t.Qskf.ins().myTeamList; + return i.length ? 0 : e; + } + return 0; + }), + (i.prototype.payPickUpMc = function () { + this.pickUpPet && this.pickUpPet.payPickUpMc(); + }), + (i.prototype.correctAI = function () { + this.aStarPatch.length = 0; + }), + i + ); + })(t.hNqkna); + (t.PlayerRole = e), __reflect(e.prototype, "app.PlayerRole"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._isOpen = !1), + (t._isFinding = !1), + (t._attackState = !1), + (t._destinationXY = { + x: 0, + y: 0, + type: 1, + }), + (t.isFirst = !0), + (t._blacklist = []), + (t._stop_breakSkillAry = []), + (t.AI_UPDATE_TIME = 500), + (t._cdTime = 0), + (t.destinationCDTiem = 0), + (t.playXY = { + x: 0, + y: 0, + }), + (t.recordTime = 0), + (t.standTime = 0), + (t.isPickUpPet = 0), + (t.hookIdx = 0), + t + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "isOpen", { + get: function () { + return this._isOpen; + }, + set: function (e) { + this._isOpen != e && ((this._isOpen = e), t.Nzfh.ins().post_updateOnHook()); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isFinding", { + get: function () { + return this._isFinding; + }, + set: function (e) { + this._isFinding != e && ((this._isFinding = e), t.Nzfh.ins().post_updateOnHook()); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "attackState", { + get: function () { + return this._attackState; + }, + set: function (e) { + this._attackState != e && ((this._attackState = e), t.Nzfh.ins().post_AttackState()); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "ackRecog", { + get: function () { + return this._ackRecog; + }, + set: function (t) { + this._ackRecog = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "dropRecog", { + get: function () { + return this._dropRecog; + }, + set: function (t) { + this._dropRecog = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "destinationXY", { + get: function () { + return this._destinationXY; + }, + set: function (t) { + this._destinationXY = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.addBlackRecog = function (t) { + t && (+t == this._dropRecog && (this.isFirst = !1), this._blacklist.push(+t)); + }), + (i.prototype.removeBlackRecog = function (t) { + var e = this._blacklist.indexOf(+t); + e > -1 && this._blacklist.splice(e, 1); + }), + (i.prototype.clearBlackRecogAll = function () { + (this._blacklist.length = 0), (t.EhSWiR.m_ack_Char = null), (this._ackRecog = null), (this._dropRecog = null); + }), + Object.defineProperty(i.prototype, "stopBreakSkillAry", { + get: function () { + return this._stop_breakSkillAry; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + return e.ins.call(this, t); + }), + (i.prototype.createDestinationXY = function () { + this._destinationXY.x = this._destinationXY.y = -1; + }), + Object.defineProperty(i.prototype, "cdTime", { + get: function () { + return this._cdTime; + }, + set: function (e) { + if (this.isPickUpPet) { + var i = egret.getTimer(), + n = this.petChickDrop(i); + n.length && t.hADk.ins().s_15_10(n); + } + this._cdTime = e; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.YFOmNj = function () { + if (this._isOpen) { + (this.standTime = 0), + (this.isFirst = !0), + (this.isOpen = !1), + (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE), + (this._dropRecog = 0), + t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog), + this.createDestinationXY(), + t.KHNO.ins().remove(this.checkAI, this), + t.KHNO.ins().remove(this.createBlackRecog, this); + var e = t.NWRFmB.ins().getPayer; + (e = null), t.uMEZy.ins().IrCm(t.CrmPU.language_System58), (this.destinationCDTiem = 0); + } + }), + (i.prototype.stopPK = function () { + t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog); + }), + (i.prototype.edcwsp = function () { + if (!this._isOpen) { + t.Nzfh.ins().postUpdateTarget(0), this.stopPK(), this.createDestinationXY(); + var e = t.NWRFmB.ins().getPayer; + t.GameMap.scenes.isHook + ? (e.stopTask(), + e.stopFinding(), + (this.isOpen = !0), + t.KHNO.ins().RTXtZF(this.checkAI, this) || (this.checkAI(), t.KHNO.ins().tBiJo(this.AI_UPDATE_TIME, 0, this.checkAI, this)), + t.KHNO.ins().RTXtZF(this.createBlackRecog, this) || (this.checkAI(), t.KHNO.ins().tBiJo(5e3, 0, this.createBlackRecog, this)), + t.uMEZy.ins().IrCm(t.CrmPU.language_System57)) + : 249 != t.GameMap.scenes.sceneid && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips80); + } + }), + (i.prototype.createBlackRecog = function () { + this._blacklist.length = 0; + var e = t.NWRFmB.ins().getPayer; + e && e.clearLockCell(); + }), + (i.prototype.clearplayXY = function () { + this.playXY.x = this.playXY.y = 0; + }), + (i.prototype.checkAI = function () { + var e = egret.getTimer(); + if (!(this._cdTime > e)) { + var i = t.NWRFmB.ins().getPayer; + if (i) { + this.isPickUpPet = i.pickUpPetRange(); + var n = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1); + if ((this.standTime && i.action == t.EntityAction.STAND ? e - this.standTime > 3e3 && (n = !1) : (this.standTime = e), t.EhSWiR.m_ack_Char)) { + if (this.isPickUpPet) { + var s = this.petChickDrop(e); + s.length && t.hADk.ins().s_15_10(s); + } + return this.clearplayXY(), -1 != this._blacklist.indexOf(+this._ackRecog) && (this._ackRecog = 0), void (t.EhSWiR.m_ack_Char = t.NWRFmB.ins().getCharRole(this._ackRecog)); + } + var a = Number.MAX_VALUE; + this._ackRecog = 0; + var r = 0, + o = 0, + l = void 0, + h = void 0; + if (this.isFirst) { + if ((this.chickDrop(e, a), this._dropRecog)) return; + } else (this._dropRecog = 0), (this.isFirst = !0); + for (var p = 0; 8 > p; ++p) + if ( + ((r = i.currentX + KdbLz.DVnj.NEIGHBORPOS_X_VALUES[p]), + (o = i.currentY + KdbLz.DVnj.NEIGHBORPOS_Y_VALUES[p]), + (l = t.NWRFmB.ins().get_X_Y_CharRole(r, o)), + l && l.propSet.getRace() == t.ActorRace.Monster && ((h = t.VlaoF.Monster[l.propSet.getACTOR_ID()]), h && !l.deadChar && 1 == h.entityType && !h.isAIAck)) + ) { + (this._ackRecog = l.recog), (a = t.MathUtils.getDistanceByObject(i, l)); + break; + } + var u = !1; + if (0 == this._ackRecog) { + var c = t.NWRFmB.ins().YUwhM(); + if (n) + for (var p in c) + if (((l = c[p]), l.isCharRole && !l.isMy)) { + u = !0; + break; + } + for (var p in c) { + l = c[p]; + var g = this.isRange(i.currentX, i.currentY, l.currentX, l.currentY); + if ( + g && + l.propSet.getRace() == t.ActorRace.Monster && + -1 == this._blacklist.indexOf(+l.recog) && + ((h = t.VlaoF.Monster[l.propSet.getACTOR_ID()]), h && !l.deadChar && 1 == h.entityType && !h.isAIAck) + ) { + if (!t.GameMap.fubenID && n && u && l.propSet.getHp() != l.propSet.getMaxHp()) continue; + var d = t.MathUtils.getDistanceByObject(i, l); + a > d && ((a = d), (this._ackRecog = p)); + } + } + } + if (!this._ackRecog && n && u) { + var c = t.NWRFmB.ins().YUwhM(); + for (var p in c) { + l = c[p]; + var g = this.isRange(i.currentX, i.currentY, l.currentX, l.currentY); + if ( + g && + l.propSet.getRace() == t.ActorRace.Monster && + -1 == this._blacklist.indexOf(+l.recog) && + ((h = t.VlaoF.Monster[l.propSet.getACTOR_ID()]), h && !l.deadChar && 1 == h.entityType && !h.isAIAck) + ) { + if (!t.GameMap.fubenID) continue; + var d = t.MathUtils.getDistanceByObject(i, l); + a > d && ((a = d), (this._ackRecog = p)); + } + } + } + if (this._ackRecog) + return ( + this.clearplayXY(), + this.createDestinationXY(), + (t.EhSWiR.m_playerActon = t.PlayerAction.IDLE), + (t.EhSWiR.m_ack_Char = t.NWRFmB.ins().getCharRole(this._ackRecog)), + (a = null), + (r = null), + (o = null), + (l = null), + void (h = null) + ); + if (0 == this._dropRecog) + if (-1 == this._destinationXY.x || -1 == this._destinationXY.y || (this._destinationXY.x == i.currentX && this._destinationXY.y == i.currentY)) { + if ((this.createDestinationXY(), t.GameMap.scenes && t.GameMap.scenes.hook && t.GameMap.scenes.hook.length)) { + this.hookIdx > t.GameMap.scenes.hook.length - 1 && (this.hookIdx = 0); + var m = t.GameMap.scenes.hook[this.hookIdx]; + m && ((this._destinationXY.x = m.x), (this._destinationXY.y = m.y)), this.hookIdx++; + } + (this.playXY.x = this.playXY.y = 0), this.clearplayXY(), (this.recordTime = e); + } else + this.playXY.x == i.currentX && this.playXY.y == i.currentY + ? e - this.recordTime > 2e3 && (this.createDestinationXY(), t.EhSWiR.m_ack_Char && t.EhSWiR.ClearChar(t.EhSWiR.m_ack_Char.recog)) + : ((this.recordTime = e), (this.playXY.x = i.currentX), (this.playXY.y = i.currentY)); + else this.clearplayXY(); + (a = null), (r = null), (o = null), (l = null), (h = null); + } + } + }), + (i.prototype.isRange = function (t, e, i, n) { + return Math.abs(t - i) > 13 || Math.abs(e - n) > 8 ? !1 : !0; + }), + (i.prototype.chickDrop = function (e, i) { + this._dropRecog = 0; + var n, + s, + a = t.NWRFmB.ins().dropList, + r = t.NWRFmB.ins().getPayer; + if ((this.isPickUpPet && ((s = this.petChickDrop(e)), s.length && t.hADk.ins().s_15_10(s)), t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1))) { + var o = t.XwoNAr.ins().getDataById(65533).isSelected1, + l = void 0; + for (var h in a) + if (((n = a[h]), -1 == this._blacklist.indexOf(+h) && (!s || -1 == s.indexOf(h)))) { + if (65534 != n.packetId && 65535 != n.packetId) { + var p = t.VlaoF.StdItems[n.packetId]; + if ((p && (l = t.ThgMu.ins().getBagTypeItemNum(p.packageType)), 1 > l)) continue; + } + if (!(n.timeRemaining > e || t.NWRFmB.ins().checkWalkable(n.nX, n.nY) || t.NWRFmB.ins().getTeleport(n.nX, n.nY))) { + if (!t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Pick)) { + var u = t.XwoNAr.ins().getDataById(n.packetId); + if (!u || !(u.isSelected1 || (o && n.isBest))) continue; + } + var c = t.MathUtils.getDistanceByObject(r, n) - 20; + i >= c && ((i = c), (this._dropRecog = h), (this._ackRecog = 0)); + } + } + } + }), + (i.prototype.isInside = function (t, e, i, n, s, a) { + return i > t || t > i + s || n > e || e > n + a ? !1 : !0; + }), + (i.prototype.petChickDrop = function (e) { + var i = []; + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1)) { + var n = t.NWRFmB.ins().getPayer, + s = this.isPickUpPet, + a = n.currentX - s, + r = n.currentY - s, + o = t.NWRFmB.ins().dropList, + l = t.XwoNAr.ins().getDataById(65533).isSelected1, + h = void 0; + for (var p in o) { + var u = o[p], + c = this.isInside(u.nX, u.nY, a, r, 2 * s, 2 * s); + if (c && -1 == this._blacklist.indexOf(+p)) { + if (65534 != u.packetId && 65535 != u.packetId) { + var g = t.VlaoF.StdItems[u.packetId]; + if ((g && (h = t.ThgMu.ins().getBagTypeItemNum(g.packageType)), 1 > h)) continue; + } + if (!(u.timeRemaining > e)) { + if (!t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Pick)) { + var d = t.XwoNAr.ins().getDataById(u.packetId); + if (!d || !(d.isSelected1 || (l && u.isBest))) continue; + } + i.push(p); + } + } + } + } + return i; + }), + (i.prototype.onClickTab = function () { + var e = t.NWRFmB.ins().getPayer; + if (e) { + if (this.isOpen) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System94 + "|"); + var i = Number.MAX_VALUE, + n = void 0, + s = t.NWRFmB.ins().YUwhM(), + a = []; + for (var r in s) + if ( + ((n = s[r]), + (3 != e.propSet.getPKtype() || !e.propSet.getGuildId() || e.propSet.getGuildId() != n.propSet.getGuildId()) && n.isCharRole && !n.isMy && !n.deadChar && e.lockTarget != n.recog) + ) { + var o = Math.abs(t.MathUtils.getDistanceByObject(e, n)); + i >= o ? (Math.abs(o - i) > 32 && ((a.length = 0), (i = o)), a.push(n.recog)) : Math.abs(o - i) < 32 && a.push(n.recog); + } + if (!a.length) { + if (((a = null), e.lockTarget)) { + var l = t.NWRFmB.ins().getCharRole(e.lockTarget); + if (l) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System103 + t.CrmPU.language_System105 + "|C:0xffffff&T:" + l.propSet.getName() + "||"); + } + return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System103 + "|"); + } + if (1 == a.length) t.Nzfh.ins().postUpdateTarget(a[0]), (n = t.NWRFmB.ins().getCharRole(a[0])); + else { + var h = Math.floor(Math.random() * a.length); + t.Nzfh.ins().postUpdateTarget(a[h]), (n = t.NWRFmB.ins().getCharRole(a[h])); + } + n + ? t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System95 + "|C:0xffffff&T:" + n.propSet.getName() + "||") + : e.lockTarget && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_System103 + "|"), + (n = null), + (a = null); + } + }), + (i.prototype.getNearestMonster = function () { + var e, + i, + n, + s = t.NWRFmB.ins().YUwhM(), + a = t.NWRFmB.ins().getPayer, + r = Number.MAX_VALUE; + for (var o in s) { + e = s[o]; + var l = this.isRange(a.currentX, a.currentY, e.currentX, e.currentY); + if (l && e.propSet.getRace() == t.ActorRace.Monster && ((i = t.VlaoF.Monster[e.propSet.getACTOR_ID()]), i && !e.deadChar && 1 == i.entityType && !i.isAIAck)) { + var h = t.MathUtils.getDistanceByObject(a, e); + r > h && ((r = h), (n = o)); + } + } + return n && t.Nzfh.ins().postUpdateTarget(n), n; + }), + (i.prototype.getNearestMonster_magicBOSS = function () { + var e, + i, + n, + s = t.NWRFmB.ins().YUwhM(), + a = t.NWRFmB.ins().getPayer, + r = Number.MAX_VALUE; + for (var o in s) { + e = s[o]; + var l = this.isRange(a.currentX, a.currentY, e.currentX, e.currentY); + if (l && e.propSet.getRace() == t.ActorRace.Monster && ((i = t.VlaoF.Monster[e.propSet.getACTOR_ID()]), i && 1 == i.ascriptionopen)) { + var h = t.MathUtils.getDistanceByObject(a, e); + r > h && ((r = h), (n = o)); + } + } + return n; + }), + i + ); + })(t.BaseClass); + (t.qTVCL = e), __reflect(e.prototype, "app.qTVCL"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.itemList.itemRenderer = t.ItemBase), this.vKruVZ(this.enterFb, this.onClick), this.vKruVZ(this.btnMore, this.onClick); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.VlaoF["Activity" + this.data.actiType + "Config"]; + if (e) { + var i = e[this.data.actiID]; + if (((this.itemCfg = i), i)) { + (this.imgBg.source = i.bg ? i.bg + "_png" : "Act_hdbg2_1_png"), + (this.title.source = i.titleIcon ? i.titleIcon : ""), + (this.systemJieShao.textFlow = t.hETx.qYVI(i.describe)), + (this.enterFb.label = i.rewardBtn); + var n = t.TQkyOx.ins().getActivityInfo(this.data.actiID); + if ( + (n && n.info && n.info.times ? (this.residueCount.text = t.zlkp.replace(t.CrmPU.language_Common_64, n.info.times)) : (this.residueCount.text = ""), + i.ruleID ? ((this.rule.visible = !0), (this.rule.ruleId = i.ruleID)) : (this.rule.visible = !1), + (this.redPoint.visible = !1), + 0 == i.Id) + ) + for (var s in e) { + var a = e[s]; + if (0 != a.Id) { + var r = t.TQkyOx.ins().getActivityInfo(a.Id); + if (a.buttoncolor && r && r.redDot) { + (this.redPoint.visible = !0), this.redPoint.setRedImg(a.buttoncolor); + break; + } + } + } + else if (19 == i.Id) + for (var s in e) { + var a = e[s]; + if (19 != a.Id) { + var r = t.TQkyOx.ins().getActivityInfo(a.Id); + if (a.buttoncolor && r && r.redDot) { + (this.redPoint.visible = !0), this.redPoint.setRedImg(a.buttoncolor); + break; + } + } + } + else if (3 == i.Id) { + if (i.buttoncolor) { + var o = t.TQkyOx.ins().getAppraisalRed(i.Id); + o && ((this.redPoint.visible = !0), this.redPoint.setRedImg(i.buttoncolor)); + } + } else i.buttoncolor && n && n.redDot && ((this.redPoint.visible = !0), this.redPoint.setRedImg(i.buttoncolor)); + (this.itemList.dataProvider = new eui.ArrayCollection(i.rewards)), (this.btnMore.visible = i.rewards.length > 3 ? !0 : !1); + } + } + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.enterFb.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), this.fEHj(this.btnMore, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.enterFb: + t.TQkyOx.ins().enterActivity(this.data.actiID); + break; + case this.btnMore: + this.itemCfg && t.mAYZL.ins().open(t.ShowGiftView, this.itemCfg.rewards); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityCopiesItem2 = e), __reflect(e.prototype, "app.ActivityCopiesItem2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._equips = []), (t._suitEquips = []), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "equips", { + get: function () { + return this._equips; + }, + set: function (t) { + this._equips = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "suitEquips", { + get: function () { + return this._suitEquips; + }, + set: function (t) { + this._suitEquips = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.initEquipItems = function (e) { + (this.equips = []), (this.suitEquips = []); + for (var i, n = 0, s = e.length; s > n; n++) (i = e[n]), i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield ? this.suitEquips.push(i) : this.equips.push(i); + }), + (i.prototype.getAllEquip = function (t) { + for (var e = this.suitEquips.concat(this.equips), i = 0; i < e.length; i++) if (e[i].wItemId == t) return !0; + return !1; + }), + (i.prototype.getSuitAttrColor = function (e, i, n) { + for (var s = 0, a = 8421504, r = this.suitEquips.concat(this.equips), o = 0; o < r.length; o++) + if (r[o].wItemId) { + var l = t.VlaoF.StdItems[r[o].wItemId]; + if (l && l.suitId > 0) { + var h = Math.floor(l.suitId / 100); + if (h == e) { + var p = l.suitId % 100; + p >= i && (s += 1); + } + } + } + return s == n && (a = 2682369), a; + }), + (i.prototype.getEquipsByPos = function (e) { + var i, n; + if ((n = e >= t.StdItemType.itEquipDiamond && e < t.StdItemType.itShield ? this.suitEquips : this.equips)) { + for (var s = 0; s < n.length; s++) if (((i = n[s]), i.nPos == e)) return i; + return null; + } + }), + (i.prototype.getModeEquip = function () { + for (var t, e = [], n = 0; n < i.EquipPosArr.length && 3 > n; n++) (t = this.getEquipItemByType(i.EquipPosArr[n])), t && e.push(t); + return e; + }), + (i.prototype.getOtherModeEquip = function () { + for (var t, e = [], n = 0; n < i.EquipPosArr.length && 3 > n; n++) (t = this.getOtherEquipItemByType(i.EquipPosArr[n])), t && e.push(t); + return e; + }), + (i.prototype.sendQueryEquip = function () { + t.bPGzk.ins().send_7_3(); + }), + (i.prototype.sendQueryOthersEquips = function (e, i) { + void 0 === i && (i = 1), t.bPGzk.ins().send_7_5(e, i); + }), + (i.prototype.sendWearEquip = function (e) { + t.bPGzk.ins().send_7_1(e); + }), + (i.prototype.sendTakeOffEquip = function (e, i) { + t.bPGzk.ins().send_7_2(e, i); + }), + (i.prototype.getEquipItemByType = function (e) { + if (!this.equips) return null; + for (var i, n = 0; n < this.equips.length; n++) { + var s = this.equips[n], + a = t.VlaoF.StdItems[s.wItemId]; + if (a && Number(a.type) == e) return (i = s); + } + return i; + }), + (i.prototype.getOtherEquipItemByType = function (e) { + if (!this.otherPlayerEquips.equips) return null; + for (var i, n = 0; n < this.otherPlayerEquips.equips.length; n++) { + var s = this.otherPlayerEquips.equips[n], + a = t.VlaoF.StdItems[s.wItemId]; + if (a && Number(a.type) == e) return (i = s); + } + return i; + }), + (i.prototype.wearEquip = function (e, i) { + void 0 === i && (i = 0); + var n, + s = !1; + if (((n = i >= t.StdItemType.itEquipDiamond && i < t.StdItemType.itShield ? this.suitEquips : this.equips), n && e)) { + for (var a = void 0, r = 0; r < n.length; r++) + if (((a = n[r]), a.nPos == i)) { + (e.nPos = i), (n[r] = e), (s = !0); + break; + } + s || ((e.nPos = i), n.push(e)), t.ckpDj.ins().sendEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, [e]); + t.VlaoF.editionConf.suit == t.MiOx.srvid && t.caJqU.ins().zihiqG(true); // 套装提示 + } + }), + (i.prototype.getItemDataBySeries = function (t, e) { + void 0 === e && (e = 0); + var i; + i = 0 == e ? this.equips : this.otherPlayerEquips.equips; + for (var n = 0; n < i.length; n++) { + var s = i[n], + a = s; + if (a && a.series && a.series.toString() == t.toString()) return s; + } + if (0 == e) { + i = this.suitEquips; + for (var n = 0; n < i.length; n++) { + var s = i[n], + a = s; + if (a && a.series && a.series.toString() == t.toString()) return s; + } + } + if (10 == e) { + i = this.otherPlayerEquips.suitEquips; + for (var n = 0; n < i.length; n++) { + var s = i[n], + a = s; + if (a && a.series && a.series.toString() == t.toString()) return s; + } + } + return null; + }), + (i.prototype.dropEquip = function (e) { + for (var i, n = this.equips.length, s = 0; n > s; s++) + if (((i = this.equips[s]), i.series.isCompleteEquals(e))) { + this.equips.splice(s, 1), t.ckpDj.ins().sendEvent(t.ItemEvent.EQUIP_DROP_EQUIP, [i]); + break; + } + n = this.suitEquips.length; + for (var s = 0; n > s; s++) + if (((i = this.suitEquips[s]), i.series.isCompleteEquals(e))) { + this.suitEquips.splice(s, 1), t.ckpDj.ins().sendEvent(t.ItemEvent.EQUIP_DROP_EQUIP, [i]); + break; + } + }), + (i.prototype.setOthersEquips = function (e) { + (this.otherPlayerEquips = e), t.otherPlayerData.init(), t.mAYZL.ins().ZbzdY(t.OtherPlayerView) && t.mAYZL.ins().close(t.OtherPlayerView), t.mAYZL.ins().open(t.OtherPlayerView); + }), + (i.prototype.getSuitBonusAttrById = function (e) { + for (var i, n = this.equips.length, s = (t.VlaoF.SuitItemCfg.suitId, 0); n > s; s++) { + i = this.equips[s]; + var a = t.VlaoF.StdItems[i.wItemId]; + if (a) { + var r = []; + if (a.staitcAttrs) for (var o = 0; o < a.staitcAttrs.length; o++) r.push(a.staitcAttrs[o]); + } + } + }), + // 是否穿戴套装 + (i.prototype.vGNEox = function (cfg, job) { + if (!cfg) return !1; + var c, o; + for (var a in cfg.equip) { + c = cfg.equip[a]; + o = this.getEquipsByPos(c.pos - 1); + if (!o || ((!c.job || (c.job && c.job == job)) && o.wItemId != c.id)) { + //console.log('error: ' + job + '.' + t.VlaoF.StdItems[c.id].name + ':' + c.id + ',' + (o ? o.wItemId : '0') + ':' + (o ? t.VlaoF.StdItems[o.wItemId].name : 'no pos')); + return !1; + //} else { + //console.log('success: ' + job + '.' + t.VlaoF.StdItems[c.id].name + ':' + c.id + ',' + (o ? o.wItemId : '0') + ':' + (o ? t.VlaoF.StdItems[o.wItemId].name : 'no pos')); + } + } + return !0; + }), + // 检查身上是否穿戴套装 + (i.prototype.zihiqG = function (e) { + var l = t.NWRFmB.ins().nkJT(), + job = l.propSet.getAP_JOB(); + + if (true === e) { + // 检查身上是否穿戴指定套装并提示 + var m, + c, + s, + cfg = t.VlaoF.SuitConfig; + if (!cfg) return; + + for (var a in cfg) { + // 遍历所有套装 + c = cfg[a]; + if (this.vGNEox(c, job)) { + m = c.map[0]; + //console.log(c.map); + s = t.VlaoF.Scenes[m]; + t.uMEZy.ins().IrCm("[" + c.name + "]已激活,可进入地图[" + (s ? s.scencename : "") + "]"); + break; + } + } + } else { + // 检查身上是否穿戴指定套装 + var suit = t.VlaoF.SuitConfig[e]; + if (!suit) return !1; + + if (!this.vGNEox(suit, job)) return !1; + } + return !0; + }), + (i.EquipPosArr = [ + t.StdItemType.itWeapon, + t.StdItemType.itDress, + t.StdItemType.itHelmet, + t.StdItemType.itNecklace, + t.StdItemType.itDecoration, + t.StdItemType.itBracelet, + t.StdItemType.itRing, + t.StdItemType.itGirdle, + t.StdItemType.itShoes, + t.StdItemType.itEquipDiamond, + t.StdItemType.itBambooHat, + t.StdItemType.itAVisor, + t.StdItemType.itCape, + t.StdItemType.itShield, + ]), + i + ); + })(t.DlUenA); + (t.caJqU = e), __reflect(e.prototype, "app.caJqU"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.sysId = t.jDIWJt.Equip), + i.YrTisc(1, i.post_7_1), + i.YrTisc(2, i.post_7_2), + i.YrTisc(3, i.post_7_3), + i.YrTisc(4, i.post_7_4), + i.YrTisc(5, i.post_7_5), + i.YrTisc(7, i.post_7_7), + i.YrTisc(8, i.post_7_8), + i.YrTisc(15, i.post_7_15), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_7_1 = function (t) { + var e = this.MxGiq(1); + t.writeToBytes(e), this.evKig(e); + }), + (i.prototype.send_7_2 = function (t, e) { + var i = this.MxGiq(2); + t.writeToBytes(i), i.writeByte(e), this.evKig(i); + }), + (i.prototype.send_7_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.send_7_5 = function (t, e) { + var i = this.MxGiq(5); + i.writeUnsignedInt(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_7_1 = function (e) { + var n = t.NWRFmB.ins().getPayer, + s = new t.userItem(e); + if (n && n.propSet) { + var a = i.equipScore(s, n.propSet.getAP_JOB()); + s.itemScore = a; + } + var r = e.readByte(); + t.caJqU.ins().wearEquip(s, r); + }), + (i.prototype.post_7_2 = function (e) { + var i = new t.userItem(e); + t.caJqU.ins().dropEquip(i.series); + }), + (i.prototype.post_7_3 = function (e) { + for (var n, s, a = e.readByte(), r = new Array(a), o = t.NWRFmB.ins().nkJT(), l = 0; a > l; l++) + if (((n = new t.userItem(e)), (r[l] = n), (s = e.readByte()), (n.nPos = s), o && o.propSet)) { + var h = i.equipScore(n, o.propSet.getAP_JOB()); + n.itemScore = h; + } + t.caJqU.ins().initEquipItems(r); + }), + (i.prototype.post_7_4 = function (e) { + var i = e.readByte(), + n = new t.userItem(e), + s = t.caJqU.ins().getEquipsByPos(i); + (s.topLine = n.topLine), (s.wStar = n.wStar); + }), + (i.prototype.post_7_5 = function (e) { + var i = new t.OtherPlayerInfos(e); + t.caJqU.ins().setOthersEquips(i); + }), + (i.prototype.send_7_7 = function (t) { + var e = this.MxGiq(7); + e.writeUnsignedInt(t), this.evKig(e); + }), + (i.prototype.send_7_8 = function (t, e) { + var i = this.MxGiq(8); + i.writeUnsignedInt(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_7_7 = function (e) { + var i = new t.OtherPlayerInfos(e); + return i; + }), + (i.prototype.post_7_8 = function (e) { + var i = new t.OtherPlayerInfos(e); + return i; + }), + (i.prototype.send_7_15 = function (t, e) { + var i = this.MxGiq(15); + i.writeUnsignedInt(t), i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.post_7_15 = function (e) { + var i = new t.BossBelongVo(); + e.readByte(); + return ( + (i.nBossid = e.readInt()), + (i.isBelong = e.readByte()), + 1 == i.isBelong && + ((i.playerId = e.readUnsignedInt()), + (i.job = e.readByte()), + (i.sex = e.readByte()), + (i.playerName = e.readString()), + (i.guildName = e.readString()), + (i.isSbk = e.readByte()), + (i.maxHp = e.readInt()), + (i.currentHp = e.readInt()), + (i.recog = e.readNumber())), + i + ); + }), + (i.prototype.getRecommendEquip = function () { + var e = !1; + i.equipSouce = {}; + var n = t.NWRFmB.ins().nkJT(); + if (n && n.propSet) + for (var s = 0; s < t.ThgMu.ins().bagItem[1].length; s++) { + var a = t.ThgMu.ins().bagItem[1][s], + r = t.VlaoF.StdItems[a.wItemId]; + if (a && r && (0 == r.suggVocation || r.suggVocation == n.propSet.getAP_JOB())) { + var o = t.pWFTj.ins().getItemUseState(r); + if (1 == o) { + var l = t.caJqU.ins().getEquipsByPos(r.type - 1); + if (l && l.series) { + if (l.itemScore < a.itemScore) { + if (i.equipSouce[r.type - 1]) { + var h = i.equipSouce[r.type - 1].itemScore; + h < a.itemScore && (i.equipSouce[r.type - 1] = a); + } else i.equipSouce[r.type - 1] = a; + e = !0; + } + } else if (((e = !0), i.equipSouce[r.type - 1])) { + var h = i.equipSouce[r.type - 1].itemScore; + h < a.itemScore && (i.equipSouce[r.type - 1] = a); + } else i.equipSouce[r.type - 1] = a; + } + } + } + e && i.ins().showGoodEquipTips(); + }), + (i.getIsGoodEquip = function (e, n) { + var s = t.VlaoF.StdItems[e.wItemId]; + if (s && (0 == s.suggVocation || s.suggVocation == n)) { + var a = t.pWFTj.ins().getItemUseState(s); + if (1 == a) { + var r = t.caJqU.ins().getEquipsByPos(s.type - 1); + if (r && r.series) { + if (r.itemScore < e.itemScore) + if (i.equipSouce[s.type - 1]) { + var o = i.equipSouce[s.type - 1].itemScore; + o < e.itemScore && (i.equipSouce[s.type - 1] = e); + } else i.equipSouce[s.type - 1] = e; + } else if (i.equipSouce[s.type - 1]) { + var o = i.equipSouce[s.type - 1].itemScore; + o < e.itemScore && (i.equipSouce[s.type - 1] = e); + } else i.equipSouce[s.type - 1] = e; + } + } + }), + (i.prototype.showGoodEquipTips = function () { + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Recommend) && + (i.ZbzdY || ((i.ZbzdY = !0), t.KHNO.ins().remove(this.updateShowTips, this), t.KHNO.ins().tBiJo(2e3, 1, this.updateShowTips, this))); + }), + (i.prototype.updateShowTips = function () { + (i.ZbzdY = !1), t.DAhY.ins().showItemTip(); + }), + (i.equipScore = function (e, i) { + var n = 0, + s = t.VlaoF.EquipValuation[i], + a = t.VlaoF.StdItems[e.wItemId], + r = []; + if (a && a.staitcAttrs) { + for (var o = 0; o < a.staitcAttrs.length; o++) r.push(a.staitcAttrs[o]); + if (e && a.staitcAttrs && "" != e.topLine && void 0 != e.topLine) { + for (var l = t.AttributeData.getBestAttrs(e), h = t.AttributeData.getTotalAttrs(r, l), o = 0; o < h.length; o++) { + var p = h[o], + u = s[p.type]; + u && (n += u.unitVal * p.value); + } + if (e.wStar > 0) { + var c = t.VlaoF.UpstarConfig[e.wItemId][e.wStar]; + if (c) { + var g = []; + for (var d in c.attribute) g.push(c.attribute[d]); + for (var m = 0; m < g.length; m++) { + var p = g[m], + u = s[p.type]; + u && (n += u.unitVal * p.value); + } + } + } + } else { + for (var o = 0; o < r.length; o++) { + var p = r[o], + u = s[p.type]; + u && (n += u.unitVal * p.value); + } + if (e.wStar > 0) { + var c = t.VlaoF.UpstarConfig[e.wItemId][e.wStar]; + if (c) { + var g = []; + for (var d in c.attribute) g.push(c.attribute[d]); + for (var m = 0; m < g.length; m++) { + var p = g[m], + u = s[p.type]; + u && (n += u.unitVal * p.value); + } + } + } + } + } + return n; + }), + (i.equipSouce = {}), + (i.ZbzdY = !1), + i + ); + })(t.DlUenA); + (t.bPGzk = e), __reflect(e.prototype, "app.bPGzk"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + var i = e.call(this) || this; + return (i._fashionDic = {}), (i.sysId = t.jDIWJt.Fashion), i.YrTisc(1, i.post_51_1), i.YrTisc(2, i.post_51_2), i.YrTisc(3, i.post_51_3), i.YrTisc(4, i.post_51_4), i; + } + return ( + __extends(n, e), + (n.ins = function () { + return e.ins.call(this); + }), + (n.prototype.send_51_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (n.prototype.send_51_2 = function (t, e) { + var i = this.MxGiq(2); + i.writeInt(t), i.writeByte(e), this.evKig(i); + }), + (n.prototype.send_51_3 = function (t) { + var e = this.MxGiq(3); + e.writeInt(t), this.evKig(e); + }), + (n.prototype.send_51_4 = function (t) { + var e = this.MxGiq(4); + e.writeInt(t), this.evKig(e); + }), + (n.prototype.post_51_1 = function (t) { + this._fashionDic = {}; + for (var e, n = t.readByte(), s = 0; n > s; s++) (e = new i()), (e.id = t.readInt()), (e.state = t.readByte()), (e.lv = t.readInt()), (this._fashionDic[e.id] = e); + }), + (n.prototype.post_51_2 = function (e) { + var i = e.readInt(), + n = e.readByte(), + s = e.readByte(), + a = t.VlaoF.FashionattributeConfig, + r = t.VlaoF.FashionsetConfig.cover; + if (1 == n) { + for (var o in this._fashionDic) + for (var l in a) { + var h = a[l][this._fashionDic[o].id]; + if (h) + for (var p = 0; p < r[s - 1].length; p++) { + var u = r[s - 1][p]; + h.type == u && (this._fashionDic[o].state = 0); + } + } + this._fashionDic[i].state = 1; + } else this._fashionDic[i].state = 0; + return n; + }), + (n.prototype.post_51_3 = function (e) { + var n = e.readByte(); + if (0 == n) { + var s = e.readInt(), + a = e.readByte(), + r = e.readByte(), + o = t.VlaoF.FashionattributeConfig, + l = t.VlaoF.FashionsetConfig.cover; + if (1 == a) + for (var h in this._fashionDic) + for (var p in o) { + var u = o[p][this._fashionDic[h].id]; + if (u) + for (var c = 0; c < l[r - 1].length; c++) { + var g = l[r - 1][c]; + u.type == g && (this._fashionDic[h].state = 0); + } + } + var d = void 0; + this.fashionDic[s] || ((d = new i()), (d.id = s), (d.state = a), (d.lv = 1)), (this._fashionDic[s] = d); + } else 1 == n ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips99) : 2 == n && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips89); + return n; + }), + (n.prototype.post_51_4 = function (e) { + var i = e.readByte(); + if (0 == i) { + var n = e.readInt(), + s = e.readInt(); + this.fashionDic[n] && (this.fashionDic[n].lv = s); + } else 1 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips99) : 2 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips97) : 3 == i && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips98); + return i; + }), + Object.defineProperty(n.prototype, "fashionDic", { + get: function () { + return this._fashionDic; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.addfashionDic = function (t, e, i) {}), + (n.prototype.onChangeFashionLv = function (t, e, i) { + (this._fashionDic[t].lv = e), (this._fashionDic[t].state = i); + }), + (n.prototype.isSatisFashionActOrUpdate = function () { + return n.ins().isOpenSytemById(t.SystemOpenEnum.LatestFashion) + ? n.ins().isSatisFashionAct() + ? 1 + : t.BlessMgr.ins().isCanBless() + ? 1 + : t.StrengthenMgr.ins().fourImageRed() + ? 1 + : t.edHC.ins().getOfficeRed() + ? 1 + : 0 + : void 0; + }), + (n.prototype.isSatisFashionAct = function () { + var e = 0; + if (n.ins().isOpenSytemById(t.SystemOpenEnum.LatestFashion)) { + var i = t.VlaoF.FashionattributeConfig; + for (var s in i) { + for (var a in i[s]) { + var r = i[s][a]; + e = n.ins().getFashionRedPoint(r.type); + break; + } + if (1 == e) return e; + } + return e; + } + }), + (n.prototype.isOpenSytemById = function (e) { + var i, + n = t.NWRFmB.ins().nkJT(); + if (n && n.propSet) { + var s = n.propSet.mBjV(), + a = n.propSet.MzYki(), + r = t.GlobalData.sectionOpenDay, + o = t.VlaoF.SystemOpen[e]; + i = this.getState(o.id, s, a, r); + } + return i; + }), + (n.prototype.getState = function (e, i, n, s) { + var a = t.edHC.ins().getSysOpenCfgById(e); + return i < a.openLevel || n < a.openCircle || s < a.openDay ? 0 : 1; + }), + (n.prototype.findItemFromBag = function () { + for (var e, i, n, s = t.JgMyc.ins().roleModel.getAllFashionData(), a = 0, r = s.length; r > a; a++) + if (((e = s[a]), (i = e[0].id), (n = e[0].lv), 1 == e[2])) { + var o = t.VlaoF.FashionupgradeConfig, + l = Object.keys(o[i]).length; + if (((l -= 1), l > n)) return 1; + } + return 0; + }), + (n.prototype.isMaxLevel = function () { + for (var e, i, n, s = t.JgMyc.ins().roleModel.getAllFashionData(), a = t.VlaoF.FashionupgradeConfig, r = (Object.keys(a).length, 0), o = [], l = 0, h = s.length; h > l; l++) { + (e = s[l]), (i = e[0].id), (n = e[0].lv); + var p = Object.keys(a[i]).length; + (p -= 1), p == n && r++, o.push(p); + } + for (var u = 0, c = 0; c < o.length; c++) u += o[c]; + return r == u ? 0 : 1; + }), + (n.prototype.isSatisfyClothesAct = function () {}), + (n.prototype.isSatisfyArmsAct = function () {}), + (n.prototype.isSatisfyItemAct = function (e) { + for (var i, n, s = t.JgMyc.ins().roleModel.getAllFashionData(), a = 0, r = s.length; r > a; a++) + if (e == s[a][0].id) { + (i = s[a][0].lv), (n = s[a][2]); + var o = t.VlaoF.FashionupgradeConfig, + l = Object.keys(o[s[a][0].id]).length; + if (((l -= 1), 1 == n && l > i)) return 1; + } + return 0; + }), + (n.prototype.selectedIsCanAct = function () {}), + (n.prototype.selectedItemIsMaxLevel = function () { + for (var e, i, s, a = t.JgMyc.ins().roleModel.getAllFashionData(), r = t.VlaoF.FashionupgradeConfig, o = (Object.keys(r).length, 0), l = a.length; l > o; o++) + if (((e = a[o]), (i = e[0].id), (s = e[0].lv), n.ins().selectedId == i)) { + var h = Object.keys(r[i]).length; + if (((h -= 1), h == s)) return 0; + } + return 1; + }), + (n.prototype.getFashionRedPoint = function (e) { + var i = 0, + s = t.VlaoF.FashionattributeConfig[e], + a = n.ins().fashionDic; + for (var r in s) { + var o = s[r]; + if (a && a[o.id]) { + var l = t.VlaoF.FashionupgradeConfig[o.id][a[o.id].lv + 1]; + l && (i = t.ZAJw.isRedDot(l.consume)); + } else i = t.ZAJw.isRedDot(o.consume); + if (1 == i) return i; + } + return i; + }), + n + ); + })(t.DlUenA); + (t.rTRv = e), __reflect(e.prototype, "app.rTRv"); + var i = (function () { + function t() { + this.red = 0; + } + return t; + })(); + (t.FashionData = i), __reflect(i.prototype, "app.FashionData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.getMeridiansAttrib = function (e, i) { + for (var n = [], s = t.VlaoF.MeridiansConfig, a = s[e] && s[e].attrs, r = 0; r < (a && a.length); r++) { + var o = t.AttributeData.getItemAttStrByType(a[r], a, 1, i); + "" != o && n.push(o); + } + return n; + }), + e + ); + })(); + (t.MeridiansData = e), __reflect(e.prototype, "app.MeridiansData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.sysId = t.jDIWJt.Circle), i.YrTisc(4, i.post_11_4), i; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_11_4 = function () { + var t = this.MxGiq(4); + this.evKig(t); + }), + (i.prototype.post_11_4 = function (t) { + (this.result = t.readByte()), (this.meridiansLevel = t.readByte()); + }), + (i.prototype.getMeridiansCurLevel = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet; + return i && i.getMeridians(); + }), + (i.prototype.getDot = function () { + var e = t.VlaoF.SystemOpen[8], + i = t.mAYZL.ins().isCheckTabOpen(e); + if (!i) return 0; + var n = t.NWRFmB.ins().getPayer; + if (n && n.propSet) { + var s = n.propSet, + a = t.VlaoF.MeridiansSetConfig.limit; + if (s.getMeridians() >= a) return 0; + var r = n.propSet.MzYki(), + o = s.getMeridians() + 1, + l = t.VlaoF.MeridiansConfig[o]; + if (l) { + if (r < l.circle) return 0; + var h = l.cost[0], + p = t.ZAJw.MPDpiB(h.type, h.id); + return p < h.count ? 0 : 1; + } + } + return 0; + }), + (i.prototype.getRedById = function (e) { + var i = t.VlaoF.MeridiansConfig; + for (var n in i) { + var s = i[n]; + if (s && s.cost) { + var a = s.cost.filter(function (t) { + return t.id == e; + }); + if (a.length > 0) return this.getDot(); + } + } + return 0; + }), + i + ); + })(t.DlUenA); + (t.MeridiansMgr = e), __reflect(e.prototype, "app.MeridiansMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.exchangeListData = {}), + (this.jobSkillListData = {}), + (this.currencySkillListData = {}), + (this.dicStrengthen = { + 1: "武器部位", + 2: "衣服部位", + 3: "腰带部位", + 4: "鞋子部位", + 5: "戒指部位", + 6: "护腕部位", + 7: "项链部位", + 8: "头盔部位", + }); + } + return ( + (e.prototype.init = function () { + var e = t.VlaoF.ExchangCircleConfig; + this.setExchangeData(e); + var i = t.VlaoF.SkillConf; + this.setSkillData(i), (this.meridiansConfig = t.VlaoF.MeridiansConfig), (this.blessConfig = t.VlaoF.BlessConfig), this.setBless(this.blessConfig); + }), + (e.prototype.setExchangeData = function (t) { + if (!(this.exchangeListData && Object.keys(this.exchangeListData).length > 0)) { + var e, + i, + n, + a = 0; + for (var r in t) + (e = t[r]), + (i = new s()), + (i.idx = a), + (i.type = e.type), + (i.cost = e.cost), + (i.value = e.value), + (i.useTimes = e.useLimit), + (i.useLimit = e.useLimit), + 1 == e.type && (i.id = 259), + (this.exchangeListData[r] = i), + (n = 1 == e.type ? 259 : 0), + (this.exchangeListData[r] = i), + (i = null), + a++; + } + }), + (e.prototype.setSkillData = function (e) { + if ( + this.curJob != t.NWRFmB.ins().getPayer.propSet.getAP_JOB() || + !((this.jobSkillListData && Object.keys(this.jobSkillListData).length > 0) || (this.currencySkillListData && Object.keys(this.currencySkillListData).length > 0)) + ) { + var i, + n = {}, + s = {}, + a = t.NWRFmB.ins().getPayer.propSet.getAP_JOB(); + this.curJob = a; + for (var r in e) (i = e[r]), (a != i.vocation && 0 != i.vocation) || i.isDelete || (1 == i.skillClass && (n[r] = i), 3 == i.skillClass && (s[r] = i)); + (this.jobSkillListData = n), (this.currencySkillListData = s); + } + }), + (e.prototype.setBless = function (e) { + if (!(this.blessDatas && this.blessDatas.length > 0)) { + this.blessDatas = []; + var i, + n, + s, + a, + o, + l, + h = "", + p = ""; + for (var u in e) { + (i = new r()), (n = e[u]), (s = e[Number(u) + 1]), (i.level = n.level); + var c = void 0, + g = void 0; + if (n) + for (a = n.attrs, i.blessCur = n.needBlessValue, c = t.CrmPU.language_bless[1], i.attrsCur.push(c), l = 0; l < a.length; l++) + (h = t.AttributeData.getItemAttStrByType(a[l], a, 1)), "" != h && i.attrsCur.push(h); + if (s) + for (o = s.attrs, i.blessNext = s.needBlessValue, g = t.CrmPU.language_bless[2], i.attrsNext.push(g), l = 0; l < o.length; l++) + (p = t.AttributeData.getItemAttStrByType(o[l], o, 1)), "" != p && i.attrsNext.push(p); + this.blessDatas.push(i); + } + } + }), + (e.prototype.getStarLev = function () { + for (var e, i = t.NWRFmB.ins().nkJT().propSet, n = i.getBless(), s = this.blessDatas.length, a = 0; s > a; a++) + if (((e = this.blessDatas[a]), n >= e.blessCur && n < e.blessNext)) return e.level; + var r = this.blessDatas[0].level; + for (var a in this.blessDatas) { + var o = this.blessDatas[a]; + o.level > r && (r = o.level); + } + return r; + }), + (e.prototype.getSuitDataById = function (e) { + var i, + s, + a = t.VlaoF.SuitItemCfg[e], + r = new n(), + o = "", + l = (t.NWRFmB.ins().nkJT().propSet, a.attr), + h = a.percent, + p = []; + for (i = 0; i < l.length; i++) (s = {}), (s.type = a.attr[i].type), (s.value = a.attr[i].value), p.push(s); + var u, + c = this.getBasicEquipAttr(); + for (i = 0; i < p.length; i++) { + u = 0; + for (var g = a.attr[i].type, d = 0; d < c.length; d++) + for (var m = c[d], f = 0; f < m.length; f++) + if (m[f].type == g) { + u += m[f].value; + break; + } + (p[i].value = h > 0 ? Math.floor(u * (h / 100)) : p[i].value), (o = t.AttributeData.getItemAttStrByType(p[i], p, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != o && r.attrs.push(o); + } + return r.attrs; + }), + (e.prototype.getBasicEquipAttr = function () { + for (var e = [], i = t.caJqU.ins().equips, n = 0; n < i.length; n++) { + var s = i[n], + a = t.VlaoF.StdItems[s.wItemId]; + e.push(a.staitcAttrs); + } + return e; + }), + (e.prototype.getStrengthenAttr = function (e, i, n) { + if (!(n > 1e3)) { + 0 == i && ((i = 8), e > 1 && e--); + for (var s, a = {}, r = 1; n >= r; r++) (s = t.VlaoF.EquipStrengthenConfig[i][e]), (a[r] = s), i > 1 ? i-- : ((i = 8), e > 1 && e--); + return a; + } + }), + (e.prototype.getCurStrengthenData = function (e) { + var i, + n, + s = t.StrengthenMgr.ins().strengthenDic[e]; + if (e == l.Equip) { + if (s && s.length > 0) { + (i = s[s.length - 1].lv), (n = s[s.length - 1].pos); + for (var a = s.length - 1; a >= 0; a--) { + var r = s[a].lv, + o = s[a].pos >= 8 ? 1 : s[a].pos; + if (i > r || r > i) return (n = o), n++, n > 8 ? ((n = 1), i++) : (i = r), [i, n]; + } + return n++, n > 8 && ((n = 1), 125 > i && i++), [i, n]; + } + return null; + } + }), + (e.prototype.getRingConfig = function (e, i, n) { + var s; + if (n) { + var a = t.VlaoF.RingBuyJobConfig[e][i]; + a && (s = a[n]); + } else s = t.VlaoF.SpecialRingConfig[e][i]; + return s; + }), + (e.prototype.getRingMax = function (e) { + var i; + if (2 == e || 3 == e) { + var n = t.VlaoF.RingBuyJobConfig[e], + s = Object.keys(n); + i = s.length > 1 ? Number(s[s.length - 1]) : Number(s[0]); + } else if (1 == e) { + var n = t.VlaoF.SpecialRingConfig[e], + s = Object.keys(n); + i = s.length > 1 ? Number(s[s.length - 1]) : Number(s[0]); + } + return i; + }), + (e.prototype.getRingLiveState = function (e) { + var i = t.StrengthenMgr.ins().strengthenDic[l.RingJob], + n = !1; + if (i) for (var s = 0, a = i.length; a > s; s++) i[s].pos == e && (n = !0); + return n; + }), + (e.prototype.getAllRingData = function () { + var e, + i = t.StrengthenMgr.ins().strengthenDic[l.Special], + n = t.StrengthenMgr.ins().strengthenDic[l.RingJob], + s = [], + a = t.VlaoF.SpecialRingConfig, + r = t.VlaoF.RingBuyJobConfig, + o = t.NWRFmB.ins().getPayer; + for (var h in a) { + var p = a[h][0]; + (e = new t.SpecialRingConfig()), (e.attr = p.attr), (e.cost = p.cost), (e.lv = p.lv), (e.name = p.name), (e.pos = p.pos), s.push(e); + } + var u = o.propSet.getAP_JOB(), + c = r[2][1][u]; + if (((e = new t.SpecialRingConfig()), (e.attr = c.attr), (e.cost = c.cost), (e.lv = c.lv), (e.name = c.name), (e.pos = c.pos), (e.job = c.job), s.push(e), n && n.length > 0)) { + var g = r[3][1][u]; + (e = new t.SpecialRingConfig()), (e.attr = g.attr), (e.cost = g.cost), (e.lv = g.lv), (e.name = g.name), (e.pos = g.pos), (e.job = g.job), s.push(e); + } + if (i && i.length > 0) + for (var h in i) + for (var d = i[h], m = 0, f = s.length; f > m; m++) + if (s[m].pos == d.pos) { + s[m].lv = d.lv; + break; + } + if (n && n.length > 0) + for (var h in n) + for (var d = n[h], m = 0, f = s.length; f > m; m++) + if (s[m].pos == d.pos) { + s[m].lv = d.lv; + break; + } + return s; + }), + (e.prototype.getRingAttr = function (e, i, n) { + for (var s, a = {}, r = i > 1 ? 0 : e, o = 0; r >= o; o++) { + if (n) { + var l = t.VlaoF.RingBuyJobConfig[i][e]; + l && (s = l[n]); + } else s = t.VlaoF.SpecialRingConfig[i][e]; + if (!s) return null; + if (((a[o] = s), !(e > 0))) break; + e--; + } + return a; + }), + (e.prototype.getAllFashionData = function () { + var e, + i, + n = t.rTRv.ins().fashionDic, + s = [], + a = t.VlaoF.FashionupgradeConfig; + for (var r in a) { + var o = 0, + l = void 0, + h = a[r][0]; + if ( + ((e = new t.FashionupgradeConfig()), + (e.id = h.id), + (e.lv = h.lv), + (e.attribute = h.attribute), + n[+r] + ? 0 == n[+r].lv + ? (l = t.VlaoF.FashionattributeConfig[n[+r].id]) + : ((l = t.VlaoF.FashionupgradeConfig[n[+r].id][n[+r].lv + 1]), l && ((e.consume = l.consume), (e.attribute = l.attribute)), (e.lv = n[+r].lv), (o = n[+r].state)) + : ((l = t.VlaoF.FashionattributeConfig[h.id]), (e.consume = l.consume)), + l && l.consume) + ) + for (var p in l.consume) { + var u = l.consume[p], + c = t.ZAJw.MPDpiB(u.type, u.id); + if (!(c < u.count)) { + i = 1; + break; + } + i = 0; + } + else i = 0; + s.push([e, o, i]); + } + return s; + }), + (e.prototype.setActId = function (e, i) { + for (var n = t.JgMyc.ins().roleModel.getAllFashionData(), s = 0, a = n.length; a > s; s++) + if (n[s][0].id == e) { + (n[s][0].lv = 1), (n[s][0].state = i), t.rTRv.ins().addfashionDic(n[s][0].id, n[s][0].lv, i), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_ACT, [n[s][0].id, n[s][0].lv, i]); + break; + } + }), + (e.prototype.setWearId = function (e, i) { + for (var n = t.JgMyc.ins().roleModel.getAllFashionData(), s = 0, a = n.length; a > s; s++) + if (n[s][0].id == e) { + (n[s][0].state = i), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_WEAR, [n[s][0].id, n[s][0].lv, n[s][0].state]), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_DISPLAY, [e, i]); + break; + } + }), + (e.prototype.setLv = function (e, i) { + for (var n = t.JgMyc.ins().roleModel.getAllFashionData(), s = 0, a = n.length; a > s; s++) + if (n[s][0].id == e) { + (n[s][0].lv = i), t.rTRv.ins().onChangeFashionLv(n[s][0].id, n[s][0].lv, n[s][1]), t.ckpDj.ins().sendEvent(t.CompEvent.FASHION_UPGRADE, [n[s][0].id, n[s][0].lv, n[s][1]]); + break; + } + }), + (e.prototype.getPropValueByIndex = function (e, i, n) { + var s, + a = e.mBjV(); + if (n && n > a) return null; + switch (i) { + case 5: + s = e.getHp() + "/" + e.getMaxHp(); + break; + case 6: + s = t.MathUtils.GetPercent(e.getHpBonus(), 1e4); + break; + case 7: + s = e.getCurMp() + "/" + e.getMaxMp(); + break; + case 9: + s = e.getPhysicalAttackMin() + "-" + e.getPhysicalAttackMax(); + break; + case 13: + s = e.getMagicAttackMin() + "-" + e.getMagicAttackMax(); + break; + case 17: + s = e.getWizardAttackMin() + "-" + e.getWizardAttackMax(); + break; + case 21: + s = e.getPhysicalDefenceMin() + "-" + e.getPhysicalDefenceMax(); + break; + case 25: + s = e.getMagicDefenceMin() + "-" + e.getMagicDefenceMax(); + break; + case 29: + s = e.getApHitRate(); + break; + case 31: + s = e.getApGogeRate(); + break; + case 33: + s = e.getMagicHitRate(); + break; + case 35: + s = t.MathUtils.GetPercent(e.getMagicDogeRate(), 1e4); + break; + case 45: + s = e.getApLuck(); + break; + case 47: + s = e.getHpRenew(); + break; + case 49: + s = e.getMpRenew(); + break; + case 64: + s = t.MathUtils.GetPercent(e.getProtection(), 1e4); + break; + case 141: + s = t.MathUtils.GetPercent(e.getSpeedMedicine(), 1e4); + break; + case 138: + s = t.MathUtils.GetPercent(e.getPropCritRate(), 1e4); + break; + case 136: + s = t.MathUtils.GetPercent(e.getPropCritMutRate(), 1e4); + break; + case 139: + s = e.getPropCritPower(); + break; + case 110: + s = e.getGoldEquipAttr5(); + break; + case 112: + s = e.getGoldEquipAttr6(); + break; + case 114: + s = e.getGoldEquipAttr7(); + break; + case 116: + s = e.getGoldEquipAttr8(); + break; + case 95: + s = e.getGoldEquipAttr1(); + break; + case 97: + s = e.getGoldEquipAttr2(); + break; + case 99: + s = e.getGoldEquipAttr3(); + break; + case 101: + s = e.getGoldEquipAttr4(); + break; + case 75: + s = t.MathUtils.GetPercent(e.getDamagebonus(), 1e4); + break; + case 54: + s = t.MathUtils.GetPercent(e.getDamagededuct(), 1e4); + break; + case 70: + s = t.MathUtils.GetPercent(e.getCut(), 1e4); + break; + case 79: + s = t.MathUtils.GetPercent(e.getSuckblood(), 1e4); + break; + case 82: + s = t.MathUtils.GetPercent(e.getIgnordefence(), 1e4); + break; + case 83: + s = t.MathUtils.GetPercent(e.getAckRatio(), 1e4); + break; + case 144: + s = t.MathUtils.GetPercent(e.getLootbindcoin(), 1e4); + break; + case 59: + s = t.MathUtils.GetPercent(e.getExpPower(), 1e4); + break; + case 84: + s = t.MathUtils.GetPercent(e.getPKDamageReduction(), 1e4); + break; + case 145: + s = e.getSkillAttr1(); + break; + case 146: + s = e.getSkillAttr2(); + break; + case 147: + s = e.getSkillAttr3(); + break; + case 148: + s = e.getSkillAttr4(); + break; + case 149: + s = e.getSkillAttr5(); + break; + case 150: + s = e.getSkillAttr6(); + break; + case 151: + s = e.getSkillAttr7(); + break; + case 152: + s = e.getSkillAttr8(); + break; + case 153: + s = e.getSkillAttr9(); + break; + case 154: + s = e.getSkillAttr10(); + break; + case 155: + s = e.getSkillAttr11(); + break; + case 156: + s = e.getSkillAttr12(); + break; + case 157: + s = e.getSkillAttr13(); + break; + case 158: + s = e.getSkillAttr14(); + break; + case 159: + s = e.getSkillAttr15(); + break; + case 160: + s = e.getSkillAttr16(); + } + return s; + }), + (e.prototype.getStateValueByIndex = function (e, i) { + var n; + switch (i) { + case 0: + n = "|C:0xa6937c&T:: " + e.mBjV() + "|"; + break; + case 1: + n = "|C:0xa6937c&T:: " + e.getEXP() + "|"; + break; + case 2: + n = "|C:0xa6937c&T:: " + (t.edHC.ins().getLevelUpExp() - e.getEXP()) + "|"; + break; + case 3: + e.mBjV() >= 50 && (n = "|C:0xa6937c&T:: " + e.MzYki() + "|"); + break; + case 4: + n = "|C:0xa6937c&T:: " + t.MiOx.serverAlias + "|"; + break; + case 5: + n = "|C:0xa6937c&T:" + (": " + t.GlobalData.sectionOpenDay + t.CrmPU.language_Time_Days) + "|"; + break; + case 6: + n = "|C:0x00ab08&T:: " + t.ZAJw.MPDpiB(ZnGy.qatMoney) + "|"; + break; + case 7: + n = "|C:0x00ab08&T:: " + t.ZAJw.MPDpiB(ZnGy.qatBindMoney) + "|"; + break; + case 8: + n = "|C:0x00ab08&T:: " + t.ZAJw.MPDpiB(ZnGy.qatYuanbao) + "|"; + break; + case 9: + n = "|C:0x00ab08&T:: " + t.ZAJw.MPDpiB(ZnGy.qatBindYb) + "|"; + break; + case 10: + n = "|C:0x00ab08&T:: " + t.ZAJw.MPDpiB(ZnGy.warNumber) + "|"; + break; + case 11: + var s = t.VlaoF.editionConf; + s && (n = s.Button ? "|C:0x00ab08&T:: " + e.getTradeQuota() + "|" : "|C:0x00ab08&T:: " + t.CrmPU.language_Common_53 + "|"); + break; + case 12: + n = "|C:0x3794fb&T:: " + e.getFlyshoes() + "|"; + break; + case 13: + break; + case 14: + n = "|C:0x3794fb&T:: " + e.getPKValue() + "|"; + break; + case 15: + break; + case 16: + n = "|C:0x3794fb&T:: " + e.getResurrection() + "|"; + break; + case 17: + n = "|C:0x3794fb&T:: " + e.getDimensionKey() + "|"; + break; + case 18: + n = "|C:0x3794fb&T:: " + e.getGuildLevel() + "|"; + } + return n; + }), + (e.GetStateName = function (e) { + return t.CrmPU.stateName[e]; + }), + (e.GetPropName = function (e) { + return t.CrmPU.propName[e]; + }), + (e.prototype.getMeridiansData = function () {}), + e + ); + })(); + (t.RoleData = e), __reflect(e.prototype, "app.RoleData"); + var i = (function () { + function t() { + (this.attrsCur = []), (this.attrsNext = []), (this.subDay = []); + } + return t; + })(); + (t.RoleCircleData = i), __reflect(i.prototype, "app.RoleCircleData"); + var n = (function () { + function t() { + this.attrs = []; + } + return t; + })(); + (t.SuitItemData = n), __reflect(n.prototype, "app.SuitItemData"); + var s = (function () { + function t() {} + return t; + })(); + (t.RoleExchangeData = s), __reflect(s.prototype, "app.RoleExchangeData"); + var a = (function () { + function t() {} + return t; + })(); + (t.RoleCircleInfo = a), __reflect(a.prototype, "app.RoleCircleInfo"); + var r = (function () { + function t() { + (this.attrsCur = []), (this.attrsNext = []); + } + return t; + })(); + (t.BlessLucklevel = r), __reflect(r.prototype, "app.BlessLucklevel"); + var o = (function () { + function t() {} + return t; + })(); + (t.StrengthenConds = o), __reflect(o.prototype, "app.StrengthenConds"); + var l; + !(function (t) { + (t[(t.Equip = 1)] = "Equip"), (t[(t.Four = 2)] = "Four"), (t[(t.Special = 3)] = "Special"), (t[(t.RingJob = 4)] = "RingJob"), (t[(t.WordFormu = 5)] = "WordFormu"); + })((l = t.StrengthenType || (t.StrengthenType = {}))); + var h; + !(function (t) { + (t[(t.Role = 1)] = "Role"), + (t[(t.Equip = 2)] = "Equip"), + (t[(t.MagicFashion = 3)] = "MagicFashion"), + (t[(t.LatestFashion = 4)] = "LatestFashion"), + (t[(t.Skill = 5)] = "Skill"), + (t[(t.Vocation = 6)] = "Vocation"), + (t[(t.Currency = 7)] = "Currency"), + (t[(t.Meridians = 8)] = "Meridians"), + (t[(t.Circle = 9)] = "Circle"), + (t[(t.CircleSub = 10)] = "CircleSub"), + (t[(t.Treasure = 11)] = "Treasure"), + (t[(t.Bless = 12)] = "Bless"), + (t[(t.FourImage = 13)] = "FourImage"), + (t[(t.Special = 14)] = "Special"), + (t[(t.Strengthen = 15)] = "Strengthen"), + (t[(t.StrengthenSub = 16)] = "StrengthenSub"), + (t[(t.Designation = 17)] = "Designation"); + })((h = t.SystemOpenEnum || (t.SystemOpenEnum = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.nearPlayerList = []), + (i.dicMenu = {}), + (i.isLargeMapAct = 1), + (i._qqGiftInfo = null), + (i.circleTipsInfoCD = 0), + (i.timeData = {}), + (i.levelData = {}), + (i.qqSendStr = ""), + (i.cashCowData = {}), + (i.redCashCowOnce = !0), + (i.cumulativeOnlineData = null), + (i.sysId = t.jDIWJt.Global), + i.YrTisc(7, i.post_26_7), + i.YrTisc(8, i.post_26_8), + i.YrTisc(28, i.post_26_28), + i.YrTisc(40, i.post_26_40), + i.YrTisc(44, i.post_26_44), + i.YrTisc(45, i.post_26_45), + i.YrTisc(46, i.post_26_46), + i.YrTisc(78, i.post_26_78), + i.YrTisc(79, i.post_26_79), + i.YrTisc(80, i.post_26_80), + i.YrTisc(81, i.post_26_81), + i.YrTisc(65, i.post_26_65), + i.YrTisc(66, i.post_26_66), + i.YrTisc(82, i.post_26_82), + i.YrTisc(83, i.post_26_83), + i.YrTisc(85, i.post_26_85), + i.YrTisc(86, i.post_26_86), + i.YrTisc(87, i.post_26_65), + i.YrTisc(93, i.post_26_93), + i.YrTisc(94, i.post_26_94), + i.YrTisc(95, i.post_26_95), + i.initSysOpenCfg(), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(i.prototype, "QQGiftInfo", { + get: function () { + return this._qqGiftInfo; + }, + set: function (t) { + this._qqGiftInfo = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.send_26_4 = function () { + var t = this.MxGiq(4); + this.evKig(t); + }), + (i.prototype.send_26_6 = function (t, e, i) { + var n = this.MxGiq(6); + n.writeByte(t), n.writeByte(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.post_26_28 = function (e) { + (t.GlobalData.serverID = e.readInt()), (t.GlobalData.sectionOpenDay = e.readUnsignedShort()); + }), + (i.prototype.send_26_40 = function (e, i) { + var n = t.GlobalData.serverTime / 1e3; + if (window.prohibitText && n > 1625068680 && 1625155080 > n) { + if ( + Main.vZzwB.pfID == t.PlatFormID.PF4366 && + ("t1" == t.MiOx.serverAlias || + "t2" == t.MiOx.serverAlias || + "t3" == t.MiOx.serverAlias || + "t4" == t.MiOx.serverAlias || + "t5" == t.MiOx.serverAlias || + "h1" == t.MiOx.serverAlias || + "t7" == t.MiOx.serverAlias || + "t6" == t.MiOx.serverAlias || + "t8" == t.MiOx.serverAlias || + "t9" == t.MiOx.serverAlias || + "t10" == t.MiOx.serverAlias || + "t11" == t.MiOx.serverAlias || + "t12" == t.MiOx.serverAlias) + ) + return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + if (Main.vZzwB.pfID == t.PlatFormID.YY) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:该功能暂不可用,7月2日重新开启|"); + } + var s = this.MxGiq(40); + e.writeToBytes(s), s.writeString(i), this.evKig(s); + }), + (i.prototype.post_26_79 = function (e) { + var i = e.readByte(); + return 6 == i && t.uMEZy.ins().IrCm(t.CrmPU.language_Error_114), i; + }), + (i.prototype.post_26_44 = function (e) { + for (var i = [], n = e.readUnsignedInt(), s = 0; n > s; s++) { + var a = new t.SCFriendData(); + (a.roleId = e.readUnsignedInt()), + (a.nickName = e.readString()), + (a.profession = e.readByte()), + (a.level = e.readUnsignedInt()), + (a.turn = e.readByte()), + (a.icon = e.readByte()), + (a.sex = e.readByte()), + (a.guild = e.readString()), + (a.superLv = e.readUnsignedInt()), + (a.type = t.FriendState.Near); + var r = t.Qskf.ins().findPlayerData(a.roleId, t.Qskf.ins().myTeamList); + -1 == r && i.push(a); + } + this.nearPlayerList = i; + }), + (i.prototype.send_26_45 = function () { + var t = this.MxGiq(45); + this.evKig(t); + }), + (i.prototype.getZSRed = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = e.propSet.MzYki(), + n = e.propSet.mBjV(), + s = (e.propSet.getZSSoul(), t.GlobalData.sectionOpenDay), + a = t.VlaoF.CircleLevel[i + 1]; + if (!a) return 0; + "|C:0xF4D1A4&T:" + t.CrmPU.language_Omission_txt1 + "|"; + if (n < a.levellimit) return 0; + if (s < a.openday) return 0; + for (var r, o = 1; 4 > o; o++) { + var l = a["item" + o]; + if (l && ((r = t.ZAJw.MPDpiB(l.type, l.id)), r < l.count)) return 0; + } + return 2 > i && egret.getTimer() > this.circleTipsInfoCD && (t.mAYZL.ins().ZbzdY(t.RoleCircleTipsView) || t.mAYZL.ins().open(t.RoleCircleTipsView, i)), 1; + } + return 0; + }), + (i.prototype.send_26_46 = function (t, e) { + var i = this.MxGiq(46); + i.writeInt(t), i.writeString(e), this.evKig(i); + }), + (i.prototype.post_26_46 = function (t) { + var e = t.readUnsignedInt(); + return e; + }), + (i.prototype.post_26_40 = function (t) {}), + (i.prototype.post_26_45 = function (e) { + for (var i, n, s = e.readByte(), a = 0; s > a; a++) + (i = e.readByte()), + (n = e.readInt()), + (t.GlobalData.roleCircle[i] = { + level: i, + count: n, + }); + }), + (i.prototype.sendNearPlayerList = function () { + var t = this.MxGiq(44); + this.evKig(t); + }), + (i.prototype.post_26_7 = function (t) {}), + (i.prototype.post_26_8 = function (e) { + t.GlobalData.serverTimeBase = t.GlobalFunc.formatMiniDateTime(e.readUnsignedInt()) - egret.getTimer(); + }), + (i.prototype.post_26_78 = function (t) { + this.washRedNameCount = t.readByte(); + }), + (i.prototype.initSysOpenCfg = function () { + this.openSysCfg = []; + var e = t.VlaoF.SystemOpen, + i = [], + n = []; + for (var s in e) { + var a = e[s]; + 1 == a.hierarchy ? i.push(a) : 2 == a.hierarchy && n.push(a); + } + (this.dicMenu[1] = i), (this.dicMenu[2] = n); + }), + (i.prototype.getSysOpenCfgById = function (e) { + this.openSysCfg = []; + var i, + n = t.VlaoF.SystemOpen; + if (n) for (var s in n) if (((i = n[s]), i.id == e)) return i; + return i; + }), + (i.prototype.getSubIdsByMainId = function (e) { + e += 1; + var i = t.VlaoF.SystemOpenMain, + n = i[e].sub; + return n; + }), + (i.prototype.getSysOpenById = function (e) { + var i = t.VlaoF.SystemOpenMain, + n = 0, + s = 0; + for (var a in i) { + var r = i[a].sub; + for (var o in r) { + if (r[o].id == e) return [n, s]; + s++; + } + n++; + } + }), + (i.prototype.getLevelUpExp = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.mBjV(), + n = t.VlaoF.LevelUpExp[i]; + return n ? n.value : e.propSet.getEXP(); + }), + (i.prototype.getLevelUpExpCfg = function () { + this.levelUpExp = []; + var e = t.VlaoF.LevelUpExp; + if (e) for (var i in e) this.levelUpExp.push(e[i]); + }), + (i.prototype.send_26_61 = function (t) { + var e = this.MxGiq(61); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_26_62 = function (t) { + var e = this.MxGiq(62); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.send_26_63 = function (t) { + var e = this.MxGiq(63); + e.writeString(t), this.evKig(e); + }), + (i.prototype.post_26_80 = function (e) { + var i = e.readByte(); + if (!i) { + var n = t.aTwWrO.ins().getWidth(), + s = t.aTwWrO.ins().getHeight(); + t.Nzfh.ins().payResultMC(2, new egret.Point(n / 2, s / 2)); + } + return t.CrmPU.language_Wlelfare_Text4[i] ? t.uMEZy.ins().IrCm(t.CrmPU.language_Wlelfare_Text4[i]) : t.uMEZy.ins().IrCm("未知错误"), i; + }), + (i.prototype.post_26_81 = function (t) { + this.isLargeMapAct = t.readByte(); + }), + (i.prototype.send_26_64 = function () { + var t = this.MxGiq(64); + this.evKig(t); + }), + (i.prototype.send_26_65 = function (t, e) { + var i = this.MxGiq(65); + i.writeShort(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_26_65 = function (e) { + for (var i, n, s = e.readShort(), a = e.readByte(), r = [], o = 0; a > o; o++) { + (i = new t.RankListData()), + (i.isSelected = 0), + (i.rank = o + 1), + (i.playerId = e.readUnsignedInt()), + (i.level = e.readUnsignedInt()), + (i.name = e.readString()), + (i.circle = e.readUnsignedInt()), + e.readUnsignedInt(), + (i.superPL = 0), + (i.sexjob = e.readString()), + (i.guildName = e.readString()); + var l = e.readByte(); + l > 0 && ((n = new t.OtherPlayerInfos(e)), (i.otherInfo = n)), r.push(i); + } + return { + type: s, + list: r, + }; + }), + (i.prototype.send_26_73 = function (t, e) { + var i = this.MxGiq(73); + i.writeShort(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.send_26_66 = function () { + var t = this.MxGiq(66); + this.evKig(t); + }), + (i.prototype.post_26_66 = function (e) { + for (var i, n = e.readByte(), s = [], a = 0; n > a; a++) { + var r = new Object(); + (r.type = e.readByte()), (r.isHave = e.readByte()), 1 == r.isHave && ((i = new t.OtherPlayerInfos(e)), (r.otherInfo = i)), s.push(r); + } + return s; + }), + (i.prototype.send_26_67 = function () { + var t = this.MxGiq(67); + this.evKig(t); + }), + (i.prototype.getOfficeRed = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = t.VlaoF.OfficeConfig[e.propSet.getOfficialPositicon() + 1]; + if (i) { + if (i.circle > 0 && e.propSet.MzYki() < i.circle) return !1; + if (e.propSet.mBjV() < i.levellimit) return !1; + var n = t.ZAJw.isRedDot(i.consume); + if (1 == n) return !0; + } + } + return !1; + }), + (i.prototype.getPopViewData = function () { + (this.timeData = {}), (this.levelData = {}); + var e, + i = t.VlaoF.PopupConfig; + if (i) + for (var n in i) + t.mAYZL.ins().isCheckOpen(i[n].opelimit) && + (1 == i[n].ConditionType + ? ((e = new Object()), (e.timeLim = i[n].timelimit), (e.isPop = 0), (e.id = i[n].id), (e.view = i[n].PopupType), (this.timeData[i[n].id] = e)) + : 2 == i[n].ConditionType && ((e = new Object()), (e.lvLim = i[n].levellimit), (e.isPop = 0), (e.id = i[n].id), (e.view = i[n].PopupType), (this.levelData[i[n].id] = e))); + }), + (i.prototype.getItemIDByCost = function (e) { + var i = 0, + n = 0, + s = 0; + for (var a in e) { + var r = e[a]; + if (2 == r.type) { + var o = t.ZAJw.MPDpiB(r.type, r.id); + if (o < r.count) { + i = 932; + break; + } + } else { + var o = t.ZAJw.MPDpiB(r.type, r.id); + if ((0 == n && (n = r.id), o < r.count)) { + (i = r.id), (s = r.count - o); + break; + } + } + } + return { + itemId: i, + itemId2: n, + needNum: s, + }; + }), + (i.prototype.getItemIDByCost2 = function (e, i) { + var n = 0, + s = 0, + a = 0; + for (var r in e) { + var o = e[r], + l = t.ZAJw.MPDpiB(o.type, o.id); + if (l < o.count) { + if (2 == o.type) { + n = 932; + break; + } + if (i.indexOf(o.id) > -1) continue; + (n = o.id), 0 == s && (s = o.id), (a = o.count - l); + break; + } + } + return { + itemId: n, + itemId2: s, + needNum: a, + }; + }), + (i.prototype.getItemRoute = function (e) { + var i = !1, + n = t.VlaoF.GetItemRouteConfig[e]; + return n && (i = t.mAYZL.ins().isCheckOpen(n.openParam)), i; + }), + (i.prototype.qqHallTextFiltering = function (e, n) { + i.ins().qqSendStr = ""; + var s = "openID=" + Main.vZzwB.userInfo.openID + "&openkey=" + Main.vZzwB.userInfo.openkey + "&pf=" + Main.vZzwB.userInfo.pf + "&format=&msg=" + e + "&type=" + n, + a = new XMLHttpRequest(); + (a.onreadystatechange = function () { + if (4 == a.readyState && 200 == a.status) { + var e = JSON.parse(a.responseText); + e && 0 == e.ret + ? ((i.ins().qqSendStr = e.msg), + i.ins().post_qqHallTextFiltering({ + isLegal: e.text_result_list_[0].check_ret_, + type: n, + Msg: e.text_result_list_[0].result_text_, + })) + : t.uMEZy.ins().IrCm("输入的文字不合法"); + } + }), + a.open("GET", window.textFiltering + s, !0), + a.send(null); + }), + (i.prototype.post_qqHallTextFiltering = function (t) { + return t; + }), + (i.prototype.getQQBlueInfo = function () { + var t = 0, + e = 0, + i = 0; + return ( + Main.vZzwB.userInfo.blueDiamond && + (Main.vZzwB.userInfo.blueDiamond.is_blue_vip && (t = 1), + Main.vZzwB.userInfo.blueDiamond.is_super_blue_vip && (t = 2), + Main.vZzwB.userInfo.blueDiamond.is_blue_year_vip && (e = 1), + (i = Main.vZzwB.userInfo.blueDiamond.blue_vip_level)), + [t, e, i] + ); + }), + (i.prototype.send_26_7 = function () { + var t = this.MxGiq(7); + this.evKig(t); + }), + (i.prototype.post_26_82 = function (t) { + var e = t.readByte(), + n = t.readUnsignedInt(), + s = t.readUnsignedInt(), + a = t.readUnsignedInt(); + i.ins().QQGiftInfo = { + isNoviceGift: e, + isLevelGift: n, + isDayGift: s, + isGodGift: a, + }; + }), + (i.prototype.send_26_8 = function (t, e) { + var i = this.MxGiq(8); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.updateQQRed = function (e, n) { + if (t.isQQpf()) { + var s, + a = 1, + r = 0; + if (1 == e) { + s = i.ins().QQGiftInfo; + var o = void 0, + l = 0, + h = t.NWRFmB.ins().getPayer; + h && h.propSet && (l = h.propSet.mBjV()); + var p = this.getQQBlueInfo(); + if (s && p && p[0] > 0) + if (2 == n) { + if (0 == s.isNoviceGift) return 1; + } else if (3 == n) { + if ((o = t.VlaoF.LevelBlueDiamondConfig)) + for (var u in o) { + if (l >= o[u].level && ((r = t.MathUtils.getValueAtBit(s.isLevelGift, a)), !r)) return 1; + a++; + } + } else if (4 == n && (o = t.VlaoF.BlueDiamondDailyConfig)) { + var c = p ? p[2] : 0; + for (var u in o) + if (c >= o[u].level) { + if (0 == t.MathUtils.getValueAtBit(s.isDayGift, 1)) return 1; + if (2 == p[0] && 0 == t.MathUtils.getValueAtBit(s.isDayGift, 2)) return 1; + if (1 == p[1] && 0 == t.MathUtils.getValueAtBit(s.isDayGift, 3)) return 1; + } + } + } + } + return 0; + }), + (i.prototype.post_26_83 = function (t) { + var e = t.readByte(); + i.ins().cashCowData = { + times: e, + }; + }), + (i.prototype.send_26_68 = function () { + var t = this.MxGiq(68); + this.evKig(t); + }), + (i.prototype.send_26_69 = function () { + var t = this.MxGiq(69); + this.evKig(t); + }), + (i.prototype.getRedCashCow = function () { + var e = t.VlaoF.MoneytreeconstConfig; + return t.mAYZL.ins().isCheckOpen(e.limit) && i.ins().cashCowData.times > 0 && (i.ins().redCashCowOnce || t.ThgMu.ins().getItemCountById(e.cost1[0].id) > 0) ? 1 : 0; + }), + (i.prototype.post_26_85 = function (t) { + var e = t.readUnsignedInt(), + n = t.readUnsignedInt(), + s = t.readInt(); + i.ins().cumulativeOnlineData = { + time: e, + day: n, + received: s, + time2: egret.getTimer(), + }; + }), + (i.prototype.send_26_70 = function () { + var t = this.MxGiq(70); + this.evKig(t); + }), + (i.prototype.send_26_71 = function (t, e) { + var i = this.MxGiq(71); + i.writeByte(t), i.writeInt(e), this.evKig(i); + }), + (i.prototype.getRedCumulativeOnline = function () { + var e = t.VlaoF.OnlineTimeRewardConfig; + for (var i in e[1]) if (this.getRedCumulativeOnlineById(e[1][i].id) > 0) return 1; + for (var i in e[2]) if (this.getRedCumulativeOnlineById(e[2][i].id) > 0) return 1; + return 0; + }), + (i.prototype.getRedCumulativeOnlineById = function (e) { + var n = i.ins().cumulativeOnlineData; + if (!n) return 0; + var s = t.MathUtils.getValueAtBit(n.received, e); + if (!s) + if (t.VlaoF.OnlineTimeRewardConfig[2][e]) { + if (n.day >= 2) return 1; + } else + for (var a in t.VlaoF.OnlineTimeRewardConfig[1]) { + var r = t.VlaoF.OnlineTimeRewardConfig[1][e], + o = n.time + Math.floor((egret.getTimer() - n.time2) / 1e3); + if (o >= r.onlineTimes) return 1; + } + return 0; + }), + (i.prototype.send_26_72 = function (t, e) { + var i = this.MxGiq(72); + i.writeShort(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_26_86 = function (t) { + for (var e, i = (t.readShort(), t.readByte()), n = [], s = 0; i > s; s++) + (e = new Object()), (e.rank = s + 1), (e.guildID = t.readInt()), (e.level = t.readInt()), (e.name = t.readString()), n.push(e); + return n; + }), + (i.prototype.yyHallTextFiltering = function (e, n) { + var s = new XMLHttpRequest(); + (s.onreadystatechange = function () { + if (4 == s.readyState && 200 == s.status) { + var a = JSON.parse(s.responseText); + if (a && 100 == a.code) { + var r = void 0; + if (1 == a.result.status) + r = { + msgType: n, + msg: e, + }; + else if (2 == a.result.status) { + for (var o = a.result.matchs, l = e, h = 0; h < o.length; h++) { + var p = o[h], + u = new RegExp(p, "g"); + l = l.replace(u, "*"); + } + r = { + msgType: n, + msg: l, + }; + } + i.ins().postYYVerification(r); + } else t.uMEZy.ins().IrCm("输入的文字不合法"); + } + }), + s.open("GET", Main.vZzwB.checkUrl + "&do=actorName&msg=" + e, !0), + s.send(null); + }), + (i.prototype.postYYVerification = function (t) { + return t; + }), + (i.prototype.guildReport37 = function (e, n, s, a) { + var r = + ("?&game_key=" + window.game + "&sid=" + (window.userInfo.server % 2e4) + "&guildid=" + s + "&time=" + Date.parse(new Date().toString()) / 1e3 + "&type=" + a + "&content=" + e, + new XMLHttpRequest()); + (r.onreadystatechange = function () { + 1 == parseInt(r.responseText) + ? i.ins().post37Verification({ + msgType: n, + msg: e, + }) + : 2 == a && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips151); + }), + r.open("GET", window.guildCheckUrl, !0), + r.send(null); + }), + (i.prototype.post37Verification = function (t) { + return t; + }), + (i.prototype.post_26_93 = function (e) { + for (var i = e.readByte(), n = 0; i > n; n++) { + var s = e.readUnsignedInt(); + t.NWRFmB.ins().addDummyRid(s); + } + }), + (i.prototype.post_26_95 = function (e) { + var i = e.readUnsignedInt(); + t.NWRFmB.ins().delDummyRid(i); + }), + (i.prototype.send_26_94 = function (t) { + var e = this.MxGiq(94); + e.writeUnsignedInt(t), this.evKig(e); + }), + (i.prototype.post_26_94 = function (e) { + var i = t.ObjectPool.pop("app.PropertySet"), + n = e.readUnsignedInt(), + s = e.readString(), + a = s.split("\\"), + r = a[0]; + i.setProperty(t.nRDo.ACTOR_RACE, t.ActorRace.offlineDummy), + i.setProperty(t.nRDo.ACTOR_NAME, r), + i.setProperty(t.nRDo.ACTOR_GUILD_NAME, ""), + a.length > 1 && "" != a[1] && (a[2] && "" != a[2] ? i.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + a[1] + ">(" + a[2] + ")") : i.setProperty(t.nRDo.ACTOR_GUILD_NAME, "<" + a[1] + ">")), + i.setProperty(t.nRDo.AP_ACTOR_ID, n), + i.setProperty(t.nRDo.AP_BODY_ID, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_HP, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_MP, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_MAX_HP, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_HP, i.getMaxHp()), + i.setProperty(t.nRDo.AP_MAX_MP, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_MP, i.getMaxMp()), + i.setProperty(t.nRDo.AP_SEX, e.readByte()), + i.setProperty(t.nRDo.AP_JOB, e.readByte()), + i.setProperty(t.nRDo.AP_LEVEL, e.readUnsignedShort()), + i.setProperty(t.nRDo.AP_ACTOR_CIRCLE, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_WEAPON, e.readUnsignedShort()), + i.setProperty(t.nRDo.ACTOR_WEAPON_DISPLAY, e.readUnsignedShort()), + i.setProperty(t.nRDo.BODY_SUIT, e.readInt()), + i.setProperty(t.nRDo.AP_FACE_ID, e.readShort()), + i.setProperty(t.nRDo.AP_ACTOR_HEAD_TITLE, e.readUnsignedInt()), + i.setProperty(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE, e.readUnsignedShort()), + i.setProperty(t.nRDo.ACTOR_FASHION_DISPLAY, e.readUnsignedShort()), + i.setProperty(t.nRDo.PROP_ACTOR_WEAPON_ID, e.readShort()), + i.setProperty(t.nRDo.AP_ACTOR_VIP_POINT, e.readUnsignedInt()), + i.setProperty(t.nRDo.OFFICIAL_POSITION, e.readUnsignedInt()), + i.setProperty(t.nRDo.AP_PICKUPPET, e.readInt()), + i.setProperty(t.nRDo.PROP_ACTOR_CURCUSTOMTITLE, e.readUnsignedInt()); + var o = t.MathUtils.limitInteger(211, 224), + l = t.MathUtils.limitInteger(145, 153); + i.setProperty(t.nRDo.AP_X, o), + i.setProperty(t.nRDo.AP_Y, l), + i.setProperty(t.nRDo.AP_DIR, t.MathUtils.limitInteger(0, 7)), + i.setProperty(t.nRDo.ACTOR_RACE, t.ActorRace.dummy), + t.NWRFmB.ins().addDummyPropertySet(i); + }), + i + ); + })(t.DlUenA); + (t.edHC = e), __reflect(e.prototype, "app.edHC"); + var i; + !(function (t) { + (t[(t.nameMsg = 1)] = "nameMsg"), + (t[(t.msgInfo = 2)] = "msgInfo"), + (t[(t.titleMsg = 3)] = "titleMsg"), + (t[(t.commentsMsg = 4)] = "commentsMsg"), + (t[(t.sigMsg = 5)] = "sigMsg"), + (t[(t.searchMsg = 6)] = "searchMsg"), + (t[(t.otherMsg = 7)] = "otherMsg"); + })((i = t.QQHallMsgType || (t.QQHallMsgType = {}))); + var n; + !(function (t) { + (t[(t.chatMsg = 1)] = "chatMsg"), + (t[(t.changeName = 2)] = "changeName"), + (t[(t.createRole = 3)] = "createRole"), + (t[(t.createGuild = 4)] = "createGuild"), + (t[(t.guildGongGao = 5)] = "guildGongGao"), + (t[(t.chatWinMsg = 6)] = "chatWinMsg"); + })((n = t.YYHallMsgType || (t.YYHallMsgType = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.getAttrib = function (e, i, n) { + var s = [], + a = t.VlaoF.FourStarsConfig, + r = a[e][i] && a[e][i].attr; + if (null == r) return []; + var o = a[e]; + if (o && o[i]) + for (var l = o[i].attr, h = l.length, p = 0; h > p; p++) { + var u = t.AttributeData.getItemAttStrByType(l[p], l, 1, n); + "" != u && s.push(u); + } + return s; + }), + (e.getConfig = function (e, i) { + var n = t.VlaoF.FourStarsConfig; + return n && n[e] && n[e][i]; + }), + (e.getMaxLv = function (e) { + var i = t.VlaoF.FourStarsConfig, + n = []; + if (i && i[e]) for (var s in i[e]) n.push(i[e][s]); + return n.pop(); + }), + (e.convertItemIcon = function (e) { + if (0 == e.type) { + var i = t.VlaoF.StdItems[e.id]; + return i; + } + var n = t.VlaoF.NumericalIcon[e.type]; + return n; + }), + e + ); + })(); + (t.FourImagesData = e), __reflect(e.prototype, "app.FourImagesData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + var i = e.call(this) || this; + return (i.strengthenArr = []), (i._strengthenDic = {}), (i.sysId = t.jDIWJt.strengthen), i.YrTisc(1, i.post_StrengthenData), i.YrTisc(2, i.post_StrengthenUpdate), i; + } + return ( + __extends(n, e), + (n.ins = function () { + return e.ins.call(this); + }), + (n.prototype.post_StrengthenData = function (e) { + var n, + s = e.readByte(), + a = e.readByte(), + r = []; + this.strengthenArr.length = 0; + for (var o = 0; a > o; o++) (n = new i()), (n.pos = e.readByte()), (n.lv = e.readInt()), r.push(n), this.strengthenArr.push(n); + if (t.StrengthenType.Equip == s) { + var l = r.length; + if (8 > l) for (var h, o = l; 8 > o; o++) (h = new i()), (h.pos = o + 1), (h.lv = 0), r.push(h); + } + r.sort(this.mysort), (this._strengthenDic[s] = r); + }), + (n.prototype.mysort = function (t, e) { + return t.pos > e.pos ? 1 : -1; + }), + Object.defineProperty(n.prototype, "strengthenDic", { + get: function () { + return this._strengthenDic; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.postResult = function () {}), + (n.prototype.postFourResult = function () {}), + (n.prototype.postWordFormuResult = function () {}), + (n.prototype.post_StrengthenUpdate = function (e) { + var n = e.readByte(), + s = e.readByte(), + a = e.readByte(), + r = e.readInt(); + switch (n) { + case 0: + var o = this._strengthenDic[s], + l = !1; + if (o) for (var h = 0, p = o.length; p > h; h++) o[h].pos == a && ((o[h].lv = r), (l = !0)); + if (!l) { + var p = this._strengthenDic[s].length, + u = new i(); + (u.pos = a), (u.lv = r), (this._strengthenDic[s][p] = u); + } + o.sort(this.mysort), + s == t.StrengthenType.Special || s == t.StrengthenType.RingJob + ? this.postResult() + : s == t.StrengthenType.Four + ? this.postFourResult() + : s == t.StrengthenType.WordFormu && this.postWordFormuResult(); + break; + case 1: + s == t.StrengthenType.Equip && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips83); + break; + case 2: + s == t.StrengthenType.Equip && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips84); + break; + case 3: + s == t.StrengthenType.Equip ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips85) : s == t.StrengthenType.Special && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips85); + break; + case 4: + if (1 == s) t.uMEZy.ins().IrCm(t.CrmPU.language_Tips86); + else if (2 == s) { + var c = t.FourImagesData.getConfig(a, r + 1); + if (c.limit && 4 == c.limit.length) { + var g = t.FourImagesData.getConfig(a, c.limit[0].lv); + t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.zlkp.replace(t.CrmPU.language_FourImages_Text0, null == g.fsname ? g.endname : g.fsname + g.endname) + "|"); + } + } + break; + case 5: + if (s == t.StrengthenType.Equip) { + var d = this.strengthenDic[s], + m = d[0].lv; + for (var f in d) m < d[f].lv && (m = d[f].lv); + var v = t.VlaoF.EquipStrengthenConfig[a][m]; + v && v.limit && t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips88, v.limit[0].lv)); + } else if (s == t.StrengthenType.Special) + for (var _ = this.strengthenDic[s], h = 0; h < _.length; h++) + if (_[h].pos == a) { + var y = t.VlaoF.SpecialRingConfig[a][_[h].lv + 1]; + y && y.LVlimit && t.mAYZL.ins().openSystemTips(y.LVlimit, 1); + } + break; + case 5: + s == t.StrengthenType.Equip && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips89); + break; + case 6: + s == t.StrengthenType.Equip + ? t.ckpDj.ins().sendEvent(t.CompEvent.GET_PROPS_STRENGTHEN_EQUIP) + : s == t.StrengthenType.Four + ? t.ckpDj.ins().sendEvent(t.CompEvent.GET_PROPS_STRENGTHEN_FOUR_IMAGE) + : s == t.StrengthenType.Special + ? t.ckpDj.ins().sendEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL) + : s == t.StrengthenType.RingJob + ? t.ckpDj.ins().sendEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL) + : s == t.StrengthenType.WordFormu && t.ckpDj.ins().sendEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL); + } + }), + (n.prototype.getFourImagesData = function (t) { + for (var e = this._strengthenDic[2], i = 0; e && i < e.length; i++) { + var n = e[i]; + if (n.pos == t) return e[i]; + } + return null; + }), + (n.prototype.sendStrengthenInit = function (t) { + var e = this.MxGiq(1); + e.writeByte(t), this.evKig(e); + }), + (n.prototype.sendStrengthenInfo = function (t, e) { + var i = this.MxGiq(2); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (n.prototype.isSatisStrengthened = function () { + return n.ins().isOpenSytemById(t.SystemOpenEnum.Strengthen) + ? 1 == n.ins().findItemFromBag(t.StrengthenType.Equip) && 1 == n.ins().isSatisLv(t.StrengthenType.Equip) && 1 == n.ins().isMaxLevel(t.StrengthenType.Equip) + ? 1 + : 0 + : void 0; + }), + (n.prototype.isEnoughStrengthened = function () { + return n.ins().isOpenSytemById(t.SystemOpenEnum.Special) && + ((1 == n.ins().findItemFromBag(t.StrengthenType.Special) && 1 == n.ins().isMaxLevel(t.StrengthenType.Special)) || 1 == n.ins().findItemFromBag(t.StrengthenType.RingJob)) + ? 1 + : 0; + }), + (n.prototype.isTreasure = function () { + return n.ins().isOpenSytemById(t.SystemOpenEnum.Special) && + ((1 == n.ins().findItemFromBag(t.StrengthenType.Special) && 1 == n.ins().isMaxLevel(t.StrengthenType.Special)) || 1 == n.ins().findItemFromBag(t.StrengthenType.RingJob)) + ? 1 + : 0; + }), + (n.prototype.findItemFromBag = function (e) { + var i, + s = t.JgMyc.ins().roleModel.getCurStrengthenData(e); + if (e == t.StrengthenType.Equip) { + i = s ? t.VlaoF.EquipStrengthenConfig[s[1]][s[0]] : t.VlaoF.EquipStrengthenConfig[1][1]; + var a = 0; + return i && (a = t.ZAJw.isRedDot(i.cost)), a; + } + if (e == t.StrengthenType.Special) { + var r = n.ins().strengthenDic[e], + o = t.VlaoF.SpecialRingConfig, + l = Object.keys(o).length; + if (r && r.length > 0) + for (var h in r) { + var p = r[h], + u = p.lv + 1, + c = t.VlaoF.SpecialRingConfig[p.pos][u]; + if (c && t.mAYZL.ins().isCheckOpen(c.LVlimit)) { + l = Object.keys(o[p.pos]).length; + var g = t.VlaoF.SpecialRingConfig[p.pos][l - 1]; + if (u < g.lv) { + var a = t.ZAJw.isRedDot(c.cost); + if (a) return 1; + } + } + } + var d = [], + m = void 0, + f = function (e) { + var i = o[e][1], + n = void 0; + if ( + (r && + (n = r.filter(function (t) { + return t.pos == i.pos; + })), + n && n[0] && i.pos == n[0].pos) + ) { + var s = n[0].lv + 1, + a = t.VlaoF.SpecialRingConfig[n[0].pos][s]; + a && d.push(a); + } else d.push(i); + }; + for (var h in o) f(h); + for (m = 0, l = d.length; l > m; m++) { + var v = t.VlaoF.RingTabConfig[d[m].pos]; + if (v && t.mAYZL.ins().isCheckOpen(v.showLimit)) { + var _ = Object.keys(o[d[m].pos]).length, + g = t.VlaoF.SpecialRingConfig[d[m].pos][_ - 1]; + if (g && t.mAYZL.ins().isCheckOpen(g.LVlimit) && d[m].lv < g.lv) { + var a = t.ZAJw.isRedDot(d[m].cost); + if (a) return 1; + } + } + } + return 0; + } + if (e == t.StrengthenType.RingJob) { + var r = n.ins().strengthenDic[e]; + if (!r) return 0; + var o = t.VlaoF.RingBuyJobConfig, + l = Object.keys(o).length, + y = t.NWRFmB.ins().getPayer, + T = y.propSet.getAP_JOB(), + d = [], + m = void 0, + M = function (e) { + var i = o[e][1][T], + n = void 0; + if ( + (r && + (n = r.filter(function (t) { + return t.pos == i.pos; + })), + n && n[0] && i.pos == n[0].pos) + ) { + var s = n[0].lv, + a = t.VlaoF.RingBuyJobConfig[n[0].pos][s][T]; + a && d.push(a); + } else d.push(i); + }; + for (var h in o) M(h); + for (m = 0, l = d.length; l > m; m++) { + if (d[m].pos > 1) { + var C = t.JgMyc.ins().roleModel.getRingLiveState(d[m].pos); + if (C) continue; + } + var a = t.ZAJw.isRedDot(d[m].cost); + if (a) return 1; + } + return 0; + } + }), + (n.prototype.getRedById = function (t) { + var e; + return (e = this.getSpecialRedById(t)), e > 0 ? e : ((e = this.getRingJobRedById(t)), e > 0 ? e : ((e = this.getFourRedById(t)), e > 0 ? e : 0)); + }), + (n.prototype.getSpecialRedById = function (e) { + var i = t.VlaoF.RingTabConfig, + s = t.VlaoF.SpecialRingConfig, + a = n.ins().strengthenDic[t.StrengthenType.Special], + r = function (n) { + var r = s[n][1], + o = r.cost.filter(function (t) { + return t.id == e; + }); + if (o.length > 0 && t.mAYZL.ins().isCheckOpen(i[n].showLimit)) { + var l = void 0; + if ( + (a && + (l = a.filter(function (t) { + return t.pos == r.pos; + })), + l && l[0] && r.pos == l[0].pos) + ) { + var h = l[0].lv + 1; + if (!s[n][h]) + return { + value: 0, + }; + var p = s[n][h].cost, + u = t.ZAJw.isRedDot(p); + if (u) + return { + value: 1, + }; + } else { + var u = t.ZAJw.isRedDot(r.cost); + if (u) + return { + value: 1, + }; + } + } + }; + for (var o in s) { + var l = r(o); + if ("object" == typeof l) return l.value; + } + return 0; + }), + (n.prototype.getRingJobRedById = function (e) { + var i = t.VlaoF.RingTabConfig, + s = t.VlaoF.RingBuyJobConfig, + a = n.ins().strengthenDic[t.StrengthenType.RingJob], + r = t.NWRFmB.ins().getPayer, + o = r.propSet.getAP_JOB(), + l = function (n) { + var r = s[n][1][o], + l = r.cost.filter(function (t) { + return t.id == e; + }); + if (l.length > 0 && t.mAYZL.ins().isCheckOpen(i[n].showLimit)) { + var h = void 0; + if ( + (a && + (h = a.filter(function (t) { + return t.pos == r.pos; + })), + h && h[0] && r.pos == h[0].pos) + ) { + var p = t.JgMyc.ins().roleModel.getRingLiveState(r.pos); + if (p) return "continue"; + var u = h[0].lv, + c = s[n][1][u].cost, + g = t.ZAJw.isRedDot(c); + if (g) + return { + value: 1, + }; + } else { + var g = t.ZAJw.isRedDot(r.cost); + if (g) + return { + value: 1, + }; + } + } + }; + for (var h in s) { + var p = l(h); + if ("object" == typeof p) return p.value; + } + return 0; + }), + (n.prototype.getFourRedById = function (e) { + for (var i, s, a = 1; 5 > a; a++) { + var r = t.FourImagesData.getMaxLv(a), + o = r.cost.filter(function (t) { + return t.id == e; + }); + if (o.length > 0) { + if (((i = n.ins().getFourImagesData(a)), i && i.lv == r.lv)) continue; + if ((s = t.FourImagesData.getConfig(a, null == i ? 1 : i.lv + 1))) { + var l = t.ZAJw.isRedDot(s.cost); + if (l) return l; + } + } + } + return 0; + }), + (n.prototype.isCanJobRing = function (e) { + var i = n.ins().strengthenDic[t.StrengthenType.RingJob]; + if (!i) return 0; + if (e.pos > 1) { + var s = t.JgMyc.ins().roleModel.getRingLiveState(e.pos); + if (s) return 0; + } + if (n.ins().isOpenSytemById(t.SystemOpenEnum.Special)) { + if (e) { + var a = t.ZAJw.MPDpiB(e.cost[0].type, e.cost[0].id); + return a >= e.cost[0].count ? 1 : 0; + } + return 0; + } + return 0; + }), + (n.prototype.isCanStrengthenRing = function () { + if (n.ins().isOpenSytemById(t.SystemOpenEnum.Special)) { + var e = t.JgMyc.ins().roleModel.ringStrengthenData; + if (e) { + var i = t.ZAJw.MPDpiB(e.cost[e.cost.length - 1].type, e.cost[e.cost.length - 1].id); + return i >= e.cost[1].count ? 1 : 0; + } + return 0; + } + return 0; + }), + (n.prototype.isSatisLv = function (e) { + var i, + n = t.JgMyc.ins().roleModel.getCurStrengthenData(t.StrengthenType.Equip); + i = n ? t.VlaoF.EquipStrengthenConfig[n[1]][n[0]] : t.VlaoF.EquipStrengthenConfig[1][1]; + var s = t.NWRFmB.ins().getPayer; + this._strengthenDic[e]; + return i.limit && s.propSet.mBjV() < i.limit[0].lv && s.propSet.mBjV() < i.limit[0].lv ? 0 : 1; + }), + (n.prototype.isMaxLevel = function (e) { + var i = this.strengthenDic[e]; + if (e == t.StrengthenType.Equip) { + if (i && 8 == i.length) { + var n = i[i.length - 1].lv, + s = i[i.length - 1].pos; + if (125 == n && 8 == s) return 0; + } + return 1; + } + if (e == t.StrengthenType.Special) { + if (i) { + var a = t.VlaoF.SpecialRingConfig, + r = Object.keys(a).length, + o = 0; + if (i.length == r) { + for (var l = 0; r > l; l++) { + var h = i[l], + p = Object.keys(a[h.pos]).length; + h.pos == a[h.pos][p - 1].pos && h.lv == a[h.pos][p - 1].lv && o++; + } + if (o == r) return 0; + } + return 1; + } + return 1; + } + }), + (n.prototype.isOpenSytemById = function (e) { + var i, + n = t.NWRFmB.ins().nkJT(); + if (n && n.propSet) { + var s = n.propSet.mBjV(), + a = n.propSet.MzYki(), + r = t.GlobalData.sectionOpenDay, + o = t.VlaoF.SystemOpen[e]; + i = this.strengthenState(o.id, s, a, r); + } + return i; + }), + (n.prototype.strengthenState = function (e, i, n, s) { + var a = t.edHC.ins().getSysOpenCfgById(e); + return i < a.openLevel || n < a.openCircle || s < a.openDay ? 0 : 1; + }), + (n.prototype.fourImageRed = function () { + for (var e, i, s = 1; 5 > s; s++) { + var a = t.FourImagesData.getMaxLv(s); + (e = n.ins().getFourImagesData(s)), (i = t.FourImagesData.getConfig(s, null == e ? 1 : e.lv + 1)); + var r = 0; + if ((i && ((r = t.ZAJw.isRedDot(i.cost)), e && e.lv == a.lv && (r = 0)), r)) return !0; + } + return !1; + }), + n + ); + })(t.DlUenA); + (t.StrengthenMgr = e), __reflect(e.prototype, "app.StrengthenMgr"); + var i = (function () { + function t() { + this.lv = 0; + } + return t; + })(); + (t.StrengthenData = i), __reflect(i.prototype, "app.StrengthenData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.getAttrib = function (e, i, n) { + var s = [], + a = t.VlaoF.WordFormulaConfig, + r = a[e][i] && a[e][i].attr; + if (null == r) return []; + var o = a[e]; + if (o && o[i]) + for (var l = o[i].attr, h = l.length, p = 0; h > p; p++) { + var u = t.AttributeData.getItemAttStrByType(l[p], l, 1, n); + "" != u && s.push(u); + } + return s; + }), + (e.convertItemIcon = function (e) { + if (0 == e.type) { + var i = t.VlaoF.StdItems[e.id]; + return i; + } + var n = t.VlaoF.NumericalIcon[e.type]; + return n; + }), + e + ); + })(); + (t.WordFormulaData = e), __reflect(e.prototype, "app.WordFormulaData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + Object.defineProperty(e.prototype, "config", { + get: function () { + return t.VlaoF.TitleConfig[this.titleId]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "titleAttrib", { + get: function () { + for (var e = [], i = this.config.attr, n = 0; n < i.length; n++) { + var s = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0, "0xE0AE75", "0x28ee01"); + "" != s && e.push(s); + } + return e; + }, + enumerable: !0, + configurable: !0, + }), + e + ); + })(); + (t.TitleData = e), __reflect(e.prototype, "app.TitleData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + Object.defineProperty(e.prototype, "config", { + get: function () { + return t.VlaoF.CustomisedTitleConfig[this.titleId]; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "titleAttrib", { + get: function () { + for (var e = [], i = this.config.attr, n = 0; n < i.length; n++) { + var s = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0, "0xE0AE75", "0x28ee01"); + "" != s && e.push(s); + } + return e; + }, + enumerable: !0, + configurable: !0, + }), + e + ); + })(); + (t.TitleData2 = e), __reflect(e.prototype, "app.TitleData2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._titleDataArr = []), + (i._titleDataArr2 = []), + (i.sysId = t.jDIWJt.Title), + i.YrTisc(1, i.post_54_1), + i.YrTisc(2, i.post_54_2), + i.YrTisc(3, i.post_54_3), + i.YrTisc(4, i.post_54_4), + i.YrTisc(5, i.post_54_5), + i.YrTisc(6, i.post_54_6), + i.YrTisc(7, i.post_54_7), + i.YrTisc(8, i.post_54_8), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.post_54_1 = function (e) { + var i = e.readInt(); + this._titleDataArr = []; + for (var n = 0; i > n; n++) { + var s = new t.TitleData(); + (s.titleId = e.readShort()), (s.timer = e.readUnsignedInt()); + var a = t.VlaoF.TitleConfig[s.titleId]; + if (a) { + if (a.displayType && t.ubnV.ihUJ) continue; + this._titleDataArr.push(s); + } + } + this._titleDataArr = this._titleDataArr.sort(this.sort); + }), + (i.prototype.getTitleArr = function () { + return this._titleDataArr; + }), + (i.prototype.getByIdTitleArr = function (t) { + for (var e = 0; e < this._titleDataArr.length; e++) { + var i = this._titleDataArr[e]; + if (i.titleId == t) return i; + } + return null; + }), + (i.prototype.post_54_2 = function (e) { + var i = new t.TitleData(); + (i.titleId = e.readShort()), (i.timer = e.readUnsignedInt()), this._titleDataArr.push(i), (this._titleDataArr = this._titleDataArr.sort(this.sort)); + }), + (i.prototype.sort = function (t, e) { + return t.titleId < e.titleId ? -1 : t.titleId > e.titleId ? 1 : void 0; + }), + (i.prototype.post_54_3 = function (t) { + for (var e = t.readShort(), i = 0; i < this._titleDataArr.length; i++) { + var n = this._titleDataArr[i]; + n.titleId == e && this._titleDataArr.splice(i, 1); + } + this._titleDataArr = this._titleDataArr.sort(this.sort); + }), + (i.prototype.post_54_4 = function (t) { + for (var e = t.readShort(), i = t.readUnsignedInt(), n = 0; n < this._titleDataArr.length; n++) { + var s = this._titleDataArr[n]; + s.titleId == e && (this._titleDataArr[n].timer = i); + } + }), + (i.prototype.send54_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.send54_2 = function (t) { + var e = this.MxGiq(2); + e.writeShort(t), this.evKig(e); + }), + (i.prototype.post_54_5 = function (e) { + var i = e.readInt(); + this._titleDataArr2 = []; + for (var n = 0; i > n; n++) { + var s = new t.TitleData2(); + (s.titleId = e.readShort()), (s.timer = e.readUnsignedInt()); + var a = t.VlaoF.CustomisedTitleConfig[s.titleId]; + if (a) { + if (a.displayType && t.ubnV.ihUJ) continue; + this._titleDataArr2.push(s); + } + } + this._titleDataArr2 = this._titleDataArr2.sort(this.sort); + }), + (i.prototype.getTitleArr2 = function () { + return this._titleDataArr2; + }), + (i.prototype.getByIdTitleArr2 = function (t) { + for (var e = 0; e < this._titleDataArr2.length; e++) { + var i = this._titleDataArr2[e]; + if (i.titleId == t) return i; + } + return null; + }), + (i.prototype.post_54_6 = function (e) { + var i = new t.TitleData2(); + (i.titleId = e.readShort()), (i.timer = e.readUnsignedInt()), this._titleDataArr2.push(i), (this._titleDataArr2 = this._titleDataArr2.sort(this.sort)); + }), + (i.prototype.post_54_7 = function (t) { + for (var e = t.readShort(), i = 0; i < this._titleDataArr2.length; i++) { + var n = this._titleDataArr2[i]; + n.titleId == e && this._titleDataArr2.splice(i, 1); + } + this._titleDataArr2 = this._titleDataArr2.sort(this.sort); + }), + (i.prototype.post_54_8 = function (t) { + for (var e = t.readShort(), i = t.readUnsignedInt(), n = 0; n < this._titleDataArr2.length; n++) { + var s = this._titleDataArr2[n]; + s.titleId == e && (this._titleDataArr2[n].timer = i); + } + }), + (i.prototype.send54_3 = function () { + var t = this.MxGiq(3); + this.evKig(t); + }), + (i.prototype.send54_4 = function (t) { + var e = this.MxGiq(4); + e.writeShort(t), this.evKig(e); + }), + i + ); + })(t.DlUenA); + (t.TitleMgr = e), __reflect(e.prototype, "app.TitleMgr"); +})(app || (app = {})); +var DamageTypes; +!(function (t) { + (t[(t.BLANK = 0)] = "BLANK"), + (t[(t.HIT = 1)] = "HIT"), + (t[(t.CRIT = 2)] = "CRIT"), + (t[(t.Dodge = 4)] = "Dodge"), + (t[(t.SHIHUA = 5)] = "SHIHUA"), + (t[(t.Lucky = 8)] = "Lucky"), + (t[(t.Heji = 16)] = "Heji"), + (t[(t.Fujia = 32)] = "Fujia"), + (t[(t.Deter = 64)] = "Deter"), + (t[(t.Lianji = 128)] = "Lianji"), + (t[(t.ZhuiMing = 256)] = "ZhuiMing"), + (t[(t.ZhiMing = 512)] = "ZhiMing"); +})(DamageTypes || (DamageTypes = {})); +var EffectType; +!(function (t) { + (t[(t.Targer = 0)] = "Targer"), + (t[(t.Self = 1)] = "Self"), + (t[(t.Ballistic = 2)] = "Ballistic"), + (t[(t.AnyAngle = 3)] = "AnyAngle"), + (t[(t.Sustain = 4)] = "Sustain"), + (t[(t.Range = 5)] = "Range"), + (t[(t.Sector = 6)] = "Sector"); +})(EffectType || (EffectType = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.tabArr = []), + (i._curIndex = -1), + (i.openActID = 0), + (i._actID = 0), + (i.skinName = "ActivityCopiesWinSkin"), + (i.name = "ActivityCopiesWin"), + (i.itemArrayCollection = new eui.ArrayCollection()), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System87), + (this.tabScroller.verticalScrollBar.autoVisibility = !1), + (this.tabScroller.verticalScrollBar.visible = !1), + (this.rewardsList.itemRenderer = t.ItemBase), + (this.tabList.itemRenderer = t.ActivityTabView), + (this.tabList.dataProvider = this.itemArrayCollection); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + if ( + ((this._curIndex = 0), + e[0] && (this.openActID = e[0]), + t.MouseScroller.bind(this.tabScroller), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this), + this.vKruVZ(this.enterBtn, this.onClick), + this.actPath.addEventListener(egret.TextEvent.LINK, this.Npctransfer, this), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateCurInfo), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateCurInfo), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateCurInfo), + (this.tabArr = t.ActivityCopiesMgr.ins().getFbTab()), + this.setTabArr(), + 0 != this.openActID) + ) { + for (var n = 0; n < this.tabList.dataProvider.length; n++) { + var s = this.tabList.dataProvider.getItemAt(n); + if (s.activityid == this.openActID) { + this._curIndex = n; + break; + } + } + this._curIndex > 6 && (this.tabScroller.validateNow(), (this.tabScroller.viewport.scrollV = this.tabScroller.viewport.contentHeight - this.tabScroller.viewport.height)); + } + (this.tabList.selectedIndex = this._curIndex), this.setOpenIndex(); + }), + (i.prototype.setTabArr = function () { + if (this.tabArr) { + var t = []; + for (var e in this.tabArr) t.push(this.tabArr[e]); + t.sort(this.tabSort), this.itemArrayCollection.replaceAll(t); + } + }), + (i.prototype.tabSort = function (e, i) { + var n = t.TQkyOx.ins().getActivityInfo(e.activityid), + s = t.TQkyOx.ins().getActivityInfo(i.activityid); + if (n && s) { + if (e.sortact > i.sortact) return -1; + if (e.sortact < i.sortact) return 1; + } else { + if (n || s) return n && !s ? -1 : 1; + if (e.sortact < i.sortact) return -1; + if (e.sortact > i.sortact) return 1; + } + }), + (i.prototype.updateCurInfo = function () { + this.setTabArr(), this.setOpenIndex(); + }), + (i.prototype.setOpenIndex = function () { + this._curIndex = this.tabList.selectedIndex; + var e = this.tabList.dataProvider.getItemAt(this.tabList.selectedIndex); + if (e) { + var i = t.TQkyOx.ins().getActivityConfigById(e.activityid); + i && + ((this._actID = e.activityid), + (this.rewardsList.dataProvider = new eui.ArrayCollection(i.rewards)), + (this.enterBtn.visible = i.rewardBtn ? !0 : !1), + (this.enterBtn.label = i.rewardBtn ? i.rewardBtn : ""), + i.ruleID ? ((this.ruleTips.visible = !0), (this.ruleTips.ruleId = i.ruleID)) : (this.ruleTips.visible = !1), + (this.actTitle.textFlow = t.hETx.qYVI(i.Ntipstext_1)), + (this.actTime.textFlow = t.hETx.qYVI(i.Ntipstext_2)), + (this.actDesc.textFlow = t.hETx.qYVI(i.Ntipstext_3)), + i.Ntipstext_4 ? (this.actPath.textFlow = t.hETx.generateTextFlow1(i.Ntipstext_4)) : (this.actPath.text = "")); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.enterBtn: + t.TQkyOx.ins().enterActivity(this._actID), t.mAYZL.ins().close(this); + } + }), + (i.prototype.Npctransfer = function (e) { + var i = e.text, + n = i.split(","), + s = t.NWRFmB.ins().getPayer; + if (s) { + var a = s.ifFindTask(+n[2], +n[0], +n[1]); + if (a && -1 == a.x && -1 == a.y) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips121); + s.setTask(+n[2], +n[0], +n[1], -1, -1, 0, +n[3]); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.tabScroller), + this.fEHj(this.enterBtn, this.onClick), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.setOpenIndex, this), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.tab = null), + (this.tabArr = null); + }), + i + ); + })(t.gIRYTi); + (t.ActivityCopiesWin = e), __reflect(e.prototype, "app.ActivityCopiesWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.getStateTxtByType = function (e, i) { + var n = "", + s = t.TQkyOx.ins().getActivityInfo(this.data.activityid); + if (1 == e) this.data.actdesc && (n = this.data.actdesc); + else if (2 == e) n = s && s.info && s.info.times ? t.zlkp.replace(t.CrmPU.language_Common_64, s.info.times) : "剩余0次"; + else if (3 == e) + if (s && s.redDot) n = t.CrmPU.language_Common_172; + else { + var a = "", + r = "", + o = !1, + l = t.VlaoF.ActivityNoticeConfig[1][this.data.activityid]; + if (l && l.TimeDetail && t.mAYZL.ins().isCheckOpen(l.isOpenNeed)) { + for (var h in l.TimeDetail) { + var p = l.TimeDetail[h].StartTime, + u = p.split("-"); + if (0 == u[0]) { + (a = u[1]), "" == r && (r = u[1]); + var c = new Date(t.GlobalData.serverTime), + g = c.getHours(), + d = c.getMinutes(), + m = u[1].split(":"); + if (m) { + if (g < +m[0]) { + o = !0; + break; + } + if (g == +m[0] && d < +m[1]) { + o = !0; + break; + } + } + } + } + n = o ? t.CrmPU.language_Common_173 + " " + a : t.CrmPU.language_Common_174 + " " + r; + } + } + else 4 == e && (s && s.redDot ? (n = t.CrmPU.language_Common_172) : this.data.actdesc && (n = this.data.actdesc)); + return n; + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.actName.textColor = 15779990), (this.actState.textColor = 2682369), (this.actName.text = this.data.name), (this.actIconImg.source = this.data.source); + var e = t.TQkyOx.ins().getActivityConfigById(this.data.activityid), + i = t.TQkyOx.ins().getActivityInfo(this.data.activityid); + if (i) (this.openImg.visible = !1), (this.onGoingImg.visible = !0), (this.actState.text = this.getStateTxtByType(this.data.timeType, this.data.activityid)); + else if (e && e.openParam) { + var n = t.mAYZL.ins().isCheckOpen(e.openParam); + n + ? ((this.actName.textColor = 15779990), + (this.actState.textColor = 15779990), + (this.openImg.visible = !1), + (this.onGoingImg.visible = !1), + (this.actState.text = this.getStateTxtByType(this.data.timeType, this.data.activityid))) + : ((this.actName.textColor = 8420211), + (this.actState.textColor = 8420211), + (this.openImg.visible = !0), + (this.onGoingImg.visible = !1), + (this.actState.text = this.getStateTxtByType(this.data.timeType, this.data.activityids))); + } + this.redPoint.visible = !1; + var s = t.TQkyOx.ins().getActivitConf(this.data.activityid); + if (s) { + var a = t.VlaoF["Activity" + s.ActivityType + "Config"]; + if (a) + if (0 == e.Id) + for (var r in a) { + var o = a[r]; + if (0 != o.Id) { + var l = t.TQkyOx.ins().getActivityInfo(o.Id); + if (o.buttoncolor && l && l.redDot) { + (this.redPoint.visible = !0), this.redPoint.setRedImg(o.buttoncolor); + break; + } + } + } + else if (e && 19 == e.Id) + for (var r in a) { + var o = a[r]; + if (19 != o.Id) { + var l = t.TQkyOx.ins().getActivityInfo(o.Id); + if (o.buttoncolor && l && l.redDot) { + (this.redPoint.visible = !0), this.redPoint.setRedImg(o.buttoncolor); + break; + } + } + } + else if (e && 3 == e.Id) { + if (e.buttoncolor) { + var h = t.TQkyOx.ins().getAppraisalRed(e.Id); + h && ((this.redPoint.visible = !0), this.redPoint.setRedImg(e.buttoncolor)); + } + } else e && e.buttoncolor && i && i.redDot && ((this.redPoint.visible = !0), this.redPoint.setRedImg(e.buttoncolor)); + } + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + i + ); + })(t.BaseItemRender); + (t.ActivityTabView = e), __reflect(e.prototype, "app.ActivityTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._isInit = !1), (this._panelClass = t.panelClass), (this._openData = t.openData); + } + return ( + Object.defineProperty(e.prototype, "isInit", { + get: function () { + return this._isInit; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "panel", { + get: function () { + if (!this._panel) { + var t = this._panelClass; + (this._panel = new t()), (this._panel.horizontalCenter = 0), this._panel.open && this._panel.open(this._openData), (this._isInit = !0); + } + return this._panel; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "ruleId", { + get: function () { + var t = 0; + return this.panel.ruleId && (t = this.panel.ruleId), t; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.showView = function (t) { + this.panel.showView && this.panel.showView(t), (this.panel.visible = !0); + }), + (e.prototype.hideView = function () { + this.panel.hideView && this.panel.hideView(), (this.panel.visible = !1); + }), + (e.prototype.addOpenData = function (t) { + this._openData = t; + }), + (e.prototype.destroy = function () { + (this._isInit = !1), (this._panelClass = null), (this._openData = null), this._panel && (t.lEYZI.Naoc(this._panel), this._panel.$onClose()), (this._panel = null); + }), + e + ); + })(); + (t.RoleItemView = e), __reflect(e.prototype, "app.RoleItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.main = 0), (i.sub = 0), (i.openId = 0), (i.dicBtn = {}), (i.tempBtnArr = []), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "RoleViewSkin"), (i.name = "RoleView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.panelDataObj = []), + (this.panelDataObj[t.RoleTabEnum.EQUIP] = new t.RoleItemView({ + panelClass: t.EquipView, + })), + (this.panelDataObj[t.RoleTabEnum.DIVINE] = new t.RoleItemView({ + panelClass: t.GodEquipView, + })), + (this.panelDataObj[t.RoleTabEnum.FASHION] = new t.RoleItemView({ + panelClass: t.FashionNewView, + })), + (this.panelDataObj[t.RoleTabEnum.JOB] = new t.RoleItemView({ + panelClass: t.RoleBasicSkillView, + })), + (this.panelDataObj[t.RoleTabEnum.CURRENCY] = new t.RoleItemView({ + panelClass: t.RoleBasicSkillView, + openData: { + type: 1, + }, + })), + (this.panelDataObj[t.RoleTabEnum.MERIDIANS] = new t.RoleItemView({ + panelClass: t.MeridiansView, + })), + (this.panelDataObj[t.RoleTabEnum.CIRCLE] = new t.RoleItemView({ + panelClass: t.RoleCircleView, + })), + (this.panelDataObj[t.RoleTabEnum.BLESS] = new t.RoleItemView({ + panelClass: t.BlessView, + })), + (this.panelDataObj[t.RoleTabEnum.FOUR] = new t.RoleItemView({ + panelClass: t.FourImagesView, + })), + (this.panelDataObj[t.RoleTabEnum.RING] = new t.RoleItemView({ + panelClass: t.NewRingView, + })), + (this.panelDataObj[t.RoleTabEnum.DESIGNAT] = new t.RoleItemView({ + panelClass: t.TitleView, + })), + (this.panelDataObj[t.RoleTabEnum.SHENMO] = new t.RoleItemView({ + panelClass: t.RoleGhostView, + openData: { + type: 1, + }, + })), + (this.panelDataObj[t.RoleTabEnum.SOLDIERSOUL] = new t.RoleItemView({ + panelClass: t.RoleWeaponSoulView, + })), + (this.panelDataObj[t.RoleTabEnum.PET] = new t.RoleItemView({ + panelClass: t.RolePetView, + })), + (this.panelDataObj[t.RoleTabEnum.WORDFORMULA] = new t.RoleItemView({ + panelClass: t.WordFormulaView, + openData: { + roleType: t.RoleViewEnum.myRolePanel, + }, + })), + t.JgMyc.ins().roleModel.init(), + (this.tabBar = new t.Tab_Bar(this.tab_group)), + this.tabBar.addEventListener(t.CompEvent.TAB_CHANGE, this.onChangeTab, this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + if (e) + if (e[0] instanceof Object) { + var n = e[0].sysOpenId; + if (n) { + this.openId = n; + var s = t.edHC.ins().getSysOpenById(n); + (this.main = s[0]), (this.sub = s[1]), this.panelDataObj[this.openId] && this.panelDataObj[this.openId].addOpenData(e[0]); + } + } else { + if ((e[0] && (this.main = e[0]), e[1] && (this.sub = e[1]), e[2])) { + var n = t.edHC.ins().getSubIdsByMainId(this.main)[this.sub].id; + n == t.RoleTabEnum.FASHION && + this.panelDataObj[t.RoleTabEnum.FASHION].addOpenData({ + fashionId: e[2], + }); + } + this.main == t.RoleSubBtnType.ROLE_TREASURE && + this.panelDataObj[t.RoleTabEnum.RING].addOpenData({ + id: this.sub, + }); + } + this.showSubBtnByIdx(0), + this.showSubBtnByIdx(1), + this.showSubBtnByIdx(5), + this.dragDropUI.setCurrentState(), + this.dragDropUI.setParent(this), + t.ckpDj.ins().addEvent(t.CompEvent.STRENGTHEN_RED, this.refreshRedDot, this), + t.ckpDj.ins().addEvent(t.CompEvent.FASHION_RED, this.refreshRedDot, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_RED, this.refreshRedDot, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_ATTR_OPEN, this.onOpenAttrPanel, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_ATTR_CLOSE, this.onCloseAttrPanel, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_UPDATE_RULE, this.isShowBtn, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_SKILL_DESC, this.onShowSkillDesc, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_CLOSE_SKILL_DESC, this.onCloseSkillDesc, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE2_OPEN, this.onOpenTitle2Panel, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE2_CLOSE, this.onCloseTitle2Panel, this), + this.HFTK(t.GhostMgr.ins().post_31_1, this.updateGhost), + this.HFTK(t.GhostMgr.ins().post_31_2, this.updateGhost), + this.HFTK(t.NGcJ.ins().post_updateSkill, this.refreshRedDot), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.refreshData), + (this.tabBar.currIndex = this.main), + this.dicBtn[this.main] && this.onClickSelectHandler(this.dicBtn[this.main][this.sub]), + this.openId && this.showViewById(this.openId), + this.refreshData(), + this.updateView(), + t.rTRv.ins().send_51_1(); + }), + (i.prototype.updateGhost = function () { + var e = this.panelDataObj[t.RoleTabEnum.SHENMO]; + if (e && e.isInit) { + var i = t.GhostMgr.ins().ghostInfo; + e.panel.updateinfo(i); + } + this.refreshRedDot(); + }), + (i.prototype.refreshRedDot = function () { + t.KHNO.ins().RTXtZF(this.updateView, this) || t.KHNO.ins().doNext(this.updateView, this); + }), + (i.prototype.updateView = function () { + if ((t.KHNO.ins().remove(this.updateView, this), this.tabBar && this.tabBar.refresh(), this.btnGroup)) + for (var e = 0; e < this.btnGroup.numElements; e++) this.btnGroup.getChildAt(e).refresh(); + }), + (i.prototype.onOpenAttrPanel = function () { + this.attrPanel || ((this.attrPanel = new t.AttrView()), this.attrGroup.addChild(this.attrPanel)), (this.attrGroup.visible = !0); + }), + (i.prototype.onCloseAttrPanel = function () { + this.attrGroup.visible = !1; + }), + (i.prototype.onShowSkillDesc = function (e) { + this.roleSkillDescView || ((this.roleSkillDescView = new t.RoleSkillDescView()), this.skillDescGroup.addChild(this.roleSkillDescView)), + this.roleSkillDescView.setData(e), + (this.skillDescGroup.visible = !0); + }), + (i.prototype.onCloseSkillDesc = function () { + this.skillDescGroup.visible = !1; + }), + (i.prototype.onOpenTitle2Panel = function () { + this.titleView2 || ((this.titleView2 = new t.TitleView2()), this.title2Group.addChild(this.titleView2)), (this.title2Group.visible = !0); + }), + (i.prototype.onCloseTitle2Panel = function () { + this.title2Group.visible = !1; + }), + (i.prototype.onClickSelectHandler = function (e) { + void 0 === e && (e = null), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_INSIDE), e && (this.showViewById(e.btnId), t.Nzfh.ins().post_gaimItemView(8888)); + }), + (i.prototype.showViewById = function (e) { + var i = this.panelDataObj[e]; + if (i) { + this.currPanel && this.currPanel != i && this.currPanel.hideView(); + var n = null; + e == t.RoleTabEnum.SHENMO && (n = t.GhostMgr.ins().ghostInfo), (this.currPanel = i), this.currPanel.showView(n), this.type_group.addChild(this.currPanel.panel); + var s = this.dicBtn[this.tabBar.currIndex]; + if (s && s.length) for (var a = 0; a < s.length; a++) s[a].btnId == e ? s[a].setCurState("up") : s[a].setCurState("down"); + this.isShowBtn(e), this.dragDropUI.setTitle(this.currPanel.panel.titleStr); + } + }), + (i.prototype.isShowBtn = function (e) { + this.currPanel.ruleId + ? ((this.helpBtn.ruleId = this.currPanel.ruleId), + (this.helpBtn.visible = !0), + e == t.RoleTabEnum.JOB || e == t.RoleTabEnum.CURRENCY ? ((this.helpBtn.x = 360), (this.helpBtn.y = 570)) : ((this.helpBtn.x = 23), (this.helpBtn.y = 96))) + : (this.helpBtn.visible = !1); + }), + (i.prototype.onChangeTab = function (e) { + t.AHhkf.ins().Uvxk(t.OSzbc.VIEW_LEVEL), + t.Nzfh.ins().post_gaimItemView(8888), + this.setSubTabView(this.tabBar.currIndex), + this.getSubShowByIdx(this.tabBar.currIndex), + this.refreshData(this.tabBar.currIndex), + this.refreshPanel(); + t.mAYZL.ins().ZbzdY(t.GaimItemWin) && t.mAYZL.ins().close(t.GaimItemWin); + }), + (i.prototype.showSubBtnByIdx = function (e) { + var i, + n, + s, + a = [], + r = t.edHC.ins().getSubIdsByMainId(e); + for (n = 0; n < r.length; n++) + (i = new t.ButtonStateElement()), + (s = r[n].id), + (i.btnId = s), + i.setImagePath(t.RoleSubBtn.ins().mainDic[i.btnId]), + (i.name = "btn_" + n), + (i.isOpen = !0), + a.push(i), + i.setBackFunc(this.onClickSelectHandler, this); + this.dicBtn[e] = a; + }), + (i.prototype.getSubShowByIdx = function (e) { + for (; this.btnGroup.numElements > 0; ) this.btnGroup.removeChildAt(0); + var i, + n, + s = t.edHC.ins().getSubIdsByMainId(e); + for (n = 0; n < s.length; n++) { + var a = this.dicBtn[e]; + a && + ((i = a[n]), + i && (this.dicBtn[e].length <= n ? (i.visible = !1) : ((i.visible = !0), i.setImagePath(t.RoleSubBtn.ins().mainDic[i.btnId]), this.btnGroup.contains(i) || this.btnGroup.addChild(i)))); + } + for (n = 0; n < this.btnGroup.numElements; n++) this.btnGroup.getChildAt(n).refresh(); + }), + (i.prototype.setSubTabView = function (e) { + var i = t.edHC.ins().getSubIdsByMainId(e); + this.showViewById(i[0].id), e == t.RoleSubBtnType.ROLE_CIRCLE ? ((this.btnGroup.visible = !1), (this.lineImg.visible = !1)) : ((this.btnGroup.visible = !0), (this.lineImg.visible = !0)); + }), + (i.prototype.refreshData = function (e) { + void 0 === e && (e = null); + var i = t.NWRFmB.ins().nkJT(); + if (i && i.propSet) { + var n = i.propSet.mBjV(), + s = i.propSet.MzYki(), + a = t.GlobalData.sectionOpenDay; + this.setMainBtnState(n, s, a), e ? this.setSubBtnByMainId(e) : this.setSubBtnByMainId(this.tabBar.currIndex), this.refreshPanel(); + } + this.refreshRedDot(); + }), + (i.prototype.setSubBtnByMainId = function (e) { + var i = t.NWRFmB.ins().nkJT(); + if (i && i.propSet) { + var n = i.propSet.mBjV(), + s = i.propSet.MzYki(), + a = t.GlobalData.sectionOpenDay, + r = t.edHC.ins().getSubIdsByMainId(e); + e == t.RoleSubBtnType.ROLE_EQUIP + ? this.setRoleSubBtnState(r, n, s, a) + : e == t.RoleSubBtnType.ROLE_SKILL + ? this.setSkillSubBtnState(r, n, s, a) + : e == t.RoleSubBtnType.ROLE_SACRED && this.setSoldierSoulSubBtnState(r, n, s, a); + } + }), + (i.prototype.refreshPanel = function () { + if (this.tabBar.currIndex == t.RoleSubBtnType.ROLE_CIRCLE) { + var e = this.panelDataObj[t.RoleTabEnum.CIRCLE]; + e && e.isInit && e.panel.refreshCircleCount(); + } + this.tabBar.currIndex == t.RoleSubBtnType.ROLE_EQUIP && this.attrPanel && this.attrPanel.refreshData(); + }), + (i.prototype.setMainBtnState = function (e, i, n) { + var s = t.edHC.ins().dicMenu[1]; + this.isSHowIds = []; + var a, r; + for (a = 0; a < s.length; a++) { + if (e >= s[a].level && i >= s[a].circle && n >= s[a].day) + for (r = 0; r < this.tabBar.tabElements.length; r++) + if (this.tabBar.tabElements[r].id == s[a].id) { + this.isSHowIds.push(s[a].id); + break; + } + var o = this.tabBar.tabElements.filter(function (t) { + return t.id == s[a].id; + }); + o && 1 == o.length && (e >= s[a].openLevel && i >= s[a].openCircle && n >= s[a].openDay ? (o[0].isOpen = !0) : (o[0].isOpen = !1)); + } + this.tabBar.setData(this.isSHowIds); + }), + (i.prototype.setRoleSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r] && this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_EQUIP][r].isOpen = !1); + } + }), + (i.prototype.setSkillSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SKILL].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_SKILL][r].isOpen = !1); + } + }), + (i.prototype.setBlessSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_TREASURE][r].isOpen = !1); + } + }), + (i.prototype.setStrengthenSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_STRENGTHEN][r].isOpen = !1); + } + }), + (i.prototype.setSoldierSoulSubBtnState = function (e, i, n, s) { + var a, r, o; + for (a = 0; a < e.length; a++) { + if (((o = t.edHC.ins().getSysOpenCfgById(e[a].id)), i < o.level || n < o.circle || s < o.day)) { + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].length; r++) + if (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].btnId == o.id) { + this.tempBtnArr.push(this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r]), + this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].splice(r, 1), + this.btnGroup.numElements > r && this.btnGroup.removeChildAt(r); + break; + } + } else { + var l = this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].filter(function (t) { + return t.btnId == o.id; + }); + if (l && l.length > 0); + else { + var h = this.tempBtnArr.filter(function (t) { + return t.btnId == o.id; + }); + h && h.length > 0 && (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].splice(a, 0, h[0]), this.btnGroup.addChildAt(h[0], a)); + } + } + if (i < o.openLevel || n < o.openCircle || s < o.openDay) + for (r = 0; r < this.dicBtn[t.RoleSubBtnType.ROLE_SACRED].length; r++) + this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].btnId == o.id && (this.dicBtn[t.RoleSubBtnType.ROLE_SACRED][r].isOpen = !1); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + for (e.prototype.close.call(this, i), this.currPanel = null; this.btnGroup.numElements > 0; ) { + var s = this.btnGroup.removeChildAt(0); + s.destroy(), t.lEYZI.Naoc(s), (s = null); + } + for (var a = 0; a < this.panelDataObj.length; a++) this.panelDataObj[a] && this.panelDataObj[a].destroy(), (this.panelDataObj[a] = null); + (this.panelDataObj.length = 0), + (this.panelDataObj = null), + t.lEYZI.Naoc(this.type_group), + t.lEYZI.Naoc(this.btnGroup), + t.lEYZI.Naoc(this.iconGroup), + t.lEYZI.Naoc(this.attrGroup), + t.lEYZI.Naoc(this.modelGroup), + t.lEYZI.Naoc(this.tab_group), + t.lEYZI.Naoc(this.skillDescGroup), + this.dragDropUI && this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.attrPanel && this.attrPanel.$onClose(), + (this.attrPanel = null), + this.roleSkillDescView && this.roleSkillDescView.$onClose(), + (this.roleSkillDescView = null), + this.titleView2 && this.titleView2.$onClose(), + (this.titleView2 = null), + this.type_group && this.type_group.removeChildren(), + this.iconGroup && this.iconGroup.removeChildren(), + this.attrGroup && this.attrGroup.removeChildren(), + this.modelGroup && this.modelGroup.removeChildren(), + this.tab_group && this.tab_group.removeChildren(), + this.skillDescGroup && this.skillDescGroup.removeChildren(), + (this.type_group = null), + (this.iconGroup = null), + (this.attrGroup = null), + (this.modelGroup = null), + (this.tab_group = null), + (this.skillDescGroup = null), + t.ckpDj.ins().removeEvent(t.CompEvent.STRENGTHEN_RED, this.refreshRedDot, this), + t.ckpDj.ins().removeEvent(t.CompEvent.FASHION_RED, this.refreshRedDot, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_RED, this.refreshRedDot, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_ATTR_OPEN, this.onOpenAttrPanel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_ATTR_CLOSE, this.onCloseAttrPanel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_UPDATE_RULE, this.isShowBtn, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_SKILL_DESC, this.onShowSkillDesc, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_CLOSE_SKILL_DESC, this.onCloseSkillDesc, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_TITLE2_OPEN, this.onOpenTitle2Panel, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_TITLE2_CLOSE, this.onCloseTitle2Panel, this), + this.tabBar.removeEventListener(t.CompEvent.TAB_CHANGE, this.onChangeTab, this), + this.tabBar.destory(), + (this.tabBar = null), + (this.btnGroup = null); + var r, o; + for (r = 0, o = this.tempBtnArr.length; o > r; r++) { + var l = this.tempBtnArr[r]; + l.destroy(), (l = null); + } + (this.tempBtnArr.length = 0), + (this.tempBtnArr = null), + t.ObjectPool.wipe(this.dicBtn), + (this.dicBtn = null), + this.helpBtn.$onRemoveFromStage(), + (this.helpBtn = null), + this.isSHowIds && ((this.isSHowIds.length = 0), (this.isSHowIds = null)), + this.$onClose(), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.RoleView = e), __reflect(e.prototype, "app.RoleView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "BlessAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), (t.httpTxtParser = new egret.HtmlTextParser()), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + if ((e.desc1 && (this.txt_cur.text = e.desc1), e.desc2)) { + var i = e.desc2.split(":"), + n = i[0], + s = i[1], + a = ""; + n == t.CrmPU.language_Attribute_Name2_46 + ? ((a += "|C:0xf0c896&T:" + n + ":|"), (a += "|C:0x28ee01&T: " + s + "|"), (this.arrow.visible = !1)) + : ((a += "|C:0xf0c896&T:" + n + "|"), (this.arrow.visible = !1)), + (this.txt_next.textFlow = t.hETx.qYVI(a)); + } else (this.txt_next.text = ""), (this.arrow.visible = !1); + } + }), + (i.prototype.destroy = function () { + (this.httpTxtParser = null), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.BlessAttrItemView = e), __reflect(e.prototype, "app.BlessAttrItemView"); + var i = (function () { + function t() {} + return t; + })(); + (t.BlessAttrVo = i), __reflect(i.prototype, "app.BlessAttrVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i) { + var n = t.call(this) || this; + return ( + (n.reverse = !1), + (n.width = n.height = 98), + (n.barMask = new egret.Shape()), + n.addChild(n.barMask), + (n.background = new egret.Bitmap(RES.getRes(e))), + (n.bar = new egret.Bitmap(RES.getRes(i))), + (n.bar.scaleX = -1), + (n.bar.x = n.bar.y = n.bar.anchorOffsetX = n.bar.anchorOffsetY = 49), + n.addChild(n.background), + n.addChild(n.bar), + (n.bar.mask = n.barMask), + n + ); + } + return ( + __extends(e, t), + (e.prototype.setProgress = function (t) { + var e = +t / 100; + (e = e ? 0.75 - e : 0.75), + this.barMask.graphics.clear(), + this.barMask.graphics.beginFill(16711680), + this.barMask.graphics.moveTo(49, 49), + this.barMask.graphics.lineTo(98, 49), + this.barMask.graphics.drawArc(49, 49, 49, (270 * Math.PI) / 180, (360 * e * Math.PI) / 180, !0), + this.barMask.graphics.lineTo(49, 49), + this.barMask.graphics.endFill(); + }), + e + ); + })(egret.Sprite); + (t.BlessProgressBar = e), __reflect(e.prototype, "app.BlessProgressBar"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._itemArrayCollection = null), + (i.starUrlBg = "blessing_xingxing"), + (i.starUrl = "blessing_xingxing1"), + (i.starUrlBg2 = "blessing_yueliang"), + (i.starUrl2 = "blessing_yueliang1"), + (i.starUrlBg3 = "blessing_taiyan"), + (i.starUrl3 = "blessing_taiyan1"), + (i.starUrlBgNum = 0), + (i.starUrlNum = 0), + (i.starUrl2Num = 10), + (i.starUrl3Num = 20), + (i.itemId = 269), + (i.ruleId = 30), + (i.titleStr = t.CrmPU.language_Omission_txt58), + (i.curBlessNum = 0), + (i.effBlessNum = 0), + (i.skinName = "BlessSkin"), + (i._itemArrayCollection = new eui.ArrayCollection()), + i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.mcEff || + ((this.mcEff = t.ObjectPool.pop("app.MovieClip")), + (this.mcEff.blendMode = egret.BlendMode.ADD), + (this.mcEff.scaleX = this.mcEff.scaleY = 1), + (this.mcEff.touchEnabled = !0), + (this.mcEff.visible = !1), + this.mcGrp.addChild(this.mcEff)), + (this.start = new t.BlessProgressBar("blessing_jdbg", "blessing_jdt")), + this.addChild(this.start), + (this.start.x = 146), + (this.start.y = 123), + (this._scrollViewContainer = new t.ScrollViewContainer(this.arrGroup)), + this._scrollViewContainer.callFunc([null, null, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this._scrollViewContainer.itemRenderer = t.BlessAttrItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.btn_bless1.label = t.CrmPU.language_Common_175), + (this.btn_bless0.label = t.CrmPU.language_Common_176), + this.vKruVZ(this.btn_bless1, this.onClick), + this.vKruVZ(this.btn_bless0, this.onClick), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCost), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCost), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCost), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + (this.txt_get.visible = !1), + this.group_consume1.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), + this.group_consume1.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this), + t.GetPropsView.getPropsTxt(this.txt_get, this.itemId); + var e = this.group_star.numElements; + this.starArr = []; + for (var i, n = 0; e > n; n++) (i = this.group_star.getElementAt(n)), this.starArr.push(i), (i.source = this.starUrlBg); + (this.dataAry = []), + this.HFTK(t.Nzfh.ins().post_playerBlessChange, this.refreshData), + this.HFTK(t.Nzfh.ins().post_playerVIPChange, this.refreshAuto), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.refreshAuto), + this.setRedDot(), + this.refreshAuto(), + this.refreshData(); + }), + (i.prototype.hideView = function () { + t.KHNO.ins().remove(this.automationFunction, this), (this.btn_bless0.label = t.CrmPU.language_Common_176); + }), + (i.prototype.updateCost = function () { + var e = t.VlaoF.BlesseConstConfig.blessone, + i = t.VlaoF.BlesseConstConfig.itemid, + n = t.ZAJw.MPDpiB(0, i), + s = n >= e ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED, + a = t.CrmPU.language_Omission_txt4 + (": |C:" + s + "&T:" + t.CommonUtils.overLengthChange(n) + "|C:0xe0ae75&T:/" + t.CommonUtils.overLengthChange(e)); + this.txt_consume1.textFlow = t.hETx.qYVI(a); + }), + (i.prototype.setRedDot = function () { + var t = "BlessMgr.isCanBless"; + (this.redDot1.updateShowFunctions = t), (this.redDot1.showMessages = "ThgMu.post_8_1;ThgMu.post_8_4;ThgMu.post_8_3;Nzfh.post_playerBlessChange"); + var e = "BlessMgr.isCanBless2"; + (this.redDot0.updateShowFunctions = e), (this.redDot0.showMessages = "ThgMu.post_8_1;ThgMu.post_8_4;ThgMu.post_8_3;Nzfh.post_playerBlessChange"); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.localToGlobal(); + switch (e.currentTarget) { + case this.txt_consume1: + var s = t.VlaoF.StdItems[269]; + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[this.itemId], + i = 0; + if ((0 == t.ZAJw.MPDpiB(ZnGy.qatEquipment, this.itemId) && (i = 1), !t.mAYZL.ins().ZbzdY(t.GaimItemWin))) { + var n = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + { + itemId: e.itemid, + needNum: i, + }, + { + x: n.x, + y: n.y, + }, + { + height: this.height, + width: this.width, + }, + 8888 + ); + } + }), + (i.prototype.refreshData = function (e) { + var i = this; + void 0 === e && (e = 1), (this.mcEff.visible = !1); + var n, + s = t.JgMyc.ins().roleModel.blessDatas, + a = 0, + r = t.NWRFmB.ins().getPayer, + o = r.propSet.getBless(); + if ( + (this.effBlessNum < o && + 0 != e && + this.mcEff && + ((this.mcEff.visible = !0), + this.mcEff.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_zfu", + 1, + function () { + i.mcEff.visible = !1; + }, + !1 + )), + (this.effBlessNum = o), + 0 == o || this.curBlessNum != o) + ) { + this.curBlessNum = o; + var l = (t.VlaoF.BlesseConstConfig.blessone, t.VlaoF.BlesseConstConfig.blessten, t.VlaoF.BlesseConstConfig.blessdown, t.JgMyc.ins().roleModel.getStarLev()); + this.preLev < l ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips46) : this.preLev > l && t.uMEZy.ins().IrCm(t.CrmPU.language_Tips47), (this.preLev = l); + var h = t.VlaoF.BlessConfig[l], + p = t.VlaoF.BlessConfig[l + 1]; + if (h && p) { + var u = p.needBlessValue - h.needBlessValue, + c = o - h.needBlessValue, + g = 100 * c; + this.start && this.start.setProgress(Math.floor(g / u)), (this.txt_blessing.text = t.CrmPU.language_Omission_txt19 + ":" + o + "/" + p.needBlessValue); + } else (this.txt_blessing.text = t.CrmPU.language_Omission_txt19 + ":" + o), this.start && this.start.setProgress(100); + (this.txt_star.text = t.CrmPU.language_Omission_txt18 + l), + (this.txt_desc.visible = h.blessdown > 0), + (this.txt_desc.text = t.CrmPU.language_Omission_txt20 + (h && h.blessdown) + t.CrmPU.language_Omission_txt19); + var d = 0, + m = "", + f = ""; + l > this.starUrl3Num + ? ((d = l - this.starUrl3Num), (m = this.starUrl3), (f = this.starUrlBg3)) + : l > this.starUrl2Num + ? ((d = l - this.starUrl2Num), (m = this.starUrl2), (f = this.starUrlBg2)) + : l > this.starUrlNum && ((d = l - this.starUrlNum), (m = this.starUrl), (f = this.starUrlBg)); + for (var v = 0, _ = this.starArr.length; _ > v; v++) d > v ? (this.starArr[v].source = m) : (this.starArr[v].source = f); + var y, T; + if (((this.newArr = []), s)) { + for (a = s.length, T = 0; a > T; T++) + if (((n = s[T]), n.level == l)) { + for (y = 0; y < n.attrsCur.length; y++) + this.newArr.push({ + desc1: n.attrsCur[y], + desc2: n.attrsNext[y], + }); + break; + } + this.setData(this.newArr); + } else this.setData([]); + this.setRedDot(), this.updateCost(); + } + }), + (i.prototype.refreshAuto = function () { + t.BlessMgr.ins().isCanAuto ? (this.btn_bless0.filters = null) : (this.btn_bless0.filters = t.FilterUtil.ARRAY_GRAY_FILTER); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.onClick = function (e) { + var i = t.ZAJw.MPDpiB(0, this.itemId); + if (e.currentTarget == this.btn_bless1) 1 > i && this.onGetProps(), t.BlessMgr.ins().send_18_1(1); + else if (e.currentTarget == this.btn_bless0) + if (t.BlessMgr.ins().isCanAuto) + t.KHNO.ins().RTXtZF(this.automationFunction, this) + ? (t.KHNO.ins().remove(this.automationFunction, this), (this.btn_bless0.label = t.CrmPU.language_Common_176)) + : (this.automationFunction(), (this.btn_bless0.label = t.CrmPU.language_Common_177), t.KHNO.ins().tBiJo(150, 0, this.automationFunction, this)); + else { + var n = t.VipData.ins().getVipDataByLv(4), + s = t.zlkp.replace(t.CrmPU.language_Common_178, 6, n.name); + t.uMEZy.ins().IrCm(s); + } + }), + (i.prototype.automationFunction = function () { + var e = t.ZAJw.MPDpiB(0, this.itemId); + e > 0 ? t.BlessMgr.ins().send_18_1(1) : (t.KHNO.ins().remove(this.automationFunction, this), (this.btn_bless0.label = t.CrmPU.language_Common_176), this.onGetProps()); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this); this._list.numChildren > 0; ) { + var i = this._list.getChildAt(0); + this._list.removeChild(i), i.destroy(), (i = null); + } + this.mcEff && (this.mcEff.destroy(), (this.mcEff = null)), + t.KHNO.ins().remove(this.automationFunction, this), + t.Nzfh.ins().post_gaimItemView(8888), + (this.dataAry.length = 0), + (this.dataAry = null), + this.newArr && ((this.newArr.length = 0), (this.newArr = null)), + t.lEYZI.Naoc(this.group_star), + this.group_star && this.group_star.removeChildren(), + (this.group_star = null), + (this.starArr.length = 0), + (this.starArr = null), + this._scrollViewContainer.destory(), + this.fEHj(this.btn_bless1, this.onClick), + this.fEHj(this.btn_bless0, this.onClick), + this.txt_consume1.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), + this.txt_consume1.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this), + (this.txt_star.text = ""), + (this.txt_blessing.text = ""), + (this.txt_consume1.text = ""), + (this.btn_bless1 = null), + (this.btn_bless0 = null), + (this.txt_star = null), + (this.txt_blessing = null), + (this.txt_consume1 = null), + (this.starUrlBg = ""), + (this.starUrl = ""), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this.arrGroup && this.arrGroup.removeChildren(), + (this.arrGroup = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.gIRYTi); + (t.BlessView = e), __reflect(e.prototype, "app.BlessView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "RoleCircleAttrItemSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + t.desc1 && (this.txt_cur.text = t.desc1), t.desc2 ? (this.txt_next.text = t.desc2) : ((this.txt_next.text = ""), (this.arrow.visible = !1)); + } + }), + e + ); + })(eui.ItemRenderer); + (t.RoleCircleAttrItemView = e), __reflect(e.prototype, "app.RoleCircleAttrItemView"); + var i = (function () { + function t() {} + return t; + })(); + (t.RoleCircleVo = i), __reflect(i.prototype, "app.RoleCircleVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "CircleTipsWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.effMc || ((this.effMc = t.ObjectPool.pop("app.MovieClip")), (this.effMc.scaleX = this.effMc.scaleY = 1), (this.effMc.touchEnabled = !1), this.circleEffGrp.addChild(this.effMc)), + this.effMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zstjdc", 1, function () {}, !1), + this.vKruVZ(this.closeGrp, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeGrp: + t.mAYZL.ins().close(this), t.mAYZL.ins().ZbzdY(t.RoleView) || t.mAYZL.ins().open(t.RoleView, [2, 0]); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.effMc && (this.effMc.destroy(), (this.effMc = null)), + this.fEHj(this.closeGrp, this.onClick), + (t.edHC.ins().circleTipsInfoCD = egret.getTimer() + 12e4); + }), + i + ); + })(t.gIRYTi); + (t.RoleCircleTipsView = e), __reflect(e.prototype, "app.RoleCircleTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._itemArrayCollection = null), (i.itemId = 931), (i.ruleId = 8), (i.titleStr = t.CrmPU.language_System8), (i.level = 0), (i.skinName = "CircleSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.red.visible = !1), + this._itemArrayCollection || + ((this.list.itemRenderer = t.RoleCircleAttrItemView), + (this._itemArrayCollection = new eui.ArrayCollection()), + (this.list.dataProvider = this._itemArrayCollection), + this.vKruVZ(this.btnCircle, this.onTouchAp), + (this.txt_get_repair.textFlow = t.hETx.qYVI("" + t.CrmPU.language_System26 + "")), + this.vKruVZ(this.txt_get_repair, this.getFunction), + this.VoZqXH(this.materImg2, this.mouseMove), + this.EeFPm(this.materImg2, this.mouseMove), + this.VoZqXH(this.materImg3, this.mouseMove), + this.EeFPm(this.materImg3, this.mouseMove), + this.HFTK(t.edHC.ins().post_26_45, this.updateInfo), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateInfo), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateInfo), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateInfo), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateInfo)), + (this.level = -1), + this.refreshCircleCount(), + this.updateView(), + t.GetPropsView.getPropsTxt(this.txt_get, this.itemId), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.mc || + ((this.mc = t.ObjectPool.pop("app.MovieClip")), + (this.mc.blendMode = egret.BlendMode.ADD), + (this.mc.x = 194), + (this.mc.y = 160), + this.reinGroup.addChildAt(this.mc, 10), + this.mc.playFile(ZkSzi.RES_DIR_EFF + "eff_zsyw1", -1)); + }), + (i.prototype.updateInfo = function () { + t.KHNO.ins().removeAll(this), t.KHNO.ins().tBiJo(100, 1, this.updateView, this); + }), + (i.prototype.onGetProps = function (e) { + var i = Number(e), + n = t.VlaoF.GetItemRouteConfig[i ? i : this.itemId]; + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var s = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + n.itemid, + { + x: s.x, + y: s.y, + }, + { + height: this.height, + width: this.width, + }, + 8888 + ); + } + }), + (i.prototype.getFunction = function () { + t.mAYZL.ins().ZbzdY(t.RoleExchangView) || t.mAYZL.ins().open(t.RoleExchangView); + }), + (i.prototype.refreshCircleCount = function () { + t.edHC.ins().send_26_45(); + }), + (i.prototype.attrSort = function (e, i) { + return e.desc1.indexOf(t.CrmPU.language_ATTROBJ[70]) > i.desc1.indexOf(t.CrmPU.language_ATTROBJ[70]) + ? 1 + : e.desc1.indexOf(t.CrmPU.language_ATTROBJ[75]) > i.desc1.indexOf(t.CrmPU.language_ATTROBJ[75]) + ? 1 + : -1; + }), + (i.prototype.updateView = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.MzYki(); + this.level > -1 && i > this.level && this.playMC(), (this.level = e.propSet.MzYki()); + var n = e.propSet.mBjV(), + s = (e.propSet.getZSSoul(), t.GlobalData.sectionOpenDay); + this.txt_circle.text = t.CrmPU.language_Omission_txt13 + i + t.CrmPU.language_Common_0; + for (var a, r, o, l = t.VlaoF.CircleLevel[i], h = t.VlaoF.CircleLevel[i + 1], p = !0, u = null, c = {}, g = [], d = 0; d < l.attrs.length; d++) (a = l.attrs[d]), (c[a.type] = a.value); + if (h) { + (u = {}), (this.circleData = h); + for (var m = "", d = 0; d < h.attrs.length; d++) + (a = h.attrs[d]), (u[a.type] = a.value), 75 == a.type && (m = "," + t.CrmPU.language_ATTROBJ[75] + "|C:0xe50000&T: " + t.MathUtils.GetPercent(a.value, 1e4) + "|"); + for (var f in u) + (o = t.AttributeData.getAttrValue(+f, u)), + o && + ((r = t.AttributeData.getAttrValue(+f, c, !0)), + g.push({ + desc1: r, + desc2: o, + })); + (this.conditionGroup.visible = !0), (this.txt_max_lev.visible = !1); + var v = "|C:0xE0AE75&T:" + t.CrmPU.language_Omission_txt1 + "|"; + n < h.levellimit ? ((v += "|C:0xe50000&T:" + h.levellimit), (p = !1)) : (v += "|C:0xE0AE75&T:" + h.levellimit), (this.txt_level.textFlow = t.hETx.qYVI(v)); + var _, + y, + T = 13740407; + (this.mater1.visible = !1), + h.item1 && + ((this.mater1.visible = !0), + (_ = t.ZAJw.sztgR(h.item1.type, h.item1.id)), + _ && + ((y = t.ZAJw.MPDpiB(h.item1.type, h.item1.id)), + y < h.item1.count && ((T = 15007744), (p = !1)), + (this.mater1.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Omission_txt4 + _[0] + ":|C:" + T + "&T:" + t.CommonUtils.overLengthChange(h.item1.count) + "|")))), + (T = 13740407), + (this.mater2.visible = !1), + h.item2 && + ((this.mater2.visible = !0), + (_ = t.ZAJw.sztgR(h.item2.type, h.item2.id)), + _ && + ((this.materImg2.source = _[1] + ""), + (this.materImg2.itemID = h.item2.id), + (y = t.ZAJw.MPDpiB(h.item2.type, h.item2.id)), + y < h.item2.count && ((T = 15007744), (p = !1)), + (this.txt_mater2.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt4 + " :|C:" + T + "&T:" + y + "|/" + h.item2.count)))), + (T = 13740407), + (this.mater3.visible = !1), + h.item3 && + h.item3.id && + ((this.mater3.visible = !0), + (_ = t.ZAJw.sztgR(h.item3.type, h.item3.id)), + _ && + ((this.materImg3.source = _[1] + ""), + (this.materImg3.itemID = h.item3.id), + (y = t.ZAJw.MPDpiB(h.item3.type, h.item3.id)), + y < h.item3.count && ((T = 15007744), (p = !1)), + (this.txt_mater3.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt4 + " :|C:" + T + "&T:" + y + "|/" + h.item3.count)))), + (this.txt_reduceLv.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt45, h.costlevel))), + s < h.openday && (p = !1); + } else { + p = !1; + for (var f in c) + (r = t.AttributeData.getAttrValue(+f, c, !0)), + r && + g.push({ + desc1: r, + desc2: null, + }); + (this.conditionGroup.visible = !1), (this.txt_max_lev.visible = !0), (this.txt_max_lev.text = t.CrmPU.language_Omission_txt14); + } + g.sort(this.attrSort), this._itemArrayCollection.replaceAll(g), (this.red.visible = p); + }), + (i.prototype.showGetPropsView = function () { + var e = t.GlobalData.sectionOpenDay, + i = t.NWRFmB.ins().getPayer, + n = i.propSet.mBjV(); + if (!this.circleData) return t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt70), !1; + if (this.circleData.openday > e) return t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips134, this.circleData.openday)), !1; + if (this.circleData.levellimit > n) return t.uMEZy.ins().IrCm(t.CrmPU.language_Common_84), !1; + var s = []; + this.circleData.item2 && s.push(this.circleData.item2), this.circleData.item3 && s.push(this.circleData.item3); + for (var a = 0; a < s.length; a++) { + var r = s[a], + o = t.ZAJw.MPDpiB(r.type, r.id); + if (o < r.count) return this.onGetProps(931), !1; + } + var l = this.circleData.item1, + h = t.ZAJw.MPDpiB(l.type, l.id); + return h < l.count ? (this.onGetProps(932), !1) : !0; + }), + (i.prototype.playMC = function () { + this.upMc || ((this.upMc = t.ObjectPool.pop("app.MovieClip")), (this.upMc.blendMode = egret.BlendMode.ADD), (this.upMc.x = 182), (this.upMc.y = 200)), + this.reinGroup.addChildAt(this.upMc, 100), + this.upMc.playFile(ZkSzi.RES_DIR_EFF + "eff_zs2", 1, this.stopMC.bind(this)); + }), + (i.prototype.stopMC = function () { + this.upMc && (this.upMc.destroy(), (this.upMc = null)); + }), + (i.prototype.onTouchAp = function () { + this.showGetPropsView() && (t.mAYZL.ins().ZbzdY(t.RoleCircleTipsView) && t.mAYZL.ins().close(t.RoleCircleTipsView), t.CircleMgr.ins().send_11_2()); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (e.currentTarget.itemID) { + var n = t.VlaoF.StdItems[e.currentTarget.itemID]; + if (n) { + var s = i.localToGlobal(), + a = t.TipsType.TIPS_EQUIP; + (a = n.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } + } + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + t.KHNO.ins().removeAll(this), + t.Nzfh.ins().post_gaimItemView(8888), + this.stopMC(), + this.mc && (this.mc.destroy(), (this.mc = null)), + this.fEHj(this.btnCircle, this.onTouchAp), + this.fEHj(this.txt_get_repair, this.getFunction), + this.materImg2.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.materImg2.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.materImg3.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.materImg3.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + i + ); + })(t.BaseView); + (t.RoleCircleView = e), __reflect(e.prototype, "app.RoleCircleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._itemArrayCollection = null), + (t.dataAry = []), + (t._itemArrayCollection2 = null), + (t.dataAry2 = []), + (t.endScrollV = 0), + (t.skinName = "AttrSkin"), + (t._itemArrayCollection = new eui.ArrayCollection()), + (t._itemArrayCollection2 = new eui.ArrayCollection()), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.attrBtn.currentState = "show"), (this.stateBtn.currentState = "hide"), (this.stateScroller.visible = !1), this.init(); + }), + (i.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this.attrGroup)), + this._scrollViewContainer.callFunc([this.onScrollerChange, this.onScrollerEnd, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.RoleAttrItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.attrConfigArr = []), + (this.stateList.itemRenderer = t.RoleStateItemView), + (this.stateList.dataProvider = this._itemArrayCollection2), + this.refreshData2(), + t.MouseScroller.bind(this.stateScroller), + this.refreshData(), + this.vKruVZ(this.attrBtn, this.onClose), + this.vKruVZ(this.stateBtn, this.onClose), + this.vKruVZ(this.btn_close, this.onClose); + }), + (i.prototype.onClose = function (e) { + switch (e.currentTarget) { + case this.attrBtn: + (this.attrBtn.currentState = "show"), (this.stateBtn.currentState = "hide"), (this.stateScroller.visible = !1), (this.attrScroller.visible = !0), (this.attrList.visible = !0); + break; + case this.stateBtn: + (this.stateScroller.visible = !0), (this.attrScroller.visible = !1), (this.attrList.visible = !1), (this.attrBtn.currentState = "hide"), (this.stateBtn.currentState = "show"); + break; + case this.btn_close: + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_CLOSE, !0); + } + }), + (i.prototype.refreshData2 = function () { + for (var e, i = t.NWRFmB.ins().getPayer, n = [], s = t.CrmPU.stateName.length, a = 0; s > a; ++a) { + var r = t.JgMyc.ins().roleModel.getStateValueByIndex(i.propSet, a); + if (r) { + (e = new t.RoleAttrVo()), (e.attr_name = t.RoleData.GetStateName(a)), (e.attr_value = r), (e.attr_explain = ""); + var o = t.CrmPU["stateArr" + a]; + o && + (e.attrConfigVo = { + name: o[0], + desc: o[1], + }), + n.push(e); + } + } + this.setData2(n); + }), + (i.prototype.setData2 = function (t) { + this.creatItem2(t); + }), + (i.prototype.creatItem2 = function (t) { + this.dataAry2.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry2.push(t[e]); + this._itemArrayCollection2.replaceAll(this.dataAry2); + }), + (i.prototype.onTouch = function (e) { + t.uMEZy.ins().closeTips(); + }), + (i.prototype.refreshData = function () { + var e, + i, + n = t.NWRFmB.ins().getPayer, + s = []; + for (var a in t.VlaoF.HumanAttrConfig) { + var r = t.VlaoF.HumanAttrConfig[a]; + (e = new t.RoleAttrVo()), + (e.attr_name = r.attrName), + (i = t.JgMyc.ins().roleModel.getPropValueByIndex(n.propSet, r.attrID, r.lv)), + null != i && + ((e.attr_value = i + ""), + (e.attr_explain = ""), + r.tips && + (e.attrConfigVo = { + desc: r.tips, + name: "", + }), + s.push(e)); + } + this.setData(s); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection && this._itemArrayCollection.replaceAll(this.dataAry), this._scroller.validateNow(); + }), + (i.prototype.onScrollerChange = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.removeListener(); + }), + (i.prototype.onScrollerEnd = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.addListener(); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this); this._list.numChildren > 0; ) { + var i = this._list.getChildAt(0); + this._list.removeChild(i), i.destroy(), (i = null); + } + this.fEHj(this.attrBtn, this.onClose), + this.fEHj(this.stateBtn, this.onClose), + this.fEHj(this.btn_close, this.onClose), + this._itemArrayCollection.removeAll(), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + t.lEYZI.Naoc(this.attrGroup); + }), + i + ); + })(t.BaseView); + (t.AttrView = e), __reflect(e.prototype, "app.AttrView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isShowAtrr = !0), (t.ruleId = 4), (t.titleStr = ""), (t.skinName = "EquipSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.init(); + }), + (i.prototype.init = function () { + t.JgMyc.ins().roleModel.init(), (this.roleInnerModel = new t.RoleInnerModel(this.modelGroup)); + var e, i; + for (this.equipArr = [], i = 0; i < this.iconGroup.numElements; i++) (e = this.iconGroup.getChildByName("icon_" + i)), e.setEquipBg(i), this.equipArr.push(e); + (this.neiGongBtn.visible = !1), (this.neiGongGrp.visible = !1); + var n = t.VlaoF.MeridiansSetConfig.equipOpen, + s = t.VlaoF.MeridiansSetConfig.equipOpenBS; + if (n) { + var a = 0, + r = []; + t.mAYZL.ins().isCheckOpen(n) && + (r.push({ + type: "equipOpen", + img1: "tab_ngzbt01", + img2: "tab_ngzbt02", + }), + (this.neiGongBtn.visible = !0), + (a = r.length - 1)), + t.mAYZL.ins().isCheckOpen(s) && + r.push({ + type: "equipOpenBS", + img1: "tab_ngzbt12", + img2: "tab_ngzbt11", + }), + (this.ngEquiTabBar.itemRenderer = t.NGEquipTab), + (this.ngEquiTabBar.dataProvider = new eui.ArrayCollection(r)), + this.ngEquipView.init(1), + this.ngGemstoneView.init(2), + (this.ngEquiTabBar.selectedIndex = a), + this.onTabTouch(null); + } + this.HFTK(t.bPGzk.ins().post_7_3, this.setEquipData), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateGzRed), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateGzRed), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateGzRed), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.refreshData), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateGzRed), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_ATTR_OPEN, this.showAtrr, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_ATTR_CLOSE, this.hideAtrr, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_LEVEL_CIRCLE, this.updateGzRed, this), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onEquipWear, this), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onEquipDrop, this), + this.vKruVZ(this.gzClickGroup, this.onClick), + this.vKruVZ(this.btnAtrr, this.onClick), + this.vKruVZ(this.btnAtrr0, this.onClick), + this.vKruVZ(this.neiGongBtn, this.onClick), + this.vKruVZ(this.neiGongCloseBtn, this.onClick), + this.addChangeEvent(this.ngEquiTabBar, this.onTabTouch), + this.updateGzRed(), + this.setEquipData(), + this.showAtrr(), + this.refreshData(); + }), + (i.prototype.showView = function () { + this.isShowAtrr && t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_OPEN); + }), + (i.prototype.hideView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_CLOSE), (this.neiGongGrp.visible = !1); + }), + (i.prototype.showAtrr = function () { + (this.btnAtrr.visible = !1), (this.btnAtrr0.visible = !0); + }), + (i.prototype.hideAtrr = function (t) { + void 0 === t && (t = !1), t && (this.isShowAtrr = !1), (this.btnAtrr.visible = !0), (this.btnAtrr0.visible = !1); + }), + (i.prototype.updateGzRed = function () { + this.gzRedPoint.visible = t.edHC.ins().getOfficeRed(); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.gzClickGroup: + t.mAYZL.ins().open(t.GuanZhiView); + break; + case this.btnAtrr: + (this.isShowAtrr = !0), this.showAtrr(), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_OPEN); + break; + case this.btnAtrr0: + (this.isShowAtrr = !1), this.hideAtrr(), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_CLOSE); + break; + case this.neiGongBtn: + var i = t.VlaoF.MeridiansSetConfig; + i && t.mAYZL.ins().isCheckOpen(i.openLimit) ? (this.neiGongGrp.visible = !this.neiGongGrp.visible) : i && i.limitStr && t.uMEZy.ins().IrCm(i.limitStr); + break; + case this.neiGongCloseBtn: + this.neiGongGrp.visible = !1; + } + }), + (i.prototype.onTabTouch = function (t) { + (this.ngEquipView.visible = !1), (this.ngGemstoneView.visible = !1); + var e = this.ngEquiTabBar.selectedItem; + e && ("equipOpen" == e.type ? (this.ngEquipView.visible = !0) : "equipOpenBS" == e.type && (this.ngGemstoneView.visible = !0)); + }), + (i.prototype.refreshData = function () { + var e = t.NWRFmB.ins().getPayer; + this.titleStr = e.propSet.getName(); + var i, + n = e.propSet.getAP_JOB(), + s = e.propSet.mBjV(), + a = e.propSet.MzYki(), + r = e.propSet.getOfficialPositicon(); + e.propSet.getGuildName() && "" != e.propSet.getGuildName() && (i = e.propSet.getGuildName()); + var o = ""; + switch (n) { + case JobConst.ZhanShi: + o = t.AttributeData.job[JobConst.ZhanShi]; + break; + case JobConst.FaShi: + o = t.AttributeData.job[JobConst.FaShi]; + break; + case JobConst.DaoShi: + o = t.AttributeData.job[JobConst.DaoShi]; + } + (this.job = o), (this.txt_job.text = o), (this.txt_guild.text = i ? i : ""); + var l = a > 0 ? o + " " + a + t.CrmPU.language_Common_0 + s + t.CrmPU.language_Common_1 : o + " " + s + t.CrmPU.language_Common_1; + (this.txt_job.text = l), (this.gzImage.source = "gz_zw_" + r), this.setModel(); + }), + (i.prototype.setEquipData = function () { + var e = t.caJqU.ins().equips; + if (e) { + for (var i, n = 0; n < e.length; n++) + (i = e[n].nPos), + (i >= t.StdItemType.itEquipDiamond && i < t.StdItemType.itShield) || + i > t.StdItemType.itMoQi || + (i >= t.StdItemType.itShield && i <= t.StdItemType.itMoQi && (i -= 4), this.equipArr[i].setItem(e[n])); + this.setModel(); + } + }), + (i.prototype.setModel = function () { + var e = t.caJqU.ins().getModeEquip(); + this.roleInnerModel.setData(e); + }), + (i.prototype.onEquipWear = function (e) { + var i = e[0]; + (i.nPos && i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield) || + i.nPos > t.StdItemType.itMoQi || + (i && null != i.nPos && (i.nPos >= t.StdItemType.itShield && i.nPos <= t.StdItemType.itMoQi ? this.equipArr[i.nPos - 4].setItem(i) : this.equipArr[i.nPos].setItem(i), this.setModel())); + }), + (i.prototype.onEquipDrop = function (e) { + var i = e[0]; + if (!((i.nPos && i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield) || i.nPos > t.StdItemType.itMoQi)) { + for (var n, s = 0; s < this.equipArr.length; s++) + if (((n = this.equipArr[s]), n.userItem && n.userItem.series.isCompleteEquals(i.series))) { + var a = i.nPos; + i.nPos >= t.StdItemType.itShield && i.nPos <= t.StdItemType.itMoQi && (a = i.nPos - 4), this.equipArr[a].resum(); + break; + } + this.setModel(); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.ngEquipView && (this.ngEquipView.$onClose(), (this.ngEquipView = null)), + this.ngGemstoneView && (this.ngGemstoneView.$onClose(), (this.ngGemstoneView = null)), + this.fEHj(this.gzClickGroup, this.onClick), + this.fEHj(this.btnAtrr, this.onClick), + this.fEHj(this.btnAtrr0, this.onClick), + this.fEHj(this.neiGongBtn, this.onClick), + this.fEHj(this.neiGongCloseBtn, this.onClick), + t.lEYZI.Naoc(this.iconGroup), + this.iconGroup && this.iconGroup.removeChildren(), + this.modelGroup && this.modelGroup.removeChildren(), + (this.iconGroup = null), + (this.modelGroup = null), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_OPEN, this.showAtrr, this), + t.ckpDj.ins().removeEvent(t.CompEvent.OTHER_PLAYER_ATTR_CLOSE, this.hideAtrr, this), + t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onEquipWear, this), + t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onEquipDrop, this), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_LEVEL_CIRCLE, this.updateGzRed, this); + var i, n; + for (i = 0, n = this.equipArr.length; n > i; i++) { + var s = this.equipArr[i]; + s.destroy(), (s = null); + } + this.ngEquiTabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.ngEquiTabBar = null), + (this.equipArr.length = 0), + (this.equipArr = null), + this.roleInnerModel && this.roleInnerModel.destory(), + (this.roleInnerModel = null), + (this.txt_job.text = ""), + (this.txt_job = null), + (this.txt_guild.text = ""), + (this.txt_guild = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.EquipView = e), __reflect(e.prototype, "app.EquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RoleAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + KdbLz.qOtrbE.iFbP + ? this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + (i.prototype.onClickHandler = function (t) { + var e = this.data.attr_explain; + this.func && this.func(e); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data && this.data.attrConfigVo) { + var i = new egret.Point(e.stageX, e.stageY), + n = this.data.attrConfigVo; + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_SKILL_DESC, + { + desc: n.desc, + }, + { + x: i.x, + y: i.y, + } + ); + } + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var t = this.data; + (this.txt_name.text = t.attr_name), (this.txt_value.text = t.attr_value), (this.func = t.func); + } + }), + (i.prototype.removeListener = function () {}), + (i.prototype.addListener = function () {}), + (i.prototype.destroy = function () { + KdbLz.qOtrbE.iFbP + ? this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.RoleAttrItemView = e), __reflect(e.prototype, "app.RoleAttrItemView"); + var i = (function () { + function t() {} + return t; + })(); + (t.RoleAttrVo = i), __reflect(i.prototype, "app.RoleAttrVo"); + var n = (function () { + function t() {} + return t; + })(); + (t.AttrConfigVo = n), __reflect(n.prototype, "app.AttrConfigVo"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._actID = 0), (i.clickParam = null), (i.closeCD = 120), (i.skinName = "ActivityTipsWinSKin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.itemList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((this.vKruVZ(this.goBtn, this.onClick), this.vKruVZ(this.closeBtn, this.onClick), e[0] && (this._actID = e[0]), 0 != this._actID)) { + var n = t.TQkyOx.ins().getActivityConfigById(this._actID); + n && + ((this.titleIcon.source = n.tipstitleicon + ""), + (this.actTime.textFlow = t.hETx.qYVI(n.tipstime)), + (this.actDesc.textFlow = t.hETx.qYVI(n.tipstext)), + (this.itemList.dataProvider = new eui.ArrayCollection(n.rewards)), + (this.goBtn.label = n.tipsbuttontext + ""), + (this.clickParam = n.tipsbuttonfunction)); + } + this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this); + }), + (i.prototype.updateTime = function () { + var e = (this.closeCD -= 1); + 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), t.mAYZL.ins().close(this)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + this.clickParam && this.clickResult(this.clickParam), t.mAYZL.ins().close(this); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.clickResult = function (e) { + switch (e.type) { + case 1: + e.param1 && e.param2 && t.mAYZL.ins().open(e.param1, e.param2); + break; + case 2: + t.TQkyOx.ins().enterActivity(this._actID); + break; + case 3: + t.TQkyOx.ins().send_25_1(this._actID, t.Operate.cKuaFu); + break; + case 4: + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().remove(this.updateTime, this), this.fEHj(this.goBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityTipsWin = e), __reflect(e.prototype, "app.ActivityTipsWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RolePriBtnSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this._redDot.visible = !1); + var t = null; + 15 == this._id + ? (t = "StrengthenMgr.isSatisStrengthened") + : 11 == this._id + ? (t = "StrengthenMgr.isTreasure") + : 1 == this._id + ? (t = "rTRv.isSatisFashionActOrUpdate") + : 9 == this._id + ? (t = "edHC.getZSRed") + : 19 == this._id && (t = "SoldierSoulMgr.getWeaponTabRed"), + KdbLz.qOtrbE.iFbP && 5 == this._id && (t = "NGcJ.getSkillredDot"), + (this._redDot.updateShowFunctions = t); + }), + (i.prototype.refresh = function () { + (1 == this._id || 11 == this._id || 15 == this._id || 9 == this._id || 19 == this._id) && (this._redDot.param = null), KdbLz.qOtrbE.iFbP && 5 == this._id && (this._redDot.param = null); + }), + (i.prototype.setData = function (t) { + t.txt && ((this._nameTf.source = t.txt + 1), (this._nameTf2.source = t.txt + 2)), t.id && (this._id = t.id), t.isOpen && (this._isOpen = t.isOpen); + }), + Object.defineProperty(i.prototype, "id", { + get: function () { + return this._id; + }, + set: function (t) { + this._id = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "isOpen", { + get: function () { + return this._isOpen; + }, + set: function (t) { + this._isOpen = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype["goto"] = function (t) { + 1 == t + ? ((this._normalImg.visible = !0), (this._selectImg.visible = !1), (this._nameTf.visible = !1)) + : ((this._selectImg.visible = !0), (this._nameTf.visible = !0), (this._normalImg.visible = !1)); + }), + (i.prototype.destory = function () { + this.$onClose(), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.RolePriBtnView = e), __reflect(e.prototype, "app.RolePriBtnView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RoleStateItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + KdbLz.qOtrbE.iFbP + ? this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data && this.data.attrConfigVo) { + var i = new egret.Point(e.stageX, e.stageY), + n = this.data.attrConfigVo; + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_SKILL_DESC, + { + desc: "【" + n.name + "】" + n.desc, + }, + { + x: i.x, + y: i.y, + } + ); + } + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + if ("复活加速" == e.attr_name) { + this.txt_name.textFlow = t.hETx.qYVI("|C:0x3794fb&T:复活加速 |"); + var i = t.NWRFmB.ins().getPayer.propSet.getResurrection(), + n = ""; + if (-1 == i) n = "永久"; + else if (0 == i) n = "0时"; + else { + var s = t.DateUtils.formatMiniDateTime(i) - t.GlobalData.serverTime; + n = s > 0 ? t.DateUtils.getFormatBySecond(Math.floor(s / 1e3), t.DateUtils.TIME_FORMAT_5) : "0时"; + } + this.txt_value.textFlow = t.hETx.qYVI("|C:0x3794fb&T:: " + n + "|"); + } else (this.txt_name.textFlow = t.hETx.qYVI(e.attr_name)), (this.txt_value.textFlow = t.hETx.qYVI(e.attr_value)); + } + }), + (i.prototype.destroy = function () { + KdbLz.qOtrbE.iFbP + ? this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)), + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.RoleStateItemView = e), __reflect(e.prototype, "app.RoleStateItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._itemArrayCollection = null), (t.dataAry = []), (t.skinName = "StateSkin"), (t._itemArrayCollection = new eui.ArrayCollection()), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.list.itemRenderer = t.RoleStateItemView), + (this._itemArrayCollection = new eui.ArrayCollection()), + (this.list.dataProvider = this._itemArrayCollection), + this.refreshData(), + this.vKruVZ(this.btn_close, this.onClose), + t.MouseScroller.bind(this.scroller); + }), + (i.prototype.onClose = function (e) { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_ATTR_CLOSE); + }), + (i.prototype.refreshData = function () { + for (var e, i = t.NWRFmB.ins().getPayer, n = [], s = (i.propSet.mBjV(), t.CrmPU.stateName.length), a = 0; s > a; ++a) { + var r = t.JgMyc.ins().roleModel.getStateValueByIndex(i.propSet, a); + if (r) { + (e = new t.RoleAttrVo()), (e.attr_name = t.RoleData.GetStateName(a)), (e.attr_value = r), (e.attr_explain = ""); + var o = t.CrmPU["stateArr" + a]; + o && + (e.attrConfigVo = { + name: o[0], + desc: o[1], + }), + n.push(e); + } + } + this.setData(n); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this); this.list.numChildren > 0; ) { + var i = this.list.getChildAt(0); + this.list.removeChild(i), i.destroy(), (i = null); + } + this._itemArrayCollection.removeAll(), (this._itemArrayCollection = null), t.MouseScroller.unbind(this.scroller), t.lEYZI.Naoc(this.attrGroup); + }), + i + ); + })(t.BaseView); + (t.StateView = e), __reflect(e.prototype, "app.StateView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RoleExchangtemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.btn_exchange, this.onTouchAp); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.btn_exchange.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this); + }), + (i.prototype.onTouchAp = function (e) { + (t.RoleExchangView.TYPE_EXCHANGE = this.data.type), (t.RoleExchangView.INDEX = this.data.idx), t.CircleMgr.ins().send_11_3(this.data.type); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = "", + i = "", + n = "", + s = t.NWRFmB.ins().getPayer, + a = s.propSet.getEXP(), + r = this.data; + if (((e = "" + t.CrmPU.language_Omission_txt30 + r.value + t.CrmPU.language_Omission_txt12), (this.txt_desc1.textFlow = t.hETx.qYVI(e)), 2 == r.type)) + (this.btn_exchange.label = t.CrmPU.language_Omission_txt11), + (i = r.cost <= a ? "" + t.CrmPU.language_Omission_txt31 + r.cost + t.CrmPU.language_Omission_txt32 : "" + t.CrmPU.language_Omission_txt33 + r.cost + t.CrmPU.language_Omission_txt32), + (this.txt_desc2.textFlow = t.hETx.qYVI(i)), + this.item.setItem(null, 0, t.VlaoF.NumericalIcon[5].icon, 1); + else { + var o = 0; + if (r.id > 0) { + var l = t.VlaoF.StdItems[r.id]; + l && (this.item.setItem(null, l.showQuality, l.icon, 1, l), (o = t.ThgMu.ins().getItemCountById(l.id))), + (i = + o > 0 + ? l.name + (":" + t.CrmPU.language_Common_104 + "|C:0x28ee01&T:" + o + "|C:0xF4D1A4&T:" + t.CrmPU.language_Common_38) + : l.name + (":" + t.CrmPU.language_Common_104 + "|C:0xe50000&T:" + o + "|C:0xF4D1A4&T:" + t.CrmPU.language_Common_38)), + (this.txt_desc2.textFlow = t.hETx.qYVI(i)); + } else + (o = t.NWRFmB.ins().getPayer.propSet.getRecycleIntergral()), + (i = + o >= r.cost + ? t.CrmPU.language_Omission_txt34 + "|C:0x28ee01&T:" + r.cost + "|C:0xF4D1A4&T:" + t.CrmPU.language_Time_Min + : t.CrmPU.language_Omission_txt34 + "|C:0xe50000&T:" + r.cost + "|C:0xF4D1A4&T:" + t.CrmPU.language_Time_Min), + (this.txt_desc2.textFlow = t.hETx.qYVI(i)), + this.item.setItem(null, 0, t.VlaoF.NumericalIcon[9].icon, 1); + } + (this.btn_exchange.label = t.CrmPU.language_Omission_txt10), + (n = + r.useTimes > 0 + ? t.CrmPU.language_Omission_txt35 + "|C:0x28ee01&T:" + r.useTimes + "|C:0xF4D1A4&T:" + t.CrmPU.language_Wlelfare_Text5 + : (i = t.CrmPU.language_Omission_txt35 + "|C:0xe50000&T:" + r.useTimes + "|C:0xF4D1A4&T:" + t.CrmPU.language_Wlelfare_Text5)), + (this.txt_desc3.textFlow = t.hETx.qYVI(n)); + } + }), + i + ); + })(t.BaseItemRender); + (t.RoleExchangItemView = e), __reflect(e.prototype, "app.RoleExchangItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._itemArrayCollection = null), + (i.dataAry = []), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + (i.skinName = "RoleExchangSkin"), + (i.name = "RoleExchangView"), + (i._itemArrayCollection = new eui.ArrayCollection()), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.open.call(this, i), + this.dragDropUI.setCurrentState("default6"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System26), + (this._scrollViewContainer = new t.ScrollViewContainer(this.exchange_list)), + this._scrollViewContainer.callFunc([null, null, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.scrollPolicyH = eui.ScrollPolicy.OFF), + (this._scrollViewContainer.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this._scrollViewContainer.itemRenderer = t.RoleExchangItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + this.HFTK(t.CircleMgr.ins().post_11_1, this.init), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.refreshData), + this.HFTK(t.CircleMgr.ins().post_11_3, this.onRefreshExchange), + t.CircleMgr.ins().send_11_1(); + }), + (i.prototype.setData = function () { + this.dataAry.length = 0; + for (var e in t.JgMyc.ins().roleModel.exchangeListData) this.dataAry.push(t.JgMyc.ins().roleModel.exchangeListData[e]); + this._itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.init = function () { + this.setData(); + }), + (i.prototype.onRefreshExchange = function () { + var e = t.JgMyc.ins().roleModel.exchangeListData[i.TYPE_EXCHANGE]; + e && ((e.useTimes -= 1), (e.useTimes = e.useTimes < 0 ? 0 : e.useTimes), this._itemArrayCollection.replaceItemAt(e, i.INDEX)); + }), + (i.prototype.refreshData = function () { + this.setData(); + }), + (i.prototype.onClose = function () { + t.mAYZL.ins().close(i); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.dataAry && ((this.dataAry.length = 0), (this.dataAry = null)), + (this._scrollViewContainer.itemRenderer = null), + (this._scrollViewContainer.dataProvider = null), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this.dragDropUI && this.dragDropUI.destroy(), + this._itemArrayCollection.removeAll(), + this.removeObserve(), + this.$onClose(); + }), + (i.TYPE_EXCHANGE = 0), + (i.INDEX = -1), + i + ); + })(t.gIRYTi); + (t.RoleExchangView = e), __reflect(e.prototype, "app.RoleExchangView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i), this.redDot == i && (this.redDot.visible = !1); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.labelDisplay.text = t.CrmPU.language_Omission_txt44); + var i = "rTRv.selectedIsCanAct"; + this.redDot.updateShowFunctions = i; + }), + (i.prototype.refresh = function () { + this.redDot.param = null; + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.FashionActBtnItemView = e), __reflect(e.prototype, "app.FashionActBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.itemArrayCollection = null), + (t.itemArrayCollection2 = null), + (t.dataAry = []), + (t.dataAry2 = []), + (t.selectedIndex = 0), + (t.skinName = "FashionAttrSkin"), + (t.itemArrayCollection = new eui.ArrayCollection()), + (t.itemArrayCollection2 = new eui.ArrayCollection()), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.scroller_cur.scrollPolicyH = eui.ScrollPolicy.OFF), + (this.scroller_cur.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this.scroller_cur.verticalScrollBar.autoVisibility = !1), + (this.scroller_cur.verticalScrollBar.visible = !1), + (this.scroller_next.scrollPolicyH = eui.ScrollPolicy.OFF), + (this.scroller_next.scrollPolicyV = eui.ScrollPolicy.AUTO), + (this.scroller_next.verticalScrollBar.autoVisibility = !1), + (this.scroller_next.verticalScrollBar.visible = !1), + (this.list_cur.itemRenderer = t.FashionAttrItemRender), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.list_cur.dataProvider = this.itemArrayCollection), + (this.list_next.itemRenderer = t.FashionAttrItemRender), + (this.itemArrayCollection2 = new eui.ArrayCollection()), + (this.list_next.dataProvider = this.itemArrayCollection2), + (this.list_cur.visible = !1), + (this.list_next.visible = !1), + (this.txt_cur_desc.visible = !1), + (this.txt_next_desc.visible = !1), + (this.txt_desc.visible = !1), + t.MouseScroller.bind(this.scroller_cur), + t.MouseScroller.bind(this.scroller_next); + }), + (i.prototype.setAttr = function (e, i, n, s) { + if ( + (void 0 === n && (n = 1), + void 0 === s && (s = 0), + (this.list_cur.visible = !1), + (this.list_next.visible = !1), + 1 == s ? (this.txt_desc.text = "套装展示后将覆盖原来的衣服和武器时装,套装激活后无需展示也可享永久属性加成!") : (this.txt_desc.text = "时装激活后无需展示也可享永久属性加成!"), + 0 == n) + ) + return (this.txt_cur_desc.visible = !1), (this.txt_next_desc.visible = !1), void (this.txt_desc.visible = !1); + i > 0 + ? ((this.txt_cur_desc.visible = !0), + (this.txt_next_desc.visible = !0), + (this.txt_cur_desc.textFlow = t.hETx.qYVI(t.CrmPU.language_System74)), + (this.txt_next_desc.textFlow = t.hETx.qYVI(t.CrmPU.language_System73)), + (this.txt_desc.visible = !1)) + : ((this.txt_cur_desc.visible = !0), + (this.txt_cur_desc.textFlow = t.hETx.qYVI("|C:0xff7700&T:" + t.CrmPU.language_System72 + "|")), + (this.txt_next_desc.visible = !1), + (this.txt_desc.visible = !0)); + var a; + (a = t.VlaoF.FashionupgradeConfig[e][i]), i++, (this.cfg1 = t.VlaoF.FashionupgradeConfig[e][i]); + var r, + o, + l = [], + h = [], + p = [], + u = 0; + if (a) { + if (((this.list_cur.visible = !0), a.attribute)) + for (r = 0; r < a.attribute.length; r++) { + var c = {}; + (c.type = a.attribute[r].type), (u = a.attribute[r].value), (c.value = u), p.push(c); + } + for (r = 0; r < p.length; r++) (o = t.AttributeData.getItemAttStrByType(p[r], p, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != o && l.push(o); + if (((p.length = 0), !this.txt_desc.visible)) + if (this.cfg1) { + if (((this.txt_next_desc.visible = !0), (this.list_next.visible = !0), this.cfg1.attribute)) + for (r = 0; r < this.cfg1.attribute.length; r++) { + var c = {}; + (c.type = this.cfg1.attribute[r].type), (u = this.cfg1.attribute[r].value), (c.value = u), p.push(c); + } + for (0 == p.length && (this.txt_next_desc.visible = !1), r = 0; r < p.length; r++) + p[r] && ((o = t.AttributeData.getItemAttStrByType(p[r], p, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != o && h.push(o)); + } else (this.txt_next_desc.textFlow = t.hETx.qYVI(t.CrmPU.language_Tips98)), (this.txt_next_desc.visible = !0); + this.setData(l, h); + } + }), + (i.prototype.setData = function (t, e) { + this.creatItem(t), this.creatItem2(e); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + 0 == this.dataAry.length + ? ((this.list_cur.visible = !1), this.txt_cur_desc.visible && (this.txt_cur_desc.visible = !1), (this.txt_desc.visible = !1)) + : ((this.list_cur.visible = !0), (this.txt_cur_desc.visible = !0)), + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.creatItem2 = function (e) { + this.dataAry2.length = 0; + for (var i = 0; i < e.length; ++i) this.dataAry2.push(e[i]); + 0 == this.dataAry2.length + ? ((this.list_next.visible = !1), this.txt_next_desc.text == t.CrmPU.language_Tips98 && (this.txt_next_desc.visible = !1)) + : ((this.list_next.visible = !0), (this.txt_next_desc.visible = !0)), + this.itemArrayCollection2.replaceAll(this.dataAry2); + }), + (i.prototype.destroy = function () { + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null), + t.MouseScroller.unbind(this.scroller_cur), + t.MouseScroller.unbind(this.scroller_next), + (this.dataAry.length = 0), + (this.dataAry = null), + (this.dataAry2.length = 0), + (this.dataAry2 = null), + this.removeObserve(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.FashionAtrrView = e), __reflect(e.prototype, "app.FashionAtrrView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FashionAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + this.txt.textFlow = t.hETx.qYVI(e); + } + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.FashionAttrItemRender = e), __reflect(e.prototype, "app.FashionAttrItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchAp, this), (this.icon = ""); + }), + (i.prototype.onTouchAp = function (t) { + this.callFunc && this.callFunc.call(this.targetObj, this.roleAction); + }), + (i.prototype.setData = function (t, e, i) { + (this.roleAction = t), (this.callFunc = e), (this.targetObj = i); + }), + (i.prototype.destroy = function () { + (this.callFunc = null), (this.targetObj = null), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.FashionBtnItemView = e), __reflect(e.prototype, "app.FashionBtnItemView"); + var i; + !(function (t) { + (t[(t.Attack = 0)] = "Attack"), (t[(t.Await = 1)] = "Await"), (t[(t.Walk = 2)] = "Walk"), (t[(t.Run = 3)] = "Run"); + })((i = t.RoleAction || (t.RoleAction = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesCostItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + i.localToGlobal(), t.VlaoF.FashionattributeConfig[this.data.id]; + } + }), + (i.prototype.dataChanged = function () { + this.visible = null != this.data; + var e = this.data.data.type, + i = this.data.name, + n = t.ZAJw.MPDpiB(e, this.data.data.id), + s = n >= this.data.data.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED, + a = "|C:" + s + "&T:" + i + "|C:" + s + "&T:*" + this.data.data.count; + (this.txtCost.textFlow = t.hETx.qYVI(a)), (this.iconGoods.source = t.FourImagesData.convertItemIcon(this.data.data).icon + ""); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this); + }), + i + ); + })(eui.ItemRenderer); + (t.FashionCostItem = e), __reflect(e.prototype, "app.FashionCostItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i), this.redDot == i && (this.redDot.visible = !1); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.labelDisplay.text = t.CrmPU.language_Omission_txt8); + var i = "rTRv.selectedIsCanAct"; + this.redDot.updateShowFunctions = i; + }), + (i.prototype.refresh = function () { + this.redDot.param = null; + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.FashionUpgradeBtnItemView = e), __reflect(e.prototype, "app.FashionUpgradeBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "FourImageLevelUpWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.costList.itemRenderer = t.FourImagesCostItem), + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + (this.costArr = new eui.ArrayCollection()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System63), + (this.redPoint1.visible = this.redPoint2.visible = this.redPoint3.visible = this.redPoint4.visible = !1), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.updateData), + this.HFTK(t.StrengthenMgr.ins().postFourResult, this.postFourResult), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateRedPoint), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateRedPoint), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + t.ckpDj.ins().addEvent(t.CompEvent.GET_PROPS_STRENGTHEN_FOUR_IMAGE, this.onGetProps, this), + (this.tabList.dataProvider = new eui.ArrayCollection([ + { + name: t.CrmPU.language_FourImages_Text1, + }, + { + name: t.CrmPU.language_FourImages_Text2, + }, + { + name: t.CrmPU.language_FourImages_Text3, + }, + { + name: t.CrmPU.language_FourImages_Text4, + }, + ])), + (this.tabList.selectedIndex = 0), + this.vKruVZ(this.btnUp, this.levelUp), + this.updateList(0), + this.updateRedPoint(); + }), + (i.prototype.postFourResult = function (e) { + e ? 4 == e && t.Nzfh.ins().payResultMC(0, this.localToGlobal(this.width / 2 + 60, this.height / 2)) : t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2 + 60, this.height / 2)); + }), + (i.prototype.updateRedPoint = function () { + for (var e, i, n = 1; 5 > n; n++) { + var s = t.FourImagesData.getMaxLv(n); + if (((e = t.StrengthenMgr.ins().getFourImagesData(n)), (i = t.FourImagesData.getConfig(n, null == e ? 1 : e.lv + 1)), i && i.cost)) { + this["redPoint" + n].visible = !0; + for (var a in i.cost) { + var r = i.cost[a], + o = t.ZAJw.MPDpiB(r.type, r.id); + if (o < r.count || (e && e.lv == s.lv)) { + this["redPoint" + n].visible = !1; + break; + } + } + } else this["redPoint" + n].visible = !1; + } + this.cfgCur && this.costArr.replaceAll(this.cfgCur.cost); + }), + (i.prototype.updateData = function () { + this.updateList(this.tabList.selectedIndex); + }), + (i.prototype.levelUp = function () { + if (this.cfgCur) { + var e = t.edHC.ins().getItemIDByCost(this.cfgCur.cost); + if (e.itemId > 0) return this.onGetProps(null, e), !1; + } + t.StrengthenMgr.ins().sendStrengthenInfo(2, this.tabList.selectedIndex + 1); + }), + (i.prototype.onGetProps = function (e, i) { + void 0 === i && (i = null), + this.cfgCur && + (i || (i = t.edHC.ins().getItemIDByCost(this.cfgCur.cost)), + 0 == i.itemId && (i.itemId = i.itemId2), + i.itemId > 0 && + (t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + i, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ))); + }), + (i.prototype.updateList = function (e) { + (this.cfgCur = null), + this.Mc || ((this.Mc = t.ObjectPool.pop("app.MovieClip")), (this.Mc.scaleX = this.Mc.scaleY = 1), (this.Mc.touchEnabled = !1), this.effGrp.addChild(this.Mc)), + this.Mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_sx" + (e + 1), -1), + (this.nextLv.visible = !0); + var i = t.StrengthenMgr.ins().getFourImagesData(e + 1); + if (i) { + var n = t.FourImagesData.getConfig(e + 1, i.lv); + if (n) { + (this.curLV.text = t.CrmPU.language_Omission_txt59 + i.lv), (this.curOrder.text = t.hETx.getCStr(i.lv) + t.CrmPU.language_Common_230); + var s = t.FourImagesData.getAttrib(e + 1, i.lv, !1); + this.gCurList.dataProvider = new eui.ArrayCollection(s); + var a = t.FourImagesData.getAttrib(e + 1, i.lv + 1, !1); + (this.gNextList.dataProvider = new eui.ArrayCollection(a)), a.length > 0 ? (this.nextLv.text = t.CrmPU.language_Omission_txt60 + (i.lv + 1)) : (this.nextLv.visible = !1); + } + } else { + (this.curLV.text = t.CrmPU.language_Omission_txt59 + "0"), (this.nextLv.text = t.CrmPU.language_Omission_txt60 + "1"), (this.curOrder.text = "零阶"); + var s = t.FourImagesData.getAttrib(e + 1, 0, !1), + a = t.FourImagesData.getAttrib(e + 1, 1, !1); + (this.gCurList.dataProvider = new eui.ArrayCollection(s)), (this.gNextList.dataProvider = new eui.ArrayCollection(a)); + } + this.setAttribData(e + 1); + }), + (i.prototype.setAttribData = function (e) { + this.cfgCur = null; + var i = t.StrengthenMgr.ins().getFourImagesData(e), + n = t.FourImagesData.getMaxLv(e); + if (i && i.lv == n.lv) + return ( + (this.costList.visible = !1), + (this.txt_get.visible = !1), + (this.btnUp.visible = !1), + (this.lbMax0.visible = !0), + (this.lbMax.visible = !0), + void (this.lbMax.text = t.CrmPU["language_FourImages_Text" + e] + t.CrmPU.language_FourImages_MaxText) + ); + (this.costList.visible = !0), (this.btnUp.visible = !0), (this.lbMax.visible = !1), (this.lbMax0.visible = !1); + var s = t.FourImagesData.getConfig(e, null == i ? 1 : i.lv + 1); + (this.cfgCur = s), (this.costArr.source = s.cost), t.GetPropsView.getPropsTxt(this.txt_get, s.cost[0].id), (this.costList.dataProvider = this.costArr); + }), + (i.prototype.onChange = function (e) { + (this.tabList.selectedIndex = e.itemIndex), this.updateList(e.itemIndex); + t.mAYZL.ins().ZbzdY(t.GaimItemWin) && t.mAYZL.ins().close(t.GaimItemWin); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.fEHj(this.btnUp, this.levelUp), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.Mc && (this.Mc.destroy(), (this.Mc = null)); + }), + i + ); + })(t.gIRYTi); + (t.FourImageLevelUpWin = e), __reflect(e.prototype, "app.FourImageLevelUpWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesAttrItemCurSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_cur.textFlow = t.hETx.qYVI(this.data)); + }), + i + ); + })(eui.ItemRenderer); + (t.FourImagesAttrItemCurView = e), __reflect(e.prototype, "app.FourImagesAttrItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesAttrItemNextSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_next.textFlow = t.hETx.qYVI(this.data)); + }), + i + ); + })(eui.ItemRenderer); + (t.FourImagesAttrItemNextView = e), __reflect(e.prototype, "app.FourImagesAttrItemNextView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesCostItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + KdbLz.qOtrbE.iFbP + ? this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = (i.localToGlobal(), i.localToGlobal()); + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this.data.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } else { + var r = t.VlaoF.NumericalIcon[this.data.id]; + r.description && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, r.description, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } + }), + (i.prototype.dataChanged = function () { + this.visible = null != this.data; + var e = this.data.type, + i = t.ZAJw.MPDpiB(e, this.data.id), + n = i >= this.data.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED, + s = "|C:" + n + "&T:" + t.CommonUtils.overLengthChange(i) + "|C:0xe0ae75&T:/" + t.CommonUtils.overLengthChange(this.data.count); + (this.txtCost.textFlow = t.hETx.qYVI(s)), (this.iconGoods.source = t.FourImagesData.convertItemIcon(this.data).icon + ""); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + KdbLz.qOtrbE.iFbP + ? this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + i + ); + })(eui.ItemRenderer); + (t.FourImagesCostItem = e), __reflect(e.prototype, "app.FourImagesCostItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () {}), + (i.prototype.setData = function (e) { + void 0 === e && (e = 0); + var i; + if (0 == e) i = t.StrengthenMgr.ins().getFourImagesData(this.pos); + else { + var n = t.caJqU.ins().otherPlayerEquips; + i = n.getFourImagesData(this.pos); + } + if (((this.lbTitle.text = t.CrmPU["language_FourImages_Title_Text" + this.pos]), !i)) return void (this.lbLevel.text = ""); + var s = t.FourImagesData.getConfig(this.pos, i.lv), + a = null == s.fsname ? "" : s.fsname; + this.lbTitle.text += a + s.endname; + }), + (i.prototype.updateData = function () { + this.icon.source = "sx_icon_" + this.pos; + }), + (i.prototype.setSeleted = function (t) { + this.seletectd.visible = t; + }), + i + ); + })(t.BaseView); + (t.FourImagesItemView = e), __reflect(e.prototype, "app.FourImagesItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "FourImagesLevelViewSkin"), e; + } + return __extends(e, t), e; + })(t.BaseView); + (t.FourImagesLevelView = e), __reflect(e.prototype, "app.FourImagesLevelView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesShowInfoViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.updateStr = function (i, n) { + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + (this.txtLimit.visible = !1), + this.setData(i.pos, i.type), + e.prototype.onResizeUI.call(this, i, n); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.mc && (this.mc.destroy(), (this.mc = null)); + }), + (i.prototype.setData = function (e, i) { + if ((void 0 === i && (i = 0), e)) { + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), (this.mc.scaleX = this.mc.scaleY = 0.5), (this.mc.touchEnabled = !1), this.effGrp.addChild(this.mc)), + this.mc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_sx" + e, -1), + (this.pos = e), + (this.txtAttrib.textFlow = t.hETx.qYVI(t.CrmPU["language_FourImages_Tips" + this.pos])); + var n; + if (0 == i) n = t.StrengthenMgr.ins().getFourImagesData(this.pos); + else { + var s = t.caJqU.ins().otherPlayerEquips; + n = s.getFourImagesData(this.pos); + } + var a = new eui.ArrayCollection(); + if (((this.gCurList.dataProvider = a), n)) { + var r = t.FourImagesData.getConfig(this.pos, n.lv), + o = null == r.fsname ? "" : r.fsname; + this.lbTitle.text = o + r.endname + t.CrmPU["language_FourImages_Text" + this.pos]; + var l = t.FourImagesData.getAttrib(this.pos, n.lv, !1); + (a.source = l), (this.curOrder.text = t.hETx.getCStr(n.lv) + t.CrmPU.language_Common_230), (this.gCurList.dataProvider = a); + var h = t.FourImagesData.getConfig(this.pos, n.lv + 1); + if (h && h.limit) + if (((this.txtLimit.visible = !1), 4 == h.limit.length)) { + var p = t.FourImagesData.getConfig(this.pos, h.limit[0].lv); + this.txtLimit.text = t.zlkp.replace(t.CrmPU.language_FourImages_Text0, null == p.fsname ? p.endname : p.fsname + p.endname); + } else + for (var u = 0, c = h.limit; u < c.length; u++) { + c[u]; + } + else this.txtLimit.visible = !1; + } else { + (this.curOrder.text = "零阶"), (this.lbTitle.text = t.CrmPU["language_FourImages_Text" + this.pos]); + var l = t.FourImagesData.getAttrib(this.pos, 0, !1); + a.source = l; + t.FourImagesData.getAttrib(this.pos, 1, !1); + this.gCurList.dataProvider = a; + } + } + }), + i + ); + })(t.TipsBase); + (t.FourImagesShowInfoView = e), __reflect(e.prototype, "app.FourImagesShowInfoView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "FourImagesStarViewSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.setData = function (t) { + 1 == t ? (this.star_1.visible = !0) : (this.star_1.visible = !1); + }), + e + ); + })(t.BaseView); + (t.FourImagesStarView = e), __reflect(e.prototype, "app.FourImagesStarView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 61), (i.titleStr = t.CrmPU.language_System63), (i.skinName = "FourImagesViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + t.StrengthenMgr.ins().sendStrengthenInit(2), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateRedPoint), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.updateData); + for (var e = 1; 5 > e; e++) { + var i = this["fourImagesItemView_" + e]; + (i.pos = e), i.updateData(), this.VoZqXH(i, this.mouseMove), this.EeFPm(i, this.mouseMove); + } + this.vKruVZ(this.goBtn, this.onClick), this.updateData(), this.updateRedPoint(); + }), + (i.prototype.updateRedPoint = function () { + this.redPoint.visible = t.StrengthenMgr.ins().fourImageRed(); + }), + (i.prototype.updateData = function () { + for (var e = (t.StrengthenMgr.ins().strengthenDic[2], 1); 5 > e; e++) { + var i = this["fourImagesItemView_" + e]; + i && i.setData(); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.localToGlobal(); + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_FOURIMAGE, + { + pos: i.pos, + type: 0, + }, + { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + } + ); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + t.mAYZL.ins().open(t.FourImageLevelUpWin); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this); + for (var t = 1; 5 > t; t++) { + var i = this["fourImagesItemView_" + t]; + i && (this.fEHj(i, this.mouseMove), this.fEHj(i, this.mouseMove)); + } + this.fEHj(this.goBtn, this.onClick), (this.seltecdFourImagesItem = null); + }), + i + ); + })(t.BaseView); + (t.FourImagesView = e), __reflect(e.prototype, "app.FourImagesView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.suitDic = {}), (i.ruleId = 59), (i.titleStr = t.CrmPU.language_System3), (i.skinName = "GodEquipSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + var e, i, n; + for (this.equipArr = [], this.imgArr = [], i = 0; i < this.iconGroup.numElements; i++) + (e = this.iconGroup.getChildByName("item_" + i)), this.equipArr.push(e), (n = this.getChildByName("img_" + i)), this.imgArr.push(n); + var s = t.caJqU.ins().suitEquips; + (this.preLen = s.length), + (this.curLen = s.length), + this.setSuitData(), + this.refreshSuitEquipAtrr(), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onWear, this), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onDrop, this); + }), + (i.prototype.refreshSuitEquipAtrr = function () { + var e = t.caJqU.ins().suitEquips; + if (((this.curLen = e.length), 4 == e.length)) { + for (var i = void 0, n = void 0, s = [], a = 0, r = e.length; r > a; a++) (i = e[a]), (n = t.VlaoF.StdItems[i.wItemId]), s.push(n.suitId); + for (var o = s[0], l = 0, h = s.length; h > l; l++) { + var p = s[l]; + o > p && (o = p); + } + this.setData(o); + } else this.setData(); + }), + (i.prototype.setData = function (e) { + if ((void 0 === e && (e = null), !e)) return (this.group_yjh.visible = !1), (this.img_wjh.visible = !0), (this.preLen = this.curLen), (this.curId = null), void (this.preId = null); + (this.curId = e), (this.preLen = this.curLen); + var i = t.JgMyc.ins().roleModel.getSuitDataById(e); + (this.group_yjh.visible = !0), + (this.img_wjh.visible = !1), + (this.suitLv.text = "已激活套装属性:共鸣" + (e + "").substring(2) + "阶"), + (this.attrLab.textFlow = t.hETx.qYVI(i.toString())), + (this.preId = this.curId); + }), + (i.prototype.setSuitData = function () { + for (var e = 0; e < this.equipArr.length; e++) (this.equipArr[e].visible = !1), (this.imgArr[e].visible = !0); + var i = t.caJqU.ins().suitEquips; + if (i) + for (var n, e = 0; e < i.length; e++) + (n = i[e].nPos), (this.equipArr[n - 10].visible = !0), (this.imgArr[n - 10].visible = !1), this.equipArr[n - 10].setItem(i[e], null, null, 0, null, null, null, ""); + }), + (i.prototype.onWear = function (e) { + var i = e[0]; + this.setSuitData(), + i && null != i.nPos && i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield && this.equipArr[i.nPos - 10].setItem(i, null, null, 0, null, null, null, ""), + this.refreshSuitEquipAtrr(); + }), + (i.prototype.onDrop = function (t) { + this.setSuitData(), this.refreshSuitEquipAtrr(); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + t.lEYZI.Naoc(this.iconGroup), + this.iconGroup && this.iconGroup.removeChildren(), + (this.iconGroup = null), + t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onWear, this), + t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onDrop, this); + var i, n; + for (i = 0, n = this.equipArr.length; n > i; i++) { + var s = this.equipArr[i]; + s.destroy(), (s = null); + } + (this.equipArr.length = 0), (this.equipArr = null), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.GodEquipView = e), __reflect(e.prototype, "app.GodEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "GuanZhiSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.costArr = new eui.ArrayCollection()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setTitle(t.CrmPU.language_System93), + this.dragDropUI.setParent(this), + (this.currentLabel.text = t.CrmPU.language_GuanZhi_Label), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.vKruVZ(this.btnUp, this.levelUp), + (this.costList.itemRenderer = t.FourImagesCostItem), + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCostList), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateView), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateCostList), + (this.costList.dataProvider = this.costArr), + t.GetPropsView.getPropsTxt(this.txt_get, 932), + (this.txt_get.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")), + this.updateView(); + }), + (i.prototype.onGetProps = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getOfficialPositicon() + 1, + n = t.VlaoF.OfficeConfig[i]; + if (n) { + var s = t.edHC.ins().getItemIDByCost(n.consume); + return ( + s.itemId && + (t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + s, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + )), + !1 + ); + } + return !0; + }), + (i.prototype.levelUp = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getOfficialPositicon() + 1, + n = t.VlaoF.OfficeConfig[i]; + if (n) { + if (n.circle > 0 && e.propSet.MzYki() < n.circle) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips119); + if (e.propSet.mBjV() < n.levellimit) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips119); + this.onGetProps() || t.edHC.ins().send_26_67(); + } + }), + (i.prototype.updateCostList = function () { + this.redPoint.visible = t.edHC.ins().getOfficeRed(); + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getOfficialPositicon() + 1, + n = t.VlaoF.OfficeConfig[i]; + if (n) { + this.costList.visible = !0; + for (var s = [], a = 0; a < n.consume.length; a++) + s.push({ + type: n.consume[a].type, + id: n.consume[a].id, + count: n.consume[a].count, + }); + this.costArr.replaceAll(s), (this.txt_get.visible = !0); + } else (this.costList.visible = !1), (this.txt_get.visible = !1); + }), + (i.prototype.updateView = function () { + (this.isMaxLab.visible = !1), (this.jiantou.visible = !0); + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getOfficialPositicon(), + n = t.VlaoF.OfficeConfig[i]; + if (n) { + (this.curGzImage.source = "gz_zw_" + i), (this.gzImage.source = "gz_zw_" + i), (this.gCurList.visible = !0); + for (var s = n.attribute, a = [], r = 0; r < s.length; r++) a.push(s[r]); + for (var o = [], l = "", r = 0; r < a.length; r++) (l = t.AttributeData.getItemAttStrByType(a[r], a)), "" != l && o.push(l); + this.gCurList.dataProvider = new eui.ArrayCollection(o); + } else (this.gCurList.visible = !1), (this.gzImage.source = "gz_zw_0"); + var h = i + 1, + p = t.VlaoF.OfficeConfig[h]; + if (p) { + (this.txt_get.visible = !0), + (this.levelLabel.visible = !0), + (this.btnUp.visible = !0), + (this.nextGzImage.visible = !0), + p.circle > 0 + ? (this.levelLabel.text = t.zlkp.replace(t.CrmPU.language_GuanZhi_Label2, p.circle, p.levellimit)) + : (this.levelLabel.text = t.CrmPU.language_Meridians_NeedLevel_text + p.levellimit + t.CrmPU.language_Friend_Level_txt); + var u = e.propSet.MzYki(), + c = e.propSet.mBjV(); + u < p.circle || c < p.levellimit ? (this.levelLabel.textColor = 15007744) : (this.levelLabel.textColor = 15064527), (this.nextGzImage.source = "gz_zw_" + h), (this.gNextList.visible = !0); + for (var s = p.attribute, a = [], r = 0; r < s.length; r++) a.push(s[r]); + for (var o = [], l = "", r = 0; r < a.length; r++) (l = t.AttributeData.getItemAttStrByType(a[r], a)), "" != l && o.push(l); + this.gNextList.dataProvider = new eui.ArrayCollection(o); + } else + (this.nextGzImage.visible = !1), + (this.gNextList.visible = !1), + (this.levelLabel.visible = !1), + (this.btnUp.visible = !1), + (this.txt_get.visible = !1), + (this.isMaxLab.visible = !0), + (this.jiantou.visible = this.redPoint.visible = !1), + (this.curGzImage.x = 366), + (this.gCurList.x = 392); + this.updateCostList(); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), this.fEHj(this.btnUp, this.levelUp); + }), + i + ); + })(t.gIRYTi); + (t.GuanZhiView = e), __reflect(e.prototype, "app.GuanZhiView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.titleStr = t.CrmPU.language_System99), (i.skinName = "RoleWeaponSoulViewSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), t.SoldierSoulMgr.ins().send_58_1(1), this.vKruVZ(this.goBtn, this.onClick), this.init(); + }), + (i.prototype.init = function () { + (this.goBtn.visible = !0), this.HFTK(t.ThgMu.ins().post_8_1, this.updateRed), this.HFTK(t.ThgMu.ins().post_8_4, this.updateRed), this.HFTK(t.ThgMu.ins().post_8_3, this.updateRed); + for (var e = 1; 5 > e; e++) { + var i = this["weaponItem" + e]; + i.setData(e, 1); + } + this.updateRed(); + }), + (i.prototype.updateRed = function () { + this.redPoint.visible = t.SoldierSoulMgr.ins().getWeaponRed() ? !0 : !1; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + t.mAYZL.ins().open(t.SoldierSoulWin); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.fEHj(this.goBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.RoleWeaponSoulView = e), __reflect(e.prototype, "app.RoleWeaponSoulView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.weaponInfo = null), (t.weaponID = 0), (t.type = 0), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.VoZqXH(this.tipsGrp, this.mouseMove), this.EeFPm(this.tipsGrp, this.mouseMove); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.localToGlobal(0, 0); + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_SOLDIERSOUL, + { + ID: this.weaponID, + TYPE: this.type, + }, + { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + } + ); + } + }), + (i.prototype.setData = function (e, i) { + (this.weaponID = e), + (this.type = i), + (this.weaponName.source = "role_bh_mc" + e), + this.weaponMc || + ((this.weaponMc = t.ObjectPool.pop("app.MovieClip")), + (this.weaponMc.scaleX = this.weaponMc.scaleY = 0.7), + (this.weaponMc.touchEnabled = !1), + (this.weaponMc.blendMode = egret.BlendMode.ADD), + this.weaponEff.addChild(this.weaponMc)), + this.weaponMc && this.weaponMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_bh" + e, -1); + var n, + s = 0; + if (1 == this.type) (n = t.SoldierSoulMgr.ins().weaponInfo[e]), n && (s = n.soulOrder); + else { + var a = t.caJqU.ins().otherPlayerEquips; + a && ((n = a.weaponSoulInfo[this.weaponID]), n && (s = n.soulOrder)); + } + this.curOrder.text = t.hETx.getCStr(s) + t.CrmPU.language_Common_230; + }), + (i.prototype.$onRemoveFromStage = function () { + this.fEHj(this.tipsGrp, this.mouseMove), this.fEHj(this.tipsGrp, this.mouseMove), this.weaponMc && (this.weaponMc.destroy(), (this.weaponMc = null)); + }), + i + ); + })(t.BaseView); + (t.WeaponSoulItemView = e), __reflect(e.prototype, "app.WeaponSoulItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skillNum = 11), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "ShortcutKeySetViewSkin"), (i.name = "ShortcutKeySetView"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.btnArr = []); + for (var n, s = 0; s < this.skillNum; s++) (n = new t.ShortcutKeyView()), (n.id = s), this.btnArr.push(n), this.keyGroup.addChild(n), i.BUTTON_STATE == s && (n.effectBg = !0); + }), + (i.prototype.open = function () { + for (var n = [], s = 0; s < arguments.length; s++) n[s] = arguments[s]; + e.prototype.open.call(this, n), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System10); + var a = i.SKILL_ITEM; + this.icon.source = a.icon; + t.CrmPU.language_Omission_txt9; + (this.txt_desc.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt9, a.name))), + this.vKruVZ(this.btn_ok, this.onTouch), + this.vKruVZ(this.btn_noSet, this.onTouch), + this.vKruVZ(this.btn_cancel, this.onTouch), + t.ckpDj.ins().addEvent(t.CompEvent.SHORTCUTKEY_SET, this.onKeySet, this); + }), + (i.prototype.onTouch = function (e) { + switch ((t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), e.currentTarget)) { + case this.btn_ok: + this.func(t.UIViewFrameType.ShortcutKeyOk); + break; + case this.btn_noSet: + this.func(t.UIViewFrameType.ShortcutKeyNoSet); + break; + case this.btn_cancel: + this.func(t.UIViewFrameType.ShortcutKeyCancel); + } + t.mAYZL.ins().close(i); + }), + (i.prototype.onKeySet = function (t) { + var e = t[0], + n = t[1]; + if (!n) { + i.BUTTON_STATE = e; + for (var s, a = 0, r = this.btnArr.length; r > a; a++) (s = this.btnArr[a]), s.id == e ? (s.effectBg = !0) : (s.effectBg = !1); + } + }), + (i.prototype.onShortcutKey = function (t) { + t ? (this.btn_ok.enabled = !0) : (this.btn_ok.visible = !1); + }), + (i.prototype.func = function (e) { + var n = i.SKILL_ITEM; + e == t.UIViewFrameType.ShortcutKeyOk + ? t.XwoNAr.ins().send_17_2(i.BUTTON_STATE, i.TYPE, n.skillId, i.OLD_POS) + : e == t.UIViewFrameType.ShortcutKeyNoSet && t.XwoNAr.ins().send_17_3(i.BUTTON_STATE), + (i.BUTTON_STATE = -1); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI && this.dragDropUI.destroy(), (this.dragDropUI = null), this.txt_desc && (this.txt_desc.textFlow = []); + for (var n = 0, s = this.btnArr.length; s > n; n++) this.btnArr[n].destory(), (this.btnArr[n] = null); + (this.btnArr.length = 0), (this.btnArr = null), t.ckpDj.ins().removeEvent(t.CompEvent.SHORTCUTKEY_SET, this.onKeySet, this), this.$onClose(), t.KHNO.ins().removeAll(this); + }), + (i.BUTTON_STATE = t.CommonButtonState.none), + (i.TYPE = 1), + (i.OLD_POS = -1), + i + ); + })(t.gIRYTi); + (t.ShortcutKeySetView = e), __reflect(e.prototype, "app.ShortcutKeySetView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.iconArr = ["anjian_1", "anjian_2", "anjian_3", "anjian_4", "anjian_5", "anjian_6", "anjian_q", "anjian_w", "anjian_e", "anjian_r", "anjian_t", "anjian_y", "anjian_sz"]), + (t.skinName = "ShortcutKeyBtnSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.effect.visible = !1), this.vKruVZ(this, this.onTouch); + }), + (i.prototype.onTouch = function (e) { + t.ckpDj.ins().sendEvent(t.CompEvent.SHORTCUTKEY_SET, [this.id, this._skillId]); + }), + Object.defineProperty(i.prototype, "id", { + get: function () { + return this._id; + }, + set: function (t) { + (this._id = t), + this.iconArr[t] + ? ((this.icon.visible = !0), (this.icon.source = this.iconArr[t]), (this.labelDisplay.visible = !1), (this.labelDisplay.text = "")) + : ((this.icon.visible = !0), (this.icon.source = this.iconArr[12]), (this.labelDisplay.visible = !1), (this.labelDisplay.text = "")); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "skillId", { + get: function () { + return this._skillId; + }, + set: function (t) { + this._skillId = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "effectBg", { + get: function () { + return this.effect.visible; + }, + set: function (t) { + this.effect.visible = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "label", { + set: function (t) { + (this.labelDisplay.text = t), (this.labelDisplay.visible = !0), (this.icon.source = null), (this.icon.visible = !1); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destory = function () { + (this.effect.source = null), (this.icon.source = null), (this.iconArr.length = 0), (this.iconArr = null), this.$onClose(), this.fEHj(this, this.onTouch), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.ShortcutKeyView = e), __reflect(e.prototype, "app.ShortcutKeyView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MeridiansAttrItemCurSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_cur.text = this.data); + }), + e + ); + })(eui.ItemRenderer); + (t.MeridiansAttrItemCurView = e), __reflect(e.prototype, "app.MeridiansAttrItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MeridiansAttrItemNextSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_next.text = this.data); + }), + e + ); + })(eui.ItemRenderer); + (t.MeridiansAttrItemNextView = e), __reflect(e.prototype, "app.MeridiansAttrItemNextView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "MeridiansItemView"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.fireBallmc = t.ObjectPool.pop("app.MovieClip")), + (this.fireBallmc.touchEnabled = !1), + (this.fireBallmc.blendMode = egret.BlendMode.ADD), + this.effGp.addChild(this.fireBallmc), + (this.fireBallmc.x = this.fireBallmc.y = -10), + (this.lightMc = t.ObjectPool.pop("app.MovieClip")), + (this.lightMc.touchEnabled = !1), + (this.lightMc.blendMode = egret.BlendMode.ADD), + this.effGp0.addChild(this.lightMc), + (this.lightMc.x = this.lightMc.y = -10); + }), + (i.prototype.setEffPayer = function (t) { + t + ? ((this.fireBallmc.visible = !0), this.fireBallmc.isPlaying || this.fireBallmc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jm_huoqiu", -1, null, !1)) + : this.fireBallmc && (this.fireBallmc.stop(), (this.fireBallmc.visible = !1)); + }), + (i.prototype.setLights = function (t) { + t ? ((this.lightMc.visible = !0), this.lightMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jm_kuoshn", 1, null, !1)) : (this.lightMc.visible = !1); + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this), + this.lightMc && (this.lightMc.destroy(), (this.lightMc = null)), + this.fireBallmc && (this.fireBallmc.destroy(), (this.fireBallmc = null)), + this.effGp0 && (t.lEYZI.Naoc(this.effGp0), this.effGp0.numElements > 0 && this.effGp0.removeChildren(), (this.effGp0 = null)), + this.effGp && (t.lEYZI.Naoc(this.effGp), this.effGp.numElements > 0 && this.effGp.removeChildren(), (this.effGp = null)); + }), + i + ); + })(t.BaseView); + (t.MeridiansItemView = e), __reflect(e.prototype, "app.MeridiansItemView"); +})(app || (app = {})); +var MeridiansLevelItem = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MerdiansLevelItemSkin"), (e.touchEnabled = !1), (e.touchChildren = !1), e; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.img.source = "Meridians_jie_" + this.data; + }), + e + ); +})(eui.ItemRenderer); +__reflect(MeridiansLevelItem.prototype, "MeridiansLevelItem"); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "MeridiansLevelSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this), (this.curArr = new eui.ArrayCollection()), (this.imgList.itemRenderer = MeridiansLevelItem), (this.imgList.dataProvider = this.curArr); + }), + (e.prototype.setLevelValue = function (t) { + var e = []; + (e = t > 99 ? this.getLevelStr3(t) : t > 9 ? this.getLevelStr2(t) : this.getLevelStr1(t)), e.push("ji"), (this.curArr.source = e); + }), + (e.prototype.getLevelStr1 = function (t) { + return [t]; + }), + (e.prototype.getLevelStr2 = function (t) { + var e = [], + i = Math.floor(t / 10); + i > 1 && e.push(i), e.push("10"); + var n = t % 10; + return n > 0 && e.push(n), e; + }), + (e.prototype.getLevelStr3 = function (t) { + var e = [], + i = Math.floor(t / 100); + e.push(i), e.push("11"); + var n = Math.floor((t % 100) / 10); + n > 0 && (e.push(n), e.push("10")); + var s = t % 10; + return s > 0 && (0 == n && e.push("0"), e.push(s)), e; + }), + (e.prototype.destroy = function () { + this.$onClose(); + }), + e + ); + })(t.BaseView); + (t.MeridiansLevelView = e), __reflect(e.prototype, "app.MeridiansLevelView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.meridiansLevel = -1), (i.breakthrough = !1), (i.ruleId = 7), (i.titleStr = t.CrmPU.language_System7), (i.skinName = "MeridiansViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.initUI(); + }), + (i.prototype.initUI = function () { + (this.neiGongBtn.visible = !1), (this.neiGongGrp.visible = !1); + var e = t.VlaoF.MeridiansSetConfig.equipOpen, + i = t.VlaoF.MeridiansSetConfig.equipOpenBS; + if (i) { + var n = 0, + s = []; + t.mAYZL.ins().isCheckOpen(e) && + s.push({ + type: "equipOpen", + img1: "tab_ngzbt01", + img2: "tab_ngzbt02", + }), + t.mAYZL.ins().isCheckOpen(i) && + (s.push({ + type: "equipOpenBS", + img1: "tab_ngzbt12", + img2: "tab_ngzbt11", + }), + (this.neiGongBtn.visible = !0), + (n = s.length - 1)), + (this.ngEquiTabBar.itemRenderer = t.NGEquipTab), + (this.ngEquiTabBar.dataProvider = new eui.ArrayCollection(s)), + this.ngEquipView.init(1), + this.ngGemstoneView.init(2), + (this.ngEquiTabBar.selectedIndex = n), + this.onTabTouch(null); + } + (this.maxTipsLabel.text = t.CrmPU.language_Meridians_Max_Lv), + (this.maxLevel = t.VlaoF.MeridiansSetConfig.limit), + (this.tipsMc = t.ObjectPool.pop("app.MovieClip")), + (this.tipsMc.blendMode = egret.BlendMode.ADD), + (this.tipsMc.touchEnabled = !1), + (this.tipsMc.x = 20), + this.tipsGP.addChild(this.tipsMc), + (this.roleMc = t.ObjectPool.pop("app.MovieClip")), + (this.roleMc.blendMode = egret.BlendMode.ADD), + (this.roleMc.touchEnabled = !1), + (this.roleMc.x = 20), + this.roleGP.addChild(this.roleMc), + (this.curAttribArr = new eui.ArrayCollection()), + (this.nextAttribArr = new eui.ArrayCollection()), + (this.gCurList.itemRenderer = t.MeridiansAttrItemCurView), + (this.gCurList.dataProvider = this.curAttribArr), + (this.gNextList.itemRenderer = t.MeridiansAttrItemNextView), + (this.gNextList.dataProvider = this.nextAttribArr), + (this.httpTxtParser = new egret.HtmlTextParser()), + this.vKruVZ(this.btnUp, this.onClick), + this.vKruVZ(this.neiGongBtn, this.onClick), + this.vKruVZ(this.neiGongCloseBtn, this.onClick), + this.addChangeEvent(this.ngEquiTabBar, this.onTabTouch), + this.VoZqXH(this.materImg, this.mouseMove), + this.EeFPm(this.materImg, this.mouseMove), + (this.txt_get_repair.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")), + this.vKruVZ(this.txt_get_repair, this.getFunction), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateData), + this.HFTK(t.ThgMu.ins().post_8_1, this.setAttribData), + this.HFTK(t.ThgMu.ins().post_8_3, this.setAttribData), + this.HFTK(t.ThgMu.ins().post_8_4, this.setAttribData), + this.updateData(); + }), + (i.prototype.showView = function () {}), + (i.prototype.hideView = function () { + this.neiGongGrp.visible = !1; + }), + (i.prototype.getFunction = function () { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var e = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + this.materImg.itemID, + { + x: e.x, + y: e.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (e.currentTarget.itemID) { + var n = t.VlaoF.StdItems[e.currentTarget.itemID]; + if (n) { + var s = i.localToGlobal(), + a = t.TipsType.TIPS_EQUIP; + (a = n.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } + } + } + }), + (i.prototype.updateData = function () { + var e = this, + i = t.NWRFmB.ins().getPayer, + n = i.propSet, + s = n.getMeridians(); + if (-1 == this.meridiansLevel) (this.meridiansLevel = s), this.initData(), this.setAttribData(); + else if (this.meridiansLevel != s) { + this.meridiansLevel = s; + var a = s > 0 && s % 10 == 0 ? !0 : !1; + a + ? ((this.meridiansLine8.source = "Meridians_xian_1"), + (this.meridiansitemView9.item.visible = !0), + this.meridiansitemView9.setEffPayer(!0), + (this.tipsMc.visible = !0), + this.tipsMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_jm_tpcg", 1, null, !1), + (this.roleMc.visible = !0), + this.roleMc.playFileEff( + ZkSzi.RES_DIR_EFF + "eff_jm_renwu", + 3, + function () { + (e.roleMc.visible = !1), (e.tipsMc.visible = !1); + var i = e; + t.KHNO.ins().doNext(function () { + i.initData(!0), i.setAttribData(); + }, e); + }, + !1 + ), + this.updateButton()) + : (this.initData(!0), this.setAttribData()); + } + }), + (i.prototype.initData = function (e) { + void 0 === e && (e = !1); + var i = t.NWRFmB.ins().getPayer, + n = i.propSet, + s = n.getMeridians(), + a = s >= this.maxLevel, + r = s % 10; + 9 == r ? ((this.btnUp.label = t.CrmPU.language_Meridians_Up_text1), (this.breakthrough = !0)) : ((this.btnUp.label = t.CrmPU.language_Meridians_Up_text0), (this.breakthrough = !1)); + for (var o = 0; 9 > o; o++) this["meridiansLine" + o].source = "Meridians_xian_" + (r > o + 1 ? "1" : "2"); + for (var l, o = 1; 10 >= o; o++) + (l = this["meridiansitemView" + (o - 1)]), (l.item.visible = (a && 0 == r) || (r >= o ? !0 : !1)), l.setEffPayer(l.item.visible), l.setLights(o == r && e), (l.bg.visible = !l.item.visible); + this.updateButton(); + }), + (i.prototype.updateButton = function () { + this.meridiansShowLevel.setLevelValue(this.meridiansLevel); + var e = t.MeridiansData.getMeridiansAttrib(this.meridiansLevel, !1), + i = t.MeridiansData.getMeridiansAttrib(this.meridiansLevel + 1, !0); + (this.curAttribArr.source = e), (this.nextAttribArr.source = i), this.setAttribData(); + }), + (i.prototype.setAttribData = function () { + var e = this.meridiansLevel + 1 < 1 ? 1 : this.meridiansLevel + 1, + i = t.VlaoF.MeridiansConfig; + if (((this.txt_get_repair.visible = !1), this.meridiansLevel >= this.maxLevel)) + return ( + (this.txt_level.text = ""), + (this.materImg.visible = !1), + (this.costLabel.visible = !1), + (this.maxTipsLabel.visible = !0), + (this.redDotMeridians.visible = !1), + (this.btnUp.visible = !1), + (this.costTipsLabel.visible = !1), + (this.gNextList.visible = !1), + void (this.gCurList.x = 110) + ); + var n = t.NWRFmB.ins().getPayer, + s = n.propSet.MzYki(); + (this.gCurList.x = 0), (this.gNextList.visible = !0), (this.maxTipsLabel.visible = !1), (this.costTipsLabel.visible = !0), (this.btnUp.visible = !0); + var a = !0; + this.nextMeridiansData = i[e]; + var r = "|C:0xD1A977&T:" + t.CrmPU.language_Meridians_CostCircleLevel_text + "|"; + s < this.nextMeridiansData.circle ? ((a = !1), (r += "|C:0xe50000&T:" + this.nextMeridiansData.circle + "|")) : (r += "|C:0x28ee01&T:" + this.nextMeridiansData.circle + "|"), + (this.txt_level.textFlow = t.hETx.qYVI(r)), + (this.materImg.visible = !0), + (this.costLabel.visible = !0); + var o = this.nextMeridiansData.cost[0], + l = t.ZAJw.sztgR(o.type, o.id), + h = t.ZAJw.MPDpiB(o.type, o.id); + (this.materImg.source = l[1] + ""), + (this.materImg.itemID = o.id), + h < o.count + ? ((a = !1), (this.txt_get_repair.visible = !0), (this.costLabel.textFlow = t.hETx.qYVI("|C:0xe50000&T:" + h + "|/" + o.count))) + : (this.costLabel.textFlow = t.hETx.qYVI(h + "/" + o.count)), + (this.redDotMeridians.visible = a); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnUp: + t.MeridiansMgr.ins().send_11_4(); + break; + case this.neiGongBtn: + var i = t.VlaoF.MeridiansSetConfig.equipOpenBS; + i && t.mAYZL.ins().isCheckOpen(i.openLimit) ? (this.neiGongGrp.visible = !this.neiGongGrp.visible) : i && i.limitStr && t.uMEZy.ins().IrCm(i.limitStr); + break; + case this.neiGongCloseBtn: + this.neiGongGrp.visible = !1; + } + }), + (i.prototype.onTabTouch = function (t) { + (this.ngEquipView.visible = !1), (this.ngGemstoneView.visible = !1); + var e = this.ngEquiTabBar.selectedItem; + e && ("equipOpen" == e.type ? (this.ngEquipView.visible = !0) : "equipOpenBS" == e.type && (this.ngGemstoneView.visible = !0)); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.ngEquipView && (this.ngEquipView.$onClose(), (this.ngEquipView = null)), + this.ngGemstoneView && (this.ngGemstoneView.$onClose(), (this.ngGemstoneView = null)), + (this.gCurList.itemRenderer = null), + (this.gCurList.dataProvider = null), + this.gCurList.removeChildren(), + (this.gCurList = null), + (this.gNextList.itemRenderer = null), + (this.gNextList.dataProvider = null), + this.gNextList.removeChildren(), + (this.gNextList = null); + var i; + for (i = 0; 9 > i; i++) this["meridiansLine" + i].source = ""; + for (var n, s = 0; 10 > s; s++) (n = this["meridiansitemView" + s]), n.destroy(), (n = null); + this.fEHj(this.btnUp, this.onClick), + this.fEHj(this.neiGongBtn, this.onClick), + this.fEHj(this.neiGongCloseBtn, this.onClick), + this.lbpdAJ(this.materImg, this.mouseMove), + this.lvpAF(this.materImg, this.mouseMove), + this.fEHj(this.txt_get_repair, this.getFunction), + egret.Tween.removeTweens(this), + this.roleMc && (this.roleMc.destroy(), (this.roleMc = null)), + this.tipsMc && (this.tipsMc.destroy(), (this.tipsMc = null)), + this.materImg.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.materImg.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.ngEquiTabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + (this.ngEquiTabBar = null), + t.lEYZI.Naoc(this), + t.KHNO.ins().removeAll(this); + }), + i + ); + })(t.gIRYTi); + (t.MeridiansView = e), __reflect(e.prototype, "app.MeridiansView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if ( + ((this.redPoint.visible = !1), + this.data && + ((this.effect.visible = 1 == this.data.wearState ? !0 : !1), + (this.sign.visible = 1 == this.data.dressState ? !0 : !1), + this.data.itemInfo && + ((this.txtName.textFlow = t.hETx.qYVI(this.data.itemInfo.name)), + (this.icon.source = this.data.itemInfo.con + ""), + (this.Lv.text = this.data.Lv ? this.data.Lv + t.CrmPU.language_Common_1 : ""), + this.data.isMy))) + ) + if (this.data.Lv) { + var e = t.VlaoF.FashionupgradeConfig[this.data.itemInfo.id][this.data.Lv + 1]; + e && (this.redPoint.visible = t.ZAJw.isRedDot(e.consume) ? !0 : !1); + } else this.redPoint.visible = t.ZAJw.isRedDot(this.data.itemInfo.consume) ? !0 : !1; + }), + i + ); + })(t.BaseItemRender); + (t.FashionNewItemRender = e), __reflect(e.prototype, "app.FashionNewItemRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._curIndex = -1), + (i.curItemData = null), + (i.openId = 0), + (i.ruleId = 74), + (i.titleStr = t.CrmPU.language_System4), + (i.tabArr = []), + (i.dir = 4), + (i.curListInfo = []), + (i.lastSelected = -1), + (i.skinName = "FashionSkin"), + i + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.itemArrayCollection = new eui.ArrayCollection()), (this.tabBarArrayCollection = new eui.ArrayCollection()), this.initView(); + }), + (i.prototype.open = function (t) { + t && t.fashionId && (this.openId = t.fashionId); + }), + (i.prototype.initView = function () { + if (((this._curIndex = 0), (this.lastSelected = 0), this.openId > 0)) { + var e = t.VlaoF.FashionattributeConfig; + for (var i in e) { + var n = e[i]; + for (var s in n) + if (n[s].id == this.openId) { + (this._curIndex = parseInt(i) - 1), (this.lastSelected = parseInt(s)); + break; + } + } + } + (this.fashionAtrrView = new t.FashionAtrrView()), + this.fashionAtrrGroup.addChild(this.fashionAtrrView), + (this.tabBar.itemRenderer = t.NewTabBarItemRenderer2), + (this.tabBar.dataProvider = this.tabBarArrayCollection), + (this.tabBar.selectedIndex = this._curIndex), + (this.list_cost.itemRenderer = t.FourImagesCostItem), + (this.list.itemRenderer = t.FashionNewItemRender), + (this.list.dataProvider = this.itemArrayCollection), + (this.scroller.horizontalScrollBar.autoVisibility = !1), + (this.scroller.horizontalScrollBar.visible = !1), + this.vKruVZ(this.btn_activat, this.onTouchAp), + this.vKruVZ(this.btn_wear, this.onTouchAp), + this.vKruVZ(this.btn_upgrade, this.onTouchAp), + this.vKruVZ(this.btn_inverse, this.onTouchAp), + this.vKruVZ(this.btn_along, this.onTouchAp), + this.addChangeEvent(this.tabBar, this.onTabTouch), + this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.await.setData(t.RoleAction.Await, this.callFunc, this), + this.attack.setData(t.RoleAction.Attack, this.callFunc, this), + this.walk.setData(t.RoleAction.Walk, this.callFunc, this), + this.run.setData(t.RoleAction.Run, this.callFunc, this), + this.HFTK(t.rTRv.ins().post_51_1, this.updateCurInfo), + this.HFTK(t.rTRv.ins().post_51_2, this.wearFashionData), + this.HFTK(t.rTRv.ins().post_51_3, this.activationData), + this.HFTK(t.rTRv.ins().post_51_4, this.fashionUpData), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateData), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateData), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateData), + this.setTabArray(), + this.createPlayerModel(), + t.rTRv.ins().send_51_1(); + }), + (i.prototype.setTabArray = function () { + var e = t.VlaoF.FashionattributeConfig; + this.tabArr = []; + for (var i in e) { + var n = e[i], + s = "", + a = 0; + for (var r in n) + if (n[r].tabImg) { + (s = n[r].tabImg), (a = n[r].type); + break; + } + this.tabArr.push({ + tabType: a, + tabImg: s, + isMy: 1, + }); + } + this.tabBarArrayCollection.replaceAll(this.tabArr); + }), + (i.prototype.createPlayerModel = function () { + (this.modelCharRole = t.ObjectPool.pop("app.ModelCharRole")), (this.modelCharRole.propSet = new t.PropertySet()), this.modelCharRole.showBodyContainer(); + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getSex(); + this.modelCharRole.propSet.setProperty(t.nRDo.AP_SEX, i), + e.propSet.getFacte() + ? (this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), this.modelCharRole.propSet.setProperty(t.nRDo.AP_FACE_ID, e.propSet.getFacte())) + : this.modelCharRole.initHair(null), + e.propSet.getWeapon() + ? (this.modelCharRole.setWeaponFileName(e.propSet.getWeaponStr()), this.modelCharRole.propSet.setProperty(t.nRDo.AP_WEAPON, e.propSet.getWeapon())) + : this.modelCharRole.setWeaponFileName(null), + this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + e.propSet.getBodyStr() + "_" + i), + this.modelCharRole.propSet.setProperty(t.nRDo.PROP_ACTOR_SOLDIERSOULAPPEARANCE, e.propSet.getFashionDisplayStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.AP_BODY_ID, e.propSet.getBody()), + this.modelCharRole.setBodyEff(e.propSet.getBodyEFFStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.ACTOR_FASHION_DISPLAY, e.propSet.getValue(t.nRDo.ACTOR_FASHION_DISPLAY)), + this.modelCharRole.setWeaponEff(e.propSet.getWeaponEffStr()), + this.modelCharRole.propSet.setProperty(t.nRDo.ACTOR_WEAPON_DISPLAY, e.propSet.getValue(t.nRDo.ACTOR_WEAPON_DISPLAY)), + this.bodyContainer.addChild(this.modelCharRole), + this.modelCharRole.addSpecialMC(), + (this.modelCharRole.dir = 4); + this.modelCharRole.scaleX = this.modelCharRole.scaleY = 1.3; + }), + (i.prototype.setDisplay = function () { + var e = t.NWRFmB.ins().getPayer, + i = e.propSet.getSex(); + if (this.curItemData && this.curItemData.itemInfo) { + var n = this.curItemData.itemInfo; + 2 == n.type + ? (this.modelCharRole.updateSuit(0), + e.propSet.getFacte() && this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), + n.display ? this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + this.getBodyStr(n.display)) : this.modelCharRole.initBody(ZkSzi.RES_DIR_BODY + e.propSet.getBodyStr() + "_" + i), + n.back ? this.modelCharRole.setBodyEff(this.getBodyEffStr(n.back)) : this.modelCharRole.setBodyEff("")) + : 1 == n.type + ? (this.modelCharRole.updateSuit(0), + e.propSet.getFacte() && this.modelCharRole.initHair(ZkSzi.RES_DIR_HAIR + e.propSet.getFacteStr() + "_" + i), + n.display + ? this.modelCharRole.setWeaponFileName(this.getWeaponStr(n.display)) + : e.propSet.getWeapon() + ? this.modelCharRole.setWeaponFileName(e.propSet.getWeaponStr()) + : this.modelCharRole.setWeaponFileName(null), + n.back ? this.modelCharRole.setWeaponEff(this.getWeaponEffStr(n.back)) : this.modelCharRole.setWeaponEff("")) + : 3 == n.type && n.display && this.modelCharRole.updateSuit(n.display); + } + }), + (i.prototype.getWeaponEffStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "weaponeff" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.getWeaponStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "weapon" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.getBodyEffStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "bodyeff_" + e + "_" + n; + }), + (i.prototype.getBodyStr = function (e) { + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getSex(); + return "body" + this.PrefixInteger(e, 3) + "_" + n; + }), + (i.prototype.PrefixInteger = function (t, e) { + return (Array(e).join("0") + t).slice(-e); + }), + (i.prototype.updateCurInfo = function () { + -1 != this._curIndex && this.setOpenIndex(this._curIndex, this.openId); + }), + (i.prototype.activationData = function (e) { + if (0 == e) { + for (var i = t.rTRv.ins().fashionDic, n = 0; n < this.curListInfo.length; n++) { + var s = this.curListInfo[n]; + i && i[s.itemInfo.id] && 1 == i[s.itemInfo.id].state ? ((s.dressState = 1), (s.Lv = 1)) : (s.dressState = 0); + } + this.itemArrayCollection.replaceAll(this.curListInfo), this.setCurFashionCost(); + } + }), + (i.prototype.fashionUpData = function (e) { + if (0 == e && this.curItemData && this.curItemData.itemInfo && this.curListInfo) { + var i = t.rTRv.ins().fashionDic; + i[this.curItemData.itemInfo.id] && + this.curListInfo[this.lastSelected] && + ((this.curListInfo[this.lastSelected].Lv = i[this.curItemData.itemInfo.id].lv), this.itemArrayCollection.replaceAll(this.curListInfo), this.setCurFashionCost()); + } + }), + (i.prototype.wearFashionData = function (e) { + if (0 == e) + (this.btn_wear.label = t.CrmPU.language_Omission_txt36), + this.curListInfo && this.curListInfo[this.lastSelected] && ((this.curListInfo[this.lastSelected].dressState = 0), this.itemArrayCollection.replaceAll(this.curListInfo)); + else { + this.btn_wear.label = t.CrmPU.language_Omission_txt37; + for (var i = t.rTRv.ins().fashionDic, n = 0; n < this.curListInfo.length; n++) { + var s = this.curListInfo[n]; + i && i[s.itemInfo.id] && 1 == i[s.itemInfo.id].state ? (s.dressState = 1) : (s.dressState = 0); + } + this.itemArrayCollection.replaceAll(this.curListInfo); + } + }), + (i.prototype.onTabTouch = function (t) { + (this._curIndex = t.currentTarget.selectedIndex), this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.setScrollerH = function () { + t.KHNO.ins().remove(this.updateScrollerH, this), t.KHNO.ins().tBiJo(50, 2, this.updateScrollerH, this); + }), + (i.prototype.updateScrollerH = function () { + if (this.lastSelected <= 3) this.scroller.viewport.scrollH = 0; + else { + var t = Math.floor((this.scroller.viewport.contentWidth - this.scroller.viewport.width) / (this.lastSelected + 1)), + e = t * (this.lastSelected + 1); + e > this.scroller.viewport.contentWidth - this.scroller.viewport.width && (e = this.scroller.viewport.contentWidth - this.scroller.viewport.width), (this.scroller.viewport.scrollH = e); + } + }), + (i.prototype.callFunc = function (e) { + switch (e) { + case t.RoleAction.Await: + this.modelCharRole.playStand(); + break; + case t.RoleAction.Attack: + this.modelCharRole.playAttack(); + break; + case t.RoleAction.Walk: + this.modelCharRole.playWalk(); + break; + case t.RoleAction.Run: + this.modelCharRole.playRun(); + } + }), + (i.prototype.onTouchAp = function (e) { + var i = t.rTRv.ins().fashionDic; + switch (e.currentTarget) { + case this.btn_activat: + this.curItemData && this.curItemData.itemInfo && t.rTRv.ins().send_51_3(this.curItemData.itemInfo.id); + break; + case this.btn_wear: + this.curItemData && this.curItemData.itemInfo && i[this.curItemData.itemInfo.id] && t.rTRv.ins().send_51_2(this.curItemData.itemInfo.id, i[this.curItemData.itemInfo.id].state ? 0 : 1); + break; + case this.btn_upgrade: + this.curItemData && this.curItemData.itemInfo && i[this.curItemData.itemInfo.id] && t.rTRv.ins().send_51_4(this.curItemData.itemInfo.id); + break; + case this.btn_along: + (this.dir += 1), this.dir > 8 && (this.dir = this.dir % 8), (this.modelCharRole.dir = this.dir); + break; + case this.btn_inverse: + (this.dir -= 1), this.dir < 0 && (this.dir = 8), (this.modelCharRole.dir = this.dir); + } + }), + (i.prototype.onItemTap = function (t) { + this.lastSelected >= 0 && (this.curListInfo[this.lastSelected].wearState = 0), + (this.lastSelected = this.list.selectedIndex), + (this.curItemData = t.item), + this.list.dataProvider && this.lastSelected > -1 && this.lastSelected < this.list.dataProvider.length && (this.curListInfo[this.list.selectedIndex].wearState = 1), + this.itemArrayCollection.replaceAll(this.curListInfo), + this.setDisplay(), + this.setCurFashionCost(); + }), + (i.prototype.setOpenIndex = function (e, i) { + void 0 === i && (i = 0); + var n = t.VlaoF.FashionattributeConfig[e + 1]; + this.curListInfo = []; + var s = t.rTRv.ins().fashionDic; + if (n) { + this.lastSelected = 0; + for (var a in n) + this.curListInfo.push({ + itemInfo: n[a], + wearState: 0, + dressState: 0, + Lv: 0, + isMy: 1, + }); + for (var r = 0; r < this.curListInfo.length; r++) { + var o = this.curListInfo[r]; + o.itemInfo.id == i && (this.lastSelected = r), s && s[o.itemInfo.id] && ((o.Lv = s[o.itemInfo.id].lv), 1 == s[o.itemInfo.id].state && ((o.dressState = 1), i || (this.lastSelected = r))); + } + (this.curItemData = this.curListInfo[this.lastSelected]), + (this.curItemData.wearState = 1), + (this.list.selectedIndex = this.lastSelected), + this.itemArrayCollection.replaceAll(this.curListInfo), + this.setDisplay(), + this.setCurFashionCost(), + this.setScrollerH(); + } + }), + (i.prototype.updateData = function () { + this.tabBarArrayCollection.replaceAll(this.tabArr), this.itemArrayCollection.replaceAll(this.curListInfo), this.setCurFashionCost(); + }), + (i.prototype.setCurFashionCost = function () { + if (((this.list_cost.visible = !0), (this.btn_activat.visible = this.lvGrp.visible = this.btn_wear.visible = this.lvRed.visible = !1), this.curItemData && this.curItemData.itemInfo)) { + var e = this.curItemData.itemInfo, + i = t.rTRv.ins().fashionDic; + if (i && i[e.id]) { + (this.activationRed.visible = !1), + (this.lvGrp.visible = this.btn_wear.visible = !0), + 0 == i[e.id].state ? (this.btn_wear.label = t.CrmPU.language_Omission_txt36) : (this.btn_wear.label = t.CrmPU.language_Omission_txt37), + this.fashionAtrrView.setAttr(e.id, i[e.id].lv, 1, 3 == e.type ? 1 : 0); + var n = t.VlaoF.FashionupgradeConfig[e.id][i[e.id].lv + 1]; + n ? ((this.lvRed.visible = t.ZAJw.isRedDot(n.consume) ? !0 : !1), (this.list_cost.dataProvider = new eui.ArrayCollection(n.consume))) : (this.list_cost.visible = !1); + } else + (this.btn_activat.visible = !0), + (this.activationRed.visible = t.ZAJw.isRedDot(e.consume) ? !0 : !1), + this.fashionAtrrView.setAttr(e.id, 0, 1, 3 == e.type ? 1 : 0), + (this.list_cost.dataProvider = new eui.ArrayCollection(e.consume)); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + this.fEHj(this.btn_inverse, this.onTouchAp), + this.fEHj(this.btn_along, this.onTouchAp), + this.fEHj(this.btn_activat, this.onTouchAp), + this.fEHj(this.btn_wear, this.onTouchAp), + this.fEHj(this.btn_upgrade, this.onTouchAp), + this.fashionAtrrView && this.fashionAtrrView.destroy(), + this.modelCharRole && this.modelCharRole.destruct(); + }), + i + ); + })(t.gIRYTi); + (t.FashionNewView = e), __reflect(e.prototype, "app.FashionNewView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.iconDark.source = this.data.tabImg + "_d"), (this.iconLight.source = this.data.tabImg + "_u"); + var e = this.getRingInfo(this.data.id), + i = void 0; + 1 == this.data.type + ? ((i = t.VlaoF.SpecialRingConfig[this.data.id][e + 1]), + i && t.mAYZL.ins().isCheckOpen(i.LVlimit) ? (this.redPoint.visible = t.ZAJw.isRedDot(i.cost) ? !0 : !1) : (this.redPoint.visible = !1)) + : ((i = t.VlaoF.RingBuyJobConfig[this.data.id][1][1]), i && 1 > e ? (this.redPoint.visible = t.ZAJw.isRedDot(i.cost) ? !0 : !1) : (this.redPoint.visible = !1)); + } + }), + (i.prototype.getRingInfo = function (e) { + var i = 0, + n = t.VlaoF.RingTabConfig[e]; + if (n) { + var s = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Special], + a = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.RingJob], + r = 1 == n.type ? s : a; + if (r) for (var o in r) r[o].pos == e && (i = r[o].lv); + } + return i; + }), + i + ); + })(t.BaseItemRender); + (t.NewRingTabItenView = e), __reflect(e.prototype, "app.NewRingTabItenView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.mcName = ""), (i.playerJob = 0), (i.curSelect = 0), (i.openId = 0), (i.ruleId = 0), (i.titleStr = t.CrmPU.language_System66), (i.skinName = "NewRingSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.txt_max.visible = !1), + (this.iconList.itemRenderer = t.NewRingTabItenView), + (this.listCost.itemRenderer = t.FourImagesCostItem), + (this.itemList.itemRenderer = t.RingAttrItemView), + (this.itemArr = new eui.ArrayCollection()), + (this.itemList.dataProvider = this.itemArr), + this.ringEff || ((this.ringEff = t.ObjectPool.pop("app.MovieClip")), (this.ringEff.touchEnabled = !1), this.mcGroup.addChild(this.ringEff)); + var i = t.NWRFmB.ins().getPayer; + i && i.propSet && (this.playerJob = i.propSet.getAP_JOB()), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().postResult, this.postResult), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.onRefreshStrengthen), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateItemChanage), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateItemChanage), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateItemChanage), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateItemChanage), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.updateItemChanage), + t.ckpDj.ins().addEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL, this.onGetProps, this), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.Special), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.RingJob), + this.addChangeEvent(this.iconList, this.onTabTouch), + this.vKruVZ(this.btn_strengthen, this.onTouchAp), + t.GetPropsView.getPropsTxt(this.txt_get, 421), + this.init(), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + (this.txt_get.visible = !1), + this.openId > 0 ? this.setRuleId(this.openId) : ((this.iconList.selectedIndex = 0), this.updateBtnSelect(0)); + }), + (i.prototype.open = function (t) { + t && t.id && (this.openId = t.id); + }), + (i.prototype.onGetProps = function () { + var e = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + if (e && e && this.curCfg && this.curCfg.cost) { + var i = t.edHC.ins().getItemIDByCost(this.curCfg.cost); + if ((0 == i.itemId && (i.itemId = i.itemId2), !t.mAYZL.ins().ZbzdY(t.GaimItemWin) && 0 != i.itemId)) { + var n = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + i, + { + x: n.x, + y: n.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } + }), + (i.prototype.init = function () { + var e = t.VlaoF.RingTabConfig, + i = []; + for (var n in e) { + var s = !0; + if (t.mAYZL.ins().isCheckOpen(e[n].showLimit)) { + if (e[n].ringLimit) for (var a in e[n].ringLimit) if (((s = this.getRingInfo(e[n].ringLimit[a])), !s)) break; + s && i.push(e[n]); + } + } + i.sort(function (t, e) { + return t.index - e.index; + }), + (this.iconList.dataProvider = new eui.ArrayCollection(i)); + }), + (i.prototype.getRingInfo = function (e) { + var i = t.VlaoF.RingTabConfig[e]; + if (i) { + var n = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Special], + s = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.RingJob], + a = 1 == i.type ? n : s; + if (a) for (var r in a) if (a[r].pos == e && a[r].lv >= 1) return !0; + } + return !1; + }), + (i.prototype.setRuleId = function (t) { + for (var e = 0, i = 0; i < this.iconList.dataProvider.length; i++) { + var n = this.iconList.dataProvider.getItemAt(i); + if (n.id == t) { + e = i; + break; + } + } + (this.iconList.selectedIndex = e), this.updateBtnSelect(e); + }), + (i.prototype.onTouchAp = function (e) { + switch (e.currentTarget) { + case this.btn_strengthen: + var i = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + if (i) { + var n = 1 == i.type ? t.StrengthenType.Special : t.StrengthenType.RingJob; + t.StrengthenMgr.ins().sendStrengthenInfo(n, i.id); + } + } + }), + (i.prototype.onRefreshStrengthen = function () { + this.init(), (this.iconList.selectedIndex = this.curSelect), t.AHhkf.ins().Uvxk(t.OSzbc.VIEW), this.updateData(); + }), + (i.prototype.updateItemChanage = function () { + this.init(), (this.iconList.selectedIndex = this.curSelect), this.updateData(); + }), + (i.prototype.updateBtnSelect = function (e) { + (this.curSelect = e), this.updateData(); + var i = this.iconList.dataProvider.getItemAt(e); + i && (i.ruleid ? (this.ruleId = i.ruleid) : (this.ruleId = 0), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_UPDATE_RULE, t.RoleTabEnum.RING)); + }), + (i.prototype.onTabTouch = function (e) { + t.Nzfh.ins().post_gaimItemView(8888), this.updateBtnSelect(e.currentTarget.selectedIndex); + }), + (i.prototype.updateData = function () { + (this.txt_max.visible = this.redDot.visible = !1), (this.listCost.visible = this.btn_strengthen.visible = this.txt_get.visible = !0); + var e = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Special], + i = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.RingJob], + n = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + if (n) { + this.btn_strengthen.label = 1 == n.type ? t.CrmPU.language_System84 : t.CrmPU.language_System83; + var s = 1 == n.type ? e : i, + a = t.VlaoF.SpecialRingConfig[n.id]; + for (var r in s) + if (s[r].pos == n.id) + return ( + (this.bt_lv.visible = 1 == n.type ? !0 : !1), + (this.bt_lv.text = s[r].lv + ""), + (this.mcName = n.ringeff), + (this.strengthen_name.source = n.ringname), + (this.txt_max.visible = (2 == n.type && 1 == s[r].lv) || (1 == n.type && s[r].lv == Object.keys(a).length - 1) ? !0 : !1), + (this.txt_max.text = 1 == n.type ? t.CrmPU.language_Omission_txt115 : t.CrmPU.language_System85), + (this.listCost.visible = this.btn_strengthen.visible = this.txt_get.visible = (2 == n.type && 1 == s[r].lv) || (1 == n.type && s[r].lv == Object.keys(a).length - 1) ? !1 : !0), + this.ringEff.playFileEff(ZkSzi.RES_DIR_EFF + n.ringeff, -1), + this.setAttrList(s[r].lv, s[r].pos, n.type), + void this.setCostList(s[r].lv, s[r].pos, n.type) + ); + (this.bt_lv.visible = 1 == n.type ? !0 : !1), + (this.bt_lv.text = "0"), + (this.mcName = n.ringeff), + (this.strengthen_name.source = n.ringname), + this.ringEff.playFileEff(ZkSzi.RES_DIR_EFF + n.ringeff, -1); + var o = 1 == n.type ? 0 : 1; + this.setAttrList(o, n.id, n.type), this.setCostList(o, n.id, n.type); + } + }), + (i.prototype.setAttrList = function (e, i, n) { + void 0 === n && (n = 1), (this.curAttr.text = ""), (this.nextAttr.text = ""); + var s = ""; + if (1 == n) { + s = this.getAttrStr(i, e, n, 1); + var a = this.getAttrStr(i, e + 1, n, 2); + s && (this.curAttr.textFlow = t.hETx.qYVI(s)), a ? ((this.arrow.visible = !0), (this.nextAttr.textFlow = t.hETx.qYVI(a))) : (this.arrow.visible = !1); + } else (this.arrow.visible = !1), (s = this.getAttrStr(i, e, n, 1)), s && (this.curAttr.textFlow = t.hETx.qYVI(s)); + }), + (i.prototype.getAttrStr = function (e, i, n, s) { + void 0 === n && (n = 1), void 0 === s && (s = 1); + var a; + a = 1 == n ? t.VlaoF.SpecialRingConfig[e][i] : t.VlaoF.RingBuyJobConfig[e][i][this.playerJob]; + var r = null; + if (a) { + var o = [], + l = "", + h = 1 == n && 1 == s ? "0xcbc2b2" : "0x28ee01"; + r = 1 == n ? "|C:0xE0AE75&T:" + t.CrmPU.language_Friend_Txt1 + ":||C:" + h + "&T:" + i + "|\n" : ""; + for (var p in a.attr) o.push(a.attr[p]); + for (var p = 0; p < o.length; p++) (l = t.AttributeData.getItemAttStrByType(o[p], o, 1, !1, !0, "0xE0AE75", h)), "" != l && (r += l + "\n"); + } + return r; + }), + (i.prototype.setCostList = function (e, i, n) { + void 0 === n && (n = 1); + var s; + if (1 == n) + (s = t.VlaoF.SpecialRingConfig[i][e + 1]), + s + ? ((this.curCfg = s), + t.mAYZL.ins().isCheckOpen(s.LVlimit) ? (this.redDot.visible = t.ZAJw.isRedDot(s.cost) ? !0 : !1) : (this.redDot.visible = !1), + (this.listCost.dataProvider = new eui.ArrayCollection(s.cost))) + : ((this.listCost.visible = !1), (this.redDot.visible = !1)); + else if ((s = t.VlaoF.RingBuyJobConfig[i][e][this.playerJob])) { + this.curCfg = s; + var a = this.getRingInfo(i); + a || (this.redDot.visible = t.ZAJw.isRedDot(s.cost) ? !0 : !1), (this.listCost.dataProvider = new eui.ArrayCollection(s.cost)); + } else (this.listCost.visible = !1), (this.redDot.visible = !1); + }), + (i.prototype.postResult = function () { + t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2)); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + t.Nzfh.ins().post_gaimItemView(8888), + this.iconList.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.fEHj(this.btn_strengthen, this.onTouchAp), + this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + t.ckpDj.ins().removeEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL, this.onGetProps, this); + }), + i + ); + })(t.gIRYTi); + (t.NewRingView = e), __reflect(e.prototype, "app.NewRingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + (this.txtIcon1.source = this.data.img1), (this.txtIcon2.source = this.data.img2); + }), + e + ); + })(eui.ItemRenderer); + (t.NGEquipTab = e), __reflect(e.prototype, "app.NGEquipTab"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.equiStartId = 0), (t.equiEndId = 0), (t.viewType = "roleView"), (t.skinName = "NGEquipViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1); + var t; + this.equipArr = []; + for (var i = 0; 4 > i; i++) (t = this["icon" + i]), this.equipArr.push(t); + }), + (i.prototype.init = function (e, i) { + if ((void 0 === e && (e = 1), void 0 === i && (i = "roleView"), (this.viewType = i), 1 == e)) { + (this.equiStartId = t.StdItemType.itBloodSoul), (this.equiEndId = t.StdItemType.itIntellectBall), (this.imgTitle.source = "t_neigongzb"), (this.helpBtn.ruleId = 99); + for (var n = void 0, s = 0; 4 > s; s++) { + var a = this.equipArr[s]; + a.setEquipBg(s + 12), (n = t.VlaoF.MeridiansSetConfig["equipOpen" + (s + 1)]), n && (a.visible = t.mAYZL.ins().isCheckOpen(n)); + } + } else { + (this.equiStartId = t.StdItemType.itBloodSoul2), (this.equiEndId = t.StdItemType.itIntellectBall2), (this.imgTitle.source = "t_neigongzb1"), (this.helpBtn.ruleId = 100); + for (var s = 0; 4 > s; s++) { + var a = this.equipArr[s]; + a.setEquipBg(s + 16); + } + } + "roleView" == this.viewType && + (this.HFTK(t.bPGzk.ins().post_7_3, this.setEquipData), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onEquipWear, this), + t.ckpDj.ins().addEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onEquipDrop, this)), + this.setEquipData(); + }), + (i.prototype.setEquipData = function () { + var e, + i = 0; + if (("roleView" == this.viewType ? (e = t.caJqU.ins().equips) : ((e = t.caJqU.ins().otherPlayerEquips.equips), (i = 1)), e)) + for (var n, s = 0; s < e.length; s++) (n = e[s].nPos), n >= this.equiStartId && n <= this.equiEndId && ((n -= this.equiStartId), this.equipArr[n].setItem(e[s], null, null, i)); + }), + (i.prototype.onEquipWear = function (e) { + var i = e[0]; + if (!(i.nPos && i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield) && i) { + var n = i.nPos; + n >= this.equiStartId && n <= this.equiEndId && ((n -= this.equiStartId), this.equipArr[n].setItem(i)); + } + }), + (i.prototype.onEquipDrop = function (e) { + var i = e[0]; + if (!(i.nPos && i.nPos >= t.StdItemType.itEquipDiamond && i.nPos < t.StdItemType.itShield)) + for (var n, s = 0; s < this.equipArr.length; s++) + if (((n = this.equipArr[s]), n.userItem && n.userItem.series.isCompleteEquals(i.series))) { + var a = i.nPos; + a >= this.equiStartId && a <= this.equiEndId && ((a -= this.equiStartId), this.equipArr[a].resum()); + break; + } + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_WEAR_EQUIP, this.onEquipWear, this), t.ckpDj.ins().removeEvent(t.ItemEvent.EQUIP_DROP_EQUIP, this.onEquipDrop, this); + var n, s; + for (n = 0, s = this.equipArr.length; s > n; n++) { + var a = this.equipArr[n]; + a.destroy(), (a = null); + } + (this.equipArr.length = 0), (this.equipArr = null); + }), + i + ); + })(t.BaseView); + (t.NGEquipView = e), __reflect(e.prototype, "app.NGEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return (null !== t && t.apply(this, arguments)) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + if (this.data) { + var t = this.data; + this.icon.source = t.icon; + } + }), + e + ); + })(t.BaseItemRender); + (t.RolePetItem = e), __reflect(e.prototype, "app.RolePetItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 98), (i.titleStr = t.CrmPU.language_System101), (i.skinName = "RolePetSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + this.petMc || ((this.petMc = t.ObjectPool.pop("app.MovieClip")), (this.petMc.touchEnabled = !1), this.effGrp.addChild(this.petMc)), (this.iconList.itemRenderer = t.RolePetItem); + var e = this.getPetDataList(); + (this.iconList.dataProvider = new eui.ArrayCollection(e)), + (this.iconList.selectedIndex = 0), + this.HFTK(t.PetSettingTwoMgr.ins().post_35_1, this.updateData), + this.HFTK(t.PetSettingTwoMgr.ins().post_35_2, this.updateData), + this.HFTK(t.PetSettingTwoMgr.ins().post_35_3, this.updateData), + this.HFTK(t.PetSettingTwoMgr.ins().post_35_4, this.updateData), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateGoOut), + this.addChangeEvent(this.iconList, this.onTabTouch), + this.vKruVZ(this.btn_goOut, this.onTouch), + t.PetSettingTwoMgr.ins().send_35_1(), + this.updateData(); + }), + (i.prototype.onTabTouch = function (t) { + this.updateData(); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.btn_goOut: + var i = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex), + n = t.PetSettingTwoMgr.ins().peiTypeList[i.type]; + if (n) { + var s = t.NWRFmB.ins().getPayer; + s && + s.propSet && + (n.id == s.propSet.getPickUpPet() + ? ((this.btn_goOut.label = t.CrmPU.language_Omission_txt36), t.PetSettingTwoMgr.ins().send_35_2(0)) + : ((this.btn_goOut.label = t.CrmPU.language_Omission_txt37), t.PetSettingTwoMgr.ins().send_35_2(n.id))); + } + } + }), + (i.prototype.updateData = function () { + var e = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex); + (this.imgName.source = e.nameIcon), this.petMc.playFileEff(ZkSzi.RES_DIR_PET + e.icon, -1), (this.iconState.visible = !1), (this.labTips.text = e.PetStr); + var i = []; + for (var n in e.attr) i.push(e.attr[n]); + var s = "", + a = t.PetSettingTwoMgr.ins().peiTypeList, + r = a[e.type]; + if (r && r.time > 0 && r.time > t.GlobalData.serverTime) { + (this.iconState.source = "chongwu_btn2"), (this.iconState.visible = !0), (this.btn_goOut.visible = !0), this.updateGoOut(); + var o = Math.floor((r.time - t.GlobalData.serverTime) / 1e3); + s += "|C:0x28ee01&T:" + (t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(o, t.DateUtils.TIME_FORMAT_18)) + "|"; + for (var n = 0; n < i.length; n++) { + var l = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0, "0xE0AE75", "0x28ee01"); + "" != l && (s += "\n" + l); + } + this.labTips.textColor = 16742144; + } else { + (this.iconState.source = "chongwu_btn1"), (this.iconState.visible = !0), (this.btn_goOut.visible = !1), (s += t.CrmPU.language_System72); + for (var n = 0; n < i.length; n++) { + var l = t.AttributeData.getItemAttStrByType(i[n], i, 1, !1, !0); + "" != l && (s += "\n" + l); + } + this.labTips.textColor = 15064527; + } + this.labAttribute.textFlow = t.hETx.qYVI(s); + }), + (i.prototype.updateGoOut = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = this.iconList.dataProvider.getItemAt(this.iconList.selectedIndex), + n = t.PetSettingTwoMgr.ins().peiTypeList[i.type]; + n && n.id == e.propSet.getPickUpPet() ? (this.btn_goOut.label = t.CrmPU.language_Omission_txt37) : (this.btn_goOut.label = t.CrmPU.language_Omission_txt36); + } + }), + (i.prototype.getPetDataList = function () { + var e = t.VlaoF.lootPetConfig, + i = []; + for (var n in e) { + var s = t.CommonUtils.objectToArray(e[n]), + a = s[0]; + i.push({ + type: a.type, + id: a.id, + attr: a.attr, + icon: a.icon, + nameIcon: a.nameIcon, + PetStr: a.PetStr, + }); + } + return ( + i.sort(function (t, e) { + return t.type - e.type; + }), + i + ); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.iconList.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this); + }), + i + ); + })(t.gIRYTi); + (t.RolePetView = e), __reflect(e.prototype, "app.RolePetView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RingAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + e.desc1 && (this.txt_cur.textFlow = t.hETx.qYVI(e.desc1)), + e.desc2 ? ((this.txt_next.textFlow = t.hETx.qYVI(e.desc2)), (this.arrow.visible = !0)) : ((this.txt_next.text = ""), (this.arrow.visible = !1)); + } + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.RingAttrItemView = e), __reflect(e.prototype, "app.RingAttrItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1), (this.labelDisplay.text = t.CrmPU.language_Omission_txt8); + var i = "StrengthenMgr.isCanStrengthenRing"; + this.redDot.updateShowFunctions = i; + }), + (i.prototype.refresh = function () { + this.redDot.param = null; + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.RingBtnItemView = e), __reflect(e.prototype, "app.RingBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "RingIconItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + (this._pos = e.pos), (this._lv = e.lv), (this.effect.visible = 1 == e.ZbzdY), (this.icon.source = this.effect.visible ? "btn_sj_" + e.pos + "_u" : "btn_sj_" + e.pos + "_d"); + var i = void 0; + if (1 == this._pos) (i = t.VlaoF.SpecialRingConfig[this._pos][this._lv + 1]), i ? (this.redPoint.visible = t.ZAJw.isRedDot(i.cost) ? !0 : !1) : (this.redPoint.visible = !1); + else { + var n = t.JgMyc.ins().roleModel.getRingLiveState(this._pos); + n ? (this.redPoint.visible = !1) : ((i = t.VlaoF.RingBuyJobConfig[this._pos][this._lv][1]), (this.redPoint.visible = t.ZAJw.isRedDot(i.cost) ? !0 : !1)); + } + } + }), + Object.defineProperty(i.prototype, "pos", { + get: function () { + return this._pos; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "lv", { + get: function () { + return this._lv; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseItemRender); + (t.RingIconItemView = e), __reflect(e.prototype, "app.RingIconItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.effect.visible = !1); + }), + (i.prototype.setData = function (t) { + this.icon.source = t; + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.RingItemView = e), __reflect(e.prototype, "app.RingItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.maxSize = 5), (t.isInit = !0), (t.selectedIndex = 0), (t.skinName = "RingSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.listCost.itemRenderer = t.FourImagesCostItem), + (this.flipPage = new t.FlipPage(null, this.btn_prev, this.btn_next)), + (this.flipPage.maxLength = 5), + (this.flipPage.type = t.FlipPageType.Special); + var e = t.VlaoF.SpecialRingConfig, + i = Object.keys(e).length, + n = i >= this.maxSize; + this.flipPage.setHide(n), + this.flipPage.addEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), + (this.dataAry = []), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + (this.txt_get.visible = !1), + (this.txt_max.visible = !1), + (this.img_money.visible = !1), + (this.txt_consume.visible = !1), + (this.iconArrayCollection = new eui.ArrayCollection()), + (this.iconList.itemRenderer = t.RingIconItemView), + (this.iconList.dataProvider = this.iconArrayCollection), + this.iconList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onItemTap, this), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.itemList.itemRenderer = t.RingAttrItemView), + (this.itemList.dataProvider = this.itemArrayCollection), + t.ckpDj.ins().addEvent(t.CompEvent.STRENGTHEN_RED, this.refreshRedDot, this), + t.ckpDj.ins().addEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL, this.onGetProps, this), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.onRefreshData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.onRefreshStrengthen), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.refreshRedDot), + this.HFTK(t.StrengthenMgr.ins().postResult, this.postResult), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.Special), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.RingJob), + this.initPageData(), + (this.redDot.visible = !1); + }), + (i.prototype.postResult = function () { + t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2)); + }), + (i.prototype.onGetProps = function () { + var e; + this.nextCfg ? (e = this.nextCfg) : this.curCfg instanceof t.RingBuyJobConfig && (e = this.curCfg); + var i = t.edHC.ins().getItemIDByCost(e.cost); + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin) && 0 != i.itemId) { + var n = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + i, + { + x: n.x, + y: n.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.getItemVisible = function () { + this.txt_get.visible = !1; + var e = t.JgMyc.ins().roleModel.getRingMax(this.curCfg.pos); + if (this.nextCfg || this.curCfg instanceof t.RingBuyJobConfig) + if (1 != e) { + var i = this.nextCfg ? this.nextCfg.cost[this.nextCfg.cost.length - 1].id : this.curCfg instanceof t.RingBuyJobConfig ? this.curCfg.cost[this.curCfg.cost.length - 1].id : 0; + t.GetPropsView.getPropsTxt(this.txt_get, i), (this.txt_get.visible = !0); + } else if (1 == e) { + var n = t.JgMyc.ins().roleModel.getRingLiveState(this.curCfg.pos); + if (!n) { + var s = this.nextCfg ? this.nextCfg.cost[this.nextCfg.cost.length - 1].id : this.curCfg instanceof t.RingBuyJobConfig ? this.curCfg.cost[this.curCfg.cost.length - 1].id : 0; + t.GetPropsView.getPropsTxt(this.txt_get, s), (this.txt_get.visible = !0); + } + } + }), + (i.prototype.onItemTap = function (t) { + (this.selectedIndex = t.itemIndex), (this.selectedItem = t.item), this.onRefreshTab(), this.setStrengthenData(); + }), + (i.prototype.onRefreshTab = function () { + this.selectedItem && this.setTabData(this.showData); + }), + (i.prototype.setTabData = function (e) { + void 0 === e && (e = null), this.tabArr ? (this.tabArr.length = 0) : (this.tabArr = []); + for (var i, n = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], s = n.name, a = 0; a < e.length; a++) + for (var r in s) + if (s[r].ringid == e[a].pos) { + (i = 0), + this.selectedItem + ? this.selectedItem.pos == e[a].pos && (i = 1) + : 0 == a && + ((i = 1), + (this.selectedItem = { + name: s[r].ringpc.ringpcid, + pos: e[a].pos, + lv: e[a].lv, + job: e[a].job, + ZbzdY: i, + })), + this.tabArr.push({ + name: s[r].ringpc.ringpcid, + pos: e[a].pos, + lv: e[a].lv, + job: e[a].job, + ZbzdY: i, + }); + break; + } + this.iconArrayCollection.replaceAll(this.tabArr); + }), + (i.prototype.onPageChange = function (t) { + var e = t.data; + (this.showData = e), this.setTabData(e); + }), + (i.prototype.refreshRedDot = function () { + this.showConsume(this.nextCfg), this.onRefreshTab(); + }), + (i.prototype.onRefreshStrengthen = function () { + this.initPageData(), t.AHhkf.ins().Uvxk(t.OSzbc.STRENGTHEN), this.setStrengthenData(); + }), + (i.prototype.onRefreshData = function () { + this.initPageData(), this.setStrengthenData(); + }), + (i.prototype.initPageData = function () { + var e = t.JgMyc.ins().roleModel.getAllRingData(), + i = e; + i && this.flipPage.setData(i), (this.flipPage.currentPage = 1); + }), + (i.prototype.setRuleId = function () { + var e = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + i = e.name; + if (this.curCfg) { + var n = i[this.curCfg.pos - 1].ringpc.ruleid; + n && this.callFunc ? this.callFunc(n) : this.callFunc && this.callFunc(0); + } + }), + (i.prototype.setStrengthenData = function () { + this.redDot.showMessages = "ThgMu.post_8_1;ThgMu.post_8_4;ThgMu.post_8_3"; + var e, + i, + n = t.JgMyc.ins().roleModel.getAllRingData(); + if (this.showData && !this.selectedItem) { + for (var s = void 0, a = [], r = 0, o = this.showData.length; o > r; r++) { + i = this.showData[r]; + for (var l = 0, h = n.length; h > l; l++) + if (((s = n[r]), s.pos == i.pos)) { + a.push(s); + break; + } + } + (e = a[this.selectedIndex]), + (this.curCfg = e), + e && + (1 == e.pos && ((this.redDot.param = null), (this.redDot.updateShowFunctions = "StrengthenMgr.isCanStrengthenRing")), + (this.nextCfg = t.JgMyc.ins().roleModel.getRingConfig(e.pos, e.lv + 1, e.job)), + this.setAttr(e.lv, e.pos, e.job)); + } else if (this.selectedItem) { + for (var p = 0, h = n.length; h > p; p++) { + var s = n[p]; + if (s.pos == this.selectedItem.pos) { + i = s; + break; + } + } + (e = t.JgMyc.ins().roleModel.getRingConfig(i.pos, i.lv, i.job)), + (this.curCfg = e), + e && + ((this.nextCfg = t.JgMyc.ins().roleModel.getRingConfig(e.pos, e.lv + 1, e.job)), + this.setAttr(e.lv, e.pos, e.job), + 1 == e.pos + ? ((this.redDot.param = null), (this.redDot.updateShowFunctions = "StrengthenMgr.isCanStrengthenRing")) + : ((this.redDot.param = e), (this.redDot.updateShowFunctions = "StrengthenMgr.isCanJobRing"))); + } + this.showConsume(this.nextCfg), this.vKruVZ(this.btn_strengthen, this.onClick); + }), + (i.prototype.showConsume = function (e) { + if ((void 0 === e && (e = null), (this.txt_max.visible = !1), this.curCfg)) { + this.setRuleId(), + (this.nextCfg = t.JgMyc.ins().roleModel.getRingConfig(this.curCfg.pos, this.curCfg.lv + 1, this.curCfg.job)), + this.getItemVisible(), + this.curCfg && (this.bt_lv.text = this.curCfg.lv + ""); + var i = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + n = i.name; + for (var s in n) + if (n[s].ringid == this.curCfg.pos) { + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), this.mcGroup.addChild(this.mc)), + this.mcName != n[s].ringpc.ringpcid && ((this.mcName = n[s].ringpc.ringpcid), this.mc.playFileEff(ZkSzi.RES_DIR_EFF + n[s].ringpc.ringpcid, -1)), + (this.strengthen_name.source = n[s].ringpc.ringname); + break; + } + var a = t.JgMyc.ins().roleModel.getRingMax(this.curCfg.pos); + if (1 == a) { + (this.bt_lv.visible = !1), (this.txt_max.text = t.CrmPU.language_System85); + var r = t.JgMyc.ins().roleModel.getRingLiveState(this.curCfg.pos); + return r + ? ((this.btn_strengthen.visible = !1), (this.listCost.visible = !1), (this.txt_max.visible = !0), void (t.JgMyc.ins().roleModel.ringStrengthenData = null)) + : ((this.listCost.visible = !0), + (this.btn_strengthen.visible = !0), + (this.listCost.dataProvider = new eui.ArrayCollection(this.curCfg.cost)), + (t.JgMyc.ins().roleModel.ringStrengthenData = this.curCfg), + void (this.btn_strengthen.label = t.CrmPU.language_System83)); + } + if (((this.bt_lv.visible = !0), (this.btn_strengthen.label = t.CrmPU.language_System84), !e)) + return ( + (this.btn_strengthen.visible = !1), + (this.listCost.visible = !1), + (this.txt_max.visible = !0), + (this.txt_max.text = "强化已达最高等级"), + void (t.JgMyc.ins().roleModel.ringStrengthenData = null) + ); + if (!this.cfg1Dic) + return ( + (this.btn_strengthen.visible = !1), + (this.listCost.visible = !1), + (this.txt_max.visible = !0), + (t.JgMyc.ins().roleModel.ringStrengthenData = null), + void t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_RED) + ); + (this.bt_lv.visible = !0), + (this.listCost.visible = !0), + (this.btn_strengthen.visible = !0), + (this.listCost.dataProvider = new eui.ArrayCollection(e.cost)), + (t.JgMyc.ins().roleModel.ringStrengthenData = e); + } + }), + (i.prototype.onClick = function (e) { + this.fEHj(this.btn_strengthen, this.onClick); + var i = this.iconList.selectedItem; + if (i) { + var n = 1 == i.pos ? t.StrengthenType.Special : t.StrengthenType.RingJob; + t.StrengthenMgr.ins().sendStrengthenInfo(n, i.pos); + } else { + var n = 1 == this.curCfg.pos ? t.StrengthenType.Special : t.StrengthenType.RingJob; + t.StrengthenMgr.ins().sendStrengthenInfo(n, this.curCfg.pos); + } + }), + (i.prototype.setAttr = function (e, i, n) { + var s; + (s = t.JgMyc.ins().roleModel.getRingAttr(e, i, n)), e++, (this.cfg1Dic = t.JgMyc.ins().roleModel.getRingAttr(e, i, n)); + var a, + r, + o, + l, + h, + p = t.VlaoF.AttrLookupConfig[t.StrengthenType.Special], + u = [], + c = [], + g = [], + d = [], + m = [], + f = 0; + for (r = 0; r < p.attr.length; r++) (a = {}), (a.type = p.attr[r]), (a.value = 0), c.push(a); + if (s) { + for (var v in s) + for (r = 0; r < s[v].attr.length; r++) { + var _ = {}; + (_.type = s[v].attr[r].type), (f = s[v].attr[r].value), (_.value = f), m.push(_); + } + for (o = 0, l = c.length; l > o; o++) + for (r = 0; r < m.length; r++) { + var y = m[r].type; + y == c[o].type && (c[o].value += m[r].value); + } + var T = []; + for (r = 0; r < c.length; r++) { + var M = m.filter(function (t) { + return t.type == c[r].type; + }); + M[0] && T.push(M[0]); + } + for (r = 0; r < c.length; r++) + for (var C = 0; C < T.length; C++) c[r].type == T[C].type && ((h = t.AttributeData.getItemAttStrByType(c[r], c, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != h && g.push(h)); + } + var b = "|C:0xE0AE75&T:" + t.CrmPU.language_Friend_Txt1 + ":||C:0xcbc2b2&T:" + (e - 1) + "|", + I = t.JgMyc.ins().roleModel.getRingMax(i); + for (I > 1 && g.unshift(b), r = 0; r < c.length; r++) c[r].value = 0; + if (((m.length = 0), this.cfg1Dic)) { + for (var v in this.cfg1Dic) + for (r = 0; r < this.cfg1Dic[v].attr.length; r++) { + var _ = {}; + (_.type = this.cfg1Dic[v].attr[r].type), (f = this.cfg1Dic[v].attr[r].value), (_.value = f), m.push(_); + } + for (o = 0, l = c.length; l > o; o++) + for (r = 0; r < m.length; r++) { + var y = m[r].type; + y == c[o].type && (c[o].value += m[r].value); + } + var S = "|C:0xE0AE75&T:" + t.CrmPU.language_Friend_Txt1 + ":||C:0x28ee01&T:" + e + "|"; + d.unshift(S); + var T = []; + for (r = 0; r < c.length; r++) { + var M = m.filter(function (t) { + return t.type == c[r].type; + }); + M[0] && T.push(M[0]); + } + for (r = 0; r < c.length; r++) + for (var E = 0; E < T.length; E++) c[r].type == T[E].type && ((h = t.AttributeData.getItemAttStrByType(c[r], c, 1, !1, !0, "0xE0AE75", "0x28ee01")), "" != h && d.push(h)); + } + for (r = 0; r < g.length; r++) + d.length < r + ? u.push({ + desc1: g[r], + desc2: null, + }) + : u.push({ + desc1: g[r], + desc2: d[r], + }); + this.setData(u); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), + this.flipPage && (this.flipPage.removeEventListener(t.CompEvent.PAGE_CHANGE, this.onPageChange, this), this.flipPage.destory(), (this.flipPage = null)), + (this.mcName = null), + this.mc && (this.mc.destroy(), (this.mc = null)), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + (this.dataAry.length = 0), + (this.dataAry = null), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null), + this.iconArrayCollection.removeAll(), + (this.iconArrayCollection = null), + (this.tabArr.length = 0), + (this.tabArr = null), + (this.nextCfg = null), + t.ckpDj.ins().removeEvent(t.CompEvent.STRENGTHEN_RED, this.refreshRedDot, this), + t.ckpDj.ins().removeEvent(t.CompEvent.GET_PROPS_STRENGTHEN_SPECIAL, this.onGetProps, this), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.RingView = e), __reflect(e.prototype, "app.RingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._itemArrayCollection = null), + (t.maxHight = 415), + (t._type = 0), + (t.itemId = 261), + (t.ruleId = 0), + (t.titleStr = ""), + (t.lhLevel = 0), + (t.csLevel = 0), + (t.isMoving = !1), + (t.skinName = "SkillSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.touchEnabled = !1), this.init(); + }), + (i.prototype.open = function (e) { + e && (this._type = e.type), + 0 == this._type ? ((this.ruleId = 5), (this.titleStr = t.CrmPU.language_System5)) : 1 == this._type && ((this.ruleId = 6), (this.titleStr = t.CrmPU.language_System6)); + }), + (i.prototype.init = function () { + this._scrollViewContainer || + ((this._scrollViewContainer = new t.ScrollViewContainer(this.container)), + this._scrollViewContainer.callFunc([this.onScrollerChange, this.onScrollerEnd, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.RoleSkillItemView), + (this._itemArrayCollection = new eui.ArrayCollection()), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.HFTK(t.XwoNAr.ins().post_17_2, this.onRefresh), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.onRefresh), + this.HFTK(t.NGcJ.ins().postg_5_2, this.updateSkill), + this.HFTK(t.NGcJ.ins().post_updateSkillMC, this.updateSkillMC), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_LEVEL_CIRCLE, this.onRefresh, this), + t.ckpDj.ins().addEvent(t.CompEvent.SHORTCUTKEY, this.onRefresh, this), + t.ckpDj.ins().addEvent(t.CompEvent.DRAG_END, this.onDragEnd, this), + t.ckpDj.ins().addEvent(t.CompEvent.DRAG_START, this.onDragStart, this)), + this.onRefresh(); + }), + (i.prototype.updateSkill = function (t) { + t && + (6 == t.nSkillId + ? this.lhLevel != t.nLevel && ((this.lhLevel = t.nLevel), this.onRefresh()) + : 8 == t.nSkillId + ? this.csLevel != t.nLevel && ((this.csLevel = t.nLevel), this.onRefresh()) + : this.onRefresh()); + }), + (i.prototype.onRefresh = function () { + t.KHNO.ins().RTXtZF(this.updateSkillList, this) || t.KHNO.ins().tBiJo(100, 1, this.updateSkillList, this); + }), + (i.prototype.updateSkillMC = function (t) { + for (var e, i = 0; i < this._list.numChildren; i++) (e = this._list.getChildAt(i)), e && e.data.skillId == t && e.playMC(); + }), + (i.prototype.updateSkillList = function () { + t.KHNO.ins().remove(this.updateSkillList, this); + var e, + i, + n, + s, + a, + r = t.NWRFmB.ins().getPayer, + o = r.propSet.MzYki(), + l = r.propSet.getAP_JOB(), + h = (t.XwoNAr.ins().keyInfo, []), + p = t.NWRFmB.ins().getPayer.propSet.mBjV(), + u = r.propSet.getBindCoin(), + c = r.propSet.getMeridians(), + g = 0, + d = -1; + for (var m in t.VlaoF.SkillConf) + if (((e = t.VlaoF.SkillConf[m]), (g = 0), t.mAYZL.ins().isCheckOpen(e.isShowNeed) && !e.isDelete && (e.vocation == l || 0 == e.vocation))) { + (i = t.NWRFmB.ins().getPayer.getUserSkill(e.id)), + i && (g = i.nLevel), + 6 == e.id ? (this.lhLevel = g) : 8 == e.id && (this.csLevel = g), + (n = t.VlaoF.SkillsLevelConf[e.id][g]), + (s = t.VlaoF.SkillsLevelConf[e.id][g + 1]); + var f = !1, + v = 0, + _ = !1; + if (e) { + if (1 == this._type) { + if (3 != e.skillClass) continue; + } else if (1 != e.skillClass) continue; + if (s && s.upgradeConds) { + (f = !0), (_ = !0); + for (var y in s.upgradeConds) + if (((a = s.upgradeConds[y]), 1 == a.cond)) { + if (p < a.value) { + (f = !1), (_ = !1), (v = a.cond); + break; + } + } else if (4 == a.cond) { + if (o < a.value) { + (f = !1), (_ = !1), (v = a.cond); + break; + } + } else if (6 == a.cond) { + if (c < a.value) { + (f = !1), (_ = !1), (v = a.cond); + break; + } + } else if (2 == a.cond) { + if (a.value > u) { + (_ = !1), (v = a.cond); + break; + } + } else if (3 == a.cond) { + var T = void 0; + if ((T = t.VlaoF.StdItems[a.value])) { + var M = t.ZAJw.MPDpiB(ZnGy.qatEquipment, T.id); + if (a.count > M) { + (_ = !1), (v = a.cond); + break; + } + } + } + } + (d = t.XwoNAr.ins().getSkillKey(e.id)), + e.isRedDot || (_ = !1), + n + ? h.push({ + type: 1, + isRedDot: _, + skillId: e.id, + level: g, + name: e.name, + state: d, + dragName: "skillIcon_" + e.skillType + h.length, + icon: n.skillName, + isMax: !s, + isUpgrade: f, + errorType: v, + skillType: e.skillType, + upgradeConds: s && s.upgradeConds, + }) + : h.push({ + type: 1, + isRedDot: _, + skillId: e.id, + level: g, + name: e.name, + state: d, + dragName: "skillIcon_" + e.skillType + h.length, + icon: s.skillName, + isMax: !s, + isUpgrade: f, + errorType: v, + skillType: e.skillType, + upgradeConds: s && s.upgradeConds, + }); + } + } + this._itemArrayCollection.replaceAll(h), this._scroller.validateNow(); + }), + (i.prototype.onGetProps = function () { + var e = t.VlaoF.GetItemRouteConfig[this.itemId]; + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var i = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e.itemid, + { + x: i.x, + y: i.y, + }, + { + height: this.height, + width: this.width, + }, + 8888 + ); + } + }), + (i.prototype.onDragStart = function (t) { + (this.isMoving = !0), (this._scroller.scrollPolicyV = eui.ScrollPolicy.OFF); + }), + (i.prototype.onDragEnd = function (t) { + (this.isMoving = !1), (this._scroller.scrollPolicyV = eui.ScrollPolicy.AUTO); + }), + (i.prototype.onScrollerChange = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.removeListener(); + }), + (i.prototype.onScrollerEnd = function () { + for (var t, e = 0; e < this._list.numChildren; e++) (t = this._list.getChildAt(e)), t && t.addListener(); + }), + (i.prototype.callFunc = function (e, i, n) { + (this.curIdx = e), (this.curSkillId = i), (this.curSkillLev = n), t.NGcJ.ins().send_5_3(i); + }), + (i.prototype.$onClose = function () { + for (e.prototype.$onClose.call(this), this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this); this._list.numChildren > 0; ) { + var i = this._list.getChildAt(0); + i.destroy(), (i = null); + } + t.Nzfh.ins().post_gaimItemView(8888), + this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + t.GetPropsView.getPropsTxt(this.txt_get, this.itemId), + t.ckpDj.ins().removeEvent(t.CompEvent.ROLE_LEVEL_CIRCLE, this.onRefresh, this), + t.ckpDj.ins().removeEvent(t.CompEvent.SHORTCUTKEY, this.onRefresh, this), + t.ckpDj.ins().removeEvent(t.CompEvent.DRAG_END, this.onDragEnd, this), + t.ckpDj.ins().removeEvent(t.CompEvent.DRAG_START, this.onDragStart, this), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null), + this._itemArrayCollection.removeAll(), + t.lEYZI.Naoc(this.container); + }), + i + ); + })(t.gIRYTi); + (t.RoleBasicSkillView = e), __reflect(e.prototype, "app.RoleBasicSkillView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), (t.skinName = "SkillDescSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.setData = function (e) { + if (e) { + var i = ""; + this.descLab.textFlow = null; + var n = t.NWRFmB.ins().getPayer, + s = n.propSet.mBjV(), + a = n.propSet.MzYki(), + r = n.propSet.getBindCoin(), + o = n.propSet.getMeridians(); + if (e[0]) { + var l = e[0].skillId, + h = e[0].desc, + p = e[0].name, + u = e[0].level; + t.NWRFmB.ins().getPayer.getUserSkill(l); + 0 == u + ? p && (i += "|C:0xf7883a&T:" + (p + "(" + t.CrmPU.language_Omission_txt6 + ")") + "\n") + : (p ? ((i += "|C:0xf7883a&T:" + (p + "(" + u + t.CrmPU.language_Common_1 + ")") + "\n"), h.length > 0 && (i += "\n|C:0xffffff&T:" + h)) : (i += "|C:0xffffff&T:" + h), + (i = i.replace(/^\s+|\s+$/g, "") + "\n")); + } + if (e[1]) { + i += "\n" + t.CrmPU.language_Omission_txt39 + "\n"; + var c = e[1].conds, + l = e[1].skillId, + h = e[1].desc, + g = e[1].name, + u = e[1].level, + d = new Array(4); + if (((i += "\n"), c)) + for (var m = void 0, f = c ? c.length : 0, v = 0; f > v; v++) + if (((m = c[v]), 1 == m.cond)) + m.value > s + ? (d[0] = "|C:0xe50000&T:" + (t.CrmPU.language_Omission_txt1 + m.value + t.CrmPU.language_Common_1 + "\n")) + : (d[0] = "|C:0x28ee01&T:" + (t.CrmPU.language_Omission_txt1 + m.value + t.CrmPU.language_Common_1 + "\n")); + else if (4 == m.cond) + m.value > a + ? (d[1] = "|C:0xe50000&T:" + (t.CrmPU.language_Omission_txt2 + m.value + t.CrmPU.language_Common_0 + "\n")) + : (d[1] = "|C:0x28ee01&T:" + (t.CrmPU.language_Omission_txt2 + m.value + t.CrmPU.language_Common_0 + "\n")); + else if (6 == m.cond) + m.value > o + ? (d[0] = "|C:0xe50000&T:" + (t.CrmPU.language_Omission_txt145 + m.value + t.CrmPU.language_Common_1 + "\n")) + : (d[0] = "|C:0x28ee01&T:" + (t.CrmPU.language_Omission_txt145 + m.value + t.CrmPU.language_Common_1 + "\n")); + else if (2 == m.cond && m.consume) + m.value > r ? (d[2] = "|C:0xe50000&T:" + (t.CrmPU.language_Omission_txt3 + m.value + "\n")) : (d[2] = "|C:0x28ee01&T:" + (t.CrmPU.language_Omission_txt3 + m.value + "\n")); + else if (3 == m.cond && m.consume) { + var _ = void 0; + if ((_ = t.VlaoF.StdItems[m.value])) { + var y = t.ZAJw.MPDpiB(ZnGy.qatEquipment, _.id); + y < m.count + ? (d[3] = "|C:0xe50000&T:" + (t.CrmPU.language_Omission_txt4 + _.name + ":" + m.count + "\n")) + : (d[3] = "|C:0x28ee01&T:" + (t.CrmPU.language_Omission_txt4 + _.name + ":" + m.count + "\n")); + } + } + for (var v = 0; v < d.length; v++) d[v] && (i += d[v]); + g ? h.length > 0 && (i += "\n|C:0xffffff&T:" + h) : (i += "\n|C:0xffffff&T:" + h), (i = i.replace(/^\s+|\s+$/g, "") + "\n"), (this.descLab.textFlow = t.hETx.qYVI(i)); + } else (i += "\n" + t.CrmPU.language_Omission_txt40 + "\n"), (this.descLab.textFlow = t.hETx.qYVI(i)); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), (this.descLab.textFlow = null), t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.RoleSkillDescView = e), __reflect(e.prototype, "app.RoleSkillDescView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "CommonGiftShowSKin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), t.MouseScroller.bind(this.itemScroller), (this.itemList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.itemList.dataProvider = new eui.ArrayCollection(e[0])), + (this.itemScroller.verticalScrollBar.autoVisibility = !1), + (this.itemScroller.verticalScrollBar.visible = !1), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System81), + this.vKruVZ(this.btnConfim, this.onClick); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.MouseScroller.unbind(this.itemScroller), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.btnConfim, this.onClick); + }), + (i.prototype.onClick = function () { + t.mAYZL.ins().close(this); + }), + i + ); + })(t.gIRYTi); + (t.ShowGiftView = e), __reflect(e.prototype, "app.ShowGiftView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "StrengthenAttrItemSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data; + e.desc1 && (this.txt_cur.textFlow = t.hETx.qYVI(e.desc1)), e.desc2 ? (this.txt_next.textFlow = t.hETx.qYVI(e.desc2)) : ((this.txt_next.text = ""), (this.arrow.visible = !1)); + } + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.StrengthenAttrItemView = e), __reflect(e.prototype, "app.StrengthenAttrItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.partAdded = function (t, i) { + e.prototype.partAdded.call(this, t, i); + }), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.redDot.visible = !1), (this.labelDisplay.text = t.CrmPU.language_Omission_txt42); + var i = "StrengthenMgr.isSatisStrengthened"; + this.redDot.updateShowFunctions = i; + }), + (i.prototype.refresh = function () { + this.redDot.param = null; + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(eui.Button); + (t.StrengthenBtnItemView = e), __reflect(e.prototype, "app.StrengthenBtnItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.setData = function (t, e, i) { + (this.icon.source = t), (this.txtName.text = e), (this.txtAdd.text = "+" + i); + }), + e + ); + })(eui.Component); + (t.StrengthenItemSlot = e), __reflect(e.prototype, "app.StrengthenItemSlot"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.setData = function (e) { + e && + (e.desc1 && (this.txt_desc.textFlow = t.hETx.qYVI(e.desc1)), + e.desc2 ? (this.txt_desc2.textFlow = t.hETx.qYVI(e.desc2)) : ((this.txt_desc2.text = ""), (this.arrow.visible = !1)), + (this.arrow.x = this.txt_desc.x + this.txt_desc.textWidth + 5), + (this.txt_desc2.x = this.arrow.x + this.arrow.width + 5)); + }), + (i.prototype.destroy = function () { + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.StrengthenItemView = e), __reflect(e.prototype, "app.StrengthenItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.iconBg = "qh_icon_bg"), + (i.iconUrl = t.CrmPU.language_Omission_txt43), + (i.selectPos = -1), + (i.selectPosLv = 0), + (i.updatePos = -1), + (i.pointAry = []), + (i.itemSlotAry = []), + (i.skinName = "StrengthenSkin"), + i + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (!this.pointAry.length) { + for (var n = void 0, s = 0; 8 > s; s++) + (n = this.icon_group.getChildByName("icon_" + s)), + this.pointAry.push({ + x: n.x, + y: n.y, + }), + this.itemSlotAry.push(n); + (this.itemList.itemRenderer = t.StrengthenAttrItemView), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.itemList.dataProvider = this.itemArrayCollection), + (this.txt_consume.text = t.CrmPU.language_Omission_txt4), + (this.txt_get.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")); + } + this.vKruVZ(this.btn_strengthen, this.onClick), + this.vKruVZ(this.txt_get, this.onGetProps), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.updateData), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateConsume), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateConsume), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateConsume), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateConsume), + (this.ListCost.itemRenderer = t.FourImagesCostItem), + this.updateData(); + }), + (i.prototype.updateConsume = function () { + var e = t.VlaoF.EquipStrengthenConfig[this.selectPos][this.selectPosLv + 1]; + if (e) { + var i = e.cost[0], + n = new eui.ArrayCollection(); + (n.source = e.cost), (this.ListCost.dataProvider = n); + var s = t.ThgMu.ins().getItemCountById(i.id); + s >= i.count + ? (this.txt_consume2.textFlow = t.hETx.qYVI("|C:0x2eb52d&T:" + s + "|C:0xE0AE75&T:/" + i.count)) + : (this.txt_consume2.textFlow = t.hETx.qYVI("|C:0xe50000&T:" + s + "|C:0xE0AE75&T:/" + i.count)); + } + }), + (i.prototype.updateData = function () { + var e = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Equip]; + if (e) { + var i = void 0, + n = void 0, + s = e[0].lv; + (this.selectPosLv = s), (this.selectPos = 1); + for (var a = 7, r = 0; 8 > r; r++) + (i = this.itemSlotAry[r]), + (n = e[r]), + i.setData(t.CrmPU.language_Omission_txt43[r][0], t.CrmPU.language_Omission_txt43[r][1], n.lv), + n.lv < s && ((s = n.lv), (this.selectPosLv = n.lv), (this.selectPos = n.pos), (a = r - 1)); + if (this.updatePos > -1 && this.updatePos != this.selectPos) return (this.updatePos = this.selectPos), void this.playMC(); + (this.updatePos = this.selectPos), (a = 0 > a ? 7 : a); + for (var o = void 0, l = void 0, r = 0; 8 > r; r++) (o = this.pointAry[r]), (l = Math.abs((this.selectPos - 1 + r) % 8)), (i = this.itemSlotAry[l]), (i.x = o.x), (i.y = o.y); + var h = t.VlaoF.AttrLookupConfig[t.StrengthenType.Equip]; + if (h) { + for (var p = h.name, r = 0; 8 > r; r++) + if (+p[r].equipid == this.selectPos) { + (this.selectImg.source = p[r].equippc.equippcid), (this.selectName.source = p[r].equippc.equipname); + break; + } + n = e[a]; + var u = t.VlaoF.EquipStrengthenConfig[n.pos][n.lv]; + (this.txt_desc.text = t.CrmPU.language_Omission_txt43[this.selectPos - 1][1] + t.CrmPU.language_Common_154 + ":" + s + t.CrmPU.language_Common_1), + (this.txt_desc2.text = s + 1 + t.CrmPU.language_Common_1); + var c = t.VlaoF.EquipStrengthenConfig[this.selectPos][s + 1]; + (this.txt_max.visible = !c), (this.group2.visible = !this.txt_max.visible); + var g = {}, + d = {}, + m = [], + f = void 0, + v = null, + _ = []; + if (u) for (var r = 0; r < u.attrnew.length; r++) d[u.attrnew[r].type] = u.attrnew[r].value; + if (c) for (var r = 0; r < c.attrnew.length; r++) g[c.attrnew[r].type] = c.attrnew[r].value; + for (var r = 0; r < h.attrnew.length; r++) + u + ? ((v = null), + (f = h.attrnew[r].des + ":"), + (_ = h.attrnew[r].att), + _.length > 1 ? ((f += d[_[0]] ? d[_[0]] : 0), (f += "-"), (f += d[_[1]] ? d[_[1]] : 0)) : ((f += "+"), (f += d[_[0]] ? d[_[0]] : 0)), + c && ((v = h.attrnew[r].des + ":"), _.length > 1 ? ((v += g[_[0]] ? g[_[0]] : 0), (v += "-"), (v += g[_[1]] ? g[_[1]] : 0)) : ((v += "+"), (v += g[_[0]] ? g[_[0]] : 0)))) + : c && + ((f = h.attrnew[r].des + ":0"), + (v = h.attrnew[r].des + ":"), + (_ = h.attrnew[r].att), + _.length > 1 ? ((v += g[_[0]] ? g[_[0]] : 0), (v += "-"), (v += g[_[1]] ? g[_[1]] : 0)) : ((v += "+"), (v += g[_[0]] ? g[_[0]] : 0))), + m.push({ + desc1: f, + desc2: v, + }); + this.itemArrayCollection.replaceAll(m); + } + } + this.updateConsume(); + }), + (i.prototype.init = function () {}), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = (i.localToGlobal(), t.VlaoF.StdItems[this.selectedId]), + s = i.localToGlobal(); + if (n) { + var a = t.TipsType.TIPS_EQUIP; + (a = n.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } + } + }), + (i.prototype.onGetProps = function () { + var e, + i = t.JgMyc.ins().roleModel.getCurStrengthenData(t.StrengthenType.Equip); + (this.cfg1Dic = t.JgMyc.ins().roleModel.getStrengthenAttr(1, 1, 1)), (e = i ? t.VlaoF.EquipStrengthenConfig[i[1]][i[0]] : t.VlaoF.EquipStrengthenConfig[1][1]); + var n, + s = 0; + if (this.cfg1Dic) + for (var a in this.cfg1Dic) { + var r = this.cfg1Dic[a].cost[0]; + (n = r.id), 0 == r.type && (s = r.count - t.ZAJw.MPDpiB(ZnGy.qatEquipment, n)); + break; + } + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var o = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + { + itemId: n, + needNum: s, + }, + { + x: o.x, + y: o.y, + }, + { + height: this.height, + width: this.width, + } + ); + } + }), + (i.prototype.stopMC = function () { + this.upMc && (this.updateData(), this.upMc.destroy(), (this.upMc = null)); + }), + (i.prototype.playMC = function () { + this.upMc || ((this.upMc = t.ObjectPool.pop("app.MovieClip")), (this.upMc.blendMode = egret.BlendMode.ADD), (this.upMc.x = 180), (this.upMc.y = 31)), + this.icon_group.addChild(this.upMc), + this.upMc.playFile(ZkSzi.RES_DIR_EFF + "eff_qh", 1, this.stopMC.bind(this)); + }), + (i.prototype.getItemVisible = function () { + this.txt_get.visible = !1; + var e; + if (this.cfg1Dic) { + for (var i in this.cfg1Dic) { + e = this.cfg1Dic[i].cost[0].id; + break; + } + var n = t.VlaoF.GetItemRouteConfig[e], + s = t.GlobalData.sectionOpenDay, + a = n.itemstr; + (this.txt_get.textFlow = null), + n.openParam && s < n.openParam.openDay + ? (this.txt_get.visible = !1) + : n.Route + ? ((this.txt_get.textFlow = t.hETx.qYVI("" + a + "")), (this.txt_get.visible = !0)) + : (this.txt_get.visible = !1); + } + }), + (i.prototype.refreshRedDot = function () { + (this.redDot.param = null), this.showConsume(this.curCfg); + }), + (i.prototype.onRefreshStrengthen = function () { + t.AHhkf.ins().Uvxk(t.OSzbc.STRENGTHEN), this.setStrengthenData(); + }), + (i.prototype.setStrengthenData = function () { + this.selectedId = -1; + var e = t.JgMyc.ins().roleModel.getCurStrengthenData(t.StrengthenType.Equip), + i = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Equip]; + if (((this.temp = e), e)) { + this.iconUrl = [ + ["qh_icon_wuqi", "武器"], + ["qh_icon_yifu", "衣服"], + ["qh_icon_yaodai", "腰带"], + ["qh_icon_xiezi", "鞋子"], + ["qh_icon_jiezhi", "戒指"], + ["qh_icon_huwan", "护腕"], + ["qh_icon_xianglian", "项链"], + ["qh_icon_toukui", "头盔"], + ]; + var n = void 0, + s = void 0; + this.setAttr(e[0], e[1]); + var a = e[1], + r = [], + o = [], + l = void 0, + h = void 0, + p = void 0, + u = a - 1, + c = a - 1; + for (p = 0; p < i.length; p++) { + var g = i[p]; + this.strenghtenLvArr[g.pos - 1] = g.lv; + } + for (p = 0; p < this.iconUrl.length; p++) + 1 == a + ? ((l = this.iconUrl[p]), (h = this.strenghtenLvArr[p])) + : ((l = this.iconUrl[p + a - 1]), (h = this.strenghtenLvArr[p + a - 1]), l || ((l = this.iconUrl[a - 1 - u]), u--), null == h && ((h = this.strenghtenLvArr[a - 1 - c]), c--)), + o.push(h), + (r[p] = l); + var d = [], + m = void 0; + for (u = a - 1, p = 0; p < i.length; p++) 1 == a ? (m = i[p]) : ((m = i[p + a - 1]), m || ((m = i[a - 1 - u]), u--)), (d[p] = m); + var f = d.filter(function (t) { + return 125 == t.lv; + }); + for (p = 0; p < this.iconArr.length; p++) + 0 == p ? ((n = 8 == f.length ? 0 : 1), (s = t.VlaoF.EquipStrengthenConfig[e[1]][e[0]]), this.showConsume(s), (this.curCfg = s)) : (n = 0), + this.iconArr[p].setStengthenData(this.iconBg, r[p][0], r[p][1], o[p], n); + } else { + for (var p = 0, v = this.iconArr.length; v > p; p++) this.iconArr[p].setStengthenData(this.iconBg, this.iconUrl[p][0], this.iconUrl[p][1], this.strenghtenLvArr[p], 0); + var s = t.VlaoF.EquipStrengthenConfig[1][1]; + (this.curCfg = s), this.setAttr(1, 1, !0), this.showConsume(s); + } + }), + (i.prototype.showConsume = function (e) { + if ((void 0 === e && (e = null), (this.txt_get.visible = !1), !e)) return (this.img_money.visible = !1), void (this.txt_consume.visible = !1); + if (!this.cfg1Dic) + return ( + (this.img_money.visible = !1), + (this.txt_consume.visible = !1), + (this.btn_strengthen.visible = !1), + (this.txt_max.visible = !0), + (this.strengthen_item.visible = !1), + (this.strengthen_icon.visible = !1), + void t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_RED) + ); + this.getItemVisible(), (this.btn_strengthen.visible = !0), (this.img_money.visible = !0), (this.txt_consume.visible = !0); + var i = e.cost[0].type, + n = e.cost[0].id, + s = e.cost[0].count; + this.selectedId = n; + if (0 == i) { + var a = t.VlaoF.StdItems[n]; + this.img_money.source = a.icon + ""; + } else { + var r = t.VlaoF.NumericalIcon[n]; + this.img_money.source = r.icon + ""; + } + var o, + l = t.ThgMu.ins().getItemCountById(n); + l + ? l >= s + ? ((o = t.CrmPU.language_Omission_txt4 + ": |C:0x2eb52d&T:" + l + "|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))) + : ((o = t.CrmPU.language_Omission_txt4 + ": |C:0xe50000&T:" + l + "|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))) + : ((o = t.CrmPU.language_Omission_txt4 + ": |C:0xe50000&T:0|C:0xE0AE75&T:/" + s), (this.txt_consume.textFlow = t.hETx.qYVI(o))); + var h, + p = t.VlaoF.AttrLookupConfig[t.StrengthenType.Equip], + u = p.name; + for (var c in u) + if (u[c].equipid == e.pos) { + this.strengthen_icon.setData(u[c].equippc.equippcid), (this.strengthen_name.source = u[c].equippc.equipname), (h = e.lv); + var g = t.JgMyc.ins().roleModel.dicStrengthen[e.pos]; + t.VlaoF.EquipStrengthenConfig[e.pos][h] + ? this.strengthen_item.setData({ + desc1: g + ":" + (e.lv - 1) + t.CrmPU.language_Common_1, + desc2: h + t.CrmPU.language_Common_1, + }) + : this.strengthen_item.setData({ + desc1: g + ":" + (e.lv - 1) + t.CrmPU.language_Common_1, + desc2: null, + }); + break; + } + }), + (i.prototype.onClick = function (e) { + var i = t.VlaoF.EquipStrengthenConfig[this.selectPos][this.selectPosLv + 1]; + if (i) { + var n = i.cost[0]; + if (0 == n.type) { + var s = t.VlaoF.StdItems[n.id]; + this.img_money.source = s.icon + ""; + } else { + var a = t.VlaoF.NumericalIcon[n.id]; + this.img_money.source = a.icon + ""; + } + var r = t.ThgMu.ins().getItemCountById(n.id); + if (r >= n.count) { + if (i.limit) { + var o = t.NWRFmB.ins().getPayer; + if (o.propSet.mBjV() < i.limit[0].lv) return void t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_Tips88, i.limit[0].lv)); + } + t.StrengthenMgr.ins().sendStrengthenInfo(t.StrengthenType.Equip, this.selectPos); + } else this.onGetProps(); + } + }), + (i.prototype.setAttr = function (e, i, n) { + void 0 === n && (n = !1); + var s, + a, + r = t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.Equip], + o = 1, + l = !1; + if (r.length > 0) { + o = r[0].lv; + for (var h = 0; h < r.length; h++) o < r[h].lv && ((o = r[h].lv), (l = !0)); + } + n + ? ((s = t.JgMyc.ins().roleModel.getStrengthenAttr(e, 1, 1)), (this.cfg1Dic = t.JgMyc.ins().roleModel.getStrengthenAttr(e, 1, 1))) + : ((a = 1 != i || l ? 8 * o - (8 - i + 1) : 8 * o), (s = t.JgMyc.ins().roleModel.getStrengthenAttr(e, i - 1, a)), a++, (this.cfg1Dic = t.JgMyc.ins().roleModel.getStrengthenAttr(e, i, a))); + var p, + u, + c, + g, + d, + m = t.VlaoF.AttrLookupConfig[1], + f = [], + v = [], + _ = [], + y = [], + T = []; + for (u = 0; u < m.attr.length; u++) (p = {}), (p.type = m.attr[u]), (p.value = 0), v.push(p); + var M = 0; + if (s) { + for (var C in s) + for (u = 0; u < s[C].attr.length; u++) { + var b = {}; + (b.type = s[C].attr[u].type), (M = s[C].attr[u].value), n ? (b.value = 0) : (b.value = M), T.push(b); + } + for (c = 0, g = v.length; g > c; c++) { + for (u = 0; u < T.length; u++) { + var I = T[u].type; + I == v[c].type && (v[c].value += T[u].value); + } + (d = t.AttributeData.getItemAttStrByType(v[c], v, 1, !1, !0, "0xE0AE75", "0xcbc2b2")), "" != d && _.push(d); + } + } + var S = t.CrmPU.attrMinMax[5]; + for (u = 0, g = _.length; g > u; u++) + if (_[u].indexOf(S) > -1) { + var E = _.splice(u, 1); + _.unshift(E[0]); + break; + } + for (u = 0; u < v.length; u++) v[u].value = 0; + if (((T.length = 0), this.cfg1Dic)) { + for (var C in this.cfg1Dic) + for (u = 0; u < this.cfg1Dic[C].attr.length; u++) { + var b = {}; + (b.type = this.cfg1Dic[C].attr[u].type), (M = this.cfg1Dic[C].attr[u].value), (b.value = M), T.push(b); + } + for (c = 0, g = v.length; g > c; c++) { + for (u = 0; u < T.length; u++) { + var I = T[u].type; + I == v[c].type && (v[c].value += T[u].value); + } + (d = t.AttributeData.getItemAttStrByType(v[c], v, 1, !1, !0, "0xE0AE75", "0x28ee01")), "" != d && y.push(d); + } + } + for (u = 0, g = y.length; g > u; u++) + if (y[u].indexOf(S) > -1) { + var E = y.splice(u, 1); + y.unshift(E[0]); + break; + } + for (var w = 0, A = _.length; A > w; w++) + y.length < w + ? f.push({ + desc1: _[w], + desc2: null, + }) + : f.push({ + desc1: _[w], + desc2: y[w], + }); + this.setData(f); + }), + (i.prototype.setData = function (t) { + this.creatItem(t); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.stopMC(), this.fEHj(this.btn_strengthen, this.onClick), this.fEHj(this.txt_get, this.onGetProps); + }), + i + ); + })(t.gIRYTi); + (t.StrengthenView = e), __reflect(e.prototype, "app.StrengthenView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TitleAttribItemViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txtAttrib.textFlow = t.hETx.qYVI(this.data)); + }), + i + ); + })(eui.ItemRenderer); + (t.TitleAttribItemView = e), __reflect(e.prototype, "app.TitleAttribItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._type = t), (i.skinName = "TitleItemViewSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.list.itemRenderer = t.TitleAttribItemView), 0 == this._type && (this.vKruVZ(this.selectImg, this.onClick), this.addChangeEvent(this.cbSeletTitle, this.onClick)); + }), + (i.prototype.setData = function (e) { + this.titleData = e; + var i = e.config; + (this.list.dataProvider = new eui.ArrayCollection(e.titleAttrib)), + (this.lbDesc.text = i.titleDesc), + i.effect + ? ((this.iconTitle.visible = !1), + this.titleMc || + ((this.titleMc = t.ObjectPool.pop("app.MovieClip")), + (this.titleMc.touchEnabled = !1), + (this.titleMc.blendMode = egret.BlendMode.ADD), + (this.titleMc.x = 0), + (this.titleMc.y = 0), + this.group_mc.addChild(this.titleMc)), + this.currIcon != i.icon && (this.titleMc.playFileEff(ZkSzi.RES_DIR_TITLE + i.icon, -1, null, !1), (this.currIcon = i.icon)), + (this.group_mc.visible = !0)) + : ((this.iconTitle.source = i.icon), (this.iconTitle.visible = !0), this.titleMc && ((this.titleMc.visible = !1), this.titleMc.stop()), (this.group_mc.visible = !1)), + 0 == i.titleTime + ? (this.lbValidity.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_108 + t.CrmPU.language_Common_109)) + : (this.lbValidity.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_108 + t.DateUtils.getFormatBySecond(Math.floor(e.timer), t.DateUtils.TIME_FORMAT_5))); + }), + (i.prototype.onShowSelect = function (t) { + this.cbSeletTitle.visible = t; + }), + (i.prototype.setShorten = function (t) { + t ? (this.height = 300) : (this.height = 80), (this.groupDetailed.visible = t), (this.bg.visible = t); + }), + (i.prototype.setReveal = function (t) { + (this.cbSeletTitle.selected = t), (this.iconShow.visible = t); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.selectImg: + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE_SHORTEN, this.titleId); + break; + case this.cbSeletTitle: + var i = this.cbSeletTitle.selected; + (this.iconShow.visible = i), this.setShorten(i), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE_REVEAL, this.titleId, i); + } + }), + Object.defineProperty(i.prototype, "titleId", { + get: function () { + return this.titleData ? this.titleData.titleId : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () { + this.fEHj(this.selectImg, this.onClick), this.fEHj(this.cbSeletTitle, this.onClick), this.titleMc && (this.titleMc.destroy(), (this.titleMc = null)), (this.titleData = null); + }), + i + ); + })(t.BaseView); + (t.TitleItemView = e), __reflect(e.prototype, "app.TitleItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i._type = t), (i.skinName = "TitleItemViewSkin2"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.list.itemRenderer = t.TitleAttribItemView), 0 == this._type && (this.vKruVZ(this.selectImg, this.onClick), this.addChangeEvent(this.cbSeletTitle, this.onClick)); + }), + (i.prototype.setData = function (e) { + this.titleData = e; + var i = e.config; + (this.list.dataProvider = new eui.ArrayCollection(e.titleAttrib)), + (this.lbDesc.text = i.titleDesc), + i.effect + ? ((this.iconTitle.visible = !1), + this.titleMc || + ((this.titleMc = t.ObjectPool.pop("app.MovieClip")), + (this.titleMc.touchEnabled = !1), + (this.titleMc.blendMode = egret.BlendMode.ADD), + (this.titleMc.x = 0), + (this.titleMc.y = 0), + this.group_mc.addChild(this.titleMc)), + this.currIcon != i.icon && (this.titleMc.playFileEff(ZkSzi.RES_DIR_TITLE + i.icon, -1, null, !1), (this.currIcon = i.icon)), + (this.group_mc.visible = !0)) + : ((this.iconTitle.source = i.icon), (this.iconTitle.visible = !0), this.titleMc && ((this.titleMc.visible = !1), this.titleMc.stop()), (this.group_mc.visible = !1)), + 0 == i.titleTime + ? (this.lbValidity.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_108 + t.CrmPU.language_Common_109)) + : (this.lbValidity.textFlow = t.hETx.qYVI(t.CrmPU.language_Common_108 + t.DateUtils.getFormatBySecond(Math.floor(e.timer), t.DateUtils.TIME_FORMAT_5))); + }), + (i.prototype.onShowSelect = function (t) { + this.cbSeletTitle.visible = t; + }), + (i.prototype.setShorten = function (t) { + t ? (this.height = 300) : (this.height = 80), (this.groupDetailed.visible = t), (this.bg.visible = t); + }), + (i.prototype.setReveal = function (t) { + (this.cbSeletTitle.selected = t), (this.iconShow.visible = t); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.selectImg: + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE2_SHORTEN, this.titleId); + break; + case this.cbSeletTitle: + var i = this.cbSeletTitle.selected; + (this.iconShow.visible = i), this.setShorten(i), t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE2_REVEAL, this.titleId, i); + } + }), + Object.defineProperty(i.prototype, "titleId", { + get: function () { + return this.titleData ? this.titleData.titleId : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.destroy = function () { + this.fEHj(this.selectImg, this.onClick), this.fEHj(this.cbSeletTitle, this.onClick), this.titleMc && (this.titleMc.destroy(), (this.titleMc = null)), (this.titleData = null); + }), + i + ); + })(t.BaseView); + (t.TitleItemView2 = e), __reflect(e.prototype, "app.TitleItemView2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 63), (i.titleStr = t.CrmPU.language_System67), (i.currShortenItem = -1), (i.currRevealItem = -1), (i.skinName = "TitleViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.currShortenItem = this.currRevealItem = t.NWRFmB.ins().getPayer.propSet.getTITLE()), + t.MouseScroller.bind(this.scroller), + (this.lbNoTitle.visible = !1), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE_SHORTEN, this.onShortenlItem, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE_REVEAL, this.onRevealItem, this), + this.HFTK(t.TitleMgr.ins().post_54_1, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_2, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_3, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_4, this.updateData), + this.HFTK(t.Nzfh.ins().post_updateTitle, this.updateNewData), + t.TitleMgr.ins().send54_1(); + }), + (i.prototype.showView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE2_OPEN); + }), + (i.prototype.hideView = function () { + t.ckpDj.ins().sendEvent(t.CompEvent.ROLE_TITLE2_CLOSE); + }), + (i.prototype.onShortenlItem = function (t) { + t == this.currShortenItem && (t = -1), (this.currShortenItem = t); + for (var e = 0; e < this.listTitle.numChildren; e++) { + var i = this.listTitle.getChildAt(e); + i.setShorten(i.titleId == t); + } + }), + (i.prototype.onRevealItem = function (e, i) { + if (i) { + for (var n = 0; n < this.listTitle.numChildren; n++) { + var s = this.listTitle.getChildAt(n); + s.setShorten(s.titleId == e), s.setReveal(s.titleId == e); + } + t.TitleMgr.ins().send54_2(e); + } else t.TitleMgr.ins().send54_2(0); + }), + (i.prototype.updateData = function () { + this.onClearItemList(); + for (var e = t.TitleMgr.ins().getTitleArr(), i = 0; i < e.length; i++) { + var n = new t.TitleItemView(0); + n.setData(e[i]), n.onShowSelect(!0), n.setShorten(e[i].titleId == this.currShortenItem), n.setReveal(e[i].titleId == this.currRevealItem), this.listTitle.addChild(n); + } + this.lbNoTitle.visible = e.length <= 0 ? !0 : !1; + }), + (i.prototype.updateNewData = function () { + var e = t.NWRFmB.ins().getPayer.propSet.getTITLE(); + if (e != this.currRevealItem) { + this.currShortenItem = this.currRevealItem = e; + for (var i = 0; i < this.listTitle.numChildren; i++) { + var n = this.listTitle.getChildAt(i); + n.setReveal(n.titleId == e); + } + } + }), + (i.prototype.onClearItemList = function () { + for (; this.listTitle.numChildren > 0; ) { + var t = this.listTitle.getChildAt(0); + this.listTitle.removeChild(t), t.destroy(), (t = null); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.onClearItemList(); + }), + i + ); + })(t.BaseView); + (t.TitleView = e), __reflect(e.prototype, "app.TitleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.currShortenItem = -1), (t.currRevealItem = -1), (t.skinName = "TitleViewSkin2"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.currShortenItem = this.currRevealItem = t.NWRFmB.ins().getPayer.propSet.getCurCustomTitle()), + t.MouseScroller.bind(this.scroller), + (this.lbNoTitle.visible = !1), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE2_SHORTEN, this.onShortenlItem, this), + t.ckpDj.ins().addEvent(t.CompEvent.ROLE_TITLE2_REVEAL, this.onRevealItem, this), + this.HFTK(t.TitleMgr.ins().post_54_5, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_6, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_7, this.updateData), + this.HFTK(t.TitleMgr.ins().post_54_8, this.updateData), + this.HFTK(t.Nzfh.ins().post_updateTitle2, this.updateNewData), + t.TitleMgr.ins().send54_3(); + }), + (i.prototype.onShortenlItem = function (t) { + t == this.currShortenItem && (t = -1), (this.currShortenItem = t); + for (var e = 0; e < this.listTitle.numChildren; e++) { + var i = this.listTitle.getChildAt(e); + i.setShorten(i.titleId == t); + } + }), + (i.prototype.onRevealItem = function (e, i) { + if (i) { + for (var n = 0; n < this.listTitle.numChildren; n++) { + var s = this.listTitle.getChildAt(n); + s.setShorten(s.titleId == e), s.setReveal(s.titleId == e); + } + t.TitleMgr.ins().send54_4(e); + } else t.TitleMgr.ins().send54_4(0); + }), + (i.prototype.updateData = function () { + this.onClearItemList(); + for (var e = t.TitleMgr.ins().getTitleArr2(), i = 0; i < e.length; i++) { + var n = new t.TitleItemView2(0); + n.setData(e[i]), n.onShowSelect(!0), n.setShorten(e[i].titleId == this.currShortenItem), n.setReveal(e[i].titleId == this.currRevealItem), this.listTitle.addChild(n); + } + this.lbNoTitle.visible = e.length <= 0 ? !0 : !1; + }), + (i.prototype.updateNewData = function () { + var e = t.NWRFmB.ins().getPayer.propSet.getCurCustomTitle(); + if (e != this.currRevealItem) { + this.currShortenItem = this.currRevealItem = e; + for (var i = 0; i < this.listTitle.numChildren; i++) { + var n = this.listTitle.getChildAt(i); + n.setReveal(n.titleId == e); + } + } + }), + (i.prototype.onClearItemList = function () { + for (; this.listTitle.numChildren > 0; ) { + var t = this.listTitle.getChildAt(0); + this.listTitle.removeChild(t), t.destroy(), (t = null); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this), this.onClearItemList(); + }), + i + ); + })(t.BaseView); + (t.TitleView2 = e), __reflect(e.prototype, "app.TitleView2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.levelsMaxHash = {}), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.getLevelByPos = function (t) { + var e = 0, + i = this.getDataByPos(t); + return i && (e = i.lv), e; + }), + (i.prototype.getOtherLevelByPos = function (t) { + var e = 0, + i = this.getOtherDataByPos(t); + return i && (e = i.lv), e; + }), + (i.prototype.getDataByPos = function (e) { + var i = t.StrengthenMgr.ins().strengthenDic && t.StrengthenMgr.ins().strengthenDic[t.StrengthenType.WordFormu]; + if (i) for (var n = 0; n < i.length; n++) if (i[n].pos == e) return i[n]; + return null; + }), + (i.prototype.getOtherDataByPos = function (e) { + var i = t.caJqU.ins().otherPlayerEquips; + if (i) { + var n = i.strengthenDic && i.strengthenDic[t.StrengthenType.WordFormu]; + if (n) for (var s = 0; s < n.length; s++) if (n[s].pos == e) return n[s]; + } + return null; + }), + (i.prototype.getLevelMaxByPos = function (e) { + if (!this.levelsMaxHash[e]) { + var i = 0, + n = t.VlaoF.WordFormulaConfig; + if (n && n[e]) for (var s in n[e]) n[e][s].lv > i && (i = n[e][s].lv); + this.levelsMaxHash[e] = i; + } + return this.levelsMaxHash[e]; + }), + (i.prototype.getConfigByPosLevel = function (e, i) { + var n = t.VlaoF.WordFormulaConfig; + return n && n[e] && n[e][i]; + }), + (i.prototype.getAttrib = function (e, i, n) { + var s = [], + a = this.getConfigByPosLevel(e, i), + r = a && a.attr; + if (null == r) return []; + for (var o = r.length, l = 0; o > l; l++) { + var h = t.AttributeData.getItemAttStrByType(r[l], r, 1, n); + "" != h && s.push(h); + } + return s; + }), + (i.prototype.getViewRed = function () { + for (var e, n = 1; 5 > n; n++) { + var s = i.ins().getLevelByPos(n), + a = i.ins().getLevelMaxByPos(n), + r = 0; + if ((s == a ? (r = 0) : ((e = i.ins().getConfigByPosLevel(n, s + 1)), e && (r = t.ZAJw.isRedDot(e.cost))), r)) return !0; + } + return !1; + }), + i + ); + })(t.BaseClass); + (t.WordFormulaManager = e), __reflect(e.prototype, "app.WordFormulaManager"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesAttrItemCurSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_cur.textFlow = t.hETx.qYVI(this.data)); + }), + i + ); + })(eui.ItemRenderer); + (t.WordFormulaAttrItemCurView = e), __reflect(e.prototype, "app.WordFormulaAttrItemCurView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesAttrItemNextSkin"), (t.touchEnabled = !1), (t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), this.data && (this.txt_next.textFlow = t.hETx.qYVI(this.data)); + }), + i + ); + })(eui.ItemRenderer); + (t.WordFormulaAttrItemNextView = e), __reflect(e.prototype, "app.WordFormulaAttrItemNextView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "FourImagesCostItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + KdbLz.qOtrbE.iFbP + ? this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + (i.prototype.onOver = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = (i.localToGlobal(), i.localToGlobal()); + if (0 == this.data.type) { + var s = t.VlaoF.StdItems[this.data.id]; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } else { + var r = t.VlaoF.NumericalIcon[this.data.id]; + r.description && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_MONEY, r.description, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + } + }), + (i.prototype.dataChanged = function () { + this.visible = null != this.data; + var e = this.data.type, + i = t.ZAJw.MPDpiB(e, this.data.id), + n = i >= this.data.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED, + s = "|C:" + n + "&T:" + t.CommonUtils.overLengthChange(i) + "|C:0xe0ae75&T:/" + t.CommonUtils.overLengthChange(this.data.count); + (this.txtCost.textFlow = t.hETx.qYVI(s)), (this.iconGoods.source = t.ZAJw.sztgR(this.data.type, this.data.id)[1] + ""); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + KdbLz.qOtrbE.iFbP + ? this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onOver, this) + : (this.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.onOver, this), this.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.onOver, this)); + }), + i + ); + })(eui.ItemRenderer); + (t.WordFormulaCostItem = e), __reflect(e.prototype, "app.WordFormulaCostItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () {}), + (i.prototype.setData = function (e) { + void 0 === e && (e = 0); + var i = 0; + e == t.RoleViewEnum.myRolePanel + ? (i = t.WordFormulaManager.ins().getLevelByPos(this.pos)) + : e == t.RoleViewEnum.otherPlayerPanel && (i = t.WordFormulaManager.ins().getOtherLevelByPos(this.pos)), + (this.level = i); + var n = t.WordFormulaManager.ins().getConfigByPosLevel(this.pos, i); + n && + ((this.lbTitle.text = t.CrmPU.language_WordFormula_names[this.pos - 1] + n.endname), + (this.lbTitle.textColor = t.ClwSVR.GOODS_COLOR[n.colorid - 1]), + (this.icon.source = "zj_" + n.colorid + "_" + this.pos)); + }), + (i.prototype.setSeleted = function (t) { + this.seletectd.visible = t; + }), + i + ); + })(t.BaseView); + (t.WordFormulaItemView = e), __reflect(e.prototype, "app.WordFormulaItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "WordFormulaLevelUpWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.costList.itemRenderer = t.WordFormulaCostItem), + (this.gCurList.itemRenderer = t.WordFormulaAttrItemCurView), + (this.gNextList.itemRenderer = t.WordFormulaAttrItemNextView), + (this.costArr = new eui.ArrayCollection()); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System108), + (this.redPoint1.visible = this.redPoint2.visible = this.redPoint3.visible = this.redPoint4.visible = !1), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.updateData), + this.HFTK(t.StrengthenMgr.ins().postWordFormuResult, this.postFourResult), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateRedPoint), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateRedPoint), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + t.ckpDj.ins().addEvent(t.CompEvent.GET_PROPS_STRENGTHEN_WORD_FORMULA, this.onGetProps, this), + (this.tabList.dataProvider = new eui.ArrayCollection([ + { + name: t.CrmPU.language_WordFormula_names[0], + }, + { + name: t.CrmPU.language_WordFormula_names[1], + }, + { + name: t.CrmPU.language_WordFormula_names[2], + }, + { + name: t.CrmPU.language_WordFormula_names[3], + }, + ])), + (this.tabList.selectedIndex = 0), + this.vKruVZ(this.btnUp, this.levelUp), + this.updateList(), + this.updateRedPoint(); + }), + (i.prototype.postFourResult = function (e) { + e ? 4 == e && t.Nzfh.ins().payResultMC(0, this.localToGlobal(this.width / 2 + 60, this.height / 2)) : t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2 + 60, this.height / 2)); + }), + (i.prototype.updateRedPoint = function () { + for (var e, i = 1; 5 > i; i++) { + var n = t.WordFormulaManager.ins().getLevelByPos(i), + s = t.WordFormulaManager.ins().getLevelMaxByPos(i); + if (((this["redPoint" + i].visible = !0), n == s)) this["redPoint" + i].visible = !1; + else if (((e = t.WordFormulaManager.ins().getConfigByPosLevel(i, n + 1)), e && e.cost)) + for (var a in e.cost) { + var r = e.cost[a], + o = t.ZAJw.MPDpiB(r.type, r.id); + if (o < r.count) { + this["redPoint" + i].visible = !1; + break; + } + } + else this["redPoint" + i].visible = !1; + } + this.cfgCur && this.costArr.replaceAll(this.cfgCur.cost); + }), + (i.prototype.updateData = function () { + this.updateList(); + }), + (i.prototype.levelUp = function () { + if (this.cfgCur) { + var e = t.edHC.ins().getItemIDByCost(this.cfgCur.cost); + if (e.itemId > 0) return this.onGetProps(null, e), !1; + } + t.StrengthenMgr.ins().sendStrengthenInfo(t.StrengthenType.WordFormu, this.tabList.selectedIndex + 1); + }), + (i.prototype.onGetProps = function (e, i) { + void 0 === i && (i = null), + this.cfgCur && + (i || (i = t.edHC.ins().getItemIDByCost(this.cfgCur.cost)), + 0 == i.itemId && (i.itemId = i.itemId2), + i.itemId > 0 && + (t.mAYZL.ins().ZbzdY(t.GaimItemWin) || + t.mAYZL.ins().open( + t.GaimItemWin, + i, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ))); + }), + (i.prototype.updateList = function () { + var e = this.tabList.selectedIndex + 1, + i = t.WordFormulaManager.ins().getLevelByPos(e), + n = t.WordFormulaManager.ins().getConfigByPosLevel(e, i); + this.Mc || ((this.Mc = t.ObjectPool.pop("app.MovieClip")), (this.Mc.scaleX = this.Mc.scaleY = 1), (this.Mc.touchEnabled = !1), this.effGrp.addChild(this.Mc)), + this.Mc.playFileEff(ZkSzi.RES_DIR_EFF + ("effzijue_" + n.colorid + "_" + e), -1), + (this.curOrder.text = t.hETx.getCStr(i) + t.CrmPU.language_Common_1), + (this.curLV.text = t.CrmPU.language_Omission_txt59 + i), + (this.nextLv.text = t.CrmPU.language_Omission_txt60 + (i + 1)); + var s = t.WordFormulaManager.ins().getAttrib(e, i, !1), + a = t.WordFormulaManager.ins().getAttrib(e, i + 1, !1); + (this.gCurList.dataProvider = new eui.ArrayCollection(s)), (this.gNextList.dataProvider = new eui.ArrayCollection(a)), (this.nextLv.visible = a.length > 0), this.setAttribData(e); + }), + (i.prototype.setAttribData = function (e) { + this.cfgCur = null; + var i = t.WordFormulaManager.ins().getLevelByPos(e); + if (i > 0) { + var n = t.WordFormulaManager.ins().getLevelMaxByPos(e); + if (i == n) { + (this.costList.visible = !1), (this.txt_get.visible = !1), (this.btnUp.visible = !1), (this.lbMax0.visible = !0), (this.lbMax.visible = !0); + var s = t.WordFormulaManager.ins().getConfigByPosLevel(e, i); + return (this.lbMax.text = t.CrmPU.language_WordFormula_names[e - 1] + t.CrmPU.language_WordFormula_MaxText), void (this.lbMax.textColor = t.ClwSVR.GOODS_COLOR[s.colorid - 1]); + } + } + (this.costList.visible = !0), (this.btnUp.visible = !0), (this.lbMax.visible = !1), (this.lbMax0.visible = !1); + var a = t.WordFormulaManager.ins().getConfigByPosLevel(e, i + 1); + (this.cfgCur = a), (this.costArr.source = a.cost), t.GetPropsView.getPropsTxt(this.txt_get, a.cost[0].id), (this.costList.dataProvider = this.costArr); + }), + (i.prototype.onChange = function (t) { + (this.tabList.selectedIndex = t.itemIndex), this.updateList(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.fEHj(this.btnUp, this.levelUp), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.Mc && (this.Mc.destroy(), (this.Mc = null)); + }), + i + ); + })(t.gIRYTi); + (t.WordFormulaLevelUpWin = e), __reflect(e.prototype, "app.WordFormulaLevelUpWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "WordFormulaShowInfoViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.updateStr = function (i, n) { + (this.gCurList.itemRenderer = t.WordFormulaAttrItemCurView), + (this.gNextList.itemRenderer = t.WordFormulaAttrItemNextView), + (this.txtLimit.visible = !1), + this.setData(i.pos, i.type), + e.prototype.onResizeUI.call(this, i, n); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.mc && (this.mc.destroy(), (this.mc = null)); + }), + (i.prototype.setData = function (e, i) { + if ((void 0 === i && (i = 0), e)) { + this.pos = e; + var n = t.WordFormulaManager.ins().getConfigByPosLevel(e, i); + if (!n) return; + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), (this.mc.scaleX = this.mc.scaleY = 0.5), (this.mc.touchEnabled = !1), this.effGrp.addChild(this.mc)), + this.mc.playFileEff(ZkSzi.RES_DIR_EFF + ("effzijue_" + n.colorid + "_" + e), -1), + (this.curOrder.text = t.hETx.getCStr(i) + t.CrmPU.language_Common_1), + (this.txtAttrib.textFlow = t.hETx.qYVI(t.CrmPU["language_WordFormula_Tips" + this.pos])); + var s = new eui.ArrayCollection(), + a = t.WordFormulaManager.ins().getAttrib(this.pos, i, !1); + if (((s.source = a), (this.gCurList.dataProvider = s), i > 0)) { + (this.lbTitle.text = t.CrmPU.language_WordFormula_names[this.pos - 1] + n.endname), (this.lbTitle.textColor = t.ClwSVR.GOODS_COLOR[n.colorid - 1]); + var r = t.WordFormulaManager.ins().getConfigByPosLevel(this.pos, i + 1); + if (r && r.limit) { + if (((this.txtLimit.visible = !1), 4 == r.limit.length)) { + var o = t.WordFormulaManager.ins().getConfigByPosLevel(this.pos, r.limit[0].lv); + this.txtLimit.text = t.zlkp.replace(t.CrmPU.language_WordFormula_Text0, o.endname); + } + } else this.txtLimit.visible = !1; + } else (this.lbTitle.text = t.CrmPU.language_WordFormula_names[this.pos - 1]), (this.lbTitle.textColor = t.ClwSVR.GOODS_COLOR[n.colorid - 1]); + } + }), + i + ); + })(t.TipsBase); + (t.WordFormulaShowInfoView = e), __reflect(e.prototype, "app.WordFormulaShowInfoView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.ruleId = 110), (i.titleStr = t.CrmPU.language_System108), (i.skinName = "WordFormulaViewSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + for (var t = 1; 5 > t; t++) { + var e = this["itemView" + t]; + (e.pos = t), this.VoZqXH(e, this.mouseMove), this.EeFPm(e, this.mouseMove); + } + this.updateData(); + }), + (i.prototype.initMyRoleView = function () { + this.HFTK(t.StrengthenMgr.ins().post_StrengthenData, this.updateData), + this.HFTK(t.StrengthenMgr.ins().post_StrengthenUpdate, this.updateData), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateRedPoint), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateRedPoint), + this.vKruVZ(this.goBtn, this.onClick), + t.StrengthenMgr.ins().sendStrengthenInit(t.StrengthenType.WordFormu), + this.updateRedPoint(); + }), + (i.prototype.initOtherPlayerView = function () { + this.goBtn.visible = !1; + }), + (i.prototype.updateRedPoint = function () { + this.redPoint.visible = t.WordFormulaManager.ins().getViewRed(); + }), + (i.prototype.updateData = function () { + for (var t = 1; 5 > t; t++) { + var e = this["itemView" + t]; + e && e.setData(this._roleType); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.localToGlobal(); + t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_WordFormula, + { + pos: i.pos, + type: i.level, + }, + { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + } + ); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + t.mAYZL.ins().open(t.WordFormulaLevelUpWin); + } + }), + (i.prototype.$onClose = function () { + e.prototype.$onClose.call(this); + for (var t = 1; 5 > t; t++) { + var i = this["itemView" + t]; + i && (this.fEHj(i, this.mouseMove), this.fEHj(i, this.mouseMove)); + } + this.fEHj(this.goBtn, this.onClick); + }), + i + ); + })(t.RoleBasePanel); + (t.WordFormulaView = e), __reflect(e.prototype, "app.WordFormulaView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.$onAddToStage = function (t, i) { + e.prototype.$onAddToStage.call(this, t, i), this.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + }), + Object.defineProperty(i.prototype, "ruleId", { + get: function () { + return this._ruleId; + }, + set: function (t) { + this._ruleId = +t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "ruleDesc", { + get: function () { + return this._ruleDesc; + }, + set: function (t) { + this._ruleDesc = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.onClick = function () { + this.ruleId + ? t.mAYZL.ins().open(t.RuleView, { + id: this.ruleId, + }) + : this.ruleDesc && + t.mAYZL.ins().open(t.RuleView, { + desc: this.ruleDesc, + }); + }), + i + ); + })(eui.Button); + (t.RuleTipsButton = e), __reflect(e.prototype, "app.RuleTipsButton"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.htmlParser = null), (t.skinName = "RuleViewSkin"), (t.name = "RuleView"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + this.dragDropUI.setCurrentState("default7"), + this.dragDropUI.setParent(this), + (this.htmlParser = new egret.HtmlTextParser()), + (this.title.text = t.CrmPU.language_Rule_Title); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e && e.length) { + var n = ""; + if (e[0].id) { + var s = t.VlaoF.RuleConf[e[0].id]; + s && (n = s.ruleContent + ""); + } else e[0].desc && (n = e[0].desc + ""); + n && (this.contentLabel.textFlow = t.hETx.qYVI(n)); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), (this.title = null), (this.contentLabel = null); + }), + i + ); + })(t.gIRYTi); + (t.RuleView = e), __reflect(e.prototype, "app.RuleView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.itemList.itemRenderer = t.ItemBase), + (this.scroller.horizontalScrollBar.autoVisibility = !1), + (this.scroller.horizontalScrollBar.visible = !1), + this.vKruVZ(this.btnSweep, this.onClick), + this.vKruVZ(this.btnChallenge, this.onClick); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + if (e) { + var i = t.TQkyOx.ins().getActivityInfo(e.Id); + i && i.info + ? ((this.itemBg.source = e.bg ? e.bg + "_png" : "act_clfbbg_0_png"), + (this.itemTxt.source = e.titleIcon ? e.titleIcon : ""), + (this.btnSweep.visible = this.btnChallenge.visible = i.info.times >= 0), + (this.timeTxt.text = t.zlkp.replace(t.CrmPU.language_Common_64, i.info.times)), + (this.itemList.dataProvider = new eui.ArrayCollection(e.rewards))) + : ((this.itemBg.source = "act_clfbbg_0_png"), + (this.itemTxt.source = ""), + (this.btnSweep.visible = this.btnChallenge.visible = !1), + (this.timeTxt.text = ""), + (this.itemList.dataProvider = new eui.ArrayCollection(null))); + } + } + this.setRedDot(); + }), + (i.prototype.setRedDot = function () { + (this.redDot.visible = !1), (this.redDot2.visible = !1); + var e = this.data, + i = t.TQkyOx.ins().getActivityInfo(e.Id); + e.buttoncolor && i && i.redDot && ((this.redDot.visible = !0), (this.redDot2.visible = !0), this.redDot.setRedImg(e.buttoncolor), this.redDot2.setRedImg(e.buttoncolor)); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.btnSweep, this.onClick), this.fEHj(this.btnChallenge, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.target) { + case this.btnSweep: + t.TQkyOx.ins().send_25_1(this.data.Id, t.Operate.cMaterialMopUp); + break; + case this.btnChallenge: + var i = t.NWRFmB.ins().getPayer; + i && + i.propSet && + (i.propSet.getState() & t.ActorState.DEATH + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips102) + : t.GameMap.fubenID > 0 + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips106) + : t.TQkyOx.ins().send_25_1(this.data.Id, t.Operate.cEnterFuBen)); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityDefendTaskItemView = e), __reflect(e.prototype, "app.ActivityDefendTaskItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.actid = 43), + (t.curCDTime = 0), + (t.skinName = "SecretLandTreasureViewSkin"), + (t.name = "SecretLandTreasureView"), + (t.touchEnabled = !1), + KdbLz.qOtrbE.iFbP ? ((t.left = 0), (t.top = 60)) : ((t.right = 0), (t.verticalCenter = -60)), + t + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.TQkyOx.ins().post_25_15, this.updateView), this.HFTK(t.TQkyOx.ins().post_jingjiTime, this.updateJingJiTime), this.updateView(), this.updateJingJiTime(); + }), + (i.prototype.updateView = function () { + var e = t.TQkyOx.ins().getActivityConfigById(this.actid); + if (e) { + var i = { + type: e.AwardA[0].type, + id: e.AwardA[0].id, + }, + n = { + type: e.AwardB[0].type, + id: e.AwardB[0].id, + }, + s = { + type: e.AwardC[0].type, + id: e.AwardC[0].id, + }, + a = t.ZAJw.sztgR(i.type, i.id), + r = t.ZAJw.sztgR(n.type, n.id), + o = t.ZAJw.sztgR(s.type, s.id); + (this.itemDesc1.textFlow = t.hETx.qYVI(a[0] + ":|C:0x28ee01&T:" + t.TQkyOx.ins().secretBoxScore + "|")), + (this.itemDesc2.textFlow = t.hETx.qYVI(r[0] + ":|C:0x28ee01&T:" + t.TQkyOx.ins().wordsBoxScore + "|")), + (this.itemDesc3.textFlow = t.hETx.qYVI(o[0] + ":|C:0x28ee01&T:" + t.TQkyOx.ins().materialsBoxScore + "|")), + (this.itemData1.data = i), + (this.itemData2.data = n), + (this.itemData3.data = s); + } + }), + (i.prototype.updateJingJiTime = function () { + var e = (t.TQkyOx.ins().jingjiTime - egret.getTimer()) >> 0; + t.GameMap.fubenID > 0 && + e > 0 && + ((this.timeGrp.visible = !0), (this.curCDTime = t.TQkyOx.ins().jingjiTime), this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)); + }), + (i.prototype.updateTime = function () { + var e = this.curCDTime - egret.getTimer(); + (this.actTime.text = t.CrmPU.language_Common_65 + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), t.DateUtils.TIME_FORMAT_10)), + 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.actTime.text = ""), (this.timeGrp.visible = !1)); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), this.Naoc(), t.KHNO.ins().remove(this.updateTime, this); + }), + i + ); + })(t.gIRYTi); + (t.SecretLandTreasureView = e), __reflect(e.prototype, "app.SecretLandTreasureView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.SetUp_Type_ShowHuman = 1), + (t.SetUp_Type_ShowMonster = 2), + (t.SetUp_Type_Bit3 = 3), + (t.SetUp_Type_Network = 4), + (t.SetUp_Type_Recommend = 5), + (t.SetUp_Type_Chase = 6), + (t.SetUp_Type_autoTask = 7), + (t.SetUp_Type_Skill1 = 8), + (t.SetUp_Type_Skill2 = 9), + (t.SetUp_Type_Skill3 = 10), + (t.SetUp_Type_autoRecycle = 11), + (t.SetUp_Type_counterAtk = 12), + (t.SetUp_Type_shieldPet = 13), + (t.SetUp_Type_Sound = 1), + (t.SetUp_Type_BgSound = 2), + (t.SetUp_Type_HighQuality = 3), + (t.SetUp_Type_LowQuality = 4), + (t.SetUp_Type_SwimShow = 5), + (t.SetUp_Type_scale1 = 6), + (t.SetUp_Type_scale2 = 7), + (t.SetUp_Type_scale3 = 8), + (t.SetUp_Type_closeEff = 9), + (t.SetUp_Type_closeMap = 12), + (t.SetUp_Type_Rocker = 11), + (t.SetUp_Type_Rocker2 = 11), + (t.SetUp_Drugs_Red = 1), + (t.SetUp_Drugs_Blue = 2), + (t.SetUp_Drugs_Wink_Red = 3), + (t.SetUp_Drugs_Wink_Blue = 4), + (t.SetUp_Drugs_HP = 5), + (t.SetUp_Drugs_HP_TIME = 6), + (t.SetUp_Drugs_MP = 7), + (t.SetUp_Drugs_MP_TIME = 8), + (t.SetUp_Drugs_MOMENT_HP = 9), + (t.SetUp_Drugs_MOMENT_HP_TIME = 10), + (t.SetUp_Drugs_MOMENT_MP = 11), + (t.SetUp_Drugs_MOMENT_MP_TIME = 12), + (t.SetUp_Drugs_Per = 100), + (t.SetUp_Drugs_Blood = 101), + (t.SetUp_Drugs_COM_Red = 102), + (t.SetUp_Drugs_COM_BLUE = 103), + (t.SetUp_Drugs_MOMENT_RED = 104), + (t.SetUp_Drugs_MOMENT_BLUE = 105), + (t.SetUp_Drugs_Select_LiaoShangYao = 106), + (t.SetUp_Item_Pick = 1e3), + (t.SetUp_Item_Mark = 1001), + (t.SetUp_Item_All_Pick = 1), + (t.SetUp_Item_All_Mark = 2), + (t.SetUp_Hp1Val = 13), + (t.SetUp_Hp1Item = 14), + (t.SetUp_Hp2Val = 15), + (t.SetUp_Hp2Item = 16), + (t.SetUp_Hp1State = 1), + (t.SetUp_Hp2State = 2), + (t.SetUp_AI_skillID = 17), + (t.SetUp_AI_pet = 18), + (t.SetUp_AI_hpLess = 19), + (t.SetUp_AI_hpLessSkill = 20), + (t.SetUp_Drugs_LiaoShangYao = 21), + (t.SetUp_Drugs_LiaoShangYaoHp = 22), + (t.SetUp_Drugs_LiaoShangYaoTime = 23), + (t.SetUp_AI_MaxHpMonster1 = 1), + (t.SetUp_AI_DotPickItem1 = 2), + (t.SetUp_AI_PickItem1 = 3), + (t.SetUp_AI_Huofu = 4), + (t.SetUp_AI_ZhaoHuanShenShou = 5), + (t.SetUp_AI_HpMin = 6), + (t.SetUp_AI_Hemophagy = 7), + (t.SetUp_AI_Thunderbolt = 8), + (t.SetUp_AI_Poison = 9), + (t.SetUp_AI_iceBluster = 10), + (t.SetUp_AI_isRainFire = 11), + (t.SetUp_AI_ltZhanShi = 12), + (t.SetUp_AI_ltFashi = 13), + (t.SetUp_AI_ltDaoShi = 14), + (t.SetUp_Recycle_woma = 1), + (t.SetUp_Recycle_zuma = 2), + (t.SetUp_Recycle_caveBest = 3), + (t.SetUp_Recycle_mineBest = 4), + (t.SetUp_Recycle_womaBest = 5), + (t.SetUp_Recycle_fortyLevel = 6), + (t.SetUp_Recycle_fiftyLevel = 7), + (t.SetUp_Recycle_oneTurnLevel = 8), + (t.SetUp_Recycle_jinchuangDrug0 = 9), + (t.SetUp_Recycle_jinchuangDrug1 = 10), + (t.SetUp_Recycle_jinchuangDrug2 = 11), + (t.SetUp_Recycle_jinchuangDrug3 = 12), + (t.SetUp_Recycle_magicDrug0 = 13), + (t.SetUp_Recycle_magicDrug1 = 14), + (t.SetUp_Recycle_magicDrug2 = 15), + (t.SetUp_Recycle_magicDrug3 = 16), + (t.SetUp_Recycle_sunWater0 = 17), + (t.SetUp_Recycle_sunWater1 = 18), + (t.SetUp_Recycle_sunWater2 = 19), + (t.SetUp_Recycle_sunWater3 = 20), + t + ); + })(); + (t.Kdae = e), __reflect(e.prototype, "app.Kdae"); + var i = (function () { + function t() {} + return (t.SetUp_Basics = 1), (t.SetUp_Items = 2), (t.SetUp_Drugs = 3), (t.SetUp_Protection = 4), (t.SetUp_AI = 5), (t.SetUp_System = 6), (t.SetUp_Recycle = 7), t; + })(); + (t.BRMgl = i), __reflect(i.prototype, "app.BRMgl"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.dicName = {}), t; + } + return ( + __extends(i, e), + (i.prototype.setData = function () { + t.ObjectPool.wipe(this.dicName); + for (var e, i, n = [], s = t.GlobalData.sectionOpenDay, a = 0; a < this.setUpListData.length; a++) + (e = this.setUpListData[a]), (i = t.VlaoF.StdItems[e.itemId]), (e.itemName = i ? i.name : e.itemName), ((e.openDay && e.openDay <= s) || !e.openDay) && n.push(e); + this.dicName[0] = n; + }), + (i.prototype.getItemSetData = function (t) { + if (0 == t) return this.dicName[0]; + for (var e = [], i = 0, n = this.dicName[0]; i < n.length; i++) { + var s = n[i]; + s.type == t && e.push(s); + } + return e; + }), + (i.prototype.getItemSetPageData = function () { + var e = [], + i = t.VlaoF.ItemTypeConfig; + for (var n in i) e.push(i[n]); + return e; + }), + (i.prototype.init = function () { + this.setData(); + }), + (i.prototype.getCheckBox = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, e); + }), + Object.defineProperty(i.prototype, "setItemData", { + set: function (e) { + this.setUpListData && (this.setUpListData.length = 0), (this.setUpListData = e), t.ckpDj.ins().sendEvent(t.CompEvent.SETUP_ITEM_DATA); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(egret.EventDispatcher); + (t.SetUpData = e), __reflect(e.prototype, "app.SetUpData"); + var i = (function () { + function t() {} + return t; + })(); + (t.SetUpListData = i), __reflect(i.prototype, "app.SetUpListData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.iconDisplay && this.data.source && (this.iconDisplay.source = this.data.source), this.labelDisplay && this.data.text && (this.labelDisplay.text = this.data.text); + }), + e + ); + })(t.BaseItemRender); + (t.ButtonRender = e), __reflect(e.prototype, "app.ButtonRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.iconDisplay && this.data.source && (this.iconDisplay.source = this.data.source), this.labelDisplay && this.data.pagename && (this.labelDisplay.text = this.data.pagename); + }), + e + ); + })(t.BaseItemRender); + (t.ItemButtonRender = e), __reflect(e.prototype, "app.ItemButtonRender"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.VlaoF.SkillConf[this.data]; + t.VlaoF.SkillsLevelConf[this.data][1]; + e && e.name && (this.nameLbl.text = e.name); + } + }), + i + ); + })(t.BaseItemRender); + (t.SetAIDropDownItemView = e), __reflect(e.prototype, "app.SetAIDropDownItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.dropIndex = -1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.touchEnabled = !0), + (this.currentState = "up"), + (this.btn.currentState = "up"), + this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listSelect, this), + this.vKruVZ(this, this.onTap), + this.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeStage, this), + (this.dataPro = new eui.ArrayCollection()), + (this.list.itemRenderer = t.SetAIDropDownItemView), + (this.list.dataProvider = this.dataPro); + }), + (i.prototype.listSelect = function (e) { + var i = t.VlaoF.SkillConf[e.item], + n = t.VlaoF.SkillsLevelConf[e.item][1]; + i && i.name && n && n.skillName && (this.value.text = i.name); + }), + (i.prototype.removeStage = function (t) { + this.stage && this.fEHj(this.stage, this.onTap); + }), + (i.prototype.onTap = function (t) { + (this.currentState = "up" == this.currentState ? "down" : "up"), + (this.btn.currentState = "up" == this.btn.currentState ? "down" : "up"), + t.stopPropagation(), + this.stage && ("down" == this.currentState ? this.vKruVZ(this.stage, this.onTap) : this.fEHj(this.stage, this.onTap)); + }), + (i.prototype.setData = function (t) { + this.dataPro.replaceAll(t); + }), + (i.prototype.setLabel = function (t) { + this.value.text = t; + }), + (i.prototype.getLabel = function () { + return this.value.text; + }), + (i.prototype.setDropIndex = function (t) { + this.dropIndex = t; + }), + (i.prototype.getEnabled = function () { + return this.list.touchEnabled; + }), + (i.prototype.destructor = function () { + this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listSelect, this), + this.fEHj(this, this.onTap), + this.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeStage, this), + this.removeStage(); + }), + i + ); + })(t.BaseView); + (t.SetAIDropDownView = e), __reflect(e.prototype, "app.SetAIDropDownView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.VlaoF.SkillConf[this.data], + i = t.VlaoF.SkillsLevelConf[this.data][1]; + e && e.name && (this.nameLbl.text = e.name), i && i.skillName && (this.icon.source = i.skillName); + } + }), + i + ); + })(t.BaseItemRender); + (t.SetDropDownItemView = e), __reflect(e.prototype, "app.SetDropDownItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.dropIndex = -1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.touchEnabled = !0), + (this.currentState = "up"), + (this.btn.currentState = "up"), + this.list.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listSelect, this), + this.vKruVZ(this, this.onTap), + this.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeStage, this), + (this.dataPro = new eui.ArrayCollection()), + (this.list.itemRenderer = t.SetDropDownItemView), + (this.list.dataProvider = this.dataPro); + }), + (i.prototype.listSelect = function (e) { + var i = t.VlaoF.SkillConf[e.item], + n = t.VlaoF.SkillsLevelConf[e.item][1]; + i && + i.name && + n && + n.skillName && + ((this.value.text = i.name), + (this.icon.source = n.skillName), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, this.dropIndex, e.item), + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Protection, this.dropIndex, e.item)); + }), + (i.prototype.removeStage = function (t) { + this.stage && this.fEHj(this.stage, this.onTap); + }), + (i.prototype.onTap = function (t) { + (this.currentState = "up" == this.currentState ? "down" : "up"), + (this.btn.currentState = "up" == this.btn.currentState ? "down" : "up"), + t.stopPropagation(), + this.stage && ("down" == this.currentState ? this.vKruVZ(this.stage, this.onTap) : this.fEHj(this.stage, this.onTap)); + }), + (i.prototype.setData = function (t) { + this.dataPro.replaceAll(t); + }), + (i.prototype.setLabel = function (t) { + this.value.text = t; + }), + (i.prototype.setIcon = function (t) { + this.icon.source = t; + }), + (i.prototype.getLabel = function () { + return this.value.text; + }), + (i.prototype.setDropIndex = function (t) { + this.dropIndex = t; + }), + (i.prototype.getEnabled = function () { + return this.list.touchEnabled; + }), + (i.prototype.destructor = function () { + this.list.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listSelect, this), + this.fEHj(this, this.onTap), + this.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeStage, this), + this.removeStage(); + }), + i + ); + })(t.BaseView); + (t.SetDropDownView = e), __reflect(e.prototype, "app.SetDropDownView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.taoistArr = []), (t.skinName = "SetUpAISkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.labAry = { + isCure2: { + htmlText: t.CrmPU.language_SetUp_Text42, + }, + }), + (this.basicsLab = [ + { + htmlText: t.CrmPU.language_SetUp_Text41, + x: 22, + y: 23, + }, + ]), + (this.dsph = new how.DSpriteSheet()), + (this.checkboxAry = [this.isCure2]), + this.vKruVZ(this.isCure2, this.onclick), + this.hpInput.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.initView(), + e.prototype.initUI.call(this), + this.HFTK(t.NGcJ.ins().postg_5_2, this.initView), + this.HFTK(t.XwoNAr.ins().post_17_4, this.initView); + }), + (i.prototype.initView = function () { + this.taoistArr = [this.isAutoRelease2, this.isPoison, this.ltItem2, this.petGrp, this.isAutoMaxHp2, this.notPickItem2, this.pickItem2]; + var e = t.NWRFmB.ins().getPayer.propSet.getAP_JOB(); + switch (e) { + case JobConst.ZhanShi: + (this.jobGrp1.visible = !0), + (this.isMaxHp1.label = t.CrmPU.language_SetUp_Text43), + (this.isMaxHp1.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1)), + this.isMaxHp1.setCallback(this, this.onclick), + (this.notPickItem1.label = t.CrmPU.language_SetUp_Text44), + this.notPickItem1.setCallback(this, this.onclick), + (this.pickItem1.label = t.CrmPU.language_SetUp_Text45), + this.pickItem1.setCallback(this, this.onclick), + (this.ltItem1.label = t.CrmPU.language_SetUp_Text64), + this.ltItem1.setCallback(this, this.onclick); + var i = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1), + n = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1); + (this.notPickItem1.selected = i), + (this.pickItem1.selected = n), + (this.ltItem1.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltZhanShi)), + 0 == i && + 0 == n && + ((this.pickItem1.selected = !n), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !0), t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !n)); + break; + case JobConst.DaoShi: + this.jobGrp2.visible = !0; + var s = t.VlaoF.SkillConf[33]; + s && t.NWRFmB.ins().getPayer.getUserSkill(s.id) && this.taoistArr.splice(3, 0, this.isAutoHemophagy2); + for (var a = 0; a < this.taoistArr.length; a++) (this.taoistArr[a].x = 30), (this.taoistArr[a].y = 18 + 60 * a), (this.taoistArr[a].visible = !0); + (this.isAutoRelease2.label = t.CrmPU.language_SetUp_Text46), + (this.isAutoRelease2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu)), + this.isAutoRelease2.setCallback(this, this.onclick), + (this.isPoison.label = t.CrmPU.language_Common_137), + (this.isPoison.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Poison)), + this.isPoison.setCallback(this, this.onclick), + (this.ltItem2.label = t.CrmPU.language_SetUp_Text66), + (this.ltItem2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltDaoShi)), + this.ltItem2.setCallback(this, this.onclick), + (this.isAutoSummon2.label = t.CrmPU.language_SetUp_Text47), + (this.isAutoSummon2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ZhaoHuanShenShou)), + this.isAutoSummon2.setCallback(this, this.onclick), + (this.isCure2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_HpMin)), + (this.isAutoHemophagy2.label = t.CrmPU.language_SetUp_Text48), + (this.isAutoHemophagy2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Hemophagy)), + this.isAutoHemophagy2.setCallback(this, this.onclick), + (this.isAutoMaxHp2.label = t.CrmPU.language_SetUp_Text43), + (this.isAutoMaxHp2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1)), + this.isAutoMaxHp2.setCallback(this, this.onclick), + (this.notPickItem2.label = t.CrmPU.language_SetUp_Text44), + this.notPickItem2.setCallback(this, this.onclick), + (this.pickItem2.label = t.CrmPU.language_SetUp_Text45), + this.pickItem2.setCallback(this, this.onclick); + var r = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_hpLess); + this.hpInput.text = r + ""; + var o = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1), + l = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1); + (this.notPickItem2.selected = o), + (this.pickItem2.selected = l), + 0 == o && + 0 == l && + ((this.pickItem2.selected = !l), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !0), t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !l)); + break; + case JobConst.FaShi: + (this.jobGrp3.visible = !0), + (this.isThunderbolt3.label = t.CrmPU.language_SetUp_Text49), + (this.isThunderbolt3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt)), + this.isThunderbolt3.setCallback(this, this.onclick), + (this.isIceBluster3.label = t.CrmPU.language_Common_138), + (this.isIceBluster3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster)), + this.isIceBluster3.setCallback(this, this.onclick), + (this.isRainFire3.label = t.CrmPU.language_Common_157), + (this.isRainFire3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire)), + this.isRainFire3.setCallback(this, this.onclick), + (this.ltItem3.label = t.CrmPU.language_SetUp_Text65), + (this.ltItem3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltFashi)), + this.ltItem3.setCallback(this, this.onclick), + (this.isMaxHp3.label = t.CrmPU.language_SetUp_Text43), + (this.isMaxHp3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1)), + this.isMaxHp3.setCallback(this, this.onclick), + (this.notPickItem3.label = t.CrmPU.language_SetUp_Text44), + this.notPickItem3.setCallback(this, this.onclick), + (this.pickItem3.label = t.CrmPU.language_SetUp_Text45), + this.pickItem3.setCallback(this, this.onclick); + var h = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1), + p = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1); + (this.notPickItem3.selected = h), + (this.pickItem3.selected = p), + 0 == h && + 0 == p && + ((this.pickItem3.selected = !p), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !0), t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !p)); + } + e = null; + }), + (i.prototype.onFocusOut = function (e) { + var i = e.currentTarget; + switch (i) { + case this.hpInput: + +this.hpInput.text > 100 && (this.hpInput.text = "100"), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_hpLess, +this.hpInput.text), + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_hpLess, +this.hpInput.text); + } + }), + (i.prototype.onclick = function (e) { + switch (e.currentTarget) { + case this.isMaxHp1: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected ? 1 : 0); + break; + case this.notPickItem1: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 1 : 0), + (this.pickItem1.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.pickItem1: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 1 : 0), + (this.notPickItem1.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.isAutoRelease2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Huofu, e.currentTarget.selected ? 1 : 0); + break; + case this.isAutoSummon2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ZhaoHuanShenShou, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ZhaoHuanShenShou, e.currentTarget.selected ? 1 : 0); + break; + case this.isCure2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_HpMin, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_HpMin, e.currentTarget.selected ? 1 : 0); + break; + case this.isAutoHemophagy2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Hemophagy, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Hemophagy, e.currentTarget.selected ? 1 : 0); + break; + case this.isPoison: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Poison, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Poison, e.currentTarget.selected ? 1 : 0); + break; + case this.isAutoMaxHp2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected ? 1 : 0); + break; + case this.notPickItem2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 1 : 0), + (this.pickItem2.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.pickItem2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 1 : 0), + (this.notPickItem2.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.isThunderbolt3: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt) + ? (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected ? 1 : 0)) + : t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster) + ? (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected ? 1 : 0), + (this.isIceBluster3.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected ? 0 : 1)) + : (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected ? 1 : 0)); + break; + case this.isIceBluster3: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster) + ? (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected ? 1 : 0)) + : t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt) + ? (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected ? 1 : 0), + (this.isThunderbolt3.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_Thunderbolt, e.currentTarget.selected ? 0 : 1)) + : (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_iceBluster, e.currentTarget.selected ? 1 : 0)); + break; + case this.isRainFire3: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_isRainFire, e.currentTarget.selected ? 1 : 0); + break; + case this.isMaxHp3: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected ? 1 : 0); + break; + case this.notPickItem3: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 1 : 0), + (this.pickItem3.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.pickItem3: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_PickItem1, e.currentTarget.selected ? 1 : 0), + (this.notPickItem3.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_DotPickItem1, e.currentTarget.selected ? 0 : 1); + break; + case this.isAutoMaxHp2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_MaxHpMonster1, e.currentTarget.selected ? 1 : 0); + break; + case this.ltItem1: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltZhanShi, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltZhanShi, e.currentTarget.selected ? 1 : 0); + break; + case this.ltItem2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltDaoShi, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltDaoShi, e.currentTarget.selected ? 1 : 0); + break; + case this.ltItem3: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltFashi, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_AI, t.Kdae.SetUp_AI_ltFashi, e.currentTarget.selected ? 1 : 0); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), + this.removeObserve(), + this.fEHj(this.isCure2, this.onclick), + this.hpInput.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.removeObserve(), + this.dsph.dispose(), + (this.jobGrp1 = null), + (this.jobGrp2 = null), + (this.jobGrp3 = null), + (this.isMaxHp1 = null), + this.notPickItem1.$onRemoveFromStage(), + (this.notPickItem1 = null), + this.pickItem1.$onRemoveFromStage(), + (this.pickItem1 = null), + this.isAutoRelease2.$onRemoveFromStage(), + (this.isAutoRelease2 = null), + this.isPoison.$onRemoveFromStage(), + (this.isPoison = null), + this.isAutoSummon2.$onRemoveFromStage(), + (this.isAutoSummon2 = null), + this.isCure2.$onRemoveFromStage(), + (this.isCure2 = null), + this.isAutoHemophagy2.$onRemoveFromStage(), + (this.isAutoHemophagy2 = null), + this.isAutoMaxHp2.$onRemoveFromStage(), + (this.isAutoMaxHp2 = null), + this.notPickItem2.$onRemoveFromStage(), + (this.notPickItem2 = null), + this.pickItem2.$onRemoveFromStage(), + (this.pickItem2 = null), + (this.hpInput = null), + this.cureGrp.removeChildren(), + (this.cureGrp = null), + this.petGrp.removeChildren(), + (this.petGrp = null); + for (var n = 0, s = this.taoistArr.length; s > n; n++) this.taoistArr[n] = null; + (this.taoistArr.length = 0), + (this.taoistArr = null), + this.isThunderbolt3.$onRemoveFromStage(), + (this.isThunderbolt3 = null), + this.isIceBluster3.$onRemoveFromStage(), + (this.isIceBluster3 = null), + this.isRainFire3.$onRemoveFromStage(), + (this.isRainFire3 = null), + this.isMaxHp3.$onRemoveFromStage(), + (this.isMaxHp3 = null), + this.notPickItem3.$onRemoveFromStage(), + (this.notPickItem3 = null), + this.pickItem3.$onRemoveFromStage(), + (this.pickItem3 = null); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpAI = e), __reflect(e.prototype, "app.SetUpAI"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._actID = 0), (i.skinName = "ActivityDefendTaskSKin"), (i.name = "ActivityDefendTaskView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + this.dragDropUI.setCurrentState("default13"), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System70), + (this.itemArrayCollection = new eui.ArrayCollection()), + (this.list.itemRenderer = t.ActivityDefendTaskItemView), + (this.list.dataProvider = this.itemArrayCollection), + (this.scroller.verticalScrollBar.autoVisibility = !1), + (this.scroller.verticalScrollBar.visible = !1), + this.HFTK(t.TQkyOx.ins().post_25_3, this.refreshData), + this.HFTK(t.TQkyOx.ins().post_defendTaskResult, this.updateResult); + }), + (i.prototype.updateResult = function (e) { + if (e.result > 0) { + var i = e.times; + (i = egret.getTimer() / 1e3 + i), + i > 0 && t.ckpDj.ins().sendEvent(t.CompEvent.TimerEvent, [i]), + t.mAYZL.ins().close(this), + t.mAYZL.ins().close(t.ActivityCopiesWin), + t.mAYZL.ins().open(t.ActivityDefendTipsView, e.times); + } + }), + (i.prototype.refreshData = function (t) { + t && this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this._actID = e[0]), t.MouseScroller.bind(this.scroller), (this.dataAry = []), this.setData(); + }), + (i.prototype.setData = function () { + var e = t.VlaoF.Activity13Config, + i = []; + for (var n in e) + if (e[Number(n)]) { + var s = e[n]; + 19 != s.Id && i.push(s); + } + var a = i.length; + if (5 > a) for (var r = 0; 5 - a > r; r++) i.push(t.VlaoF.Activity13Config[19]); + this.creatItem(i); + }), + (i.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this.itemArrayCollection.replaceAll(this.dataAry); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.MouseScroller.unbind(this.scroller), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + (this.scroller = null), + (this.list = null), + (this.dataAry.length = 0), + (this.dataAry = null), + this.itemArrayCollection.removeAll(), + (this.itemArrayCollection = null); + }), + i + ); + })(t.gIRYTi); + (t.ActivityDefendTaskView = e), __reflect(e.prototype, "app.ActivityDefendTaskView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.checkBoxAry = []), (t.skinName = "SetUpBasicsSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.checkBox1.label = t.CrmPU.language_SetUp_Text1), + this.checkBox1.setCallback(this, this.onclick), + (this.checkBox1.dataObj = t.VlaoF.BasicsSettingmConfig[1]), + (this.checkBox2.label = t.CrmPU.language_SetUp_Text2), + this.checkBox2.setCallback(this, this.onclick), + (this.checkBox2.dataObj = t.VlaoF.BasicsSettingmConfig[2]), + (this.checkBox3.label = t.CrmPU.language_SetUp_Text3), + this.checkBox3.setCallback(this, this.onclick), + (this.checkBox3.dataObj = t.VlaoF.BasicsSettingmConfig[3]), + (this.checkBox4.label = t.CrmPU.language_SetUp_Text4), + this.checkBox4.setCallback(this, this.onclick), + (this.checkBox4.dataObj = t.VlaoF.BasicsSettingmConfig[4]), + (this.checkBox5.label = t.CrmPU.language_SetUp_Text5), + this.checkBox5.setCallback(this, this.onclick), + (this.checkBox5.dataObj = t.VlaoF.BasicsSettingmConfig[5]), + (this.autoTask.label = t.CrmPU.language_System82), + this.autoTask.setCallback(this, this.onclick), + (this.autoTask.dataObj = t.VlaoF.BasicsSettingmConfig[7]), + (this.counterAtk.label = t.CrmPU.language_SetUp_Text62), + this.counterAtk.setCallback(this, this.onclick), + (this.counterAtk.dataObj = t.VlaoF.BasicsSettingmConfig[8]), + (this.shieldPet.label = t.CrmPU.language_SetUp_Text63), + this.shieldPet.setCallback(this, this.onclick), + (this.shieldPet.dataObj = t.VlaoF.BasicsSettingmConfig.showPet), + (this.basicsLab = [ + { + htmlText: t.CrmPU.language_SetUp_Text0, + x: 22, + y: 23, + }, + ]); + var i = t.NWRFmB.ins().getPayer.propSet.getAP_JOB(); + switch (i) { + case JobConst.ZhanShi: + this.basicsLab.push({ + htmlText: t.CrmPU.language_SetUp_Text6, + x: 22, + y: 176, + }); + break; + case JobConst.FaShi: + this.basicsLab.push({ + htmlText: t.CrmPU.language_SetUp_Text12, + x: 22, + y: 176, + }); + break; + case JobConst.DaoShi: + this.basicsLab.push({ + htmlText: t.CrmPU.language_SetUp_Text10, + x: 22, + y: 176, + }); + } + this.updateSkill(), + e.prototype.initUI.call(this), + this.HFTK(t.XwoNAr.ins().post_17_3, this.updateSkill), + this.HFTK(t.NGcJ.ins().postg_5_1, this.updateSkill), + this.HFTK(t.NGcJ.ins().postg_5_2, this.updateSkill), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateSkill); + }), + (i.prototype.onclick = function (e) { + switch (e.currentTarget) { + case this.checkBox1: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowHuman, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_ShowHuman, e.currentTarget.selected), + t.NWRFmB.ins().updateMonsterName(); + break; + case this.checkBox2: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_ShowMonster, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_ShowMonster, e.currentTarget.selected), + t.NWRFmB.ins().updateMonsterName(); + break; + case this.checkBox3: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Bit3, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_Bit3, e.currentTarget.selected), + t.NWRFmB.ins().updateTitle(); + break; + case this.checkBox4: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Network, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_Network, e.currentTarget.selected), + t.XwoNAr.ins().postSetWIFI(); + break; + case this.checkBox5: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Recommend, e.currentTarget.selected ? 1 : 0), this.setCheckBox(t.Kdae.SetUp_Type_Recommend, e.currentTarget.selected); + break; + case this.autoTask: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask, e.currentTarget.selected ? 1 : 0), this.setCheckBox(t.Kdae.SetUp_Type_autoTask, e.currentTarget.selected); + break; + case this.counterAtk: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_counterAtk, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_counterAtk, e.currentTarget.selected), + t.XwoNAr.ins().post_counterAtk(); + break; + case this.shieldPet: + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_shieldPet, e.currentTarget.selected ? 1 : 0), + this.setCheckBox(t.Kdae.SetUp_Type_shieldPet, e.currentTarget.selected), + t.NWRFmB.ins().updateRolePet(); + break; + default: + e.data && (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, e.data.pos + 7, e.currentTarget.selected ? 1 : 0), this.setCheckBox(e.data.pos + 7, e.currentTarget.selected)); + } + }), + (i.prototype.updateCheckBox = function () { + (this.checkBox1.selected = this.getCheckBox(t.Kdae.SetUp_Type_ShowHuman)), + (this.checkBox2.selected = this.getCheckBox(t.Kdae.SetUp_Type_ShowMonster)), + (this.checkBox3.selected = this.getCheckBox(t.Kdae.SetUp_Type_Bit3)), + (this.checkBox4.selected = this.getCheckBox(t.Kdae.SetUp_Type_Network)), + (this.checkBox5.selected = this.getCheckBox(t.Kdae.SetUp_Type_Recommend)), + (this.autoTask.selected = this.getCheckBox(t.Kdae.SetUp_Type_autoTask)), + (this.counterAtk.selected = this.getCheckBox(t.Kdae.SetUp_Type_counterAtk)), + (this.shieldPet.selected = this.getCheckBox(t.Kdae.SetUp_Type_shieldPet)); + for (var e = 0; e < this.checkBoxAry.length; e++) this.checkBoxAry[e].selected = this.getCheckBox(this.checkBoxAry[e].dataObj.pos + 7); + }), + (i.prototype.getCheckBox = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, e); + }), + (i.prototype.setCheckBox = function (e, i) { + return t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Basics, e, i); + }), + (i.prototype.updateSkill = function () { + this.skillGroup.removeChildren(), (this.checkBoxAry = []); + var e, + i = t.NWRFmB.ins().getPayer.propSet.getAP_JOB(); + if ( + (JobConst.ZhanShi == i + ? (e = t.VlaoF.BasicsSettingmConfig.skills1) + : JobConst.FaShi == i + ? (e = t.VlaoF.BasicsSettingmConfig.skills2) + : JobConst.DaoShi == i && (e = t.VlaoF.BasicsSettingmConfig.skills3), + e) + ) { + t.NWRFmB.ins().getPayer.getUserSkills(); + for (var n in e) { + var s = t.VlaoF.SkillConf[e[n].skillId]; + if (s && t.NWRFmB.ins().getPayer.getUserSkill(s.id)) { + var a = new t.SetUpCheckBoxEui(); + (a.label = s.name), (a.dataObj = e[n]), a.setCallback(this, this.onclick), this.checkBoxAry.push(a), this.skillGroup.addChild(a); + } + } + } + this.updateCheckBox(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + if ( + (e.prototype.close.call(this), + this.skillGroup.numElements > 0 && this.skillGroup.removeChildren(), + t.lEYZI.Naoc(this.skillGroup), + this.checkBox1.$onRemoveFromStage(), + this.checkBox2.$onRemoveFromStage(), + this.checkBox3.$onRemoveFromStage(), + this.checkBox4.$onRemoveFromStage(), + this.checkBox5.$onRemoveFromStage(), + this.autoTask.$onRemoveFromStage(), + this.counterAtk.$onRemoveFromStage(), + this.shieldPet.$onRemoveFromStage(), + this.checkBoxAry) + ) { + for (var s = 0, a = this.checkBoxAry.length; a > s; s++) this.checkBoxAry[s].$onRemoveFromStage(); + (this.checkBoxAry.length = 0), (this.checkBoxAry = null); + } + this.fEHj(this.checkBox1, this.onclick), + this.fEHj(this.checkBox2, this.onclick), + this.fEHj(this.checkBox3, this.onclick), + this.fEHj(this.checkBox4, this.onclick), + this.fEHj(this.checkBox5, this.onclick), + this.fEHj(this.autoTask, this.onclick), + this.fEHj(this.counterAtk, this.onclick), + this.fEHj(this.shieldPet, this.onclick), + this.removeObserve(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpBasics = e), __reflect(e.prototype, "app.SetUpBasics"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._isCanClick = !0), (t.htmlText = new egret.HtmlTextParser()), (t.skinName = "SetUpCheckBox"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.initUI(); + }), + (i.prototype.initUI = function () { + KdbLz.qOtrbE.iFbP + ? this.labelDisplay.addEventListener(egret.TouchEvent.TOUCH_TAP, this.mouseMove, this) + : (this.labelDisplay.addEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), this.labelDisplay.addEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + this.checkBox.addEventListener(egret.TouchEvent.TOUCH_TAP, this.clickCheck, this); + }), + Object.defineProperty(i.prototype, "isCanClick", { + get: function () { + return this._isCanClick; + }, + set: function (t) { + this._isCanClick = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "selected", { + get: function () { + return this.checkBox.selected; + }, + set: function (t) { + this.checkBox.selected = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.labelDisplay.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "label", { + set: function (e) { + this.labelDisplay.textFlow = t.hETx.qYVI(e); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "dataObj", { + get: function () { + return this._dataObj; + }, + set: function (t) { + this._dataObj = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setCallback = function (t, e) { + (this.func = e), (this.funcObj = t); + }), + (i.prototype.clickCheck = function () { + if (this._isCanClick) { + var t = this; + egret.Tween.removeTweens(this.checkBox), + egret.Tween.get(this.checkBox) + .call(function () { + t.checkBox.scaleX = t.checkBox.scaleY = 0.95; + }) + .wait(150) + .call(function () { + t.checkBox.scaleX = t.checkBox.scaleY = 1; + }); + } + this.func.call(this.funcObj, { + currentTarget: this, + data: this._dataObj, + }); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + if (this._dataObj && this._dataObj.tips) { + var i = this.labelDisplay.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, this._dataObj.tips, { + x: i.x + this.labelDisplay.width / 2, + y: i.y + this.labelDisplay.height / 2, + }), + (i = null); + } + KdbLz.qOtrbE.iFbP && + (this._isCanClick + ? ((this.selected = !this.selected), this.clickCheck()) + : this.func.call(this.funcObj, { + currentTarget: this, + data: this._dataObj, + })); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + (this._dataObj = null), + (this.htmlText = null), + (this.func = null), + (this.funcObj = null), + (this.labelDisplay.textFlow = null), + KdbLz.qOtrbE.iFbP + ? this.labelDisplay.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.mouseMove, this) + : (this.labelDisplay.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), this.labelDisplay.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this)), + this.checkBox.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.clickCheck, this); + }), + i + ); + })(eui.Component); + (t.SetUpCheckBoxEui = e), __reflect(e.prototype, "app.SetUpCheckBoxEui"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.resetValue = [70, 0, 40, 0]), (t.minimum = 0), (t.maximum = 100), (t.skinName = "SetUpDrugsSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.init(); + }), + (i.prototype.init = function () { + (this.percentageLab.textFlow = t.hETx.qYVI("按百分比自动吃药")), + (this.hpLab.textFlow = t.hETx.qYVI("按血量自动吃药")), + this.addChangeEvent(this.percentageBox, this.onClickChange), + this.addChangeEvent(this.hpbox, this.onClickChange), + this.addChangeEvent(this.hpCheckBox1, this.onClickChange), + this.addChangeEvent(this.hpCheckBox2, this.onClickChange), + this.addChangeEvent(this.hpCheckBox3, this.onClickChange), + this.addChangeEvent(this.hpCheckBox4, this.onClickChange), + this.addChangeEvent(this.hpCheckBox5, this.onClickChange), + this.edit_hp.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_hp_time.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_mp.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_mp_time.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_hp.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_hp_time.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_mp.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_mp_time.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_therapy_hp.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_therapy_hp_time.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.HFTK(t.XwoNAr.ins().post_17_3, this.updateCheckBox), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateCheckBox), + (this.groupArr = []), + (this.comHSliderArr = []); + var e, i; + for (e = 0; e < this.percentageGroup.numElements; e++) (i = this.percentageGroup.getChildByName("group_" + e)), this.groupArr.push(i); + for (var n, s = 0; 5 > s; s++) + (n = new t.ComHSlider(this.groupArr[s])), + (n.minimum = this.minimum), + (n.maximum = this.maximum), + (n.type = 4 == s ? 21 : s + 1), + this.comHSliderArr.push(n), + n.addEventListener(t.CompEvent.SET_HSLIDER, this.onScrollEnd, this); + this.txtDescArr = []; + for (var a, r = 0; 4 > r; r++) (a = this.labGroup.getChildByName("txt_desc_" + r)), this.txtDescArr.push(a); + this.updateCheckBox(); + }), + (i.prototype.onFocusOut = function (e) { + var i = e.currentTarget; + switch (i) { + case this.edit_hp: + this.isNumber(this.edit_hp.text) || (this.edit_hp.text = ""), this.setHpAndMp(t.Kdae.SetUp_Drugs_HP, +this.edit_hp.text); + break; + case this.edit_hp_time: + this.isNumber(this.edit_hp_time.text) || (this.edit_hp_time.text = ""), this.setInputValue(this.edit_hp_time), this.setHpAndMp(t.Kdae.SetUp_Drugs_HP_TIME, +this.edit_hp_time.text); + break; + case this.edit_mp: + this.isNumber(this.edit_mp.text) || (this.edit_mp.text = ""), this.setHpAndMp(t.Kdae.SetUp_Drugs_MP, +this.edit_mp.text); + break; + case this.edit_mp_time: + this.isNumber(this.edit_mp_time.text) || (this.edit_mp_time.text = ""), this.setInputValue(this.edit_mp_time), this.setHpAndMp(t.Kdae.SetUp_Drugs_MP_TIME, +this.edit_mp_time.text); + break; + case this.edit_moment_hp: + this.isNumber(this.edit_moment_hp.text) || (this.edit_moment_hp.text = ""), this.setHpAndMp(t.Kdae.SetUp_Drugs_MOMENT_HP, +this.edit_moment_hp.text); + break; + case this.edit_moment_hp_time: + this.isNumber(this.edit_moment_hp_time.text) || (this.edit_moment_hp_time.text = ""), + this.setInputValue(this.edit_moment_hp_time), + this.setHpAndMp(t.Kdae.SetUp_Drugs_MOMENT_HP_TIME, +this.edit_moment_hp_time.text); + break; + case this.edit_moment_mp: + this.isNumber(this.edit_moment_mp.text) || (this.edit_moment_mp.text = ""), this.setHpAndMp(t.Kdae.SetUp_Drugs_MOMENT_MP, +this.edit_moment_mp.text); + break; + case this.edit_moment_mp_time: + this.isNumber(this.edit_moment_mp_time.text) || (this.edit_moment_mp_time.text = ""), + this.setInputValue(this.edit_moment_mp_time), + this.setHpAndMp(t.Kdae.SetUp_Drugs_MOMENT_MP_TIME, +this.edit_moment_mp_time.text); + break; + case this.edit_therapy_hp: + this.isNumber(this.edit_therapy_hp.text) || (this.edit_therapy_hp.text = ""), this.setHpAndMp(t.Kdae.SetUp_Drugs_LiaoShangYaoHp, +this.edit_therapy_hp.text); + break; + case this.edit_therapy_hp_time: + this.isNumber(this.edit_therapy_hp_time.text) || (this.edit_therapy_hp_time.text = ""), + this.setInputValue(this.edit_therapy_hp_time), + this.setHpAndMp(t.Kdae.SetUp_Drugs_LiaoShangYaoTime, +this.edit_therapy_hp_time.text); + } + }), + (i.prototype.setHpAndMp = function (e, i) { + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Drugs, e, i), this.setCheckBox(e, i); + }), + (i.prototype.isNumber = function (t) { + return this.numReg || (this.numReg = new RegExp("^(0|[1-9][0-9]*)$")), this.numReg.test(t) ? !0 : !1; + }), + (i.prototype.setInputValue = function (t) { + var e = +t.text; + e && 300 > e ? (t.text = "300") : e && e >= 300 && 1e4 >= e ? (t.text = e + "") : (t.text = "10000"); + }), + (i.prototype.showRadio = function () { + this.percentageBox.selected && ((this.percentageGroup.visible = !0), (this.hpGroup.visible = !1)), this.hpbox.selected && ((this.percentageGroup.visible = !1), (this.hpGroup.visible = !0)); + }), + (i.prototype.updateCheckBox = function () { + this.updatePerCheckBox(), this.updateHpCheckBox(), this.showRadio(); + }), + (i.prototype.updatePerCheckBox = function () { + (this.percentageBox.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_Per)), this.setDrugsPercent(); + }), + (i.prototype.updateHpCheckBox = function () { + (this.hpbox.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_Blood)), + (this.hpCheckBox1.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_COM_Red)), + (this.hpCheckBox2.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_COM_BLUE)), + (this.hpCheckBox3.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_RED)), + (this.hpCheckBox4.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_BLUE)), + (this.hpCheckBox5.selected = this.getCheckBox(t.Kdae.SetUp_Drugs_Select_LiaoShangYao)), + this.setDrugsComHp(), + this.setDrugsComMp(), + this.setDrugsMomentHp(), + this.setDrugsMomentMp(), + this.setDrugsTherapyHp(); + }), + (i.prototype.getCheckBox = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, e); + }), + (i.prototype.onScrollEnd = function (e) { + var i = e.data, + n = Number(i.type), + s = Number(i.param); + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Drugs, n, s), this.setCheckBox(n, s); + }), + (i.prototype.setCheckBox = function (e, i) { + return t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Drugs, e, i); + }), + (i.prototype.onClickPercent = function (t) {}), + (i.prototype.onClickHp = function (t) {}), + (i.prototype.onClickChange = function (e) { + switch (e.target) { + case this.percentageBox: + (this.percentageGroup.visible = !0), + (this.hpGroup.visible = !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 1, 1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 2, 0), + this.setCheckBox(t.Kdae.SetUp_Drugs_Blood, 0), + this.setCheckBox(t.Kdae.SetUp_Drugs_Per, 1); + break; + case this.hpbox: + (this.percentageGroup.visible = !1), + (this.hpGroup.visible = !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 1, 0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 2, 1), + this.setCheckBox(t.Kdae.SetUp_Drugs_Per, 0), + this.setCheckBox(t.Kdae.SetUp_Drugs_Blood, 1); + break; + case this.hpCheckBox1: + this.hpCheckBox1.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 3, 1), this.setCheckBox(t.Kdae.SetUp_Drugs_COM_Red, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 3, 0), this.setCheckBox(t.Kdae.SetUp_Drugs_COM_Red, 0)); + break; + case this.hpCheckBox2: + this.hpCheckBox2.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 4, 1), this.setCheckBox(t.Kdae.SetUp_Drugs_COM_BLUE, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 4, 0), this.setCheckBox(t.Kdae.SetUp_Drugs_COM_BLUE, 0)); + break; + case this.hpCheckBox3: + this.hpCheckBox3.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 5, 1), this.setCheckBox(t.Kdae.SetUp_Drugs_MOMENT_RED, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 5, 0), this.setCheckBox(t.Kdae.SetUp_Drugs_MOMENT_RED, 0)); + break; + case this.hpCheckBox4: + this.hpCheckBox4.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 6, 1), this.setCheckBox(t.Kdae.SetUp_Drugs_MOMENT_BLUE, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 6, 0), this.setCheckBox(t.Kdae.SetUp_Drugs_MOMENT_BLUE, 0)); + break; + case this.hpCheckBox5: + this.hpCheckBox5.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 7, 1), this.setCheckBox(t.Kdae.SetUp_Drugs_Select_LiaoShangYao, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Drugs, 7, 0), this.setCheckBox(t.Kdae.SetUp_Drugs_Select_LiaoShangYao, 0)); + } + }), + (i.prototype.setDrugsPercent = function () { + for (var t = 0; t < this.comHSliderArr.length; t++) { + var e = this.comHSliderArr[t].type; + this.comHSliderArr[t].HsValue = this.getCheckBox(e) ? +this.getCheckBox(e) : 0; + } + }), + (i.prototype.setDrugsComHp = function () { + (this.edit_hp.text = this.getCheckBox(t.Kdae.SetUp_Drugs_HP) + ""), (this.edit_hp_time.text = this.getCheckBox(t.Kdae.SetUp_Drugs_HP_TIME)); + }), + (i.prototype.setDrugsComMp = function () { + (this.edit_mp.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MP) + ""), (this.edit_mp_time.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MP_TIME)); + }), + (i.prototype.setDrugsMomentHp = function () { + (this.edit_moment_hp.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_HP) + ""), (this.edit_moment_hp_time.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_HP_TIME)); + }), + (i.prototype.setDrugsMomentMp = function () { + (this.edit_moment_mp.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_MP) + ""), (this.edit_moment_mp_time.text = this.getCheckBox(t.Kdae.SetUp_Drugs_MOMENT_MP_TIME)); + }), + (i.prototype.setDrugsTherapyHp = function () { + (this.edit_therapy_hp.text = this.getCheckBox(t.Kdae.SetUp_Drugs_LiaoShangYaoHp) + ""), (this.edit_therapy_hp_time.text = this.getCheckBox(t.Kdae.SetUp_Drugs_LiaoShangYaoTime)); + }), + (i.prototype.getDrugsPercent = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Drugs, e); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.edit_hp.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_hp_time.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_mp.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_mp_time.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_hp.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_hp_time.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_mp.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_moment_mp_time.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_therapy_hp.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.edit_therapy_hp_time.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this); + for (var s = 0, a = this.comHSliderArr.length; a > s; s++) { + var r = this.comHSliderArr[s]; + r.destory(), (r = null); + } + this.removeChangeEvent(this.percentageBox, this.onClickChange), + this.removeChangeEvent(this.hpbox, this.onClickChange), + this.removeChangeEvent(this.hpCheckBox1, this.onClickChange), + this.removeChangeEvent(this.hpCheckBox2, this.onClickChange), + this.removeChangeEvent(this.hpCheckBox3, this.onClickChange), + this.removeChangeEvent(this.hpCheckBox4, this.onClickChange), + this.removeChangeEvent(this.hpCheckBox5, this.onClickChange), + (this.comHSliderArr.length = 0), + (this.comHSliderArr = null), + this.removeObserve(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpDrugs = e), __reflect(e.prototype, "app.SetUpDrugs"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.dropDlist = [ + { + text: t.CrmPU.language_SetUp_Text21, + }, + { + text: t.CrmPU.language_SetUp_Text22, + }, + { + text: t.CrmPU.language_SetUp_Text23, + }, + { + text: t.CrmPU.language_SetUp_Text24, + }, + { + text: t.CrmPU.language_SetUp_Text25, + }, + { + text: t.CrmPU.language_SetUp_Text26, + }, + { + text: t.CrmPU.language_SetUp_Text27, + }, + ]), + (i.skinName = "SetUpItemSkin"), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + t.JgMyc.ins().setUpModel.init(), + (this.labAry = { + pickUp: { + htmlText: t.CrmPU.language_SetUp_Text17, + nX: -33, + }, + tabRed: { + htmlText: t.CrmPU.language_SetUp_Text18, + nX: -33, + }, + pickUpAll: { + htmlText: t.CrmPU.language_SetUp_Text19, + }, + tabRedAll: { + htmlText: t.CrmPU.language_SetUp_Text20, + }, + }), + (this.basicsLab = [ + { + htmlText: t.CrmPU.language_SetUp_Text34, + x: 22, + y: 23, + }, + ]), + (this.checkboxAry = [this.pickUp, this.tabRed, this.pickUpAll, this.tabRedAll]), + e.prototype.initUI.call(this), + (this.dropDownList.itemRenderer = t.ItemButtonRender), + (this.dropDlist = t.JgMyc.ins().setUpModel.getItemSetPageData()), + (this.dropDownList.dataProvider = new eui.ArrayCollection(this.dropDlist)), + this.HFTK(t.XwoNAr.ins().post_17_3, this.updateCheckBox), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateCheckBox), + this.vKruVZ(this.dropDownBtn, this.onClick), + this.addChangeEvent(this.pickUp, this.onClickChange), + this.addChangeEvent(this.tabRed, this.onClickChange), + this.addChangeEvent(this.pickUpAll, this.onClickChange), + this.addChangeEvent(this.tabRedAll, this.onClickChange), + t.ckpDj.ins().addEvent(t.CompEvent.SETUP_ITEM_DATA, this.onSetUpData, this), + this.dropDownList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClickMenu, this), + (this.dropDownBtn.label = t.CrmPU.language_SetUp_dropDownBtn), + (this.setUpItemListView = new t.SetUpItemListView(this.list)), + this.updateCheckBox(), + (this.dropDownImage.visible = !1); + }), + (i.prototype.updateCheckBox = function () { + (this.pickUp.selected = this.getCheckBox(t.Kdae.SetUp_Item_Pick)), + (this.tabRed.selected = this.getCheckBox(t.Kdae.SetUp_Item_Mark)), + (this.pickUpAll.selected = this.getCheckBox(t.Kdae.SetUp_Item_All_Pick)), + (this.tabRedAll.selected = this.getCheckBox(t.Kdae.SetUp_Item_All_Mark)); + }), + (i.prototype.getCheckBox = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Items, e); + }), + (i.prototype.onClickChange = function (e) { + switch (e.target) { + case this.pickUp: + this.pickUp.selected ? (this.setCheckBox(t.Kdae.SetUp_Item_Pick, 1), this.isSelected(1, 1)) : (this.setCheckBox(t.Kdae.SetUp_Item_Pick, 0), this.isSelected(1, 0)); + break; + case this.tabRed: + this.tabRed.selected ? (this.setCheckBox(t.Kdae.SetUp_Item_Mark, 1), this.isSelected(2, 1)) : (this.setCheckBox(t.Kdae.SetUp_Item_Mark, 0), this.isSelected(2, 0)); + break; + case this.pickUpAll: + this.pickUpAll.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Pick, 1), this.setCheckBox(t.Kdae.SetUp_Item_All_Pick, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Pick, 0), this.setCheckBox(t.Kdae.SetUp_Item_All_Pick, 0)); + break; + case this.tabRedAll: + this.tabRedAll.selected + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Mark, 1), this.setCheckBox(t.Kdae.SetUp_Item_All_Mark, 1)) + : (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, t.Kdae.SetUp_Item_All_Mark, 0), this.setCheckBox(t.Kdae.SetUp_Item_All_Mark, 0)); + } + }), + (i.prototype.isSelected = function (e, i) { + void 0 === e && (e = 0), void 0 === i && (i = 0); + for (var n, s, a = t.JgMyc.ins().setUpModel.dicName[0], r = a.length, o = 0; r > o; o++) + (n = a[o].idx), + (s = a[o].pos), + 1 == e ? a[o].isSelected1 != i && ((a[o].isSelected1 = i), this.setCheckBox(s[0], a[o])) : a[o].isSelected2 != i && ((a[o].isSelected2 = i), this.setCheckBox(s[1], a[o])); + 1 == e ? t.XwoNAr.ins().send_17_7(0, i) : t.XwoNAr.ins().send_17_7(1, i), this.setUpItemListView.itemListData(a); + }), + (i.prototype.setCheckBox = function (e, i) { + return t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Items, e, i); + }), + (i.prototype.onClickMenu = function (e) { + var i = t.VlaoF.ItemTypeConfig[e.item.id]; + (this.dropDownBtn.label = i.pagename), (this.dropDownGroup.visible = !1), this.updateDropImage(), this.setCurData(e.itemIndex); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.dropDownBtn: + (this.dropDownGroup.visible = !this.dropDownGroup.visible), this.updateDropImage(); + } + }), + (i.prototype.updateDropImage = function () { + this.dropDownImage.source = this.dropDownGroup.visible ? "com_ljt_1" : "com_ljt_2"; + }), + (i.prototype.setCurData = function (e) { + void 0 === e && (e = 0); + var i = t.JgMyc.ins().setUpModel.getItemSetData(e); + this.setUpItemListView.initData(i); + }), + (i.prototype.onSetUpData = function () { + var e = t.JgMyc.ins().setUpModel.dicName[0]; + this.setUpItemListView.setData(e); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + (this.dropDlist.length = 0), + (this.dropDlist = null), + this.dropDownList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onClickMenu, this), + (this.dropDownList.itemRenderer = null), + (this.dropDownList.dataProvider = null), + (this.dropDownList = null), + this.removeObserve(), + this.fEHj(this.dropDownBtn, this.onClick), + t.ckpDj.ins().removeEvent(t.CompEvent.SETUP_ITEM_DATA, this.onSetUpData, this), + this.setUpItemListView && this.setUpItemListView.destroy(), + (this.setUpItemListView = null), + this.list.numElements > 0 && this.list.removeChildren(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpItem = e), __reflect(e.prototype, "app.SetUpItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t) { + (this._itemArrayCollection = null), (this._container = t), t && ((this._itemArrayCollection = new eui.ArrayCollection()), this.init()); + } + return ( + (e.prototype.init = function () { + (this._scrollViewContainer = new t.ScrollViewContainer(this._container)), + this._scrollViewContainer.callFunc([null, null, null], this), + (this._scroller = this._scrollViewContainer.scroller), + (this._list = this._scrollViewContainer.list), + (this._scrollViewContainer.itemRenderer = t.SetUpItemView), + (this._scrollViewContainer.dataProvider = this._itemArrayCollection), + (this.dataAry = []), + this.initData(t.JgMyc.ins().setUpModel.dicName[0]); + }), + (e.prototype.initData = function (t) { + t && t.length > 0 ? this.setData(t) : this.setData([]); + }), + (e.prototype.itemListData = function (t) { + this.setData(t); + }), + (e.prototype.setData = function (t) { + var e; + if (t && t.length > 0) for (var i = 0; i < t.length; i++) (e = t[i]), (e.idx = i), (e.callFunc = this.callFunc.bind(this)); + this.creatItem(t); + }), + (e.prototype.creatItem = function (t) { + this.dataAry.length = 0; + for (var e = 0; e < t.length; ++e) this.dataAry.push(t[e]); + this._itemArrayCollection.replaceAll(this.dataAry), this._itemArrayCollection.refresh(); + }), + (e.prototype.callFunc = function (e, i, n) { + if (n) { + var s = void 0; + (s = n.pos), + 1 == e + ? ((n.isSelected1 = i), t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, s[0], i), this.setCheckBox(s[0], n)) + : ((n.isSelected2 = i), t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Items, s[1], i), this.setCheckBox(s[1], n)), + this._itemArrayCollection.replaceItemAt(n, n.idx); + } + }), + (e.prototype.setCheckBox = function (e, i) { + return t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Items, e, i); + }), + (e.prototype.destroy = function () { + for (; this._list.numChildren > 0; ) { + var e = this._list.getChildAt(0); + e.destroy(), (e = null); + } + t.ObjectPool.wipe(this.dataAry), + (this.dataAry.length = 0), + (this.dataAry = null), + this._itemArrayCollection.removeAll(), + (this._itemArrayCollection = null), + this._scrollViewContainer.destory(), + (this._scrollViewContainer = null); + }), + e + ); + })(); + (t.SetUpItemListView = e), __reflect(e.prototype, "app.SetUpItemListView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.state_1 = "bg_quyu_1"), (t.state_2 = "bg_quyu_2"), (t.skinName = "SetUpListItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.addChangeEvent(this.check_pick_up, this.onClickCheck), this.addChangeEvent(this.check_marked_red, this.onClickCheck); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.check_pick_up.removeEventListener(egret.TouchEvent.CHANGE, this.onClickCheck, this), + this.check_marked_red.removeEventListener(egret.TouchEvent.CHANGE, this.onClickCheck, this); + }), + (i.prototype.onClickCheck = function (t) { + var e = 0, + i = 0; + switch (t.target) { + case this.check_pick_up: + (e = 1), (i = this.check_pick_up.selected ? 1 : 0); + break; + case this.check_marked_red: + (e = 2), (i = this.check_marked_red.selected ? 1 : 0); + } + this.callFunc && this.callFunc(e, i, this.data); + }), + (i.prototype.dataChanged = function () { + if (((this.visible = null != this.data), this.data)) { + var e = this.data, + i = e.idx % 2 == 0 ? this.state_1 : this.state_2; + this.bg.$setTexture(RES.getRes(i)), + (this.txt_name.text = e.itemName), + 65533 == e.itemId ? (this.txt_name.textColor = t.ClwSVR.SET_UP_ITEM_PURPLE) : (this.txt_name.textColor = t.ClwSVR.SET_UP_ITEM_YELLOW), + (this.callFunc = e.callFunc), + (this.check_pick_up.selected = 1 == e.isSelected1), + (this.check_marked_red.selected = 1 == e.isSelected2); + } + }), + (i.prototype.destroy = function () { + this.$onRemoveFromStage(), + this.data.callFunc && (this.data.callFunc = null), + (this.data = null), + this.callFunc && (this.callFunc = null), + this.removeChangeEvent(this.check_pick_up, this.onClickCheck), + this.removeChangeEvent(this.check_marked_red, this.onClickCheck), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseItemRender); + (t.SetUpItemView = e), __reflect(e.prototype, "app.SetUpItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SetUpProtectSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + (this.basicsLab = [ + { + htmlText: t.CrmPU.language_SetUp_Text39, + x: 22, + y: 23, + }, + ]), + (this.dsph = new how.DSpriteSheet()), + e.prototype.initUI.call(this), + this.hp1Input.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.hp2Input.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateCheckBox), + (this.warnHp.label = t.CrmPU.language_SetUp_Text40), + this.warnHp.setCallback(this, this.onClick), + (this.warnHp.dataObj = {}), + (this.warnHp2.label = t.CrmPU.language_SetUp_Text40), + this.warnHp2.setCallback(this, this.onClick), + (this.warnHp2.dataObj = {}), + this.updateCheckBox(); + }), + (i.prototype.updateCheckBox = function () { + var e = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Val), + i = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Val); + (this.hp1Input.text = e + ""), + (this.hp2Input.text = i + ""), + (this.warnHp.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1State)), + (this.warnHp2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2State)); + var n = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Item), + s = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Item), + a = t.VlaoF.SkillConf[55]; + a && this.hp1Drop.setLabel(a.name); + var r = t.VlaoF.SkillsLevelConf[55][1]; + r && this.hp1Drop.setIcon(r.skillName), + (0 >= n || 58 == n) && (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Item, 55), t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Item, 55)); + var o = t.VlaoF.SkillConf[58]; + o && o.name && this.hp2Drop.setLabel(o.name); + var l = t.VlaoF.SkillsLevelConf[58][1]; + l && l.skillName && this.hp2Drop.setIcon(l.skillName), + (0 >= s || 55 == s) && (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Item, 58), t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Item, 58)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.warnHp: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1State, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1State, e.currentTarget.selected ? 1 : 0); + break; + case this.warnHp2: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2State, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2State, e.currentTarget.selected ? 1 : 0); + } + }), + (i.prototype.onFocusOut = function (e) { + var i = t.NWRFmB.ins().nkJT(), + n = e.currentTarget; + if (i && i.propSet) + switch (n) { + case this.hp1Input: + +this.hp1Input.text > i.propSet.getHp() && (this.hp1Input.text = i.propSet.getHp() + ""), + +this.hp1Input.text < 0 && (this.hp1Input.text = "0"), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Val, +this.hp1Input.text), + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp1Val, +this.hp1Input.text); + break; + case this.hp2Input: + +this.hp2Input.text > i.propSet.getHp() && (this.hp2Input.text = i.propSet.getHp() + ""), + +this.hp2Input.text < 0 && (this.hp2Input.text = "0"), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Val, +this.hp2Input.text), + t.XwoNAr.ins().send_17_5(t.BRMgl.SetUp_Protection, t.Kdae.SetUp_Hp2Val, +this.hp2Input.text); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.fEHj(this.warnHp, this.onClick), + this.fEHj(this.warnHp2, this.onClick), + this.hp1Input.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.hp2Input.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.hp1Drop.destructor(), + this.hp2Drop.destructor(), + this.dsph.dispose(), + (this.warnHp = null), + (this.warnHp2 = null), + (this.hp2Input = null), + (this.hp1Input = null), + (this.hp1Drop = null), + (this.hp2Drop = null), + this.removeObserve(), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpProtect = e), __reflect(e.prototype, "app.SetUpProtect"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), (this.boxList.itemRenderer = t.SetUpRecycleItemCheckBox), this.VoZqXH(this.title, this.mouseMove), this.EeFPm(this.title, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.title.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.title.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data.tips) { + var i = this.title.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, this.data.tips, { + x: i.x + this.title.width / 2, + y: i.y + this.title.height / 2, + }), + (i = null); + } + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.title.text = this.data.title; + var e = t.VlaoF.RecyclingSettingConfig[this.data.ID]; + if (e) { + var i = []; + for (var n in e) t.mAYZL.ins().isCheckOpen(e[n].ShowLimit) && i.push(e[n]); + this.boxList.dataProvider = new eui.ArrayCollection(i); + } + } + }), + i + ); + })(t.BaseItemRender); + (t.SetUpRecycleItem = e), __reflect(e.prototype, "app.SetUpRecycleItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.vipLv = 0), (t._canVip = !1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.box.setCallback(this, this.onclick), this.vKruVZ(this.rect, this.onclick); + }), + (i.prototype.dataChanged = function () { + this.data && + ((this._canVip = !0), + (this.vipLv = t.VipData.ins().getMyVipLv()), + this.data.VipLV ? (this.vipLv >= this.data.VipLV ? (this.rect.visible = !1) : ((this.rect.visible = !0), (this._canVip = !1))) : (this.rect.visible = !1), + (this.box.label = this.data.name), + (this.box.labelColor = t.ClwSVR.GOODS_COLOR[this.data.showQuality] ? t.ClwSVR.GOODS_COLOR[this.data.showQuality] : 15064527), + (this.box.dataObj = this.data), + (this.box.selected = this.getCheckBox(this.data.optionid - 1)), + (this.box.isCanClick = this._canVip)); + }), + (i.prototype.getCheckBox = function (e) { + return t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Recycle, e); + }), + (i.prototype.setCheckBox = function (e, i) { + return t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Recycle, e, i); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.box.$onRemoveFromStage(), this.fEHj(this.rect, this.onclick); + }), + (i.prototype.onclick = function (e) { + switch (e.currentTarget) { + case this.box: + if (this._canVip) { + if (e.currentTarget.selected) { + var haveGoodItem = t.ThgMu.ins().checkBagGoodItemByLevel(this.data.itemlevel); + if (haveGoodItem[0]) { + this.box.selected = !1; + return; + } + } + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Recycle, this.data.optionid, e.currentTarget.selected ? 1 : 0); + this.setCheckBox(this.data.optionid - 1, e.currentTarget.selected); + t.ThgMu.ins().setBagRecycleSelect(this.data.itemlevel, e.currentTarget.selected), t.ThgMu.ins().postBagRecycleSelect(); + } else { + var i = t.VipData.ins().getVipDataByLv(this.data.VipLV), + n = t.zlkp.replace(t.CrmPU.language_Tips137, i.name); + t.uMEZy.ins().IrCm(n); + } + break; + case this.rect: + var s = t.VipData.ins().getVipDataByLv(this.data.VipLV), + a = t.zlkp.replace(t.CrmPU.language_Tips137, s.name); + t.uMEZy.ins().IrCm(a); + } + }), + i + ); + })(t.BaseItemRender); + (t.SetUpRecycleItemCheckBox = e), __reflect(e.prototype, "app.SetUpRecycleItemCheckBox"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return (i.isMc = 0), (i.autoTaskId = -1), (i._canSmart = !1), (i.skinName = "SetUpRecycleSkin"), (i.isMc = t), i; + } + return ( + __extends(i, e), + (i.prototype.stoMc = function () { + t.KHNO.ins().removeAll(this); + }), + (i.prototype.updateTask = function () { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask) && !t.qTVCL.ins().isFinding && 0 == t.GameMap.fubenID && 1 == t.edHC.ins().isLargeMapAct) { + var e = t.VrAZQ.ins().getTaskArr(); + if ( + e && + e[0] && + ((7 == e[0].taskID && e[0].taskState) || + (11 == e[0].taskID && e[0].taskState) || + (20 == e[0].taskID && e[0].taskState) || + (27 == e[0].taskID && e[0].taskState) || + (29 == e[0].taskID && e[0].taskState)) + ) { + var i = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + if (i && 1 == i.taskstate) { + this.autoTaskId = i.id; + var n = 7 == i.id ? 0 : 11 == i.id ? 1 : 20 == i.id ? 2 : 27 == i.id ? 3 : 29 == i.id ? 4 : -1, + s = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Recycle, n); + t.VrAZQ.ins().postUpdateTask(1), + this.mouseMc || + ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + s + ? ((this.effGrp.x = 343), + (this.effGrp.y = 536), + t.KHNO.ins().remove(this.udpate6000, this), + t.KHNO.ins().RTXtZF(this.udpate6000_2, this) || t.KHNO.ins().tBiJo(6e3, 1, this.udpate6000_2, this)) + : ((this.effGrp.x = 7 == i.id ? 37 : 11 == i.id ? 207 : 20 == i.id ? 377 : 27 == i.id ? 547 : 29 == i.id ? 37 : -1), + (this.effGrp.y = 29 == i.id ? 151 : 115), + t.KHNO.ins().remove(this.udpate6000_2, this), + t.KHNO.ins().RTXtZF(this.udpate6000, this) || t.KHNO.ins().tBiJo(6e3, 1, this.udpate6000, this)), + this.mouseMc.isPlaying || this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), + 10 == i.taskname.type && this.playOpenMc(); + } + } + } + }), + (i.prototype.playOpenMc = function () { + this.openMc || ((this.openMc = t.ObjectPool.pop("app.MovieClip")), (this.openMc.touchEnabled = !1), (this.openMc.x = 3), (this.openMc.y = -2), this.effGrp.addChild(this.openMc)), + this.openMc.isPlaying || this.openMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", -1); + }), + (i.prototype.stopOpenMc = function () { + this.openMc && (this.openMc.destroy(), (this.openMc = null)); + }), + (i.prototype.udpate6000 = function () { + var e = 7 == this.autoTaskId ? 1 : 11 == this.autoTaskId ? 2 : 20 == this.autoTaskId ? 3 : 27 == this.autoTaskId ? 4 : 29 == this.autoTaskId ? 5 : -1, + s = !0; + if (-1 != e) { + var a = t.VlaoF.RecyclingSettingConfig; + for (var l in a) { + var h = a[l]; + for (var p in h) { + if (h[p].optionid == e) { + if (t.ThgMu.ins().checkBagGoodItemByLevel(h[p].itemlevel)[0]) { + s = !1; + break; + } + } + } + if (!s) break; + } + } + !s && t.uMEZy.ins().pwYDdQ("有可穿戴装备,请先穿戴"); + s && -1 != e && (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Recycle, e, !0), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Recycle, e - 1, !0), this.updatePrivilege(), this.updateTask()); + }), + (i.prototype.udpate6000_2 = function () { + this.doTimerClick(); + }), + Object.defineProperty(i.prototype, "visible", { + set: function (i) { + e.prototype.$setVisible.call(this, i), + t.KHNO.ins().removeAll(this), + i + ? (t.ThgMu.ins().postBagRecycleSelect(), t.KHNO.ins().tBiJo(1e3, 0, this.updateTask, this), this.updateTask()) + : (this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null), this.stoMc()), this.stopOpenMc()); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.boxList.itemRenderer = t.SetUpRecycleItem), + this.updatePrivilege(), + t.MouseScroller.bind(this.boxScroller), + this.vKruVZ(this.rect, this.onclick), + this.vKruVZ(this.recycle, this.onclick), + this.HFTK(t.Nzfh.ins().post_playerRectVisChange, this.updateRectVis); + var i = t.VlaoF.BasicsSettingmConfig.previlege; + i && ((this.smartRecycle.label = i.name), this.smartRecycle.setCallback(this, this.onclick), (this.smartRecycle.dataObj = i)), t.ThgMu.ins().postBagRecycleSelect(); + var n = this.setRectVis(); + (this._canSmart = !n), (this.rect.visible = n), (this.smartRecycle.isCanClick = this._canSmart); + }), + (i.prototype.doTimerClick = function () { + if ((this.stoMc(), this.addClsoe(), KdbLz.qOtrbE.iFbP)) { + var e = t.mAYZL.ins().ZzTs("app.MainPhoneTaskWin"); + e && (t.VrAZQ.isClickSetup = !1); + } else t.MainTaskWin.isClickSetup = !1; + (t.MainTaskWin.isTaskSetUpMC = !1), t.pWFTj.ins().batchRecycle(); + }), + (i.prototype.updateRectVis = function () { + var e = this.setRectVis(); + (this._canSmart = !e), + (this.rect.visible = e), + (this.smartRecycle.isCanClick = this._canSmart), + e && (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoRecycle, 1), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoRecycle, !0)); + }), + (i.prototype.setRectVis = function () { + var e = !1, + i = t.NWRFmB.ins().getPayer; + return i && i.propSet && (e = 1 == i.propSet.getRecoverState()), e ? ((this.smartRecycle.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoRecycle)), !1) : !0; + }), + (i.prototype.updatePrivilege = function () { + var e, + i = [], + n = "", + s = "", + a = t.VlaoF.RecyclingSettingConfig; + for (var r in a) { + var o = a[r]; + for (var l in o) { + (e = o[l].id), (n = o[l].title), (s = o[l].Titletips); + break; + } + i.push({ + ID: e, + title: n, + tips: s, + }); + } + (this.boxList.dataProvider = new eui.ArrayCollection(i)), t.ThgMu.ins().delBagRecycleSelect(); + for (var l in a) { + var h = a[l]; + for (var p in h) { + var u = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Recycle, h[p].optionid - 1); + t.ThgMu.ins().setBagRecycleSelect(h[p].itemlevel, u); + } + } + }), + (i.prototype.addClsoe = function () { + this.mouseMc && + ((this.clseGroup.visible = !0), + this.vKruVZ(this.clseGroup, this.closeTime), + (this.effGrp.x = 742), + (this.effGrp.y = -32), + t.KHNO.ins().RTXtZF(this.closeTime, this) || t.KHNO.ins().tBiJo(6e3, 1, this.closeTime, this)); + }), + (i.prototype.closeTime = function () { + (this.clseGroup.visible = !1), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null), this.stoMc(), t.mAYZL.ins().close(t.SetUpView)), this.stopOpenMc(); + }), + (i.prototype.onclick = function (e) { + switch (e.currentTarget) { + case this.smartRecycle: + this._canSmart + ? (t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_Basics, e.data.pos + 7, e.currentTarget.selected ? 1 : 0), t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_Basics, e.data.pos + 7, e.currentTarget.selected)) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt54); + break; + case this.rect: + t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt54); + break; + case this.recycle: + if ((this.stoMc(), this.addClsoe(), KdbLz.qOtrbE.iFbP)) { + var i = t.mAYZL.ins().ZzTs("app.MainPhoneTaskWin"); + i && (t.VrAZQ.isClickSetup = !1); + } else t.MainTaskWin.isClickSetup = !1; + t.MainTaskWin.isTaskSetUpMC = !1; + var n = t.VlaoF.BagRemainConfig[5]; + if (n) { + var s = t.ThgMu.ins().getBagCapacity(n.bagremain); + s ? t.pWFTj.ins().batchRecycle(!0) : t.uMEZy.ins().IrCm(n.bagtips); + } + break; + default: + e.data; + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + this.fEHj(this.clseGroup, this.closeTime), + this.stoMc(), + t.MouseScroller.unbind(this.boxScroller), + this.smartRecycle.$onRemoveFromStage(), + this.fEHj(this.rect, this.onclick), + this.fEHj(this.recycle, this.onclick), + this.removeObserve(); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpRecycleView = e), __reflect(e.prototype, "app.SetUpRecycleView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "SetUpSystemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + this.basicsLab.push({ + text: t.CrmPU.language_SetUp_Text16, + x: 22, + y: 23, + }), + this.basicsLab.push({ + text: t.CrmPU.language_SetUp_Text61, + x: 39, + y: 250, + }), + KdbLz.qOtrbE.iFbP && + ((this.rockerImg.visible = !0), + this.basicsLab.push({ + text: t.CrmPU.language_SetUp_Text67, + x: 39, + y: 370, + })), + e.prototype.initUI.call(this), + this.HFTK(t.XwoNAr.ins().post_17_4, this.updateCheckBox), + (this.openSound.label = t.CrmPU.language_SetUp_Text14), + this.openSound.setCallback(this, this.onclick), + (this.openSound.dataObj = t.VlaoF.SystemSettingmConfig[1]), + (this.openBgSound.label = t.CrmPU.language_SetUp_Text15), + this.openBgSound.setCallback(this, this.onclick), + (this.openBgSound.dataObj = t.VlaoF.SystemSettingmConfig[2]), + (this.highQuality.label = t.CrmPU.language_Common_151), + this.highQuality.setCallback(this, this.onclick), + (this.highQuality.dataObj = t.VlaoF.SystemSettingmConfig[3]), + (this.lowQuality.label = t.CrmPU.language_Common_152), + this.lowQuality.setCallback(this, this.onclick), + (this.lowQuality.dataObj = t.VlaoF.SystemSettingmConfig[4]), + (this.swimShow.label = t.CrmPU.language_Common_153), + this.swimShow.setCallback(this, this.onclick), + (this.swimShow.dataObj = t.VlaoF.SystemSettingmConfig[5]), + (this.scale1.label = t.CrmPU.language_Common_158), + this.scale1.setCallback(this, this.onclick), + (this.scale1.dataObj = t.VlaoF.SystemSettingmConfig[6]), + (this.scale2.label = t.CrmPU.language_Common_159), + this.scale2.setCallback(this, this.onclick), + (this.scale2.dataObj = t.VlaoF.SystemSettingmConfig[7]), + (this.scale3.label = t.CrmPU.language_Common_160), + this.scale3.setCallback(this, this.onclick), + (this.scale3.dataObj = t.VlaoF.SystemSettingmConfig[8]), + (this.closeEff.label = t.CrmPU.language_Common_183), + this.closeEff.setCallback(this, this.onclick), + (this.closeEff.dataObj = t.VlaoF.SystemSettingmConfig[9]), + (this.closeMap.label = "屏蔽地图"), + this.closeMap.setCallback(this, this.onclick), + (this.closeMap.dataObj = t.VlaoF.SystemSettingmConfig[12]), + (this.rocker1.label = t.CrmPU.language_SetUp_Text68), + this.rocker1.setCallback(this, this.onclick), + (this.rocker1.dataObj = t.VlaoF.SystemSettingmConfig[10]), + (this.rocker2.label = t.CrmPU.language_SetUp_Text69), + this.rocker2.setCallback(this, this.onclick), + (this.rocker2.dataObj = t.VlaoF.SystemSettingmConfig[11]), + this.updateCheckBox(); + }), + (i.prototype.updateCheckBox = function () { + (this.openSound.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Sound)), + (this.openBgSound.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound)), + (this.highQuality.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality)), + (this.lowQuality.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality)), + (this.swimShow.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow)), + (this.scale1.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1)), + (this.scale2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2)), + (this.scale3.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3)), + (this.closeEff.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeEff)), + (this.closeMap.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeMap)), + KdbLz.qOtrbE.iFbP + ? ((this.rocker1.visible = !0), + (this.rocker2.visible = !0), + (this.rocker1.selected = !t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker)), + (this.rocker2.selected = t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker))) + : ((this.rocker1.visible = !1), (this.rocker2.visible = !1)); + }), + (i.prototype.onclick = function (e) { + switch (e.currentTarget) { + case this.openSound: + t.AHhkf.ins().setEffectOn(e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Sound, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Sound, e.currentTarget.selected ? 1 : 0); + break; + case this.openBgSound: + t.AHhkf.ins().setBgOn(e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_BgSound, e.currentTarget.selected ? 1 : 0); + break; + case this.highQuality: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality) + ? (this.highQuality.selected = !e.currentTarget.selected) + : (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, e.currentTarget.selected ? 1 : 0), + t.aTwWrO.ins().setFrameRate(60), + (this.lowQuality.selected = !e.currentTarget.selected), + (this.swimShow.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, e.currentTarget.selected ? 0 : 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, e.currentTarget.selected ? 0 : 1)); + break; + case this.lowQuality: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality) + ? (this.lowQuality.selected = !e.currentTarget.selected) + : (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, e.currentTarget.selected ? 1 : 0), + t.aTwWrO.ins().setFrameRate(30), + (this.highQuality.selected = !e.currentTarget.selected), + (this.swimShow.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, e.currentTarget.selected ? 0 : 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, e.currentTarget.selected ? 0 : 1)); + break; + case this.swimShow: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow) + ? (this.swimShow.selected = !e.currentTarget.selected) + : (t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_SwimShow, e.currentTarget.selected ? 1 : 0), + t.aTwWrO.ins().setFrameRate(10), + (this.lowQuality.selected = !e.currentTarget.selected), + (this.highQuality.selected = !e.currentTarget.selected), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_LowQuality, e.currentTarget.selected ? 0 : 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, !e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_HighQuality, e.currentTarget.selected ? 0 : 1)); + break; + case this.scale1: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1) || + (t.aTwWrO.ins().setScale(1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, 0), + (this.scale1.selected = !0), + (this.scale2.selected = !1), + (this.scale3.selected = !1), + t.mAYZL.gamescene.updateScale()); + break; + case this.scale2: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2) || + (t.aTwWrO.ins().setScale(1.25), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, 1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, 0), + (this.scale1.selected = !1), + (this.scale2.selected = !0), + (this.scale3.selected = !1), + t.mAYZL.gamescene.updateScale()); + break; + case this.scale3: + t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3) || + (t.aTwWrO.ins().setScale(1.5), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale1, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale2, 0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_scale3, 1), + (this.scale1.selected = !1), + (this.scale2.selected = !1), + (this.scale3.selected = !0), + t.mAYZL.gamescene.updateScale()); + break; + case this.closeEff: + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeEff, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeEff, e.currentTarget.selected ? 1 : 0); + case this.closeMap: + t.uMEZy.ins().pwYDdQ("该功能暂未开放"); + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeMap, e.currentTarget.selected), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_closeMap, e.currentTarget.selected ? 1 : 0); + case this.rocker1: + (this.rocker1.selected = !0), + (this.rocker2.selected = !1), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker, !1), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker, 0), + t.XwoNAr.ins().updateRocker(); + break; + case this.rocker2: + (this.rocker1.selected = !1), + (this.rocker2.selected = !0), + t.XwoNAr.ins().ywzle(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker, !0), + t.XwoNAr.ins().send_17_4(t.BRMgl.SetUp_System, t.Kdae.SetUp_Type_Rocker, 1), + t.XwoNAr.ins().updateRocker(); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this), + this.openSound.$onRemoveFromStage(), + this.openBgSound.$onRemoveFromStage(), + this.fEHj(this.openSound, this.onclick), + this.fEHj(this.openBgSound, this.onclick), + this.highQuality.$onRemoveFromStage(), + this.lowQuality.$onRemoveFromStage(), + this.fEHj(this.highQuality, this.onclick), + this.fEHj(this.lowQuality, this.onclick), + this.swimShow.$onRemoveFromStage(), + this.scale1.$onRemoveFromStage(), + this.scale2.$onRemoveFromStage(), + this.scale3.$onRemoveFromStage(), + this.closeEff.$onRemoveFromStage(), + this.closeMap.$onRemoveFromStage(), + this.fEHj(this.swimShow, this.onclick), + this.fEHj(this.scale1, this.onclick), + this.fEHj(this.scale2, this.onclick), + this.fEHj(this.scale3, this.onclick), + this.fEHj(this.closeEff, this.onclick), + this.fEHj(this.closeMap, this.onclick), + this.removeObserve(), + (this.openSound = null), + (this.openBgSound = null), + (this.highQuality = null), + (this.lowQuality = null), + (this.swimShow = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.SetUpBaseView); + (t.SetUpSystem = e), __reflect(e.prototype, "app.SetUpSystem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.basicView = null), + (i.itemView = null), + (i.drugsView = null), + (i.protectView = null), + (i.aiView = null), + (i.sysemView = null), + (i.recycleView = null), + (i.helpBtn = null), + (i.tabAry = [ + { + name: "基础", + }, + { + name: "系统", + }, + { + name: "物品", + }, + { + name: "药品", + }, + { + name: "保护", + }, + { + name: "挂机", + }, + { + name: "回收", + }, + ]), + (i.recycleMc = 0), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + (i.name = "SetUpView"), + (i.skinName = "SetUpSkin"), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "getUpViewIdx", { + get: function () { + return this.tabBar ? this.tabBar.selectedIndex : 0; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.resetButton.label = t.CrmPU.language_SetUp_Btn), + this.addTouchEndEvent(this.resetButton, this.onReset), + (this.pagAry = ["basicView", "sysemView", "itemView", "drugsView", "protectView", "aiView", "recycleView"]), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_SetUp_Title), + (this.tabBar.itemRenderer = t.TradeLineTabView), + (this.tabBar.dataProvider = new eui.ArrayCollection(this.tabAry)), + this.addChangeEvent(this.tabBar, this.onClick); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + t[0] ? (t[1] && (this.recycleMc = t[1]), (this.tabBar.selectedIndex = t[0]), this.setTabData(t[0])) : ((this.tabBar.selectedIndex = 0), this.setTabData(0)); + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.tabBar: + this.setTabData(this.tabBar.selectedIndex); + } + }), + (i.prototype.updatePag = function () { + for (var t = 0; t < this.pagAry.length; t++) { + t == this.tabBar.selectedIndex ? (this[this.pagAry[t]] || this.openPag(this.pagAry[t]), (this[this.pagAry[t]].visible = !0)) : this[this.pagAry[t]] && (this[this.pagAry[t]].visible = !1); + } + }), + (i.prototype.openPag = function (e) { + switch (e) { + case "basicView": + (this.basicView = new t.SetUpBasics()), this.pageGrp.addChild(this.basicView); + break; + case "itemView": + (this.itemView = new t.SetUpItem()), this.pageGrp.addChild(this.itemView); + break; + case "drugsView": + (this.drugsView = new t.SetUpDrugs()), this.pageGrp.addChild(this.drugsView); + break; + case "protectView": + (this.protectView = new t.SetUpProtect()), this.pageGrp.addChild(this.protectView); + break; + case "aiView": + (this.aiView = new t.SetUpAI()), this.pageGrp.addChild(this.aiView); + break; + case "sysemView": + (this.sysemView = new t.SetUpSystem()), this.pageGrp.addChild(this.sysemView); + break; + case "recycleView": + (this.recycleView = new t.SetUpRecycleView(this.recycleMc)), this.pageGrp.addChild(this.recycleView); + } + }), + (i.prototype.setTabData = function (t) { + this.updatePag(), 6 == t ? (this.resetButton.visible = !1) : (this.resetButton.visible = !0), this.isShowHelp(t), (this.bg2.height = 1 == t ? 500 : 568); + }), + (i.prototype.isShowHelp = function (t) { + 6 == t ? ((this.helpBtn.visible = !0), (this.helpBtn.ruleId = 71)) : 2 > t || t > 4 ? (this.helpBtn.visible = !1) : ((this.helpBtn.ruleId = t + 25), (this.helpBtn.visible = !0)); + }), + (i.prototype.onReset = function () { + t.CautionView.show( + "确定要恢复本页的默认设置?", + function () { + t.XwoNAr.ins().send_17_6(this.tabBar.selectedIndex + 1); + }, + this + ); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null); + for (var s = 0; s < this.pagAry.length; s++) this[this.pagAry[s]] && this[this.pagAry[s]].close(); + t.ThgMu.ins().postBagRecycleSelect(), + (this.basicView = null), + (this.itemView = null), + (this.drugsView = null), + (this.protectView = null), + (this.aiView = null), + (this.sysemView = null), + (this.recycleView = null), + t.ObjectPool.wipe(this.tabAry), + (this.tabAry.length = 0), + (this.tabAry = null), + this.helpBtn.$onRemoveFromStage(), + this.removeTouchEndEvent(this.resetButton, this.onReset), + (this.tabBar.itemRenderer = null), + (this.tabBar.dataProvider = null), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onClick, this), + (this.pageGrp = null), + (this.pagAry = null), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.SetUpView = e), __reflect(e.prototype, "app.SetUpView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._actID = 13), (i.isHaveGuild = !1), (i.cdTime = 0), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER2), (i.skinName = "ShaChengStarcraftWinSkin"), (i.touchEnabled = !1), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.actReward.itemRenderer = t.ItemBase), + (this.dukeRewadr.itemRenderer = t.ItemBase), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_System90); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this._actID = t.GlobalData.sectionOpenDay <= 3 ? 41 : t.ubnV.ihUJ ? 26 : 13), + (this.roleInnerModel0 = new t.RoleInnerModel(this.modelGroup0)), + (this.roleInnerModel1 = new t.RoleInnerModel(this.modelGroup1)), + (this.roleInnerModel2 = new t.RoleInnerModel(this.modelGroup2)), + this.vKruVZ(this.receliveBtn, this.onClick), + this.vKruVZ(this.goBtn, this.onClick), + (this.tabList.dataProvider = new eui.ArrayCollection([ + { + name: t.CrmPU.language_System90, + }, + { + name: t.CrmPU.language_System91, + }, + ])), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + (this.tabList.selectedIndex = 0), + this.HFTK(t.bfhrJ.ins().post_10_26, this.updateName), + this.HFTK(t.edHC.ins().post_26_66, this.updateTab1Info), + (this.appoint1.visible = this.appoint2.visible = this.name0.visible = this.name1.visible = this.name2.visible = !1), + t.bfhrJ.ins().send_10_25(), + this.setActTimeCD(), + t.edHC.ins().send_26_66(), + this.setTabGrp2Info(), + this.updateList(0); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.receliveBtn: + t.bfhrJ.ins().send_10_24(); + break; + case this.goBtn: + var ts = this; + var enterSBK = function () { + var i = t.TQkyOx.ins().getActivityConfigById(ts._actID); + i && i.toflyid && (t.PKRX.ins().s_1_6(i.toflyid.FlyTable, i.toflyid.Flyid), t.mAYZL.ins().close(ts)); + }; + if (true) { + t.CautionView.show( + "确定前往沙巴克?", + function () { + enterSBK(); + }, + this + ); + } else { + enterSBK(); + } + } + }), + (i.prototype.updateTab1Info = function (t) { + var e = 0; + this.isHaveGuild && (this.appoint1.visible = this.appoint2.visible = !0); + for (var i = 0; i < t.length; i++) { + var n = t[i]; + 4 == n.type + ? n.otherInfo && ((this.imgModel0.visible = !1), (this.name0.visible = !0), (this.name0.text = n.otherInfo.name), this.roleInnerModel0.setOtherData(n.otherInfo.equips, n.otherInfo)) + : 3 == n.type && + n.otherInfo && + (e++, + (this["imgModel" + e].visible = !1), + (this["name" + e].text = n.otherInfo.name), + (this["name" + e].visible = !0), + (this["appoint" + e].visible = !1), + this["roleInnerModel" + e].setOtherData(n.otherInfo.equips, n.otherInfo)); + } + }), + (i.prototype.setActTimeCD = function () { + var e = t.VlaoF.ActivityNoticeConfig[1][this._actID]; + if (!e || t.mAYZL.ins().isCheckOpen(e.isOpenNeed)) { + var i = t.TQkyOx.ins().getActivityInfo(this._actID); + t.TQkyOx.ins().getActivityConfigById(this._actID); + if (i && i.redDot) t.KHNO.ins().remove(this.updateCDTime, this), (this.actTimeLab.textFlow = t.hETx.qYVI("|C:0x28ee01&T:" + t.CrmPU.language_Common_172 + "|")); + else { + if (e && e.TimeDetail) + for (var n in e.TimeDetail) { + var s = e.TimeDetail[n], + a = s.StartTime, + r = new Date(t.GlobalData.serverTime), + o = r.getHours(), + l = r.getMinutes(), + h = r.getSeconds(), + p = r.getDay(), + u = 0, + c = 0; + if (s.type) { + var g = a.split(":"); + if (+g[0] > o || (+g[0] == o && +g[1] > l)) { + if ( + ((u = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = +g[0] * t.DateUtils.MS_PER_HOUR + g[1] * t.DateUtils.MS_PER_MINUTE), + c > u ? (this.cdTime = c - u) : u > c && (this.cdTime = t.DateUtils.MS_PER_DAY - (u - c)), + this.cdTime > 0) + ) { + (this.cdTime += egret.getTimer()), this.updateCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this); + break; + } + } else t.KHNO.ins().remove(this.updateCDTime, this), (this.actTimeLab.text = ""); + } else { + var d = a.split("-"), + m = d[1].split(":"); + if (0 == p && 7 != +d[0]) { + this.actTimeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt110, "3天")); + break; + } + if ((+d[0] == p && (+m[0] > o || (+m[0] == o && +m[1] > l))) || (0 == p && 7 == +d[0] && (+m[0] > o || (+m[0] == o && +m[1] > l)))) { + if ( + ((u = o * t.DateUtils.MS_PER_HOUR + l * t.DateUtils.MS_PER_MINUTE + 1e3 * h), + (c = +m[0] * t.DateUtils.MS_PER_HOUR + m[1] * t.DateUtils.MS_PER_MINUTE), + c > u ? (this.cdTime = c - u) : u > c && (this.cdTime = t.DateUtils.MS_PER_DAY - (u - c)), + this.cdTime > 0) + ) { + (this.cdTime += egret.getTimer()), this.updateCDTime(), t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this); + break; + } + } else { + if (+d[0] == p && (m[0] < o || (m[0] == o && +m[1] < l))) { + var f = 3 == p ? "3" : 6 == p ? "4" : 0 == p ? "7" : ""; + this.actTimeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt110, f + "天")); + break; + } + if (+d[0] > p) { + this.actTimeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt110, +d[0] - p + "天")); + break; + } + } + } + } + } + } else if (e.isOpenNeed.openDay) { + var v = e.isOpenNeed.openDay - t.GlobalData.sectionOpenDay; + this.actTimeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt110, v + "天")); + } + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - egret.getTimer(), + i = t.DateUtils.getShaBaKeCD(e); + (this.actTimeLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt110, i))), 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.actTimeLab.text = "")); + }), + (i.prototype.updateName = function (e) { + "" == e[1] + ? (this.guildName.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt109 + "|C:0xe50000&T:" + t.CrmPU.language_Omission_txt89 + "|")) + : ((this.isHaveGuild = !0), (this.guildName.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt109 + "|C:0xeee104&T:" + e[1] + "|"))); + }), + (i.prototype.setTabGrp2Info = function () { + var e = t.TQkyOx.ins().getActivityConfigById(this._actID); + e && + ((this.actTimeLab2.textFlow = t.hETx.qYVI(e.Ntipstext_2)), + (this.actDescLab.textFlow = t.hETx.qYVI(e.Ntipstext_3)), + (this.actReward.dataProvider = new eui.ArrayCollection(e.rewards)), + (this.dukeRewadr.dataProvider = new eui.ArrayCollection(e.czrewards))); + }), + (i.prototype.onChange = function (t) { + (this.tabList.selectedIndex = t.itemIndex), this.updateList(t.itemIndex); + }), + (i.prototype.updateList = function (t) { + 0 == t ? ((this.tabGrp0.visible = !0), (this.tabGrp1.visible = !1)) : 1 == t && ((this.tabGrp0.visible = !1), (this.tabGrp1.visible = !0)); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.roleInnerModel0.destory(), + this.roleInnerModel1.destory(), + this.roleInnerModel2.destory(), + this.fEHj(this.receliveBtn, this.onClick), + this.fEHj(this.goBtn, this.onClick), + t.KHNO.ins().remove(this.updateCDTime, this), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this); + }), + i + ); + })(t.gIRYTi); + (t.ShaChengStarcraftWin = e), __reflect(e.prototype, "app.ShaChengStarcraftWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.shopList = []), + (i.npcCog = 0), + (i.sysId = t.jDIWJt.Shop), + i.YrTisc(t.ShopProtocol.sc_responseShopList, i.post_onReceiveshopList), + i.YrTisc(t.ShopProtocol.sc_responseBuyGood, i.post_onReceivesBuyGoods), + i.YrTisc(t.ShopProtocol.sc_responseOpenShop, i.post_onReceivesOpenShopView), + i + ); + } + return ( + __extends(i, e), + (i.prototype.post_onReceivesOpenShopView = function (e) { + var i = e.readByte(), + n = e.readByte(); + (this.npcCog = e.readNumber()), t.mAYZL.ins().open(t.ShopView, i, n, this.npcCog); + }), + (i.prototype.post_onReceiveshopList = function (e) { + (this.shopType = e.readByte()), (this.shopSmallType = e.readByte()); + var i, + n = e.readByte(); + this.shopList = []; + for (var s = 0; n > s; s++) + (i = new t.ShopData()), + (i.shopType = this.shopType), + (i.shopSmallType = this.shopSmallType), + (i.shopId = e.readInt()), + (i.buyCountNum = e.readByte()), + (i.buyLimitNum = e.readInt()), + (i.buySell = e.readByte()), + (i.isLimit = e.readByte()), + this.shopList.push(i); + }), + (i.prototype.getShopList = function () { + var e = [], + i = 0, + n = t.NWRFmB.ins().getPayer; + n && n.propSet && (i = n.propSet.getGuildLevel()); + for (var s = t.VlaoF.ShopConfig[this.shopType][this.shopSmallType], a = 0; a < this.shopList.length; a++) { + var r = s[this.shopList[a].shopId]; + (r && r.guildLevel && r.guildLevel > i) || e.push(this.shopList[a]); + } + return e.sort(this.shopSort), e; + }), + (i.prototype.shopSort = function (t, e) { + return t.shopId > e.shopId ? 1 : -1; + }), + (i.prototype.post_onReceivesBuyGoods = function (t) { + var e = t.readByte(), + i = t.readByte(), + n = t.readInt(), + s = t.readInt(); + return [e, i, n, s]; + }), + (i.prototype.sendShopList = function (e, i) { + var n = this.MxGiq(t.ShopProtocol.cs_requestShopList); + n.writeByte(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.sendBuyShop = function (e, i, n, s, a) { + void 0 === a && (a = 1); + var r = this.MxGiq(t.ShopProtocol.cs_requestBuyGood); + r.writeByte(e), r.writeByte(i), r.writeByte(n), r.writeNumber(s), r.writeInt(a), this.evKig(r); + }), + (i.prototype.getShopTabList = function (e) { + var i = t.VlaoF.ShoptagConfig[e], + n = []; + for (var s in i) { + if (!i[Number(s)] || (6 == s && Main.vZzwB.specialId != t.MiOx.srvid)) continue; + t.mAYZL.ins().isCheckOpen(i[s].openlimit) && !t.mAYZL.ins().isCheckClose(i[s].closelimit) && n.push(i[s]); + } + return n; + }), + (i.ins = function () { + return e.ins.call(this); + }), + i + ); + })(t.DlUenA); + (t.ShopMgr = e), __reflect(e.prototype, "app.ShopMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.findItemIcon = function (t, i, n) { + var s = e.findShopCnf(t, i, n); + if (s) { + var a = e.convertItemIcon({ + type: s.shop.type, + id: s.shop.id, + }); + return a; + } + return null; + }), + (e.convertItemIcon = function (e) { + if (0 == e.type) { + var i = t.VlaoF.StdItems[e.id]; + return i; + } + var n = t.VlaoF.NumericalIcon[e.type]; + return n; + }), + (e.findShopCnf = function (e, i, n) { + var s = t.VlaoF.ShopConfig, + a = s[i][n]; + return a && a[e]; + }), + e + ); + })(); + (t.ShopConfData = e), __reflect(e.prototype, "app.ShopConfData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return t; + })(); + (t.ShopData = e), __reflect(e.prototype, "app.ShopData"); + var i; + !(function (t) { + (t[(t.cs_requestShopList = 1)] = "cs_requestShopList"), + (t[(t.cs_requestBuyGood = 2)] = "cs_requestBuyGood"), + (t[(t.sc_responseShopList = 1)] = "sc_responseShopList"), + (t[(t.sc_responseBuyGood = 2)] = "sc_responseBuyGood"), + (t[(t.sc_responseOpenShop = 3)] = "sc_responseOpenShop"); + })((i = t.ShopProtocol || (t.ShopProtocol = {}))); + var n = (function () { + function t() {} + return t; + })(); + (t.ShopBuyData = n), __reflect(n.prototype, "app.ShopBuyData"); + var s; + !(function (t) { + (t[(t.Shop = 1)] = "Shop"), (t[(t.ShopGuild = 2)] = "ShopGuild"), (t[(t.GroceryStore = 3)] = "GroceryStore"); + })((s = t.ShopTypes || (t.ShopTypes = {}))); + var a; + !(function (t) { + (t[(t.ShopHot = 101)] = "ShopHot"), (t[(t.ShopSale = 102)] = "ShopSale"); + })((a = t.ShopHotTypes || (t.ShopHotTypes = {}))); + var r; + !(function (t) { + (t[(t.Level = 1)] = "Level"), (t[(t.ZhuanshenLv = 2)] = "ZhuanshenLv"), (t[(t.KaifuDay = 3)] = "KaifuDay"); + })((r = t.ShopSmallTypes || (t.ShopSmallTypes = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.itemID = 0), + (i.shopId = 0), + (i.currentNum = 1), + (i.maxNum = 1), + (i.shopType = 0), + (i.shopSmallType = 0), + (i.limitNum = 0), + (i.skinName = "ShopBatchBuySkin"), + (i.name = "ShopBatchBuyView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setCurrentState("default5"), this.dragDropUI.setParent(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && ((this.shopId = e[0]), (this.shopType = e[1]), (this.shopSmallType = e[2]), (this.limitNum = e[3])), + t.MouseScroller.bind(this.scroller), + this.lbNum.addEventListener(egret.FocusEvent.CHANGE, this.textChange, this); + this.lbNum.addEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOut, this); + this.vKruVZ(this.btnAdd, this.onClick), + this.vKruVZ(this.btnAddadd, this.onClick), + this.vKruVZ(this.btnBuy, this.onClick), + this.vKruVZ(this.btnCannel, this.onClick), + this.vKruVZ(this.btnLess, this.onClick), + this.vKruVZ(this.btnLessLess, this.onClick), + this.initViewData(); + }), + (i.prototype.initViewData = function () { + var e = t.ShopConfData.findShopCnf(this.shopId, this.shopType, this.shopSmallType), + i = e.shop.id; + (this.maxNum = this.limitNum > -1 ? this.limitNum : e.Maxbatchbuy), (this.lbNum.text = "1"); + var n = 5395542; + if (e) { + (this.itemData.data = e.shop), + (this.icon_Itemprite.source = t.ShopConfData.convertItemIcon(e.price).icon.toString()), + (this.icon_item.source = t.ShopConfData.convertItemIcon(e.price).icon.toString()), + (this.lbPrice.text = e.price.count + ""), + (this.lbCount.text = e.price.count * Number(this.lbNum.text) + ""); + var s = t.ZAJw.sztgR(e.shop.type, e.shop.id); + (this.itemName.text = s ? s[0] : ""), (this.itemDesc.text = s ? s[2] : ""); + } + if (e.shop && 0 == e.shop.type && 0 != i) { + var s = t.VlaoF.StdItems[i]; + s && ((n = t.ClwSVR.GOODS_COLOR[s.showQuality]), (this.itemName.textFlow = t.hETx.qYVI("|C:" + n + "&T:" + s.name + "|")), (this.itemDesc.textFlow = t.hETx.qYVI(s.desc))); + } + }), + (i.prototype.textChange = function (t) { + //this.textNumber = +t.target.text + this.updateMoneyCount(); + }), + (i.prototype.textFocusOut = function (t) { + //this.textNumber = +t.target.text + this.updateMoneyCount(); + }), + (i.prototype.updateMoneyCount = function () { + this.lbCount.text = Number(this.lbPrice.text) * Number(this.lbNum.text) + ""; + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnAdd: + this.add(1); + break; + case this.btnAddadd: + this.add(10); + break; + case this.btnBuy: + this.onBuy(); + break; + case this.btnCannel: + t.mAYZL.ins().close(this); + break; + case this.btnLess: + this.sub(1); + break; + case this.btnLessLess: + this.sub(10); + } + }), + (i.prototype.onBuy = function () { + var e = Number(this.lbNum.text); + t.ShopMgr.ins().sendBuyShop(this.shopType, this.shopSmallType, this.shopId, t.ShopMgr.ins().npcCog, e); + }), + (i.prototype.add = function (t) { + var e = (Number(this.lbNum.text), Math.min(Number(this.lbNum.text) + t, this.maxNum)); + (this.lbNum.text = e + ""), this.updateMoneyCount(); + }), + (i.prototype.sub = function (t) { + var e = (Number(this.lbNum.text), Math.max(Number(this.lbNum.text) - t, 1)); + (this.lbNum.text = e + ""), this.updateMoneyCount(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.lbNum.removeEventListener(egret.FocusEvent.CHANGE, this.textChange, this); + this.lbNum.removeEventListener(egret.FocusEvent.FOCUS_OUT, this.textFocusOut, this); + this.fEHj(this.btnAdd, this.onClick), + this.fEHj(this.btnAddadd, this.onClick), + this.fEHj(this.btnBuy, this.onClick), + this.fEHj(this.btnCannel, this.onClick), + this.fEHj(this.btnLess, this.onClick), + this.fEHj(this.btnLessLess, this.onClick), + t.MouseScroller.unbind(this.scroller); + }), + i + ); + })(t.gIRYTi); + (t.ShopBatchBuyView = e), __reflect(e.prototype, "app.ShopBatchBuyView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "Btn14Skin"), (t.touchEnabled = !1), (t.touchChildren = !0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + (this.visible = null != this.data), + this.iconDisplay && this.data.source && (this.iconDisplay.source = this.data.source), + this.labelDisplay && this.data.text && (this.labelDisplay.text = this.data.text); + }), + (i.prototype.destroy = function () { + (this.iconDisplay = null), (this.labelDisplay = null), t.lEYZI.Naoc(this); + }), + i + ); + })(eui.ItemRenderer); + (t.ShopBuyBtnView = e), __reflect(e.prototype, "app.ShopBuyBtnView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "ShopHotViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.setState = function (t) { + t ? (this.currentState = "odd") : (this.currentState = "dual"); + }), + (i.prototype.setOddNum = function (e) { + return e > 100 + ? ((this.hotIon0.visible = !0), + e == t.ShopHotTypes.ShopHot ? (this.hotIon0.source = "shop_rexiao") : e == t.ShopHotTypes.ShopSale && (this.hotIon0.source = "shop_xianshi"), + (this.oddNum.visible = !1), + void (this.oddText.visible = !1)) + : ((this.oddNum.source = "shop_zhekou_" + e / 10), (this.hotIon0.visible = !1), (this.oddNum.visible = !0), void (this.oddText.visible = !0)); + }), + (i.prototype.setDualNum = function (t, e) { + (this.dualNum_0.source = "shop_zhekou_" + t), (this.dualNum_1.source = "shop_zhekou_" + e); + }), + (i.prototype.destroy = function () { + (this.hotOddGp = null), + (this.hotIon1 = null), + (this.dualNum_0 = null), + (this.dualNum_1 = null), + (this.dualText = null), + (this.hotDualGp = null), + (this.hotIon0 = null), + (this.oddNum = null), + (this.oddText = null), + t.lEYZI.Naoc(this); + }), + i + ); + })(t.BaseView); + (t.ShopHotView = e), __reflect(e.prototype, "app.ShopHotView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.batchbuy = 0), (i.item = new Object()), (i.hot = new t.ShopHotView()), (i.buyBtn = new t.ShopBuyBtnView()), i; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.hot.x = this.hot.y = 0), + (this.buyBtn.x = 101), + (this.buyBtn.y = 85), + this.addChild(this.hot), + this.addChild(this.buyBtn), + this.vKruVZ(this.buyBtn, this.onClick), + this.VoZqXH(this.goodsItem, this.mouseMove), + this.EeFPm(this.goodsItem, this.mouseMove); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget; + if (i && this.itemId) { + var n = i.localToGlobal(), + s = t.VlaoF.StdItems[this.itemId]; + if (this.item.type > 0) return; + if (s) { + var a = t.TipsType.TIPS_EQUIP; + (a = s.fashionTips ? t.TipsType.TIPS_FASHION : t.TipsType.TIPS_EQUIP), + t.uMEZy.ins().LJzNt(e.target, a, s, { + x: n.x + i.width / 2, + y: n.y + i.height / 2, + }); + } + n = null; + } + i = null; + } + }), + (i.prototype.onClick = function () { + var e = this; + var a = t.ShopConfData.findShopCnf(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + if (a) { + var b = t.ZAJw.MPDpiB(a.price.type, a.price.id); + switch (a.price.type) { + case ZnGy.qatBindMoney: + if (b < a.price.count) return void t.uMEZy.ins().pwYDdQ("金币不足!"); + break; + case ZnGy.qatBindYb: + if (b < a.price.count) return void t.uMEZy.ins().pwYDdQ("银两不足!"); + break; + case ZnGy.qatYuanbao: + if (b < a.price.count) return void t.mAYZL.ins().open(t.TipsInsuffResourcesView, ZnGy.qatYuanbao); + break; + } + } + if (0 < this.itemData.buyLimitNum && 0 >= this.itemData.buyLimitNum - this.itemData.buyCountNum) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips65); + if (this.batchbuy) { + var i = "" == this.numLb.text ? -1 : Number(this.numLb.text); + return 0 == i + ? void t.uMEZy.ins().IrCm(t.CrmPU.language_Shop_Limit_Txt) + : void t.mAYZL.ins().open(t.ShopBatchBuyView, this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType, i); + } + var n = + "|C:0xFFFFFF&T:" + + t.CrmPU.language_Shop_Buy_Item_txt + + "|C:0xDBC789&T:" + + t.CommonUtils.overLength(this.item.price) + + this.item.moneyType + + "|C:0xFFFFFF&T:" + + t.CrmPU.language_System45 + + "|C:0xDBC789&T:" + + this.item.name + + "*" + + t.CommonUtils.overLength(this.item.count), + s = t.hETx.qYVI(n); + 3 == this.item.id || 4 == this.item.id + ? t.CautionView.show( + s, + function () { + t.ShopMgr.ins().sendBuyShop(e.itemData.shopType, e.itemData.shopSmallType, e.itemData.shopId, t.ShopMgr.ins().npcCog); + }, + this + ) + : t.ShopMgr.ins().sendBuyShop(this.itemData.shopType, this.itemData.shopSmallType, this.itemData.shopId, t.ShopMgr.ins().npcCog); + }), + (i.prototype.dataChanged = function () { + if (((this.itemData = this.data), null != this.itemData)) { + var e = t.ShopConfData.findShopCnf(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + this.numTxt.textColor = this.numLb.textColor = t.ClwSVR.WHITE_COLOR; + // 打金分类 + if (6 == this.itemData.shopSmallType) { + var suitName = "", + cfg = t.VlaoF.SuitConfig, + c, + j; + // 查找套装名称 + for (var a in cfg) { + // 遍历所有套装 + j = !1; + c = cfg[a]; + for (var b in c.equip) { + if (e.shop.id == c.equip[b].id) { + suitName = c.name.replace("套装", "套"); + j = !0; + break; + } + } + if (j) break; + } + this.numTxt.visible = !0; + this.numLb.visible = !1; + this.numTxt.text = suitName; + this.numLb.text = ""; + this.numTxt.textColor = this.numLb.textColor = t.ClwSVR.ORANGE; + } else if (0 == this.itemData.buyLimitNum) { + this.numTxt.visible = this.numLb.visible = !1; + this.numLb.text = ""; + } else { + this.numTxt.text = t.CrmPU.language_Common_62; + this.numTxt.visible = this.numLb.visible = !0; + -1 == this.itemData.buyLimitNum ? (this.numLb.text = "") : (this.numLb.text = "" + (this.itemData.buyLimitNum - this.itemData.buyCountNum)); + } + this.buyBtn.labelDisplay.text = e && t.CommonUtils.overLength(e.price.count); + var i = e && { + type: e.price.type, + id: e.price.id, + }; + (this.buyBtn.iconDisplay.source = e && t.ShopConfData.convertItemIcon(i).icon.toString()), (this.countLb.text = e && t.CommonUtils.overLength(e.shop.count)); + var n = t.ShopConfData.findItemIcon(this.itemData.shopId, this.itemData.shopType, this.itemData.shopSmallType); + if ( + ((this.item.moneyType = e && t.VlaoF.NumericalIcon[e.price.type].name), + (this.item.id = e && t.VlaoF.NumericalIcon[e.price.type].id), + (this.item.price = e && e.price.count), + (this.item.count = e && e.shop.count), + (this.item.type = e && e.shop.type), + (this.batchbuy = e.batchbuy), + 0 == this.itemData.buySell) + ) + this.hot.visible = !1; + else if (((this.hot.visible = !0), (this.itemData.buySell = this.itemData.buySell < 10 ? 10 : this.itemData.buySell), this.itemData.buySell % 10 == 0 || this.itemData.buySell >= 100)) + this.hot.setState(!0), this.hot.setOddNum(this.itemData.buySell); + else { + this.hot.setState(!1); + var s = this.itemData.buySell.toString().split(""); + this.hot.setDualNum(s[0], s[1]); + } + n + ? ((this.itemId = n.id), (this.goodsItem.source = n.icon.toString()), (this.shopItemNameLb.text = n.name), (this.item.name = n.name)) + : (this.shopItemNameLb.text = t.CrmPU.language_Tips83), + (e = null), + t.ObjectPool.wipe(i), + (n = null); + } + }), + (i.prototype.destroy = function () { + for ( + this.buyBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.goodsItem.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.hot.destroy(), + this.buyBtn.destroy(), + this.data = null, + this.itemData = null, + this.buyBtn = null, + t.ObjectPool.wipe(this.item), + this.item = null, + this.hot = null; + this.gp.numChildren > 0; + + ) { + var e = this.gp.getChildAt(0); + e && (e = null), this.gp.removeChildAt(0); + } + this.gp = null; + }), + i + ); + })(t.BaseItemRender); + (t.ShopItemView = e), __reflect(e.prototype, "app.ShopItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.shopType = 1), + (i.moneyList = []), + (i.isRfresh = !1), + (i.cdTime = 0), + (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "ShopQQViewSkin" : "ShopViewSkin"), + (i.name = "ShopView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), (this.shopList = new eui.ArrayCollection()), this.bindShopList(), this.setText(); + }), + (i.prototype.setText = function () { + (this.txt0.text = t.CrmPU.language_Shop_Txt0), (this.noListTipsLb.text = t.CrmPU.language_Shop_NotShop_Txt); + }), + (i.prototype.showMoneyType = function (e) { + for (var i = 0; i < e.length; i++) { + (this.moneyP = new t.moneyPanel()), + (this.moneyP.skinName = "moneyPanelSkin"), + (this.moneyP.height = 29), + (this.moneyP.width = 173), + (this.moneyP.y = 574), + (this.moneyP.x = 187 * i + 200 + 2 * i); + t.VlaoF.NumericalIcon[e[i].type]; + this.moneyP.setData(e[i].type, !0), (this.moneyP.type = e[i].type), (this.moneyP.icon.width = this.moneyP.icon.height = 36), this.win.addChild(this.moneyP), this.moneyList.push(this.moneyP); + } + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((t.MouseScroller.bind(this.scroller), e)) for (; e[0] instanceof Array; ) e = e[0]; + (this.shopType = null == e[0] ? 1 : e[0]), (this.dafaultTabshop = null == e[1] ? -1 : e[1]), (t.ShopMgr.ins().npcCog = null == e[2] ? 0 : e[2]); + var n = t.ShopMgr.ins().getShopTabList(this.shopType), + s = t.VlaoF.ShopnameConfig[this.shopType]; + this.showMoneyType(s.costtype), + this.dragDropUI.setTitle(s.shopname), + this.bindOptTabBar(n), + this.vKruVZ(this.btnExchangeMoney, this.showChange), + this.optTab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + (this.lastIndex = -1 == this.dafaultTabshop ? n[0].Tabshop : this.dafaultTabshop), + t.ShopMgr.ins().sendShopList(this.shopType, this.lastIndex), + this.HFTK(t.ShopMgr.ins().post_onReceiveshopList, this.updateShopList), + this.HFTK(t.ShopMgr.ins().post_onReceivesBuyGoods, this.updateBuyGoods), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.changeMoney), + Main.vZzwB.pfID == t.PlatFormID.QQGame ? this.vKruVZ(this.openBlue, this.openBlueFun) : this.updateBanner(), + this.changeMoney(); + for (var a = 0; a < this.optTab.numElements; a++) { + var r = this.optTab.getVirtualElementAt(a); + r && + r.itemIndex + 1 == this.lastIndex && + ((this.optTab.selectedIndex = r.itemIndex), (this.btnExchangeMoney.visible = Boolean(n[a].sctype)), (this.sctype = n[a].sctype), (this.btnExchangeMoney.label = n[a].dealtype)); + } + }), + (i.prototype.showChange = function () { + 0 != this.sctype && + t.mAYZL.ins().open( + t.BagGoldChangeView, + this.sctype, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + }), + (i.prototype.changeMoney = function () { + var e = t.NWRFmB.ins().nkJT(); + if (e && e.propSet) + for (var i = e.propSet, n = 0; n < this.moneyList.length; n++) { + var s = this.moneyList[n]; + if (3 == s.type) { + var a = t.ClwSVR.getMoneyColor(i.getBindYuanBao()), + r = "|C:" + a + "&T:" + t.CommonUtils.zhuanhuan(i.getBindYuanBao()) + "|"; + s.setCount(r); + } else if (2 == s.type) { + var o = t.ClwSVR.getMoneyColor(i.getBindCoin()), + l = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i.getBindCoin()) + "|"; + s.setCount(l); + } else if (10 == s.type) { + var h = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i.getGuildDevote()) + "|"; + s.setCount(h); + } else if (4 == s.type) { + var o = t.ClwSVR.getMoneyColor(i.getNotBindYuanBao()), + l = "|C:" + o + "&T:" + t.CommonUtils.zhuanhuan(i.getNotBindYuanBao()) + "|"; + s.setCount(l); + } else if (12 == s.type) { + var p = "|C:0xe5ddcf&T:" + t.CommonUtils.zhuanhuan(i.getActivity()) + "|"; + s.setCount(p); + } + } + else + for (var n = 0; n < this.moneyList.length; n++) { + var s = this.moneyList[n]; + s.setCount("0"); + } + }), + (i.prototype.bindOptTabBar = function (e) { + this.optTab.itemRenderer = t.TradeLineTabView; + var i = new eui.ArrayCollection(e); + this.optTab.dataProvider = i; + }), + (i.prototype.updateBuyGoods = function (e) { + var i = e[0], + n = e[1], + s = e[2], + a = e[3]; + if (n && s > 0) { + for (var r in this.shopList.source) + if (this.shopList.source[r].shopId == i) { + (this.shopList.source[r].buyCountNum = a), (this.shopList.source[r].buyLimitNum = s), this.shopList.replaceAll(this.shopList.source); + break; + } + } + i > 0 && t.mAYZL.ins().ZbzdY(t.ShopBatchBuyView) && t.mAYZL.ins().close(t.ShopBatchBuyView); + }), + (i.prototype.updateShopList = function () { + if (2 != t.ShopMgr.ins().shopType && 6 != t.ShopMgr.ins().shopType) { + if ((this.shopList.replaceAll(t.ShopMgr.ins().getShopList()), !this.isRfresh)) return; + /*this.scroller.stopAnimation(), + this.scroller.viewport.validateNow(), + this.scroller.viewport.scrollV = 0*/ + } + }), + (i.prototype.bindShopList = function () { + (this.gList.useVirtualLayout = !0), (this.gList.dataProvider = this.shopList), (this.gList.itemRenderer = t.ShopItemView); + }), + (i.prototype.onBarItemTap = function (e) { + var i = e.item; + (this.lastIndex = i.Tabshop), + (this.btnExchangeMoney.visible = Boolean(i.sctype)), + (this.sctype = i.sctype), + (this.btnExchangeMoney.label = i.dealtype), + (this.isRfresh = !0), + t.ShopMgr.ins().sendShopList(this.shopType, i.Tabshop), + window.pfID != t.PlatFormID.QQGame && this.updateBanner(), + this.dragDropUI.setTitle(i.title); + }), + (i.prototype.openBlueFun = function () { + window.openBlueFunction(); + }), + (i.prototype.updateBanner = function () { + this.scroller.stopAnimation(), this.scroller.viewport.validateNow(), (this.scroller.viewport.scrollV = 0); + + if (1 == this.shopType && 66666 == this.lastIndex) { + (this.bannerGrp.visible = !0), (this.scroller.top = 105); + var e = t.VlaoF.PlayFunConfig[63]; + if (e && 63 == e.id) { + var i = t.VlaoF.ShoptagConfig[1][6]; + i && + !t.mAYZL.ins().isCheckOpen(i.closelimit) && + t.mAYZL.ins().isCheckOpen(i.openlimit) && + ((this.cdTime = (i.closelimit.openDay - t.GlobalData.sectionOpenDay) * t.DateUtils.SECOND_PER_DAY - t.DateUtils.getTodayPassedSecond()), + this.updateCDTime(), + t.KHNO.ins().remove(this.updateCDTime, this), + t.KHNO.ins().tBiJo(1e3, 0, this.updateCDTime, this)); + } + } else (this.bannerGrp.visible = !1), (this.scroller.top = 0); + }), + (i.prototype.updateCDTime = function () { + var e = this.cdTime - Math.floor(egret.getTimer() / 1e3); + (this.timeLabel.text = t.CrmPU.language_Pay_Text7 + t.DateUtils.getFormatBySecond(e, t.DateUtils.TIME_FORMAT_18)), + 0 >= e && (t.KHNO.ins().remove(this.updateCDTime, this), (this.timeLabel.text = "")); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.optTab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + Main.vZzwB.pfID == t.PlatFormID.QQGame && this.fEHj(this.openBlue, this.openBlueFun), + this.destroy(); + }), + (i.prototype.destroy = function () { + for (; this.gList.numChildren > 0; ) { + var e = this.gList.getChildAt(0); + e.destroy(), this.gList.removeChild(e), (e = null); + } + this.shopList.removeAll(); + for (var i = 0; i < this.moneyList.length; i++) { + var n = this.moneyList[i]; + n.removeEvent(), n.parent.removeChild(n), (n = null); + } + t.MouseScroller.unbind(this.scroller), (this.moneyList = []); + }), + i + ); + })(t.gIRYTi); + (t.ShopView = e), __reflect(e.prototype, "app.ShopView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + (this.shoptagConfig = this.data), (this.labelDisplay.text = this.shoptagConfig.tabname); + }), + e + ); + })(t.BaseItemRender); + (t.ShowTarView = e), __reflect(e.prototype, "app.ShowTarView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._buffCDInfo = {}), + (i.isAddSavior = !0), + (i.sysId = t.jDIWJt.Buff), + i.YrTisc(1, i.g_4_1), + i.YrTisc(2, i.g_4_2), + i.YrTisc(3, i.g_4_3), + i.YrTisc(4, i.g_4_4), + i.YrTisc(5, i.g_4_5), + i.YrTisc(6, i.post_4_6), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "buffCDInfo", { + get: function () { + return this._buffCDInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.postUpdateBuff = function () {}), + (i.prototype.g_4_1 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = t.ObjectPool.pop("app.CharStatus"); + s.read2(e), n.postCharMessage(t.Qmuk.BUFF_ADD, 0, 0, 0, s); + } + }), + (i.prototype.g_4_2 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && + n.postCharMessage(t.Qmuk.BUFF_DELECT, 0, 0, 0, { + type: e.readUnsignedByte(), + group: e.readUnsignedByte(), + }); + }), + (i.prototype.g_4_3 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + n && + n.postCharMessage(t.Qmuk.BUFF_DELECT_TYPE, 0, 0, 0, { + type: e.readUnsignedByte(), + }); + }), + (i.prototype.g_4_4 = function (e) { + for (var i, n = e.readUnsignedByte(), s = 0; n > s; s++) (i = t.ObjectPool.pop("app.CharStatus")), i.read2(e), t.NWRFmB.ins().getPayer.initBuff(i); + }), + (i.prototype.g_4_5 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readUnsignedShort(), + a = e.readUnsignedInt(), + r = t.VlaoF.BuffConf[s]; + if (r) { + var o = n.getBuff(1e4 * r.type + r.group); + o && + n.postCharMessage(t.Qmuk.BUFF_UPDATE, 0, 0, 0, { + key: o.key, + value: a, + }); + } + } + }), + (i.prototype.post_updateSavior = function () {}), + (i.prototype.post_4_6 = function (t) { + var e = t.readUnsignedShort(), + i = t.readInt(), + n = 1e3 * i + egret.getTimer(); + this._buffCDInfo[e] = n; + }), + i + ); + })(t.DlUenA); + (t.BuffMgr = e), __reflect(e.prototype, "app.BuffMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.prototype.read = function (e) { + this.id = e.readUnsignedShort(); + var i = e.readInt(); + (this.endTime = 0 > i ? 4294967295 : 1e3 * i + egret.getTimer()), (this.value = e.readNumeric(e.readUnsignedByte())); + var n = t.VlaoF.BuffConf[this.id]; + n && (this.key = 1e4 * n.type + n.group); + }), + (e.prototype.read2 = function (e) { + this.read(e), (this.endTime2 = e.readInt()), this.endTime2 > 0 && (this.endTime2 = t.DateUtils.formatMiniDateTime(this.endTime2)); + t.GlobalData.serverTime; + this.endTime2 > t.GlobalData.serverTime && (t.BuffMgr.ins().buffCDInfo[this.id] = this.endTime2 - t.GlobalData.serverTime + egret.getTimer()); + }), + e + ); + })(); + (t.CharStatus = e), __reflect(e.prototype, "app.CharStatus"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + (this.skillId = t.readUnsignedShort()), (this.skillLevel = t.readByte()), (this.isOpen = 1 == t.readByte()); + } + return t; + })(); + (t.OtherPlayerSkill = e), __reflect(e.prototype, "app.OtherPlayerSkill"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return (t.SC_LEVEL = 1), (t.SC_MONEY = 2), (t.SC_ITEM = 3), (t.SC_EXP = 4), t; + })(); + (t.SkillCond = e), __reflect(e.prototype, "app.SkillCond"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.lhLevel = 0), + (i.csLevel = 0), + (i.sysId = t.jDIWJt.Skill), + i.YrTisc(1, i.postg_5_1), + i.YrTisc(2, i.postg_5_2), + i.YrTisc(5, i.postg_5_5), + i.YrTisc(6, i.post_g_5_6), + i.YrTisc(7, i.g_5_7), + i.YrTisc(18, i.g_5_18), + i.YrTisc(19, i.g_5_19), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.s_5_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.postg_5_1 = function (e) { + for (var i = e.readByte(), n = 0; i > n; n++) { + var s = new t.UserSkill(e); + t.NWRFmB.ins().getPayer.addUserSkill(s); + } + this.post_updateSkill(); + }), + (i.prototype.send_5_3 = function (t) { + var e = this.MxGiq(3); + e.writeShort(t), this.evKig(e); + }), + (i.prototype.post_updateSkillMC = function (t) { + return t; + }), + (i.prototype.postg_5_2 = function (e) { + var i = new t.UserSkill(e), + n = t.NWRFmB.ins().getPayer; + if (n) { + var s = n.getUserSkill(i.nSkillId); + s && s.nLevel < i.nLevel && this.post_updateSkillMC(i.nSkillId); + } + return ( + t.NWRFmB.ins().getPayer.addUserSkill(i), + 6 == i.nSkillId + ? this.lhLevel != i.nLevel && ((this.lhLevel = i.nLevel), this.post_updateSkill()) + : 8 == i.nSkillId && this.csLevel != i.nLevel && ((this.csLevel = i.nLevel), this.post_updateSkill()), + i + ); + }), + (i.prototype.post_updateSkill = function () {}), + (i.prototype.s_5_2 = function (e, i, n, s, a, r) { + var o = t.VlaoF.SkillConf[e]; + if (!o.vocation || o.vocation == r) { + i || (i = 0); + var l = this.MxGiq(2); + l.writeShort(e), l.writeNumber(i), l.writeShort(n), l.writeShort(s), l.writeByte(a), this.evKig(l); + } + }), + (i.prototype.s_5_6 = function (t, e) { + var i = this.MxGiq(6); + i.writeNumber(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.postUpdateLock = function (t, e) { + return [t, e]; + }), + (i.prototype.s_5_18 = function (t) { + var e = this.MxGiq(18); + e.writeShort(t), this.evKig(e); + }), + (i.prototype.s_5_19 = function (t) { + var e = this.MxGiq(19); + e.writeShort(t), this.evKig(e); + }), + (i.prototype.postg_5_5 = function (e) { + var i = e.readUnsignedShort(); + return t.NWRFmB.ins().getPayer.updateSkillCd(i, egret.getTimer() + e.readUnsignedInt()), i; + }), + (i.prototype.post_g_5_6 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i), + s = t.NWRFmB.ins().getPayer; + return n ? (s.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, 0, 0, s.dir), i) : 0; + }), + (i.prototype.g_5_7 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i); + if (n) { + var s = e.readInt(), + a = (e.readInt(), e.readInt()), + r = e.readInt(); + n.postCharMessage(t.Qmuk.AM_DAMAGE, 0, 0, 0, { + hp: s, + bong: a, + nowHp: r, + }); + } + }), + (i.prototype.g_5_18 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i), + s = t.NWRFmB.ins().getPayer; + n && s.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, 0, 0, s.dir); + }), + (i.prototype.g_5_19 = function (e) { + var i = e.readNumber(), + n = t.NWRFmB.ins().getCharRole(i), + s = t.NWRFmB.ins().getPayer; + n && s.postActionMessage(t.Qmuk.SAM_UNDER_ATTACK, 0, 0, s.dir); + }), + (i.prototype.post_playSkillMc = function (t, e) { + return { + skillName: t, + id: e, + }; + }), + (i.prototype.getSkillredDot = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var n = e.propSet.getAP_JOB(), + s = i.ins().getJobSkillredDot(n), + a = i.ins().getJobSkillredDot(0), + r = t.GhostMgr.ins().getRed(), + o = t.MeridiansMgr.ins().getDot(); + return s || a || r || o; + } + return 0; + }), + (i.prototype.getJobSkillredDot = function (e) { + void 0 === e && (e = 0); + var i, + n, + s, + a = t.NWRFmB.ins().getPayer, + r = (a.propSet.getAP_JOB(), a.propSet.mBjV()), + o = a.propSet.MzYki(), + l = a.propSet.getBindCoin(), + h = a.propSet.getMeridians(), + p = 0; + for (var u in t.VlaoF.SkillConf) + if ( + ((p = 0), + (i = t.VlaoF.SkillConf[u]), + i.isRedDot && !i.isDelete && i.vocation == e && ((n = t.NWRFmB.ins().getPayer.getUserSkill(i.id)), n && (p = n.nLevel), (s = t.VlaoF.SkillsLevelConf[i.id][p + 1]))) + ) { + var c = s.upgradeConds; + if (c) { + for (var g = void 0, d = c ? c.length : 0, m = !0, f = 0; d > f; f++) + if (((g = c[f]), 1 == g.cond)) { + if (g.value > r) { + m = !1; + continue; + } + } else if (4 == g.cond) { + if (g.value > o) { + m = !1; + continue; + } + } else if (6 == g.cond) { + if (g.value > h) { + m = !1; + continue; + } + } else if (2 == g.cond && g.consume) { + if (g.value > l) { + m = !1; + continue; + } + } else if (3 == g.cond && g.consume) { + var v = void 0; + if ((v = t.VlaoF.StdItems[g.value])) { + var _ = t.ZAJw.MPDpiB(ZnGy.qatEquipment, v.id); + if (g.count > _) { + m = !1; + continue; + } + } + } + if (m) return 1; + } + } + return 0; + }), + (i.SKILL_YMCZ = 5), + (i.SKILL_CX = 3), + (i.SKILL_BY = 4), + (i.SKILL_LH = 6), + (i.SKILL_ZR = 8), + (i.SKILL_MFD = 17), + (i.SKILL_ZY = 22), + (i.SKILL_SSZJ = 28), + (i.SKILL_ZHKL = 25), + (i.SKILL_ZHSS = 30), + (i.SKILL_HUOQIANG = 14), + i + ); + })(t.DlUenA); + (t.NGcJ = e), __reflect(e.prototype, "app.NGcJ"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + (this.nSkillId = t.readUnsignedShort()), + (this.nLevel = t.readUnsignedByte()), + (this.dwResumeTick = t.readUnsignedInt() + egret.getTimer()), + (this.isOpen = 1 == t.readByte()), + (this.isDisable = 1 == t.readByte()); + } + return t; + })(); + (t.UserSkill = e), __reflect(e.prototype, "app.UserSkill"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i._weaponInfo = {}), (i._weaponInfo = {}), (i.sysId = t.jDIWJt.SoldierSoul), i.YrTisc(1, i.post_58_1), i.YrTisc(2, i.post_58_2), i.YrTisc(3, i.post_58_3), i.YrTisc(4, i.post_58_4), i; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "weaponInfo", { + get: function () { + return this._weaponInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_58_1 = function (t) { + var e = this.MxGiq(1); + e.writeByte(t), this.evKig(e); + }), + (i.prototype.post_58_1 = function (e) { + this._weaponInfo = {}; + for (var i = (e.readByte(), e.readByte()), n = 0; i > n; n++) { + var s = new t.SoldierSoulData(); + s.parser(e), (this._weaponInfo[s.soulID] = s); + } + }), + (i.prototype.send_58_2 = function (t, e, i, n, s) { + void 0 === s && (s = 0); + var a = this.MxGiq(2); + a.writeByte(t), a.writeByte(e), a.writeByte(i), a.writeByte(n), a.writeByte(s), this.evKig(a); + }), + (i.prototype.post_58_2 = function (e) { + var i = e.readByte(), + n = (e.readByte(), e.readByte()), + s = e.readByte(), + a = e.readByte(); + if (0 == i || 11 == i) this._weaponInfo[n] && (1 == s ? (this._weaponInfo[n].soulOrder = a) : 2 == s ? (this._weaponInfo[n].soulStar = a) : 3 == s && (this._weaponInfo[n].soulLv = a)); + else if (1 == i) t.uMEZy.ins().IrCm("|C:0xff7700&T:" + t.CrmPU.language_Common_229 + "|"); + else if (7 == i) { + var r = t.VlaoF.soulWeaponLvConfig[n][a + 1]; + r && r.limitMsg && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + r.limitMsg + "|"); + } else if (8 == i) { + var o = t.VlaoF.soulWeaponstarConfig[n][a + 1]; + o && o.limitMsg && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + o.limitMsg + "|"); + } + return i; + }), + (i.prototype.send_58_3 = function (t, e, i) { + var n = this.MxGiq(3); + n.writeByte(t), n.writeByte(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.post_58_3 = function (e) { + var i = e.readByte(), + n = (e.readByte(), e.readByte()), + s = e.readByte(), + a = e.readString(), + r = e.readString(); + if (9 == i) { + var o = t.VlaoF.soulWpRefiningConfig[n]; + o && o.limitMsg && t.uMEZy.ins().IrCm("|C:0xff7700&T:" + o.limitMsg + "|"); + } + return { + errcode: i, + weaponID: n, + currAttr: a, + newAttr: r, + replace: s, + }; + }), + (i.prototype.send_58_4 = function (t, e) { + var i = this.MxGiq(4); + i.writeByte(t), i.writeByte(e), this.evKig(i); + }), + (i.prototype.post_58_4 = function (t) { + var e = t.readByte(), + i = (t.readByte(), t.readByte()), + n = t.readString(), + s = t.readString(); + return { + errcode: e, + weaponID: i, + currAttr: n, + newAttr: s, + }; + }), + (i.prototype.getWeaponTypeRed = function (e, n) { + var s = 0, + a = i.ins().weaponInfo[e]; + if (a) + if (1 == n) { + var r = t.VlaoF.soulWeaponLorderConfig[e][a.soulOrder + 1]; + r && r.cost && (s = t.ZAJw.isRedDot(r.cost)); + } else if (2 == n) { + var o = t.VlaoF.soulWeaponLvConfig[e][a.soulLv + 1]; + if (o && o.cost) + if (o.limit) { + var l = o.limit[0].lv; + a.soulOrder >= l && 1 == t.ZAJw.isRedDot(o.cost) && (s = 1); + } else s = t.ZAJw.isRedDot(o.cost); + } + return s; + }), + (i.prototype.getWeaponTabRed = function () { + return i.ins().getWeaponRed() ? 1 : t.WordFormulaManager.ins().getViewRed() ? 1 : 0; + }), + (i.prototype.getWeaponRed = function () { + var e = !0, + n = t.VlaoF.SystemOpen[20]; + if (n) { + var s = t.NWRFmB.ins().getPayer; + if (s && s.propSet) { + var a = s.propSet; + (a.mBjV() < n.level || a.MzYki() < n.circle || t.GlobalData.sectionOpenDay < n.day || a.mBjV() < n.openLevel || a.MzYki() < n.openCircle || t.GlobalData.sectionOpenDay < n.openDay) && + (e = !1); + } + } + if (e) + for (var r = 1; 3 > r; r++) + for (var o in t.VlaoF.soulWptableConfig) { + var l = t.VlaoF.soulWptableConfig[o]; + if (l) { + var h = i.ins().getWeaponTypeRed(l.type, r); + if (h) return 1; + } + } + return 0; + }), + (i.prototype.getIsUpLv = function (t) { + var e = !0, + n = i.ins().weaponInfo[t.pos]; + return n && n.soulOrder < t.lv && (e = !1), e; + }), + i + ); + })(t.DlUenA); + (t.SoldierSoulMgr = e), __reflect(e.prototype, "app.SoldierSoulMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.parser = function (t) { + (this.soulID = t.readByte()), + (this.soulOrder = t.readInt()), + (this.soulStar = t.readInt()), + (this.soulLv = t.readInt()), + (this.soulTopLine = t.readString()), + (this.soulRefine = t.readString()); + }), + t + ); + })(); + (t.SoldierSoulData = e), __reflect(e.prototype, "app.SoldierSoulData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.weaponID = 0), (t.curLevelLv = 0), (t.skinName = "SoldierSoulLevelViewSkin"), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.costList.itemRenderer = t.FourImagesCostItem), + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + (this.txt_get.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCostList), + this.HFTK(t.SoldierSoulMgr.ins().post_58_2, this.updateInfo), + this.vKruVZ(this.btnUp, this.levelUp), + this.weaponMc || + ((this.weaponMc = t.ObjectPool.pop("app.MovieClip")), + (this.weaponMc.scaleX = this.weaponMc.scaleY = 1), + (this.weaponMc.touchEnabled = !1), + (this.weaponMc.blendMode = egret.BlendMode.ADD), + this.weaponEff.addChild(this.weaponMc)), + e && e[0] && (this.weaponID = e[0]), + this.weaponID && this.updateView(this.weaponID); + }), + (i.prototype.updateInfo = function () { + this.updateView(this.weaponID); + }), + (i.prototype.updateView = function (e) { + (this.weaponID = e), this.weaponMc && this.weaponMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_bh" + this.weaponID, -1); + var i = t.VlaoF.soulWptableConfig[this.weaponID]; + i && (this.weaponName.source = i.wpname + ""), (this.weaponTips.source = 4 == this.weaponID ? "sw_bh_Lv_4" : ""); + var n = t.SoldierSoulMgr.ins().weaponInfo[e]; + if (n) { + this.curLevelLv = n.soulLv; + var s = t.VlaoF.soulWeaponLvConfig[e][n.soulLv]; + if (s) { + (this.gCurList.visible = !0), (this.curLV.text = t.CrmPU.language_Omission_txt59 + n.soulLv), (this.curOrder.text = n.soulLv + ""); + for (var a = [], r = 0; r < s.attr.length; r++) a.push(s.attr[r]); + for (var o = [], l = "", r = 0; r < a.length; r++) (l = t.AttributeData.getItemAttStrByType(a[r], a)), "" != l && o.push(l); + this.gCurList.dataProvider = new eui.ArrayCollection(o); + } else (this.gCurList.visible = !1), (this.curLV.text = t.CrmPU.language_Omission_txt59 + 0), (this.curOrder.text = "0"); + var h = n.soulLv + 1, + p = t.VlaoF.soulWeaponLvConfig[e][h]; + if (p) { + (this.gNextList.visible = this.nextLv.visible = !0), (this.lbMax0.visible = this.lbMax.visible = !1), (this.nextLv.text = t.CrmPU.language_Omission_txt60 + h); + for (var u = p.attr, c = [], r = 0; r < u.length; r++) c.push(u[r]); + for (var g = [], d = "", r = 0; r < c.length; r++) (d = t.AttributeData.getItemAttStrByType(c[r], c)), "" != d && g.push(d); + this.gNextList.dataProvider = new eui.ArrayCollection(g); + } else + (this.gNextList.visible = this.nextLv.visible = !1), + (this.lbMax0.visible = this.lbMax.visible = !0), + (this.lbMax.text = t.CrmPU["language_SoldierSoul_Text" + this.weaponID] + t.CrmPU.language_SoldierSoul_MaxText); + this.updateCostList(); + } + }), + (i.prototype.updateCostList = function () { + this.redPoint.visible = t.SoldierSoulMgr.ins().getWeaponTypeRed(this.weaponID, 2) ? !0 : !1; + var e = t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]; + if (e) { + var i = t.VlaoF.soulWeaponLvConfig[this.weaponID][e.soulLv + 1]; + if (i) { + for (var n = [], s = 0; s < i.cost.length; s++) + n.push({ + type: i.cost[s].type, + id: i.cost[s].id, + count: i.cost[s].count, + }); + n.length > 0 ? t.GetPropsView.getPropsTxt(this.txt_get, n[0].id) : (this.txt_get.visible = !1), (this.costList.dataProvider = new eui.ArrayCollection(n)), (this.costList.visible = !0); + } else this.txt_get.visible = this.costList.visible = !1; + } + }), + (i.prototype.getCostObj = function () { + var e = (t.NWRFmB.ins().getPayer, t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]); + if (e) { + var i = t.VlaoF.soulWeaponLvConfig[this.weaponID][e.soulLv + 1]; + if (i) { + var n = t.edHC.ins().getItemIDByCost(i.cost); + return n; + } + } + return null; + }), + (i.prototype.levelUp = function () { + var e = this.getCostObj(); + if (e && e.itemId > 0) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var i = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: i.x, + y: i.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.SoldierSoulMgr.ins().send_58_2(1, this.weaponID, 3, this.curLevelLv); + }), + (i.prototype.onGetProps = function () { + var e = this.getCostObj(); + if (e && (0 == e.itemId && (e.itemId = e.itemId2), !t.mAYZL.ins().ZbzdY(t.GaimItemWin) && e.itemId > 0)) { + var i = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: i.x, + y: i.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.fEHj(this.btnUp, this.levelUp), + this.weaponMc && (this.weaponMc.destroy(), (this.weaponMc = null)); + }), + i + ); + })(t.gIRYTi); + (t.SoldierSoulLevelView = e), __reflect(e.prototype, "app.SoldierSoulLevelView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.checkYes, this.onClick); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.checkYes, this.onClick); + }), + (i.prototype.onClick = function () { + this.checkYes.selected; + 1 == this.data.type ? t.ckpDj.ins().sendEvent(t.CommonEvent.SELECT_SOLDIERSOUL_UPSTAR) : 2 == this.data.type && t.ckpDj.ins().sendEvent(t.CommonEvent.SELECT_SOLDIERSOUL_REFINE); + }), + (i.prototype.dataChanged = function () { + this.goodsId = this.data.itemid; + var e = this.data.price, + i = 2682369, + n = t.VlaoF.StdItems[this.data.itemid], + s = t.ZAJw.sztgR(e.type, e.id); + if (n && s) { + var a = "|C:" + i + "&T:" + e.count + "|C:0xdcb789&T:" + s[0] + t.CrmPU.language_Refining_Text2 + "|C:0xe68246&T:" + n.name + "|"; + this.lbMoney.textFlow = t.hETx.qYVI(a); + } + }), + i + ); + })(t.BaseItemRender); + (t.SoldierSoulMoneyItem = e), __reflect(e.prototype, "app.SoldierSoulMoneyItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.weaponID = 0), (t.curOrderLv = 0), (t.skinName = "SoldierSoulOrderViewSkin"), (t.touchEnabled = !1), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.costList.itemRenderer = t.FourImagesCostItem), + (this.gCurList.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList.itemRenderer = t.FourImagesAttrItemNextView), + (this.gCurList0.itemRenderer = t.FourImagesAttrItemCurView), + (this.gNextList0.itemRenderer = t.FourImagesAttrItemNextView), + (this.txt_get.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_155 + "")), + this.txt_get.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCostList), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCostList), + this.HFTK(t.SoldierSoulMgr.ins().post_58_2, this.updateInfo), + this.vKruVZ(this.btnUp, this.levelUp), + this.weaponMc || + ((this.weaponMc = t.ObjectPool.pop("app.MovieClip")), + (this.weaponMc.scaleX = this.weaponMc.scaleY = 1), + (this.weaponMc.touchEnabled = !1), + (this.weaponMc.blendMode = egret.BlendMode.ADD), + this.weaponEff.addChild(this.weaponMc)), + e && e[0] && (this.weaponID = e[0]), + this.weaponID && this.updateView(this.weaponID); + }), + (i.prototype.updateInfo = function () { + this.updateView(this.weaponID); + }), + (i.prototype.updateView = function (e) { + (this.specialCurLab.visible = this.specialNextLab.visible = this.gCurList0.visible = this.gNextList0.visible = !1), + (this.gCurList.verticalCenter = this.gNextList.verticalCenter = 65.5), + (this.weaponID = e), + this.weaponMc && this.weaponMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_bh" + this.weaponID, -1), + (this.weaponTips.source = "sw_bh_" + this.weaponID); + var i = t.SoldierSoulMgr.ins().weaponInfo[e]; + if (i) { + this.curOrderLv = i.soulOrder; + var n = t.VlaoF.soulWeaponLorderConfig[e][i.soulOrder]; + if (n) { + (this.gCurList.visible = !0), (this.curLV.text = t.CrmPU.language_Omission_txt143 + i.soulOrder), (this.curOrder.text = t.hETx.getCStr(i.soulOrder) + t.CrmPU.language_Common_230); + for (var s = [], a = 0; a < n.attr.length; a++) s.push(n.attr[a]); + for (var r = [], o = "", a = 0; a < s.length; a++) (o = t.AttributeData.getItemAttStrByType(s[a], s)), "" != o && r.push(o); + if (((this.gCurList.dataProvider = new eui.ArrayCollection(r)), n.buffattr)) { + var l = []; + for (var h in n.buffattr) l.push(n.buffattr[h]); + for (var p = [], u = "", c = 0; c < l.length; c++) (u = t.AttributeData.getItemAttStrByType(l[c], l, 1, !1, !0, "0xD48842", "0xF4D1A4")), "" != u && p.push(u); + (this.gCurList.verticalCenter = 18), (this.gCurList0.visible = this.specialCurLab.visible = !0), (this.gCurList0.dataProvider = new eui.ArrayCollection(p)); + } + } else (this.gCurList.visible = !1), (this.curLV.text = t.CrmPU.language_Omission_txt143 + 0), (this.curOrder.text = "零阶"); + var g = i.soulOrder + 1, + d = t.VlaoF.soulWeaponLorderConfig[e][g]; + if (d) { + (this.gNextList.visible = this.nextLv.visible = !0), (this.lbMax0.visible = this.lbMax.visible = !1), (this.nextLv.text = t.CrmPU.language_Omission_txt144 + g); + for (var m = d.attr, f = [], a = 0; a < m.length; a++) f.push(m[a]); + for (var v = [], _ = "", a = 0; a < f.length; a++) (_ = t.AttributeData.getItemAttStrByType(f[a], f)), "" != _ && v.push(_); + if (((this.gNextList.dataProvider = new eui.ArrayCollection(v)), d.buffattr)) { + var y = []; + for (var h in d.buffattr) y.push(d.buffattr[h]); + for (var T = [], M = "", c = 0; c < y.length; c++) (M = t.AttributeData.getItemAttStrByType(y[c], y, 1, !1, !0, "0xD48842", "0x28ee01")), "" != M && T.push(M); + (this.gNextList.verticalCenter = 18), (this.gNextList0.visible = this.specialNextLab.visible = !0), (this.gNextList0.dataProvider = new eui.ArrayCollection(T)); + } + } else + (this.gNextList.visible = this.nextLv.visible = !1), + (this.lbMax0.visible = this.lbMax.visible = !0), + (this.lbMax.text = t.CrmPU["language_SoldierSoul_Text" + this.weaponID] + t.CrmPU.language_FourImages_MaxText); + this.updateCostList(); + } + }), + (i.prototype.updateCostList = function () { + this.redPoint.visible = t.SoldierSoulMgr.ins().getWeaponTypeRed(this.weaponID, 1) ? !0 : !1; + var e = t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]; + if (e) { + var i = t.VlaoF.soulWeaponLorderConfig[this.weaponID][e.soulOrder + 1]; + if (i) { + for (var n = [], s = 0; s < i.cost.length; s++) + n.push({ + type: i.cost[s].type, + id: i.cost[s].id, + count: i.cost[s].count, + }); + n.length > 0 ? t.GetPropsView.getPropsTxt(this.txt_get, n[0].id) : (this.txt_get.visible = !1), (this.costList.dataProvider = new eui.ArrayCollection(n)), (this.costList.visible = !0); + } else this.txt_get.visible = this.costList.visible = !1; + } + }), + (i.prototype.getCostObj = function () { + var e = (t.NWRFmB.ins().getPayer, t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]); + if (e) { + var i = t.VlaoF.soulWeaponLorderConfig[this.weaponID][e.soulOrder + 1]; + if (i) { + var n = t.edHC.ins().getItemIDByCost(i.cost); + return n; + } + } + return null; + }), + (i.prototype.levelUp = function () { + var e = this.getCostObj(); + if (e && e.itemId > 0) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var i = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: i.x, + y: i.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.SoldierSoulMgr.ins().send_58_2(1, this.weaponID, 1, this.curOrderLv); + }), + (i.prototype.onGetProps = function () { + var e = this.getCostObj(); + if (e && (0 == e.itemId && (e.itemId = e.itemId2), !t.mAYZL.ins().ZbzdY(t.GaimItemWin) && e.itemId > 0)) { + var i = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + e, + { + x: i.x, + y: i.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.txt_get.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onGetProps, this), + this.fEHj(this.btnUp, this.levelUp), + this.weaponMc && (this.weaponMc.destroy(), (this.weaponMc = null)); + }), + i + ); + })(t.gIRYTi); + (t.SoldierSoulOrderView = e), __reflect(e.prototype, "app.SoldierSoulOrderView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + (e.prototype.dataChanged = function () { + this.data && ((this.txtIcon1.source = this.data.icon + "1"), (this.txtIcon2.source = this.data.icon + "2")); + }), + e + ); + })(eui.ItemRenderer); + (t.SoldierSoulTabBarWin = e), __reflect(e.prototype, "app.SoldierSoulTabBarWin"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + this.data && ((this.weaponIcon.source = this.data.tabImg), (this.weaponName.source = this.data.wpname)); + }), + (i.prototype.refreshRed = function (e) { + this.redPoint.visible = t.SoldierSoulMgr.ins().getWeaponTypeRed(this.data.type, e) ? !0 : !1; + }), + i + ); + })(t.BaseItemRender); + (t.SoldierSoulTabWin = e), __reflect(e.prototype, "app.SoldierSoulTabWin"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.weaponID = 0), + (t.attrColor = { + 11: 14838538, + 15: 45296, + 19: 16746752, + 23: 16776960, + 27: 16776960, + 5: 14214305, + 33: 14024885, + 29: 14024885, + 35: 14325396, + 31: 14325396, + }), + (t.itemIconArr = ["13538", "13539", "13537", "13540"]), + (t.curStarLv = 0), + (t.seletePos = 0), + (t.skinName = "SoldierSoulUpRefineViewSkin"), + t + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.listCurAttr.itemRenderer = t.ForgeRefiningCurrAttrItem), + (this.listGoods.itemRenderer = t.ForgeRefiningCostGoodsItem), + (this.listMoney.itemRenderer = t.SoldierSoulMoneyItem), + (this.listNewAttr.itemRenderer = t.ForgeRefiningNewAttrItem), + this.vKruVZ(this.btnRefining, this.onClick), + this.vKruVZ(this.btnReplace, this.onClick), + this.vKruVZ(this.lbShowDesc, this.onClick), + this.HFTK(t.SoldierSoulMgr.ins().post_58_3, this.updateInfo), + this.HFTK(t.SoldierSoulMgr.ins().post_58_4, this.updateReplace), + t.ckpDj.ins().addEvent(t.CommonEvent.SELECT_SOLDIERSOUL_REFINE, this.refreshReplace, this); + var n = "|C:0xe68246&T:" + t.CrmPU.language_Refining_Text3 + "|"; + (this.lbShowDesc.textFlow = t.hETx.qYVI(n)), + (this.lbReplaceState.visible = this.lbFail.visible = this.btnReplace.visible = !1), + e && e[0] && (this.weaponID = e[0]), + this.weaponID && this.updateView(this.weaponID); + }), + (i.prototype.updateInfo = function (e) { + if (((this.lbReplaceState.visible = !1), 0 == e.errcode)) { + this.updateCost(); + var i = t.SoldierSoulMgr.ins().weaponInfo[e.weaponID]; + i && ((i.soulTopLine = e.currAttr), (i.soulRefine = e.newAttr)), + this.refiningBind(i.soulTopLine), + 1 == e.replace + ? ((this.lbReplaceState.visible = !0), (this.btnReplace.visible = !1), this.refiningNewAttrBind(i.soulTopLine, i.soulTopLine)) + : e.newAttr + ? ((this.lbFail.visible = !1), + (this.lbReplaceState.visible = !1), + (this.btnReplace.visible = !0), + this.refiningNewAttrBind(i.soulTopLine, i.soulRefine), + t.uMEZy.ins().IrCm(t.CrmPU.language_Refining_Text6)) + : ((this.lbFail.visible = !0), + (this.lbReplaceState.visible = !1), + (this.btnReplace.visible = !1), + (this.listNewAttr.dataProvider = new eui.ArrayCollection([])), + t.uMEZy.ins().IrCm(t.CrmPU.language_Refining_Text5)); + } + }), + (i.prototype.updateReplace = function (e) { + if (0 == e.errcode) { + this.updateCost(); + var i = t.SoldierSoulMgr.ins().weaponInfo[e.weaponID]; + i && ((i.soulTopLine = e.currAttr), (i.soulRefine = e.newAttr), this.updateViewInfo()); + } + }), + (i.prototype.updateView = function (t) { + (this.weaponID = t), (this.itemIcon.source = this.itemIconArr[this.weaponID - 1] + ""), this.updateViewInfo(), this.updateCost(), this.listMoney.visible && this.replaceItem(); + }), + (i.prototype.updateViewInfo = function () { + var e = t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]; + e && + (e.soulTopLine == e.soulRefine && (e.soulRefine = ""), + e.soulRefine ? (this.btnReplace.visible = !0) : (this.btnReplace.visible = !1), + this.refiningBind(e.soulTopLine), + this.refiningNewAttrBind(e.soulTopLine, e.soulRefine)); + }), + (i.prototype.refiningBind = function (e) { + if (e) { + for (var i = e.split("|"), n = [], s = [], a = 0; a < i.length; a++) { + var r = i[a].split(","), + o = { + type: Number(r[0]), + value: Number(r[1]), + }; + n.push(o); + } + for (var a = 0; a < n.length; a++) { + var l = this.attrColor[n[a].type], + h = t.AttributeData.getRiningItemAttStrByType(n[a], l, l); + "" != h && + s.push({ + attrStr: h, + attrValue: n[a], + }); + } + this.listCurAttr.dataProvider = new eui.ArrayCollection(s); + } else this.listCurAttr.dataProvider = new eui.ArrayCollection([]); + }), + (i.prototype.refiningNewAttrBind = function (e, i) { + if (i) { + for (var n = e.split("|"), s = i.split("|"), a = [], r = [], o = 0; o < s.length; o++) { + var l = s[o].split(","), + h = { + type: Number(l[0]), + value: Number(l[1]), + }; + a.push(h); + } + for (var o = 0; o < a.length; o++) { + for (var p = 1, u = 0, c = n; u < c.length; u++) { + var g = c[u], + h = g.split(","); + h[0] == a[o].type && (p = a[o].value > h[1] ? 1 : a[o].value < h[1] ? 2 : 0); + } + var d = this.attrColor[a[o].type], + m = t.AttributeData.getRiningItemAttStrByType(a[o], d, d); + "" != m && + r.push({ + attrStr: m, + sort: p, + }); + } + this.listNewAttr.dataProvider = new eui.ArrayCollection(r); + } else this.listNewAttr.dataProvider = new eui.ArrayCollection([]); + }), + (i.prototype.onClick = function (e) { + var i = this, + n = !0, + s = t.VlaoF.soulWpRefiningConfig[this.weaponID]; + switch (e.currentTarget) { + case this.btnRefining: + if (s) { + if (s.limit && s.limit[0]) { + var a = s.limit[0]; + if (((n = t.SoldierSoulMgr.ins().getIsUpLv(a)), !n && s.limitMsg)) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + s.limitMsg + "|"); + } + for (var r = [], o = 0; o < this.listMoney.numElements; o++) { + var l = this.listMoney.getVirtualElementAt(o); + l && l.data && l.checkYes.selected && r.push(l.data.itemid); + } + var h = t.edHC.ins().getItemIDByCost2(s.consume, r); + if (0 != h.itemId) { + var p = t.VlaoF.GetItemRouteConfig[h.itemId]; + if (p) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var u = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + h, + { + x: u.x, + y: u.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21); + } else t.SoldierSoulMgr.ins().send_58_3(1, this.weaponID, this.seletePos); + } + break; + case this.btnReplace: + var c = t.CrmPU.language_Refining_Text4; + t.CautionView.show( + c, + function () { + t.SoldierSoulMgr.ins().send_58_4(1, i.weaponID); + }, + this + ); + break; + case this.lbShowDesc: + s && t.mAYZL.ins().open(t.ForgeRefiningAttrShowView, s.attribute); + } + }), + (i.prototype.refiningmaterialsGetData = function (t) { + for (var e = [], i = 0; i < t.length; i++) { + var n = t[i], + s = n.type, + a = n.id, + r = n.count; + e.push({ + type: s, + id: a, + count: r, + }); + } + return e; + }), + (i.prototype.replaceItem = function () { + var e = t.VlaoF.soulWpReplaceConfig[2][this.weaponID]; + if (e) { + var i = []; + this.listMoney.visible = !0; + for (var n in e) t.mAYZL.ins().isCheckOpen(e[n].showlimit) && i.push(e[n]); + this.listMoney.dataProvider = new eui.ArrayCollection(i); + } else this.listMoney.dataProvider = new eui.ArrayCollection([]); + }), + (i.prototype.updateCost = function () { + var e = t.VlaoF.soulWpRefiningConfig[this.weaponID]; + if (e) { + e.limitMsg ? (this.upTips.textFlow = t.hETx.qYVI("|C:0xff7700&T:" + e.limitMsg + "|")) : (this.upTips.text = ""); + var i = this.refiningmaterialsGetData(e.consume); + (this.listGoods.visible = !0), (this.listGoods.dataProvider = new eui.ArrayCollection(i)); + } else (this.upTips.text = ""), (this.listGoods.visible = !1), (this.listGoods.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.refreshReplace = function (t) { + this.seletePos = 0; + for (var e = 0; e < this.listMoney.numElements; e++) { + var i = this.listMoney.getVirtualElementAt(e); + i && i.data && i.checkYes.selected && (this.seletePos = this.seletePos ^ (1 << i.data.idx)); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.fEHj(this.btnRefining, this.onClick), + this.fEHj(this.btnReplace, this.onClick), + this.fEHj(this.lbShowDesc, this.onClick), + t.ckpDj.ins().removeEvent(t.CommonEvent.SELECT_SOLDIERSOUL_REFINE, this.refreshReplace, this); + }), + i + ); + })(t.gIRYTi); + (t.SoldierSoulUpRefineView = e), __reflect(e.prototype, "app.SoldierSoulUpRefineView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.weaponID = 0), (t.itemIconArr = ["13538", "13539", "13537", "13540"]), (t.curStarLv = 0), (t.seletePos = 0), (t.skinName = "SoldierSoulUpStarViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.listCurAttr.itemRenderer = t.ForgeRefiningCurrAttrItem), + (this.listGoods.itemRenderer = t.ForgeRefiningCostGoodsItem), + (this.listNextAttr.itemRenderer = t.ForgeUpStarNextAttrItem), + (this.listMoney.itemRenderer = t.SoldierSoulMoneyItem), + this.vKruVZ(this.btnUpStar, this.onClick), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateCost), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateCost), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateCost), + this.HFTK(t.SoldierSoulMgr.ins().post_58_2, this.updateInfo), + t.ckpDj.ins().addEvent(t.CommonEvent.SELECT_SOLDIERSOUL_UPSTAR, this.refreshReplace, this), + e && e[0] && (this.weaponID = e[0]), + this.weaponID && this.updateView(this.weaponID); + }), + (i.prototype.updateInfo = function (e) { + 0 == e ? t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2)) : 11 == e && t.Nzfh.ins().payResultMC(0, this.localToGlobal(this.width / 2, this.height / 2)), + this.updateViewInfo(); + }), + (i.prototype.updateView = function (t) { + (this.weaponID = t), this.updateViewInfo(), this.replaceItem(); + }), + (i.prototype.updateViewInfo = function () { + (this.lbTitle.text = t.CrmPU["language_SoldierSoul_Text" + this.weaponID]), (this.itemIcon.source = this.itemIconArr[this.weaponID - 1] + ""); + var e = t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]; + if (e) { + this.curStarLv = e.soulStar; + for (var i = 1; 12 >= i; i++) (this["imgStar" + i].source = "forge_xxbg"), i <= this.curStarLv && (this["imgStar" + i].source = this.curStarLv < 7 ? "forge_xx1" : "forge_xx2"); + var n = t.VlaoF.soulWeaponstarConfig[this.weaponID][e.soulStar]; + if (n) { + this.listCurAttr.visible = !0; + for (var s = [], i = 0; i < n.attribute.length; i++) s.push(n.attribute[i]); + this.listCurAttr.dataProvider = new eui.ArrayCollection(this.upStarAttrBind(s, "0xbb8f5e", "0xcbc2b2")); + } else this.listCurAttr.visible = !1; + var a = e.soulStar + 1, + r = t.VlaoF.soulWeaponstarConfig[this.weaponID][a]; + if (r) { + r.limitMsg ? (this.upTips.textFlow = t.hETx.qYVI("|C:0xff7700&T:" + r.limitMsg + "|")) : (this.upTips.text = ""), + (this.listNextAttr.visible = this.listMoney.visible = !0), + (this.lbMax.visible = !1); + for (var o = [], i = 0; i < r.attribute.length; i++) o.push(r.attribute[i]); + (this.listNextAttr.dataProvider = new eui.ArrayCollection(this.upStarAttrBind(o, "0xE0AE75", "0x28ee01"))), + (this.rateLabel.text = t.CrmPU.language_Common_161 + t.MathUtils.GetPercent(r.rate, 1e4) + "\n" + t.CrmPU.language_Omission_txt142); + } else (this.upTips.text = ""), (this.listNextAttr.visible = !1), (this.lbMax.visible = !0), (this.rateLabel.text = ""), (this.listMoney.visible = !1); + this.updateCost(); + } + }), + (i.prototype.replaceItem = function () { + if (this.listMoney.visible) { + var e = t.VlaoF.soulWpReplaceConfig[1][this.weaponID]; + if (e) { + this.listMoney.visible = !0; + var i = []; + for (var n in e) t.mAYZL.ins().isCheckOpen(e[n].showlimit) && i.push(e[n]); + this.listMoney.dataProvider = new eui.ArrayCollection(i); + } else this.listMoney.dataProvider = new eui.ArrayCollection([]); + } + }), + (i.prototype.updateCost = function () { + var e = t.VlaoF.soulWeaponstarConfig[this.weaponID][this.curStarLv + 1]; + if (e) { + var i = this.refiningmaterialsGetData(e.consume); + (this.listGoods.visible = !0), (this.listGoods.dataProvider = new eui.ArrayCollection(i)); + } else (this.listGoods.visible = !1), (this.listGoods.dataProvider = new eui.ArrayCollection([])); + }), + (i.prototype.refiningmaterialsGetData = function (t) { + for (var e = [], i = 0; i < t.length; i++) { + var n = t[i], + s = n.type, + a = n.id, + r = n.count; + e.push({ + type: s, + id: a, + count: r, + }); + } + return e; + }), + (i.prototype.upStarAttrBind = function (e, i, n) { + for (var s = [], a = 0; a < e.length; a++) { + var r = t.AttributeData.getItemAttStrByType(e[a], e, 0, !1, !0, i, n); + "" != r && + s.push({ + attrStr: r, + attrValue: e[a], + }); + } + return s; + }), + (i.prototype.onClick = function (e) { + var i = !0, + n = t.VlaoF.soulWeaponstarConfig[this.weaponID][this.curStarLv + 1]; + if (n) { + if (n.limit && n.limit[0]) { + var s = n.limit[0]; + if (((i = t.SoldierSoulMgr.ins().getIsUpLv(s)), !i && n.limitMsg)) return void t.uMEZy.ins().IrCm("|C:0xff7700&T:" + n.limitMsg + "|"); + } + var a = []; + if (n.consume) { + for (var r = 0; r < this.listMoney.numElements; r++) { + var o = this.listMoney.getVirtualElementAt(r); + o && o.data && o.checkYes.selected && a.push(o.data.itemid); + } + var l = t.edHC.ins().getItemIDByCost2(n.consume, a); + if (0 != l.itemId) { + var h = t.VlaoF.GetItemRouteConfig[l.itemId]; + if (h) { + if (!t.mAYZL.ins().ZbzdY(t.GaimItemWin)) { + var p = this.localToGlobal(); + t.mAYZL.ins().open( + t.GaimItemWin, + l, + { + x: p.x, + y: p.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips21); + return; + } + } + } + t.SoldierSoulMgr.ins().send_58_2(1, this.weaponID, 2, this.curStarLv, this.seletePos); + }), + (i.prototype.refreshReplace = function (t) { + this.seletePos = 0; + for (var e = 0; e < this.listMoney.numElements; e++) { + var i = this.listMoney.getVirtualElementAt(e); + i && i.data && i.checkYes.selected && (this.seletePos = this.seletePos ^ (1 << i.data.idx)); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + this.fEHj(this.btnUpStar, this.onClick), + t.ckpDj.ins().removeEvent(t.CommonEvent.SELECT_SOLDIERSOUL_UPSTAR, this.refreshReplace, this); + }), + i + ); + })(t.gIRYTi); + (t.SoldierSoulUpStarView = e), __reflect(e.prototype, "app.SoldierSoulUpStarView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.lastIndex = 0), (i.skinName = "SoldierSoulWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System99), (this.tabBar.itemRenderer = t.SoldierSoulTabBarWin); + var i = []; + for (var n in t.VlaoF.soulWptableConfig) i.push(t.VlaoF.soulWptableConfig[n]); + (this.weaponTab.itemRenderer = t.SoldierSoulTabWin), (this.weaponTab.dataProvider = new eui.ArrayCollection(i)); + }), + (i.prototype.setViewTabInfo = function () { + var e = []; + for (var i in t.VlaoF.soulWpViewConfig) t.mAYZL.ins().isCheckOpen(t.VlaoF.soulWpViewConfig[i].showLimit) && e.push(t.VlaoF.soulWpViewConfig[i]); + this.tabBar.dataProvider = new eui.ArrayCollection(e); + }), + (i.prototype.updateViewTab = function () { + this.setViewTabInfo(), (this.tabBar.selectedIndex = this.lastIndex); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.addChangeEvent(this.tabBar, this.onBarItemTap), + this.weaponTab.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.updateViewInfo, this), + this.HFTK(t.SoldierSoulMgr.ins().post_58_1, this.updateInfo), + this.HFTK(t.Nzfh.ins().post_updateZsLevel, this.updateViewTab), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateRed), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateRed), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateRed), + this.setViewTabInfo(), + (this.lastIndex = 0), + (this.tabBar.selectedIndex = this.lastIndex), + (this.weaponTab.selectedIndex = 0), + t.SoldierSoulMgr.ins().send_58_1(1); + }), + (i.prototype.updateInfo = function () { + this.updateView(this.lastIndex), this.updateViewTabRed(); + }), + (i.prototype.onBarItemTap = function (t) { + (this.lastIndex = t.currentTarget.selectedIndex), this.updateView(t.currentTarget.selectedIndex); + }), + (i.prototype.updateView = function (e) { + void 0 === e && (e = 0), t.Nzfh.ins().post_gaimItemView(6789), this.updateWeaponTabRed(), this.curPanel && (this.curPanel.close(), t.lEYZI.Naoc(this.curPanel), (this.curPanel = null)); + var i = this.tabBar.dataProvider.getItemAt(this.tabBar.selectedIndex); + if (i) { + var n = egret.getDefinitionByName(i.view); + if (n && ((this.curPanel = new n()), this.curPanel)) { + (this.curPanel.left = 0), (this.curPanel.right = 0), (this.curPanel.top = 0), (this.curPanel.bottom = 0), this.infoGrp.addChild(this.curPanel); + var s = this.weaponTab.dataProvider.getItemAt(this.weaponTab.selectedIndex); + s && ((this.ruleTips.ruleId = s.ruleid ? s.ruleid : 0), this.curPanel.open(s.type)); + } + } + }), + (i.prototype.updateViewInfo = function () { + if ((t.Nzfh.ins().post_gaimItemView(6789), this.curPanel)) { + var e = this.weaponTab.dataProvider.getItemAt(this.weaponTab.selectedIndex); + e && ((this.ruleTips.ruleId = e.ruleid ? e.ruleid : 0), this.curPanel.updateView(e.type)); + } + }), + (i.prototype.onClick = function (t) { + t.currentTarget; + }), + (i.prototype.updateRed = function () { + this.updateWeaponTabRed(), this.updateViewTabRed(); + }), + (i.prototype.updateWeaponTabRed = function () { + for (var t = 0; t < this.weaponTab.dataProvider.length; t++) { + var e = this.weaponTab.getVirtualElementAt(t); + e && e.refreshRed(this.lastIndex + 1); + } + }), + (i.prototype.updateViewTabRed = function () { + for (var e = 1; 3 > e; e++) { + this["redPoint" + e].visible = !1; + for (var i = 0; i < this.weaponTab.dataProvider.length; i++) { + var n = this.weaponTab.dataProvider.getItemAt(i); + if (n) { + var s = t.SoldierSoulMgr.ins().getWeaponTypeRed(n.type, e); + if (s) { + this["redPoint" + e].visible = !0; + break; + } + } + } + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.Nzfh.ins().post_gaimItemView(6789), + this.removeChangeEvent(this.tabBar, this.onBarItemTap), + this.weaponTab.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.updateViewInfo, this), + this.curPanel && (this.curPanel.close(), t.lEYZI.Naoc(this.curPanel), (this.curPanel = null)); + }), + i + ); + })(t.gIRYTi); + (t.SoldierSoulWin = e), __reflect(e.prototype, "app.SoldierSoulWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.taskInfo = {}), + (i.clickTime = 0), + (i.lastState = 0), + (i.lastState2 = 0), + (i.taskInfoID = 0), + (i._lastTaskID = 0), + (i._lastTaskState = 0), + (i._lastCD = 0), + (i.lastMapID = 0), + (i.sysId = t.jDIWJt.Task), + i.YrTisc(1, i.post_6_1), + i.YrTisc(2, i.post_6_2), + i.YrTisc(3, i.post_6_3), + i.YrTisc(4, i.post_6_4), + i.YrTisc(5, i.post_6_5), + i.YrTisc(6, i.post_6_6), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.delTaskInfo = function () { + this.taskInfo = {}; + }), + Object.defineProperty(i.prototype, "taskInfoData", { + get: function () { + return this.taskInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.getMainTaskInfoData = function () { + var e, i; + for (var n in this.taskInfo) if (((i = this.taskInfo[n]), (e = t.VlaoF.TaskDisplayConfig[i.taskID][i.taskState]), e && !e.tasktype)) return i; + return null; + }), + (i.prototype.send_6_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_6_1 = function (e) { + t.ObjectPool.wipe(this.taskInfo); + for (var i, n = e.readInt(), s = 0; n > s; s++) { + var a = new t.MainTaskData(); + a.parser(e), (this.taskInfo[a.taskID] = a), (i = t.VlaoF.TaskDisplayConfig[a.taskID][a.taskState]), i && !i.tasktype && t.NWRFmB.ins().updateTaskNpc(i.npcid, i.mark); + } + }), + (i.prototype.getTaskArr = function () { + var t = []; + for (var e in this.taskInfo) t.push(this.taskInfo[e]); + t.sort(this.sortFun); + var i = this.getActTaskDataArr(); + return (t = t.concat(i)); + }), + (i.prototype.getActTaskDataArr = function () { + var e = [], + i = t.VlaoF.ActivityPromptConfig, + n = t.NWRFmB.ins().getPayer; + for (var s in i) + if (1 == i[s].type) { + var a = t.TQkyOx.ins().getActivityInfo(i[s].ActivityId); + if (a && a.info && a.info.times > 0) { + var r = i[s]; + (r.times = a.info.times), e.push(r); + } + } else if (2 == i[s].type) { + var o = i[s]; + if (!t.JgMyc.ins().bossModel.bossTimesDic) continue; + var l = t.JgMyc.ins().bossModel.bossTimesDic[o.ActivityId]; + if (!l) continue; + var h = l.bossTimes, + p = l.levelLimt; + if (0 >= h) continue; + if (n.propSet.mBjV() < p) continue; + (o.times = h), e.push(o); + } else if (3 == i[s].type) { + var o = i[s]; + e.push(o); + } else if (4 == i[s].type) { + var o = i[s], + u = o.limit; + t.mAYZL.ins().isCheckOpen(u) && e.push(o); + } + return e; + }), + (i.prototype.sortFun = function (e, i) { + var n = t.VlaoF.TaskDisplayConfig[e.taskID][e.taskState], + s = t.VlaoF.TaskDisplayConfig[i.taskID][i.taskState]; + return 0 == n.tasktype && 0 == s.tasktype + ? e.taskID < i.taskID + ? -1 + : e.taskID > i.taskID + ? 1 + : 0 + : 0 == n.tasktype && 1 == s.tasktype + ? -1 + : 1 == n.tasktype && 0 == s.tasktype + ? 1 + : 1 == s.tasktype && 1 == n.tasktype + ? n.completeSign && !s.completeSign + ? -1 + : !n.completeSign && s.completeSign + ? 1 + : 0 + : void 0; + }), + (i.prototype.send_6_2 = function (t, e, i) { + void 0 === i && (i = 0); + var n = this.MxGiq(2); + n.writeInt(t), n.writeInt(e), n.writeNumber(i), this.evKig(n); + }), + (i.prototype.post_6_2 = function (e) { + var n = e.readByte(); + switch (n) { + case 0: + var s = new t.MainTaskData(); + s.parser(e), (this.taskInfo[s.taskID] = s), 1 == s.taskID && 102 == s.taskState && FzTZ.reporting(t.ReportDataEnum.COMPLETETASK, {}, null, !1); + var a = t.VlaoF.TaskDisplayConfig[s.taskID][s.taskState]; + a && + (a.specialeffects && this.lastState != s.taskState && ((this.lastState = s.taskState), t.NWRFmB.ins().getPayer.playTaskEff(a.specialeffects)), + a.specialeffects2 && this.lastState2 != s.taskState && ((this.lastState2 = s.taskState), t.ckpDj.ins().sendEvent(t.MainEvent.ADD_TASK_EFF, a.specialeffects2))), + a && !a.tasktype && t.NWRFmB.ins().updateTaskNpc(a.npcid, a.mark), + (t.EhSWiR.autoState = !0) && + t.EhSWiR.taskState && + t.EhSWiR.taskState.id == s.taskID && + a && + t.EhSWiR.taskState.state + 1 == s.taskState && + t.EhSWiR.taskState.taskstate + 1 == a.taskstate && + (t.EhSWiR.taskState = null), + t.mAYZL.ins().ZbzdY(t.TaskInfoWin) && i.ins().taskInfoID == s.taskID && t.mAYZL.ins().close(t.TaskInfoWin); + break; + case 1: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips78); + break; + case 2: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips79); + break; + case 3: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips83); + break; + case 4: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips81); + break; + case 5: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips82); + break; + case 6: + t.uMEZy.ins().IrCm(t.CrmPU.language_Tips83); + } + }), + (i.prototype.post_taskAi = function () {}), + (i.prototype.post_6_3 = function (e) { + var n = e.readInt(); + e.readInt(); + delete this.taskInfo[n], t.mAYZL.ins().ZbzdY(t.TaskInfoWin) && i.ins().taskInfoID == n && t.mAYZL.ins().close(t.TaskInfoWin); + }), + (i.prototype.post_6_4 = function (e) { + var i = new t.MainTaskData(); + i.parser(e), (this.taskInfo[i.taskID] = i); + var n = t.VlaoF.TaskDisplayConfig[i.taskID][i.taskState]; + n && + (n.specialeffects && ((this.lastState = i.taskState), t.NWRFmB.ins().getPayer.playTaskEff(n.specialeffects)), + n.specialeffects2 && ((this.lastState2 = i.taskState), t.ckpDj.ins().sendEvent(t.MainEvent.ADD_TASK_EFF, n.specialeffects2))), + n && !n.tasktype && t.NWRFmB.ins().updateTaskNpc(n.npcid, n.mark); + }), + (i.prototype.send_6_5 = function (e, i, n, s, a) { + if ((void 0 === n && (n = 0), !(this._lastTaskID == e && this._lastTaskState == s && a == t.GameMap.mapID && egret.getTimer() < this._lastCD))) { + (this._lastTaskID = e), + (this._lastTaskState = s), + (this._lastCD = egret.getTimer() + 3e3), + t.qTVCL.ins().YFOmNj(), + t.qTVCL.ins().attackState && ((t.qTVCL.ins().attackState = !1), t.uMEZy.ins().showFightTips(t.CrmPU.language_Tips122)); + var r = t.NWRFmB.ins().getPayer; + r.stopFinding(); + var o = this.MxGiq(5); + o.writeInt(e), o.writeByte(i), o.writeByte(n), this.evKig(o); + } + }), + (i.prototype.post_6_5 = function (e) { + var n = e.readByte(), + s = e.readByte(), + a = e.readByte(), + r = e.readInt(), + o = e.readInt(), + l = e.readInt(); + 0 == n + ? (0 != s && (t.mAYZL.ins().ZbzdY(t.TaskInfoWin) && t.mAYZL.ins().close(t.TaskInfoWin), t.mAYZL.ins().open(t.TaskInfoWin, r, o)), + 1 == a && ((t.EhSWiR.m_ack_Char = null), t.qTVCL.ins().edcwsp(), egret.getTimer() > i.ins().clickTime && i.ins().post_taskAiStart()), + 0 != l ? (this.isOpenNpcView(l), (this.lastMapID = l)) : 0 != this.lastMapID && (t.mAYZL.ins().ZbzdY(t.NpcView) && t.mAYZL.ins().close(t.NpcView), (this.lastMapID = 0))) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips59); + }), + (i.prototype.post_6_6 = function (e) { + var i = new t.MainTaskData(); + return i.parser(e), i; + }), + (i.prototype.post_taskAiStart = function () {}), + (i.prototype.isOpenNpcView = function (e) { + var i, + n, + s = t.NWRFmB.ins().getNpcList(); + for (var a in s) + if (((i = s[a]), (n = i.propSet.getACTOR_ID()), n == e)) { + t.mAYZL.ins().ZbzdY(t.NpcView) && t.mAYZL.ins().close(t.NpcView), t.mAYZL.ins().open(t.NpcView, i.recog, i.propSet); + break; + } + }), + (i.prototype.postUpdateTask = function (t) { + return t; + }), + (i.prototype.post_selectIsShow = function (t, e) { + return [t, e]; + }), + (i.conveyName = 1), + (i.conveyLink = 2), + (i.conveyFly = 3), + (i.isClickSetup = !1), + i + ); + })(t.DlUenA); + (t.VrAZQ = e), __reflect(e.prototype, "app.VrAZQ"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.prototype.parser = function (t) { + (this.taskID = t.readInt()), (this.taskState = t.readInt()), (this.taskLimit = t.readInt()), (this.taskValue = t.readInt()), (this.flyshoes = t.readInt()); + }), + t + ); + })(); + (t.MainTaskData = e), __reflect(e.prototype, "app.MainTaskData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.telePortArr = []), (t.linkNum = 0), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + this.vKruVZ(this, this.onTouchView), + this.vKruVZ(this.taskBtn, this.onTouch), + this.vKruVZ(this.taskName, this.onTouch), + this.vKruVZ(this.taskSend0, this.onTouch), + this.vKruVZ(this.taskSend1, this.onTouch), + this.vKruVZ(this.taskSend2, this.onTouch), + this.vKruVZ(this.taskSend3, this.onTouch), + this.vKruVZ(this.taskSend4, this.onTouch), + this.vKruVZ(this.taskSend5, this.onTouch), + this.vKruVZ(this.flyGrp, this.onTouch), + this.vKruVZ(this.rect, this.onTouch), + this.taskContent.addEventListener(egret.TextEvent.LINK, this.onLink, this), + this.VoZqXH(this.rect, this.mouseMove), + this.EeFPm(this.rect, this.mouseMove), + this.VoZqXH(this.taskSendGrp, this.mouseMove), + this.EeFPm(this.taskSendGrp, this.mouseMove), + this.VoZqXH(this.taskBtn, this.mouseMove), + this.EeFPm(this.taskBtn, this.mouseMove), + this.VoZqXH(this.taskName, this.mouseMove), + this.EeFPm(this.taskName, this.mouseMove), + this.VoZqXH(this.taskSend0, this.mouseMove), + this.EeFPm(this.taskSend0, this.mouseMove), + this.VoZqXH(this.taskSend1, this.mouseMove), + this.EeFPm(this.taskSend1, this.mouseMove), + this.VoZqXH(this.taskSend2, this.mouseMove), + this.EeFPm(this.taskSend2, this.mouseMove), + this.VoZqXH(this.taskSend3, this.mouseMove), + this.EeFPm(this.taskSend3, this.mouseMove), + this.VoZqXH(this.taskSend4, this.mouseMove), + this.EeFPm(this.taskSend4, this.mouseMove), + this.VoZqXH(this.taskSend5, this.mouseMove), + this.EeFPm(this.taskSend5, this.mouseMove), + this.VoZqXH(this.flyGrp, this.mouseMove), + this.EeFPm(this.flyGrp, this.mouseMove), + this.VoZqXH(this.taskContent, this.mouseMove), + this.EeFPm(this.taskContent, this.mouseMove), + this.VoZqXH(this.taskTips, this.mouseMove), + this.EeFPm(this.taskTips, this.mouseMove); + }), + (i.prototype.onClickLink = function (e) { + if (!(KdbLz.qOtrbE.iFbP && this.linkNum > 1) && e.text) { + var i = e.text.split(","); + -2 == +i[0] && t.mAYZL.ins().openViewId(+i[1]); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), + this.fEHj(this, this.onTouchView), + this.fEHj(this.taskBtn, this.onTouch), + this.fEHj(this.taskName, this.onTouch), + this.fEHj(this.taskSend0, this.onTouch), + this.fEHj(this.taskSend1, this.onTouch), + this.fEHj(this.taskSend2, this.onTouch), + this.fEHj(this.taskSend3, this.onTouch), + this.fEHj(this.taskSend4, this.onTouch), + this.fEHj(this.taskSend5, this.onTouch), + this.fEHj(this.flyGrp, this.onTouch), + this.fEHj(this.rect, this.onTouch), + this.taskContent.removeEventListener(egret.TextEvent.LINK, this.onLink, this), + this.rect.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.rect.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.taskSendGrp.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.taskSendGrp.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this), + this.taskTips.removeEventListener(egret.TextEvent.LINK, this.onClickLink, this), + this.lbpdAJ(this.rect, this.mouseMove), + this.lvpAF(this.rect, this.mouseMove), + this.lbpdAJ(this.taskSendGrp, this.mouseMove), + this.lvpAF(this.taskSendGrp, this.mouseMove), + this.lbpdAJ(this.taskBtn, this.mouseMove), + this.lvpAF(this.taskBtn, this.mouseMove), + this.lbpdAJ(this.taskName, this.mouseMove), + this.lvpAF(this.taskName, this.mouseMove), + this.lbpdAJ(this.taskSend0, this.mouseMove), + this.lvpAF(this.taskSend0, this.mouseMove), + this.lbpdAJ(this.taskSend1, this.mouseMove), + this.lvpAF(this.taskSend1, this.mouseMove), + this.lbpdAJ(this.taskSend2, this.mouseMove), + this.lvpAF(this.taskSend2, this.mouseMove), + this.lbpdAJ(this.taskSend3, this.mouseMove), + this.lvpAF(this.taskSend3, this.mouseMove), + this.lbpdAJ(this.taskSend4, this.mouseMove), + this.lvpAF(this.taskSend4, this.mouseMove), + this.lbpdAJ(this.taskSend5, this.mouseMove), + this.lvpAF(this.taskSend5, this.mouseMove), + this.lbpdAJ(this.flyGrp, this.mouseMove), + this.lvpAF(this.flyGrp, this.mouseMove), + this.lbpdAJ(this.taskContent, this.mouseMove), + this.lvpAF(this.taskContent, this.mouseMove), + this.lbpdAJ(this.taskTips, this.mouseMove), + this.lvpAF(this.taskTips, this.mouseMove); + }), + (i.prototype.onLink = function (e) { + (KdbLz.qOtrbE.iFbP && this.linkNum > 1) || + (this.actTaskInfo && + (this.actTaskInfo.view.length > 1 + ? t.mAYZL.ins().ZbzdY(this.actTaskInfo.view[1]) || + (t.mAYZL.ins().open(this.actTaskInfo.view[0], this.actTaskInfo.hierarchy[0]) && t.mAYZL.ins().open(this.actTaskInfo.view[1], this.actTaskInfo.hierarchy[1])) + : t.mAYZL.ins().ZbzdY(this.actTaskInfo.view[0]) || t.mAYZL.ins().open(this.actTaskInfo.view[0], this.actTaskInfo.hierarchy))); + }), + (i.prototype.mouseMove = function (e) { + return KdbLz.qOtrbE.iFbP + ? void t.VrAZQ.ins().post_selectIsShow(this.taskInfo.taskID, this.taskInfo.taskState) + : void (e.type == mouse.MouseEvent.MOUSE_OUT ? (this.isSelectImg.visible = !1) : (this.isSelectImg.visible = !0)); + }), + (i.prototype.dataChanged = function () { + if (((this.linkNum = 1), (this.taskTips.touchEnabled = !1), this.data)) { + (this.flyGrp.visible = !1), (this.isSelectImg.visible = !1), (this.flyShoeLab.visible = !1), (this.completeImg.visible = !1), (this.taskInfo = this.data); + var e = t.VlaoF.TaskDisplayConfig[this.taskInfo.taskID]; + if (e) { + var i = t.VlaoF.TaskDisplayConfig[this.taskInfo.taskID][this.taskInfo.taskState]; + if (i) { + this.completeImg.visible = i.completeSign ? !0 : !1; + var n = i.name; + if (((this.taskName.textFlow = t.hETx.qYVI(n)), i.flyshoes)) { + var s = "" + t.CrmPU.language_Common_100 + ""; + (this.flyGrp.visible = !0), (this.flyShoeLab.visible = !0), (this.flyShoeLab.textFlow = t.hETx.qYVI(s)); + } + if (i.task) { + var a = i.task; + if (i.schedule) + if (i.levelTaskschedule) { + var r = 0, + o = t.NWRFmB.ins().getPayer; + if (o && o.propSet) { + var l = t.VlaoF.LevelUpExp[+o.propSet.mBjV()]; + l && (r = l.value - o.propSet.getEXP()); + for (var h = void 0, p = o.propSet.mBjV() + 1; p < this.taskInfo.taskLimit; p++) (h = t.VlaoF.LevelUpExp[p]), h && (r += h.value); + a += "还需|C:0xff7700&T:" + r + "|经验"; + } + } else a += "(" + this.taskInfo.taskValue + "/" + this.taskInfo.taskLimit + ")"; + (this.taskContent.textFlow = t.hETx.qYVI(a)), this.allGrp.addChildAt(this.taskContent, 1); + } else t.lEYZI.Naoc(this.taskContent); + if (i.needitems) { + this.allGrp.addChildAt(this.taskCirceGrp, 2), this.taskCirceGrp.removeChildren(); + var u = 0; + for (var p in i.needitems) { + var c = i.needitems[p], + g = t.ZAJw.MPDpiB(c.item.type, c.item.id), + d = 16777215; + g < c.item.count && (d = 15007744); + var m = new eui.Label(); + (m.size = 36), + (m.width = 448), + (m.stroke = 2.5), + (m.strokeColor = 0), + (m.textColor = 15064527), + (m.scaleX = 0.5), + (m.scaleY = 0.5), + (m.textFlow = t.hETx.qYVI(c.text + ("(|C:" + d + "&T:" + g + "|/" + c.item.count + ")"))), + this.taskCirceGrp.addChild(m), + (u += 1); + } + } else t.lEYZI.Naoc(this.taskCirceGrp); + this.setConveyInfo(i.teleport), + this.taskTips.removeEventListener(egret.TextEvent.LINK, this.onClickLink, this), + i.tips + ? (-1 != i.tips.indexOf("|E:") && (this.linkNum++, (this.taskTips.touchEnabled = !0), this.taskTips.addEventListener(egret.TextEvent.LINK, this.onClickLink, this)), + (this.taskTips.textFlow = t.hETx.generateTextFlow1(i.tips)), + this.allGrp.addChildAt(this.taskTips, 4)) + : t.lEYZI.Naoc(this.taskTips), + i.acceptbutton || i.completebutton + ? (i.acceptbutton && (this.taskBtn.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_73 + "")), + i.completebutton && (this.taskBtn.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Common_72 + "")), + this.allGrp.addChildAt(this.taskBtn, 5)) + : t.lEYZI.Naoc(this.taskBtn); + } + } else { + if (((this.actTaskInfo = this.taskInfo), !this.actTaskInfo)) return; + var f = "C:0xffffff&T:(" + this.actTaskInfo.times + t.CrmPU.language_Wlelfare_Text5 + ")", + v = ""; + (v = 4 == this.actTaskInfo.type ? "" + this.actTaskInfo.ActivityName : "" + this.actTaskInfo.ActivityName + f), + (this.taskName.textFlow = t.hETx.qYVI(v)), + this.actTaskInfo.ActivityDescription + ? ((this.taskContent.textFlow = t.hETx.generateTextFlow1(this.actTaskInfo.ActivityDescription)), this.allGrp.addChildAt(this.taskContent, 4)) + : t.lEYZI.Naoc(this.taskContent), + t.lEYZI.Naoc(this.taskTips), + t.lEYZI.Naoc(this.taskBtn), + t.lEYZI.Naoc(this.taskSendGrp), + t.lEYZI.Naoc(this.taskCirceGrp); + } + } + }), + (i.prototype.onTouchView = function () { + KdbLz.qOtrbE.iFbP && t.ckpDj.ins().sendEvent(t.MainEvent.CLICK_MAIN_TASK_LINK, this.taskInfo.taskID); + }), + (i.prototype.onTouch = function (e) { + if (!(KdbLz.qOtrbE.iFbP && this.linkNum > 1)) { + var i, + n = this.taskInfo.taskID ? t.VlaoF.TaskDisplayConfig[this.taskInfo.taskID][this.taskInfo.taskState] : null; + switch (e.currentTarget) { + case this.taskBtn: + n && t.mAYZL.ins().open(t.TaskInfoWin, this.taskInfo.taskID, this.taskInfo.taskState); + break; + case this.taskName: + case this.rect: + if (n) { + if (n.noteleport) for (var s in n.noteleport) if (t.GameMap.mapID == n.noteleport[s]) return void (t.qTVCL.ins().isOpen || t.qTVCL.ins().edcwsp()); + this.nameClick(n.taskname), n.tasknametips && t.uMEZy.ins().IrCm(n.tasknametips); + } else { + if (!this.actTaskInfo) return; + this.actTaskInfo.view.length > 1 + ? t.mAYZL.ins().ZbzdY(this.actTaskInfo.view[0]) || + (t.mAYZL.ins().open(this.actTaskInfo.view[0], this.actTaskInfo.hierarchy[0]) && t.mAYZL.ins().open(this.actTaskInfo.view[1], this.actTaskInfo.hierarchy[1])) + : t.mAYZL.ins().ZbzdY(this.actTaskInfo.view[0]) || t.mAYZL.ins().open(this.actTaskInfo.view[0], this.actTaskInfo.hierarchy); + } + break; + case this.taskSend0: + case this.taskSend1: + case this.taskSend2: + case this.taskSend3: + case this.taskSend4: + case this.taskSend5: + this.taskInfo && t.VrAZQ.ins().send_6_5(this.taskInfo.taskID, t.VrAZQ.conveyLink, e.currentTarget.flyID, this.taskInfo.taskState, t.GameMap.mapID); + break; + case this.flyGrp: + this.taskInfo && ((i = this.telePortArr[2]), t.VrAZQ.ins().send_6_5(this.taskInfo.taskID, t.VrAZQ.conveyFly, 0, this.taskInfo.taskState, t.GameMap.mapID)); + } + } + }), + (i.prototype.setConveyInfo = function (e) { + this.telePortArr = []; + for (var i in e) this.telePortArr.push(e[i]); + if (this.telePortArr.length > 0) { + var n = !1; + this.allGrp.addChildAt(this.taskSendGrp, 3), + this.taskSendGrp.addChildAt(this.taskflyGrp1, 1), + (this.taskSend0.visible = this.taskSend1.visible = this.taskSend2.visible = this.taskSend3.visible = this.taskSend4.visible = this.taskSend5.visible = !1); + for (var s = 0; s < this.telePortArr.length; s++) { + var a = this.telePortArr[s]; + a.id - 1 >= 3 && !n && (n = !0), (this["taskSend" + (a.id - 1)].text = ""), (this["taskSend" + (a.id - 1)].visible = !0); + var r = "" + this.telePortArr[s].name + ""; + (this["taskSend" + (a.id - 1)].textFlow = t.hETx.qYVI(r)), (this["taskSend" + (a.id - 1)].flyID = a.id), this.linkNum++; + } + n || t.lEYZI.Naoc(this.taskflyGrp1); + } else t.lEYZI.Naoc(this.taskSendGrp); + }), + (i.prototype.nameClick = function (e) { + var i = t.NWRFmB.ins().getPayer; + t.MainTaskWin.isClickSetup = !1; + var n; + if (e && this.taskInfo) + switch (e.type) { + case 1: + t.VrAZQ.ins().send_6_5(this.taskInfo.taskID, t.VrAZQ.conveyName, 0, this.taskInfo.taskState, t.GameMap.mapID); + break; + case 2: + if (i) { + var s = 0; + if ((e.param4 && (s = e.param4), (n = i.ifFindTask(e.param1, e.param2, e.param3)), n && -1 == n.x && -1 == n.y)) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips150); + i.setTask(e.param1, e.param2, e.param3, -1, -1, s); + } + break; + case 3: + e.param1 && (e.param2 ? t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1, e.param2) : t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1)); + break; + case 4: + if (i) { + if (((n = i.ifFindTask(e.param1, e.param2, e.param3)), n && -1 == n.x && -1 == n.y)) return void t.uMEZy.ins().IrCm(t.CrmPU.language_Tips150); + i.setTask(e.param1, e.param2, e.param3, this.taskInfo.taskID, this.taskInfo.taskState); + } + break; + case 5: + t.VrAZQ.ins().send_6_5(this.taskInfo.taskID, t.VrAZQ.conveyName, 0, this.taskInfo.taskState, t.GameMap.mapID); + break; + case 6: + break; + case 7: + case 8: + t.mAYZL.ins().open(t.TaskInfoWin, this.taskInfo.taskID, this.taskInfo.taskState); + break; + case 9: + t.mAYZL.ins().ZbzdY(t.BagView) || + t.mAYZL.ins().open(t.BagView, { + 0: 1, + }), + t.mAYZL.ins().ZbzdY(t.BagRecycleView) || t.mAYZL.ins().open(t.BagRecycleView); + break; + case 10: + (t.MainTaskWin.isClickSetup = !0), t.VrAZQ.ins().postUpdateTask(1); + break; + case 11: + e.param1 && e.param2 && e.param3 && e.param4 && t.mAYZL.ins().open(e.param1, e.param2, e.param3, e.param4); + } + }), + i + ); + })(t.BaseItemRender); + (t.MainTaskItemView = e), __reflect(e.prototype, "app.MainTaskItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.data && (this.labelDisplay.text = this.data.str); + }), + e + ); + })(t.BaseItemRender); + (t.MainTaskLinkItem = e), __reflect(e.prototype, "app.MainTaskLinkItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.dataTaskIdHash = {}), (t.dataList = []), (t.skinName = "PhoneTaskLinkSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.taskList.itemRenderer = t.MainTaskLinkItem), + (this.taskInfo = new eui.ArrayCollection()), + (this.taskList.dataProvider = this.taskInfo), + t.ckpDj.ins().addEvent(t.MainEvent.CLICK_MAIN_TASK_LINK, this.onShowView, this), + this.taskList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this); + }), + (i.prototype.updateTask = function (t) { + this.dataTaskIdHash = {}; + for (var e = 0; e < t.length; e++) this.addData(t[e]); + this.updateLIstanbul(), (this.dataList && 0 != this.dataList.length) || this.onHideView(); + }), + (i.prototype.addData = function (e) { + var i = e.taskID, + n = t.VlaoF.TaskDisplayConfig[i]; + if (n) { + var s = e.taskState, + a = t.VlaoF.TaskDisplayConfig[i][s]; + if (a && 0 == a.tasktype) { + (this.taskId != e.taskID || this.taskState != e.taskState) && this.onHideView(), (this.taskId = e.taskID), (this.taskState = e.taskState); + var r = []; + if (a.taskname) { + var o = a.taskname, + l = a.NpcName, + h = { + str: l, + type: o.type, + taskID: i, + taskState: s, + }; + 1 == o.type + ? ((h.flyID = 0), (h.conveyType = t.VrAZQ.conveyName)) + : 2 == o.type + ? ((h.sceneid = o.param1), (h.posx = o.param2), (h.posy = o.param3), (h.isStartAI = o.param4)) + : 3 == o.type + ? ((h.openView = o.param1), (h.openViewObj = o.param2)) + : 4 == o.type + ? ((h.sceneid = o.param1), (h.posx = o.param2), (h.posy = o.param3)) + : 5 == o.type + ? (h.flyID = 0) + : 11 == o.type && ((h.openView = o.param1), (h.param2 = o.param2), (h.param3 = o.param3), (h.param4 = o.param4)), + r.push(h); + } + if (a.teleport) + for (var p in a.teleport) { + var u = a.teleport[p], + l = u.name; + r.push({ + str: l, + type: 1, + flyID: u.id, + conveyType: t.VrAZQ.conveyLink, + taskID: i, + taskState: s, + }); + } + if (a.tips) { + var c = a.tips; + if (-1 != c.indexOf("|E:")) + for (var g = c.split("|E:"), p = 1; p < g.length; p++) { + var d = g[p].split("|")[0], + m = d.split(","), + l = d.split("&T:")[1]; + "-2" == m[0] && + r.push({ + str: l, + type: "openViewId", + viewId: m[1], + }); + } + } + r.length > 1 && (this.dataTaskIdHash[i] = r); + } + } + }), + (i.prototype.updateLIstanbul = function () { + this.dataList = []; + for (var t in this.dataTaskIdHash) for (var e = 0; e < this.dataTaskIdHash[t].length; e++) this.dataList.push(this.dataTaskIdHash[t][e]); + this.taskInfo.replaceAll(this.dataList); + }), + (i.prototype.onShowView = function (t) { + this.taskId == t && this.dataList && this.dataList.length > 1 && ((this.taskList.scrollV = 0), (this.visible = !this.visible)); + }), + (i.prototype.onHideView = function () { + this.visible = !1; + }), + (i.prototype.listClick = function (e) { + var i = t.NWRFmB.ins().getPayer; + t.MainTaskWin.isClickSetup = !1; + var n = this.taskList.selectedItem; + switch (n.type) { + case 1: + t.VrAZQ.ins().send_6_5(n.taskID, n.conveyType, n.flyID, n.taskState, t.GameMap.mapID); + break; + case 2: + if (i) { + var s = 0; + n.isStartAI && (s = n.isStartAI), i.setTask(n.sceneid, n.posx, n.posy, -1, -1, s); + } + break; + case 3: + n.openView && (n.openViewObj ? t.mAYZL.ins().ZbzdY(n.openView) || t.mAYZL.ins().open(n.openView, n.openViewObj) : t.mAYZL.ins().ZbzdY(n.openView) || t.mAYZL.ins().open(n.openView)); + break; + case 4: + i && i.setTask(n.sceneid, n.posx, n.posy, n.taskID, n.taskState); + break; + case 5: + t.VrAZQ.ins().send_6_5(n.taskID, t.VrAZQ.conveyName, 0, n.taskState, t.GameMap.mapID); + break; + case 6: + break; + case 7: + case 8: + t.mAYZL.ins().open(t.TaskInfoWin, n.taskID, n.taskState); + break; + case 9: + t.mAYZL.ins().ZbzdY(t.BagView) || + t.mAYZL.ins().open(t.BagView, { + 0: 1, + }), + t.mAYZL.ins().ZbzdY(t.BagRecycleView) || t.mAYZL.ins().open(t.BagRecycleView); + break; + case 10: + (t.MainTaskWin.isClickSetup = !0), t.VrAZQ.ins().postUpdateTask(1); + break; + case 11: + n.openView && n.param2 && n.param3 && n.param4 && t.mAYZL.ins().open(n.openView, n.param2, n.param3, n.param4); + break; + case "openViewId": + t.mAYZL.ins().openViewId(n.viewId); + } + this.onHideView(); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onHideView, this), + t.ckpDj.ins().removeEvent(t.MainEvent.CLICK_MAIN_TASK_LINK, this.onShowView, this), + this.taskList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this); + }), + i + ); + })(t.gIRYTi); + (t.MainTaskLinkWin = e), __reflect(e.prototype, "app.MainTaskLinkWin"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.isUnfold = !0), + (t.btnSelect = 1), + KdbLz.qOtrbE.iFbP ? ((t.skinName = "PhoneTaskSkin"), (t.scaleX = t.scaleY = 0.94), (t.left = 0), (t.top = 46)) : ((t.skinName = "MainTaskWinSkin"), (t.right = 0), (t.top = 276)), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.touchEnabled = !1), + (this.taskList.itemRenderer = t.MainTaskItemView), + (this.taskInfo = new eui.ArrayCollection()), + (this.taskList.dataProvider = this.taskInfo), + (this.teamList.itemRenderer = t.TeamMainItemView), + (this.teamInfo = new eui.ArrayCollection()), + (this.teamList.dataProvider = this.teamInfo); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.isTeam.label = "允许组队"), + this.isTeam.setCallback(this, this.onClick), + (this.isTeam.dataObj = {}), + (this.taskScroller.verticalScrollBar.autoVisibility = !1), + (this.taskScroller.verticalScrollBar.visible = !1), + t.MouseScroller.bind(this.taskScroller), + this.vKruVZ(this.shrinkBtn, this.onClick), + this.vKruVZ(this.unfoldBtn, this.onClick), + this.vKruVZ(this.teamBtn, this.onClick), + this.vKruVZ(this.inviteTeamBtn, this.onClick), + this.vKruVZ(this.invitePlayerBtn, this.onClick), + this.vKruVZ(this.inviteTeamBtn1, this.onClick), + this.vKruVZ(this.invitePlayerBtn1, this.onClick), + this.taskList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.listClick, this), + t.ubnV.ihUJ || + (this.HFTK(t.VrAZQ.ins().post_6_1, this.updateTask), + this.HFTK(t.VrAZQ.ins().post_6_2, this.updateTask), + this.HFTK(t.VrAZQ.ins().post_6_3, this.updateTask), + this.HFTK(t.VrAZQ.ins().post_6_4, this.updateTask), + this.HFTK(t.TQkyOx.ins().post_25_1, this.updateTask), + this.HFTK(t.TQkyOx.ins().post_25_2, this.updateTask), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateTask), + this.HFTK(t.TQkyOx.ins().post_25_4, this.updateTask), + this.HFTK(t.TQkyOx.ins().post_25_5, this.updateTask), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateTaskView), + this.HFTK(t.Nzfh.ins().post_playerExpChange, this.updateTaskExp), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateTaskExp), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateTaskExp), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateTaskExp), + this.HFTK(t.UyfaJ.ins().post_49_4, this.updateTask), + this.HFTK(t.Nzfh.ins().post_updateLevel, this.updateTask), + this.HFTK(t.Nzfh.ins().post_taskMouse, this.updateMouseEff), + this.HFTK(t.Nzfh.ins().post_autoReceiveTask, this.removeAutoTimer), + this.HFTK(t.VrAZQ.ins().post_taskAiStart, this.updateOnHook), + this.HFTK(t.VrAZQ.ins().post_taskAi, this.doTimerClick), + t.KHNO.ins().tBiJo(2e3, 0, this.updateMouseEff, this), + t.VrAZQ.ins().send_6_1()), + this.HFTK(t.Qskf.ins().post_onReceiveMyTeamMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveAddMbMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveDelMbMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveUpdateOnlineState, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveSetLeadMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveDestroyMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveTeamState, this.updateTeamState), + this.HFTK(t.VrAZQ.ins().post_selectIsShow, this.updateItemSelect), + this.VoZqXH(this.slidingImg, this.mouseMove), + this.EeFPm(this.slidingImg, this.mouseMove), + (this.teamRect.visible = !0), + (this.taskRect.visible = this.teamGrp.visible = !1), + this.updateNearTeamList(); + t.ubnV.ihUJ && this.changeTaskPanel(!0); + }), + (i.prototype.updateTeamState = function () { + this.isTeam.selected = 1 == t.Qskf.ins().myTeamState ? !0 : !1; + }), + (i.prototype.updateTaskExp = function () { + var e = t.VrAZQ.ins().getTaskArr(); + if (e && e[0] && e[0].taskID && e[0].taskState) { + var i = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + i && 0 == i.tasktype && (i.levelTaskschedule || i.needitems) && this.taskInfo.itemUpdated(e[0]); + } + }), + (i.prototype.stopMC = function () { + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(); + }), + (i.prototype.listClick = function (t) { + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(); + }), + (i.prototype.updateOnHook = function () { + if (t.qTVCL.ins().isOpen && 1 == t.EhSWiR.autoState) { + var e = t.VrAZQ.ins().getTaskArr(); + if (e && e[0] && e[0].taskID && e[0].taskState) { + var i = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + i && + 0 == i.tasktype && + (t.EhSWiR.taskState = { + id: i.id, + state: i.state, + taskstate: i.taskstate, + }); + } + } + }), + (i.prototype.updateTaskView = function () { + this.isUnfold || ((this.unfoldGrp.visible = !1) && ((this.unfoldGrp.visible = this.effGrp.visible = !0), (this.teamGrp.visible = !1)), (this.btnSelect = 1)); + }), + (i.prototype.updateNearTeamList = function () { + (this.slidingImg.visible = this.teamList.visible = !0), (this.btnGrp.visible = this.btnGrp1.visible = !1); + var e = t.Qskf.ins().myTeamList; + 0 == e.length + ? ((this.btnGrp.visible = this.slidingImg.visible = this.teamList.visible = !1), (this.btnGrp1.visible = !0)) + : e.length < 4 && ((this.btnGrp.y = 185), (this.btnGrp.visible = !0), (this.slidingImg.visible = !1)), + this.teamInfo.replaceAll(e); + }), + (i.prototype.updateTask = function () { + var e = t.VrAZQ.ins().getTaskArr(); + this.taskInfo.replaceAll(e), this.updateMouseEff(), this.linkView && this.linkView.updateTask(e); + }), + (i.prototype.updateMouseEff = function () { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask)) + if (t.qTVCL.ins().isFinding || 0 != t.GameMap.fubenID || 1 != t.edHC.ins().isLargeMapAct) + t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this), this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(); + else { + var e = t.VrAZQ.ins().getTaskArr(); + if (e && e[0] && e[0].taskID && e[0].taskState) { + var n = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + if (n && 0 == n.tasktype) { + if (!n.animation) return; + if (1 == n.taskstate) { + if (i.isClickSetup) { + var s = t.mAYZL.ins().ZzTs(t.SetUpView); + s && 6 == s.getUpViewIdx && t.VrAZQ.ins().postUpdateTask(2); + } + if (egret.getTimer() < t.VrAZQ.ins().clickTime) return void (t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this)); + } + if (0 == this.unfoldGrp.visible) return void (t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this)); + var a = t.mAYZL.ins().ZzTs(t.SetUpView); + if (t.mAYZL.ins().ZbzdY(t.TaskInfoWin) || (a && 6 == a.getUpViewIdx) || i.isTaskSetUpMC) + return ( + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + void (t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this)) + ); + var r = 1 == t.GameMap.mapID || 3 == t.GameMap.mapID; + if (this.mouseMc) { + if ((1 == n.taskstate && (t.qTVCL.ins().isOpen || t.qTVCL.ins().isFinding) && (this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc()), n.isauto)) + if (1 == n.taskstate && !r && t.qTVCL.ins().isOpen) t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this); + else { + if (0 == n.taskstate) + return ( + t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this), + void this.doTimerClick() + ); + 2 == n.taskstate + ? (t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.doTimerClick, this)) + : 1 == n.taskstate && + (r + ? (t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.doTimerClick, this)) + : t.KHNO.ins().RTXtZF(this.edcwsp, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.edcwsp, this)); + } + } else { + if (i.isClickSetup) return void this.doTimerClick(); + var o = t.qTVCL.ins().isOpen || t.qTVCL.ins().isFinding ? !0 : !1; + if ( + ((1 == n.taskstate && o) || + ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + n.isauto) + ) + if (1 == n.taskstate && !r && t.qTVCL.ins().isOpen) t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this); + else { + if (0 == n.taskstate) + return ( + t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this), + void this.doTimerClick() + ); + 2 == n.taskstate + ? (t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.doTimerClick, this)) + : 1 == n.taskstate && + (r + ? (t.KHNO.ins().RTXtZF(this.edcwsp, this) && t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().RTXtZF(this.doTimerClick, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.doTimerClick, this)) + : t.KHNO.ins().RTXtZF(this.edcwsp, this) || t.KHNO.ins().tBiJo(1e3 * n.automatic, 1, this.edcwsp, this)); + } + else t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this); + } + if (this.mouseMc) { + if (!this.mouseMc.isPlaying) { + var l = KdbLz.qOtrbE.iFbP ? "eff_xsyd2" : "eff_xsyd1"; + this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + l, -1); + } + 10 == n.taskname.type && this.playOpenMc(); + } + } + } + } + else + t.KHNO.ins().RTXtZF(this.doTimerClick, this) && t.KHNO.ins().remove(this.doTimerClick, this), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + t.VrAZQ.ins().postUpdateTask(2), + this.stopOpenMc(); + }), + (i.prototype.playOpenMc = function () { + this.openMc || ((this.openMc = t.ObjectPool.pop("app.MovieClip")), (this.openMc.touchEnabled = !1), this.effGrp.addChild(this.openMc)), + this.openMc.isPlaying || this.openMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", -1); + }), + (i.prototype.stopOpenMc = function () { + this.openMc && (this.openMc.destroy(), (this.openMc = null)); + }), + (i.prototype.edcwsp = function () { + t.KHNO.ins().remove(this.edcwsp, this), t.KHNO.ins().remove(this.dailtStartAi, this), t.qTVCL.ins().isOpen || t.KHNO.ins().tBiJo(500, 1, this.dailtStartAi, this); + }), + (i.prototype.dailtStartAi = function () { + t.KHNO.ins().remove(this.dailtStartAi, this); + var e = 1 == t.GameMap.mapID || 3 == t.GameMap.mapID, + i = t.VrAZQ.ins().getTaskArr(); + if (i && i[0] && i[0].taskID && i[0].taskState) { + var n = t.VlaoF.TaskDisplayConfig[i[0].taskID][i[0].taskState]; + 1 != n.taskstate || e || t.qTVCL.ins().edcwsp(); + } + }), + (i.prototype.removeAutoTimer = function () { + if (t.KHNO.ins().RTXtZF(this.doTimerClick, this)) { + t.KHNO.ins().remove(this.doTimerClick, this), t.KHNO.ins().remove(this.edcwsp, this); + var e = t.VrAZQ.ins().getTaskArr(); + if (e && e[0] && e[0].taskID && e[0].taskState) { + var i = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState], + n = 2e3; + if (i) + if (1 == i.taskstate) { + var s = t.VlaoF.TimeManagerConfigConfig, + a = 1; + s && s.Taskfingertime && (a = s.Taskfingertime), (n = 1e3 * i.automatic + 1e3 * a); + } else 0 == i.taskstate ? (n = 0) : 2 == i.taskstate && (n = 1e3 * i.automatic); + var r = 1 == t.GameMap.mapID || 3 == t.GameMap.mapID; + i.isauto && + (0 == i.taskstate + ? this.doTimerClick() + : 1 == i.taskstate + ? t.KHNO.ins().tBiJo(n, 1, this.doTimerClick, this) + : 2 == i.taskstate && (r ? t.KHNO.ins().tBiJo(n, 1, this.doTimerClick, this) : t.KHNO.ins().tBiJo(n, 1, this.edcwsp, this))); + } + } + }), + (i.prototype.doTimerClick = function () { + var e = t.VrAZQ.ins().getTaskArr(); + if (e && e[0] && e[0].taskID && e[0].taskState) { + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(); + var i = t.VlaoF.TaskDisplayConfig[e[0].taskID][e[0].taskState]; + i && 0 == i.tasktype && (i.taskname ? this.nameClick(i) : 1 == i.flyshoes && t.VrAZQ.ins().send_6_5(i.id, t.VrAZQ.conveyFly, 0, i.state, t.GameMap.mapID)); + } + }), + (i.prototype.nameClick = function (e) { + var n = t.NWRFmB.ins().getPayer; + if (((i.isClickSetup = !1), e && e.taskname)) + switch (e.taskname.type) { + case 1: + t.VrAZQ.ins().send_6_5(e.id, t.VrAZQ.conveyName, 0, e.state, t.GameMap.mapID); + break; + case 2: + if (n) { + var s = n.ifFindTask(e.taskname.param1, e.taskname.param2, e.taskname.param3); + if (s && -1 == s.x && -1 == s.y) return void (1 == e.flyshoes && t.VrAZQ.ins().send_6_5(e.id, t.VrAZQ.conveyFly, 0, e.state, t.GameMap.mapID)); + var a = 0; + e.taskname.param4 && (a = e.taskname.param4), n.setTask(e.taskname.param1, e.taskname.param2, e.taskname.param3, -1, -1, a); + } + break; + case 3: + e.taskname.param1 && (e.taskname.param2 ? t.mAYZL.ins().open(e.taskname.param1, e.taskname.param2) : t.mAYZL.ins().open(e.taskname.param1)); + break; + case 4: + if (n) { + var s = n.ifFindTask(e.taskname.param1, e.taskname.param2, e.taskname.param3); + if (s && -1 == s.x && -1 == s.y) return void (1 == e.flyshoes && t.VrAZQ.ins().send_6_5(e.id, t.VrAZQ.conveyFly, 0, e.state, t.GameMap.mapID)); + n.setTask(e.taskname.param1, e.taskname.param2, e.taskname.param3, e.id, e.state); + } + break; + case 5: + t.VrAZQ.ins().send_6_5(e.id, t.VrAZQ.conveyName, 0, e.state, t.GameMap.mapID); + break; + case 6: + break; + case 7: + case 8: + t.mAYZL.ins().open(t.TaskInfoWin, e.id, e.state); + break; + case 9: + t.mAYZL.ins().ZbzdY(t.BagView) || + t.mAYZL.ins().open(t.BagView, { + 0: 1, + }), + t.mAYZL.ins().ZbzdY(t.BagRecycleView) || t.mAYZL.ins().open(t.BagRecycleView); + break; + case 10: + (i.isClickSetup = !0), t.VrAZQ.ins().postUpdateTask(1); + break; + case 11: + e.taskname.param1 && e.taskname.param2 && e.taskname.param3 && e.taskname.param4 && t.mAYZL.ins().open(e.taskname.param1, e.taskname.param2, e.taskname.param3, e.taskname.param4); + } + }), + (i.prototype.mouseMove = function (t) { + var e = this; + if (t.type == mouse.MouseEvent.MOUSE_OUT) + egret.setTimeout( + function () { + egret.Tween.removeTweens(e.btnGrp); + var t = egret.Tween.get(e.btnGrp); + t.to( + { + y: 227, + }, + 100 + ).call(function () { + e.btnGrp.visible = !1; + }); + }, + this, + 3e3 + ); + else if (0 == this.btnGrp.visible) { + (this.btnGrp.visible = !0), egret.Tween.removeTweens(this.btnGrp), (this.btnGrp.y = 227); + var i = egret.Tween.get(this.btnGrp); + i.to( + { + y: 185, + }, + 100 + ); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.isTeam: + var i = this.isTeam.selected ? 1 : 0; + t.Qskf.ins().onSendAllowableTeam(i); + break; + case this.inviteTeamBtn: + case this.inviteTeamBtn1: + t.mAYZL.ins().ZbzdY(t.TeamView) || t.mAYZL.ins().open(t.TeamView, 1); + break; + case this.invitePlayerBtn: + case this.invitePlayerBtn1: + t.mAYZL.ins().ZbzdY(t.TeamView) || t.mAYZL.ins().open(t.TeamView, 2); + break; + case this.shrinkBtn: + this.isUnfold && (0 == this.unfoldGrp.visible && (this.unfoldGrp.visible = this.effGrp.visible = !0), (this.teamGrp.visible = !1)), + (this.btnSelect = 1), + (this.teamRect.visible = !0), + (this.taskRect.visible = !1); + break; + case this.teamBtn: + this.isUnfold && (0 == this.teamGrp.visible && (this.teamGrp.visible = !0), (this.unfoldGrp.visible = this.effGrp.visible = !1), t.Qskf.ins().onSendGetTeamState()), + (this.btnSelect = 2), + (this.taskRect.visible = !0), + (this.teamRect.visible = !1); + break; + case this.unfoldBtn: + this.changeTaskPanel(!1); + } + }), + (i.prototype.changeTaskPanel = function (s) { + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + (this.isUnfold = this.bgImg.visible = !this.isUnfold), + (this.unfoldBtn.scaleX = this.isUnfold ? 1 : -1), + !s && 0 == this.isUnfold + ? (this.unfoldGrp.visible = this.teamGrp.visible = this.effGrp.visible = !1) + : 1 == this.btnSelect + ? 0 == this.unfoldGrp.visible && ((this.unfoldGrp.visible = this.effGrp.visible = !0), (this.teamGrp.visible = !1)) + : 2 == this.btnSelect && (t.Qskf.ins().onSendGetTeamState(), 0 == this.teamGrp.visible && ((this.unfoldGrp.visible = this.effGrp.visible = !1), (this.teamGrp.visible = !0))); + }), + (i.prototype.updateItemSelect = function (t) { + for (var e = 0; e < this.taskList.dataProvider.length; e++) { + var i = this.taskList.getVirtualElementAt(e); + i && (i.isSelectImg.visible = !1); + } + if (t && 0 != t[0] && 0 != t[1]) + for (var n = 0; n < this.taskInfo.length; n++) { + var s = this.taskInfo.getItemAt(n); + if (s.taskID == t[0] && s.taskState == t[1]) { + var a = this.taskList.getVirtualElementAt(n); + if (a) { + a.isSelectImg.visible = !0; + break; + } + } + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + t.KHNO.ins().remove(this.doTimerClick, this), + t.KHNO.ins().remove(this.edcwsp, this), + t.KHNO.ins().remove(this.updateMouseEff, this), + t.MouseScroller.unbind(this.taskScroller), + this.fEHj(this.isTeam, this.onClick), + this.fEHj(this.shrinkBtn, this.onClick), + this.fEHj(this.unfoldBtn, this.onClick), + this.fEHj(this.teamBtn, this.onClick), + this.fEHj(this.inviteTeamBtn, this.onClick), + this.fEHj(this.invitePlayerBtn, this.onClick), + this.fEHj(this.inviteTeamBtn1, this.onClick), + this.fEHj(this.invitePlayerBtn1, this.onClick), + this.slidingImg.removeEventListener(mouse.MouseEvent.MOUSE_OUT, this.mouseMove, this), + this.slidingImg.removeEventListener(mouse.MouseEvent.MOUSE_OVER, this.mouseMove, this); + }), + (i.isTaskSetUpMC = !1), + (i.isClickSetup = !1), + i + ); + })(t.gIRYTi); + (t.MainTaskWin = e), __reflect(e.prototype, "app.MainTaskWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.taskID = -1), + (i.taskState = -1), + (i.npcCog = 0), + (i.btnState = 0), + (i.createTime = 0), + (i.autoTaskNum = 0), + (i.skinName = "TaskInfoWinSkin2"), + (i.name = "TaskInfoWin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.rewardList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.autoTask.visible = !1; + var n = t.VlaoF.TimeManagerConfigConfig, + s = 1; + n && n.Taskfingertime && (s = n.Taskfingertime), + (t.VrAZQ.ins().clickTime = egret.getTimer() + 1e3 * s), + e[0] && ((this.taskID = e[0]), (t.VrAZQ.ins().taskInfoID = e[0])), + e[1] && (this.taskState = e[1]), + e[2] && (this.npcCog = e[2]); + var a = t.VlaoF.TaskDisplayConfig[this.taskID][this.taskState]; + a && + ((this.title.text = a.NpcName), + (this.taskDesc.textFlow = t.hETx.qYVI(a.description)), + a.taskbutton ? ((this.btnState = 1), (this.sureBtn.label = t.CrmPU.language_Common_72)) : ((this.btnState = 0), (this.sureBtn.label = t.CrmPU.language_Common_73)), + (this.taskAims.visible = 0 == this.btnState), + (this.taskAims.text = a.tasktarget ? t.CrmPU.language_Common_74 + a.tasktarget : t.CrmPU.language_Common_74), + (this.rewardList.dataProvider = new eui.ArrayCollection(a.awarddisplay)), + (this.rewardImg.visible = a.awarddisplay && a.awarddisplay.length > 0)), + this.vKruVZ(this.sureBtn, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + t.Nzfh.ins().post_taskMouse(), + this.HFTK(t.Nzfh.ins().post_taskMouse, this.updateMouseEff), + this.HFTK(t.Nzfh.ins().post_autoReceiveTask, this.removeAutoTimer), + t.KHNO.ins().tBiJo(2e3, 0, this.updateMouseEff, this); + }), + (i.prototype.updateMouseEff = function () { + if (t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_autoTask)) + if (t.qTVCL.ins().isFinding || 0 != t.GameMap.fubenID || 1 != t.edHC.ins().isLargeMapAct) + t.KHNO.ins().RTXtZF(this.clickBtn, this) && t.KHNO.ins().remove(this.clickBtn, this), t.KHNO.ins().RTXtZF(this.autoTaskTxt, this) && t.KHNO.ins().remove(this.autoTaskTxt, this); + else { + var e = t.VlaoF.TaskDisplayConfig[this.taskID][this.taskState]; + if (e) { + if (!e.animation) return; + if (1 == e.taskstate && egret.getTimer() < t.VrAZQ.ins().clickTime) return; + if (!this.mouseMc) { + (this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc); + var i = 2e3; + (i = 1e3 * e.automatic), + e.isauto && + (t.KHNO.ins().tBiJo(i, 1, this.clickBtn, this), + (this.autoTask.visible = !0), + (this.autoTaskNum = Math.floor(i / 1e3)), + t.KHNO.ins().tBiJo(1e3, 0, this.autoTaskTxt, this), + this.autoTaskTxt()); + } + this.mouseMc.isPlaying || this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_xsyd1", -1), 10 == e.taskname.type && this.playOpenMc(); + } + } + else + t.KHNO.ins().RTXtZF(this.clickBtn, this) && t.KHNO.ins().remove(this.clickBtn, this), + t.KHNO.ins().RTXtZF(this.autoTaskTxt, this) && t.KHNO.ins().remove(this.autoTaskTxt, this), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(); + }), + (i.prototype.playOpenMc = function () { + this.openMc || ((this.openMc = t.ObjectPool.pop("app.MovieClip")), (this.openMc.touchEnabled = !1), this.effGrp.addChild(this.openMc)), + this.openMc.isPlaying || this.openMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_gjxbz", -1); + }), + (i.prototype.stopOpenMc = function () { + this.openMc && (this.openMc.destroy(), (this.openMc = null)); + }), + (i.prototype.autoTaskTxt = function () { + (this.autoTask.textFlow = t.hETx.qYVI("|C:0x28ee01&T:" + this.autoTaskNum + "秒||C:0xe9ebd8&T:后自动点击|")), + (this.autoTaskNum -= 1), + this.autoTaskNum < 0 && ((this.autoTask.visible = !1), (this.autoTask.text = ""), t.KHNO.ins().remove(this.autoTaskTxt, this)); + }), + (i.prototype.removeAutoTimer = function () { + if (t.KHNO.ins().RTXtZF(this.clickBtn, this)) { + t.KHNO.ins().remove(this.clickBtn, this), t.KHNO.ins().remove(this.autoTaskTxt, this); + var e = t.VlaoF.TaskDisplayConfig[this.taskID][this.taskState], + i = 2e3; + if (e) + if (1 == e.taskstate) { + var n = t.VlaoF.TimeManagerConfigConfig, + s = 1; + n && n.Taskfingertime && (s = n.Taskfingertime), (i = 1e3 * e.automatic + 1e3 * s); + } else i = 1e3 * e.automatic; + e.isauto && + (t.KHNO.ins().tBiJo(i, 1, this.clickBtn, this), + (this.autoTask.visible = !0), + (this.autoTaskNum = Math.floor(i / 1e3)), + t.KHNO.ins().tBiJo(1e3, Math.floor(i / 1e3), this.autoTaskTxt, this), + this.autoTaskTxt()); + } + }), + (i.prototype.clickBtn = function () { + if (1 == this.btnState) { + var e = t.VlaoF.BagRemainConfig[7]; + if (e) { + var i = t.ThgMu.ins().getBagCapacity(e.bagremain); + i + ? (this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + t.AHhkf.ins().Uvxk(t.OSzbc.UPGRADE), + t.VrAZQ.ins().send_6_2(this.taskID, this.taskState, this.npcCog)) + : t.uMEZy.ins().IrCm(e.bagtips); + } + } else this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(), t.VrAZQ.ins().send_6_2(this.taskID, this.taskState, this.npcCog); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.sureBtn: + if ((this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), this.stopOpenMc(), 1 == this.btnState)) { + var i = t.VlaoF.BagRemainConfig[7]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? (t.AHhkf.ins().Uvxk(t.OSzbc.UPGRADE), t.VrAZQ.ins().send_6_2(this.taskID, this.taskState, this.npcCog)) : t.uMEZy.ins().IrCm(i.bagtips); + } + } else t.VrAZQ.ins().send_6_2(this.taskID, this.taskState, this.npcCog); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(); + var s = t.VlaoF.TimeManagerConfigConfig, + a = 1; + s && s.Taskfingertime && (a = s.Taskfingertime), + (t.VrAZQ.ins().clickTime = egret.getTimer() + 1e3 * a), + (this.dragDropUI = null), + t.KHNO.ins().remove(this.clickBtn, this), + t.KHNO.ins().remove(this.updateMouseEff, this), + t.KHNO.ins().remove(this.autoTaskTxt, this), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)), + this.stopOpenMc(), + this.fEHj(this.sureBtn, this.onClick), + this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.TaskInfoWin = e), __reflect(e.prototype, "app.TaskInfoWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.myTeamList = []), + (i.nearPlayerList = []), + (i.nearTeamList = []), + (i.onlineFriendList = []), + (i.inviteList = []), + (i.sysId = t.jDIWJt.Team), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsInitTeam, i.post_onReceiveMyTeamMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsAddMember, i.post_onReceiveAddMbMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsDelMember, i.post_onReceiveDelMbMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsApplyJoinTeam, i.post_onReceiveAppJoinMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsSetCaptin, i.post_onReceiveSetLeadMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsMemberLogout, i.post_onReceiveDelMbMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsDestroyTeam, i.post_onReceiveDestroyMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemcNearTeamList, i.post_onReceiveNearTeamListMsg), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemcIsTeam, i.post_onReceiveTeamState), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemcTeamOnlineState, i.post_onReceiveUpdateOnlineState), + i.YrTisc(t.TeamProtocol.sc_enTeamSystemsTeamInvite, i.post_onReceiveTeamInvite), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.post_onReceiveTeamState = function (t) { + this.myTeamState = t.readByte(); + }), + (i.prototype.setNearPlayerList = function () { + this.nearPlayerList = t.edHC.ins().nearPlayerList; + }), + (i.prototype.setFriendList = function () { + var e = t.KWGP.ins().friendsList; + this.onlineFriendList = []; + for (var i = 0; i < e.length; i++) { + var n = e[i]; + if (1 == n.online) { + if (this.findAlikePlayerData(n.roleId)) continue; + this.onlineFriendList.push(n); + } + } + }), + (i.prototype.findInviteListDel = function (t) { + for (var e = 0; e < this.inviteList.length; e++) { + var i = this.inviteList[e]; + t == i.roleId && this.inviteList.splice(e, 1); + } + }), + (i.prototype.findAlikePlayerData = function (t) { + for (var e = 0; e < this.onlineFriendList.length; e++) { + var i = this.onlineFriendList[e]; + if (t == i.roleId) return !0; + } + return !1; + }), + (i.prototype.post_onReceiveUpdateOnlineState = function (e) { + var i = new t.TeamData(); + (i.roleId = e.readUnsignedInt()), + (i.nickName = e.readString()), + (i.level = e.readInt()), + (i.turn = e.readByte()), + (i.profession = e.readByte()), + (i.sex = e.readByte()), + (i.online = e.readByte()), + (i.sceneId = e.readInt()), + (i.maxHP = e.readUnsignedInt()), + (i.curHP = e.readUnsignedInt()), + (i.superLv = e.readUnsignedInt()); + for (var n = 0; n < this.myTeamList.length; n++) { + var s = this.myTeamList[n]; + i.roleId == s.roleId && (this.myTeamList[n] = i); + } + t.EhSWiR.updateNaemColor(); + }), + (i.prototype.post_onReceiveNearTeamListMsg = function (e) { + for (var i = e.readByte(), n = null, s = [], a = 0; i > a; a++) + (n = new t.NearTeamData()), + (n.roleId = e.readUnsignedInt()), + (n.nickName = e.readString()), + (n.level = e.readInt()), + (n.turn = e.readByte()), + (n.teamNum = e.readByte()), + (n.guildName = e.readString()), + (n.type = 2), + s.push(n); + this.nearTeamList = s; + }), + (i.prototype.post_onReceiveMyTeamMsg = function (e) { + var i = e.readByte(), + n = null, + s = []; + this.myTeamList = []; + for (var a = 0; i > a; a++) { + (n = new t.TeamData()), + (n.roleId = e.readUnsignedInt()), + (n.nickName = e.readString()), + (n.level = e.readInt()), + (n.turn = e.readByte()), + (n.profession = e.readByte()), + (n.sex = e.readByte()), + (n.online = e.readByte()), + (n.sceneId = e.readInt()), + (n.maxHP = e.readUnsignedInt()), + (n.curHP = e.readUnsignedInt()), + (n.superLv = e.readUnsignedInt()), + (n.type = 0); + var r = t.VlaoF.Scenes[n.sceneId]; + (n.sceneName = r && r.scencename), s.push(n); + } + i > 0 && (this.myTeamleaderid = e.readUnsignedInt()), (this.myTeamList = s.sort(this.sort)), t.EhSWiR.updateNaemColor(); + }), + (i.prototype.sort = function (t, e) { + var n = i.ins().myTeamleaderid; + return t.roleId == n ? -1 : e.roleId == n ? 1 : t.online && !e.online ? -1 : !t.online && e.online ? 1 : t.level > e.level ? -1 : t.level < e.level ? 1 : void 0; + }), + (i.prototype.post_onReceiveAddMbMsg = function (e) { + var i = new t.TeamData(); + (i.roleId = e.readUnsignedInt()), + (i.nickName = e.readString()), + (i.level = e.readInt()), + (i.turn = e.readByte()), + (i.profession = e.readByte()), + (i.sex = e.readByte()), + (i.online = e.readByte()), + (i.sceneId = e.readInt()), + (i.maxHP = e.readUnsignedInt()), + (i.curHP = e.readUnsignedInt()), + (i.superLv = e.readUnsignedInt()), + this.myTeamList.push(i), + t.EhSWiR.updateNaemColor(); + }), + (i.prototype.post_onReceiveDelMbMsg = function (e) { + var i = e.readUnsignedInt(); + this.delRoleId = i; + var n = this.findPlayerData(i, this.myTeamList); + n > -1 && this.myTeamList.splice(n, 1), t.EhSWiR.updateNaemColor(); + }), + (i.prototype.post_onReceiveAppJoinMsg = function (e) { + var i = new t.TeamCommonData(); + (i.roleId = e.readUnsignedInt()), (i.nickName = e.readString()), (i.timer = 15), (this.curRequestTeamRoleId = i.roleId), this.inviteList.push(i); + }), + (i.prototype.post_onReceiveSetLeadMsg = function (e) { + var i = new t.TeamCommonData(); + (i.roleId = e.readUnsignedInt()), (this.myTeamleaderid = i.roleId); + }), + (i.prototype.post_onReceiveDestroyMsg = function (e) { + (this.myTeamList = []), t.mAYZL.ins().close(t.TeamMainView), t.EhSWiR.updateNaemColor(); + }), + // 组队邀请确认 + (i.prototype.post_onReceiveTeamInvite = function (e) { + var inviteId = e.readUnsignedInt(), + inviteName = e.readString(); + //console.log('收到组队邀请确认, inviteId=' + inviteId + ', inviteName=' + inviteName); + if (!inviteId || !inviteName) return; + t.CautionView.show( + inviteName + " 邀请您加入组队,是否同意?", + function () { + t.Qskf.ins().onSendApplyJoinTeam(inviteId, 1); + }, + this + ); + }), + (i.prototype.onSendMyTeamList = function () { + var e = this.MxGiq(t.TeamProtocol.cc_enTeamSystemsInitTeam); + this.evKig(e); + }), + (i.prototype.onSendNearList = function () { + var e = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcNearTeamList); + this.evKig(e); + }), + (i.prototype.onSendInviteJoinTeam = function (e, i) { + var n = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcInviteJoinTeam); + n.writeString(i), n.writeUnsignedInt(e), this.evKig(n); + }), + (i.prototype.onSendleaveTeam = function () { + var e = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcLeaveTeam); + this.evKig(e); + }), + (i.prototype.onSendApplyJoinTeam = function (e) { + var i = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcApplyJoinTeam); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.onSendSetTeamLeadTeam = function (e) { + var i = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcSetCaptin); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.onSendDelMember = function (e) { + var i = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcKickMember); + i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.onSendSetDestroyLeader = function () { + var e = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcDestroyTeam); + this.evKig(e); + }), + (i.prototype.onSendAllowableTeam = function (e) { + var i = this.MxGiq(t.TeamProtocol.cs_enTeamSysteAutoTeam); + i.writeByte(e), this.evKig(i); + }), + // 设置组队需要确认 + (i.prototype.onSendNeedConfirmTeam = function (e) { + //console.log('设置组队需要确认: ' + e); + var i = this.MxGiq(t.TeamProtocol.cs_enTeamSysteConfirmTeam); + i.writeByte(e), this.evKig(i); + }), + (i.prototype.onSendApplyJoinTeamReply = function (e, i) { + var n = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcApplyJoinTeamReply); + n.writeUnsignedInt(e), n.writeByte(i), this.evKig(n); + }), + (i.prototype.onSendGetTeamState = function () { + var e = this.MxGiq(t.TeamProtocol.cs_enTeamSystemcIsTeam); + this.evKig(e); + }), + (i.prototype.findPlayerData = function (t, e) { + for (var i = 0; i < e.length; i++) { + var n = e[i]; + if (t == n.roleId) return i; + } + return -1; + }), + (i.prototype.getNumByTab = function (t) { + var e = 0; + return 0 == t ? (e = this.myTeamList.length) : 1 == t ? (e = this.nearPlayerList.length) : 2 == t ? (e = this.nearTeamList.length) : 3 == t && (e = this.onlineFriendList.length), e; + }), + (i.prototype.getIsMyTeam = function (t) { + if (this.myTeamList.length) for (var e = 0; e < this.myTeamList.length; e++) if (this.myTeamList[e].roleId == t) return !0; + return !1; + }), + i + ); + })(t.DlUenA); + (t.Qskf = e), __reflect(e.prototype, "app.Qskf"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() { + this.superLv = 0; + } + return t; + })(); + (t.TeamData = e), __reflect(e.prototype, "app.TeamData"); + var i = (function () { + function t() {} + return t; + })(); + (t.NearTeamData = i), __reflect(i.prototype, "app.NearTeamData"); + var n = (function () { + function t() {} + return t; + })(); + (t.TeamCommonData = n), __reflect(n.prototype, "app.TeamCommonData"); + var s; + !(function (t) { + (t[(t.cc_enTeamSystemsInitTeam = 1)] = "cc_enTeamSystemsInitTeam"), + (t[(t.cs_enTeamSystemcInviteJoinTeam = 2)] = "cs_enTeamSystemcInviteJoinTeam"), + (t[(t.cs_enTeamSystemcLeaveTeam = 3)] = "cs_enTeamSystemcLeaveTeam"), + (t[(t.cs_enTeamSystemcApplyJoinTeam = 4)] = "cs_enTeamSystemcApplyJoinTeam"), + (t[(t.cs_enTeamSystemcSetCaptin = 5)] = "cs_enTeamSystemcSetCaptin"), + (t[(t.cs_enTeamSystemcKickMember = 6)] = "cs_enTeamSystemcKickMember"), + (t[(t.cs_enTeamSystemcDestroyTeam = 7)] = "cs_enTeamSystemcDestroyTeam"), + (t[(t.cs_enTeamSystemcApplyJoinTeamReply = 8)] = "cs_enTeamSystemcApplyJoinTeamReply"), + (t[(t.cs_enTeamSystemcIsTeam = 9)] = "cs_enTeamSystemcIsTeam"), + (t[(t.cs_enTeamSysteAutoTeam = 10)] = "cs_enTeamSysteAutoTeam"), + (t[(t.cs_enTeamSystemcNearTeamList = 11)] = "cs_enTeamSystemcNearTeamList"), + (t[(t.cs_enTeamSysteConfirmTeam = 14)] = "cs_enTeamSysteConfirmTeam"), // 设置需要确认状态 + (t[(t.sc_enTeamSystemsInitTeam = 1)] = "sc_enTeamSystemsInitTeam"), + (t[(t.sc_enTeamSystemsAddMember = 2)] = "sc_enTeamSystemsAddMember"), + (t[(t.sc_enTeamSystemsDelMember = 3)] = "sc_enTeamSystemsDelMember"), + (t[(t.sc_enTeamSystemsApplyJoinTeam = 4)] = "sc_enTeamSystemsApplyJoinTeam"), + (t[(t.sc_enTeamSystemsSetCaptin = 5)] = "sc_enTeamSystemsSetCaptin"), + (t[(t.sc_enTeamSystemsMemberLogout = 6)] = "sc_enTeamSystemsMemberLogout"), + (t[(t.sc_enTeamSystemsDestroyTeam = 7)] = "sc_enTeamSystemsDestroyTeam"), + (t[(t.sc_enTeamSystemcIsTeam = 9)] = "sc_enTeamSystemcIsTeam"), + (t[(t.sc_enTeamSystemcNearTeamList = 11)] = "sc_enTeamSystemcNearTeamList"), + (t[(t.sc_enTeamSystemcTeamOnlineState = 12)] = "sc_enTeamSystemcTeamOnlineState"), + (t[(t.sc_enTeamSystemsTeamInvite = 14)] = "sc_enTeamSystemsTeamInvite"); + })((s = t.TeamProtocol || (t.TeamProtocol = {}))); + var a; + !(function (t) { + (t[(t.TeamAddMember = 0)] = "TeamAddMember"), + (t[(t.TeamDelMember = 1)] = "TeamDelMember"), + (t[(t.TeamMemberApplyJoinTeam = 2)] = "TeamMemberApplyJoinTeam"), + (t[(t.TeamSetLeader = 3)] = "TeamSetLeader"), + (t[(t.TeamInviteMemberJoin = 4)] = "TeamInviteMemberJoin"); + })((a = t.TeamOptType || (t.TeamOptType = {}))); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "TeamAddViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.typeLb.text = t.CrmPU.language_Team_Add_Team_Text); + }), + (i.prototype.setTxt = function () {}), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System52), this.vKruVZ(this.ConfirmBtn, this.onClick); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.ConfirmBtn, this.onClick); + }), + (i.prototype.onClick = function () { + "" != this.playerNameText.text.trim() && (t.Qskf.ins().onSendInviteJoinTeam(0, this.playerNameText.text), t.mAYZL.ins().close(i)); + }), + i + ); + })(t.gIRYTi); + (t.TeamAddView = e), __reflect(e.prototype, "app.TeamAddView"), t.mAYZL.ins().reg(e, t.yCIt.VdZy); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = Main.vZzwB.pfID == t.PlatFormID.QQGame ? "TeamQQItemSkin" : "TeamCommonItemSkin"), i; + } + return ( + __extends(i, e), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + if ( + ((this.itemData = this.data), + (this.selected = !1), + (this.captainImg.visible = !1), + (this.id = this.itemData.roleId), + (this.playerName.text = this.itemData.nickName), + (this.playerLevel.text = this.setLevelStyle()), + (this.playerName.textColor = 15064527), + (this.playerLevel.textColor = 15064527), + (this.playerProfessionorNum.textColor = 15064527), + (this.playerGuildorMap.textColor = 15064527), + Main.vZzwB.pfID == t.PlatFormID.QQGame) + ) { + var e = this.itemData.superLv >> 16, + i = e >> 8, + n = 255 & e, + s = 65535 & this.itemData.superLv; + (this.blueImg.visible = i && s > 0), (this.blueImg.source = i && s > 0 ? (1 == i ? "lz_pt" + (s + 1) : "lz_hh" + (s + 1)) : ""), (this.blueYearImg.visible = 1 == n); + } + 0 == this.itemData.type + ? ((this.playerGuildorMap.text = this.itemData.sceneName), + 0 == this.itemData.online + ? ((this.playerName.textColor = 8420211), (this.playerLevel.textColor = 8420211), (this.playerProfessionorNum.textColor = 8420211), (this.playerGuildorMap.textColor = 8420211)) + : ((this.playerName.textColor = 15064527), (this.playerLevel.textColor = 15064527), (this.playerProfessionorNum.textColor = 15064527), (this.playerGuildorMap.textColor = 15064527)), + 0 == this.itemIndex && + ((this.captainImg.visible = !0), + (this.playerName.textColor = 15007744), + (this.playerLevel.textColor = 15007744), + (this.playerProfessionorNum.textColor = 15007744), + (this.playerGuildorMap.textColor = 15007744)), + (this.playerProfessionorNum.text = t.CrmPU["language_Role_Name_" + this.itemData.profession])) + : 2 == this.itemData.type + ? ((this.playerProfessionorNum.text = this.itemData.teamNum), (this.playerGuildorMap.text = this.itemData.guildName)) + : ((this.playerProfessionorNum.text = t.CrmPU["language_Role_Name_" + this.itemData.profession]), (this.playerGuildorMap.text = this.itemData.guildName)), + this.itemIndex % 2 == 1 ? ((this.state_1.visible = !0), (this.state_2.visible = !1)) : ((this.state_1.visible = !1), (this.state_2.visible = !0)); + }), + (i.prototype.setLevelStyle = function () { + var e = + 0 == this.itemData.turn || null == this.itemData.turn + ? this.itemData.level.toString() + : this.itemData.turn + t.CrmPU.language_Friend_Turn_txt + this.itemData.level.toString() + t.CrmPU.language_Friend_Level_txt; + return e; + }), + Object.defineProperty(i.prototype, "selected", { + set: function (t) { + if (((this.selectedBg.visible = t), t)) + (this.playerName.textColor = 15655172), (this.playerLevel.textColor = 15655172), (this.playerProfessionorNum.textColor = 15655172), (this.playerGuildorMap.textColor = 15655172); + else { + if (null == this.itemData) return; + 0 == this.itemData.online + ? ((this.playerName.textColor = 8420211), (this.playerLevel.textColor = 8420211), (this.playerProfessionorNum.textColor = 8420211), (this.playerGuildorMap.textColor = 8420211)) + : ((this.playerName.textColor = 15064527), (this.playerLevel.textColor = 15064527), (this.playerProfessionorNum.textColor = 15064527), (this.playerGuildorMap.textColor = 15064527)), + 0 == this.itemData.type && + 0 == this.itemIndex && + ((this.captainImg.visible = !0), + (this.playerName.textColor = 15007744), + (this.playerLevel.textColor = 15007744), + (this.playerProfessionorNum.textColor = 15007744), + (this.playerGuildorMap.textColor = 15007744)); + } + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseItemRender); + (t.TeamCommonItemView = e), __reflect(e.prototype, "app.TeamCommonItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.setText = function (e) { + for (var i = 0; 4 > i; i++) this["txt" + i].text = t.CrmPU["Language_Team_Text" + (3 == e ? 1 : e)][i]; + }), + i + ); + })(t.gIRYTi); + (t.TeamHeaderView = e), __reflect(e.prototype, "app.TeamHeaderView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TeamMainItemViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + e.roleId == t.Qskf.ins().myTeamleaderid ? (this.iconLeader.visible = !0) : (this.iconLeader.visible = !1), + 0 == e.turn ? (this.playerLevel.text = "Lv" + e.level) : (this.playerLevel.text = e.turn + t.CrmPU.language_Common_0 + e.level); + var i = e.curHP / e.maxHP; + (this.hpBar.value = Math.floor(100 * i)), + (this.lbPlayerName.text = e.nickName), + 0 == e.online + ? ((this.lbPlayerName.textColor = 8421504), (this.lbJob.source = "m_task_zy" + e.profession + "h")) + : ((this.lbPlayerName.textColor = 15064527), (this.lbJob.source = "m_task_zy" + e.profession)); + } + }), + (i.prototype.setData = function (t) {}), + i + ); + })(t.BaseItemRender); + (t.TeamMainItemView = e), __reflect(e.prototype, "app.TeamMainItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.teamArr = []), (t.skinName = "TeamMainViewSkin"), (t.left = 5), (t.top = 230), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.teamArr = []), (this.touchEnabled = !1); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.HFTK(t.Qskf.ins().post_onReceiveMyTeamMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveAddMbMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveDelMbMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveUpdateOnlineState, this.updateNearTeamList); + }), + (i.prototype.updateNearTeamList = function () { + this.teamArr = t.Qskf.ins().myTeamList; + for (var e; this.gList.numChildren > 0; ) { + var i = this.gList.getChildAt(0); + (i = null), this.gList.removeChildAt(0); + } + for (var n = 0; n < this.teamArr.length; n++) (e = new t.TeamMainItemView()), e.setData(this.teamArr[n]), this.gList.addChild(e); + this.gList.validateNow(), (this.height = 37 + this.gList.height), (this.bg.height = this.height); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + for (this.$onClose(); this.gList.numChildren > 0; ) { + var i = this.gList.getChildAt(0); + (i = null), this.gList.removeChildAt(0); + } + (this.teamArr = []), (this.teamArr = null); + }), + i + ); + })(t.gIRYTi); + (t.TeamMainView = e), __reflect(e.prototype, "app.TeamMainView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.lastindex = 0), (i.data2TabBar_arr = null), (i.skinName = "TeamViewSkin"), (i.name = "TeamView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.setText(), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System18); + }), + (i.prototype.setText = function () { + this.txt0.text = t.CrmPU.Language_Team_Text3; + }), + (i.prototype.bindTabBar = function () { + (this.tabBar.itemRenderer = t.CommonTabBarWin), + (this.arrayCollection = new eui.ArrayCollection(["t_zd_wddw", "t_zd_fjwj", "t_zd_fjdw", "t_zd_zxhy"])), + (this.tabBar.dataProvider = this.arrayCollection); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && e[0] ? ((this.tabBar.selectedIndex = e[0]), (this.lastindex = e[0])) : (this.tabBar.selectedIndex = 0), + this.bindTabBar(), + this.vKruVZ(this.addBtn, this.onClick), + this.vKruVZ(this.kickBtn, this.onClick), + this.vKruVZ(this.exitBtn, this.onClick), + this.vKruVZ(this.autoTeamCB, this.onClick), + this.vKruVZ(this.confirmTeamCB, this.onClick), + this.vKruVZ(this.operationBtn, this.onClick), + this.vKruVZ(this.applyBtn, this.onClick), + this.vKruVZ(this.inviteBtn, this.onClick), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this), + this.tabBar.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + t.ckpDj.ins().addEvent(t.TeamEvent.ITEM_SELECTED, this.selectedItem, this), + 0 == this.tabBar.selectedIndex ? t.Qskf.ins().onSendMyTeamList() : 1 == this.tabBar.selectedIndex && t.edHC.ins().sendNearPlayerList(), + this.setOptShowHide(this.tabBar.selectedIndex), + this.page.updateData(this.lastindex), + this.HFTK(t.edHC.ins().post_26_44, this.updateNearList), + this.HFTK(t.KWGP.ins().post_gFriendsList, this.updateOnlineFriendList), + this.HFTK(t.Qskf.ins().post_onReceiveTeamState, this.updateTeamState), + this.HFTK(t.Qskf.ins().post_onReceiveNearTeamListMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveMyTeamMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveDestroyMsg, this.updateNearTeamList), + this.HFTK(t.Qskf.ins().post_onReceiveDelMbMsg, this.updateDelTeamState), + t.Qskf.ins().onSendGetTeamState(); + }), + (i.prototype.updateNearTeamList = function () { + this.page.updateData(this.lastindex), this.setOptShowHide(this.lastindex); + }), + (i.prototype.updateDelTeamState = function () { + this.page.updateData(this.lastindex), this.setOptShowHide(this.lastindex); + }), + (i.prototype.updateTeamState = function () { + this.autoTeamCB.selected = 1 == t.Qskf.ins().myTeamState ? !0 : !1; + this.confirmTeamCB.selected = 1 == t.Qskf.ins().myTeamConfirmState ? !0 : !1; + }), + (i.prototype.onCloseMenu = function () { + t.mAYZL.ins().close(t.CommonFunMenuView); + }), + (i.prototype.updateOnlineFriendList = function () { + t.Qskf.ins().setFriendList(), this.page.updateData(this.lastindex), this.setOptShowHide(this.lastindex); + }), + (i.prototype.selectedItem = function (t) { + var e = t[0]; + this.itemData = e; + }), + (i.prototype.updateNearList = function () { + t.Qskf.ins().setNearPlayerList(), this.page.updateData(this.lastindex), this.setOptShowHide(this.lastindex); + }), + (i.prototype.onClick = function (e) { + var i = this; + switch (e.currentTarget) { + case this.addBtn: + t.mAYZL.ins().open(t.TeamAddView); + break; + case this.autoTeamCB: + var n = this.autoTeamCB.selected ? 1 : 0; + t.Qskf.ins().onSendAllowableTeam(n); + break; + case this.confirmTeamCB: + var n = this.confirmTeamCB.selected ? 1 : 0; + t.Qskf.ins().onSendNeedConfirmTeam(n); + break; + case this.kickBtn: + if (null == this.itemData) return; + var s = t.CrmPU.language_Team_LeaderKickExitTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_LeaderKickExitTeam_tips_1; + t.CautionView.show( + s, + function () { + t.Qskf.ins().onSendDelMember(i.itemData.roleId); + }, + this + ); + break; + case this.applyBtn: + if (null == this.itemData) return; + var a = t.CrmPU.language_Team_ApplyAddTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_ApplyAddTeam_tips_1; + t.CautionView.show( + a, + function () { + t.Qskf.ins().onSendApplyJoinTeam(i.itemData.roleId); + }, + this + ); + break; + case this.inviteBtn: + if (null == this.itemData) return; + var r = t.CrmPU.language_Team_LeaderinviteJonTeam_tips_0 + this.itemData.nickName + t.CrmPU.language_Team_LeaderinviteJonTeam_tips_1; + t.CautionView.show( + r, + function () { + t.Qskf.ins().onSendInviteJoinTeam(i.itemData.roleId, ""); + }, + this + ); + break; + case this.exitBtn: + t.CautionView.show( + t.CrmPU.language_Team_ExitTeam_tips, + function () { + t.Qskf.ins().onSendleaveTeam(); + }, + this + ); + break; + case this.operationBtn: + t.mAYZL.ins().open(t.CommonFunMenuView, this.operationBtn.localToGlobal(0, 0), this.itemData); + } + }), + (i.prototype.onBarItemTap = function (e) { + (this.itemData = null), + (this.lastindex = e.itemIndex), + this.page.setScroller(), + this.setOptShowHide(e.itemIndex), + 0 == e.itemIndex + ? (this.page.updateData(this.lastindex), t.Qskf.ins().onSendMyTeamList()) + : 1 == e.itemIndex + ? t.edHC.ins().sendNearPlayerList() + : 2 == e.itemIndex + ? t.Qskf.ins().onSendNearList() + : 3 == e.itemIndex && t.KWGP.ins().sendFriendsList(t.FriendState.Friend); + }), + (i.prototype.setOptShowHide = function (e) { + for (var i = 0, n = 0; 4 > n; n++) + (this["teamGp_" + n].visible = !1), + n == e && + (0 == e + ? ((this["teamGp_" + n].visible = !0), + (this.addBtn.visible = !0), + (this.kickBtn.visible = this.exitBtn.visible = !1), + (i = t.Qskf.ins().getNumByTab(n)), + i > 0 && (this.kickBtn.visible = this.exitBtn.visible = !0)) + : ((i = t.Qskf.ins().getNumByTab(n)), i > 0 && (this["teamGp_" + n].visible = !0))); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + this.tabBar.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onBarItemTap, this), + this.fEHj(this.addBtn, this.onClick), + this.fEHj(this.kickBtn, this.onClick), + this.fEHj(this.exitBtn, this.onClick), + this.fEHj(this.autoTeamCB, this.onClick), + this.fEHj(this.confirmTeamCB, this.onClick), + this.fEHj(this.operationBtn, this.onClick), + this.fEHj(this.applyBtn, this.onClick), + this.fEHj(this.inviteBtn, this.onClick), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.arrayCollection.removeAll(), + this.page.destroy(), + (this.page = null), + t.ckpDj.ins().removeEvent(t.TeamEvent.ITEM_SELECTED, this.selectedItem, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.onCloseMenu, this); + }), + i + ); + })(t.gIRYTi); + (t.TeamView = e), __reflect(e.prototype, "app.TeamView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.list = new eui.ArrayCollection()), (t.lastIndex = -1), (t.crrentType = -1), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.init(), (this.lastIndex = -1); + }), + (i.prototype.init = function () { + t.MouseScroller.bind(this.scroller), + (this.gList.itemRenderer = t.TeamCommonItemView), + (this.gList.dataProvider = this.list), + this.gList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + t.ckpDj.ins().addEvent(t.FriendEvent.ITEM_ONCHANGE, this.onListChange, this); + }), + (i.prototype.setScroller = function () { + this.scroller.stopAnimation(), this.scroller.viewport.validateNow(), (this.scroller.viewport.scrollV = 0); + }), + (i.prototype.onListChange = function (t) { + t[0], this.gList.getChildAt(this.lastIndex); + }), + (i.prototype.onChange = function (e) { + this.selectdItem && (this.selectdItem.selected = !1), + (this.lastIndex = e.itemIndex), + (this.selectdItem = e.itemRenderer), + (this.selectdItem.selected = !0), + t.ckpDj.ins().sendEvent(t.TeamEvent.ITEM_SELECTED, [this.selectdItem.itemData]), + this.gList.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this); + }), + (i.prototype.onTouchDouble = function () { + var e = this.gList.localToGlobal(this.gp.width, this.gp.height - 100); + (e.x += 10), t.mAYZL.ins().open(t.CommonFunMenuView, e, this.selectdItem.itemData); + }), + (i.prototype.setHeaderText = function (t) { + this.header.setText(t); + }), + (i.prototype.updateData = function (e) { + (this.lastIndex = -1), + (this.crrentType = e), + (this.gList.dataProvider = new eui.ArrayCollection()), + this.setHeaderText(e), + 0 == e && ((this.list.source = t.Qskf.ins().myTeamList), this.list.source.sort(this.sort)), + 1 == e ? (this.list.source = t.Qskf.ins().nearPlayerList) : 2 == e ? (this.list.source = t.Qskf.ins().nearTeamList) : 3 == e && (this.list.source = t.Qskf.ins().onlineFriendList), + (this.gList.dataProvider = this.list), + this.list.length < 1 + ? ((this.noListTipsLb.visible = !0), + 0 == e && (this.noListTipsLb.text = t.CrmPU.language_Team_NoTeam_tips), + 1 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Friend_NoNear_tips) + : 2 == e + ? (this.noListTipsLb.text = t.CrmPU.language_Team_NearNoTeamList_tips) + : 3 == e && (this.noListTipsLb.text = t.CrmPU.language_Team_NoOnlineFriendList_tips)) + : (this.noListTipsLb.visible = !1); + }), + (i.prototype.sort = function (e, i) { + var n = t.Qskf.ins().myTeamleaderid; + return e.roleId == n ? -1 : i.roleId == n ? 1 : e.online && !i.online ? -1 : !e.online && i.online ? 1 : e.level > i.level ? -1 : e.level < i.level ? 1 : void 0; + }), + (i.prototype.destroy = function () { + t.mAYZL.ins().ZbzdY(t.CommonFunMenuView) && t.mAYZL.ins().close(t.CommonFunMenuView), + t.MouseScroller.unbind(this.scroller), + this.gList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + t.ckpDj.ins().removeEvent(t.FriendEvent.ITEM_ONCHANGE, this.onListChange, this); + }), + i + ); + })(t.BaseView); + (t.TeamViewPage = e), __reflect(e.prototype, "app.TeamViewPage"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.clickParam = null), (i.closeCD = 30), (i.popID = 0), (i.skinName = "ActivityTimingSkin1"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.itemList.itemRenderer = t.ItemBase); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((this.vKruVZ(this.goBtn, this.onClick), this.vKruVZ(this.closeBtn, this.onClick), e && e[0] && (this.popID = e[0]), 0 != this.popID)) { + var n = t.VlaoF.PopupConfig[this.popID]; + n && + ((this.title.textFlow = t.hETx.qYVI(n.title)), + (this.desc.textFlow = t.hETx.qYVI(n.description)), + (this.goBtn.label = n.buttondes + ""), + (this.closeCD = n.closeCD), + (this.itemList.dataProvider = new eui.ArrayCollection(n.rewards)), + (this.clickParam = n.btnfunc)); + } + this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this); + }), + (i.prototype.updateTime = function () { + var e = (this.closeCD -= 1); + (this.cdLab.text = e + "秒后关闭"), 0 >= e && ((this.cdLab.text = ""), t.KHNO.ins().remove(this.updateTime, this), t.mAYZL.ins().close(this)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + this.clickParam && this.clickResult(this.clickParam), t.mAYZL.ins().close(this); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.clickResult = function (e) { + switch (e.type) { + case 1: + e.param1 && (t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1)); + break; + case 2: + e.param1 && e.param2 && (t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1, e.param2)); + break; + case 3: + e.param1 && e.param2 && (t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1), t.mAYZL.ins().ZbzdY(e.param2) || t.mAYZL.ins().open(e.param2)); + break; + case 4: + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().remove(this.updateTime, this), this.fEHj(this.goBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityTimePopWin1 = e), __reflect(e.prototype, "app.ActivityTimePopWin1"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.clickParam = null), (i.closeCD = 30), (i.popID = 0), (i.skinName = "ActivityTimingSkin2"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if ((this.vKruVZ(this.goBtn, this.onClick), this.vKruVZ(this.closeBtn, this.onClick), e && e[0] && (this.popID = e[0]), 0 != this.popID)) { + var n = t.VlaoF.PopupConfig[this.popID]; + n && + ((this.title.textFlow = t.hETx.qYVI(n.title)), + (this.desc.textFlow = t.hETx.qYVI(n.description)), + (this.goBtn.label = n.buttondes + ""), + (this.closeCD = n.closeCD), + (this.clickParam = n.btnfunc)); + } + this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this); + }), + (i.prototype.updateTime = function () { + var e = (this.closeCD -= 1); + (this.cdLab.text = e + "秒后关闭"), 0 >= e && ((this.cdLab.text = ""), t.KHNO.ins().remove(this.updateTime, this), t.mAYZL.ins().close(this)); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.goBtn: + this.clickParam && this.clickResult(this.clickParam), t.mAYZL.ins().close(this); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.clickResult = function (e) { + switch (e.type) { + case 1: + e.param1 && t.mAYZL.ins().open(e.param1); + break; + case 2: + e.param1 && e.param2 && t.mAYZL.ins().open(e.param1, e.param2); + break; + case 3: + e.param1 && e.param2 && (t.mAYZL.ins().ZbzdY(e.param1) || t.mAYZL.ins().open(e.param1), t.mAYZL.ins().ZbzdY(e.param2) || t.mAYZL.ins().open(e.param2)); + break; + case 4: + } + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), this.$onClose(), t.KHNO.ins().remove(this.updateTime, this), this.fEHj(this.goBtn, this.onClick), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityTimePopWin2 = e), __reflect(e.prototype, "app.ActivityTimePopWin2"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function n() { + return e.call(this) || this; + } + return ( + __extends(n, e), + (n.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(n.prototype, "view", { + get: function () { + return (this._view && this._view.parent) || (t.mAYZL.ins().open(t.TipsView), (this._view = t.mAYZL.ins().ZzTs(t.TipsView))), this._view; + }, + enumerable: !0, + configurable: !0, + }), + (n.prototype.showItemTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showItemTips, e); + }), + (n.prototype.showRightItemTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showRightItemTips, e); + }), + (n.prototype.showJingYanTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showJingYanTips, e); + }), + (n.prototype.showAttrTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showAttrTips, e); + }), + (n.prototype.showMoneyTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showMoneyTips, e); + }), + (n.prototype.IrCm = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.IrCm, e); + }), + (n.prototype.pwYDdQ = function (e) { + this.IrCm("|C:0xff7700&T:" + e + "|"); + }), + (n.prototype.showFightTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showFightTips, e); + }), + (n.prototype.showJobAttrTips = function (e) { + t.BtfLl.ins().addDelayOptFunction(this.view, this.view.showJobAttrTips, e); + }), + (n.prototype.showItemUseTips = function (t, e) { + this.view.showItemUseTips(t, e); + }), + (n.prototype.showBossRefreshTips = function () { + this.view.showBossTip(); + }), + (n.prototype.LJzNt = function (e, n, s, a, r) { + switch ((void 0 === r && (r = null), this.closeTips(), (this.thisObject = e), this.thisObject && this.thisObject.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.closeTips, this), n)) { + case i.TIPS_BUFF: + (this.tipsView = t.ObjectPool.pop("app.TipsBuffView")), this.tipsView.onResizeUI(s, a); + break; + case i.TIPS_EQUIP: + (this.tipsView = t.ObjectPool.pop("app.TipsEquipView")), this.tipsView.updateStr(s, a, i.TIPS_EQUIP); + break; + case i.TIPS_ROLE_EQUIP: + (this.tipsView = t.ObjectPool.pop("app.TipsEquipView")), this.tipsView.updateStr(s, a, i.TIPS_ROLE_EQUIP, r); + break; + case i.TIPS_EQUIPCONTRAST: + (this.tipsView = t.ObjectPool.pop("app.TipsEquipContrastView")), this.tipsView.updateStr(s, a, r); + break; + case i.TIPS_SKILL_DESC: + (this.tipsView = t.ObjectPool.pop("app.TipsSkillDescView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_DROP: + (this.tipsView = t.ObjectPool.pop("app.TipsDropView")), this.tipsView.onResizeUI(s, a); + break; + case i.TIPS_MONEY: + (this.tipsView = t.ObjectPool.pop("app.TipsMoneyView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_FOURIMAGE: + (this.tipsView = t.ObjectPool.pop("app.FourImagesShowInfoView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_RANKTIPS: + (this.tipsView = t.ObjectPool.pop("app.RankTipsView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_NPCLOOKREWARDS: + (this.tipsView = t.ObjectPool.pop("app.TipsLookRewardsView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_FASHION: + (this.tipsView = t.ObjectPool.pop("app.TipsEquipFashionView")), this.tipsView.updateStr(s, a, i.TIPS_EQUIP); + break; + case i.TIPS_SOLDIERSOUL: + (this.tipsView = t.ObjectPool.pop("app.TipsSoldierSoulView")), this.tipsView.updateStr(s, a); + break; + case i.TIPS_WordFormula: + (this.tipsView = t.ObjectPool.pop("app.WordFormulaShowInfoView")), this.tipsView.updateStr(s, a); + } + this.tipsView && t.yCIt.LjbkQx.addChild(this.tipsView); + }), + (n.prototype.closeTips = function () { + this.thisObject && this.thisObject.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.closeTips, this), + (this.thisObject = null), + this.tipsView && (this.tipsView.close(), t.lEYZI.Naoc(this.tipsView), t.ObjectPool.push(this.tipsView), (this.tipsView = null)); + }), + n + ); + })(t.BaseClass); + (t.uMEZy = e), __reflect(e.prototype, "app.uMEZy"); + var i = (function () { + function t() {} + return ( + (t.TIPS_BUFF = 1), + (t.TIPS_EQUIP = 2), + (t.TIPS_EQUIPCONTRAST = 3), + (t.TIPS_SKILL_DESC = 4), + (t.TIPS_ROLE_EQUIP = 5), + (t.TIPS_DROP = 6), + (t.TIPS_CIRCLE_DESC = 7), + (t.TIPS_MONEY = 8), + (t.TIPS_FOURIMAGE = 9), + (t.TIPS_RANKTIPS = 10), + (t.TIPS_NPCLOOKREWARDS = 11), + (t.TIPS_FASHION = 12), + (t.TIPS_SOLDIERSOUL = 13), + (t.TIPS_WordFormula = 14), + t + ); + })(); + (t.TipsType = i), __reflect(i.prototype, "app.TipsType"); +})(app || (app = {})); +var app; +!(function (t) { + var e; + !(function (t) { + (t[(t.EquipTips = 0)] = "EquipTips"), + (t[(t.UseItemTips = 1)] = "UseItemTips"), + (t[(t.UseItemTips2 = 2)] = "UseItemTips2"), + (t[(t.UseItemTips3 = 3)] = "UseItemTips3"), + (t[(t.ItemOpenUITips = 4)] = "ItemOpenUITips"); + })((e = t.rPHSc || (t.rPHSc = {}))); + var i = (function (i) { + function n() { + var t = i.call(this) || this; + return (t.tipsList = {}), t; + } + return ( + __extends(n, i), + (n.ins = function () { + return i.ins.call(this); + }), + (n.prototype.addTipsObj = function (i) { + if (!this.tipsList[i.wItemId]) { + var n = t.VlaoF.StdItems[i.wItemId]; + if (n && (!n.openDaylimit || t.GlobalData.sectionOpenDay > n.openDaylimit)) { + var s = t.VlaoF.ItemOpenUIConfig[i.wItemId]; + s && + t.mAYZL.ins().isCheckOpen(s.openLimit) && + !t.mAYZL.ins().isCheckClose(s.closeLimit) && + this.isCanRedItem(i.wItemId) && + ((this.tipsList[i.wItemId] = { + type: e.ItemOpenUITips, + data: i, + }), + t.KHNO.ins().RTXtZF(this.showItemTip, this) || t.KHNO.ins().tBiJo(1e3, 1, this.showItemTip, this)); + var a = t.VlaoF.UseItemConfig[n.type]; + if (a) { + if (a.exclude) for (var r in a.exclude) if (a.exclude[r] == n.id) return; + t.mAYZL.ins().isCheckOpen(a.openLimit) && + !t.mAYZL.ins().isCheckClose(a.closeLimit) && + (1 == a.useType + ? (this.tipsList[i.wItemId] = { + type: e.UseItemTips3, + data: i, + }) + : n.dup > 1 + ? (this.tipsList[i.wItemId] = { + type: e.UseItemTips2, + data: i, + }) + : (this.tipsList[i.wItemId] = { + type: e.UseItemTips, + data: i, + }), + t.KHNO.ins().RTXtZF(this.showItemTip, this) || t.KHNO.ins().tBiJo(1e3, 1, this.showItemTip, this)); + } + } + } + }), + (n.prototype.removeTipsObj = function (e) { + var i = t.VlaoF.StdItems[e.wItemId]; + if (i) + if (1 == e.bagType) for (var n in t.bPGzk.equipSouce) t.bPGzk.equipSouce[n].series == e.series && delete t.bPGzk.equipSouce[n]; + else this.tipsList[e.wItemId] && delete this.tipsList[e.wItemId]; + }), + (n.prototype.clearAllData = function () { + (t.bPGzk.equipSouce = {}), (this.tipsList = {}); + }), + (n.prototype.showItemTip = function (e) { + return ( + void 0 === e && (e = !1), + e && (t.KHNO.ins().remove(this.goodEquipTimer, this), t.KHNO.ins().remove(this.useItemTimer, this)), + t.KHNO.ins().RTXtZF(this.goodEquipTimer, this) || t.KHNO.ins().RTXtZF(this.useItemTimer, this) + ? void 0 + : t.XwoNAr.ins().ZSGIua(t.BRMgl.SetUp_Basics, t.Kdae.SetUp_Type_Recommend) && this.getEquipData() + ? (t.KHNO.ins().tBiJo(7200, 0, this.goodEquipTimer, this), void this.goodEquipTimer()) + : this.getUseItemData() + ? (t.KHNO.ins().tBiJo(7200, 0, this.useItemTimer, this), void this.useItemTimer()) + : void 0 + ); + }), + (n.prototype.goodEquipTimer = function () { + var i = this.getEquipData(); + return null == i ? (t.KHNO.ins().remove(this.goodEquipTimer, this), void this.showItemTip()) : void t.uMEZy.ins().showItemUseTips(i, e.EquipTips); + }), + (n.prototype.useItemTimer = function () { + var e = this.getUseItemData(); + return null == e ? (t.KHNO.ins().remove(this.useItemTimer, this), void this.showItemTip()) : void t.uMEZy.ins().showItemUseTips(e.data, e.type); + }), + (n.prototype.isCanRedItem = function (e) { + var i; + return ( + (i = t.BlessMgr.ins().getRedById(e)), + i > 0 ? !0 : ((i = t.GhostMgr.ins().getRedById(e)), i > 0 ? !0 : ((i = t.MeridiansMgr.ins().getRedById(e)), i > 0 ? !0 : ((i = t.StrengthenMgr.ins().getRedById(e)), i > 0 ? !0 : !1))) + ); + }), + (n.prototype.getEquipData = function () { + for (var e in t.bPGzk.equipSouce) return t.bPGzk.equipSouce[e]; + return null; + }), + (n.prototype.getUseItemData = function () { + var a; + for (var e in this.tipsList) { + a = this.tipsList[e]; + if (a && 269 == a.data.wItemId && 10 > t.ThgMu.ins().getItemCountById(a.data.wItemId)) { + continue; + } + return a; + } + return null; + }), + n + ); + })(t.BaseClass); + (t.DAhY = i), __reflect(i.prototype, "app.DAhY"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.bitLabArr = []), (t.tarPosArr = []), (t.addNumArr = []), (t.addNumPos = []), (t.skinName = "TipsActorSkin"), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.setData = function (e, i, n) { + this.fireMc || + ((this.fireMc = t.ObjectPool.pop("app.MovieClip")), + (this.fireMc.scaleX = this.fireMc.scaleY = 1), + (this.fireMc.touchEnabled = !1), + (this.fireMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.fireMc)), + (this.jobImg = new eui.Image()), + (this.jobImg.y = 25), + (this.jobImg.left = 65), + this.addChildAt(this.jobImg, 0), + (this.bg = new eui.Image()), + this.addChildAt(this.bg, 0), + (this.bg.source = "fightnum_bg"); + var s = e.toString(), + a = i.toString(); + (i - e).toString(); + (this.jobImg.source = 1 == n ? "fightnum_z" : 2 == n ? "fightnum_m" : "fightnum_d"), (this.bitLabArr = []), (this.tarPosArr = []); + for (var r = 0; r < a.length; r++) { + var o = new eui.BitmapLabel(); + (o.width = 22), + (o.font = "num_5_fnt"), + (o.lineSpacing = 2), + (o.text = "0123456789"), + (o.x = 20 * r), + (o.y = a.length > s.length ? (0 == r ? 0 : -28 * +s[r - 1]) : -28 * +s[r]), + this.attrStrGrp.addChild(o), + this.bitLabArr.push(o), + this.tarPosArr.push(-28 * +a[r]); + } + this.playEffMc(), this.playTween(); + }), + (i.prototype.playEffMc = function () { + var t = this; + this.fireMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_shuxing", 1, function () { + t.fireMc && (t.fireMc.destroy(), (t.fireMc = null)); + }); + }), + (i.prototype.playTween = function () { + if (this.bitLabArr.length > 0) { + var e = this, + i = this.tarPosArr.pop(), + n = this.bitLabArr.pop(); + if (n.y == i) return void e.playTween(); + egret.Tween.removeTweens(n); + var s = egret.Tween.get(n); + s.to( + { + y: n.y, + }, + 150 + ) + .to( + { + y: i, + }, + 600 + ) + .call(function () { + e.playTween(); + }); + } else this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }), + (i.prototype.playAddTween = function () { + if (this.addNumArr.length > 0) { + var t = this, + e = this.addNumPos.pop(), + i = this.addNumArr.pop(); + if (i.y == e) return void t.playAddTween(); + egret.Tween.removeTweens(i); + var n = egret.Tween.get(i); + n.to( + { + y: i.y, + }, + 150 + ) + .to( + { + y: e, + }, + 600 + ) + .call(function () { + t.playAddTween(); + }); + } + }), + (i.prototype.Naoc = function () { + t.KHNO.ins().remove(this.Naoc, this), + this.attrStrGrp.removeChildren(), + this.tarNumGrp.removeChildren(), + (this.addToEvent = !1), + t.lEYZI.Naoc(this.jobImg), + (this.jobImg = null), + t.lEYZI.Naoc(this.bg), + (this.bg = null), + t.lEYZI.Naoc(this), + egret.Tween.removeTweens(this), + t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsActorView = e), __reflect(e.prototype, "app.TipsActorView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.cereateLabel = function () { + this.levelLab || + ((this.levelLab = new eui.Label()), + (this.levelLab.size = 20), + (this.levelLab.touchEnabled = !1), + (this.levelLab.textColor = 2682369), + (this.levelLab.textAlign = "left"), + (this.levelLab.stroke = 1), + (this.levelLab.strokeColor = 0), + this.addChild(this.levelLab)); + }), + Object.defineProperty(i.prototype, "labelText", { + get: function () { + return this._labelText; + }, + set: function (e) { + (this._labelText = e), + (this.levelLab.textFlow = t.hETx.qYVI(this._labelText)), + (this.levelLab.alpha = 1), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.levelLab.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelSize", { + set: function (t) { + this.levelLab.size = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsArticlesItem = e), __reflect(e.prototype, "app.TipsArticlesItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._cdTime = 0), (t.skinName = "TipsAttrItemSkin"), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "attrImgSource", { + set: function (t) { + this.attrImg.source = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "cdTime", { + get: function () { + return this._cdTime; + }, + set: function (t) { + this._cdTime = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.checkTime = function () { + return egret.getTimer() > this._cdTime ? !0 : !1; + }), + (i.prototype.labelText = function (e, i) { + (this.imgBg.source = "fightnum_bg2"), + (this.strImg.source = e), + (this.valueStr.text = "+" + i), + (this.viewGrp.x = this.viewGrp.y = this.viewGrp.alpha = 0), + egret.Tween.removeTweens(this.viewGrp); + var n = egret.Tween.get(this.viewGrp); + n.to( + { + x: -130, + alpha: 1, + }, + 150 + ), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsAttrItem = e), __reflect(e.prototype, "app.TipsAttrItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "ActivityCommonViewSkin"), (i.name = "ActivityDefendTipsView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (e[0]) { + var n = e[0], + s = t.VlaoF.Scenes[t.GameMap.mapID], + a = s && s.scencename, + r = t.zlkp.replace(t.CrmPU.language_Tips93, a, t.DateUtils.getFormatBySecond(n, t.DateUtils.TIME_FORMAT_19)); + this.strLab.textFlow = t.hETx.qYVI(r); + } + this.vKruVZ(this.closeBtn, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.closeBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ActivityDefendTipsView = e), __reflect(e.prototype, "app.ActivityDefendTipsView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.skinName = "TipsBossRefreshSkin"), + (i.btn_close.name = "closeBtn"), + (i.btn_go.name = "goBtn"), + (i.checkBox.selected = !1), + (i.labTitle.text = t.CrmPU.language_Common_209), + (i.checkLabel.text = t.CrmPU.language_Common_210), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "data", { + get: function () { + return this._data; + }, + set: function (e) { + this._data = e; + var i = t.VlaoF.Monster[e.entityid]; + i && ((this.itemIcon.source = "monhead" + i.modelid), (this.itemName.text = i.name)), this.checkBox.setCallback(this, this.clickCheck), this.checkBox.initUI(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.clickCheck = function () { + t.UyfaJ.isShowTip = !this.checkBox.selected; + }), + i + ); + })(t.BaseView); + (t.TipsBossRefreshView = e), __reflect(e.prototype, "app.TipsBossRefreshView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "TipsBuffSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.inItFunction = function () { + this.touchEnabled = this.touchChildren = !1; + }), + (e.prototype.onResizeUI = function (e, i) { + t.prototype.onResizeUI.call(this, e, i), e && i && ((this.data = e), (this.xy = i), (this.txt.text = e + "")); + }), + (e.prototype.close = function () { + (this.data = null), (this.txt.text = ""); + }), + e + ); + })(t.TipsBase); + (t.TipsBuffView = e), __reflect(e.prototype, "app.TipsBuffView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.htmlParser = new egret.HtmlTextParser()), (e.skinName = "TipsDropSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.inItFunction = function () { + this.touchEnabled = this.touchChildren = !1; + }), + (e.prototype.onResizeUI = function (e, i) { + t.prototype.onResizeUI.call(this, e, i), e && i && ((this.data = e), (this.xy = i), (this.txt.textFlow = this.htmlParser.parser(e + "")), (this.x -= this.txt.textWidth / 2)); + }), + (e.prototype.close = function () {}), + e + ); + })(t.TipsBase); + (t.TipsDropView = e), __reflect(e.prototype, "app.TipsDropView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.skinName = "TipsEquipContrastSkin"), + KdbLz.qOtrbE.iFbP ? (t.touchEnabled = t.touchChildren = !0) : ((t.touchEnabled = t.touchChildren = !1), (t.tips1Scroller.maxHeight = 1e4), (t.tips2Scroller.maxHeight = 1e4)), + t + ); + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateStr = function (i, n, s) { + if (i && s) { + e.prototype.onResizeUI.call(this, i, n), (this.xy = n), (this.data = i); + var a = i, + r = s; + if (a && r) { + var o = t.VlaoF.StdItems[a.wItemId], + l = t.VlaoF.StdItems[r.wItemId]; + if (o && l) { + (this.imgBg1.visible = !1), + (this.imgBg2.visible = !1), + o.showQuality > 0 && ((this.imgBg1.visible = !0), (this.imgBg1.source = "bag_piliangbg_" + o.showQuality)), + o.type < 100 && + o.showQuality > 1 && + (this.itemMc1 || + ((this.itemMc1 = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc1.scaleX = this.itemMc1.scaleY = 1), + (this.itemMc1.touchEnabled = !1), + (this.itemMc1.blendMode = egret.BlendMode.ADD), + this.effGrp1.addChild(this.itemMc1)), + this.itemMc1.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + o.showQuality, -1)), + l.showQuality > 0 && ((this.imgBg2.visible = !0), (this.imgBg2.source = "bag_piliangbg_" + l.showQuality)), + o.type < 100 && + l.showQuality > 1 && + (this.itemMc2 || + ((this.itemMc2 = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc2.scaleX = this.itemMc2.scaleY = 1), + (this.itemMc2.touchEnabled = !1), + (this.itemMc2.blendMode = egret.BlendMode.ADD), + this.effGrp2.addChild(this.itemMc2)), + this.itemMc2.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + l.showQuality, -1)); + var h = "", + p = t.ClwSVR.GOODS_COLOR[o.showQuality]; + (h = "" != a.topLine && void 0 != a.topLine ? "|C:" + p + "&T:" + o.name + " [" + t.CrmPU.language_Omission_txt133 + "]|" : "|C:" + p + "&T:" + o.name + "|"), + (this.nameLab.textFlow = t.hETx.generateTextFlow1(h)); + var u = "", + c = t.ClwSVR.GOODS_COLOR[l.showQuality]; + (u = "" != r.topLine && void 0 != r.topLine ? "|C:" + c + "&T:" + l.name + " [" + t.CrmPU.language_Omission_txt133 + "]|" : "|C:" + c + "&T:" + l.name + "|"), + (this.nameLab2.textFlow = t.hETx.generateTextFlow1(u)); + var g = []; + if (o.staitcAttrs) for (var d = 0; d < o.staitcAttrs.length; d++) g.push(o.staitcAttrs[d]); + var m = t.AttributeData.getBestAttrs(a), + f = []; + if (l.staitcAttrs) for (var d = 0; d < l.staitcAttrs.length; d++) f.push(l.staitcAttrs[d]); + var v = t.AttributeData.getBestAttrs(r); + this.getAttrs(g, m, a, 1), + this.getAttrs(f, v, r, 2), + e.prototype.onResizeUI.call(this, null, n), + (this.tips1Scroller.viewport.scrollV = 0), + (this.tips2Scroller.viewport.scrollV = 0), + this.tips1Scroller && this.tips1Scroller.verticalScrollBar && ((this.tips1Scroller.verticalScrollBar.autoVisibility = !1), (this.tips1Scroller.verticalScrollBar.visible = !1)), + this.tips2Scroller && this.tips2Scroller.verticalScrollBar && ((this.tips2Scroller.verticalScrollBar.autoVisibility = !1), (this.tips2Scroller.verticalScrollBar.visible = !1)); + } + } + } + }), + (i.prototype.getAttrs = function (e, i, n, s) { + void 0 === n && (n = null); + var a = "", + r = t.VlaoF.StdItems[n.wItemId]; + if (e && i && "" != n.topLine && void 0 != n.topLine) { + var o = t.AttributeData.getTotalAttrs(e, i); + a = this.getAllAttrs(o); + } else if (e) { + var l = e.concat(); + a = this.getAllAttrs(l); + } + if ((r && r.suitId > 0 && ((a += "\n"), (a += this.getEquipSuitAttr(r.suitId))), r.resonanceId)) { + var h = this.getEquipResonanceAttr(r.resonanceId); + "" != h && ((a += "\n"), (a += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt146 + "]|"), (a += "\n"), (a += h)); + } + (a += "\n"), + n.wStar > 0 + ? ((a += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt134 + "]|"), + 1 == s ? ((this.bindLab1.textFlow = t.hETx.qYVI(a)), this.createStar(1, n, r)) : 2 == s && ((this.bindLab2.textFlow = t.hETx.qYVI(a)), this.createStar(2, n, r))) + : (r.dup || ("" != n.sourceStr && (a += n.sourceStr + "\n")), + (a += this.getOtherAttr(r, n)), + 1 == s ? (this.bindLab1.textFlow = t.hETx.qYVI(a)) : 2 == s && (this.bindLab2.textFlow = t.hETx.qYVI(a))); + }), + (i.prototype.getAllAttrs = function (e) { + var i = [], + n = [], + s = "", + a = ""; + for (var r in e) { + var o = e[r]; + 5 == o.type || 9 == o.type || 11 == o.type || 13 == o.type || 15 == o.type || 17 == o.type || 19 == o.type || 21 == o.type || 23 == o.type || 25 == o.type || 27 == o.type + ? i.push(o) + : n.push(o); + } + if (i.length > 0) { + s = "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt135 + "]|\n"; + for (var l = 0; l < i.length; l++) (a = t.AttributeData.getItemAttStrByType(i[l], i)), "" != a && (s += a + "\n"); + } + if (n.length > 0) { + s += "\n|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt136 + "]|\n"; + for (var l = 0; l < n.length; l++) (a = t.AttributeData.getItemAttStrByType(n[l], n)), "" != a && (s += "|C:0x78fff5&T:" + a + "|\n"); + } + return s; + }), + (i.prototype.getEquipSuitAttr = function (e) { + var i = t.VlaoF.SuitItemCfg[e], + n = 0, + s = "", + a = ""; + if (i) { + for (var r in i.NeedItemId) { + var o = t.caJqU.ins().getAllEquip(i.NeedItemId[r]), + l = t.VlaoF.StdItems[i.NeedItemId[r]]; + o ? (l && (s += "|C:0x28ee01&T:" + l.name + "|\n"), (n += 1)) : l && (s += "|C:0x808080&T:" + l.name + "|\n"); + } + var h = Math.floor(e / 100), + p = e % 100, + u = t.caJqU.ins().getSuitAttrColor(h, p, i.suitnum), + c = []; + for (var g in i.attr) c.push(i.attr[g]); + for (var d = "", m = "", r = 0; r < c.length; r++) (d = t.AttributeData.getItemAttStrByType(c[r], c)), "" != d && (m += "|C:" + u + "&T:" + d + "|\n"); + (a += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt137 + "](" + n + "/" + i.suitnum + ")|\n"), (a += s), (a += m); + } + return a; + }), + (i.prototype.getEquipResonanceAttr = function (e) { + var i = "", + n = "", + s = t.VlaoF.ResonanceItemCfg[e], + a = t.caJqU.ins().equips; + if (s && a) { + for (var r = [], o = 0; o < s.attr.length; o++) + for (var l = 0; l < a.length; l++) + if (a[l].wItemId == s.attr[o].itemid) { + r = s.attr[o].attr; + break; + } + for (var o = 0; o < r.length; o++) (i = t.AttributeData.getItemAttStrByType(r[o], r)), "" != i && (n += "|C:0x78fff5&T:" + i + "|\n"); + } + return n; + }), + (i.prototype.getStarlvAttr = function (e, i) { + var n = "", + s = "", + a = t.VlaoF.UpstarConfig[e][i]; + if (a) { + var r = []; + for (var o in a.attribute) r.push(a.attribute[o]); + for (var o = 0; o < r.length; o++) (n = t.AttributeData.getItemAttStrByType(r[o], r)), "" != n && (s += "|C:0xf133ff&T:" + n + "|\n"); + } + return s; + }), + (i.prototype.getOtherAttr = function (e, i) { + var n = "", + s = "", + a = t.AttributeData.getItemUseCond(e.conds); + return ( + a && (n += a + "\n"), + e.desc && (n += e.desc + "\n"), + "" != i.topLine && void 0 != i.topLine && (s = t.CrmPU.language_Common_2), + (s = "|C:0x318aff&T:" + s + t.AttributeData.getItemBagType(e) + t.AttributeData.getItemBindByType(e) + "|\n"), + (n += s) + ); + }), + (i.prototype.createStar = function (e, i, n) { + if (!this["starGrp" + e]) { + (this["starGrp" + e] = new eui.Group()), (this["starGrp" + e].x = 15), (this["starGrp" + e].y = this["bindLab" + e].height + 12), (this["starGrp" + e].width = 300); + var s = new eui.VerticalLayout(); + (s.gap = 9), (this["starGrp" + e].layout = s), this["strGrp" + e].addChild(this["starGrp" + e]); + } + var a = new eui.Group(); + a.width = 300; + var r = new eui.HorizontalLayout(); + (r.gap = 0), (a.layout = r), this["starGrp" + e].addChild(a); + for (var o = 1; o <= i.wStar; o++) { + var l = new t.TipsStarLevel(); + a.addChild(l), i.wStar <= 6 ? (l.starLvImg = "forge_xx1") : (l.starLvImg = "common_xx"), o <= i.wStar ? (l.starLvVis = !0) : (l.starLvVis = !1); + } + var h = new eui.Label(); + (h.size = 20), (h.width = 300), (h.stroke = 2), (h.strokeColor = 0), (h.lineSpacing = 4), this["starGrp" + e].addChild(h); + var p = ""; + (p += this.getStarlvAttr(n.id, i.wStar)), "" != p && (p += "\n"), n.dup || ("" != i.sourceStr && (p += i.sourceStr + "\n")), (p += this.getOtherAttr(n, i)), (h.textFlow = t.hETx.qYVI(p)); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.nameLab.text = ""), + (this.nameLab2.text = ""), + (this.bindLab1.text = ""), + (this.bindLab2.text = ""), + this.starGrp1 && (t.lEYZI.Naoc(this.starGrp1), (this.starGrp1 = null)), + this.starGrp2 && (t.lEYZI.Naoc(this.starGrp2), (this.starGrp2 = null)), + this.itemMc1 && (this.itemMc1.destroy(), (this.itemMc1 = null)), + this.itemMc2 && (this.itemMc2.destroy(), (this.itemMc2 = null)); + }), + i + ); + })(t.TipsBase); + (t.TipsEquipContrastView = e), __reflect(e.prototype, "app.TipsEquipContrastView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TipsEquipFashionSKin"), KdbLz.qOtrbE.iFbP ? (t.touchEnabled = t.touchChildren = !0) : (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateStr = function (i, n, s, a) { + if ((void 0 === s && (s = null), void 0 === a && (a = 0), i)) { + var r, + o = ""; + if (i instanceof t.userItem || i instanceof t.TradeLineData) { + if ((s && s == t.TipsType.TIPS_ROLE_EQUIP && (r = t.caJqU.ins().getItemDataBySeries(i.series, a)), s && s == t.TipsType.TIPS_EQUIP && (r = i), r && r.wItemId)) { + this.splitData = r; + var l = t.VlaoF.StdItems[r.wItemId]; + if (l) { + (this.imgBg.visible = !1), + l.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + l.showQuality)), + l.type < 100 && + l.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + l.showQuality, -1)); + var h = []; + if (l.staitcAttrs) for (var p = 0; p < l.staitcAttrs.length; p++) h.push(l.staitcAttrs[p]); + var u = t.AttributeData.getBestAttrs(r); + if (1 == r.bagType) { + var c = 15774976, + g = ""; + (c = t.ClwSVR.GOODS_COLOR[l.showQuality]), + (g = l.staitcAttrs && "" != r.topLine && void 0 != r.topLine && u ? "|C:" + c + "&T:" + l.name + " [" + t.CrmPU.language_Omission_txt133 + "]|" : "|C:" + c + "&T:" + l.name + "|"), + (this.nameLab.textFlow = t.hETx.generateTextFlow1(g)); + if (l.staitcAttrs && "" != r.topLine && void 0 != r.topLine && u) { + var d = t.AttributeData.getTotalAttrs(h, u); + o = this.getAllAttrs(d); + } else l.staitcAttrs && (o = this.getAllAttrs(l.staitcAttrs)); + if ((l.suitId > 0 && ((o += "\n"), (o += this.getEquipSuitAttr(l.suitId, a))), r.wStar > 0)) { + if (((o += "\n"), (o += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt134 + "]|"), (this.bindLab.textFlow = t.hETx.qYVI(o)), !this.starGrp)) { + (this.starGrp = new eui.Group()), (this.starGrp.x = 15), (this.starGrp.y = this.bindLab.height + 44), (this.starGrp.width = 300); + var m = new eui.VerticalLayout(); + (m.gap = 9), (this.starGrp.layout = m), this.strGrp.addChild(this.starGrp); + } + var f = new eui.Group(); + f.width = 300; + var v = new eui.HorizontalLayout(); + (v.gap = 0), (f.layout = v), this.starGrp.addChild(f); + for (var _ = 1; _ <= r.wStar; _++) { + var y = new t.TipsStarLevel(); + f.addChild(y), r.wStar <= 6 ? (y.starLvImg = "forge_xx1") : (y.starLvImg = "common_xx"), _ <= r.wStar ? (y.starLvVis = !0) : (y.starLvVis = !1); + } + var T = new eui.Label(); + (T.size = 20), (T.width = 300), (T.stroke = 2), (T.strokeColor = 0), (T.lineSpacing = 4), this.starGrp.addChild(T); + var M = ""; + (M += this.getStarlvAttr(l.id, r.wStar)), + "" != M && (M += "\n"), + l.dup || ("" != r.sourceStr && (M += r.sourceStr + "\n")), + (M += this.getOtherAttr(l, r)), + (T.textFlow = t.hETx.qYVI(M)); + } else (o += "\n"), l.dup || ("" != r.sourceStr && (o += r.sourceStr + "\n")), (o += this.getOtherAttr(l, r)), (this.bindLab.textFlow = t.hETx.qYVI(o)); + } else + l.openDaylimit && t.GlobalData.sectionOpenDay <= l.openDaylimit && (o += t.zlkp.replace(t.CrmPU.language_Common_214, l.openDaylimit - t.GlobalData.sectionOpenDay + 1) + "\n"), + (o += this.setAttr(l)), + l.dup > 1 + ? KdbLz.qOtrbE.iFbP + ? ((this.bindLab.textFlow = t.hETx.qYVI(o)), + !this.splitBtn && + this.splitData.btCount > 1 && + ((this.splitBtn = new eui.Button()), + (this.splitBtn.skinName = "Btn9Skin"), + (this.splitBtn.label = "拆 分"), + (this.splitBtn.name = "tipsview"), + this.splitBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.splitFun, this), + (this.splitBtn.x = 113), + (this.splitBtn.y = this.bindLab.height + 300), + this.strGrp.addChild(this.splitBtn))) + : ((o += t.CrmPU.language_Tips7), (this.bindLab.textFlow = t.hETx.qYVI(o))) + : (this.bindLab.textFlow = t.hETx.qYVI(o)); + KdbLz.qOtrbE.iFbP && + !this.useItemBtn && + l.isShowUseBtn && + ((this.useItemBtn = new eui.Button()), + (this.useItemBtn.skinName = "Btn9Skin"), + (this.useItemBtn.label = "使 用"), + (this.useItemBtn.name = "tipsview"), + this.useItemBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.useItemFun, this), + (this.useItemBtn.x = this.splitBtn ? 186 : 113), + (this.useItemBtn.y = this.bindLab.height + 300), + this.splitBtn && (this.splitBtn.x = 39), + this.strGrp.addChild(this.useItemBtn)); + } + } + } else if (i instanceof t.StdItems) + if (1 == i.packageType) { + (this.imgBg.visible = !1), + i.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + i.showQuality)), + i.type < 100 && + i.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + i.showQuality, -1)); + var C = t.ClwSVR.GOODS_COLOR[i.showQuality]; + if (((this.nameLab.textFlow = t.hETx.generateTextFlow1("|C:" + C + "&T:" + i.name + "|")), i.staitcAttrs)) { + var b = i.staitcAttrs.concat(); + o = this.getAllAttrs(b); + } + i.suitId > 0 && ((o += "\n"), (o += this.getEquipSuitAttr(i.suitId))), "" != o && (o += "\n"); + var I = "", + S = "", + E = t.AttributeData.getItemUseCond(i.conds); + "" != E && (I += E + "\n"), + i.desc && (I += i.desc + "\n"), + (S = "|C:0x0066ff&T:" + S + t.AttributeData.getItemBagType(i) + t.AttributeData.getItemBindByType(i) + "|\n"), + (I += S), + (o += I), + (this.bindLab.textFlow = t.hETx.qYVI(o)); + } else (o += this.setAttr(i)), i.dup > 1 && (o += t.CrmPU.language_Tips7), (this.bindLab.textFlow = t.hETx.qYVI(o)); + e.prototype.onResizeUI.call(this, i, n); + } + }), + (i.prototype.setAttr = function (e) { + var i = ""; + (this.imgBg.visible = !1), + e.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + e.showQuality)), + e.type < 100 && + e.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + e.showQuality, -1)); + var n = t.ClwSVR.GOODS_COLOR[e.showQuality], + s = "|C:" + n + "&T:" + e.name + "|"; + if (((this.nameLab.textFlow = t.hETx.generateTextFlow1(s)), e.fashionTips)) + if (-1 != e.fashionTips.indexOf("sz")) { + var a = t.NWRFmB.ins().getPayer; + a && a.propSet && (this.fashionImg.source = e.fashionTips + "_" + a.propSet.getSex() + "_png"); + } else this.fashionImg.source = e.fashionTips + "_png"; + if (127 == e.type || 131 == e.type || 133 == e.type) { + e.desc && (i += e.desc + "\n"); + var r = "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + " " + t.AttributeData.getItemBindByType(e) + "|\n"; + i += r; + } else + 128 == e.type || 129 == e.type + ? ((i = "|C:0x2eb52d&T:" + t.AttributeData.getSlowMedicine(e.staitcAttrs) + "|\n"), e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + "|\n")) + : 130 == e.type + ? ((i = "|C:0x2eb52d&T:" + t.AttributeData.getShunHuiMedicine(e.staitcAttrs) + "|\n"), e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + "|\n")) + : (e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + "|\n")); + return i; + }), + (i.prototype.getAllAttrs = function (e) { + var i = [], + n = [], + s = "", + a = ""; + for (var r in e) { + var o = e[r]; + 5 == o.type || 9 == o.type || 11 == o.type || 13 == o.type || 15 == o.type || 17 == o.type || 19 == o.type || 21 == o.type || 23 == o.type || 25 == o.type || 27 == o.type + ? i.push(o) + : n.push(o); + } + if (i.length > 0) { + s = "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt135 + "]|\n"; + for (var l = 0; l < i.length; l++) (a = t.AttributeData.getItemAttStrByType(i[l], i)), "" != a && (s += a + "\n"); + } + if (n.length > 0) { + s += "\n|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt136 + "]|\n"; + for (var l = 0; l < n.length; l++) (a = t.AttributeData.getItemAttStrByType(n[l], n)), "" != a && (s += "|C:0x78fff5&T:" + a + "|\n"); + } + return s; + }), + (i.prototype.getEquipSuitAttr = function (e, i) { + void 0 === i && (i = 0); + var n = t.VlaoF.SuitItemCfg[e], + s = 0, + a = "", + r = ""; + if (n) { + for (var o in n.NeedItemId) { + var l = 0 == i ? t.caJqU.ins().getAllEquip(n.NeedItemId[o]) : t.caJqU.ins().otherPlayerEquips.getAllEquip(n.NeedItemId[o]), + h = t.VlaoF.StdItems[n.NeedItemId[o]]; + l ? (h && (a += "|C:0x28ee01&T:" + h.name + "|\n"), (s += 1)) : h && (a += "|C:0x808080&T:" + h.name + "|\n"); + } + var p = Math.floor(e / 100), + u = e % 100, + c = 8421504; + c = 0 == i ? t.caJqU.ins().getSuitAttrColor(p, u, n.suitnum) : t.caJqU.ins().otherPlayerEquips.getSuitAttrColor(p, u, n.suitnum); + var g = []; + for (var d in n.attr) g.push(n.attr[d]); + for (var m = "", f = "", o = 0; o < g.length; o++) (m = t.AttributeData.getItemAttStrByType(g[o], g)), "" != m && (f += "|C:" + c + "&T:" + m + "|\n"); + (r += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt137 + "](" + s + "/" + n.suitnum + ")|\n"), (r += a), (r += f); + } + return r; + }), + (i.prototype.getStarlvAttr = function (e, i) { + var n = "", + s = "", + a = t.VlaoF.UpstarConfig[e][i]; + if (a) { + var r = []; + for (var o in a.attribute) r.push(a.attribute[o]); + for (var o = 0; o < r.length; o++) (n = t.AttributeData.getItemAttStrByType(r[o], r)), "" != n && (s += "|C:0xf133ff&T:" + n + "|\n"); + } + return s; + }), + (i.prototype.getOtherAttr = function (e, i) { + var n = "", + s = "", + a = t.AttributeData.getItemUseCond(e.conds); + return ( + a && (n += a + "\n"), + e.desc && (n += e.desc + "\n"), + "" != i.topLine && void 0 != i.topLine && (s = t.CrmPU.language_Common_2), + (s = "|C:0x0066ff&T:" + s + t.AttributeData.getItemBagType(e) + t.AttributeData.getItemBindByType(e) + "|\n"), + (n += s) + ); + }), + (i.prototype.splitFun = function () { + t.mAYZL.ins().open(t.BagItemSplitView, this.splitData), t.uMEZy.ins().closeTips(); + }), + (i.prototype.useItemFun = function () { + t.pWFTj.ins().onUseItem(this.splitData), t.uMEZy.ins().closeTips(); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.nameLab.text = ""), + (this.bindLab.text = ""), + this.starGrp && (t.lEYZI.Naoc(this.starGrp), (this.starGrp = null)), + this.splitBtn && (t.lEYZI.Naoc(this.splitBtn), (this.splitBtn = null), (this.splitData = null)), + this.useItemBtn && (t.lEYZI.Naoc(this.useItemBtn), (this.useItemBtn = null)), + this.itemMc && (this.itemMc.destroy(), (this.itemMc = null)); + }), + i + ); + })(t.TipsBase); + (t.TipsEquipFashionView = e), __reflect(e.prototype, "app.TipsEquipFashionView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TipsEquipSKin"), KdbLz.qOtrbE.iFbP ? (t.touchEnabled = t.touchChildren = !0) : ((t.touchEnabled = t.touchChildren = !1), (t.tipsScroller.maxHeight = 1e4)), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateSurplusUseCount = function (e) { + if (e == this.itemId) { + var i = t.ThgMu.ins().surplusUseCount[e], + n = "|C:0x28ee01&T:" + t.CrmPU.language_Common_261 + i + "|"; + this.useCountLab.textFlow = t.hETx.generateTextFlow1(n); + } + }), + (i.prototype.updateStr = function (i, n, s, a) { + if ((void 0 === s && (s = null), void 0 === a && (a = 0), i)) { + var r, + o = ""; + if (i instanceof t.userItem || i instanceof t.TradeLineData) { + if ((s && s == t.TipsType.TIPS_ROLE_EQUIP && (r = t.caJqU.ins().getItemDataBySeries(i.series, a)), s && s == t.TipsType.TIPS_EQUIP && (r = i), r && r.wItemId)) { + this.splitData = r; + var l = t.VlaoF.StdItems[r.wItemId]; + if (l) { + (this.itemId = l.id), + (this.imgBg.visible = !1), + l.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + l.showQuality)), + l.type < 100 && + l.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + l.showQuality, -1)); + var h = []; + if (l.staitcAttrs) for (var p = 0; p < l.staitcAttrs.length; p++) h.push(l.staitcAttrs[p]); + if (((this.useCountLab.text = ""), l.UseLimit)) { + var u = t.ThgMu.ins().surplusUseCount[l.id]; + void 0 == u && (u = l.UseLimit.CanUseCount); + var c = "|C:0x28ee01&T:" + t.CrmPU.language_Common_261 + u + "|"; + (this.useCountLab.textFlow = t.hETx.generateTextFlow1(c)), t.rLmMYc.addListener(t.ThgMu.ins().post_8_13, this.updateSurplusUseCount, this), t.ThgMu.ins().send_8_13(l.id); + } + var g = t.AttributeData.getBestAttrs(r); + if (1 == r.bagType) { + var d = 15774976, + m = ""; + (d = t.ClwSVR.GOODS_COLOR[l.showQuality]), + (m = l.staitcAttrs && "" != r.topLine && void 0 != r.topLine && g ? "|C:" + d + "&T:" + l.name + " [" + t.CrmPU.language_Omission_txt133 + "]|" : "|C:" + d + "&T:" + l.name + "|"), + (this.nameLab.textFlow = t.hETx.generateTextFlow1(m)); + if (l.staitcAttrs && "" != r.topLine && void 0 != r.topLine && g) { + var f = t.AttributeData.getTotalAttrs(h, g); + o = this.getAllAttrs(f); + } else l.staitcAttrs && (o = this.getAllAttrs(l.staitcAttrs)); + if ((l.suitId > 0 && ((o += "\n"), (o += this.getEquipSuitAttr(l.suitId, a))), l.resonanceId)) { + var v = this.getEquipResonanceAttr(l.resonanceId, a); + "" != v && ((o += "\n"), (o += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt146 + "]|"), (o += "\n"), (o += v)); + } + if (r.wStar > 0) { + if (((o += "\n"), (o += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt134 + "]|"), (this.bindLab.textFlow = t.hETx.qYVI(o)), !this.starGrp)) { + (this.starGrp = new eui.Group()), + (this.starGrp.x = 15), + (this.starGrp.y = this.bindLab.height + 12), + (this.starGrp.width = 300), + (this.starGrp.touchEnabled = !1), + (this.starGrp.touchChildren = !1); + var _ = new eui.VerticalLayout(); + (_.gap = 9), (this.starGrp.layout = _), this.strGrp.addChild(this.starGrp); + } + var y = new eui.Group(); + (y.touchEnabled = !1), (y.touchChildren = !1), (y.width = 300); + var T = new eui.HorizontalLayout(); + (T.gap = 0), (y.layout = T), this.starGrp.addChild(y); + for (var M = 1; M <= r.wStar; M++) { + var C = new t.TipsStarLevel(); + y.addChild(C), r.wStar <= 6 ? (C.starLvImg = "forge_xx1") : (C.starLvImg = "common_xx"), M <= r.wStar ? (C.starLvVis = !0) : (C.starLvVis = !1); + } + var b = new eui.Label(); + (b.size = 20), (b.width = 300), (b.stroke = 2), (b.strokeColor = 0), (b.lineSpacing = 4), this.starGrp.addChild(b); + var I = ""; + (I += this.getStarlvAttr(l.id, r.wStar)), + "" != I && (I += "\n"), + l.dup || ("" != r.sourceStr && (I += r.sourceStr + "\n")), + (I += this.getOtherAttr(l, r)), + (b.textFlow = t.hETx.qYVI(I)); + } else (o += "\n"), l.dup || ("" != r.sourceStr && (o += r.sourceStr + "\n")), (o += this.getOtherAttr(l, r)), (this.bindLab.textFlow = t.hETx.qYVI(o)); + } else { + l.openDaylimit && t.GlobalData.sectionOpenDay <= l.openDaylimit && (o += t.zlkp.replace(t.CrmPU.language_Common_214, l.openDaylimit - t.GlobalData.sectionOpenDay + 1) + "\n"), + (o += this.setAttr(l)), + "" != o && (o += "\n"); + var S = t.AttributeData.getItemUseCond(l.conds); + "" != S && (o += S + "\n"), + l.dup > 1 + ? KdbLz.qOtrbE.iFbP + ? ((this.bindLab.textFlow = t.hETx.qYVI(o)), + !this.splitBtn && + this.splitData.btCount > 1 && + ((this.splitBtn = new eui.Button()), + (this.splitBtn.skinName = "Btn9Skin"), + (this.splitBtn.label = "拆 分"), + (this.splitBtn.name = "tipsview"), + this.splitBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.splitFun, this), + (this.splitBtn.x = 113), + (this.splitBtn.y = this.bindLab.height + 18), + this.strGrp.addChild(this.splitBtn))) + : ((o += t.CrmPU.language_Tips7 + "\n"), (this.bindLab.textFlow = t.hETx.qYVI(o))) + : (this.bindLab.textFlow = t.hETx.qYVI(o)), + KdbLz.qOtrbE.iFbP && + !this.useItemBtn && + l.isShowUseBtn && + ((this.useItemBtn = new eui.Button()), + (this.useItemBtn.skinName = "Btn9Skin"), + (this.useItemBtn.label = "使 用"), + (this.useItemBtn.name = "tipsview"), + this.useItemBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.useItemFun, this), + (this.useItemBtn.x = this.splitBtn ? 186 : 113), + (this.useItemBtn.y = this.bindLab.height + 18), + this.splitBtn && (this.splitBtn.x = 39), + this.strGrp.addChild(this.useItemBtn)); + } + } + } + } else if (i instanceof t.StdItems) { + if (((this.itemId = i.id), (this.useCountLab.text = ""), i.UseLimit)) { + var u = t.ThgMu.ins().surplusUseCount[i.id]; + void 0 == u && (u = i.UseLimit.CanUseCount); + var c = "|C:0x28ee01&T:" + t.CrmPU.language_Common_261 + u + "|"; + (this.useCountLab.textFlow = t.hETx.generateTextFlow1(c)), t.rLmMYc.addListener(t.ThgMu.ins().post_8_13, this.updateSurplusUseCount, this), t.ThgMu.ins().send_8_13(i.id); + } + if (1 == i.packageType) { + (this.imgBg.visible = !1), + i.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + i.showQuality)), + i.type < 100 && + i.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + i.showQuality, -1)); + var E = t.ClwSVR.GOODS_COLOR[i.showQuality]; + if (((this.nameLab.textFlow = t.hETx.generateTextFlow1("|C:" + E + "&T:" + i.name + "|")), i.staitcAttrs)) { + var w = i.staitcAttrs.concat(); + o = this.getAllAttrs(w); + } + i.suitId > 0 && ((o += "\n"), (o += this.getEquipSuitAttr(i.suitId))), "" != o && (o += "\n"); + var A = "", + x = "", + S = t.AttributeData.getItemUseCond(i.conds); + "" != S && (A += S + "\n"), + i.desc && (A += i.desc + "\n"), + (x = "|C:0x0066ff&T:" + x + t.AttributeData.getItemBagType(i) + t.AttributeData.getItemBindByType(i) + "|\n"), + (A += x), + (o += A), + (this.bindLab.textFlow = t.hETx.qYVI(o)); + } else (o += this.setAttr(i)), i.dup > 1 && (o += t.CrmPU.language_Tips7 + "\n"), (this.bindLab.textFlow = t.hETx.qYVI(o)); + } + e.prototype.onResizeUI.call(this, i, n), + (this.tipsScroller.viewport.scrollV = 0), + this.tipsScroller && this.tipsScroller.verticalScrollBar && ((this.tipsScroller.verticalScrollBar.autoVisibility = !1), (this.tipsScroller.verticalScrollBar.visible = !1)); + } + }), + (i.prototype.setAttr = function (e) { + var i = ""; + (this.imgBg.visible = !1), + e.showQuality > 0 && ((this.imgBg.visible = !0), (this.imgBg.source = "bag_piliangbg_" + e.showQuality)), + e.type < 100 && + e.showQuality > 1 && + (this.itemMc || + ((this.itemMc = t.ObjectPool.pop("app.MovieClip")), + (this.itemMc.scaleX = this.itemMc.scaleY = 1), + (this.itemMc.touchEnabled = !1), + (this.itemMc.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMc)), + this.itemMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_kuang" + e.showQuality, -1)); + var n = t.ClwSVR.GOODS_COLOR[e.showQuality], + s = "|C:" + n + "&T:" + e.name + "|"; + if (((this.nameLab.textFlow = t.hETx.generateTextFlow1(s)), 127 == e.type || 131 == e.type || 133 == e.type)) { + (i += "\n"), e.desc && (i += e.desc + "\n"); + var a = "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + " " + t.AttributeData.getItemBindByType(e) + "|\n"; + i += a; + } else + 128 == e.type || 129 == e.type + ? ((i = "|C:0x2eb52d&T:" + t.AttributeData.getSlowMedicine(e.staitcAttrs) + "|\n"), e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + "|\n")) + : 130 == e.type + ? ((i = "|C:0x2eb52d&T:" + t.AttributeData.getShunHuiMedicine(e.staitcAttrs) + "|\n"), e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + "|\n")) + : ((i += "\n"), e.desc && (i += e.desc + "\n"), (i += "|C:0x0066ff&T:" + t.AttributeData.getItemBagType(e) + " " + t.AttributeData.getItemBindByType(e) + "|\n")); + return i; + }), + (i.prototype.getAllAttrs = function (e) { + var i = [], + n = [], + s = "", + a = ""; + for (var r in e) { + var o = e[r]; + 5 == o.type || 9 == o.type || 11 == o.type || 13 == o.type || 15 == o.type || 17 == o.type || 19 == o.type || 21 == o.type || 23 == o.type || 25 == o.type || 27 == o.type + ? i.push(o) + : n.push(o); + } + if (i.length > 0) { + s = "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt135 + "]|\n"; + for (var l = 0; l < i.length; l++) (a = t.AttributeData.getItemAttStrByType(i[l], i)), "" != a && (s += a + "\n"); + } + if (n.length > 0) { + s += "\n|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt136 + "]|\n"; + for (var l = 0; l < n.length; l++) (a = t.AttributeData.getItemAttStrByType(n[l], n)), "" != a && (s += "|C:0x78fff5&T:" + a + "|\n"); + } + return s; + }), + (i.prototype.getEquipSuitAttr = function (e, i) { + void 0 === i && (i = 0); + var n = t.VlaoF.SuitItemCfg[e], + s = 0, + a = "", + r = ""; + if (n) { + for (var o in n.NeedItemId) { + var l = 0 == i ? t.caJqU.ins().getAllEquip(n.NeedItemId[o]) : t.caJqU.ins().otherPlayerEquips.getAllEquip(n.NeedItemId[o]), + h = t.VlaoF.StdItems[n.NeedItemId[o]]; + l ? (h && (a += "|C:0x28ee01&T:" + h.name + "|\n"), (s += 1)) : h && (a += "|C:0x808080&T:" + h.name + "|\n"); + } + var p = Math.floor(e / 100), + u = e % 100, + c = 8421504; + c = 0 == i ? t.caJqU.ins().getSuitAttrColor(p, u, n.suitnum) : t.caJqU.ins().otherPlayerEquips.getSuitAttrColor(p, u, n.suitnum); + var g = []; + for (var d in n.attr) g.push(n.attr[d]); + for (var m = "", f = "", o = 0; o < g.length; o++) (m = t.AttributeData.getItemAttStrByType(g[o], g)), "" != m && (f += "|C:" + c + "&T:" + m + "|\n"); + (r += "|C:0xf1ed02&T:[" + t.CrmPU.language_Omission_txt137 + "](" + s + "/" + n.suitnum + ")|\n"), (r += a), (r += f); + } + return r; + }), + (i.prototype.getEquipResonanceAttr = function (e, i) { + var n, + s = "", + a = "", + r = t.VlaoF.ResonanceItemCfg[e]; + if (((n = i > 0 ? t.caJqU.ins().otherPlayerEquips.equips : t.caJqU.ins().equips), r && n)) { + for (var o = [], l = 0; l < r.attr.length; l++) + for (var h = 0; h < n.length; h++) + if (n[h].wItemId == r.attr[l].itemid) { + o = r.attr[l].attr; + break; + } + for (var l = 0; l < o.length; l++) (s = t.AttributeData.getItemAttStrByType(o[l], o)), "" != s && (a += "|C:0x78fff5&T:" + s + "|\n"); + } + return a; + }), + (i.prototype.getStarlvAttr = function (e, i) { + var n = "", + s = "", + a = t.VlaoF.UpstarConfig[e][i]; + if (a) { + var r = []; + for (var o in a.attribute) r.push(a.attribute[o]); + for (var o = 0; o < r.length; o++) (n = t.AttributeData.getItemAttStrByType(r[o], r)), "" != n && (s += "|C:0xf133ff&T:" + n + "|\n"); + } + return s; + }), + (i.prototype.getOtherAttr = function (e, i) { + var n = "", + s = "", + a = t.AttributeData.getItemUseCond(e.conds); + return ( + a && (n += a + "\n"), + e.desc && (n += e.desc + "\n"), + "" != i.topLine && void 0 != i.topLine && (s = t.CrmPU.language_Common_2), + (s = "|C:0x0066ff&T:" + s + t.AttributeData.getItemBagType(e) + t.AttributeData.getItemBindByType(e) + "|\n"), + (n += s) + ); + }), + (i.prototype.splitFun = function () { + t.mAYZL.ins().open(t.BagItemSplitView, this.splitData), t.uMEZy.ins().closeTips(); + }), + (i.prototype.useItemFun = function () { + t.pWFTj.ins().onUseItem(this.splitData), t.uMEZy.ins().closeTips(); + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.rLmMYc.ins().removeAll(this), + (this.nameLab.text = ""), + (this.bindLab.text = ""), + this.starGrp && (t.lEYZI.Naoc(this.starGrp), (this.starGrp = null)), + this.splitBtn && (t.lEYZI.Naoc(this.splitBtn), (this.splitBtn = null)), + this.useItemBtn && (t.lEYZI.Naoc(this.useItemBtn), (this.useItemBtn = null)), + (this.splitData = null), + this.itemMc && (this.itemMc.destroy(), (this.itemMc = null)); + }), + i + ); + })(t.TipsBase); + (t.TipsEquipView = e), __reflect(e.prototype, "app.TipsEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._cdTime = 0), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.cereateLabel = function () { + this.levelLab || + ((this.levelLab = new eui.Label()), + (this.levelLab.size = 34), + (this.levelLab.scaleX = this.levelLab.scaleY = 0.5), + (this.levelLab.touchEnabled = !1), + (this.levelLab.textColor = 15064527), + (this.levelLab.textAlign = "left"), + (this.levelLab.lineSpacing = 20), + (this.levelLab.stroke = 2), + (this.levelLab.strokeColor = 0), + this.addChild(this.levelLab)); + }), + Object.defineProperty(i.prototype, "cdTime", { + get: function () { + return this._cdTime; + }, + set: function (t) { + this._cdTime = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.checkTime = function () { + return egret.getTimer() > this._cdTime ? !0 : !1; + }), + Object.defineProperty(i.prototype, "labelText", { + get: function () { + return this._labelText; + }, + set: function (e) { + (this._labelText = e), + (this.levelLab.textFlow = t.hETx.qYVI(this._labelText)), + (this.levelLab.alpha = 1), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(4500, 1, this.Naoc, this)); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.levelLab.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelSize", { + set: function (t) { + this.levelLab.size = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsExpItem = e), __reflect(e.prototype, "app.TipsExpItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.cereateLabel = function () { + this.levelLab || + ((this.levelLab = new eui.Label()), + (this.levelLab.size = 40), + (this.levelLab.scaleX = this.levelLab.scaleY = 0.5), + (this.levelLab.width = 800), + (this.levelLab.touchEnabled = !1), + (this.levelLab.textColor = 2682369), + (this.levelLab.textAlign = "left"), + (this.levelLab.stroke = 2), + (this.levelLab.strokeColor = 0), + this.addChild(this.levelLab)); + }), + Object.defineProperty(i.prototype, "labelText", { + get: function () { + return this._labelText; + }, + set: function (e) { + (this._labelText = e), + (this.levelLab.textFlow = t.hETx.qYVI(this._labelText)), + (this.levelLab.alpha = 1), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.levelLab.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelSize", { + set: function (t) { + this.levelLab.size = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsFightItem = e), __reflect(e.prototype, "app.TipsFightItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._cdTime = 0), (t.timeNum = 7), (t.isDress = !1), (t.skinName = "TipsGoodEquipSkin"), (t.isUsing = !1), (t.btn_close.name = "closeBtn"), (t.dressEquip.name = "dressBtn"), t; + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "cdTime", { + get: function () { + return this._cdTime; + }, + set: function (t) { + this._cdTime = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "data", { + set: function (e) { + if (e instanceof t.userItem) { + this.itemData = e; + var i = t.VlaoF.StdItems[this.itemData.wItemId]; + if (i) { + var n = 15774976; + (this.itemIcon.source = i.icon + ""), (n = t.ClwSVR.GOODS_COLOR[i.showQuality]), (this.itemName.textColor = n), (this.itemName.text = i.name); + } + } + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.showCountDown = function (e, isEquip) { + (this.timeNum = 7), (this.isDress = e), t.KHNO.ins().remove(this.updateTime, this); + if (!e) { + t.KHNO.ins().tBiJo(1e3, 6, this.updateTime, this); + this.updateTime(); + } + if (e && isEquip) { + this.autoDress.text = "高战力"; + } + }), + (i.prototype.updateTime = function () { + this.autoDress.text = (this.timeNum -= 1) + (this.isDress ? t.CrmPU.language_Omission_txt138 : t.CrmPU.language_Omission_txt139); + }), + (i.prototype.removeTimer = function () { + t.KHNO.ins().remove(this.updateTime, this); + }), + i + ); + })(t.BaseView); + (t.TipsGoodEquipView = e), __reflect(e.prototype, "app.TipsGoodEquipView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.moneyType = 0), (i.skinName = "TipsInsuffResourcesSkin"), (i.name = "TipsInsuffResourcesView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this.moneyType = e[0]), + this.moneyType == ZnGy.qatYuanbao ? (this.strLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Tips136)) : (this.strLab.text = ""), + this.vKruVZ(this.btnGoto, this.onClick), + this.vKruVZ(this.btnClose, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnGoto: + t.RechargeMgr.ins().onPay(""), t.mAYZL.ins().close(this); + break; + case this.btnClose: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this.btnClose, this.onClick), this.fEHj(this.btnGoto, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.TipsInsuffResourcesView = e), __reflect(e.prototype, "app.TipsInsuffResourcesView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._cdTime = 0), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.cereateLabel = function () { + this.levelLab || + ((this.levelLab = new eui.Label()), + (this.levelLab.size = 20), + (this.levelLab.touchEnabled = !1), + (this.levelLab.textColor = 2682369), + (this.levelLab.stroke = 1), + (this.levelLab.strokeColor = 0), + this.addChild(this.levelLab)); + }), + Object.defineProperty(i.prototype, "cdTime", { + get: function () { + return this._cdTime; + }, + set: function (t) { + this._cdTime = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.checkTime = function () { + return egret.getTimer() > this._cdTime ? !0 : !1; + }), + Object.defineProperty(i.prototype, "labelText", { + get: function () { + return this._labelText; + }, + set: function (e) { + (this._labelText = e), + (this.levelLab.textFlow = t.hETx.qYVI(this._labelText)), + (this.levelLab.alpha = 1), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.levelLab.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelSize", { + set: function (t) { + this.levelLab.size = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsItem = e), __reflect(e.prototype, "app.TipsItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), (t.skinName = "TipsLookRewardsView"), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateStr = function (i, n) { + i && ((this.descLab.textFlow = t.hETx.qYVI(i)), e.prototype.onResizeUI.call(this, null, n)); + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.descLab.text = ""; + }), + i + ); + })(t.TipsBase); + (t.TipsLookRewardsView = e), __reflect(e.prototype, "app.TipsLookRewardsView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TipsMoneySKin"), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateStr = function (i, n) { + if (i) { + e.prototype.onResizeUI.call(this, null, n); + var s = i + "\n"; + this.descLab.textFlow = t.hETx.qYVI(s); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.descLab.text = ""; + }), + i + ); + })(t.TipsBase); + (t.TipsMoneyView = e), __reflect(e.prototype, "app.TipsMoneyView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = t.ZAJw.sztgR(this.data.type, this.data.id); + (this.imgIcon.source = e[1] + ""), (this.labDesc.textFlow = t.hETx.qYVI(e[0] + ":|C:0xb4926c&T:" + t.CommonUtils.overLength(this.data.count) + "|")); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this); + }), + i + ); + })(t.BaseItemRender); + (t.TipsOfflineRewardItem = e), __reflect(e.prototype, "app.TipsOfflineRewardItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "TipsOfflineRewardViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.top = i.bottom = i.left = i.right = 0), i; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + var n = 111, + s = { + type: 5, + id: 5, + count: 1, + }; + (this.itemList.itemRenderer = t.TipsOfflineRewardItem), + (this.itemList.dataProvider = new eui.ArrayCollection(s)), + (this.labTime1.text = t.CrmPU.language_Common_292), + (this.labTime.text = t.DateUtils.getFormatBySecond(n, t.DateUtils.TIME_FORMAT_1)); + var a = Math.floor(1111 / t.DateUtils.SECOND_PER_HOUR); + (this.labDesc.text = t.zlkp.replace(t.CrmPU.language_Common_291, a, a)), this.vKruVZ(this, this.onClick); + }), + (i.prototype.onClick = function (e) { + t.mAYZL.ins().close(this); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.fEHj(this, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.TipsOfflineRewardView = e), __reflect(e.prototype, "app.TipsOfflineRewardView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.cereateLabel = function () { + this.levelLab || + ((this.levelLab = new eui.Label()), + (this.levelLab.size = 20), + (this.levelLab.touchEnabled = !1), + (this.levelLab.textColor = 2682369), + (this.levelLab.textAlign = "right"), + (this.levelLab.stroke = 1), + (this.levelLab.strokeColor = 0), + this.addChild(this.levelLab)); + }), + Object.defineProperty(i.prototype, "labelText", { + get: function () { + return this._labelText; + }, + set: function (e) { + (this._labelText = e), + (this.levelLab.textFlow = t.hETx.qYVI(this._labelText)), + (this.levelLab.alpha = 1), + this.addToEvent || ((this.addToEvent = !0), t.KHNO.ins().remove(this.Naoc, this), t.KHNO.ins().tBiJo(3e3, 1, this.Naoc, this)); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelColor", { + set: function (t) { + this.levelLab.textColor = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "labelSize", { + set: function (t) { + this.levelLab.size = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.Naoc = function () { + (this.addToEvent = !1), t.lEYZI.Naoc(this), egret.Tween.removeTweens(this), t.ObjectPool.push(this); + }), + i + ); + })(t.BaseView); + (t.TipsRightArticlesItem = e), __reflect(e.prototype, "app.TipsRightArticlesItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.touchEnabled = t.touchChildren = !1), (t.skinName = "TipsSkillDescSKin"), t; + } + return ( + __extends(i, e), + (i.prototype.inItFunction = function () {}), + (i.prototype.updateStr = function (i, n) { + if (i) { + var s = "", + a = i.conds, + r = i.desc, + o = i.name, + l = i.level; + o && (s += o + l + t.CrmPU.language_Common_1 + "\n"); + var h = new Array(4); + if (a) + for (var p = void 0, u = a ? a.length : 0, c = 0; u > c; c++) + if (((p = a[c]), 1 == p.cond)) h[0] = t.CrmPU.language_Omission_txt1 + p.value + t.CrmPU.language_Common_1 + "\n"; + else if (4 == p.cond) h[1] = t.CrmPU.language_Omission_txt2 + p.value + t.CrmPU.language_Common_1 + "\n"; + else if (2 == p.cond && p.consume) h[2] = t.CrmPU.language_Omission_txt3 + p.value + "\n"; + else if (3 == p.cond && p.consume) { + var g = void 0; + (g = t.VlaoF.StdItems[p.value]), g && (h[3] = t.CrmPU.language_Omission_txt4 + g.name + ":" + p.count + "\n"); + } else 6 == p.cond && (h[4] = t.CrmPU.language_Omission_txt145 + p.value + "\n"); + for (var c = 0; c < h.length; c++) h[c] && (s += h[c]); + o ? r.length > 0 && (s += "\n" + r) : (s += r), (s = s.replace(/^\s+|\s+$/g, "")), e.prototype.onResizeUI.call(this, null, n), (s += "\n"), (this.descLab.text = s); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.descLab.text = ""; + }), + i + ); + })(t.TipsBase); + (t.TipsSkillDescView = e), __reflect(e.prototype, "app.TipsSkillDescView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.weaponID = 0), (t.type = 0), (t.skinName = "TipsSoldierSoulSkin"), (t.touchEnabled = t.touchChildren = !1), t; + } + return ( + __extends(i, e), + (i.prototype.updateStr = function (i, n) { + (this.weaponID = i.ID), (this.type = i.TYPE); + var s; + if (1 == this.type) s = t.SoldierSoulMgr.ins().weaponInfo[this.weaponID]; + else if (2 == this.type) { + var a = t.caJqU.ins().otherPlayerEquips; + s = a.weaponSoulInfo[this.weaponID]; + } + if (s) { + var r = t.CrmPU["language_SoldierSoul_Text" + this.weaponID] + " [" + s.soulOrder + "阶]"; + this.nameLab.textFlow = t.hETx.generateTextFlow1(r); + var o = "", + l = [], + h = t.VlaoF.soulWeaponLorderConfig[this.weaponID][s.soulOrder]; + if (h && h.attr) for (var p = 0; p < h.attr.length; p++) l.push(h.attr[p]); + if ("" != s.soulTopLine && void 0 != s.soulTopLine) { + var u = this.getBestAttrs(s.soulTopLine), + c = t.AttributeData.getTotalAttrs(l, u); + o = this.getAllAttrs(c); + } else o = this.getAllAttrs(l); + if (s.soulLv > 0) { + (o += "\n"), (o += "|C:0xeee104&T:[升级属性]:" + s.soulLv + "级|\n"); + var g = t.VlaoF.soulWeaponLvConfig[this.weaponID][s.soulLv]; + if (g && g.attr) { + for (var d = [], p = 0; p < g.attr.length; p++) d.push(g.attr[p]); + o += this.getAllAttrs(d, 1, "0x1affff", "0x1affff"); + } + } + if (s.soulStar > 0) { + if (((o += "\n"), (o += "|C:0xeee104&T:[升星属性]|"), (this.bindLab.textFlow = t.hETx.qYVI(o)), !this.starGrp)) { + (this.starGrp = new eui.Group()), (this.starGrp.x = 15), (this.starGrp.y = this.bindLab.height + 44), (this.starGrp.width = 300); + var m = new eui.VerticalLayout(); + (m.gap = 9), (this.starGrp.layout = m), this.strGrp.addChild(this.starGrp); + } + var f = new eui.Group(); + f.width = 300; + var v = new eui.HorizontalLayout(); + (v.gap = -2), (f.layout = v), this.starGrp.addChild(f); + for (var _ = 1; _ <= s.soulStar; _++) { + var y = new t.TipsStarLevel(); + f.addChild(y), s.soulStar <= 6 ? (y.starLvImg = "forge_xx1") : (y.starLvImg = "common_xx"), _ <= s.soulStar ? (y.starLvVis = !0) : (y.starLvVis = !1); + } + var T = new eui.Label(); + (T.size = 20), (T.width = 300), (T.stroke = 2), (T.strokeColor = 0), (T.lineSpacing = 4), this.starGrp.addChild(T); + var M = ""; + (M += this.getStarlvAttr(s.soulStar)), (T.textFlow = t.hETx.qYVI(M)); + } else this.bindLab.textFlow = t.hETx.qYVI(o); + } + e.prototype.onResizeUI.call(this, this.weaponID, n); + }), + (i.prototype.getStarlvAttr = function (e) { + var i = "", + n = t.VlaoF.soulWeaponstarConfig[this.weaponID][e]; + if (n) { + for (var s = [], a = 0; a < n.attribute.length; a++) s.push(n.attribute[a]); + i = this.getAllAttrs(s, 1, "0xff1ac2", "0xff1ac2"); + } + return i; + }), + (i.prototype.getAllAttrs = function (e, i, n, s) { + void 0 === i && (i = 0), void 0 === n && (n = null), void 0 === s && (s = null); + for (var a = "", r = "", o = 0; o < e.length; o++) (r = t.AttributeData.getItemAttStrByType(e[o], e, i, !1, !0, n, s)), "" != r && (a += r + "\n"); + return a; + }), + (i.prototype.getBestAttrs = function (e) { + for (var i = [], n = e.split("|"), s = 0; s < n.length; s++) { + var a = n[s].split(","), + r = new t.AttributeData(+a[0], +a[1]); + i.push(r); + } + return i; + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.nameLab.text = ""), (this.bindLab.text = ""), this.starGrp && (t.lEYZI.Naoc(this.starGrp), (this.starGrp = null)); + }), + i + ); + })(t.TipsBase); + (t.TipsSoldierSoulView = e), __reflect(e.prototype, "app.TipsSoldierSoulView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e.skinName = "TipsStarLevelSkin"), e; + } + return ( + __extends(e, t), + (e.prototype.childrenCreated = function () { + t.prototype.childrenCreated.call(this); + }), + Object.defineProperty(e.prototype, "starLvVis", { + set: function (t) { + this.starLv.visible = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(e.prototype, "starLvImg", { + set: function (t) { + this.starLv.source = t; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.$onRemoveFromStage = function () { + t.prototype.$onRemoveFromStage.call(this); + }), + e + ); + })(eui.Component); + (t.TipsStarLevel = e), __reflect(e.prototype, "app.TipsStarLevel"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._cdTime = 0), (t.timeNum = 7), (t.skinName = "TipsUseItemViewSkin"), (t.btn_close.name = "closeBtn"), (t.dressEquip.name = "dressBtn"), t; + } + return ( + __extends(i, e), + (i.prototype.updateType = function (e) { + e == t.rPHSc.ItemOpenUITips + ? ((this.labTitle.text = t.CrmPU.language_Ghost_Btn3), (this.dressEquip.label = t.CrmPU.Language_Guild_Btn_Txt)) + : ((this.labTitle.text = t.CrmPU.language_Common_211), (this.dressEquip.label = t.CrmPU.language_Common_212)); + }), + Object.defineProperty(i.prototype, "data", { + set: function (e) { + if (e instanceof t.userItem) { + this.itemData = e; + var i = t.VlaoF.StdItems[this.itemData.wItemId]; + if (i) { + var n = 15774976; + (this.itemIcon.source = i.icon + ""), (n = t.ClwSVR.GOODS_COLOR[i.showQuality]), (this.itemName.textColor = n), (this.itemName.text = i.name); + } + } + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.showCountDown = function (e) { + (this.timeNum = 7), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 6, this.updateTime, this), this.updateTime(); + }), + (i.prototype.updateTime = function () { + this.autoDress.text = (this.timeNum -= 1) + t.CrmPU.language_Omission_txt138; + }), + (i.prototype.removeTimer = function () { + t.KHNO.ins().remove(this.updateTime, this); + }), + Object.defineProperty(i.prototype, "useNum", { + get: function () { + return 1; + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseView); + (t.TipsUseItemView = e), __reflect(e.prototype, "app.TipsUseItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._useNum = 0), + (t.itemNum = 0), + (t.timeNum = 7), + (t.skinName = "TipsUseItemViewSkin2"), + (t.btn_close.name = "closeBtn"), + (t.dressEquip.name = "dressBtn"), + (t.btnAdd.name = "addBtn"), + (t.btnSub.name = "subBtn"), + t + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "data", { + set: function (e) { + if (e instanceof t.userItem) { + this.itemData = e; + var i = t.VlaoF.StdItems[this.itemData.wItemId]; + if (i) { + var n = 15774976; + (this.itemIcon.source = i.icon + ""), (n = t.ClwSVR.GOODS_COLOR[i.showQuality]), (this.labTitle.textColor = n), (this.labTitle.text = i.name); + var s = t.ThgMu.ins().getItemDataBySeries(e.series); + s && (this._useNum = this.itemNum = s.btCount), (this.lbCount.text = this._useNum + ""); + } + } + this.dressEquip.label = t.CrmPU.language_Common_213; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.addNum = function () { + this._useNum < this.itemNum && (this._useNum++, (this.lbCount.text = this._useNum + "")); + }), + (i.prototype.subNum = function () { + this._useNum > 1 && (this._useNum--, (this.lbCount.text = this._useNum + "")); + }), + (i.prototype.showCountDown = function () { + (this.timeNum = 7), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 6, this.updateTime, this), this.updateTime(); + }), + (i.prototype.updateTime = function () { + this.autoDress.text = (this.timeNum -= 1) + t.CrmPU.language_Omission_txt138; + }), + (i.prototype.removeTimer = function () { + t.KHNO.ins().remove(this.updateTime, this); + }), + Object.defineProperty(i.prototype, "useNum", { + get: function () { + return this._useNum; + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(t.BaseView); + (t.TipsUseItemView2 = e), __reflect(e.prototype, "app.TipsUseItemView2"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t.list = []), + (t.JingYanlist = []), + (t.moneyList = []), + (t.UIList = []), + (t.rightItemList = []), + (t.fightList = []), + (t.attrList = []), + (t.tipsTimeArr = []), + (t.cdTime = 0), + (t.tipsInfoAry = []), + (t.isPlay = !1), + (t.tipsNum = 10), + (t.curTipsNum = 0), + (t.curTipsStr = ""), + (t.recycleArr = []), + (t.isRecycle = !1), + (t.recycleTime = 0), + (t.jobAttr = []), + (t.RightMiddlePosHash = {}), + t + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.touchChildren = !0), (this.touchEnabled = !1), (this.bottom = 0), (this.top = 0), (this.right = 0), (this.left = 0); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.isPlay = !1), t.KHNO.ins().tBiJo(6e3, 0, this.updateTipsView, this); + }), + (i.prototype.updateTipsView = function () { + egret.getTimer() > this.recycleTime && this.isRecycle && (this.isRecycle = !1); + }), + (i.prototype.showItemTips = function (e) { + var i = t.ObjectPool.pop("app.TipsArticlesItem"); + i.cereateLabel(), + (i.labelText = e), + (i.labelSize = 20), + (i.top = 30), + (i.left = 40), + (i.alpha = 1), + this.addChild(i), + this.list.unshift(i), + this.list.length > 10 && + (this.list.splice(this.list.length - 1, 1), + t.lEYZI.Naoc(this.list[this.list.length - 1]), + t.ObjectPool.push(this.list[this.list.length - 1]), + egret.Tween.removeTweens(this.list[this.list.length - 1])), + i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsItem, this); + for (var n = this.list.length - 1; n >= 0; n--) { + egret.Tween.removeTweens(this.list[n]); + var s = egret.Tween.get(this.list[n]); + s.to( + { + top: 30 + 30 * n, + }, + 100 + ) + .wait(3e3) + .to( + { + alpha: 0, + }, + 500 + ); + } + t.uMEZy.ins().showRightItemTips(e); + }), + (i.prototype.removeTipsItem = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsItem, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.list.indexOf(i); + this.list.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.playTips = function () { + var e = KdbLz.qOtrbE.iFbP ? 400 : 500; + if (this.tipsInfoAry.length) { + var i = egret.getTimer(); + if (i - this.cdTime > 150) { + var n = this.tipsInfoAry.shift(); + if (n) { + this.cdTime = i; + var s = t.ObjectPool.pop("app.TipsAttrItem"); + (s.attrImgSource = 1 == n.attrType ? "sx_num_p" : "sx_num_j"), + s.labelText(n.str, n.attrNum), + (s.horizontalCenter = -260), + (s.bottom = e), + (s.alpha = 1), + this.addChild(s), + this.attrList.unshift(s), + s.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeAttrTips, this); + for (var a = this.attrList.length - 1; a >= 0; a--) { + egret.Tween.removeTweens(this.attrList[a]); + var r = egret.Tween.get(this.attrList[a]); + r.to( + { + bottom: e + 45 * a, + }, + 100 + ) + .wait(1e3 + 100 * (this.attrList.length - a)) + .to( + { + horizontalCenter: -310, + alpha: 0, + }, + 200 + ); + } + } + } else t.KHNO.ins().remove(this.playTips, this), t.KHNO.ins().doNext(this.playTips, this); + } + }), + (i.prototype.showAttrTips = function (e) { + this.tipsInfoAry.push(e), t.KHNO.ins().remove(this.playTips, this), t.KHNO.ins().doNext(this.playTips, this); + }), + (i.prototype.playStr = function () {}), + (i.prototype.removeAttrTips = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeAttrTips, this), (i.horizontalCenter = 0 / 0), (i.bottom = 0 / 0); + var n = this.attrList.indexOf(i); + this.attrList.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.showJingYanTips = function (e) { + this.recycleArr.push(e), t.KHNO.ins().remove(this.playTipsRecycle, this), t.KHNO.ins().doNext(this.playTipsRecycle, this); + }), + (i.prototype.playTipsRecycle = function () { + if (this.recycleArr.length) + if (this.curTipsNum < this.tipsNum) { + this.curTipsNum += 1; + var e = this.recycleArr.shift(); + (this.curTipsStr += e + "\n"), t.KHNO.ins().remove(this.playTipsRecycle, this), t.KHNO.ins().doNext(this.playTipsRecycle, this); + } else this.isRecycle || this.createTipsItem(); + else this.curTipsNum > 0 && !this.isRecycle && this.createTipsItem(); + }), + (i.prototype.createTipsItem = function () { + var e = this; + (this.curTipsNum = 0), (this.isRecycle = !0); + var i = t.ObjectPool.pop("app.TipsExpItem"); + i.cereateLabel(), + (this.recycleTime = egret.getTimer() + 3e4), + (i.labelText = this.curTipsStr), + (i.bottom = 370), + (i.left = 350), + (i.alpha = 1), + this.addChild(i), + this.JingYanlist.unshift(i), + i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsJingYan, this), + (this.curTipsStr = ""); + for (var n = this.JingYanlist.length - 1; n >= 0; n--) { + egret.Tween.removeTweens(this.JingYanlist[n]); + var s = egret.Tween.get(this.JingYanlist[n]); + s.to( + { + bottom: 370 + 30 * n, + }, + 150 + ) + .to( + { + bottom: 400 + 30 * n, + }, + 150 + ) + .wait(1500) + .to( + { + alpha: 0, + }, + 500 + ) + .call(function () { + t.KHNO.ins().remove(e.playTipsRecycle, e), t.KHNO.ins().doNext(e.playTipsRecycle, e), (e.isRecycle = !1), (e.recycleTime = 0); + }); + } + }), + (i.prototype.removeTipsJingYan = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsJingYan, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.JingYanlist.indexOf(i); + this.JingYanlist.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.showMoneyTips = function (e) { + var i = t.ObjectPool.pop("app.TipsItem"); + i.cereateLabel(), (i.labelText = e), (i.labelSize = 20); + var n = (t.aTwWrO.ins().getHeight() - i.levelLab.height) / 2, + s = (t.aTwWrO.ins().getWidth() - i.levelLab.width) / 2 - 100; + (i.left = s), + (i.y = n), + (i.alpha = 1), + this.addChild(i), + this.moneyList.unshift(i), + this.moneyList.length > 5 && + (this.moneyList.splice(this.moneyList.length - 1, 1), + t.lEYZI.Naoc(this.moneyList[this.moneyList.length - 1]), + t.ObjectPool.push(this.moneyList[this.moneyList.length - 1]), + egret.Tween.removeTweens(this.moneyList[this.moneyList.length - 1])), + i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsMoney, this); + for (var a = this.moneyList.length - 1; a >= 0; a--) { + egret.Tween.removeTweens(this.moneyList[a]); + var r = egret.Tween.get(this.moneyList[a]); + r.to( + { + y: n + -30 * a, + }, + 100 + ) + .wait(3e3) + .to( + { + alpha: 0, + }, + 500 + ); + } + }), + (i.prototype.removeTipsMoney = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsMoney, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.moneyList.indexOf(i); + this.moneyList.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.showRightItemTips = function (e) { + var i = t.ObjectPool.pop("app.TipsRightArticlesItem"); + i.cereateLabel(), + (i.labelText = e), + (i.labelSize = 20), + (i.bottom = 100), + (i.right = 100), + (i.alpha = 1), + this.addChild(i), + this.rightItemList.unshift(i), + this.rightItemList.length > 5 && + (this.rightItemList.splice(this.rightItemList.length - 1, 1), + t.lEYZI.Naoc(this.rightItemList[this.rightItemList.length - 1]), + t.ObjectPool.push(this.rightItemList[this.rightItemList.length - 1]), + egret.Tween.removeTweens(this.rightItemList[this.rightItemList.length - 1])), + i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeRightTipsItem, this); + for (var n = this.rightItemList.length - 1; n >= 0; n--) { + egret.Tween.removeTweens(this.rightItemList[n]); + var s = egret.Tween.get(this.rightItemList[n]); + s.to( + { + bottom: 100 + 30 * n, + }, + 100 + ) + .wait(3e3) + .to( + { + alpha: 0, + }, + 500 + ); + } + }), + (i.prototype.removeRightTipsItem = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeRightTipsItem, this), (i.right = 0 / 0), (i.bottom = 0 / 0); + var n = this.rightItemList.indexOf(i); + this.rightItemList.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.IrCm = function (e) { + var i = t.ObjectPool.pop("app.TipsItem"); + i.cereateLabel(), (i.labelText = e), (i.labelSize = 20); + var n = (t.aTwWrO.ins().getHeight() - i.levelLab.height) / 2 - 160, + s = (t.aTwWrO.ins().getWidth() - i.levelLab.width) / 2; + (i.left = s), (i.y = n), (i.alpha = 1), this.addChild(i), this.UIList.unshift(i), i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsUI, this); + for (var a = this.UIList.length - 1; a >= 0; a--) { + egret.Tween.removeTweens(this.UIList[a]); + var r = egret.Tween.get(this.UIList[a]); + r.to( + { + y: n + -30 * a, + }, + 100 + ) + .wait(2500) + .to( + { + alpha: 0, + }, + 500 + ); + } + }), + (i.prototype.removeTipsUI = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsUI, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.UIList.indexOf(i); + this.UIList.splice(n, 1), t.ObjectPool.push(i), (i = null); + }), + (i.prototype.showFightTips = function (e) { + var i = t.ObjectPool.pop("app.TipsFightItem"); + i.cereateLabel(), + (i.labelText = e), + (i.horizontalCenter = -110), + (i.bottom = 300), + (i.alpha = 1), + this.addChild(i), + this.fightList.unshift(i), + this.fightList.length > 5 && + (this.fightList.splice(this.fightList.length - 1, 1), + t.lEYZI.Naoc(this.fightList[this.fightList.length - 1]), + t.ObjectPool.push(this.fightList[this.fightList.length - 1]), + egret.Tween.removeTweens(this.fightList[this.fightList.length - 1])), + i.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsFight, this); + for (var n = this.fightList.length - 1; n >= 0; n--) { + egret.Tween.removeTweens(this.fightList[n]); + var s = egret.Tween.get(this.fightList[n]); + s.to( + { + bottom: 300 + 27 * n, + }, + 100 + ) + .wait(3e3) + .to( + { + alpha: 0, + }, + 500 + ); + } + }), + (i.prototype.removeTipsFight = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsFight, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.fightList.indexOf(i); + this.fightList.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.showJobAttrTips = function (e) { + var i = KdbLz.qOtrbE.iFbP ? 330 : 430; + if (this.jobAttr.length > 0) { + var n = this.jobAttr.pop(); + n && (n.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsJobAttr, this), egret.Tween.removeTweens(n), n.Naoc()); + } + var s = t.ObjectPool.pop("app.TipsActorView"); + (s.horizontalCenter = -250), + (s.bottom = i), + (s.alpha = 1), + this.addChild(s), + this.jobAttr.unshift(s), + s.setData(e.curVal, e.tarVal, e.type), + s.addEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsJobAttr, this); + for (var a = this.jobAttr.length - 1; a >= 0; a--) { + egret.Tween.removeTweens(this.jobAttr[a]); + var r = egret.Tween.get(this.jobAttr[a]); + r.to( + { + bottom: i + 59 * a, + }, + 100 + ) + .wait(3e3) + .to( + { + alpha: 0, + }, + 500 + ); + } + }), + (i.prototype.removeTipsJobAttr = function (e) { + var i = e.currentTarget; + i.removeEventListener(egret.Event.REMOVED_FROM_STAGE, this.removeTipsJobAttr, this), (i.left = 0 / 0), (i.y = 0 / 0); + var n = this.jobAttr.indexOf(i); + this.jobAttr.splice(n, 1), t.ObjectPool.push(i); + }), + (i.prototype.showItemUseTips = function (e, i) { + i == t.rPHSc.EquipTips + ? ((this.equipTip1 = this.equipTip1 || new t.TipsGoodEquipView()), (this.curItemTips = this.equipTip1)) + : i == t.rPHSc.UseItemTips2 + ? ((this.useItemTip2 = this.useItemTip2 || new t.TipsUseItemView2()), (this.curItemTips = this.useItemTip2)) + : ((this.useItemTip = this.useItemTip || new t.TipsUseItemView()), (this.curItemTips = this.useItemTip)), + (this.curItem = e); + var n = this; + egret.Tween.removeTweens(this.curItemTips); + var s = this.getRightMiddlePos(this.curItemTips); + (this.curItemTips.right = KdbLz.qOtrbE.iFbP ? s.x + 220 : s.x + 30), + (this.curItemTips.bottom = 0), + (this.curItemTips.alpha = 1), + this.curItemTips.updateType && this.curItemTips.updateType(i), + (this.curItemTips.data = this.curItem), + this.curItemTips.addEventListener(egret.TouchEvent.TOUCH_TAP, this.itemUseClick, this), + this.curItemTips.parent || this.addChild(this.curItemTips); + var a = !1; + if (i == t.rPHSc.EquipTips) { + var r = 0, + o = t.NWRFmB.ins().getPayer; + o && o.propSet && ((r = o.propSet.MzYki()), r > 18 && (a = !0)), this.curItemTips.showCountDown(a, !0); + } else this.curItemTips.showCountDown(); + egret.Tween.get(this.curItemTips) + .to( + { + bottom: 350, + }, + 120 + ) + .wait(6e3) + .to( + { + alpha: 0, + }, + 1e3 + ) + .call(function () { + i == t.rPHSc.EquipTips && (a || (n.curItem && n.curItem.series && t.caJqU.ins().sendWearEquip(n.curItem.series))), n.hideItemUseTip(); + }); + }), + (i.prototype.hideItemUseTip = function () { + t.DAhY.ins().removeTipsObj(this.curItem), + this.curItemTips.removeTimer(), + this.removeRightMiddlePos(this.curItemTips), + egret.Tween.removeTweens(this.curItemTips), + t.lEYZI.Naoc(this.curItemTips), + this.curItemTips.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.itemUseClick, this), + (this.curItemTips = null), + (this.curItem = null); + }), + (i.prototype.itemUseClick = function (e) { + e.currentTarget; + if (e.target instanceof eui.Button) + switch (e.target.name) { + case "closeBtn": + this.hideItemUseTip(), t.DAhY.ins().showItemTip(!0); + break; + case "dressBtn": + this.curItem && this.curItem.wItemId && this.curItem.series && t.pWFTj.ins().onUseItem(this.curItem, this.curItem.btCount), this.hideItemUseTip(), t.DAhY.ins().showItemTip(!0); + break; + case "addBtn": + this.curItemTips.addNum(); + break; + case "subBtn": + this.curItemTips.subNum(); + } + }), + (i.prototype.showBossTip = function () { + if (!t.UyfaJ.isShowTip) return void (t.UyfaJ.bossSouce = {}); + if (!this.isBossWait) { + var e = null; + for (var i in t.UyfaJ.bossSouce) { + (e = t.UyfaJ.bossSouce[i]), (this.bossTipsIndex = i); + break; + } + if (null != e) { + var n = this; + (this.bossTipView = this.bossTipView || new t.TipsBossRefreshView()), egret.Tween.removeTweens(this.bossTipView); + var s = this.getRightMiddlePos(this.bossTipView); + (this.bossTipView.right = s.x + 30), + (this.bossTipView.bottom = 0), + (this.bossTipView.alpha = 1), + (this.bossTipView.data = e), + this.bossTipView.parent || this.addChild(this.bossTipView), + (this.isBossWait = !0); + var a = egret.Tween.get(this.bossTipView); + a + .to( + { + bottom: 350, + }, + 120 + ) + .wait(1e4) + .to( + { + alpha: 0, + }, + 1e3 + ) + .call(function () { + n.hideBossTip(), + n.showBossTip(), + 1 == e.AutoFly && + 150 == t.GameMap.mapID && + n.bossClick({ + currentTarget: n.bossTipView, + target: n.bossTipView.btn_go, + }); + }), + this.bossTipView.addEventListener(egret.TouchEvent.TOUCH_TAP, this.bossClick, this); + } + } + }), + (i.prototype.hideBossTip = function () { + (this.isBossWait = !1), + delete t.UyfaJ.bossSouce[this.bossTipsIndex], + this.removeRightMiddlePos(this.bossTipView), + this.bossTipView.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.bossClick, this), + egret.Tween.removeTweens(this.bossTipView), + t.lEYZI.Naoc(this.bossTipView); + }), + (i.prototype.bossClick = function (e) { + var i = e.currentTarget; + if (e.target instanceof eui.Button) + switch (e.target.name) { + case "closeBtn": + this.hideBossTip(), this.showBossTip(); + break; + case "goBtn": + 1 == i.data.showwindow ? t.UyfaJ.ins().send_49_2(i.data.bossId, i.data.entityid) : 2 == i.data.showwindow && t.mAYZL.ins().open(t.BossView, [i.data.mold, i.data.bossId]), + this.hideBossTip(), + this.showBossTip(); + } + }), + (i.prototype.getRightMiddlePos = function (t) { + for (var e = new egret.Point(0, 0), i = 0; 2 > i; i++) { + if (!this.RightMiddlePosHash[i]) return (this.RightMiddlePosHash[i] = t), e; + this.curItemTips && this.curItemTips.parent && t != this.curItemTips && (e.x += this.curItemTips.width + 30), + this.bossTipView && this.bossTipView.parent && t != this.bossTipView && (e.x += this.bossTipView.width + 30); + } + return e; + }), + (i.prototype.removeRightMiddlePos = function (t) { + for (var e = 0; 2 > e; e++) this.RightMiddlePosHash[e] == t && (this.RightMiddlePosHash[e] = null); + }), + i + ); + })(t.gIRYTi); + (t.TipsView = e), __reflect(e.prototype, "app.TipsView"), t.mAYZL.ins().reg(e, t.yCIt.LjbkQx); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.itemInfo = []), + (i.getMoney = 0), + (i.isRed = !1), + (i.sysId = t.jDIWJt.TradeLine), + i.YrTisc(1, i.post_27_1), + i.YrTisc(2, i.post_27_2), + i.YrTisc(3, i.post_27_3), + i.YrTisc(4, i.post_27_4), + i.YrTisc(6, i.post_27_6), + i.YrTisc(7, i.post_27_7), + i.YrTisc(8, i.post_27_8), + i.YrTisc(9, i.post_27_9), + i + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.send_27_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_27_1 = function (e) { + var i = 0; + this.itemInfo = []; + for (var n in t.VlaoF.TradeLineConfig) (this.itemInfo[i] = []), i++; + for (var s = t.NWRFmB.ins().nkJT(), a = (e.readUnsignedInt(), e.readInt()), n = 0; a > n; n++) { + var r = new t.TradeLineData(); + r.parser(e), (r.idx = n); + var o = t.bPGzk.equipScore(r, s.propSet.getAP_JOB()); + if (((r.itemScore = o), r)) { + var l = t.VlaoF.StdItems[r.wItemId]; + l && l.trade && (this.itemInfo[0].push(r), this.itemInfo[0].sort(this.sortHighToLowMenu), this.itemInfo[l.trade].push(r), this.itemInfo[l.trade].sort(this.sortHighToLowMenu)); + } + } + }), + (i.prototype.setInfoIndex = function (t) { + for (var e = [], i = 0; i < t.length; i++) e.push(t[i]); + for (var n = 0; n < e.length; n++) e[n].idx = n; + return e; + }), + (i.prototype.send_27_2 = function () { + var t = this.MxGiq(2); + this.evKig(t); + }), + (i.prototype.post_27_2 = function (e) { + for (var i = e.readInt(), n = [], s = t.NWRFmB.ins().nkJT(), a = 0; i > a; a++) { + var r = new t.TradeLineData(); + r.parser(e); + var o = t.bPGzk.equipScore(r, s.propSet.getAP_JOB()); + (r.itemScore = o), n.push(r); + } + return (i = null), n; + }), + (i.prototype.send_27_3 = function (t, e, i) { + var n = this.MxGiq(3); + n.writeNumber(t), n.writeInt(e), n.writeUnsignedInt(i), this.evKig(n); + }), + (i.prototype.post_27_3 = function (e) { + var i = e.readByte(); + 0 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips34) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips35); + }), + (i.prototype.send_27_4 = function (t, e) { + var i = this.MxGiq(4); + t.writeToBytes(i), i.writeUnsignedInt(e), this.evKig(i); + }), + (i.prototype.post_27_4 = function (e) { + var i = e.readByte(); + 0 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips36) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips37); + }), + (i.prototype.send_27_6 = function (t, e) { + void 0 === e && (e = 0); + var i = this.MxGiq(6); + i.writeByte(t), i.writeNumber(e), this.evKig(i); + }), + (i.prototype.post_27_6 = function (e) { + var i = e.readByte(); + 0 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips38) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips39); + }), + (i.prototype.send_27_7 = function (t, e) { + void 0 === e && (e = 0); + var i = this.MxGiq(7); + i.writeByte(t), i.writeNumber(e), this.evKig(i); + }), + (i.prototype.post_27_7 = function (e) { + var i = e.readByte(); + 0 == i ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips40) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips41); + }), + (i.prototype.send_27_8 = function () { + var t = this.MxGiq(8); + this.evKig(t); + }), + (i.prototype.post_27_8 = function (e) { + var i = []; + this.getMoney = 0; + for (var n = e.readInt(), s = t.NWRFmB.ins().nkJT(), a = 0; n > a; a++) { + var r = new t.TradeLineData(); + r.parser(e), 3 == r.itemState && (this.getMoney += r.itemPrice); + var o = t.bPGzk.equipScore(r, s.propSet.getAP_JOB()); + (r.itemScore = o), i.push(r); + } + return i; + }), + (i.prototype.post_27_9 = function (t) { + var e = t.readByte(); + 0 != e ? (this.isRed = !0) : (this.isRed = !1); + }), + (i.prototype.getReceiveRed = function () { + return i.ins().isRed ? 1 : 0; + }), + (i.prototype.postItemSell = function (t) { + return t; + }), + (i.prototype.sortLowToHighMenu = function (t, e) { + return t.itemPrice < e.itemPrice ? -1 : t.itemPrice > e.itemPrice ? 1 : 0; + }), + (i.prototype.sortHighToLowMenu = function (t, e) { + return t.itemPrice < e.itemPrice ? 1 : t.itemPrice > e.itemPrice ? -1 : 0; + }), + (i.prototype.sortTimeLowToHighMenu = function (t, e) { + return t.itemTime < e.itemTime ? -1 : t.itemTime > e.itemTime ? 1 : 0; + }), + (i.prototype.sortTimeHighToLowMenu = function (t, e) { + return t.itemTime < e.itemTime ? 1 : t.itemTime > e.itemTime ? -1 : 0; + }), + (i.prototype.sortStrMenu = function (e, i) { + var n = t.VlaoF.StdItems[e.itemID], + s = t.VlaoF.StdItems[i.itemID]; + return n && s ? n.name.localeCompare(s.name) : void 0; + }), + (i.prototype.sortStrHighMenu = function (e, i) { + var n = t.VlaoF.StdItems[e.itemID], + s = t.VlaoF.StdItems[i.itemID]; + return n && s ? s.name.localeCompare(n.name) : void 0; + }), + (i.prototype.getBuyTabList = function () { + var e = t.VlaoF.TradeLineConfig, + i = []; + for (var n in e) e[n] && i.push(e[n]); + return i; + }), + i + ); + })(t.DlUenA); + (t.TradeLineMgr = e), __reflect(e.prototype, "app.TradeLineMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() { + (this.smith = []), (this.itemScore = 0), (this.itemRed = 0), (this.needShowBatchPanel = 0), (this.idx = 0), (this._sourceStr = ""); + } + return ( + (e.prototype.parser = function (e) { + if (((this.type = 0), (this._itemState = t.ThgMu.STATE_NORMAL), (this.smith = []), e)) { + (this.series = new t.ItemSeries(e)), + (this.wItemId = e.readUnsignedShort()), + (this.btQuality = e.readUnsignedByte()), + (this.btStrong = e.readUnsignedByte()), + (this.btCount = e.readUnsignedInt()), + (this.nStrongMax = e.readUnsignedByte()), + (this.inscriptLevel = e.readUnsignedByte()), + (this.wIdentifySlotNum = e.readUnsignedShort()), + (this.wStar = e.readUnsignedShort()), + (this.nDeadline = Math.floor(t.GlobalFunc.formatMiniDateTime(e.readUnsignedInt()) / 1e3)); + for (var i, n = 0; 5 > n; n++) (i = e.readUnsignedInt()), i && this.smith.push(this.decodeSmith(i)); + if ( + ((this.scenesId = e.readUnsignedInt()), + (this.btFlag = e.readUnsignedByte()), + (this.btLuck = e.readByte()), + (this.monsterId = e.readUnsignedShort()), + (this.btDeportId = e.readUnsignedByte()), + (this.btHandPos = e.readByte()), + (this.btSharp = e.readUnsignedByte()), + (this.bagType = e.readUnsignedShort()), + (this.topLine = e.readString()), + (this.refining = e.readString()), + (this.killName = e.readString()), + (this.index = e.readNumber()), + (this.itemTime = 1e3 * e.readUnsignedInt() + egret.getTimer()), + (this.itemPrice = e.readUnsignedInt()), + (this.itemState = e.readByte()), + 1 == this.bagType) + ) { + var s = t.VlaoF.StdItems[this.wItemId]; + s && (s.dup || this.setSourceStr()); + } + } + }), + (e.prototype.setSourceStr = function () { + if (((this._sourceStr = "|C:0xf1ed02&T:[" + t.CrmPU.language_Tips111 + "]|"), this.inscriptLevel == t.ItemSource.type1)) { + var e = "", + i = t.VlaoF.Scenes[this.scenesId]; + i && (e = i.scencename), (this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips112 + e); + var n = "", + s = t.VlaoF.Monster[this.monsterId]; + s && (n = s.name), + (this._sourceStr += "\n" + t.CrmPU.language_Tips113 + n), + (this._sourceStr += "\n" + t.CrmPU.language_Tips114 + this.killName), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n"); + } else if (this.inscriptLevel == t.ItemSource.type2) { + var e = "", + i = t.VlaoF.Scenes[this.scenesId]; + i && (e = i.scencename), + (this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips116), + (this._sourceStr += "\n" + t.CrmPU.language_Tips112 + e), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n"); + } else + this.inscriptLevel == t.ItemSource.type3 + ? ((this._sourceStr += "|C:0x78fff5&T:\n" + t.CrmPU.language_Tips117), + (this._sourceStr += "\n" + t.CrmPU.language_Tips115 + t.DateUtils.getFormatBySecond(this.nDeadline, t.DateUtils.TIME_FORMAT_16)), + (this._sourceStr += "|\n")) + : (this._sourceStr = ""); + }), + Object.defineProperty(e.prototype, "sourceStr", { + get: function () { + return this._sourceStr; + }, + enumerable: !0, + configurable: !0, + }), + (e.prototype.decodeSmith = function (e) { + var i = new t.ComAttribute(); + i.type = 255 & e; + var n = (e >> 8) & 255 ? -1 : 1; + return (i.value = n * ((e >> 16) & 65535)), i.isFloat(i.type) && (i.value /= 1e4), i; + }), + e + ); + })(); + (t.TradeLineData = e), __reflect(e.prototype, "app.TradeLineData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.buyBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.buyBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this), t.KHNO.ins().remove(this.updateTime, this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + (this.itemBg.source = this.data.idx % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"), (this.curItem.data = this.data), (this.curMoney.text = this.data.itemPrice); + var e = t.VlaoF.StdItems[this.data.wItemId]; + if (e) { + (this.itemName.textColor = t.ClwSVR.GOODS_COLOR[e.showQuality] ? t.ClwSVR.GOODS_COLOR[e.showQuality] : 15774976), (this.itemName.text = e.name); + var i = (this.data.itemTime - egret.getTimer()) >> 0; + i > 0 ? ((this.time.visible = !0), this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)) : (this.time.visible = !1), + this.curItem.setVisCompareImg(!1); + var n = t.pWFTj.ins().getItemUseState(e), + s = t.NWRFmB.ins().nkJT(), + a = s.propSet.getAP_JOB(); + if (1 == e.packageType && (0 == e.suggVocation || e.suggVocation == a) && 1 == n) { + var r = t.caJqU.ins().getEquipsByPos(e.type - 1); + r && r.series ? r.itemScore < this.data.itemScore && this.curItem.setVisCompareImg(!0) : this.curItem.setVisCompareImg(!0); + } + } + } + }), + (i.prototype.updateTime = function () { + var e = this.data.itemTime - egret.getTimer(); + (this.time.text = "" + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), 1)), 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.time.text = "")); + }), + (i.prototype.onTouch = function (e) { + var i = this, + n = t.NWRFmB.ins().nkJT(); + switch (e.currentTarget) { + case this.buyBtn: + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + if (n && n.propSet) { + var s = n.propSet, + a = t.VlaoF.editionConf, + r = !1; + if (a) + if ((r = a.Button ? +s.getNotBindYuanBao() >= this.data.itemPrice && +s.getTradeQuota() >= this.data.itemPrice : +s.getNotBindYuanBao() >= this.data.itemPrice)) { + var o = t.VlaoF.StdItems[this.data.wItemId]; + o && + t.CautionView.show( + t.zlkp.replace(t.CrmPU.language_Common_39, this.data.itemPrice, o.name, this.data.btCount), + function () { + t.TradeLineMgr.ins().send_27_3(i.data.index, i.data.btCount, i.data.itemPrice); + }, + this + ); + } else { + var l = a.Button > 0 ? t.CrmPU.language_Tips26 : t.CrmPU.language_Tips104; + t.uMEZy.ins().IrCm(l); + } + } + } + }), + i + ); + })(t.BaseItemRender); + (t.TradeLineBuyItemView = e), __reflect(e.prototype, "app.TradeLineBuyItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.priceIsClick = !1), (t.timeIsClick = !1), (t.nameIsClick = !1), (t.skinName = "TradeLineBuyViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function (e) { + void 0 === e && (e = 0), + t.MouseScroller.bind(this.buyScroller), + this.moneyPanel.setData(ZnGy.qatYuanbao, !1), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.buyList.itemRenderer = t.TradeLineBuyItemView), + this.HFTK(t.TradeLineMgr.ins().post_27_1, this.updateList), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updatePlayerInfo), + this.vKruVZ(this.price, this.onTouch), + this.vKruVZ(this.time, this.onTouch), + this.vKruVZ(this.itemName, this.onTouch), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + t.TradeLineMgr.ins().send_27_1(); + var i = t.TradeLineMgr.ins().getBuyTabList(); + (this.tabList.dataProvider = new eui.ArrayCollection(i)), (this.tabList.selectedIndex = e), this.updatePlayerInfo(); + }), + (i.prototype.sendInfo = function () { + t.TradeLineMgr.ins().send_27_1(); + }), + (i.prototype.onChange = function (t) { + (this.tabList.selectedIndex = t.itemIndex), this.updateList(); + }), + (i.prototype.onTouch = function (e) { + var i = this.tabList.selectedIndex, + n = t.TradeLineMgr.ins().itemInfo[i]; + switch (e.currentTarget) { + case this.price: + this.priceIsClick ? n.sort(t.TradeLineMgr.ins().sortHighToLowMenu) : n.sort(t.TradeLineMgr.ins().sortLowToHighMenu), (this.priceIsClick = !this.priceIsClick); + break; + case this.time: + this.timeIsClick ? n.sort(t.TradeLineMgr.ins().sortTimeHighToLowMenu) : n.sort(t.TradeLineMgr.ins().sortTimeLowToHighMenu), (this.timeIsClick = !this.timeIsClick); + break; + case this.itemName: + this.nameIsClick ? n.sort(t.TradeLineMgr.ins().sortStrMenu) : n.sort(t.TradeLineMgr.ins().sortStrHighMenu), (this.nameIsClick = !this.nameIsClick); + } + this.updateList(); + }), + (i.prototype.updatePlayerInfo = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = t.ClwSVR.getMoneyColor(e.propSet.getNotBindYuanBao()), + n = "|C:" + i + "&T:" + t.CommonUtils.zhuanhuan(e.propSet.getNotBindYuanBao()) + "|"; + this.moneyPanel.setCount(n); + } + var s = t.VlaoF.editionConf; + s && (s.Button ? (this.curQuota.text = t.CrmPU.language_Common_54 + e.propSet.getTradeQuota()) : (this.curQuota.text = t.CrmPU.language_Common_54 + t.CrmPU.language_Common_53)); + }), + (i.prototype.updateList = function () { + var e = this.tabList.selectedIndex, + i = t.TradeLineMgr.ins().itemInfo[e], + n = t.TradeLineMgr.ins().setInfoIndex(i); + this.buyList.dataProvider = new eui.ArrayCollection(n); + }), + (i.prototype.close = function () { + this.$onClose(), + t.MouseScroller.unbind(this.buyScroller), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.fEHj(this.price, this.onTouch), + this.fEHj(this.time, this.onTouch), + this.fEHj(this.itemName, this.onTouch), + (this.tabList = null), + (this.curQuota = null), + (this.buyList = null), + (this.price = null), + (this.time = null), + (this.itemName = null); + }), + i + ); + })(t.gIRYTi); + (t.TradeLineBuyView = e), __reflect(e.prototype, "app.TradeLineBuyView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.shelfBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.shelfBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this), t.KHNO.ins().remove(this.updateTime, this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.itemBg.source = this.data.idx % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"; + var e = this.data; + (this.curItem.data = this.data), (this.curMoney.text = e.itemPrice + ""); + var i = t.VlaoF.StdItems[e.wItemId]; + if (i) { + (this.itemName.textColor = t.ClwSVR.GOODS_COLOR[i.showQuality] ? t.ClwSVR.GOODS_COLOR[i.showQuality] : 15774976), (this.itemName.text = i.name); + var n = (e.itemTime - egret.getTimer()) >> 0; + n > 0 ? ((this.time.visible = !0), this.updateTime(), t.KHNO.ins().remove(this.updateTime, this), t.KHNO.ins().tBiJo(1e3, 0, this.updateTime, this)) : (this.time.visible = !1), + this.curItem.setVisCompareImg(!1); + var s = t.pWFTj.ins().getItemUseState(i), + a = t.NWRFmB.ins().nkJT(), + r = a.propSet.getAP_JOB(); + if (1 == i.packageType && (0 == i.suggVocation || i.suggVocation == r) && 1 == s) { + var o = t.caJqU.ins().getEquipsByPos(i.type - 1); + o && o.series ? o.itemScore < e.itemScore && this.curItem.setVisCompareImg(!0) : this.curItem.setVisCompareImg(!0); + } + } + } + }), + (i.prototype.updateTime = function () { + var e = this.data.itemTime - egret.getTimer(); + (this.time.text = "" + t.DateUtils.getFormatBySecond(Math.floor(e / 1e3), 1)), 0 >= e && (t.KHNO.ins().remove(this.updateTime, this), (this.time.text = "")); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.shelfBtn: + this.data && t.TradeLineMgr.ins().send_27_6(1, this.data.index); + } + }), + i + ); + })(t.BaseItemRender); + (t.TradeLineIsSellingItemView = e), __reflect(e.prototype, "app.TradeLineIsSellingItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TradeLineIsSellingViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + t.MouseScroller.bind(this.itemScroller), + (this.sellList.itemRenderer = t.TradeLineIsSellingItemView), + this.vKruVZ(this.allShelf, this.onTouch), + t.TradeLineMgr.ins().send_27_2(), + this.HFTK(t.TradeLineMgr.ins().post_27_2, this.updateList); + }), + (i.prototype.sendInfo = function () { + t.TradeLineMgr.ins().send_27_2(); + }), + (i.prototype.updateList = function (e) { + e && ((this.curSell.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_52, e.length))), (this.sellList.dataProvider = new eui.ArrayCollection(e))); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.allShelf: + t.TradeLineMgr.ins().send_27_6(2); + } + }), + (i.prototype.close = function () { + this.$onClose(), t.MouseScroller.unbind(this.itemScroller), this.fEHj(this.allShelf, this.onTouch), (this.sellList = null), (this.curSell = null), (this.allShelf = null); + }), + i + ); + })(t.gIRYTi); + (t.TradeLineIsSellingView = e), __reflect(e.prototype, "app.TradeLineIsSellingView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.imageArr = ["trade_zt3", "trade_zt1", "trade_zt2"]), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.receiveBtn, this.onTouch); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.receiveBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouch, this); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + this.itemBg.source = this.data.idx % 2 == 0 ? "bg_quyu_1" : "bg_quyu_2"; + var e = this.data; + (this.curItem.data = this.data), (this.curMoney.text = e.itemPrice + ""); + var i = t.VlaoF.StdItems[e.wItemId]; + if ((this.curItem.setVisCompareImg(!1), i)) { + (this.itemName.textColor = t.ClwSVR.GOODS_COLOR[i.showQuality] ? t.ClwSVR.GOODS_COLOR[i.showQuality] : 15774976), + (this.itemName.text = i.name), + (this.itemState.source = e.itemState - 1 >= 0 ? this.imageArr[e.itemState - 1] : ""); + var n = t.pWFTj.ins().getItemUseState(i), + s = t.NWRFmB.ins().nkJT(), + a = s.propSet.getAP_JOB(); + if (1 == i.packageType && (0 == i.suggVocation || i.suggVocation == a) && 1 == n) { + var r = t.caJqU.ins().getEquipsByPos(i.type - 1); + r && r.series ? r.itemScore < e.itemScore && this.curItem.setVisCompareImg(!0) : this.curItem.setVisCompareImg(!0); + } + } + } + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.receiveBtn: + if (this.data) { + var i = t.VlaoF.BagRemainConfig[3]; + if (i) { + var n = t.ThgMu.ins().getBagCapacity(i.bagremain); + n ? t.TradeLineMgr.ins().send_27_7(1, this.data.index) : t.uMEZy.ins().IrCm(i.bagtips); + } + } + } + }), + i + ); + })(t.BaseItemRender); + (t.TradeLineReceiveItemView = e), __reflect(e.prototype, "app.TradeLineReceiveItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TradeLineReceiveViewSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + t.MouseScroller.bind(this.receiveScroller), + (this.receliveList.itemRenderer = t.TradeLineReceiveItemView), + t.TradeLineMgr.ins().send_27_8(), + (this.shouxufei.text = t.VlaoF.taxconfig && t.VlaoF.taxconfig.tax ? t.CrmPU.language_Common_50 + t.VlaoF.taxconfig.tax + "%" : t.CrmPU.language_Common_50 + "5%"), + this.vKruVZ(this.allReceive, this.onTouch), + this.HFTK(t.TradeLineMgr.ins().post_27_8, this.updateList); + }), + (i.prototype.sendInfo = function () { + t.TradeLineMgr.ins().send_27_8(); + }), + (i.prototype.updateList = function (e) { + (this.notHave.visible = !1), + (this.receliveList.visible = !0), + (this.getMoney.text = t.CrmPU.language_Common_51 + t.TradeLineMgr.ins().getMoney), + e.length > 0 ? (this.receliveList.dataProvider = new eui.ArrayCollection(e)) : ((this.notHave.visible = !0), (this.receliveList.visible = !1)); + }), + (i.prototype.onTouch = function (e) { + switch (e.currentTarget) { + case this.allReceive: + var i = t.ThgMu.ins().getBagNumEnough(); + i ? t.TradeLineMgr.ins().send_27_7(2) : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips4); + } + }), + (i.prototype.close = function () { + this.$onClose(), + t.MouseScroller.unbind(this.receiveScroller), + this.fEHj(this.allReceive, this.onTouch), + (this.receliveList = null), + (this.getMoney = null), + (this.shouxufei = null), + (this.allReceive = null), + (this.notHave = null); + }), + i + ); + })(t.gIRYTi); + (t.TradeLineReceiveView = e), __reflect(e.prototype, "app.TradeLineReceiveView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "TradeLineSellViewSkin"), (t.dSpriteSheet = new how.DSpriteSheet()), t; + } + return ( + __extends(i, e), + (i.prototype.open = function () { + this.textInput.addEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + this.HFTK(t.TradeLineMgr.ins().postItemSell, this.updateItem), + this.HFTK(t.TradeLineMgr.ins().post_27_4, this.updateView), + (this.curITem.data = null), + (this.textInput.text = ""); + var e = t.VlaoF.taxconfig; + e && + (e.cost && (this.handlingMoney.text = e.cost + ""), + e.tax && (this.dealSuccessful.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_49, e.tax))), + e.sellTitleDesc && (this.titleDesc.textFlow = t.hETx.qYVI(e.sellTitleDesc))), + this.vKruVZ(this.addItem, this.onTouch), + this.vKruVZ(this.shelves, this.onTouch), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + (t.ThgMu.ins().sellGlobalPoint = this.itemGrp.localToGlobal(0, 0)); + }), + (i.prototype.onFocusOut = function (e) { + var i = t.VlaoF.taxconfig, + n = e.currentTarget; + switch (n) { + case this.textInput: + i && + (i.maxSellPrice && +this.textInput.text > i.maxSellPrice && (this.textInput.text = i.maxSellPrice + ""), + i.minSellPrice && +this.textInput.text <= i.minSellPrice && (this.textInput.text = i.minSellPrice + "")); + } + (i = null), (n = null); + }), + (i.prototype.updateView = function () { + (this.curITem.data = null), (this.textInput.text = ""); + }), + (i.prototype.updateItem = function (t) { + t && ((this.curUserItem = t), (this.curITem.data = t)); + }), + (i.prototype.onTouch = function (e) { + var i = t.NWRFmB.ins().nkJT(), + n = t.VlaoF.taxconfig.cost; + switch (e.currentTarget) { + case this.addItem: + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView); + break; + case this.shelves: + if (i && i.propSet && n) { + if (Main.vZzwB.specialId == t.MiOx.srvid) return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + var s = i.propSet; + "" != this.textInput.text + ? +s.getBindCoin() >= n + ? this.curUserItem && this.curUserItem.series + ? t.TradeLineMgr.ins().send_27_4(this.curUserItem.series, +this.textInput.text) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips29) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips27) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Tips33); + } + } + (i = null), (n = null); + }), + (i.prototype.stopMove = function () { + t.ThgMu.ins().sellGlobalPoint = this.itemGrp.localToGlobal(0, 0); + }), + (i.prototype.close = function () { + this.$onClose(), + this.fEHj(this.addItem, this.onTouch), + this.fEHj(this.shelves, this.onTouch), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.textInput.removeEventListener(egret.TextEvent.FOCUS_OUT, this.onFocusOut, this), + (this.curITem = null), + (this.addItem = null), + (this.shelves = null), + (this.textInput = null), + (this.itemGrp = null), + this.dSpriteSheet.dispose(), + (this.dSpriteSheet = null), + (this.handlingCharge = null), + (this.handlingMoney = null), + (this.dealSuccessful = null), + (this.curUserItem = null); + }), + i + ); + })(t.gIRYTi); + (t.TradeLineSellView = e), __reflect(e.prototype, "app.TradeLineSellView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + return t.call(this) || this; + } + return ( + __extends(e, t), + (e.prototype.dataChanged = function () { + this.data && (this.label.text = this.data.name); + }), + e + ); + })(t.BaseItemRender); + (t.TradeLineTabView = e), __reflect(e.prototype, "app.TradeLineTabView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.idx = 0), (i.idx2 = 0), (i.skinName = "TradeLineWinSkin"), (i.name = "TradeLineWin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tab.itemRenderer = t.CommonTabBarWin), + (this.tab.dataProvider = new eui.ArrayCollection(["jishou_tab_buy", "jishou_tab_sell", "jishou_tab_isSell", "jishou_tab_receive"])), + this.dragDropUI.setParent(this); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + if (Main.vZzwB.specialId == t.MiOx.srvid) { + t.mAYZL.ins().close(this); + return void t.uMEZy.ins().pwYDdQ(t.CrmPU.language_Tips163); + } + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (this.idx = e[0]), + e[1] && (this.idx2 = e[1]), + (this.ruleTips.ruleDesc = t.VlaoF.taxconfig.rule1), + this.addChangeEvent(this.tab, this.onTabTouch), + this.addChangingEvent(this.tab, this.onTabTouching), + this.setOpenIndex(this.idx); + }), + (i.prototype.onTabTouch = function (t) { + this.setOpenIndex(t.currentTarget.selectedIndex); + }), + (i.prototype.onTabTouching = function (t) { + return this.checkIsOpen(t.currentTarget.selectedIndex) ? void 0 : void t.preventDefault(); + }), + (i.prototype.setOpenIndex = function (e) { + switch (e) { + case 0: + this.buyPanel + ? ((this.buyPanel.visible = !0), this.buyPanel.sendInfo()) + : ((this.buyPanel = new t.TradeLineBuyView()), this.pageGroup.addChild(this.buyPanel), this.buyPanel.open(this.idx2)), + this.sellPanel && (this.sellPanel.visible = !1), + this.isSellingPanel && (this.isSellingPanel.visible = !1), + this.receivePanel && (this.receivePanel.visible = !1), + this.dragDropUI.setTitle(t.CrmPU.language_System45); + break; + case 1: + this.dragDropUI.setTitle(t.CrmPU.language_System46), + this.sellPanel ? (this.sellPanel.visible = !0) : ((this.sellPanel = new t.TradeLineSellView()), this.pageGroup.addChild(this.sellPanel), this.sellPanel.open()), + this.buyPanel && (this.buyPanel.visible = !1), + this.isSellingPanel && (this.isSellingPanel.visible = !1), + this.receivePanel && (this.receivePanel.visible = !1); + break; + case 2: + this.dragDropUI.setTitle(t.CrmPU.language_System47), + this.isSellingPanel + ? ((this.isSellingPanel.visible = !0), this.isSellingPanel.sendInfo()) + : ((this.isSellingPanel = new t.TradeLineIsSellingView()), this.pageGroup.addChild(this.isSellingPanel), this.isSellingPanel.open()), + this.buyPanel && (this.buyPanel.visible = !1), + this.sellPanel && (this.sellPanel.visible = !1), + this.receivePanel && (this.receivePanel.visible = !1); + break; + case 3: + this.dragDropUI.setTitle(t.CrmPU.language_System48), + this.receivePanel + ? ((this.receivePanel.visible = !0), this.receivePanel.sendInfo()) + : ((this.receivePanel = new t.TradeLineReceiveView()), this.pageGroup.addChild(this.receivePanel), this.receivePanel.open()), + this.buyPanel && (this.buyPanel.visible = !1), + this.sellPanel && (this.sellPanel.visible = !1), + this.isSellingPanel && (this.isSellingPanel.visible = !1); + } + }), + (i.prototype.checkIsOpen = function (t) { + switch (t) { + case 0: + return !0; + case 1: + return !0; + case 2: + return !0; + case 3: + return !0; + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.removeEventListener(egret.TouchEvent.CHANGE, this.onTabTouch, this), + this.removeEventListener(egret.TouchEvent.CHANGING, this.onTabTouching, this), + this.dragDropUI.destroy(), + (this.dragDropUI = null), + this.buyPanel && this.buyPanel.close(), + this.sellPanel && this.sellPanel.close(), + this.isSellingPanel && this.isSellingPanel.close(), + this.receivePanel && this.receivePanel.close(), + (this.tab = null), + (this.buyPanel = null), + (this.sellPanel = null), + (this.isSellingPanel = null), + (this.receivePanel = null); + }), + i + ); + })(t.gIRYTi); + (t.TradeLineWin = e), __reflect(e.prototype, "app.TradeLineWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.selectIndex = -1), + (i.keyNum = 0), + (i.boxIdList = [1087, 1086, 1085]), + (i.boxNumObj = {}), + (i.skinName = "UseBossBoxSkin"), + (i.name = "UseBossBoxView"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.vKruVZ(this.btnUse, this.onClick), + this.vKruVZ(this.closeBtn, this.onClick), + this.vKruVZ(this.box0, this.onClick), + this.vKruVZ(this.box1, this.onClick), + this.vKruVZ(this.box2, this.onClick), + this.HFTK(t.Nzfh.ins().postPlayerChange, this.updateInfo), + this.HFTK(t.ThgMu.ins().post_8_1, this.updateItem), + this.HFTK(t.ThgMu.ins().post_8_3, this.updateItem), + this.HFTK(t.ThgMu.ins().post_8_4, this.updateItem), + this.updateInfo(), + this.updateItem(); + }), + (i.prototype.updateInfo = function () { + var e = t.NWRFmB.ins().getPayer; + e && e.propSet && ((this.keyNum = e.propSet.getDimensionKey()), (this.LabYaoshiNum.text = ":" + this.keyNum)); + }), + (i.prototype.updateItem = function () { + for (var e = -1 == this.selectIndex, i = this.boxIdList.length - 1; i >= 0; i--) { + var n = t.VlaoF.StdItems[this.boxIdList[i]], + s = n.name, + a = t.ThgMu.ins().getItemCountById(n.id); + a < this.boxNumObj[i] && (this.playUseEff(i), this.selectIndex == i && 0 >= a && (e = !0)), + (this.boxNumObj[i] = a), + (this["box" + i].data = { + type: 0, + id: n.id, + count: a, + }), + (this["box" + i].itemCount.text = a > 0 ? t.CommonUtils.overLength(a) : ""), + (this["labBox" + i].text = s.slice(0, 2) + "\n" + s.slice(2)), + (this["labBox" + i].textColor = t.ClwSVR.GOODS_COLOR[n.showQuality]); + } + if (e) + for (var i = this.boxIdList.length - 1; i >= 0; i--) { + var a = t.ThgMu.ins().getItemCountById(this.boxIdList[i]); + if (a > 0) { + this.onSelect(i); + break; + } + } + }), + (i.prototype.onSelect = function (e) { + (this.selectIndex = e), (this.selectImg.x = this["box" + this.selectIndex].x); + var i = t.VlaoF.StdItems[this.boxIdList[this.selectIndex]], + n = 15064527, + s = 0; + i && i.cost && i.cost[0] && ((s = i.cost[0].count), this.keyNum < s && (n = 15007744)), + (this.btnUse.labelDisplay.textFlow = t.hETx.qYVI("|C:" + n + "&T:*" + s + "|" + t.CrmPU.language_Common_43)); + }), + (i.prototype.playUseEff = function (e) { + this.useMc || (this.useMc = t.ObjectPool.pop("app.MovieClip")), + (this.useMc.x = this["box" + e].x + this["box" + e].width / 2), + (this.useMc.y = this["box" + e].y + this["box" + e].height / 2), + this.useMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_bx", 1), + this.addChild(this.useMc); + }), + (i.prototype.onClick = function (e) { + var i, + n = e.currentTarget; + switch (n) { + case this.box0: + this.onSelect(0); + break; + case this.box1: + this.onSelect(1); + break; + case this.box2: + this.onSelect(2); + break; + case this.btnUse: + var s = this.boxIdList[this.selectIndex]; + if ((i = t.ThgMu.ins().getItemById(s))) t.mAYZL.ins().open(t.UseItemConfirmView, s); + else { + var a = t.VlaoF.StdItems[s]; + t.uMEZy.ins().IrCm(t.zlkp.replace(t.CrmPU.language_War_Text20, a.name)); + } + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.useMc && (this.useMc.destroy(), (this.useMc = null)), + this.fEHj(this.box0, this.onClick), + this.fEHj(this.box1, this.onClick), + this.fEHj(this.box2, this.onClick), + this.fEHj(this.btnUse, this.onClick), + this.fEHj(this.closeBtn, this.onClick), + this.Naoc(); + }), + i + ); + })(t.gIRYTi); + (t.UseBossBoxView = e), __reflect(e.prototype, "app.UseBossBoxView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "CommonViewSkin"), (i.name = "UseItemConfirmView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), this.dragDropUI.setTitle(t.CrmPU.language_System61), (this.strLab.textAlign = "center"); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && ((this.itemData = t.VlaoF.StdItems[e[0]]), this.itemData && (this.strLab.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_232, this.itemData.name)))), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnCofim, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btnCofim: + if (this.itemData) { + var i = t.ThgMu.ins().getItemById(this.itemData.id); + i && t.pWFTj.ins().useItem(i.series, i.wItemId); + } + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.fEHj(this.btnClose, this.onClick), this.fEHj(this.btnCofim, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.UseItemConfirmView = e), __reflect(e.prototype, "app.UseItemConfirmView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e(t, e, i) { + void 0 === t && (t = 0), void 0 === e && (e = 0), void 0 === i && (i = 0), (this.type = t), (this.value = e), (this.value2 = i); + } + return ( + (e.getItemBindByType = function (e) { + var i = ""; + return e.denyDeal || e.denySell ? !e.denyDeal && e.denySell && (i = t.CrmPU.language_Common_5) : (i = t.CrmPU.language_Common_4), i; + }), + (e.getItemBagType = function (e) { + var i = ""; + return (i = + 1 == e.packageType + ? t.CrmPU.language_Common_6 + : 127 == +e.type || 131 == +e.type + ? t.CrmPU.language_Common_7 + : 128 == +e.type || 129 == +e.type + ? t.CrmPU.language_Common_8 + : 130 == +e.type + ? t.CrmPU.language_Common_9 + : 132 == +e.type + ? t.CrmPU.language_Common_10 + : 133 == +e.type + ? t.CrmPU.language_Common_58 + : t.CrmPU.language_Common_7); + }), + (e.getAttStrByType = function (i, n, s, a, r) { + void 0 === n && (n = 4), void 0 === s && (s = "+"), void 0 === a && (a = !0), void 0 === r && (r = !0); + var o = ""; + switch ((r && (o = a ? t.zlkp.complementByChar(e.getAttrStrByType(i.type), 8 * n) : e.getAttrStrByType(i.type)), i.type)) { + case 138: + case 141: + o += s + (i.value / 100).toFixed(1) + "%"; + break; + default: + o += s + i.value; + } + return o; + }), + (e.getItemAttStrByType = function (e, i, n, s, a, r, o) { + void 0 === i && (i = null), void 0 === n && (n = 0), void 0 === s && (s = !1), void 0 === a && (a = !0), void 0 === r && (r = null), void 0 === o && (o = null); + var l = e.type, + h = ""; + if (76 == l || 77 == l) h += this.formatDoubleAttr(e, i, n, s, a, r, o); + else if (l >= t.ComAttribute.aPhysicalAttackMinAdd && l <= t.ComAttribute.aMagicDefenceMaxPower) h += this.formatDoubleAttr(e, i, n, s, a, r, o); + else if (s) + switch (l) { + case 6: + case 35: + case 54: + case 59: + case 65: + case 66: + case 69: + case 70: + case 74: + case 75: + case 79: + case 80: + case 81: + case 82: + case 83: + case 84: + case 136: + case 138: + case 141: + case 144: + h += e.value2 ? "|C:0x2eb52d&T:" + t.MathUtils.GetPercent(e.value, 1e4) + "(" + t.MathUtils.GetPercent(e.value2, 1e4) + ")|" : t.MathUtils.GetPercent(e.value, 1e4); + break; + default: + h += e.value; + } + else if (a) + switch (l) { + case 6: + case 35: + case 54: + case 59: + case 64: + case 65: + case 66: + case 69: + case 70: + case 74: + case 75: + case 79: + case 80: + case 81: + case 82: + case 83: + case 84: + case 86: + case 88: + case 136: + case 138: + case 140: + case 141: + case 144: + h += e.value2 + ? "|C:0x2eb52d&T:" + this.getAttrStrByType(l) + ":+" + t.MathUtils.GetPercent(e.value, 1e4) + "(" + t.MathUtils.GetPercent(e.value2, 1e4) + ")|" + : r && o + ? "|C:" + r + "&T:" + this.getAttrStrByType(l) + ":||C:" + o + "&T:+" + t.MathUtils.GetPercent(e.value, 1e4) + "|" + : this.getAttrStrByType(l) + ":+" + t.MathUtils.GetPercent(e.value, 1e4); + break; + case 67: + case 85: + var p = 67 == l ? "+" : ""; + h += + r && o + ? 0 == e.value + ? "|C:" + r + "&T:" + this.getAttrStrByType(l) + ":||C:" + o + "&T:未激活|" + : e.value >= 1e4 + ? "|C:" + r + "&T:" + this.getAttrStrByType(l) + ":||C:" + o + "&T:" + p + Math.floor(e.value / 1e3) + t.CrmPU.language_Time_Sec + "|" + : "|C:" + r + "&T:" + this.getAttrStrByType(l) + ":||C:" + o + "&T:" + p + e.value + t.CrmPU.language_Omission_txt56 + "|" + : 0 == e.value + ? this.getAttrStrByType(l) + ":未激活" + : e.value >= 1e4 + ? this.getAttrStrByType(l) + ":" + p + Math.floor(e.value / 1e3) + t.CrmPU.language_Time_Sec + : this.getAttrStrByType(l) + ":" + p + e.value + t.CrmPU.language_Omission_txt56; + break; + default: + h += e.value2 + ? "|C:0x2eb52d&T:" + this.getAttrStrByType(l) + ":+" + e.value + "(" + e.value2 + ")|" + : r && o + ? "|C:" + r + "&T:" + this.getAttrStrByType(l) + ":||C:" + o + "&T:+" + e.value + "|" + : this.getAttrStrByType(l) + ":+" + e.value; + } + else h += this.getAttrStrByType(l) + ":"; + return h; + }), + (e.getRiningItemAttStrByType = function (e, i, n) { + void 0 === i && (i = null), void 0 === n && (n = null); + var s = e.type, + a = ""; + return (a += + 6 == s || + 54 == s || + 59 == s || + 65 == s || + 66 == s || + 69 == s || + 70 == s || + 74 == s || + 75 == s || + 79 == s || + 80 == s || + 81 == s || + 82 == s || + 83 == s || + 84 == s || + 136 == s || + 138 == s || + 141 == s || + 144 == s + ? i && n + ? "|C:" + i + "&T:" + this.getAttrStrByType(s) + ":||C:" + n + "&T:+" + t.MathUtils.GetPercent(e.value, 1e4) + "|" + : this.getAttrStrByType(s) + ": +" + t.MathUtils.GetPercent(e.value, 1e4) + : i && n + ? "|C:" + i + "&T:" + this.getAttrStrByType(s) + ":||C:" + n + "&T:+" + e.value + "|" + : this.getAttrStrByType(s) + ": +" + e.value); + }), + (e.formatDoubleAttr = function (i, n, s, a, r, o, l) { + void 0 === s && (s = 0), void 0 === a && (a = !1), void 0 === r && (r = !0), void 0 === o && (o = null), void 0 === l && (l = null); + var h, + p = "", + u = -1; + switch (i.type) { + case t.ComAttribute.aPhysicalAttackMaxAdd: + (p = t.CrmPU.attrMinMax[0]), (u = t.ComAttribute.aPhysicalAttackMinAdd), (h = t.ComAttribute.aPhysicalAttackMaxAdd); + break; + case t.ComAttribute.aMagicAttackMaxAdd: + (p = t.CrmPU.attrMinMax[1]), (u = t.ComAttribute.aMagicAttackMinAdd), (h = t.ComAttribute.aMagicAttackMaxAdd); + break; + case t.ComAttribute.aWizardAttackMaxAdd: + (p = t.CrmPU.attrMinMax[2]), (u = t.ComAttribute.aWizardAttackMinAdd), (h = t.ComAttribute.aWizardAttackMaxAdd); + break; + case t.ComAttribute.aPhysicalDefenceMaxAdd: + (p = t.CrmPU.attrMinMax[3]), (u = t.ComAttribute.aPhysicalDefenceMinAdd), (h = t.ComAttribute.aPhysicalDefenceMaxAdd); + break; + case t.ComAttribute.aMagicDefenceMaxAdd: + (p = t.CrmPU.attrMinMax[4]), (u = t.ComAttribute.aMagicDefenceMinAdd), (h = t.ComAttribute.aMagicDefenceMaxAdd); + break; + case 77: + (p = t.CrmPU.attrMinMax[5]), (u = 76), (h = 77); + } + if (u > 0) { + var c = e.getAttrValueByType(u, n), + g = e.getAttrValueByType(h, n); + 1 == s + ? (p = a ? c + " - " + g : r ? (o && l ? "|C:" + o + "&T:" + p + "||C:" + l + "&T:" + c + " - " + g + "|" : "" + p + c + " - " + g) : "" + p) + : i.value2 + ? (p = r ? "|C:0x2eb52d&T:" + p + c + " - " + g + "(+" + i.value2 + ")|" : "|C:0x2eb52d&T:" + p + ")|") + : (p += c + " - " + g); + } + return p; + }), + (e.getAttrStrByType = function (e) { + for (var i in t.CrmPU.language_ATTROBJ) if (e == +i) return t.CrmPU.language_ATTROBJ[i]; + return null; + }), + (e.getAttrValueByType = function (t, e) { + for (var i = 0; i < e.length; i++) if (t == e[i].type) return e[i].value; + return 0; + }), + (e.isUseItem = function (e) { + var i = "", + n = t.NWRFmB.ins().nkJT(); + if (e) { + for (var s = 0; s < e.length; s++) + switch (e[s].cond) { + case t.StdItemCondition.ucLevel: + if (n && n.propSet && n.propSet.mBjV() < e[s].value) return (i = t.CrmPU.language_Common_84); + break; + case t.StdItemCondition.ucGender: + if (n && n.propSet && n.propSet.getSex() != e[s].value) return (i = t.CrmPU.language_Common_85); + break; + case t.StdItemCondition.ucJob: + if (n && n.propSet && n.propSet.getAP_JOB() != e[s].value) return (i = t.CrmPU.language_Common_86); + break; + case t.StdItemCondition.ucChief: + return (i = t.CrmPU.language_Common_87); + case t.StdItemCondition.ucPower: + if (n && n.propSet && n.propSet.getPowerValue() < e[s].value) return (i = t.CrmPU.language_Common_88); + break; + case t.StdItemCondition.ucCircle: + if (n && n.propSet && n.propSet.MzYki() < e[s].value) return (i = t.zlkp.replace(t.CrmPU.language_Common_89, e[s].value)); + break; + case t.StdItemCondition.ucCircleLess: + if (n && n.propSet && n.propSet.MzYki() > e[s].value) return (i = t.zlkp.replace(t.CrmPU.language_Common_90, e[s].value)); + break; + case t.StdItemCondition.ucVipLevel: + break; + case t.StdItemCondition.ucNeiGongLevel: + if (n && n.propSet && n.propSet.getMeridians() < e[s].value) return (i = t.CrmPU.language_Common_243); + case t.StdItemCondition.ucGuildLevel: + if (n && n.propSet && n.propSet.getGuildLevel() < e[s].value) { + t.mAYZL.ins().open(t.GuildNoGuildListView); + return (i = "|C:0xff7700&T:" + t.CrmPU.language_Common_264 + "|"); + } + } + return i; + } + }), + (e.getItemUseCond = function (e) { + var i = "", + n = t.NWRFmB.ins().nkJT(); + if (e) + for (var s = 0; s < e.length; s++) { + switch (e[s].cond) { + case t.StdItemCondition.ucLevel: + var a = "0xffffff"; + n && n.propSet && n.propSet.mBjV() < e[s].value && (a = "0xe50000"), (i += "|C:" + a + "&T:" + t.CrmPU.language_Common_11 + e[s].value + t.CrmPU.language_Common_1 + "|"); + break; + case t.StdItemCondition.ucGender: + var r = "0xffffff"; + n && n.propSet && n.propSet.getSex() != e[s].value && (r = "0xe50000"), (i += "|C:" + r + "&T:" + t.CrmPU.language_Common_12 + e[s].value + "|"); + break; + case t.StdItemCondition.ucJob: + var o = "0xffffff"; + n && n.propSet && n.propSet.getAP_JOB() != e[s].value && (o = "0xe50000"), (i += "|C:" + o + "&T:" + t.CrmPU.language_Common_13 + e[s].value + "|"); + break; + case t.StdItemCondition.ucChief: + i += t.CrmPU.language_Common_14; + break; + case t.StdItemCondition.ucPower: + var l = "0xffffff"; + n && n.propSet && n.propSet.getPowerValue() < e[s].value && (l = "0xe50000"), (i += "|C:" + l + "&T:" + t.CrmPU.language_Common_28 + e[s].value + "|"); + break; + case t.StdItemCondition.ucCircle: + var h = "0xffffff"; + n && n.propSet && n.propSet.MzYki() < e[s].value && (h = "0xe50000"), (i += "|C:" + h + "&T:" + t.CrmPU.language_Common_15 + e[s].value + t.CrmPU.language_Common_0 + "|"); + break; + case t.StdItemCondition.ucCircleLess: + var p = "0xffffff"; + n && n.propSet && n.propSet.MzYki() > e[s].value && (p = "0xe50000"), (i += "|C:" + p + "&T:" + t.CrmPU.language_Common_15 + e[s].value + t.CrmPU.language_Common_17 + "|"); + break; + case t.StdItemCondition.ucVipLevel: + break; + case t.StdItemCondition.ucNeiGongLevel: + var u = "0xffffff"; + n && n.propSet && n.propSet.getMeridians() < e[s].value && (u = "0xe50000"), (i += "|C:" + u + "&T:" + t.CrmPU.language_Common_244 + e[s].value + t.CrmPU.language_Common_1 + "|"); + break; + case t.StdItemCondition.ucGuildLevel: + var c = "0xffffff"; + n && n.propSet && n.propSet.getGuildLevel() < e[s].value && (c = "0xe50000"), (i += "|C:" + c + "&T:" + t.CrmPU.language_Common_264 + "|"); + } + s != e.length - 1 && (i += "\n"); + } + return i; + }), + (e.getSlowMedicine = function (i) { + for (var n = "", s = 0; s < i.length; s++) + if (0 == i[s].type) { + var a = i[s].value, + r = t.VlaoF.BuffConf[a]; + r && (n += e.hpMpArr[r.type] + r.value + "\n"); + } + return n; + }), + (e.getShunHuiMedicine = function (i) { + for (var n = "", s = t.NWRFmB.ins().nkJT(), a = 0; a < i.length; a++) { + var r = i[a].type, + o = i[a].value; + if (s && s.propSet) { + var l = s.propSet.getSpeedMedicine(); + if (l > 0) { + var h = Math.floor((o * l) / 1e4); + n += e.hpMpArr[r] + o + "(" + t.CrmPU.language_Common_18 + h + ")\n"; + } else n += e.hpMpArr[r] + o + "\n"; + } + } + return n; + }), + (e.getBestAttrs = function (t) { + var i = []; + if ("" != t.topLine && void 0 != t.topLine) + for (var n = t.topLine.split("|"), s = 0; s < n.length; s++) { + var a = n[s].split(","), + r = new e(+a[0], +a[1]); + i.push(r); + } + return i; + }), + (e.getTotalAttrs = function (t, i) { + for (var n = [], s = 0; s < i.length; s++) + for (var a = 0; a < t.length; a++) + if (i[s].type == t[a].type) { + var r = t[a].value + i[s].value, + o = new e(i[s].type, r, i[s].value); + n.push(o), t.splice(a, 1), i.splice(s, 1), (s -= 1); + break; + } + if (i.length > 0) + for (var l = 0; l < i.length; l++) { + var h = new e(i[l].type, i[l].value, i[l].value); + n.push(h); + } + var p = t.concat(n); + return p.sort(this.attrSort), p; + }), + (e.attrSort = function (t, e) { + return t.type < e.type ? -1 : t.type > e.type ? 1 : 0; + }), + (e.getAttrValue = function (e, i, n) { + void 0 === n && (n = !1); + var s, + a, + r = ""; + switch (e) { + case t.ComAttribute.aPhysicalAttackMaxAdd: + case t.ComAttribute.aMagicAttackMaxAdd: + case t.ComAttribute.aWizardAttackMaxAdd: + case t.ComAttribute.aMagicDefenceMaxAdd: + case t.ComAttribute.aMountMaxAttackRateAdd: + case t.ComAttribute.aPhysicalDefenceMaxAdd: + return null; + case t.ComAttribute.aPhysicalAttackMinAdd: + return ( + (s = i[t.ComAttribute.aPhysicalAttackMinAdd] ? i[t.ComAttribute.aPhysicalAttackMinAdd] : "0"), + (a = i[t.ComAttribute.aPhysicalAttackMaxAdd] ? i[t.ComAttribute.aPhysicalAttackMaxAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[0] + r), + r + ); + case t.ComAttribute.aMagicAttackMinAdd: + return ( + (s = i[t.ComAttribute.aMagicAttackMinAdd] ? i[t.ComAttribute.aMagicAttackMinAdd] : "0"), + (a = i[t.ComAttribute.aMagicAttackMaxAdd] ? i[t.ComAttribute.aMagicAttackMaxAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[1] + r), + r + ); + case t.ComAttribute.aWizardAttackMinAdd: + return ( + (s = i[t.ComAttribute.aWizardAttackMinAdd] ? i[t.ComAttribute.aWizardAttackMinAdd] : "0"), + (a = i[t.ComAttribute.aWizardAttackMaxAdd] ? i[t.ComAttribute.aWizardAttackMaxAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[2] + r), + r + ); + case t.ComAttribute.aMagicDefenceMinAdd: + return ( + (s = i[t.ComAttribute.aMagicDefenceMinAdd] ? i[t.ComAttribute.aMagicDefenceMinAdd] : "0"), + (a = i[t.ComAttribute.aMagicDefenceMaxAdd] ? i[t.ComAttribute.aMagicDefenceMaxAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[4] + r), + r + ); + case t.ComAttribute.aPhysicalDefenceMinAdd: + return ( + (s = i[t.ComAttribute.aPhysicalDefenceMinAdd] ? i[t.ComAttribute.aPhysicalDefenceMinAdd] : "0"), + (a = i[t.ComAttribute.aPhysicalDefenceMaxAdd] ? i[t.ComAttribute.aPhysicalDefenceMaxAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[3] + r), + r + ); + case t.ComAttribute.aMountMinAttackRateAdd: + return ( + (s = i[t.ComAttribute.aMountMinAttackRateAdd] ? i[t.ComAttribute.aMountMinAttackRateAdd] : "0"), + (a = i[t.ComAttribute.aMountMaxAttackRateAdd] ? i[t.ComAttribute.aMountMaxAttackRateAdd] : "0"), + (r = s + "-" + a), + n && (r = t.CrmPU.attrMinMax[5] + r), + r + ); + case t.ComAttribute.aDamage2SelfHpRate: + case t.ComAttribute.aHp2DamageAdd: + case t.ComAttribute.aMaxHpPower: + case t.ComAttribute.aMountMinMagicDefenceRateAdd: + case t.ComAttribute.aMountMaxMagicDefenceRateAdd: + return (r = i[e] ? t.MathUtils.GetPercent(i[e], 1e4) : "0%"), n && (r = t.CrmPU.language_ATTROBJ[e] + ":" + r), r; + default: + return (r = i[e] ? "+" + i[e] : "+0"), n && (r = t.CrmPU.language_ATTROBJ[e] + ":" + r), r; + } + }), + (e.job = [t.CrmPU.language_Common_3, t.CrmPU.language_Role_Name_1, t.CrmPU.language_Role_Name_2, t.CrmPU.language_Role_Name_3]), + (e.hpMpArr = ["", "HP +", "", "MP +"]), + e + ); + })(); + (t.AttributeData = e), __reflect(e.prototype, "app.AttributeData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t) { + void 0 === t && (t = 10), (this.nums = []), (this.numsLen = 0), (this.numSum = 0), (this.maxNum = t); + } + return ( + (t.prototype.push = function (t) { + this.numsLen > this.maxNum && (this.numsLen--, (this.numSum -= this.nums.shift())), this.nums.push(t), (this.numSum += t), this.numsLen++; + }), + (t.prototype.getValue = function () { + return this.numSum / this.numsLen; + }), + (t.prototype.clear = function () { + this.nums.splice(0), (this.numsLen = 0), (this.numSum = 0); + }), + t + ); + })(); + (t.AverageUtils = e), __reflect(e.prototype, "app.AverageUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t, e) { + void 0 === t && (t = 0), void 0 === e && (e = !0), (this._length = t), (this._storer = []); + } + return ( + Object.defineProperty(t.prototype, "length", { + get: function () { + return this._length; + }, + set: function (t) { + this._storer.length = t >> 5; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t.prototype, "numDirtyBits", { + get: function () { + var t, + e, + i = this._length; + for (e = 0; i > e; e++) this._storer[e >> 5] & (1 << e % 32) && t++; + return t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(t.prototype, "dirtyBits", { + get: function () { + var t, + e = []; + for (t = this._length - 1; t > -1; t--) this._storer[t >> 5] & (1 << t % 32) && (e[e.length] = t); + return e; + }, + enumerable: !0, + configurable: !0, + }), + (t.prototype.store = function (t) { + var e, i, n; + for (n = this._length >> 3, n > t.bytesAvailable && (n = t.bytesAvailable), e = 0; n > e; e++) + e && e % 4 == 0 && ((this._storer[(e >> 2) - 1] = i), (i = 0)), (i |= (255 & t.readByte()) << (e % 4 << 3)); + n % 4 && (this._storer[n >> 2] = i); + }), + (t.prototype.toByteArray = function (t, e) { + void 0 === t && (t = null), void 0 === e && (e = 0), t || (t = new egret.ByteArray()), (t.position = e); + for (var i, n = this._storer.length, s = 0; n > s; s++) { + i = this._storer[s]; + for (var a = 0; 32 > a; a += 8) t.writeByte((i >> a) & 255); + } + return t; + }), + (t.prototype.setBit = function (t, e) { + 1 & e ? (this._storer[t >> 5] |= 1 << t % 32) : (this._storer[t >> 5] &= ~(1 << t % 32)); + }), + (t.prototype.getBit = function (t) { + return (this._storer[t % this._length >> 5] >> t % 32) & 1; + }), + t + ); + })(); + (t.BitStorer = e), __reflect(e.prototype, "app.BitStorer"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t, e, i) { + (this.target = t), + (this.shape = new egret.Shape()), + (this.shape.x = this.target.x + this.target.width / 2), + (this.shape.y = this.target.y + this.target.height / 2), + t.parent && t.parent.addChild(this.shape), + (this.target.mask = this.shape), + (this.anticlockwise = e), + (this.dic = i); + } + return ( + (t.prototype.drawProgress = function (t, e) { + void 0 === e && (e = 0), t > 1 && (t = 1); + var i = (Math.max(this.target.width / 2, this.target.height / 2) / 2) * 1.5, + n = e, + s = (360 * t + e) * this.dic; + this.shape.graphics.clear(), + this.shape.graphics.beginFill(65535, 1), + this.shape.graphics.lineTo(i, 0), + this.shape.graphics.drawArc(0, 0, i, (n * Math.PI) / 180, (s * Math.PI) / 180, this.anticlockwise), + this.shape.graphics.lineTo(0, 0), + this.shape.graphics.endFill(); + }), + (t.prototype.destroyMe = function () { + this.target = null; + }), + t + ); + })(); + (t.CircleProgress = e), __reflect(e.prototype, "app.CircleProgress"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.mergeARGB = function (t, e, i, n) { + return (t << 24) | (e << 16) | (i << 8) | n; + }), + (e.getChannel = function (t, e) { + switch (e) { + case this.ALPHA: + return (t >> 24) & 255; + case this.RED: + return (t >> 16) & 255; + case this.GREEN: + return (t >> 8) & 255; + case this.BLUE: + return 255 & t; + } + return 0; + }), + (e.getMoneyColor = function (t) { + var e = "0xe5ddcf", + i = +t; + return (e = + i >= 0 && 500 >= i ? "0xe5ddcf" : i > 500 && 2e3 >= i ? "0x28ee01" : i > 2e3 && 5e3 >= i ? "0x0066ff" : i > 5e3 && 2e4 >= i ? "0xff1ac2" : i > 2e4 && 99999 >= i ? "0xff7700" : "0xe50000"); + }), + (e.numberToString = function (t, e) { + return void 0 === e && (e = "#"), e + t.toString(16); + }), + (e.getITextElement = function (t) { + return void 0 === t && (t = ""), t ? new egret.HtmlTextParser().parser(t) : new egret.HtmlTextParser().parser(" "); + }), + (e.ALPHA = 4080082432), + (e.RED = 15937822), + (e.GREEN = 3532333), + (e.BLUE = 255), + (e.PURPLE_COLOR = 15737312), + (e.GREEN_COLOR = 2682369), + (e.BLUE_COLOR = 3175378), + (e.WHITE_COLOR = 15064527), + (e.ORANGE = 7242310), + (e.NAME_WHITE = 15856626), + (e.NAME_GREY = 10066329), + (e.NAME_YELLOW = 15066368), + (e.NAME_RED = 15007744), + (e.NAME_ORANGE = 15107398), + (e.NAME_BLUE = 3642619), + (e.NAME_GREEN = 37127), + (e.NAME_pinkGreen = 65435), + (e.CHAT_RED_COLOR = 15937822), + (e.CHAT_GREEN_COLOR = 2682369), + (e.CHAT_BLUE_COLOR = 16777215), + (e.CHAT_YELLOW_COLOR = 15655172), + (e.CHAT_BROWN_COLOR = 16777215), + (e.CHAT_DARKBLUE_COLOR = 139), + (e.CHAT_BLACK_COLOR = 16777215), + (e.CHAT_LIGHTSKYBLUE_COLOR = 8900331), + (e.ROLE_TAB_SELECTED_COLOR = 12566463), + (e.ROLE_TAB_COLOR = 14858894), + (e.SET_UP_ITEM_YELLOW = 16769029), + (e.SET_UP_ITEM_PURPLE = 15140351), + (e.COLOR_STR = [ + t.CrmPU.language_Color_White, + t.CrmPU.language_Color_Green, + t.CrmPU.language_Color_Purple, + t.CrmPU.language_Color_Orange, + t.CrmPU.language_Color_Red, + t.CrmPU.language_Color_Golden, + ]), + (e.ROLENAME_COLOR_YELLOW = 16764427), + (e.ROLENAME_COLOR_GREEN = 3532333), + (e.ROLENAME_COLOR_NORMAL = 3532333), + (e.GOODS_COLOR = [15064527, 2682369, 26367, 16718530, 16742144, 15007744]), + (e.JUEWEI_COLOR = ["#e2dfd4", "#35e62d", "#81adff", "#e27dff", "#ff9649", "#fc5959", "#ffd93f", "#ffff00"]), + e + ); + })(); + (t.ClwSVR = e), __reflect(e.prototype, "app.ClwSVR"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return (null !== e && e.apply(this, arguments)) || this; + } + return ( + __extends(i, e), + (i.addLableStrokeColor = function (t, e, i) { + (t.strokeColor = e), (t.stroke = i); + }), + (i.getObjectLength = function (t) { + var e = 0; + for (var i in t) e++; + return e; + }), + (i.getObjectByAttr = function (t, e, i) { + for (var n in t) if (t[n][e] == i) return t[n]; + return null; + }), + (i.getObjectByUnionAttr = function (t, e, i) { + for (var n in t) if (n == e.toString()) for (var s in t[n]) if (s == i.toString()) return t[n][s]; + return null; + }), + (i.copyDataHandler = function (t) { + var e; + if (t instanceof Array) e = []; + else { + if (!(t instanceof Object)) return t; + e = {}; + } + for (var i = Object.keys(t), n = 0, s = i.length; s > n; n++) { + var a = i[n]; + e[a] = this.copyDataHandler(t[a]); + } + return e; + }), + (i.objectToArray = function (t) { + if (t instanceof Object) { + t = this.copyDataHandler(t); + for (var e = [], i = Object.keys(t), n = 0, s = i.length; s > n; n++) { + var a = i[n]; + t[a] && e.push(t[a]); + } + return e; + } + return t; + }), + (i.lock = function () { + t.aTwWrO.ins().getStage().touchEnabled = t.aTwWrO.ins().getStage().touchChildren = !1; + }), + (i.unlock = function () { + t.aTwWrO.ins().getStage().touchEnabled = t.aTwWrO.ins().getStage().touchChildren = !0; + }), + (i.zhuanhuan = function (t) { + var e = t.toString().replace(/\d+/, function (t) { + return t.replace(/(\d)(?=(\d{3})+$)/g, "$1,"); + }); + return e; + }), + (i.labelIsOverLenght = function (t, e) { + t.text = this.overLengthChange(e); + }), + (i.overLength = function (e) { + var i = null; + return ( + 1e5 > e + ? (i = Math.floor(e) + "") + : e > 1e8 + ? ((e /= 1e8), (e = Math.floor(10 * e) / 10), (i = e + t.CrmPU.language_Chine_Yi)) + : ((e /= 1e4), (e = Math.floor(10 * e) / 10), (i = e + t.CrmPU.language_Chine_Wan)), + i + ); + }), + (i.overLengthChange = function (e) { + var i = null; + return ( + 1e4 > e + ? (i = Math.floor(e) + "") + : e > 1e8 + ? ((e /= 1e8), (e = Math.floor(10 * e) / 10), (i = e + t.CrmPU.language_Chine_Yi)) + : ((e /= 1e4), (e = Math.floor(10 * e) / 10), (i = e + t.CrmPU.language_Chine_Wan)), + i + ); + }), + (i.overThousand = function (e) { + var i = null; + return 1e4 > e ? (i = Math.floor(e) + "") : ((e /= 1e4), (e = Math.floor(10 * e) / 10), (i = e + t.CrmPU.language_Chine_Wan)), i; + }), + i + ); + })(t.BaseClass); + (t.CommonUtils = e), __reflect(e.prototype, "app.CommonUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.getCoinIcon = function (t) { + return t >= 1e3 ? 13010 : t >= 300 ? 13009 : t >= 100 ? 13008 : t >= 30 ? 13007 : 13006; + }), + (e.getYBIcon = function (t) { + return t >= 12 ? 565 : 564; + }), + (e.sztgR = function (e, i) { + void 0 === i && (i = 0); + var n = t.NWRFmB.ins().getPayer; + if (!n) return ""; + if (e == ZnGy.qatEquipment) { + var s = t.VlaoF.StdItems[i]; + if (s) return [s.name, s.icon, s.desc, s.showQuality]; + } else { + var a = t.VlaoF.NumericalIcon[e]; + if (a) return [a.name, a.icon, a.description]; + } + }), + (e.isRedDot = function (t, i) { + if ((void 0 === i && (i = 1), t)) + for (var n in t) { + var s = t[n], + a = e.MPDpiB(s.type, s.id); + if (a < s.count * i) return 0; + } + return 1; + }), + (e.MPDpiB = function (e, i) { + void 0 === i && (i = 0); + var n = t.NWRFmB.ins().getPayer; + if (!n) return 0; + switch (e) { + case ZnGy.qatEquipment: + return t.ThgMu.ins().getItemCountById(i); + case ZnGy.qatMoney: + return n.propSet.getNotBindCoin(); + case ZnGy.qatBindMoney: + return n.propSet.getBindCoin(); + case ZnGy.qatYuanbao: + return n.propSet.getNotBindYuanBao(); + case ZnGy.qatBindYb: + return n.propSet.getBindYuanBao(); + case ZnGy.qatExp: + return n.propSet.getEXP(); + case ZnGy.qatCircleSoul: + return n.propSet.getZSSoul(); + case ZnGy.qatFlyShoes: + return n.propSet.getFlyshoes(); + case ZnGy.qaIntegral: + return n.propSet.getIntegral(); + case ZnGy.qaGuildDonate: + return n.propSet.getGuildDevote(); + case ZnGy.qaPrestige: + return n.propSet.getPopularity(); + case ZnGy.qaActivity: + return n.propSet.getActivity(); + case ZnGy.qaMultipleExp: + return n.propSet.getmultipleExp(); + case ZnGy.warNumber: + return n.propSet.getWarCurrency(); + case ZnGy.qatDimensionalKey: + return n.propSet.getDimensionKey(); + default: + return 0; + } + }), + (e.getMoneyIcon = function (t) { + var e = ""; + switch (t) { + case ZnGy.qatMoney: + e = "icon_jinbi"; + break; + case ZnGy.qatBindMoney: + e = "icon_bangding"; + break; + case ZnGy.qatBindYb: + e = "icon_yinliang"; + break; + case ZnGy.qatYuanbao: + e = "icon_yuanbao"; + break; + case ZnGy.warNumber: + e = "main_zlb"; + } + return e; + }), + (e.getItemByCost = function (t) { + var i = 0; + for (var n in t) { + var s = t[n], + a = e.MPDpiB(s.type, s.id); + a < s.count && (i = 2 == s.type ? 932 : s.id); + } + return i; + }), + e + ); + })(); + (t.ZAJw = e), __reflect(e.prototype, "app.ZAJw"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e(e, i, n, s) { + var a = t.call(this) || this; + return (a.format = []), (a.from = 0), (a.to = 0), (a.isFormatNum = !1), (a.format = e), (a.from = i), (a.to = n), (a.isFormatNum = s), a; + } + return __extends(e, t), e; + })(t.BaseClass); + (t.sTgr = e), __reflect(e.prototype, "app.sTgr"); + var i = (function () { + function i() {} + return ( + (i.getFormatTimeByStyle = function (t, e) { + if ((void 0 === e && (e = i.STYLE_1), 0 > t && ((t = 0), debug.log("输入参数有误!时间为负数:" + t)), e.from > e.to)) + return debug.log("输入参数有误!to参数必须大于等于from参数,请检查style参数的值"), ""; + t >>= 0; + for (var n = "", s = e.to; s >= e.from; s--) { + var a = t / this.mul[s], + r = ""; + s != e.to && (a %= this.mod[s]), (r = e.isFormatNum && 10 > a ? "0" + (a >> 0).toString() : (a >> 0).toString()), (n += r + e.format[s]); + } + return n; + }), + (i.getFormatTimeByStyle1 = function (t, e) { + return void 0 === e && (e = i.STYLE_1), this.getFormatTimeByStyle(t / this.MS_PER_SECOND); + }), + (i.formatMiniDateTime = function (t) { + return i.MINI_DATE_TIME_BASE + (2147483647 & t) * i.MS_PER_SECOND; + }), + (i.formatServerTime = function (t) { + return (t - i.MINI_DATE_TIME_BASE) / i.MS_PER_SECOND; + }), + (i.getFormatBySecond = function (t, e, i) { + void 0 === e && (e = 1), void 0 === i && (i = 2); + var n = "", + s = 1e3 * t; + switch (e) { + case this.TIME_FORMAT_1: + n = this.format_1(s); + break; + case this.TIME_FORMAT_2: + n = this.format_2(s); + break; + case this.TIME_FORMAT_3: + n = this.format_3(s); + break; + case this.TIME_FORMAT_4: + n = this.format_4(s); + break; + case this.TIME_FORMAT_5: + n = this.format_5(s, i); + break; + case this.TIME_FORMAT_6: + n = this.format_6(s); + break; + case this.TIME_FORMAT_7: + n = this.format_7(s); + break; + case this.TIME_FORMAT_8: + n = this.format_8(s); + break; + case this.TIME_FORMAT_9: + n = this.format_9(s); + break; + case this.TIME_FORMAT_10: + n = this.format_10(s); + break; + case this.TIME_FORMAT_11: + n = this.format_11(s); + break; + case this.TIME_FORMAT_12: + n = this.format_12(s); + break; + case this.TIME_FORMAT_13: + n = this.format_13(s); + break; + case this.TIME_FORMAT_14: + n = this.format_14(s); + break; + case this.TIME_FORMAT_15: + n = this.format_15(s); + break; + case this.TIME_FORMAT_16: + n = this.format_16(s); + break; + case this.TIME_FORMAT_17: + n = this.format_17(s); + break; + case this.TIME_FORMAT_18: + n = this.format_18_1(s); + break; + case this.TIME_FORMAT_19: + n = this.format_19(s); + break; + case this.TIME_FORMAT_20: + n = this.format_20(s); + break; + case this.TIME_FORMAT_21: + n = this.format_21(s); + break; + case this.TIME_FORMAT_22: + n = this.format_22(s); + } + return n; + }), + (i.getSecondByDay = function (t) { + var e = 1e3 * t; + return Math.floor(e / this.MS_PER_DAY); + }), + (i.getRenainSecond = function (t) { + var e = t ? new Date(t) : new Date(), + n = i.getTodayZeroSecond(e) + 86400 - e.getTime() / 1e3; + return n.toFixed(0); + }), + (i.getTodayPassedSecond = function () { + var t = new Date(), + e = ((Date.now() - new Date(t.getFullYear(), t.getMonth(), t.getDate()).getTime()) / 1e3).toFixed(0); + return parseInt(e); + }), + (i.getTodayPassedSecond2 = function () { + var e = 0, + n = new Date(t.GlobalData.serverTime), + s = n.getHours(), + a = n.getMinutes(), + r = n.getSeconds(); + return (e = s * i.SECOND_PER_HOUR + a * i.SECOND_PER_MUNITE + r); + }), + (i.getTodayZeroSecond = function (t) { + var e = t ? t : new Date(); + return parseInt((new Date(e.getFullYear(), e.getMonth(), e.getDate()).getTime() / 1e3).toFixed(0)); + }), + (i.showWeekFirstDay = function () { + var t = new Date(), + e = t.getDay(); + e = e ? e : 7; + var i = new Date(t - 864e5 * (e - 1)); + return i; + }), + (i.showWeekLastDay = function () { + var t = (new Date(), i.showWeekFirstDay()), + e = new Date(1e3 * (t / 1e3 + 518400)); + return e; + }), + (i.calcWeekFirstDay = function () { + var t = new Date(), + e = t.getDay(); + e = e > 0 ? e : 7; + var i = 7 - e, + n = t.getHours(), + s = t.getMinutes(), + a = t.getSeconds(), + r = 86400 * i * 1e3 + 864e5 - (3600 * n * 1e3 + 60 * s * 1e3 + 1e3 * a); + return new Date(r); + }), + (i.format_1 = function (t) { + var e = 0, + n = "##:##:##"; + return ( + (e = Math.floor(t / i.MS_PER_HOUR)), + (n = n.replace("##", i.formatTimeNum(e))), + e && (t -= e * i.MS_PER_HOUR), + (e = Math.floor(t / i.MS_PER_MINUTE)), + (n = n.replace("##", i.formatTimeNum(e))), + e && (t -= e * i.MS_PER_MINUTE), + (e = Math.floor(t / 1e3)), + (n = n.replace("##", i.formatTimeNum(e))) + ); + }), + (i.format_2 = function (t) { + var e = new Date(t), + n = e.getFullYear(), + s = e.getMonth() + 1, + a = e.getDate(), + r = e.getHours(), + o = e.getMinutes(); + e.getSeconds(); + return n + "-" + i.formatTimeNum(s) + "-" + i.formatTimeNum(a) + " " + i.formatTimeNum(r) + ":" + i.formatTimeNum(o); + }), + (i.format_3 = function (t) { + var e = this.format_1(t), + i = e.split(":"); + return i[1] + ":" + i[2]; + }), + (i.format_4 = function (t) { + return t < this.MS_PER_HOUR ? Math.floor(t / this.MS_PER_MINUTE) + "分钟前" : t < this.MS_PER_DAY ? Math.floor(t / this.MS_PER_HOUR) + "小时前" : Math.floor(t / this.MS_PER_DAY) + "天前"; + }), + (i.format_5 = function (e, i) { + void 0 === i && (i = 2); + var n = "", + s = [t.CrmPU.language_Time_Days, t.CrmPU.language_Time_Hours, t.CrmPU.language_Time_Min, t.CrmPU.language_Time_Sec], + a = [], + r = Math.floor(e / this.MS_PER_DAY); + a.push(r), (e -= r * this.MS_PER_DAY); + var o = Math.floor(e / this.MS_PER_HOUR); + a.push(o), (e -= o * this.MS_PER_HOUR); + var l = Math.floor(e / this.MS_PER_MINUTE); + a.push(l), (e -= l * this.MS_PER_MINUTE); + var h = Math.floor(e / 1e3); + a.push(h); + for (var p in a) if (a[p] > 0 && ((n += this.formatTimeNum(a[p], Number(p)) + s[p]), i--, 0 >= i)) break; + return n; + }), + (i.format_6 = function (t) { + var e = new Date(t), + i = e.getHours(), + n = e.getMinutes(), + s = e.getSeconds(); + return this.formatTimeNum(i) + ":" + this.formatTimeNum(n) + ":" + this.formatTimeNum(s); + }), + (i.format_7 = function (e) { + return e < this.MS_PER_DAY ? Math.floor(e / this.MS_PER_HOUR) + "小时" : Math.floor(e / this.MS_PER_DAY) + t.CrmPU.language_Time_Days; + }), + (i.format_8 = function (t) { + var e = new Date(t), + n = e.getFullYear(), + s = e.getMonth() + 1, + a = e.getDate(), + r = e.getHours(), + o = e.getMinutes(); + return n + "-" + s + "-" + a + " " + r + ":" + i.formatTimeNum(o); + }), + (i.format_9 = function (e) { + var i = Math.floor(e / this.MS_PER_HOUR); + e -= i * this.MS_PER_HOUR; + var n = Math.floor(e / this.MS_PER_MINUTE); + e -= n * this.MS_PER_MINUTE; + var s = Math.floor(e / 1e3); + return i + "小时" + n + "分钟" + s + t.CrmPU.language_Time_Sec; + }), + (i.format_10 = function (e) { + var i = Math.floor(e / this.MS_PER_MINUTE); + e -= i * this.MS_PER_MINUTE; + var n = Math.floor(e / 1e3); + return i + t.CrmPU.language_Time_Min + n + t.CrmPU.language_Time_Sec; + }), + (i.format_11 = function (e) { + var i = Math.floor(e / this.MS_PER_HOUR); + e -= i * this.MS_PER_HOUR; + var n = Math.floor(e / this.MS_PER_MINUTE); + e -= n * this.MS_PER_MINUTE; + var s = Math.floor(e / 1e3); + return i + t.CrmPU.language_Time_Hours + n + t.CrmPU.language_Time_Min + s + t.CrmPU.language_Time_Sec; + }), + (i.format_12 = function (t) { + var e = Math.floor(t / this.MS_PER_HOUR); + t -= e * this.MS_PER_HOUR; + var n = Math.floor(t / this.MS_PER_MINUTE); + t -= n * this.MS_PER_MINUTE; + var s = Math.floor(t / 1e3); + return i.formatTimeNum(e) + ":" + i.formatTimeNum(n) + ":" + i.formatTimeNum(s); + }), + (i.format_13 = function (e) { + var n = new Date(e), + s = (n.getFullYear(), n.getMonth() + 1), + a = n.getDay(), + r = n.getDate(), + o = n.getHours(), + l = n.getMinutes(); + return s + t.CrmPU.language_Time_Months + r + "日(周" + this.WEEK_CN[a] + ") " + i.formatTimeNum(o) + ":" + i.formatTimeNum(l); + }), + (i.format_14 = function (e) { + var i = new Date(e), + n = i.getHours(), + s = i.getMinutes(); + return n + t.CrmPU.language_Time_Hours + s + t.CrmPU.language_Time_Min; + }), + (i.format_15 = function (t) { + var e = new Date(t), + n = e.getMonth() + 1, + s = e.getDate(), + a = e.getHours(), + r = e.getMinutes(); + return i.formatTimeNum(n) + "-" + i.formatTimeNum(s) + " " + i.formatTimeNum(a) + ":" + i.formatTimeNum(r); + }), + (i.format_16 = function (t) { + var e = new Date(t), + i = e.getFullYear(), + n = e.getMonth() + 1, + s = e.getDate(); + return i + "-" + n + "-" + s; + }), + (i.format_17 = function (e) { + var n = t.GlobalData.serverTime, + s = e - n; + if (s > 0) { + if (s >= this.MS_PER_DAY) return Math.floor(s / this.MS_PER_DAY) + t.CrmPU.language_Time_Days; + var a = new Date(e), + r = a.getHours(), + o = a.getMinutes(); + return i.formatTimeNum(r) + ":" + i.formatTimeNum(o); + } + return ""; + }), + (i.format_18 = function (t) { + var e = new Date(t), + i = e.getMonth() + 1; + return i + "月"; + }), + (i.format_18_1 = function (e) { + var i = Math.floor(e / this.MS_PER_DAY); + e -= i * this.MS_PER_DAY; + var n = Math.floor(e / this.MS_PER_HOUR); + e -= n * this.MS_PER_HOUR; + var s = Math.floor(e / this.MS_PER_MINUTE); + return ( + (e -= s * this.MS_PER_MINUTE), + i > 0 ? i + t.CrmPU.language_Time_Days + n + t.CrmPU.language_Time_Hours + s + t.CrmPU.language_Time_Min : n + t.CrmPU.language_Time_Hours + s + t.CrmPU.language_Time_Min + ); + }), + (i.format_19 = function (t) { + var e = Math.floor(t / this.MS_PER_MINUTE); + return (t -= e * this.MS_PER_MINUTE), e + ""; + }), + (i.format_20 = function (t) { + var e = Math.floor(t / this.MS_PER_HOUR); + return e + "小时"; + }), + (i.format_21 = function (e) { + var i = new Date(e), + n = (i.getFullYear(), i.getMonth() + 1), + s = i.getDate(); + return n + t.CrmPU.language_Time_Months + s + t.CrmPU.language_Time_Sun; + }), + (i.format_22 = function (t) { + var e = this.format_1(t), + i = e.split(":"); + return i[0] + ":" + i[1]; + }), + (i.formatTimeNum = function (t, e) { + return t >= 10 ? t.toString() : 0 == e ? t.toString() : "0" + t; + }), + (i.checkTime = function (t, e) { + var i = new Date().getTime(), + n = t > i + e * this.MS_PER_DAY; + return n; + }), + (i.formatFullTime = function (e, i) { + void 0 === i && (i = 0); + var n, + s, + a = new Date(e), + r = a.getFullYear(), + o = a.getMonth() + 1, + l = a.getDate(), + h = a.getDay(), + p = a.getHours(); + s = 10 > p ? "0" + p : p.toString(); + var u, + c = a.getMinutes(); + u = 10 > c ? "0" + c : c.toString(); + var g, + d = a.getSeconds(); + g = 10 > d ? "0" + d : d.toString(); + var m; + switch (h) { + case 1: + m = t.CrmPU.language_Chine_Number_1; + break; + case 2: + m = t.CrmPU.language_Chine_Number_2; + break; + case 3: + m = t.CrmPU.language_Chine_Number_3; + break; + case 4: + m = t.CrmPU.language_Chine_Number_4; + break; + case 5: + m = t.CrmPU.language_Chine_Number_5; + break; + case 6: + m = t.CrmPU.language_Chine_Number_6; + break; + case 0: + m = t.CrmPU.language_Time_Sun; + } + return (n = + 0 != i + ? r + t.CrmPU.language_Time_Years + o + t.CrmPU.language_Time_Months + l + t.CrmPU.language_Time_Sun + s + ":" + u + ":" + g + : r + t.CrmPU.language_Time_Years + o + t.CrmPU.language_Time_Months + l + "日(周" + m + ") " + s + ":" + u); + }), + (i.formatStrTimeToMs = function (t) { + var e = new Date(), + i = t.split("."); + e.setFullYear(i[0]), e.setMonth(+i[1] - 1); + var n = i[2].split("-"); + e.setDate(n[0]); + var s = n[1].split(":"); + return e.setHours(s[0]), e.setMinutes(s[1]), e.setSeconds(0), e.getTime(); + }), + (i.getShaBaKeCD = function (t) { + var e = Math.floor(t / this.MS_PER_HOUR); + t -= e * this.MS_PER_HOUR; + var n = Math.floor(t / this.MS_PER_MINUTE); + return (t -= n * this.MS_PER_MINUTE), i.formatTimeNum(e) + "小时" + i.formatTimeNum(n) + "分钟"; + }), + (i.getMainShaBaKeCD = function (t) { + var e = Math.floor(t / this.MS_PER_HOUR); + t -= e * this.MS_PER_HOUR; + var n = Math.floor(t / this.MS_PER_MINUTE); + t -= n * this.MS_PER_MINUTE; + var s = Math.floor(t / 1e3); + return i.formatTimeNum(e) + ":" + i.formatTimeNum(n) + ":" + i.formatTimeNum(s); + }), + (i.TIME_FORMAT_1 = 1), + (i.TIME_FORMAT_2 = 2), + (i.TIME_FORMAT_3 = 3), + (i.TIME_FORMAT_4 = 4), + (i.TIME_FORMAT_5 = 5), + (i.TIME_FORMAT_6 = 6), + (i.TIME_FORMAT_7 = 7), + (i.TIME_FORMAT_8 = 8), + (i.TIME_FORMAT_9 = 9), + (i.TIME_FORMAT_10 = 10), + (i.TIME_FORMAT_11 = 11), + (i.TIME_FORMAT_12 = 12), + (i.TIME_FORMAT_13 = 13), + (i.TIME_FORMAT_14 = 14), + (i.TIME_FORMAT_15 = 15), + (i.TIME_FORMAT_16 = 16), + (i.TIME_FORMAT_17 = 17), + (i.TIME_FORMAT_18 = 18), + (i.TIME_FORMAT_19 = 19), + (i.TIME_FORMAT_20 = 20), + (i.TIME_FORMAT_21 = 21), + (i.TIME_FORMAT_22 = 22), + (i.MS_PER_SECOND = 1e3), + (i.MS_PER_MINUTE = 6e4), + (i.MS_PER_HOUR = 36e5), + (i.MS_PER_DAY = 864e5), + (i.SECOND_PER_HOUR = 3600), + (i.SECOND_PER_DAY = 86400), + (i.SECOND_PER_MONTH = 2592e3), + (i.SECOND_PER_YEAR = 31104e3), + (i.DAYS_PER_WEEK = 7), + (i.YEAR_PER_YEAR = 1), + (i.MONTH_PER_YEAR = 12), + (i.DAYS_PER_MONTH = 30), + (i.HOURS_PER_DAY = 24), + (i.MUNITE_PER_HOUR = 60), + (i.SECOND_PER_MUNITE = 60), + (i.SECOND_PER_SECOND = 1), + (i.SECOND_2010 = 1262275200), + (i.mod = [i.SECOND_PER_MUNITE, i.MUNITE_PER_HOUR, i.HOURS_PER_DAY, i.DAYS_PER_MONTH, i.MONTH_PER_YEAR, i.YEAR_PER_YEAR]), + (i.mul = [i.SECOND_PER_SECOND, i.SECOND_PER_MUNITE, i.SECOND_PER_HOUR, i.SECOND_PER_DAY, i.SECOND_PER_MONTH, i.SECOND_PER_YEAR]), + (i.MINI_DATE_TIME_BASE = Date.UTC(2010, 0) + new Date().getTimezoneOffset() * i.MS_PER_MINUTE), + (i.TIME_ZONE_OFFSET = 8 * i.MS_PER_HOUR), + (i.TO_SECOND = 0), + (i.TO_MINUTE = 1), + (i.TO_HOUR = 2), + (i.TO_DAY = 3), + (i.TO_MONTH = 4), + (i.TO_YEAR = 5), + (i.FORMAT_1 = [t.CrmPU.language_Time_Sec, t.CrmPU.language_Time_Min, t.CrmPU.language_Time_Hours, t.CrmPU.language_Time_Days, t.CrmPU.language_Time_Months, t.CrmPU.language_Time_Years]), + (i.FORMAT_2 = [":", ":", ":", ":", ":", ":"]), + (i.WEEK_CN = [ + t.CrmPU.language_Time_Sun, + t.CrmPU.language_Chine_Number_1, + t.CrmPU.language_Chine_Number_2, + t.CrmPU.language_Chine_Number_3, + t.CrmPU.language_Chine_Number_4, + t.CrmPU.language_Chine_Number_5, + t.CrmPU.language_Chine_Number_6, + ]), + (i.STYLE_1 = new e(i.FORMAT_1, i.TO_SECOND, i.TO_HOUR, !1)), + (i.STYLE_2 = new e(i.FORMAT_1, i.TO_SECOND, i.TO_DAY, !1)), + (i.STYLE_3 = new e(i.FORMAT_2, i.TO_SECOND, i.TO_HOUR, !0)), + (i.STYLE_4 = new e(i.FORMAT_1, i.TO_SECOND, i.TO_MINUTE, !0)), + i + ); + })(); + (t.DateUtils = i), __reflect(i.prototype, "app.DateUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.isOpen = function (t) { + this._isOpen = t; + }), + Object.defineProperty(e, "isDebug", { + get: function () { + return window.isDebug ? window.isDebug : !1; + }, + enumerable: !0, + configurable: !0, + }), + (e.log = function (t) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + e.isDebug && egret.log(t, i); + }), + (e.warn = function (t) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + e.isDebug && egret.warn(t, i); + }), + (e.error = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + egret.error(t, e); + }), + (e.start = function (t) { + this._isOpen && (this._startTimes[t] = egret.getTimer()); + }), + (e.stop = function (e) { + if (!this._isOpen) return 0; + if (!this._startTimes[e]) return 0; + var i = egret.getTimer() - this._startTimes[e]; + return i > this._threshold && t.Log.trace(e + ": " + i), i; + }), + (e.setThreshold = function (t) { + this._threshold = t; + }), + (e._startTimes = {}), + (e._threshold = 3), + e + ); + })(); + (t.DebugUtils = e), __reflect(e.prototype, "app.DebugUtils"); +})(app || (app = {})); +var debug = { + log: app.DebugUtils.log, + warn: app.DebugUtils.warn, + error: app.DebugUtils.error, + }, + app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.get8DirBy2Point = function (e, i) { + var n = t.MathUtils.getAngle(t.MathUtils.getRadian2(e.x, e.y, i.x, i.y)); + return this.angle2dir(n); + }), + (e.get4DirBy2Point = function (t, e) { + return t.x < e.x ? (t.y < e.y ? 3 : 1) : t.y < e.y ? 5 : 7; + }), + (e.dir2angle = function (t) { + return (t *= 45), (t -= 90); + }), + (e.angle2dir = function (t) { + return -90 > t && (t += 360), Math.round((t + 90) / 45) % 8; + }), + (e.dirOpposit = function (t) { + return 4 > t ? t + 4 : t - 4; + }), + (e.get5DirBy8Dir = function (t) { + return t - this.isScaleX(t); + }), + (e.isScaleX = function (t) { + var e = 2 * (t - 4); + return 0 > e && (e = 0), e; + }), + (e.getGridByDir = function (e, i, n) { + void 0 === i && (i = 1), + void 0 === n && + (n = { + x: 0, + y: 0, + }); + var s = this.dir2angle(this.dirOpposit(e)); + return t.MathUtils.getDirMove(s, i * t.GameMap.CELL_SIZE, n.x, n.y); + }), + (e.getGridByPost = function (e, i, n) { + return ( + void 0 === i && (i = 1), + void 0 === n && + (n = { + x: 0, + y: 0, + }), + t.MathUtils.getDirMove(e, i * t.GameMap.CELL_SIZE, n.x, n.y) + ); + }), + e + ); + })(); + (t.DirUtil = e), __reflect(e.prototype, "app.DirUtil"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.setShakeOn = function (t) { + this.openShake = t; + }), + (t.createBitmap = function (t) { + var e = new egret.Bitmap(), + i = RES.getRes(t); + return (e.texture = i), e; + }), + (t.createEuiImage = function (t) { + var e = new eui.Image(), + i = RES.getRes(t); + return (e.source = i), e; + }), + (t.Naoc = function (t) { + t && null != t.parent && t.parent.removeChild(t); + }), + (t.shakeIt = function (e, i, n, s, a) { + if ( + (void 0 === s && (s = 1), + void 0 === a && + (a = function () { + return !0; + }), + this.openShake && e && !(1 > s) && a()) + ) { + var r = [ + { + anchorOffsetX: 0, + anchorOffsetY: -i, + }, + { + anchorOffsetX: 0, + anchorOffsetY: +i, + }, + { + anchorOffsetX: 0, + anchorOffsetY: 0, + }, + ]; + egret.Tween.removeTweens(e); + var o = n / r.length; + egret.Tween.get(e) + .to(r[0], o) + .to(r[1], o) + .to(r[2], o) + .call(function () { + t.shakeIt(e, i, n, --s); + }, this); + } + }), + (t.shakeItHeji = function (e, i, n, s, a) { + if ( + (void 0 === s && (s = 1), + void 0 === a && + (a = function () { + return !0; + }), + this.openShake && e && !(1 > s) && a()) + ) { + var r = [ + { + anchorOffsetX: 0.1 * +i, + anchorOffsetY: +i, + }, + { + anchorOffsetX: 0.1 * -i, + anchorOffsetY: -i, + }, + { + anchorOffsetX: 0.1 * +i, + anchorOffsetY: +i, + }, + { + anchorOffsetX: 0.1 * -i, + anchorOffsetY: -i, + }, + { + anchorOffsetX: 0.1 * (+i >> 1), + anchorOffsetY: +i >> 1, + }, + { + anchorOffsetX: 0.1 * (-i >> 1), + anchorOffsetY: -i >> 1, + }, + { + anchorOffsetX: 0.1 * (+i >> 2), + anchorOffsetY: +i >> 2, + }, + { + anchorOffsetX: 0, + anchorOffsetY: 0, + }, + ]; + egret.Tween.removeTweens(e); + var o = n / r.length; + egret.Tween.get(e) + .to(r[0], o) + .to(r[1], o) + .to(r[2], o) + .to(r[3], o) + .to(r[4], o) + .to(r[5], o) + .to(r[6], o) + .to(r[7], o) + .call(function () { + t.shakeIt(e, i, n, --s); + }, this); + } + }), + (t.shakeItEntity = function (t, e, i, n, s) { + var a = this; + if ( + (void 0 === n && (n = 1), + void 0 === s && + (s = function () { + return !0; + }), + this.openShake && t && !(1 > n) && s()) + ) { + var r = [ + { + anchorOffsetX: 0, + anchorOffsetY: -e, + }, + { + anchorOffsetX: -e, + anchorOffsetY: 0, + }, + { + anchorOffsetX: e, + anchorOffsetY: 0, + }, + { + anchorOffsetX: 0, + anchorOffsetY: e, + }, + { + anchorOffsetX: 0, + anchorOffsetY: 0, + }, + ]; + egret.Tween.removeTweens(t); + var o = i / 5; + egret.Tween.get(t) + .to(r[0], o) + .to(r[1], o) + .to(r[2], o) + .to(r[3], o) + .to(r[4], o) + .call(function () { + a.shakeIt(t, e, i, --n); + }, this); + } + }), + (t.drawCir = function (t, e, i, n) { + function s() { + t.graphics.clear(), + t.graphics.beginFill(65535, 1), + t.graphics.moveTo(0, 0), + t.graphics.lineTo(e, 0), + t.graphics.drawArc(0, 0, e, 0, (i * Math.PI) / 180, n), + t.graphics.lineTo(0, 0), + t.graphics.endFill(); + } + return null == t && (t = new egret.Shape()), s(), t; + }), + (t.drawrect = function (t, e, i, n) { + function s() { + t.graphics.clear(), t.graphics.beginFill(65535, 1), t.graphics.drawRect(0, 0, e, i), t.graphics.endFill(); + } + return null == t && (t = new egret.Shape()), s(), t; + }), + (t.getEffectPath = function (t) { + return ZkSzi.RES_DIR_EFF + t; + }), + (t.scrollerToBottom = function (t) { + t.viewport.validateNow(), t.viewport.contentHeight > t.height && (t.viewport.scrollV = t.viewport.contentHeight - t.height); + }), + (t.SetParent = function (e, i) { + if (e && i) { + var n = t.POINT, + s = e.parent; + s ? (s.localToGlobal(e.x, e.y, n), s.removeChild(e)) : ((n.x = e.x), (n.y = e.y)), + i.globalToLocal(n.x, n.y, n), + i.addChild(e), + null != e.bottom ? ((e.x = n.x), (e.bottom = i.height - n.y - e.height)) : ((e.x = n.x), (e.y = n.y)); + } + }), + (t.openShake = !0), + (t.shakingList = {}), + (t.POINT = new egret.Point()), + t + ); + })(); + (t.lEYZI = e), __reflect(e.prototype, "app.lEYZI"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._fromDic = {}), (t.curImg = new eui.Image()), t.curImg.addEventListener(egret.TouchEvent.TOUCH_END, t.stopMove, t), t; + } + return ( + __extends(i, e), + (i.prototype.register = function (t, i) { + void 0 === i && (i = null), e.prototype.register.call(this, t, i), (this._fromDic[t.name] = i); + }), + (i.prototype.startMove = function (e) { + (t.DragDropUtils.isMoving = !0), t.ckpDj.ins().sendEvent(t.CompEvent.DRAG_START); + var i = e.currentTarget; + i.visible = !0; + var n = i.parent.localToGlobal(i.x, i.y); + i.parent != t.yCIt.UIupV && (this.curImg && ((this.curImg.source = i.source), (this.curImg.name = i.name)), t.yCIt.UIupV.addChild(this.curImg)), + (this.curImg.x = n.x), + (this.curImg.y = n.y), + (this._offsetX = e.stageX - this.curImg.x), + (this._offsetY = e.stageY - this.curImg.y), + (this._currentTarget = this.curImg), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onMove, this); + }), + (i.prototype.stopMove = function (i) { + e.prototype.stopMove.call(this, i); + for (var n in this._fromDic) { + var s = this._fromDic[n]; + if (s.name == this._currentTarget.name) { + t.ckpDj.ins().sendEvent(t.CompEvent.DRAG_END, [ + { + target: this._currentTarget, + from: s, + point: { + x: i.stageX, + y: i.stageY, + }, + }, + ]); + break; + } + } + }), + (i.prototype.removeDic = function (t) { + e.prototype.removeDic.call(this, t); + var i = this._fromDic[t]; + null != i && ((this._fromDic[t] = null), delete this._fromDic[t]); + }), + i + ); + })(t.DragDropUtils); + (t.DragDropItemUtils = e), __reflect(e.prototype, "app.DragDropItemUtils"); + var i; + !(function (t) { + (t[(t.Equip = 0)] = "Equip"), (t[(t.Skill = 1)] = "Skill"), (t[(t.Bag = 2)] = "Bag"); + })((i = t.DragType || (t.DragType = {}))); +})(app || (app = {})); +var dragDropItemUtils = new app.DragDropItemUtils(), + app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.effArr = []), (i.curDay = 0), (i.skinName = "ActivityFirstChargeViewSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.awardArr = new eui.ArrayCollection()), (this.itemList.itemRenderer = t.ItemBase), (this.itemList.dataProvider = this.awardArr); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + var n = t.VlaoF.Activity10003Config[t.ISYR.firstCharge][1][1]; + n && n.Description && (this.imgDesc.source = n.Description), + this.bottomBG || ((this.bottomBG = new eui.Image()), (this.bottomBG.source = "weapon_bottom_bg"), (this.bottomBG.x = -125), (this.bottomBG.y = 90), this.effGrp.addChild(this.bottomBG)), + this.bottomMc || + ((this.bottomMc = t.ObjectPool.pop("app.MovieClip")), + (this.bottomMc.scaleX = this.bottomMc.scaleY = 1), + (this.bottomMc.touchEnabled = !1), + (this.bottomMc.x = 10), + (this.bottomMc.y = 165), + this.effGrp.addChild(this.bottomMc)), + this.mouseMc || ((this.mouseMc = t.ObjectPool.pop("app.MovieClip")), (this.mouseMc.scaleX = this.mouseMc.scaleY = 1), (this.mouseMc.touchEnabled = !1), this.effGrp.addChild(this.mouseMc)), + (this.effArr = []); + for (var s, a = 0; 2 > a; a++) + (s = t.ObjectPool.pop("app.MovieClip")), + (s.scaleX = s.scaleY = 1), + (s.x = 66 * a), + (s.y = 0), + (s.touchEnabled = !1), + (s.blendMode = egret.BlendMode.ADD), + s.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zbk", -1), + this.effArr.push(s), + this.itemEffGrp.addChild(s); + this.vKruVZ(this.btnCharge, this.onClick), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btnGetGfit, this.onClick), + this.addChangeEvent(this.btnDay1, this.onClick), + this.addChangeEvent(this.btnDay2, this.onClick), + this.addChangeEvent(this.btnDay3, this.onClick), + this.HFTK(t.TQkyOx.ins().post_25_3, this.updateInfo); + var r = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge), + o = 1; + if (r) + if (r.info.sum) { + for (var a = 1; 4 > a; a++) + if (t.MathUtils.getValueAtBit(r.redDot, a) > 0) { + o = a; + break; + } + if (0 == o) for (var l = 1; 4 > l; l++) t.MathUtils.getValueAtBit(r.info.state, l) > 0 && (o = l); + } else o = 1; + this.showCurData(o), (this.curDay = o), (this["btnDay" + o].selected = !0); + }), + (i.prototype.showCurData = function (e) { + (this.receiveGroup.visible = !1), (this.label.visible = !1); + var i = t.NWRFmB.ins().getPayer, + n = i.propSet.getAP_JOB(), + s = t.VlaoF.Activity10003Config[t.ISYR.firstCharge][n]; + s = s[e]; + var a = [], + r = s && s.GiftTable; + for (var o in r) a.push(r[o]); + this.awardArr.replaceAll(a), + s && s.weaponeff + ? (this.mouseMc.playFileEff(ZkSzi.RES_DIR_EFF + s.weaponeff, -1), this.bottomMc.playFileEff(ZkSzi.RES_DIR_EFF + "weapon_bottom_eff", -1), (this.effGrp.visible = !0)) + : (this.mouseMc.stop(), this.bottomMc.stop(), (this.effGrp.visible = !1)), + (this.chargeCount = s && s.Count); + var l = t.TQkyOx.ins().getActivityInfo(t.ISYR.firstCharge); + if (l) { + for (var h = 1; 4 > h; h++) { + var p = t.MathUtils.getValueAtBit(l.redDot, h); + this["redPoint" + h].visible = p > 0; + } + l.info.sum >= s.Count + ? ((this.label.visible = !0), + (this.receiveGroup.visible = t.MathUtils.getValueAtBit(l.info.state, e) > 0), + this.receiveGroup.visible ? ((this.btnGetGfit.visible = !1), (this.btnCharge.visible = !1)) : ((this.btnGetGfit.visible = !0), (this.btnCharge.visible = !1))) + : ((this.btnGetGfit.visible = !1), (this.btnCharge.visible = !0)); + } + }), + (i.prototype.updateInfo = function () { + this.showCurData(this.curDay); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnCharge: + t.RechargeMgr.ins().onPay(""); + break; + case this.btnGetGfit: + t.TQkyOx.ins().send_25_1(t.ISYR.firstCharge, t.Operate.cBuy, [this.curDay]); + break; + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btnDay1: + (this.btnDay1.selected = !0), (this.btnDay2.selected = !1), (this.btnDay3.selected = !1), this.showCurData(1), (this.curDay = 1); + break; + case this.btnDay2: + (this.btnDay2.selected = !0), (this.btnDay1.selected = !1), (this.btnDay3.selected = !1), this.showCurData(2), (this.curDay = 2); + break; + case this.btnDay3: + (this.btnDay3.selected = !0), (this.btnDay1.selected = !1), (this.btnDay2.selected = !1), this.showCurData(3), (this.curDay = 3); + } + }), + (i.prototype.close = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + this.$onClose(), + this.fEHj(this.btnCharge, this.onClick), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.btnGetGfit, this.onClick), + this.removeChangeEvent(this.btnDay1, this.onClick), + this.removeChangeEvent(this.btnDay2, this.onClick), + this.removeChangeEvent(this.btnDay3, this.onClick), + this.mouseMc && (this.mouseMc.destroy(), (this.mouseMc = null)); + this.bottomMc && (this.bottomMc.destroy(), (this.bottomMc = null)); + this.bottomBG && (this.bottomBG = null); + for (var i = 0; i < this.effArr.length; i++) { + var n = this.effArr[i]; + n.destroy(); + } + (this.effArr = null), this.itemEffGrp.removeChildren(); + }), + i + ); + })(t.gIRYTi); + (t.ActvityFirstChargeView = e), __reflect(e.prototype, "app.ActvityFirstChargeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), + (this.itemList.itemRenderer = t.ItemBase), + (this.scroller.horizontalScrollBar.autoVisibility = !1), + (this.scroller.horizontalScrollBar.visible = !1), + this.vKruVZ(this.btnSweep, this.onClick), + this.vKruVZ(this.btnChallenge, this.onClick); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var e = this.data; + if (e) { + var i = t.TQkyOx.ins().getActivityInfo(e.Id); + i && i.info + ? ((this.itemBg.source = e.bg ? e.bg + "_png" : "act_clfbbg_0_png"), + (this.itemTxt.source = e.titleIcon ? e.titleIcon : ""), + (this.btnSweep.visible = this.btnChallenge.visible = i.info.times >= 0), + (this.timeTxt.text = t.zlkp.replace(t.CrmPU.language_Common_64, i.info.times)), + (this.itemList.dataProvider = new eui.ArrayCollection(e.rewards))) + : ((this.itemBg.source = "act_clfbbg_0_png"), + (this.itemTxt.source = ""), + (this.btnSweep.visible = this.btnChallenge.visible = !1), + (this.timeTxt.text = ""), + (this.itemList.dataProvider = new eui.ArrayCollection(null))); + } + } + this.setRedDot(); + }), + (i.prototype.setRedDot = function () { + (this.redDot.visible = !1), (this.redDot2.visible = !1); + var e = this.data, + i = t.TQkyOx.ins().getActivityInfo(e.Id); + e.buttoncolor && i && i.redDot && ((this.redDot.visible = !0), (this.redDot2.visible = !0), this.redDot.setRedImg(e.buttoncolor), this.redDot2.setRedImg(e.buttoncolor)); + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.btnSweep, this.onClick), this.fEHj(this.btnChallenge, this.onClick); + }), + (i.prototype.onClick = function (e) { + switch (e.target) { + case this.btnSweep: + t.TQkyOx.ins().send_25_1(this.data.Id, t.Operate.cMaterialMopUp); + break; + case this.btnChallenge: + var i = t.NWRFmB.ins().getPayer; + i && + i.propSet && + (i.propSet.getState() & t.ActorState.DEATH + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips102) + : t.GameMap.fubenID > 0 + ? t.uMEZy.ins().IrCm(t.CrmPU.language_Tips106) + : t.TQkyOx.ins().send_25_1(this.data.Id, t.Operate.cEnterFuBen)); + } + }), + i + ); + })(t.BaseItemRender); + (t.ActivityMaterialItemView = e), __reflect(e.prototype, "app.ActivityMaterialItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.trace = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.DebugUtils.isDebug && ((e[0] = "[DebugLog]" + e[0]), debug.log.apply(console, e)); + }), + e + ); + })(); + (t.Log = e), __reflect(e.prototype, "app.Log"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.getAngle2 = function (t, e, i, n) { + var s = Math.abs(t - i), + a = Math.abs(e - n), + r = Math.sqrt(Math.pow(s, 2) + Math.pow(a, 2)), + o = a / r, + l = Math.acos(o), + h = Math.floor(180 / (Math.PI / l)); + return ( + i > t && n > e && (h = 180 - h), i == t && n > e && (h = 180), i > t && n == e && (h = 90), t > i && n > e && (h = 180 + h), t > i && n == e && (h = 270), t > i && e > n && (h = 360 - h), h + ); + }), + (t.getAngle = function (t) { + return (180 * t) / Math.PI; + }), + (t.getRadian = function (t) { + return (t / 180) * Math.PI; + }), + (t.getRadian2 = function (t, e, i, n) { + var s = i - t, + a = n - e; + return Math.atan2(a, s); + }), + (t.getDistance = function (t, e, i, n) { + var s = i - t, + a = n - e, + r = s * s + a * a; + return Math.sqrt(r); + }), + (t.getDistanceByObject = function (t, e) { + return this.getDistance(t.x, t.y, e.x, e.y); + }), + (t.getDistanceX2ByObject = function (t, e) { + var i = t.x - e.x, + n = t.y - e.y; + return i * i + n * n; + }), + (t.getDirMove = function (t, e, i, n) { + void 0 === i && (i = 0), void 0 === n && (n = 0); + var s = this.getRadian(t), + a = { + x: 0, + y: 0, + }; + return (a.x = Math.cos(s) * e + i), (a.y = Math.sin(s) * e + n), a; + }), + (t.limit = function (t, e) { + (t = Math.min(t, e)), (e = Math.max(t, e)); + var i = e - t; + return t + Math.random() * i; + }), + (t.limitInteger = function (t, e) { + return Math.round(this.limit(t, e)); + }), + (t.randomArray = function (t) { + var e = Math.floor(Math.random() * t.length); + return t[e]; + }), + (t.toInteger = function (t) { + return t >> 0; + }), + (t.getValueSAtBit = function (t, e, i, n) { + void 0 === i && (i = null), void 0 === n && (n = null), (e -= 1); + var s = e >> 5, + a = 31 & e; + return 1 & e && e > 1 ? n && n((t[s] >>> a) & 1) : i && i((t[s] >>> a) & 1), (t[s] >>> a) & 1; + }), + (t.getValueAtBit = function (t, e) { + return (t >> (e - 1)) & 1; + }), + (t.MakeLong64 = function (t, e) { + return t + 4294967296 * e; + }), + (t.GetPercent = function (t, e) { + return isNaN(t) || isNaN(e) ? "0%" : 0 >= e ? "0%" : Math.round((t / e) * 1e4) / 100 + "%"; + }), + (t.getValueBitByArr = function (t, e) { + var i = e >> 5, + n = 31 & e; + return Boolean((t[i] >>> n) & 1); + }), + t + ); + })(); + (t.MathUtils = e), __reflect(e.prototype, "app.MathUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t(t, e) { + void 0 === e && (e = 20), (this.dataSource = t), (this.size = e), (this.currentPage = 0), this.setPageData(); + } + return ( + Object.defineProperty(t.prototype, "length", { + get: function () { + return this.dataSource.length; + }, + enumerable: !0, + configurable: !0, + }), + (t.prototype.setPageData = function () { + this.pageData = []; + for (var t = this.currentPage * this.size, e = (this.currentPage + 1) * this.size, i = Math.min(this.length, e), n = t; i > n; n++) this.pageData.push(this.dataSource[n]); + }), + (t.prototype.getDataSource = function () { + return this.dataSource; + }), + Object.defineProperty(t.prototype, "totalPage", { + get: function () { + return Math.ceil(this.length / this.size); + }, + enumerable: !0, + configurable: !0, + }), + (t.prototype.havePre = function () { + return 0 != this.currentPage; + }), + (t.prototype.haveNext = function () { + return this.currentPage < this.totalPage - 1; + }), + (t.prototype.prev = function () { + this.currentPage--, this.setPageData(); + }), + (t.prototype.next = function () { + this.currentPage++, this.setPageData(); + }), + (t.prototype.first = function () { + (this.currentPage = 0), this.setPageData(); + }), + (t.prototype.last = function () { + (this.currentPage = this.totalPage - 1), this.setPageData(); + }), + (t.prototype.gotoPage = function (t) { + this.totalPage < t || ((this.currentPage = t - 1), this.setPageData()); + }), + t + ); + })(); + (t.PageArray = e), __reflect(e.prototype, "app.PageArray"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function t() {} + return ( + (t.LINE_BREAK = /\r+/g), + (t.BLANK_REG = /[\s\\]/g), + (t.ARGB_COLOR = /[a-fA-F0-9]{8}/), + (t.HTML = /<[^>]+>/g), + (t.DELETE_SPACE = /\s/g), + (t.REPLACE_STRING = /%s/g), + (t.NumericExp = /^\d+$/), + (t.NonNumericExp = /\D/), + (t.ActorNameExp = /^([\u4e00-\u9fa5]?\w?[^>|!@#$%&*\^\?]){1,48}$/), + t + ); + })(); + (t.RegExpUtil = e), __reflect(e.prototype, "app.RegExpUtil"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return ( + (t._groupIndex = 0), + (t._configs = new Array()), + (t._groups = {}), + (t._urlResorce = {}), + RES.addEventListener(RES.ResourceEvent.GROUP_COMPLETE, t.onResourceLoadComplete, t), + RES.addEventListener(RES.ResourceEvent.GROUP_PROGRESS, t.onResourceLoadProgress, t), + RES.addEventListener(RES.ResourceEvent.GROUP_LOAD_ERROR, t.onResourceLoadError, t), + t + ); + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.addConfig = function (t, e) { + this._configs.push([t, e]); + }), + (i.prototype.loadConfig = function (t, e) { + (this._onConfigComplete = t), (this._onConfigCompleteTarget = e), this.loadNextConfig(); + }), + (i.prototype.loadNextConfig = function () { + if (0 == this._configs.length) return this._onConfigComplete.call(this._onConfigCompleteTarget), (this._onConfigComplete = null), void (this._onConfigCompleteTarget = null); + var t = this._configs.shift(); + RES.addEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigCompleteHandle, this), RES.loadConfig(t[0], t[1]); + }), + (i.prototype.onConfigCompleteHandle = function (t) { + RES.removeEventListener(RES.ResourceEvent.CONFIG_COMPLETE, this.onConfigCompleteHandle, this), this.loadNextConfig(); + }), + (i.prototype.loadGroup = function (t, e, i, n) { + (this._groups[t] = [e, i, n]), RES.loadGroup(t); + }), + (i.prototype.loadGroups = function (t, e, i, n, s) { + RES.createGroup(t, e, !0), this.loadGroup(t, i, n, s); + }), + (i.prototype.pilfererLoadGroup = function (t, e) { + void 0 === e && (e = null); + var i = "pilferer_" + t; + e || (e = [t]), RES.createGroup(i, e, !0), RES.loadGroup(i, -1); + }), + (i.prototype.onResourceLoadComplete = function (t) { + var e = t.groupName; + if (this._groups[e]) { + var i = this._groups[e][0], + n = this._groups[e][2]; + null != i && i.call(n), (this._groups[e] = null), delete this._groups[e]; + } + }), + (i.prototype.onResourceLoadProgress = function (t) { + var e = t.groupName; + if (this._groups[e]) { + var i = this._groups[e][1], + n = this._groups[e][2]; + null != i && i.call(n, t.itemsLoaded, t.itemsTotal); + } + }), + (i.prototype.onResourceLoadError = function (e) { + return ( + t.Log.trace(e.groupName + "资源组有资源加载失败"), + "preload" == e.groupName + ? ((t.bqQT.ins().preload_load_count += 1), + 1 == t.bqQT.ins().preload_load_count && Assert(!1, t.zlkp.replace(t.CrmPU.language_Error_9, e.groupName, t.bqQT.ins().preload_load_count)), + void (t.bqQT.ins().preload_load_count < 3 ? RES.loadGroup(e.groupName) : t.CommonPopView.ins().showTextView(t.CrmPU.language_Alert_2))) + : void this.onResourceLoadComplete(e) + ); + }), + (i.prototype.loadResource = function (t, e, i, n, s) { + void 0 === t && (t = []), void 0 === e && (e = []), void 0 === i && (i = null), void 0 === n && (n = null), void 0 === s && (s = null); + var a = t.concat(e), + r = "loadGroup" + this._groupIndex++; + RES.createGroup(r, a, !0), (this._groups[r] = [i, n, s]), RES.loadGroup(r); + }), + i + ); + })(t.BaseClass); + (t.ResourceUtils = e), __reflect(e.prototype, "app.ResourceUtils"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(t) { + var i = e.call(this) || this; + return i.setSize(t), i; + } + return ( + __extends(i, e), + (i.prototype.setSize = function (t) { + (this.radius = t), (this.shape = new egret.Sprite()); + var e = this.shape.graphics; + e.clear(), + e.beginFill(0, 0.9), + e.drawCircle(0, 0, t), + e.endFill(), + this.addChild(this.shape), + (this.maskShape = new egret.Shape()), + this.maskShape.graphics.clear(), + this.maskShape.graphics.beginFill(0, 0.7), + this.maskShape.graphics.drawCircle(0, 0, t), + this.maskShape.graphics.endFill(), + this.addChild(this.maskShape), + (this.shape.mask = this.maskShape), + (this.touchEnabled = !1), + (this.touchChildren = !1), + (this.visible = !1); + }), + (i.prototype.play3 = function (e, i, n) { + return ( + (e *= 1e3), + (this.visible = !0), + this.skillMC || ((this.skillMC = new t.MovieClip()), (this.skillMC.touchEnabled = !1), (this.skillMC.x = 0), (this.skillMC.y = 0), (this.skillMC.visible = !0), this.addChild(this.skillMC)), + i + 20 >= e + ? (this.maskShape.graphics.clear(), (this.shape.visible = !1), void this.playSkillKeyEff("jnjh1")) + : void ( + n && + ((this.shape.visible = !0), + this.maskShape.graphics.clear(), + this.maskShape.graphics.beginFill(0, 0.7), + this.maskShape.graphics.moveTo(0, 0), + this.maskShape.graphics.lineTo(this.radius, 0), + this.maskShape.graphics.drawArc(0, 0, this.radius, (i / e) * 2 * Math.PI - Math.PI / 2, 2 * Math.PI - Math.PI / 2), + this.maskShape.graphics.lineTo(0, 0), + this.maskShape.graphics.endFill()) + ) + ); + }), + (i.prototype.stop = function () { + this.maskShape.graphics.clear(), (this.shape.visible = !1); + }), + (i.prototype.playSkillKeyEff = function (e) { + var i = this; + this.skillMC.playFile(ZkSzi.RES_DIR_EFF + e, 1, function () { + t.lEYZI.Naoc(i.skillMC), (i.skillMC = null); + }); + }), + i + ); + })(eui.Group); + (t.ShortcutCD = e), __reflect(e.prototype, "app.ShortcutCD"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (t) { + function e() { + var e = t.call(this) || this; + return (e._Scale = 1), e; + } + return ( + __extends(e, t), + (e.ins = function () { + return t.ins.call(this); + }), + (e.prototype.setUIStage = function (t) { + e._uiStage = t; + }), + (e.prototype.getHeight = function () { + return this.getStage().stageHeight; + }), + (e.prototype.getWidth = function () { + return this.getStage().stageWidth; + }), + (e.prototype.setTouchChildren = function (t) { + this.getStage().touchChildren = t; + }), + (e.prototype.setMaxTouches = function (t) { + this.getStage().maxTouches = t; + }), + (e.prototype.setFrameRate = function (t) { + this.getStage().frameRate = t; + }), + (e.prototype.setScaleMode = function (t) { + this.getStage().scaleMode = t; + }), + (e.prototype.getStage = function () { + return egret.MainContext.instance.stage; + }), + (e.prototype.getUIStage = function () { + return e._uiStage; + }), + (e.prototype.getScale = function () { + return this._Scale; + }), + (e.prototype.setScale = function (t) { + this._Scale = t; + }), + e + ); + })(t.BaseClass); + (t.aTwWrO = e), __reflect(e.prototype, "app.aTwWrO"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.trimSpace = function (t) { + return t.replace(/^\s*(.*?)[\s\n]*$/g, "$1"); + }), + (e.getStringLength = function (t) { + for (var e = t.split(""), i = 0, n = 0; n < e.length; n++) { + var s = e[n]; + i += this.isChinese(s) ? 2 : 1; + } + return i; + }), + (e.isChinese = function (t) { + var e = /^[\u4E00-\u9FA5]+$/; + return e.test(t) ? !1 : !0; + }), + (e.strByteLen = function (t) { + for (var e = 0, i = t.length, n = 0; i > n; n++) e += t.charCodeAt(n) >= 127 ? 2 : 1; + return e; + }), + (e.complementByChar = function (t, i, n, s) { + void 0 === n && (n = " "), void 0 === s && (s = !0); + var a = this.strByteLen(s ? t.replace(e.HTML, "") : t); + return t + this.repeatStr(n, i - a); + }), + (e.repeatStr = function (t, e) { + for (var i = "", n = 0; e > n; n++) i += t; + return i; + }), + (e.addColor = function (t, e) { + var i; + return "string" == typeof e ? (i = String(e)) : "number" == typeof e && (i = Number(e).toString(10)), "|C:" + i + "&T:" + t + "|"; + }), + (e.addColor1 = function (t, e) { + var i = new Object(); + return (i.style = new Object()), (i.text = t), (i.textColor = Number(e).toString(16)), i; + }), + (e.substitute = function (e) { + for (var i = [], n = 1; n < arguments.length; n++) i[n - 1] = arguments[n]; + var s = t.RegExpUtil.REPLACE_STRING, + a = e.match(s); + if (a && a.length) for (var r = a.length, o = 0; r > o; o++) e = e.replace(a[o], i[o]); + return e; + }), + (e.replaceStr = function (t, e, i) { + if (-1 == t.indexOf(e)) return t; + var n = t.split(e); + return n[0] + i + n[1]; + }), + (e.replaceStrColor = function (t, e) { + for (var i = t.indexOf("0x"), n = i, s = "", a = ""; -1 != n; ) (s = t.substring(i, i + 8)), (t = t.replace(s, e)), (i += 8), (a = t.substring(i)), (n = a.indexOf("0x")), (i += n); + return t; + }), + (e.replace = function (t) { + for (var e = [], i = 1; i < arguments.length; i++) e[i - 1] = arguments[i]; + for (var n = 0; n < e.length; n++) t = t.replace("%s", e[n] + ""); + return t; + }), + (e.getStrByRegExp = function (t, e) { + void 0 === e && (e = /\d+/g); + var i = []; + t.replace(e, function () { + return i.push(arguments[0]), "number" == typeof arguments[0] ? arguments[0].toString() : arguments[0]; + }); + return i; + }), + (e.ChineseToNumber = function (t) { + for (var i = 0, n = 0, s = 0, a = !1, r = t.split(""), o = 0; o < r.length; o++) { + var l = e.chnNumCharCN[r[o]]; + if ("undefined" != typeof l) (s = l), o === r.length - 1 && (n += s); + else { + var h = e.chnNameValueCN[r[o]].value; + (a = e.chnNameValueCN[r[o]].secUnit), a ? ((n = (n + s) * h), (i += n), (n = 0)) : (n += s * h), (s = 0); + } + } + return i + n; + }), + (e.NumberToChinese = function (i) { + var n = 0, + s = "", + a = "", + r = !1, + o = t.CrmPU.chnNumChar, + l = t.CrmPU.chnUnitSection; + if (0 === i) return o[0]; + for (; i > 0; ) { + var h = i % 1e4; + r && (a = o[0] + a), (s = e.SectionToChinese(h)), (s += 0 !== h ? l[n] : l[0]), (a = s + a), (r = 1e3 > h && h > 0), (i = Math.floor(i / 1e4)), n++; + } + return a; + }), + (e.SectionToChinese = function (e) { + for (var i = "", n = "", s = 0, a = !0, r = t.CrmPU.chnNumChar, o = t.CrmPU.chnUnitChar; e > 0; ) { + var l = e % 10; + 0 === l ? a || ((a = !0), (n = r[l] + n)) : ((a = !1), (i = r[l]), (i += o[s]), (n = i + n)), s++, (e = Math.floor(e / 10)); + } + return n; + }), + (e.HTML = /<[^>]+>/g), + (e.chnNumCharCN = { + 零: 0, + 一: 1, + 二: 2, + 三: 3, + 四: 4, + 五: 5, + 六: 6, + 七: 7, + 八: 8, + 九: 9, + }), + (e.chnNameValueCN = { + 十: { + value: 10, + secUnit: !1, + }, + 百: { + value: 100, + secUnit: !1, + }, + 千: { + value: 1e3, + secUnit: !1, + }, + 万: { + value: 1e4, + secUnit: !0, + }, + 亿: { + value: 1e8, + secUnit: !0, + }, + }), + e + ); + })(); + (t.zlkp = e), __reflect(e.prototype, "app.zlkp"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function () { + function e() {} + return ( + (e.qYVI = function (t) { + if (!t) return new egret.HtmlTextParser().parser(""); + -1 == t.indexOf("") && ((t = t.replace(//g, ">"))); + for (var i, n = t.split("|"), s = "", a = 0, r = n.length; r > a; a++) s += e.getSingleTextFlow1(n[a]); + try { + i = new egret.HtmlTextParser().parser(s); + } catch (o) { + return console.log("错误的HTML输入"), new egret.HtmlTextParser().parser(""); + } + return i; + }), + (e.generateTextFlow1 = function (t) { + if (!t) return new egret.HtmlTextParser().parser(""); + for (var i = t.split("|"), n = [], s = 0, a = i.length; a > s; s++) { + var r = e.getSingleTextFlow(i[s]); + r.text && "" != r.text && n.push(r); + } + return n; + }), + (e.getSingleTextFlow1 = function (t) { + var i = t.split("&T:", 2); + if (2 == i.length) { + for (var n = " o; o++) + switch (((a = s[o].split(":")), a[0])) { + case e.STYLE_SIZE: + n += ' size="' + Math.floor(+a[1]) + '"'; + break; + case e.STYLE_COLOR: + n += ' color="' + Math.floor(+a[1]) + '"'; + break; + case e.UNDERLINE_TEXT: + r = !0; + } + return (n += r ? ">" + i[1] + "
" : ">" + i[1] + "
"); + } + return "" + t + ""; + }), + (e.getSingleTextFlow = function (t) { + var i = t.split("&T:", 2), + n = { + style: {}, + }; + if (2 == i.length) { + for (var s = (i[0], t.split("&")), a = void 0, r = 0, o = s.length; o > r; r++) + switch (((a = s[r].split(":")), a[0])) { + case e.STYLE_SIZE: + n.style.size = +a[1]; + break; + case e.STYLE_COLOR: + n.style.textColor = +a[1]; + break; + case e.UNDERLINE_TEXT: + n.style.underline = !0; + break; + case e.EVENT: + n.style.href = "event:" + a[1]; + } + n.text = i[1]; + } else n.text = t; + return n; + }), + (e.getCStr = function (e) { + var i = t.CrmPU["language_Chine_Number_" + e]; + return i ? i : ""; + }), + (e.STYLE_COLOR = "C"), + (e.STYLE_SIZE = "S"), + (e.PROP_TEXT = "T"), + (e.UNDERLINE_TEXT = "U"), + (e.EVENT = "E"), + e + ); + })(); + (t.hETx = e), __reflect(e.prototype, "app.hETx"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.costMoney = 0), (i.curMoney = 0), (i.curstate = 0), (i.skinName = "ViolentStateWinSkin"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.tabList.itemRenderer = t.TradeLineTabView), + (this.strList.itemRenderer = t.ResonateItem2Render), + this.dragDropUI.setParent(this), + this.dragDropUI.setTitle(t.CrmPU.language_Omission_txt76); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + (this.tabList.dataProvider = new eui.ArrayCollection([ + { + name: t.CrmPU.language_Omission_txt74, + }, + { + name: t.CrmPU.language_Omission_txt75, + }, + ])), + this.tabList.addEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + (this.tabList.selectedIndex = 0), + this.setMoneyCost(), + this.vKruVZ(this.openViolen, this.onClick), + this.vKruVZ(this.payBtn, this.onClick), + this.vKruVZ(this.openBtn, this.onClick), + this.HFTK(t.Nzfh.ins().post_playerViolentChange, this.updateStateTips), + this.HFTK(t.Nzfh.ins().postMoneyChange, this.setMoneyCost), + this.updateCurState(), + this.updateList(0); + }), + (i.prototype.setMoneyCost = function () { + var e = t.VlaoF.RageconstConfig.RagePrice; + if (e && e[0]) { + var i = e[0], + n = t.ZAJw.sztgR(i.type, i.id), + s = t.ZAJw.MPDpiB(i.type, i.id); + if (n) { + (this.costMoney = i.count), (this.curMoney = s); + var a = s >= i.count ? t.ClwSVR.GREEN_COLOR : t.ClwSVR.NAME_RED, + b = t.VlaoF.RageconstConfig.RageCardLv, + c = ["", "白卡", "绿卡", "蓝卡", "紫卡", "橙卡"], + l = t.VipData.ins().getMyVipLv(), + lc = l >= b ? "0x28ee01" : "0xe50000"; + this.expendMoney.textFlow = t.hETx.qYVI((0 < b ? "会员条件: |C:" + lc + "&T:" + c[b] + "| " : "") + t.CrmPU.language_Omission_txt4 + n[0] + ": |C:" + a + "&T:" + s + "|/" + i.count); + } + } + }), + (i.prototype.updateStateTips = function () { + this.updateCurState(), 1 == this.curstate && t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt73); + }), + (i.prototype.updateCurState = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + this.curstate = e.propSet.getViolent(); + var i = 1 == this.curstate ? "|C:0x28ee01&T:" + t.CrmPU.language_Omission_txt77 + "|" : "|C:0xe50000&T:" + t.CrmPU.language_Omission_txt78 + "|"; + this.curState.textFlow = t.hETx.qYVI("" + t.CrmPU.language_Omission_txt79 + i); + } + }), + (i.prototype.onChange = function (t) { + (this.tabList.selectedIndex = t.itemIndex), this.updateList(t.itemIndex); + }), + (i.prototype.updateList = function (e) { + var i = t.VlaoF.RageconstConfig; + 0 == e + ? ((this.moneyGrp.visible = !0), + (this.openBtn.visible = !1), + (this.payBtn.visible = !0), + i && ((this.titleLab.textFlow = t.hETx.qYVI(i.title1)), (this.strList.dataProvider = new eui.ArrayCollection(i.text1)))) + : 1 == e && + ((this.moneyGrp.visible = !1), + (this.openBtn.visible = !0), + (this.payBtn.visible = !1), + i && ((this.titleLab.textFlow = t.hETx.qYVI(i.title2)), (this.strList.dataProvider = new eui.ArrayCollection(i.text2)))); + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.openViolen: + case this.openBtn: + 0 != this.costMoney && + (0 == this.curstate + ? this.curMoney >= this.costMoney + ? t.edHC.ins().send_26_64() + : t.mAYZL.ins().open(t.TipsInsuffResourcesView, ZnGy.qatYuanbao) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt72)); + break; + case this.payBtn: + t.mAYZL.ins().ZbzdY(t.ActvityFirstChargeView) || t.mAYZL.ins().open(t.ActvityFirstChargeView); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.tabList.removeEventListener(eui.ItemTapEvent.ITEM_TAP, this.onChange, this), + this.fEHj(this.openViolen, this.onClick), + this.fEHj(this.payBtn, this.onClick), + this.fEHj(this.openBtn, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.ViolentStateWin = e), __reflect(e.prototype, "app.ViolentStateWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._vipLvMax = -1), t; + } + return ( + __extends(i, e), + (i.ins = function () { + return e.ins.call(this); + }), + (i.prototype.getVipConfig = function () { + if (this.vipConfig) return this.vipConfig; + this.vipConfig = {}; + var e = t.VlaoF.MonthCardConfig; + for (var i in e) e[i] && e[i].superRightLV && e[i].superRightLV > -1 && (this.vipConfig[e[i].superRightLV] = e[i]); + return this.vipConfig; + }), + (i.prototype.getVipDataByLv = function (t) { + var e = this.getVipConfig(); + return e[t]; + }), + (i.prototype.getMyVipLv = function () { + var e = t.NWRFmB.ins().getPayer; + if (e && e.propSet) { + var i = e.propSet.getVipState(); + if (i) return this.getVipLv(i); + } + return 0; + }), + (i.prototype.getVipLv = function (e) { + for (var i = 0, n = this.getMaxLv(), s = 0; n > s; s++) { + var a = t.MathUtils.getValueAtBit(e, s + 4); + a && (i = s + 1); + } + return i; + }), + (i.prototype.getMaxLv = function () { + if (this._vipLvMax < 0) { + var t = i.ins().getVipConfig(); + this._vipLvMax = 0; + for (var e in t) this._vipLvMax++; + } + return this._vipLvMax; + }), + i + ); + })(t.DlUenA); + (t.VipData = e), __reflect(e.prototype, "app.VipData"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._itemID = 0), + (i._shopCfg = null), + (i.pos = null), + (i.size = null), + (i.curNum = 0), + (i.needCount = 0), + (i._buyNum = 0), + (i._hashCode = 0), + (i.skinName = "VipGaimItemWinSKin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e && + (e[0] && + ((this._itemID = e[0].itemid), + (this.curNum = t.ThgMu.ins().getItemCountById(this._itemID)), + e[0].needCount > 0 && (this.needCount = e[0].needCount), + (this.isMax = e[0].isMax), + this.isMax || (this._buyNum = this.needCount - this.curNum), + this._buyNum < 0 && (this._buyNum = 0)), + e[1] && (this.pos = e[1]), + e[2] && (this.size = e[2]), + e[3] && (this._hashCode = e[3])), + (this.consumeImg.source = this.consumeImg2.source = t.VlaoF.StdItems[this._itemID].icon + ""), + (this.consumeLab.text = t.CrmPU.language_Common_255 + ":"), + (this.consumeLab2.text = this.curNum + ""), + (this.consumeLab3.text = t.CrmPU.language_Common_256 + ":"), + (this.consumeLab4.text = this._buyNum + ""), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.buyBtn, this.onClick), + this.VoZqXH(this.itemIcon, this.mouseMove), + this.EeFPm(this.itemIcon, this.mouseMove), + this.VoZqXH(this.consumeImg, this.mouseMove), + this.EeFPm(this.consumeImg, this.mouseMove), + this.VoZqXH(this.consumeImg2, this.mouseMove), + this.EeFPm(this.consumeImg2, this.mouseMove), + this.HFTK(t.Nzfh.ins().post_gaimItemView, this.closeView), + this.setData(); + }), + (i.prototype.closeView = function (e) { + e == this._hashCode && t.mAYZL.ins().close(this); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), this.pos && this.size && this.setPos(); + }), + (i.prototype.setPos = function () { + var t = this.formatView(0, 0.5 * this.size.width); + isNaN(t) || (this.x = this.pos.x + Math.round((this.size.width - this.width) / 2 + t)); + var e = this.formatView(0, 0.5 * this.size.height); + isNaN(e) || (this.y = this.pos.y + Math.round((this.size.height - this.height) / 2 + e)); + }), + (i.prototype.formatView = function (t, e) { + if (!t || "number" == typeof t) return t; + var i = t, + n = i.indexOf("%"); + if (-1 == n) return +i; + var s = +i.substring(0, n); + return 0.01 * s * e; + }), + (i.prototype.setData = function () { + if (0 != this._itemID) { + var e = t.VlaoF.StdItems[this._itemID]; + e && + ((this.itemBg.source = "quality_" + e.showQuality), + (this.itemIcon.source = e.icon + ""), + (this.itemName.text = e.name + ""), + (this.itemNu.source = e.iseffect ? "yan_" + e.iseffect : ""), + (this.itemNu.visible = e.iseffect ? !0 : !1)); + var i = t.VlaoF.GetItemRouteConfig[this._itemID]; + if (i && ((this.itemDesc.textFlow = t.hETx.qYVI(t.zlkp.replace(i.itemdesc, this.needCount))), i.shopid && i.shopid.shoptype && i.shopid.Tabshop && i.shopid.shopid)) { + var n = i.shopid.shoptype, + s = i.shopid.Tabshop, + a = i.shopid.shopid; + if (((this._shopCfg = t.VlaoF.ShopConfig[n][s][a]), this._shopCfg)) { + this.itemDesc2.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_258, this._buyNum * this._shopCfg.price.count, this._buyNum, e.name)); + var r = t.ZAJw.sztgR(this._shopCfg.price.type, this._shopCfg.price.id); + r && (this.priceLab.textFlow = t.hETx.qYVI(t.CrmPU.language_Omission_txt122 + ":|C:0x28ee01&T:" + this._shopCfg.price.count + r[0] + "|")); + } + } + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.buyBtn: + if (this.isMax) return t.uMEZy.ins().IrCm(t.CrmPU.language_Tips148), void t.mAYZL.ins().close(this); + if (this._buyNum <= 0) return void t.mAYZL.ins().close(this); + this._shopCfg + ? (t.ShopMgr.ins().sendBuyShop(this._shopCfg.shoptype, this._shopCfg.Tabshop, this._shopCfg.shopid, 0, this._buyNum), t.mAYZL.ins().close(this)) + : t.uMEZy.ins().IrCm(t.CrmPU.language_Omission_txt81); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget.localToGlobal(); + switch (e.currentTarget) { + case this.itemIcon: + case this.consumeImg: + case this.consumeImg2: + var n = t.VlaoF.StdItems[this._itemID]; + n && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: i.x + e.currentTarget.width, + y: i.y, + }); + } + i = null; + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + (this._hashCode = -1), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.buyBtn, this.onClick), + this.lbpdAJ(this.itemIcon, this.mouseMove), + this.lvpAF(this.itemIcon, this.mouseMove), + this.lbpdAJ(this.consumeImg, this.mouseMove), + this.lvpAF(this.consumeImg, this.mouseMove), + this.lbpdAJ(this.consumeImg2, this.mouseMove), + this.lvpAF(this.consumeImg2, this.mouseMove); + }), + i + ); + })(t.gIRYTi); + (t.VipGaimItemWin = e), __reflect(e.prototype, "app.VipGaimItemWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.isAddmouseMove = !0), t; + } + return ( + __extends(i, e), + (i.prototype.$onRemoveFromStage = function () { + (this.isAddmouseMove = !0), this.lvpAF(this.nameBg, this.mouseMove), this.lbpdAJ(this.nameBg, this.mouseMove), e.prototype.$onRemoveFromStage.call(this); + }), + (i.prototype.dataChanged = function () { + var t = this.data; + this.isAddmouseMove && ((this.isAddmouseMove = !1), this.VoZqXH(this.nameBg, this.mouseMove), this.EeFPm(this.nameBg, this.mouseMove)), (this.lbVipName.text = t.tequan); + for (var e = [t.baika, t.lvka, t.lanka, t.zika, t.chengka], i = 0; i < e.length; i++) { + var n = e[i]; + this.setShow(n, this["lbVip" + (i + 1)], this["flagVip" + (i + 1)]); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else if (this.data.tips) { + var i = e.currentTarget.localToGlobal(); + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_BUFF, this.data.tips, { + x: i.x + 140, + y: i.y, + }), + (i = null); + } + }), + (i.prototype.setShow = function (t, e, i) { + (e.visible = !1), (i.visible = !1), 1 === t || 2 === t ? ((i.source = 1 == t ? "tq_sf_s" : "tq_sf_f"), (i.visible = !0)) : ((e.text = t), (e.visible = !0)); + }), + i + ); + })(t.BaseItemRender); + (t.VipItemView = e), __reflect(e.prototype, "app.VipItemView"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.curentShowLv = 0), (i.curentLv = 0), (i.idx = 4), (i.skinName = "VipViewSkin"), (i.name = "VipView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), (this.itemList.itemRenderer = t.ItemBase), (this.gList.itemRenderer = t.VipItemView); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + for (; e[0] instanceof Array; ) e = e[0]; + e[0] && (this.curentShowLv = e[0]), + (this.bar.labelFunction = function (t, e) { + return t + "/" + e; + }), + t.MouseScroller.bind(this.scroller), + this.vKruVZ(this.btnClose, this.onClick), + this.vKruVZ(this.btn_prev, this.onClick), + this.vKruVZ(this.btn_next, this.onClick), + this.vKruVZ(this.btnBuy, this.onClick), + this.vKruVZ(this.btnBuy2, this.onClick), + this.vKruVZ(this.btnViptq, this.onClick), + this.vKruVZ(this.btncharge, this.onClick), + this.vKruVZ(this.btncharge2, this.onClick), + this.vKruVZ(this.btnWelfare, this.onClick), + this.VoZqXH(this.moneyImg, this.mouseMove), + this.EeFPm(this.moneyImg, this.mouseMove), + this.VoZqXH(this.moneyImg2, this.mouseMove), + this.EeFPm(this.moneyImg2, this.mouseMove), + this.togBtnVipWel.addEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + this.togBtnViptq.addEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + this.HFTK(t.Nzfh.ins().post_g_0_7, this.updateVipData), + t.ckpDj.ins().addEvent(t.CompEvent.ITEM_NUM_UPDATE, this.updateItem, this), + this.showCurViplevel(), + (this.togBtnVipWel.selected = !0), + (this.togBtnViptq.selected = !1), + (this.groupWelfare2.visible = !1), + this.showNextLevelData(this.curentShowLv); + }), + (i.prototype.changeHandler = function (t) { + t.target == this.togBtnVipWel ? this.showVipWel() : this.showViptq(); + }), + (i.prototype.showVipWel = function () { + (this.togBtnVipWel.selected = !0), (this.togBtnViptq.selected = !1), (this.groupWelfare.visible = !0), (this.groupTq.visible = !1); + }), + (i.prototype.showViptq = function () { + (this.togBtnViptq.selected = !0), (this.togBtnVipWel.selected = !1), (this.groupWelfare.visible = !1), (this.groupTq.visible = !0), this.showVipList(); + }), + (i.prototype.showVipadvertq = function () { + var e = t.VipData.ins().getVipDataByLv(this.getMaxLv()); + e && + e.heraldid && + ((this.imgWelfare.source = e.heraldid), + (this.togBtnVipWel.visible = !1), + (this.togBtnViptq.visible = !1), + (this.ImgTabBgleft.visible = !1), + (this.ImgTabBgRigth.visible = !1), + (this.groupWelfare.visible = !1), + (this.groupWelfare2.visible = !0)); + }), + (i.prototype.updateVipData = function () { + this.curentLv != t.VipData.ins().getMyVipLv() && (this.showCurViplevel(), this.showNextLevelData(this.curentShowLv)); + }), + (i.prototype.updateItem = function (t) { + this.consume && this.consume.id == t && this.showTitleData(this.curentLv + 1); + }), + (i.prototype.showCurViplevel = function () { + (this.curentLv = t.VipData.ins().getMyVipLv()), + (this.curentShowLv = this.curentLv == this.getMaxLv() ? this.curentLv : this.curentLv + 1), + this.showTitleData(this.curentLv + 1), + this.curentLv > 5 + ? ((this.iconVip.visible = !1), + (this.effVipGrp.visible = !0), + this.vipMc || ((this.vipMc = t.ObjectPool.pop("app.MovieClip")), this.effVipGrp.addChild(this.vipMc)), + 6 == this.curentLv ? this.vipMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cxhy1", -1, null, !1) : 7 == this.curentLv && this.vipMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cyhy1", -1, null, !1)) + : ((this.iconVip.source = "tq_icon_" + this.curentLv), (this.iconVip.visible = !0), (this.effVipGrp.visible = !1)); + }), + (i.prototype.showTitleData = function (e) { + e = e > this.getMaxLv() ? this.getMaxLv() : e; + var i = t.VipData.ins().getVipDataByLv(e); + i && (1 == i.ViewType ? this.updateVipView1(i) : 2 == i.ViewType ? this.updateVipView2(i) : this.updateVipView1(i)); + }), + (i.prototype.updateVipView1 = function (e) { + var i = 0, + n = 0, + s = 0, + a = 0, + r = t.CrmPU.language_CURRENCY_NAME_2, + o = { + 1: 16777215, + 2: 3061037, + 3: 26367, + 4: 16718530, + 5: 16742144, + 6: 16742144, + }, + l = t.NWRFmB.ins().nkJT(); + if (l && l.propSet) { + var h = l.propSet; + (i = h.getNotBindYuanBao()), (n = h.getBindYuanBao()); + } + if (e.Ylprice) { + var p = e.Ylprice - i, + u = e.Ybprice - n; + (s = p > u ? e.Ylprice : e.Ybprice), (a = p > u ? n : i); + var c = t.CrmPU.language_System25[2], + g = t.CrmPU.language_CURRENCY_NAME_2; + this.lbNeedMoney.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt53, e.Ybprice, g, e.Ylprice, c, o[e.superRightLV], e.name)); + } else { + (s = e.Ybprice), (a = i), (r = t.CrmPU.language_CURRENCY_NAME_2); + this.lbNeedMoney.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt48, s, r, o[e.superRightLV], e.name)); + } + (this.bar.maximum = s), (this.bar.value = a), (this.btncharge.visible = !0), (this.btncharge2Grp.visible = !1), (this.btnBuy2Grp.visible = !1); + }), + (i.prototype.updateVipView2 = function (e) { + var i = e.consume; + this.consume = i; + var n = t.VlaoF.StdItems[i.id], + s = { + 1: 16777215, + 2: 3061037, + 3: 26367, + 4: 16718530, + 5: 16742144, + 6: 16742144, + }; + this.lbNeedMoney.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt147, i.count + t.CrmPU.language_Common_38, n.name, s[e.superRightLV], e.name)); + var a = t.ZAJw.MPDpiB(i.type, i.id); + (this.bar.maximum = i.count), + (this.bar.value = a), + (this.moneyLab.text = t.CrmPU.language_Common_252), + (this.moneyImg.source = this.moneyImg2.source = t.ZAJw.sztgR(i.type, i.id)[1] + ""), + (this.moneyLab2.text = "*" + a), + a < i.count ? (this.moneyLab3.textFlow = t.hETx.qYVI("|C:0xe50000&T:" + a + "|/" + i.count)) : (this.moneyLab3.textFlow = t.hETx.qYVI("|C:0x28ee01&T:" + a + "|/" + i.count)), + (this.moneyLab4.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Omission_txt174, s[e.superRightLV], e.name))), + (this.btncharge.visible = !1), + (this.btncharge2Grp.visible = !0), + (this.btnBuy.visible = !1); + }), + (i.prototype.showNextLevelData = function (e) { + e = e > this.getMaxLv() ? this.getMaxLv() : e; + var i = t.VipData.ins().getVipDataByLv(e); + if (i) { + if ( + ((this.idx = i.idx), + t.VipData.ins().getMyVipLv() >= i.superRightLV + ? ((this.btnBuy.visible = !1), (this.btnBuy2Grp.visible = !1), (this.imgGet.visible = !0)) + : (1 == i.ViewType ? (this.btnBuy.visible = !0) : 2 == i.ViewType && (this.btnBuy2Grp.visible = !0), (this.imgGet.visible = !1)), + this.showGoodsList(i.buyAward), + i.pictures) + ) + for (var n = 0; n < i.pictures.length; n++) { + var s = i.pictures[n]; + this["icon_Vip" + n].source = s + "_png"; + } + e > 5 + ? ((this.iconTitle.visible = !1), + (this.effTitleGrp.visible = !0), + this.titleMc || ((this.titleMc = t.ObjectPool.pop("app.MovieClip")), this.effTitleGrp.addChild(this.titleMc)), + 6 == e ? this.titleMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cxhy2", -1, null, !1) : 7 == e && this.titleMc.playFileEff(ZkSzi.RES_DIR_EFF + "eff_cyhy2", -1, null, !1)) + : ((this.iconTitle.source = "tq_jlt" + e), (this.iconTitle.visible = !0), (this.effTitleGrp.visible = !1)); + } + }), + (i.prototype.showGoodsList = function (t) { + var e = new eui.ArrayCollection(t); + this.itemList.dataProvider = e; + }), + (i.prototype.showVipList = function () { + var e = t.VlaoF.privilegeLevelConfig, + i = []; + for (var n in e) i.push(e[n]); + var s = new eui.ArrayCollection(i); + this.gList.dataProvider = s; + }), + (i.prototype.onClick = function (e) { + var i = e.currentTarget; + switch (i) { + case this.btnClose: + t.mAYZL.ins().close(this); + break; + case this.btncharge: + t.RechargeMgr.ins().onPay(""); + break; + case this.btncharge2: + if (!t.mAYZL.ins().ZbzdY(t.VipGaimItemWin)) { + var n = t.VlaoF.GetItemRouteConfig[this.consume.id]; + t.mAYZL.ins().open( + t.VipGaimItemWin, + { + itemid: n.itemid, + needCount: this.consume.count, + isMax: this.curentLv == this.getMaxLv(), + }, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + break; + case this.togBtnVipWel: + this.showVipWel(); + break; + case this.togBtnViptq: + this.showViptq(); + break; + case this.btn_prev: + if (1 == this.curentShowLv) return; + var s = --this.curentShowLv; + this.showNextLevelData(s); + break; + case this.btn_next: + this.curentShowLv >= this.getMaxLv() ? this.curentLv >= 5 && this.showVipadvertq() : (++this.curentShowLv, this.showNextLevelData(this.curentShowLv)); + break; + case this.btnBuy: + t.edHC.ins().send_26_61(this.idx); + break; + case this.btnBuy2: + if (this.curentShowLv == this.curentLv + 1) { + var a = t.ZAJw.MPDpiB(this.consume.type, this.consume.id); + if (a < this.consume.count) { + if (!t.mAYZL.ins().ZbzdY(t.VipGaimItemWin)) { + var n = t.VlaoF.GetItemRouteConfig[this.consume.id]; + t.mAYZL.ins().open( + t.VipGaimItemWin, + { + itemid: n.itemid, + needCount: this.consume.count, + }, + { + x: this.x, + y: this.y, + }, + { + height: this.height, + width: this.width, + }, + this.hashCode + ); + } + } else t.edHC.ins().send_26_61(this.idx); + } else (this.curentShowLv = this.curentLv + 1), this.showNextLevelData(this.curentShowLv); + break; + case this.btnViptq: + this.curentShowLv > 5 ? t.mAYZL.ins().open(t.VipPrivilegeView, this.curentShowLv) : this.showViptq(); + break; + case this.btnWelfare: + (this.togBtnVipWel.visible = !0), + (this.togBtnViptq.visible = !0), + (this.ImgTabBgleft.visible = !0), + (this.ImgTabBgRigth.visible = !0), + (this.groupWelfare.visible = !0), + (this.groupWelfare2.visible = !1); + } + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget.localToGlobal(); + switch (e.currentTarget) { + case this.moneyImg: + case this.moneyImg2: + var n = t.VlaoF.StdItems[this.consume.id]; + n && + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: i.x + e.currentTarget.width, + y: i.y, + }); + } + i = null; + } + }), + (i.prototype.getMaxLv = function () { + var e = t.VipData.ins().getVipConfig(), + i = 0; + for (var n in e) t.mAYZL.ins().isCheckOpen(e[n].displaylimit) && i++; + return i; + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.$onClose(), + this.vipMc && (this.vipMc.destroy(), (this.vipMc = null)), + this.titleMc && (this.titleMc.destroy(), (this.titleMc = null)), + t.Nzfh.ins().post_gaimItemView(this.hashCode), + t.MouseScroller.unbind(this.scroller), + this.fEHj(this.btnClose, this.onClick), + this.fEHj(this.btncharge, this.onClick), + this.fEHj(this.btncharge2, this.onClick), + this.fEHj(this.btn_prev, this.onClick), + this.fEHj(this.btn_next, this.onClick), + this.fEHj(this.btnBuy, this.onClick), + this.fEHj(this.btnBuy2, this.onClick), + this.lbpdAJ(this.moneyImg, this.mouseMove), + this.lvpAF(this.moneyImg, this.mouseMove), + this.lbpdAJ(this.moneyImg2, this.mouseMove), + this.lvpAF(this.moneyImg2, this.mouseMove), + this.togBtnVipWel.removeEventListener(eui.UIEvent.CHANGE, this.changeHandler, this), + this.togBtnViptq.removeEventListener(eui.UIEvent.CHANGE, this.changeHandler, this); + }), + i + ); + })(t.gIRYTi); + (t.VipView = e), __reflect(e.prototype, "app.VipView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + return e.call(this) || this; + } + return ( + __extends(i, e), + (i.prototype.dataChanged = function () { + (this.itemBase.data = this.data.itemData), (this.labDesc.textFlow = t.hETx.qYVI(this.data.desc)); + }), + i + ); + })(eui.ItemRenderer); + (t.VipPrivilegeItem = e), __reflect(e.prototype, "app.VipPrivilegeItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return (i.skinName = "VipPrivilegeViewSkin"), (i.name = "VipPrivilegeView"), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), i; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.vKruVZ(this.btnClose, this.onClick), t.MouseScroller.bind(this.itemScroller), (this.labDesc3List.itemRenderer = t.VipPrivilegeItem); + }), + (i.prototype.open = function () { + for (var t = [], e = 0; e < arguments.length; e++) t[e] = arguments[e]; + t && (6 == t[0] ? this.showVip6() : 7 == t[0] && this.showVip7()); + }), + (i.prototype.showVip6 = function () { + (this.labTitle1.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_1)), + (this.labTitle2.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_2)), + (this.labTitle3.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_3)), + (this.labDesc1.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Desc_1)), + (this.labDesc2.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Desc_2)); + var e = [ + { + itemData: { + type: 0, + id: 1146, + count: 1, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_3, + }, + { + itemData: { + type: 0, + id: 1115, + count: 1, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_4, + }, + { + itemData: { + type: 0, + id: 1066, + count: 300, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_5, + }, + { + itemData: { + type: 0, + id: 970, + count: 666, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_6, + }, + { + itemData: { + type: 0, + id: 300, + count: 100, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_7, + }, + ]; + this.labDesc3List.dataProvider = new eui.ArrayCollection(e); + }), + (i.prototype.showVip7 = function () { + (this.labTitle1.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_1)), + (this.labTitle2.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_2)), + (this.labTitle3.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Title_3)), + (this.labDesc1.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Desc_2_1)), + (this.labDesc2.textFlow = t.hETx.qYVI(t.CrmPU.language_VipPrivilege_Desc_2_2)); + var e = [ + { + itemData: { + type: 0, + id: 1272, + count: 1, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_2_3, + }, + { + itemData: { + type: 0, + id: 1241, + count: 1, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_2_4, + }, + { + itemData: { + type: 0, + id: 265, + count: 1888, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_2_5, + }, + { + itemData: { + type: 0, + id: 970, + count: 666, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_2_6, + }, + { + itemData: { + type: 0, + id: 852, + count: 158, + }, + desc: t.CrmPU.language_VipPrivilege_Desc_2_7, + }, + ]; + this.labDesc3List.dataProvider = new eui.ArrayCollection(e); + }), + (i.prototype.onClick = function (e) { + var i = e.currentTarget; + switch (i) { + case this.btnClose: + t.mAYZL.ins().close(this); + } + }), + (i.prototype.close = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.MouseScroller.unbind(this.itemScroller), this.removeObserve(), this.fEHj(this.btnClose, this.onClick); + }), + i + ); + })(t.gIRYTi); + (t.VipPrivilegeView = e), __reflect(e.prototype, "app.VipPrivilegeView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._WarehouseInfo = []), + (i._itemInfo = []), + (i._saveSelect = !1), + (i._warehousePoint = null), + (i._WarehouseInfo = []), + (i.sysId = t.jDIWJt.Warehouse), + i.YrTisc(1, i.post_23_1), + i.YrTisc(2, i.post_23_2), + i.YrTisc(3, i.post_23_3), + i.YrTisc(4, i.post_23_4), + i.YrTisc(6, i.post_23_6), + i + ); + } + return ( + __extends(i, e), + Object.defineProperty(i.prototype, "itemInfo", { + get: function () { + return this._itemInfo; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "saveSelect", { + get: function () { + return this._saveSelect; + }, + set: function (t) { + this._saveSelect = t; + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "WarehouseInfo", { + get: function () { + return this._WarehouseInfo; + }, + enumerable: !0, + configurable: !0, + }), + (i.ins = function () { + return e.ins.call(this); + }), + Object.defineProperty(i.prototype, "warehousePoint", { + get: function () { + return this._warehousePoint; + }, + set: function (t) { + this._warehousePoint = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.send_23_1 = function () { + var t = this.MxGiq(1); + this.evKig(t); + }), + (i.prototype.post_23_1 = function (e) { + this._WarehouseInfo = []; + var i = e.readInt(); + if (i > 0) + for (var n = void 0, s = 0; i > s; s++) + (n = new t.userItem(e)), this._WarehouseInfo[Math.floor(s / 42)] || (this._WarehouseInfo[Math.floor(s / 42)] = []), this._WarehouseInfo[Math.floor(s / 42)].push(n); + for (var s = 0; 7 > s; s++) { + var a = this._WarehouseInfo[s]; + a && this.tidyItems(a); + } + this.createGezi(); + }), + (i.prototype.createGezi = function () { + for (var e = 0, i = 0; 7 > i; i++) { + this._itemInfo[i] = []; + for (var n = this._WarehouseInfo[i], s = 0; 42 > s; s++) + if (((e += 1), n && n[s] && n[s].wItemId)) (n[s].geziIdx = e), this._itemInfo[i].push(n[s]); + else { + var a = new t.userItem(null); + (a.geziIdx = e), this._itemInfo[i].push(a); + } + } + }), + (i.prototype.send_23_2 = function (t) { + var e = this.MxGiq(2); + t.writeToBytes(e), this.evKig(e); + }), + (i.prototype.post_23_2 = function (e) { + for (var i = new t.userItem(e), n = 0; 7 > n; n++) + if (!(this._WarehouseInfo[n] && this._WarehouseInfo[n].length >= 42)) + return this._WarehouseInfo[n] || (this._WarehouseInfo[n] = []), this._WarehouseInfo[n].push(i), void (this._itemInfo[n][this._WarehouseInfo[n].length - 1] = i); + }), + (i.prototype.send_23_3 = function (t) { + var e = this.MxGiq(3); + t.writeToBytes(e), this.evKig(e); + }), + (i.prototype.post_23_3 = function (e) { + for (var i = new t.ItemSeries(e), n = 0; 7 > n; n++) { + var s = this._WarehouseInfo[n]; + if (s) + for (var a = 0; a < s.length; a++) { + var r = s[a]; + if (r.series.toString() == i.toString()) return s.splice(a, 1), void this.createGezi(); + } + } + }), + (i.prototype.post_23_4 = function (e) { + for (var i = new t.ItemSeries(e), n = e.readUnsignedShort(), s = 0; 7 > s; s++) { + var a = this._WarehouseInfo[s]; + if (a) + for (var r = 0; r < a.length; r++) { + var o = a[r]; + if (o.series.toString() == i.toString()) return void (o.btCount = n); + } + } + }), + (i.prototype.send_23_6 = function () { + var t = this.MxGiq(6); + this.evKig(t); + }), + (i.prototype.post_23_6 = function (t) { + for (var e = 0; 7 > e; e++) { + var i = this._WarehouseInfo[e]; + i && this.tidyItems(i); + } + this.createGezi(); + }), + (i.prototype.tidyItems = function (t) { + return t && t.sort(this.sortFunction), t; + }), + (i.prototype.sortFunction = function (t, e) { + return t.bagType == e.bagType + ? t.btQuality < e.btQuality + ? 1 + : t.btQuality > e.btQuality + ? -1 + : t.btStrong < e.btStrong + ? 1 + : t.btStrong > e.btStrong + ? -1 + : t.wItemId < e.wItemId + ? 1 + : t.wItemId > e.wItemId + ? -1 + : 0 + : 1 == t.bagType && 1 != e.bagType + ? -1 + : 1 != t.bagType && 1 == e.bagType + ? 1 + : t.bagType < e.bagType + ? 1 + : t.bagType > e.bagType + ? -1 + : t.btQuality < e.btQuality + ? 1 + : t.btQuality > e.btQuality + ? -1 + : t.btStrong < e.btStrong + ? 1 + : t.btStrong > e.btStrong + ? -1 + : t.wItemId < e.wItemId + ? 1 + : t.wItemId > e.wItemId + ? -1 + : 0; + }), + (i.prototype.getBagTwoArr = function (t) { + for (var e = [], i = 0; i < this._itemInfo[t].length; i++) e[Math.floor(i / 6)] || (e[Math.floor(i / 6)] = []), e[Math.floor(i / 6)].push(this._itemInfo[t][i]); + return e; + }), + (i.prototype.getLineXY = function (t) { + for (var e = {}, i = 0, n = 0; n < t.length; n++) + 0 == n + ? ((e[n] = { + x: 0, + y: 0, + }), + (i = 0)) + : ((e[n] = { + x: 0, + y: 60 + i + 5.8, + }), + (i = e[n].y)); + return e; + }), + i + ); + })(t.DlUenA); + (t.WarehouseMgr = e), __reflect(e.prototype, "app.WarehouseMgr"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i(i, n, s, a, r) { + var o = e.call(this) || this; + return ( + (o.lab = new eui.Label()), + (o.lab.textColor = t.ClwSVR.WHITE_COLOR), + (o.lab.textAlign = "right"), + (o.lab.size = 16), + (o.lab.width = 50), + (o.lab.stroke = 1), + (o.lab.strokeColor = 0), + (o.imgBg = new eui.Image()), + (o.imgNuBg = new eui.Image()), + (o.imgicon = new eui.Image()), + (o.imgAscension = new eui.Image()), + (o.bestEquip = new eui.Image()), + (o.isLock = new eui.Image("cangku_lock")), + (o.effGrp = new eui.Group()), + (o.effGrp.touchEnabled = !1), + (o.effGrp.touchChildren = !1), + (o.redPoint = new eui.Image("redPoint")), + (o.imgNuBg.touchEnabled = !1), + (o.imgAscension.touchEnabled = !1), + (o.bestEquip.touchEnabled = !1), + i.addChild(o.imgBg), + i.addChild(o.imgicon), + i.addChild(o.imgNuBg), + i.addChild(o.imgAscension), + i.addChild(o.bestEquip), + i.addChild(o.redPoint), + i.addChild(o.isLock), + n.addChild(o.lab), + a.addChild(o.effGrp), + (o.starLabel = new eui.BitmapLabel()), + o.starLabel.textAlign, + (o.starLabel.width = 50), + (o.starLabel.letterSpacing = -3), + (o.starLabel.textAlign = "right"), + (o.starLabel.font = "num_8_fnt"), + s.addChild(o.starLabel), + o + ); + } + return ( + __extends(i, e), + (i.prototype.dataChange = function (e, i, n) { + if (e && e.wItemId) { + (this.curItem = e), (this.starLabel.visible = e.wStar > 0), (this.starLabel.text = "+" + e.wStar); + var s = t.VlaoF.StdItems[this.curItem.wItemId]; + if (s) { + (this.isLock.visible = !1), + (this.bestEquip.visible = !1), + (this.redPoint.visible = e.itemRed > 0), + (this.redPoint.source = 1 == e.itemRed ? "redPoint" : "orangePoint"), + (this.imgBg.source = "quality_" + s.showQuality), + (this.imgNuBg.source = s.iseffect ? "yan_" + s.iseffect : ""), + (this.imgNuBg.visible = s.iseffect ? !0 : !1); + t.mAYZL.ins().ZzTs(t.SetUpView); + (this.imgAscension.source = ""), (this.imgAscension.visible = !1); + var a = t.pWFTj.ins().getItemUseState(s), + r = t.NWRFmB.ins().nkJT(), + o = r.propSet.getAP_JOB(); + if (1 == s.packageType && (0 == s.suggVocation || s.suggVocation == o) && 1 == a) { + var l = t.caJqU.ins().getEquipsByPos(s.type - 1); + l && l.series + ? l.itemScore < e.itemScore && ((this.imgAscension.source = "quality_sheng"), (this.imgAscension.visible = !0)) + : ((this.imgAscension.source = "quality_sheng"), (this.imgAscension.visible = !0)); + } + (this.imgicon.source = s.icon + ""), + (this.lab.text = e.btCount > 1 ? e.btCount + "" : ""), + "" != e.topLine && void 0 != e.topLine && ((this.bestEquip.source = "quality_jipin"), (this.bestEquip.visible = !0)), + s.itemEff && + ((this.effGrp.visible = !0), + this.itemMC || + ((this.itemMC = t.ObjectPool.pop("app.MovieClip")), + (this.itemMC.scaleX = this.itemMC.scaleY = 1), + (this.itemMC.touchEnabled = !1), + (this.itemMC.blendMode = egret.BlendMode.ADD), + this.effGrp.addChild(this.itemMC)), + this.itemMC.playFileEff(ZkSzi.RES_DIR_EFF + "eff_zb" + s.itemEff, -1)), + (this.imgicon.curData = e); + } + } else + (this.starLabel.visible = !1), + (this.imgBg.source = "quality_0"), + (this.imgNuBg.source = ""), + (this.imgicon.source = ""), + (this.imgAscension.source = ""), + (this.bestEquip.source = ""), + (this.lab.text = ""), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + (this.imgicon.idx = 6 * i + n), (this.imgicon.itemInfo = e); + }), + Object.defineProperty(i.prototype, "curData", { + get: function () { + return this.curItem; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.setVis = function (t) { + (this.imgBg.visible = t), + (this.imgNuBg.visible = !1), + (this.redPoint.visible = !1), + (this.imgicon.visible = t), + (this.lab.visible = t), + (this.effGrp.visible = !1), + (this.imgAscension.visible = t), + (this.bestEquip.visible = !1), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + }), + Object.defineProperty(i.prototype, "isLockVis", { + set: function (t) { + this.isLock.visible = t; + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.cleanImg = function () { + (this.isLock.visible = !0), + (this.imgBg.source = "quality_0"), + (this.imgNuBg.source = ""), + (this.imgicon.source = ""), + (this.imgAscension.source = ""), + (this.bestEquip.source = ""), + (this.bestEquip.visible = !1), + (this.redPoint.visible = !1), + (this.effGrp.visible = !1), + (this.starLabel.visible = !1), + (this.lab.text = ""), + this.itemMC && (this.itemMC.destroy(), (this.itemMC = null)); + }), + Object.defineProperty(i.prototype, "x", { + get: function () { + return this.imgBg.x; + }, + set: function (t) { + (this.imgBg.x = t), + (this.redPoint.x = t + 43), + (this.imgicon.x = t), + (this.imgNuBg.x = t), + (this.isLock.x = t), + (this.imgAscension.x = t), + (this.bestEquip.x = t), + (this.effGrp.x = t + 30), + (this.lab.x = t + 5), + (this.starLabel.x = t + 5); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "y", { + get: function () { + return this.imgBg.y; + }, + set: function (t) { + (this.imgBg.y = t), + (this.redPoint.y = t + 2), + (this.imgicon.y = t), + (this.imgNuBg.y = t), + (this.isLock.y = t), + (this.imgAscension.y = t), + (this.bestEquip.y = t), + (this.effGrp.y = t + 30), + (this.lab.y = t + 42), + (this.starLabel.y = t + 38); + }, + enumerable: !0, + configurable: !0, + }), + i + ); + })(eui.Component); + (t.WarehouseItemGrid = e), __reflect(e.prototype, "app.WarehouseItemGrid"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i.bagGridArr = []), (i.itemGrid = []), (i.geziCount = 0), i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), (i.skinName = "WarehouseWinSkin"), (i.dSpriteSheet = new how.DSpriteSheet()), i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.newGrp = new eui.Group()), + (this.newGrp.width = 60), + (this.newGrp.height = 60), + (this.newIcon = new eui.Image()), + (this.newIcon.horizontalCenter = 0), + (this.newIcon.verticalCenter = 0), + this.newGrp.addChild(this.newIcon), + (this.newGrp.x = this.x), + (this.newGrp.y = this.y), + (this.newGrp.visible = !1), + (this.newGrp.touchChildren = !1), + (this.newIcon.touchEnabled = !1), + t.yCIt.UIupV.addChild(this.newGrp), + (this.tabBar.itemRenderer = t.CommonTabBarWin), + (this.tabBar.dataProvider = new eui.ArrayCollection(["cangku_tabt1_", "cangku_tabt2_", "cangku_tabt3_", "cangku_tabt4_", "cangku_tabt5_"])); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + t.mAYZL.ins().ZbzdY(t.BagView) || t.mAYZL.ins().open(t.BagView), + this.addEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + this.vKruVZ(this.btn_close, this.onClick), + this.vKruVZ(this.finishingBtn, this.onClick), + this.addChangeEvent(this.tabBar, this.onClick), + this.vKruVZ(this.saveCheck, this.onClick), + this.HFTK(t.WarehouseMgr.ins().post_23_1, this.updateBagItemGrid), + this.HFTK(t.WarehouseMgr.ins().post_23_2, this.updateBagItemGrid), + this.HFTK(t.WarehouseMgr.ins().post_23_3, this.updateBagItemGrid), + this.HFTK(t.WarehouseMgr.ins().post_23_4, this.updateBagItemGrid), + this.HFTK(t.WarehouseMgr.ins().post_23_6, this.updateBagItemGrid), + this.HFTK(t.Nzfh.ins().post_warehouseChange, this.updateBagItemGrid), + (this.saveCheck.selected = !1), + (this.tabBar.selectedIndex = 0), + t.WarehouseMgr.ins().send_23_1(); + }), + (i.prototype.initViewPos = function () { + e.prototype.initViewPos.call(this), (t.WarehouseMgr.ins().warehousePoint = this.warehouseGrp.localToGlobal(0, 0)), (t.WarehouseMgr.ins().warehousePoint.y -= 13); + }), + (i.prototype.stopMove = function () { + (t.WarehouseMgr.ins().warehousePoint = this.warehouseGrp.localToGlobal(0, 0)), (t.WarehouseMgr.ins().warehousePoint.y -= 13); + }), + (i.prototype.updateBagItemGrid = function () { + this.geziCount = this.getHaveGezi(); + var t = this.tabBar.selectedIndex; + this.cleanBagGrid(), this.setBagDataVis(t); + }), + (i.prototype.setBagDataVis = function (e) { + var i = t.WarehouseMgr.ins().getBagTwoArr(e), + n = t.WarehouseMgr.ins().getLineXY(i); + for (var s in this.bagGridArr) { + for (var a in this.bagGridArr[s]) this.pushBagGrid(this.bagGridArr[s][a]); + delete this.bagGridArr[s]; + } + for (var r = 0; 7 > r; r++) + this.bagGridArr[r] || + this.addBagItem( + r, + { + x: n[r].x, + y: n[r].y, + }, + i[r] + ); + }), + (i.prototype.addBagItem = function (t, e, i) { + for (var n, s = 0, a = 0; a < i.length; a++) + (n = this.getBagGrid(this.equipBg, this.equipLab, this.equipStar, this.itemEffGrp, this.dSpriteSheet)), + n.cleanImg(), + this.bagGridArr[t] || (this.bagGridArr[t] = []), + this.bagGridArr[t].push(n), + 0 == a ? ((n.x = 0), (s = 0)) : ((n.x = 60 + s + 4.5), (s = n.x)), + (n.y = e.y), + n.setVis(!0), + n.imgicon.addEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + n.imgicon.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + n.imgicon.addEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + n.isLock.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onLockTouchTap, this), + this.VoZqXH(n.imgicon, this.mouseMove), + this.EeFPm(n.imgicon, this.mouseMove), + (n.isLockVis = this.geziCount >= i[a].geziIdx ? !1 : !0), + n.dataChange(i[a], t, a); + (n = null), (s = null); + }), + (i.prototype.getHaveGezi = function () { + var e = t.VipData.ins().getMyVipLv(), + i = 6, + n = t.VlaoF.WarehouseConfig.warehouses; + if (n) + for (var s in n) + if (n[s].vip == e) { + i = n[s].count; + break; + } + return i; + }), + (i.prototype.cleanBagGrid = function () { + for (var t in this.bagGridArr) { + for (var e in this.bagGridArr[t]) this.pushBagGrid(this.bagGridArr[t][e]); + delete this.bagGridArr[t]; + } + }), + (i.prototype.getBagGrid = function (e, i, n, s, a) { + return this.itemGrid.pop() || new t.WarehouseItemGrid(e, i, n, s, a); + }), + (i.prototype.pushBagGrid = function (t) { + t.imgicon.removeEventListener(egret.TouchEvent.TOUCH_BEGIN, this.onTouchBegin, this), + t.imgicon.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onTouchTap, this), + t.imgicon.removeEventListener(mouse.MouseEvent.MOUSE_DOUBLECLICK, this.onTouchDouble, this), + t.isLock.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onLockTouchTap, this), + this.fEHj(t.imgicon, this.mouseMove), + this.fEHj(t.imgicon, this.mouseMove), + t.cleanImg(), + t.setVis(!1), + this.itemGrid.push(t); + }), + (i.prototype.mouseMove = function (e) { + if (e.type == mouse.MouseEvent.MOUSE_OUT) t.uMEZy.ins().closeTips(); + else { + var i = e.currentTarget, + n = i.curData; + if (n && n.wItemId) { + var s = i.localToGlobal(), + a = t.VlaoF.StdItems[n.wItemId]; + if (1 != n.bagType && n.series) { + var r = t.TipsType.TIPS_EQUIP; + a && a.fashionTips && (r = t.TipsType.TIPS_FASHION), + t.uMEZy.ins().LJzNt(e.target, r, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } else if (1 == n.bagType && n.series) { + var o = t.caJqU.ins().getEquipsByPos(a.type - 1); + if (o && o.series) { + var l = t.VlaoF.StdItems[o.wItemId], + h = l && a; + h + ? t.uMEZy.ins().LJzNt( + e.target, + t.TipsType.TIPS_EQUIPCONTRAST, + n, + { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }, + o + ) + : t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } else + t.uMEZy.ins().LJzNt(e.target, t.TipsType.TIPS_EQUIP, n, { + x: s.x + i.width / 2, + y: s.y + i.height / 2, + }); + } + s = null; + } + (i = null), (n = null); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.btn_close: + t.mAYZL.ins().close(this); + break; + case this.tabBar: + this.updateBagItemGrid(); + break; + case this.finishingBtn: + t.WarehouseMgr.ins().send_23_6(); + break; + case this.saveCheck: + t.WarehouseMgr.ins().saveSelect = this.saveCheck.selected; + } + }), + (i.prototype.onLockTouchTap = function () { + var e = t.VipData.ins().getMyVipLv(), + i = t.VlaoF.WarehouseConfig; + if (i) { + var n = i["viptips" + e]; + n && t.uMEZy.ins().IrCm(n); + } + }), + (i.prototype.onTouchTap = function (e) { + if (1 == this.saveCheck.selected) { + var i = e.target.itemInfo; + i && i.wItemId && t.WarehouseMgr.ins().send_23_3(i.series); + } + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), this.resetPos(); + }), + (i.prototype.onTouchDouble = function (e) { + var i = t.mAYZL.ins().ZzTs(t.BagView); + if (i) { + var n = e.target.itemInfo; + n && n.wItemId && t.WarehouseMgr.ins().send_23_3(n.series); + } + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), this.resetPos(); + }), + (i.prototype.onTouchBegin = function (e) { + if (e.target instanceof eui.Image) { + (this.newIcon.source = e.target.source), (this.newGrp.name = e.target.name); + var i = e.currentTarget.localToGlobal(0, 0); + (this.newGrp.x = i.x), + (this.newGrp.y = i.y), + t.uMEZy.ins().closeTips(), + (this.grpOldIdx = e.target.idx), + (this.XTouch = e.stageX - this.newGrp.x), + (this.YTouch = e.stageY - this.newGrp.y), + t.aTwWrO.ins().getStage().addEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this); + } + }), + (i.prototype.onTouchMove = function (t) { + if (this.newGrp) { + (this.newGrp.visible = !0), this.newGrp.addEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this); + var e = Math.floor(this.grpOldIdx / 6), + i = this.grpOldIdx % 6, + n = this.bagGridArr[e][i]; + n && + ((n.imgicon.visible = !1), (n.lab.visible = !1), (n.bestEquip.visible = !1), (n.imgNuBg.visible = !1), (n.effGrp.visible = !1), (n.redPoint.visible = !1), (n.imgAscension.visible = !1)), + (this.newGrp.x = t.stageX - this.XTouch), + (this.newGrp.y = t.stageY - this.YTouch); + } + }), + (i.prototype.onTouchEnd = function (e) { + if (1 == this.newGrp.visible) { + var i = this.newGrp.localToGlobal(0, 0), + n = this.tabBar.selectedIndex, + s = t.WarehouseMgr.ins().itemInfo[n], + a = s[this.grpOldIdx], + r = !1; + null != t.ThgMu.ins().bagGeZiPoint && + (r = t.ThgMu.ins().bagGeZiPoint.x <= i.x && i.x < t.ThgMu.ins().bagGeZiPoint.x + 498 && t.ThgMu.ins().bagGeZiPoint.y <= i.y && i.y < t.ThgMu.ins().bagGeZiPoint.y + 372), + t.mAYZL.ins().ZbzdY(t.BagView) && null != t.ThgMu.ins().bagGeZiPoint && r && a && a.series && t.WarehouseMgr.ins().send_23_3(a.series); + } + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + this.resetPos(), + this.updateBagItemGrid(); + }), + (i.prototype.resetPos = function () { + (this.newGrp.x = this.x), (this.newGrp.y = this.y), (this.newGrp.visible = !1); + }), + (i.prototype.close = function () { + for (var i = [], n = 0; n < arguments.length; n++) i[n] = arguments[n]; + e.prototype.close.call(this, i), + this.$onClose(), + (t.WarehouseMgr.ins().saveSelect = !1), + (t.WarehouseMgr.ins().warehousePoint = null), + this.dSpriteSheet.dispose(), + (this.dSpriteSheet = null), + this.removeEventListener(egret.TouchEvent.TOUCH_END, this.stopMove, this), + t.aTwWrO.ins().getStage().removeEventListener(egret.TouchEvent.TOUCH_MOVE, this.onTouchMove, this), + this.newGrp.removeEventListener(egret.TouchEvent.TOUCH_END, this.onTouchEnd, this), + this.fEHj(this.btn_close, this.onClick), + this.fEHj(this.finishingBtn, this.onClick), + this.fEHj(this.saveCheck, this.onClick), + this.tabBar.removeEventListener(egret.TouchEvent.CHANGE, this.onClick, this); + }), + i + ); + })(t.gIRYTi); + (t.WarehouseWin = e), __reflect(e.prototype, "app.WarehouseWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t.skinName = "WorshipItemSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.childrenCreated = function () { + e.prototype.childrenCreated.call(this), this.vKruVZ(this.check, this.onClick), this.vKruVZ(this.worship, this.onClick), (this.roleInnerModel = new t.RoleInnerModel(this.modelGroup)); + }), + (i.prototype.initData = function (e, i, n, s) { + (this.sexjob = e), + (this.configData = n), + (this.imgTitle.source = i), + (this.playName.text = this.configData.name), + (this.callFun = s), + this.mc || ((this.mc = t.ObjectPool.pop("app.MovieClip")), this.mc.playFileEff(ZkSzi.RES_DIR_WORSHIP + this.configData.background, -1), this.playEff.addChild(this.mc)); + }), + (i.prototype.dataChanged = function () { + if (this.data) { + var t = this.data; + (this.playName.text = this.configData.name + ":" + t.name), t.otherInfo && (this.roleInnerModel.setOtherData(t.otherInfo.equips, t.otherInfo), this.playEff.removeChildren()); + } + }), + (i.prototype.updateTimes = function (e) { + this.count.text = t.CrmPU.language_Common_61 + e; + }), + (i.prototype.onClick = function (t) { + switch (t.currentTarget) { + case this.check: + this.callFun("check", this.sexjob); + break; + case this.worship: + this.callFun("worship", [this.configData.id]); + } + }), + (i.prototype.$onRemoveFromStage = function () { + e.prototype.$onRemoveFromStage.call(this), this.fEHj(this.check, this.onClick), this.fEHj(this.worship, this.onClick), this.mc && (this.mc.destroy(), (this.mc = null)); + }), + i + ); + })(t.BaseItemRender); + (t.WorshipItem = e), __reflect(e.prototype, "app.WorshipItem"); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var i = e.call(this) || this; + return ( + (i._actID = 5), + (i.lastIdx = 0), + (i.sexjobArr = ["1", "2", "3", "1001", "1002", "1003"]), + (i.itemTitleArr = ["kf_mb_dynz", "kf_mb_dynf", "kf_mb_dynd", "kf_mb_dyvz", "kf_mb_dyvf", "kf_mb_dyvd"]), + (i.skinName = "WorshipWinSkin"), + (i.name = "WorshipWin"), + i.setPostData(t.UIOpenViewMode.OPENVIEW_CENTER), + i + ); + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), this.dragDropUI.setParent(this), (this.touchEnabled = !1), this.dragDropUI.setTitle(t.CrmPU.language_System53); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + e[0] && (this._actID = e[0]); + var n = t.VlaoF.WorshipMainConfig; + for (var s = 0; 6 > s; s++) { + if (this.isSingleJob()) { + if (this.isWarrior(s)) { + this["item" + s].x = 0 == s ? 135 : 445; + this["item" + s].y = 150; + } else { + this["item" + s].visible = !1; + continue; + } + } + this["item" + s].initData(this.sexjobArr[s], this.itemTitleArr[s], n[s + 1], this.onClick.bind(this)); + } + this.HFTK(t.edHC.ins().post_26_65, this.setPlayTitle), + this.HFTK(t.TQkyOx.ins().postWroshipResult, this.worShipResult), + this.HFTK(t.TQkyOx.ins().post_25_3, this.setRankListData), + this.HFTK(t.TQkyOx.ins().post_25_4, this.setRankListData), + this.HFTK(t.edHC.ins().post_26_46, this.otherPlayerView), + t.edHC.ins().send_26_65(t.RankDetailType.rtMoBaiRankList, 100), + t.TQkyOx.ins().send_25_2(this._actID), + this.setRankListData(); + }), + (i.prototype.isSingleJob = function () { + return 1 == Main.vZzwB.gameMode; + }), + (i.prototype.isWarrior = function (i) { + return i == 0 || i == 3; + }), + (i.prototype.setPlayTitle = function (e) { + if (e && e.type == t.RankDetailType.rtMoBaiRankList) { + var i = e.list; + if (i) { + for (var n in i) { + var s = i[n], + a = 0; + s.sexjob > 1e3 ? (a = 3 + ((+s.sexjob % 1e3) - 1)) : (a += s.sexjob - 1); + if (this.isSingleJob() && !this.isWarrior(a)) continue; + this["item" + a].data = s; + } + } + } + }), + (i.prototype.setRankListData = function () { + var e = t.TQkyOx.ins().getActivityInfo(this._actID); + if (e && e.info && e.info.times >= 0) { + for (var i = 0; 6 > i; i++) { + if (this.isSingleJob() && !this.isWarrior(i)) continue; + this["item" + i].updateTimes(e.info.times); + } + } + }), + (i.prototype.onClick = function (e, i) { + if ("check" == e) t.edHC.ins().send_26_46(t.RankDetailType.rtMoBaiRankList, i); + else if ("worship" == e) { + var n = this["item" + this.lastIdx]; + n && (n.worship.touchEnabled = !0), t.TQkyOx.ins().send_25_1(this._actID, t.Operate.cWorship, i); + } + }), + (i.prototype.worShipResult = function (e) { + var i = this; + if (e && 0 == e.issure) { + this.lastIdx = e.idx - 1; + var n = this["item" + this.lastIdx]; + (n.worship.touchEnabled = !1), + t.TQkyOx.ins().send_25_2(this._actID), + this.selectMC || (this.selectMC = new t.MovieClip()), + this.selectMC.stop(), + (this.selectMC.visible = !0), + n.playEff.addChild(this.selectMC), + this.selectMC.playFileEff( + ZkSzi.RES_DIR_WORSHIP + "Worship_select", + 1, + function () { + (i.selectMC.visible = !1), (n.worship.touchEnabled = !0); + }, + !1 + ), + t.Nzfh.ins().payResultMC(1, this.localToGlobal(this.width / 2, this.height / 2)); + } + }), + (i.prototype.otherPlayerView = function (e) { + if (0 != e) { + if (t.mAYZL.ins().ZbzdY(t.OtherPlayerView)) return; + t.caJqU.ins().sendQueryOthersEquips(e); + } else t.uMEZy.ins().IrCm(t.CrmPU.language_Tips57); + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), this.$onClose(), this.dragDropUI.destroy(), (this.dragDropUI = null), this.selectMC && this.selectMC.destroy(), (this.selectMC = null); + }), + i + ); + })(t.gIRYTi); + (t.WorshipWin = e), __reflect(e.prototype, "app.WorshipWin"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); +var app; +!(function (t) { + var e = (function (e) { + function i() { + var t = e.call(this) || this; + return (t._selectJob = 1), (t._selectSex = 0), (t.skinName = "ZhuanZhiSkin"), t; + } + return ( + __extends(i, e), + (i.prototype.initUI = function () { + e.prototype.initUI.call(this), + (this.job1.selected.source = "login_zs_1"), + (this.job2.selected.source = "login_fs_1"), + (this.job3.selected.source = "login_ds_1"), + (this.boy.selected.source = "login_nan_1"), + (this.girl.selected.source = "login_nv_1"), + (this.label2.text = t.VlaoF.TransferConfig.tips2[Main.vZzwB.gameMode]), + (this.strList.itemRenderer = t.ResonateItem2Render); + }), + (i.prototype.open = function () { + for (var e = [], i = 0; i < arguments.length; i++) e[i] = arguments[i]; + this.job1.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job2.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job3.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.boy.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.girl.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.closeBtn.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.btn_operation.addEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + var n = t.VlaoF.TransferConfig.tips1[Main.vZzwB.gameMode].split(","); + this.strList.dataProvider = new eui.ArrayCollection(n); + var s = t.NWRFmB.ins().getPayer; + (this._selectJob = s.propSet.getAP_JOB()), (this._selectSex = s.propSet.getSex()); + if (1 == Main.vZzwB.gameMode) { + (this.roleMc = t.ObjectPool.pop("app.MovieClip")), + (this.roleMc.scaleX = this.roleMc.scaleY = 1.4), + (this.roleMc.touchEnabled = !1), + this.roleGrp.addChild(this.roleMc), + (this.selectMc = t.ObjectPool.pop("app.MovieClip")), + (this.selectMc.blendMode = egret.BlendMode.ADD), + (this.selectMc.scaleX = this.selectMc.scaleY = 1), + (this.selectMc.touchEnabled = !1), + this.roleGrp.addChild(this.selectMc); + } + this.updateRole(); + var a = t.Nzfh.ins().zhuanZhiCD - Math.floor(t.GlobalData.serverTime / 1e3); + if (a > 0) { + var r = t.DateUtils.getFormatBySecond(a, t.DateUtils.TIME_FORMAT_5); + (this.cdTime.textFlow = t.hETx.qYVI(t.zlkp.replace(t.CrmPU.language_Common_190, r))), (this.cdTime.visible = !0); + } else this.cdTime.visible = !1; + }), + Object.defineProperty(i.prototype, "selectJob", { + set: function (t) { + (this._selectJob = t), this.updateRole(); + }, + enumerable: !0, + configurable: !0, + }), + Object.defineProperty(i.prototype, "selectSex", { + set: function (t) { + (this._selectSex = t), this.updateRole(); + }, + enumerable: !0, + configurable: !0, + }), + (i.prototype.curJob = function () { + return this._selectJob; + }), + (i.prototype.curSex = function () { + return this._selectSex; + }), + (i.prototype.updateRole = function () { + var e = this.curJob(), + i = this.curSex(), + m = Main.vZzwB.gameMode; + for (var n = 1; 3 >= n; n++) { + if (1 == m) { + if (1 != n) { + this["job" + n].visible = !1; + } else { + this.job1.x = this.job2.x; + } + } + this["job" + n].currentState = "up"; + } + (this["job" + e].currentState = "selected"), + (this.jobIntroduce.text = t.CrmPU.language_Common_55[e - 1]), + 0 == i ? ((this.boy.currentState = "selected"), (this.girl.currentState = "up")) : ((this.girl.currentState = "selected"), (this.boy.currentState = "up")); + this.title_image.visible = 0 == m; + this.title_label.visible = 1 == m; + this.title_job.visible = 0 == m; + this.title_sex.visible = 0 == m; + this.job_desc.visible = 0 == m; + this.jobIntroduce.visible = 0 == m; + this.job_list.visible = 0 == m; + this.title_bg1.visible = 0 == m; + this.title_bg2.visible = 0 == m; + this.title_bg3.visible = 0 == m; + this.title_bg4.visible = 0 == m; + if (1 == m) { + var ts = this; + (this.selectMc.visible = !0), + this.roleMc.playFileEff(ZkSzi.RES_DIR_CREATE + "create_" + e + "_" + i, -1), + this.selectMc.playFileEff( + ZkSzi.RES_DIR_CREATE + "xuanzhong", + 1, + function () { + ts.selectMc.visible = !1; + }, + !1 + ); + } + }), + (i.prototype.onClick = function (e) { + switch (e.currentTarget) { + case this.boy: + t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectSex = 0); + break; + case this.closeBtn: + t.mAYZL.ins().close(this); + break; + case this.btn_operation: + var i = t.NWRFmB.ins().getPayer; + if (this._selectJob == i.propSet.getAP_JOB() && this._selectSex == i.propSet.getSex()) t.uMEZy.ins().IrCm(t.CrmPU.language_Common_187); + else { + var n = this._selectJob, + s = this._selectSex, + a = this._selectSex ? "女性" : "男性", + r = t.AttributeData.job[n], + o = t.zlkp.replace(t.CrmPU.language_Common_189, a, r) + t.VlaoF.TransferConfig.tips3[Main.vZzwB.gameMode]; + t.CautionView.show( + o, + function () { + t.Nzfh.ins().send_0_28(n, s); + }, + this + ); + } + break; + case this.girl: + t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectSex = 1); + break; + case this.job1: + t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 1); + break; + case this.job2: + t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 2); + break; + case this.job3: + t.AHhkf.ins().createPlayEffect(t.OSzbc.VIEW_LEVEL), (this.selectJob = 3); + } + }), + (i.prototype.close = function () { + for (var t = [], i = 0; i < arguments.length; i++) t[i] = arguments[i]; + e.prototype.close.call(this, t), + this.$onClose(), + this.job1.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job2.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.job3.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.boy.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.girl.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.closeBtn.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this), + this.btn_operation.removeEventListener(egret.TouchEvent.TOUCH_TAP, this.onClick, this); + if (1 == Main.vZzwB.gameMode) { + this.roleMc.destroy(), (this.roleMc = null), this.selectMc.destroy(), (this.selectMc = null); + } + }), + i + ); + })(t.gIRYTi); + (t.ZhuanZhiView = e), __reflect(e.prototype, "app.ZhuanZhiView"), t.mAYZL.ins().reg(e, t.yCIt.CtcxUT); +})(app || (app = {})); diff --git a/js/promise.min_83a6a5d.js b/js/promise.min_83a6a5d.js new file mode 100644 index 0000000..765fa21 --- /dev/null +++ b/js/promise.min_83a6a5d.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.ES6Promise=e()}(this,function(){"use strict";function t(t){return"function"==typeof t||"object"==typeof t&&null!==t}function e(t){return"function"==typeof t}function n(t){I=t}function r(t){J=t}function o(){return function(){return process.nextTick(a)}}function i(){return"undefined"!=typeof H?function(){H(a)}:c()}function s(){var t=0,e=new V(a),n=document.createTextNode("");return e.observe(n,{characterData:!0}),function(){n.data=t=++t%2}}function u(){var t=new MessageChannel;return t.port1.onmessage=a,function(){return t.port2.postMessage(0)}}function c(){var t=setTimeout;return function(){return t(a,1)}}function a(){for(var t=0;G>t;t+=2){var e=$[t],n=$[t+1];e(n),$[t]=void 0,$[t+1]=void 0}G=0}function f(){try{var t=require,e=t("vertx");return H=e.runOnLoop||e.runOnContext,i()}catch(n){return c()}}function l(t,e){var n=arguments,r=this,o=new this.constructor(p);void 0===o[ee]&&k(o);var i=r._state;return i?!function(){var t=n[i-1];J(function(){return x(i,o,t,r._result)})}():E(r,o,t,e),o}function h(t){var e=this;if(t&&"object"==typeof t&&t.constructor===e)return t;var n=new e(p);return w(n,t),n}function p(){}function v(){return new TypeError("You cannot resolve a promise with itself")}function d(){return new TypeError("A promises callback cannot return that same promise.")}function _(t){try{return t.then}catch(e){return ie.error=e,ie}}function y(t,e,n,r){try{t.call(e,n,r)}catch(o){return o}}function m(t,e,n){J(function(t){var r=!1,o=y(n,e,function(n){r||(r=!0,e!==n?w(t,n):S(t,n))},function(e){r||(r=!0,j(t,e))},"Settle: "+(t._label||" unknown promise"));!r&&o&&(r=!0,j(t,o))},t)}function b(t,e){e._state===re?S(t,e._result):e._state===oe?j(t,e._result):E(e,void 0,function(e){return w(t,e)},function(e){return j(t,e)})}function g(t,n,r){n.constructor===t.constructor&&r===l&&n.constructor.resolve===h?b(t,n):r===ie?j(t,ie.error):void 0===r?S(t,n):e(r)?m(t,n,r):S(t,n)}function w(e,n){e===n?j(e,v()):t(n)?g(e,n,_(n)):S(e,n)}function A(t){t._onerror&&t._onerror(t._result),P(t)}function S(t,e){t._state===ne&&(t._result=e,t._state=re,0!==t._subscribers.length&&J(P,t))}function j(t,e){t._state===ne&&(t._state=oe,t._result=e,J(A,t))}function E(t,e,n,r){var o=t._subscribers,i=o.length;t._onerror=null,o[i]=e,o[i+re]=n,o[i+oe]=r,0===i&&t._state&&J(P,t)}function P(t){var e=t._subscribers,n=t._state;if(0!==e.length){for(var r=void 0,o=void 0,i=t._result,s=0;si;i++)e.resolve(t[i]).then(n,r)}:function(t,e){return e(new TypeError("You must pass an array to race."))})}function K(t){var e=this,n=new e(p);return j(n,t),n}function L(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function N(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}function U(t){this[ee]=O(),this._result=this._state=void 0,this._subscribers=[],p!==t&&("function"!=typeof t&&L(),this instanceof U?C(this,t):N())}function W(){var t=void 0;if("undefined"!=typeof global)t=global;else if("undefined"!=typeof self)t=self;else try{t=Function("return this")()}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment")}var n=t.Promise;if("undefined"!=typeof egret_native&&egret_native.capability&&!egret_native.capability("Promise")&&(n=void 0),n){var r=null;try{r=Object.prototype.toString.call(n.resolve())}catch(e){}if("[object Promise]"===r&&!n.cast)return}t.Promise=U}var z=void 0;z=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)};var B=z,G=0,H=void 0,I=void 0,J=function(t,e){$[G]=t,$[G+1]=e,G+=2,2===G&&(I?I(a):te())},Q="undefined"!=typeof window?window:void 0,R=Q||{},V=R.MutationObserver||R.WebKitMutationObserver,X="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),Z="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel,$=new Array(1e3),te=void 0;te=X?o():V?s():Z?u():void 0===Q&&"function"==typeof require?f():c();var ee=Math.random().toString(36).substring(16),ne=void 0,re=1,oe=2,ie=new T,se=new T,ue=0;return Y.prototype._enumerate=function(){for(var t=this.length,e=this._input,n=0;this._state===ne&&t>n;n++)this._eachEntry(e[n],n)},Y.prototype._eachEntry=function(t,e){var n=this._instanceConstructor,r=n.resolve;if(r===h){var o=_(t);if(o===l&&t._state!==ne)this._settledAt(t._state,e,t._result);else if("function"!=typeof o)this._remaining--,this._result[e]=t;else if(n===U){var i=new n(p);g(i,t,o),this._willSettleAt(i,e)}else this._willSettleAt(new n(function(e){return e(t)}),e)}else this._willSettleAt(r(t),e)},Y.prototype._settledAt=function(t,e,n){var r=this.promise;r._state===ne&&(this._remaining--,t===oe?j(r,n):this._result[e]=n),0===this._remaining&&S(r,this._result)},Y.prototype._willSettleAt=function(t,e){var n=this;E(t,void 0,function(t){return n._settledAt(re,e,t)},function(t){return n._settledAt(oe,e,t)})},U.all=F,U.race=D,U.resolve=h,U.reject=K,U._setScheduler=n,U._setAsap=r,U._asap=J,U.prototype={constructor:U,then:l,"catch":function(t){return this.then(null,t)}},U.polyfill=W,U.Promise=U,U}),ES6Promise.polyfill(); \ No newline at end of file diff --git a/js/socket.min_afab9be.js b/js/socket.min_afab9be.js new file mode 100644 index 0000000..1005deb --- /dev/null +++ b/js/socket.min_afab9be.js @@ -0,0 +1 @@ +var __reflect=this&&this.__reflect||function(t,e,n){t.__class__=e,n?n.push(e):n=[e],t.__types__=t.__types__?n.concat(t.__types__):n},__extends=this&&this.__extends||function(t,e){function n(){this.constructor=t}for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o]);n.prototype=e.prototype,t.prototype=new n},egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e=function(e){function n(o,i){void 0===o&&(o=""),void 0===i&&(i=0);var s=e.call(this)||this;return s._writeMessage="",s._readMessage="",s._connected=!1,s._connecting=!1,s._isReadySend=!1,s._bytesWrite=!1,s._type=n.TYPE_STRING,s._connected=!1,s._writeMessage="",s._readMessage="",s.socket=new t.ISocket,s.socket.addCallBacks(s.onConnect,s.onClose,s.onSocketData,s.onError,s),s}return __extends(n,e),n.prototype.connect=function(t,e){this._connecting||this._connected||(this._connecting=!0,this.socket.connect(t,e))},n.prototype.connectByUrl=function(t){this._connecting||this._connected||(this._connecting=!0,this.socket.connectByUrl(t))},n.prototype.close=function(){this._connected&&this.socket.close()},n.prototype.onConnect=function(){this._connected=!0,this._connecting=!1,this.dispatchEventWith(t.Event.CONNECT)},n.prototype.onClose=function(){this._connected=!1,this.dispatchEventWith(t.Event.CLOSE)},n.prototype.onError=function(){this._connecting&&(this._connecting=!1),this.dispatchEventWith(t.IOErrorEvent.IO_ERROR)},n.prototype.onSocketData=function(e){"string"==typeof e?this._readMessage+=e:this._readByte._writeUint8Array(new Uint8Array(e)),t.ProgressEvent.dispatchProgressEvent(this,t.ProgressEvent.SOCKET_DATA)},n.prototype.flush=function(){return this._connected?(this._writeMessage&&(this.socket.send(this._writeMessage),this._writeMessage=""),this._bytesWrite&&(this.socket.send(this._writeByte.buffer),this._bytesWrite=!1,this._writeByte.clear()),void(this._isReadySend=!1)):void t.$warn(3101)},n.prototype.writeUTF=function(e){return this._connected?(this._type==n.TYPE_BINARY?(this._bytesWrite=!0,this._writeByte.writeUTF(e)):this._writeMessage+=e,void this.flush()):void t.$warn(3101)},n.prototype.readUTF=function(){var t;return this._type==n.TYPE_BINARY?(this._readByte.position=0,t=this._readByte.readUTF(),this._readByte.clear()):(t=this._readMessage,this._readMessage=""),t},n.prototype.writeBytes=function(e,n,o){return void 0===n&&(n=0),void 0===o&&(o=0),this._connected?this._writeByte?(this._bytesWrite=!0,this._writeByte.writeBytes(e,n,o),void this.flush()):void t.$warn(3102):void t.$warn(3101)},n.prototype.readBytes=function(e,n,o){return void 0===n&&(n=0),void 0===o&&(o=0),this._readByte?(this._readByte.position=0,this._readByte.readBytes(e,n,o),void this._readByte.clear()):void t.$warn(3102)},Object.defineProperty(n.prototype,"connected",{get:function(){return this._connected},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"type",{get:function(){return this._type},set:function(e){this._type=e,e!=n.TYPE_BINARY||this._writeByte||(this._readByte=new t.ByteArray,this._writeByte=new t.ByteArray)},enumerable:!0,configurable:!0}),n.TYPE_STRING="webSocketTypeString",n.TYPE_BINARY="webSocketTypeBinary",n}(t.EventDispatcher);t.WebSocket=e,__reflect(e.prototype,"egret.WebSocket")}(egret||(egret={}));var egret;!function(t){var e;!function(e){var n=function(){function e(){this.host="",this.port=0,window.WebSocket||t.$error(3100)}return e.prototype.addCallBacks=function(t,e,n,o,i){this.onConnect=t,this.onClose=e,this.onSocketData=n,this.onError=o,this.thisObject=i},e.prototype.connect=function(t,e){this.host=t,this.port=e;var n="ws://"+this.host+this.port==443?"":":"+this.port;this.socket=new window.WebSocket(n),this.socket.binaryType="arraybuffer",this._bindEvent()},e.prototype.connectByUrl=function(t){this.socket=new window.WebSocket(t),this.socket.binaryType="arraybuffer",this._bindEvent()},e.prototype._bindEvent=function(){var t=this,e=this.socket;e.onopen=function(){t.onConnect&&t.onConnect.call(t.thisObject)},e.onclose=function(e){t.onClose&&t.onClose.call(t.thisObject)},e.onerror=function(e){t.onError&&t.onError.call(t.thisObject)},e.onmessage=function(e){t.onSocketData&&(e.data?t.onSocketData.call(t.thisObject,e.data):t.onSocketData.call(t.thisObject,e))}},e.prototype.send=function(t){this.socket.send(t)},e.prototype.close=function(){this.socket.close()},e.prototype.disconnect=function(){this.socket.disconnect&&this.socket.disconnect()},e}();e.HTML5WebSocket=n,__reflect(n.prototype,"egret.web.HTML5WebSocket",["egret.ISocket"]),t.ISocket=n}(e=t.web||(t.web={}))}(egret||(egret={})); \ No newline at end of file diff --git a/js/tween.min_6c5a88f9.js b/js/tween.min_6c5a88f9.js new file mode 100644 index 0000000..abe1c4b --- /dev/null +++ b/js/tween.min_6c5a88f9.js @@ -0,0 +1 @@ +var __reflect=this&&this.__reflect||function(t,e,n){t.__class__=e,n?n.push(e):n=[e],t.__types__=t.__types__?n.concat(t.__types__):n},__extends=this&&this.__extends||function(t,e){function n(){this.constructor=t}for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i]);n.prototype=e.prototype,t.prototype=new n},egret;!function(t){var e=function(){function e(){t.$error(1014)}return e.get=function(t){return-1>t&&(t=-1),t>1&&(t=1),function(e){return 0==t?e:0>t?e*(e*-t+1+t):e*((2-e)*t+(1-t))}},e.getPowIn=function(t){return function(e){return Math.pow(e,t)}},e.getPowOut=function(t){return function(e){return 1-Math.pow(1-e,t)}},e.getPowInOut=function(t){return function(e){return(e*=2)<1?.5*Math.pow(e,t):1-.5*Math.abs(Math.pow(2-e,t))}},e.sineIn=function(t){return 1-Math.cos(t*Math.PI/2)},e.sineOut=function(t){return Math.sin(t*Math.PI/2)},e.sineInOut=function(t){return-.5*(Math.cos(Math.PI*t)-1)},e.getBackIn=function(t){return function(e){return e*e*((t+1)*e-t)}},e.getBackOut=function(t){return function(e){return--e*e*((t+1)*e+t)+1}},e.getBackInOut=function(t){return t*=1.525,function(e){return(e*=2)<1?.5*(e*e*((t+1)*e-t)):.5*((e-=2)*e*((t+1)*e+t)+2)}},e.circIn=function(t){return-(Math.sqrt(1-t*t)-1)},e.circOut=function(t){return Math.sqrt(1- --t*t)},e.circInOut=function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},e.bounceIn=function(t){return 1-e.bounceOut(1-t)},e.bounceOut=function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},e.bounceInOut=function(t){return.5>t?.5*e.bounceIn(2*t):.5*e.bounceOut(2*t-1)+.5},e.getElasticIn=function(t,e){var n=2*Math.PI;return function(i){if(0==i||1==i)return i;var s=e/n*Math.asin(1/t);return-(t*Math.pow(2,10*(i-=1))*Math.sin((i-s)*n/e))}},e.getElasticOut=function(t,e){var n=2*Math.PI;return function(i){if(0==i||1==i)return i;var s=e/n*Math.asin(1/t);return t*Math.pow(2,-10*i)*Math.sin((i-s)*n/e)+1}},e.getElasticInOut=function(t,e){var n=2*Math.PI;return function(i){var s=e/n*Math.asin(1/t);return(i*=2)<1?-.5*(t*Math.pow(2,10*(i-=1))*Math.sin((i-s)*n/e)):t*Math.pow(2,-10*(i-=1))*Math.sin((i-s)*n/e)*.5+1}},e.quadIn=e.getPowIn(2),e.quadOut=e.getPowOut(2),e.quadInOut=e.getPowInOut(2),e.cubicIn=e.getPowIn(3),e.cubicOut=e.getPowOut(3),e.cubicInOut=e.getPowInOut(3),e.quartIn=e.getPowIn(4),e.quartOut=e.getPowOut(4),e.quartInOut=e.getPowInOut(4),e.quintIn=e.getPowIn(5),e.quintOut=e.getPowOut(5),e.quintInOut=e.getPowInOut(5),e.backIn=e.getBackIn(1.7),e.backOut=e.getBackOut(1.7),e.backInOut=e.getBackInOut(1.7),e.elasticIn=e.getElasticIn(1,.3),e.elasticOut=e.getElasticOut(1,.3),e.elasticInOut=e.getElasticInOut(1,.3*1.5),e}();t.Ease=e,__reflect(e.prototype,"egret.Ease")}(egret||(egret={}));var egret;!function(t){var e=function(e){function n(t,n,i){var s=e.call(this)||this;return s._target=null,s._useTicks=!1,s.ignoreGlobalPause=!1,s.loop=!1,s.pluginData=null,s._steps=null,s.paused=!1,s.duration=0,s._prevPos=-1,s.position=null,s._prevPosition=0,s._stepPosition=0,s.passive=!1,s.initialize(t,n,i),s}return __extends(n,e),n.get=function(t,e,i,s){return void 0===i&&(i=null),void 0===s&&(s=!1),s&&n.removeTweens(t),new n(t,e,i)},n.removeTweens=function(t){if(t.tween_count){for(var e=n._tweens,i=e.length-1;i>=0;i--)e[i]._target==t&&(e[i].paused=!0,e.splice(i,1));t.tween_count=0}},n.pauseTweens=function(e){if(e.tween_count)for(var n=t.Tween._tweens,i=n.length-1;i>=0;i--)n[i]._target==e&&(n[i].paused=!0)},n.resumeTweens=function(e){if(e.tween_count)for(var n=t.Tween._tweens,i=n.length-1;i>=0;i--)n[i]._target==e&&(n[i].paused=!1)},n.tick=function(t,e){void 0===e&&(e=!1);var i=t-n._lastTime;n._lastTime=t;for(var s=n._tweens.concat(),r=s.length-1;r>=0;r--){var o=s[r];e&&!o.ignoreGlobalPause||o.paused||o.$tick(o._useTicks?1:i)}return!1},n._register=function(e,i){var s=e._target,r=n._tweens;if(i)s&&(s.tween_count=s.tween_count>0?s.tween_count+1:1),r.push(e),n._inited||(n._lastTime=t.getTimer(),t.ticker.$startTick(n.tick,null),n._inited=!0);else{s&&s.tween_count--;for(var o=r.length;o--;)if(r[o]==e)return void r.splice(o,1)}},n.removeAllTweens=function(){for(var t=n._tweens,e=0,i=t.length;i>e;e++){var s=t[e];s.paused=!0,s._target.tween_count=0}t.length=0},n.prototype.initialize=function(t,e,i){this._target=t,e&&(this._useTicks=e.useTicks,this.ignoreGlobalPause=e.ignoreGlobalPause,this.loop=e.loop,e.onChange&&this.addEventListener("change",e.onChange,e.onChangeObj),e.override&&n.removeTweens(t)),this.pluginData=i||{},this._curQueueProps={},this._initQueueProps={},this._steps=[],e&&e.paused?this.paused=!0:n._register(this,!0),e&&null!=e.position&&this.setPosition(e.position,n.NONE)},n.prototype.setPosition=function(t,e){void 0===e&&(e=1),0>t&&(t=0);var n=t,i=!1;if(n>=this.duration)if(this.loop){var s=n%this.duration;n=n>0&&0===s?this.duration:s}else n=this.duration,i=!0;if(n==this._prevPos)return i;i&&this.setPaused(!0);var r=this._prevPos;if(this.position=this._prevPos=n,this._prevPosition=t,this._target&&this._steps.length>0){for(var o=this._steps.length,u=-1,a=0;o>a&&!("step"==this._steps[a].type&&(u=a,this._steps[a].t<=n&&this._steps[a].t+this._steps[a].d>=n));a++);for(var a=0;o>a;a++)if("action"==this._steps[a].type)0!=e&&(this._useTicks?this._runAction(this._steps[a],n,n):1==e&&r>n?(r!=this.duration&&this._runAction(this._steps[a],r,this.duration),this._runAction(this._steps[a],0,n,!0)):this._runAction(this._steps[a],r,n));else if("step"==this._steps[a].type&&u==a){var p=this._steps[u];this._updateTargetProps(p,Math.min((this._stepPosition=n-p.t)/p.d,1))}}return this.dispatchEventWith("change"),i},n.prototype._runAction=function(t,e,n,i){void 0===i&&(i=!1);var s=e,r=n;e>n&&(s=n,r=e);var o=t.t;(o==r||o>s&&r>o||i&&o==e)&&t.f.apply(t.o,t.p)},n.prototype._updateTargetProps=function(t,e){var i,s,r,o,u,a;if(t||1!=e){if(this.passive=!!t.v,this.passive)return;t.e&&(e=t.e(e,0,1,1)),i=t.p0,s=t.p1}else this.passive=!1,i=s=this._curQueueProps;for(var p in this._initQueueProps){null==(o=i[p])&&(i[p]=o=this._initQueueProps[p]),null==(u=s[p])&&(s[p]=u=o),r=o==u||0==e||1==e||"number"!=typeof o?1==e?u:o:o+(u-o)*e;var h=!1;if(a=n._plugins[p])for(var c=0,_=a.length;_>c;c++){var f=a[c].tween(this,p,r,i,s,e,!!t&&i==s,!t);f==n.IGNORE?h=!0:r=f}h||(this._target[p]=r)}},n.prototype.setPaused=function(t){return this.paused==t?this:(this.paused=t,n._register(this,!t),this)},n.prototype._cloneProps=function(t){var e={};for(var n in t)e[n]=t[n];return e},n.prototype._addStep=function(t){return t.d>0&&(t.type="step",this._steps.push(t),t.t=this.duration,this.duration+=t.d),this},n.prototype._appendQueueProps=function(t){var e,i,s,r,o;for(var u in t)if(void 0===this._initQueueProps[u]){if(i=this._target[u],e=n._plugins[u])for(s=0,r=e.length;r>s;s++)i=e[s].init(this,u,i);this._initQueueProps[u]=this._curQueueProps[u]=void 0===i?null:i}else i=this._curQueueProps[u];for(var u in t){if(i=this._curQueueProps[u],e=n._plugins[u])for(o=o||{},s=0,r=e.length;r>s;s++)e[s].step&&e[s].step(this,u,i,t[u],o);this._curQueueProps[u]=t[u]}return o&&this._appendQueueProps(o),this._curQueueProps},n.prototype._addAction=function(t){return t.t=this.duration,t.type="action",this._steps.push(t),this},n.prototype._set=function(t,e){for(var n in t)e[n]=t[n]},n.prototype.wait=function(t,e){if(null==t||0>=t)return this;var n=this._cloneProps(this._curQueueProps);return this._addStep({d:t,p0:n,p1:n,v:e})},n.prototype.to=function(t,e,n){return void 0===n&&(n=void 0),(isNaN(e)||0>e)&&(e=0),this._addStep({d:e||0,p0:this._cloneProps(this._curQueueProps),e:n,p1:this._cloneProps(this._appendQueueProps(t))}),this.set(t)},n.prototype.call=function(t,e,n){return void 0===e&&(e=void 0),void 0===n&&(n=void 0),this._addAction({f:t,p:n?n:[],o:e?e:this._target})},n.prototype.set=function(t,e){return void 0===e&&(e=null),this._appendQueueProps(t),this._addAction({f:this._set,o:this,p:[t,e?e:this._target]})},n.prototype.play=function(t){return t||(t=this),this.call(t.setPaused,t,[!1])},n.prototype.pause=function(t){return t||(t=this),this.call(t.setPaused,t,[!0])},n.prototype.$tick=function(t){this.paused||this.setPosition(this._prevPosition+t)},n.NONE=0,n.LOOP=1,n.REVERSE=2,n._tweens=[],n.IGNORE={},n._plugins={},n._inited=!1,n._lastTime=0,n}(t.EventDispatcher);t.Tween=e,__reflect(e.prototype,"egret.Tween")}(egret||(egret={}));var egret;!function(t){var e;!function(e){function n(e){if("function"==typeof e)return e;var n=t.Ease[e];return"function"==typeof n?n:null}function i(t,e,n,i){var s=t.prototype;s.__meta__=s.__meta__||{},s.__meta__[e]=n,i&&(s.__defaultProperty__=e)}var s=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.name="",e}return __extends(e,t),e}(t.EventDispatcher);e.BasePath=s,__reflect(s.prototype,"egret.tween.BasePath");var r=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.props=void 0,e.duration=500,e.ease=void 0,e}return __extends(e,t),e}(s);e.To=r,__reflect(r.prototype,"egret.tween.To");var o=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.duration=500,e.passive=void 0,e}return __extends(e,t),e}(s);e.Wait=o,__reflect(o.prototype,"egret.tween.Wait");var u=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.props=void 0,e}return __extends(e,t),e}(s);e.Set=u,__reflect(u.prototype,"egret.tween.Set");var a=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.delta=0,e}return __extends(e,t),e}(s);e.Tick=a,__reflect(a.prototype,"egret.tween.Tick");var p=function(e){function i(){var t=e.call(this)||this;return t.isStop=!1,t}return __extends(i,e),Object.defineProperty(i.prototype,"props",{get:function(){return this._props},set:function(t){this._props=t},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"target",{get:function(){return this._target},set:function(t){this._target=t},enumerable:!0,configurable:!0}),Object.defineProperty(i.prototype,"paths",{get:function(){return this._paths},set:function(t){this._paths=t||[]},enumerable:!0,configurable:!0}),i.prototype.play=function(t){this.tween?(this.tween.setPaused(!1),this.isStop&&void 0==t&&(t=0,this.isStop=!1),void 0!==t&&null!==t&&this.tween.setPosition(t)):this.createTween(t)},i.prototype.pause=function(){this.tween&&this.tween.setPaused(!0)},i.prototype.stop=function(){this.pause(),this.isStop=!0},i.prototype.createTween=function(e){this.tween=t.Tween.get(this._target,this._props),this._paths&&this.applyPaths(),void 0!==e&&null!==e&&this.tween.setPosition(e)},i.prototype.applyPaths=function(){for(var t=0;t=0&&e===this._paths.length-1&&this.dispatchEventWith("complete")},i}(t.EventDispatcher);e.TweenItem=p,__reflect(p.prototype,"egret.tween.TweenItem"),i(p,"paths","Array",!0);var h=function(t){function e(){var e=t.call(this)||this;return e.completeCount=0,e}return __extends(e,t),Object.defineProperty(e.prototype,"items",{get:function(){return this._items},set:function(t){this.completeCount=0,this.registerEvent(!1),this._items=t,this.registerEvent(!0)},enumerable:!0,configurable:!0}),e.prototype.registerEvent=function(t){var e=this;this._items&&this._items.forEach(function(n){t?n.addEventListener("complete",e.itemComplete,e):n.removeEventListener("complete",e.itemComplete,e)})},e.prototype.play=function(t){if(this._items)for(var e=0;e 'tfKevot5lSwB5A5gcqPQMMhaXDLjib0P', + 'client_secret' => '95KWP8sbRIUu5df7gBo5fIztz6ISmvfa' +]; + +// cURL 函数 +function get_curl($url, $post = 0, $referer = 0, $cookie = 0, $header = 0, $ua = 0, $nobaody = 0, $addheader = 0) +{ + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + $httpheader[] = "Accept: */*"; + $httpheader[] = "Accept-Encoding: gzip,deflate,sdch"; + $httpheader[] = "Accept-Language: zh-CN,zh;q=0.8"; + $httpheader[] = "Connection: close"; + if ($header) { + $httpheader = array_merge($httpheader, $header); + } + curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader); + if ($post) { + curl_setopt($ch, CURLOPT_POST, 1); + curl_setopt($ch, CURLOPT_POSTFIELDS, $post); + } + if ($header) { + curl_setopt($ch, CURLOPT_HEADER, false); + } + if ($cookie) { + curl_setopt($ch, CURLOPT_COOKIE, $cookie); + } + if ($referer) { + if ($referer == 1) { + curl_setopt($ch, CURLOPT_REFERER, ''); + } else { + curl_setopt($ch, CURLOPT_REFERER, $referer); + } + } + if ($ua) { + curl_setopt($ch, CURLOPT_USERAGENT, $ua); + } else { + curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"); + } + if ($nobaody) { + curl_setopt($ch, CURLOPT_NOBODY, 1); + } + curl_setopt($ch, CURLOPT_ENCODING, "gzip"); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + $ret = curl_exec($ch); + curl_close($ch); + return $ret; +} + +$code = $_GET['code']; + +$key = base64_encode($_LINUXDO_CONNECT['client_id'] . ':' . $_LINUXDO_CONNECT['client_secret']); + +$header = [ + 'Authorization: Basic ' . $key +]; + +$post = http_build_query([ + 'grant_type' => 'authorization_code', + 'code' => $code, + 'redirect_uri' => '' +]); + +$getTokenRes = get_curl('https://connect.linux.do/oauth2/token', $post, 0, 0, $header); + +$getTokenArr = json_decode($getTokenRes, true); + +if (isset($getTokenArr['access_token'])) { + $access_token = $getTokenArr['access_token']; + + $header = [ + 'Authorization: Bearer ' . $access_token + ]; + + $getUserRes = get_curl('https://connect.linux.do/api/user', 0, 0, 0, $header); + + $getUserArr = json_decode($getUserRes, true); +} else { + $err = json_encode($getTokenArr); +} + +?> + + + + + + + + + + + + + + + + + + + + + <?= $_CONFIG['game_name'] ?> <?= $_CONFIG['game_description'] ?> + + + + + + + + + + + + + + + 授权发生异常: + + + + \ No newline at end of file diff --git a/login.php b/login.php new file mode 100644 index 0000000..ad8d0a1 --- /dev/null +++ b/login.php @@ -0,0 +1,736 @@ + + connect_errno) returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); +$mySQLi->set_charset($_CONFIG_DB['db_charset']); + +// 查询 +$status = 1; +$stmt = $mySQLi->prepare('select server_id from server where status >= ? order by server_id asc limit 1000'); +$stmt->bind_param('d', $status); + +$stmt->bind_result($server_id); +$stmt->execute(); +$stmt->store_result(); + +?> + + + + + + + + + + + + + + + + + + + + <?=$_CONFIG['game_name']?> <?=$_CONFIG['game_description']?> + + + + + + + + + + + + + +
+ +
+
+ + + \ No newline at end of file diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..0aef59a --- /dev/null +++ b/manifest.json @@ -0,0 +1,18 @@ +{ + "initial": [ + "js/egret.min_cc7ab31a.js?v=1.2", + "js/egret.web.min_f6a09338.js", + "js/eui.min_493403ce.js", + "js/assetsmanager.min_f5f8ba18.js", + "js/game.min_fc12b653.js", + "js/socket.min_afab9be.js", + "js/tween.min_6c5a88f9.js", + "js/promise.min_83a6a5d.js", + "js/jszip.min_3648741c.js", + "js/lib.min_jocw9Tu2.js" + ], + "game": [ + "js/default.thm_a7013eeb.js", + "js/main.min_jocw9Tu2.js" + ] +} \ No newline at end of file diff --git a/notice.txt b/notice.txt new file mode 100644 index 0000000..09f6e11 --- /dev/null +++ b/notice.txt @@ -0,0 +1,13 @@ +[ + { + "title":"公告", + "text":"【开服转生礼包】\n★ 2转送特权令*2,可提升会员等级,尊享更高特权 ★\n★ 3转送金玫瑰时装,详见【精彩活动】-【开服转生】★\n(仅限开服前3天)\n\n【VIP专属礼包】\n仅限该账号当日尊享,福利大厅-激活码-兑换使用:\n1、VIP666:绑定金币*50w、洗炼石*20、神魔结晶*5\n2、VIP888:狂风碎片*3、九品证明*3、祝福油*5\n3、VIP999:初阶秘籍*20、暴击碎片*5、星之碎片*10" + }, + { + "title":"充值公告", + "text":"真诚、友善、团结、专业,共建你我和谐之游戏氛围。\n\n凭自己的努力开始努力把!本服谢绝任何充值!" + },{ + "title":"更新说明", + "text":"1.增加机缘宝箱,用于补偿合服造成的损失,使用激活码 tiancijiyuan (天赐机缘),能获得什么全靠脸\n奖品池:魔器盒子(2%),刈鹿刀(2%),不争(2%),霜华(2%),辉金甲(2%),天命之子(2%),黄金宸龙(2%),披风盒子*3(10%),5w真充元宝券(6%),金牛炎盒子(30%),金牛盒子(40%)\n2.修改披风的掉落,牛魔追加披风掉落\n3.调整披风的合成方案,由原来的5个改成3个\n4.修改了部分物品的堆叠,比如银两等调整为99999\n5.增加了炎之战神凭证的合成方案和星王凭证的合成方案" + } +] \ No newline at end of file diff --git a/pay/api.php b/pay/api.php new file mode 100644 index 0000000..1a8388c --- /dev/null +++ b/pay/api.php @@ -0,0 +1,75 @@ + + + + + + 支付中心 + + trim($alipay_config['partner']), + "type" => $type, + "notify_url" => $notify_url, + "return_url" => $return_url, + "out_trade_no" => $out_trade_no, + "name" => $name, + "money" => $money, + "sitename" => $sitename +); + +//建立请求 +$alipaySubmit = new AlipaySubmit($alipay_config); +$html_text = $alipaySubmit->buildRequestForm($parameter); +echo $html_text; +preg_match('@^(?:https://)?([^/]+)@i', + $alipay_config['apiurl'], $matches); +$host = $matches[1]; + +preg_match('/[^.]+\.[^.]+$/', $host, $matches); +if ($matches[0] !=$copy) +{ + exit("当前api未授权!请使用www.ttfk.cc"); +} +?> + + \ No newline at end of file diff --git a/pay/config.php b/pay/config.php new file mode 100644 index 0000000..d223986 --- /dev/null +++ b/pay/config.php @@ -0,0 +1,34 @@ + 'com.game191.icelegend10', // test + '10' => 'com.game191.icelegend10', + '30' => 'com.game191.icelegend30', + '50' => 'com.game191.icelegend50', + '100' => 'com.game191.icelegend100', + '300' => 'com.game191.icelegend300', + '500' => 'com.game191.icelegend500', + '1000' => 'com.game191.icelegend1000', + '3000' => 'com.game191.icelegend3000', +); + +$alipay_config['partner'] = $id; +$alipay_config['key'] = $apikey; +//签名方式 不需修改 +$alipay_config['sign_type'] = strtoupper('MD5'); + +//字符编码格式 目前支持 gbk 或 utf-8 +$alipay_config['input_charset'] = strtolower('utf-8'); + +//访问模式,根据自己的服务器是否支持ssl访问,若支持请选择https;若不支持请选择http +$alipay_config['transport'] = 'http'; +$alipay_config['apiurl'] = 'https://www.ttfk.cc/'; diff --git a/pay/img/css/style.css b/pay/img/css/style.css new file mode 100644 index 0000000..637c900 --- /dev/null +++ b/pay/img/css/style.css @@ -0,0 +1,43 @@ +body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,legend,button,form,fieldset,input,textarea,p,blockquote,th,td{padding:0;margin:0;} +q:before,q:after{content:'';} +fieldset,img,abbr,acronym{border:0 none;} +abbr,acronym{font-variant:normal;} +legend{color:#000;} +address,caption,cite,code,dfn,em,strong,th,var{font-weight:normal;font-style:normal;} +sup{vertical-align:text-top;} +sub{vertical-align:text-bottom;} +table{border-collapse:collapse;border-spacing:0;} +caption,th{text-align:left;} +input,img,select{vertical-align:middle;} +ol,ul{list-style:none;} +input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;} +h1,h2,h3,h4,h5,h6{font-weight:normal;font-size:100%;} +del,ins,a{text-decoration:none;} +a:link{} +a:visited{} +input[type="submit"]{cursor:pointer;} +.content{width: 100%;float: left;} +button{cursor:pointer;} +input::-moz-focus-inner{border:0;padding:0;} +.clear{clear:both;} +.aaa,.aaaa{ border-radius: 5px; display: block;width: 30%;float: left;margin: 1% 0.5%;text-align: center;height: 2.5rem;line-height: 2.5rem;border: 1px solid #3369ff;color: #3369ff;} +.aaamoney{border-radius: 5px;border: none;width:100%;text-align: center;line-height: 2.5rem;} +.text-center{width: 80%;margin: 0 auto;} +p{color: #6262ff;font-weight: 800;} +.game_name{border-radius: 5px;height: 2.5rem;text-indent: 0.5rem;width: 100%;border: solid #627bff 1px;background: #fff;margin: 10px 0px;line-height: 2.5rem;} +.serverlist{border-radius: 5px;text-indent: 0.5rem;height: 2.5rem;width: 100%;border: solid #627bff 1px;background: #fff;margin: 10px 0px;color:#f46262;font-weight: 800;line-height: 2.5rem;} +.top_center{font-size: 2rem;margin: 1rem 1rem;color: #ff6767;font-weight: 800;} +.bottom{float: left;width: 100%;} +.bottom p{height:3rem;height: 3rem;width: 45%;float: left;background: #f8f8f8;margin: 10px 0px 10px 13px;line-height: 3rem;border-radius: 5px;} +.wxpay{background: url(/pay/img/wx.png) 50% 50% no-repeat;} +.alipay{ background: url(/pay/img/zfb.png) 40% 50% no-repeat;} +.bottom button{height: 3rem;width: 100%;border: solid 1px #3369ff;border-radius: 5px;} +input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset !important;} +#autoBox{display:none; border: solid #627bff 1px;border-radius: 5px;} +#autoBox li{ border-bottom: dashed #627bff 1px; margin: 2% 5%; font-size: 1.1rem;height: 1.5rem;font-weight: 800;line-height: 1.5rem;} +#autoBox li span{float: right;color:#ff4141;} +form {width: 100%;height: 100%;float: left;} +.footer{float: left;margin: 0 auto;height: 3rem;width: 100%; +} +.footer p{text-align:center;margin-top:5%;} +.footer a{color: #f97474;} diff --git a/pay/img/wx.png b/pay/img/wx.png new file mode 100644 index 0000000..c3e216f Binary files /dev/null and b/pay/img/wx.png differ diff --git a/pay/img/zfb.png b/pay/img/zfb.png new file mode 100644 index 0000000..af9361c Binary files /dev/null and b/pay/img/zfb.png differ diff --git a/pay/index.php b/pay/index.php new file mode 100644 index 0000000..b2f4c1a --- /dev/null +++ b/pay/index.php @@ -0,0 +1,69 @@ += $money) exit('金额错误!'); +if(!isset($serverid) || !isset($actorid)) exit('参数错误!'); + +$sid = intval(str_replace('s', '', $serverid)); +$db_name = 'mir_actor_s'.$sid; +if(0 >= $sid) exit('区服ID错误!'); + +$conn = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $db_name, $_CONFIG_DB['db_port']); +// 检测连接 +if ($conn->connect_error) { + die("连接失败: " . $conn->connect_error); +} +$stmt = $conn->prepare('SELECT actorname FROM `actors` WHERE actorid = ? limit 1'); +$stmt->bind_param('s', $actorid); +$stmt->execute(); +$result = $stmt->get_result(); +$row = mysqli_fetch_assoc($result); +if(empty($row)) exit('找不到角色!'); + +$username = isset($row) ? $row['actorname'] : ''; +$out_trade_no = date("YmdHis").mt_rand(100,999); + +?> + + + + + + + + 赞助中心-<?=$_CONFIG['game_name']?> + + + + + + + diff --git a/pay/lib/core.php b/pay/lib/core.php new file mode 100644 index 0000000..d0f72c1 --- /dev/null +++ b/pay/lib/core.php @@ -0,0 +1,176 @@ + $val) { + $arg.=$key."=".$val."&"; + } + //去掉最后一个&字符 + $arg = substr($arg,0,count((array)$arg)-2); + + //如果存在转义字符,那么去掉转义 + if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()){$arg = stripslashes($arg);} + + return $arg; +} +/** + * 把数组所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串,并对字符串做urlencode编码 + * @param $para 需要拼接的数组 + * return 拼接完成以后的字符串 + */ +function createLinkstringUrlencode($para) { + $arg = ""; + foreach ($para as $key => $val) { + $arg.=$key."=".urlencode($val)."&"; + } + //去掉最后一个&字符 + $arg = substr($arg,0,count($arg)-2); + + //如果存在转义字符,那么去掉转义 + if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()){$arg = stripslashes($arg);} + + return $arg; +} +/** + * 除去数组中的空值和签名参数 + * @param $para 签名参数组 + * return 去掉空值与签名参数后的新签名参数组 + */ +function paraFilter($para) { + $para_filter = array(); + foreach ($para as $key => $val) { + if($key == "sign" || $key == "sign_type" || $val == "")continue; + else $para_filter[$key] = $para[$key]; + } + return $para_filter; +} +/** + * 对数组排序 + * @param $para 排序前的数组 + * return 排序后的数组 + */ +function argSort($para) { + ksort($para); + reset($para); + return $para; +} +/** + * 写日志,方便测试(看网站需求,也可以改成把记录存入数据库) + * 注意:服务器需要开通fopen配置 + * @param $word 要写入日志里的文本内容 默认值:空值 + */ +function logResult($word='') { + $fp = fopen("log.txt","a"); + flock($fp, LOCK_EX) ; + fwrite($fp,"执行日期:".strftime("%Y%m%d%H%M%S",time())."\n".$word."\n"); + flock($fp, LOCK_UN); + fclose($fp); +} + +/** + * 远程获取数据,POST模式 + * 注意: + * 1.使用Crul需要修改服务器中php.ini文件的设置,找到php_curl.dll去掉前面的";"就行了 + * 2.文件夹中cacert.pem是SSL证书请保证其路径有效,目前默认路径是:getcwd().'\\cacert.pem' + * @param $url 指定URL完整路径地址 + * @param $cacert_url 指定当前工作目录绝对路径 + * @param $para 请求的数据 + * @param $input_charset 编码格式。默认值:空值 + * return 远程输出的数据 + */ +function getHttpResponsePOST($url, $cacert_url, $para, $input_charset = '') { + + if (trim($input_charset) != '') { + $url = $url."_input_charset=".$input_charset; + } + $curl = curl_init($url); + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);//SSL证书认证 + curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);//严格认证 + curl_setopt($curl, CURLOPT_CAINFO,$cacert_url);//证书地址 + curl_setopt($curl, CURLOPT_HEADER, 0 ); // 过滤HTTP头 + curl_setopt($curl,CURLOPT_RETURNTRANSFER, 1);// 显示输出结果 + curl_setopt($curl,CURLOPT_POST,true); // post传输数据 + curl_setopt($curl,CURLOPT_POSTFIELDS,$para);// post传输数据 + $responseText = curl_exec($curl); + //var_dump( curl_error($curl) );//如果执行curl过程中出现异常,可打开此开关,以便查看异常内容 + curl_close($curl); + + return $responseText; +} + +/** + * 远程获取数据,GET模式 + * 注意: + * 1.使用Crul需要修改服务器中php.ini文件的设置,找到php_curl.dll去掉前面的";"就行了 + * 2.文件夹中cacert.pem是SSL证书请保证其路径有效,目前默认路径是:getcwd().'\\cacert.pem' + * @param $url 指定URL完整路径地址 + * @param $cacert_url 指定当前工作目录绝对路径 + * return 远程输出的数据 + */ +function getHttpResponseGET($url,$cacert_url) { + $curl = curl_init($url); + curl_setopt($curl, CURLOPT_HEADER, 0 ); // 过滤HTTP头 + curl_setopt($curl,CURLOPT_RETURNTRANSFER, 1);// 显示输出结果 + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);//SSL证书认证 + curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);//严格认证 + curl_setopt($curl, CURLOPT_CAINFO,$cacert_url);//证书地址 + $responseText = curl_exec($curl); + //var_dump( curl_error($curl) );//如果执行curl过程中出现异常,可打开此开关,以便查看异常内容 + curl_close($curl); + + return $responseText; +} + +/** + * 实现多种字符编码方式 + * @param $input 需要编码的字符串 + * @param $_output_charset 输出的编码格式 + * @param $_input_charset 输入的编码格式 + * return 编码后的字符串 + */ +function charsetEncode($input,$_output_charset ,$_input_charset) { + $output = ""; + if(!isset($_output_charset) )$_output_charset = $_input_charset; + if($_input_charset == $_output_charset || $input ==null ) { + $output = $input; + } elseif (function_exists("mb_convert_encoding")) { + $output = mb_convert_encoding($input,$_output_charset,$_input_charset); + } elseif(function_exists("iconv")) { + $output = iconv($_input_charset,$_output_charset,$input); + } else die("sorry, you have no libs support for charset change."); + return $output; +} +/** + * 实现多种字符解码方式 + * @param $input 需要解码的字符串 + * @param $_output_charset 输出的解码格式 + * @param $_input_charset 输入的解码格式 + * return 解码后的字符串 + */ +function charsetDecode($input,$_input_charset ,$_output_charset) { + $output = ""; + if(!isset($_input_charset) )$_input_charset = $_input_charset ; + if($_input_charset == $_output_charset || $input ==null ) { + $output = $input; + } elseif (function_exists("mb_convert_encoding")) { + $output = mb_convert_encoding($input,$_output_charset,$_input_charset); + } elseif(function_exists("iconv")) { + $output = iconv($_input_charset,$_output_charset,$input); + } else die("sorry, you have no libs support for charset changes."); + return $output; +} +?> \ No newline at end of file diff --git a/pay/lib/md5.php b/pay/lib/md5.php new file mode 100644 index 0000000..90c4c90 --- /dev/null +++ b/pay/lib/md5.php @@ -0,0 +1,41 @@ + \ No newline at end of file diff --git a/pay/lib/notify.php b/pay/lib/notify.php new file mode 100644 index 0000000..4a3fb72 --- /dev/null +++ b/pay/lib/notify.php @@ -0,0 +1,120 @@ +alipay_config = $alipay_config; + $this->http_verify_url = $this->alipay_config['apiurl'].'api.php?'; + } + function AlipayNotify($alipay_config) { + $this->__construct($alipay_config); + } + /** + * 针对notify_url验证消息是否是支付宝发出的合法消息 + * @return 验证结果 + */ + function verifyNotify(){ + if(empty($_POST)) {//判断POST来的数组是否为空 + return false; + } + else { + //生成签名结果 + $isSign = $this->getSignVeryfy($_POST, $_POST["sign"]); + //获取支付宝远程服务器ATN结果(验证是否是支付宝发来的消息) + $responseTxt = 'true'; + //if (! empty($_POST["notify_id"])) {$responseTxt = $this->getResponse($_POST["notify_id"]);} + + //验证 + //$responsetTxt的结果不是true,与服务器设置问题、合作身份者ID、notify_id一分钟失效有关 + //isSign的结果不是true,与安全校验码、请求时的参数格式(如:带自定义参数等)、编码格式有关 + if (preg_match("/true$/i",$responseTxt) && $isSign) { + return true; + } else { + return false; + } + } + } + + /** + * 针对return_url验证消息是否是支付宝发出的合法消息 + * @return 验证结果 + */ + function verifyReturn(){ + if(empty($_POST)) {//判断POST来的数组是否为空 + return false; + } + else { + //生成签名结果 + $isSign = $this->getSignVeryfy($_POST, $_POST["sign"]); + //获取支付宝远程服务器ATN结果(验证是否是支付宝发来的消息) + $responseTxt = 'true'; + //if (! empty($_POST["notify_id"])) {$responseTxt = $this->getResponse($_POST["notify_id"]);} + + //验证 + //$responsetTxt的结果不是true,与服务器设置问题、合作身份者ID、notify_id一分钟失效有关 + //isSign的结果不是true,与安全校验码、请求时的参数格式(如:带自定义参数等)、编码格式有关 + if (preg_match("/true$/i",$responseTxt) && $isSign) { + return true; + } else { + return false; + } + } + } + + /** + * 获取返回时的签名验证结果 + * @param $para_temp 通知返回来的参数数组 + * @param $sign 返回的签名结果 + * @return 签名验证结果 + */ + function getSignVeryfy($para_temp, $sign) { + //除去待签名参数数组中的空值和签名参数 + $para_filter = paraFilter($para_temp); + + //对待签名参数数组排序 + $para_sort = argSort($para_filter); + + //把数组所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串 + $prestr = createLinkstring($para_sort); + + $isSgin = false; + $isSgin = md5Verify($prestr, $sign, $this->alipay_config['key']); + + return $isSgin; + } + + /** + * 获取远程服务器ATN结果,验证返回URL + * @param $notify_id 通知校验ID + * @return 服务器ATN结果 + * 验证结果集: + * invalid命令参数不对 出现这个错误,请检测返回处理中partner和key是否为空 + * true 返回正确信息 + * false 请检查防火墙或者是服务器阻止端口问题以及验证时间是否超过一分钟 + */ + function getResponse($notify_id) { + $transport = strtolower(trim($this->alipay_config['transport'])); + $partner = trim($this->alipay_config['partner']); + $veryfy_url = ''; + if($transport == 'https') { + $veryfy_url = $this->https_verify_url; + } + else { + $veryfy_url = $this->http_verify_url; + } + $veryfy_url = $veryfy_url."partner=" . $partner . "¬ify_id=" . $notify_id; + $responseTxt = getHttpResponseGET($veryfy_url, $this->alipay_config['cacert']); + + return $responseTxt; + } +} +?> diff --git a/pay/lib/sub.php b/pay/lib/sub.php new file mode 100644 index 0000000..c0e53d7 --- /dev/null +++ b/pay/lib/sub.php @@ -0,0 +1,103 @@ +alipay_config = $alipay_config; + $this->alipay_gateway_new = $this->alipay_config['apiurl'].'submit.php?'; + } + function AlipaySubmit($alipay_config) { + $this->__construct($alipay_config); + } + + /** + * 生成签名结果 + * @param $para_sort 已排序要签名的数组 + * return 签名结果字符串 + */ + function buildRequestMysign($para_sort) { + //把数组所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串 + $prestr = createLinkstring($para_sort); + + $mysign = md5Sign($prestr, $this->alipay_config['key']); + + return $mysign; + } + + /** + * 生成要请求给支付宝的参数数组 + * @param $para_temp 请求前的参数数组 + * @return 要请求的参数数组 + */ + function buildRequestPara($para_temp) { + //除去待签名参数数组中的空值和签名参数 + $para_filter = paraFilter($para_temp); + + //对待签名参数数组排序 + $para_sort = argSort($para_filter); + + //生成签名结果 + $mysign = $this->buildRequestMysign($para_sort); + + //签名结果与签名方式加入请求提交参数组中 + $para_sort['sign'] = $mysign; + $para_sort['sign_type'] = strtoupper(trim($this->alipay_config['sign_type'])); + + return $para_sort; + } + + /** + * 生成要请求给支付宝的参数数组 + * @param $para_temp 请求前的参数数组 + * @return 要请求的参数数组字符串 + */ + function buildRequestParaToString($para_temp) { + //待请求参数数组 + $para = $this->buildRequestPara($para_temp); + + //把参数组中所有元素,按照“参数=参数值”的模式用“&”字符拼接成字符串,并对字符串做urlencode编码 + $request_data = createLinkstringUrlencode($para); + + return $request_data; + } + + /** + * 建立请求,以表单HTML形式构造(默认) + * @param $para_temp 请求参数数组 + * @param $method 提交方式。两个值可选:post、get + * @param $button_name 确认按钮显示文字 + * @return 提交表单HTML文本 + */ + function buildRequestForm($para_temp, $method='POST', $button_name='正在跳转') { + //待请求参数数组 + $para = $this->buildRequestPara($para_temp); + + $sHtml = "
"; + foreach ($para as $key => $val) { + $sHtml.= ""; + } + + //submit按钮控件请不要含有name属性 + $sHtml = $sHtml."
"; + + $sHtml = $sHtml.""; + + return $sHtml; + } +} +?> \ No newline at end of file diff --git a/pay/notify_url.php b/pay/notify_url.php new file mode 100644 index 0000000..b463e14 --- /dev/null +++ b/pay/notify_url.php @@ -0,0 +1,137 @@ += $money) payLog(true, '金额错误!'); + +$arr = explode('_', $_POST['name']); +$serverId = $arr['0']; +$roleId = $arr['1']; +$username = $arr['2']; +if(!isset($serverId) || !isset($roleId) || !isset($username)) payLog(true, 'serverId/roleId/username参数错误!'); + +$sid = intval(str_replace('s', '', $serverId)); +$db_name = 'mir_actor_s'.$sid; +if(0 >= $sid) payLog(true, '区服ID错误!'); + +// 计算得出通知验证结果 +$alipayNotify = new AlipayNotify($alipay_config); +$verify_result = $alipayNotify->verifyNotify(); +if(!$verify_result) { + payLog(true, '签名验证失败'); +} + +// 连接区服数据库 +$actorDB = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $db_name, $_CONFIG_DB['db_port']); +if ($actorDB->connect_error) payLog(true, '区服数据库连接失败: '.$actorDB->connect_error); + +$feeSQL = "INSERT INTO `feecallback` (`pfid`, `serverid`, `actorid`, `account`, `prodid`, `num`, `oldserverid`) VALUES ('$pfid', '$sid', '$roleId', '$username', '{$wupin["$money"]}', '$bili', '1')"; + +// FEE插入成功 +if (TRUE === $actorDB->query($feeSQL)) { + payLog(false, 'fee insert success'.PHP_EOL.$feeSQL); + + // 连接订单数据库 + $orderDB = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); + if ($orderDB->connect_error) { + $actorDB->close(); + payLog(true, '订单数据库连接失败: '.$orderDB->connect_error); + } + + // test + //payLog(false, 'fee insert success 1'); + + // 根据角色ID获取帐号ID + $actorRes = $actorDB->query("SELECT accountid, actorname FROM `actors` WHERE actorid = $roleId LIMIT 1"); + $actor = $actorRes->fetch_array(MYSQLI_ASSOC); + $actorRes->free(); + if(empty($actor)) { + $orderDB->close(); + $actorDB->close(); + payLog(true, '获取accountid失败'); + } + $accountId = $actor['accountid']; + $roleName = $actor['actorname']; + + // test + //payLog(false, 'fee insert success 2'); + + // 连接帐号数据库 + $accountDB = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], 'mir_account', $_CONFIG_DB['db_port']); + if ($accountDB->connect_error) { + $orderDB->close(); + $actorDB->close(); + payLog(true, '帐号数据库连接失败: '.$accountDB->connect_error); + } + + // test + //payLog(false, 'fee insert success 3'); + + // 根据帐号ID获取帐号 + $accountRes = $accountDB->query("SELECT account FROM `globaluser` WHERE userid = $accountId LIMIT 1"); + $accountData = $accountRes->fetch_array(MYSQLI_ASSOC); + $accountRes->free(); + if(empty($accountData)) { + $orderDB->close(); + $actorDB->close(); + $accountDB->close(); + payLog(true, '获取account失败'); + } + $account = $accountData['account']; + + // test + //payLog(false, 'fee insert success 4'); + + // 创建订单记录 + $orderSQL = "INSERT INTO `order` (`account`, `server_id`, `role_id`, `role_name`, `product`, `money`, `time`) VALUES ('$account', '$sid', '$roleId', '$roleName', '{$wupin["$money"]}', '$money', '$time')"; + if (FALSE === $orderDB->query($orderSQL)) { + payLog(false, 'order create fail'.PHP_EOL.$orderSQL.PHP_EOL.'sql error: '.$orderDB->error); + } + + // test + //payLog(false, 'fee insert success 5'); + + $actorDB->close(); + $orderDB->close(); + $accountDB->close(); + + exit('success'); +} else { + $actorDB->close(); + payLog(false, 'fee insert fail'.PHP_EOL.$feeSQL.PHP_EOL.'sql error: '.$actorDB->error); + + exit('Error: '.$feeSQL.'
'.$actorDB->error); +} diff --git a/php/PHPMailer/#/COMMITMENT b/php/PHPMailer/#/COMMITMENT new file mode 100644 index 0000000..a687e0d --- /dev/null +++ b/php/PHPMailer/#/COMMITMENT @@ -0,0 +1,46 @@ +GPL Cooperation Commitment +Version 1.0 + +Before filing or continuing to prosecute any legal proceeding or claim +(other than a Defensive Action) arising from termination of a Covered +License, we commit to extend to the person or entity ('you') accused +of violating the Covered License the following provisions regarding +cure and reinstatement, taken from GPL version 3. As used here, the +term 'this License' refers to the specific Covered License being +enforced. + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly + and finally terminates your license, and (b) permanently, if the + copyright holder fails to notify you of the violation by some + reasonable means prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you + have received notice of violation of this License (for any work) + from that copyright holder, and you cure the violation prior to 30 + days after your receipt of the notice. + +We intend this Commitment to be irrevocable, and binding and +enforceable against us and assignees of or successors to our +copyrights. + +Definitions + +'Covered License' means the GNU General Public License, version 2 +(GPLv2), the GNU Lesser General Public License, version 2.1 +(LGPLv2.1), or the GNU Library General Public License, version 2 +(LGPLv2), all as published by the Free Software Foundation. + +'Defensive Action' means a legal proceeding or claim that We bring +against you in response to a prior proceeding or claim initiated by +you or your affiliate. + +'We' means each contributor to this repository as of the date of +inclusion of this file, including subsidiaries of a corporate +contributor. + +This work is available under a Creative Commons Attribution-ShareAlike +4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). diff --git a/php/PHPMailer/#/LICENSE b/php/PHPMailer/#/LICENSE new file mode 100644 index 0000000..f166cc5 --- /dev/null +++ b/php/PHPMailer/#/LICENSE @@ -0,0 +1,502 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! \ No newline at end of file diff --git a/php/PHPMailer/#/README.md b/php/PHPMailer/#/README.md new file mode 100644 index 0000000..3a1a05b --- /dev/null +++ b/php/PHPMailer/#/README.md @@ -0,0 +1,229 @@ +[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://supportukrainenow.org/) + +![PHPMailer](https://raw.github.com/PHPMailer/PHPMailer/master/examples/images/phpmailer.png) + +# PHPMailer – A full-featured email creation and transfer class for PHP + +[![Test status](https://github.com/PHPMailer/PHPMailer/workflows/Tests/badge.svg)](https://github.com/PHPMailer/PHPMailer/actions) +[![codecov.io](https://codecov.io/gh/PHPMailer/PHPMailer/branch/master/graph/badge.svg?token=iORZpwmYmM)](https://codecov.io/gh/PHPMailer/PHPMailer) +[![Latest Stable Version](https://poser.pugx.org/phpmailer/phpmailer/v/stable.svg)](https://packagist.org/packages/phpmailer/phpmailer) +[![Total Downloads](https://poser.pugx.org/phpmailer/phpmailer/downloads)](https://packagist.org/packages/phpmailer/phpmailer) +[![License](https://poser.pugx.org/phpmailer/phpmailer/license.svg)](https://packagist.org/packages/phpmailer/phpmailer) +[![API Docs](https://github.com/phpmailer/phpmailer/workflows/Docs/badge.svg)](https://phpmailer.github.io/PHPMailer/) + +## Features +- Probably the world's most popular code for sending email from PHP! +- Used by many open-source projects: WordPress, Drupal, 1CRM, SugarCRM, Yii, Joomla! and many more +- Integrated SMTP support – send without a local mail server +- Send emails with multiple To, CC, BCC and Reply-to addresses +- Multipart/alternative emails for mail clients that do not read HTML email +- Add attachments, including inline +- Support for UTF-8 content and 8bit, base64, binary, and quoted-printable encodings +- SMTP authentication with LOGIN, PLAIN, CRAM-MD5, and XOAUTH2 mechanisms over SMTPS and SMTP+STARTTLS transports +- Validates email addresses automatically +- Protects against header injection attacks +- Error messages in over 50 languages! +- DKIM and S/MIME signing support +- Compatible with PHP 5.5 and later, including PHP 8.1 +- Namespaced to prevent name clashes +- Much more! + +## Why you might need it +Many PHP developers need to send email from their code. The only PHP function that supports this directly is [`mail()`](https://www.php.net/manual/en/function.mail.php). However, it does not provide any assistance for making use of popular features such as encryption, authentication, HTML messages, and attachments. + +Formatting email correctly is surprisingly difficult. There are myriad overlapping (and conflicting) standards, requiring tight adherence to horribly complicated formatting and encoding rules – the vast majority of code that you'll find online that uses the `mail()` function directly is just plain wrong, if not unsafe! + +The PHP `mail()` function usually sends via a local mail server, typically fronted by a `sendmail` binary on Linux, BSD, and macOS platforms, however, Windows usually doesn't include a local mail server; PHPMailer's integrated SMTP client allows email sending on all platforms without needing a local mail server. Be aware though, that the `mail()` function should be avoided when possible; it's both faster and [safer](https://exploitbox.io/paper/Pwning-PHP-Mail-Function-For-Fun-And-RCE.html) to use SMTP to localhost. + +*Please* don't be tempted to do it yourself – if you don't use PHPMailer, there are many other excellent libraries that +you should look at before rolling your own. Try [SwiftMailer](https://swiftmailer.symfony.com/) +, [Laminas/Mail](https://docs.laminas.dev/laminas-mail/), [ZetaComponents](https://github.com/zetacomponents/Mail) etc. + +## License +This software is distributed under the [LGPL 2.1](http://www.gnu.org/licenses/lgpl-2.1.html) license, along with the [GPL Cooperation Commitment](https://gplcc.github.io/gplcc/). Please read [LICENSE](https://github.com/PHPMailer/PHPMailer/blob/master/LICENSE) for information on the software availability and distribution. + +## Installation & loading +PHPMailer is available on [Packagist](https://packagist.org/packages/phpmailer/phpmailer) (using semantic versioning), and installation via [Composer](https://getcomposer.org) is the recommended way to install PHPMailer. Just add this line to your `composer.json` file: + +```json +"phpmailer/phpmailer": "^6.5" +``` + +or run + +```sh +composer require phpmailer/phpmailer +``` + +Note that the `vendor` folder and the `vendor/autoload.php` script are generated by Composer; they are not part of PHPMailer. + +If you want to use the Gmail XOAUTH2 authentication class, you will also need to add a dependency on the `league/oauth2-client` package in your `composer.json`. + +Alternatively, if you're not using Composer, you +can [download PHPMailer as a zip file](https://github.com/PHPMailer/PHPMailer/archive/master.zip), (note that docs and examples are not included in the zip file), then copy the contents of the PHPMailer folder into one of the `include_path` directories specified in your PHP configuration and load each class file manually: + +```php +SMTPDebug = SMTP::DEBUG_SERVER; //Enable verbose debug output + $mail->isSMTP(); //Send using SMTP + $mail->Host = 'smtp.example.com'; //Set the SMTP server to send through + $mail->SMTPAuth = true; //Enable SMTP authentication + $mail->Username = 'user@example.com'; //SMTP username + $mail->Password = 'secret'; //SMTP password + $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; //Enable implicit TLS encryption + $mail->Port = 465; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` + + //Recipients + $mail->setFrom('from@example.com', 'Mailer'); + $mail->addAddress('joe@example.net', 'Joe User'); //Add a recipient + $mail->addAddress('ellen@example.com'); //Name is optional + $mail->addReplyTo('info@example.com', 'Information'); + $mail->addCC('cc@example.com'); + $mail->addBCC('bcc@example.com'); + + //Attachments + $mail->addAttachment('/var/tmp/file.tar.gz'); //Add attachments + $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); //Optional name + + //Content + $mail->isHTML(true); //Set email format to HTML + $mail->Subject = 'Here is the subject'; + $mail->Body = 'This is the HTML message body in bold!'; + $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; + + $mail->send(); + echo 'Message has been sent'; +} catch (Exception $e) { + echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; +} +``` + +You'll find plenty to play with in the [examples](https://github.com/PHPMailer/PHPMailer/tree/master/examples) folder, which covers many common scenarios including sending through gmail, building contact forms, sending to mailing lists, and more. + +If you are re-using the instance (e.g. when sending to a mailing list), you may need to clear the recipient list to avoid sending duplicate messages. See [the mailing list example](https://github.com/PHPMailer/PHPMailer/blob/master/examples/mailing_list.phps) for further guidance. + +That's it. You should now be ready to use PHPMailer! + +## Localization +PHPMailer defaults to English, but in the [language](https://github.com/PHPMailer/PHPMailer/tree/master/language/) folder you'll find many translations for PHPMailer error messages that you may encounter. Their filenames contain [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code for the translations, for example `fr` for French. To specify a language, you need to tell PHPMailer which one to use, like this: + +```php +//To load the French version +$mail->setLanguage('fr', '/optional/path/to/language/directory/'); +``` + +We welcome corrections and new languages – if you're looking for corrections, run the [PHPMailerLangTest.php](https://github.com/PHPMailer/PHPMailer/tree/master/test/PHPMailerLangTest.php) script in the tests folder and it will show any missing translations. + +## Documentation +Start reading at the [GitHub wiki](https://github.com/PHPMailer/PHPMailer/wiki). If you're having trouble, head for [the troubleshooting guide](https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting) as it's frequently updated. + +Examples of how to use PHPMailer for common scenarios can be found in the [examples](https://github.com/PHPMailer/PHPMailer/tree/master/examples) folder. If you're looking for a good starting point, we recommend you start with [the Gmail example](https://github.com/PHPMailer/PHPMailer/tree/master/examples/gmail.phps). + +To reduce PHPMailer's deployed code footprint, examples are not included if you load PHPMailer via Composer or via [GitHub's zip file download](https://github.com/PHPMailer/PHPMailer/archive/master.zip), so you'll need to either clone the git repository or use the above links to get to the examples directly. + +Complete generated API documentation is [available online](https://phpmailer.github.io/PHPMailer/). + +You can generate complete API-level documentation by running `phpdoc` in the top-level folder, and documentation will appear in the `docs` folder, though you'll need to have [PHPDocumentor](http://www.phpdoc.org) installed. You may find [the unit tests](https://github.com/PHPMailer/PHPMailer/blob/master/test/PHPMailerTest.php) a good reference for how to do various operations such as encryption. + +If the documentation doesn't cover what you need, search the [many questions on Stack Overflow](http://stackoverflow.com/questions/tagged/phpmailer), and before you ask a question about "SMTP Error: Could not connect to SMTP host.", [read the troubleshooting guide](https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting). + +## Tests +[PHPMailer tests](https://github.com/PHPMailer/PHPMailer/tree/master/test/) use PHPUnit 9, with [a polyfill](https://github.com/Yoast/PHPUnit-Polyfills) to let 9-style tests run on older PHPUnit and PHP versions. + +[![Test status](https://github.com/PHPMailer/PHPMailer/workflows/Tests/badge.svg)](https://github.com/PHPMailer/PHPMailer/actions) + +If this isn't passing, is there something you can do to help? + +## Security +Please disclose any vulnerabilities found responsibly – report security issues to the maintainers privately. + +See [SECURITY](https://github.com/PHPMailer/PHPMailer/tree/master/SECURITY.md) and [PHPMailer's security advisories on GitHub](https://github.com/PHPMailer/PHPMailer/security). + +## Contributing +Please submit bug reports, suggestions and pull requests to the [GitHub issue tracker](https://github.com/PHPMailer/PHPMailer/issues). + +We're particularly interested in fixing edge-cases, expanding test coverage and updating translations. + +If you found a mistake in the docs, or want to add something, go ahead and amend the wiki – anyone can edit it. + +If you have git clones from prior to the move to the PHPMailer GitHub organisation, you'll need to update any remote URLs referencing the old GitHub location with a command like this from within your clone: + +```sh +git remote set-url upstream https://github.com/PHPMailer/PHPMailer.git +``` + +Please *don't* use the SourceForge or Google Code projects any more; they are obsolete and no longer maintained. + +## Sponsorship +Development time and resources for PHPMailer are provided by [Smartmessages.net](https://info.smartmessages.net/), the world's only privacy-first email marketing system. + +Smartmessages.net privacy-first email marketing logo + +Donations are very welcome, whether in beer 🍺, T-shirts 👕, or cold, hard cash 💰. Sponsorship through GitHub is a simple and convenient way to say "thank you" to PHPMailer's maintainers and contributors – just click the "Sponsor" button [on the project page](https://github.com/PHPMailer/PHPMailer). If your company uses PHPMailer, consider taking part in Tidelift's enterprise support programme. + +## PHPMailer For Enterprise + +Available as part of the Tidelift Subscription. + +The maintainers of PHPMailer and thousands of other packages are working with Tidelift to deliver commercial +support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and +improve code health, while paying the maintainers of the exact packages you +use. [Learn more.](https://tidelift.com/subscription/pkg/packagist-phpmailer-phpmailer?utm_source=packagist-phpmailer-phpmailer&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) + +## Changelog +See [changelog](changelog.md). + +## History +- PHPMailer was originally written in 2001 by Brent R. Matzelle as a [SourceForge project](http://sourceforge.net/projects/phpmailer/). +- [Marcus Bointon](https://github.com/Synchro) (`coolbru` on SF) and Andy Prevost (`codeworxtech`) took over the project in 2004. +- Became an Apache incubator project on Google Code in 2010, managed by Jim Jagielski. +- Marcus created [his fork on GitHub](https://github.com/Synchro/PHPMailer) in 2008. +- Jim and Marcus decide to join forces and use GitHub as the canonical and official repo for PHPMailer in 2013. +- PHPMailer moves to [the PHPMailer organisation](https://github.com/PHPMailer) on GitHub in 2013. + +### What's changed since moving from SourceForge? +- Official successor to the SourceForge and Google Code projects. +- Test suite. +- Continuous integration with Github Actions. +- Composer support. +- Public development. +- Additional languages and language strings. +- CRAM-MD5 authentication support. +- Preserves full repo history of authors, commits and branches from the original SourceForge project. diff --git a/php/PHPMailer/#/SECURITY.md b/php/PHPMailer/#/SECURITY.md new file mode 100644 index 0000000..035a87f --- /dev/null +++ b/php/PHPMailer/#/SECURITY.md @@ -0,0 +1,37 @@ +# Security notices relating to PHPMailer + +Please disclose any security issues or vulnerabilities found through [Tidelift's coordinated disclosure system](https://tidelift.com/security) or to the maintainers privately. + +PHPMailer 6.4.1 and earlier contain a vulnerability that can result in untrusted code being called (if such code is injected into the host project's scope by other means). If the `$patternselect` parameter to `validateAddress()` is set to `'php'` (the default, defined by `PHPMailer::$validator`), and the global namespace contains a function called `php`, it will be called in preference to the built-in validator of the same name. Mitigated in PHPMailer 6.5.0 by denying the use of simple strings as validator function names. Recorded as [CVE-2021-3603](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-3603). Reported by [Vikrant Singh Chauhan](mailto:vi@hackberry.xyz) via [huntr.dev](https://www.huntr.dev/). + +PHPMailer versions 6.4.1 and earlier contain a possible remote code execution vulnerability through the `$lang_path` parameter of the `setLanguage()` method. If the `$lang_path` parameter is passed unfiltered from user input, it can be set to [a UNC path](https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats#unc-paths), and if an attacker is also able to persuade the server to load a file from that UNC path, a script file under their control may be executed. This vulnerability only applies to systems that resolve UNC paths, typically only Microsoft Windows. +PHPMailer 6.5.0 mitigates this by no longer treating translation files as PHP code, but by parsing their text content directly. This approach avoids the possibility of executing unknown code while retaining backward compatibility. This isn't ideal, so the current translation format is deprecated and will be replaced in the next major release. Recorded as [CVE-2021-34551](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-34551). Reported by [Jilin Diting Information Technology Co., Ltd](https://listensec.com) via Tidelift. + +PHPMailer versions between 6.1.8 and 6.4.0 contain a regression of the earlier CVE-2018-19296 object injection vulnerability as a result of [a fix for Windows UNC paths in 6.1.8](https://github.com/PHPMailer/PHPMailer/commit/e2e07a355ee8ff36aba21d0242c5950c56e4c6f9). Recorded as [CVE-2020-36326](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-36326). Reported by Fariskhi Vidyan via Tidelift. 6.4.1 fixes this issue, and also enforces stricter checks for URL schemes in local path contexts. + +PHPMailer versions 6.1.5 and earlier contain an output escaping bug that occurs in `Content-Type` and `Content-Disposition` when filenames passed into `addAttachment` and other methods that accept attachment names contain double quote characters, in contravention of RFC822 3.4.1. No specific vulnerability has been found relating to this, but it could allow file attachments to bypass attachment filters that are based on matching filename extensions. Recorded as [CVE-2020-13625](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2020-13625). Reported by Elar Lang of Clarified Security. + +PHPMailer versions prior to 6.0.6 and 5.2.27 are vulnerable to an object injection attack by passing `phar://` paths into `addAttachment()` and other functions that may receive unfiltered local paths, possibly leading to RCE. Recorded as [CVE-2018-19296](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2018-19296). See [this article](https://knasmueller.net/5-answers-about-php-phar-exploitation) for more info on this type of vulnerability. Mitigated by blocking the use of paths containing URL-protocol style prefixes such as `phar://`. Reported by Sehun Oh of cyberone.kr. + +PHPMailer versions prior to 5.2.24 (released July 26th 2017) have an XSS vulnerability in one of the code examples, [CVE-2017-11503](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-11503). The `code_generator.phps` example did not filter user input prior to output. This file is distributed with a `.phps` extension, so it it not normally executable unless it is explicitly renamed, and the file is not included when PHPMailer is loaded through composer, so it is safe by default. There was also an undisclosed potential XSS vulnerability in the default exception handler (unused by default). Patches for both issues kindly provided by Patrick Monnerat of the Fedora Project. + +PHPMailer versions prior to 5.2.22 (released January 9th 2017) have a local file disclosure vulnerability, [CVE-2017-5223](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-5223). If content passed into `msgHTML()` is sourced from unfiltered user input, relative paths can map to absolute local file paths and added as attachments. Also note that `addAttachment` (just like `file_get_contents`, `passthru`, `unlink`, etc) should not be passed user-sourced params either! Reported by Yongxiang Li of Asiasecurity. + +PHPMailer versions prior to 5.2.20 (released December 28th 2016) are vulnerable to [CVE-2016-10045](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10045) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](https://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10045-Vuln-Patch-Bypass.html), and patched by Paul Buonopane (@Zenexer). + +PHPMailer versions prior to 5.2.18 (released December 2016) are vulnerable to [CVE-2016-10033](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2016-10033) a remote code execution vulnerability, responsibly reported by [Dawid Golunski](http://legalhackers.com/advisories/PHPMailer-Exploit-Remote-Code-Exec-CVE-2016-10033-Vuln.html). + +PHPMailer versions prior to 5.2.14 (released November 2015) are vulnerable to [CVE-2015-8476](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-8476) an SMTP CRLF injection bug permitting arbitrary message sending. + +PHPMailer versions prior to 5.2.10 (released May 2015) are vulnerable to [CVE-2008-5619](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-5619), a remote code execution vulnerability in the bundled html2text library. This file was removed in 5.2.10, so if you are using a version prior to that and make use of the html2text function, it's vitally important that you upgrade and remove this file. + +PHPMailer versions prior to 2.0.7 and 2.2.1 are vulnerable to [CVE-2012-0796](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-0796), an email header injection attack. + +Joomla 1.6.0 uses PHPMailer in an unsafe way, allowing it to reveal local file paths, reported in [CVE-2011-3747](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-3747). + +PHPMailer didn't sanitise the `$lang_path` parameter in `SetLanguage`. This wasn't a problem in itself, but some apps (PHPClassifieds, ATutor) also failed to sanitise user-provided parameters passed to it, permitting semi-arbitrary local file inclusion, reported in [CVE-2010-4914](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-4914), [CVE-2007-2021](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-2021) and [CVE-2006-5734](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2006-5734). + +PHPMailer 1.7.2 and earlier contained a possible DDoS vulnerability reported in [CVE-2005-1807](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2005-1807). + +PHPMailer 1.7 and earlier (June 2003) have a possible vulnerability in the `SendmailSend` method where shell commands may not be sanitised. Reported in [CVE-2007-3215](https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2007-3215). + diff --git a/php/PHPMailer/#/VERSION b/php/PHPMailer/#/VERSION new file mode 100644 index 0000000..cd802a1 --- /dev/null +++ b/php/PHPMailer/#/VERSION @@ -0,0 +1 @@ +6.6.0 \ No newline at end of file diff --git a/php/PHPMailer/#/composer.json b/php/PHPMailer/#/composer.json new file mode 100644 index 0000000..b13732b --- /dev/null +++ b/php/PHPMailer/#/composer.json @@ -0,0 +1,76 @@ +{ + "name": "phpmailer/phpmailer", + "type": "library", + "description": "PHPMailer is a full-featured email creation and transfer class for PHP", + "authors": [ + { + "name": "Marcus Bointon", + "email": "phpmailer@synchromedia.co.uk" + }, + { + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" + }, + { + "name": "Andy Prevost", + "email": "codeworxtech@users.sourceforge.net" + }, + { + "name": "Brent R. Matzelle" + } + ], + "funding": [ + { + "url": "https://github.com/Synchro", + "type": "github" + } + ], + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "require": { + "php": ">=5.5.0", + "ext-ctype": "*", + "ext-filter": "*", + "ext-hash": "*" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.2", + "php-parallel-lint/php-console-highlighter": "^0.5.0", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.3.5", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.6.2", + "yoast/phpunit-polyfills": "^1.0.0" + }, + "suggest": { + "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", + "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", + "league/oauth2-google": "Needed for Google XOAUTH2 authentication", + "psr/log": "For optional PSR-3 debug logging", + "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" + }, + "autoload": { + "psr-4": { + "PHPMailer\\PHPMailer\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "PHPMailer\\Test\\": "test/" + } + }, + "license": "LGPL-2.1-only", + "scripts": { + "check": "./vendor/bin/phpcs", + "test": "./vendor/bin/phpunit --no-coverage", + "coverage": "./vendor/bin/phpunit", + "lint": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php,phps --exclude vendor --exclude .git --exclude build" + ] + } +} diff --git a/php/PHPMailer/#/get_oauth_token.php b/php/PHPMailer/#/get_oauth_token.php new file mode 100644 index 0000000..befdc34 --- /dev/null +++ b/php/PHPMailer/#/get_oauth_token.php @@ -0,0 +1,146 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2020 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +/** + * Get an OAuth2 token from an OAuth2 provider. + * * Install this script on your server so that it's accessible + * as [https/http]:////get_oauth_token.php + * e.g.: http://localhost/phpmailer/get_oauth_token.php + * * Ensure dependencies are installed with 'composer install' + * * Set up an app in your Google/Yahoo/Microsoft account + * * Set the script address as the app's redirect URL + * If no refresh token is obtained when running this file, + * revoke access to your app and run the script again. + */ + +namespace PHPMailer\PHPMailer; + +/** + * Aliases for League Provider Classes + * Make sure you have added these to your composer.json and run `composer install` + * Plenty to choose from here: + * @see http://oauth2-client.thephpleague.com/providers/thirdparty/ + */ +//@see https://github.com/thephpleague/oauth2-google +use League\OAuth2\Client\Provider\Google; +//@see https://packagist.org/packages/hayageek/oauth2-yahoo +use Hayageek\OAuth2\Client\Provider\Yahoo; +//@see https://github.com/stevenmaguire/oauth2-microsoft +use Stevenmaguire\OAuth2\Client\Provider\Microsoft; + +if (!isset($_GET['code']) && !isset($_GET['provider'])) { + ?> + +Select Provider:
+Google
+Yahoo
+Microsoft/Outlook/Hotmail/Live/Office365
+ + + $clientId, + 'clientSecret' => $clientSecret, + 'redirectUri' => $redirectUri, + 'accessType' => 'offline' +]; + +$options = []; +$provider = null; + +switch ($providerName) { + case 'Google': + $provider = new Google($params); + $options = [ + 'scope' => [ + 'https://mail.google.com/' + ] + ]; + break; + case 'Yahoo': + $provider = new Yahoo($params); + break; + case 'Microsoft': + $provider = new Microsoft($params); + $options = [ + 'scope' => [ + 'wl.imap', + 'wl.offline_access' + ] + ]; + break; +} + +if (null === $provider) { + exit('Provider missing'); +} + +if (!isset($_GET['code'])) { + //If we don't have an authorization code then get one + $authUrl = $provider->getAuthorizationUrl($options); + $_SESSION['oauth2state'] = $provider->getState(); + header('Location: ' . $authUrl); + exit; + //Check given state against previously stored one to mitigate CSRF attack +} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) { + unset($_SESSION['oauth2state']); + unset($_SESSION['provider']); + exit('Invalid state'); +} else { + unset($_SESSION['provider']); + //Try to get an access token (using the authorization code grant) + $token = $provider->getAccessToken( + 'authorization_code', + [ + 'code' => $_GET['code'] + ] + ); + //Use this to interact with an API on the users behalf + //Use this to get a new access token if the old one expires + echo 'Refresh Token: ', $token->getRefreshToken(); +} diff --git a/php/PHPMailer/#/language/phpmailer.lang-af.php b/php/PHPMailer/#/language/phpmailer.lang-af.php new file mode 100644 index 0000000..0b2a72d --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-af.php @@ -0,0 +1,26 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.'; +$PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .'; +$PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ'; +$PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; +$PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : '; +$PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: '; +$PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: '; +$PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : '; +$PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; +$PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; +$PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; +$PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية فشل في الارسال لكل من : '; +$PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; +$PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; +$PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-az.php b/php/PHPMailer/#/language/phpmailer.lang-az.php new file mode 100644 index 0000000..552167e --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-az.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; +$PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; +$PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; +$PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; +$PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; +$PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; +$PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; +$PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; +$PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; +$PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; +$PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; +$PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; +$PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-be.php b/php/PHPMailer/#/language/phpmailer.lang-be.php new file mode 100644 index 0000000..9e92dda --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-be.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.'; +$PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.'; +$PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.'; +$PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: '; +$PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: '; +$PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: '; +$PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: '; +$PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: '; +$PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; +$PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; +$PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; +$PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: '; +$PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.'; +$PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-bg.php b/php/PHPMailer/#/language/phpmailer.lang-bg.php new file mode 100644 index 0000000..c41f675 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-bg.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.'; +$PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно'; +$PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: '; +$PHPMAILER_LANG['execute'] = 'Не може да се изпълни: '; +$PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: '; +$PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: '; +$PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: '; +$PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; +$PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; +$PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; +$PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; +$PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ca.php b/php/PHPMailer/#/language/phpmailer.lang-ca.php new file mode 100644 index 0000000..3468485 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ca.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; +$PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; +$PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; +$PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; +$PHPMAILER_LANG['execute'] = 'No es pot executar: '; +$PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; +$PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; +$PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; +$PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; +$PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; +$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; +$PHPMAILER_LANG['signing'] = 'Error al signar: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; +$PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ch.php b/php/PHPMailer/#/language/phpmailer.lang-ch.php new file mode 100644 index 0000000..500c952 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ch.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; +$PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; +//$PHPMAILER_LANG['empty_message'] = 'Message body empty'; +$PHPMAILER_LANG['encoding'] = '未知编码:'; +$PHPMAILER_LANG['execute'] = '不能执行: '; +$PHPMAILER_LANG['file_access'] = '不能访问文件:'; +$PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; +$PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; +$PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; +//$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; +$PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; +//$PHPMAILER_LANG['signing'] = 'Signing Error: '; +//$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; +//$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; +//$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-cs.php b/php/PHPMailer/#/language/phpmailer.lang-cs.php new file mode 100644 index 0000000..e770a1a --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-cs.php @@ -0,0 +1,28 @@ + + * Rewrite and extension of the work by Mikael Stokkebro + * + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.'; +$PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold'; +$PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; +$PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: '; +$PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: '; +$PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; +$PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; +$PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.'; +$PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; +$PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; +$PHPMAILER_LANG['signing'] = 'Signeringsfejl: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; +$PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; +$PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-de.php b/php/PHPMailer/#/language/phpmailer.lang-de.php new file mode 100644 index 0000000..e7e59d2 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-de.php @@ -0,0 +1,28 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; +$PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; +$PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; +$PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; +$PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; +$PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; +$PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; +$PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; +$PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; +$PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; +$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; +$PHPMAILER_LANG['signing'] = 'Error al firmar: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; +$PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; +$PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-et.php b/php/PHPMailer/#/language/phpmailer.lang-et.php new file mode 100644 index 0000000..93addc9 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-et.php @@ -0,0 +1,28 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; +$PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; +$PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; +$PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; +$PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; +$PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; +$PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; +$PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; +$PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; +$PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; +$PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; +$PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; +$PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-fa.php b/php/PHPMailer/#/language/phpmailer.lang-fa.php new file mode 100644 index 0000000..295a47f --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-fa.php @@ -0,0 +1,28 @@ + + * @author Mohammad Hossein Mojtahedi + */ + +$PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.'; +$PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.'; +$PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: داده‌ها نا‌درست هستند.'; +$PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.'; +$PHPMAILER_LANG['encoding'] = 'کد‌گذاری نا‌شناخته: '; +$PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: '; +$PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: '; +$PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; +$PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; +$PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; +$PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; +$PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.'; +$PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: '; +$PHPMAILER_LANG['signing'] = 'خطا در امضا: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.'; +$PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: '; +$PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; +$PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-fi.php b/php/PHPMailer/#/language/phpmailer.lang-fi.php new file mode 100644 index 0000000..243c054 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-fi.php @@ -0,0 +1,28 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; +//$PHPMAILER_LANG['empty_message'] = 'Message body empty'; +$PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; +$PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; +$PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; +$PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; +$PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; +$PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; +//$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; +$PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; +//$PHPMAILER_LANG['signing'] = 'Signing Error: '; +//$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; +//$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; +//$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-fr.php b/php/PHPMailer/#/language/phpmailer.lang-fr.php new file mode 100644 index 0000000..38a7a8e --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-fr.php @@ -0,0 +1,38 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; +$PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; +$PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; +$PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; +$PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; +$PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; +$PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; +$PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; +$PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; +$PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; +$PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; +$PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; +$PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-he.php b/php/PHPMailer/#/language/phpmailer.lang-he.php new file mode 100644 index 0000000..b123aa5 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-he.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; +$PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; +$PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; +$PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; +$PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; +$PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; +$PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; +$PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; +$PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; +$PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; +$PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; +$PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; +$PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; +$PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-hi.php b/php/PHPMailer/#/language/phpmailer.lang-hi.php new file mode 100644 index 0000000..d973a35 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-hi.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। '; +$PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। '; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। '; +$PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। '; +$PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। '; +$PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। '; +$PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। '; +$PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। '; +$PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। '; +$PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।'; +$PHPMAILER_LANG['invalid_address'] = 'पता गलत है। '; +$PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। '; +$PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। '; +$PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। '; +$PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। '; +$PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। '; +$PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-hr.php b/php/PHPMailer/#/language/phpmailer.lang-hr.php new file mode 100644 index 0000000..cacb6c3 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-hr.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; +$PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; +$PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; +$PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; +$PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; +$PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; +$PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; +$PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; +$PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; +$PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; +$PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; +$PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; +$PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; +$PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-hu.php b/php/PHPMailer/#/language/phpmailer.lang-hu.php new file mode 100644 index 0000000..e6b58b0 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-hu.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.'; +$PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է'; +$PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: '; +$PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: '; +$PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: '; +$PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: '; +$PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; +$PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; +$PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; +$PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; +$PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; +$PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; +$PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-id.php b/php/PHPMailer/#/language/phpmailer.lang-id.php new file mode 100644 index 0000000..212a11f --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-id.php @@ -0,0 +1,31 @@ + + * @author @januridp + * @author Ian Mustafa + */ + +$PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; +$PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; +$PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; +$PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; +$PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses: '; +$PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas: '; +$PHPMAILER_LANG['file_open'] = 'Kesalahan Berkas: Berkas tidak dapat dibuka: '; +$PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan: '; +$PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel.'; +$PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak sesuai: '; +$PHPMAILER_LANG['invalid_hostentry'] = 'Gagal terkirim, entri host tidak sesuai: '; +$PHPMAILER_LANG['invalid_host'] = 'Gagal terkirim, host tidak sesuai: '; +$PHPMAILER_LANG['provide_address'] = 'Harus tersedia minimal satu alamat tujuan'; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; +$PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menyebabkan kesalahan: '; +$PHPMAILER_LANG['signing'] = 'Kesalahan dalam penandatangan SSL: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; +$PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variabel: '; +$PHPMAILER_LANG['extension_missing'] = 'Ekstensi PHP tidak tersedia: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-it.php b/php/PHPMailer/#/language/phpmailer.lang-it.php new file mode 100644 index 0000000..08a6b73 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-it.php @@ -0,0 +1,28 @@ + + * @author Stefano Sabatini + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; +$PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; +$PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; +$PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; +$PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; +$PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; +$PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; +$PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; +$PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; +$PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; +$PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; +$PHPMAILER_LANG['signing'] = 'Errore nella firma: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; +$PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; +$PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ja.php b/php/PHPMailer/#/language/phpmailer.lang-ja.php new file mode 100644 index 0000000..c76f526 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ja.php @@ -0,0 +1,29 @@ + + * @author Yoshi Sakai + * @author Arisophy + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; +$PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; +$PHPMAILER_LANG['empty_message'] = 'メール本文が空です。'; +$PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; +$PHPMAILER_LANG['execute'] = '実行できませんでした: '; +$PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; +$PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; +$PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; +$PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; +$PHPMAILER_LANG['invalid_address'] = '不正なメールアドレス: '; +$PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; +$PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; +$PHPMAILER_LANG['signing'] = '署名エラー: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP接続に失敗しました。'; +$PHPMAILER_LANG['smtp_error'] = 'SMTPサーバーエラー: '; +$PHPMAILER_LANG['variable_set'] = '変数が存在しません: '; +$PHPMAILER_LANG['extension_missing'] = '拡張機能が見つかりません: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ka.php b/php/PHPMailer/#/language/phpmailer.lang-ka.php new file mode 100644 index 0000000..51fe403 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ka.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; +$PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; +$PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; +$PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; +$PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; +$PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; +$PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; +$PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; +$PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; +$PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; +$PHPMAILER_LANG['signing'] = 'ხელმოწერის შეცდომა: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'შეცდომა SMTP სერვერთან დაკავშირებისას'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP სერვერის შეცდომა: '; +$PHPMAILER_LANG['variable_set'] = 'შეუძლებელია შემდეგი ცვლადის შექმნა ან შეცვლა: '; +$PHPMAILER_LANG['extension_missing'] = 'ბიბლიოთეკა არ არსებობს: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ko.php b/php/PHPMailer/#/language/phpmailer.lang-ko.php new file mode 100644 index 0000000..8c97dd9 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ko.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; +$PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; +$PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; +$PHPMAILER_LANG['execute'] = '실행 불가: '; +$PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; +$PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; +$PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; +$PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; +$PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; +$PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; +$PHPMAILER_LANG['signing'] = '서명 오류: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; +$PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; +$PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-lt.php b/php/PHPMailer/#/language/phpmailer.lang-lt.php new file mode 100644 index 0000000..4f115b1 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-lt.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; +$PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; +$PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; +$PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; +$PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; +$PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; +$PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; +$PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; +$PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; +$PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; +$PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; +$PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-lv.php b/php/PHPMailer/#/language/phpmailer.lang-lv.php new file mode 100644 index 0000000..679b18c --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-lv.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; +$PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; +$PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; +$PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; +$PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; +$PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; +$PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; +$PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; +$PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; +$PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; +$PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; +$PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-mg.php b/php/PHPMailer/#/language/phpmailer.lang-mg.php new file mode 100644 index 0000000..8a94f6a --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-mg.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; +$PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; +$PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; +$PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; +$PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; +$PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; +$PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; +$PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; +$PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; +$PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; +$PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; +$PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ms.php b/php/PHPMailer/#/language/phpmailer.lang-ms.php new file mode 100644 index 0000000..71db338 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ms.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; +$PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; +$PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; +$PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; +$PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; +$PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; +$PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; +$PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; +$PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; +$PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; +$PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; +$PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; +$PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; +$PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; +$PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-nb.php b/php/PHPMailer/#/language/phpmailer.lang-nb.php new file mode 100644 index 0000000..65793ce --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-nb.php @@ -0,0 +1,26 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; +$PHPMAILER_LANG['buggy_php'] = 'PHP versie gededecteerd die onderhavig is aan een bug die kan resulteren in gecorrumpeerde berichten. Om dit te voorkomen, gebruik SMTP voor het verzenden van berichten, zet de mail.add_x_header optie in uw php.ini file uit, gebruik MacOS of Linux, of pas de gebruikte PHP versie aan naar versie 7.0.17+ or 7.1.3+.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; +$PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; +$PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; +$PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; +$PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; +$PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; +$PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; +$PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; +$PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; +$PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; +$PHPMAILER_LANG['invalid_header'] = 'Ongeldige header naam of waarde'; +$PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; +$PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; +$PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; +$PHPMAILER_LANG['signing'] = 'Signeerfout: '; +$PHPMAILER_LANG['smtp_code'] = 'SMTP code: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Aanvullende SMTP informatie: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; +$PHPMAILER_LANG['smtp_detail'] = 'Detail: '; +$PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; +$PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-pl.php b/php/PHPMailer/#/language/phpmailer.lang-pl.php new file mode 100644 index 0000000..23caa71 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-pl.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; +$PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; +$PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; +$PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; +$PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; +$PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; +$PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; +$PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; +$PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; +$PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; +$PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; +$PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; +$PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; +$PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-pt_br.php b/php/PHPMailer/#/language/phpmailer.lang-pt_br.php new file mode 100644 index 0000000..5239865 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-pt_br.php @@ -0,0 +1,38 @@ + + * @author Lucas Guimarães + * @author Phelipe Alves + * @author Fabio Beneditto + * @author Geidson Benício Coelho + */ + +$PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; +$PHPMAILER_LANG['buggy_php'] = 'Sua versão do PHP é afetada por um bug que por resultar em messagens corrompidas. Para corrigir, mude para enviar usando SMTP, desative a opção mail.add_x_header em seu php.ini, mude para MacOS ou Linux, ou atualize seu PHP para versão 7.0.17+ ou 7.1.3+ '; +$PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; +$PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; +$PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; +$PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; +$PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: '; +$PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; +$PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; +$PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; +$PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; +$PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; +$PHPMAILER_LANG['invalid_header'] = 'Nome ou valor de cabeçalho inválido'; +$PHPMAILER_LANG['invalid_hostentry'] = 'hostentry inválido: '; +$PHPMAILER_LANG['invalid_host'] = 'host inválido: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; +$PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; +$PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; +$PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; +$PHPMAILER_LANG['smtp_code'] = 'Código do servidor SMTP: '; +$PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Informações adicionais do servidor SMTP: '; +$PHPMAILER_LANG['smtp_detail'] = 'Detalhes do servidor SMTP: '; +$PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-ro.php b/php/PHPMailer/#/language/phpmailer.lang-ro.php new file mode 100644 index 0000000..45bef91 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-ro.php @@ -0,0 +1,33 @@ + + * @author Foster Snowhill + */ + +$PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; +$PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к SMTP-серверу.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; +$PHPMAILER_LANG['encoding'] = 'Неизвестная кодировка: '; +$PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; +$PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; +$PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удаётся открыть файл: '; +$PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; +$PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail().'; +$PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один email-адрес получателя.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; +$PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: не удалась отправка таким адресатам: '; +$PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; +$PHPMAILER_LANG['invalid_address'] = 'Не отправлено из-за неправильного формата email-адреса: '; +$PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; +$PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; +$PHPMAILER_LANG['variable_set'] = 'Невозможно установить или сбросить переменную: '; +$PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-sk.php b/php/PHPMailer/#/language/phpmailer.lang-sk.php new file mode 100644 index 0000000..028f5bc --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-sk.php @@ -0,0 +1,30 @@ + + * @author Peter Orlický + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; +$PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; +$PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; +$PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; +$PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; +$PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; +$PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; +$PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; +$PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; +$PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostiteľa je nesprávny: '; +$PHPMAILER_LANG['invalid_host'] = 'Hostiteľ je nesprávny: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; +$PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; +$PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; +$PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; +$PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-sl.php b/php/PHPMailer/#/language/phpmailer.lang-sl.php new file mode 100644 index 0000000..3e00c25 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-sl.php @@ -0,0 +1,36 @@ + + * @author Filip Š + * @author Blaž Oražem + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; +$PHPMAILER_LANG['buggy_php'] = 'Na vašo PHP različico vpliva napaka, ki lahko povzroči poškodovana sporočila. Če želite težavo odpraviti, preklopite na pošiljanje prek SMTP, onemogočite možnost mail.add_x_header v vaši php.ini datoteki, preklopite na MacOS ali Linux, ali nadgradite vašo PHP zaličico na 7.0.17+ ali 7.1.3+.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; +$PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; +$PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; +$PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; +$PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; +$PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; +$PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; +$PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; +$PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; +$PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; +$PHPMAILER_LANG['invalid_header'] = 'Neveljavno ime ali vrednost glave'; +$PHPMAILER_LANG['invalid_hostentry'] = 'Neveljaven vnos gostitelja: '; +$PHPMAILER_LANG['invalid_host'] = 'Neveljaven gostitelj: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; +$PHPMAILER_LANG['provide_address'] = 'Prosimo, vnesite vsaj enega naslovnika.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; +$PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; +$PHPMAILER_LANG['smtp_code'] = 'SMTP koda: '; +$PHPMAILER_LANG['smtp_code_ex'] = 'Dodatne informacije o SMTP: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; +$PHPMAILER_LANG['smtp_detail'] = 'Podrobnosti: '; +$PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; +$PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-sr.php b/php/PHPMailer/#/language/phpmailer.lang-sr.php new file mode 100644 index 0000000..0b5280f --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-sr.php @@ -0,0 +1,28 @@ + + * @author Miloš Milanović + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP грешка: аутентификација није успела.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP грешка: повезивање са SMTP сервером није успело.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: подаци нису прихваћени.'; +$PHPMAILER_LANG['empty_message'] = 'Садржај поруке је празан.'; +$PHPMAILER_LANG['encoding'] = 'Непознато кодирање: '; +$PHPMAILER_LANG['execute'] = 'Није могуће извршити наредбу: '; +$PHPMAILER_LANG['file_access'] = 'Није могуће приступити датотеци: '; +$PHPMAILER_LANG['file_open'] = 'Није могуће отворити датотеку: '; +$PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; +$PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; +$PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; +$PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; +$PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; +$PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; +$PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; +$PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-sr_latn.php b/php/PHPMailer/#/language/phpmailer.lang-sr_latn.php new file mode 100644 index 0000000..6213832 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-sr_latn.php @@ -0,0 +1,28 @@ + + * @author Miloš Milanović + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP greška: autentifikacija nije uspela.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP greška: povezivanje sa SMTP serverom nije uspelo.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP greška: podaci nisu prihvaćeni.'; +$PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; +$PHPMAILER_LANG['encoding'] = 'Nepoznato kodiranje: '; +$PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; +$PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; +$PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; +$PHPMAILER_LANG['from_failed'] = 'SMTP greška: slanje sa sledećih adresa nije uspelo: '; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP greška: slanje na sledeće adrese nije uspelo: '; +$PHPMAILER_LANG['instantiate'] = 'Nije moguće pokrenuti mail funkciju.'; +$PHPMAILER_LANG['invalid_address'] = 'Poruka nije poslata. Neispravna adresa: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' majler nije podržan.'; +$PHPMAILER_LANG['provide_address'] = 'Definišite bar jednu adresu primaoca.'; +$PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Povezivanje sa SMTP serverom nije uspelo.'; +$PHPMAILER_LANG['smtp_error'] = 'Greška SMTP servera: '; +$PHPMAILER_LANG['variable_set'] = 'Nije moguće zadati niti resetovati promenljivu: '; +$PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-sv.php b/php/PHPMailer/#/language/phpmailer.lang-sv.php new file mode 100644 index 0000000..9872c19 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-sv.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; +//$PHPMAILER_LANG['empty_message'] = 'Message body empty'; +$PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; +$PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; +$PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; +$PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; +$PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; +$PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; +$PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; +$PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; +$PHPMAILER_LANG['signing'] = 'Signeringsfel: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP serverfel: '; +$PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; +$PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-tl.php b/php/PHPMailer/#/language/phpmailer.lang-tl.php new file mode 100644 index 0000000..d15bed1 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-tl.php @@ -0,0 +1,28 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.'; +$PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi naitanggap.'; +$PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe'; +$PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: '; +$PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: '; +$PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: '; +$PHPMAILER_LANG['file_open'] = 'File Error: Hindi mabuksan ang file: '; +$PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: '; +$PHPMAILER_LANG['instantiate'] = 'Hindi maisimulan ang instance ng mail function.'; +$PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: '; +$PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado.'; +$PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap.'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: '; +$PHPMAILER_LANG['signing'] = 'Hindi ma-sign: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo.'; +$PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo: '; +$PHPMAILER_LANG['variable_set'] = 'Hindi matatakda o ma-reset ang mga variables: '; +$PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-tr.php b/php/PHPMailer/#/language/phpmailer.lang-tr.php new file mode 100644 index 0000000..f938f80 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-tr.php @@ -0,0 +1,31 @@ + + * @fixed by Boris Yurchenko + */ + +$PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; +$PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до SMTP-серверу.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.'; +$PHPMAILER_LANG['encoding'] = 'Невідоме кодування: '; +$PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: '; +$PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: '; +$PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: '; +$PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: '; +$PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail().'; +$PHPMAILER_LANG['provide_address'] = 'Будь ласка, введіть хоча б одну email-адресу отримувача.'; +$PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; +$PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: '; +$PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення'; +$PHPMAILER_LANG['invalid_address'] = 'Не відправлено через неправильний формат email-адреси: '; +$PHPMAILER_LANG['signing'] = 'Помилка підпису: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання з SMTP-сервером'; +$PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; +$PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: '; +$PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-vi.php b/php/PHPMailer/#/language/phpmailer.lang-vi.php new file mode 100644 index 0000000..d65576e --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-vi.php @@ -0,0 +1,27 @@ + + */ + +$PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; +$PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; +$PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; +$PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; +$PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; +$PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; +$PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; +$PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; +$PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; +$PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; +$PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; +$PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; +$PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; +$PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; +$PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; +$PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; +$PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; +//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-zh.php b/php/PHPMailer/#/language/phpmailer.lang-zh.php new file mode 100644 index 0000000..35e4e70 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-zh.php @@ -0,0 +1,29 @@ + + * @author Peter Dave Hello <@PeterDaveHello/> + * @author Jason Chiang + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; +$PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; +$PHPMAILER_LANG['empty_message'] = '郵件內容為空'; +$PHPMAILER_LANG['encoding'] = '未知編碼: '; +$PHPMAILER_LANG['execute'] = '無法執行:'; +$PHPMAILER_LANG['file_access'] = '無法存取檔案:'; +$PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; +$PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; +$PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; +$PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; +$PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; +$PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; +$PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; +$PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; +$PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; diff --git a/php/PHPMailer/#/language/phpmailer.lang-zh_cn.php b/php/PHPMailer/#/language/phpmailer.lang-zh_cn.php new file mode 100644 index 0000000..728a499 --- /dev/null +++ b/php/PHPMailer/#/language/phpmailer.lang-zh_cn.php @@ -0,0 +1,29 @@ + + * @author young + * @author Teddysun + */ + +$PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; +$PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; +$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; +$PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; +$PHPMAILER_LANG['encoding'] = '未知编码:'; +$PHPMAILER_LANG['execute'] = '无法执行:'; +$PHPMAILER_LANG['file_access'] = '无法访问文件:'; +$PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; +$PHPMAILER_LANG['from_failed'] = '发送地址错误:'; +$PHPMAILER_LANG['instantiate'] = '未知函数调用。'; +$PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; +$PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; +$PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; +$PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; +$PHPMAILER_LANG['signing'] = '登录失败:'; +$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; +$PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错:'; +$PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; +$PHPMAILER_LANG['extension_missing'] = '丢失模块 Extension:'; diff --git a/php/PHPMailer/Exception.php b/php/PHPMailer/Exception.php new file mode 100644 index 0000000..52eaf95 --- /dev/null +++ b/php/PHPMailer/Exception.php @@ -0,0 +1,40 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2020 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +namespace PHPMailer\PHPMailer; + +/** + * PHPMailer exception handler. + * + * @author Marcus Bointon + */ +class Exception extends \Exception +{ + /** + * Prettify error message output. + * + * @return string + */ + public function errorMessage() + { + return '' . htmlspecialchars($this->getMessage(), ENT_COMPAT | ENT_HTML401) . "
\n"; + } +} diff --git a/php/PHPMailer/OAuth.php b/php/PHPMailer/OAuth.php new file mode 100644 index 0000000..c1d5b77 --- /dev/null +++ b/php/PHPMailer/OAuth.php @@ -0,0 +1,139 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2020 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +namespace PHPMailer\PHPMailer; + +use League\OAuth2\Client\Grant\RefreshToken; +use League\OAuth2\Client\Provider\AbstractProvider; +use League\OAuth2\Client\Token\AccessToken; + +/** + * OAuth - OAuth2 authentication wrapper class. + * Uses the oauth2-client package from the League of Extraordinary Packages. + * + * @see http://oauth2-client.thephpleague.com + * + * @author Marcus Bointon (Synchro/coolbru) + */ +class OAuth implements OAuthTokenProvider +{ + /** + * An instance of the League OAuth Client Provider. + * + * @var AbstractProvider + */ + protected $provider; + + /** + * The current OAuth access token. + * + * @var AccessToken + */ + protected $oauthToken; + + /** + * The user's email address, usually used as the login ID + * and also the from address when sending email. + * + * @var string + */ + protected $oauthUserEmail = ''; + + /** + * The client secret, generated in the app definition of the service you're connecting to. + * + * @var string + */ + protected $oauthClientSecret = ''; + + /** + * The client ID, generated in the app definition of the service you're connecting to. + * + * @var string + */ + protected $oauthClientId = ''; + + /** + * The refresh token, used to obtain new AccessTokens. + * + * @var string + */ + protected $oauthRefreshToken = ''; + + /** + * OAuth constructor. + * + * @param array $options Associative array containing + * `provider`, `userName`, `clientSecret`, `clientId` and `refreshToken` elements + */ + public function __construct($options) + { + $this->provider = $options['provider']; + $this->oauthUserEmail = $options['userName']; + $this->oauthClientSecret = $options['clientSecret']; + $this->oauthClientId = $options['clientId']; + $this->oauthRefreshToken = $options['refreshToken']; + } + + /** + * Get a new RefreshToken. + * + * @return RefreshToken + */ + protected function getGrant() + { + return new RefreshToken(); + } + + /** + * Get a new AccessToken. + * + * @return AccessToken + */ + protected function getToken() + { + return $this->provider->getAccessToken( + $this->getGrant(), + ['refresh_token' => $this->oauthRefreshToken] + ); + } + + /** + * Generate a base64-encoded OAuth token. + * + * @return string + */ + public function getOauth64() + { + //Get a new token if it's not available or has expired + if (null === $this->oauthToken || $this->oauthToken->hasExpired()) { + $this->oauthToken = $this->getToken(); + } + + return base64_encode( + 'user=' . + $this->oauthUserEmail . + "\001auth=Bearer " . + $this->oauthToken . + "\001\001" + ); + } +} diff --git a/php/PHPMailer/OAuthTokenProvider.php b/php/PHPMailer/OAuthTokenProvider.php new file mode 100644 index 0000000..1155507 --- /dev/null +++ b/php/PHPMailer/OAuthTokenProvider.php @@ -0,0 +1,44 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2020 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +namespace PHPMailer\PHPMailer; + +/** + * OAuthTokenProvider - OAuth2 token provider interface. + * Provides base64 encoded OAuth2 auth strings for SMTP authentication. + * + * @see OAuth + * @see SMTP::authenticate() + * + * @author Peter Scopes (pdscopes) + * @author Marcus Bointon (Synchro/coolbru) + */ +interface OAuthTokenProvider +{ + /** + * Generate a base64-encoded OAuth token ensuring that the access token has not expired. + * The string to be base 64 encoded should be in the form: + * "user=\001auth=Bearer \001\001" + * + * @return string + */ + public function getOauth64(); +} diff --git a/php/PHPMailer/PHPMailer.php b/php/PHPMailer/PHPMailer.php new file mode 100644 index 0000000..c459984 --- /dev/null +++ b/php/PHPMailer/PHPMailer.php @@ -0,0 +1,5071 @@ + + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + * @copyright 2012 - 2020 Marcus Bointon + * @copyright 2010 - 2012 Jim Jagielski + * @copyright 2004 - 2009 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License + * @note This program is distributed in the hope that it will be useful - WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. + */ + +//namespace PHPMailer\PHPMailer; + +/** + * PHPMailer - PHP email creation and transport class. + * + * @author Marcus Bointon (Synchro/coolbru) + * @author Jim Jagielski (jimjag) + * @author Andy Prevost (codeworxtech) + * @author Brent R. Matzelle (original founder) + */ +class PHPMailer +{ + const CHARSET_ASCII = 'us-ascii'; + const CHARSET_ISO88591 = 'iso-8859-1'; + const CHARSET_UTF8 = 'utf-8'; + + const CONTENT_TYPE_PLAINTEXT = 'text/plain'; + const CONTENT_TYPE_TEXT_CALENDAR = 'text/calendar'; + const CONTENT_TYPE_TEXT_HTML = 'text/html'; + const CONTENT_TYPE_MULTIPART_ALTERNATIVE = 'multipart/alternative'; + const CONTENT_TYPE_MULTIPART_MIXED = 'multipart/mixed'; + const CONTENT_TYPE_MULTIPART_RELATED = 'multipart/related'; + + const ENCODING_7BIT = '7bit'; + const ENCODING_8BIT = '8bit'; + const ENCODING_BASE64 = 'base64'; + const ENCODING_BINARY = 'binary'; + const ENCODING_QUOTED_PRINTABLE = 'quoted-printable'; + + const ENCRYPTION_STARTTLS = 'tls'; + const ENCRYPTION_SMTPS = 'ssl'; + + const ICAL_METHOD_REQUEST = 'REQUEST'; + const ICAL_METHOD_PUBLISH = 'PUBLISH'; + const ICAL_METHOD_REPLY = 'REPLY'; + const ICAL_METHOD_ADD = 'ADD'; + const ICAL_METHOD_CANCEL = 'CANCEL'; + const ICAL_METHOD_REFRESH = 'REFRESH'; + const ICAL_METHOD_COUNTER = 'COUNTER'; + const ICAL_METHOD_DECLINECOUNTER = 'DECLINECOUNTER'; + + /** + * Email priority. + * Options: null (default), 1 = High, 3 = Normal, 5 = low. + * When null, the header is not set at all. + * + * @var int|null + */ + public $Priority; + + /** + * The character set of the message. + * + * @var string + */ + public $CharSet = self::CHARSET_ISO88591; + + /** + * The MIME Content-type of the message. + * + * @var string + */ + public $ContentType = self::CONTENT_TYPE_PLAINTEXT; + + /** + * The message encoding. + * Options: "8bit", "7bit", "binary", "base64", and "quoted-printable". + * + * @var string + */ + public $Encoding = self::ENCODING_8BIT; + + /** + * Holds the most recent mailer error message. + * + * @var string + */ + public $ErrorInfo = ''; + + /** + * The From email address for the message. + * + * @var string + */ + public $From = ''; + + /** + * The From name of the message. + * + * @var string + */ + public $FromName = ''; + + /** + * The envelope sender of the message. + * This will usually be turned into a Return-Path header by the receiver, + * and is the address that bounces will be sent to. + * If not empty, will be passed via `-f` to sendmail or as the 'MAIL FROM' value over SMTP. + * + * @var string + */ + public $Sender = ''; + + /** + * The Subject of the message. + * + * @var string + */ + public $Subject = ''; + + /** + * An HTML or plain text message body. + * If HTML then call isHTML(true). + * + * @var string + */ + public $Body = ''; + + /** + * The plain-text message body. + * This body can be read by mail clients that do not have HTML email + * capability such as mutt & Eudora. + * Clients that can read HTML will view the normal Body. + * + * @var string + */ + public $AltBody = ''; + + /** + * An iCal message part body. + * Only supported in simple alt or alt_inline message types + * To generate iCal event structures, use classes like EasyPeasyICS or iCalcreator. + * + * @see http://sprain.ch/blog/downloads/php-class-easypeasyics-create-ical-files-with-php/ + * @see http://kigkonsult.se/iCalcreator/ + * + * @var string + */ + public $Ical = ''; + + /** + * Value-array of "method" in Contenttype header "text/calendar" + * + * @var string[] + */ + protected static $IcalMethods = [ + self::ICAL_METHOD_REQUEST, + self::ICAL_METHOD_PUBLISH, + self::ICAL_METHOD_REPLY, + self::ICAL_METHOD_ADD, + self::ICAL_METHOD_CANCEL, + self::ICAL_METHOD_REFRESH, + self::ICAL_METHOD_COUNTER, + self::ICAL_METHOD_DECLINECOUNTER, + ]; + + /** + * The complete compiled MIME message body. + * + * @var string + */ + protected $MIMEBody = ''; + + /** + * The complete compiled MIME message headers. + * + * @var string + */ + protected $MIMEHeader = ''; + + /** + * Extra headers that createHeader() doesn't fold in. + * + * @var string + */ + protected $mailHeader = ''; + + /** + * Word-wrap the message body to this number of chars. + * Set to 0 to not wrap. A useful value here is 78, for RFC2822 section 2.1.1 compliance. + * + * @see static::STD_LINE_LENGTH + * + * @var int + */ + public $WordWrap = 0; + + /** + * Which method to use to send mail. + * Options: "mail", "sendmail", or "smtp". + * + * @var string + */ + public $Mailer = 'mail'; + + /** + * The path to the sendmail program. + * + * @var string + */ + public $Sendmail = '/usr/sbin/sendmail'; + + /** + * Whether mail() uses a fully sendmail-compatible MTA. + * One which supports sendmail's "-oi -f" options. + * + * @var bool + */ + public $UseSendmailOptions = true; + + /** + * The email address that a reading confirmation should be sent to, also known as read receipt. + * + * @var string + */ + public $ConfirmReadingTo = ''; + + /** + * The hostname to use in the Message-ID header and as default HELO string. + * If empty, PHPMailer attempts to find one with, in order, + * $_SERVER['SERVER_NAME'], gethostname(), php_uname('n'), or the value + * 'localhost.localdomain'. + * + * @see PHPMailer::$Helo + * + * @var string + */ + public $Hostname = ''; + + /** + * An ID to be used in the Message-ID header. + * If empty, a unique id will be generated. + * You can set your own, but it must be in the format "", + * as defined in RFC5322 section 3.6.4 or it will be ignored. + * + * @see https://tools.ietf.org/html/rfc5322#section-3.6.4 + * + * @var string + */ + public $MessageID = ''; + + /** + * The message Date to be used in the Date header. + * If empty, the current date will be added. + * + * @var string + */ + public $MessageDate = ''; + + /** + * SMTP hosts. + * Either a single hostname or multiple semicolon-delimited hostnames. + * You can also specify a different port + * for each host by using this format: [hostname:port] + * (e.g. "smtp1.example.com:25;smtp2.example.com"). + * You can also specify encryption type, for example: + * (e.g. "tls://smtp1.example.com:587;ssl://smtp2.example.com:465"). + * Hosts will be tried in order. + * + * @var string + */ + public $Host = 'localhost'; + + /** + * The default SMTP server port. + * + * @var int + */ + public $Port = 25; + + /** + * The SMTP HELO/EHLO name used for the SMTP connection. + * Default is $Hostname. If $Hostname is empty, PHPMailer attempts to find + * one with the same method described above for $Hostname. + * + * @see PHPMailer::$Hostname + * + * @var string + */ + public $Helo = ''; + + /** + * What kind of encryption to use on the SMTP connection. + * Options: '', static::ENCRYPTION_STARTTLS, or static::ENCRYPTION_SMTPS. + * + * @var string + */ + public $SMTPSecure = ''; + + /** + * Whether to enable TLS encryption automatically if a server supports it, + * even if `SMTPSecure` is not set to 'tls'. + * Be aware that in PHP >= 5.6 this requires that the server's certificates are valid. + * + * @var bool + */ + public $SMTPAutoTLS = true; + + /** + * Whether to use SMTP authentication. + * Uses the Username and Password properties. + * + * @see PHPMailer::$Username + * @see PHPMailer::$Password + * + * @var bool + */ + public $SMTPAuth = false; + + /** + * Options array passed to stream_context_create when connecting via SMTP. + * + * @var array + */ + public $SMTPOptions = []; + + /** + * SMTP username. + * + * @var string + */ + public $Username = ''; + + /** + * SMTP password. + * + * @var string + */ + public $Password = ''; + + /** + * SMTP auth type. + * Options are CRAM-MD5, LOGIN, PLAIN, XOAUTH2, attempted in that order if not specified. + * + * @var string + */ + public $AuthType = ''; + + /** + * An implementation of the PHPMailer OAuthTokenProvider interface. + * + * @var OAuthTokenProvider + */ + protected $oauth; + + /** + * The SMTP server timeout in seconds. + * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2. + * + * @var int + */ + public $Timeout = 300; + + /** + * Comma separated list of DSN notifications + * 'NEVER' under no circumstances a DSN must be returned to the sender. + * If you use NEVER all other notifications will be ignored. + * 'SUCCESS' will notify you when your mail has arrived at its destination. + * 'FAILURE' will arrive if an error occurred during delivery. + * 'DELAY' will notify you if there is an unusual delay in delivery, but the actual + * delivery's outcome (success or failure) is not yet decided. + * + * @see https://tools.ietf.org/html/rfc3461 See section 4.1 for more information about NOTIFY + */ + public $dsn = ''; + + /** + * SMTP class debug output mode. + * Debug output level. + * Options: + * @see SMTP::DEBUG_OFF: No output + * @see SMTP::DEBUG_CLIENT: Client messages + * @see SMTP::DEBUG_SERVER: Client and server messages + * @see SMTP::DEBUG_CONNECTION: As SERVER plus connection status + * @see SMTP::DEBUG_LOWLEVEL: Noisy, low-level data output, rarely needed + * + * @see SMTP::$do_debug + * + * @var int + */ + public $SMTPDebug = 0; + + /** + * How to handle debug output. + * Options: + * * `echo` Output plain-text as-is, appropriate for CLI + * * `html` Output escaped, line breaks converted to `
`, appropriate for browser output + * * `error_log` Output to error log as configured in php.ini + * By default PHPMailer will use `echo` if run from a `cli` or `cli-server` SAPI, `html` otherwise. + * Alternatively, you can provide a callable expecting two params: a message string and the debug level: + * + * ```php + * $mail->Debugoutput = function($str, $level) {echo "debug level $level; message: $str";}; + * ``` + * + * Alternatively, you can pass in an instance of a PSR-3 compatible logger, though only `debug` + * level output is used: + * + * ```php + * $mail->Debugoutput = new myPsr3Logger; + * ``` + * + * @see SMTP::$Debugoutput + * + * @var string|callable|\Psr\Log\LoggerInterface + */ + public $Debugoutput = 'echo'; + + /** + * Whether to keep the SMTP connection open after each message. + * If this is set to true then the connection will remain open after a send, + * and closing the connection will require an explicit call to smtpClose(). + * It's a good idea to use this if you are sending multiple messages as it reduces overhead. + * See the mailing list example for how to use it. + * + * @var bool + */ + public $SMTPKeepAlive = false; + + /** + * Whether to split multiple to addresses into multiple messages + * or send them all in one message. + * Only supported in `mail` and `sendmail` transports, not in SMTP. + * + * @var bool + * + * @deprecated 6.0.0 PHPMailer isn't a mailing list manager! + */ + public $SingleTo = false; + + /** + * Storage for addresses when SingleTo is enabled. + * + * @var array + */ + protected $SingleToArray = []; + + /** + * Whether to generate VERP addresses on send. + * Only applicable when sending via SMTP. + * + * @see https://en.wikipedia.org/wiki/Variable_envelope_return_path + * @see http://www.postfix.org/VERP_README.html Postfix VERP info + * + * @var bool + */ + public $do_verp = false; + + /** + * Whether to allow sending messages with an empty body. + * + * @var bool + */ + public $AllowEmpty = false; + + /** + * DKIM selector. + * + * @var string + */ + public $DKIM_selector = ''; + + /** + * DKIM Identity. + * Usually the email address used as the source of the email. + * + * @var string + */ + public $DKIM_identity = ''; + + /** + * DKIM passphrase. + * Used if your key is encrypted. + * + * @var string + */ + public $DKIM_passphrase = ''; + + /** + * DKIM signing domain name. + * + * @example 'example.com' + * + * @var string + */ + public $DKIM_domain = ''; + + /** + * DKIM Copy header field values for diagnostic use. + * + * @var bool + */ + public $DKIM_copyHeaderFields = true; + + /** + * DKIM Extra signing headers. + * + * @example ['List-Unsubscribe', 'List-Help'] + * + * @var array + */ + public $DKIM_extraHeaders = []; + + /** + * DKIM private key file path. + * + * @var string + */ + public $DKIM_private = ''; + + /** + * DKIM private key string. + * + * If set, takes precedence over `$DKIM_private`. + * + * @var string + */ + public $DKIM_private_string = ''; + + /** + * Callback Action function name. + * + * The function that handles the result of the send email action. + * It is called out by send() for each email sent. + * + * Value can be any php callable: http://www.php.net/is_callable + * + * Parameters: + * bool $result result of the send action + * array $to email addresses of the recipients + * array $cc cc email addresses + * array $bcc bcc email addresses + * string $subject the subject + * string $body the email body + * string $from email address of sender + * string $extra extra information of possible use + * "smtp_transaction_id' => last smtp transaction id + * + * @var string + */ + public $action_function = ''; + + /** + * What to put in the X-Mailer header. + * Options: An empty string for PHPMailer default, whitespace/null for none, or a string to use. + * + * @var string|null + */ + public $XMailer = ''; + + /** + * Which validator to use by default when validating email addresses. + * May be a callable to inject your own validator, but there are several built-in validators. + * The default validator uses PHP's FILTER_VALIDATE_EMAIL filter_var option. + * + * @see PHPMailer::validateAddress() + * + * @var string|callable + */ + public static $validator = 'php'; + + /** + * An instance of the SMTP sender class. + * + * @var SMTP + */ + protected $smtp; + + /** + * The array of 'to' names and addresses. + * + * @var array + */ + protected $to = []; + + /** + * The array of 'cc' names and addresses. + * + * @var array + */ + protected $cc = []; + + /** + * The array of 'bcc' names and addresses. + * + * @var array + */ + protected $bcc = []; + + /** + * The array of reply-to names and addresses. + * + * @var array + */ + protected $ReplyTo = []; + + /** + * An array of all kinds of addresses. + * Includes all of $to, $cc, $bcc. + * + * @see PHPMailer::$to + * @see PHPMailer::$cc + * @see PHPMailer::$bcc + * + * @var array + */ + protected $all_recipients = []; + + /** + * An array of names and addresses queued for validation. + * In send(), valid and non duplicate entries are moved to $all_recipients + * and one of $to, $cc, or $bcc. + * This array is used only for addresses with IDN. + * + * @see PHPMailer::$to + * @see PHPMailer::$cc + * @see PHPMailer::$bcc + * @see PHPMailer::$all_recipients + * + * @var array + */ + protected $RecipientsQueue = []; + + /** + * An array of reply-to names and addresses queued for validation. + * In send(), valid and non duplicate entries are moved to $ReplyTo. + * This array is used only for addresses with IDN. + * + * @see PHPMailer::$ReplyTo + * + * @var array + */ + protected $ReplyToQueue = []; + + /** + * The array of attachments. + * + * @var array + */ + protected $attachment = []; + + /** + * The array of custom headers. + * + * @var array + */ + protected $CustomHeader = []; + + /** + * The most recent Message-ID (including angular brackets). + * + * @var string + */ + protected $lastMessageID = ''; + + /** + * The message's MIME type. + * + * @var string + */ + protected $message_type = ''; + + /** + * The array of MIME boundary strings. + * + * @var array + */ + protected $boundary = []; + + /** + * The array of available text strings for the current language. + * + * @var array + */ + protected $language = []; + + /** + * The number of errors encountered. + * + * @var int + */ + protected $error_count = 0; + + /** + * The S/MIME certificate file path. + * + * @var string + */ + protected $sign_cert_file = ''; + + /** + * The S/MIME key file path. + * + * @var string + */ + protected $sign_key_file = ''; + + /** + * The optional S/MIME extra certificates ("CA Chain") file path. + * + * @var string + */ + protected $sign_extracerts_file = ''; + + /** + * The S/MIME password for the key. + * Used only if the key is encrypted. + * + * @var string + */ + protected $sign_key_pass = ''; + + /** + * Whether to throw exceptions for errors. + * + * @var bool + */ + protected $exceptions = false; + + /** + * Unique ID used for message ID and boundaries. + * + * @var string + */ + protected $uniqueid = ''; + + /** + * The PHPMailer Version number. + * + * @var string + */ + const VERSION = '6.6.0'; + + /** + * Error severity: message only, continue processing. + * + * @var int + */ + const STOP_MESSAGE = 0; + + /** + * Error severity: message, likely ok to continue processing. + * + * @var int + */ + const STOP_CONTINUE = 1; + + /** + * Error severity: message, plus full stop, critical error reached. + * + * @var int + */ + const STOP_CRITICAL = 2; + + /** + * The SMTP standard CRLF line break. + * If you want to change line break format, change static::$LE, not this. + */ + const CRLF = "\r\n"; + + /** + * "Folding White Space" a white space string used for line folding. + */ + const FWS = ' '; + + /** + * SMTP RFC standard line ending; Carriage Return, Line Feed. + * + * @var string + */ + protected static $LE = self::CRLF; + + /** + * The maximum line length supported by mail(). + * + * Background: mail() will sometimes corrupt messages + * with headers headers longer than 65 chars, see #818. + * + * @var int + */ + const MAIL_MAX_LINE_LENGTH = 63; + + /** + * The maximum line length allowed by RFC 2822 section 2.1.1. + * + * @var int + */ + const MAX_LINE_LENGTH = 998; + + /** + * The lower maximum line length allowed by RFC 2822 section 2.1.1. + * This length does NOT include the line break + * 76 means that lines will be 77 or 78 chars depending on whether + * the line break format is LF or CRLF; both are valid. + * + * @var int + */ + const STD_LINE_LENGTH = 76; + + /** + * Constructor. + * + * @param bool $exceptions Should we throw external exceptions? + */ + public function __construct($exceptions = null) + { + if (null !== $exceptions) { + $this->exceptions = (bool) $exceptions; + } + //Pick an appropriate debug output format automatically + $this->Debugoutput = (strpos(PHP_SAPI, 'cli') !== false ? 'echo' : 'html'); + } + + /** + * Destructor. + */ + public function __destruct() + { + //Close any open SMTP connection nicely + $this->smtpClose(); + } + + /** + * Call mail() in a safe_mode-aware fashion. + * Also, unless sendmail_path points to sendmail (or something that + * claims to be sendmail), don't pass params (not a perfect fix, + * but it will do). + * + * @param string $to To + * @param string $subject Subject + * @param string $body Message Body + * @param string $header Additional Header(s) + * @param string|null $params Params + * + * @return bool + */ + private function mailPassthru($to, $subject, $body, $header, $params) + { + //Check overloading of mail function to avoid double-encoding + if (ini_get('mbstring.func_overload') & 1) { + $subject = $this->secureHeader($subject); + } else { + $subject = $this->encodeHeader($this->secureHeader($subject)); + } + //Calling mail() with null params breaks + $this->edebug('Sending with mail()'); + $this->edebug('Sendmail path: ' . ini_get('sendmail_path')); + $this->edebug("Envelope sender: {$this->Sender}"); + $this->edebug("To: {$to}"); + $this->edebug("Subject: {$subject}"); + $this->edebug("Headers: {$header}"); + if (!$this->UseSendmailOptions || null === $params) { + $result = @mail($to, $subject, $body, $header); + } else { + $this->edebug("Additional params: {$params}"); + $result = @mail($to, $subject, $body, $header, $params); + } + $this->edebug('Result: ' . ($result ? 'true' : 'false')); + return $result; + } + + /** + * Output debugging info via a user-defined method. + * Only generates output if debug output is enabled. + * + * @see PHPMailer::$Debugoutput + * @see PHPMailer::$SMTPDebug + * + * @param string $str + */ + protected function edebug($str) + { + if ($this->SMTPDebug <= 0) { + return; + } + //Is this a PSR-3 logger? + if ($this->Debugoutput instanceof \Psr\Log\LoggerInterface) { + $this->Debugoutput->debug($str); + + return; + } + //Avoid clash with built-in function names + if (is_callable($this->Debugoutput) && !in_array($this->Debugoutput, ['error_log', 'html', 'echo'])) { + call_user_func($this->Debugoutput, $str, $this->SMTPDebug); + + return; + } + switch ($this->Debugoutput) { + case 'error_log': + //Don't output, just log + /** @noinspection ForgottenDebugOutputInspection */ + error_log($str); + break; + case 'html': + //Cleans up output a bit for a better looking, HTML-safe output + echo htmlentities( + preg_replace('/[\r\n]+/', '', $str), + ENT_QUOTES, + 'UTF-8' + ), "
\n"; + break; + case 'echo': + default: + //Normalize line breaks + $str = preg_replace('/\r\n|\r/m', "\n", $str); + echo gmdate('Y-m-d H:i:s'), + "\t", + //Trim trailing space + trim( + //Indent for readability, except for trailing break + str_replace( + "\n", + "\n \t ", + trim($str) + ) + ), + "\n"; + } + } + + /** + * Sets message type to HTML or plain. + * + * @param bool $isHtml True for HTML mode + */ + public function isHTML($isHtml = true) + { + if ($isHtml) { + $this->ContentType = static::CONTENT_TYPE_TEXT_HTML; + } else { + $this->ContentType = static::CONTENT_TYPE_PLAINTEXT; + } + } + + /** + * Send messages using SMTP. + */ + public function isSMTP() + { + $this->Mailer = 'smtp'; + } + + /** + * Send messages using PHP's mail() function. + */ + public function isMail() + { + $this->Mailer = 'mail'; + } + + /** + * Send messages using $Sendmail. + */ + public function isSendmail() + { + $ini_sendmail_path = ini_get('sendmail_path'); + + if (false === stripos($ini_sendmail_path, 'sendmail')) { + $this->Sendmail = '/usr/sbin/sendmail'; + } else { + $this->Sendmail = $ini_sendmail_path; + } + $this->Mailer = 'sendmail'; + } + + /** + * Send messages using qmail. + */ + public function isQmail() + { + $ini_sendmail_path = ini_get('sendmail_path'); + + if (false === stripos($ini_sendmail_path, 'qmail')) { + $this->Sendmail = '/var/qmail/bin/qmail-inject'; + } else { + $this->Sendmail = $ini_sendmail_path; + } + $this->Mailer = 'qmail'; + } + + /** + * Add a "To" address. + * + * @param string $address The email address to send to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + public function addAddress($address, $name = '') + { + return $this->addOrEnqueueAnAddress('to', $address, $name); + } + + /** + * Add a "CC" address. + * + * @param string $address The email address to send to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + public function addCC($address, $name = '') + { + return $this->addOrEnqueueAnAddress('cc', $address, $name); + } + + /** + * Add a "BCC" address. + * + * @param string $address The email address to send to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + public function addBCC($address, $name = '') + { + return $this->addOrEnqueueAnAddress('bcc', $address, $name); + } + + /** + * Add a "Reply-To" address. + * + * @param string $address The email address to reply to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + public function addReplyTo($address, $name = '') + { + return $this->addOrEnqueueAnAddress('Reply-To', $address, $name); + } + + /** + * Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer + * can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still + * be modified after calling this function), addition of such addresses is delayed until send(). + * Addresses that have been added already return false, but do not throw exceptions. + * + * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo' + * @param string $address The email address to send, resp. to reply to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + protected function addOrEnqueueAnAddress($kind, $address, $name) + { + $address = trim($address); + $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim + $pos = strrpos($address, '@'); + if (false === $pos) { + //At-sign is missing. + $error_message = sprintf( + '%s (%s): %s', + $this->lang('invalid_address'), + $kind, + $address + ); + $this->setError($error_message); + $this->edebug($error_message); + if ($this->exceptions) { + throw new Exception($error_message); + } + + return false; + } + $params = [$kind, $address, $name]; + //Enqueue addresses with IDN until we know the PHPMailer::$CharSet. + if (static::idnSupported() && $this->has8bitChars(substr($address, ++$pos))) { + if ('Reply-To' !== $kind) { + if (!array_key_exists($address, $this->RecipientsQueue)) { + $this->RecipientsQueue[$address] = $params; + + return true; + } + } elseif (!array_key_exists($address, $this->ReplyToQueue)) { + $this->ReplyToQueue[$address] = $params; + + return true; + } + + return false; + } + + //Immediately add standard addresses without IDN. + return call_user_func_array([$this, 'addAnAddress'], $params); + } + + /** + * Add an address to one of the recipient arrays or to the ReplyTo array. + * Addresses that have been added already return false, but do not throw exceptions. + * + * @param string $kind One of 'to', 'cc', 'bcc', or 'ReplyTo' + * @param string $address The email address to send, resp. to reply to + * @param string $name + * + * @throws Exception + * + * @return bool true on success, false if address already used or invalid in some way + */ + protected function addAnAddress($kind, $address, $name = '') + { + if (!in_array($kind, ['to', 'cc', 'bcc', 'Reply-To'])) { + $error_message = sprintf( + '%s: %s', + $this->lang('Invalid recipient kind'), + $kind + ); + $this->setError($error_message); + $this->edebug($error_message); + if ($this->exceptions) { + throw new Exception($error_message); + } + + return false; + } + if (!static::validateAddress($address)) { + $error_message = sprintf( + '%s (%s): %s', + $this->lang('invalid_address'), + $kind, + $address + ); + $this->setError($error_message); + $this->edebug($error_message); + if ($this->exceptions) { + throw new Exception($error_message); + } + + return false; + } + if ('Reply-To' !== $kind) { + if (!array_key_exists(strtolower($address), $this->all_recipients)) { + $this->{$kind}[] = [$address, $name]; + $this->all_recipients[strtolower($address)] = true; + + return true; + } + } elseif (!array_key_exists(strtolower($address), $this->ReplyTo)) { + $this->ReplyTo[strtolower($address)] = [$address, $name]; + + return true; + } + + return false; + } + + /** + * Parse and validate a string containing one or more RFC822-style comma-separated email addresses + * of the form "display name
" into an array of name/address pairs. + * Uses the imap_rfc822_parse_adrlist function if the IMAP extension is available. + * Note that quotes in the name part are removed. + * + * @see http://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php A more careful implementation + * + * @param string $addrstr The address list string + * @param bool $useimap Whether to use the IMAP extension to parse the list + * @param string $charset The charset to use when decoding the address list string. + * + * @return array + */ + public static function parseAddresses($addrstr, $useimap = true, $charset = self::CHARSET_ISO88591) + { + $addresses = []; + if ($useimap && function_exists('imap_rfc822_parse_adrlist')) { + //Use this built-in parser if it's available + $list = imap_rfc822_parse_adrlist($addrstr, ''); + // Clear any potential IMAP errors to get rid of notices being thrown at end of script. + imap_errors(); + foreach ($list as $address) { + if ( + '.SYNTAX-ERROR.' !== $address->host && + static::validateAddress($address->mailbox . '@' . $address->host) + ) { + //Decode the name part if it's present and encoded + if ( + property_exists($address, 'personal') && + //Check for a Mbstring constant rather than using extension_loaded, which is sometimes disabled + defined('MB_CASE_UPPER') && + preg_match('/^=\?.*\?=$/s', $address->personal) + ) { + $origCharset = mb_internal_encoding(); + mb_internal_encoding($charset); + //Undo any RFC2047-encoded spaces-as-underscores + $address->personal = str_replace('_', '=20', $address->personal); + //Decode the name + $address->personal = mb_decode_mimeheader($address->personal); + mb_internal_encoding($origCharset); + } + + $addresses[] = [ + 'name' => (property_exists($address, 'personal') ? $address->personal : ''), + 'address' => $address->mailbox . '@' . $address->host, + ]; + } + } + } else { + //Use this simpler parser + $list = explode(',', $addrstr); + foreach ($list as $address) { + $address = trim($address); + //Is there a separate name part? + if (strpos($address, '<') === false) { + //No separate name, just use the whole thing + if (static::validateAddress($address)) { + $addresses[] = [ + 'name' => '', + 'address' => $address, + ]; + } + } else { + list($name, $email) = explode('<', $address); + $email = trim(str_replace('>', '', $email)); + $name = trim($name); + if (static::validateAddress($email)) { + //Check for a Mbstring constant rather than using extension_loaded, which is sometimes disabled + //If this name is encoded, decode it + if (defined('MB_CASE_UPPER') && preg_match('/^=\?.*\?=$/s', $name)) { + $origCharset = mb_internal_encoding(); + mb_internal_encoding($charset); + //Undo any RFC2047-encoded spaces-as-underscores + $name = str_replace('_', '=20', $name); + //Decode the name + $name = mb_decode_mimeheader($name); + mb_internal_encoding($origCharset); + } + $addresses[] = [ + //Remove any surrounding quotes and spaces from the name + 'name' => trim($name, '\'" '), + 'address' => $email, + ]; + } + } + } + } + + return $addresses; + } + + /** + * Set the From and FromName properties. + * + * @param string $address + * @param string $name + * @param bool $auto Whether to also set the Sender address, defaults to true + * + * @throws Exception + * + * @return bool + */ + public function setFrom($address, $name = '', $auto = true) + { + $address = trim($address); + $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim + //Don't validate now addresses with IDN. Will be done in send(). + $pos = strrpos($address, '@'); + if ( + (false === $pos) + || ((!$this->has8bitChars(substr($address, ++$pos)) || !static::idnSupported()) + && !static::validateAddress($address)) + ) { + $error_message = sprintf( + '%s (From): %s', + $this->lang('invalid_address'), + $address + ); + $this->setError($error_message); + $this->edebug($error_message); + if ($this->exceptions) { + throw new Exception($error_message); + } + + return false; + } + $this->From = $address; + $this->FromName = $name; + if ($auto && empty($this->Sender)) { + $this->Sender = $address; + } + + return true; + } + + /** + * Return the Message-ID header of the last email. + * Technically this is the value from the last time the headers were created, + * but it's also the message ID of the last sent message except in + * pathological cases. + * + * @return string + */ + public function getLastMessageID() + { + return $this->lastMessageID; + } + + /** + * Check that a string looks like an email address. + * Validation patterns supported: + * * `auto` Pick best pattern automatically; + * * `pcre8` Use the squiloople.com pattern, requires PCRE > 8.0; + * * `pcre` Use old PCRE implementation; + * * `php` Use PHP built-in FILTER_VALIDATE_EMAIL; + * * `html5` Use the pattern given by the HTML5 spec for 'email' type form input elements. + * * `noregex` Don't use a regex: super fast, really dumb. + * Alternatively you may pass in a callable to inject your own validator, for example: + * + * ```php + * PHPMailer::validateAddress('user@example.com', function($address) { + * return (strpos($address, '@') !== false); + * }); + * ``` + * + * You can also set the PHPMailer::$validator static to a callable, allowing built-in methods to use your validator. + * + * @param string $address The email address to check + * @param string|callable $patternselect Which pattern to use + * + * @return bool + */ + public static function validateAddress($address, $patternselect = null) + { + if (null === $patternselect) { + $patternselect = static::$validator; + } + //Don't allow strings as callables, see SECURITY.md and CVE-2021-3603 + if (is_callable($patternselect) && !is_string($patternselect)) { + return call_user_func($patternselect, $address); + } + //Reject line breaks in addresses; it's valid RFC5322, but not RFC5321 + if (strpos($address, "\n") !== false || strpos($address, "\r") !== false) { + return false; + } + switch ($patternselect) { + case 'pcre': //Kept for BC + case 'pcre8': + /* + * A more complex and more permissive version of the RFC5322 regex on which FILTER_VALIDATE_EMAIL + * is based. + * In addition to the addresses allowed by filter_var, also permits: + * * dotless domains: `a@b` + * * comments: `1234 @ local(blah) .machine .example` + * * quoted elements: `'"test blah"@example.org'` + * * numeric TLDs: `a@b.123` + * * unbracketed IPv4 literals: `a@192.168.0.1` + * * IPv6 literals: 'first.last@[IPv6:a1::]' + * Not all of these will necessarily work for sending! + * + * @see http://squiloople.com/2009/12/20/email-address-validation/ + * @copyright 2009-2010 Michael Rushton + * Feel free to use and redistribute this code. But please keep this copyright notice. + */ + return (bool) preg_match( + '/^(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){255,})(?!(?>(?1)"?(?>\\\[ -~]|[^"])"?(?1)){65,}@)' . + '((?>(?>(?>((?>(?>(?>\x0D\x0A)?[\t ])+|(?>[\t ]*\x0D\x0A)?[\t ]+)?)(\((?>(?2)' . + '(?>[\x01-\x08\x0B\x0C\x0E-\'*-\[\]-\x7F]|\\\[\x00-\x7F]|(?3)))*(?2)\)))+(?2))|(?2))?)' . + '([!#-\'*+\/-9=?^-~-]+|"(?>(?2)(?>[\x01-\x08\x0B\x0C\x0E-!#-\[\]-\x7F]|\\\[\x00-\x7F]))*' . + '(?2)")(?>(?1)\.(?1)(?4))*(?1)@(?!(?1)[a-z0-9-]{64,})(?1)(?>([a-z0-9](?>[a-z0-9-]*[a-z0-9])?)' . + '(?>(?1)\.(?!(?1)[a-z0-9-]{64,})(?1)(?5)){0,126}|\[(?:(?>IPv6:(?>([a-f0-9]{1,4})(?>:(?6)){7}' . + '|(?!(?:.*[a-f0-9][:\]]){8,})((?6)(?>:(?6)){0,6})?::(?7)?))|(?>(?>IPv6:(?>(?6)(?>:(?6)){5}:' . + '|(?!(?:.*[a-f0-9]:){6,})(?8)?::(?>((?6)(?>:(?6)){0,4}):)?))?(25[0-5]|2[0-4][0-9]|1[0-9]{2}' . + '|[1-9]?[0-9])(?>\.(?9)){3}))\])(?1)$/isD', + $address + ); + case 'html5': + /* + * This is the pattern used in the HTML5 spec for validation of 'email' type form input elements. + * + * @see https://html.spec.whatwg.org/#e-mail-state-(type=email) + */ + return (bool) preg_match( + '/^[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}' . + '[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/sD', + $address + ); + case 'php': + default: + return filter_var($address, FILTER_VALIDATE_EMAIL) !== false; + } + } + + /** + * Tells whether IDNs (Internationalized Domain Names) are supported or not. This requires the + * `intl` and `mbstring` PHP extensions. + * + * @return bool `true` if required functions for IDN support are present + */ + public static function idnSupported() + { + return function_exists('idn_to_ascii') && function_exists('mb_convert_encoding'); + } + + /** + * Converts IDN in given email address to its ASCII form, also known as punycode, if possible. + * Important: Address must be passed in same encoding as currently set in PHPMailer::$CharSet. + * This function silently returns unmodified address if: + * - No conversion is necessary (i.e. domain name is not an IDN, or is already in ASCII form) + * - Conversion to punycode is impossible (e.g. required PHP functions are not available) + * or fails for any reason (e.g. domain contains characters not allowed in an IDN). + * + * @see PHPMailer::$CharSet + * + * @param string $address The email address to convert + * + * @return string The encoded address in ASCII form + */ + public function punyencodeAddress($address) + { + //Verify we have required functions, CharSet, and at-sign. + $pos = strrpos($address, '@'); + if ( + !empty($this->CharSet) && + false !== $pos && + static::idnSupported() + ) { + $domain = substr($address, ++$pos); + //Verify CharSet string is a valid one, and domain properly encoded in this CharSet. + if ($this->has8bitChars($domain) && @mb_check_encoding($domain, $this->CharSet)) { + //Convert the domain from whatever charset it's in to UTF-8 + $domain = mb_convert_encoding($domain, self::CHARSET_UTF8, $this->CharSet); + //Ignore IDE complaints about this line - method signature changed in PHP 5.4 + $errorcode = 0; + if (defined('INTL_IDNA_VARIANT_UTS46')) { + //Use the current punycode standard (appeared in PHP 7.2) + $punycode = idn_to_ascii( + $domain, + \IDNA_DEFAULT | \IDNA_USE_STD3_RULES | \IDNA_CHECK_BIDI | + \IDNA_CHECK_CONTEXTJ | \IDNA_NONTRANSITIONAL_TO_ASCII, + \INTL_IDNA_VARIANT_UTS46 + ); + } elseif (defined('INTL_IDNA_VARIANT_2003')) { + //Fall back to this old, deprecated/removed encoding + $punycode = idn_to_ascii($domain, $errorcode, \INTL_IDNA_VARIANT_2003); + } else { + //Fall back to a default we don't know about + $punycode = idn_to_ascii($domain, $errorcode); + } + if (false !== $punycode) { + return substr($address, 0, $pos) . $punycode; + } + } + } + + return $address; + } + + /** + * Create a message and send it. + * Uses the sending method specified by $Mailer. + * + * @throws Exception + * + * @return bool false on error - See the ErrorInfo property for details of the error + */ + public function send() + { + try { + if (!$this->preSend()) { + return false; + } + + return $this->postSend(); + } catch (Exception $exc) { + $this->mailHeader = ''; + $this->setError($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + + return false; + } + } + + /** + * Prepare a message for sending. + * + * @throws Exception + * + * @return bool + */ + public function preSend() + { + if ( + 'smtp' === $this->Mailer + || ('mail' === $this->Mailer && (\PHP_VERSION_ID >= 80000 || stripos(PHP_OS, 'WIN') === 0)) + ) { + //SMTP mandates RFC-compliant line endings + //and it's also used with mail() on Windows + static::setLE(self::CRLF); + } else { + //Maintain backward compatibility with legacy Linux command line mailers + static::setLE(PHP_EOL); + } + //Check for buggy PHP versions that add a header with an incorrect line break + if ( + 'mail' === $this->Mailer + && ((\PHP_VERSION_ID >= 70000 && \PHP_VERSION_ID < 70017) + || (\PHP_VERSION_ID >= 70100 && \PHP_VERSION_ID < 70103)) + && ini_get('mail.add_x_header') === '1' + && stripos(PHP_OS, 'WIN') === 0 + ) { + trigger_error($this->lang('buggy_php'), E_USER_WARNING); + } + + try { + $this->error_count = 0; //Reset errors + $this->mailHeader = ''; + + //Dequeue recipient and Reply-To addresses with IDN + foreach (array_merge($this->RecipientsQueue, $this->ReplyToQueue) as $params) { + $params[1] = $this->punyencodeAddress($params[1]); + call_user_func_array([$this, 'addAnAddress'], $params); + } + if (count($this->to) + count($this->cc) + count($this->bcc) < 1) { + throw new Exception($this->lang('provide_address'), self::STOP_CRITICAL); + } + + //Validate From, Sender, and ConfirmReadingTo addresses + foreach (['From', 'Sender', 'ConfirmReadingTo'] as $address_kind) { + $this->$address_kind = trim($this->$address_kind); + if (empty($this->$address_kind)) { + continue; + } + $this->$address_kind = $this->punyencodeAddress($this->$address_kind); + if (!static::validateAddress($this->$address_kind)) { + $error_message = sprintf( + '%s (%s): %s', + $this->lang('invalid_address'), + $address_kind, + $this->$address_kind + ); + $this->setError($error_message); + $this->edebug($error_message); + if ($this->exceptions) { + throw new Exception($error_message); + } + + return false; + } + } + + //Set whether the message is multipart/alternative + if ($this->alternativeExists()) { + $this->ContentType = static::CONTENT_TYPE_MULTIPART_ALTERNATIVE; + } + + $this->setMessageType(); + //Refuse to send an empty message unless we are specifically allowing it + if (!$this->AllowEmpty && empty($this->Body)) { + throw new Exception($this->lang('empty_message'), self::STOP_CRITICAL); + } + + //Trim subject consistently + $this->Subject = trim($this->Subject); + //Create body before headers in case body makes changes to headers (e.g. altering transfer encoding) + $this->MIMEHeader = ''; + $this->MIMEBody = $this->createBody(); + //createBody may have added some headers, so retain them + $tempheaders = $this->MIMEHeader; + $this->MIMEHeader = $this->createHeader(); + $this->MIMEHeader .= $tempheaders; + + //To capture the complete message when using mail(), create + //an extra header list which createHeader() doesn't fold in + if ('mail' === $this->Mailer) { + if (count($this->to) > 0) { + $this->mailHeader .= $this->addrAppend('To', $this->to); + } else { + $this->mailHeader .= $this->headerLine('To', 'undisclosed-recipients:;'); + } + $this->mailHeader .= $this->headerLine( + 'Subject', + $this->encodeHeader($this->secureHeader($this->Subject)) + ); + } + + //Sign with DKIM if enabled + if ( + !empty($this->DKIM_domain) + && !empty($this->DKIM_selector) + && (!empty($this->DKIM_private_string) + || (!empty($this->DKIM_private) + && static::isPermittedPath($this->DKIM_private) + && file_exists($this->DKIM_private) + ) + ) + ) { + $header_dkim = $this->DKIM_Add( + $this->MIMEHeader . $this->mailHeader, + $this->encodeHeader($this->secureHeader($this->Subject)), + $this->MIMEBody + ); + $this->MIMEHeader = static::stripTrailingWSP($this->MIMEHeader) . static::$LE . + static::normalizeBreaks($header_dkim) . static::$LE; + } + + return true; + } catch (Exception $exc) { + $this->setError($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + + return false; + } + } + + /** + * Actually send a message via the selected mechanism. + * + * @throws Exception + * + * @return bool + */ + public function postSend() + { + try { + //Choose the mailer and send through it + switch ($this->Mailer) { + case 'sendmail': + case 'qmail': + return $this->sendmailSend($this->MIMEHeader, $this->MIMEBody); + case 'smtp': + return $this->smtpSend($this->MIMEHeader, $this->MIMEBody); + case 'mail': + return $this->mailSend($this->MIMEHeader, $this->MIMEBody); + default: + $sendMethod = $this->Mailer . 'Send'; + if (method_exists($this, $sendMethod)) { + return $this->$sendMethod($this->MIMEHeader, $this->MIMEBody); + } + + return $this->mailSend($this->MIMEHeader, $this->MIMEBody); + } + } catch (Exception $exc) { + if ($this->Mailer === 'smtp' && $this->SMTPKeepAlive == true) { + $this->smtp->reset(); + } + $this->setError($exc->getMessage()); + $this->edebug($exc->getMessage()); + if ($this->exceptions) { + throw $exc; + } + } + + return false; + } + + /** + * Send mail using the $Sendmail program. + * + * @see PHPMailer::$Sendmail + * + * @param string $header The message headers + * @param string $body The message body + * + * @throws Exception + * + * @return bool + */ + protected function sendmailSend($header, $body) + { + if ($this->Mailer === 'qmail') { + $this->edebug('Sending with qmail'); + } else { + $this->edebug('Sending with sendmail'); + } + $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; + //This sets the SMTP envelope sender which gets turned into a return-path header by the receiver + //A space after `-f` is optional, but there is a long history of its presence + //causing problems, so we don't use one + //Exim docs: http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html + //Sendmail docs: http://www.sendmail.org/~ca/email/man/sendmail.html + //Qmail docs: http://www.qmail.org/man/man8/qmail-inject.html + //Example problem: https://www.drupal.org/node/1057954 + + //PHP 5.6 workaround + $sendmail_from_value = ini_get('sendmail_from'); + if (empty($this->Sender) && !empty($sendmail_from_value)) { + //PHP config has a sender address we can use + $this->Sender = ini_get('sendmail_from'); + } + //CVE-2016-10033, CVE-2016-10045: Don't pass -f if characters will be escaped. + if (!empty($this->Sender) && static::validateAddress($this->Sender) && self::isShellSafe($this->Sender)) { + if ($this->Mailer === 'qmail') { + $sendmailFmt = '%s -f%s'; + } else { + $sendmailFmt = '%s -oi -f%s -t'; + } + } else { + //allow sendmail to choose a default envelope sender. It may + //seem preferable to force it to use the From header as with + //SMTP, but that introduces new problems (see + //), and + //it has historically worked this way. + $sendmailFmt = '%s -oi -t'; + } + + $sendmail = sprintf($sendmailFmt, escapeshellcmd($this->Sendmail), $this->Sender); + $this->edebug('Sendmail path: ' . $this->Sendmail); + $this->edebug('Sendmail command: ' . $sendmail); + $this->edebug('Envelope sender: ' . $this->Sender); + $this->edebug("Headers: {$header}"); + + if ($this->SingleTo) { + foreach ($this->SingleToArray as $toAddr) { + $mail = @popen($sendmail, 'w'); + if (!$mail) { + throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + $this->edebug("To: {$toAddr}"); + fwrite($mail, 'To: ' . $toAddr . "\n"); + fwrite($mail, $header); + fwrite($mail, $body); + $result = pclose($mail); + $addrinfo = static::parseAddresses($toAddr, true, $this->CharSet); + $this->doCallback( + ($result === 0), + [[$addrinfo['address'], $addrinfo['name']]], + $this->cc, + $this->bcc, + $this->Subject, + $body, + $this->From, + [] + ); + $this->edebug("Result: " . ($result === 0 ? 'true' : 'false')); + if (0 !== $result) { + throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + } + } else { + $mail = @popen($sendmail, 'w'); + if (!$mail) { + throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + fwrite($mail, $header); + fwrite($mail, $body); + $result = pclose($mail); + $this->doCallback( + ($result === 0), + $this->to, + $this->cc, + $this->bcc, + $this->Subject, + $body, + $this->From, + [] + ); + $this->edebug("Result: " . ($result === 0 ? 'true' : 'false')); + if (0 !== $result) { + throw new Exception($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL); + } + } + + return true; + } + + /** + * Fix CVE-2016-10033 and CVE-2016-10045 by disallowing potentially unsafe shell characters. + * Note that escapeshellarg and escapeshellcmd are inadequate for our purposes, especially on Windows. + * + * @see https://github.com/PHPMailer/PHPMailer/issues/924 CVE-2016-10045 bug report + * + * @param string $string The string to be validated + * + * @return bool + */ + protected static function isShellSafe($string) + { + //It's not possible to use shell commands safely (which includes the mail() function) without escapeshellarg, + //but some hosting providers disable it, creating a security problem that we don't want to have to deal with, + //so we don't. + if (!function_exists('escapeshellarg') || !function_exists('escapeshellcmd')) { + return false; + } + + if ( + escapeshellcmd($string) !== $string + || !in_array(escapeshellarg($string), ["'$string'", "\"$string\""]) + ) { + return false; + } + + $length = strlen($string); + + for ($i = 0; $i < $length; ++$i) { + $c = $string[$i]; + + //All other characters have a special meaning in at least one common shell, including = and +. + //Full stop (.) has a special meaning in cmd.exe, but its impact should be negligible here. + //Note that this does permit non-Latin alphanumeric characters based on the current locale. + if (!ctype_alnum($c) && strpos('@_-.', $c) === false) { + return false; + } + } + + return true; + } + + /** + * Check whether a file path is of a permitted type. + * Used to reject URLs and phar files from functions that access local file paths, + * such as addAttachment. + * + * @param string $path A relative or absolute path to a file + * + * @return bool + */ + protected static function isPermittedPath($path) + { + //Matches scheme definition from https://tools.ietf.org/html/rfc3986#section-3.1 + return !preg_match('#^[a-z][a-z\d+.-]*://#i', $path); + } + + /** + * Check whether a file path is safe, accessible, and readable. + * + * @param string $path A relative or absolute path to a file + * + * @return bool + */ + protected static function fileIsAccessible($path) + { + if (!static::isPermittedPath($path)) { + return false; + } + $readable = file_exists($path); + //If not a UNC path (expected to start with \\), check read permission, see #2069 + if (strpos($path, '\\\\') !== 0) { + $readable = $readable && is_readable($path); + } + return $readable; + } + + /** + * Send mail using the PHP mail() function. + * + * @see http://www.php.net/manual/en/book.mail.php + * + * @param string $header The message headers + * @param string $body The message body + * + * @throws Exception + * + * @return bool + */ + protected function mailSend($header, $body) + { + $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; + + $toArr = []; + foreach ($this->to as $toaddr) { + $toArr[] = $this->addrFormat($toaddr); + } + $to = implode(', ', $toArr); + + $params = null; + //This sets the SMTP envelope sender which gets turned into a return-path header by the receiver + //A space after `-f` is optional, but there is a long history of its presence + //causing problems, so we don't use one + //Exim docs: http://www.exim.org/exim-html-current/doc/html/spec_html/ch-the_exim_command_line.html + //Sendmail docs: http://www.sendmail.org/~ca/email/man/sendmail.html + //Qmail docs: http://www.qmail.org/man/man8/qmail-inject.html + //Example problem: https://www.drupal.org/node/1057954 + //CVE-2016-10033, CVE-2016-10045: Don't pass -f if characters will be escaped. + + //PHP 5.6 workaround + $sendmail_from_value = ini_get('sendmail_from'); + if (empty($this->Sender) && !empty($sendmail_from_value)) { + //PHP config has a sender address we can use + $this->Sender = ini_get('sendmail_from'); + } + if (!empty($this->Sender) && static::validateAddress($this->Sender)) { + if (self::isShellSafe($this->Sender)) { + $params = sprintf('-f%s', $this->Sender); + } + $old_from = ini_get('sendmail_from'); + ini_set('sendmail_from', $this->Sender); + } + $result = false; + if ($this->SingleTo && count($toArr) > 1) { + foreach ($toArr as $toAddr) { + $result = $this->mailPassthru($toAddr, $this->Subject, $body, $header, $params); + $addrinfo = static::parseAddresses($toAddr, true, $this->CharSet); + $this->doCallback( + $result, + [[$addrinfo['address'], $addrinfo['name']]], + $this->cc, + $this->bcc, + $this->Subject, + $body, + $this->From, + [] + ); + } + } else { + $result = $this->mailPassthru($to, $this->Subject, $body, $header, $params); + $this->doCallback($result, $this->to, $this->cc, $this->bcc, $this->Subject, $body, $this->From, []); + } + if (isset($old_from)) { + ini_set('sendmail_from', $old_from); + } + if (!$result) { + throw new Exception($this->lang('instantiate'), self::STOP_CRITICAL); + } + + return true; + } + + /** + * Get an instance to use for SMTP operations. + * Override this function to load your own SMTP implementation, + * or set one with setSMTPInstance. + * + * @return SMTP + */ + public function getSMTPInstance() + { + if (!is_object($this->smtp)) { + $this->smtp = new SMTP(); + } + + return $this->smtp; + } + + /** + * Provide an instance to use for SMTP operations. + * + * @return SMTP + */ + public function setSMTPInstance(SMTP $smtp) + { + $this->smtp = $smtp; + + return $this->smtp; + } + + /** + * Send mail via SMTP. + * Returns false if there is a bad MAIL FROM, RCPT, or DATA input. + * + * @see PHPMailer::setSMTPInstance() to use a different class. + * + * @uses \PHPMailer\PHPMailer\SMTP + * + * @param string $header The message headers + * @param string $body The message body + * + * @throws Exception + * + * @return bool + */ + protected function smtpSend($header, $body) + { + $header = static::stripTrailingWSP($header) . static::$LE . static::$LE; + $bad_rcpt = []; + if (!$this->smtpConnect($this->SMTPOptions)) { + throw new Exception($this->lang('smtp_connect_failed'), self::STOP_CRITICAL); + } + //Sender already validated in preSend() + if ('' === $this->Sender) { + $smtp_from = $this->From; + } else { + $smtp_from = $this->Sender; + } + if (!$this->smtp->mail($smtp_from)) { + $this->setError($this->lang('from_failed') . $smtp_from . ' : ' . implode(',', $this->smtp->getError())); + throw new Exception($this->ErrorInfo, self::STOP_CRITICAL); + } + + $callbacks = []; + //Attempt to send to all recipients + foreach ([$this->to, $this->cc, $this->bcc] as $togroup) { + foreach ($togroup as $to) { + if (!$this->smtp->recipient($to[0], $this->dsn)) { + $error = $this->smtp->getError(); + $bad_rcpt[] = ['to' => $to[0], 'error' => $error['detail']]; + $isSent = false; + } else { + $isSent = true; + } + + $callbacks[] = ['issent' => $isSent, 'to' => $to[0], 'name' => $to[1]]; + } + } + + //Only send the DATA command if we have viable recipients + if ((count($this->all_recipients) > count($bad_rcpt)) && !$this->smtp->data($header . $body)) { + throw new Exception($this->lang('data_not_accepted'), self::STOP_CRITICAL); + } + + $smtp_transaction_id = $this->smtp->getLastTransactionID(); + + if ($this->SMTPKeepAlive) { + $this->smtp->reset(); + } else { + $this->smtp->quit(); + $this->smtp->close(); + } + + foreach ($callbacks as $cb) { + $this->doCallback( + $cb['issent'], + [[$cb['to'], $cb['name']]], + [], + [], + $this->Subject, + $body, + $this->From, + ['smtp_transaction_id' => $smtp_transaction_id] + ); + } + + //Create error message for any bad addresses + if (count($bad_rcpt) > 0) { + $errstr = ''; + foreach ($bad_rcpt as $bad) { + $errstr .= $bad['to'] . ': ' . $bad['error']; + } + throw new Exception($this->lang('recipients_failed') . $errstr, self::STOP_CONTINUE); + } + + return true; + } + + /** + * Initiate a connection to an SMTP server. + * Returns false if the operation failed. + * + * @param array $options An array of options compatible with stream_context_create() + * + * @throws Exception + * + * @uses \PHPMailer\PHPMailer\SMTP + * + * @return bool + */ + public function smtpConnect($options = null) + { + if (null === $this->smtp) { + $this->smtp = $this->getSMTPInstance(); + } + + //If no options are provided, use whatever is set in the instance + if (null === $options) { + $options = $this->SMTPOptions; + } + + //Already connected? + if ($this->smtp->connected()) { + return true; + } + + $this->smtp->setTimeout($this->Timeout); + $this->smtp->setDebugLevel($this->SMTPDebug); + $this->smtp->setDebugOutput($this->Debugoutput); + $this->smtp->setVerp($this->do_verp); + $hosts = explode(';', $this->Host); + $lastexception = null; + + foreach ($hosts as $hostentry) { + $hostinfo = []; + if ( + !preg_match( + '/^(?:(ssl|tls):\/\/)?(.+?)(?::(\d+))?$/', + trim($hostentry), + $hostinfo + ) + ) { + $this->edebug($this->lang('invalid_hostentry') . ' ' . trim($hostentry)); + //Not a valid host entry + continue; + } + //$hostinfo[1]: optional ssl or tls prefix + //$hostinfo[2]: the hostname + //$hostinfo[3]: optional port number + //The host string prefix can temporarily override the current setting for SMTPSecure + //If it's not specified, the default value is used + + //Check the host name is a valid name or IP address before trying to use it + if (!static::isValidHost($hostinfo[2])) { + $this->edebug($this->lang('invalid_host') . ' ' . $hostinfo[2]); + continue; + } + $prefix = ''; + $secure = $this->SMTPSecure; + $tls = (static::ENCRYPTION_STARTTLS === $this->SMTPSecure); + if ('ssl' === $hostinfo[1] || ('' === $hostinfo[1] && static::ENCRYPTION_SMTPS === $this->SMTPSecure)) { + $prefix = 'ssl://'; + $tls = false; //Can't have SSL and TLS at the same time + $secure = static::ENCRYPTION_SMTPS; + } elseif ('tls' === $hostinfo[1]) { + $tls = true; + //TLS doesn't use a prefix + $secure = static::ENCRYPTION_STARTTLS; + } + //Do we need the OpenSSL extension? + $sslext = defined('OPENSSL_ALGO_SHA256'); + if (static::ENCRYPTION_STARTTLS === $secure || static::ENCRYPTION_SMTPS === $secure) { + //Check for an OpenSSL constant rather than using extension_loaded, which is sometimes disabled + if (!$sslext) { + throw new Exception($this->lang('extension_missing') . 'openssl', self::STOP_CRITICAL); + } + } + $host = $hostinfo[2]; + $port = $this->Port; + if ( + array_key_exists(3, $hostinfo) && + is_numeric($hostinfo[3]) && + $hostinfo[3] > 0 && + $hostinfo[3] < 65536 + ) { + $port = (int) $hostinfo[3]; + } + if ($this->smtp->connect($prefix . $host, $port, $this->Timeout, $options)) { + try { + if ($this->Helo) { + $hello = $this->Helo; + } else { + $hello = $this->serverHostname(); + } + $this->smtp->hello($hello); + //Automatically enable TLS encryption if: + //* it's not disabled + //* we have openssl extension + //* we are not already using SSL + //* the server offers STARTTLS + if ($this->SMTPAutoTLS && $sslext && 'ssl' !== $secure && $this->smtp->getServerExt('STARTTLS')) { + $tls = true; + } + if ($tls) { + if (!$this->smtp->startTLS()) { + $message = $this->getSmtpErrorMessage('connect_host'); + throw new Exception($message); + } + //We must resend EHLO after TLS negotiation + $this->smtp->hello($hello); + } + if ( + $this->SMTPAuth && !$this->smtp->authenticate( + $this->Username, + $this->Password, + $this->AuthType, + $this->oauth + ) + ) { + throw new Exception($this->lang('authenticate')); + } + + return true; + } catch (Exception $exc) { + $lastexception = $exc; + $this->edebug($exc->getMessage()); + //We must have connected, but then failed TLS or Auth, so close connection nicely + $this->smtp->quit(); + } + } + } + //If we get here, all connection attempts have failed, so close connection hard + $this->smtp->close(); + //As we've caught all exceptions, just report whatever the last one was + if ($this->exceptions && null !== $lastexception) { + throw $lastexception; + } elseif ($this->exceptions) { + // no exception was thrown, likely $this->smtp->connect() failed + $message = $this->getSmtpErrorMessage('connect_host'); + throw new Exception($message); + } + + return false; + } + + /** + * Close the active SMTP session if one exists. + */ + public function smtpClose() + { + if ((null !== $this->smtp) && $this->smtp->connected()) { + $this->smtp->quit(); + $this->smtp->close(); + } + } + + /** + * Set the language for error messages. + * The default language is English. + * + * @param string $langcode ISO 639-1 2-character language code (e.g. French is "fr") + * Optionally, the language code can be enhanced with a 4-character + * script annotation and/or a 2-character country annotation. + * @param string $lang_path Path to the language file directory, with trailing separator (slash) + * Do not set this from user input! + * + * @return bool Returns true if the requested language was loaded, false otherwise. + */ + public function setLanguage($langcode = 'en', $lang_path = '') + { + //Backwards compatibility for renamed language codes + $renamed_langcodes = [ + 'br' => 'pt_br', + 'cz' => 'cs', + 'dk' => 'da', + 'no' => 'nb', + 'se' => 'sv', + 'rs' => 'sr', + 'tg' => 'tl', + 'am' => 'hy', + ]; + + if (array_key_exists($langcode, $renamed_langcodes)) { + $langcode = $renamed_langcodes[$langcode]; + } + + //Define full set of translatable strings in English + $PHPMAILER_LANG = [ + 'authenticate' => 'SMTP Error: Could not authenticate.', + 'buggy_php' => 'Your version of PHP is affected by a bug that may result in corrupted messages.' . + ' To fix it, switch to sending using SMTP, disable the mail.add_x_header option in' . + ' your php.ini, switch to MacOS or Linux, or upgrade your PHP to version 7.0.17+ or 7.1.3+.', + 'connect_host' => 'SMTP Error: Could not connect to SMTP host.', + 'data_not_accepted' => 'SMTP Error: data not accepted.', + 'empty_message' => 'Message body empty', + 'encoding' => 'Unknown encoding: ', + 'execute' => 'Could not execute: ', + 'extension_missing' => 'Extension missing: ', + 'file_access' => 'Could not access file: ', + 'file_open' => 'File Error: Could not open file: ', + 'from_failed' => 'The following From address failed: ', + 'instantiate' => 'Could not instantiate mail function.', + 'invalid_address' => 'Invalid address: ', + 'invalid_header' => 'Invalid header name or value', + 'invalid_hostentry' => 'Invalid hostentry: ', + 'invalid_host' => 'Invalid host: ', + 'mailer_not_supported' => ' mailer is not supported.', + 'provide_address' => 'You must provide at least one recipient email address.', + 'recipients_failed' => 'SMTP Error: The following recipients failed: ', + 'signing' => 'Signing Error: ', + 'smtp_code' => 'SMTP code: ', + 'smtp_code_ex' => 'Additional SMTP info: ', + 'smtp_connect_failed' => 'SMTP connect() failed.', + 'smtp_detail' => 'Detail: ', + 'smtp_error' => 'SMTP server error: ', + 'variable_set' => 'Cannot set or reset variable: ', + ]; + if (empty($lang_path)) { + //Calculate an absolute path so it can work if CWD is not here + $lang_path = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'language' . DIRECTORY_SEPARATOR; + } + + //Validate $langcode + $foundlang = true; + $langcode = strtolower($langcode); + if ( + !preg_match('/^(?P[a-z]{2})(?P + + + + + +
data-multi-fingered="2" data-show-fps="false" data-show-log="false" data-show-fps-style="x:0,y:0,size:12,textColor:0xffffff,bgAlpha:0.9"> +
+ + + + + + + + + + + + + +
+ +
+ 首次加载时间较长……请耐心等待,如长时间无响应 请点此刷新 / 点击返回 +
+ 加载完成送:大量银两、超值礼包、白卡特权 +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/resource/eui_skins/ButtonSkin.exml b/resource/eui_skins/ButtonSkin.exml new file mode 100644 index 0000000..4d764d6 --- /dev/null +++ b/resource/eui_skins/ButtonSkin.exml @@ -0,0 +1,7 @@ + + + + + diff --git a/resource/eui_skins/HScrollBarSkin.exml b/resource/eui_skins/HScrollBarSkin.exml new file mode 100644 index 0000000..ca161ac --- /dev/null +++ b/resource/eui_skins/HScrollBarSkin.exml @@ -0,0 +1,5 @@ + + + + + diff --git a/resource/eui_skins/ProgressBarSkin.exml b/resource/eui_skins/ProgressBarSkin.exml new file mode 100644 index 0000000..7860cb9 --- /dev/null +++ b/resource/eui_skins/ProgressBarSkin.exml @@ -0,0 +1,9 @@ + + + + + + diff --git a/resource/eui_skins/ProgressBarSkin1.exml b/resource/eui_skins/ProgressBarSkin1.exml new file mode 100644 index 0000000..307f78b --- /dev/null +++ b/resource/eui_skins/ProgressBarSkin1.exml @@ -0,0 +1,9 @@ + + + + + + diff --git a/resource/eui_skins/RadioButtonSkin.exml b/resource/eui_skins/RadioButtonSkin.exml new file mode 100644 index 0000000..c64b764 --- /dev/null +++ b/resource/eui_skins/RadioButtonSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/resource/eui_skins/ScrollerSkin.exml b/resource/eui_skins/ScrollerSkin.exml new file mode 100644 index 0000000..9479a69 --- /dev/null +++ b/resource/eui_skins/ScrollerSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/ScrollerSkin1.exml b/resource/eui_skins/ScrollerSkin1.exml new file mode 100644 index 0000000..aceaae8 --- /dev/null +++ b/resource/eui_skins/ScrollerSkin1.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/TextInputSkin.exml b/resource/eui_skins/TextInputSkin.exml new file mode 100644 index 0000000..f999bed --- /dev/null +++ b/resource/eui_skins/TextInputSkin.exml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/VScrollBarSkin.exml b/resource/eui_skins/VScrollBarSkin.exml new file mode 100644 index 0000000..0d6d10d --- /dev/null +++ b/resource/eui_skins/VScrollBarSkin.exml @@ -0,0 +1,5 @@ + + + + + diff --git a/resource/eui_skins/VScrollBarSkin1.exml b/resource/eui_skins/VScrollBarSkin1.exml new file mode 100644 index 0000000..2141090 --- /dev/null +++ b/resource/eui_skins/VScrollBarSkin1.exml @@ -0,0 +1,5 @@ + + + + + diff --git a/resource/eui_skins/web/Btn0Skin.exml b/resource/eui_skins/web/Btn0Skin.exml new file mode 100644 index 0000000..e5bfac4 --- /dev/null +++ b/resource/eui_skins/web/Btn0Skin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/Btn11Skin.exml b/resource/eui_skins/web/Btn11Skin.exml new file mode 100644 index 0000000..02517aa --- /dev/null +++ b/resource/eui_skins/web/Btn11Skin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/Btn23Skin.exml b/resource/eui_skins/web/Btn23Skin.exml new file mode 100644 index 0000000..7d35d5a --- /dev/null +++ b/resource/eui_skins/web/Btn23Skin.exml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml b/resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml new file mode 100644 index 0000000..7044a2f --- /dev/null +++ b/resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CreateRole/CreateRole2Skin.exml b/resource/eui_skins/web/CreateRole/CreateRole2Skin.exml new file mode 100644 index 0000000..7500bbd --- /dev/null +++ b/resource/eui_skins/web/CreateRole/CreateRole2Skin.exml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml b/resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml new file mode 100644 index 0000000..5905ab3 --- /dev/null +++ b/resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml b/resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml new file mode 100644 index 0000000..007aaad --- /dev/null +++ b/resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml b/resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml new file mode 100644 index 0000000..aff98cd --- /dev/null +++ b/resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml b/resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml new file mode 100644 index 0000000..8c3a67f --- /dev/null +++ b/resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml b/resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml new file mode 100644 index 0000000..5b17bd7 --- /dev/null +++ b/resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml b/resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml new file mode 100644 index 0000000..e437ed3 --- /dev/null +++ b/resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml b/resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml new file mode 100644 index 0000000..e6df875 --- /dev/null +++ b/resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml b/resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml new file mode 100644 index 0000000..859f644 --- /dev/null +++ b/resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml b/resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml new file mode 100644 index 0000000..9c35b3f --- /dev/null +++ b/resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml b/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml new file mode 100644 index 0000000..1967c13 --- /dev/null +++ b/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml b/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml new file mode 100644 index 0000000..b57665c --- /dev/null +++ b/resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/GameFightSceneSkin.exml b/resource/eui_skins/web/GameFightSceneSkin.exml new file mode 100644 index 0000000..04864b5 --- /dev/null +++ b/resource/eui_skins/web/GameFightSceneSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml new file mode 100644 index 0000000..dc95034 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml new file mode 100644 index 0000000..40ac46d --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml new file mode 100644 index 0000000..4f17f3e --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml new file mode 100644 index 0000000..9022891 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml new file mode 100644 index 0000000..7836ba0 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml new file mode 100644 index 0000000..06f4af7 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml new file mode 100644 index 0000000..734e10d --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml new file mode 100644 index 0000000..d8158e7 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml b/resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml new file mode 100644 index 0000000..376f384 --- /dev/null +++ b/resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/UIView2Skin.exml b/resource/eui_skins/web/UIView2Skin.exml new file mode 100644 index 0000000..beabbba --- /dev/null +++ b/resource/eui_skins/web/UIView2Skin.exml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml b/resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml new file mode 100644 index 0000000..e0f5f5f --- /dev/null +++ b/resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml b/resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml new file mode 100644 index 0000000..ac1ca84 --- /dev/null +++ b/resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml b/resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml new file mode 100644 index 0000000..e0772e1 --- /dev/null +++ b/resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/AchievementItemViewSkin.exml b/resource/eui_skins/web/achievement/AchievementItemViewSkin.exml new file mode 100644 index 0000000..d418888 --- /dev/null +++ b/resource/eui_skins/web/achievement/AchievementItemViewSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/AchievementViewSkin.exml b/resource/eui_skins/web/achievement/AchievementViewSkin.exml new file mode 100644 index 0000000..fbaae95 --- /dev/null +++ b/resource/eui_skins/web/achievement/AchievementViewSkin.exml @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml b/resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml new file mode 100644 index 0000000..bf92298 --- /dev/null +++ b/resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml b/resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml new file mode 100644 index 0000000..7582aa6 --- /dev/null +++ b/resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/achievement/MedalItemViewSkin.exml b/resource/eui_skins/web/achievement/MedalItemViewSkin.exml new file mode 100644 index 0000000..64a0afc --- /dev/null +++ b/resource/eui_skins/web/achievement/MedalItemViewSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml b/resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml new file mode 100644 index 0000000..2674f61 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml b/resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml new file mode 100644 index 0000000..30a9c6a --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml b/resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml new file mode 100644 index 0000000..f0ed1b9 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml b/resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml new file mode 100644 index 0000000..f110b34 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml b/resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml new file mode 100644 index 0000000..9a7d933 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml b/resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml new file mode 100644 index 0000000..d021f46 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml b/resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml new file mode 100644 index 0000000..6626512 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityTabSkin.exml b/resource/eui_skins/web/activityCopies/ActivityTabSkin.exml new file mode 100644 index 0000000..15d60e2 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityTabSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml b/resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml new file mode 100644 index 0000000..8ef8068 --- /dev/null +++ b/resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml b/resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml new file mode 100644 index 0000000..60952ad --- /dev/null +++ b/resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml b/resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml new file mode 100644 index 0000000..dae9e91 --- /dev/null +++ b/resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml new file mode 100644 index 0000000..63debf0 --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml new file mode 100644 index 0000000..e631912 --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml new file mode 100644 index 0000000..69eabff --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml new file mode 100644 index 0000000..334768b --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml new file mode 100644 index 0000000..e9f3a81 --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml new file mode 100644 index 0000000..ffb7970 --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml b/resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml new file mode 100644 index 0000000..3a192fb --- /dev/null +++ b/resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml b/resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml new file mode 100644 index 0000000..6e9890b --- /dev/null +++ b/resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml b/resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml new file mode 100644 index 0000000..2c1d9b9 --- /dev/null +++ b/resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml b/resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml new file mode 100644 index 0000000..bb270bf --- /dev/null +++ b/resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml b/resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml new file mode 100644 index 0000000..a712bf0 --- /dev/null +++ b/resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml b/resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml new file mode 100644 index 0000000..5acce28 --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml b/resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml new file mode 100644 index 0000000..820964d --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml b/resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml new file mode 100644 index 0000000..c4ba06b --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml b/resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml new file mode 100644 index 0000000..abe437d --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityPaySkin.exml b/resource/eui_skins/web/activitypay/ActivityPaySkin.exml new file mode 100644 index 0000000..a557faf --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityPaySkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml b/resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml new file mode 100644 index 0000000..26d0d00 --- /dev/null +++ b/resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/activitypay/PayItemRenderSkin.exml b/resource/eui_skins/web/activitypay/PayItemRenderSkin.exml new file mode 100644 index 0000000..1e51042 --- /dev/null +++ b/resource/eui_skins/web/activitypay/PayItemRenderSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml new file mode 100644 index 0000000..f976d98 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml b/resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml new file mode 100644 index 0000000..fac2c89 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml new file mode 100644 index 0000000..97db7fa --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml b/resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml new file mode 100644 index 0000000..6990c9a --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml new file mode 100644 index 0000000..0690f07 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml new file mode 100644 index 0000000..e94145c --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml new file mode 100644 index 0000000..41d0bfa --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml new file mode 100644 index 0000000..e6a88e9 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml new file mode 100644 index 0000000..6654c6f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml new file mode 100644 index 0000000..45b88ac --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml new file mode 100644 index 0000000..4aec8af --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml b/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml new file mode 100644 index 0000000..3ebaa87 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml b/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml new file mode 100644 index 0000000..5c2655b --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml new file mode 100644 index 0000000..73e7aad --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml new file mode 100644 index 0000000..70f0411 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml new file mode 100644 index 0000000..6391dda --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml b/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml new file mode 100644 index 0000000..22ad5f1 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml new file mode 100644 index 0000000..358babe --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml new file mode 100644 index 0000000..fedfae2 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml new file mode 100644 index 0000000..e7a6213 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml new file mode 100644 index 0000000..d06383c --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml new file mode 100644 index 0000000..1e93a51 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml new file mode 100644 index 0000000..85f9045 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml new file mode 100644 index 0000000..7ad5215 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml new file mode 100644 index 0000000..d752cc9 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml new file mode 100644 index 0000000..cd85a65 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml new file mode 100644 index 0000000..c132a17 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml new file mode 100644 index 0000000..8f87566 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml new file mode 100644 index 0000000..2f457e8 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml new file mode 100644 index 0000000..883553b --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml new file mode 100644 index 0000000..be79c8f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml new file mode 100644 index 0000000..fade836 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml new file mode 100644 index 0000000..9da0f7b --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml new file mode 100644 index 0000000..5ed2de3 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml new file mode 100644 index 0000000..331adb6 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml new file mode 100644 index 0000000..7d84ee7 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml new file mode 100644 index 0000000..13ef4a9 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml new file mode 100644 index 0000000..4625d5d --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml new file mode 100644 index 0000000..d527865 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml new file mode 100644 index 0000000..74758a1 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml new file mode 100644 index 0000000..f9d3d19 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml new file mode 100644 index 0000000..05d6642 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml new file mode 100644 index 0000000..71fc1a1 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml new file mode 100644 index 0000000..4423369 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml new file mode 100644 index 0000000..f82f7ed --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml new file mode 100644 index 0000000..4648ee2 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml new file mode 100644 index 0000000..4c50e0a --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml new file mode 100644 index 0000000..7c98e9f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml new file mode 100644 index 0000000..c7c2184 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml new file mode 100644 index 0000000..6eeae1a --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml new file mode 100644 index 0000000..1972ffa --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml new file mode 100644 index 0000000..2a90e29 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml new file mode 100644 index 0000000..720d3a4 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml new file mode 100644 index 0000000..a4a5333 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml new file mode 100644 index 0000000..874ae73 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml new file mode 100644 index 0000000..86b04f2 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml new file mode 100644 index 0000000..2b70a95 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml new file mode 100644 index 0000000..5972043 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml new file mode 100644 index 0000000..1426625 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml new file mode 100644 index 0000000..e86b3ca --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml new file mode 100644 index 0000000..182f1fa --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml new file mode 100644 index 0000000..1104b13 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml new file mode 100644 index 0000000..54c890f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml new file mode 100644 index 0000000..45e9174 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml new file mode 100644 index 0000000..4c57eb1 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml new file mode 100644 index 0000000..a20e96c --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml new file mode 100644 index 0000000..1722b78 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml new file mode 100644 index 0000000..d7dcf07 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml new file mode 100644 index 0000000..5adcde7 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml new file mode 100644 index 0000000..90ca31d --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml new file mode 100644 index 0000000..2aa5b2f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml new file mode 100644 index 0000000..500e3a2 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml new file mode 100644 index 0000000..4990d1c --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml new file mode 100644 index 0000000..63b6a2a --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml new file mode 100644 index 0000000..15b2b0a --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml new file mode 100644 index 0000000..8fb0666 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml new file mode 100644 index 0000000..7cb3458 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml new file mode 100644 index 0000000..5c1d79d --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml new file mode 100644 index 0000000..864dccf --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml new file mode 100644 index 0000000..6928848 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml new file mode 100644 index 0000000..edd2e22 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml new file mode 100644 index 0000000..04c0473 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml new file mode 100644 index 0000000..42c80c7 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml new file mode 100644 index 0000000..38e2be8 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml new file mode 100644 index 0000000..d02317f --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml new file mode 100644 index 0000000..89fd1b4 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml new file mode 100644 index 0000000..5d21e1d --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml new file mode 100644 index 0000000..3714484 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml new file mode 100644 index 0000000..72f9703 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml new file mode 100644 index 0000000..6b7957c --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml b/resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml new file mode 100644 index 0000000..5f1b6e2 --- /dev/null +++ b/resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml b/resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml new file mode 100644 index 0000000..19dac9a --- /dev/null +++ b/resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagBatchUseSkin.exml b/resource/eui_skins/web/bag/BagBatchUseSkin.exml new file mode 100644 index 0000000..88bfb3b --- /dev/null +++ b/resource/eui_skins/web/bag/BagBatchUseSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagGoldChangeSkin.exml b/resource/eui_skins/web/bag/BagGoldChangeSkin.exml new file mode 100644 index 0000000..85445a5 --- /dev/null +++ b/resource/eui_skins/web/bag/BagGoldChangeSkin.exml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagItemSplitSkin.exml b/resource/eui_skins/web/bag/BagItemSplitSkin.exml new file mode 100644 index 0000000..242d696 --- /dev/null +++ b/resource/eui_skins/web/bag/BagItemSplitSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagRecycleSkin.exml b/resource/eui_skins/web/bag/BagRecycleSkin.exml new file mode 100644 index 0000000..bd2b920 --- /dev/null +++ b/resource/eui_skins/web/bag/BagRecycleSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagUpSkin.exml b/resource/eui_skins/web/bag/BagUpSkin.exml new file mode 100644 index 0000000..6958827 --- /dev/null +++ b/resource/eui_skins/web/bag/BagUpSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bag/BagViewSkin.exml b/resource/eui_skins/web/bag/BagViewSkin.exml new file mode 100644 index 0000000..79eb26c --- /dev/null +++ b/resource/eui_skins/web/bag/BagViewSkin.exml @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin.exml b/resource/eui_skins/web/bloodBarSkin.exml new file mode 100644 index 0000000..b9e7309 --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin2.exml b/resource/eui_skins/web/bloodBarSkin2.exml new file mode 100644 index 0000000..86e7d2f --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin2.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin3.exml b/resource/eui_skins/web/bloodBarSkin3.exml new file mode 100644 index 0000000..9188bc5 --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin3.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin4.exml b/resource/eui_skins/web/bloodBarSkin4.exml new file mode 100644 index 0000000..7e00f0f --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin4.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin5.exml b/resource/eui_skins/web/bloodBarSkin5.exml new file mode 100644 index 0000000..26562f1 --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin5.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodBarSkin6.exml b/resource/eui_skins/web/bloodBarSkin6.exml new file mode 100644 index 0000000..cff220f --- /dev/null +++ b/resource/eui_skins/web/bloodBarSkin6.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/bloodyelskin.exml b/resource/eui_skins/web/bloodyelskin.exml new file mode 100644 index 0000000..162b00d --- /dev/null +++ b/resource/eui_skins/web/bloodyelskin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/BossDropItemSkin.exml b/resource/eui_skins/web/boss/BossDropItemSkin.exml new file mode 100644 index 0000000..99e773f --- /dev/null +++ b/resource/eui_skins/web/boss/BossDropItemSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/BossItemSkin.exml b/resource/eui_skins/web/boss/BossItemSkin.exml new file mode 100644 index 0000000..2f13eb1 --- /dev/null +++ b/resource/eui_skins/web/boss/BossItemSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/BossSkin.exml b/resource/eui_skins/web/boss/BossSkin.exml new file mode 100644 index 0000000..05267fa --- /dev/null +++ b/resource/eui_skins/web/boss/BossSkin.exml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml b/resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml new file mode 100644 index 0000000..b188bc2 --- /dev/null +++ b/resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml b/resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml new file mode 100644 index 0000000..c8f42e3 --- /dev/null +++ b/resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml b/resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml new file mode 100644 index 0000000..c5ad007 --- /dev/null +++ b/resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/MagicBossItemSkin.exml b/resource/eui_skins/web/boss/MagicBossItemSkin.exml new file mode 100644 index 0000000..8fc84cd --- /dev/null +++ b/resource/eui_skins/web/boss/MagicBossItemSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/MagicBossSkin.exml b/resource/eui_skins/web/boss/MagicBossSkin.exml new file mode 100644 index 0000000..d60ec79 --- /dev/null +++ b/resource/eui_skins/web/boss/MagicBossSkin.exml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/boss/PersonalBossSkin.exml b/resource/eui_skins/web/boss/PersonalBossSkin.exml new file mode 100644 index 0000000..a85f1c6 --- /dev/null +++ b/resource/eui_skins/web/boss/PersonalBossSkin.exml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/caution/CautionViewSkin.exml b/resource/eui_skins/web/caution/CautionViewSkin.exml new file mode 100644 index 0000000..3e39e86 --- /dev/null +++ b/resource/eui_skins/web/caution/CautionViewSkin.exml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml b/resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml new file mode 100644 index 0000000..db4f4b5 --- /dev/null +++ b/resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml b/resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml new file mode 100644 index 0000000..e6cf9e0 --- /dev/null +++ b/resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/char/CharSkin.exml b/resource/eui_skins/web/char/CharSkin.exml new file mode 100644 index 0000000..10cbd4f --- /dev/null +++ b/resource/eui_skins/web/char/CharSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatMenuSkin.exml b/resource/eui_skins/web/chat/ChatMenuSkin.exml new file mode 100644 index 0000000..c7c00af --- /dev/null +++ b/resource/eui_skins/web/chat/ChatMenuSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml b/resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml new file mode 100644 index 0000000..5c288e5 --- /dev/null +++ b/resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatRuleButton.exml b/resource/eui_skins/web/chat/ChatRuleButton.exml new file mode 100644 index 0000000..0aed6ba --- /dev/null +++ b/resource/eui_skins/web/chat/ChatRuleButton.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatSelectArrItem.exml b/resource/eui_skins/web/chat/ChatSelectArrItem.exml new file mode 100644 index 0000000..524952b --- /dev/null +++ b/resource/eui_skins/web/chat/ChatSelectArrItem.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml b/resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml new file mode 100644 index 0000000..4c9bda8 --- /dev/null +++ b/resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatSkin.exml b/resource/eui_skins/web/chat/ChatSkin.exml new file mode 100644 index 0000000..d416b9c --- /dev/null +++ b/resource/eui_skins/web/chat/ChatSkin.exml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatWinMenuSkin.exml b/resource/eui_skins/web/chat/ChatWinMenuSkin.exml new file mode 100644 index 0000000..0436eba --- /dev/null +++ b/resource/eui_skins/web/chat/ChatWinMenuSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/ChatWinSkin.exml b/resource/eui_skins/web/chat/ChatWinSkin.exml new file mode 100644 index 0000000..29f95f8 --- /dev/null +++ b/resource/eui_skins/web/chat/ChatWinSkin.exml @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/chatListItemSkin.exml b/resource/eui_skins/web/chat/chatListItemSkin.exml new file mode 100644 index 0000000..36daac2 --- /dev/null +++ b/resource/eui_skins/web/chat/chatListItemSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/chat/chatListWinItemSkin.exml b/resource/eui_skins/web/chat/chatListWinItemSkin.exml new file mode 100644 index 0000000..71beafa --- /dev/null +++ b/resource/eui_skins/web/chat/chatListWinItemSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ActWleFareTabSkin.exml b/resource/eui_skins/web/common/ActWleFareTabSkin.exml new file mode 100644 index 0000000..88bfe44 --- /dev/null +++ b/resource/eui_skins/web/common/ActWleFareTabSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ActivityCommonViewSkin.exml b/resource/eui_skins/web/common/ActivityCommonViewSkin.exml new file mode 100644 index 0000000..89b93d4 --- /dev/null +++ b/resource/eui_skins/web/common/ActivityCommonViewSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn10Skin.exml b/resource/eui_skins/web/common/Btn10Skin.exml new file mode 100644 index 0000000..0c03987 --- /dev/null +++ b/resource/eui_skins/web/common/Btn10Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn12Skin.exml b/resource/eui_skins/web/common/Btn12Skin.exml new file mode 100644 index 0000000..4e246f3 --- /dev/null +++ b/resource/eui_skins/web/common/Btn12Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn13Skin.exml b/resource/eui_skins/web/common/Btn13Skin.exml new file mode 100644 index 0000000..648196a --- /dev/null +++ b/resource/eui_skins/web/common/Btn13Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn14Skin.exml b/resource/eui_skins/web/common/Btn14Skin.exml new file mode 100644 index 0000000..5296e1a --- /dev/null +++ b/resource/eui_skins/web/common/Btn14Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn15Skin.exml b/resource/eui_skins/web/common/Btn15Skin.exml new file mode 100644 index 0000000..c0ffa80 --- /dev/null +++ b/resource/eui_skins/web/common/Btn15Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn16Skin.exml b/resource/eui_skins/web/common/Btn16Skin.exml new file mode 100644 index 0000000..ea519e8 --- /dev/null +++ b/resource/eui_skins/web/common/Btn16Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn17Skin.exml b/resource/eui_skins/web/common/Btn17Skin.exml new file mode 100644 index 0000000..6800aa8 --- /dev/null +++ b/resource/eui_skins/web/common/Btn17Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn18Skin.exml b/resource/eui_skins/web/common/Btn18Skin.exml new file mode 100644 index 0000000..6b95334 --- /dev/null +++ b/resource/eui_skins/web/common/Btn18Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn19Skin.exml b/resource/eui_skins/web/common/Btn19Skin.exml new file mode 100644 index 0000000..60cd87f --- /dev/null +++ b/resource/eui_skins/web/common/Btn19Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn1Skin.exml b/resource/eui_skins/web/common/Btn1Skin.exml new file mode 100644 index 0000000..c07d8df --- /dev/null +++ b/resource/eui_skins/web/common/Btn1Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn20Skin.exml b/resource/eui_skins/web/common/Btn20Skin.exml new file mode 100644 index 0000000..80dfcbe --- /dev/null +++ b/resource/eui_skins/web/common/Btn20Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn21Skin.exml b/resource/eui_skins/web/common/Btn21Skin.exml new file mode 100644 index 0000000..0496d2f --- /dev/null +++ b/resource/eui_skins/web/common/Btn21Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn22Skin.exml b/resource/eui_skins/web/common/Btn22Skin.exml new file mode 100644 index 0000000..e6bdbc8 --- /dev/null +++ b/resource/eui_skins/web/common/Btn22Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn24Skin.exml b/resource/eui_skins/web/common/Btn24Skin.exml new file mode 100644 index 0000000..e335f6a --- /dev/null +++ b/resource/eui_skins/web/common/Btn24Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn25Skin.exml b/resource/eui_skins/web/common/Btn25Skin.exml new file mode 100644 index 0000000..a89fb4e --- /dev/null +++ b/resource/eui_skins/web/common/Btn25Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn26Skin.exml b/resource/eui_skins/web/common/Btn26Skin.exml new file mode 100644 index 0000000..9ab98ef --- /dev/null +++ b/resource/eui_skins/web/common/Btn26Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn2Skin.exml b/resource/eui_skins/web/common/Btn2Skin.exml new file mode 100644 index 0000000..02516a6 --- /dev/null +++ b/resource/eui_skins/web/common/Btn2Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn30Skin.exml b/resource/eui_skins/web/common/Btn30Skin.exml new file mode 100644 index 0000000..f72adb2 --- /dev/null +++ b/resource/eui_skins/web/common/Btn30Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn31Skin.exml b/resource/eui_skins/web/common/Btn31Skin.exml new file mode 100644 index 0000000..0bd4a0a --- /dev/null +++ b/resource/eui_skins/web/common/Btn31Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn32Skin.exml b/resource/eui_skins/web/common/Btn32Skin.exml new file mode 100644 index 0000000..26657bd --- /dev/null +++ b/resource/eui_skins/web/common/Btn32Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn3Skin.exml b/resource/eui_skins/web/common/Btn3Skin.exml new file mode 100644 index 0000000..1dd2455 --- /dev/null +++ b/resource/eui_skins/web/common/Btn3Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn4Skin.exml b/resource/eui_skins/web/common/Btn4Skin.exml new file mode 100644 index 0000000..c47b665 --- /dev/null +++ b/resource/eui_skins/web/common/Btn4Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn5Skin.exml b/resource/eui_skins/web/common/Btn5Skin.exml new file mode 100644 index 0000000..c0f2e2a --- /dev/null +++ b/resource/eui_skins/web/common/Btn5Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn6Skin.exml b/resource/eui_skins/web/common/Btn6Skin.exml new file mode 100644 index 0000000..a489622 --- /dev/null +++ b/resource/eui_skins/web/common/Btn6Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn7Skin.exml b/resource/eui_skins/web/common/Btn7Skin.exml new file mode 100644 index 0000000..79add7d --- /dev/null +++ b/resource/eui_skins/web/common/Btn7Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn8Skin.exml b/resource/eui_skins/web/common/Btn8Skin.exml new file mode 100644 index 0000000..a60b9d3 --- /dev/null +++ b/resource/eui_skins/web/common/Btn8Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/Btn9Skin.exml b/resource/eui_skins/web/common/Btn9Skin.exml new file mode 100644 index 0000000..5a78948 --- /dev/null +++ b/resource/eui_skins/web/common/Btn9Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/BtnResurrectionSkin.exml b/resource/eui_skins/web/common/BtnResurrectionSkin.exml new file mode 100644 index 0000000..03af5e3 --- /dev/null +++ b/resource/eui_skins/web/common/BtnResurrectionSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/BtnTabSkin.exml b/resource/eui_skins/web/common/BtnTabSkin.exml new file mode 100644 index 0000000..d70ee52 --- /dev/null +++ b/resource/eui_skins/web/common/BtnTabSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/BtnTabSkin1.exml b/resource/eui_skins/web/common/BtnTabSkin1.exml new file mode 100644 index 0000000..fed68a2 --- /dev/null +++ b/resource/eui_skins/web/common/BtnTabSkin1.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/BtnTabSkin2.exml b/resource/eui_skins/web/common/BtnTabSkin2.exml new file mode 100644 index 0000000..65a323a --- /dev/null +++ b/resource/eui_skins/web/common/BtnTabSkin2.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ButtonAttrSkin.exml b/resource/eui_skins/web/common/ButtonAttrSkin.exml new file mode 100644 index 0000000..5151412 --- /dev/null +++ b/resource/eui_skins/web/common/ButtonAttrSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ButtonCloseSkin.exml b/resource/eui_skins/web/common/ButtonCloseSkin.exml new file mode 100644 index 0000000..ef568b8 --- /dev/null +++ b/resource/eui_skins/web/common/ButtonCloseSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ButtonReturnSkin.exml b/resource/eui_skins/web/common/ButtonReturnSkin.exml new file mode 100644 index 0000000..ac2702e --- /dev/null +++ b/resource/eui_skins/web/common/ButtonReturnSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ButtonUISkin.exml b/resource/eui_skins/web/common/ButtonUISkin.exml new file mode 100644 index 0000000..90626a2 --- /dev/null +++ b/resource/eui_skins/web/common/ButtonUISkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml b/resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml new file mode 100644 index 0000000..29820b7 --- /dev/null +++ b/resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ChatBtnMenuSkin.exml b/resource/eui_skins/web/common/ChatBtnMenuSkin.exml new file mode 100644 index 0000000..31d8968 --- /dev/null +++ b/resource/eui_skins/web/common/ChatBtnMenuSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CheckBox2.exml b/resource/eui_skins/web/common/CheckBox2.exml new file mode 100644 index 0000000..8a6827c --- /dev/null +++ b/resource/eui_skins/web/common/CheckBox2.exml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CheckBox3.exml b/resource/eui_skins/web/common/CheckBox3.exml new file mode 100644 index 0000000..7807520 --- /dev/null +++ b/resource/eui_skins/web/common/CheckBox3.exml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CircleTipsWinSkin.exml b/resource/eui_skins/web/common/CircleTipsWinSkin.exml new file mode 100644 index 0000000..f213c31 --- /dev/null +++ b/resource/eui_skins/web/common/CircleTipsWinSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CloseButtonSkin.exml b/resource/eui_skins/web/common/CloseButtonSkin.exml new file mode 100644 index 0000000..5a0d5ff --- /dev/null +++ b/resource/eui_skins/web/common/CloseButtonSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonBtnSkin.exml b/resource/eui_skins/web/common/CommonBtnSkin.exml new file mode 100644 index 0000000..05d04a8 --- /dev/null +++ b/resource/eui_skins/web/common/CommonBtnSkin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonDialogSkin.exml b/resource/eui_skins/web/common/CommonDialogSkin.exml new file mode 100644 index 0000000..5a31bb4 --- /dev/null +++ b/resource/eui_skins/web/common/CommonDialogSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml b/resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml new file mode 100644 index 0000000..25c71c1 --- /dev/null +++ b/resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonGiftShowSKin.exml b/resource/eui_skins/web/common/CommonGiftShowSKin.exml new file mode 100644 index 0000000..3b7fa09 --- /dev/null +++ b/resource/eui_skins/web/common/CommonGiftShowSKin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnItemSkin.exml b/resource/eui_skins/web/common/CommonTarBtnItemSkin.exml new file mode 100644 index 0000000..e3541c4 --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml b/resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml new file mode 100644 index 0000000..45ec55e --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml b/resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml new file mode 100644 index 0000000..56ce127 --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml b/resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml new file mode 100644 index 0000000..3e5efbd --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnWinSkin.exml b/resource/eui_skins/web/common/CommonTarBtnWinSkin.exml new file mode 100644 index 0000000..b330b22 --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnWinSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml b/resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml new file mode 100644 index 0000000..63947ca --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml b/resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml new file mode 100644 index 0000000..3f4c637 --- /dev/null +++ b/resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/CommonViewSkin.exml b/resource/eui_skins/web/common/CommonViewSkin.exml new file mode 100644 index 0000000..9caa40f --- /dev/null +++ b/resource/eui_skins/web/common/CommonViewSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/HSlider1Skin.exml b/resource/eui_skins/web/common/HSlider1Skin.exml new file mode 100644 index 0000000..ba08fc2 --- /dev/null +++ b/resource/eui_skins/web/common/HSlider1Skin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ImageBaseSkin.exml b/resource/eui_skins/web/common/ImageBaseSkin.exml new file mode 100644 index 0000000..9301ca3 --- /dev/null +++ b/resource/eui_skins/web/common/ImageBaseSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemBaseSkin.exml b/resource/eui_skins/web/common/ItemBaseSkin.exml new file mode 100644 index 0000000..d924365 --- /dev/null +++ b/resource/eui_skins/web/common/ItemBaseSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemBaseSkin2.exml b/resource/eui_skins/web/common/ItemBaseSkin2.exml new file mode 100644 index 0000000..88507e9 --- /dev/null +++ b/resource/eui_skins/web/common/ItemBaseSkin2.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemSelectBaseSkin.exml b/resource/eui_skins/web/common/ItemSelectBaseSkin.exml new file mode 100644 index 0000000..ae7669c --- /dev/null +++ b/resource/eui_skins/web/common/ItemSelectBaseSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemSlotSkin.exml b/resource/eui_skins/web/common/ItemSlotSkin.exml new file mode 100644 index 0000000..801cdbf --- /dev/null +++ b/resource/eui_skins/web/common/ItemSlotSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemSlotSkin2.exml b/resource/eui_skins/web/common/ItemSlotSkin2.exml new file mode 100644 index 0000000..5416c3e --- /dev/null +++ b/resource/eui_skins/web/common/ItemSlotSkin2.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ItemSlotSkin3.exml b/resource/eui_skins/web/common/ItemSlotSkin3.exml new file mode 100644 index 0000000..437a9b4 --- /dev/null +++ b/resource/eui_skins/web/common/ItemSlotSkin3.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn2Skin.exml b/resource/eui_skins/web/common/MainBtn2Skin.exml new file mode 100644 index 0000000..cf931be --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn2Skin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn3Skin.exml b/resource/eui_skins/web/common/MainBtn3Skin.exml new file mode 100644 index 0000000..cb2f357 --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn3Skin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn4Skin.exml b/resource/eui_skins/web/common/MainBtn4Skin.exml new file mode 100644 index 0000000..c4cba94 --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn4Skin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn5Skin.exml b/resource/eui_skins/web/common/MainBtn5Skin.exml new file mode 100644 index 0000000..59d439c --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn5Skin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn6Skin.exml b/resource/eui_skins/web/common/MainBtn6Skin.exml new file mode 100644 index 0000000..04273b8 --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn6Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn7Skin.exml b/resource/eui_skins/web/common/MainBtn7Skin.exml new file mode 100644 index 0000000..334ca7c --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn7Skin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtn8Skin.exml b/resource/eui_skins/web/common/MainBtn8Skin.exml new file mode 100644 index 0000000..2254b07 --- /dev/null +++ b/resource/eui_skins/web/common/MainBtn8Skin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/MainBtnSkin.exml b/resource/eui_skins/web/common/MainBtnSkin.exml new file mode 100644 index 0000000..af336d7 --- /dev/null +++ b/resource/eui_skins/web/common/MainBtnSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/RedDotSkin.exml b/resource/eui_skins/web/common/RedDotSkin.exml new file mode 100644 index 0000000..085d628 --- /dev/null +++ b/resource/eui_skins/web/common/RedDotSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/RuleButton.exml b/resource/eui_skins/web/common/RuleButton.exml new file mode 100644 index 0000000..d3925de --- /dev/null +++ b/resource/eui_skins/web/common/RuleButton.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/SelectInputSkin.exml b/resource/eui_skins/web/common/SelectInputSkin.exml new file mode 100644 index 0000000..b73d449 --- /dev/null +++ b/resource/eui_skins/web/common/SelectInputSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml b/resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml new file mode 100644 index 0000000..5538bf4 --- /dev/null +++ b/resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/UIViewBgWinSkin.exml b/resource/eui_skins/web/common/UIViewBgWinSkin.exml new file mode 100644 index 0000000..983f21b --- /dev/null +++ b/resource/eui_skins/web/common/UIViewBgWinSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/UIViewFrameSkin.exml b/resource/eui_skins/web/common/UIViewFrameSkin.exml new file mode 100644 index 0000000..6b92ec7 --- /dev/null +++ b/resource/eui_skins/web/common/UIViewFrameSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/UIViewFrameSkin2.exml b/resource/eui_skins/web/common/UIViewFrameSkin2.exml new file mode 100644 index 0000000..52ff9e0 --- /dev/null +++ b/resource/eui_skins/web/common/UIViewFrameSkin2.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/VersionUpdateSkin.exml b/resource/eui_skins/web/common/VersionUpdateSkin.exml new file mode 100644 index 0000000..d5cd61b --- /dev/null +++ b/resource/eui_skins/web/common/VersionUpdateSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin1Skin.exml b/resource/eui_skins/web/common/ViewBgWin1Skin.exml new file mode 100644 index 0000000..9e73870 --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin1Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin2Skin.exml b/resource/eui_skins/web/common/ViewBgWin2Skin.exml new file mode 100644 index 0000000..d93cfee --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin2Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin3Skin.exml b/resource/eui_skins/web/common/ViewBgWin3Skin.exml new file mode 100644 index 0000000..8178b2d --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin3Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin4Skin.exml b/resource/eui_skins/web/common/ViewBgWin4Skin.exml new file mode 100644 index 0000000..7c2371c --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin4Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin5Skin.exml b/resource/eui_skins/web/common/ViewBgWin5Skin.exml new file mode 100644 index 0000000..945c8ef --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin5Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin6Skin.exml b/resource/eui_skins/web/common/ViewBgWin6Skin.exml new file mode 100644 index 0000000..a7dcee5 --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin6Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWin7Skin.exml b/resource/eui_skins/web/common/ViewBgWin7Skin.exml new file mode 100644 index 0000000..40fc7f6 --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWin7Skin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/ViewBgWinSkin.exml b/resource/eui_skins/web/common/ViewBgWinSkin.exml new file mode 100644 index 0000000..2648bbf --- /dev/null +++ b/resource/eui_skins/web/common/ViewBgWinSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml b/resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml new file mode 100644 index 0000000..9c76597 --- /dev/null +++ b/resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/bar1Skin.exml b/resource/eui_skins/web/common/bar1Skin.exml new file mode 100644 index 0000000..4ff916b --- /dev/null +++ b/resource/eui_skins/web/common/bar1Skin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/bar2Skin.exml b/resource/eui_skins/web/common/bar2Skin.exml new file mode 100644 index 0000000..c949e1f --- /dev/null +++ b/resource/eui_skins/web/common/bar2Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/bar3Skin.exml b/resource/eui_skins/web/common/bar3Skin.exml new file mode 100644 index 0000000..3f0a52d --- /dev/null +++ b/resource/eui_skins/web/common/bar3Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/bar4Skin.exml b/resource/eui_skins/web/common/bar4Skin.exml new file mode 100644 index 0000000..f238c0c --- /dev/null +++ b/resource/eui_skins/web/common/bar4Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/btn11Skin.exml b/resource/eui_skins/web/common/btn11Skin.exml new file mode 100644 index 0000000..7047f22 --- /dev/null +++ b/resource/eui_skins/web/common/btn11Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/chatBtnSkin.exml b/resource/eui_skins/web/common/chatBtnSkin.exml new file mode 100644 index 0000000..6c3d5d8 --- /dev/null +++ b/resource/eui_skins/web/common/chatBtnSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml b/resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml new file mode 100644 index 0000000..708275e --- /dev/null +++ b/resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml b/resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml new file mode 100644 index 0000000..274791f --- /dev/null +++ b/resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml b/resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml new file mode 100644 index 0000000..e08a59a --- /dev/null +++ b/resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml b/resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml new file mode 100644 index 0000000..662938b --- /dev/null +++ b/resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/moneyPanelSkin.exml b/resource/eui_skins/web/common/moneyPanelSkin.exml new file mode 100644 index 0000000..240a477 --- /dev/null +++ b/resource/eui_skins/web/common/moneyPanelSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml b/resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml new file mode 100644 index 0000000..bcd7723 --- /dev/null +++ b/resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml b/resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml new file mode 100644 index 0000000..b93c487 --- /dev/null +++ b/resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml b/resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml new file mode 100644 index 0000000..f8fbeab --- /dev/null +++ b/resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml new file mode 100644 index 0000000..3074505 --- /dev/null +++ b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml new file mode 100644 index 0000000..434f5e9 --- /dev/null +++ b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml new file mode 100644 index 0000000..db95480 --- /dev/null +++ b/resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml b/resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml new file mode 100644 index 0000000..3d6e0ff --- /dev/null +++ b/resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml b/resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml new file mode 100644 index 0000000..2f5262d --- /dev/null +++ b/resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml b/resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml new file mode 100644 index 0000000..2a5d377 --- /dev/null +++ b/resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/donationRank/DonationRankItemSkin.exml b/resource/eui_skins/web/donationRank/DonationRankItemSkin.exml new file mode 100644 index 0000000..de99851 --- /dev/null +++ b/resource/eui_skins/web/donationRank/DonationRankItemSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/donationRank/DonationRankWinSkin.exml b/resource/eui_skins/web/donationRank/DonationRankWinSkin.exml new file mode 100644 index 0000000..a7a33c3 --- /dev/null +++ b/resource/eui_skins/web/donationRank/DonationRankWinSkin.exml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml b/resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml new file mode 100644 index 0000000..586bf8a --- /dev/null +++ b/resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml b/resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml new file mode 100644 index 0000000..cba51f9 --- /dev/null +++ b/resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/flyshoes/FlyShoesSkin.exml b/resource/eui_skins/web/flyshoes/FlyShoesSkin.exml new file mode 100644 index 0000000..70d9abc --- /dev/null +++ b/resource/eui_skins/web/flyshoes/FlyShoesSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRecordItemSkin.exml b/resource/eui_skins/web/forge/ForgeRecordItemSkin.exml new file mode 100644 index 0000000..12ebeb2 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRecordItemSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRecordSkin.exml b/resource/eui_skins/web/forge/ForgeRecordSkin.exml new file mode 100644 index 0000000..3dde51c --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRecordSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml b/resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml new file mode 100644 index 0000000..d87d202 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml b/resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml new file mode 100644 index 0000000..a1a9d4a --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml new file mode 100644 index 0000000..b99dafe --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml new file mode 100644 index 0000000..98d59bc --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml new file mode 100644 index 0000000..79d57a1 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml new file mode 100644 index 0000000..f314bfd --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml b/resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml new file mode 100644 index 0000000..ac23238 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml new file mode 100644 index 0000000..58e9039 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRefiningSkin.exml b/resource/eui_skins/web/forge/ForgeRefiningSkin.exml new file mode 100644 index 0000000..f269eb6 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRefiningSkin.exml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeRewardItemSkin.exml b/resource/eui_skins/web/forge/ForgeRewardItemSkin.exml new file mode 100644 index 0000000..9b9732b --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeRewardItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml b/resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml new file mode 100644 index 0000000..6f0337d --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml b/resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml new file mode 100644 index 0000000..6fe0c0c --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeUpStarSkin.exml b/resource/eui_skins/web/forge/ForgeUpStarSkin.exml new file mode 100644 index 0000000..f8b5a15 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeUpStarSkin.exml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeViewSkin.exml b/resource/eui_skins/web/forge/ForgeViewSkin.exml new file mode 100644 index 0000000..9e9f970 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeViewSkin.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/ForgeWinSkin.exml b/resource/eui_skins/web/forge/ForgeWinSkin.exml new file mode 100644 index 0000000..cad0fe6 --- /dev/null +++ b/resource/eui_skins/web/forge/ForgeWinSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml b/resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml new file mode 100644 index 0000000..ef2c8f9 --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisItem2Skin.exml b/resource/eui_skins/web/forge/SynthesisItem2Skin.exml new file mode 100644 index 0000000..7720431 --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisItem2Skin.exml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisItemSkin.exml b/resource/eui_skins/web/forge/SynthesisItemSkin.exml new file mode 100644 index 0000000..e5f609b --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisItemSkin.exml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisTab2Skin.exml b/resource/eui_skins/web/forge/SynthesisTab2Skin.exml new file mode 100644 index 0000000..9289310 --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisTab2Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisTabSkin.exml b/resource/eui_skins/web/forge/SynthesisTabSkin.exml new file mode 100644 index 0000000..d284e48 --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisTabSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/forge/SynthesisViewSkin.exml b/resource/eui_skins/web/forge/SynthesisViewSkin.exml new file mode 100644 index 0000000..5870671 --- /dev/null +++ b/resource/eui_skins/web/forge/SynthesisViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendAddViewSkin.exml b/resource/eui_skins/web/friend/FriendAddViewSkin.exml new file mode 100644 index 0000000..1a2ebbc --- /dev/null +++ b/resource/eui_skins/web/friend/FriendAddViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendBlackListItemSkin.exml b/resource/eui_skins/web/friend/FriendBlackListItemSkin.exml new file mode 100644 index 0000000..64d3646 --- /dev/null +++ b/resource/eui_skins/web/friend/FriendBlackListItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendColorBtnSkin.exml b/resource/eui_skins/web/friend/FriendColorBtnSkin.exml new file mode 100644 index 0000000..475a84f --- /dev/null +++ b/resource/eui_skins/web/friend/FriendColorBtnSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml b/resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml new file mode 100644 index 0000000..b50708a --- /dev/null +++ b/resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendCommonItemSkin.exml b/resource/eui_skins/web/friend/FriendCommonItemSkin.exml new file mode 100644 index 0000000..2b0544f --- /dev/null +++ b/resource/eui_skins/web/friend/FriendCommonItemSkin.exml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml b/resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml new file mode 100644 index 0000000..fd5c63e --- /dev/null +++ b/resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml b/resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml new file mode 100644 index 0000000..ec28f45 --- /dev/null +++ b/resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendHederSkin.exml b/resource/eui_skins/web/friend/FriendHederSkin.exml new file mode 100644 index 0000000..5c56775 --- /dev/null +++ b/resource/eui_skins/web/friend/FriendHederSkin.exml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendQQItemSkin.exml b/resource/eui_skins/web/friend/FriendQQItemSkin.exml new file mode 100644 index 0000000..215cdfe --- /dev/null +++ b/resource/eui_skins/web/friend/FriendQQItemSkin.exml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendViewPageSkin.exml b/resource/eui_skins/web/friend/FriendViewPageSkin.exml new file mode 100644 index 0000000..f3b7b0b --- /dev/null +++ b/resource/eui_skins/web/friend/FriendViewPageSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/friend/FriendViewSkin.exml b/resource/eui_skins/web/friend/FriendViewSkin.exml new file mode 100644 index 0000000..a28dd00 --- /dev/null +++ b/resource/eui_skins/web/friend/FriendViewSkin.exml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenRankItemSkin.exml b/resource/eui_skins/web/fuben/FubenRankItemSkin.exml new file mode 100644 index 0000000..8ccb527 --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenRankItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenRankPagSkin.exml b/resource/eui_skins/web/fuben/FubenRankPagSkin.exml new file mode 100644 index 0000000..bea4bed --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenRankPagSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenRankSkin.exml b/resource/eui_skins/web/fuben/FubenRankSkin.exml new file mode 100644 index 0000000..8ac3ea5 --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenRankSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenScoreItemSkin.exml b/resource/eui_skins/web/fuben/FubenScoreItemSkin.exml new file mode 100644 index 0000000..311aad2 --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenScoreItemSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenScoreSkin.exml b/resource/eui_skins/web/fuben/FubenScoreSkin.exml new file mode 100644 index 0000000..b5bbff0 --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenScoreSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/FubenSkin.exml b/resource/eui_skins/web/fuben/FubenSkin.exml new file mode 100644 index 0000000..1db035e --- /dev/null +++ b/resource/eui_skins/web/fuben/FubenSkin.exml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/LabelSkinSkin.exml b/resource/eui_skins/web/fuben/LabelSkinSkin.exml new file mode 100644 index 0000000..edaf65b --- /dev/null +++ b/resource/eui_skins/web/fuben/LabelSkinSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/fuben/debugViewSkin.exml b/resource/eui_skins/web/fuben/debugViewSkin.exml new file mode 100644 index 0000000..9a91b08 --- /dev/null +++ b/resource/eui_skins/web/fuben/debugViewSkin.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/ghost/GhostAutoViewSkin.exml b/resource/eui_skins/web/ghost/GhostAutoViewSkin.exml new file mode 100644 index 0000000..7b9abc1 --- /dev/null +++ b/resource/eui_skins/web/ghost/GhostAutoViewSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/ghost/GhostSkin.exml b/resource/eui_skins/web/ghost/GhostSkin.exml new file mode 100644 index 0000000..cabd903 --- /dev/null +++ b/resource/eui_skins/web/ghost/GhostSkin.exml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/ghost/ResonateItem2Skin.exml b/resource/eui_skins/web/ghost/ResonateItem2Skin.exml new file mode 100644 index 0000000..7445dd4 --- /dev/null +++ b/resource/eui_skins/web/ghost/ResonateItem2Skin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/ghost/ResonateItemSkin.exml b/resource/eui_skins/web/ghost/ResonateItemSkin.exml new file mode 100644 index 0000000..9ee8e48 --- /dev/null +++ b/resource/eui_skins/web/ghost/ResonateItemSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/ghost/RoleGhostSkin.exml b/resource/eui_skins/web/ghost/RoleGhostSkin.exml new file mode 100644 index 0000000..b6216ee --- /dev/null +++ b/resource/eui_skins/web/ghost/RoleGhostSkin.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/gonggao/GongGaoWinSkin.exml b/resource/eui_skins/web/gonggao/GongGaoWinSkin.exml new file mode 100644 index 0000000..5cc3cf2 --- /dev/null +++ b/resource/eui_skins/web/gonggao/GongGaoWinSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml b/resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml new file mode 100644 index 0000000..7467bc7 --- /dev/null +++ b/resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/growway/GrowWayRendererSkin.exml b/resource/eui_skins/web/growway/GrowWayRendererSkin.exml new file mode 100644 index 0000000..8faef64 --- /dev/null +++ b/resource/eui_skins/web/growway/GrowWayRendererSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/growway/GrowWaySkin.exml b/resource/eui_skins/web/growway/GrowWaySkin.exml new file mode 100644 index 0000000..382b79c --- /dev/null +++ b/resource/eui_skins/web/growway/GrowWaySkin.exml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/CreatGuildViewSkin.exml b/resource/eui_skins/web/guild/CreatGuildViewSkin.exml new file mode 100644 index 0000000..d037967 --- /dev/null +++ b/resource/eui_skins/web/guild/CreatGuildViewSkin.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml b/resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml new file mode 100644 index 0000000..e6504c0 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildDevoteViewSkin.exml b/resource/eui_skins/web/guild/GuildDevoteViewSkin.exml new file mode 100644 index 0000000..66ec868 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildDevoteViewSkin.exml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildInfoViewSkin.exml b/resource/eui_skins/web/guild/GuildInfoViewSkin.exml new file mode 100644 index 0000000..0adf276 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildInfoViewSkin.exml @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildListItemViewSkin.exml b/resource/eui_skins/web/guild/GuildListItemViewSkin.exml new file mode 100644 index 0000000..d2702cf --- /dev/null +++ b/resource/eui_skins/web/guild/GuildListItemViewSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildListViewSkin.exml b/resource/eui_skins/web/guild/GuildListViewSkin.exml new file mode 100644 index 0000000..404dd97 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildListViewSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildLogItemViewSkin.exml b/resource/eui_skins/web/guild/GuildLogItemViewSkin.exml new file mode 100644 index 0000000..00fc0c2 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildLogItemViewSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml b/resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml new file mode 100644 index 0000000..54725ec --- /dev/null +++ b/resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml b/resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml new file mode 100644 index 0000000..544a6a4 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml b/resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml new file mode 100644 index 0000000..919fa4a --- /dev/null +++ b/resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml b/resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml new file mode 100644 index 0000000..0fec1c9 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildSetViewSkin.exml b/resource/eui_skins/web/guild/GuildSetViewSkin.exml new file mode 100644 index 0000000..e183a05 --- /dev/null +++ b/resource/eui_skins/web/guild/GuildSetViewSkin.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml b/resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml new file mode 100644 index 0000000..7e693bb --- /dev/null +++ b/resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/inspire/InspireItemSkin.exml b/resource/eui_skins/web/inspire/InspireItemSkin.exml new file mode 100644 index 0000000..8dc59f3 --- /dev/null +++ b/resource/eui_skins/web/inspire/InspireItemSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/inspire/InspireSkin.exml b/resource/eui_skins/web/inspire/InspireSkin.exml new file mode 100644 index 0000000..ae36e63 --- /dev/null +++ b/resource/eui_skins/web/inspire/InspireSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/kuafu/KuanFuView.exml b/resource/eui_skins/web/kuafu/KuanFuView.exml new file mode 100644 index 0000000..ba6178c --- /dev/null +++ b/resource/eui_skins/web/kuafu/KuanFuView.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/mail/MailSkin.exml b/resource/eui_skins/web/mail/MailSkin.exml new file mode 100644 index 0000000..2c8bafc --- /dev/null +++ b/resource/eui_skins/web/mail/MailSkin.exml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/mail/MailtemSkin.exml b/resource/eui_skins/web/mail/MailtemSkin.exml new file mode 100644 index 0000000..731c6e7 --- /dev/null +++ b/resource/eui_skins/web/mail/MailtemSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/AntiAddictionView.exml b/resource/eui_skins/web/main/AntiAddictionView.exml new file mode 100644 index 0000000..1de18f6 --- /dev/null +++ b/resource/eui_skins/web/main/AntiAddictionView.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/AttackCharItemSkin.exml b/resource/eui_skins/web/main/AttackCharItemSkin.exml new file mode 100644 index 0000000..8e1bfc5 --- /dev/null +++ b/resource/eui_skins/web/main/AttackCharItemSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/BulletFrameItemSkin.exml b/resource/eui_skins/web/main/BulletFrameItemSkin.exml new file mode 100644 index 0000000..44bda83 --- /dev/null +++ b/resource/eui_skins/web/main/BulletFrameItemSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/BulletFrameSkin.exml b/resource/eui_skins/web/main/BulletFrameSkin.exml new file mode 100644 index 0000000..58881b5 --- /dev/null +++ b/resource/eui_skins/web/main/BulletFrameSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/BulletFrameSkin2.exml b/resource/eui_skins/web/main/BulletFrameSkin2.exml new file mode 100644 index 0000000..494b70b --- /dev/null +++ b/resource/eui_skins/web/main/BulletFrameSkin2.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/FastItemSkin.exml b/resource/eui_skins/web/main/FastItemSkin.exml new file mode 100644 index 0000000..613a040 --- /dev/null +++ b/resource/eui_skins/web/main/FastItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/GongGaoView.exml b/resource/eui_skins/web/main/GongGaoView.exml new file mode 100644 index 0000000..310914d --- /dev/null +++ b/resource/eui_skins/web/main/GongGaoView.exml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/IDCard.exml b/resource/eui_skins/web/main/IDCard.exml new file mode 100644 index 0000000..da3bd62 --- /dev/null +++ b/resource/eui_skins/web/main/IDCard.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainBanSkin.exml b/resource/eui_skins/web/main/MainBanSkin.exml new file mode 100644 index 0000000..c91a23a --- /dev/null +++ b/resource/eui_skins/web/main/MainBanSkin.exml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainBottomSkin.exml b/resource/eui_skins/web/main/MainBottomSkin.exml new file mode 100644 index 0000000..157cba4 --- /dev/null +++ b/resource/eui_skins/web/main/MainBottomSkin.exml @@ -0,0 +1,465 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainLockSkin.exml b/resource/eui_skins/web/main/MainLockSkin.exml new file mode 100644 index 0000000..2d1948c --- /dev/null +++ b/resource/eui_skins/web/main/MainLockSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainRightSkin.exml b/resource/eui_skins/web/main/MainRightSkin.exml new file mode 100644 index 0000000..c9993e0 --- /dev/null +++ b/resource/eui_skins/web/main/MainRightSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainSelectArrItem.exml b/resource/eui_skins/web/main/MainSelectArrItem.exml new file mode 100644 index 0000000..d455bcf --- /dev/null +++ b/resource/eui_skins/web/main/MainSelectArrItem.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MainTopLeftSkin.exml b/resource/eui_skins/web/main/MainTopLeftSkin.exml new file mode 100644 index 0000000..6ac25ad --- /dev/null +++ b/resource/eui_skins/web/main/MainTopLeftSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/MianBottomNotice.exml b/resource/eui_skins/web/main/MianBottomNotice.exml new file mode 100644 index 0000000..d3c3870 --- /dev/null +++ b/resource/eui_skins/web/main/MianBottomNotice.exml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/Welcome2Skin.exml b/resource/eui_skins/web/main/Welcome2Skin.exml new file mode 100644 index 0000000..7eac8d2 --- /dev/null +++ b/resource/eui_skins/web/main/Welcome2Skin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/WelcomeSkin.exml b/resource/eui_skins/web/main/WelcomeSkin.exml new file mode 100644 index 0000000..073425c --- /dev/null +++ b/resource/eui_skins/web/main/WelcomeSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/main/skillItemSkin.exml b/resource/eui_skins/web/main/skillItemSkin.exml new file mode 100644 index 0000000..515709c --- /dev/null +++ b/resource/eui_skins/web/main/skillItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml b/resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml new file mode 100644 index 0000000..51a94a7 --- /dev/null +++ b/resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/map/CallSkin.exml b/resource/eui_skins/web/map/CallSkin.exml new file mode 100644 index 0000000..f3b38bf --- /dev/null +++ b/resource/eui_skins/web/map/CallSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/map/MapMaxSkin.exml b/resource/eui_skins/web/map/MapMaxSkin.exml new file mode 100644 index 0000000..62dc2c4 --- /dev/null +++ b/resource/eui_skins/web/map/MapMaxSkin.exml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/map/MapMiniSkin.exml b/resource/eui_skins/web/map/MapMiniSkin.exml new file mode 100644 index 0000000..d17cecd --- /dev/null +++ b/resource/eui_skins/web/map/MapMiniSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/microterms/MicrotermsViewSkin.exml b/resource/eui_skins/web/microterms/MicrotermsViewSkin.exml new file mode 100644 index 0000000..c89c8ac --- /dev/null +++ b/resource/eui_skins/web/microterms/MicrotermsViewSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml b/resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml new file mode 100644 index 0000000..4ea096a --- /dev/null +++ b/resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/npc/NpcLabelRendererSkin.exml b/resource/eui_skins/web/npc/NpcLabelRendererSkin.exml new file mode 100644 index 0000000..0b85522 --- /dev/null +++ b/resource/eui_skins/web/npc/NpcLabelRendererSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/npc/NpcRendererSkin.exml b/resource/eui_skins/web/npc/NpcRendererSkin.exml new file mode 100644 index 0000000..50fe1db --- /dev/null +++ b/resource/eui_skins/web/npc/NpcRendererSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/npc/NpcSkin.exml b/resource/eui_skins/web/npc/NpcSkin.exml new file mode 100644 index 0000000..c120947 --- /dev/null +++ b/resource/eui_skins/web/npc/NpcSkin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml b/resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml new file mode 100644 index 0000000..79f80a4 --- /dev/null +++ b/resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/npc/WashRedNameViewSkin.exml b/resource/eui_skins/web/npc/WashRedNameViewSkin.exml new file mode 100644 index 0000000..11538d4 --- /dev/null +++ b/resource/eui_skins/web/npc/WashRedNameViewSkin.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml b/resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml new file mode 100644 index 0000000..37b7294 --- /dev/null +++ b/resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml b/resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml new file mode 100644 index 0000000..cd92431 --- /dev/null +++ b/resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml b/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml new file mode 100644 index 0000000..dba2962 --- /dev/null +++ b/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml b/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml new file mode 100644 index 0000000..9b84cec --- /dev/null +++ b/resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml b/resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml new file mode 100644 index 0000000..f985f1c --- /dev/null +++ b/resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml b/resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml new file mode 100644 index 0000000..df6b3e3 --- /dev/null +++ b/resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml b/resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml new file mode 100644 index 0000000..76a1eba --- /dev/null +++ b/resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml b/resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml new file mode 100644 index 0000000..629a7d0 --- /dev/null +++ b/resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml b/resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml new file mode 100644 index 0000000..11d62bb --- /dev/null +++ b/resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml b/resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml new file mode 100644 index 0000000..6450955 --- /dev/null +++ b/resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml b/resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml new file mode 100644 index 0000000..9fd438c --- /dev/null +++ b/resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml b/resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml new file mode 100644 index 0000000..0fcd9c4 --- /dev/null +++ b/resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml b/resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml new file mode 100644 index 0000000..79ae9c1 --- /dev/null +++ b/resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml b/resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml new file mode 100644 index 0000000..954bcbf --- /dev/null +++ b/resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml b/resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml new file mode 100644 index 0000000..931da01 --- /dev/null +++ b/resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/MainCityWinSkin.exml b/resource/eui_skins/web/phone/MainCityWinSkin.exml new file mode 100644 index 0000000..0d50b82 --- /dev/null +++ b/resource/eui_skins/web/phone/MainCityWinSkin.exml @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml b/resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml new file mode 100644 index 0000000..f4dd24b --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml b/resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml new file mode 100644 index 0000000..6059a15 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneChatItemSkin.exml b/resource/eui_skins/web/phone/PhoneChatItemSkin.exml new file mode 100644 index 0000000..70928b5 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneChatItemSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml b/resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml new file mode 100644 index 0000000..6c56855 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneLoadingSkin.exml b/resource/eui_skins/web/phone/PhoneLoadingSkin.exml new file mode 100644 index 0000000..95f8878 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneLoadingSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneLoginViewSkin.exml b/resource/eui_skins/web/phone/PhoneLoginViewSkin.exml new file mode 100644 index 0000000..9baac61 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneLoginViewSkin.exml @@ -0,0 +1,54 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneMainButtonSkin.exml b/resource/eui_skins/web/phone/PhoneMainButtonSkin.exml new file mode 100644 index 0000000..5838983 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneMainButtonSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneMainSkillSkin.exml b/resource/eui_skins/web/phone/PhoneMainSkillSkin.exml new file mode 100644 index 0000000..ad70486 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneMainSkillSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneMainSkin.exml b/resource/eui_skins/web/phone/PhoneMainSkin.exml new file mode 100644 index 0000000..0200765 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneMainSkin.exml @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml b/resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml new file mode 100644 index 0000000..48d47aa --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml b/resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml new file mode 100644 index 0000000..4720f6c --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneTaskSkin.exml b/resource/eui_skins/web/phone/PhoneTaskSkin.exml new file mode 100644 index 0000000..c1d5f54 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneTaskSkin.exml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/PhoneTestSkin.exml b/resource/eui_skins/web/phone/PhoneTestSkin.exml new file mode 100644 index 0000000..0500a82 --- /dev/null +++ b/resource/eui_skins/web/phone/PhoneTestSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/Rocker2Skin.exml b/resource/eui_skins/web/phone/Rocker2Skin.exml new file mode 100644 index 0000000..0c93259 --- /dev/null +++ b/resource/eui_skins/web/phone/Rocker2Skin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/phone/RockerSkin.exml b/resource/eui_skins/web/phone/RockerSkin.exml new file mode 100644 index 0000000..671ce0d --- /dev/null +++ b/resource/eui_skins/web/phone/RockerSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml b/resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml new file mode 100644 index 0000000..0d35a52 --- /dev/null +++ b/resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml b/resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml new file mode 100644 index 0000000..785f112 --- /dev/null +++ b/resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankBtnItemSkin.exml b/resource/eui_skins/web/rank/RankBtnItemSkin.exml new file mode 100644 index 0000000..f12141f --- /dev/null +++ b/resource/eui_skins/web/rank/RankBtnItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankListItemSkin.exml b/resource/eui_skins/web/rank/RankListItemSkin.exml new file mode 100644 index 0000000..c96e33e --- /dev/null +++ b/resource/eui_skins/web/rank/RankListItemSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankQQListItemSkin.exml b/resource/eui_skins/web/rank/RankQQListItemSkin.exml new file mode 100644 index 0000000..c74fa7a --- /dev/null +++ b/resource/eui_skins/web/rank/RankQQListItemSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankRightMenuSkin.exml b/resource/eui_skins/web/rank/RankRightMenuSkin.exml new file mode 100644 index 0000000..8948208 --- /dev/null +++ b/resource/eui_skins/web/rank/RankRightMenuSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankTipsSkin.exml b/resource/eui_skins/web/rank/RankTipsSkin.exml new file mode 100644 index 0000000..fcfad8e --- /dev/null +++ b/resource/eui_skins/web/rank/RankTipsSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rank/RankViewSkin.exml b/resource/eui_skins/web/rank/RankViewSkin.exml new file mode 100644 index 0000000..01c70bf --- /dev/null +++ b/resource/eui_skins/web/rank/RankViewSkin.exml @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/Recharge4366Skin.exml b/resource/eui_skins/web/recharge/Recharge4366Skin.exml new file mode 100644 index 0000000..6e3ef1a --- /dev/null +++ b/resource/eui_skins/web/recharge/Recharge4366Skin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeF1Skin.exml b/resource/eui_skins/web/recharge/RechargeF1Skin.exml new file mode 100644 index 0000000..d3e9e8c --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeF1Skin.exml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml b/resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml new file mode 100644 index 0000000..2418e6d --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeGameCatSkin.exml b/resource/eui_skins/web/recharge/RechargeGameCatSkin.exml new file mode 100644 index 0000000..bcfc3a2 --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeGameCatSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeQQSkin.exml b/resource/eui_skins/web/recharge/RechargeQQSkin.exml new file mode 100644 index 0000000..6eecdc3 --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeQQSkin.exml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml b/resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml new file mode 100644 index 0000000..7819464 --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeRequestSkin.exml b/resource/eui_skins/web/recharge/RechargeRequestSkin.exml new file mode 100644 index 0000000..4b32428 --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeRequestSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recharge/RechargeSkin.exml b/resource/eui_skins/web/recharge/RechargeSkin.exml new file mode 100644 index 0000000..8ddbd67 --- /dev/null +++ b/resource/eui_skins/web/recharge/RechargeSkin.exml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/recycle/RecycleWinSkin.exml b/resource/eui_skins/web/recycle/RecycleWinSkin.exml new file mode 100644 index 0000000..ddac147 --- /dev/null +++ b/resource/eui_skins/web/recycle/RecycleWinSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin1.exml b/resource/eui_skins/web/result/FightResultWinSkin1.exml new file mode 100644 index 0000000..9c2a76d --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin1.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin12.exml b/resource/eui_skins/web/result/FightResultWinSkin12.exml new file mode 100644 index 0000000..f8cb627 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin12.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin2.exml b/resource/eui_skins/web/result/FightResultWinSkin2.exml new file mode 100644 index 0000000..0c5ffd5 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin2.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin26.exml b/resource/eui_skins/web/result/FightResultWinSkin26.exml new file mode 100644 index 0000000..535c2a4 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin26.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin28.exml b/resource/eui_skins/web/result/FightResultWinSkin28.exml new file mode 100644 index 0000000..e212498 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin28.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin3.exml b/resource/eui_skins/web/result/FightResultWinSkin3.exml new file mode 100644 index 0000000..67439fa --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin3.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin4.exml b/resource/eui_skins/web/result/FightResultWinSkin4.exml new file mode 100644 index 0000000..68602c0 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin4.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/FightResultWinSkin8.exml b/resource/eui_skins/web/result/FightResultWinSkin8.exml new file mode 100644 index 0000000..5d763c4 --- /dev/null +++ b/resource/eui_skins/web/result/FightResultWinSkin8.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/result/item/FightResultItemSkin1.exml b/resource/eui_skins/web/result/item/FightResultItemSkin1.exml new file mode 100644 index 0000000..34d44d0 --- /dev/null +++ b/resource/eui_skins/web/result/item/FightResultItemSkin1.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/RoleViewSkin.exml b/resource/eui_skins/web/role/RoleViewSkin.exml new file mode 100644 index 0000000..76ef778 --- /dev/null +++ b/resource/eui_skins/web/role/RoleViewSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/circle/CircleSkin.exml b/resource/eui_skins/web/role/circle/CircleSkin.exml new file mode 100644 index 0000000..0dc9857 --- /dev/null +++ b/resource/eui_skins/web/role/circle/CircleSkin.exml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml b/resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml new file mode 100644 index 0000000..df9b8d0 --- /dev/null +++ b/resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/AttrSkin.exml b/resource/eui_skins/web/role/equip/AttrSkin.exml new file mode 100644 index 0000000..fd6f915 --- /dev/null +++ b/resource/eui_skins/web/role/equip/AttrSkin.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/ButtonRoleSkin.exml b/resource/eui_skins/web/role/equip/ButtonRoleSkin.exml new file mode 100644 index 0000000..8b5c4fe --- /dev/null +++ b/resource/eui_skins/web/role/equip/ButtonRoleSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml b/resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml new file mode 100644 index 0000000..176d3da --- /dev/null +++ b/resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/EquipSkin.exml b/resource/eui_skins/web/role/equip/EquipSkin.exml new file mode 100644 index 0000000..cb4164f --- /dev/null +++ b/resource/eui_skins/web/role/equip/EquipSkin.exml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml b/resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml new file mode 100644 index 0000000..7180227 --- /dev/null +++ b/resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/RolePriBtnSkin.exml b/resource/eui_skins/web/role/equip/RolePriBtnSkin.exml new file mode 100644 index 0000000..09ef86b --- /dev/null +++ b/resource/eui_skins/web/role/equip/RolePriBtnSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/RoleStateItemSkin.exml b/resource/eui_skins/web/role/equip/RoleStateItemSkin.exml new file mode 100644 index 0000000..39ae5f6 --- /dev/null +++ b/resource/eui_skins/web/role/equip/RoleStateItemSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/equip/StateSkin.exml b/resource/eui_skins/web/role/equip/StateSkin.exml new file mode 100644 index 0000000..9507bf3 --- /dev/null +++ b/resource/eui_skins/web/role/equip/StateSkin.exml @@ -0,0 +1,28 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/exchange/RoleExchangSkin.exml b/resource/eui_skins/web/role/exchange/RoleExchangSkin.exml new file mode 100644 index 0000000..8258990 --- /dev/null +++ b/resource/eui_skins/web/role/exchange/RoleExchangSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml b/resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml new file mode 100644 index 0000000..a328e85 --- /dev/null +++ b/resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml b/resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml new file mode 100644 index 0000000..0756eec --- /dev/null +++ b/resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fashion/FashionAttrSkin.exml b/resource/eui_skins/web/role/fashion/FashionAttrSkin.exml new file mode 100644 index 0000000..2328d08 --- /dev/null +++ b/resource/eui_skins/web/role/fashion/FashionAttrSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fashion/FashionListItemSkin.exml b/resource/eui_skins/web/role/fashion/FashionListItemSkin.exml new file mode 100644 index 0000000..e52bad3 --- /dev/null +++ b/resource/eui_skins/web/role/fashion/FashionListItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fashion/FashionNewListItem.exml b/resource/eui_skins/web/role/fashion/FashionNewListItem.exml new file mode 100644 index 0000000..5fab403 --- /dev/null +++ b/resource/eui_skins/web/role/fashion/FashionNewListItem.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fashion/FashionSkin.exml b/resource/eui_skins/web/role/fashion/FashionSkin.exml new file mode 100644 index 0000000..efc4c14 --- /dev/null +++ b/resource/eui_skins/web/role/fashion/FashionSkin.exml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml b/resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml new file mode 100644 index 0000000..b13902d --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml new file mode 100644 index 0000000..67f1230 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml new file mode 100644 index 0000000..dbbf160 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml new file mode 100644 index 0000000..bec1393 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml new file mode 100644 index 0000000..6529230 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml new file mode 100644 index 0000000..430b9cb --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml new file mode 100644 index 0000000..2ac85a1 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml new file mode 100644 index 0000000..a99ce82 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml new file mode 100644 index 0000000..3ef5c22 --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml b/resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml new file mode 100644 index 0000000..670f64b --- /dev/null +++ b/resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/godequip/GodEquipSkin.exml b/resource/eui_skins/web/role/godequip/GodEquipSkin.exml new file mode 100644 index 0000000..c3fa1d9 --- /dev/null +++ b/resource/eui_skins/web/role/godequip/GodEquipSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml b/resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml new file mode 100644 index 0000000..5b9f72b --- /dev/null +++ b/resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml b/resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml new file mode 100644 index 0000000..4272c55 --- /dev/null +++ b/resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml b/resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml new file mode 100644 index 0000000..603713b --- /dev/null +++ b/resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml b/resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml new file mode 100644 index 0000000..fc044c7 --- /dev/null +++ b/resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml b/resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml new file mode 100644 index 0000000..c35e282 --- /dev/null +++ b/resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml b/resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml new file mode 100644 index 0000000..e7faa19 --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml b/resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml new file mode 100644 index 0000000..46ea54f --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml b/resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml new file mode 100644 index 0000000..0d72bda --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml b/resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml new file mode 100644 index 0000000..4d9ad62 --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml b/resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml new file mode 100644 index 0000000..4088425 --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml b/resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml new file mode 100644 index 0000000..98149b5 --- /dev/null +++ b/resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/newRing/NewRingSkin.exml b/resource/eui_skins/web/role/newRing/NewRingSkin.exml new file mode 100644 index 0000000..772eb1e --- /dev/null +++ b/resource/eui_skins/web/role/newRing/NewRingSkin.exml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml b/resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml new file mode 100644 index 0000000..ab598db --- /dev/null +++ b/resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml b/resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml new file mode 100644 index 0000000..7c8d615 --- /dev/null +++ b/resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml b/resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml new file mode 100644 index 0000000..858b66e --- /dev/null +++ b/resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/pet/RolePetItemSkin.exml b/resource/eui_skins/web/role/pet/RolePetItemSkin.exml new file mode 100644 index 0000000..475a5c9 --- /dev/null +++ b/resource/eui_skins/web/role/pet/RolePetItemSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/pet/RolePetSkin.exml b/resource/eui_skins/web/role/pet/RolePetSkin.exml new file mode 100644 index 0000000..5ae39b9 --- /dev/null +++ b/resource/eui_skins/web/role/pet/RolePetSkin.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ring/RingAttrItemSkin.exml b/resource/eui_skins/web/role/ring/RingAttrItemSkin.exml new file mode 100644 index 0000000..7ada5b0 --- /dev/null +++ b/resource/eui_skins/web/role/ring/RingAttrItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ring/RingIconItemSkin.exml b/resource/eui_skins/web/role/ring/RingIconItemSkin.exml new file mode 100644 index 0000000..5e28c7f --- /dev/null +++ b/resource/eui_skins/web/role/ring/RingIconItemSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ring/RingIconItemSkin2.exml b/resource/eui_skins/web/role/ring/RingIconItemSkin2.exml new file mode 100644 index 0000000..4601778 --- /dev/null +++ b/resource/eui_skins/web/role/ring/RingIconItemSkin2.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/ring/RingSkin.exml b/resource/eui_skins/web/role/ring/RingSkin.exml new file mode 100644 index 0000000..9cde889 --- /dev/null +++ b/resource/eui_skins/web/role/ring/RingSkin.exml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml b/resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml new file mode 100644 index 0000000..59e6b5e --- /dev/null +++ b/resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/skill/SkillDescSkin.exml b/resource/eui_skins/web/role/skill/SkillDescSkin.exml new file mode 100644 index 0000000..20f8c6d --- /dev/null +++ b/resource/eui_skins/web/role/skill/SkillDescSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/skill/SkillSkin.exml b/resource/eui_skins/web/role/skill/SkillSkin.exml new file mode 100644 index 0000000..122d07e --- /dev/null +++ b/resource/eui_skins/web/role/skill/SkillSkin.exml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml b/resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml new file mode 100644 index 0000000..abed756 --- /dev/null +++ b/resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml b/resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml new file mode 100644 index 0000000..379907c --- /dev/null +++ b/resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml b/resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml new file mode 100644 index 0000000..7f98948 --- /dev/null +++ b/resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml b/resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml new file mode 100644 index 0000000..eca5150 --- /dev/null +++ b/resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/strengthen/StrengthenSkin.exml b/resource/eui_skins/web/role/strengthen/StrengthenSkin.exml new file mode 100644 index 0000000..c5da0be --- /dev/null +++ b/resource/eui_skins/web/role/strengthen/StrengthenSkin.exml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml b/resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml new file mode 100644 index 0000000..6337a13 --- /dev/null +++ b/resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/title/TitleItemViewSkin.exml b/resource/eui_skins/web/role/title/TitleItemViewSkin.exml new file mode 100644 index 0000000..baa56ca --- /dev/null +++ b/resource/eui_skins/web/role/title/TitleItemViewSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/title/TitleItemViewSkin2.exml b/resource/eui_skins/web/role/title/TitleItemViewSkin2.exml new file mode 100644 index 0000000..ec46b1c --- /dev/null +++ b/resource/eui_skins/web/role/title/TitleItemViewSkin2.exml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/title/TitleViewSkin.exml b/resource/eui_skins/web/role/title/TitleViewSkin.exml new file mode 100644 index 0000000..031a3dc --- /dev/null +++ b/resource/eui_skins/web/role/title/TitleViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/title/TitleViewSkin2.exml b/resource/eui_skins/web/role/title/TitleViewSkin2.exml new file mode 100644 index 0000000..6f98324 --- /dev/null +++ b/resource/eui_skins/web/role/title/TitleViewSkin2.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml b/resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml new file mode 100644 index 0000000..6f9e599 --- /dev/null +++ b/resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml b/resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml new file mode 100644 index 0000000..0d5b942 --- /dev/null +++ b/resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/treasure/BlessSkin.exml b/resource/eui_skins/web/role/treasure/BlessSkin.exml new file mode 100644 index 0000000..eb62c9a --- /dev/null +++ b/resource/eui_skins/web/role/treasure/BlessSkin.exml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml b/resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml new file mode 100644 index 0000000..2449a96 --- /dev/null +++ b/resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml b/resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml new file mode 100644 index 0000000..42c986b --- /dev/null +++ b/resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml b/resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml new file mode 100644 index 0000000..d49592a --- /dev/null +++ b/resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml b/resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml new file mode 100644 index 0000000..59f9650 --- /dev/null +++ b/resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/rule/RuleViewSkin.exml b/resource/eui_skins/web/rule/RuleViewSkin.exml new file mode 100644 index 0000000..3652046 --- /dev/null +++ b/resource/eui_skins/web/rule/RuleViewSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml b/resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml new file mode 100644 index 0000000..fb9fc6d --- /dev/null +++ b/resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml b/resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml new file mode 100644 index 0000000..c86ac3c --- /dev/null +++ b/resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml b/resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml new file mode 100644 index 0000000..f915c36 --- /dev/null +++ b/resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetAIDropDownSkin.exml b/resource/eui_skins/web/setup/SetAIDropDownSkin.exml new file mode 100644 index 0000000..05b1419 --- /dev/null +++ b/resource/eui_skins/web/setup/SetAIDropDownSkin.exml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetDropDownItemSkin.exml b/resource/eui_skins/web/setup/SetDropDownItemSkin.exml new file mode 100644 index 0000000..9b17e89 --- /dev/null +++ b/resource/eui_skins/web/setup/SetDropDownItemSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetDropDownSkin.exml b/resource/eui_skins/web/setup/SetDropDownSkin.exml new file mode 100644 index 0000000..02b5787 --- /dev/null +++ b/resource/eui_skins/web/setup/SetDropDownSkin.exml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpAISkin.exml b/resource/eui_skins/web/setup/SetUpAISkin.exml new file mode 100644 index 0000000..3463b23 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpAISkin.exml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpBasicsSkin.exml b/resource/eui_skins/web/setup/SetUpBasicsSkin.exml new file mode 100644 index 0000000..fe1c7bd --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpBasicsSkin.exml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpCheckBox.exml b/resource/eui_skins/web/setup/SetUpCheckBox.exml new file mode 100644 index 0000000..d7b61cd --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpCheckBox.exml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpDrugsSkin.exml b/resource/eui_skins/web/setup/SetUpDrugsSkin.exml new file mode 100644 index 0000000..a2f5e99 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpDrugsSkin.exml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpItemSkin.exml b/resource/eui_skins/web/setup/SetUpItemSkin.exml new file mode 100644 index 0000000..ff05b1f --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpItemSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpListItemSkin.exml b/resource/eui_skins/web/setup/SetUpListItemSkin.exml new file mode 100644 index 0000000..e9b1b59 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpListItemSkin.exml @@ -0,0 +1,8 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpProtectSkin.exml b/resource/eui_skins/web/setup/SetUpProtectSkin.exml new file mode 100644 index 0000000..dbe6b8a --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpProtectSkin.exml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml b/resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml new file mode 100644 index 0000000..17db4bf --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml b/resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml new file mode 100644 index 0000000..acc621a --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpRecycleSkin.exml b/resource/eui_skins/web/setup/SetUpRecycleSkin.exml new file mode 100644 index 0000000..842d3b4 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpRecycleSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpSkin.exml b/resource/eui_skins/web/setup/SetUpSkin.exml new file mode 100644 index 0000000..abc3b07 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/setup/SetUpSystemSkin.exml b/resource/eui_skins/web/setup/SetUpSystemSkin.exml new file mode 100644 index 0000000..b72a023 --- /dev/null +++ b/resource/eui_skins/web/setup/SetUpSystemSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopBatchBuySkin.exml b/resource/eui_skins/web/shop/ShopBatchBuySkin.exml new file mode 100644 index 0000000..7860e09 --- /dev/null +++ b/resource/eui_skins/web/shop/ShopBatchBuySkin.exml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopHotViewSkin.exml b/resource/eui_skins/web/shop/ShopHotViewSkin.exml new file mode 100644 index 0000000..6807c79 --- /dev/null +++ b/resource/eui_skins/web/shop/ShopHotViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopItemViewSkin.exml b/resource/eui_skins/web/shop/ShopItemViewSkin.exml new file mode 100644 index 0000000..ab61e88 --- /dev/null +++ b/resource/eui_skins/web/shop/ShopItemViewSkin.exml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopQQViewSkin.exml b/resource/eui_skins/web/shop/ShopQQViewSkin.exml new file mode 100644 index 0000000..ad9ee5e --- /dev/null +++ b/resource/eui_skins/web/shop/ShopQQViewSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml b/resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml new file mode 100644 index 0000000..65c93c2 --- /dev/null +++ b/resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/shop/ShopViewSkin.exml b/resource/eui_skins/web/shop/ShopViewSkin.exml new file mode 100644 index 0000000..ff87aa0 --- /dev/null +++ b/resource/eui_skins/web/shop/ShopViewSkin.exml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml new file mode 100644 index 0000000..3b8f583 --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml new file mode 100644 index 0000000..ff5b5a5 --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml new file mode 100644 index 0000000..51dc59c --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml new file mode 100644 index 0000000..4f8bc71 --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml new file mode 100644 index 0000000..e3e954d --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml b/resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml new file mode 100644 index 0000000..ae34323 --- /dev/null +++ b/resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/task/MainTaskButtonSkin.exml b/resource/eui_skins/web/task/MainTaskButtonSkin.exml new file mode 100644 index 0000000..733d93e --- /dev/null +++ b/resource/eui_skins/web/task/MainTaskButtonSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/task/MainTaskItemSkin.exml b/resource/eui_skins/web/task/MainTaskItemSkin.exml new file mode 100644 index 0000000..a082e51 --- /dev/null +++ b/resource/eui_skins/web/task/MainTaskItemSkin.exml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/task/MainTaskWinSkin.exml b/resource/eui_skins/web/task/MainTaskWinSkin.exml new file mode 100644 index 0000000..3a12b8f --- /dev/null +++ b/resource/eui_skins/web/task/MainTaskWinSkin.exml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/task/TaskInfoWinSkin.exml b/resource/eui_skins/web/task/TaskInfoWinSkin.exml new file mode 100644 index 0000000..e17d264 --- /dev/null +++ b/resource/eui_skins/web/task/TaskInfoWinSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/task/TaskInfoWinSkin2.exml b/resource/eui_skins/web/task/TaskInfoWinSkin2.exml new file mode 100644 index 0000000..d8da1a9 --- /dev/null +++ b/resource/eui_skins/web/task/TaskInfoWinSkin2.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamAddViewSkin.exml b/resource/eui_skins/web/team/TeamAddViewSkin.exml new file mode 100644 index 0000000..1cb7be4 --- /dev/null +++ b/resource/eui_skins/web/team/TeamAddViewSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamCommonItemSkin.exml b/resource/eui_skins/web/team/TeamCommonItemSkin.exml new file mode 100644 index 0000000..413c08d --- /dev/null +++ b/resource/eui_skins/web/team/TeamCommonItemSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamHederSkin.exml b/resource/eui_skins/web/team/TeamHederSkin.exml new file mode 100644 index 0000000..be97407 --- /dev/null +++ b/resource/eui_skins/web/team/TeamHederSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamMainItemViewSkin.exml b/resource/eui_skins/web/team/TeamMainItemViewSkin.exml new file mode 100644 index 0000000..a9b80b3 --- /dev/null +++ b/resource/eui_skins/web/team/TeamMainItemViewSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamMainViewSkin.exml b/resource/eui_skins/web/team/TeamMainViewSkin.exml new file mode 100644 index 0000000..941b460 --- /dev/null +++ b/resource/eui_skins/web/team/TeamMainViewSkin.exml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamQQItemSkin.exml b/resource/eui_skins/web/team/TeamQQItemSkin.exml new file mode 100644 index 0000000..d2a2b03 --- /dev/null +++ b/resource/eui_skins/web/team/TeamQQItemSkin.exml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamViewPageSkin.exml b/resource/eui_skins/web/team/TeamViewPageSkin.exml new file mode 100644 index 0000000..cdb3bcb --- /dev/null +++ b/resource/eui_skins/web/team/TeamViewPageSkin.exml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/team/TeamViewSkin.exml b/resource/eui_skins/web/team/TeamViewSkin.exml new file mode 100644 index 0000000..79ff518 --- /dev/null +++ b/resource/eui_skins/web/team/TeamViewSkin.exml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/timing/ActivityTimingSkin1.exml b/resource/eui_skins/web/timing/ActivityTimingSkin1.exml new file mode 100644 index 0000000..2108601 --- /dev/null +++ b/resource/eui_skins/web/timing/ActivityTimingSkin1.exml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/timing/ActivityTimingSkin2.exml b/resource/eui_skins/web/timing/ActivityTimingSkin2.exml new file mode 100644 index 0000000..6aa4e18 --- /dev/null +++ b/resource/eui_skins/web/timing/ActivityTimingSkin2.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsActorSkin.exml b/resource/eui_skins/web/tips/TipsActorSkin.exml new file mode 100644 index 0000000..825a51b --- /dev/null +++ b/resource/eui_skins/web/tips/TipsActorSkin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsAttrItemSkin.exml b/resource/eui_skins/web/tips/TipsAttrItemSkin.exml new file mode 100644 index 0000000..284de1d --- /dev/null +++ b/resource/eui_skins/web/tips/TipsAttrItemSkin.exml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsBossRefreshSkin.exml b/resource/eui_skins/web/tips/TipsBossRefreshSkin.exml new file mode 100644 index 0000000..a5ed903 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsBossRefreshSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsBuffSkin.exml b/resource/eui_skins/web/tips/TipsBuffSkin.exml new file mode 100644 index 0000000..01dd806 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsBuffSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsDropSkin.exml b/resource/eui_skins/web/tips/TipsDropSkin.exml new file mode 100644 index 0000000..35dac12 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsDropSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsEquipContrastSkin.exml b/resource/eui_skins/web/tips/TipsEquipContrastSkin.exml new file mode 100644 index 0000000..973cb96 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsEquipContrastSkin.exml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsEquipFashionSKin.exml b/resource/eui_skins/web/tips/TipsEquipFashionSKin.exml new file mode 100644 index 0000000..dc16d9a --- /dev/null +++ b/resource/eui_skins/web/tips/TipsEquipFashionSKin.exml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsEquipSKin.exml b/resource/eui_skins/web/tips/TipsEquipSKin.exml new file mode 100644 index 0000000..b509c3a --- /dev/null +++ b/resource/eui_skins/web/tips/TipsEquipSKin.exml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsGoodEquipSkin.exml b/resource/eui_skins/web/tips/TipsGoodEquipSkin.exml new file mode 100644 index 0000000..92ac478 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsGoodEquipSkin.exml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml b/resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml new file mode 100644 index 0000000..74015ea --- /dev/null +++ b/resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsLookRewardsSkin.exml b/resource/eui_skins/web/tips/TipsLookRewardsSkin.exml new file mode 100644 index 0000000..97a3f27 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsLookRewardsSkin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsMoneySKin.exml b/resource/eui_skins/web/tips/TipsMoneySKin.exml new file mode 100644 index 0000000..6c10225 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsMoneySKin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsSkillDescSKin.exml b/resource/eui_skins/web/tips/TipsSkillDescSKin.exml new file mode 100644 index 0000000..d032076 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsSkillDescSKin.exml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsSkin.exml b/resource/eui_skins/web/tips/TipsSkin.exml new file mode 100644 index 0000000..f9b039d --- /dev/null +++ b/resource/eui_skins/web/tips/TipsSkin.exml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml b/resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml new file mode 100644 index 0000000..047d56f --- /dev/null +++ b/resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsStarLevelSkin.exml b/resource/eui_skins/web/tips/TipsStarLevelSkin.exml new file mode 100644 index 0000000..b002ce5 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsStarLevelSkin.exml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsUseItemViewSkin.exml b/resource/eui_skins/web/tips/TipsUseItemViewSkin.exml new file mode 100644 index 0000000..a7dda32 --- /dev/null +++ b/resource/eui_skins/web/tips/TipsUseItemViewSkin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml b/resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml new file mode 100644 index 0000000..8102c0d --- /dev/null +++ b/resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/useItem/UseBossBoxSkin.exml b/resource/eui_skins/web/useItem/UseBossBoxSkin.exml new file mode 100644 index 0000000..8812dce --- /dev/null +++ b/resource/eui_skins/web/useItem/UseBossBoxSkin.exml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/violentState/ViolentStateWinSkin.exml b/resource/eui_skins/web/violentState/ViolentStateWinSkin.exml new file mode 100644 index 0000000..6c6f4db --- /dev/null +++ b/resource/eui_skins/web/violentState/ViolentStateWinSkin.exml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vip/VipGaimItemWinSKin.exml b/resource/eui_skins/web/vip/VipGaimItemWinSKin.exml new file mode 100644 index 0000000..cd87db1 --- /dev/null +++ b/resource/eui_skins/web/vip/VipGaimItemWinSKin.exml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vip/VipItemBigIconSkin.exml b/resource/eui_skins/web/vip/VipItemBigIconSkin.exml new file mode 100644 index 0000000..816873f --- /dev/null +++ b/resource/eui_skins/web/vip/VipItemBigIconSkin.exml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vip/VipItemSkin.exml b/resource/eui_skins/web/vip/VipItemSkin.exml new file mode 100644 index 0000000..368e986 --- /dev/null +++ b/resource/eui_skins/web/vip/VipItemSkin.exml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vip/VipViewSkin.exml b/resource/eui_skins/web/vip/VipViewSkin.exml new file mode 100644 index 0000000..247198c --- /dev/null +++ b/resource/eui_skins/web/vip/VipViewSkin.exml @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml b/resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml new file mode 100644 index 0000000..d74a616 --- /dev/null +++ b/resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml b/resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml new file mode 100644 index 0000000..0915c6d --- /dev/null +++ b/resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/worship/WorshipItemSkin.exml b/resource/eui_skins/web/worship/WorshipItemSkin.exml new file mode 100644 index 0000000..1e15624 --- /dev/null +++ b/resource/eui_skins/web/worship/WorshipItemSkin.exml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/worship/WorshipWinSkin.exml b/resource/eui_skins/web/worship/WorshipWinSkin.exml new file mode 100644 index 0000000..0c34c98 --- /dev/null +++ b/resource/eui_skins/web/worship/WorshipWinSkin.exml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml b/resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml new file mode 100644 index 0000000..9dd92ae --- /dev/null +++ b/resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resource/gameEui.json b/resource/gameEui.json new file mode 100644 index 0000000..a92503f --- /dev/null +++ b/resource/gameEui.json @@ -0,0 +1,24880 @@ +{ + "ButtonSkin": { + "$path": "resource/eui_skins/ButtonSkin.exml", + "$bs": { "minHeight": 50, "minWidth": 100, "$eleC": ["labelDisplay", "iconDisplay"] }, + "labelDisplay": { "bottom": 8, "left": 8, "right": 8, "size": 20, "textAlign": "center", "textColor": 16777215, "top": 8, "verticalAlign": "middle", "$t": "$eL" }, + "iconDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["labelDisplay", "iconDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "skins.HScrollBarSkin": { + "$path": "resource/eui_skins/HScrollBarSkin.exml", + "$bs": { "height": 7, "minHeight": 8, "minWidth": 20, "width": 13, "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "left": 3, "right": 3, "scale9Grid": "7,1,3,1", "source": "bag_18", "verticalCenter": 0, "$t": "$eI" }, + "thumb": { "scale9Grid": "6,3,1,1", "source": "bag_17", "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "ProgressBarSkin": { + "$path": "resource/eui_skins/ProgressBarSkin.exml", + "$bs": { "minHeight": 18, "minWidth": 30, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "track_pb", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "left": 13, "right": 13, "source": "thumb_pb", "$t": "$eI" }, + "labelDisplay": { "fontFamily": "Tahoma", "horizontalCenter": 0, "size": 15, "textAlign": "center", "textColor": 7368816, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "ProgressBarSkin1": { + "$path": "resource/eui_skins/ProgressBarSkin1.exml", + "$bs": { "minHeight": 18, "minWidth": 30, "width": 30, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "guild_json.guild_jingyantiao_bg", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "left": 13, "scale9Grid": "27,1,164,10", "source": "guild_json.guild_jingyantiao", "width": 4, "$t": "$eI" }, + "labelDisplay": { "fontFamily": "Tahoma", "horizontalCenter": 0, "size": 15, "textAlign": "center", "textColor": 13350813, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "skins.RadioButtonSkin": { + "$path": "resource/eui_skins/RadioButtonSkin.exml", + "$bs": { "$eleC": ["_Group1"] }, + "_Group1": { "percentHeight": 100, "percentWidth": 100, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "labelDisplay"] }, + "_Image1": { "source": "com_yuan_kong", "$t": "$eI" }, + "_Image2": { "source": "com_yuan_hong", "$t": "$eI" }, + "labelDisplay": { "fontFamily": "Tahoma", "size": 20, "textAlign": "center", "textColor": 7368816, "verticalAlign": "middle", "verticalCenter": 0, "x": 40, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "alpha", "value": 0.7 }, + { "target": "_Image2", "name": "visible", "value": false } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "alpha", "value": 0.5 }, + { "target": "_Image2", "name": "visible", "value": false } + ] + }, + "upAndSelected": { "$ssP": [{ "target": "labelDisplay", "name": "visible", "value": false }] }, + "downAndSelected": {}, + "disabledAndSelected": {} + }, + "$sC": "$eSk" + }, + "skins.ScrollerSkin": { + "$path": "resource/eui_skins/ScrollerSkin.exml", + "$bs": { "minHeight": 20, "minWidth": 20, "$eleC": ["horizontalScrollBar", "verticalScrollBar"] }, + "horizontalScrollBar": { "bottom": 0, "percentWidth": 100, "$t": "$eHSB" }, + "verticalScrollBar": { "percentHeight": 100, "right": -8, "$t": "$eVSB" }, + "$sP": ["horizontalScrollBar", "verticalScrollBar"], + "$sC": "$eSk" + }, + "skins.VScrollBarSkin1": { + "$path": "resource/eui_skins/VScrollBarSkin1.exml", + "$bs": { "height": 40, "minHeight": 20, "minWidth": 8, "width": 16, "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "bottom": 3, "horizontalCenter": 0, "scale9Grid": "1,7,1,4", "source": "shuxinghuadong_1", "top": 3, "$t": "$eI" }, + "thumb": { "bottom": 0, "scale9Grid": "3,5,1,3", "source": "shuxinghuadong_2", "top": 0, "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "skins.ScrollerSkin1": { + "$path": "resource/eui_skins/ScrollerSkin1.exml", + "$bs": { "minHeight": 20, "minWidth": 20, "$eleC": ["horizontalScrollBar", "verticalScrollBar"] }, + "horizontalScrollBar": { "bottom": 0, "percentWidth": 100, "$t": "$eHSB" }, + "verticalScrollBar": { "autoVisibility": false, "percentHeight": 100, "right": 0, "skinName": "skins.VScrollBarSkin1", "$t": "$eVSB" }, + "$sP": ["horizontalScrollBar", "verticalScrollBar"], + "$sC": "$eSk" + }, + "TextInputSkin": { + "$path": "resource/eui_skins/TextInputSkin.exml", + "$bs": { "minHeight": 40, "minWidth": 300, "$eleC": ["_Image1", "textDisplay"], "$sId": ["promptDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "47,18,94,10", "source": "", "percentWidth": 100, "$t": "$eI" }, + "textDisplay": { "height": 24, "left": "10", "right": "10", "size": 20, "text": "", "textAlign": "center", "textColor": 16777215, "verticalCenter": "0", "percentWidth": 100, "$t": "$eET" }, + "promptDisplay": { + "height": 24, + "left": 10, + "right": 10, + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 11119017, + "touchEnabled": false, + "verticalCenter": 0, + "percentWidth": 100, + "$t": "$eL" + }, + "$sP": ["textDisplay", "promptDisplay"], + "$s": { + "normal": {}, + "disabled": { "$ssP": [{ "target": "textDisplay", "name": "textColor", "value": 15007744 }] }, + "normalWithPrompt": { "$saI": [{ "target": "promptDisplay", "property": "", "position": 1, "relativeTo": "" }] }, + "disabledWithPrompt": { "$saI": [{ "target": "promptDisplay", "property": "", "position": 1, "relativeTo": "" }] } + }, + "$sC": "$eSk" + }, + "skins.VScrollBarSkin": { + "$path": "resource/eui_skins/VScrollBarSkin.exml", + "$bs": { "height": 14, "minHeight": 20, "minWidth": 8, "width": 16, "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "bottom": 3, "horizontalCenter": 0, "scale9Grid": "1,7,1,4", "source": "m_lst_xian", "top": 3, "$t": "$eI" }, + "thumb": { "height": 14, "horizontalCenter": 2, "scale9Grid": "3,5,1,3", "source": "m_lst_dian", "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "AchieveDetailItemViewSkin": { + "$path": "resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml", + "$bs": { "height": 18, "width": 371, "$eleC": ["lbGift"] }, + "lbGift": { "size": 18, "text": "", "textColor": 15779990, "x": 0, "y": 0, "$t": "$eL" }, + "$sP": ["lbGift"], + "$sC": "$eSk" + }, + "ViewBgWin6Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin6Skin.exml", + "$bs": { "height": 300, "width": 426, "$eleC": ["_Group1"] }, + "_Group1": { "height": 301, "width": 426, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "source": "bg_tipstc2_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 402, "y": -9, "$t": "$eB", "skinName": "ViewBgWin6Skin$Skin1" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin6Skin$Skin1": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "AchievementDetailedViewSkin": { + "$path": "resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["_Group1"] }, + "_Group1": { "height": 301, "width": 426, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["dragDropUI", "btnConfim", "lbDetail", "txtGift", "_Scroller1"] }, + "dragDropUI": { "skinName": "ViewBgWin6Skin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "btnConfim": { "height": 44, "label": "确 定", "width": 109, "x": 159, "y": 239, "$t": "$eB", "skinName": "AchievementDetailedViewSkin$Skin2" }, + "lbDetail": { "anchorOffsetY": 0, "height": 50, "lineSpacing": 6, "size": 18, "text": "", "textColor": 15779990, "width": 374, "wordWrap": true, "x": 24, "y": 57, "$t": "$eL" }, + "txtGift": { "size": 18, "text": "", "textColor": 16353594, "x": 23, "y": 110, "$t": "$eL" }, + "_Scroller1": { "height": 88, "width": 371, "x": 23, "y": 137, "$t": "$eS", "viewport": "listGift" }, + "listGift": { "height": 88, "itemRendererSkinName": "AchieveDetailItemViewSkin", "x": 1, "y": 20, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["dragDropUI", "btnConfim", "lbDetail", "txtGift", "listGift"], + "$sC": "$eSk" + }, + "AchievementDetailedViewSkin$Skin2": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "Btn4Skin": { + "$path": "resource/eui_skins/web/common/Btn4Skin.exml", + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "btn_4", "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 18, "stroke": 1, "text": "整 理", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "AchievementItemViewSkin": { + "$path": "resource/eui_skins/web/achievement/AchievementItemViewSkin.exml", + "$bs": { "height": 83, "width": 717, "$eleC": ["gp"] }, + "gp": { "height": 83, "width": 717, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["state_0", "state_1", "lbTitle", "lbTarget", "protxt", "lbProgress", "btnGet", "btnShow", "reachedIcon"] }, + "state_0": { "height": 83, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 717, "x": 0, "y": 0, "$t": "$eI" }, + "state_1": { "height": 83, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 717, "x": 0, "y": 0, "$t": "$eI" }, + "lbTitle": { "left": 40, "size": 20, "stroke": 1, "text": "", "textAlign": "center", "textColor": 16353594, "y": 11, "$t": "$eL" }, + "lbTarget": { "size": 20, "stroke": 1, "text": "", "textAlign": "center", "textColor": 16353594, "x": 40, "y": 50, "$t": "$eL" }, + "protxt": { "left": 421, "size": 20, "stroke": 1, "text": "", "textColor": 13348219, "y": 11, "$t": "$eL" }, + "lbProgress": { "left": 473, "size": 20, "stroke": 1, "text": "", "textColor": 13348219, "y": 11, "$t": "$eL" }, + "btnGet": { "label": "领取", "skinName": "Btn4Skin", "x": 620.27, "y": 30, "$t": "$eB" }, + "btnShow": { "label": "查看", "skinName": "Btn4Skin", "x": 524.28, "y": 30, "$t": "$eB" }, + "reachedIcon": { "source": "ach_yidacheng", "touchEnabled": false, "visible": false, "x": 611.28, "y": 7, "$t": "$eI" }, + "$sP": ["state_0", "state_1", "lbTitle", "lbTarget", "protxt", "lbProgress", "btnGet", "btnShow", "reachedIcon", "gp"], + "$sC": "$eSk" + }, + "ButtonCloseSkin": { + "$path": "resource/eui_skins/web/common/ButtonCloseSkin.exml", + "$bs": { "height": 26, "width": 26, "$eleC": ["btn_close"] }, + "btn_close": { "label": "", "x": 0, "y": 0, "$t": "$eB", "skinName": "ButtonCloseSkin$Skin3" }, + "$sP": ["btn_close"], + "$sC": "$eSk" + }, + "ButtonCloseSkin$Skin3": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] } + }, + "$sC": "$eSk" + }, + "UIViewFrameSkin": { + "$path": "resource/eui_skins/web/common/UIViewFrameSkin.exml", + "$bs": { "$eleC": ["_Group1"], "$sId": ["_Image1", "_Image2", "bg", "_Image3", "btn_bg", "txt_name"] }, + "_Group1": { "$t": "$eG", "$eleC": ["btn_close"] }, + "_Image1": { "anchorOffsetY": 0, "height": 627, "scale9Grid": "251,69,6,8", "source": "activity12_json.act_clfbbg", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "kbg_1_png", "touchEnabled": false, "$t": "$eI" }, + "bg": { "anchorOffsetY": 0, "scaleX": 1, "scaleY": 1, "source": "get_bg", "x": 7.47, "y": 52.42, "$t": "$eI" }, + "_Image3": { "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "biaoti_bg", "touchEnabled": false, "x": 52, "y": 0, "$t": "$eI" }, + "btn_bg": { "anchorOffsetX": 0, "scale9Grid": "40,28,1,1", "scaleX": 1, "scaleY": 1, "source": "bg_jianbian2", "touchEnabled": false, "width": 382, "x": 17, "y": 489, "$t": "$eI" }, + "txt_name": { "anchorOffsetX": 0, "size": 22, "textAlign": "center", "textColor": 14731679, "touchEnabled": false, "width": 156, "$t": "$eL" }, + "btn_close": { "label": "", "skinName": "ButtonCloseSkin", "$t": "$eB" }, + "$sP": ["bg", "btn_bg", "txt_name", "btn_close"], + "$s": { + "default": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": 0 }, + { "target": "_Image2", "name": "y", "value": 38 }, + { "target": "_Image3", "name": "x", "value": 51 }, + { "target": "txt_name", "name": "size", "value": 24 }, + { "target": "txt_name", "name": "width", "value": 176 }, + { "target": "txt_name", "name": "x", "value": 119 }, + { "target": "txt_name", "name": "maxChars", "value": 6 }, + { "target": "txt_name", "name": "y", "value": 19 }, + { "target": "txt_name", "name": "textColor", "value": 14731679 }, + { "target": "btn_close", "name": "x", "value": 389 }, + { "target": "btn_close", "name": "y", "value": 39 }, + { "target": "btn_close", "name": "visible", "value": false }, + { "target": "_Group1", "name": "width", "value": 417 }, + { "target": "_Group1", "name": "height", "value": 611 }, + { "target": "_Group1", "name": "verticalCenter", "value": 0 }, + { "target": "_Group1", "name": "horizontalCenter", "value": 0 }, + { "target": "", "name": "width", "value": 417 }, + { "target": "", "name": "height", "value": 611 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "_Image3", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "btn_bg", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default2": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": 0 }, + { "target": "_Image2", "name": "y", "value": 25 }, + { "target": "_Image2", "name": "source", "value": "com_bg_beibao_png" }, + { "target": "_Image3", "name": "horizontalCenter", "value": 0 }, + { "target": "_Image3", "name": "y", "value": -3 }, + { "target": "txt_name", "name": "x", "value": 131 }, + { "target": "txt_name", "name": "horizontalCenter", "value": 0 }, + { "target": "txt_name", "name": "y", "value": 18 }, + { "target": "btn_close", "name": "x", "value": 389 }, + { "target": "btn_close", "name": "right", "value": 0 }, + { "target": "btn_close", "name": "y", "value": 28 }, + { "target": "_Group1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Group1", "name": "verticalCenter", "value": 0 }, + { "target": "_Group1", "name": "width", "value": 536 }, + { "target": "_Group1", "name": "height", "value": 593 }, + { "target": "", "name": "width", "value": 536 }, + { "target": "", "name": "height", "value": 593 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "_Image3", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default3": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": -0.5 }, + { "target": "_Image2", "name": "y", "value": -4 }, + { "target": "_Image2", "name": "source", "value": "kbg_2_png" }, + { "target": "txt_name", "name": "x", "value": 2 }, + { "target": "txt_name", "name": "y", "value": 0 }, + { "target": "btn_close", "name": "x", "value": 263.01 }, + { "target": "btn_close", "name": "y", "value": 0 }, + { "target": "_Group1", "name": "verticalCenter", "value": 0 }, + { "target": "_Group1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Group1", "name": "width", "value": 310 }, + { "target": "_Group1", "name": "height", "value": 579 }, + { "target": "", "name": "width", "value": 310 }, + { "target": "", "name": "height", "value": 579 } + ], + "$saI": [{ "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }] + }, + "default4": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": 0 }, + { "target": "_Image2", "name": "y", "value": -2 }, + { "target": "_Image2", "name": "source", "value": "bg_tipstc_png" }, + { "target": "txt_name", "name": "x", "value": 131 }, + { "target": "txt_name", "name": "y", "value": 5 }, + { "target": "txt_name", "name": "size", "value": 20 }, + { "target": "txt_name", "name": "textColor", "value": 14731679 }, + { "target": "btn_close", "name": "y", "value": 2 }, + { "target": "btn_close", "name": "x", "value": 388 }, + { "target": "_Group1", "name": "width", "value": 417 }, + { "target": "_Group1", "name": "anchorOffsetY", "value": 0 }, + { "target": "_Group1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Group1", "name": "y", "value": 0 }, + { "target": "", "name": "width", "value": 417 }, + { "target": "", "name": "height", "value": 285 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default5": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": 0 }, + { "target": "_Image2", "name": "source", "value": "com_bg_kuang_2_png" }, + { "target": "_Image2", "name": "y", "value": 0 }, + { "target": "txt_name", "name": "x", "value": 131 }, + { "target": "txt_name", "name": "y", "value": 17 }, + { "target": "txt_name", "name": "top", "value": 11 }, + { "target": "txt_name", "name": "horizontalCenter", "value": 0 }, + { "target": "txt_name", "name": "bold", "value": true }, + { "target": "btn_close", "name": "x", "value": 861 }, + { "target": "btn_close", "name": "y", "value": 10 }, + { "target": "_Group1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Group1", "name": "width", "value": 898 }, + { "target": "", "name": "width", "value": 898 }, + { "target": "", "name": "height", "value": 617 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default6": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kbg_3_png" }, + { "target": "txt_name", "name": "x", "value": 115 }, + { "target": "txt_name", "name": "y", "value": 12 }, + { "target": "txt_name", "name": "size", "value": 22 }, + { "target": "txt_name", "name": "textColor", "value": 14731679 }, + { "target": "btn_close", "name": "x", "value": 344 }, + { "target": "btn_close", "name": "y", "value": 8 }, + { "target": "", "name": "width", "value": 381 }, + { "target": "", "name": "height", "value": 460 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default7": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kbg_3_png" }, + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txt_name", "name": "size", "value": 22 }, + { "target": "txt_name", "name": "textColor", "value": 14857368 }, + { "target": "txt_name", "name": "percentWidth", "value": 100 }, + { "target": "txt_name", "name": "percentHeight", "value": 100 }, + { "target": "btn_close", "name": "x", "value": 629 }, + { "target": "btn_close", "name": "y", "value": 5 }, + { "target": "_Group1", "name": "anchorOffsetY", "value": 0 }, + { "target": "_Group1", "name": "percentWidth", "value": 100 }, + { "target": "_Group1", "name": "percentHeight", "value": 100 }, + { "target": "", "name": "width", "value": 660 }, + { "target": "", "name": "height", "value": 44 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default8": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kbg_4_png" }, + { "target": "txt_name", "name": "x", "value": 131 }, + { "target": "txt_name", "name": "horizontalCenter", "value": 0 }, + { "target": "txt_name", "name": "y", "value": 11 }, + { "target": "btn_close", "name": "x", "value": 342.33 }, + { "target": "btn_close", "name": "y", "value": 6.99 }, + { "target": "_Group1", "name": "width", "value": 380 }, + { "target": "", "name": "width", "value": 380 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default9": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "bg_npc_png" }, + { "target": "_Image2", "name": "scale9Grid", "value": "12,26,618,291" }, + { "target": "_Image2", "name": "top", "value": 0 }, + { "target": "_Image2", "name": "left", "value": 0 }, + { "target": "_Image2", "name": "bottom", "value": 0 }, + { "target": "_Image2", "name": "right", "value": 0 }, + { "target": "txt_name", "name": "x", "value": 131 }, + { "target": "txt_name", "name": "y", "value": 17 }, + { "target": "txt_name", "name": "visible", "value": false }, + { "target": "btn_close", "name": "right", "value": 6 }, + { "target": "btn_close", "name": "top", "value": 5 }, + { "target": "_Group1", "name": "top", "value": 0 }, + { "target": "_Group1", "name": "left", "value": 0 }, + { "target": "_Group1", "name": "right", "value": 0 }, + { "target": "_Group1", "name": "bottom", "value": 0 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default10": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kbg_trade" }, + { "target": "_Image2", "name": "scale9Grid", "value": "121,70,161,426" }, + { "target": "_Image2", "name": "percentWidth", "value": 100 }, + { "target": "_Image2", "name": "percentHeight", "value": 100 }, + { "target": "txt_name", "name": "horizontalCenter", "value": 0 }, + { "target": "txt_name", "name": "top", "value": 13 }, + { "target": "btn_close", "name": "right", "value": 3 }, + { "target": "btn_close", "name": "top", "value": 3 }, + { "target": "_Group1", "name": "touchChildren", "value": true }, + { "target": "_Group1", "name": "touchEnabled", "value": true }, + { "target": "_Group1", "name": "touchThrough", "value": true }, + { "target": "_Group1", "name": "percentWidth", "value": 100 }, + { "target": "_Group1", "name": "percentHeight", "value": 100 }, + { "target": "", "name": "width", "value": 413 }, + { "target": "", "name": "height", "value": 200 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default11": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "chat_bg_tc1_png" }, + { "target": "_Image2", "name": "width", "value": 478 }, + { "target": "_Image2", "name": "height", "value": 340 }, + { "target": "txt_name", "name": "x", "value": 170 }, + { "target": "txt_name", "name": "y", "value": 8.02 }, + { "target": "btn_close", "name": "x", "value": 444 }, + { "target": "btn_close", "name": "y", "value": 7 }, + { "target": "", "name": "width", "value": 478 }, + { "target": "", "name": "height", "value": 340 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default12": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "bg_tipstc3_png" }, + { "target": "_Image2", "name": "width", "value": 576 }, + { "target": "_Image2", "name": "height", "value": 452 }, + { "target": "txt_name", "name": "x", "value": 211 }, + { "target": "txt_name", "name": "y", "value": 14 }, + { "target": "txt_name", "name": "stroke", "value": 2 }, + { "target": "btn_close", "name": "x", "value": 541.3 }, + { "target": "btn_close", "name": "y", "value": 7 }, + { "target": "", "name": "width", "value": 576 }, + { "target": "", "name": "height", "value": 452 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default13": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "bg_tipstc3_png" }, + { "target": "_Image2", "name": "width", "value": 576 }, + { "target": "_Image2", "name": "height", "value": 452 }, + { "target": "txt_name", "name": "x", "value": 170 }, + { "target": "txt_name", "name": "y", "value": 13.34 }, + { "target": "btn_close", "name": "x", "value": 459.99 }, + { "target": "btn_close", "name": "y", "value": 7 }, + { "target": "", "name": "width", "value": 496 }, + { "target": "", "name": "height", "value": 630 } + ], + "$saI": [ + { "target": "_Image1", "property": "_Group1", "position": 0, "relativeTo": "" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + }, + "default14": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kbg_3_png" }, + { "target": "_Image2", "name": "anchorOffsetY", "value": 0 }, + { "target": "_Image2", "name": "height", "value": 383.67 }, + { "target": "bg", "name": "y", "value": 43.11 }, + { "target": "txt_name", "name": "x", "value": 115 }, + { "target": "txt_name", "name": "y", "value": 12 }, + { "target": "txt_name", "name": "size", "value": 22 }, + { "target": "txt_name", "name": "textColor", "value": 14731679 }, + { "target": "btn_close", "name": "x", "value": 338.68 }, + { "target": "btn_close", "name": "y", "value": 11.99 }, + { "target": "_Group1", "name": "anchorOffsetY", "value": 0 }, + { "target": "_Group1", "name": "height", "value": 450.67 }, + { "target": "", "name": "width", "value": 373 }, + { "target": "", "name": "height", "value": 384.66 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "bg", "property": "_Group1", "position": 2, "relativeTo": "btn_close" }, + { "target": "txt_name", "property": "_Group1", "position": 2, "relativeTo": "btn_close" } + ] + } + }, + "$sC": "$eSk" + }, + "Btn9Skin": { + "$path": "resource/eui_skins/web/common/Btn9Skin.exml", + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "tips_btn", "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "button", "textColor": 15779990, "verticalCenter": -1, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn1" }] } }, + "$sC": "$eSk" + }, + "ItemBaseSkin": { + "$path": "resource/eui_skins/web/common/ItemBaseSkin.exml", + "$bs": { "height": 60, "width": 60, "$eleC": ["itemBg", "itemIcon", "compareImg", "itemCount", "effGrp", "imgNuBg", "bestEquip", "starLabel"] }, + "itemBg": { "horizontalCenter": 0, "source": "quality_1", "top": 0, "$t": "$eI" }, + "itemIcon": { "height": 60, "horizontalCenter": 0, "source": "11000", "top": 0, "width": 60, "$t": "$eI" }, + "compareImg": { "source": "quality_sheng", "touchEnabled": false, "visible": false, "$t": "$eI" }, + "itemCount": { "right": 4, "size": 15, "stroke": 2, "text": "30", "touchEnabled": false, "y": 43.4, "$t": "$eL" }, + "effGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "imgNuBg": { "horizontalCenter": 0, "source": "yan_1", "touchEnabled": false, "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "bestEquip": { "horizontalCenter": 0, "source": "quality_jipin", "touchEnabled": false, "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "starLabel": { "bottom": 5, "font": "num_8_fnt", "letterSpacing": -3, "right": 5, "text": "", "touchEnabled": false, "visible": false, "$t": "$eBL" }, + "$sP": ["itemBg", "itemIcon", "compareImg", "itemCount", "effGrp", "imgNuBg", "bestEquip", "starLabel"], + "$sC": "$eSk" + }, + "AchievementViewSkin": { + "$path": "resource/eui_skins/web/achievement/AchievementViewSkin.exml", + "$bs": { "height": 618, "width": 941, "$eleC": ["gpAll"] }, + "gpAll": { "height": 617, "width": 941, "$t": "$eG", "$eleC": ["dragDropUI", "tabBar", "gp_0", "gp_1"] }, + "dragDropUI": { "currentState": "default5", "height": 617, "skinName": "UIViewFrameSkin", "width": 898, "x": 44, "$t": "app.UIViewFrame" }, + "tabBar": { "height": 556, "itemRendererSkinName": "CommonTarBtnItemSkin1", "width": 45, "x": 2, "y": 49, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 3, "$t": "$eVL" }, + "gp_0": { "height": 564, "width": 880, "x": 53, "y": 47, "$t": "$eG", "$eleC": ["_Image1", "optTab", "bg1", "scroller", "shopBtn"] }, + "_Image1": { "height": 508, "scale9Grid": "6,6,8,6", "source": "com_bg_kuang_xian1", "width": 145, "x": 2, "y": 0, "$t": "$eI" }, + "optTab": { "height": 556, "itemRendererSkinName": "GuildTarBtnItemSkin", "width": 141, "x": 6, "y": 3, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -2, "horizontalAlign": "center", "$t": "$eVL" }, + "bg1": { "height": 508, "scale9Grid": "14,14,1,1", "source": "9s_bg_1", "width": 729, "x": 146, "y": 0, "$t": "$eI" }, + "scroller": { "height": 505, "width": 723, "x": 149, "y": 2.5, "$t": "$eS", "viewport": "listAchieve" }, + "listAchieve": { "height": 505, "itemRendererSkinName": "AchievementItemViewSkin", "width": 723, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 1, "$t": "$eVL" }, + "shopBtn": { "label": "活跃商城", "scaleX": 1, "scaleY": 1, "skinName": "Btn9Skin", "x": 745, "y": 517, "$t": "$eB" }, + "gp_1": { + "height": 564, + "visible": false, + "width": 880, + "x": 53, + "y": 47, + "$t": "$eG", + "$eleC": [ + "bg", + "bg0", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "_Image11", + "_Image12", + "_Image13", + "_Image14", + "_Image15", + "_Image16", + "_Image17", + "curItem", + "nextItem", + "gCurList", + "gNextList", + "_Scroller1", + "_Scroller2", + "txtMyCount", + "txtCurAtt", + "txtNextAtt", + "lbCount", + "lbCurItem", + "lbNextItem", + "txt_max_lev", + "btnUp" + ] + }, + "bg": { "height": 496, "scale9Grid": "14,14,1,1", "source": "9s_bg_1", "width": 525, "x": 1.5, "y": 1.5, "$t": "$eI" }, + "bg0": { "height": 496, "scale9Grid": "14,14,1,1", "source": "9s_bg_1", "width": 349, "x": 528, "y": 1.5, "$t": "$eI" }, + "_Image2": { "height": 210, "scale9Grid": "14,14,1,1", "source": "9s_bg_2", "width": 341, "x": 532, "y": 36, "$t": "$eI" }, + "_Image3": { "height": 215, "scale9Grid": "14,14,1,1", "source": "9s_bg_2", "width": 341, "x": 532, "y": 279, "$t": "$eI" }, + "_Image4": { "height": 496, "source": "ach_bg1", "x": 3.7, "y": 5, "$t": "$eI" }, + "_Image5": { "source": "ach_xzsj", "x": 212, "y": 11, "$t": "$eI" }, + "_Image6": { "source": "ach_zhuangshi", "x": 543, "y": 14, "$t": "$eI" }, + "_Image7": { "source": "ach_zhuangshi", "x": 55, "y": 279, "$t": "$eI" }, + "_Image8": { "source": "ach_zhuangshi", "x": 332, "y": 279, "$t": "$eI" }, + "_Image9": { "source": "ach_sjtj", "x": 560, "y": 12, "$t": "$eI" }, + "_Image10": { "source": "ach_zhuangshi", "x": 543, "y": 256, "$t": "$eI" }, + "_Image11": { "source": "ach_sjxh", "x": 560, "y": 255, "$t": "$eI" }, + "_Image12": { "source": "ach_xunzhangbg", "x": 76, "y": 105, "$t": "$eI" }, + "_Image13": { "source": "ach_jiantou", "x": 243, "y": 133, "$t": "$eI" }, + "_Image14": { "source": "ach_xunzhangbg", "x": 322, "y": 105, "$t": "$eI" }, + "_Image15": { "source": "ach_namebg", "x": 85, "y": 225, "$t": "$eI" }, + "_Image16": { "source": "ach_namebg", "x": 337, "y": 225, "$t": "$eI" }, + "_Image17": { "height": 155, "source": "role_json.transform_bg_shuxing", "width": 473, "x": 30, "y": 275, "$t": "$eI" }, + "curItem": { "bottom": 373, "height": 60, "horizontalCenter": -294, "skinName": "ItemBaseSkin", "top": 133, "$t": "app.ItemBase" }, + "nextItem": { "bottom": 373, "height": 60, "horizontalCenter": -48, "skinName": "ItemBaseSkin", "top": 133, "$t": "app.ItemBase" }, + "gCurList": { "name": "list", "x": 74, "y": 304, "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": 0, "$t": "$eVL" }, + "gNextList": { "name": "list", "x": 352, "y": 304, "$t": "$eLs", "layout": "_VerticalLayout5" }, + "_VerticalLayout5": { "gap": 0, "$t": "$eVL" }, + "_Scroller1": { "height": 192, "width": 324, "x": 539, "y": 47, "$t": "$eS", "viewport": "gUpList" }, + "gUpList": { "itemRendererSkinName": "MedalItemViewSkin", "name": "list", "width": 327, "x": 542, "y": 48, "$t": "$eLs", "layout": "_VerticalLayout6" }, + "_VerticalLayout6": { "gap": 12, "horizontalAlign": "left", "verticalAlign": "top", "$t": "$eVL" }, + "_Scroller2": { "height": 192, "width": 324, "x": 538, "y": 292, "$t": "$eS", "viewport": "gUpNeedList" }, + "gUpNeedList": { "itemRendererSkinName": "MedalItemViewSkin", "name": "list", "x": 542, "y": 48, "$t": "$eLs", "layout": "_VerticalLayout7" }, + "_VerticalLayout7": { "gap": 12, "$t": "$eVL" }, + "txtMyCount": { "size": 20, "text": "", "textColor": 15779990, "x": 29, "y": 516, "$t": "$eL" }, + "txtCurAtt": { "size": 18, "text": "", "textColor": 15779990, "x": 73, "y": 278, "$t": "$eL" }, + "txtNextAtt": { "size": 18, "text": "", "textColor": 15779990, "x": 349, "y": 278, "$t": "$eL" }, + "lbCount": { "left": 175, "rotation": 0.07, "size": 20, "text": "", "textColor": 2682369, "verticalCenter": 244, "$t": "$eL" }, + "lbCurItem": { "horizontalCenter": -294, "size": 20, "text": "", "textColor": 16353594, "verticalCenter": -45, "$t": "$eL" }, + "lbNextItem": { "horizontalCenter": -42, "size": 20, "text": "", "textColor": 16353594, "verticalCenter": -45, "$t": "$eL" }, + "txt_max_lev": { "size": 20, "text": "", "textAlign": "center", "textColor": 13740407, "width": 108, "x": 328, "y": 330, "$t": "$eL" }, + "btnUp": { "height": 38, "label": "升 级", "skinName": "Btn4Skin", "width": 82, "x": 221, "y": 445, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "tabBar", + "optTab", + "bg1", + "listAchieve", + "scroller", + "shopBtn", + "gp_0", + "bg", + "bg0", + "curItem", + "nextItem", + "gCurList", + "gNextList", + "gUpList", + "gUpNeedList", + "txtMyCount", + "txtCurAtt", + "txtNextAtt", + "lbCount", + "lbCurItem", + "lbNextItem", + "txt_max_lev", + "btnUp", + "gp_1", + "gpAll" + ], + "$sC": "$eSk" + }, + "MedalAttrItemCurSkin": { + "$path": "resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml", + "$bs": { "height": 21, "width": 249.7, "$eleC": ["txt_cur", "arrow"] }, + "txt_cur": { "height": 20, "size": 18, "text": "", "textColor": 16044452, "width": 171.5, "x": 17.5, "y": 0.5, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 206, "y": 0.5, "$t": "$eI" }, + "$sP": ["txt_cur", "arrow"], + "$sC": "$eSk" + }, + "MedalAttrItemNextSkin": { + "$path": "resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml", + "$bs": { "height": 21, "width": 80, "$eleC": ["txt_next"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 18, "text": "", "textAlign": "center", "textColor": 5622796, "width": 80, "x": 0, "y": 2, "$t": "$eL" }, + "$sP": ["txt_next"], + "$sC": "$eSk" + }, + "MedalItemViewSkin": { + "$path": "resource/eui_skins/web/achievement/MedalItemViewSkin.exml", + "$bs": { "height": 22, "width": 324, "$eleC": ["lbGift"] }, + "lbGift": { "size": 18, "text": "", "textColor": 15779990, "x": 0, "y": 2, "$t": "$eL" }, + "$sP": ["lbGift"], + "$sC": "$eSk" + }, + "ActivityCopiesItem1Skin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml", + "$bs": { "height": 535, "width": 278, "$eleC": ["systemBg", "_Image1", "_Image2", "title", "_Image3", "systemJieShao", "_Image4", "_Image5", "itemScroller", "enterFb", "rule", "redPoint"] }, + "systemBg": { "horizontalCenter": 0, "source": "Act_hdbg1_1_png", "verticalCenter": 0, "$t": "$eI" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "20,23,8,9", "source": "Act_hdk1", "top": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": -100, "scaleX": 1.5, "scaleY": 1.5, "source": "guild_wenzizhuangshi", "top": 27, "$t": "$eI" }, + "title": { "horizontalCenter": 0, "source": "Act_biaoti_1", "top": 20, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 100, "scaleX": 1.5, "scaleY": 1.5, "source": "guild_wenzizhuangshi", "top": 27, "$t": "$eI" }, + "systemJieShao": { "height": 278, "lineSpacing": 3, "size": 20, "stroke": 1, "text": "", "textColor": 14724725, "width": 243, "x": 18, "y": 58.5, "$t": "$eL" }, + "_Image4": { "bottom": 164, "left": 16, "source": "Act_jlyl", "$t": "$eI" }, + "_Image5": { "bottom": 71, "height": 82.5, "horizontalCenter": 0.5, "scale9Grid": "24,22,4,13", "source": "Act_jlyl_bg", "width": 267, "$t": "$eI" }, + "itemScroller": { "bottom": 83, "height": 60, "horizontalCenter": 0.5, "width": 253, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "bottom": 83, "horizontalCenter": 2.5, "itemRendererSkinName": "ItemBaseSkin", "width": 253, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 14, "$t": "$eHL" }, + "enterFb": { "bottom": 11, "horizontalCenter": 7.5, "label": "进 入", "skinName": "Btn9Skin", "$t": "$eB" }, + "rule": { "bottom": 17, "horizontalCenter": -108, "label": "Button", "$t": "app.RuleTipsButton" }, + "redPoint": { "visible": false, "x": 187, "y": 476.5, "$t": "app.RedDotControl" }, + "$sP": ["systemBg", "title", "systemJieShao", "itemList", "itemScroller", "enterFb", "rule", "redPoint"], + "$sC": "$eSk" + }, + "ActivityCopiesItem2Skin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml", + "$bs": { "height": 235, "width": 433, "$eleC": ["_Image1", "imgBg", "title", "systemJieShao", "rewardGp", "rule", "residueCount", "enterFb", "redPoint"] }, + "_Image1": { "source": "Act_hdk2_png", "$t": "$eI" }, + "imgBg": { "horizontalCenter": 0, "source": "Act_hdbg2_1_png", "verticalCenter": 0, "$t": "$eI" }, + "title": { "horizontalCenter": 0.5, "source": "Act_biaoti_1", "top": 11, "$t": "$eI" }, + "systemJieShao": { "height": 80, "horizontalCenter": 1, "size": 20, "stroke": 1, "text": "", "textColor": 14724725, "verticalCenter": -34.5, "width": 407, "$t": "$eL" }, + "rewardGp": { "height": 108, "width": 251, "x": 6, "y": 122, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "itemList", "btnMore"] }, + "_Image2": { "bottom": 80, "left": 11, "source": "Act_jlyl", "x": 12, "y": 5, "$t": "$eI" }, + "_Image3": { "bottom": 3, "height": 74, "horizontalCenter": -0.5, "scale9Grid": "8,30,2,9", "source": "Act_jlyl_bg", "width": 246, "x": 3, "y": 31, "$t": "$eI" }, + "itemList": { "anchorOffsetX": 0, "bottom": 10, "horizontalCenter": -22.5, "itemRendererSkinName": "ItemBaseSkin", "width": 192, "x": 10, "y": 75, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "btnMore": { "anchorOffsetX": 0, "label": "", "x": 211, "y": 38, "$t": "$eB", "skinName": "ActivityCopiesItem2Skin$Skin4" }, + "rule": { "bottom": 21, "horizontalCenter": 68.5, "label": "Button", "ruleId": "1", "$t": "app.RuleTipsButton" }, + "residueCount": { "horizontalCenter": 144, "size": 15, "text": "", "textColor": 15779990, "verticalCenter": 50, "$t": "$eL" }, + "enterFb": { "label": "进 入", "skinName": "Btn9Skin", "x": 313, "y": 179, "$t": "$eB" }, + "redPoint": { "visible": false, "x": 409, "y": 175, "$t": "app.RedDotControl" }, + "$sP": ["imgBg", "title", "systemJieShao", "itemList", "btnMore", "rewardGp", "rule", "residueCount", "enterFb", "redPoint"], + "$sC": "$eSk" + }, + "ActivityCopiesItem2Skin$Skin4": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "horizontalCenter": 0, "source": "Act_gengduo", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "Act_gengduo" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ViewBgWin7Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin7Skin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["_Group1"] }, + "_Group1": { "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "source": "com_bg_kuang_5_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "right": -49, "scaleX": 1.2, "scaleY": 1.2, "top": -9, "width": 60, "y": -7.67, "$t": "$eB", "skinName": "ViewBgWin7Skin$Skin5" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin7Skin$Skin5": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "ActivityCopiesWinSkin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml", + "$bs": { "height": 646, "width": 908, "$eleC": ["dragDropUI", "tab", "_Group6"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "tab": { "height": 30, "itemRendererSkinName": "CommonTarBtnWinSkin2", "visible": false, "x": 907, "y": 41, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "_Group6": { "height": 557, "visible": true, "width": 863, "x": 24, "y": 56.5, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "tabScroller", "_Group5", "enterBtn", "ruleTips"] }, + "_Image1": { "height": 557, "scale9Grid": "19,17,1,1", "source": "com_bg_kuang_6_png", "width": 265, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "height": 487.27, "right": -3, "scale9Grid": "19,17,1,1", "source": "com_bg_kuang_6_png", "width": 594, "y": 0, "$t": "$eI" }, + "tabScroller": { "height": 553, "visible": true, "width": 261, "x": 2, "y": 2, "$t": "$eS", "viewport": "tabList" }, + "tabList": { "itemRendererSkinName": "ActivityTabSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -1, "$t": "$eVL" }, + "_Group5": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 484.33, + "touchEnabled": false, + "width": 578, + "x": 276, + "y": 3, + "$t": "$eG", + "$eleC": ["_Group1", "_Group2", "_Group3", "_Image6", "_Group4"] + }, + "_Group1": { "height": 36, "width": 563, "x": 7, "y": 4, "$t": "$eG", "$eleC": ["_Image3", "actTitle"] }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actTitle": { "size": 20, "stroke": 2, "text": "活动入口:", "textColor": 15064527, "x": 10, "y": 9.5, "$t": "$eL" }, + "_Group2": { "height": 36, "width": 563, "x": 7, "y": 43, "$t": "$eG", "$eleC": ["_Image4", "actTime"] }, + "_Image4": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actTime": { "size": 20, "stroke": 2, "text": "活动时间:", "textColor": 15064527, "x": 9.6, "y": 8.3, "$t": "$eL" }, + "_Group3": { "anchorOffsetY": 0, "height": 201.5, "touchEnabled": false, "width": 563, "x": 7, "y": 83.02, "$t": "$eG", "$eleC": ["_Image5", "actDesc", "actPath"] }, + "_Image5": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actDesc": { + "height": 108, + "lineSpacing": 4, + "size": 20, + "stroke": 2, + "text": "藏宝库的NPC夺宝人偶携带了大量宝物,快和朋友一起去抢夺吧!", + "textColor": 15064527, + "width": 543, + "x": 9.1, + "y": 13.8, + "$t": "$eL" + }, + "actPath": { "lineSpacing": 7, "size": 20, "stroke": 2, "text": "前往路径:", "textColor": 15064527, "width": 535, "x": 9, "y": 132, "$t": "$eL" }, + "_Image6": { "source": "act_hdjj", "x": 15, "y": 292, "$t": "$eI" }, + "_Group4": { "height": 158, "width": 570, "x": 7, "y": 322, "$t": "$eG", "$eleC": ["_Image7", "_Scroller1"] }, + "_Image7": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "_Scroller1": { "height": 134, "width": 530, "x": 25, "y": 13, "$t": "$eS", "viewport": "rewardsList" }, + "rewardsList": { "height": 134, "itemRendererSkinName": "ItemBaseSkin", "width": 530, "x": 25, "y": 13, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "$t": "$eTL" }, + "enterBtn": { "label": "", "skinName": "Btn9Skin", "x": 741, "y": 507, "$t": "$eB" }, + "ruleTips": { "label": "Button", "x": 285, "y": 517, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "tab", "tabList", "tabScroller", "actTitle", "actTime", "actDesc", "actPath", "rewardsList", "enterBtn", "ruleTips"], + "$sC": "$eSk" + }, + "ActivityDefendTaskItemSkin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml", + "$bs": { "height": 110.66, "width": 461, "$eleC": ["itemBg", "itemTxt", "scroller", "timeTxt", "btnSweep", "btnChallenge", "redDot", "redDot2"] }, + "itemBg": { "source": "", "x": 1.67, "y": 1.38, "$t": "$eI" }, + "itemTxt": { "source": "", "x": 15, "y": 12, "$t": "$eI" }, + "scroller": { "horizontalCenter": -104, "width": 233, "x": 10, "y": 39, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "x": -10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 3, "$t": "$eHL" }, + "timeTxt": { "size": 18, "stroke": 2, "text": "今日剩余次数:5", "textAlign": "right", "textColor": 2682369, "width": 151, "x": 301.67, "y": 21.38, "$t": "$eL" }, + "btnSweep": { "label": "扫 荡", "skinName": "Btn9Skin", "x": 258.67, "y": 56.38, "$t": "$eB" }, + "btnChallenge": { "label": "挑 战", "skinName": "Btn9Skin", "x": 354.67, "y": 56.38, "$t": "$eB" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 338, "y": 53, "$t": "app.RedDotControl" }, + "redDot2": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 434, "y": 53, "$t": "app.RedDotControl" }, + "$sP": ["itemBg", "itemTxt", "itemList", "scroller", "timeTxt", "btnSweep", "btnChallenge", "redDot", "redDot2"], + "$sC": "$eSk" + }, + "ActivityDefendTaskSKin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml", + "$bs": { "height": 620, "width": 485, "$eleC": ["dragDropUI", "scroller"] }, + "dragDropUI": { "currentState": "default13", "height": 622.42, "skinName": "UIViewFrameSkin", "width": 491.45, "x": -2, "y": 2, "$t": "app.UIViewFrame" }, + "scroller": { "height": 554.46, "horizontalCenter": 3, "scrollPolicyH": "off", "touchChildren": true, "touchEnabled": false, "verticalCenter": 22, "width": 461, "$t": "$eS", "viewport": "list" }, + "list": { "anchorOffsetY": 0, "height": 554.46, "itemRendererSkinName": "ActivityMaterialItemSkin", "width": 459, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 1, "verticalGap": 0, "$t": "$eTL" }, + "$sP": ["dragDropUI", "list", "scroller"], + "$sC": "$eSk" + }, + "ActivityMaterialItemSkin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml", + "$bs": { "height": 110.66, "width": 461, "$eleC": ["itemBg", "itemTxt", "scroller", "timeTxt", "btnSweep", "btnChallenge", "redDot", "redDot2"] }, + "itemBg": { "source": "act_clfbbg_1_png", "x": 1.67, "y": 1.38, "$t": "$eI" }, + "itemTxt": { "source": "act_clfbt_1", "x": 15, "y": 12, "$t": "$eI" }, + "scroller": { "horizontalCenter": -104, "width": 233, "x": 10, "y": 39, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "x": -10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 3, "$t": "$eHL" }, + "timeTxt": { "size": 18, "stroke": 2, "text": "今日剩余次数:5", "textAlign": "right", "textColor": 2682369, "width": 151, "x": 301.67, "y": 21.38, "$t": "$eL" }, + "btnSweep": { "label": "扫 荡", "skinName": "Btn9Skin", "x": 239.67, "y": 56.38, "$t": "$eB" }, + "btnChallenge": { "label": "挑 战", "skinName": "Btn9Skin", "x": 354.67, "y": 56.38, "$t": "$eB" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 338, "y": 53, "$t": "app.RedDotControl" }, + "redDot2": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 434, "y": 53, "$t": "app.RedDotControl" }, + "$sP": ["itemBg", "itemTxt", "itemList", "scroller", "timeTxt", "btnSweep", "btnChallenge", "redDot", "redDot2"], + "$sC": "$eSk" + }, + "ActivityMaterialSkin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml", + "$bs": { "height": 620, "width": 485, "$eleC": ["dragDropUI", "scroller"] }, + "dragDropUI": { "currentState": "default13", "height": 622.42, "skinName": "UIViewFrameSkin", "width": 491.45, "x": -2, "y": 2, "$t": "app.UIViewFrame" }, + "scroller": { "height": 554.46, "horizontalCenter": 3, "scrollPolicyH": "off", "touchChildren": true, "touchEnabled": false, "verticalCenter": 22, "width": 461, "$t": "$eS", "viewport": "list" }, + "list": { "anchorOffsetY": 0, "height": 554.46, "itemRendererSkinName": "ActivityMaterialItemSkin", "width": 459, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 1, "verticalGap": 0, "$t": "$eTL" }, + "$sP": ["dragDropUI", "list", "scroller"], + "$sC": "$eSk" + }, + "ActivityTabSkin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityTabSkin.exml", + "$bs": { "height": 81, "width": 261, "$eleC": ["_Image1", "onGoingImg", "openImg", "actIconImg", "_Image2", "actName", "actState", "redPoint"] }, + "_Image1": { "horizontalCenter": 0, "source": "act_tab1", "verticalCenter": 0, "$t": "$eI" }, + "onGoingImg": { "horizontalCenter": 0, "source": "act_tab2", "verticalCenter": 0, "$t": "$eI" }, + "openImg": { "horizontalCenter": 0, "source": "act_tab3", "verticalCenter": 0, "$t": "$eI" }, + "actIconImg": { "left": 16, "source": "act_icon2", "verticalCenter": -6.5, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "108,33,7,5", "source": "act_tab4", "top": 0, "$t": "$eI" }, + "actName": { "left": 109, "size": 20, "stroke": 2, "text": "水晶鉴定", "textColor": 15779990, "y": 15.02, "$t": "$eL" }, + "actState": { "left": 109, "size": 20, "stroke": 2, "text": "活动进行中", "textColor": 2682369, "y": 48.72, "$t": "$eL" }, + "redPoint": { "height": 20, "width": 20, "x": 239, "y": 6, "$t": "app.RedDotControl" }, + "$sP": ["onGoingImg", "openImg", "actIconImg", "actName", "actState", "redPoint"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "ActivityTipsWinSKin": { + "$path": "resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml", + "$bs": { "$eleC": ["_Group1"] }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": -146, "$t": "$eG", "$eleC": ["_Image1", "titleIcon", "_Image2", "actTime", "actDesc", "_Image3", "_Scroller1", "closeBtn", "goBtn"] }, + "_Image1": { "source": "result_win", "$t": "$eI" }, + "titleIcon": { "horizontalCenter": 1.5, "source": "", "top": 194, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0.5, "source": "open_bg2", "top": 257, "$t": "$eI" }, + "actTime": { "horizontalCenter": -4.5, "size": 19, "stroke": 2, "text": "", "textColor": 2682369, "top": 262, "$t": "$eL" }, + "actDesc": { + "anchorOffsetY": 0, + "height": 113, + "horizontalCenter": 4, + "lineSpacing": 3, + "size": 19, + "stroke": 2, + "text": "", + "textColor": 14724725, + "verticalCenter": 39.5, + "width": 287, + "$t": "$eL" + }, + "_Image3": { "horizontalCenter": 11.5, "source": "open_hdjl", "verticalCenter": 116, "$t": "$eI" }, + "_Scroller1": { "width": 287, "x": 67.34, "y": 455.02, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "x": 2, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 11, "$t": "$eHL" }, + "closeBtn": { "height": 57, "label": "", "right": 31, "width": 61, "y": 130, "$t": "$eB", "skinName": "ActivityTipsWinSKin$Skin6" }, + "goBtn": { "height": 46, "horizontalCenter": 2.5, "label": "前往参与", "skinName": "Btn9Skin", "width": 114, "y": 528.16, "$t": "$eB" }, + "$sP": ["titleIcon", "actTime", "actDesc", "itemList", "closeBtn", "goBtn"], + "$sC": "$eSk" + }, + "ActivityTipsWinSKin$Skin6": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin": { + "$path": "resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml", + "$bs": { + "height": 439, + "width": 846, + "$eleC": [ + "dragDropUI", + "_Image1", + "_Image2", + "effGrp", + "imgDesc", + "btnClose", + "btnCharge", + "btnGetGfit", + "_Group1", + "receiveGroup", + "itemEffGrp", + "btnDay1", + "btnDay2", + "btnDay3", + "_Group2", + "label" + ] + }, + "dragDropUI": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 437, "width": 844, "$t": "$eG" }, + "_Image1": { "source": "fc_bg2", "touchEnabled": false, "x": 40, "y": 0, "$t": "$eI" }, + "_Image2": { "source": "fc_p_2", "touchEnabled": false, "x": -55, "y": -76, "$t": "$eI" }, + "effGrp": { "x": 117, "y": 210, "$t": "$eG" }, + "imgDesc": { "source": "fc_t3", "touchEnabled": false, "x": 160, "y": 20, "$t": "$eI" }, + "btnClose": { "height": 57, "label": "", "width": 61, "x": 738.3, "y": 57.55, "$t": "$eB", "skinName": "ActivityFirstChargeViewSkin$Skin7" }, + "btnCharge": { "height": 97, "width": 204, "x": 343, "y": 310, "$t": "$eB", "skinName": "ActivityFirstChargeViewSkin$Skin8" }, + "btnGetGfit": { "height": 97, "label": "", "visible": false, "width": 204, "x": 343, "y": 310, "$t": "$eB", "skinName": "ActivityFirstChargeViewSkin$Skin9" }, + "_Group1": { "x": 328, "y": 222, "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "receiveGroup": { "touchChildren": false, "touchEnabled": false, "touchThrough": false, "visible": false, "x": 387.98, "y": 308.03, "$t": "$eG", "$eleC": ["_Image3"] }, + "_Image3": { "source": "fc_yilingqu", "$t": "$eI" }, + "itemEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 358.8, "y": 252.4, "$t": "$eG" }, + "btnDay1": { "label": "第一天", "scaleX": 0.8, "scaleY": 0.8, "x": 648.36, "y": 173.68, "$t": "$eTB", "skinName": "ActivityFirstChargeViewSkin$Skin10" }, + "btnDay2": { "label": "第二天", "scaleX": 0.8, "scaleY": 0.8, "x": 648.36, "y": 214.68, "$t": "$eTB", "skinName": "ActivityFirstChargeViewSkin$Skin11" }, + "btnDay3": { "label": "第三天", "scaleX": 0.8, "scaleY": 0.8, "x": 648.36, "y": 255.68, "$t": "$eTB", "skinName": "ActivityFirstChargeViewSkin$Skin12" }, + "_Group2": { "x": 725.5, "y": 170.5, "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["redPoint1", "redPoint2", "redPoint3"] }, + "_VerticalLayout1": { "gap": 25, "$t": "$eVL" }, + "redPoint1": { "x": 38, "y": 189, "$t": "app.RedDotControl" }, + "redPoint2": { "x": 48, "y": 199, "$t": "app.RedDotControl" }, + "redPoint3": { "x": 58, "y": 209, "$t": "app.RedDotControl" }, + "label": { "size": 20, "stroke": 2, "text": "您已完成首充", "textColor": 2682369, "x": 560, "y": 343, "$t": "$eL" }, + "$sP": [ + "dragDropUI", + "effGrp", + "imgDesc", + "btnClose", + "btnCharge", + "btnGetGfit", + "itemList", + "receiveGroup", + "itemEffGrp", + "btnDay1", + "btnDay2", + "btnDay3", + "redPoint1", + "redPoint2", + "redPoint3", + "label" + ], + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin7": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin8": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_1" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_1" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin9": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_2" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin10": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_apay", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 1, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin11": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_apay", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 1, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "ActivityFirstChargeViewSkin$Skin12": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_apay", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 1, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "ActivityAdvertViewSkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["bgImg", "_Image1", "advertImg", "timeLab", "actTime", "descLab", "actDesc", "curValue"] }, + "bgImg": { "horizontalCenter": 0, "source": "", "top": 0, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "festival_xiala", "y": 128, "$t": "$eI" }, + "advertImg": { "horizontalCenter": 0, "source": "", "top": 133, "$t": "$eI" }, + "timeLab": { "size": 22, "stroke": 2, "text": "剩余时间:", "textColor": 16770304, "x": 161, "y": 18, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 267, "y": 18, "$t": "$eL" }, + "descLab": { "size": 22, "stroke": 2, "text": "活动内容:", "textColor": 16770304, "x": 159.5, "y": 48, "$t": "$eL" }, + "actDesc": { "size": 22, "stroke": 2, "text": "", "textColor": 15189392, "width": 385, "x": 267, "y": 48, "$t": "$eL" }, + "curValue": { "size": 22, "stroke": 2, "text": "", "textColor": 16770304, "x": 159.5, "y": 94, "$t": "$eL" }, + "$sP": ["bgImg", "advertImg", "timeLab", "actTime", "descLab", "actDesc", "curValue"], + "$sC": "$eSk" + }, + "ActivityExchangeItemViewSkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml", + "$bs": { "height": 115, "width": 700, "$eleC": ["_Image1", "exchangeBtn", "descLab", "redPoint", "receiveImg", "countLab", "_Group1", "_Image2", "_Group2"] }, + "_Image1": { "source": "apay_liebiao_bg_png", "width": 700, "$t": "$eI" }, + "exchangeBtn": { "height": 46, "label": "兑 换", "width": 113, "x": 544.5, "y": 22, "$t": "$eB", "skinName": "ActivityExchangeItemViewSkin$Skin13" }, + "descLab": { "horizontalCenter": 41.5, "size": 22, "stroke": 2, "text": "7转开放", "textColor": 2682369, "verticalCenter": -1.5, "$t": "$eL" }, + "redPoint": { "visible": false, "x": 644, "y": 19, "$t": "app.RedDotControl" }, + "receiveImg": { "source": "apay_yilingqu", "visible": false, "x": 557, "y": 20, "$t": "$eI" }, + "countLab": { "size": 20, "stroke": 2, "text": "剩余次数:10", "textColor": 15064527, "x": 545, "y": 79, "$t": "$eL" }, + "_Group1": { "height": 81, "horizontalCenter": -272, "verticalCenter": 3, "$t": "$eG", "$eleC": ["itemData0", "itemLab0"] }, + "itemData0": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "top": 0, "$t": "app.ItemBase" }, + "itemLab0": { "bottom": 0, "horizontalCenter": 0, "size": 16, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "_Image2": { "source": "com_jiantoux3", "x": 132, "y": 38, "$t": "$eI" }, + "_Group2": { "height": 81, "horizontalCenter": -134, "verticalCenter": 3, "$t": "$eG", "$eleC": ["targetItem", "targetLab"] }, + "targetItem": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "top": 0, "$t": "app.ItemBase" }, + "targetLab": { "bottom": 0, "horizontalCenter": 0, "size": 16, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "$sP": ["exchangeBtn", "descLab", "redPoint", "receiveImg", "countLab", "itemData0", "itemLab0", "targetItem", "targetLab"], + "$sC": "$eSk" + }, + "ActivityExchangeItemViewSkin$Skin13": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "ActivityExchangeViewSkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["bgImg", "_Image1", "timeLab", "actTime", "descLab", "actDesc", "curValue", "sportsScroller"] }, + "bgImg": { "horizontalCenter": 0, "source": "", "top": 0, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "festival_xiala", "y": 128, "$t": "$eI" }, + "timeLab": { "size": 22, "stroke": 2, "text": "剩余时间:", "textColor": 16770304, "x": 161, "y": 18, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 267, "y": 18, "$t": "$eL" }, + "descLab": { "size": 22, "stroke": 2, "text": "活动内容:", "textColor": 16770304, "x": 159.5, "y": 48, "$t": "$eL" }, + "actDesc": { "size": 22, "stroke": 2, "text": "", "textColor": 15189392, "width": 385, "x": 267, "y": 48, "$t": "$eL" }, + "curValue": { "size": 22, "stroke": 2, "text": "", "textColor": 16770304, "x": 159.5, "y": 94, "$t": "$eL" }, + "sportsScroller": { "height": 400, "horizontalCenter": 1, "verticalCenter": 65, "$t": "$eS", "viewport": "sportsList" }, + "sportsList": { "itemRendererSkinName": "ActivityExchangeItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "$sP": ["bgImg", "timeLab", "actTime", "descLab", "actDesc", "curValue", "sportsList", "sportsScroller"], + "$sC": "$eSk" + }, + "ActivityPayButtonSkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml", + "$bs": { "currentState": "up", "height": 59, "width": 147, "$eleC": ["_Image1", "_Image2", "labelDisplay", "redDot"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "tab_01_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redDot": { "height": 20, "right": 2, "top": 5, "visible": false, "width": 20, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redDot"], + "$s": { + "down": { + "$ssP": [ + { "target": "labelDisplay", "name": "size", "value": 22 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + }, + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "textColor", "value": 15779990 } + ] + } + }, + "$sC": "$eSk" + }, + "ActivityPaySkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityPaySkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "titleImg", "closeBtn", "infoGrp", "btnScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 538, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 154, "x": 80, "y": 115, "$t": "$eI" }, + "_Image2": { "height": 538, "scale9Grid": "18,15,4,3", "source": "com_bg_kuang_6_png", "width": 707, "x": 239, "y": 115, "$t": "$eI" }, + "titleImg": { "horizontalCenter": 5, "source": "apay_biaoti_jchd", "top": 55, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "ActivityPaySkin$Skin14" }, + "infoGrp": { "height": 538, "touchEnabled": false, "width": 707, "x": 239, "y": 115, "$t": "$eG" }, + "btnScroller": { "height": 536, "width": 147, "x": 83, "y": 118, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "ActivityPayButtonSkin", "x": -10, "y": 10, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": ["dragDropUI", "titleImg", "closeBtn", "infoGrp", "tabBar", "btnScroller"], + "$sC": "$eSk" + }, + "ActivityPaySkin$Skin14": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "ActivityPreferentialSkin": { + "$path": "resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["bgImg", "_Image1", "_Image2", "itemScroller", "timeLabel", "descLabel"] }, + "bgImg": { "horizontalCenter": 0, "source": "", "top": 0, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "festival_xiala", "y": 128, "$t": "$eI" }, + "_Image2": { "source": "apay_time_bg", "x": 248, "y": 95, "$t": "$eI" }, + "itemScroller": { "height": 400, "horizontalCenter": 0, "width": 700, "y": 135, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "PayItemRenderSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "$t": "$eVL" }, + "timeLabel": { "right": 9, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "活动剩余时间:17:30", "textColor": 2682369, "y": 101, "$t": "$eL" }, + "descLabel": { + "anchorOffsetX": 0, + "height": 74, + "lineSpacing": 5, + "scaleX": 1, + "scaleY": 1, + "size": 20, + "stroke": 2, + "text": "", + "textColor": 15655172, + "width": 422, + "x": 243, + "y": 17, + "$t": "$eL" + }, + "$sP": ["bgImg", "list", "itemScroller", "timeLabel", "descLabel"], + "$sC": "$eSk" + }, + "PayItemRenderSkin": { + "$path": "resource/eui_skins/web/activitypay/PayItemRenderSkin.exml", + "$bs": { "height": 115, "width": 700, "$eleC": ["_Image1", "_Group1", "info10002", "info10001", "buyButton", "list", "endImage", "discountGroup", "redImage"] }, + "_Image1": { "scale9Grid": "82,60,493,41", "source": "apay_liebiao_bg_png", "width": 700, "$t": "$eI" }, + "_Group1": { "x": 74, "y": 12, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["desLabel", "limitLab"] }, + "_HorizontalLayout1": { "gap": 11, "verticalAlign": "bottom", "$t": "$eHL" }, + "desLabel": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "", "textColor": 16742144, "x": 0, "y": 0, "$t": "$eL" }, + "limitLab": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "x": 160, "y": 4, "$t": "$eL" }, + "info10002": { "height": 115, "width": 151, "x": 535, "y": 0, "$t": "$eG", "$eleC": ["moneyImage", "moneyLabel"] }, + "moneyImage": { "source": "icon_yuanbao", "x": 33, "y": 13, "$t": "$eI" }, + "moneyLabel": { "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "x": 72, "y": 23, "$t": "$eL" }, + "info10001": { "height": 115, "visible": false, "width": 151, "x": 535, "y": 0, "$t": "$eG", "$eleC": ["needsLabel"] }, + "needsLabel": { "horizontalCenter": -1, "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "y": 23, "$t": "$eL" }, + "buyButton": { "height": 46, "label": "", "width": 113, "x": 557, "y": 51, "$t": "$eB", "skinName": "PayItemRenderSkin$Skin15" }, + "list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ItemBaseSkin", "width": 418, "x": 70, "y": 42, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": 10, "$t": "$eHL" }, + "endImage": { "source": "apay_yishouwan", "visible": false, "x": 560, "y": 26, "$t": "$eI" }, + "discountGroup": { "touchChildren": false, "touchEnabled": false, "x": 0, "$t": "$eG", "$eleC": ["_Image2", "discountImage", "_Image3"] }, + "_Image2": { "source": "shop_jiaobiao", "$t": "$eI" }, + "discountImage": { "source": "shop_zhekou_9", "$t": "$eI" }, + "_Image3": { "source": "shop_zhekou_bg", "$t": "$eI" }, + "redImage": { "visible": false, "x": 657, "y": 48, "$t": "app.RedDotControl" }, + "$sP": ["desLabel", "limitLab", "moneyImage", "moneyLabel", "info10002", "needsLabel", "info10001", "buyButton", "list", "endImage", "discountImage", "discountGroup", "redImage"], + "$sC": "$eSk" + }, + "PayItemRenderSkin$Skin15": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivitySecondChargeViewSkin": { + "$path": "resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml", + "$bs": { "height": 439, "width": 846, "$eleC": ["dragDropUI", "_Image1", "_Image2", "effGrp", "imgDesc", "btnClose", "btnCharge", "btnGetGfit", "_Group1", "receiveGroup", "itemEffGrp", "label"] }, + "dragDropUI": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 437, "width": 844, "$t": "$eG" }, + "_Image1": { "source": "fc_bg2", "touchEnabled": false, "x": 40, "y": 0, "$t": "$eI" }, + "_Image2": { "source": "fc_p_2", "touchEnabled": false, "x": -55, "y": -76, "$t": "$eI" }, + "effGrp": { "x": 117, "y": 210, "$t": "$eG" }, + "imgDesc": { "source": "fc_t5", "touchEnabled": false, "x": 160, "y": 20, "$t": "$eI" }, + "btnClose": { "height": 57, "label": "", "width": 61, "x": 738.3, "y": 57.55, "$t": "$eB", "skinName": "ActivitySecondChargeViewSkin$Skin16" }, + "btnCharge": { "height": 97, "width": 204, "x": 343, "y": 310, "$t": "$eB", "skinName": "ActivitySecondChargeViewSkin$Skin17" }, + "btnGetGfit": { "height": 97, "label": "", "visible": false, "width": 204, "x": 343, "y": 310, "$t": "$eB", "skinName": "ActivitySecondChargeViewSkin$Skin18" }, + "_Group1": { "x": 328, "y": 222, "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "receiveGroup": { "touchChildren": false, "touchEnabled": false, "touchThrough": false, "visible": false, "x": 387.98, "y": 308.03, "$t": "$eG", "$eleC": ["_Image3"] }, + "_Image3": { "source": "fc_yilingqu", "$t": "$eI" }, + "itemEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 358.8, "y": 252.4, "$t": "$eG" }, + "label": { "size": 20, "stroke": 2, "text": "您已完成首充", "textColor": 2682369, "x": 560, "y": 343, "$t": "$eL" }, + "$sP": ["dragDropUI", "effGrp", "imgDesc", "btnClose", "btnCharge", "btnGetGfit", "itemList", "receiveGroup", "itemEffGrp", "label"], + "$sC": "$eSk" + }, + "ActivitySecondChargeViewSkin$Skin16": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "ActivitySecondChargeViewSkin$Skin17": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_1" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_1" }] } + }, + "$sC": "$eSk" + }, + "ActivitySecondChargeViewSkin$Skin18": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_2" }] } + }, + "$sC": "$eSk" + }, + "ActivityWarButtonSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml", + "$bs": { "currentState": "up", "height": 40, "width": 130, "$eleC": ["_Image1", "_Image2", "labelDisplay", "redDot"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_yeqian_6", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "com_yeqian_7", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redDot": { "height": 20, "right": -5, "top": 0, "visible": false, "width": 20, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redDot"], + "$s": { + "down": { + "$ssP": [ + { "target": "labelDisplay", "name": "size", "value": 22 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + }, + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "textColor", "value": 15779990 } + ] + } + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvGoodsViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml", + "$bs": { + "height": 452, + "width": 576, + "$eleC": ["dragDropUI", "_Image1", "btnCannel", "btnBuy", "bg", "lbTitle", "lbBuyDesc", "_Label1", "lbCost", "btnSub", "btnAdd", "_Image2", "lbCount", "_Scroller1"] + }, + "dragDropUI": { "currentState": "default12", "scaleX": 1, "scaleY": 1, "skinName": "UIViewFrameSkin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 335.67, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 557, "x": 8.6, "y": 45, "$t": "$eI" }, + "btnCannel": { "height": 46, "label": "取消", "scaleX": 1, "scaleY": 1, "width": 113, "x": 83, "y": 389, "$t": "$eB", "skinName": "ActivityWarGiftAdvGoodsViewSkin$Skin19" }, + "btnBuy": { "height": 46, "label": "购买", "scaleX": 1, "scaleY": 1, "width": 113, "x": 368, "y": 389, "$t": "$eB", "skinName": "ActivityWarGiftAdvGoodsViewSkin$Skin20" }, + "bg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "fillMode": "scale", + "height": 202, + "scale9Grid": "12,11,1,1", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 527, + "x": 26, + "y": 89, + "$t": "$eI" + }, + "lbTitle": { "size": 20, "stroke": 2, "text": "购买11级可以获得以下奖励!", "textColor": 15779990, "x": 170, "y": 58.34, "$t": "$eL" }, + "lbBuyDesc": { "size": 18, "stroke": 2, "text": "购买X级后战令可提升至XX级", "textColor": 15779990, "x": 28, "y": 304.34, "$t": "$eL" }, + "_Label1": { "size": 18, "stroke": 2, "text": "消耗:", "textColor": 15779990, "x": 345, "y": 339, "$t": "$eL" }, + "lbCost": { "size": 18, "text": "6660元宝", "textColor": 10586650, "x": 396, "y": 339, "$t": "$eL" }, + "btnSub": { "label": "", "width": 32, "x": 31, "y": 335, "$t": "$eB", "skinName": "ActivityWarGiftAdvGoodsViewSkin$Skin21" }, + "btnAdd": { "label": "", "x": 135, "y": 335, "$t": "$eB", "skinName": "ActivityWarGiftAdvGoodsViewSkin$Skin22" }, + "_Image2": { "anchorOffsetX": 0, "scale9Grid": "15,13,2,3", "source": "com_bg_kuang_3", "width": 66, "x": 66, "y": 334, "$t": "$eI" }, + "lbCount": { "horizontalCenter": -189, "size": 20, "text": "100", "textAlign": "center", "textColor": 10586650, "verticalCenter": 125, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 194, "width": 523, "x": 28, "y": 93, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 15, "$t": "$eTL" }, + "$sP": ["dragDropUI", "btnCannel", "btnBuy", "bg", "lbTitle", "lbBuyDesc", "lbCost", "btnSub", "btnAdd", "lbCount", "list"], + "$sC": "$eSk" + }, + "ActivityWarGiftAdvGoodsViewSkin$Skin19": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvGoodsViewSkin$Skin20": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvGoodsViewSkin$Skin21": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "com_jian", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "com_jian" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvGoodsViewSkin$Skin22": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "com_jia", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "com_jia" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml", + "$bs": { "height": 405, "width": 315, "$eleC": ["dragDropUI", "_Image1", "btnBuy1", "lbGoldDesc", "_Label1", "lbGoldCost", "closeBtn"] }, + "dragDropUI": { "anchorOffsetY": 0, "scale9Grid": "39,50,237,305", "source": "zl_bgk1", "x": 0, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "zl_pzp2", "touchEnabled": false, "x": 22, "y": 30, "$t": "$eI" }, + "btnBuy1": { "height": 46, "label": "购买", "scaleX": 1, "scaleY": 1, "width": 113, "x": 101, "y": 310, "$t": "$eB", "skinName": "ActivityWarGiftAdvViewSkin$Skin23" }, + "lbGoldDesc": { "lineSpacing": 5, "size": 18, "stroke": 2, "text": "", "width": 199, "x": 60, "y": 120, "$t": "$eL" }, + "_Label1": { "size": 18, "text": "售价:", "textColor": 14724725, "x": 94, "y": 280, "$t": "$eL" }, + "lbGoldCost": { "size": 18, "text": "6660元宝", "textColor": 14724725, "x": 144, "y": 280, "$t": "$eL" }, + "closeBtn": { "height": 57, "label": "", "right": -5, "top": 0, "width": 61, "$t": "$eB", "skinName": "ActivityWarGiftAdvViewSkin$Skin24" }, + "$sP": ["dragDropUI", "btnBuy1", "lbGoldDesc", "lbGoldCost", "closeBtn"], + "$sC": "$eSk" + }, + "ActivityWarGiftAdvViewSkin$Skin23": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "ActivityWarGiftAdvViewSkin$Skin24": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "ActivityWarGiftGoodsViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml", + "$bs": { "height": 452, "width": 576, "$eleC": ["dragDropUI", "_Image1", "btnCannel", "btnBuy", "bg", "lbTitle", "_Scroller1"] }, + "dragDropUI": { "currentState": "default12", "scaleX": 1, "scaleY": 1, "skinName": "UIViewFrameSkin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 335.67, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 557, "x": 8.6, "y": 45, "$t": "$eI" }, + "btnCannel": { "height": 46, "label": "取消", "scaleX": 1, "scaleY": 1, "visible": false, "width": 113, "x": 83, "y": 389, "$t": "$eB", "skinName": "ActivityWarGiftGoodsViewSkin$Skin25" }, + "btnBuy": { "height": 46, "label": "购买", "scaleX": 1, "scaleY": 1, "visible": false, "width": 113, "x": 368, "y": 389, "$t": "$eB", "skinName": "ActivityWarGiftGoodsViewSkin$Skin26" }, + "bg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "fillMode": "scale", + "height": 284, + "scale9Grid": "12,11,1,1", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 527, + "x": 26, + "y": 89, + "$t": "$eI" + }, + "lbTitle": { "horizontalCenter": 11, "size": 20, "stroke": 2, "text": "购买至尊凭证可以直接获得以下所有奖励!", "textAlign": "center", "textColor": 2682369, "verticalCenter": -153, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 278, "width": 523, "x": 28, "y": 93, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 15, "paddingLeft": 6, "$t": "$eTL" }, + "$sP": ["dragDropUI", "btnCannel", "btnBuy", "bg", "lbTitle", "list"], + "$sC": "$eSk" + }, + "ActivityWarGiftGoodsViewSkin$Skin25": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarGiftGoodsViewSkin$Skin26": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarItemViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml", + "$bs": { "height": 359, "width": 79, "$eleC": ["lbTitle", "itemCommon", "imgCommon", "groupCommon", "iconCommonLock", "itemGold", "imgGold", "groupGold", "iconGoldLock"] }, + "lbTitle": { "horizontalCenter": 3.5, "size": 20, "stroke": 2, "text": "一级", "textAlign": "center", "textColor": 15779990, "top": 18, "$t": "$eL" }, + "itemCommon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 60, "horizontalCenter": 0.5, "skinName": "ItemBaseSkin", "width": 60, "y": 84, "$t": "app.ItemBase" }, + "imgCommon": { "source": "zl_t_yihuode", "touchEnabled": false, "visible": false, "x": 5, "y": 86, "$t": "$eI" }, + "groupCommon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 5, "touchEnabled": false, "width": 6, "x": 38.5, "y": 110, "$t": "$eG" }, + "iconCommonLock": { "source": "zl_iconzw", "visible": false, "x": 10, "y": 84, "$t": "$eI" }, + "itemGold": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 60, "skinName": "ItemBaseSkin", "width": 60, "x": 10, "y": 223, "$t": "app.ItemBase" }, + "imgGold": { "source": "zl_t_yihuode", "touchEnabled": false, "visible": false, "x": 4, "y": 226, "$t": "$eI" }, + "groupGold": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 5, "touchEnabled": false, "width": 6, "x": 40.18, "y": 249.98, "$t": "$eG" }, + "iconGoldLock": { "source": "zl_iconzw", "visible": false, "x": 10, "y": 223, "$t": "$eI" }, + "$sP": ["lbTitle", "itemCommon", "imgCommon", "groupCommon", "iconCommonLock", "itemGold", "imgGold", "groupGold", "iconGoldLock"], + "$sC": "$eSk" + }, + "ActivityWarTaskItemViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml", + "$bs": { "height": 115, "width": 703, "$eleC": ["_Image1", "goButton", "redDot", "receiveImg", "lbTitle", "lbScoreName", "lbScore", "lbDesc"] }, + "_Image1": { "scale9Grid": "26,14,609,87", "source": "apay_liebiao_bg_png", "width": 703, "$t": "$eI" }, + "goButton": { "height": 46, "label": "前 往", "width": 113, "x": 567, "y": 38, "$t": "$eB", "skinName": "ActivityWarTaskItemViewSkin$Skin27" }, + "redDot": { "height": 20, "visible": false, "width": 20, "x": 662.06, "y": 39.43, "$t": "app.RedDotControl" }, + "receiveImg": { "source": "zl_t_yiwancheng", "visible": false, "x": 580, "y": 23, "$t": "$eI" }, + "lbTitle": { "left": 32, "size": 24, "stroke": 2, "text": "沙巴克攻城:100000/100000", "textColor": 14724725, "y": 21, "$t": "$eL" }, + "lbScoreName": { "left": 367, "size": 24, "stroke": 2, "text": "积分:", "textColor": 14724725, "y": 21, "$t": "$eL" }, + "lbScore": { "left": 435, "size": 24, "stroke": 2, "text": "1000", "textColor": 14724725, "y": 21, "$t": "$eL" }, + "lbDesc": { "size": 24, "stroke": 2, "text": "已连续登录5/5天", "textColor": 16742144, "x": 32, "y": 68, "$t": "$eL" }, + "$sP": ["goButton", "redDot", "receiveImg", "lbTitle", "lbScoreName", "lbScore", "lbDesc"], + "$sC": "$eSk" + }, + "ActivityWarTaskItemViewSkin$Skin27": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "bar3Skin": { + "$path": "resource/eui_skins/web/common/bar3Skin.exml", + "$bs": { "$eleC": ["thumb", "labelDisplay"] }, + "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "common_slider_t", "top": 0, "$t": "$eI" }, + "labelDisplay": { + "fontFamily": "Tahoma", + "horizontalCenter": 0, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "ActivityWarViewSkin": { + "$path": "resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml", + "$bs": { + "height": 690, + "width": 1027, + "$eleC": ["dragDropUI", "titleImg", "_Image1", "_Image2", "_Image3", "_Group1", "rewardDot", "taskDot", "group_award", "group_task", "group_shop", "btnClose"] + }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "titleImg": { "horizontalCenter": 5, "source": "zl_biaoti", "top": 55, "touchEnabled": false, "$t": "$eI" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 541, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 148, "x": 80, "y": 115, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 467, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 709, "x": 236, "y": 115, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 66, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 709, "x": 236, "y": 590, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "width": 147, "x": 79, "y": 117, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["rewardButton", "taskButton", "tabBarMenu", "shopButton"] }, + "_VerticalLayout2": { "gap": 0, "$t": "$eVL" }, + "rewardButton": { "height": 59, "label": "奖 励", "width": 147, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin28" }, + "taskButton": { "height": 59, "label": "任 务", "width": 147, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin29" }, + "tabBarMenu": { "anchorOffsetX": 0, "height": 0, "itemRendererSkinName": "ActivityWarButtonSkin", "visible": false, "width": 145, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "horizontalAlign": "center", "$t": "$eVL" }, + "shopButton": { "height": 59, "label": "商 店", "width": 147, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin30" }, + "rewardDot": { "height": 20, "visible": false, "width": 20, "x": 204, "y": 121, "$t": "app.RedDotControl" }, + "taskDot": { "height": 20, "visible": false, "width": 20, "x": 204, "y": 180, "$t": "app.RedDotControl" }, + "group_award": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 552, + "touchEnabled": false, + "width": 717, + "x": 230, + "y": 120, + "$t": "$eG", + "$eleC": ["_Image4", "_Group2", "_Group3", "btnLeft", "redDot", "btnRight", "lbTimer", "_Label1", "_Label2", "_Label3", "_Label4", "lbVoucherLv", "btnHelp", "_Image9", "pbTaskInt"] + }, + "_Image4": { "source": "zl_bg_png", "x": 6, "y": -2, "$t": "$eI" }, + "_Group2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 362, + "width": 709, + "x": 9, + "y": 55, + "$t": "$eG", + "$eleC": ["imageBlue", "imageRed", "_Image5", "_Image6", "_Image7", "imgGold", "listWar", "_Image8"] + }, + "imageBlue": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 143, "scaleX": -1, "source": "zl_hd_1", "width": 710, "x": 707, "y": 59, "$t": "$eI" }, + "imageRed": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 145, "scaleX": -1, "source": "zl_hd_2", "width": 710, "x": 707, "y": 204, "$t": "$eI" }, + "_Image5": { "source": "zl_xian_1", "width": 707, "x": -2, "y": 56.42, "$t": "$eI" }, + "_Image6": { "source": "zl_xian_1", "width": 707, "x": -2, "y": 201.42, "$t": "$eI" }, + "_Image7": { "source": "war_json.zl_p_1", "x": 21, "y": 89, "$t": "$eI" }, + "imgGold": { "source": "war_json.zl_p_2", "x": 21, "y": 224, "$t": "$eI" }, + "listWar": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 359, + "itemRendererSkinName": "ActivityWarItemViewSkin", + "width": 564, + "x": 131, + "y": 16, + "$t": "$eLs", + "layout": "_HorizontalLayout1", + "dataProvider": "_ArrayCollection1" + }, + "_HorizontalLayout1": { "gap": 3, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5", "_Object6", "_Object7"] }, + "_Object1": { "a": "null", "$t": "Object" }, + "_Object2": { "a": "null", "$t": "Object" }, + "_Object3": { "a": "null", "$t": "Object" }, + "_Object4": { "a": "null", "$t": "Object" }, + "_Object5": { "a": "null", "$t": "Object" }, + "_Object6": { "a": "null", "$t": "Object" }, + "_Object7": { "a": "null", "$t": "Object" }, + "_Image8": { "height": 362, "source": "zl_xian_2", "x": 134, "y": 0.66, "$t": "$eI" }, + "_Group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 54, + "x": 33, + "y": 477.66, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["btnActVoucher", "btnGetCredit", "btnFastBuy", "btnOnekeyGet"] + }, + "_HorizontalLayout2": { "gap": 68, "$t": "$eHL" }, + "btnActVoucher": { "height": 46, "label": "激活凭证", "width": 113, "x": 43, "y": 3, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin31" }, + "btnGetCredit": { "height": 46, "label": "获取积分", "width": 113, "x": 193, "y": 3, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin32" }, + "btnFastBuy": { "height": 46, "label": "快捷购买", "width": 113, "x": 396, "y": 3, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin33" }, + "btnOnekeyGet": { "height": 46, "label": "一键领取", "width": 113, "x": 599, "y": 3, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin34" }, + "btnLeft": { "label": "", "scaleX": 0.8, "scaleY": 0.8, "x": 6, "y": 235, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin35" }, + "redDot": { "height": 20, "visible": false, "width": 20, "x": 673.85, "y": 478.35, "$t": "app.RedDotControl" }, + "btnRight": { "label": "", "scaleX": 0.8, "scaleY": 0.8, "x": 688, "y": 235, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin36" }, + "lbTimer": { "size": 20, "stroke": 2, "text": "剩余时间:12天12时12分", "textColor": 15779990, "x": 68, "y": 22, "$t": "$eL" }, + "_Label1": { "bold": true, "size": 20, "stroke": 2, "text": "(本期活动结束后战令币不会被清零)", "textColor": 15007744, "x": 294, "y": 22, "$t": "$eL" }, + "_Label2": { "size": 20, "stroke": 2, "text": "凭证等级:", "textColor": 15779990, "x": 54, "y": 435, "$t": "$eL" }, + "_Label3": { "size": 20, "stroke": 2, "text": "当前积分:", "textColor": 15779990, "x": 215, "y": 435, "$t": "$eL" }, + "_Label4": { "size": 20, "stroke": 2, "text": "等级", "textColor": 15779990, "x": 90.9, "y": 85.98, "$t": "$eL" }, + "lbVoucherLv": { "size": 20, "stroke": 2, "text": "100", "textColor": 15779990, "x": 150, "y": 435, "$t": "$eL" }, + "btnHelp": { "label": "Button", "ruleId": "75", "x": 14.75, "y": 16.35, "$t": "app.RuleTipsButton" }, + "_Image9": { "source": "common_slider_bg", "x": 319, "y": 432, "$t": "$eI" }, + "pbTaskInt": { "skinName": "bar3Skin", "value": 50, "x": 321, "y": 435, "$t": "$ePB" }, + "group_task": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 552, + "touchEnabled": false, + "visible": false, + "width": 715, + "x": 230, + "y": 120, + "$t": "$eG", + "$eleC": ["scroller", "lbTaskDesc", "_Image10", "pbTask", "btnHelp0"] + }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 476, "width": 703, "x": 9, "y": 5, "$t": "$eS", "viewport": "list_task" }, + "list_task": { "itemRendererSkinName": "ActivityWarTaskItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout3", "dataProvider": "_ArrayCollection2" }, + "_VerticalLayout3": { "gap": 1, "$t": "$eVL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object8", "_Object9", "_Object10", "_Object11"] }, + "_Object8": { "null": "", "$t": "Object" }, + "_Object9": { "null": "", "$t": "Object" }, + "_Object10": { "null": "", "$t": "Object" }, + "_Object11": { "null": "", "$t": "Object" }, + "lbTaskDesc": { "right": 461, "size": 22, "stroke": 2, "text": "今日任务积分", "textColor": 15779990, "y": 500, "$t": "$eL" }, + "_Image10": { "source": "common_slider_bg", "x": 255, "y": 499, "$t": "$eI" }, + "pbTask": { "skinName": "bar3Skin", "value": 50, "width": 324, "x": 258, "y": 502, "$t": "$ePB" }, + "btnHelp0": { "label": "Button", "ruleId": "76", "x": 39, "y": 494, "$t": "app.RuleTipsButton" }, + "group_shop": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 535, "visible": false, "width": 709, "x": 236, "y": 120, "$t": "$eG", "$eleC": ["scrollerShop", "_Image11", "warNum"] }, + "scrollerShop": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 462, "width": 715, "$t": "$eS", "viewport": "gList" }, + "gList": { "height": 503, "itemRendererSkinName": "ShopItemViewSkin", "x": 3, "y": 0, "$t": "$eLs", "layout": "_TileLayout1", "dataProvider": "_ArrayCollection3" }, + "_TileLayout1": { + "horizontalAlign": "center", + "horizontalGap": 9, + "orientation": "rows", + "paddingLeft": 10, + "paddingTop": 10, + "requestedColumnCount": 3, + "verticalAlign": "middle", + "verticalGap": 6, + "$t": "$eTL" + }, + "_ArrayCollection3": { "$t": "eui.ArrayCollection", "source": ["_Object12", "_Object13", "_Object14", "_Object15", "_Object16", "_Object17", "_Object18", "_Object19", "_Object20"] }, + "_Object12": { "a": "null", "$t": "Object" }, + "_Object13": { "a": "null", "$t": "Object" }, + "_Object14": { "a": "null", "$t": "Object" }, + "_Object15": { "a": "null", "$t": "Object" }, + "_Object16": { "a": "null", "$t": "Object" }, + "_Object17": { "a": "null", "$t": "Object" }, + "_Object18": { "a": "null", "$t": "Object" }, + "_Object19": { "a": "null", "$t": "Object" }, + "_Object20": { "a": "null", "$t": "Object" }, + "_Image11": { "scaleX": 1, "scaleY": 1, "source": "main_zlb", "x": 34, "y": 483, "$t": "$eI" }, + "warNum": { "size": 20, "stroke": 2, "text": "56565", "textColor": 15064527, "x": 79, "y": 494, "$t": "$eL" }, + "btnClose": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "ActivityWarViewSkin$Skin37" }, + "$sP": [ + "dragDropUI", + "titleImg", + "rewardButton", + "taskButton", + "tabBarMenu", + "shopButton", + "rewardDot", + "taskDot", + "imageBlue", + "imageRed", + "imgGold", + "listWar", + "btnActVoucher", + "btnGetCredit", + "btnFastBuy", + "btnOnekeyGet", + "btnLeft", + "redDot", + "btnRight", + "lbTimer", + "lbVoucherLv", + "btnHelp", + "pbTaskInt", + "group_award", + "list_task", + "scroller", + "lbTaskDesc", + "pbTask", + "btnHelp0", + "group_task", + "gList", + "scrollerShop", + "warNum", + "group_shop", + "btnClose" + ], + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin28": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "labelDisplay", "name": "textColor", "value": 15779990 }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tab_01_1" }, + { "target": "labelDisplay", "name": "size", "value": 22 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin29": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "labelDisplay", "name": "textColor", "value": 15779990 }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tab_01_1" }, + { "target": "labelDisplay", "name": "size", "value": 22 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin30": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "labelDisplay", "name": "textColor", "value": 15779990 }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tab_01_1" }, + { "target": "labelDisplay", "name": "size", "value": 22 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin31": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin32": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin33": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin34": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin35": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "kf_lb_jt1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "kf_lb_jt1" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin36": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "kf_lb_jt2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "kf_lb_jt2" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWarViewSkin$Skin37": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "WarShopItemViewSkin": { + "$path": "resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml", + "$bs": { "height": 136, "width": 271, "$eleC": ["gp"] }, + "gp": { "height": 136, "width": 271, "$t": "$eG", "$eleC": ["bg", "_Image1", "_Image2", "shopItemNameLb", "surplusCountLb", "goodsItem", "countLb"] }, + "bg": { "source": "shop_bg1", "x": 0, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "shop_iconk", "x": 32, "y": 63, "$t": "$eI" }, + "_Image2": { "source": "shop_bg_xian", "width": 246, "x": 11, "y": 43, "$t": "$eI" }, + "shopItemNameLb": { "horizontalCenter": -4, "size": 22, "stroke": 2, "text": "绑定金币", "textColor": 15779990, "verticalCenter": -43.5, "$t": "$eL" }, + "surplusCountLb": { "height": 20, "width": 112, "x": 113, "y": 64, "$t": "$eG", "$eleC": ["numTxt", "numLb"] }, + "numTxt": { "horizontalCenter": -10, "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": 0, "width": 91, "x": 0, "y": 1, "$t": "$eL" }, + "numLb": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "width": 32, "x": 81, "y": 0.7, "$t": "$eL" }, + "goodsItem": { "source": "11027", "x": 32.33, "y": 63.67, "$t": "$eI" }, + "countLb": { "right": 182, "size": 18, "stroke": 1, "text": "10", "textColor": 14471870, "y": 105, "$t": "$eL" }, + "$sP": ["bg", "shopItemNameLb", "numTxt", "numLb", "surplusCountLb", "goodsItem", "countLb", "gp"], + "$sC": "$eSk" + }, + "ActivityWlelfareCardItemView": { + "$path": "resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml", + "$bs": { "width": 400, "$eleC": ["labelDisplay", "_Image1"] }, + "labelDisplay": { "anchorOffsetX": 0, "multiline": true, "size": 20, "text": "每天免费领取30000", "textColor": 5276922, "width": 364, "x": 33.98, "y": 0, "$t": "$eL" }, + "_Image1": { "source": "wlelfare_json.yk_dian", "x": 8, "y": 1, "$t": "$eI" }, + "$sP": ["labelDisplay"], + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin": { + "$path": "resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "bgImg1", "bgImg2", "btnClose", "imgTitle", "_Group2", "infoGrp", "tabScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 538, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 154, "x": 80, "y": 115, "$t": "$eI" }, + "bgImg1": { "alpha": 0.7, "height": 405, "scale9Grid": "18,15,4,3", "source": "flqd_bg0", "width": 707, "x": 239, "y": 115, "$t": "$eI" }, + "bgImg2": { "height": 96, "scale9Grid": "18,15,4,3", "source": "com_bg_kuang_6_png", "width": 707, "x": 239, "y": 557, "$t": "$eI" }, + "btnClose": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "ActivityWlelfareViewSkin$Skin38" }, + "imgTitle": { "horizontalCenter": -3.5, "scaleX": 1, "scaleY": 1, "source": "biaoti_fuli", "touchEnabled": false, "x": 238, "y": 55.31, "$t": "$eI" }, + "_Group2": { "height": 538, "touchEnabled": false, "width": 707, "x": 239, "y": 115, "$t": "$eG", "$eleC": ["group_10005", "group_10007", "group_10011", "group_yqs"] }, + "group_10005": { + "height": 538, + "width": 707, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["CalendaScroller", "bmpLb_curM", "tabItem", "_Scroller1", "btnSign", "btnGetGift", "imgYiGet", "redDotSign", "btnHelp0", "bmpLb_signNum"] + }, + "CalendaScroller": { "x": -2, "y": 2, "$t": "$eS", "viewport": "listCalenda" }, + "listCalenda": { "height": 403, "itemRendererSkinName": "SignItemViewSkin", "width": 705, "x": -2, "y": 2, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalAlign": "center", "horizontalGap": 5, "paddingLeft": 1, "verticalGap": 5, "$t": "$eTL" }, + "bmpLb_curM": { "anchorOffsetX": 0, "anchorOffsetY": 0, "font": "signNum_1_fnt", "height": 31, "text": "10月", "visible": false, "width": 79, "x": 29, "y": 38, "$t": "$eBL" }, + "tabItem": { "itemRendererSkinName": "ActWleFareTabSkin", "x": 2.66, "y": 409.68, "$t": "$eT", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 69.67, "width": 481.33, "x": 25.04, "y": 459.95, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 64.33, "itemRendererSkinName": "ItemBaseSkin", "width": 372, "x": -9, "y": 0, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "$t": "$eHL" }, + "btnSign": { "label": "签到", "skinName": "Btn9Skin", "visible": false, "x": 565, "y": 416, "$t": "$eB" }, + "btnGetGift": { "height": 46, "label": "领取奖励", "scaleX": 1, "scaleY": 1, "skinName": "Btn9Skin", "width": 113, "x": 551.66, "y": 483.68, "$t": "$eB" }, + "imgYiGet": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 68, "scaleX": 1, "scaleY": 1, "source": "apay_yilingqu", "width": 95, "x": 563.22, "y": 467.14, "$t": "$eI" }, + "redDotSign": { "height": 20, "visible": false, "width": 20, "x": 663.08, "y": 411.99, "$t": "app.RedDotControl" }, + "btnHelp0": { "label": "Button", "ruleId": "68", "scaleX": 1, "scaleY": 1, "x": 476.08, "y": 408.98, "$t": "app.RuleTipsButton" }, + "bmpLb_signNum": { "horizontalCenter": 255, "size": 18, "stroke": 2, "text": "本月已签到15天", "textColor": 16742144, "verticalCenter": 193, "$t": "$eL" }, + "group_10007": { + "height": 538, + "visible": false, + "width": 707, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "imgCardIcon", "imgMonthCardTitle", "imgMonthCardDay", "btnBuy", "lbDesc", "lbDay", "listCardDesc", "btnHelp"] + }, + "_Image2": { "source": "yk_bg_png", "width": 707, "$t": "$eI" }, + "_Image3": { "source": "wlelfare_json.yk_biaoqian_0", "x": 250.99, "y": 198.65, "$t": "$eI" }, + "imgCardIcon": { "source": "", "x": 231, "y": 46, "$t": "$eI" }, + "imgMonthCardTitle": { "source": "yk_biaoqian_1", "x": 289.98, "y": 192, "$t": "$eI" }, + "imgMonthCardDay": { "source": "wlelfare_json.yk_30tian2", "x": 619, "y": 222, "$t": "$eI" }, + "btnBuy": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 83, "label": "68元购买", "width": 180, "x": 261, "y": 459, "$t": "$eB", "skinName": "ActivityWlelfareViewSkin$Skin39" }, + "lbDesc": { "size": 20, "text": "购买月卡不计入首充", "textColor": 7558405, "visible": false, "x": 24, "y": 507, "$t": "$eL" }, + "lbDay": { "size": 20, "text": "剩余28天", "textColor": 1488128, "x": 546, "y": 508, "$t": "$eL" }, + "listCardDesc": { "anchorOffsetX": 0, "anchorOffsetY": 0, "verticalCenter": 27.5, "width": 504.55, "x": 105, "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection2" }, + "_VerticalLayout1": { "verticalAlign": "contentJustify", "$t": "$eVL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object6", "_Object7", "_Object8", "_Object9", "_Object10", "_Object11", "_Object12", "_Object13"] }, + "_Object6": { "null": "", "$t": "Object" }, + "_Object7": { "null": "", "$t": "Object" }, + "_Object8": { "null": "", "$t": "Object" }, + "_Object9": { "null": "", "$t": "Object" }, + "_Object10": { "null": "", "$t": "Object" }, + "_Object11": { "null": "", "$t": "Object" }, + "_Object12": { "null": "", "$t": "Object" }, + "_Object13": { "null": "", "$t": "Object" }, + "btnHelp": { "label": "Button", "ruleId": "19", "x": 17.67, "y": 14.43, "$t": "app.RuleTipsButton" }, + "group_10011": { "height": 538, "visible": false, "width": 707, "$t": "$eG", "$eleC": ["_Image4", "btnPaste", "btnGetAward", "InputCode"] }, + "_Image4": { "height": 538, "source": "fl_jhm_bg_png", "width": 707, "$t": "$eI" }, + "btnPaste": { "label": "", "visible": false, "x": 555, "y": 334.33, "$t": "$eB", "skinName": "ActivityWlelfareViewSkin$Skin40" }, + "btnGetAward": { "label": "", "x": 363, "y": 412, "$t": "$eB", "skinName": "ActivityWlelfareViewSkin$Skin41" }, + "InputCode": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 284, + "x": 259.65, + "y": 338.99, + "$t": "$eET" + }, + "group_yqs": { + "height": 538, + "visible": false, + "width": 707, + "$t": "$eG", + "$eleC": [ + "_Image5", + "btnHelp_yqs", + "_Group1", + "cash_effGrp", + "_Image6", + "cash_txtCondition", + "cash_txtAward", + "cash_txtCost", + "cash_imgAward", + "cast_imgCost", + "cash_txtTime", + "btnCash", + "cash_redPoint" + ] + }, + "_Image5": { "source": "yqs_bg_png", "$t": "$eI" }, + "btnHelp_yqs": { "label": "Button", "ruleId": "91", "x": 660, "y": 20, "$t": "app.RuleTipsButton" }, + "_Group1": { "x": 175.5, "y": 30, "$t": "$eG", "$eleC": ["cash_imgTree"] }, + "cash_imgTree": { "anchorOffsetX": 160, "anchorOffsetY": 330, "source": "btnbg_png", "x": 160, "y": 330, "$t": "$eI" }, + "cash_effGrp": { "horizontalCenter": -10, "verticalCenter": 70, "$t": "$eG" }, + "_Image6": { "source": "yqs_wz", "x": 95, "y": 40, "$t": "$eI" }, + "cash_txtCondition": { "size": 18, "stroke": 2, "text": "官职达到六品开启摇钱树功能", "textAlign": "center", "textColor": 15064527, "width": 250, "x": 229, "y": 412, "$t": "$eL" }, + "cash_txtAward": { "size": 17, "stroke": 2, "text": "可获得: 3300000(有10%的几率暴击)", "textColor": 15064527, "x": 250, "y": 414, "$t": "$eL" }, + "cash_txtCost": { "size": 17, "stroke": 2, "text": "消耗: 300(优先消耗摇钱树叶)", "textColor": 15064527, "x": 250, "y": 510, "$t": "$eL" }, + "cash_imgAward": { "source": "icon_bangding", "x": 311, "y": 402, "$t": "$eI" }, + "cast_imgCost": { "source": "icon_yuanbao", "x": 291, "y": 499, "$t": "$eI" }, + "cash_txtTime": { "size": 17, "stroke": 2, "text": "剩余次数:10", "textColor": 15064527, "x": 440, "y": 467, "$t": "$eL" }, + "btnCash": { "horizontalCenter": 0, "label": "", "y": 444, "$t": "$eB", "skinName": "ActivityWlelfareViewSkin$Skin42" }, + "cash_redPoint": { "horizontalCenter": 50, "visible": false, "y": 444, "$t": "app.RedDotControl" }, + "infoGrp": { "height": 538, "touchEnabled": false, "width": 707, "x": 239, "y": 115, "$t": "$eG", "$eleC": ["_Image7"] }, + "_Image7": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "17,18,2,4", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "tabScroller": { "height": 536, "width": 147, "x": 83, "y": 118, "$t": "$eS", "viewport": "tabBarMenu" }, + "tabBarMenu": { "itemRendererSkinName": "ActivityPayButtonSkin", "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": [ + "dragDropUI", + "bgImg1", + "bgImg2", + "btnClose", + "imgTitle", + "listCalenda", + "CalendaScroller", + "bmpLb_curM", + "tabItem", + "itemList", + "btnSign", + "btnGetGift", + "imgYiGet", + "redDotSign", + "btnHelp0", + "bmpLb_signNum", + "group_10005", + "imgCardIcon", + "imgMonthCardTitle", + "imgMonthCardDay", + "btnBuy", + "lbDesc", + "lbDay", + "listCardDesc", + "btnHelp", + "group_10007", + "btnPaste", + "btnGetAward", + "InputCode", + "group_10011", + "btnHelp_yqs", + "cash_imgTree", + "cash_effGrp", + "cash_txtCondition", + "cash_txtAward", + "cash_txtCost", + "cash_imgAward", + "cast_imgCost", + "cash_txtTime", + "btnCash", + "cash_redPoint", + "group_yqs", + "infoGrp", + "tabBarMenu", + "tabScroller" + ], + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin$Skin38": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin$Skin39": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "yk_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 4, "size": 20, "textColor": 2031616, "verticalCenter": -2, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "yk_btn" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "yk_btn" }] } + }, + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin$Skin40": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fl_jhm_btn_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fl_jhm_btn_2" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin$Skin41": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fl_jhm_btn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fl_jhm_btn_1" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityWlelfareViewSkin$Skin42": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "yqs_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "yqs_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "SignItemViewSkin": { + "$path": "resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml", + "$bs": { "height": 95, "width": 96, "$eleC": ["bmpLb", "_Image1", "imgIcon", "itemCount", "curDay", "lastImg", "imgToday", "imgYiqiandao", "signLab"] }, + "bmpLb": { "anchorOffsetX": 0, "anchorOffsetY": 0, "font": "signNum_2_fnt", "horizontalCenter": -27, "text": "16", "verticalCenter": 7.5, "visible": false, "$t": "$eBL" }, + "_Image1": { "alpha": 0.9, "bottom": 0, "left": 0, "right": 0, "scale9Grid": "24,23,2,3", "source": "flqd_bg1", "top": 0, "$t": "$eI" }, + "imgIcon": { "horizontalCenter": 0, "source": "13398", "verticalCenter": 0, "$t": "$eI" }, + "itemCount": { "bottom": 5, "right": 5, "size": 16, "stroke": 2, "text": "20", "textColor": 15064527, "$t": "$eL" }, + "curDay": { "left": 5, "size": 16, "stroke": 2, "text": "12月8号", "textColor": 15064527, "top": 7, "visible": false, "$t": "$eL" }, + "lastImg": { "bottom": 2, "left": 2, "right": 2, "scale9Grid": "21,23,2,2", "source": "flqd_bg2", "top": 2, "$t": "$eI" }, + "imgToday": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "28,24,3,6", "source": "flqd_bg3", "top": 0, "$t": "$eI" }, + "imgYiqiandao": { "horizontalCenter": -31, "rotation": -45, "scaleX": 0.7, "scaleY": 0.7, "source": "flqd_qd1", "verticalCenter": -29.5, "$t": "$eI" }, + "signLab": { "horizontalCenter": 0, "source": "flqd_djqd", "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "$sP": ["bmpLb", "imgIcon", "itemCount", "curDay", "lastImg", "imgToday", "imgYiqiandao", "signLab"], + "$sC": "$eSk" + }, + "Btn26Skin": { + "$path": "resource/eui_skins/web/common/Btn26Skin.exml", + "$bs": { "height": 56, "width": 137, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tq_btn", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tq_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Image1", "name": "verticalCenter", "value": 0 } + ] + } + }, + "$sC": "$eSk" + }, + "Fuli2144SuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "qqLabel", "lab"] }, + "_Image1": { "source": "banner_2144vip", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_2144vip_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 745, "y": 445, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 469, "y": 455, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 46, "y": 506, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "qqLabel", "lab"], + "$sC": "$eSk" + }, + "Btn0Skin": { + "$path": "resource/eui_skins/web/Btn0Skin.exml", + "$bs": { "minHeight": 25, "minWidth": 25, "$eleC": ["iconDisplay"] }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleX", "value": 0.98 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "iconDisplay", "name": "alpha", "value": 0.5 }] } + }, + "$sC": "$eSk" + }, + "Fuli360AttestationWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "titleImg", "closeBtn", "infoGrp", "btnScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 544, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 185, "x": 80, "y": 115, "$t": "$eI" }, + "_Image2": { "height": 544, "scale9Grid": "18,15,4,3", "source": "com_bg_kuang_6_png", "width": 675, "x": 270, "y": 115, "$t": "$eI" }, + "titleImg": { "horizontalCenter": 5.5, "source": "biaoti_smrz", "top": 52, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "Fuli360AttestationWinSkin$Skin43" }, + "infoGrp": { "height": 540, "touchEnabled": false, "width": 675, "x": 270, "y": 117, "$t": "$eG", "$eleC": ["_Image3", "descLab", "itemList", "getBtn", "redPoint", "receiveImg"] }, + "_Image3": { "source": "bg_360smrzlb_png", "$t": "$eI" }, + "descLab": { + "lineSpacing": 5, + "size": 20, + "stroke": 1, + "text": "系统检测到您还没有进行实名制认证,根据国家相关政策规定,网游用户必须进行实名制认证。请您尽快完成实名认证,否则将会影响您的正常游戏体验及收益。现在完成实名认证还可以领取实名礼包。", + "textColor": 15064527, + "width": 570, + "x": 50, + "y": 110, + "$t": "$eL" + }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 105, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 463, "$t": "$eB" }, + "redPoint": { "x": 388, "y": 461, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 16, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "btnScroller": { "height": 536, "width": 185, "x": 80, "y": 118, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "FuliLuDaShiGiftTabSkin2", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": ["dragDropUI", "titleImg", "closeBtn", "descLab", "itemList", "getBtn", "redPoint", "receiveImg", "infoGrp", "tabBar", "btnScroller"], + "$sC": "$eSk" + }, + "Fuli360AttestationWinSkin$Skin43": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuLi360WinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml", + "$bs": { "$eleC": ["_Image1", "descLab", "btnClose", "btnGetGfit", "redPoint", "_Group1"] }, + "_Image1": { "source": "bg_360dawanjia_png", "touchEnabled": false, "$t": "$eI" }, + "descLab": { + "horizontalCenter": 0.5, + "size": 18, + "text": "大玩家是360游戏中心的VIP高级用户,在享受游戏给您带来快乐的同时,更享受诸多特权及优质的服务", + "textColor": 15064527, + "width": 460, + "y": 95, + "$t": "$eL" + }, + "btnClose": { "label": "", "scaleX": 0.8, "scaleY": 0.8, "x": 500, "y": 23, "$t": "$eB", "skinName": "FuLi360WinSkin$Skin44" }, + "btnGetGfit": { "height": 41, "horizontalCenter": 0.5, "label": "", "width": 142, "y": 240, "$t": "$eB", "skinName": "FuLi360WinSkin$Skin45" }, + "redPoint": { "x": 353, "y": 235, "$t": "app.RedDotControl" }, + "_Group1": { "horizontalCenter": 0.5, "y": 160, "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 20, "horizontalAlign": "center", "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "$sP": ["descLab", "btnClose", "btnGetGfit", "redPoint", "itemList"], + "$sC": "$eSk" + }, + "FuLi360WinSkin$Skin44": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "FuLi360WinSkin$Skin45": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_lijilingqu", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_lijilingqu" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_lijilingqu" }] } + }, + "$sC": "$eSk" + }, + "Fuli37WinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "btnScroller", "infoGroup", "bannerGroup", "infoGroup2"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": -0.5, "source": "biaoti_37fulidating", "touchEnabled": false, "x": 238, "y": 59, "$t": "$eI" }, + "_Image2": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "_Image3": { "height": 542, "scale9Grid": "18,15,3,4", "source": "com_bg_kuang_6_png", "width": 670, "x": 278, "y": 116, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "Fuli37WinSkin$Skin46" }, + "btnScroller": { "height": 536, "width": 185, "x": 85, "y": 119, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { "height": 540, "touchEnabled": false, "width": 667, "x": 281, "y": 117, "$t": "$eG" }, + "bannerGroup": { "height": 145, "touchEnabled": false, "width": 660, "x": 284, "y": 116, "$t": "$eG", "$eleC": ["_Image4", "descLab1", "descLab2", "descLab3"] }, + "_Image4": { "source": "banner_37vip", "$t": "$eI" }, + "descLab1": { "bottom": 10, "size": 16, "stroke": 1, "text": "您的超玩会员等级为:", "textColor": 2682369, "x": 20, "$t": "$eL" }, + "descLab2": { "bottom": 10, "size": 16, "stroke": 1, "text": "成为vip", "textColor": 2682369, "x": 220, "$t": "$eL" }, + "descLab3": { "bottom": 10, "right": 20, "size": 16, "stroke": 1, "text": "成为vip", "textColor": 2682369, "$t": "$eL" }, + "infoGroup2": { "height": 395, "touchEnabled": false, "width": 667, "x": 281, "y": 262, "$t": "$eG" }, + "$sP": ["dragDropUI", "closeBtn", "tabBar", "btnScroller", "infoGroup", "descLab1", "descLab2", "descLab3", "bannerGroup", "infoGroup2"], + "$sC": "$eSk" + }, + "Fuli37WinSkin$Skin46": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "Fuli37BindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml", + "$bs": { "height": 540, "width": 667, "$eleC": ["_Image1", "bindingBtn", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_4366shoujilibao_png", "verticalCenter": 0, "$t": "$eI" }, + "bindingBtn": { "height": 56, "icon": "txt_bangdingshouji", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 71, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 28, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["bindingBtn", "getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "Fuli37IndulgeGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml", + "$bs": { "height": 540, "width": 667, "$eleC": ["_Image1", "indulgeBtn", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_4366renzhenglibao_png", "verticalCenter": 0, "$t": "$eI" }, + "indulgeBtn": { "height": 56, "icon": "btnt_txfcm", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 71, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 28, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["indulgeBtn", "getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "Fuli37LevelGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml", + "$bs": { "height": 395, "width": 667, "$eleC": ["_Scroller1"] }, + "_Scroller1": { "height": 395, "scrollPolicyH": "off", "width": 667, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "FuliLuDaShiLevelGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "D": "null", "$t": "Object" }, + "_Object2": { "D": "null", "$t": "Object" }, + "_Object3": { "D": "null", "$t": "Object" }, + "$sP": ["list"], + "$sC": "$eSk" + }, + "Fuli37MicroGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml", + "$bs": { "height": 540, "width": 667, "$eleC": ["_Image1", "microDownBtn", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_37weiduan_png", "verticalCenter": 0, "$t": "$eI" }, + "microDownBtn": { "height": 56, "icon": "txt_djxz", "label": "下载微端", "width": 137, "x": 265, "y": 450, "$t": "$eB", "skinName": "Fuli37MicroGiftSkin$Skin47" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 87, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 28, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["microDownBtn", "getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "Fuli37MicroGiftSkin$Skin47": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tq_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "下载微端", "textColor": 15655172, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "FuLi4366ItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml", + "$bs": { "height": 78, "$eleC": ["ItemData", "itemName"] }, + "ItemData": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "top": 0, "$t": "app.ItemBase" }, + "itemName": { "bottom": 0, "horizontalCenter": 0, "size": 15, "stroke": 2, "text": "道具名称", "textColor": 15064527, "$t": "$eL" }, + "$sP": ["ItemData", "itemName"], + "$sC": "$eSk" + }, + "FuLi4366MicroWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml", + "$bs": { "$eleC": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"] }, + "dragDropUI": { "source": "weiduan_denglu_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 141, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 75, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveImg": { "horizontalCenter": 141, "source": "apay_yilingqu", "verticalCenter": 75, "$t": "$eI" }, + "receiveBtn": { "height": 62, "label": "", "width": 144, "x": 573, "y": 413, "$t": "$eB", "skinName": "FuLi4366MicroWinSkin$Skin48" }, + "microDownBtn": { "height": 62, "label": "", "width": 144, "x": 573, "y": 413, "$t": "$eB", "skinName": "FuLi4366MicroWinSkin$Skin49" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 33, "$t": "$eB", "skinName": "FuLi4366MicroWinSkin$Skin50" }, + "redPoint": { "visible": false, "x": 691, "y": 414, "$t": "app.RedDotControl" }, + "$sP": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"], + "$sC": "$eSk" + }, + "FuLi4366MicroWinSkin$Skin48": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuLi4366MicroWinSkin$Skin49": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "jiangli_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "jiangli_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "jiangli_bt" }] } + }, + "$sC": "$eSk" + }, + "FuLi4366MicroWinSkin$Skin50": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuLi4366WinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "_Image2", "infoGroup", "btnScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuLi4366WinSkin$Skin51" }, + "_Image2": { "horizontalCenter": -0.5, "source": "biaoti_4366", "touchEnabled": false, "x": 238, "y": 57.67, "$t": "$eI" }, + "infoGroup": { "height": 542, "touchEnabled": false, "width": 667, "x": 281, "y": 116, "$t": "$eG", "$eleC": ["_Image3", "grp0", "grp1", "grp2", "grp3", "grp4"] }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "18,15,3,4", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "grp0": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "$eleC": ["_Image4", "InputCode", "wxBuyBtn", "wxItemData"] }, + "_Image4": { "horizontalCenter": 0, "source": "bg_4366vxlibao_png", "verticalCenter": 0, "$t": "$eI" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 78, + "y": 421, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 199.67, "y": 465.95, "$t": "$eB" }, + "wxItemData": { "skinName": "ItemBaseSkin", "x": 550, "y": 425, "$t": "app.ItemBase" }, + "grp1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image5", "phoneBuyBtn", "phoneItemList", "redPoint1"] }, + "_Image5": { "horizontalCenter": 0, "source": "bg_4366shoujilibao_png", "verticalCenter": 0, "$t": "$eI" }, + "phoneBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 284.67, "y": 447.95, "$t": "$eB" }, + "phoneItemList": { "horizontalCenter": 1.5, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 71, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint1": { "visible": false, "x": 409, "y": 445, "$t": "app.RedDotControl" }, + "grp2": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image6", "cardBuyBtn", "cardItemList", "redPoint2"] }, + "_Image6": { "horizontalCenter": 0, "source": "bg_4366renzhenglibao_png", "verticalCenter": 0, "$t": "$eI" }, + "cardBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 283.67, "y": 447.95, "$t": "$eB" }, + "cardItemList": { "horizontalCenter": 1.5, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 71, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": 20, "$t": "$eHL" }, + "redPoint2": { "scaleX": 1, "scaleY": 1, "visible": false, "x": 407, "y": 446, "$t": "app.RedDotControl" }, + "grp3": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image7", "loginItemScroller"] }, + "_Image7": { "horizontalCenter": -0.5, "source": "banner_4366", "top": 3, "$t": "$eI" }, + "loginItemScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 381, "scrollPolicyH": "off", "width": 658.5, "x": 4, "y": 158, "$t": "$eS", "viewport": "loginItemList" }, + "loginItemList": { "itemRendererSkinName": "YYLobbyPrivilegesGiftItemSkin", "$t": "$eLs" }, + "grp4": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image8", "giftTips", "addGroupBtn"] }, + "_Image8": { "horizontalCenter": -0.5, "source": "bg_4366jqfuli_png", "top": 3, "$t": "$eI" }, + "giftTips": { "alpha": 0, "x": 69, "y": 334, "$t": "$eG", "$eleC": ["_Rect1"] }, + "_Rect1": { "height": 150, "width": 300, "$t": "$eR" }, + "addGroupBtn": { "height": 64, "icon": "4366_jqfulibt", "label": "点击复制QQ群号码", "width": 178, "x": 455, "y": 448, "$t": "$eB", "skinName": "FuLi4366WinSkin$Skin52" }, + "btnScroller": { "height": 536, "width": 185, "x": 85.61, "y": 117.3, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": [ + "dragDropUI", + "closeBtn", + "InputCode", + "wxBuyBtn", + "wxItemData", + "grp0", + "phoneBuyBtn", + "phoneItemList", + "redPoint1", + "grp1", + "cardBuyBtn", + "cardItemList", + "redPoint2", + "grp2", + "loginItemList", + "loginItemScroller", + "grp3", + "giftTips", + "addGroupBtn", + "grp4", + "infoGroup", + "tabBar", + "btnScroller" + ], + "$sC": "$eSk" + }, + "FuLi4366WinSkin$Skin51": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuLi4366WinSkin$Skin52": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "4366_jqfulibt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "4366_jqfulibt" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "VIP4366CodeSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml", + "$bs": { "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.3, "bottom": 0, "left": 0, "right": 0, "scale9Grid": "1,1,2,2", "source": "dialog_mask", "top": 0, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "horizontalCenter": 0, "top": 227, "width": 420, "$t": "$eG", "$eleC": ["bg", "titleLabel", "_Image1", "dialogCloseBtn"] }, + "bg": { "scale9Grid": "53,71,320,148", "scaleX": 1, "scaleY": 1, "source": "bg_tipstc2_png", "visible": true, "x": 0, "y": -2, "$t": "$eI" }, + "titleLabel": { + "anchorOffsetX": 0, + "scaleX": 1, + "scaleY": 1, + "size": 20, + "stroke": 2, + "text": "vip客服QQ二维码", + "textAlign": "center", + "textColor": 13682838, + "touchEnabled": false, + "x": 132, + "y": 14, + "$t": "$eL" + }, + "_Image1": { "scaleX": 0.7, "scaleY": 0.7, "source": "qqcode_png", "x": 130, "y": 57, "$t": "$eI" }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 405, "y": -10, "$t": "$eB", "skinName": "VIP4366CodeSkin$Skin53" }, + "$sP": ["dialogMask", "bg", "titleLabel", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "VIP4366CodeSkin$Skin53": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "VIP4366Skin": { + "$path": "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "lab2", "qqLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_4366vip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_4366vip", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_4366vip_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "VIP4366Skin$Skin54" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 513, "y": 519, "$t": "$eB" }, + "codeBtn": { "height": 56, "icon": "t_erweima", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 724, "y": 519, "$t": "$eB" }, + "lab": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 594, "$t": "$eL" }, + "lab2": { "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 625, "$t": "$eL" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 557, "y": 476, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "lab2", "qqLabel"], + "$sC": "$eSk" + }, + "VIP4366Skin$Skin54": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "Fuli7GameVipWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "lab", "lab2", "qqLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_chaojivip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_7youvip_png", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_7youjqfuli_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "Fuli7GameVipWinSkin$Skin55" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 610, "y": 519, "$t": "$eB" }, + "lab": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 594, "$t": "$eL" }, + "lab2": { "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 625, "$t": "$eL" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 587, "y": 476, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "lab", "lab2", "qqLabel"], + "$sC": "$eSk" + }, + "Fuli7GameVipWinSkin$Skin55": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "Fuli7GameWXGiftWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "closeBtn", "InputCode", "wxBuyBtn"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": -0.5, "source": "biaoti_weixinlibao", "touchEnabled": false, "x": 238, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "wx_bg_7youxi_png", "x": 80, "y": 114, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "Fuli7GameWXGiftWinSkin$Skin56" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 332, + "y": 369, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 453.67, "y": 412.95, "$t": "$eB" }, + "$sP": ["dragDropUI", "closeBtn", "InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "Fuli7GameWXGiftWinSkin$Skin56": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliFeihuoSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "qqLabel", "lab"] }, + "_Image1": { "source": "banner_feihuo_png", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_feihuo_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 735, "y": 449, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 456, "y": 458, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 351, "y": 506, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "qqLabel", "lab"], + "$sC": "$eSk" + }, + "Btn31Skin": { + "$path": "resource/eui_skins/web/common/Btn31Skin.exml", + "$bs": { "height": 67, "width": 144, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "horizontalCenter": -1, "source": "kf_kftz_btn", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0.5, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "FuliGame2BindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml", + "$bs": { "height": 433, "width": 758, "$eleC": ["_Image1", "itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"] }, + "_Image1": { "source": "bg_wanshanziliao_png", "$t": "$eI" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 70, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "bindingBtn": { "icon": "btnt_qwyz", "label": "", "skinName": "Btn31Skin", "x": 307, "y": 354, "$t": "$eB" }, + "getBtn": { "height": 62, "label": "", "width": 144, "x": 307, "y": 356, "$t": "$eB", "skinName": "FuliGame2BindingGiftSkin$Skin57" }, + "redPoint": { "x": 430, "y": 361, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 111, "horizontalCenter": 0.5, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliGame2BindingGiftSkin$Skin57": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliIqiyiQQGroupViewSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml", + "$bs": { "height": 509, "width": 901, "$eleC": ["dragDropUI", "rewards", "getBtn", "closeBtn"] }, + "dragDropUI": { "source": "bg_aiqiyiQQqun_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 167.5, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 61.5, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "getBtn": { "horizontalCenter": 168.5, "label": "", "y": 403, "$t": "$eB", "skinName": "FuliIqiyiQQGroupViewSkin$Skin58" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 800, "y": 35, "$t": "$eB", "skinName": "FuliIqiyiQQGroupViewSkin$Skin59" }, + "$sP": ["dragDropUI", "rewards", "getBtn", "closeBtn"], + "$sC": "$eSk" + }, + "FuliIqiyiQQGroupViewSkin$Skin58": { + "$bs": { "$eleC": ["_Image1", "_Image2", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_ljjrgfqqq", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0.5, "source": "btnt_ljjrgfqqq", "verticalCenter": 0.5, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image2", "name": "scaleX", "value": 0.95 }, + { "target": "_Image2", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "FuliIqiyiQQGroupViewSkin$Skin59": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliIqiyiSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "qqLabel", "lab"] }, + "_Image1": { "source": "banner_aiqiyivip", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_aiqqiyivip_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 605, "y": 486, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 520, "y": 442, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 41, "y": 516, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "qqLabel", "lab"], + "$sC": "$eSk" + }, + "FuliIqiyiWeixinGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "itemData", "InputCode", "wxBuyBtn"] }, + "_Image1": { "source": "bg_aqiyiweixin_png", "$t": "$eI" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 724, "y": 422, "$t": "app.ItemBase" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 253, + "y": 255, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 383.67, "y": 298.95, "$t": "$eB" }, + "$sP": ["itemData", "InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "Ku25BoxRewardsWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "closeBtn", "btnScroller", "infoGroup"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "biaoti_ku25hezifuli", "top": 50, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "Ku25BoxRewardsWinSkin$Skin60" }, + "btnScroller": { "height": 536, "width": 185, "x": 85.61, "y": 117.3, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { "height": 542, "touchEnabled": false, "width": 667, "x": 281, "y": 116, "$t": "$eG", "$eleC": ["_Image3", "grp0", "grp1", "grp2", "grp3", "grp4"] }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "18,15,3,4", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "grp0": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image4", "boxRewards", "downBtn", "receiveBtn", "boxRewardRed"] }, + "_Image4": { "horizontalCenter": 0, "source": "bg_ku25hezifuli_png", "verticalCenter": 0, "$t": "$eI" }, + "boxRewards": { "horizontalCenter": 2.5, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 67, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 15, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "downBtn": { "bottom": 35, "height": 56, "horizontalCenter": 0, "icon": "txt_xzhz", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn26Skin", "width": 137, "$t": "$eB" }, + "receiveBtn": { "bottom": 35, "height": 56, "horizontalCenter": 0, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "$t": "$eB" }, + "boxRewardRed": { "x": 388, "y": 449, "$t": "app.RedDotControl" }, + "grp1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image5", "boxLoginScroller"] }, + "_Image5": { "horizontalCenter": 0, "source": "banner_ku25hezidenglu1", "top": 0, "$t": "$eI" }, + "boxLoginScroller": { "height": 387, "scaleX": 1, "scaleY": 1, "width": 668, "y": 147, "$t": "$eS", "viewport": "boxLoginList" }, + "boxLoginList": { "itemRendererSkinName": "YYLobbyPrivilegesGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "paddingLeft": 5, "paddingTop": 3, "$t": "$eVL" }, + "grp2": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image6", "loginPayScroller"] }, + "_Image6": { "horizontalCenter": 0, "source": "banner_ku25hezidenglu2", "top": 0, "$t": "$eI" }, + "loginPayScroller": { "height": 387, "scaleX": 1, "scaleY": 1, "scrollPolicyH": "off", "width": 668, "y": 147, "$t": "$eS", "viewport": "loginPayList" }, + "loginPayList": { "itemRendererSkinName": "OpenServerSportsItemSkin", "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "paddingLeft": 5, "paddingTop": 3, "$t": "$eVL" }, + "grp3": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image7", "InputCode", "wxItemData", "wxCodeBtn"] }, + "_Image7": { "horizontalCenter": 0, "source": "bg_ku25weixinlibao_png", "verticalCenter": 0, "$t": "$eI" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 78, + "y": 421, + "$t": "$eET" + }, + "wxItemData": { "skinName": "ItemBaseSkin", "x": 550, "y": 425, "$t": "app.ItemBase" }, + "wxCodeBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 199.67, "y": 465.95, "$t": "$eB" }, + "grp4": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image8", "cardList", "cardBtn", "cardRed"] }, + "_Image8": { "source": "bg_ldssjlbrzlb_png", "$t": "$eI" }, + "cardList": { "horizontalCenter": 21, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 65, "$t": "$eLs", "layout": "_HorizontalLayout2", "dataProvider": "_ArrayCollection2" }, + "_HorizontalLayout2": { "gap": 16, "$t": "$eHL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object5", "_Object6", "_Object7", "_Object8"] }, + "_Object5": { "null": "", "$t": "Object" }, + "_Object6": { "null": "", "$t": "Object" }, + "_Object7": { "null": "", "$t": "Object" }, + "_Object8": { "null": "", "$t": "Object" }, + "cardBtn": { "bottom": 35, "height": 56, "horizontalCenter": 0, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "$t": "$eB" }, + "cardRed": { "x": 387, "y": 450, "$t": "app.RedDotControl" }, + "$sP": [ + "dragDropUI", + "closeBtn", + "tabBar", + "btnScroller", + "boxRewards", + "downBtn", + "receiveBtn", + "boxRewardRed", + "grp0", + "boxLoginList", + "boxLoginScroller", + "grp1", + "loginPayList", + "loginPayScroller", + "grp2", + "InputCode", + "wxItemData", + "wxCodeBtn", + "grp3", + "cardList", + "cardBtn", + "cardRed", + "grp4", + "infoGroup" + ], + "$sC": "$eSk" + }, + "Ku25BoxRewardsWinSkin$Skin60": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "Ku25SuperVipSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "qqLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_chaojivip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_ku25vip", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_ku25vip_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "Ku25SuperVipSkin$Skin61" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 813, "y": 514, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "357754800", "textColor": 15064527, "x": 545, "y": 523, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "qqLabel"], + "$sC": "$eSk" + }, + "Ku25SuperVipSkin$Skin61": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliKuaiwanSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "qqLabel", "lab"] }, + "_Image1": { "source": "banner_kuaiwan_png", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_2144vip_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 745, "y": 445, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 469, "y": 455, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 46, "y": 506, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "qqLabel", "lab"], + "$sC": "$eSk" + }, + "FuliKuaiwanWeixinGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "itemData", "InputCode", "wxBuyBtn"] }, + "_Image1": { "source": "bg_kuaiwanvip_png", "$t": "$eI" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 724, "y": 422, "$t": "app.ItemBase" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 253, + "y": 255, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 383.67, "y": 298.95, "$t": "$eB" }, + "$sP": ["itemData", "InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "FuliLuDaShiGiftWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "_Image6", "closeBtn", "btnScroller", "btnScroller2", "infoGroup"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 140, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 865, "x": 81, "y": 112, "$t": "$eI" }, + "_Image2": { "height": 39, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 865, "x": 81, "y": 254, "$t": "$eI" }, + "_Image3": { "height": 362, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 81, "y": 295, "$t": "$eI" }, + "_Image4": { "height": 362, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 669, "x": 276, "y": 295, "$t": "$eI" }, + "_Image5": { "source": "banner_ldsfl", "x": 84, "y": 114, "$t": "$eI" }, + "_Image6": { "horizontalCenter": -0.5, "source": "biaoti_ldsfl", "touchEnabled": false, "x": 238, "y": 52, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuliLuDaShiGiftWinSkin$Skin62" }, + "btnScroller": { "height": 30, "width": 800, "x": 100, "y": 258, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "FuliLuDaShiGiftTabSkin", "width": 200, "$t": "$eT", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": -2, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2"] }, + "_Object1": { "d": "null", "$t": "Object" }, + "_Object2": { "d": "null", "$t": "Object" }, + "btnScroller2": { "height": 355, "width": 185, "x": 84, "y": 303, "$t": "$eS", "viewport": "tabBar2" }, + "tabBar2": { "height": 200, "itemRendererSkinName": "FuliLuDaShiGiftTabSkin2", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { "height": 362, "touchEnabled": false, "width": 669, "x": 276, "y": 295, "$t": "$eG" }, + "$sP": ["dragDropUI", "closeBtn", "tabBar", "btnScroller", "tabBar2", "btnScroller2", "infoGroup"], + "$sC": "$eSk" + }, + "FuliLuDaShiGiftWinSkin$Skin62": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiMicroWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml", + "$bs": { "height": 424, "width": 739, "$eleC": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"] }, + "dragDropUI": { "source": "bg_ldsyouxihezi_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 34, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveImg": { "horizontalCenter": 0, "source": "apay_yilingqu", "verticalCenter": 36, "$t": "$eI" }, + "receiveBtn": { "height": 62, "horizontalCenter": 0.5, "label": "", "width": 144, "y": 320, "$t": "$eB", "skinName": "FuliLuDaShiMicroWinSkin$Skin63" }, + "microDownBtn": { "height": 62, "horizontalCenter": 0, "label": "", "width": 144, "y": 320, "$t": "$eB", "skinName": "FuliLuDaShiMicroWinSkin$Skin64" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 636, "y": 65, "$t": "$eB", "skinName": "FuliLuDaShiMicroWinSkin$Skin65" }, + "redPoint": { "x": 420, "y": 323, "$t": "app.RedDotControl" }, + "$sP": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"], + "$sC": "$eSk" + }, + "FuliLuDaShiMicroWinSkin$Skin63": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiMicroWinSkin$Skin64": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "jiangli_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "jiangli_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "jiangli_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiMicroWinSkin$Skin65": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiPhoneGiftWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "_Image2", "infoGroup", "btnScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuliLuDaShiPhoneGiftWinSkin$Skin66" }, + "_Image2": { "horizontalCenter": -0.5, "source": "biaoti_shoujilibao", "touchEnabled": false, "x": 238, "y": 52, "$t": "$eI" }, + "infoGroup": { "height": 542, "touchEnabled": false, "width": 667, "x": 281, "y": 116, "$t": "$eG", "$eleC": ["_Image3"] }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "18,15,3,4", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "btnScroller": { "height": 536, "width": 185, "x": 85.61, "y": 117.3, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": ["dragDropUI", "closeBtn", "infoGroup", "tabBar", "btnScroller"], + "$sC": "$eSk" + }, + "FuliLuDaShiPhoneGiftWinSkin$Skin66": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiVipCodeSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml", + "$bs": { "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.3, "bottom": 0, "left": 0, "right": 0, "scale9Grid": "1,1,2,2", "source": "dialog_mask", "top": 0, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "horizontalCenter": 0, "top": 227, "width": 352, "$t": "$eG", "$eleC": ["bg", "dialogCloseBtn"] }, + "bg": { "scale9Grid": "53,71,320,148", "scaleX": 1, "scaleY": 1, "source": "bg_ldschaojivip2_png", "x": 0, "y": -2, "$t": "$eI" }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 335, "y": -10, "$t": "$eB", "skinName": "FuliLuDaShiVipCodeSkin$Skin67" }, + "$sP": ["dialogMask", "bg", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "FuliLuDaShiVipCodeSkin$Skin67": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiVipWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "qqLabel", "wxLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_chaojivip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_ldschaojivip", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_ldschaojivip_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "FuliLuDaShiVipWinSkin$Skin68" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 823, "y": 529, "$t": "$eB" }, + "codeBtn": { "height": 56, "icon": "t_erweima", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 824, "y": 589, "$t": "$eB" }, + "lab": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "width": 600, "x": 123, "y": 630, "$t": "$eL" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 545, "y": 539, "$t": "$eL" }, + "wxLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 545, "y": 595, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "qqLabel", "wxLabel"], + "$sC": "$eSk" + }, + "FuliLuDaShiVipWinSkin$Skin68": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiBindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_ldssjlbsjlb_png", "verticalCenter": 0, "$t": "$eI" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 92, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 29, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliLuDaShiBoxBuffSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Image1", "microDownBtn"] }, + "_Image1": { "source": "bg_ldsflbuff_png", "$t": "$eI" }, + "microDownBtn": { "horizontalCenter": 0, "icon": "txt_xzhz", "skinName": "Btn31Skin", "y": 284, "$t": "$eB" }, + "$sP": ["microDownBtn"], + "$sC": "$eSk" + }, + "FuliLuDaShiBoxGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Image1", "itemList", "receiveBtn", "microDownBtn", "redPoint", "receiveImg"] }, + "_Image1": { "source": "bg_ldsflhzdl_png", "$t": "$eI" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "receiveBtn": { "height": 62, "horizontalCenter": 0, "label": "", "width": 144, "y": 286, "$t": "$eB", "skinName": "FuliLuDaShiBoxGiftSkin$Skin69" }, + "microDownBtn": { "height": 62, "horizontalCenter": 0, "label": "", "width": 144, "y": 286, "$t": "$eB", "skinName": "FuliLuDaShiBoxGiftSkin$Skin70" }, + "redPoint": { "x": 379, "y": 293, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 13, "horizontalCenter": -1.5, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "receiveBtn", "microDownBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliLuDaShiBoxGiftSkin$Skin69": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiBoxGiftSkin$Skin70": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "jiangli_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "jiangli_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "jiangli_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiDayGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Image1", "itemList", "receiveBtn", "redPoint", "receiveImg"] }, + "_Image1": { "source": "bg_ldsflhzdl2_png", "$t": "$eI" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "receiveBtn": { "height": 62, "horizontalCenter": 0, "label": "", "width": 144, "y": 286, "$t": "$eB", "skinName": "FuliLuDaShiDayGiftSkin$Skin71" }, + "redPoint": { "x": 379, "y": 293, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 13, "horizontalCenter": -1.5, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "receiveBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliLuDaShiDayGiftSkin$Skin71": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiIndulgeGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_ldssjlbrzlb_png", "verticalCenter": 0, "$t": "$eI" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 71, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 29, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliLuDaShiLevelGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Scroller1"] }, + "_Scroller1": { "height": 362, "width": 669, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "FuliLuDaShiLevelGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "D": "null", "$t": "Object" }, + "_Object2": { "D": "null", "$t": "Object" }, + "_Object3": { "D": "null", "$t": "Object" }, + "$sP": ["list"], + "$sC": "$eSk" + }, + "FuliLuDaShiGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml", + "$bs": { "height": 334, "width": 297, "$eleC": ["_Image1", "itemData", "titleImg", "titleDesc", "itemDesc", "lvDesc", "buyBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "bg_ldsflmrlb2_png", "$t": "$eI" }, + "itemData": { "horizontalCenter": 0.5, "skinName": "ItemBaseSkin", "verticalCenter": -52, "$t": "app.ItemBase" }, + "titleImg": { "horizontalCenter": 0, "scaleX": 1.3, "scaleY": 1.3, "source": "ch_show_008", "verticalCenter": -54, "$t": "$eI" }, + "titleDesc": { "horizontalCenter": 0.5, "size": 22, "stroke": 2, "text": "标题", "textAlign": "center", "textColor": 2682369, "y": 46, "$t": "$eL" }, + "itemDesc": { "horizontalCenter": 0.5, "lineSpacing": 4, "size": 17, "stroke": 1, "text": "", "textColor": 2682369, "width": 160, "y": 152, "$t": "$eL" }, + "lvDesc": { "bottom": 80, "horizontalCenter": 0, "size": 16, "stroke": 1, "text": "", "textColor": 2682369, "$t": "$eL" }, + "buyBtn": { "height": 46, "horizontalCenter": 0, "label": "购 买", "width": 113, "y": 270.54, "$t": "$eB", "skinName": "FuliLuDaShiGiftItemSkin$Skin72" }, + "receiveImg": { "bottom": 7, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "redPoint": { "x": 190, "y": 269, "$t": "app.RedDotControl" }, + "$sP": ["itemData", "titleImg", "titleDesc", "itemDesc", "lvDesc", "buyBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "FuliLuDaShiGiftItemSkin$Skin72": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiSingleGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Image1", "giftItem1", "giftItem2"] }, + "_Image1": { "source": "bg_ldsflmrlb1_png", "x": 4, "$t": "$eI" }, + "giftItem1": { "skinName": "FuliLuDaShiGiftItemSkin", "x": 26, "y": 27, "$t": "app.FuliLuDaShiSingleGiftItem" }, + "giftItem2": { "skinName": "FuliLuDaShiGiftItemSkin", "x": 346, "y": 27, "$t": "app.FuliLuDaShiSingleGiftItem" }, + "$sP": ["giftItem1", "giftItem2"], + "$sC": "$eSk" + }, + "FuliLuDaShiWeiXinGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_ldssjlbwxlb_png", "verticalCenter": 0, "$t": "$eI" }, + "$sC": "$eSk" + }, + "FuliLuDaShiGiftTabSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml", + "$bs": { "height": 30, "width": 126, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_ldsfl1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": true, + "horizontalCenter": 3, + "size": 18, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 12558199 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 2498842 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tab_ldsfl2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14471870 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 5386243 } + ] + } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiGiftTabSkin2": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml", + "$bs": { "height": 59, "width": 185, "$eleC": ["_Image1", "labelDisplay", "redPoint"] }, + "_Image1": { "horizontalCenter": 0, "source": "YY_yq_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": true, + "horizontalCenter": 3, + "size": 20, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redPoint": { "left": 2, "source": "YY_yq_jiang", "top": 0, "$t": "$eI" }, + "$sP": ["labelDisplay", "redPoint"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 12558199 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 2498842 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "YY_yq_2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14471870 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 5386243 } + ] + } + }, + "$sC": "$eSk" + }, + "FuliLuDaShiLevelGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml", + "$bs": { "height": 115, "width": 669, "$eleC": ["_Image1", "list", "getBtn", "redPoint", "receiveImg", "desLabel"] }, + "_Image1": { "scale9Grid": "82,60,493,41", "source": "apay_liebiao_bg_png", "width": 669, "$t": "$eI" }, + "list": { "itemRendererSkinName": "ItemBaseSkin", "width": 418, "x": 60, "y": 42, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 10, "$t": "$eHL" }, + "getBtn": { "height": 46, "label": "领 取", "width": 113, "x": 540, "y": 34, "$t": "$eB", "skinName": "FuliLuDaShiLevelGiftItemSkin$Skin73" }, + "redPoint": { "x": 640, "y": 31, "$t": "app.RedDotControl" }, + "receiveImg": { "horizontalCenter": 265, "source": "apay_yilingqu", "y": 23, "$t": "$eI" }, + "desLabel": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 60, "y": 15, "$t": "$eL" }, + "$sP": ["list", "getBtn", "redPoint", "receiveImg", "desLabel"], + "$sC": "$eSk" + }, + "FuliLuDaShiLevelGiftItemSkin$Skin73": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PlatformFuliBindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_tw_bdsj_png", "verticalCenter": 0, "$t": "$eI" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 95, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "bindingBtn": { "height": 56, "icon": "txt_bangdingshouji", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 29, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "PlatformFuliIndulgeGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml", + "$bs": { "height": 540, "width": 667, "$eleC": ["_Image1", "indulgeBtn", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_tw_wszl_png", "verticalCenter": 0, "$t": "$eI" }, + "indulgeBtn": { "height": 56, "icon": "btnt_txfcm", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 95, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 28, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["indulgeBtn", "getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "PlatformFuliIndulgeGiftSkin2": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml", + "$bs": { "height": 433, "width": 758, "$eleC": ["_Image1", "_Image2", "_Image3", "indulgeBtn", "getBtn", "descList", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "bg_shunwang_fangchenmi_png", "top": 0, "$t": "$eI" }, + "_Image2": { "source": "txt_shenfenyanzheng", "x": 56, "y": 25, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 0.5, "source": "property_3", "y": 260, "$t": "$eI" }, + "indulgeBtn": { "height": 56, "icon": "btnt_txfcm", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 309, "y": 363, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 309, "y": 363, "$t": "$eB" }, + "descList": { "itemRendererSkinName": "PlatformFuliDescItemSkin", "verticalCenter": -26, "x": 158, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 90, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 432, "y": 361, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 7, "horizontalCenter": 0.5, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["indulgeBtn", "getBtn", "descList", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "PlatformFuliLevelGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml", + "$bs": { "height": 380, "width": 669, "$eleC": ["_Scroller1"] }, + "_Scroller1": { "height": 380, "width": 669, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "PlatformFuliLevelGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["list"], + "$sC": "$eSk" + }, + "PlatformFuliBannerSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml", + "$bs": { "height": 160, "width": 660, "$eleC": ["bannerImg"] }, + "bannerImg": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["bannerImg"], + "$sC": "$eSk" + }, + "PlatformFuliDescItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml", + "$bs": { "$eleC": ["_Group1", "_Image2", "descLab"] }, + "_Group1": { "verticalCenter": 0.5, "$t": "$eG", "$eleC": ["_Image1", "numb"] }, + "_Image1": { "source": "mun_bg", "$t": "$eI" }, + "numb": { "horizontalCenter": 0.5, "source": "mun_1", "verticalCenter": 0.5, "$t": "$eI" }, + "_Image2": { "source": "mun_bg2", "x": 25, "$t": "$eI" }, + "descLab": { "size": 20, "text": "", "textColor": 15064527, "verticalCenter": 0.5, "x": 40, "$t": "$eL" }, + "$sP": ["numb", "descLab"], + "$sC": "$eSk" + }, + "PlatformFuliLevelGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml", + "$bs": { "height": 115, "width": 669, "$eleC": ["_Image1", "list", "getBtn", "redPoint", "receiveImg", "desLabel"] }, + "_Image1": { "scale9Grid": "82,60,493,41", "source": "apay_liebiao_bg_png", "width": 669, "$t": "$eI" }, + "list": { "itemRendererSkinName": "ItemBaseSkin", "width": 418, "x": 60, "y": 42, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 10, "$t": "$eHL" }, + "getBtn": { "height": 46, "label": "领 取", "width": 113, "x": 540, "y": 34, "$t": "$eB", "skinName": "PlatformFuliLevelGiftItemSkin$Skin74" }, + "redPoint": { "x": 640, "y": 31, "$t": "app.RedDotControl" }, + "receiveImg": { "horizontalCenter": 265, "source": "apay_yilingqu", "y": 23, "$t": "$eI" }, + "desLabel": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 60, "y": 15, "$t": "$eL" }, + "$sP": ["list", "getBtn", "redPoint", "receiveImg", "desLabel"], + "$sC": "$eSk" + }, + "PlatformFuliLevelGiftItemSkin$Skin74": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PlatformFuliMicroWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml", + "$bs": { "$eleC": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"] }, + "dragDropUI": { "source": "weiduan_denglu_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 141, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 75, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveImg": { "horizontalCenter": 141, "source": "apay_yilingqu", "verticalCenter": 75, "$t": "$eI" }, + "receiveBtn": { "height": 62, "label": "", "width": 144, "x": 573, "y": 413, "$t": "$eB", "skinName": "PlatformFuliMicroWinSkin$Skin75" }, + "microDownBtn": { "height": 62, "label": "", "width": 144, "x": 573, "y": 413, "$t": "$eB", "skinName": "PlatformFuliMicroWinSkin$Skin76" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 33, "$t": "$eB", "skinName": "PlatformFuliMicroWinSkin$Skin77" }, + "redPoint": { "visible": false, "x": 691, "y": 414, "$t": "app.RedDotControl" }, + "$sP": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"], + "$sC": "$eSk" + }, + "PlatformFuliMicroWinSkin$Skin75": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "PlatformFuliMicroWinSkin$Skin76": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "jiangli_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "jiangli_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "jiangli_bt" }] } + }, + "$sC": "$eSk" + }, + "PlatformFuliMicroWinSkin$Skin77": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "PlatformFuliViewSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "titleImg", "_Image1", "_Image2", "closeBtn", "btnScroller", "bannerGroup", "infoGroup"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "titleImg": { "bottom": 589, "horizontalCenter": 0, "source": "", "touchEnabled": false, "$t": "$eI" }, + "_Image1": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "_Image2": { "height": 542, "scale9Grid": "18,15,3,4", "source": "com_bg_kuang_6_png", "width": 670, "x": 278, "y": 116, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "PlatformFuliViewSkin$Skin78" }, + "btnScroller": { "height": 536, "width": 185, "x": 85, "y": 119, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "bannerGroup": { "height": 160, "touchEnabled": false, "width": 660, "x": 284, "y": 116, "$t": "$eG" }, + "infoGroup": { "bottom": 32, "touchEnabled": false, "width": 667, "x": 281, "$t": "$eG" }, + "$sP": ["dragDropUI", "titleImg", "closeBtn", "tabBar", "btnScroller", "bannerGroup", "infoGroup"], + "$sC": "$eSk" + }, + "PlatformFuliViewSkin$Skin78": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "PlatformFuliViewSkin2": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "titleImg", "infoGroup", "closeBtn"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "titleImg": { "bottom": 589, "horizontalCenter": 0, "source": "", "touchEnabled": false, "$t": "$eI" }, + "infoGroup": { "height": 545, "width": 868, "x": 80, "y": 114, "$t": "$eG" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "PlatformFuliViewSkin2$Skin79" }, + "$sP": ["dragDropUI", "titleImg", "infoGroup", "closeBtn"], + "$sC": "$eSk" + }, + "PlatformFuliViewSkin2$Skin79": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "PlatformFuliViewSkin3": { + "$path": "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml", + "$bs": { "height": 539, "width": 901, "$eleC": ["dragDropUI", "titleImg", "infoGroup", "closeBtn"] }, + "dragDropUI": { "source": "apay_bg3_png", "$t": "$eI" }, + "titleImg": { "bottom": 460, "horizontalCenter": 0, "source": "", "touchEnabled": false, "$t": "$eI" }, + "infoGroup": { "height": 433, "width": 758, "x": 72, "y": 85, "$t": "$eG" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 800, "y": 34, "$t": "$eB", "skinName": "PlatformFuliViewSkin3$Skin80" }, + "$sP": ["dragDropUI", "titleImg", "infoGroup", "closeBtn"], + "$sC": "$eSk" + }, + "PlatformFuliViewSkin3$Skin80": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliQidianBindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_qidianbdsj_png", "verticalCenter": 0, "$t": "$eI" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 70, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "bindingBtn": { "height": 56, "icon": "txt_bangdingshouji", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 29, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "bindingBtn", "getBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliQidianSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "qqLabel", "lab", "lab2"] }, + "_Image1": { "source": "banner_qidianvip_png", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_qidianvip_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 574, "y": 414, "$t": "$eB" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 516, "y": 362, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 41, "y": 469, "$t": "$eL" }, + "lab2": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 41, "y": 505, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "qqLabel", "lab", "lab2"], + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml", + "$bs": { "height": 115, "width": 657, "$eleC": ["_Image1", "curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "apay_liebiao_bg_png", "$t": "$eI" }, + "curDay": { "left": 27, "size": 18, "text": "使用YY游戏大厅,累计登陆6天领取", "textColor": 14464905, "top": 13, "$t": "$eL" }, + "rewards": { "itemRendererSkinName": "ItemBaseSkin", "left": 27, "top": 41, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "receiveBtn": { "height": 46, "label": "领取奖励", "right": 29, "verticalCenter": 0, "width": 113, "$t": "$eB", "skinName": "QQBlueGiftItemSkin$Skin81" }, + "receiveImg": { "right": 42, "source": "apay_yilingqu", "verticalCenter": 0, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 614, "y": 32, "$t": "app.RedDotControl" }, + "$sP": ["curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin$Skin81": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin2": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml", + "$bs": { "height": 118, "width": 432, "$eleC": ["_Image1", "curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "lztq_frame", "$t": "$eI" }, + "curDay": { "left": 27, "size": 18, "text": "使用YY游戏大厅,累计登陆6天领取", "textColor": 14464905, "top": 13, "$t": "$eL" }, + "rewards": { "itemRendererSkinName": "ItemBaseSkin", "left": 27, "top": 41, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "receiveBtn": { "height": 46, "label": "领取奖励", "width": 113, "x": 295, "y": 47, "$t": "$eB", "skinName": "QQBlueGiftItemSkin2$Skin82" }, + "receiveImg": { "source": "apay_yilingqu", "x": 304, "y": 36, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 394, "y": 44, "$t": "app.RedDotControl" }, + "$sP": ["curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin2$Skin82": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin3": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml", + "$bs": { "height": 220, "width": 230, "$eleC": ["_Image1", "curImg", "rewards", "receiveBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "lztq_frame1", "$t": "$eI" }, + "curImg": { "horizontalCenter": 0, "source": "wenzi_lzhhbewlq", "y": 18, "$t": "$eI" }, + "rewards": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "top": 65, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "receiveBtn": { "height": 46, "horizontalCenter": 0.5, "label": "领取奖励", "width": 113, "y": 150, "$t": "$eB", "skinName": "QQBlueGiftItemSkin3$Skin83" }, + "receiveImg": { "horizontalCenter": 0.5, "source": "apay_yilingqu", "y": 139, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 158, "y": 147, "$t": "app.RedDotControl" }, + "$sP": ["curImg", "rewards", "receiveBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "QQBlueGiftItemSkin3$Skin83": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "QQBlueOverviewItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml", + "$bs": { "height": 110, "width": 684, "$eleC": ["img"] }, + "img": { "source": "lz_tqzl1", "$t": "$eI" }, + "$sP": ["img"], + "$sC": "$eSk" + }, + "QQLobbyPrivilegesTabSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml", + "$bs": { "height": 59, "width": 185, "$eleC": ["_Image1", "labelDisplay", "redPoint"] }, + "_Image1": { "horizontalCenter": 0, "source": "qq_bt1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": true, + "horizontalCenter": 3, + "size": 25, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redPoint": { "left": 2, "source": "qqdt_jiangli_sign", "top": 0, "visible": false, "$t": "$eI" }, + "$sP": ["labelDisplay", "redPoint"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 12558199 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 2498842 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "qq_bt2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14471870 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 5386243 } + ] + } + }, + "$sC": "$eSk" + }, + "QQBlueDiamondViewSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Group1", "closeBtn"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_lztequan", "touchEnabled": false, "x": 238, "y": 57, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 0, "y": 110, "$t": "$eG", "$eleC": ["bgImage", "blueLinkLab", "blueOpenBtn", "blueOpenBtn2", "_Image2", "_Image3", "btnScroller", "infoGroup"] }, + "bgImage": { "source": "banner_lztequan", "$t": "$eI" }, + "blueLinkLab": { "size": 14, "text": "更多蓝钻特权,请关注蓝钻官网", "textColor": 2682369, "x": 666, "y": 8, "$t": "$eL" }, + "blueOpenBtn": { "height": 36, "scaleX": 0.8, "scaleY": 0.8, "source": "lz_ktlzbt", "width": 181, "x": 705, "y": 30, "$t": "$eI" }, + "blueOpenBtn2": { "height": 36, "scaleX": 0.8, "scaleY": 0.8, "source": "lz_ktnflzbt", "width": 181, "x": 705, "y": 65, "$t": "$eI" }, + "_Image2": { "height": 451, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 0, "y": 102, "$t": "$eI" }, + "_Image3": { "height": 451, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 680, "x": 194, "y": 102, "$t": "$eI" }, + "btnScroller": { "height": 440, "width": 186, "x": 3, "y": 107, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "QQLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 451, + "touchEnabled": false, + "width": 680, + "x": 194, + "y": 102, + "$t": "$eG", + "$eleC": ["otherScroller", "otherScroller2", "noviceGrp", "dayGrp"] + }, + "otherScroller": { "height": 450, "visible": false, "width": 668, "x": 6, "$t": "$eS", "viewport": "otherList" }, + "otherList": { "itemRendererSkinName": "QQBlueGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "paddingLeft": 5, "paddingTop": 3, "$t": "$eVL" }, + "otherScroller2": { "height": 450, "visible": false, "width": 684, "$t": "$eS", "viewport": "otherList2" }, + "otherList2": { "itemRendererSkinName": "QQBlueOverviewItemSkin", "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 2, "$t": "$eVL" }, + "noviceGrp": { "visible": false, "$t": "$eG", "$eleC": ["_Image4", "noviceTitleImg", "receiveBtn", "blueTipsImg", "receiveImg", "redPoint", "noviceList"] }, + "_Image4": { "source": "qqdt_meir_erji_png", "$t": "$eI" }, + "noviceTitleImg": { "horizontalCenter": 0, "source": "lz_lzxinshou_dabiaoti", "top": 40, "$t": "$eI" }, + "receiveBtn": { "bottom": 14, "horizontalCenter": 0, "label": "", "scaleX": 0.85, "scaleY": 0.85, "$t": "$eB", "skinName": "QQBlueDiamondViewSkin$Skin84" }, + "blueTipsImg": { "source": "lz_ktlzbt", "x": 259, "y": 377.23, "$t": "$eI" }, + "receiveImg": { "bottom": 23, "horizontalCenter": 0, "source": "apay_yilingqu", "visible": false, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 390, "y": 370, "$t": "app.RedDotControl" }, + "noviceList": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": -5, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "dayGrp": { "$t": "$eG", "$eleC": ["otherScroller3", "otherScroller4"] }, + "otherScroller3": { "height": 445, "width": 432, "x": 5, "y": 2, "$t": "$eS", "viewport": "otherList3" }, + "otherList3": { "itemRendererSkinName": "QQBlueGiftItemSkin2", "$t": "$eLs", "layout": "_VerticalLayout4", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout4": { "gap": 2, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "otherScroller4": { "height": 445, "width": 230, "x": 445, "y": 3, "$t": "$eS", "viewport": "otherList4" }, + "otherList4": { "itemRendererSkinName": "QQBlueGiftItemSkin3", "$t": "$eLs", "layout": "_VerticalLayout5", "dataProvider": "_ArrayCollection2" }, + "_VerticalLayout5": { "gap": 5, "$t": "$eVL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object5", "_Object6"] }, + "_Object5": { "$t": "Object" }, + "_Object6": { "null": "", "$t": "Object" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "QQBlueDiamondViewSkin$Skin85" }, + "$sP": [ + "dragDropUI", + "bgImage", + "blueLinkLab", + "blueOpenBtn", + "blueOpenBtn2", + "tabBar", + "btnScroller", + "otherList", + "otherScroller", + "otherList2", + "otherScroller2", + "noviceTitleImg", + "receiveBtn", + "blueTipsImg", + "receiveImg", + "redPoint", + "noviceList", + "noviceGrp", + "otherList3", + "otherScroller3", + "otherList4", + "otherScroller4", + "dayGrp", + "infoGroup", + "closeBtn" + ], + "$sC": "$eSk" + }, + "QQBlueDiamondViewSkin$Skin84": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_2" }] } + }, + "$sC": "$eSk" + }, + "QQBlueDiamondViewSkin$Skin85": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "QQLobbyPrivilegesWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Group1", "closeBtn"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_qqdating", "touchEnabled": false, "x": 238, "y": 57, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 0, "y": 110, "$t": "$eG", "$eleC": ["bgImage", "_Image2", "_Image3", "btnScroller", "infoGroup"] }, + "bgImage": { "source": "banner_qqdating", "$t": "$eI" }, + "_Image2": { "height": 451, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 0, "y": 102, "$t": "$eI" }, + "_Image3": { "height": 451, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 680, "x": 194, "y": 102, "$t": "$eI" }, + "btnScroller": { "height": 440, "width": 186, "x": 3, "y": 107, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "QQLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 451, "touchEnabled": false, "width": 680, "x": 194, "y": 102, "$t": "$eG", "$eleC": ["otherScroller", "noviceGrp"] }, + "otherScroller": { "height": 450, "width": 668, "x": 6, "$t": "$eS", "viewport": "otherList" }, + "otherList": { "itemRendererSkinName": "YYLobbyPrivilegesGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "paddingLeft": 5, "paddingTop": 3, "$t": "$eVL" }, + "noviceGrp": { "$t": "$eG", "$eleC": ["_Image4", "noviceTitleImg", "receiveBtn", "receiveImg", "redPoint", "noviceList"] }, + "_Image4": { "source": "qqdt_meir_erji_png", "$t": "$eI" }, + "noviceTitleImg": { "horizontalCenter": 0, "source": "qqdt_xinshou_dabiaoti", "top": 40, "$t": "$eI" }, + "receiveBtn": { "bottom": 14, "horizontalCenter": 0, "label": "", "scaleX": 0.85, "scaleY": 0.85, "$t": "$eB", "skinName": "QQLobbyPrivilegesWinSkin$Skin86" }, + "receiveImg": { "bottom": 23, "horizontalCenter": 0, "source": "apay_yilingqu", "visible": false, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 390, "y": 370, "$t": "app.RedDotControl" }, + "noviceList": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": -5, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "QQLobbyPrivilegesWinSkin$Skin87" }, + "$sP": [ + "dragDropUI", + "bgImage", + "tabBar", + "btnScroller", + "otherList", + "otherScroller", + "noviceTitleImg", + "receiveBtn", + "receiveImg", + "redPoint", + "noviceList", + "noviceGrp", + "infoGroup", + "closeBtn" + ], + "$sC": "$eSk" + }, + "QQLobbyPrivilegesWinSkin$Skin86": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fc_btn_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fc_btn_2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "fc_btn_2" }] } + }, + "$sC": "$eSk" + }, + "QQLobbyPrivilegesWinSkin$Skin87": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "QQVipCodeSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml", + "$bs": { "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.3, "bottom": 0, "left": 0, "right": 0, "scale9Grid": "1,1,2,2", "source": "dialog_mask", "top": 0, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "horizontalCenter": 0, "top": 227, "width": 420, "$t": "$eG", "$eleC": ["bg", "titleLabel", "_Image1", "dialogCloseBtn"] }, + "bg": { "scale9Grid": "53,71,320,148", "scaleX": 1, "scaleY": 1, "source": "bg_tipstc2_png", "visible": true, "x": 0, "y": -2, "$t": "$eI" }, + "titleLabel": { + "anchorOffsetX": 0, + "scaleX": 1, + "scaleY": 1, + "size": 20, + "stroke": 2, + "text": "vip客服微信二维码", + "textAlign": "center", + "textColor": 13682838, + "touchEnabled": false, + "x": 132, + "y": 14, + "$t": "$eL" + }, + "_Image1": { "height": 230, "scaleX": 0.7, "scaleY": 0.7, "source": "weixincode_qq_png", "width": 230, "x": 130, "y": 57, "$t": "$eI" }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 405, "y": -10, "$t": "$eB", "skinName": "QQVipCodeSkin$Skin88" }, + "$sP": ["dialogMask", "bg", "titleLabel", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "QQVipCodeSkin$Skin88": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "QQVipFuLiSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "lab2", "qqLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_4366vip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_qqdating1", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_qqvip_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "QQVipFuLiSkin$Skin89" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 513, "y": 519, "$t": "$eB" }, + "codeBtn": { "height": 56, "icon": "t_erweima", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 724, "y": 519, "$t": "$eB" }, + "lab": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 594, "$t": "$eL" }, + "lab2": { "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 625, "$t": "$eL" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 557, "y": 476, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "codeBtn", "lab", "lab2", "qqLabel"], + "$sC": "$eSk" + }, + "QQVipFuLiSkin$Skin89": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliShunwangBoxGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml", + "$bs": { "height": 380, "width": 667, "$eleC": ["_Image1", "itemList", "getBtn", "boxDownBtn", "redPoint", "receiveImg"] }, + "_Image1": { "source": "bg_ldsflhzdl_png", "x": -1, "y": 9, "$t": "$eI" }, + "itemList": { "horizontalCenter": 10, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 19, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "getBtn": { "height": 62, "horizontalCenter": 0.5, "label": "", "width": 144, "y": 295, "$t": "$eB", "skinName": "FuliShunwangBoxGiftSkin$Skin90" }, + "boxDownBtn": { "horizontalCenter": 0.5, "icon": "txt_xzhz", "skinName": "Btn31Skin", "y": 292, "$t": "$eB" }, + "redPoint": { "x": 379, "y": 302, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 18, "horizontalCenter": -1, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "getBtn", "boxDownBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliShunwangBoxGiftSkin$Skin90": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliShunwangWeixinGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "InputCode", "wxBuyBtn"] }, + "_Image1": { "source": "bg_wxlb_shunwang_png", "$t": "$eI" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 280, + "x": 322, + "y": 472, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 640, "y": 460, "$t": "$eB" }, + "$sP": ["InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "FuliSogouMicroWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml", + "$bs": { "height": 424, "width": 739, "$eleC": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"] }, + "dragDropUI": { "source": "bg_zhuanshupifu_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 34, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveImg": { "horizontalCenter": 0, "source": "apay_yilingqu", "verticalCenter": 36, "$t": "$eI" }, + "receiveBtn": { "height": 62, "horizontalCenter": 0.5, "label": "", "width": 144, "y": 320, "$t": "$eB", "skinName": "FuliSogouMicroWinSkin$Skin91" }, + "microDownBtn": { "horizontalCenter": 0, "icon": "txt_djxz", "skinName": "Btn31Skin", "y": 317, "$t": "$eB" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 636, "y": 65, "$t": "$eB", "skinName": "FuliSogouMicroWinSkin$Skin92" }, + "redPoint": { "x": 420, "y": 323, "$t": "app.RedDotControl" }, + "$sP": ["dragDropUI", "rewards", "receiveImg", "receiveBtn", "microDownBtn", "closeBtn", "redPoint"], + "$sC": "$eSk" + }, + "FuliSogouMicroWinSkin$Skin91": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "lingqu_bt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "lingqu_bt" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "lingqu_bt" }] } + }, + "$sC": "$eSk" + }, + "FuliSogouMicroWinSkin$Skin92": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliSogouVipWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "rechargeBtn", "copyBtn", "lab", "qqLabel"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "source": "biaoti_chaojivip", "touchEnabled": false, "x": 422, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "banner_sougouvip", "x": 84, "y": 119, "$t": "$eI" }, + "_Image3": { "source": "bg_sougouvip_png", "x": 86, "y": 262, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 924, "y": 57, "$t": "$eB", "skinName": "FuliSogouVipWinSkin$Skin93" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 771, "y": 159, "$t": "$eB" }, + "copyBtn": { "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "x": 823, "y": 559, "$t": "$eB" }, + "lab": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "width": 777, "x": 127, "y": 624, "$t": "$eL" }, + "qqLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 567, "y": 570, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeBtn", "copyBtn", "lab", "qqLabel"], + "$sC": "$eSk" + }, + "FuliSogouVipWinSkin$Skin93": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliSogouWeixinWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "closeBtn", "InputCode", "wxBuyBtn"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": -0.5, "source": "biaoti_weixinlibao", "touchEnabled": false, "x": 238, "y": 50, "$t": "$eI" }, + "_Image2": { "source": "bg_sogouwxlb_png", "x": 80, "y": 114, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuliSogouWeixinWinSkin$Skin94" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 244, + "y": 369, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn0Skin", "width": 137, "x": 383.67, "y": 412.95, "$t": "$eB" }, + "$sP": ["dragDropUI", "closeBtn", "InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "FuliSogouWeixinWinSkin$Skin94": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliSogouWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "closeBtn", "btnScroller", "bannerGroup", "infoGroup", "infoGroup2"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_yxdt", "touchEnabled": false, "y": 50, "$t": "$eI" }, + "_Image2": { "height": 542, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 82, "y": 116, "$t": "$eI" }, + "_Image3": { "height": 542, "scale9Grid": "18,15,3,4", "source": "com_bg_kuang_6_png", "width": 670, "x": 278, "y": 116, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuliSogouWinSkin$Skin95" }, + "btnScroller": { "height": 536, "width": 185, "x": 85, "y": 119, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "bannerGroup": { "height": 145, "touchEnabled": false, "width": 660, "x": 284, "y": 116, "$t": "$eG", "$eleC": ["_Image4", "downBtn"] }, + "_Image4": { "source": "banner_sougouyxdt", "$t": "$eI" }, + "downBtn": { "source": "YY_t_ljxz", "x": 522, "y": 100, "$t": "$eI" }, + "infoGroup": { "height": 395, "touchEnabled": false, "width": 667, "x": 281, "y": 262, "$t": "$eG" }, + "infoGroup2": { "height": 542, "touchEnabled": false, "width": 667, "x": 281, "y": 116, "$t": "$eG" }, + "$sP": ["dragDropUI", "closeBtn", "tabBar", "btnScroller", "downBtn", "bannerGroup", "infoGroup", "infoGroup2"], + "$sC": "$eSk" + }, + "FuliSogouWinSkin$Skin95": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliSougouBindingGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "bg_ldssjlbsjlb_png", "verticalCenter": 0, "$t": "$eI" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 92, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 29, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliSougouNoviceGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml", + "$bs": { "height": 395, "width": 667, "$eleC": ["_Image1", "_Image2", "itemList", "getBtn", "redPoint", "receiveImg"] }, + "_Image1": { "source": "YY_bg2_png", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "sogou_t_xslb", "top": 41, "$t": "$eI" }, + "itemList": { "horizontalCenter": 6, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 0, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 312, "$t": "$eB" }, + "redPoint": { "x": 388, "y": 310, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 20, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["itemList", "getBtn", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliTanwanVipCodeSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml", + "$bs": { "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.3, "bottom": 0, "left": 0, "right": 0, "scale9Grid": "1,1,2,2", "source": "dialog_mask", "top": 0, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "horizontalCenter": 0, "top": 227, "width": 352, "$t": "$eG", "$eleC": ["bg", "dialogCloseBtn"] }, + "bg": { "scale9Grid": "53,71,320,148", "scaleX": 1, "scaleY": 1, "source": "bg_tanwanviperweima_png", "x": 0, "y": -2, "$t": "$eI" }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 335, "y": -10, "$t": "$eB", "skinName": "FuliTanwanVipCodeSkin$Skin96" }, + "$sP": ["dialogMask", "bg", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "FuliTanwanVipCodeSkin$Skin96": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "FuliTanwanQQGroupGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1"] }, + "_Image1": { "source": "bg_tw_qqqun_png", "$t": "$eI" }, + "$sC": "$eSk" + }, + "FuliTanwanSanduanGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml", + "$bs": { "height": 540, "width": 667, "$eleC": ["_Image1", "getBtn", "itemList", "redPoint", "receiveImg"] }, + "_Image1": { "height": 540, "source": "bg_tw_sanduan_png", "width": 667, "$t": "$eI" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 265, "y": 450, "$t": "$eB" }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "FuLi4366ItemSkin", "verticalCenter": 95, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 20, "$t": "$eHL" }, + "redPoint": { "x": 388, "y": 448, "$t": "app.RedDotControl" }, + "receiveImg": { "bottom": 28, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["getBtn", "itemList", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "FuliTanwanSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "codeBtn", "lab"] }, + "_Image1": { "source": "banner_tanwanvip", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_tanwanvip_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "codeBtn": { "height": 56, "icon": "t_erweima", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 526, "y": 480, "$t": "$eB" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 46, "y": 506, "$t": "$eL" }, + "$sP": ["rechargeBtn", "codeBtn", "lab"], + "$sC": "$eSk" + }, + "FuliTanwanWeixinGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml", + "$bs": { "height": 542, "width": 667, "$eleC": ["_Image1", "itemData", "InputCode", "wxBuyBtn"] }, + "_Image1": { "source": "bg_tw_weixin_png", "$t": "$eI" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 551, "y": 422, "$t": "app.ItemBase" }, + "InputCode": { + "height": 30, + "maxChars": 120, + "prompt": "<请输入激活码>", + "size": 20, + "text": "", + "textAlign": "center", + "textColor": 16379887, + "verticalAlign": "middle", + "width": 393, + "x": 80, + "y": 422, + "$t": "$eET" + }, + "wxBuyBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 210.67, "y": 465.95, "$t": "$eB" }, + "$sP": ["itemData", "InputCode", "wxBuyBtn"], + "$sC": "$eSk" + }, + "FuliXunwanGiftWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml", + "$bs": { + "height": 690, + "width": 1027, + "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "titleImg", "labVipLevel", "openVipLab1", "openVipLab2", "closeBtn", "btnScroller", "btnScroller2", "infoGroup"] + }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 140, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 865, "x": 81, "y": 112, "$t": "$eI" }, + "_Image2": { "height": 39, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 865, "x": 81, "y": 254, "$t": "$eI" }, + "_Image3": { "height": 362, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 192, "x": 81, "y": 295, "$t": "$eI" }, + "_Image4": { "height": 362, "scale9Grid": "17,15,4,4", "source": "com_bg_kuang_6_png", "width": 669, "x": 276, "y": 295, "$t": "$eI" }, + "_Image5": { "source": "banner_xlhytq", "x": 84, "y": 114, "$t": "$eI" }, + "titleImg": { "horizontalCenter": -0.5, "source": "biaoti_xlhytq", "touchEnabled": false, "x": 238, "y": 52, "$t": "$eI" }, + "labVipLevel": { "size": 18, "stroke": 1, "text": "目前等级:白金会员", "textAlign": "center", "textColor": 15064527, "x": 100, "y": 190, "$t": "$eL" }, + "openVipLab1": { "size": 16, "stroke": 1, "text": "更多特权", "textColor": 2682369, "x": 100, "y": 220, "$t": "$eL" }, + "openVipLab2": { "size": 16, "stroke": 1, "text": "立即开通迅雷会员", "textColor": 2682369, "x": 800, "y": 220, "$t": "$eL" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "FuliXunwanGiftWinSkin$Skin97" }, + "btnScroller": { "height": 30, "width": 800, "x": 100, "y": 258, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "FuliXunwanGiftTabSkin", "width": 200, "$t": "$eT", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": -2, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2"] }, + "_Object1": { "d": "null", "$t": "Object" }, + "_Object2": { "d": "null", "$t": "Object" }, + "btnScroller2": { "height": 355, "width": 185, "x": 84, "y": 303, "$t": "$eS", "viewport": "tabBar2" }, + "tabBar2": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGroup": { "height": 362, "touchEnabled": false, "width": 669, "x": 276, "y": 295, "$t": "$eG" }, + "$sP": ["dragDropUI", "titleImg", "labVipLevel", "openVipLab1", "openVipLab2", "closeBtn", "tabBar", "btnScroller", "tabBar2", "btnScroller2", "infoGroup"], + "$sC": "$eSk" + }, + "FuliXunwanGiftWinSkin$Skin97": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "FuliXunwanLevelGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml", + "$bs": { "$eleC": ["_Scroller1"] }, + "_Scroller1": { "height": 362, "width": 669, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "PlatformFuliLevelGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["list"], + "$sC": "$eSk" + }, + "FuliXunwanSingleGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml", + "$bs": { "height": 362, "width": 669, "$eleC": ["_Image1", "giftItem"] }, + "_Image1": { "source": "bg_ldsflmrlb1_png", "x": 4, "$t": "$eI" }, + "giftItem": { "skinName": "FuliLuDaShiGiftItemSkin", "x": 186, "y": 27, "$t": "app.FuliXunwanSingleGiftItem" }, + "$sP": ["giftItem"], + "$sC": "$eSk" + }, + "FuliXunwanGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml", + "$bs": { "height": 334, "width": 297, "$eleC": ["_Image1", "itemData", "titleImg", "titleDesc", "itemDesc", "lvDesc", "buyBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "bg_ldsflmrlb2_png", "$t": "$eI" }, + "itemData": { "horizontalCenter": 0.5, "skinName": "ItemBaseSkin", "verticalCenter": -52, "$t": "app.ItemBase" }, + "titleImg": { "horizontalCenter": 0, "scaleX": 1.3, "scaleY": 1.3, "source": "ch_show_008", "verticalCenter": -54, "$t": "$eI" }, + "titleDesc": { "horizontalCenter": 0.5, "size": 22, "stroke": 2, "text": "标题", "textAlign": "center", "textColor": 2682369, "y": 46, "$t": "$eL" }, + "itemDesc": { "horizontalCenter": 0.5, "lineSpacing": 4, "size": 17, "stroke": 1, "text": "", "textColor": 2682369, "width": 160, "y": 152, "$t": "$eL" }, + "lvDesc": { "bottom": 80, "horizontalCenter": 0, "size": 16, "stroke": 1, "text": "", "textColor": 2682369, "$t": "$eL" }, + "buyBtn": { "height": 46, "horizontalCenter": 0, "label": "购 买", "width": 113, "y": 270.54, "$t": "$eB", "skinName": "FuliXunwanGiftItemSkin$Skin98" }, + "receiveImg": { "bottom": 7, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "redPoint": { "x": 190, "y": 269, "$t": "app.RedDotControl" }, + "$sP": ["itemData", "titleImg", "titleDesc", "itemDesc", "lvDesc", "buyBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "FuliXunwanGiftItemSkin$Skin98": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "FuliXunwanGiftTabSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml", + "$bs": { "height": 30, "width": 126, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_ldsfl1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": true, + "horizontalCenter": 0, + "size": 18, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 12558199 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 2498842 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tab_ldsfl2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14471870 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 5386243 } + ] + } + }, + "$sC": "$eSk" + }, + "FuliYaodaoSuperVipGiftSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml", + "$bs": { "height": 545, "width": 868, "$eleC": ["_Image1", "_Image2", "rechargeBtn", "copyBtn", "wxLabel", "lab", "lab2"] }, + "_Image1": { "source": "banner_yaodou_png", "x": 5, "y": 5, "$t": "$eI" }, + "_Image2": { "source": "bg_yaodou_png", "x": 7, "y": 148, "$t": "$eI" }, + "rechargeBtn": { "height": 56, "icon": "t_lijichongzhi", "label": "", "skinName": "Btn26Skin", "width": 137, "x": 692, "y": 45, "$t": "$eB" }, + "copyBtn": { "height": 56, "icon": "t_fuzhi", "label": "", "scaleX": 0.75, "scaleY": 0.75, "skinName": "Btn26Skin", "width": 137, "x": 574, "y": 424, "$t": "$eB" }, + "wxLabel": { "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "x": 516, "y": 376, "$t": "$eL" }, + "lab": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 41, "y": 469, "$t": "$eL" }, + "lab2": { "size": 22, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "x": 41, "y": 505, "$t": "$eL" }, + "$sP": ["rechargeBtn", "copyBtn", "wxLabel", "lab", "lab2"], + "$sC": "$eSk" + }, + "YYChaoWanDailyItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml", + "$bs": { "height": 365, "width": 206, "$eleC": ["_Image1", "title", "_Image2", "count", "receiveBtn", "rewards", "redPoint"] }, + "_Image1": { "source": "YY_bg3_png", "$t": "$eI" }, + "title": { "horizontalCenter": -2.5, "size": 24, "stroke": 1, "text": "", "textColor": 16770596, "top": 14, "$t": "$eL" }, + "_Image2": { "anchorOffsetY": 0, "height": 170, "horizontalCenter": 0, "scale9Grid": "14,24,161,14", "source": "YY_bg4", "y": 66, "$t": "$eI" }, + "count": { "bottom": 76, "horizontalCenter": -0.5, "size": 16, "stroke": 1, "text": "", "textColor": 2682369, "$t": "$eL" }, + "receiveBtn": { "height": 46, "horizontalCenter": 0, "label": "立即领取", "width": 113, "y": 300.54, "$t": "$eB", "skinName": "YYChaoWanDailyItemSkin$Skin99" }, + "rewards": { "horizontalCenter": -3, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": -47, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 16, "requestedColumnCount": 2, "verticalGap": 19, "$t": "$eTL" }, + "redPoint": { "visible": false, "x": 147, "y": 297, "$t": "app.RedDotControl" }, + "$sP": ["title", "count", "receiveBtn", "rewards", "redPoint"], + "$sC": "$eSk" + }, + "YYChaoWanDailyItemSkin$Skin99": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "YYChaoWanWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "infoGrp"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 5, "source": "CW_bt", "top": 61, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "YYChaoWanWinSkin$Skin100" }, + "infoGrp": { + "height": 556, + "width": 878, + "x": 75.32, + "y": 107.96, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5", "_Image6", "exchangeChaoWan", "moreGift", "YYmemberGrp", "otherScroller", "dailyScroller", "btnScroller"] + }, + "_Image2": { "source": "CW_banner", "$t": "$eI" }, + "_Image3": { "bottom": 0, "height": 406, "left": 0, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 200, "$t": "$eI" }, + "_Image4": { "source": "CW_bg", "x": 207, "y": 156, "$t": "$eI" }, + "_Image5": { "bottom": 0, "height": 406, "right": 0, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 677, "$t": "$eI" }, + "_Image6": { "source": "CW_t1", "x": 216, "y": 159, "$t": "$eI" }, + "exchangeChaoWan": { "source": "CW_t2", "x": 483, "y": 160, "$t": "$eI" }, + "moreGift": { "right": 13, "source": "CW_t3", "y": 159, "$t": "$eI" }, + "YYmemberGrp": { "right": 16, "y": 116, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Label1", "chaowanLv"] }, + "_HorizontalLayout1": { "gap": 6, "verticalAlign": "middle", "$t": "$eHL" }, + "_Label1": { "size": 20, "text": "您的超玩会员等级为:", "textColor": 15007744, "y": 1, "$t": "$eL" }, + "chaowanLv": { "size": 20, "text": "9", "textColor": 1625600, "x": 131, "$t": "$eL" }, + "otherScroller": { "height": 359, "horizontalCenter": 100.5, "scrollPolicyH": "off", "verticalCenter": 90.5, "$t": "$eS", "viewport": "otherList" }, + "otherList": { "itemRendererSkinName": "YYLobbyPrivilegesGiftItemSkin", "x": -1.33, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "dailyScroller": { "height": 359, "horizontalCenter": 100.5, "scrollPolicyH": "off", "scrollPolicyV": "off", "verticalCenter": 90.5, "$t": "$eS", "viewport": "dailyList" }, + "dailyList": { "itemRendererSkinName": "YYChaoWanDailyItemSkin", "x": -1.33, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": 12, "$t": "$eHL" }, + "btnScroller": { "bottom": 9, "height": 388, "left": 8, "width": 185, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": ["dragDropUI", "closeBtn", "exchangeChaoWan", "moreGift", "chaowanLv", "YYmemberGrp", "otherList", "otherScroller", "dailyList", "dailyScroller", "tabBar", "btnScroller", "infoGrp"], + "$sC": "$eSk" + }, + "YYChaoWanWinSkin$Skin100": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "YYLobbyPrivilegesGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml", + "$bs": { "height": 115, "width": 657, "$eleC": ["_Image1", "curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "apay_liebiao_bg_png", "$t": "$eI" }, + "curDay": { "left": 27, "size": 18, "text": "使用YY游戏大厅,累计登陆6天领取", "textColor": 14464905, "top": 13, "$t": "$eL" }, + "rewards": { "itemRendererSkinName": "ItemBaseSkin", "left": 27, "top": 41, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveBtn": { "height": 46, "label": "领取奖励", "right": 29, "verticalCenter": 0, "width": 113, "$t": "$eB", "skinName": "YYLobbyPrivilegesGiftItemSkin$Skin101" }, + "receiveImg": { "right": 42, "source": "apay_yilingqu", "verticalCenter": 0, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 614, "y": 32, "$t": "app.RedDotControl" }, + "$sP": ["curDay", "rewards", "receiveBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "YYLobbyPrivilegesGiftItemSkin$Skin101": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "YYLobbyPrivilegesTabSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml", + "$bs": { "height": 59, "width": 185, "$eleC": ["_Image1", "labelDisplay", "redPoint"] }, + "_Image1": { "horizontalCenter": 0, "source": "YY_yq_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { + "bold": true, + "horizontalCenter": 3, + "size": 25, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redPoint": { "left": 2, "source": "YY_yq_jiang", "top": 0, "visible": false, "$t": "$eI" }, + "$sP": ["labelDisplay", "redPoint"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 12558199 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 2498842 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "YY_yq_2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14471870 }, + { "target": "labelDisplay", "name": "strokeColor", "value": 5386243 } + ] + } + }, + "$sC": "$eSk" + }, + "YYLobbyPrivilegesWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "closeBtn", "infoGroup", "btnScroller"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 556, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 200, "x": 72.28, "y": 106.3, "$t": "$eI" }, + "_Image2": { "height": 404, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 680, "x": 271.78, "y": 259.1, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "YYLobbyPrivilegesWinSkin$Skin102" }, + "infoGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 555, + "touchEnabled": false, + "width": 679, + "x": 275.28, + "y": 107.3, + "$t": "$eG", + "$eleC": ["_Image3", "bgImage", "downImg", "otherScroller", "noviceGrp"] + }, + "_Image3": { "horizontalCenter": -100.5, "source": "YY_bt1", "touchEnabled": false, "x": 238, "y": -45.33, "$t": "$eI" }, + "bgImage": { "source": "YY_banner2", "x": -2.01, "y": 2, "$t": "$eI" }, + "downImg": { "right": 18, "source": "YY_t_ljxz", "top": 101, "$t": "$eI" }, + "otherScroller": { "height": 393, "width": 668, "x": 3, "y": 156, "$t": "$eS", "viewport": "otherList" }, + "otherList": { "itemRendererSkinName": "YYLobbyPrivilegesGiftItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "paddingLeft": 5, "paddingTop": 3, "$t": "$eVL" }, + "noviceGrp": { "height": 393, "width": 668, "x": 3.17, "y": 156, "$t": "$eG", "$eleC": ["_Image4", "_Image5", "receiveBtn", "receiveImg", "redPoint", "noviceList"] }, + "_Image4": { "source": "YY_bg2_png", "$t": "$eI" }, + "_Image5": { "horizontalCenter": 0, "source": "YY_t_xslb", "top": 41, "$t": "$eI" }, + "receiveBtn": { "bottom": 13, "height": 85, "horizontalCenter": 0, "label": "", "width": 176, "$t": "$eB", "skinName": "YYLobbyPrivilegesWinSkin$Skin103" }, + "receiveImg": { "bottom": 23, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "redPoint": { "visible": false, "x": 385, "y": 309, "$t": "app.RedDotControl" }, + "noviceList": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": -5, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "btnScroller": { "height": 536, "width": 185, "x": 79.61, "y": 116.3, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "$sP": ["dragDropUI", "closeBtn", "bgImage", "downImg", "otherList", "otherScroller", "receiveBtn", "receiveImg", "redPoint", "noviceList", "noviceGrp", "infoGroup", "tabBar", "btnScroller"], + "$sC": "$eSk" + }, + "YYLobbyPrivilegesWinSkin$Skin102": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "YYLobbyPrivilegesWinSkin$Skin103": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "YY_btn_ljlq", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "YY_btn_ljlq" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "YY_btn_ljlq2" }] } + }, + "$sC": "$eSk" + }, + "YYMemberGiftItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml", + "$bs": { "height": 365, "width": 259, "$eleC": ["_Image1", "itemData", "titleImg", "_Image2", "itemDesc", "YYDesc", "buyBtn", "receiveImg", "redPoint"] }, + "_Image1": { "source": "YY_bg6_png", "$t": "$eI" }, + "itemData": { "horizontalCenter": -3.5, "skinName": "ItemBaseSkin", "verticalCenter": -109.5, "$t": "app.ItemBase" }, + "titleImg": { "horizontalCenter": -2, "scaleX": 1.3, "scaleY": 1.3, "source": "ch_show_008", "verticalCenter": -115.5, "$t": "$eI" }, + "_Image2": { "anchorOffsetY": 0, "height": 136, "horizontalCenter": 0.5, "scale9Grid": "25,29,150,4", "source": "YY_bg4", "verticalCenter": 9.5, "$t": "$eI" }, + "itemDesc": { "horizontalCenter": -2, "lineSpacing": 4, "size": 17, "stroke": 1, "text": "", "textAlign": "center", "textColor": 2682369, "width": 157, "y": 133, "$t": "$eL" }, + "YYDesc": { "bottom": 76, "horizontalCenter": -4, "size": 16, "stroke": 1, "text": "", "textColor": 2682369, "$t": "$eL" }, + "buyBtn": { "height": 46, "label": "购 买", "width": 113, "x": 67.87, "y": 300.54, "$t": "$eB", "skinName": "YYMemberGiftItemSkin$Skin104" }, + "receiveImg": { "bottom": 7, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "redPoint": { "visible": false, "x": 168, "y": 299, "$t": "app.RedDotControl" }, + "$sP": ["itemData", "titleImg", "itemDesc", "YYDesc", "buyBtn", "receiveImg", "redPoint"], + "$sC": "$eSk" + }, + "YYMemberGiftItemSkin$Skin104": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "YYMemberNewServerItemSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml", + "$bs": { + "height": 365, + "width": 207, + "$eleC": ["_Image1", "title", "_Image2", "_Image3", "itemData", "itemDesc", "originalPrice", "curPrice", "_Image4", "_Image5", "_Image6", "YYDesc", "buyBtn", "receiveImg"] + }, + "_Image1": { "source": "YY_bg3_png", "$t": "$eI" }, + "title": { "horizontalCenter": -2.5, "size": 24, "stroke": 1, "text": "", "textColor": 16770596, "top": 14, "$t": "$eL" }, + "_Image2": { "anchorOffsetY": 0, "height": 84, "horizontalCenter": 0.5, "source": "YY_bg4", "verticalCenter": -12.5, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 7, "source": "YY_bg5", "verticalCenter": 63, "$t": "$eI" }, + "itemData": { "horizontalCenter": -3.5, "skinName": "ItemBaseSkin", "verticalCenter": -97.5, "$t": "app.ItemBase" }, + "itemDesc": { "horizontalCenter": 0, "size": 16, "stroke": 1, "text": "", "textAlign": "center", "textColor": 2682369, "width": 157, "y": 138.5, "$t": "$eL" }, + "originalPrice": { "size": 20, "stroke": 1, "text": "", "textColor": 14464905, "x": 34.34, "y": 221.5, "$t": "$eL" }, + "curPrice": { "size": 20, "stroke": 1, "text": "", "textColor": 2682369, "x": 34.34, "y": 250, "$t": "$eL" }, + "_Image4": { "source": "icon_yuanbao", "x": 87.34, "y": 214, "$t": "$eI" }, + "_Image5": { "source": "icon_yuanbao", "x": 87.34, "y": 243, "$t": "$eI" }, + "_Image6": { "source": "YY_hongxian", "x": 32.34, "y": 231.5, "$t": "$eI" }, + "YYDesc": { "bottom": 64, "horizontalCenter": -4, "size": 16, "stroke": 1, "text": "", "textColor": 2682369, "$t": "$eL" }, + "buyBtn": { "height": 46, "label": "购 买", "width": 113, "x": 46.87, "y": 307.54, "$t": "$eB", "skinName": "YYMemberNewServerItemSkin$Skin105" }, + "receiveImg": { "bottom": -1, "horizontalCenter": 0, "source": "apay_yilingqu", "$t": "$eI" }, + "$sP": ["title", "itemData", "itemDesc", "originalPrice", "curPrice", "YYDesc", "buyBtn", "receiveImg"], + "$sC": "$eSk" + }, + "YYMemberNewServerItemSkin$Skin105": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "YYMemberWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "tab", "redPoint", "infoGrp"] }, + "dragDropUI": { "source": "apay_bg2_png", "y": 0, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 4.5, "source": "YY_bt", "top": 61, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "YYMemberWinSkin$Skin106" }, + "tab": { "bottom": 545, "horizontalCenter": -460, "itemRendererSkinName": "CrossServerTabSkin", "top": 116, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "redPoint": { "left": 32, "top": 87, "visible": false, "$t": "app.RedDotControl" }, + "infoGrp": { + "height": 556, + "width": 878, + "x": 75.29, + "y": 107.99, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5", "YYmemberGrp", "openYyGrp", "btnScroller", "giftGrp", "fuliGrp"] + }, + "_Image2": { "source": "YY_banner", "$t": "$eI" }, + "_Image3": { "bottom": 0, "height": 406, "left": 0, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 200, "$t": "$eI" }, + "_Image4": { "bottom": 7, "right": 4, "source": "YY_bg_png", "$t": "$eI" }, + "_Image5": { "bottom": 0, "height": 406, "right": 0, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "width": 677, "$t": "$eI" }, + "YYmemberGrp": { "visible": false, "x": 647, "y": 116, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Image6", "YYLvImg"] }, + "_HorizontalLayout1": { "gap": 2, "verticalAlign": "middle", "$t": "$eHL" }, + "_Image6": { "scaleX": 1, "scaleY": 1, "source": "YY_t_hydj", "x": 78, "y": 58, "$t": "$eI" }, + "YYLvImg": { "scaleX": 1, "scaleY": 1, "source": "YY_t_hy1", "x": 255, "y": 65, "$t": "$eI" }, + "openYyGrp": { "visible": false, "x": 554, "y": 92, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["_Image7", "openYYBtn"] }, + "_HorizontalLayout2": { "gap": 19, "verticalAlign": "bottom", "$t": "$eHL" }, + "_Image7": { "scaleX": 1, "scaleY": 1, "source": "YY_t_wkt", "x": 78, "y": 58, "$t": "$eI" }, + "openYYBtn": { "height": 48, "icon": "YY_btn_ljkt", "label": "Button", "skinName": "Btn0Skin", "width": 118, "x": 6, "y": 321, "$t": "$eB" }, + "btnScroller": { "bottom": 9, "height": 388, "left": 8, "width": 185, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "YYLobbyPrivilegesTabSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 8, "horizontalAlign": "center", "$t": "$eVL" }, + "giftGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 382, "width": 643, "x": 219, "y": 163, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["giftItem0", "giftItem1"] }, + "_HorizontalLayout3": { "gap": 35, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "giftItem0": { "skinName": "YYMemberGiftItemSkin", "x": 17, "y": 11, "$t": "app.YYMemberGiftItem" }, + "giftItem1": { "skinName": "YYMemberGiftItemSkin", "x": 27, "y": 21, "$t": "app.YYMemberGiftItem" }, + "fuliGrp": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 382, + "width": 643, + "x": 219, + "y": 163, + "$t": "$eG", + "layout": "_HorizontalLayout4", + "$eleC": ["fuliItem0", "fuliItem1", "fuliItem2"] + }, + "_HorizontalLayout4": { "gap": 5, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "fuliItem0": { "skinName": "YYMemberNewServerItemSkin", "x": 102, "y": 145, "$t": "app.YYMemberNewServerItem" }, + "fuliItem1": { "skinName": "YYMemberNewServerItemSkin", "x": 112, "y": 155, "$t": "app.YYMemberNewServerItem" }, + "fuliItem2": { "skinName": "YYMemberNewServerItemSkin", "x": 122, "y": 165, "$t": "app.YYMemberNewServerItem" }, + "$sP": [ + "dragDropUI", + "closeBtn", + "tab", + "redPoint", + "YYLvImg", + "YYmemberGrp", + "openYYBtn", + "openYyGrp", + "tabBar", + "btnScroller", + "giftItem0", + "giftItem1", + "giftGrp", + "fuliItem0", + "fuliItem1", + "fuliItem2", + "fuliGrp", + "infoGrp" + ], + "$sC": "$eSk" + }, + "YYMemberWinSkin$Skin106": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "YYWxGiftWinSkin": { + "$path": "resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "_Group1"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 4.5, "source": "WX_bt", "top": 61, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "YYWxGiftWinSkin$Skin107" }, + "_Group1": { "height": 545, "horizontalCenter": 0.5, "verticalCenter": 39.5, "width": 868, "$t": "$eG", "$eleC": ["_Image2", "cdKeyText", "btnGetAward", "itemData"] }, + "_Image2": { "scale9Grid": "60,60,12,12", "source": "wx_bg_png", "$t": "$eI" }, + "cdKeyText": { "horizontalCenter": "15.5", "prompt": "<请输入激活码>", "text": "", "textAlign": "center", "verticalCenter": "-1.5", "width": 399, "$t": "$eET" }, + "btnGetAward": { "height": 56, "horizontalCenter": 16.5, "label": "", "verticalCenter": 55.5, "width": 137, "$t": "$eB", "skinName": "YYWxGiftWinSkin$Skin108" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 726, "y": 419, "$t": "app.ItemBase" }, + "$sP": ["dragDropUI", "closeBtn", "cdKeyText", "btnGetAward", "itemData"], + "$sC": "$eSk" + }, + "YYWxGiftWinSkin$Skin107": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "YYWxGiftWinSkin$Skin108": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "fl_jhm_btn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "fl_jhm_btn_1" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "BtnResurrectionSkin": { + "$path": "resource/eui_skins/web/common/BtnResurrectionSkin.exml", + "$bs": { "currentState": "down", "height": 34, "width": 95, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "revive_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": -0.5, "size": 20, "stroke": 2, "text": "回城复活", "textColor": 15779990, "verticalCenter": -1, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image1", "name": "verticalCenter", "value": 0 }, + { "target": "labelDisplay", "name": "scaleX", "value": 0.98 }, + { "target": "labelDisplay", "name": "scaleY", "value": 0.98 }, + { "target": "labelDisplay", "name": "verticalCenter", "value": 0 }, + { "target": "labelDisplay", "name": "horizontalCenter", "value": 0 } + ] + } + }, + "$sC": "$eSk" + }, + "AutoReviveWinSkin": { + "$path": "resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml", + "$bs": { "$eleC": ["bgImg", "reviveCountLab", "btnGrp0", "btnGrp1", "btnGrp2", "powerFul", "_Group1"] }, + "bgImg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "79,79,3,3", "source": "revive_zz", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "reviveCountLab": { "horizontalCenter": -1, "size": 24, "text": "剩余复活次数:3", "textColor": 16738304, "verticalCenter": -271, "visible": false, "$t": "$eL" }, + "btnGrp0": { "horizontalCenter": -8.5, "verticalCenter": 67, "visible": false, "$t": "$eG", "$eleC": ["backCity0", "moneyIcon0"] }, + "backCity0": { "icon": "revive_btn2", "label": "立即复活 *10", "skinName": "BtnResurrectionSkin", "$t": "$eB" }, + "moneyIcon0": { "height": 30, "source": "icon_yuanbao", "touchEnabled": false, "visible": false, "width": 30, "x": 132, "y": 33, "$t": "$eI" }, + "btnGrp1": { "horizontalCenter": -8.5, "verticalCenter": -20, "visible": false, "$t": "$eG", "$eleC": ["backCity1", "moneyIcon1"] }, + "backCity1": { "icon": "revive_btn2", "label": "立即复活 *10", "skinName": "BtnResurrectionSkin", "$t": "$eB" }, + "moneyIcon1": { "height": 30, "source": "icon_yuanbao", "touchEnabled": false, "visible": false, "width": 30, "x": 132, "y": 33, "$t": "$eI" }, + "btnGrp2": { "horizontalCenter": -8.5, "verticalCenter": -106, "visible": false, "$t": "$eG", "$eleC": ["backCity2", "moneyIcon2"] }, + "backCity2": { "icon": "revive_btn2", "label": "立即复活 *10", "skinName": "BtnResurrectionSkin", "$t": "$eB" }, + "moneyIcon2": { "height": 30, "source": "icon_yuanbao", "touchEnabled": false, "visible": false, "width": 30, "x": 132, "y": 33, "$t": "$eI" }, + "powerFul": { "horizontalCenter": -20, "icon": "bq_icon", "label": "Button", "skinName": "Btn0Skin", "verticalCenter": -90, "visible": false, "$t": "$eB" }, + "_Group1": { "horizontalCenter": 0, "top": 40, "$t": "$eG", "$eleC": ["_Image1", "_Label1", "killName", "cdTimeLab", "btnGrp", "reviveNumLab", "moneyGrp"] }, + "_Image1": { "source": "revive_bg", "$t": "$eI" }, + "_Label1": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "复活角色", "textColor": 15655172, "y": 16, "$t": "$eL" }, + "killName": { "horizontalCenter": 8.5, "size": 18, "stroke": 2, "text": "你被斩你娃儿击败了!", "textColor": 15064527, "y": 46, "$t": "$eL" }, + "cdTimeLab": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "10秒后场景内复活(复活特权已加速)", "textColor": 2682369, "y": 74, "$t": "$eL" }, + "btnGrp": { "horizontalCenter": -2, "verticalCenter": 42.5, "$t": "$eG", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 55, "$t": "$eHL" }, + "reviveNumLab": { "horizontalCenter": 0.5, "size": 18, "stroke": 2, "text": "剩余复活次数:3", "textColor": 2682369, "visible": false, "y": 105, "$t": "$eL" }, + "moneyGrp": { "right": 19, "visible": false, "y": 98, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["moneyImg", "moneyNum"] }, + "_HorizontalLayout2": { "gap": 0, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "moneyImg": { "scaleX": 1, "scaleY": 1, "source": "icon_yuanbao", "$t": "$eI" }, + "moneyNum": { "size": 20, "stroke": 2, "text": "10", "textColor": 15064527, "x": 8, "y": 10, "$t": "$eL" }, + "$sP": [ + "bgImg", + "reviveCountLab", + "backCity0", + "moneyIcon0", + "btnGrp0", + "backCity1", + "moneyIcon1", + "btnGrp1", + "backCity2", + "moneyIcon2", + "btnGrp2", + "powerFul", + "killName", + "cdTimeLab", + "btnGrp", + "reviveNumLab", + "moneyImg", + "moneyNum", + "moneyGrp" + ], + "$sC": "$eSk" + }, + "CloseButtonSkin": { + "$path": "resource/eui_skins/web/common/CloseButtonSkin.exml", + "$bs": { "height": 26, "width": 26, "$eleC": ["_Image1"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "btn_guanbi", "top": 0, "$t": "$eI" }, + "$s": { + "up": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] }, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] } + }, + "$sC": "$eSk" + }, + "BagBatchUseSkin": { + "$path": "resource/eui_skins/web/bag/BagBatchUseSkin.exml", + "$bs": { "$eleC": ["rect", "_Group2"] }, + "rect": { "bottom": 0, "fillAlpha": 0.3, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group2": { + "height": 390, + "horizontalCenter": 0, + "verticalCenter": -103, + "width": 315, + "$t": "$eG", + "$eleC": [ + "_Image1", + "_Image2", + "imgBg", + "btn_close", + "itemData", + "itemName", + "itemNum", + "_Image3", + "descScroller", + "itemAttr", + "lessLessBtn", + "lessBtn", + "addBtn", + "addaddBtn", + "_Image4", + "enterNum", + "sure" + ] + }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,12,3,3", "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,12,3,3", "source": "9s_tipsk", "top": 0, "$t": "$eI" }, + "imgBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,75,23,3", "source": "bag_piliangbg_1", "top": 0, "$t": "$eI" }, + "btn_close": { "label": "", "right": 4, "skinName": "CloseButtonSkin", "top": 5, "$t": "$eB" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 25.98, "y": 20.66, "$t": "app.ItemBase" }, + "itemName": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 109, "y": 23, "$t": "$eL" }, + "itemNum": { "size": 19, "stroke": 2, "text": "", "textColor": 1769471, "x": 110.9, "y": 60.5, "$t": "$eL" }, + "_Image3": { "horizontalCenter": 2, "source": "bag_fengexian", "verticalCenter": -90, "x": 12, "y": 88, "$t": "$eI" }, + "descScroller": { "height": 119, "horizontalCenter": 1.5, "scrollPolicyH": "off", "width": 256, "y": 118, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["itemDesc"] }, + "itemDesc": { "lineSpacing": 5, "size": 19, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "width": 256, "y": 3, "$t": "$eL" }, + "itemAttr": { "size": 20, "stroke": 2, "text": "", "textColor": 26367, "x": 19, "y": 245, "$t": "$eL" }, + "lessLessBtn": { "icon": "com_jianjian", "label": "Button", "skinName": "Btn0Skin", "x": 15, "y": 279, "$t": "$eB" }, + "lessBtn": { "icon": "com_jian", "label": "Button", "skinName": "Btn0Skin", "x": 58.8, "y": 279, "$t": "$eB" }, + "addBtn": { "icon": "com_jia", "label": "Button", "skinName": "Btn0Skin", "x": 221.8, "y": 279, "$t": "$eB" }, + "addaddBtn": { "icon": "com_jiajia", "label": "Button", "skinName": "Btn0Skin", "x": 266, "y": 279, "$t": "$eB" }, + "_Image4": { "bottom": 78, "height": 36, "horizontalCenter": 0, "scale9Grid": "5,5,32,32", "source": "bag_piliangbg_0", "width": 99.6, "$t": "$eI" }, + "enterNum": { + "bottom": "80", + "height": 28.8, + "horizontalCenter": "0", + "restrict": "0-9", + "size": 24, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 90.2, + "$t": "$eET" + }, + "sure": { "bottom": 17, "horizontalCenter": 0, "label": "使 用", "skinName": "Btn9Skin", "$t": "$eB" }, + "$sP": ["rect", "imgBg", "btn_close", "itemData", "itemName", "itemNum", "itemDesc", "descScroller", "itemAttr", "lessLessBtn", "lessBtn", "addBtn", "addaddBtn", "enterNum", "sure"], + "$sC": "$eSk" + }, + "ViewBgWin5Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin5Skin.exml", + "$bs": { "height": 346, "width": 473, "$eleC": ["_Group1"] }, + "_Group1": { "height": 346, "width": 473, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "source": "chat_bg_tc1_2_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 450, "y": -9, "$t": "$eB", "skinName": "ViewBgWin5Skin$Skin109" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin5Skin$Skin109": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + + "BagGoldChangeSkin": { + "$path": "resource/eui_skins/web/bag/BagGoldChangeSkin.exml", + "$bs": { "height": 346, "width": 473, "$eleC": ["dragDropUI", "_Group1", "_Image3", "_Group2", "ratio", "_Group3", "_Image6", "inputNum", "_Button1", "curImg", "sure", "closeBtn", "_Image7"] }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "$t": "app.UIViewFrame" }, + "_Group1": { "bottom": 183, "horizontalCenter": -112, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "leftMoney", "curYuanBao"] }, + "_Image1": { "source": "com_icon_bg1", "visible": false, "$t": "$eI" }, + "_Image2": { "horizontalCenter": -1, "source": "quality_0", "verticalCenter": 0, "$t": "$eI" }, + "leftMoney": { "height": 60, "horizontalCenter": -0.5, "source": "icon_jinbi", "verticalCenter": 0, "width": 60, "$t": "$eI" }, + "curYuanBao": { "horizontalCenter": -0.5, "size": 18, "stroke": 2, "text": "拥有:0", "textColor": 15064527, "verticalCenter": 45, "$t": "$eL" }, + "_Image3": { "bottom": 217, "horizontalCenter": -1, "source": "sx_jiantou", "$t": "$eI" }, + "_Group2": { "bottom": 183, "horizontalCenter": 116, "$t": "$eG", "$eleC": ["_Image4", "rightQuality", "rightMoney", "payAccount", "payAccountBg", "payAccountInput", "curYinLiang"] }, + "_Image4": { "source": "com_icon_bg1", "visible": false, "$t": "$eI" }, + "rightQuality": { "horizontalCenter": -1, "source": "quality_0", "verticalCenter": 0, "$t": "$eI" }, + "rightMoney": { "source": "icon_bangding", "width": 55, "height": 55, "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "payAccount": { "horizontalCenter": -2.5, "verticalCenter": -20, "size": 18, "stroke": 2, "text": "支付宝账号", "textColor": 15064527, "visible": false, "$t": "$eL" }, + "payAccountBg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": 92, + "height": 35, + "horizontalCenter": 0, + "verticalCenter": 10, + "scale9Grid": "3,3,18,18", + "source": "com_bg_kuang_xian2", + "width": 128.67, + "visible": false, + "$t": "$eI" + }, + "payAccountInput": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": "96", + "height": 26.67, + "horizontalCenter": 0, + "verticalCenter": 10, + "size": 18, + "text": "Label", + "textAlign": "center", + "verticalAlign": "middle", + "width": 125.34, + "visible": false, + "$t": "$eET" + }, + "curYinLiang": { "horizontalCenter": -2.5, "size": 18, "stroke": 2, "text": "拥有:500", "textColor": 15064527, "verticalCenter": 45, "$t": "$eL" }, + "ratio": { "size": 24, "stroke": 2, "text": "转换比例 1:1", "textColor": 16742144, "x": 169.32, "y": 179.67, "$t": "$eL" }, + "_Group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": 89, + "height": 39.67, + "horizontalCenter": 3.5, + "width": 372.33, + "$t": "$eG", + "$eleC": ["addYiBai", "jianYiBai", "addYiWan", "addYiBaiWan", "addBtn", "jianBtn"] + }, + "addYiBai": { "height": 30, "icon": "com_jiabg", "label": "+100", "width": 63, "x": 261, "y": 6, "$t": "$eB", "skinName": "BagGoldChangeSkin$Skin110" }, + "jianYiBai": { "height": 30, "icon": "com_jiabg", "label": "-100", "width": 63, "x": 42, "y": 6, "$t": "$eB", "skinName": "BagGoldChangeSkin$Skin111" }, + "addYiWan": { "label": "+1万", "scaleX": 0.7, "scaleY": 0.7, "skinName": "Btn9Skin", "visible": false, "x": 32, "y": 20.01, "$t": "$eB" }, + "addYiBaiWan": { "label": "+100万", "scaleX": 0.65, "scaleY": 0.65, "skinName": "Btn9Skin", "visible": false, "x": 42, "y": 27, "$t": "$eB" }, + "addBtn": { "icon": "com_jiajia", "label": "Button", "skinName": "Btn0Skin", "x": 332, "y": 5, "$t": "$eB" }, + "jianBtn": { "icon": "com_jianjian", "label": "Button", "skinName": "Btn0Skin", "x": 1.67, "y": 5, "$t": "$eB" }, + "_Image6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 92, "height": 35, "horizontalCenter": 3, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 128.67, "$t": "$eI" }, + "inputNum": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": "96", + "height": 26.67, + "horizontalCenter": "2", + "restrict": "0-9", + "size": 18, + "text": "Label", + "textAlign": "center", + "verticalAlign": "middle", + "width": 125.34, + "$t": "$eET" + }, + "_Button1": { "bottom": 20, "horizontalCenter": -91, "label": "确定转换", "skinName": "Btn9Skin", "visible": false, "$t": "$eB" }, + "curImg": { "bottom": 46, "horizontalCenter": -17.5, "source": "icon_jinbi", "visible": false, "$t": "$eI" }, + "sure": { + "bottom": 19, + "height": 44, + "horizontalCenter": -89, + "label": "转 换", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "BagGoldChangeSkin$Skin112" + }, + "closeBtn": { + "bottom": 19, + "height": 44, + "horizontalCenter": 97, + "label": "取 消", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 193, + "y": 289, + "$t": "$eB", + "skinName": "BagGoldChangeSkin$Skin113" + }, + "_Image7": { "source": "boss_fengexian", "x": 51, "y": 171, "$t": "$eI" }, + "$sP": [ + "dragDropUI", + "leftMoney", + "curYuanBao", + "rightQuality", + "rightMoney", + "payAccount", + "payAccountBg", + "payAccountInput", + "curYinLiang", + "addYiBai", + "jianYiBai", + "addYiWan", + "addYiBaiWan", + "addBtn", + "jianBtn", + "inputNum", + "ratio", + "curImg", + "sure", + "closeBtn" + ], + "$sC": "$eSk" + }, + "BagGoldChangeSkin$Skin110": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_jiabg", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_jiabg" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_jiabg" }] } + }, + "$sC": "$eSk" + }, + "BagGoldChangeSkin$Skin111": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_jiabg", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_jiabg" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_jiabg" }] } + }, + "$sC": "$eSk" + }, + "BagGoldChangeSkin$Skin112": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "BagGoldChangeSkin$Skin113": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + + "BagItemSplitSkin": { + "$path": "resource/eui_skins/web/bag/BagItemSplitSkin.exml", + "$bs": { "height": 347, "width": 300, "$eleC": ["_Group2"] }, + "_Group2": { + "height": 347, + "touchEnabled": false, + "width": 300, + "$t": "$eG", + "$eleC": ["dragDropUI", "imgBg", "_Image1", "_Image2", "itemName", "curItemNum", "_Label1", "_Group1", "sure", "maxBtn", "minBtn", "minimumBtn", "biggestBtn", "Cancels", "_Image3", "inputNum"] + }, + "dragDropUI": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "12,11,1,1", "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "imgBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "24,73,2,5", "source": "bag_piliangbg_2", "top": 0, "$t": "$eI" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "13,12,2,3", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image2": { "source": "bag_fengexian", "x": 8.4, "y": 88.8, "$t": "$eI" }, + "itemName": { "size": 20, "stroke": 2, "text": "金砖", "textColor": 16718530, "x": 98, "y": 25.8, "$t": "$eL" }, + "curItemNum": { "size": 18, "stroke": 2, "text": "数量:20", "textColor": 1769471, "x": 98.06, "y": 59.53, "$t": "$eL" }, + "_Label1": { "lineSpacing": 5, "size": 20, "stroke": 2, "text": "物品拆分后将分为两堆,请选择需要拆分的数量", "textColor": 15064527, "width": 260, "x": 18.4, "y": 107.4, "$t": "$eL" }, + "_Group1": { "bottom": 263, "horizontalCenter": -96, "$t": "$eG", "$eleC": ["itemBg", "curItem"] }, + "itemBg": { "source": "quality_2", "$t": "$eI" }, + "curItem": { "horizontalCenter": 0, "source": "10001", "verticalCenter": 0, "$t": "$eI" }, + "sure": { "bottom": 17, "horizontalCenter": -0.5, "icon": "btn_0", "label": "拆 分", "skinName": "Btn9Skin", "$t": "$eB" }, + "maxBtn": { "bottom": 83, "icon": "com_jia", "label": "Button", "right": 61, "skinName": "Btn0Skin", "$t": "$eB" }, + "minBtn": { "bottom": 83, "icon": "com_jian", "label": "Button", "left": 59, "skinName": "Btn0Skin", "$t": "$eB" }, + "minimumBtn": { "bottom": 83, "icon": "com_jianjian", "label": "Button", "left": 19, "skinName": "Btn0Skin", "$t": "$eB" }, + "biggestBtn": { "bottom": 83, "icon": "com_jiajia", "label": "Button", "left": 251, "skinName": "Btn0Skin", "$t": "$eB" }, + "Cancels": { "icon": "btn_0", "label": "取 消", "right": 3, "skinName": "CloseButtonSkin", "top": 2, "$t": "$eB" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 80, "height": 35, "horizontalCenter": 0.5, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 99, "$t": "$eI" }, + "inputNum": { + "anchorOffsetX": 0, + "bottom": "84", + "height": 26, + "horizontalCenter": "0", + "restrict": "0-9", + "size": 20, + "stroke": 2, + "text": "0", + "textAlign": "center", + "verticalAlign": "middle", + "width": 85.67, + "$t": "$eET" + }, + "$sP": ["dragDropUI", "imgBg", "itemName", "curItemNum", "itemBg", "curItem", "sure", "maxBtn", "minBtn", "minimumBtn", "biggestBtn", "Cancels", "inputNum"], + "$sC": "$eSk" + }, + "ViewBgWin4Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin4Skin.exml", + "$bs": { "height": 478, "width": 431, "$eleC": ["_Group1"] }, + "_Group1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "167,80,98,339", "scaleX": 1, "scaleY": 1, "source": "task_k1_png", "top": 0, "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 404, "y": -9, "$t": "$eB", "skinName": "ViewBgWin4Skin$Skin114" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin4Skin$Skin114": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "BagRecycleSkin": { + "$path": "resource/eui_skins/web/bag/BagRecycleSkin.exml", + "$bs": { "height": 478, "width": 431, "$eleC": ["dragDropUI", "_Image1", "itemBg", "_Image2", "sure", "itemGrp", "_Label1", "_Image3", "itemList", "itemTxt"] }, + "dragDropUI": { "horizontalCenter": 0, "skinName": "ViewBgWin4Skin", "verticalCenter": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "horizontalCenter": 0, "source": "bg_huishou_png", "verticalCenter": 11, "$t": "$eI" }, + "itemBg": { "fillAlpha": 0, "height": 138, "width": 341, "x": 45, "y": 60, "$t": "$eR" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 145, "horizontalCenter": 1.5, "scale9Grid": "14,13,2,3", "source": "mail_bg", "verticalCenter": 69.5, "width": 353.5, "$t": "$eI" }, + "sure": { "horizontalCenter": 1, "label": "确定回收", "skinName": "Btn9Skin", "verticalCenter": 174, "$t": "$eB" }, + "itemGrp": { "horizontalCenter": 0.5, "verticalCenter": -106, "$t": "$eG", "$eleC": ["itemQua", "itemIcon", "itemNum"] }, + "itemQua": { "horizontalCenter": 0, "source": "quality_1", "verticalCenter": 0, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "itemNum": { "bottom": 2, "right": 4, "size": 16, "stroke": 2, "text": "", "$t": "$eL" }, + "_Label1": { "size": 18, "stroke": 2, "text": "回收后可获得以下物品!", "textColor": 15064527, "x": 122, "y": 197.01, "$t": "$eL" }, + "_Image3": { "source": "get_bg2", "x": 74.3, "y": 210.64, "$t": "$eI" }, + "itemList": { "horizontalCenter": -0.5, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 37, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "itemTxt": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "从背包拖入物品可查看回收奖励", "textColor": 15064527, "verticalCenter": 68, "$t": "$eL" }, + "$sP": ["dragDropUI", "itemBg", "sure", "itemQua", "itemIcon", "itemNum", "itemGrp", "itemList", "itemTxt"], + "$sC": "$eSk" + }, + "BagUpSkin": { + "$path": "resource/eui_skins/web/bag/BagUpSkin.exml", + "$bs": { "height": 47, "width": 46, "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "bag_fanye_1", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.9 }, + { "target": "_Image1", "name": "scaleY", "value": 0.9 } + ] + } + }, + "$sC": "$eSk" + }, + "ViewBgWin2Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin2Skin.exml", + "$bs": { "height": 570, "width": 536, "$eleC": ["_Group1"] }, + "_Group1": { "height": 529, "width": 536, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "bag_bg_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "visible": false, "$t": "$eL" }, + "btn_close": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 516, "y": -10, "$t": "$eB", "skinName": "ViewBgWin2Skin$Skin115" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin2Skin$Skin115": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "moneyPanelSkin": { + "$path": "resource/eui_skins/web/common/moneyPanelSkin.exml", + "$bs": { "width": 119, "$eleC": ["_Image1", "_Group1"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "top": 0, "$t": "$eI" }, + "_Group1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "$eleC": ["icon", "count"] }, + "icon": { "left": 0, "scaleX": 1, "scaleY": 1, "source": "icon_jinbi", "verticalCenter": 0, "x": 0, "$t": "$eI" }, + "count": { "right": 6, "scaleX": 1, "scaleY": 1, "size": 20, "text": "0", "verticalCenter": 0, "x": 169, "$t": "$eL" }, + "$sP": ["icon", "count"], + "$sC": "$eSk" + }, + + "BagViewSkin": { + "$path": "resource/eui_skins/web/bag/BagViewSkin.exml", + "$bs": { + "height": 570, + "width": 582, + "$eleC": [ + "dragDropUI", + "_Image1", + "_Group1", + "tab", + "_Group2", + "arrange", + "curCapacity", + "function", + "moneyGrp", + "sildGrp", + "_RuleTipsButton1", + "_Group7", + "wareHouseBtn", + "recoveryBtn", + "recoveryBtn2", + "effGrp" + ] + }, + "dragDropUI": { "skinName": "ViewBgWin2Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "height": 382, "horizontalCenter": -21, "scale9Grid": "10,9,1,2", "source": "com_bg_kuang_xian1", "visible": false, "width": 507, "y": 6, "$t": "$eI" }, + "_Group1": { "height": 372, "horizontalCenter": -23, "name": "装备", "width": 498, "y": 17, "$t": "$eG", "$eleC": ["equipScroller"] }, + "equipScroller": { "height": 372, "scrollPolicyH": "off", "scrollPolicyV": "off", "width": 498, "$t": "$eS", "viewport": "equipList" }, + "equipList": { "$t": "$eG", "$eleC": ["equipBg", "equipLab", "equipStar", "itemEffGrp"] }, + "equipBg": { "height": 372, "width": 498, "$t": "$eG" }, + "equipLab": { "height": 372, "touchEnabled": false, "width": 498, "$t": "$eG" }, + "equipStar": { "height": 372, "touchEnabled": false, "width": 498, "x": 0, "y": 0, "$t": "$eG" }, + "itemEffGrp": { "height": 372, "touchEnabled": false, "width": 498, "$t": "$eG" }, + "tab": { "horizontalCenter": -137, "itemRendererSkinName": "Btn3Skin", "y": 403, "$t": "$eT", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 5, "$t": "$eHL" }, + "_Group2": { "touchEnabled": false, "x": 98, "y": 399, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["redPoint0", "redPoint1", "redPoint2"] }, + "_HorizontalLayout2": { "gap": 69, "$t": "$eHL" }, + "redPoint0": { "height": 20, "width": 20, "x": 44, "y": 21, "$t": "app.RedDotControl" }, + "redPoint1": { "height": 20, "width": 20, "x": 54, "y": 31, "$t": "app.RedDotControl" }, + "redPoint2": { "height": 20, "width": 20, "x": 64, "y": 41, "$t": "app.RedDotControl" }, + "arrange": { "horizontalCenter": 186.5, "label": "整 理", "y": 403, "$t": "$eB", "skinName": "BagViewSkin$Skin116" }, + "curCapacity": { "horizontalCenter": 89.5, "size": 24, "stroke": 2, "text": "fafaf", "textColor": 15064527, "y": 409, "$t": "$eL" }, + "function": { "horizontalCenter": 186.5, "label": "回 收", "visible": false, "y": 403, "$t": "$eB", "skinName": "BagViewSkin$Skin117" }, + "moneyGrp": { "visible": false, "x": 33, "y": 455, "$t": "$eG", "layout": "_TileLayout1", "$eleC": ["notBindGold", "bindGold", "notBindYuanBao", "bindYuanbao"] }, + "_TileLayout1": { "horizontalGap": 17, "requestedColumnCount": 2, "requestedRowCount": 2, "verticalGap": 7, "$t": "$eTL" }, + "notBindGold": { "height": 29, "skinName": "moneyPanelSkin", "width": 231, "x": -43, "y": -95, "$t": "app.moneyPanel" }, + "bindGold": { "height": 29, "skinName": "moneyPanelSkin", "width": 231, "x": 205, "y": -94.68, "$t": "app.moneyPanel" }, + "notBindYuanBao": { "height": 29, "skinName": "moneyPanelSkin", "width": 231, "x": 205, "y": -60, "$t": "app.moneyPanel" }, + "bindYuanbao": { "height": 29, "skinName": "moneyPanelSkin", "width": 231, "x": -43, "y": -547, "$t": "app.moneyPanel" }, + "sildGrp": { "visible": false, "x": 525.2, "y": 87, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "upBtn", "downBtn", "silding"] }, + "_Image2": { "source": "bag_fanye_bg", "$t": "$eI" }, + "_Image3": { "rotation": 90, "source": "com_fengexian", "width": 144, "x": 19.5, "y": 80.33, "$t": "$eI" }, + "upBtn": { "label": "Button", "skinName": "BagUpSkin", "x": -4, "y": 51.33, "$t": "$eB" }, + "downBtn": { "label": "Button", "scaleY": -1, "skinName": "BagUpSkin", "x": -3.66, "y": 237.67, "$t": "$eB" }, + "silding": { + "anchorOffsetY": 0, + "height": 94, + "maximum": 415, + "minimum": 0, + "name": "verticalSlider", + "value": 0, + "width": 20, + "x": 9.15, + "y": 98, + "$t": "$eVS", + "skinName": "BagViewSkin$Skin118" + }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "1", "x": 292, "y": 406, "$t": "app.RuleTipsButton" }, + "_Group7": { "touchEnabled": false, "x": 15, "y": 458, "$t": "$eG", "$eleC": ["_Group3", "_Group4", "_Group5", "_Group6"] }, + "_Group3": { "touchEnabled": false, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["_Label1", "goldNum", "goldIcon"] }, + "_HorizontalLayout3": { "gap": 5, "$t": "$eHL" }, + "_Label1": { "size": 20, "stroke": 2, "text": "金币:", "textColor": 15064527, "x": 1, "y": 6, "$t": "$eL" }, + "goldNum": { "size": 20, "stroke": 2, "text": "99,999,999", "textColor": 15064527, "x": 49.33, "y": 6.33, "$t": "$eL" }, + "goldIcon": { "size": 20, "stroke": 1, "text": "[转换]", "textColor": 8200665, "x": 126.7, "y": 17, "$t": "$eL" }, + "_Group4": { "touchEnabled": false, "x": 0, "y": 25, "$t": "$eG", "layout": "_HorizontalLayout4", "$eleC": ["_Label2", "yuanbaoNum", "yuanbaoIcon", "withdrawIcon"] }, + "_HorizontalLayout4": { "gap": 5, "$t": "$eHL" }, + "_Label2": { "size": 20, "stroke": 2, "text": "元宝:", "textColor": 15064527, "x": 1, "y": 6, "$t": "$eL" }, + "yuanbaoNum": { "size": 20, "stroke": 2, "text": "99,999,999", "textColor": 15064527, "x": 49.33, "y": 6.33, "$t": "$eL" }, + "yuanbaoIcon": { "size": 20, "stroke": 1, "text": "[转换]", "textColor": 8200665, "x": 126.7, "y": 17, "$t": "$eL" }, + "withdrawIcon": { "size": 20, "stroke": 1, "text": "[提现]", "textColor": 15655172, "x": 226.7, "y": 17, "$t": "$eL" }, + "_Group5": { "touchEnabled": false, "y": 50, "$t": "$eG", "layout": "_HorizontalLayout5", "$eleC": ["_Label3", "bindGoldNum"] }, + "_HorizontalLayout5": { "gap": 5, "$t": "$eHL" }, + "_Label3": { "size": 20, "stroke": 2, "text": "绑金:", "textColor": 15064527, "x": 1, "y": 6, "$t": "$eL" }, + "bindGoldNum": { "size": 20, "stroke": 2, "text": "9,999,999,999", "textColor": 15064527, "x": 49.33, "y": 6.33, "$t": "$eL" }, + "_Group6": { "touchEnabled": false, "y": 75, "$t": "$eG", "layout": "_HorizontalLayout6", "$eleC": ["_Label4", "yinliangNum"] }, + "_HorizontalLayout6": { "gap": 5, "$t": "$eHL" }, + "_Label4": { "size": 20, "stroke": 2, "text": "银两:", "textColor": 15064527, "x": 1, "y": 6, "$t": "$eL" }, + "yinliangNum": { "size": 20, "stroke": 2, "text": "9,999,999,999", "textColor": 15064527, "x": 49.33, "y": 6.33, "$t": "$eL" }, + "wareHouseBtn": { "height": 60, "label": "", "width": 60, "x": 454, "y": 475, "$t": "$eB", "skinName": "BagViewSkin$Skin119" }, + "recoveryBtn": { "height": 64, "label": "", "width": 60, "x": 375, "y": 474, "$t": "$eB", "skinName": "BagViewSkin$Skin120" }, + "recoveryBtn2": { "height": 64, "label": "", "width": 60, "x": 295, "y": 475, "$t": "$eB", "skinName": "BagViewSkin$Skin121" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 405, "y": 510, "$t": "$eG" }, + "$sP": [ + "dragDropUI", + "equipBg", + "equipLab", + "equipStar", + "itemEffGrp", + "equipList", + "equipScroller", + "tab", + "redPoint0", + "redPoint1", + "redPoint2", + "arrange", + "curCapacity", + "function", + "notBindGold", + "bindGold", + "notBindYuanBao", + "bindYuanbao", + "moneyGrp", + "upBtn", + "downBtn", + "silding", + "sildGrp", + "goldNum", + "goldIcon", + "yuanbaoNum", + "yuanbaoIcon", + "withdrawIcon", + "bindGoldNum", + "yinliangNum", + "wareHouseBtn", + "recoveryBtn", + "recoveryBtn2", + "effGrp" + ], + "$sC": "$eSk" + }, + "BagViewSkin$Skin116": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "bagbtn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bagbtn_1" }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "bagbtn_2" }] } + }, + "$sC": "$eSk" + }, + "BagViewSkin$Skin117": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "bagbtn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bagbtn_1" }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "bagbtn_2" }] } + }, + "$sC": "$eSk" + }, + "BagViewSkin$Skin118": { + "$bs": { "minHeight": 10, "minWidth": 20, "$eleC": ["track", "thumb"] }, + "track": { "percentHeight": 100, "scale9Grid": "2,2,16,15", "source": "", "verticalCenter": 0, "width": 20, "$t": "$eI" }, + "thumb": { "rotation": 0, "scale9Grid": "7,21,2,1", "source": "bag_fanye_3", "x": 2, "$t": "$eI" }, + "$sP": ["track", "thumb"], + "$sC": "$eSk" + }, + "BagViewSkin$Skin119": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_ssck", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_ssck" }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "BagViewSkin$Skin120": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_yjhs", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_yjhs" }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "BagViewSkin$Skin121": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_hs", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_hs" }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + + "bloodBarSkin": { + "$path": "resource/eui_skins/web/bloodBarSkin.exml", + "$bs": { "height": 5, "width": 40, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,1,45,2", "source": "boolBg", "top": 0, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "left": 1, "right": 1, "source": "boolRed", "top": 1, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 14, "stroke": 1, "strokeColor": 0, "textColor": 16777215, "verticalCenter": -9, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bloodBarSkin2": { + "$path": "resource/eui_skins/web/bloodBarSkin2.exml", + "$bs": { "height": 23, "width": 238, "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "m_m_sd_xt_k", "top": 0, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "left": 1, "right": 1, "source": "m_m_sd_xt_bg", "top": 1, "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "bloodBarSkin3": { + "$path": "resource/eui_skins/web/bloodBarSkin3.exml", + "$bs": { "height": 22, "width": 355, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,1,45,2", "source": "boss_json.boss_xuetiao_bg", "top": 0, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "height": 22, "left": 1, "right": 1, "source": "boss_json.boss_xuetiao_1", "top": 1, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 1, "strokeColor": 0, "text": "", "textColor": 16777215, "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bloodBarSkin4": { + "$path": "resource/eui_skins/web/bloodBarSkin4.exml", + "$bs": { "height": 16, "width": 196, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,1,45,2", "source": "", "top": 0, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "height": 22, "left": 1, "right": 1, "source": "boss_json.boss_hp_2", "top": 1, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 1, "strokeColor": 0, "text": "", "textColor": 16777215, "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bloodBarSkin5": { + "$path": "resource/eui_skins/web/bloodBarSkin5.exml", + "$bs": { "height": 24, "width": 424, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,1,45,2", "source": "", "top": 0, "visible": false, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "height": 22, "left": 1, "right": 1, "source": "boss_json.boss_hp_1", "top": 1, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 20, "stroke": 1, "strokeColor": 0, "text": "58/199", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bloodBarSkin6": { + "$path": "resource/eui_skins/web/bloodBarSkin6.exml", + "$bs": { "height": 17, "width": 424, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,1,45,2", "source": "", "top": 0, "visible": false, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "left": 1, "right": 1, "scale9Grid": "10,0,5,17", "source": "kf_cyboss_hp2", "top": 1, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 18, "stroke": 2, "strokeColor": 0, "text": "58/199", "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bloodyelskin": { + "$path": "resource/eui_skins/web/bloodyelskin.exml", + "$bs": { "height": 4, "width": 60, "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "boolBg", "top": 0, "$t": "$eI" }, + "thumb": { "bottom": 1, "fillMode": "scale", "left": 1, "right": 1, "source": "boolyel", "top": 1, "$t": "$eI" }, + "labelDisplay": { + "fontFamily": "黑体", + "horizontalCenter": 0, + "size": 12, + "stroke": 1, + "strokeColor": 0, + "textAlign": "center", + "textColor": 16777215, + "verticalAlign": "middle", + "verticalCenter": -14, + "$t": "$eL" + }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "ItemSlotSkin": { + "$path": "resource/eui_skins/web/common/ItemSlotSkin.exml", + "$bs": { "height": 60, "width": 60, "$eleC": ["bg", "equipBg", "icon", "count", "txtName", "txtAdd", "effect", "bestEquip", "starLabel"] }, + "bg": { "source": "qh_icon_bg", "$t": "$eI" }, + "equipBg": { "source": "equipd_1", "visible": false, "$t": "$eI" }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "count": { "height": 20, "size": 16, "stroke": 2, "text": "", "textAlign": "right", "verticalAlign": "middle", "width": 60, "x": 0, "y": 42, "$t": "$eL" }, + "txtName": { "size": 16, "stroke": 1, "text": "鞋子", "textAlign": "right", "textColor": 14724725, "verticalAlign": "middle", "visible": false, "x": 23, "y": 42, "$t": "$eL" }, + "txtAdd": { "size": 16, "stroke": 1, "text": "", "textAlign": "right", "textColor": 14729984, "verticalAlign": "middle", "visible": false, "width": 50, "x": 7, "y": 2, "$t": "$eL" }, + "effect": { "source": "qh_icon_xz", "visible": false, "x": -6.67, "y": -7.34, "$t": "$eI" }, + "bestEquip": { "horizontalCenter": 0, "source": "quality_jipin", "touchEnabled": false, "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "starLabel": { "bottom": 5, "font": "num_8_fnt", "letterSpacing": -3, "right": 5, "text": "", "touchEnabled": false, "visible": false, "$t": "$eBL" }, + "$sP": ["bg", "equipBg", "icon", "count", "txtName", "txtAdd", "effect", "bestEquip", "starLabel"], + "$sC": "$eSk" + }, + "BossDropItemSkin": { + "$path": "resource/eui_skins/web/boss/BossDropItemSkin.exml", + "$bs": { "height": 60, "width": 60, "$eleC": ["itemSlot"] }, + "itemSlot": { "skinName": "ItemSlotSkin", "$t": "app.ItemSlot" }, + "$sP": ["itemSlot"], + "$sC": "$eSk" + }, + "BossItemSkin": { + "$path": "resource/eui_skins/web/boss/BossItemSkin.exml", + "$bs": { "height": 95, "width": 433, "$eleC": ["bg", "select", "icon", "_Image1", "imgVip", "txt_name", "txt_refresh"] }, + "bg": { "smoothing": false, "source": "boss_yeqian_bg1", "x": 2, "y": 4, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 97, "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 431, "x": 1, "y": -1, "$t": "$eI" }, + "icon": { "smoothing": false, "source": "", "x": 26, "y": 15, "$t": "$eI" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "scale9Grid": "10,7,3,6", "source": "boss_yeqian_bg3", "width": 290, "x": 117, "y": 49, "$t": "$eI" }, + "imgVip": { "scale9Grid": "10,7,3,6", "source": "bs_tq_1", "x": 320, "y": 15, "$t": "$eI" }, + "txt_name": { "size": 22, "stroke": 2, "text": "暗之双头血魔[4转]", "textColor": 15779990, "x": 121, "y": 17, "$t": "$eL" }, + "txt_refresh": { "anchorOffsetX": 0, "size": 20, "stroke": 2, "text": "怪物血量:25000", "textColor": 15779990, "width": 280, "x": 121, "y": 53, "$t": "$eL" }, + "$sP": ["bg", "select", "icon", "imgVip", "txt_name", "txt_refresh"], + "$sC": "$eSk" + }, + "ViewBgWin1Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin1Skin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["_Group1"] }, + "_Group1": { "percentHeight": 100, "percentWidth": 100, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "74,80,634,486", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_3_png", "percentWidth": 100, "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "right": -50, "scaleX": 1.2, "scaleY": 1.2, "top": -9, "width": 60, "$t": "$eB", "skinName": "ViewBgWin1Skin$Skin122" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin1Skin$Skin122": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "MagicBossSkin": { + "$path": "resource/eui_skins/web/boss/MagicBossSkin.exml", + "$bs": { "height": 563, "width": 873, "$eleC": ["_Group2"] }, + "_Group2": { "height": 563, "width": 878, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "scroller_r", "scroller_l", "txt_trans", "btn_go"] }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 555, + "scale9Grid": "6,6,8,6", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 523.67, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "_Image2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 555, + "scale9Grid": "6,6,8,6", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 350.33, + "x": 526.7, + "y": 0.52, + "$t": "$eI" + }, + "scroller_r": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 494.03, "scaleX": 1, "scaleY": 1, "width": 345.76, "x": 526.97, "y": 3, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 725.76, + "width": 430, + "$t": "$eG", + "$eleC": ["_Image3", "_Image4", "_Image5", "_Image6", "_Image7", "_Image8", "list0", "list1", "list2"] + }, + "_Image3": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 160, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 337, + "x": 3, + "y": 34, + "$t": "$eI" + }, + "_Image4": { "scaleX": 1, "scaleY": 1, "source": "boss_json.boss_guishu", "x": 4.96, "y": 8.34, "$t": "$eI" }, + "_Image5": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 160, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 337, + "x": 3, + "y": 226, + "$t": "$eI" + }, + "_Image6": { "scaleX": 1, "scaleY": 1, "source": "boss_json.boss_yongdou", "x": 7, "y": 196.78, "$t": "$eI" }, + "_Image7": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 160, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 337, + "x": 3, + "y": 418, + "$t": "$eI" + }, + "_Image8": { "scaleX": 1, "scaleY": 1, "source": "boss_json.boss_canyu", "x": 8, "y": 389.31, "$t": "$eI" }, + "list0": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 148, + "itemRendererSkinName": "BossDropItemSkin", + "width": 332, + "x": 7, + "y": 41, + "$t": "$eLs", + "layout": "_TileLayout1", + "dataProvider": "_ArrayCollection1" + }, + "_TileLayout1": { "paddingLeft": 2, "paddingTop": 10, "verticalGap": 10, "$t": "$eTL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5", "_Object6"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "_Object6": { "null": "", "$t": "Object" }, + "list1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 148, "width": 332, "x": 7, "y": 230, "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "paddingLeft": 2, "paddingTop": 10, "verticalGap": 10, "$t": "$eTL" }, + "list2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 148, "width": 332, "x": 6, "y": 426, "$t": "$eLs", "layout": "_TileLayout3" }, + "_TileLayout3": { "paddingLeft": 2, "paddingTop": 10, "verticalGap": 10, "$t": "$eTL" }, + "scroller_l": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 563, "scrollPolicyH": "off", "width": 519.7, "x": 6.08, "$t": "$eS", "viewport": "list_item" }, + "list_item": { "anchorOffsetY": 0, "height": 554, "itemRendererSkinName": "MagicBossItemSkin", "$t": "$eLs" }, + "txt_trans": { "scaleX": 1, "scaleY": 1, "size": 18, "text": "", "textColor": 15591123, "x": 590.21, "y": 522.44, "$t": "$eL" }, + "btn_go": { "label": "立即前往", "scaleX": 1, "scaleY": 1, "skinName": "Btn9Skin", "x": 767.21, "y": 502.44000000000005, "$t": "$eB" }, + "$sP": ["list0", "list1", "list2", "scroller_r", "list_item", "scroller_l", "txt_trans", "btn_go"], + "$sC": "$eSk" + }, + "PersonalBossSkin": { + "$path": "resource/eui_skins/web/boss/PersonalBossSkin.exml", + "$bs": { "height": 563, "width": 867, "$eleC": ["_Group4"] }, + "_Group4": { "height": 563, "width": 867, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "item_list", "_Group3"] }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 556.5, + "scale9Grid": "6,6,8,6", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 445, + "x": -0.67, + "y": -1.31, + "$t": "$eI" + }, + "_Image2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 556.67, + "scale9Grid": "6,6,8,6", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 429, + "x": 445.71, + "y": -1.5, + "$t": "$eI" + }, + "item_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 558, "scaleX": 1, "scaleY": 1, "width": 438, "x": 2.98, "y": 3.93, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 558, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 438, "x": 0, "y": 0, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "BossItemSkin", "name": "list", "scaleX": 1, "scaleY": 1, "x": 2, "y": 2, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "_Group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 548, + "scaleX": 1, + "scaleY": 1, + "width": 426.67, + "x": 446, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image3", "txt_skill_desc", "_Image4", "_Image5", "_Image6", "_Image7", "drop_list", "award_list", "_Group2"] + }, + "_Image3": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 105, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 403, + "x": 12, + "y": 40, + "$t": "$eI" + }, + "txt_skill_desc": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 20.67, + "size": 18, + "text": "击杀1000只开启下一档BOSS", + "textColor": 15591123, + "width": 402, + "x": 16.69, + "y": 158.97, + "$t": "$eL" + }, + "_Image4": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 75, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 403, + "x": 13, + "y": 257, + "$t": "$eI" + }, + "_Image5": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 75, + "name": "bg", + "scale9Grid": "9,9,7,7", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_xian2", + "width": 403, + "x": 12, + "y": 396.61, + "$t": "$eI" + }, + "_Image6": { "source": "boss_diaoluo", "x": 26, "y": 371, "$t": "$eI" }, + "_Image7": { "source": "boss_json.boss_shoutong", "x": 26, "y": 234.67, "$t": "$eI" }, + "drop_list": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 64.34, + "name": "drop_list", + "scaleX": 1, + "scaleY": 1, + "width": 397, + "x": 16, + "y": 398, + "$t": "$eG", + "$eleC": ["_Scroller2", "_List2"] + }, + "_Scroller2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 61, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 386, "x": 5, "y": 6.01, "$t": "$eS" }, + "_List2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "scaleX": 1, "scaleY": 1, "x": 5, "y": 9, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 5, "requestedColumnCount": 6, "verticalGap": 5, "$t": "$eTL" }, + "award_list": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 67.34, + "name": "drop_list", + "scaleX": 1, + "scaleY": 1, + "width": 397, + "x": 16, + "y": 259.32, + "$t": "$eG", + "$eleC": ["_Scroller3", "_List3"] + }, + "_Scroller3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 58, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 386, "x": 5, "y": 5.01, "$t": "$eS" }, + "_List3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "scaleX": 1, "scaleY": 1, "x": 5, "y": 9, "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "horizontalGap": 5, "requestedColumnCount": 6, "verticalGap": 5, "$t": "$eTL" }, + "_Group2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 53.67, + "scaleX": 1, + "scaleY": 1, + "touchChildren": true, + "touchEnabled": false, + "width": 424.67, + "x": 9, + "y": 495.63, + "$t": "$eG", + "$eleC": ["_Image8", "scroller", "_Image9", "slider", "_Label1", "txt_slider", "txt_trans2", "txt_trans", "btn_go", "red", "btn_go2"] + }, + "_Image8": { "source": "boss_xinxi", "x": 12, "y": -480, "$t": "$eI" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 89.67, "scrollPolicyH": "off", "width": 387, "x": 10.25, "y": -447.43, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "anchorOffsetY": 0, "height": 89.67, "$t": "$eG", "$eleC": ["txt_infos"] }, + "txt_infos": { "horizontalCenter": 1.5, "lineSpacing": 5, "scaleX": 1, "scaleY": 1, "size": 19, "text": "", "textColor": 14471870, "width": 380, "x": 3, "y": 8.98, "$t": "$eL" }, + "_Image9": { "source": "common_slider_bg", "width": 303, "x": 92.64, "y": -309.66, "$t": "$eI" }, + "slider": { "anchorOffsetY": 0, "height": 15, "scaleX": 1, "scaleY": 1, "skinName": "bar3Skin", "value": 50, "width": 298, "x": 95, "y": -305.34, "$t": "$ePB" }, + "_Label1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "size": 18, "text": "当前进度:", "textColor": 15591123, "width": 90, "x": 8.01, "y": -308.03, "$t": "$eL" }, + "txt_slider": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bold": true, + "size": 18, + "text": "50%", + "textAlign": "center", + "textColor": 15007744, + "verticalAlign": "middle", + "visible": false, + "width": 90, + "x": 209.36, + "y": -306.7, + "$t": "$eL" + }, + "txt_trans2": { "anchorOffsetX": 0, "size": 18, "text": "使用飞鞋传送可快速到达洞穴门口", "textColor": 15591123, "visible": false, "width": 273, "x": 25, "y": 19, "$t": "$eL" }, + "txt_trans": { "anchorOffsetX": 0, "size": 18, "text": "", "textColor": 15591123, "x": 122, "y": 27, "$t": "$eL" }, + "btn_go": { "label": "立即挑战", "skinName": "Btn9Skin", "x": 299, "y": 7, "$t": "$eB" }, + "red": { "height": 20, "source": "common_chengdian", "width": 20, "x": 374, "y": 3, "$t": "$eI" }, + "btn_go2": { "label": "飞鞋传送", "skinName": "Btn9Skin", "visible": false, "x": 299, "y": 7, "$t": "$eB" }, + "$sP": ["item_list", "txt_skill_desc", "drop_list", "award_list", "txt_infos", "scroller", "slider", "txt_slider", "txt_trans2", "txt_trans", "btn_go", "red", "btn_go2"], + "$sC": "$eSk" + }, + "BossSkin": { + "$path": "resource/eui_skins/web/boss/BossSkin.exml", + "$bs": { "height": 649, "width": 910, "$eleC": ["_Group3"] }, + "_Group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 647.3, + "width": 909, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["dragDropUI", "tabBar", "commonGp", "magicBossGp", "personalGp", "helpBtn"] + }, + "dragDropUI": { "scaleX": 1, "scaleY": 1, "skinName": "ViewBgWin1Skin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "tabBar": { "height": 31, "itemRendererSkinName": "CommonTarBtnWinSkin2", "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "commonGp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 563, "width": 871, "x": 19, "y": 53, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "item_list", "_Group2"] }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 556.5, + "scale9Grid": "6,6,8,6", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 445, + "x": -0.67, + "y": -1.31, + "$t": "$eI" + }, + "_Image2": { "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_4_png", "x": 440, "y": -1, "$t": "$eI" }, + "item_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 547, "scaleX": 1, "scaleY": 1, "width": 434, "x": 4.64, "y": 9.57, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "anchorOffsetY": 0, "height": 546, "name": "scroller", "width": 438, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "BossItemSkin", "name": "list", "scaleX": 1, "scaleY": 1, "x": 2, "y": 2, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -3, "$t": "$eVL" }, + "_Group2": { "scaleX": 1, "scaleY": 1, "x": 446.99, "y": 0, "$t": "$eG", "$eleC": ["_Image3", "_Image4", "drop_list", "_Group1"] }, + "_Image3": { "alpha": 0.5, "height": 192, "name": "bg", "scale9Grid": "19,22,2,2", "source": "com_bg_kuang_6_png", "width": 413, "x": 6.67, "y": 51.33, "$t": "$eI" }, + "_Image4": { "alpha": 0.5, "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "bg", "scaleX": 1, "scaleY": 1, "source": "boss_fengexian", "x": 12, "y": 288.64, "$t": "$eI" }, + "drop_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 184, "scaleX": 1, "scaleY": 1, "width": 401, "x": 9.33, "y": 297.63, "$t": "$eG", "$eleC": ["_Scroller2", "_List2"] }, + "_Scroller2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 169, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 386, "x": 5, "y": 9, "$t": "$eS" }, + "_List2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "scaleX": 1, "scaleY": 1, "x": 5, "y": 9, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 5, "requestedColumnCount": 6, "verticalGap": 5, "$t": "$eTL" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 53.67, + "scaleX": 1, + "scaleY": 1, + "touchChildren": true, + "touchEnabled": false, + "width": 424.67, + "x": 9, + "y": 495.63, + "$t": "$eG", + "$eleC": ["_Image5", "_Image6", "txt_trans", "txt_infos", "txt_get", "txt_trans2", "btn_go", "btn_go2"] + }, + "_Image5": { "source": "boss_xinxi", "x": 3.99, "y": -476.67, "$t": "$eI" }, + "_Image6": { "source": "boss_diaoluo", "x": 5.66, "y": -242.67, "$t": "$eI" }, + "txt_trans": { "size": 18, "stroke": 2, "text": "挑战次数:5", "textColor": 15064527, "x": 60, "y": 31, "$t": "$eL" }, + "txt_infos": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 170.67, + "lineSpacing": 5, + "scaleX": 1, + "scaleY": 1, + "size": 20, + "stroke": 2, + "text": "", + "textColor": 14471870, + "width": 380, + "x": 10, + "y": -430.98, + "$t": "$eL" + }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 300, + "y": -234.34, + "$t": "$eL" + }, + "txt_trans2": { "anchorOffsetX": 0, "size": 18, "stroke": 2, "text": "使用飞鞋传送", "textColor": 15064527, "visible": false, "width": 247, "x": 37, "y": 31, "$t": "$eL" }, + "btn_go": { "enabled": true, "height": 46, "label": "立即前往", "visible": false, "width": 113, "x": 296, "y": 18, "$t": "$eB", "skinName": "BossSkin$Skin123" }, + "btn_go2": { "enabled": true, "height": 46, "label": "飞鞋传送", "visible": false, "width": 113, "x": 294, "y": 18, "$t": "$eB", "skinName": "BossSkin$Skin124" }, + "magicBossGp": { "visible": false, "x": 19, "y": 61.03, "$t": "$eG", "$eleC": ["mboss", "_Image7"] }, + "mboss": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "skinName": "MagicBossSkin", "x": 0, "y": 0, "$t": "app.MagicBossView" }, + "_Image7": { "source": "com_bg_kuang_4_png", "x": 520.02, "y": -9, "$t": "$eI" }, + "personalGp": { "visible": false, "x": 19, "y": 53, "$t": "$eG", "$eleC": ["personalBoss", "_Image8"] }, + "personalBoss": { "scaleX": 1, "scaleY": 1, "skinName": "PersonalBossSkin", "width": 867, "$t": "app.PersonalBossView" }, + "_Image8": { "source": "com_bg_kuang_4_png", "x": 440, "y": -1, "$t": "$eI" }, + "helpBtn": { "label": "Button", "ruleId": "19", "x": 477, "y": 573, "$t": "app.RuleTipsButton" }, + "$sP": [ + "dragDropUI", + "tabBar", + "item_list", + "drop_list", + "txt_trans", + "txt_infos", + "txt_get", + "txt_trans2", + "btn_go", + "btn_go2", + "commonGp", + "mboss", + "magicBossGp", + "personalBoss", + "personalGp", + "helpBtn" + ], + "$sC": "$eSk" + }, + "BossSkin$Skin123": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "BossSkin$Skin124": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "MagicBossInfoShowSkin": { + "$path": "resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml", + "$bs": { "height": 216, "width": 605, "$eleC": ["gpBoss", "gpPlayer"] }, + "gpBoss": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 148, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": false, + "width": 603, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image1", "bossAvatar", "bossName", "bossHpBar"] + }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "boss_k_1", "touchEnabled": false, "x": 0, "y": 0, "$t": "$eI" }, + "bossAvatar": { "scaleX": 1.2, "scaleY": 1.2, "source": "monster_json.monhead30001", "x": 23, "y": 57, "$t": "$eI" }, + "bossName": { "bold": true, "scaleX": 1, "scaleY": 1, "size": 20, "text": "白野猪", "textColor": 13812883, "x": 129, "y": 45, "$t": "$eL" }, + "bossHpBar": { + "anchorOffsetX": 0, + "scaleX": 1, + "scaleY": 1, + "skinName": "bloodBarSkin5", + "slideDuration": 0, + "touchChildren": false, + "touchEnabled": false, + "value": 100, + "width": 420, + "x": 132, + "y": 79, + "$t": "$ePB" + }, + "gpPlayer": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 85, + "touchChildren": false, + "touchEnabled": true, + "width": 307, + "x": 298, + "y": 128, + "$t": "$eG", + "$eleC": ["_Image2", "_Label1", "playerName", "playerGuild", "playerAvatar", "playerHpBar"] + }, + "_Image2": { "scaleX": 1, "scaleY": 1, "source": "boss_json.boss_k_2", "x": 5, "y": 3, "$t": "$eI" }, + "_Label1": { "anchorOffsetX": 0, "bold": true, "scaleX": 1, "scaleY": 1, "size": 16, "text": "归属者:", "textColor": 13812883, "width": 65.34, "x": 85.73, "y": 18, "$t": "$eL" }, + "playerName": { "anchorOffsetX": 0, "bold": true, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 14064187, "x": 148.42000000000002, "y": 18.680000000000007, "$t": "$eL" }, + "playerGuild": { "anchorOffsetX": 0, "bold": true, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textAlign": "center", "textColor": 14064187, "x": 139.72, "y": -3.33, "$t": "$eL" }, + "playerAvatar": { "scaleX": 1, "scaleY": 1, "source": "", "touchEnabled": true, "x": 11.5, "y": 13.5, "$t": "$eI" }, + "playerHpBar": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "skinName": "bloodBarSkin4", "slideDuration": 0, "value": 100, "width": 196, "x": 81.5, "y": 42, "$t": "$ePB" }, + "$sP": ["bossAvatar", "bossName", "bossHpBar", "gpBoss", "playerName", "playerGuild", "playerAvatar", "playerHpBar", "gpPlayer"], + "$sC": "$eSk" + }, + "MagicBossInfoShowSkin2": { + "$path": "resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml", + "$bs": { "height": 600, "width": 645, "$eleC": ["gpBoss", "gpPlayer", "btnBOSS", "btnPlayer"] }, + "gpBoss": { "horizontalCenter": 0, "top": 60, "touchChildren": false, "touchEnabled": false, "touchThrough": false, "$t": "$eG", "$eleC": ["_Image1", "bossAvatar", "bossName", "bossHpBar"] }, + "_Image1": { "source": "kf_cyboss_hp1", "touchEnabled": false, "$t": "$eI" }, + "bossAvatar": { "x": 16, "y": 40, "$t": "$eI" }, + "bossName": { "bold": true, "size": 20, "stroke": 2, "text": "", "textColor": 16742144, "x": 129, "y": 48, "$t": "$eL" }, + "bossHpBar": { "height": 20, "skinName": "bloodBarSkin6", "slideDuration": 0, "touchChildren": false, "touchEnabled": false, "value": 0, "width": 422, "x": 96, "y": 74, "$t": "$ePB" }, + "gpPlayer": { + "horizontalCenter": 254, + "top": 170, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": false, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "playerAvatar", "playerHpBar", "_Label1", "playerName", "playerGuild", "playerHpLabel"] + }, + "_Image2": { "source": "m_m_lock_bg", "x": 0, "y": 2, "$t": "$eI" }, + "_Image3": { "source": "m_m_lockname_bg", "x": 73, "y": 4, "$t": "$eI" }, + "playerAvatar": { "height": 60, "source": "", "visible": true, "width": 60, "x": 1, "y": 4, "$t": "$eI" }, + "playerHpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "touchChildren": false, "value": 0, "x": 75, "y": 43, "$t": "$ePB" }, + "_Label1": { "bold": true, "size": 18, "text": "归属者:", "textColor": 13812883, "x": 80, "y": 11, "$t": "$eL" }, + "playerName": { "size": 16, "stroke": 2, "text": "", "textAlign": "left", "x": 148, "y": 14, "$t": "$eL" }, + "playerGuild": { "size": 16, "stroke": 2, "text": "", "textAlign": "center", "width": 210, "x": 90, "y": -10, "$t": "$eL" }, + "playerHpLabel": { "height": 20, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "verticalAlign": "middle", "width": 235, "x": 75, "y": 45, "$t": "$eL" }, + "btnBOSS": { "bottom": 250, "horizontalCenter": -180, "$t": "$eG", "$eleC": ["_Button1"] }, + "_Button1": { "height": 78, "width": 99, "$t": "$eB", "skinName": "MagicBossInfoShowSkin2$Skin125" }, + "btnPlayer": { "bottom": 250, "horizontalCenter": 180, "$t": "$eG", "$eleC": ["_Button2"] }, + "_Button2": { "height": 78, "width": 99, "$t": "$eB", "skinName": "MagicBossInfoShowSkin2$Skin126" }, + "$sP": ["bossAvatar", "bossName", "bossHpBar", "gpBoss", "playerAvatar", "playerHpBar", "playerName", "playerGuild", "playerHpLabel", "gpPlayer", "btnBOSS", "btnPlayer"], + "$sC": "$eSk" + }, + "MagicBossInfoShowSkin2$Skin125": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "icon_gjsl", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MagicBossInfoShowSkin2$Skin126": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "icon_qgs", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MagicBossInfoShowSkin3": { + "$path": "resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml", + "$bs": { "height": 180, "width": 605, "$eleC": ["gpBoss", "gpPlayer"] }, + "gpBoss": { "touchChildren": false, "touchEnabled": false, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "bossAvatar", "bossHpBar", "bossName", "bossHpLabel"] }, + "_Image1": { "height": 84, "scale9Grid": "8,8,48,48", "source": "m_m_lock_bg", "width": 84, "$t": "$eI" }, + "_Image2": { "scale9Grid": "30,4,180,24", "source": "m_m_lockname_bg", "width": 350, "x": 95, "y": 9, "$t": "$eI" }, + "bossAvatar": { "height": 80, "source": "m_m_lock_2", "width": 80, "x": 2, "y": 2, "$t": "$eI" }, + "bossHpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "value": 50, "width": 350, "x": 95, "y": 48, "$t": "$ePB" }, + "bossName": { "bold": true, "size": 20, "text": "白野猪", "textColor": 13812883, "x": 129, "y": 15, "$t": "$eL" }, + "bossHpLabel": { "bold": true, "horizontalCenter": 47.5, "size": 18, "stroke": 2, "strokeColor": 0, "text": "58/199", "textColor": 15064527, "verticalCenter": 19, "$t": "$eL" }, + "gpPlayer": { + "height": 66, + "touchChildren": false, + "touchEnabled": false, + "width": 313, + "x": 97, + "y": 108, + "$t": "$eG", + "$eleC": ["_Image3", "_Image4", "playerAvatar", "playerHpBar", "_Label1", "playerName", "playerGuild", "playerHpLabel"] + }, + "_Image3": { "source": "m_m_lock_bg", "x": 0, "y": 2, "$t": "$eI" }, + "_Image4": { "source": "m_m_lockname_bg", "x": 73, "y": 4, "$t": "$eI" }, + "playerAvatar": { "height": 60, "source": "", "width": 60, "x": 1, "y": 4, "$t": "$eI" }, + "playerHpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "value": 50, "width": 240, "x": 73, "y": 40, "$t": "$ePB" }, + "_Label1": { "bold": true, "size": 16, "text": "归属者:", "textColor": 13812883, "x": 80, "y": 14, "$t": "$eL" }, + "playerName": { "bold": true, "size": 16, "stroke": 2, "text": "", "textAlign": "left", "x": 145, "y": 14, "$t": "$eL" }, + "playerGuild": { "size": 16, "stroke": 2, "text": "", "textAlign": "center", "width": 210, "x": 90, "y": -12, "$t": "$eL" }, + "playerHpLabel": { "bold": true, "horizontalCenter": 41.5, "size": 18, "stroke": 2, "strokeColor": 0, "text": "58/199", "textColor": 15064527, "verticalCenter": 20, "$t": "$eL" }, + "$sP": ["bossAvatar", "bossHpBar", "bossName", "bossHpLabel", "gpBoss", "playerAvatar", "playerHpBar", "playerName", "playerGuild", "playerHpLabel", "gpPlayer"], + "$sC": "$eSk" + }, + "MagicBossItemSkin": { + "$path": "resource/eui_skins/web/boss/MagicBossItemSkin.exml", + "$bs": { "height": 98, "width": 512, "$eleC": ["bg", "select", "icon", "txt_name", "txt_taget", "_Image1", "txtNeeds", "hpBar", "txt_dead", "txt_refresh"] }, + "bg": { "smoothing": false, "source": "boss_yeqian_bg4", "x": 0, "y": 0, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 98, "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 512, "x": 1, "y": -1, "$t": "$eI" }, + "icon": { "smoothing": false, "source": "monster_json.monhead30001", "x": 54.65, "y": 16.98, "$t": "$eI" }, + "txt_name": { "size": 22, "text": "精英白野猪", "textColor": 15779990, "x": 143, "y": 19, "$t": "$eL" }, + "txt_taget": { "anchorOffsetX": 0, "size": 20, "text": "1转开放", "textAlign": "center", "textColor": 16189705, "width": 170.5, "x": 324.5, "y": 20, "$t": "$eL" }, + "_Image1": { "source": "boss_json.boss_zs_bg", "x": 3, "y": 2, "$t": "$eI" }, + "txtNeeds": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 63.33, + "left": 10, + "lineSpacing": 8, + "size": 20, + "text": "1转", + "textAlign": "center", + "textColor": 15912216, + "verticalAlign": "middle", + "verticalCenter": -0.5, + "width": 27, + "$t": "$eL" + }, + "hpBar": { "anchorOffsetX": 0, "skinName": "bloodBarSkin3", "slideDuration": 0, "width": 352, "x": 140, "y": 55, "$t": "$ePB" }, + "txt_dead": { "anchorOffsetX": 0, "size": 18, "text": "已死亡", "textColor": 16189705, "width": 61.5, "x": 142, "y": 58.4, "$t": "$eL" }, + "txt_refresh": { "anchorOffsetX": 0, "size": 20, "text": "刷新时间:15:30", "textColor": 16189705, "width": 170.5, "x": 324.5, "y": 56, "$t": "$eL" }, + "$sP": ["bg", "select", "icon", "txt_name", "txt_taget", "txtNeeds", "hpBar", "txt_dead", "txt_refresh"], + "$sC": "$eSk" + }, + "Btn11Skin": { + "$path": "resource/eui_skins/web/Btn11Skin.exml", + "$bs": { "height": 50, "width": 130, "$eleC": ["_Rect1", "_Image1", "labelDisplay"] }, + "_Rect1": { "bottom": 2, "fillColor": 4137224, "left": 2, "right": 2, "top": 2, "$t": "$eR" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "4,4,8,8", "source": "", "top": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 22, "text": "按钮", "textColor": 16773822, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "_Rect1", "name": "fillColor", "value": 2955013 }] }, + "down": { + "$ssP": [ + { "target": "_Rect1", "name": "fillColor", "value": 0 }, + { "target": "_Image1", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "size", "value": 20 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Rect1", "name": "fillColor", "value": 0 }, + { "target": "_Image1", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "size", "value": 20 }, + { "target": "labelDisplay", "name": "textColor", "value": 6842472 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn23Skin": { + "$path": "resource/eui_skins/web/Btn23Skin.exml", + "$bs": { "height": 100, "minHeight": 25, "minWidth": 25, "width": 73, "$eleC": ["iconDisplay", "labelDisplay", "_Image1"], "$sId": ["selected", "_Rect1"] }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "scaleX": 0.6, "scaleY": 0.6, "source": "login_nv_1", "verticalCenter": -10.5, "$t": "$eI" }, + "selected": { "horizontalCenter": 0, "pixelHitTest": true, "scaleX": 0.6, "scaleY": 0.6, "source": "", "verticalCenter": -10.5, "$t": "$eI" }, + "_Rect1": { "fillAlpha": 0, "fillColor": 16777215, "percentHeight": 100, "strokeAlpha": 0, "touchEnabled": true, "percentWidth": 100, "y": 0, "$t": "$eR" }, + "labelDisplay": { "bold": true, "horizontalCenter": 1, "size": 20, "stroke": 2, "text": "战士", "textColor": 15064527, "y": 75.34, "$t": "$eL" }, + "_Image1": { "height": 80, "horizontalCenter": 0, "scale9Grid": "19,19,2,2", "source": "login_xuanzhong", "touchEnabled": false, "verticalCenter": -10, "width": 81, "$t": "$eI" }, + "$sP": ["iconDisplay", "selected", "labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 14663070 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ] + }, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0.5 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.55 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.55 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ] + }, + "disabled": { + "$ssP": [ + { "target": "iconDisplay", "name": "alpha", "value": 0.5 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ], + "$saI": [{ "target": "_Rect1", "property": "", "position": 2, "relativeTo": "labelDisplay" }] + }, + "selected": { + "$ssP": [ + { "target": "iconDisplay", "name": "horizontalCenter", "value": 0 }, + { "target": "iconDisplay", "name": "source", "value": "login_zs_2" }, + { "target": "labelDisplay", "name": "textColor", "value": 13926697 }, + { "target": "_Image1", "name": "horizontalCenter", "value": 0 } + ], + "$saI": [{ "target": "selected", "property": "", "position": 2, "relativeTo": "labelDisplay" }] + } + }, + "$sC": "$eSk" + }, + "CheckBox2": { + "$path": "resource/eui_skins/web/common/CheckBox2.exml", + "$bs": { "currentState": "up", "height": 36, "minHeight": 36, "minWidth": 34, "width": 37, "$eleC": ["_Group1", "iconDisplay"] }, + "_Group1": { "height": 50, "horizontalCenter": 0, "verticalCenter": 0, "width": 50, "$t": "$eG" }, + "iconDisplay": { "left": 0, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "iconDisplay", "name": "source", "value": "com_gou_1" }] }, + "down": { "$ssP": [{ "target": "iconDisplay", "name": "source", "value": "com_gou_2" }] }, + "disabled": { "$ssP": [{ "target": "iconDisplay", "name": "source", "value": "com_gou_2" }] } + }, + "$sC": "$eSk" + }, + "SetUpCheckBox": { + "$path": "resource/eui_skins/web/setup/SetUpCheckBox.exml", + "$bs": { "height": 36, "width": 37, "$eleC": ["labelDisplay", "checkBox"] }, + "labelDisplay": { + "left": 44, + "size": 24, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "touchEnabled": true, + "verticalAlign": "middle", + "verticalCenter": 1, + "$t": "$eL" + }, + "checkBox": { "height": 36, "skinName": "CheckBox2", "width": 37, "$t": "$eCB" }, + "$sP": ["labelDisplay", "checkBox"], + "$sC": "$eSk" + }, + "CautionViewSkin": { + "$path": "resource/eui_skins/web/caution/CautionViewSkin.exml", + "$bs": { "height": 800, "width": 800, "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.5, "percentHeight": 100, "horizontalCenter": 0, "scale9Grid": "1,1,2,2", "source": "dialog_mask", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "_Group1": { + "height": 301, + "horizontalCenter": 0, + "top": 227, + "width": 426, + "$t": "$eG", + "$eleC": ["bg", "titleLabel", "cautionLabel", "checkLabel", "checkBox", "confirmBtn", "cancelBtn", "dialogCloseBtn"] + }, + "bg": { "scaleX": 1, "scaleY": 1, "source": "bg_tipstc2_png", "visible": true, "x": 0, "y": -2, "$t": "$eI" }, + "titleLabel": { "size": 28, "stroke": 2, "text": "提示", "textAlign": "center", "textColor": 13682838, "touchEnabled": false, "width": 156, "x": 131, "y": 11, "$t": "$eL" }, + "cautionLabel": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 129, + "horizontalCenter": 1.5, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 14724725, + "touchEnabled": false, + "verticalAlign": "middle", + "verticalCenter": -28, + "width": 349, + "$t": "$eL" + }, + "checkLabel": { "size": 22, "stroke": 2, "text": "不再提示!!!", "textColor": 15064527, "x": 165, "y": 197, "$t": "$eL" }, + "checkBox": { "skinName": "SetUpCheckBox", "x": 118, "y": 190, "$t": "app.SetUpCheckBoxEui" }, + "confirmBtn": { "height": 44, "label": "确 定", "width": 109, "x": 68, "y": 237, "$t": "$eB", "skinName": "CautionViewSkin$Skin127" }, + "cancelBtn": { "height": 44, "label": "取 消", "width": 109, "x": 246, "y": 237, "$t": "$eB", "skinName": "CautionViewSkin$Skin128" }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 405, "y": -10, "$t": "$eB", "skinName": "CautionViewSkin$Skin129" }, + "$sP": ["dialogMask", "bg", "titleLabel", "cautionLabel", "checkLabel", "checkBox", "confirmBtn", "cancelBtn", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "CautionViewSkin$Skin127": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CautionViewSkin$Skin128": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CautionViewSkin$Skin129": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "ChangePowerfulItemSkin": { + "$path": "resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml", + "$bs": { "height": 98, "width": 369, "$eleC": ["_Image1", "imgIcon", "_Group1"] }, + "_Image1": { "source": "bq_bg2", "$t": "$eI" }, + "imgIcon": { "left": 16, "source": "bq_icon_1", "verticalCenter": 0, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "height": 64, "width": 200, "x": 148.5, "y": 20, "$t": "$eG", "$eleC": ["power0", "power1", "power2", "power3"] }, + "power0": { "left": 0, "size": 19, "stroke": 1, "text": "主线任务", "textColor": 2682369, "top": 0, "visible": false, "$t": "$eL" }, + "power1": { "right": 0, "size": 19, "stroke": 1, "text": "交易行", "textColor": 2682369, "top": 0, "visible": false, "$t": "$eL" }, + "power2": { "left": 0, "size": 19, "stroke": 1, "text": "主线任务", "textColor": 2682369, "top": 37, "visible": false, "x": 10, "y": 10, "$t": "$eL" }, + "power3": { "right": -0.5, "size": 19, "stroke": 1, "text": "主线任务", "textColor": 2682369, "top": 37, "visible": false, "x": 10, "y": 10, "$t": "$eL" }, + "$sP": ["imgIcon", "power0", "power1", "power2", "power3"], + "$sC": "$eSk" + }, + "ChangePowerfulSkin": { + "$path": "resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml", + "$bs": { "height": 478, "width": 426, "$eleC": ["dragDropUI", "_Image1", "powerScroller"] }, + "dragDropUI": { "anchorOffsetX": 0, "skinName": "ViewBgWin4Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "source": "bq_biaoti", "touchEnabled": false, "x": 136, "y": 0, "$t": "$eI" }, + "powerScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 392, "horizontalCenter": 0.5, "verticalCenter": 11, "width": 386, "$t": "$eS", "viewport": "powerList" }, + "powerList": { "itemRendererSkinName": "ChangePowerfulItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "$t": "$eVL" }, + "$sP": ["dragDropUI", "powerList", "powerScroller"], + "$sC": "$eSk" + }, + "CharSkin": { + "$path": "resource/eui_skins/web/char/CharSkin.exml", + "$bs": { "height": 100, "width": 70, "$eleC": ["_bodyContainer"] }, + "_bodyContainer": { "x": 35, "y": 100, "$t": "$eG" }, + "$sP": ["_bodyContainer"], + "$sC": "$eSk" + }, + "chatListItemSkin": { + "$path": "resource/eui_skins/web/chat/chatListItemSkin.exml", + "$bs": { "width": 694, "$eleC": ["systemGrp", "qqGrp", "txtGrp"] }, + "systemGrp": { "height": 24, "minHeight": 24, "width": 54, "$t": "$eG", "$eleC": ["_Rect1", "chatChannelName", "_Image1"] }, + "_Rect1": { "bottom": -1, "fillColor": 16552473, "left": 0, "right": -6, "top": -1, "$t": "$eR" }, + "chatChannelName": { + "backgroundColor": 16552473, + "horizontalCenter": 3.5, + "scaleX": 0.5, + "scaleY": 0.5, + "size": 34, + "stroke": 3, + "text": "[系统]", + "textColor": 16776956, + "verticalCenter": 0.5, + "$t": "$eL" + }, + "_Image1": { "height": 0, "source": "lt_xitong", "visible": false, "width": 0, "x": 0.32, "y": 0, "$t": "$eI" }, + "qqGrp": { "touchChildren": false, "touchEnabled": false, "visible": false, "x": 62, "y": 1, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["blueImg", "blueYearImg"] }, + "_HorizontalLayout1": { "gap": 0, "$t": "$eHL" }, + "blueImg": { "source": "name_lz_hh8", "x": -3, "y": -1, "$t": "$eI" }, + "blueYearImg": { "source": "name_lz_nf", "x": 7, "y": 9, "$t": "$eI" }, + "txtGrp": { "minHeight": 24, "x": 68, "y": 0, "$t": "$eG", "$eleC": ["bgColor", "chatLab", "bqGroup", "logo"] }, + "bgColor": { "bottom": -1, "fillColor": 472572, "left": -3, "right": -3, "scaleX": 1, "scaleY": 1, "top": -1, "$t": "$eR" }, + "chatLab": { + "background": false, + "backgroundColor": 472572, + "lineSpacing": 9, + "maxWidth": 1150, + "scaleX": 0.5, + "scaleY": 0.5, + "size": 34, + "stroke": 3, + "text": "哈哈哈哈哈哈哈哈哈哈", + "textColor": 15064527, + "visible": true, + "x": 0, + "y": 4, + "$t": "$eL" + }, + "bqGroup": { "visible": true, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["bqLab", "icoImage"] }, + "_HorizontalLayout2": { "gap": 1, "verticalAlign": "middle", "$t": "$eHL" }, + "bqLab": { "background": false, "backgroundColor": 472572, "lineSpacing": 9, "maxWidth": 1150, "scaleX": 0.5, "scaleY": 0.5, "size": 34, "stroke": 3, "textColor": 15064527, "y": 0, "$t": "$eL" }, + "icoImage": { "$t": "$eI" }, + "logo": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 0.5, "scaleY": 0.5, "source": "logo_chaowan", "visible": false, "x": 0, "y": 3, "$t": "$eI" }, + "$sP": ["chatChannelName", "systemGrp", "blueImg", "blueYearImg", "qqGrp", "bgColor", "chatLab", "bqLab", "icoImage", "bqGroup", "logo", "txtGrp"], + "$sC": "$eSk" + }, + "chatListWinItemSkin": { + "$path": "resource/eui_skins/web/chat/chatListWinItemSkin.exml", + "$bs": { "width": 693, "$eleC": ["systemGrp", "qqGrp", "txtGrp", "logo"] }, + "systemGrp": { "height": 28, "minHeight": 24, "width": 66, "y": 0, "$t": "$eG", "$eleC": ["_Rect1", "chatChannelName", "_Image1"] }, + "_Rect1": { "bottom": 0, "fillColor": 16552473, "left": 0, "right": -6, "top": 0, "$t": "$eR" }, + "chatChannelName": { + "backgroundColor": 16552473, + "horizontalCenter": 5.5, + "scaleX": 0.5, + "scaleY": 0.5, + "size": 40, + "stroke": 3, + "text": "[系统]", + "textColor": 16777215, + "verticalCenter": 0.5, + "$t": "$eL" + }, + "_Image1": { "source": "lt_xitong", "visible": false, "y": 0, "$t": "$eI" }, + "qqGrp": { "touchChildren": false, "touchEnabled": false, "visible": false, "x": 62, "y": 3, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["blueImg", "blueYearImg"] }, + "_HorizontalLayout1": { "gap": 0, "$t": "$eHL" }, + "blueImg": { "source": "name_lz_hh8", "x": -3, "y": -1, "$t": "$eI" }, + "blueYearImg": { "source": "name_lz_nf", "x": 7, "y": 9, "$t": "$eI" }, + "txtGrp": { "minHeight": 24, "x": 80, "y": 2.3, "$t": "$eG", "$eleC": ["bgColor", "chatLab", "bqGroup"] }, + "bgColor": { "bottom": -2, "fillColor": 16714764, "left": -3, "right": -3, "top": -2, "$t": "$eR" }, + "chatLab": { "lineSpacing": 9, "scaleX": 0.5, "scaleY": 0.5, "size": 40, "stroke": 3, "textColor": 16777215, "width": 1200, "x": 0, "y": 3.33, "$t": "$eL" }, + "bqGroup": { "visible": true, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["bqLab", "icoImage"] }, + "_HorizontalLayout2": { "gap": 1, "verticalAlign": "middle", "$t": "$eHL" }, + "bqLab": { "background": false, "backgroundColor": 472572, "lineSpacing": 9, "maxWidth": 1150, "scaleX": 0.5, "scaleY": 0.5, "size": 40, "stroke": 3, "textColor": 15064527, "y": 0, "$t": "$eL" }, + "icoImage": { "$t": "$eI" }, + "logo": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 0.6, "scaleY": 0.6, "source": "logo_chaowan", "visible": false, "x": 0, "y": 3, "$t": "$eI" }, + "$sP": ["chatChannelName", "systemGrp", "blueImg", "blueYearImg", "qqGrp", "bgColor", "chatLab", "bqLab", "icoImage", "bqGroup", "txtGrp", "logo"], + "$sC": "$eSk" + }, + "ChatMenuSkin": { + "$path": "resource/eui_skins/web/chat/ChatMenuSkin.exml", + "$bs": { "height": 125.8, "width": 56, "$eleC": ["gList"] }, + "gList": { "height": 126, "itemRendererSkinName": "ChatBtnMenuSkin", "width": 55, "x": 0, "y": 0, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "$sP": ["gList"], + "$sC": "$eSk" + }, + "ChatPrivatePlayerListItemskin": { + "$path": "resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml", + "$bs": { "height": 20, "width": 188, "$eleC": ["playNameLb"] }, + "playNameLb": { "horizontalCenter": 0, "size": 15, "text": "Label", "textAlign": "center", "y": 3, "$t": "$eL" }, + "$sP": ["playNameLb"], + "$sC": "$eSk" + }, + "ChatRuleButton": { + "$path": "resource/eui_skins/web/chat/ChatRuleButton.exml", + "$bs": { "height": 20, "width": 20, "$eleC": ["buttonIcon"] }, + "buttonIcon": { "horizontalCenter": 0, "source": "chat_json.ltpb_bangzhu", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["buttonIcon"], + "$s": { + "up": { "$ssP": [{ "target": "buttonIcon", "name": "source", "value": "chat_json.ltpb_bangzhu" }] }, + "down": { + "$ssP": [ + { "target": "buttonIcon", "name": "scaleX", "value": 0.95 }, + { "target": "buttonIcon", "name": "scaleY", "value": 0.95 }, + { "target": "buttonIcon", "name": "source", "value": "chat_json.ltpb_bangzhu" } + ] + }, + "disabled": { "$ssP": [{ "target": "buttonIcon", "name": "source", "value": "chat_json.ltpb_bangzhu" }] } + }, + "$sC": "$eSk" + }, + "ChatSelectArrItem": { + "$path": "resource/eui_skins/web/chat/ChatSelectArrItem.exml", + "$bs": { "height": 26, "width": 74, "$eleC": ["_Group1"] }, + "_Group1": { "percentHeight": 100, "touchChildren": false, "touchEnabled": true, "percentWidth": 100, "$t": "$eG", "$eleC": ["selectImg", "img", "red"] }, + "selectImg": { + "percentHeight": 100, + "scale9Grid": "9,8,8,9", + "scaleX": 1, + "scaleY": 1, + "source": "m_t_ms_bg2", + "touchEnabled": false, + "visible": false, + "percentWidth": 100, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "img": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "m_chat_t_fujin", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "red": { "right": 0, "top": 0, "visible": false, "$t": "app.RedDotControl" }, + "$sP": ["selectImg", "img", "red"], + "$sC": "$eSk" + }, + "ChatShowFriendOrNearListSkin": { + "$path": "resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml", + "$bs": { "height": 341, "width": 765, "$eleC": ["dragDropUI", "_Image1", "bg_right", "_Image2", "_Image3", "playerNameText", "txt_enter_name", "txt_list_name", "_Scroller1", "ConfirmBtn"] }, + "dragDropUI": { "height": 340, "skinName": "ViewBgWin5Skin", "width": 478, "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "height": 280, "scale9Grid": "4,4,28,28", "source": "bg_bg2", "visible": false, "width": 447, "x": 16, "y": 43, "$t": "$eI" }, + "bg_right": { "source": "chat_bg_tc2_png", "x": 498, "y": 3, "$t": "$eI" }, + "_Image2": { "height": 302, "scale9Grid": "17,16,2,2", "source": "bg_bg2", "width": 228, "x": 513, "y": 17, "$t": "$eI" }, + "_Image3": { "height": 32, "scale9Grid": "10,10,2,1", "source": "ltk_4", "width": 360, "x": 63, "y": 141, "$t": "$eI" }, + "playerNameText": { "height": 32, "horizontalCenter": "-133", "size": 22, "text": "", "textAlign": "center", "verticalAlign": "middle", "verticalCenter": "-14", "width": 360, "$t": "$eET" }, + "txt_enter_name": { "size": 18, "text": "", "x": 63, "y": 98, "$t": "$eL" }, + "txt_list_name": { "size": 15, "text": "", "textAlign": "center", "textColor": 16235271, "verticalAlign": "middle", "x": 588, "y": 29, "$t": "$eL" }, + "_Scroller1": { "height": 233, "width": 188, "x": 533, "y": 60, "$t": "$eS", "viewport": "playerList" }, + "playerList": { "height": 235, "itemRendererSkinName": "ChatPrivatePlayerListItemskin", "width": 173, "x": -11, "y": 0, "$t": "$eLs" }, + "ConfirmBtn": { "height": 44, "width": 109, "x": 189, "y": 288, "$t": "$eB", "skinName": "ChatShowFriendOrNearListSkin$Skin130" }, + "$sP": ["dragDropUI", "bg_right", "playerNameText", "txt_enter_name", "txt_list_name", "playerList", "ConfirmBtn"], + "$sC": "$eSk" + }, + "ChatShowFriendOrNearListSkin$Skin130": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "Btn2Skin": { + "$path": "resource/eui_skins/web/common/Btn2Skin.exml", + "$bs": { "height": 26, "width": 74, "$eleC": ["_Image1", "iconDisplay", "ImageDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_chat_btn", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 25, "scaleY": 1, "source": "m_chat_t_jiantou", "verticalCenter": 0, "$t": "$eI" }, + "ImageDisplay": { "source": "m_chat_t_fujin", "x": 14.85, "y": 5.14, "$t": "$eI" }, + "$sP": ["iconDisplay", "ImageDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn10Skin": { + "$path": "resource/eui_skins/web/common/Btn10Skin.exml", + "$bs": { "height": 26, "width": 74, "$eleC": ["_Image1", "iconDisplay", "labelDisplay", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_chat_btn", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 17.5, "source": "chat_json.shangjiantou", "verticalCenter": -0.5, "visible": false, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": -6.5, "size": 14, "text": "附近", "textColor": 16773822, "verticalCenter": 0.5, "visible": false, "$t": "$eL" }, + "_Image2": { "source": "m_chat_t_fasong", "x": 20.2, "y": 4.4, "$t": "$eI" }, + "$sP": ["iconDisplay", "labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "SelectInputSkin": { + "$path": "resource/eui_skins/web/common/SelectInputSkin.exml", + "$bs": { "height": 1, "$eleC": ["group"] }, + "group": { "bottom": 0, "$t": "$eG", "$eleC": ["bg", "list"] }, + "bg": { "percentHeight": 100, "scale9Grid": "11,11,10,10", "source": "m_t_ms_bg1", "percentWidth": 100, "y": 0, "$t": "$eI" }, + "list": { "bottom": 3, "left": 3, "right": 3, "top": 3, "$t": "$eLs" }, + "$sP": ["bg", "list", "group"], + "$sC": "$eSk" + }, + "ChatSkin": { + "$path": "resource/eui_skins/web/chat/ChatSkin.exml", + "$bs": { "height": 134, "width": 660, "$eleC": ["_Group3"] }, + "_Group3": { "anchorOffsetX": 0, "height": 134, "touchChildren": true, "touchEnabled": false, "width": 660, "x": 0, "$t": "$eG", "$eleC": ["winGroup"] }, + "winGroup": { + "anchorOffsetX": 0, + "height": 137, + "width": 660, + "$t": "$eG", + "$eleC": [ + "bg", + "bg0", + "_Rect1", + "_Rect2", + "barList", + "scrollBar1", + "_Image1", + "scrollBar", + "nearBy", + "chatInput", + "sendBtn", + "faceBtn", + "bgInput", + "showPlayerListBtn", + "chatMenuView", + "chanSelect", + "_Image2", + "_Image3", + "faceGrpup" + ] + }, + "bg": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 106, "scale9Grid": "6,9,1,1", "source": "ltk_3", "visible": false, "width": 642, "x": 3.98, "y": 2.99, "$t": "$eI" }, + "bg0": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 23, "scale9Grid": "7,7,1,1", "source": "ltk_3", "width": 480, "x": 76, "y": 108, "$t": "$eI" }, + "_Rect1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "fillAlpha": 0.4, "height": 109.5, "width": 657.5, "x": 2, "y": -2, "$t": "$eR" }, + "_Rect2": { "fillAlpha": 0.15, "height": 23, "visible": false, "width": 507, "x": 76.5, "y": 108, "$t": "$eR" }, + "barList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 106, "scrollPolicyH": "off", "skinName": "skins.ScrollerSkin", "width": 642, "x": 2, "$t": "$eS", "viewport": "chatList" }, + "chatList": { "anchorOffsetX": 0, "bottom": 0, "itemRendererSkinName": "chatListItemSkin", "left": 1, "right": -1, "top": 0, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "paddingTop": 1, "$t": "$eVL" }, + "scrollBar1": { "autoVisibility": false, "height": 57, "touchChildren": true, "touchEnabled": true, "visible": false, "x": 644, "y": 27.28, "$t": "$eVSB" }, + "_Image1": { "height": 55, "source": "m_lst_xian", "x": 651, "y": 27, "$t": "$eI" }, + "scrollBar": { "height": 57, "maximum": 700, "minimum": 0, "name": "verticalSlider", "value": 0, "x": 643.33, "y": 26.61, "$t": "$eVS", "skinName": "ChatSkin$Skin131" }, + "nearBy": { "icon": "shangjiantou", "label": "", "skinName": "Btn2Skin", "x": 2.02, "y": 107, "$t": "app.ChatMenuBtnItem" }, + "chatInput": { + "anchorOffsetX": 0, + "background": true, + "backgroundColor": 16777215, + "borderColor": 15923705, + "height": 23, + "maxChars": 40, + "promptColor": 0, + "size": 14, + "strokeColor": 16578551, + "text": "", + "textAlign": "left", + "textColor": 0, + "verticalAlign": "middle", + "width": 480, + "x": 76, + "y": 109, + "$t": "$eET" + }, + "sendBtn": { "icon": "chat_fasongjiantou", "label": "", "skinName": "Btn10Skin", "x": 583.68, "y": 107.32, "$t": "$eB" }, + "faceBtn": { "height": 24, "label": "", "width": 24, "x": 558, "y": 108, "$t": "$eB", "skinName": "ChatSkin$Skin132" }, + "bgInput": { "anchorOffsetX": 0, "height": 25, "scale9Grid": "6,9,1,1", "source": "ltk_2+1", "touchEnabled": false, "visible": false, "width": 480, "x": 75, "y": 107.32, "$t": "$eI" }, + "showPlayerListBtn": { "bold": true, "left": 77, "size": 15, "stroke": 2, "text": "(点击设置)", "textColor": 15913230, "verticalCenter": 52, "x": 66, "y": 125, "$t": "$eL" }, + "chatMenuView": { "height": 104, "skinName": "ChatMenuSkin", "visible": false, "x": 2.66, "y": 2, "$t": "app.ChatMenuView" }, + "chanSelect": { "skinName": "SelectInputSkin", "visible": false, "x": 2, "y": 103, "$t": "app.SelectInput" }, + "_Image2": { "source": "m_lst_jt1", "x": 646.66, "y": 5.37, "$t": "$eI" }, + "_Image3": { "source": "m_lst_jt3", "x": 646.67, "y": 81.68, "$t": "$eI" }, + "faceGrpup": { "height": 180, "visible": false, "width": 180, "x": 390, "y": -74, "$t": "$eG", "$eleC": ["_Rect3", "_Group1", "_Group2", "faceImgGrpup"] }, + "_Rect3": { "bottom": 0, "fillColor": 16777215, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["_Image4", "_Image5", "_Image6", "_Image7", "_Image8", "_Image9", "_Image10", "_Image11"] + }, + "_HorizontalLayout1": { "gap": 24, "$t": "$eHL" }, + "_Image4": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image5": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image6": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image7": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image8": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image9": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image10": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image11": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Group2": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_VerticalLayout2", + "$eleC": ["_Image12", "_Image13", "_Image14", "_Image15", "_Image16", "_Image17", "_Image18", "_Image19"] + }, + "_VerticalLayout2": { "gap": 24, "$t": "$eVL" }, + "_Image12": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image13": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image14": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image15": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image16": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image17": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image18": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image19": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "faceImgGrpup": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_TileLayout1", + "$eleC": [ + "_Image20", + "_Image21", + "_Image22", + "_Image23", + "_Image24", + "_Image25", + "_Image26", + "_Image27", + "_Image28", + "_Image29", + "_Image30", + "_Image31", + "_Image32", + "_Image33", + "_Image34", + "_Image35", + "_Image36", + "_Image37", + "_Image38", + "_Image39", + "_Image40", + "_Image41", + "_Image42", + "_Image43", + "_Image44", + "_Image45", + "_Image46", + "_Image47", + "_Image48", + "_Image49", + "_Image50", + "_Image51", + "_Image52", + "_Image53", + "_Image54", + "_Image55", + "_Image56", + "_Image57", + "_Image58", + "_Image59", + "_Image60", + "_Image61", + "_Image62", + "_Image63", + "_Image64", + "_Image65", + "_Image66", + "_Image67", + "_Image68" + ] + }, + "_TileLayout1": { "columnWidth": 24, "horizontalGap": 1, "paddingLeft": 1, "paddingTop": 1, "requestedColumnCount": 7, "rowHeight": 24, "verticalGap": 1, "$t": "$eTL" }, + "_Image20": { "name": "face_0", "visible": false, "$t": "$eI" }, + "_Image21": { "name": "face_1", "visible": false, "$t": "$eI" }, + "_Image22": { "name": "face_2", "visible": false, "$t": "$eI" }, + "_Image23": { "name": "face_3", "visible": false, "$t": "$eI" }, + "_Image24": { "name": "face_4", "visible": false, "$t": "$eI" }, + "_Image25": { "name": "face_5", "visible": false, "$t": "$eI" }, + "_Image26": { "name": "face_6", "visible": false, "$t": "$eI" }, + "_Image27": { "name": "face_7", "visible": false, "$t": "$eI" }, + "_Image28": { "name": "face_8", "visible": false, "$t": "$eI" }, + "_Image29": { "name": "face_9", "visible": false, "$t": "$eI" }, + "_Image30": { "name": "face_10", "visible": false, "$t": "$eI" }, + "_Image31": { "name": "face_11", "visible": false, "$t": "$eI" }, + "_Image32": { "name": "face_12", "visible": false, "$t": "$eI" }, + "_Image33": { "name": "face_13", "visible": false, "$t": "$eI" }, + "_Image34": { "name": "face_14", "visible": false, "$t": "$eI" }, + "_Image35": { "name": "face_15", "visible": false, "$t": "$eI" }, + "_Image36": { "name": "face_16", "visible": false, "$t": "$eI" }, + "_Image37": { "name": "face_17", "visible": false, "$t": "$eI" }, + "_Image38": { "name": "face_18", "visible": false, "$t": "$eI" }, + "_Image39": { "name": "face_19", "visible": false, "$t": "$eI" }, + "_Image40": { "name": "face_20", "visible": false, "$t": "$eI" }, + "_Image41": { "name": "face_21", "visible": false, "$t": "$eI" }, + "_Image42": { "name": "face_22", "visible": false, "$t": "$eI" }, + "_Image43": { "name": "face_23", "visible": false, "$t": "$eI" }, + "_Image44": { "name": "face_24", "visible": false, "$t": "$eI" }, + "_Image45": { "name": "face_25", "visible": false, "$t": "$eI" }, + "_Image46": { "name": "face_26", "visible": false, "$t": "$eI" }, + "_Image47": { "name": "face_27", "visible": false, "$t": "$eI" }, + "_Image48": { "name": "face_28", "visible": false, "$t": "$eI" }, + "_Image49": { "name": "face_29", "visible": false, "$t": "$eI" }, + "_Image50": { "name": "face_30", "visible": false, "$t": "$eI" }, + "_Image51": { "name": "face_31", "visible": false, "$t": "$eI" }, + "_Image52": { "name": "face_32", "visible": false, "$t": "$eI" }, + "_Image53": { "name": "face_33", "visible": false, "$t": "$eI" }, + "_Image54": { "name": "face_34", "visible": false, "$t": "$eI" }, + "_Image55": { "name": "face_35", "visible": false, "$t": "$eI" }, + "_Image56": { "name": "face_36", "visible": false, "$t": "$eI" }, + "_Image57": { "name": "face_37", "visible": false, "$t": "$eI" }, + "_Image58": { "name": "face_38", "visible": false, "$t": "$eI" }, + "_Image59": { "name": "face_39", "visible": false, "$t": "$eI" }, + "_Image60": { "name": "face_40", "visible": false, "$t": "$eI" }, + "_Image61": { "name": "face_41", "visible": false, "$t": "$eI" }, + "_Image62": { "name": "face_42", "visible": false, "$t": "$eI" }, + "_Image63": { "name": "face_43", "visible": false, "$t": "$eI" }, + "_Image64": { "name": "face_44", "visible": false, "$t": "$eI" }, + "_Image65": { "name": "face_45", "visible": false, "$t": "$eI" }, + "_Image66": { "name": "face_46", "visible": false, "$t": "$eI" }, + "_Image67": { "name": "face_47", "visible": false, "$t": "$eI" }, + "_Image68": { "name": "face_48", "visible": false, "$t": "$eI" }, + "$sP": [ + "bg", + "bg0", + "chatList", + "barList", + "scrollBar1", + "scrollBar", + "nearBy", + "chatInput", + "sendBtn", + "faceBtn", + "bgInput", + "showPlayerListBtn", + "chatMenuView", + "chanSelect", + "faceImgGrpup", + "faceGrpup", + "winGroup" + ], + "$sC": "$eSk" + }, + "ChatSkin$Skin131": { + "$bs": { "minHeight": 10, "minWidth": 20, "$eleC": ["track", "thumb"] }, + "track": { "percentHeight": 100, "scale9Grid": "2,2,16,15", "source": "", "verticalCenter": 0, "width": 20, "$t": "$eI" }, + "thumb": { "rotation": 0, "source": "m_lst_dian", "x": 2, "$t": "$eI" }, + "$sP": ["track", "thumb"], + "$sC": "$eSk" + }, + "ChatSkin$Skin132": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "chat_tab_3", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.9 }, + { "target": "_Image1", "name": "scaleY", "value": 0.9 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ChatWinMenuSkin": { + "$path": "resource/eui_skins/web/chat/ChatWinMenuSkin.exml", + "$bs": { "height": 201, "width": 93, "$eleC": ["gList"] }, + "gList": { "itemRendererSkinName": "ChatBtnBigMenuSkin", "width": 93, "x": 0, "y": 0, "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": -1, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "$sP": ["gList"], + "$sC": "$eSk" + }, + "CheckBox3": { + "$path": "resource/eui_skins/web/common/CheckBox3.exml", + "$bs": { "currentState": "up", "height": 24, "minHeight": 36, "minWidth": 34, "width": 25, "$eleC": ["iconDisplay"] }, + "iconDisplay": { "left": 0, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "iconDisplay", "name": "source", "value": "forge_gou1" }, + { "target": "", "name": "width", "value": 25 }, + { "target": "", "name": "height", "value": 24 } + ] + }, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "source", "value": "forge_gou2" }, + { "target": "", "name": "width", "value": 25 }, + { "target": "", "name": "height", "value": 24 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "iconDisplay", "name": "source", "value": "forge_gou2" }, + { "target": "", "name": "width", "value": 25 }, + { "target": "", "name": "height", "value": 24 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn22Skin": { + "$path": "resource/eui_skins/web/common/Btn22Skin.exml", + "$bs": { "height": 41, "width": 93, "$eleC": ["_Image1", "labelDisplay", "iconDisplay"] }, + "_Image1": { "source": "button_lt3", "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": -8, "size": 18, "text": "button", "textColor": 15451538, "verticalCenter": 0.5, "$t": "$eL" }, + "iconDisplay": { "horizontalCenter": 33.5, "scaleY": 1, "source": "shangjiantou2", "verticalCenter": 0.5, "$t": "$eI" }, + "$sP": ["labelDisplay", "iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "button_lt3" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "y", "value": 0.8 }, + { "target": "_Image1", "name": "x", "value": 3 } + ] + } + }, + "$sC": "$eSk" + }, + "ChatWinSkin": { + "$path": "resource/eui_skins/web/chat/ChatWinSkin.exml", + "$bs": { + "height": 645, + "width": 910, + "$eleC": [ + "dragDropUI", + "bg", + "_Image1", + "cbNear", + "cbGuild", + "cbPrivate", + "lbNear", + "lbGuild", + "lbPrivate", + "_Image2", + "scroller", + "_Image3", + "_Rect1", + "barList", + "_Image4", + "btnSend", + "faceBtn", + "btnChannel", + "chatInput", + "showPlayerListBtn", + "scrollBar1", + "_Image5", + "scrollBar", + "chatMenuView", + "faceGrpup", + "phoneFaceGrpup" + ] + }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "bg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 491.33, + "scale9Grid": "60,60,12,12", + "scaleX": 1, + "scaleY": 1, + "source": "apay_tab_bg", + "visible": false, + "width": 709.84, + "x": 178.38, + "y": 47.48, + "$t": "$eI" + }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 564.67, + "scale9Grid": "60,60,12,12", + "scaleX": 1, + "scaleY": 1, + "source": "apay_tab_bg", + "visible": false, + "width": 172.47, + "x": 7.82, + "y": 46.81, + "$t": "$eI" + }, + "cbNear": { "name": "tabRed", "skinName": "CheckBox3", "x": 29, "y": 501, "$t": "$eCB" }, + "cbGuild": { "name": "tabRed", "skinName": "CheckBox3", "x": 29, "y": 538, "$t": "$eCB" }, + "cbPrivate": { "name": "tabRed", "skinName": "CheckBox3", "x": 29, "y": 575, "$t": "$eCB" }, + "lbNear": { "size": 18, "text": "接收附近频道", "textColor": 10920343, "x": 61, "y": 504, "$t": "$eL" }, + "lbGuild": { "size": 18, "text": "接收行会频道", "textColor": 10920343, "x": 61, "y": 541, "$t": "$eL" }, + "lbPrivate": { "size": 18, "text": "接收私聊频道", "textColor": 10920343, "x": 61, "y": 578, "$t": "$eL" }, + "_Image2": { "source": "com_bg_kuang_4_png", "x": 174, "y": 52, "$t": "$eI" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 423, "width": 147, "x": 25.31, "y": 60, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 375, "itemRendererSkinName": "TradeLineTabSkin", "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "$t": "$eVL" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 474, "right": 33, "scale9Grid": "5,7,5,4", "source": "ltk_3", "visible": false, "width": 690.67, "y": 61.67, "$t": "$eI" }, + "_Rect1": { "fillAlpha": 0.3, "height": 474, "width": 690, "x": 186, "y": 61, "$t": "$eR" }, + "barList": { "height": 472, "scrollPolicyH": "off", "skinName": "skins.ScrollerSkin", "width": 688.81, "x": 185.67, "y": 63, "$t": "$eS", "viewport": "chatList" }, + "chatList": { "bottom": 0, "itemRendererSkinName": "chatListWinItemSkin", "left": 0, "right": 11, "top": 0, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 13, "$t": "$eVL" }, + "_Image4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 46, "scale9Grid": "14,14,14,14", "source": "chat_ltbg", "width": 556, "x": 188, "y": 550, "$t": "$eI" }, + "btnSend": { "icon": "fasongjiantou2", "label": "发 送", "skinName": "Btn22Skin", "x": 791, "y": 550.33, "$t": "$eB" }, + "faceBtn": { "height": 38, "label": "", "width": 38, "x": 749, "y": 552, "$t": "$eB", "skinName": "ChatWinSkin$Skin133" }, + "btnChannel": { "icon": "shangjiantou", "label": "附 近", "skinName": "Btn22Skin", "x": 187.69, "y": 552.32, "$t": "$eB" }, + "chatInput": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 28.33, + "maxChars": 120, + "size": 15, + "text": "", + "textAlign": "left", + "textColor": 15779990, + "verticalAlign": "middle", + "width": 410, + "x": 282, + "y": 559, + "$t": "$eET" + }, + "showPlayerListBtn": { "bold": true, "size": 15, "stroke": 2, "text": "", "textColor": 15913230, "verticalCenter": 251, "x": 285, "$t": "$eL" }, + "scrollBar1": { "autoVisibility": false, "height": 478, "touchChildren": true, "touchEnabled": true, "visible": false, "width": 8, "x": 875.98, "y": 58.67, "$t": "$eVSB" }, + "_Image5": { "height": 469, "source": "m_lst_xian", "x": 880, "y": 65.01, "$t": "$eI" }, + "scrollBar": { "height": 478, "maximum": 1000, "minimum": 0, "name": "verticalSlider", "value": 0, "x": 873, "y": 58.67, "$t": "$eVS", "skinName": "ChatWinSkin$Skin134" }, + "chatMenuView": { "skinName": "ChatWinMenuSkin", "visible": false, "x": 188.97, "y": 351.21, "$t": "app.ChatWinMenuView" }, + "faceGrpup": { "height": 180, "visible": false, "width": 180, "x": 590, "y": 370, "$t": "$eG", "$eleC": ["_Rect2", "_Group1", "_Group2", "faceImgGrpup"] }, + "_Rect2": { "bottom": 0, "fillColor": 16777215, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["_Image6", "_Image7", "_Image8", "_Image9", "_Image10", "_Image11", "_Image12", "_Image13"] + }, + "_HorizontalLayout1": { "gap": 24, "$t": "$eHL" }, + "_Image6": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image7": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image8": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image9": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image10": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image11": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image12": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image13": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Group2": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_VerticalLayout3", + "$eleC": ["_Image14", "_Image15", "_Image16", "_Image17", "_Image18", "_Image19", "_Image20", "_Image21"] + }, + "_VerticalLayout3": { "gap": 24, "$t": "$eVL" }, + "_Image14": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image15": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image16": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image17": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image18": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image19": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image20": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image21": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "faceImgGrpup": { + "height": 176, + "visible": true, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_TileLayout1", + "$eleC": [ + "_Image22", + "_Image23", + "_Image24", + "_Image25", + "_Image26", + "_Image27", + "_Image28", + "_Image29", + "_Image30", + "_Image31", + "_Image32", + "_Image33", + "_Image34", + "_Image35", + "_Image36", + "_Image37", + "_Image38", + "_Image39", + "_Image40", + "_Image41", + "_Image42", + "_Image43", + "_Image44", + "_Image45", + "_Image46", + "_Image47", + "_Image48", + "_Image49", + "_Image50", + "_Image51", + "_Image52", + "_Image53", + "_Image54", + "_Image55", + "_Image56", + "_Image57", + "_Image58", + "_Image59", + "_Image60", + "_Image61", + "_Image62", + "_Image63", + "_Image64", + "_Image65", + "_Image66", + "_Image67", + "_Image68", + "_Image69", + "_Image70" + ] + }, + "_TileLayout1": { "columnWidth": 24, "horizontalGap": 1, "paddingLeft": 1, "paddingTop": 1, "requestedColumnCount": 7, "rowHeight": 24, "verticalGap": 1, "$t": "$eTL" }, + "_Image22": { "name": "face_0", "visible": false, "$t": "$eI" }, + "_Image23": { "name": "face_1", "visible": false, "$t": "$eI" }, + "_Image24": { "name": "face_2", "visible": false, "$t": "$eI" }, + "_Image25": { "name": "face_3", "visible": false, "$t": "$eI" }, + "_Image26": { "name": "face_4", "visible": false, "$t": "$eI" }, + "_Image27": { "name": "face_5", "visible": false, "$t": "$eI" }, + "_Image28": { "name": "face_6", "visible": false, "$t": "$eI" }, + "_Image29": { "name": "face_7", "visible": false, "$t": "$eI" }, + "_Image30": { "name": "face_8", "visible": false, "$t": "$eI" }, + "_Image31": { "name": "face_9", "visible": false, "$t": "$eI" }, + "_Image32": { "name": "face_10", "visible": false, "$t": "$eI" }, + "_Image33": { "name": "face_11", "visible": false, "$t": "$eI" }, + "_Image34": { "name": "face_12", "visible": false, "$t": "$eI" }, + "_Image35": { "name": "face_13", "visible": false, "$t": "$eI" }, + "_Image36": { "name": "face_14", "visible": false, "$t": "$eI" }, + "_Image37": { "name": "face_15", "visible": false, "$t": "$eI" }, + "_Image38": { "name": "face_16", "visible": false, "$t": "$eI" }, + "_Image39": { "name": "face_17", "visible": false, "$t": "$eI" }, + "_Image40": { "name": "face_18", "visible": false, "$t": "$eI" }, + "_Image41": { "name": "face_19", "visible": false, "$t": "$eI" }, + "_Image42": { "name": "face_20", "visible": false, "$t": "$eI" }, + "_Image43": { "name": "face_21", "visible": false, "$t": "$eI" }, + "_Image44": { "name": "face_22", "visible": false, "$t": "$eI" }, + "_Image45": { "name": "face_23", "visible": false, "$t": "$eI" }, + "_Image46": { "name": "face_24", "visible": false, "$t": "$eI" }, + "_Image47": { "name": "face_25", "visible": false, "$t": "$eI" }, + "_Image48": { "name": "face_26", "visible": false, "$t": "$eI" }, + "_Image49": { "name": "face_27", "visible": false, "$t": "$eI" }, + "_Image50": { "name": "face_28", "visible": false, "$t": "$eI" }, + "_Image51": { "name": "face_29", "visible": false, "$t": "$eI" }, + "_Image52": { "name": "face_30", "visible": false, "$t": "$eI" }, + "_Image53": { "name": "face_31", "visible": false, "$t": "$eI" }, + "_Image54": { "name": "face_32", "visible": false, "$t": "$eI" }, + "_Image55": { "name": "face_33", "visible": false, "$t": "$eI" }, + "_Image56": { "name": "face_34", "visible": false, "$t": "$eI" }, + "_Image57": { "name": "face_35", "visible": false, "$t": "$eI" }, + "_Image58": { "name": "face_36", "visible": false, "$t": "$eI" }, + "_Image59": { "name": "face_37", "visible": false, "$t": "$eI" }, + "_Image60": { "name": "face_38", "visible": false, "$t": "$eI" }, + "_Image61": { "name": "face_39", "visible": false, "$t": "$eI" }, + "_Image62": { "name": "face_40", "visible": false, "$t": "$eI" }, + "_Image63": { "name": "face_41", "visible": false, "$t": "$eI" }, + "_Image64": { "name": "face_42", "visible": false, "$t": "$eI" }, + "_Image65": { "name": "face_43", "visible": false, "$t": "$eI" }, + "_Image66": { "name": "face_44", "visible": false, "$t": "$eI" }, + "_Image67": { "name": "face_45", "visible": false, "$t": "$eI" }, + "_Image68": { "name": "face_46", "visible": false, "$t": "$eI" }, + "_Image69": { "name": "face_47", "visible": false, "$t": "$eI" }, + "_Image70": { "name": "face_48", "visible": false, "$t": "$eI" }, + "phoneFaceGrpup": { "height": 180, "visible": false, "width": 180, "x": 590, "y": 370, "$t": "$eG", "$eleC": ["_Rect3", "_Group3", "_Group4", "phoneFaceImgGrpup"] }, + "_Rect3": { "bottom": 0, "fillColor": 16777215, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group3": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["_Image71", "_Image72", "_Image73", "_Image74", "_Image75", "_Image76", "_Image77", "_Image78"] + }, + "_HorizontalLayout2": { "gap": 24, "$t": "$eHL" }, + "_Image71": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image72": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image73": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image74": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image75": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image76": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image77": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image78": { "rotation": 90, "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Group4": { + "height": 176, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_VerticalLayout4", + "$eleC": ["_Image79", "_Image80", "_Image81", "_Image82", "_Image83", "_Image84", "_Image85", "_Image86"] + }, + "_VerticalLayout4": { "gap": 24, "$t": "$eVL" }, + "_Image79": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image80": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image81": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image82": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image83": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image84": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image85": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "_Image86": { "source": "chat_bqbkuang", "width": 176, "$t": "$eI" }, + "phoneFaceImgGrpup": { + "height": 176, + "visible": true, + "width": 176, + "x": 2, + "y": 2, + "$t": "$eG", + "layout": "_TileLayout2", + "$eleC": [ + "_Image87", + "_Image88", + "_Image89", + "_Image90", + "_Image91", + "_Image92", + "_Image93", + "_Image94", + "_Image95", + "_Image96", + "_Image97", + "_Image98", + "_Image99", + "_Image100", + "_Image101", + "_Image102", + "_Image103", + "_Image104", + "_Image105", + "_Image106", + "_Image107", + "_Image108", + "_Image109", + "_Image110", + "_Image111", + "_Image112", + "_Image113", + "_Image114", + "_Image115", + "_Image116", + "_Image117", + "_Image118", + "_Image119", + "_Image120", + "_Image121", + "_Image122", + "_Image123", + "_Image124", + "_Image125", + "_Image126", + "_Image127", + "_Image128", + "_Image129", + "_Image130", + "_Image131", + "_Image132", + "_Image133", + "_Image134", + "_Image135" + ] + }, + "_TileLayout2": { "columnWidth": 24, "horizontalGap": 1, "paddingLeft": 1, "paddingTop": 1, "requestedColumnCount": 7, "rowHeight": 24, "verticalGap": 1, "$t": "$eTL" }, + "_Image87": { "name": "phoneFace_0", "visible": false, "$t": "$eI" }, + "_Image88": { "name": "phoneFace_1", "visible": false, "$t": "$eI" }, + "_Image89": { "name": "phoneFace_2", "visible": false, "$t": "$eI" }, + "_Image90": { "name": "phoneFace_3", "visible": false, "$t": "$eI" }, + "_Image91": { "name": "phoneFace_4", "visible": false, "$t": "$eI" }, + "_Image92": { "name": "phoneFace_5", "visible": false, "$t": "$eI" }, + "_Image93": { "name": "phoneFace_6", "visible": false, "$t": "$eI" }, + "_Image94": { "name": "phoneFace_7", "visible": false, "$t": "$eI" }, + "_Image95": { "name": "phoneFace_8", "visible": false, "$t": "$eI" }, + "_Image96": { "name": "phoneFace_9", "visible": false, "$t": "$eI" }, + "_Image97": { "name": "phoneFace_10", "visible": false, "$t": "$eI" }, + "_Image98": { "name": "phoneFace_11", "visible": false, "$t": "$eI" }, + "_Image99": { "name": "phoneFace_12", "visible": false, "$t": "$eI" }, + "_Image100": { "name": "phoneFace_13", "visible": false, "$t": "$eI" }, + "_Image101": { "name": "phoneFace_14", "visible": false, "$t": "$eI" }, + "_Image102": { "name": "phoneFace_15", "visible": false, "$t": "$eI" }, + "_Image103": { "name": "phoneFace_16", "visible": false, "$t": "$eI" }, + "_Image104": { "name": "phoneFace_17", "visible": false, "$t": "$eI" }, + "_Image105": { "name": "phoneFace_18", "visible": false, "$t": "$eI" }, + "_Image106": { "name": "phoneFace_19", "visible": false, "$t": "$eI" }, + "_Image107": { "name": "phoneFace_20", "visible": false, "$t": "$eI" }, + "_Image108": { "name": "phoneFace_21", "visible": false, "$t": "$eI" }, + "_Image109": { "name": "phoneFace_22", "visible": false, "$t": "$eI" }, + "_Image110": { "name": "phoneFace_23", "visible": false, "$t": "$eI" }, + "_Image111": { "name": "phoneFace_24", "visible": false, "$t": "$eI" }, + "_Image112": { "name": "phoneFace_25", "visible": false, "$t": "$eI" }, + "_Image113": { "name": "phoneFace_26", "visible": false, "$t": "$eI" }, + "_Image114": { "name": "phoneFace_27", "visible": false, "$t": "$eI" }, + "_Image115": { "name": "phoneFace_28", "visible": false, "$t": "$eI" }, + "_Image116": { "name": "phoneFace_29", "visible": false, "$t": "$eI" }, + "_Image117": { "name": "phoneFace_30", "visible": false, "$t": "$eI" }, + "_Image118": { "name": "phoneFace_31", "visible": false, "$t": "$eI" }, + "_Image119": { "name": "phoneFace_32", "visible": false, "$t": "$eI" }, + "_Image120": { "name": "phoneFace_33", "visible": false, "$t": "$eI" }, + "_Image121": { "name": "phoneFace_34", "visible": false, "$t": "$eI" }, + "_Image122": { "name": "phoneFace_35", "visible": false, "$t": "$eI" }, + "_Image123": { "name": "phoneFace_36", "visible": false, "$t": "$eI" }, + "_Image124": { "name": "phoneFace_37", "visible": false, "$t": "$eI" }, + "_Image125": { "name": "phoneFace_38", "visible": false, "$t": "$eI" }, + "_Image126": { "name": "phoneFace_39", "visible": false, "$t": "$eI" }, + "_Image127": { "name": "phoneFace_40", "visible": false, "$t": "$eI" }, + "_Image128": { "name": "phoneFace_41", "visible": false, "$t": "$eI" }, + "_Image129": { "name": "phoneFace_42", "visible": false, "$t": "$eI" }, + "_Image130": { "name": "phoneFace_43", "visible": false, "$t": "$eI" }, + "_Image131": { "name": "phoneFace_44", "visible": false, "$t": "$eI" }, + "_Image132": { "name": "phoneFace_45", "visible": false, "$t": "$eI" }, + "_Image133": { "name": "phoneFace_46", "visible": false, "$t": "$eI" }, + "_Image134": { "name": "phoneFace_47", "visible": false, "$t": "$eI" }, + "_Image135": { "name": "phoneFace_48", "visible": false, "$t": "$eI" }, + "$sP": [ + "dragDropUI", + "bg", + "cbNear", + "cbGuild", + "cbPrivate", + "lbNear", + "lbGuild", + "lbPrivate", + "tabBar", + "scroller", + "chatList", + "barList", + "btnSend", + "faceBtn", + "btnChannel", + "chatInput", + "showPlayerListBtn", + "scrollBar1", + "scrollBar", + "chatMenuView", + "faceImgGrpup", + "faceGrpup", + "phoneFaceImgGrpup", + "phoneFaceGrpup" + ], + "$sC": "$eSk" + }, + "ChatWinSkin$Skin133": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "chat_tab_4", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "ChatWinSkin$Skin134": { + "$bs": { "minHeight": 10, "minWidth": 20, "$eleC": ["track", "thumb"] }, + "track": { "percentHeight": 100, "scale9Grid": "2,2,16,15", "source": "", "verticalCenter": 0, "width": 20, "$t": "$eI" }, + "thumb": { "rotation": 0, "source": "m_lst_dian", "x": 2, "$t": "$eI" }, + "$sP": ["track", "thumb"], + "$sC": "$eSk" + }, + "ActivityCommonViewSkin": { + "$path": "resource/eui_skins/web/common/ActivityCommonViewSkin.exml", + "$bs": { "width": 470, "$eleC": ["dragDropUI", "strLab", "closeBtn"] }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "$t": "app.UIViewFrame" }, + "strLab": { + "height": 180, + "horizontalCenter": -1, + "lineSpacing": 7, + "size": 21, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": -12, + "width": 394, + "$t": "$eL" + }, + "closeBtn": { "height": 44, "label": "知道了", "width": 109, "x": 181, "y": 286, "$t": "$eB", "skinName": "ActivityCommonViewSkin$Skin135" }, + "$sP": ["dragDropUI", "strLab", "closeBtn"], + "$sC": "$eSk" + }, + "ActivityCommonViewSkin$Skin135": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "ActWleFareTabSkin": { + "$path": "resource/eui_skins/web/common/ActWleFareTabSkin.exml", + "$bs": { "height": 32, "width": 90, "$eleC": ["_Image1", "labelDisplay", "_Image2", "redPoint"] }, + "_Image1": { "horizontalCenter": 0, "source": "flqd_tab1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "累积2天", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "_Image2": { "horizontalCenter": 0, "source": "flqd_tab2", "verticalCenter": 0, "$t": "$eI" }, + "redPoint": { "right": 0, "top": 0, "visible": false, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redPoint"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 15779990 }, + { "target": "_Image2", "name": "visible", "value": false } + ] + } + }, + "$sC": "$eSk" + }, + "bar1Skin": { + "$path": "resource/eui_skins/web/common/bar1Skin.exml", + "$bs": { "$eleC": ["thumb"] }, + "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "bg_exp_0", "top": 0, "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "bar2Skin": { + "$path": "resource/eui_skins/web/common/bar2Skin.exml", + "$bs": { "$eleC": ["thumb", "labelDisplay"] }, + "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "guild_json.guild_jingyantiao", "top": 0, "$t": "$eI" }, + "labelDisplay": { "fontFamily": "Tahoma", "horizontalCenter": 0, "size": 15, "textAlign": "center", "textColor": 13350813, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "bar4Skin": { + "$path": "resource/eui_skins/web/common/bar4Skin.exml", + "$bs": { "$eleC": ["thumb", "labelDisplay"] }, + "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "tq_jdt", "top": 0, "$t": "$eI" }, + "labelDisplay": { + "fontFamily": "Tahoma", + "horizontalCenter": 0, + "size": 15, + "stroke": 1, + "textAlign": "center", + "textColor": 16776441, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "Main.Btn11Skin": { + "$path": "resource/eui_skins/web/common/btn11Skin.exml", + "$bs": { "height": 28, "width": 84, "$eleC": ["_Image1", "_Image2", "iconDisplay", "red"] }, + "_Image1": { "height": 28, "scale9Grid": "10,10,1,1", "source": "bg_lakai_1", "width": 84, "$t": "$eI" }, + "_Image2": { "height": 28, "horizontalCenter": 0, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "verticalCenter": 0, "width": 84, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "source": "t_b_quanti", "verticalCenter": 0, "$t": "$eI" }, + "red": { "right": 0, "top": 0, "$t": "app.RedDotControl" }, + "$sP": ["iconDisplay", "red"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bg_lakai_1" }, + { "target": "_Image1", "name": "scale9Grid", "value": "10,9,1,1" }, + { "target": "_Image1", "name": "anchorOffsetX", "value": 0 }, + { "target": "_Image1", "name": "width", "value": 84 }, + { "target": "_Image1", "name": "anchorOffsetY", "value": 0 }, + { "target": "_Image1", "name": "height", "value": 28 }, + { "target": "_Image1", "name": "x", "value": 0 }, + { "target": "_Image1", "name": "y", "value": 0 }, + { "target": "_Image2", "name": "source", "value": "bg_quyu_1" }, + { "target": "_Image2", "name": "width", "value": 84 }, + { "target": "_Image2", "name": "height", "value": 28 }, + { "target": "_Image2", "name": "scale9Grid", "value": "9,9,1,1" } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Image1", "name": "verticalCenter", "value": 0 }, + { "target": "_Image1", "name": "source", "value": "bg_lakai_1" }, + { "target": "_Image1", "name": "width", "value": 84 }, + { "target": "_Image1", "name": "height", "value": 28 }, + { "target": "_Image1", "name": "scale9Grid", "value": "10,10,1,1" }, + { "target": "_Image2", "name": "width", "value": 84 }, + { "target": "_Image2", "name": "height", "value": 28 }, + { "target": "_Image2", "name": "source", "value": "bg_quyu_2" }, + { "target": "_Image2", "name": "scale9Grid", "value": "9,9,1,1" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "horizontalCenter", "value": 0 }, + { "target": "_Image1", "name": "verticalCenter", "value": 0 }, + { "target": "_Image2", "name": "source", "value": "bg_quyu_2" } + ] + } + }, + "$sC": "$eSk" + }, + "Btn12Skin": { + "$path": "resource/eui_skins/web/common/Btn12Skin.exml", + "$bs": { "height": 41, "width": 93, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "source": "btn_0", "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "", "y": 11, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_1" }] } }, + "$sC": "$eSk" + }, + "Btn13Skin": { + "$path": "resource/eui_skins/web/common/Btn13Skin.exml", + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "source": "com_btn_xiala1", "$t": "$eI" }, + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_btn_xiala2" }] } }, + "$sC": "$eSk" + }, + "Btn14Skin": { + "$path": "resource/eui_skins/web/common/Btn14Skin.exml", + "$bs": { "currentState": "up", "$eleC": ["_Image1", "labelDisplay", "iconDisplay"] }, + "_Image1": { "source": "btn_4", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 16.5, "size": 20, "stroke": 2, "text": "140", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "iconDisplay": { "scaleX": 0.5, "scaleY": 0.5, "source": "itemIcon_json.13123", "x": 5.32, "y": 2.99, "$t": "$eI" }, + "$sP": ["labelDisplay", "iconDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "common_json.btn_0" }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 1 }, + { "target": "_Image1", "name": "scaleY", "value": 1 }, + { "target": "_Image1", "name": "source", "value": "common_json.btn_1" }, + { "target": "labelDisplay", "name": "stroke", "value": 1.5 }, + { "target": "", "name": "width", "value": 93 }, + { "target": "", "name": "height", "value": 41 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn15Skin": { + "$path": "resource/eui_skins/web/common/Btn15Skin.exml", + "$bs": { "$eleC": ["icon", "labelDisplay", "lock", "select"] }, + "icon": { "source": "btn_9", "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 0, "size": 19, "text": "25级打宝", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0, "width": 100, "$t": "$eL" }, + "lock": { "bottom": 0, "right": 0, "source": "common_lock", "visible": false, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 40, "scale9Grid": "7,9,7,4", "source": "t_b_xuanfu", "visible": false, "width": 104, "x": 2, "y": 2, "$t": "$eI" }, + "$sP": ["icon", "labelDisplay", "lock", "select"], + "$s": { + "up": { "$ssP": [{ "target": "icon", "name": "source", "value": "btn_9" }] }, + "down": { + "$ssP": [ + { "target": "icon", "name": "source", "value": "btn_9" }, + { "target": "icon", "name": "scaleX", "value": 0.98 }, + { "target": "icon", "name": "scaleY", "value": 0.98 }, + { "target": "icon", "name": "horizontalCenter", "value": 0 }, + { "target": "icon", "name": "verticalCenter", "value": 0 }, + { "target": "labelDisplay", "name": "scaleX", "value": 0.98 }, + { "target": "labelDisplay", "name": "scaleY", "value": 0.98 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn16Skin": { + "$path": "resource/eui_skins/web/common/Btn16Skin.exml", + "$bs": { "height": 37, "width": 86, "$eleC": ["_Image1", "labelDisplay", "redDot"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "source": "btn_6", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": -2, "size": 20, "text": "强 化", "textColor": 13877916, "touchEnabled": false, "verticalCenter": -1.5, "$t": "$eL" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 70, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redDot"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_5" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn17Skin": { + "$path": "resource/eui_skins/web/common/Btn17Skin.exml", + "$bs": { "height": 52, "width": 50, "$eleC": ["icon"] }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "source": "sz_btn_1", "$t": "$eI" }, + "$sP": ["icon"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "icon", "name": "scaleX", "value": 0.95 }, + { "target": "icon", "name": "scaleY", "value": 0.95 }, + { "target": "icon", "name": "source", "value": "sz_btn_1" }, + { "target": "icon", "name": "anchorOffsetX", "value": -1 }, + { "target": "icon", "name": "anchorOffsetY", "value": -1 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn18Skin": { + "$path": "resource/eui_skins/web/common/Btn18Skin.exml", + "$bs": { "height": 52, "width": 50, "$eleC": ["icon"] }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "source": "sz_btn_2", "$t": "$eI" }, + "$sP": ["icon"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "icon", "name": "scaleX", "value": 0.95 }, + { "target": "icon", "name": "scaleY", "value": 0.95 }, + { "target": "icon", "name": "anchorOffsetX", "value": -1 }, + { "target": "icon", "name": "anchorOffsetY", "value": -1 }, + { "target": "icon", "name": "source", "value": "sz_btn_2" } + ] + } + }, + "$sC": "$eSk" + }, + "Btn19Skin": { + "$path": "resource/eui_skins/web/common/Btn19Skin.exml", + "$bs": { "height": 52, "width": 50, "$eleC": ["icon"] }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "source": "sz_btn_3", "$t": "$eI" }, + "$sP": ["icon"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "icon", "name": "scaleX", "value": 0.95 }, + { "target": "icon", "name": "scaleY", "value": 0.95 }, + { "target": "icon", "name": "anchorOffsetX", "value": -1 }, + { "target": "icon", "name": "anchorOffsetY", "value": -1 }, + { "target": "icon", "name": "source", "value": "sz_btn_3" } + ] + } + }, + "$sC": "$eSk" + }, + "Btn1Skin": { + "$path": "resource/eui_skins/web/common/Btn1Skin.exml", + "$bs": { "height": 41, "width": 95, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "t_b_bg2", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "Btn20Skin": { + "$path": "resource/eui_skins/web/common/Btn20Skin.exml", + "$bs": { "height": 52, "width": 50, "$eleC": ["icon"] }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "source": "sz_btn_4", "$t": "$eI" }, + "$sP": ["icon"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "icon", "name": "scaleX", "value": 0.95 }, + { "target": "icon", "name": "scaleY", "value": 0.95 }, + { "target": "icon", "name": "anchorOffsetX", "value": -1 }, + { "target": "icon", "name": "anchorOffsetY", "value": -1 }, + { "target": "icon", "name": "source", "value": "sz_btn_4" } + ] + } + }, + "$sC": "$eSk" + }, + "Btn21Skin": { + "$path": "resource/eui_skins/web/common/Btn21Skin.exml", + "$bs": { "height": 57, "width": 161, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "chat_tab_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 25, "text": "全 部", "textColor": 15451538, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "chat_tab_1" }] }, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "chat_tab_2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "chat_tab_2" }] } + }, + "$sC": "$eSk" + }, + "Btn24Skin": { + "$path": "resource/eui_skins/web/common/Btn24Skin.exml", + "$bs": { "height": 40, "width": 122, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "tq_tab1", "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 10.5, "size": 22, "text": "button", "textColor": 15451538, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 8882052 }, + { "target": "labelDisplay", "name": "stroke", "value": 2 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tq_tab2" }, + { "target": "labelDisplay", "name": "textColor", "value": 13946020 }, + { "target": "labelDisplay", "name": "stroke", "value": 2 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn25Skin": { + "$path": "resource/eui_skins/web/common/Btn25Skin.exml", + "$bs": { "height": 40, "width": 122, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "scaleX": -1, "source": "tq_tab1", "x": 122, "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": -10, "size": 22, "text": "button", "textColor": 15451538, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 8882052 }, + { "target": "labelDisplay", "name": "stroke", "value": 2 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tq_tab2" }, + { "target": "labelDisplay", "name": "textColor", "value": 13946020 }, + { "target": "labelDisplay", "name": "stroke", "value": 2 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn30Skin": { + "$path": "resource/eui_skins/web/common/Btn30Skin.exml", + "$bs": { "height": 46, "width": 113, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "btn_apay", "top": 0, "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15451538, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {} }, + "$sC": "$eSk" + }, + "Btn32Skin": { + "$path": "resource/eui_skins/web/common/Btn32Skin.exml", + "$bs": { "height": 51, "width": 139, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "button", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "anchorOffsetX", "value": 0.95 }, + { "target": "_Image1", "name": "anchorOffsetY", "value": 0.95 }, + { "target": "labelDisplay", "name": "anchorOffsetX", "value": 0.95 }, + { "target": "labelDisplay", "name": "anchorOffsetY", "value": 0.95 }, + { "target": "labelDisplay", "name": "textColor", "value": 15064527 } + ] + } + }, + "$sC": "$eSk" + }, + "Btn3Skin": { + "$path": "resource/eui_skins/web/common/Btn3Skin.exml", + "$bs": { "currentState": "up", "$eleC": ["_Image1", "labelDisplay", "_Image2"] }, + "_Image1": { "source": "bagbtn_1", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 1, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "_Image2": { "source": "bagbtn_2", "$t": "$eI" }, + "$sP": ["labelDisplay"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": {}, "disabled": {} }, + "$b": [{ "$bd": ["hostComponent.data"], "$bt": "labelDisplay", "$bp": "text" }], + "$sC": "$eSk" + }, + "Btn5Skin": { + "$path": "resource/eui_skins/web/common/Btn5Skin.exml", + "$bs": { "height": 25, "width": 55, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "chat_json.button_lt", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 13, "text": "label", "textAlign": "center", "textColor": 10393212, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "labelDisplay", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "btn6Skin": { + "$path": "resource/eui_skins/web/common/Btn6Skin.exml", + "$bs": { "height": 20, "width": 46, "$eleC": ["_Image1", "_Image2", "labelDisplay", "iconDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "yeqian_liaotian1", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "source": "yeqian_liaotian1", "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 13, "text": "Label", "textColor": 10393212, "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "iconDisplay": { "horizontalCenter": 0, "source": "chat_t_7", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["labelDisplay", "iconDisplay"], + "$sC": "$eSk" + }, + "Btn7Skin": { + "$path": "resource/eui_skins/web/common/Btn7Skin.exml", + "$bs": { "height": 25.5, "$eleC": ["labelDisplay"] }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 15, "text": "(点击设置)", "textColor": 15913230, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {} }, + "$sC": "$eSk" + }, + "Btn8Skin": { + "$path": "resource/eui_skins/web/common/Btn8Skin.exml", + "$bs": { "height": 52, "width": 141, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_yeqian_4", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "t_sz_jc", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_yeqian_4" }] }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_yeqian_3" }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_yeqian_3" }] } + }, + "$sC": "$eSk" + }, + "BtnTabSkin": { + "$path": "resource/eui_skins/web/common/BtnTabSkin.exml", + "$bs": { "$eleC": ["_Image1", "_Image2", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "common_yeqian_6", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "common_yeqian_5", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 3, "size": 21, "text": "", "textColor": 15779990, "verticalCenter": 0, "width": 26, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "x", "value": 17 }, + { "target": "labelDisplay", "name": "y", "value": 23 }, + { "target": "labelDisplay", "name": "textColor", "value": 10920343 }, + { "target": "labelDisplay", "name": "verticalCenter", "value": 1 }, + { "target": "labelDisplay", "name": "width", "value": 22 }, + { "target": "labelDisplay", "name": "horizontalCenter", "value": 4 } + ] + }, + "down": { + "$ssP": [ + { "target": "labelDisplay", "name": "x", "value": 14 }, + { "target": "labelDisplay", "name": "verticalCenter", "value": 0 }, + { "target": "labelDisplay", "name": "horizontalCenter", "value": 5 } + ] + } + }, + "$b": [{ "$bd": ["hostComponent.data"], "$bt": "labelDisplay", "$bp": "text" }], + "$sC": "$eSk" + }, + "BtnTabSkin1": { + "$path": "resource/eui_skins/web/common/BtnTabSkin1.exml", + "$bs": { "height": 30, "width": 86, "$eleC": ["gp"] }, + "gp": { "height": 30, "width": 86, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "labelDisplay", "redPoint"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "qd_yeqian1", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "qd_yeqian2", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 1, "size": 15, "text": "签到26次", "verticalCenter": 1, "$t": "$eL" }, + "redPoint": { "height": 20, "visible": false, "width": 20, "x": 71.6, "y": -2, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redPoint", "gp"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "qd_yeqian1" }, + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "textColor", "value": 10586650 }, + { "target": "labelDisplay", "name": "stroke", "value": 1 }, + { "target": "labelDisplay", "name": "fontFamily", "value": "Microsoft YaHei" } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "qd_yeqian1" }, + { "target": "_Image2", "name": "source", "value": "qd_yeqian2" }, + { "target": "labelDisplay", "name": "textColor", "value": 14194445 }, + { "target": "labelDisplay", "name": "stroke", "value": 1 }, + { "target": "labelDisplay", "name": "fontFamily", "value": "Microsoft YaHei" }, + { "target": "", "name": "width", "value": 86 }, + { "target": "", "name": "height", "value": 30 } + ] + } + }, + "$sC": "$eSk" + }, + "BtnTabSkin2": { + "$path": "resource/eui_skins/web/common/BtnTabSkin2.exml", + "$bs": { "height": 47, "width": 112, "$eleC": ["gp"] }, + "gp": { "height": 47, "width": 112, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "labelDisplay", "redPoint"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "forge_tab2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "scaleX": 1, "scaleY": 1, "source": "forge_tab1", "$t": "$eI" }, + "labelDisplay": { "size": 20, "text": "已装备", "textAlign": "center", "verticalAlign": "middle", "x": 28, "y": 12, "$t": "$eL" }, + "redPoint": { "height": 20, "visible": false, "width": 20, "x": 71.6, "y": -2, "$t": "app.RedDotControl" }, + "$sP": ["labelDisplay", "redPoint", "gp"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "forge_tab2" }, + { "target": "_Image1", "name": "horizontalCenter", "value": 1.5 }, + { "target": "_Image2", "name": "horizontalCenter", "value": 0 }, + { "target": "_Image2", "name": "verticalCenter", "value": 0 }, + { "target": "_Image2", "name": "x", "value": 0 }, + { "target": "_Image2", "name": "y", "value": 0 }, + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "labelDisplay", "name": "stroke", "value": 1 }, + { "target": "labelDisplay", "name": "fontFamily", "value": "Microsoft YaHei" }, + { "target": "labelDisplay", "name": "size", "value": 20 }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 }, + { "target": "labelDisplay", "name": "y", "value": 14 }, + { "target": "labelDisplay", "name": "horizontalCenter", "value": 1 }, + { "target": "", "name": "width", "value": 112 }, + { "target": "", "name": "height", "value": 47 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "forge_tab2" }, + { "target": "_Image1", "name": "horizontalCenter", "value": 0.5 }, + { "target": "_Image1", "name": "verticalCenter", "value": 0 }, + { "target": "_Image2", "name": "source", "value": "forge_tab1" }, + { "target": "_Image2", "name": "horizontalCenter", "value": -0.5 }, + { "target": "_Image2", "name": "verticalCenter", "value": 0 }, + { "target": "_Image2", "name": "width", "value": 113 }, + { "target": "labelDisplay", "name": "stroke", "value": 1 }, + { "target": "labelDisplay", "name": "fontFamily", "value": "Microsoft YaHei" }, + { "target": "labelDisplay", "name": "textColor", "value": 16369814 }, + { "target": "labelDisplay", "name": "size", "value": 20 }, + { "target": "labelDisplay", "name": "textAlign", "value": "center" }, + { "target": "labelDisplay", "name": "verticalAlign", "value": "middle" }, + { "target": "labelDisplay", "name": "horizontalCenter", "value": 1 }, + { "target": "labelDisplay", "name": "y", "value": 14 }, + { "target": "", "name": "width", "value": 112 }, + { "target": "", "name": "height", "value": 47 } + ] + } + }, + "$sC": "$eSk" + }, + "ButtonAttrSkin": { + "$path": "resource/eui_skins/web/common/ButtonAttrSkin.exml", + "$bs": { "height": 71, "width": 34, "$eleC": ["_Image1", "img"] }, + "_Image1": { "source": "btn_shuxing_bg", "$t": "$eI" }, + "img": { "source": "btn_shuxing_1", "x": 8, "y": 9, "$t": "$eI" }, + "$sP": ["img"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_shuxing_bg" }] } }, + "$sC": "$eSk" + }, + "ButtonReturnSkin": { + "$path": "resource/eui_skins/web/common/ButtonReturnSkin.exml", + "$bs": { "currentState": "up", "height": 60, "width": 60, "$eleC": ["btn_return"] }, + "btn_return": { "label": "", "$t": "$eB", "skinName": "ButtonReturnSkin$Skin136" }, + "$sP": ["btn_return"], + "$s": { + "down": { + "$ssP": [ + { "target": "btn_return", "name": "scaleX", "value": 0.95 }, + { "target": "btn_return", "name": "scaleY", "value": 0.95 } + ] + }, + "up": {} + }, + "$sC": "$eSk" + }, + "ButtonReturnSkin$Skin136": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_fanhui", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_fanhui" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_fanhui" }] } + }, + "$sC": "$eSk" + }, + "ButtonUISkin": { + "$path": "resource/eui_skins/web/common/ButtonUISkin.exml", + "$bs": { "height": 68, "width": 69, "$eleC": ["btn_return", "btn_close"] }, + "btn_return": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonUISkin$Skin137" }, + "btn_close": { "label": "", "x": 0, "y": 0, "$t": "$eB", "skinName": "ButtonUISkin$Skin138" }, + "$sP": ["btn_return", "btn_close"], + "$sC": "$eSk" + }, + "ButtonUISkin$Skin137": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_fanhui", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_fanhui" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_fanhui" }] } + }, + "$sC": "$eSk" + }, + "ButtonUISkin$Skin138": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi" }] } + }, + "$sC": "$eSk" + }, + "ChatBtnBigMenuSkin": { + "$path": "resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml", + "$bs": { "height": 41, "width": 93, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "button_lt3", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 0, "size": 18, "text": "button", "textColor": 15451538, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$sC": "$eSk" + }, + "ChatBtnMenuSkin": { + "$path": "resource/eui_skins/web/common/ChatBtnMenuSkin.exml", + "$bs": { "height": 25, "width": 55, "$eleC": ["_Image1", "btnIcon"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "button_lt", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "btnIcon": { "source": "chat_json.chat_t_3_1", "x": 6, "y": 3, "$t": "$eI" }, + "$sP": ["btnIcon"], + "$sC": "$eSk" + }, + "chatBtnSkin": { + "$path": "resource/eui_skins/web/common/chatBtnSkin.exml", + "$bs": { "height": 20, "width": 46, "$eleC": ["gp"] }, + "gp": { "height": 20, "width": 46, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "tarText"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "yeqian_liaotian2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "yeqian_liaotian1", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "tarText": { "source": "", "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["tarText", "gp"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "CircleTipsWinSkin": { + "$path": "resource/eui_skins/web/common/CircleTipsWinSkin.exml", + "$bs": { "height": 272, "width": 432, "$eleC": ["circleEffGrp", "closeGrp"] }, + "circleEffGrp": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG" }, + "closeGrp": { "bottom": 30, "height": 51, "horizontalCenter": 0, "width": 134, "$t": "$eG" }, + "$sP": ["circleEffGrp", "closeGrp"], + "$sC": "$eSk" + }, + "CommonBtnSkin": { + "$path": "resource/eui_skins/web/common/CommonBtnSkin.exml", + "$bs": { "currentState": "up", "$eleC": ["bg", "bg0", "redDot"] }, + "bg": { "horizontalCenter": 0, "smoothing": false, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "bg0": { "horizontalCenter": 0, "smoothing": false, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "redDot": { "height": 20, "visible": false, "width": 20, "x": 39.67, "y": 1.99, "$t": "app.RedDotControl" }, + "$sP": ["bg", "bg0", "redDot"], + "$s": { "up": { "$ssP": [{ "target": "bg0", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "CommonDialogSkin": { + "$path": "resource/eui_skins/web/common/CommonDialogSkin.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["dialogMask", "_Group1"] }, + "dialogMask": { "alpha": 0.5, "height": 900, "horizontalCenter": 0.5, "scale9Grid": "1,1,2,2", "source": "common_json.dialog_mask", "verticalCenter": 173.5, "width": 900, "$t": "$eI" }, + "_Group1": { "anchorOffsetY": 0, "horizontalCenter": 0, "width": 426, "y": 0, "$t": "$eG", "$eleC": ["bg", "titleLabel", "dialogCloseBtn"] }, + "bg": { "scaleX": 1, "scaleY": 1, "source": "bg_tipstc2_png", "x": 0, "y": -2, "$t": "$eI" }, + "titleLabel": { + "anchorOffsetX": 0, + "scaleX": 1, + "scaleY": 1, + "size": 20, + "text": "提示", + "textAlign": "center", + "textColor": 14731679, + "touchEnabled": false, + "width": 156, + "x": 131, + "y": 15, + "$t": "$eL" + }, + "dialogCloseBtn": { "height": 60, "label": "", "width": 60, "x": 405, "y": -9, "$t": "$eB", "skinName": "CommonDialogSkin$Skin139" }, + "$sP": ["dialogMask", "bg", "titleLabel", "dialogCloseBtn"], + "$sC": "$eSk" + }, + "CommonDialogSkin$Skin139": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "CommonGiftSelectWinSKin": { + "$path": "resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml", + "$bs": { "$eleC": ["rect", "_Group1"] }, + "rect": { "bottom": 0, "fillAlpha": 0.3, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["dragDropUI", "_Label1", "_Image1", "itemScroller", "receiveBtn"] }, + "dragDropUI": { "bottom": 0, "horizontalCenter": 0, "skinName": "ViewBgWin5Skin", "top": 0, "$t": "app.UIViewFrame" }, + "_Label1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 20, "text": "请从以下道具中选择一种", "textColor": 9997416, "x": 129, "y": 59, "$t": "$eL" }, + "_Image1": { + "height": 168, + "horizontalCenter": 0, + "scale9Grid": "168,68,94,59", + "scaleX": 1, + "scaleY": 1, + "source": "chat_bg_bg1_png", + "verticalCenter": 12, + "visible": false, + "x": 17, + "y": 98, + "$t": "$eI" + }, + "itemScroller": { "height": 148, "scaleX": 1, "scaleY": 1, "width": 379, "x": 51, "y": 104, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemSelectBaseSkin", "x": 51, "y": 104, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 5, "requestedRowCount": 2, "$t": "$eTL" }, + "receiveBtn": { + "bottom": 15, + "height": 44, + "horizontalCenter": 0, + "label": "领取奖励", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "CommonGiftSelectWinSKin$Skin140" + }, + "$sP": ["rect", "dragDropUI", "itemList", "itemScroller", "receiveBtn"], + "$sC": "$eSk" + }, + "CommonGiftSelectWinSKin$Skin140": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CommonGiftShowSKin": { + "$path": "resource/eui_skins/web/common/CommonGiftShowSKin.exml", + "$bs": { "$eleC": ["rect", "_Group1"] }, + "rect": { "bottom": 0, "fillAlpha": 0.3, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["dragDropUI", "_Image1", "itemScroller", "btnConfim"] }, + "dragDropUI": { "bottom": 0, "horizontalCenter": 0, "skinName": "ViewBgWin5Skin", "top": 0, "$t": "app.UIViewFrame" }, + "_Image1": { + "anchorOffsetY": 0, + "height": 211, + "horizontalCenter": 0, + "scale9Grid": "168,68,94,59", + "scaleX": 1, + "scaleY": 1, + "source": "chat_bg_bg1_png", + "verticalCenter": -9.5, + "visible": false, + "x": 17, + "y": 98, + "$t": "$eI" + }, + "itemScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 178, "scaleX": 1, "scaleY": 1, "scrollPolicyH": "off", "width": 389, "x": 44, "y": 71, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "anchorOffsetY": 0, "height": 181, "itemRendererSkinName": "ItemSelectBaseSkin", "x": 0, "y": -1, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 6, "requestedRowCount": 2, "$t": "$eTL" }, + "btnConfim": { + "bottom": 19, + "height": 44, + "horizontalCenter": 0, + "label": "确 定", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "CommonGiftShowSKin$Skin141" + }, + "$sP": ["rect", "dragDropUI", "itemList", "itemScroller", "btnConfim"], + "$sC": "$eSk" + }, + "CommonGiftShowSKin$Skin141": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CommonTarBtnItemSkin": { + "$path": "resource/eui_skins/web/common/CommonTarBtnItemSkin.exml", + "$bs": { "height": 99, "width": 45, "$eleC": ["_Image1", "_Image2", "tarText"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "common_json.common_yeqian_6", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "source": "common_json.common_yeqian_5", "x": 0, "y": 0, "$t": "$eI" }, + "tarText": { "horizontalCenter": 4.5, "scaleX": 1, "scaleY": 1, "source": "friend_json.t_gxyq_hy", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["tarText"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "CommonTarBtnItemSkin1": { + "$path": "resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml", + "$bs": { "height": 93, "width": 46, "$eleC": ["_Image1", "_Image2", "barText", "redDot"] }, + "_Image1": { "scaleX": 0.9, "scaleY": 0.9, "source": "common_yeqian_6", "x": 2, "y": 2, "$t": "$eI" }, + "_Image2": { "scaleX": 0.9, "scaleY": 0.9, "source": "common_yeqian_5", "x": 2, "y": 2, "$t": "$eI" }, + "barText": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "fontFamily": "SimHei", + "horizontalCenter": 4, + "lineSpacing": 13, + "scaleX": 0.9, + "scaleY": 0.9, + "size": 22, + "stroke": 1, + "textAlign": "center", + "verticalAlign": "middle", + "verticalCenter": -1, + "width": 24, + "$t": "$eL" + }, + "redDot": { "height": 20, "right": -5, "top": 0, "visible": false, "width": 20, "$t": "app.RedDotControl" }, + "$sP": ["barText", "redDot"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "barText", "name": "textColor", "value": 10920343 } + ] + }, + "down": { "$ssP": [{ "target": "barText", "name": "textColor", "value": 15779990 }] } + }, + "$sC": "$eSk" + }, + "CommonTarBtnItemSkin2": { + "$path": "resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml", + "$bs": { "height": 107, "width": 45, "$eleC": ["_Image1", "_Image2", "barText"] }, + "_Image1": { "horizontalCenter": 0, "source": "YY_tab2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "source": "YY_tab1", "$t": "$eI" }, + "barText": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bold": true, + "fontFamily": "SimHei", + "horizontalCenter": 4, + "lineSpacing": 13, + "size": 22, + "stroke": 1, + "text": "", + "textAlign": "center", + "verticalAlign": "middle", + "verticalCenter": 0, + "width": 24, + "$t": "$eL" + }, + "$sP": ["barText"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "barText", "name": "textColor", "value": 10920343 } + ] + }, + "down": { "$ssP": [{ "target": "barText", "name": "textColor", "value": 15779990 }] } + }, + "$sC": "$eSk" + }, + "CommonTarBtnItemSkin3": { + "$path": "resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml", + "$bs": { "height": 33, "width": 85, "$eleC": ["_Image1", "_Label1", "barText", "_Image2", "redDot"] }, + "_Image1": { "horizontalCenter": 0, "source": "sz_tab_1", "verticalCenter": 0, "$t": "$eI" }, + "_Label1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "horizontalCenter": 0.5, + "lineSpacing": 13, + "size": 15, + "stroke": 1, + "text": "", + "textAlign": "center", + "verticalAlign": "middle", + "verticalCenter": 3, + "visible": false, + "width": 73, + "$t": "$eL" + }, + "barText": { "horizontalCenter": 0, "source": "sz_tab_t1", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "sz_tab_2", "verticalCenter": 0, "$t": "$eI" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 68.5, "y": -2, "$t": "app.RedDotControl" }, + "$sP": ["barText", "redDot"], + "$s": { + "up": { "$ssP": [{ "target": "_Label1", "name": "textColor", "value": 11705712 }] }, + "down": { + "$ssP": [ + { "target": "_Label1", "name": "textColor", "value": 16756756 }, + { "target": "_Image2", "name": "visible", "value": false } + ] + } + }, + "$sC": "$eSk" + }, + "CommonTarBtnWinSkin": { + "$path": "resource/eui_skins/web/common/CommonTarBtnWinSkin.exml", + "$bs": { "currentState": "up", "height": 111, "width": 39, "$eleC": ["_Image1", "_Image2", "txtIcon1", "txtIcon2"] }, + "_Image1": { "horizontalCenter": 0, "source": "role_tab2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "role_tab1", "verticalCenter": 0, "$t": "$eI" }, + "txtIcon1": { "height": 111, "source": "role_tab_js1", "width": 39, "y": -8, "$t": "$eI" }, + "txtIcon2": { "height": 111, "source": "role_tab_js2", "width": 39, "y": -8, "$t": "$eI" }, + "$sP": ["txtIcon1", "txtIcon2"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txtIcon1", "name": "visible", "value": false } + ] + }, + "down": { "$ssP": [{ "target": "txtIcon2", "name": "visible", "value": false }] } + }, + "$sC": "$eSk" + }, + "CommonTarBtnWinSkin2": { + "$path": "resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml", + "$bs": { "height": 111, "width": 39, "$eleC": ["_Image1", "_Image2", "txtIcon1", "txtIcon2"] }, + "_Image1": { "horizontalCenter": 0, "source": "role_tab4", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "role_tab3", "verticalCenter": 0, "$t": "$eI" }, + "txtIcon1": { "height": 111, "source": "hc_tab_hc1", "width": 39, "$t": "$eI" }, + "txtIcon2": { "height": 111, "source": "hc_tab_hc2", "width": 39, "x": 0, "$t": "$eI" }, + "$sP": ["txtIcon1", "txtIcon2"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txtIcon1", "name": "visible", "value": false } + ] + }, + "down": { "$ssP": [{ "target": "txtIcon2", "name": "visible", "value": false }] } + }, + "$sC": "$eSk" + }, + "CommonTarBtnWinSkin3": { + "$path": "resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml", + "$bs": { "height": 81, "width": 36, "$eleC": ["_Image1", "_Image2", "txtIcon1", "txtIcon2"] }, + "_Image1": { "horizontalCenter": 0, "source": "cangku_tab1", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "cangku_tab2", "verticalCenter": 0, "$t": "$eI" }, + "txtIcon1": { "source": "cangku_tabt1_1", "$t": "$eI" }, + "txtIcon2": { "source": "cangku_tabt1_2", "x": 0, "$t": "$eI" }, + "$sP": ["txtIcon1", "txtIcon2"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txtIcon1", "name": "visible", "value": false } + ] + }, + "down": { "$ssP": [{ "target": "txtIcon2", "name": "visible", "value": false }] } + }, + "$sC": "$eSk" + }, + "CommonViewSkin": { + "$path": "resource/eui_skins/web/common/CommonViewSkin.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["dragDropUI", "strLab", "btnCofim", "btnClose"] }, + "dragDropUI": { "skinName": "ViewBgWin6Skin", "$t": "app.UIViewFrame" }, + "strLab": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 172, + "horizontalCenter": 0, + "size": 21, + "text": "", + "textAlign": "left", + "verticalAlign": "middle", + "verticalCenter": -10.5, + "width": 380, + "$t": "$eL" + }, + "btnCofim": { "bottom": 19, "height": 44, "label": "确定", "width": 109, "x": 70, "$t": "$eB", "skinName": "CommonViewSkin$Skin142" }, + "btnClose": { "bottom": 18, "height": 44, "label": "取消", "width": 109, "x": 260, "$t": "$eB", "skinName": "CommonViewSkin$Skin143" }, + "$sP": ["dragDropUI", "strLab", "btnCofim", "btnClose"], + "$sC": "$eSk" + }, + "CommonViewSkin$Skin142": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "CommonViewSkin$Skin143": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "GaimItemListItemSKin": { + "$path": "resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml", + "$bs": { "height": 70, "width": 70, "$eleC": ["btn"] }, + "btn": { "height": 70, "icon": "get_icon_3", "label": "Button", "skinName": "Btn0Skin", "width": 70, "$t": "$eB" }, + "$sP": ["btn"], + "$sC": "$eSk" + }, + "GaimItemWinSKin": { + "$path": "resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml", + "$bs": { "height": 364, "width": 317, "$eleC": ["dragDropUI", "_Image1", "_Group1", "itemName", "_Label1", "itemDesc", "_Image2", "btnClose", "viewList", "_Image3", "buyGrp"] }, + "dragDropUI": { "source": "get_bg", "x": 2.01, "$t": "$eI" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "12,10,2,5", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Group1": { "height": 60, "horizontalCenter": 2.5, "verticalCenter": -80, "width": 60, "$t": "$eG", "$eleC": ["itemBg", "itemIcon", "itemNu"] }, + "itemBg": { "scaleX": 1, "scaleY": 1, "source": "quality_4", "$t": "$eI" }, + "itemIcon": { "scaleX": 1, "scaleY": 1, "source": "11001", "$t": "$eI" }, + "itemNu": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "itemName": { "horizontalCenter": 2, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "top": 12, "touchEnabled": false, "$t": "$eL" }, + "_Label1": { "size": 18, "stroke": 2, "text": "可通过以下方式获得", "textColor": 16742144, "x": 78.32, "y": 234.36, "$t": "$eL" }, + "itemDesc": { + "height": 44, + "horizontalCenter": 4.5, + "lineSpacing": 4, + "size": 18, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": 8, + "width": 250, + "$t": "$eL" + }, + "_Image2": { "source": "get_bg2", "x": 16.68, "y": 243, "$t": "$eI" }, + "btnClose": { "label": "Button", "right": 0, "skinName": "CloseButtonSkin", "top": 0, "$t": "$eB" }, + "viewList": { "itemRendererSkinName": "GaimItemListItemSKin", "width": 289, "x": 16, "y": 284, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 3, "$t": "$eHL" }, + "_Image3": { "source": "get_tj", "x": 32, "y": 264, "$t": "$eI" }, + "buyGrp": { + "height": 90.67, + "visible": false, + "width": 289.34, + "x": 15.33, + "y": 135, + "$t": "$eG", + "$eleC": ["_Image4", "priceLab", "_Label2", "_Image5", "inputNum", "addBtn", "jianBtn", "buyBtn"] + }, + "_Image4": { "source": "get_bg3", "x": 76.3, "y": 4.33, "$t": "$eI" }, + "priceLab": { "horizontalCenter": 3, "size": 18, "stroke": 2, "text": "价格:500元宝", "verticalCenter": -27, "$t": "$eL" }, + "_Label2": { "size": 20, "stroke": 2, "text": "数量", "textColor": 15064527, "x": 3.5, "y": 51, "$t": "$eL" }, + "_Image5": { "height": 36, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 77, "x": 53, "y": 42.5, "$t": "$eI" }, + "inputNum": { + "bottom": "17", + "height": 26.67, + "horizontalCenter": "-52", + "restrict": "0-9", + "size": 20, + "text": "0", + "textAlign": "center", + "textColor": 16718530, + "verticalAlign": "middle", + "width": 66.34, + "$t": "$eET" + }, + "addBtn": { "height": 17, "icon": "get_jj2", "label": "Button", "skinName": "Btn0Skin", "width": 38, "x": 132.5, "y": 44, "$t": "$eB" }, + "jianBtn": { "height": 17, "icon": "get_jj1", "label": "Button", "skinName": "Btn0Skin", "width": 38, "x": 132.5, "y": 62, "$t": "$eB" }, + "buyBtn": { "label": "购 买", "skinName": "Btn9Skin", "x": 176, "y": 39, "$t": "$eB" }, + "$sP": ["dragDropUI", "itemBg", "itemIcon", "itemNu", "itemName", "itemDesc", "btnClose", "viewList", "priceLab", "inputNum", "addBtn", "jianBtn", "buyBtn", "buyGrp"], + "$sC": "$eSk" + }, + "GetPropsItemSkin": { + "$path": "resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml", + "$bs": { "height": 60.58, "width": 359.33, "$eleC": ["_Image1", "checkBtn", "txtName", "groupCheck"] }, + "_Image1": { "source": "", "x": 1.99, "y": 0.65, "$t": "$eI" }, + "checkBtn": { "label": "查 看", "skinName": "Btn9Skin", "visible": false, "x": 250.07, "y": 10, "$t": "$eB" }, + "txtName": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bold": true, "height": 26, "size": 20, "stroke": 1, "text": "", "textColor": 2682369, "x": 28.99, "y": 19.98, "$t": "$eL" }, + "groupCheck": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 35, "width": 96, "x": 259, "y": 13, "$t": "$eG", "$eleC": ["_Label1", "_Image2"] }, + "_Label1": { "scaleX": 1, "scaleY": 1, "size": 20, "text": "查 看", "textColor": 15451538, "x": 6, "y": 10, "$t": "$eL" }, + "_Image2": { "scaleX": 1, "scaleY": 1, "source": "", "x": 62, "y": 6, "$t": "$eI" }, + "$sP": ["checkBtn", "txtName", "groupCheck"], + "$sC": "$eSk" + }, + "UIViewFrameSkin2": { + "$path": "resource/eui_skins/web/common/UIViewFrameSkin2.exml", + "$bs": { "height": 379.6, "width": 374, "$eleC": ["_Group1"] }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 380, "width": 375, "$t": "$eG", "$eleC": ["_Image1", "bg", "txt_name", "btn_close"] }, + "_Image1": { "anchorOffsetY": 0, "height": 378.58, "source": "kbg_3_png", "$t": "$eI" }, + "bg": { "anchorOffsetY": 0, "source": "get_bg", "x": 11.46, "y": 44, "$t": "$eI" }, + "txt_name": { "fontFamily": "Microsoft YaHei", "size": 22, "text": "", "textAlign": "center", "textColor": 14731679, "touchEnabled": false, "width": 156, "x": 115, "y": 12, "$t": "$eL" }, + "btn_close": { "label": "", "skinName": "ButtonCloseSkin", "x": 340.88, "y": 8, "$t": "$eB" }, + "$sP": ["bg", "txt_name", "btn_close"], + "$s": { + "default1": { + "$ssP": [ + { "target": "_Image1", "name": "height", "value": 449.91 }, + { "target": "_Group1", "name": "height", "value": 453 }, + { "target": "", "name": "height", "value": 450 } + ] + }, + "default2": { + "$ssP": [ + { "target": "_Image1", "name": "height", "value": 514.25 }, + { "target": "_Image1", "name": "scale9Grid", "value": "146,57,87,346" }, + { "target": "_Group1", "name": "height", "value": 515.33 }, + { "target": "", "name": "height", "value": 515 } + ] + }, + "default3": { + "$ssP": [ + { "target": "_Image1", "name": "height", "value": 580 }, + { "target": "_Image1", "name": "scale9Grid", "value": "184,174,10,10" }, + { "target": "_Group1", "name": "height", "value": 580.33 }, + { "target": "", "name": "height", "value": 579.93 } + ] + }, + "default": { + "$ssP": [ + { "target": "_Image1", "name": "height", "value": 386.58 }, + { "target": "bg", "name": "height", "value": 330.67 }, + { "target": "_Group1", "name": "height", "value": 372 }, + { "target": "", "name": "height", "value": 385 } + ] + }, + "default4": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "skillbg2_png" }, + { "target": "_Image1", "name": "height", "value": 263 }, + { "target": "bg", "name": "visible", "value": false }, + { "target": "txt_name", "name": "visible", "value": false }, + { "target": "btn_close", "name": "x", "value": 476.88 }, + { "target": "btn_close", "name": "y", "value": 12 }, + { "target": "_Group1", "name": "width", "value": 517 }, + { "target": "_Group1", "name": "height", "value": 263 }, + { "target": "", "name": "width", "value": 517 }, + { "target": "", "name": "height", "value": 263 } + ] + }, + "default5": { + "$ssP": [ + { "target": "_Image1", "name": "height", "value": 640 }, + { "target": "_Image1", "name": "scale9Grid", "value": "184,174,10,10" }, + { "target": "_Group1", "name": "height", "value": 580.33 }, + { "target": "", "name": "height", "value": 640 } + ] + } + }, + "$sC": "$eSk" + }, + "ItemSlotSkin3": { + "$path": "resource/eui_skins/web/common/ItemSlotSkin3.exml", + "$bs": { "height": 121, "$eleC": ["bg", "frame", "icon", "_Image1", "txtName"] }, + "bg": { "horizontalCenter": 0, "source": "", "top": 0, "$t": "$eI" }, + "frame": { "source": "quality_1", "x": 29, "y": 17, "$t": "$eI" }, + "icon": { "horizontalCenter": 0, "source": "11000", "y": 18, "$t": "$eI" }, + "_Image1": { "source": "", "x": 0, "y": 96, "$t": "$eI" }, + "txtName": { "horizontalCenter": 0, "size": 20, "text": "物品名称", "textAlign": "center", "textColor": 14606562, "verticalCenter": 45, "$t": "$eL" }, + "$sP": ["bg", "frame", "icon", "txtName"], + "$sC": "$eSk" + }, + "GetPropsViewSkin": { + "$path": "resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml", + "$bs": { "height": 391, "width": 372, "$eleC": ["dragDropUI", "_Label1", "itemSlot", "_Image1", "_Image2", "scrollerDesc", "scroller"] }, + "dragDropUI": { "anchorOffsetY": 0, "currentState": "default", "height": 388.6, "scaleX": 1, "scaleY": 1, "skinName": "UIViewFrameSkin2", "x": 0, "y": 0.01, "$t": "app.UIViewFrame" }, + "_Label1": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 1, "text": "可通过以下途径获得", "textColor": 10655599, "width": 172, "x": 108.5, "y": 269.82, "$t": "$eL" }, + "itemSlot": { "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin3", "x": 54, "y": 75, "$t": "app.ItemSlot" }, + "_Image1": { "source": "", "x": 84, "y": 272, "$t": "$eI" }, + "_Image2": { "source": "", "x": 276, "y": 272, "$t": "$eI" }, + "scrollerDesc": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 77, "width": 369, "x": -1, "y": 190, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "anchorOffsetY": 0, "height": 71, "$t": "$eG", "$eleC": ["txtDesc"] }, + "txtDesc": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 5, + "scaleX": 1, + "scaleY": 1, + "size": 18, + "stroke": 1, + "text": "提升宝物四象系统的必备材料四象系统的必备材料象系统的必备材料四象系统的必备材料材料象系统的必备材料四象系统的必备材料", + "textAlign": "center", + "textColor": 3642619, + "width": 242, + "x": 67, + "y": 7.67, + "$t": "$eL" + }, + "scroller": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 399.58, + "scaleX": 1, + "scaleY": 1, + "scrollPolicyH": "off", + "scrollPolicyV": "off", + "touchChildren": true, + "touchEnabled": false, + "width": 357, + "x": 7.48, + "y": 293, + "$t": "$eS", + "viewport": "list" + }, + "list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 51.82, "width": 145.24, "y": -10, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "$sP": ["dragDropUI", "itemSlot", "txtDesc", "scrollerDesc", "list", "scroller"], + "$sC": "$eSk" + }, + "HSlider1Skin": { + "$path": "resource/eui_skins/web/common/HSlider1Skin.exml", + "$bs": { "minHeight": 8, "minWidth": 20, "$eleC": ["track", "thumb"] }, + "track": { "height": 15, "scale9Grid": "9,6,9,3", "source": "com_latiao_bg", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "source": "com_latiao_yuan", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["track", "thumb"], + "$sC": "$eSk" + }, + "ImageBaseSkin": { + "$path": "resource/eui_skins/web/common/ImageBaseSkin.exml", + "$bs": { "height": 40, "width": 40, "$eleC": ["image", "typeImg", "cdLab", "rect"] }, + "image": { "bottom": 0, "left": 0, "right": 0, "source": "buff_1", "top": 0, "$t": "$eI" }, + "typeImg": { "source": "buff_zz1", "touchEnabled": false, "$t": "$eI" }, + "cdLab": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "60", "textColor": 13550274, "verticalCenter": 0, "$t": "$eL" }, + "rect": { "bottom": 0, "fillAlpha": 0.4, "height": 40, "touchEnabled": false, "width": 40, "$t": "$eR" }, + "$sP": ["image", "typeImg", "cdLab", "rect"], + "$sC": "$eSk" + }, + "ItemBaseSkin2": { + "$path": "resource/eui_skins/web/common/ItemBaseSkin2.exml", + "$bs": { "height": 60, "width": 60, "$eleC": ["bg", "equipBg", "icon", "count", "bestEquip", "starLabel"] }, + "bg": { "horizontalCenter": 0, "source": "Godturn_iconk", "top": -14, "visible": false, "$t": "$eI" }, + "equipBg": { "visible": false, "$t": "$eI" }, + "icon": { "horizontalCenter": 0, "source": "11000", "verticalCenter": 0, "$t": "$eI" }, + "count": { "bottom": 1, "right": 1, "size": 15, "text": "10", "$t": "$eL" }, + "bestEquip": { "horizontalCenter": 0, "source": "quality_jipin", "touchEnabled": false, "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "starLabel": { "bottom": 5, "font": "num_8_fnt", "letterSpacing": -3, "right": 5, "text": "", "touchEnabled": false, "visible": false, "$t": "$eBL" }, + "$sP": ["bg", "equipBg", "icon", "count", "bestEquip", "starLabel"], + "$sC": "$eSk" + }, + "ItemSelectBaseSkin": { + "$path": "resource/eui_skins/web/common/ItemSelectBaseSkin.exml", + "$bs": { "height": 71, "width": 71, "$eleC": ["itemData", "isSelect"] }, + "itemData": { "bottom": 0, "left": 0, "skinName": "ItemBaseSkin", "$t": "app.ItemBase" }, + "isSelect": { "right": 0, "source": "apay_gou", "top": 0, "$t": "$eI" }, + "$sP": ["itemData", "isSelect"], + "$sC": "$eSk" + }, + "ItemSlotSkin2": { + "$path": "resource/eui_skins/web/common/ItemSlotSkin2.exml", + "$bs": { "height": 84, "width": 80, "$eleC": ["bg", "icon", "sign", "count", "txtName", "effect", "_RedDotControl1", "redDot"] }, + "bg": { "source": "quality_0", "x": 10, "y": 4, "$t": "$eI" }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -0.5, "source": "", "verticalCenter": -9.165, "$t": "$eI" }, + "sign": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -7, "source": "sz_chuandai", "verticalCenter": -12.165, "visible": false, "$t": "$eI" }, + "count": { "height": 20, "size": 16, "text": "", "textAlign": "right", "verticalAlign": "middle", "visible": false, "width": 60, "x": 10, "y": 46, "$t": "$eL" }, + "txtName": { "height": 20, "size": 14, "stroke": 1, "text": "蓝色欧罗巴", "textAlign": "center", "textColor": 14724725, "verticalAlign": "middle", "width": 80, "x": 0, "y": 64.67, "$t": "$eL" }, + "effect": { "source": "sz_xuanzhong", "visible": false, "x": 5.68, "y": -0.33, "$t": "$eI" }, + "_RedDotControl1": { "height": 20, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 20, "x": 57, "y": 2, "$t": "app.RedDotControl" }, + "redDot": { "source": "common_hongdian", "visible": false, "x": 57, "y": 2, "$t": "$eI" }, + "$sP": ["bg", "icon", "sign", "count", "txtName", "effect", "redDot"], + "$sC": "$eSk" + }, + "MainBtn2Skin": { + "$path": "resource/eui_skins/web/common/MainBtn2Skin.exml", + "$bs": { "height": 78, "width": 78, "$eleC": ["iconDisplay", "redImage"] }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": 0, "top": 0, "touchEnabled": false, "visible": false, "width": 20, "$t": "$eI" }, + "$sP": ["iconDisplay", "redImage"], + "$s": { + "up": { "$ssP": [{ "target": "redImage", "name": "source", "value": "common_hongdian" }] }, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "iconDisplay", "name": "alpha", "value": 0.5 }] } + }, + "$sC": "$eSk" + }, + "MainBtn3Skin": { + "$path": "resource/eui_skins/web/common/MainBtn3Skin.exml", + "$bs": { "height": 47, "width": 47, "$eleC": ["_Group1", "iconDisplay", "imageLabel", "redImage"] }, + "_Group1": { "percentHeight": 100, "percentWidth": 100, "$t": "$eG" }, + "iconDisplay": { "horizontalCenter": 0, "source": "m_icon_juese", "verticalCenter": 0, "$t": "$eI" }, + "imageLabel": { "horizontalCenter": 0, "source": "icont_juese", "touchEnabled": false, "verticalCenter": 20, "$t": "$eI" }, + "redImage": { "height": 20, "horizontalCenter": 14.5, "source": "common_hongdian", "touchEnabled": false, "verticalCenter": -19.5, "visible": false, "width": 20, "$t": "$eI" }, + "$sP": ["iconDisplay", "imageLabel", "redImage"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtn4Skin": { + "$path": "resource/eui_skins/web/common/MainBtn4Skin.exml", + "$bs": { "height": 42, "width": 42, "$eleC": ["iconDisplay", "redImage"] }, + "iconDisplay": { "horizontalCenter": 0, "source": "m_icon_shangcheng", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": -9, "source": "common_hongdian", "top": -7, "touchEnabled": false, "visible": false, "width": 20, "$t": "$eI" }, + "$sP": ["iconDisplay", "redImage"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtn5Skin": { + "$path": "resource/eui_skins/web/common/MainBtn5Skin.exml", + "$bs": { "height": 22, "width": 49, "$eleC": ["_Image1", "iconDisplay", "redImage"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_btn_main1", "verticalCenter": 0, "x": 10, "y": 10, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "m_btn_map", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 12, "right": -3, "source": "common_hongdian", "top": -4, "touchEnabled": false, "visible": false, "width": 12, "$t": "$eI" }, + "$sP": ["iconDisplay", "redImage"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtn6Skin": { + "$path": "resource/eui_skins/web/common/MainBtn6Skin.exml", + "$bs": { "height": 22, "width": 49, "$eleC": ["_Image1", "iconDisplay", "redImage"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_btn_main2", "verticalCenter": 0, "x": 10, "y": 10, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "m_btn_map", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": -9, "source": "common_hongdian", "top": -7, "touchEnabled": false, "visible": false, "width": 20, "$t": "$eI" }, + "$sP": ["iconDisplay", "redImage"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtn7Skin": { + "$path": "resource/eui_skins/web/common/MainBtn7Skin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["_Image1", "iconDisplay", "redImage"] }, + "_Image1": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "x": 10, "y": 10, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "icon_haoyou", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": 1, "source": "common_hongdian", "top": 3, "touchEnabled": false, "visible": false, "width": 20, "$t": "$eI" }, + "$sP": ["iconDisplay", "redImage"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtn8Skin": { + "$path": "resource/eui_skins/web/common/MainBtn8Skin.exml", + "$bs": { "height": 51, "width": 51, "$eleC": ["iconDisplay", "redImage", "txtCount"] }, + "iconDisplay": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": 0, "source": "common_hongdian", "top": 0, "touchEnabled": false, "width": 20, "$t": "$eI" }, + "txtCount": { "right": 4, "size": 18, "stroke": 2, "text": "", "textAlign": "right", "textColor": 2682369, "touchEnabled": false, "y": 5, "$t": "$eL" }, + "$sP": ["iconDisplay", "redImage", "txtCount"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBtnSkin": { + "$path": "resource/eui_skins/web/common/MainBtnSkin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["iconDisplay", "redImage", "txtCount", "ingGrp"] }, + "iconDisplay": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "height": 20, "right": 0, "source": "common_hongdian", "top": 0, "touchEnabled": false, "width": 20, "$t": "$eI" }, + "txtCount": { "right": 4, "size": 18, "stroke": 2, "text": "", "textAlign": "right", "textColor": 2682369, "touchEnabled": false, "y": 5, "$t": "$eL" }, + "ingGrp": { "horizontalCenter": 2, "visible": false, "y": 72, "$t": "$eG", "$eleC": ["_Image1", "timeLab"] }, + "_Image1": { "source": "icon_shachengdjs", "$t": "$eI" }, + "timeLab": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "进行中", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["iconDisplay", "redImage", "txtCount", "timeLab", "ingGrp"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MonsterTalkSkin": { + "$path": "resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml", + "$bs": { "height": 76, "width": 325, "$eleC": ["_Group1"] }, + "_Group1": { "anchorOffsetX": 160, "anchorOffsetY": 170, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "txtDesc"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 64, "scale9Grid": "6,9,3,2", "source": "liaotianpaopao", "width": 160, "x": 1, "y": 1, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 64, "scale9Grid": "6,9,3,2", "scaleX": -1, "source": "liaotianpaopao", "width": 160, "x": 320.6, "y": 1, "$t": "$eI" }, + "txtDesc": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 48, + "lineSpacing": 5, + "size": 18, + "stroke": 2, + "text": "鼠标左键走一格、右键跑两格,360/搜狗/QQ浏览器请关闭“鼠标手势”功能", + "textColor": 16777215, + "width": 311, + "wordWrap": true, + "x": 8, + "y": 10, + "$t": "$eL" + }, + "$sP": ["txtDesc"], + "$sC": "$eSk" + }, + "RedDotSkin": { "$path": "resource/eui_skins/web/common/RedDotSkin.exml", "$bs": { "$eleC": ["img"] }, "img": { "source": "common_hongdian", "$t": "$eI" }, "$sP": ["img"], "$sC": "$eSk" }, + "RuleButton": { + "$path": "resource/eui_skins/web/common/RuleButton.exml", + "$bs": { "height": 32, "width": 32, "$eleC": ["buttonIcon"] }, + "buttonIcon": { "horizontalCenter": 0, "source": "rule_btn", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["buttonIcon"], + "$s": { + "up": { "$ssP": [{ "target": "buttonIcon", "name": "source", "value": "rule_btn" }] }, + "down": { + "$ssP": [ + { "target": "buttonIcon", "name": "source", "value": "rule_btn" }, + { "target": "buttonIcon", "name": "scaleX", "value": 0.95 }, + { "target": "buttonIcon", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "buttonIcon", "name": "source", "value": "rule_btn" }] } + }, + "$sC": "$eSk" + }, + "ShortcutKeyBtnSkin": { + "$path": "resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml", + "$bs": { "height": 59, "width": 60, "$eleC": ["effect", "_Image1", "icon", "labelDisplay"] }, + "effect": { "horizontalCenter": -1, "smoothing": false, "source": "anjian_guang", "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "smoothing": false, "source": "anjian_bg", "verticalCenter": 0, "$t": "$eI" }, + "icon": { "height": 59, "horizontalCenter": 0, "smoothing": false, "source": "anjian_sz", "verticalCenter": 0, "width": 56, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": -2, "size": 18, "text": "", "textColor": 10506821, "touchEnabled": false, "verticalCenter": -8, "$t": "$eL" }, + "$sP": ["effect", "icon", "labelDisplay"], + "$sC": "$eSk" + }, + "UIViewBgWinSkin": { + "$path": "resource/eui_skins/web/common/UIViewBgWinSkin.exml", + "$bs": { "height": 641, "width": 428, "$eleC": ["_Group1"] }, + "_Group1": { "height": 641, "width": 428, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "role_k_png", "x": 0, "y": 0, "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "", "top": 39, "touchEnabled": false, "y": 39, "$t": "$eL" }, + "btn_close": { "label": "", "width": 60, "x": -41.34, "y": 62.97, "$t": "$eB", "skinName": "UIViewBgWinSkin$Skin144" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "UIViewBgWinSkin$Skin144": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "VersionUpdateSkin": { + "$path": "resource/eui_skins/web/common/VersionUpdateSkin.exml", + "$bs": { "height": 346, "width": 473, "$eleC": ["_Group1"] }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "strLab", "closeBtn"] }, + "_Image1": { "source": "chat_bg_tc1_2_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "提 示", "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "strLab": { + "height": 180, + "horizontalCenter": -1, + "lineSpacing": 7, + "size": 21, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": -12, + "width": 394, + "$t": "$eL" + }, + "closeBtn": { "height": 44, "label": "确 定", "width": 109, "x": 181, "y": 286, "$t": "$eB", "skinName": "VersionUpdateSkin$Skin145" }, + "$sP": ["txt_name", "strLab", "closeBtn"], + "$sC": "$eSk" + }, + "VersionUpdateSkin$Skin145": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "ViewBgWin3Skin": { + "$path": "resource/eui_skins/web/common/ViewBgWin3Skin.exml", + "$bs": { "height": 326, "width": 641, "$eleC": ["_Group1"] }, + "_Group1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "20,19,601,290", "scaleX": 1, "scaleY": 1, "source": "bg_newNpc_png", "top": 0, "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "visible": false, "$t": "$eL" }, + "btn_close": { "height": 60, "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 622, "y": -10, "$t": "$eB", "skinName": "ViewBgWin3Skin$Skin146" }, + "$sP": ["txt_name", "btn_close"], + "$sC": "$eSk" + }, + "ViewBgWin3Skin$Skin146": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "ViewBgWinSkin": { + "$path": "resource/eui_skins/web/common/ViewBgWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["_Group1"] }, + "_Group1": { "$t": "$eG", "$eleC": ["_Image1", "txt_name", "btn_close"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_3_png", "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "width": 60, "y": -7.67, "$t": "$eB", "skinName": "ViewBgWinSkin$Skin147" }, + "$sP": ["txt_name", "btn_close"], + "$s": { + "default": { + "$ssP": [ + { "target": "_Image1", "name": "scale9Grid", "value": "74,80,634,486" }, + { "target": "_Image1", "name": "percentWidth", "value": 100 }, + { "target": "_Image1", "name": "percentHeight", "value": 100 }, + { "target": "btn_close", "name": "top", "value": -7 }, + { "target": "btn_close", "name": "right", "value": -42 }, + { "target": "_Group1", "name": "percentWidth", "value": 100 }, + { "target": "_Group1", "name": "percentHeight", "value": 100 } + ] + }, + "default2": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bag_bg_png" }, + { "target": "txt_name", "name": "visible", "value": false }, + { "target": "btn_close", "name": "x", "value": 519.18 }, + { "target": "_Group1", "name": "width", "value": 536 }, + { "target": "_Group1", "name": "height", "value": 529 }, + { "target": "", "name": "width", "value": 536 }, + { "target": "", "name": "height", "value": 529 } + ] + }, + "default3": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bg_newNpc_png" }, + { "target": "_Image1", "name": "left", "value": 0 }, + { "target": "_Image1", "name": "right", "value": 0 }, + { "target": "_Image1", "name": "top", "value": 0 }, + { "target": "_Image1", "name": "bottom", "value": 0 }, + { "target": "_Image1", "name": "scale9Grid", "value": "20,19,601,290" }, + { "target": "txt_name", "name": "visible", "value": false }, + { "target": "btn_close", "name": "x", "value": 623.79 }, + { "target": "btn_close", "name": "y", "value": -9.01 }, + { "target": "_Group1", "name": "left", "value": 0 }, + { "target": "_Group1", "name": "right", "value": 0 }, + { "target": "_Group1", "name": "top", "value": 0 }, + { "target": "_Group1", "name": "bottom", "value": 0 }, + { "target": "", "name": "width", "value": 641 }, + { "target": "", "name": "height", "value": 326 } + ] + }, + "default4": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "task_k1_png" }, + { "target": "_Image1", "name": "scale9Grid", "value": "169,71,92,364" }, + { "target": "_Image1", "name": "top", "value": 0 }, + { "target": "_Image1", "name": "right", "value": 0 }, + { "target": "_Image1", "name": "left", "value": 0 }, + { "target": "_Image1", "name": "bottom", "value": 0 }, + { "target": "btn_close", "name": "x", "value": 408 }, + { "target": "btn_close", "name": "y", "value": -7 }, + { "target": "_Group1", "name": "left", "value": 0 }, + { "target": "_Group1", "name": "right", "value": 0 }, + { "target": "_Group1", "name": "top", "value": 0 }, + { "target": "_Group1", "name": "bottom", "value": 0 }, + { "target": "", "name": "width", "value": 431 }, + { "target": "", "name": "height", "value": 478 } + ] + }, + "default5": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "chat_bg_tc1_2_png" }, + { "target": "btn_close", "name": "x", "value": 455 }, + { "target": "btn_close", "name": "y", "value": -7 }, + { "target": "_Group1", "name": "width", "value": 473 }, + { "target": "_Group1", "name": "height", "value": 346 }, + { "target": "", "name": "width", "value": 473 }, + { "target": "", "name": "height", "value": 346 } + ] + }, + "default6": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bg_tipstc2_png" }, + { "target": "btn_close", "name": "x", "value": 407 }, + { "target": "btn_close", "name": "y", "value": -7 }, + { "target": "_Group1", "name": "width", "value": 426 }, + { "target": "_Group1", "name": "height", "value": 301 }, + { "target": "", "name": "width", "value": 426 }, + { "target": "", "name": "height", "value": 300 } + ] + }, + "default7": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_bg_kuang_5_png" }, + { "target": "btn_close", "name": "right", "value": -42 }, + { "target": "btn_close", "name": "top", "value": -7 } + ] + } + }, + "$sC": "$eSk" + }, + "ViewBgWinSkin$Skin147": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "YYPlatformFuLiWinSkin": { + "$path": "resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["iconDisplay", "redImage", "iconGrp"] }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "redImage": { "right": 0, "source": "common_hongdian", "top": 0, "$t": "$eI" }, + "iconGrp": { "height": 90, "horizontalCenter": 1, "touchChildren": true, "touchEnabled": false, "verticalCenter": 84, "visible": false, "$t": "$eG", "$eleC": ["_Group1", "arrGrp"] }, + "_Group1": { "bottom": 0, "left": 0, "minWidth": 90, "right": 0, "top": 0, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "percentHeight": 100, "left": -0.5, "scale9Grid": "13,21,5,4", "source": "icon_ptfl_bg", "touchEnabled": false, "percentWidth": 50, "y": -0.14, "$t": "$eI" }, + "_Image2": { "percentHeight": 100, "right": 0, "scale9Grid": "13,21,5,4", "scaleX": -1, "source": "icon_ptfl_bg", "touchEnabled": false, "percentWidth": 50, "$t": "$eI" }, + "arrGrp": { "left": 10, "right": 10, "touchEnabled": false, "verticalCenter": 6, "$t": "$eG", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 4, "paddingLeft": 1, "$t": "$eHL" }, + "$sP": ["iconDisplay", "redImage", "arrGrp", "iconGrp"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + "ChangeNameViewSkin": { + "$path": "resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml", + "$bs": { "height": 340, "width": 478, "$eleC": ["closeRect", "dragDropUI", "_Image1", "_Image2", "_Label1", "textInput", "sureBtn"] }, + "closeRect": { "bottom": 0, "fillAlpha": 0.2, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "dragDropUI": { "horizontalCenter": 0, "skinName": "ViewBgWin5Skin", "verticalCenter": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "horizontalCenter": 0, "scale9Grid": "9,9,1,2", "source": "chat_bg_bg1_png", "verticalCenter": -10, "visible": false, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 38, "horizontalCenter": 0, "scale9Grid": "4,4,28,28", "source": "chat_bg_bg2", "verticalCenter": -1, "width": 388, "$t": "$eI" }, + "_Label1": { + "bold": true, + "horizontalCenter": 0, + "size": 24, + "text": "请输入新的名字", + "textAlign": "center", + "textColor": 15713308, + "verticalAlign": "middle", + "verticalCenter": -58.5, + "$t": "$eL" + }, + "textInput": { "horizontalCenter": 0, "prompt": "单击此处输入名字", "verticalCenter": 0, "width": 315, "$t": "$eTI" }, + "sureBtn": { "height": 44, "horizontalCenter": 0.5, "label": "确认修改", "verticalCenter": 133.5, "width": 109, "$t": "$eB", "skinName": "ChangeNameViewSkin$Skin148" }, + "$sP": ["closeRect", "dragDropUI", "textInput", "sureBtn"], + "$sC": "$eSk" + }, + "ChangeNameViewSkin$Skin148": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CreateRole2Skin": { + "$path": "resource/eui_skins/web/CreateRole/CreateRole2Skin.exml", + "$bs": { "$eleC": ["_Rect1", "group", "closeButton"] }, + "_Rect1": { "fillAlpha": 1, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "group": { + "height": 840, + "horizontalCenter": 0, + "verticalCenter": 0, + "width": 1344, + "$t": "$eG", + "$eleC": ["bgImg", "timeLab", "roleGrp", "rect", "_Group1", "_Group2", "_Group3", "createMcGrp", "diceBtn", "nameInput"] + }, + "bgImg": { "horizontalCenter": 0, "source": "login_bg2_jpg", "verticalCenter": 0, "$t": "$eI" }, + "timeLab": { "size": 22, "text": "", "textAlign": "center", "textColor": 2682369, "width": 300, "x": 530, "y": 677, "$t": "$eL" }, + "roleGrp": { "scaleX": 0.9, "scaleY": 0.9, "x": 482, "y": 583.33, "$t": "$eG" }, + "rect": { "height": 70, "visible": false, "width": 60, "x": 447, "y": 414, "$t": "$eR" }, + "_Group1": { "x": 769, "y": 360, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["job1", "job2", "job3"] }, + "_HorizontalLayout1": { "gap": 4, "$t": "$eHL" }, + "job1": { "icon": "login_zs_2", "label": "战士", "skinName": "Btn23Skin", "$t": "$eB" }, + "job2": { "icon": "login_fs_2", "label": "法师", "skinName": "Btn23Skin", "x": 135.52, "y": -1, "$t": "$eB" }, + "job3": { "icon": "login_ds_2", "label": "道士", "skinName": "Btn23Skin", "x": 283.49, "y": -1, "$t": "$eB" }, + "_Group2": { "x": 802, "y": 501, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["boy", "girl"] }, + "_HorizontalLayout2": { "gap": 8, "$t": "$eHL" }, + "boy": { "icon": "login_nan_2", "label": "男", "skinName": "Btn23Skin", "x": 2, "$t": "$eB" }, + "girl": { "icon": "login_nv_2", "label": "女", "skinName": "Btn23Skin", "x": 149, "$t": "$eB" }, + "_Group3": { "height": 90, "width": 208, "x": 577, "y": 697.67, "$t": "$eG", "$eleC": ["createBtn"] }, + "createBtn": { "icon": "login_btn", "label": "按钮", "scaleX": 0.7, "scaleY": 0.7, "skinName": "Btn0Skin", "x": 0, "$t": "$eB" }, + "createMcGrp": { "touchChildren": false, "touchEnabled": false, "touchThrough": false, "x": 680, "y": 744, "$t": "$eG" }, + "diceBtn": { "icon": "login_suiji", "label": "按钮", "scaleX": 1.2, "scaleY": 1.2, "skinName": "Btn0Skin", "x": 974, "y": 265, "$t": "$eB" }, + "nameInput": { "size": 24, "text": "", "textAlign": "center", "verticalAlign": "middle", "width": 172, "x": 793, "y": 272, "$t": "$eET" }, + "closeButton": { "label": "Button", "right": 10, "scaleX": 0.7, "scaleY": 0.7, "top": 10, "visible": false, "$t": "$eB", "skinName": "CreateRole2Skin$Skin149" }, + "$sP": ["bgImg", "timeLab", "roleGrp", "rect", "job1", "job2", "job3", "boy", "girl", "createBtn", "createMcGrp", "diceBtn", "nameInput", "group", "closeButton"], + "$sC": "$eSk" + }, + "CreateRole2Skin$Skin149": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "create_btn_fanhui", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 1 }, + { "target": "_Image1", "name": "scaleY", "value": 1 } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "create_btn_fanhui" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "create_btn_fanhui" }] } + }, + "$sC": "$eSk" + }, + "SwitchPlayerItemSkin": { + "$path": "resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml", + "$bs": { "height": 110, "$eleC": ["_Image1", "selectImg", "_Image2", "hairImage", "nameLabel", "levelLabel", "guildLabel"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 110, "scale9Grid": "55,57,334,87", "source": "chat_bg_bg1_png", "width": 347, "x": 0, "y": 0, "$t": "$eI" }, + "selectImg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 113, + "scale9Grid": "6,6,38,36", + "source": "common_liebiaoxuanzhong", + "visible": false, + "width": 349, + "x": -1, + "y": -2, + "$t": "$eI" + }, + "_Image2": { "source": "name_touxiangk", "x": 10, "y": 12, "$t": "$eI" }, + "hairImage": { "source": "name_1_0", "x": 15, "y": 18, "$t": "$eI" }, + "nameLabel": { "size": 20, "text": "", "textColor": 13571553, "x": 120, "y": 20, "$t": "$eL" }, + "levelLabel": { "size": 18, "text": "", "textColor": 12362628, "x": 120, "y": 47, "$t": "$eL" }, + "guildLabel": { "size": 18, "text": "", "textColor": 12362628, "x": 120, "y": 72, "$t": "$eL" }, + "$sP": ["selectImg", "hairImage", "nameLabel", "levelLabel", "guildLabel"], + "$sC": "$eSk" + }, + "SwitchPlayerSkin": { + "$path": "resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml", + "$bs": { "height": 478, "width": 431, "$eleC": ["dragDropUI", "playerScroller", "_Group1", "_RuleTipsButton1"] }, + "dragDropUI": { "skinName": "ViewBgWin4Skin", "$t": "app.UIViewFrame" }, + "playerScroller": { "anchorOffsetY": 0, "height": 339, "width": 360, "x": 36, "y": 60, "$t": "$eS", "viewport": "list" }, + "list": { "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 5, "paddingLeft": 6, "paddingTop": 0, "$t": "$eVL" }, + "_Group1": { "horizontalCenter": 0.5, "y": 403, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["createBtn", "switchBtn"] }, + "_HorizontalLayout1": { "gap": 40, "$t": "$eHL" }, + "createBtn": { "label": "", "skinName": "Btn9Skin", "$t": "$eB" }, + "switchBtn": { "label": "", "skinName": "Btn9Skin", "$t": "$eB" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "48", "x": 354, "y": 407, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "list", "playerScroller", "createBtn", "switchBtn"], + "$sC": "$eSk" + }, + "CrossServerActViewSkin": { + "$path": "resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml", + "$bs": { "height": 557, "width": 863, "$eleC": ["_Group6"] }, + "_Group6": { "height": 557, "width": 863, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "tabScroller", "_Group5", "enterBtn", "ruleTips", "ruleTips1", "ruleLab", "ruleLab2"] }, + "_Image1": { "height": 557, "scale9Grid": "19,17,1,1", "source": "com_bg_kuang_6_png", "width": 265, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "height": 487.27, "right": -3, "scale9Grid": "19,17,1,1", "source": "com_bg_kuang_6_png", "width": 594, "y": 0, "$t": "$eI" }, + "tabScroller": { "height": 517, "visible": true, "width": 261, "x": 2, "y": 2, "$t": "$eS", "viewport": "tabList" }, + "tabList": { "itemRendererSkinName": "ActivityTabSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -1, "$t": "$eVL" }, + "_Group5": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 484.33, + "touchEnabled": false, + "width": 578, + "x": 276, + "y": 3, + "$t": "$eG", + "$eleC": ["_Group1", "_Group2", "_Group3", "_Image6", "_Group4"] + }, + "_Group1": { "height": 36, "width": 563, "x": 7, "y": 4, "$t": "$eG", "$eleC": ["_Image3", "actTitle"] }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actTitle": { "size": 20, "stroke": 2, "text": "活动入口:", "textColor": 15064527, "x": 10, "y": 9.5, "$t": "$eL" }, + "_Group2": { "height": 36, "width": 563, "x": 7, "y": 43, "$t": "$eG", "$eleC": ["_Image4", "actTime"] }, + "_Image4": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actTime": { "size": 20, "stroke": 2, "text": "活动时间:", "textColor": 15064527, "x": 9.6, "y": 8.3, "$t": "$eL" }, + "_Group3": { "anchorOffsetY": 0, "height": 201.5, "touchEnabled": false, "width": 563, "x": 7, "y": 83.02, "$t": "$eG", "$eleC": ["_Image5", "actDesc", "actPath"] }, + "_Image5": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "actDesc": { + "height": 108, + "lineSpacing": 4, + "size": 20, + "stroke": 2, + "text": "藏宝库的NPC夺宝人偶携带了大量宝物,快和朋友一起去抢夺吧!", + "textColor": 15064527, + "width": 543, + "x": 9.1, + "y": 13.8, + "$t": "$eL" + }, + "actPath": { "lineSpacing": 7, "size": 20, "stroke": 2, "text": "前往路径:", "textColor": 15064527, "width": 535, "x": 9, "y": 132, "$t": "$eL" }, + "_Image6": { "source": "act_hdjj", "x": 15, "y": 292, "$t": "$eI" }, + "_Group4": { "height": 158, "width": 570, "x": 7, "y": 322, "$t": "$eG", "$eleC": ["_Image7", "_Scroller1"] }, + "_Image7": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "_Scroller1": { "height": 134, "width": 530, "x": 25, "y": 13, "$t": "$eS", "viewport": "rewardsList" }, + "rewardsList": { "height": 134, "itemRendererSkinName": "ItemBaseSkin", "width": 530, "x": 25, "y": 13, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "$t": "$eTL" }, + "enterBtn": { "label": "", "skinName": "Btn9Skin", "x": 741, "y": 507, "$t": "$eB" }, + "ruleTips": { "label": "Button", "x": 285, "y": 517, "$t": "app.RuleTipsButton" }, + "ruleTips1": { "label": "Button", "ruleId": "97", "x": 62, "y": 523, "$t": "app.RuleTipsButton" }, + "ruleLab": { "size": 21, "stroke": 2, "text": "跨服说明", "textColor": 2682369, "x": 97, "y": 529, "$t": "$eL" }, + "ruleLab2": { "size": 21, "stroke": 2, "text": "跨服分组", "textColor": 2682369, "x": 634, "y": 517, "$t": "$eL" }, + "$sP": ["tabList", "tabScroller", "actTitle", "actTime", "actDesc", "actPath", "rewardsList", "enterBtn", "ruleTips", "ruleTips1", "ruleLab", "ruleLab2"], + "$sC": "$eSk" + }, + "CrossServerDetailsItemSkin": { + "$path": "resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml", + "$bs": { "width": 666, "$eleC": ["_Group1", "txtGrp"] }, + "_Group1": { "height": 26, "minHeight": 24, "touchChildren": false, "touchEnabled": false, "width": 46, "$t": "$eG", "$eleC": ["_Rect1", "label"] }, + "_Rect1": { "bottom": -1, "fillColor": 16552473, "left": 0, "right": -6, "top": -1, "$t": "$eR" }, + "label": { + "backgroundColor": 16552473, + "horizontalCenter": 3.5, + "scaleX": 0.5, + "scaleY": 0.5, + "size": 36, + "stroke": 3, + "text": "[跨服]", + "textColor": 16776956, + "verticalCenter": 0.5, + "$t": "$eL" + }, + "txtGrp": { "minHeight": 24, "touchEnabled": false, "verticalCenter": 0, "x": 55, "$t": "$eG", "$eleC": ["bgColor", "chatLab"] }, + "bgColor": { "bottom": -2, "fillColor": 15937822, "left": -1, "right": -3, "scaleX": 1, "scaleY": 1, "top": -2, "$t": "$eR" }, + "chatLab": { + "background": false, + "backgroundColor": 472572, + "lineSpacing": 9, + "maxWidth": 1260, + "scaleX": 0.5, + "scaleY": 0.5, + "size": 36, + "stroke": 3, + "text": "", + "textColor": 15064527, + "visible": true, + "x": 0, + "y": 4, + "$t": "$eL" + }, + "$sP": ["label", "bgColor", "chatLab", "txtGrp"], + "$sC": "$eSk" + }, + "CrossServerDetailsSkin": { + "$path": "resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml", + "$bs": { "height": 557, "width": 863, "$eleC": ["_Image1", "msgScroller"] }, + "_Image1": { "horizontalCenter": 0, "source": "kf_xq_bg_png", "verticalCenter": 0, "$t": "$eI" }, + "msgScroller": { "height": 532, "width": 666, "x": 184, "y": 12, "$t": "$eS", "viewport": "msgList" }, + "msgList": { "itemRendererSkinName": "CrossServerDetailsItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 3, "$t": "$eVL" }, + "$sP": ["msgList", "msgScroller"], + "$sC": "$eSk" + }, + "CrossServerTabSkin": { + "$path": "resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml", + "$bs": { "$eleC": ["_Image1", "_Image2", "txtIcon1", "txtIcon2"] }, + "_Image1": { "source": "kf_fanye_bg1", "$t": "$eI" }, + "_Image2": { "source": "kf_fanye_bg2", "$t": "$eI" }, + "txtIcon1": { "horizontalCenter": 3, "source": "kf_fanye_hd1", "verticalCenter": -9, "$t": "$eI" }, + "txtIcon2": { "horizontalCenter": 3, "source": "kf_fanye_hd2", "verticalCenter": -9, "$t": "$eI" }, + "$sP": ["txtIcon1", "txtIcon2"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txtIcon1", "name": "visible", "value": false } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "visible", "value": false }, + { "target": "txtIcon2", "name": "visible", "value": false } + ] + } + }, + "$sC": "$eSk" + }, + "CrossServerWinSkin": { + "$path": "resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml", + "$bs": { "height": 676, "width": 984, "$eleC": ["_Group1"] }, + "_Group1": { "touchEnabled": false, "$t": "$eG", "$eleC": ["dragDropUI", "titleImg", "tabBar", "closeBtn", "redPoint", "infoGrp"] }, + "dragDropUI": { "source": "kf_bg1_png", "$t": "$eI" }, + "titleImg": { "horizontalCenter": 0, "source": "kf_kfzc", "top": 37, "touchEnabled": false, "$t": "$eI" }, + "tabBar": { "height": 494, "itemRendererSkinName": "CrossServerTabSkin", "width": 45, "x": -5, "y": 119, "$t": "$eT", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 894, "y": 30, "$t": "$eB", "skinName": "CrossServerWinSkin$Skin150" }, + "redPoint": { "visible": false, "x": -8, "y": 115.5, "$t": "app.RedDotControl" }, + "infoGrp": { "height": 557, "touchEnabled": false, "width": 863, "x": 59, "y": 90, "$t": "$eG" }, + "$sP": ["dragDropUI", "titleImg", "tabBar", "closeBtn", "redPoint", "infoGrp"], + "$sC": "$eSk" + }, + "CrossServerWinSkin$Skin150": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "CrossServerRankListItemSkin": { + "$path": "resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml", + "$bs": { "height": 45, "width": 524, "$eleC": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild"] }, + "bg": { "anchorOffsetX": 0, "height": 45, "scale9Grid": "251,19,57,15", "smoothing": false, "source": "rank_bg2", "width": 524, "x": 0, "y": -1, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "scale9Grid": "22,29,2,2", "source": "liebiaoxuanzhong", "width": 524, "x": 0, "y": -2, "$t": "$eI" }, + "txt_rank": { "size": 18, "stroke": 2, "text": "1", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "width": 50, "x": 6, "y": 14, "$t": "$eL" }, + "rankImg": { "source": "rank_pm1", "x": 15, "y": 5, "$t": "$eI" }, + "txt_name": { "size": 18, "stroke": 2, "text": "STSTST1.玩家名称有七字", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "x": 60, "y": 14, "$t": "$eL" }, + "txt_level": { "size": 18, "stroke": 2, "text": "6转200级", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "x": 290, "y": 14, "$t": "$eL" }, + "txt_guild": { "size": 18, "stroke": 2, "text": "帮派名称有七字", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "x": 380, "y": 14, "$t": "$eL" }, + "$sP": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild"], + "$sC": "$eSk" + }, + "CrossServerRankViewSkin": { + "$path": "resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml", + "$bs": { "height": 557, "width": 863, "$eleC": ["_Group2", "btn_operation"] }, + "_Group2": { "height": 557, "touchEnabled": false, "width": 863, "$t": "$eG", "$eleC": ["_Image1", "modelGroup", "rank_list", "_Group1", "_RuleTipsButton1"] }, + "_Image1": { "source": "kf_phb_bg_png", "$t": "$eI" }, + "modelGroup": { + "bottom": 92, + "height": 525, + "right": 33, + "scaleX": 1.2, + "scaleY": 1.2, + "touchChildren": false, + "touchEnabled": false, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5"] + }, + "_Image2": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image3": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image4": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image5": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "rank_list": { "height": 458, "width": 524, "x": 5, "y": 25, "$t": "$eG", "$eleC": ["_Scroller1", "_List1", "menu_group"] }, + "_Scroller1": { "height": 460, "name": "scroller", "width": 524, "x": 0, "y": 0, "$t": "$eS" }, + "_List1": { "itemRendererSkinName": "CrossServerRankListItemSkin", "name": "list", "y": 2, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "menu_group": { "x": 0, "y": 0, "$t": "$eG" }, + "_Group1": { "height": 90, "width": 572, "x": -17, "y": 469, "$t": "$eG", "$eleC": ["btn_home", "btn_pre", "btn_next", "rank_desc", "rank_guild", "rank_no", "pageLab"] }, + "btn_home": { "label": "首页", "skinName": "Btn9Skin", "visible": false, "x": 352, "y": 7, "$t": "$eB" }, + "btn_pre": { "height": 25, "label": "", "width": 55, "x": 212.36, "y": 9.68, "$t": "$eB", "skinName": "CrossServerRankViewSkin$Skin151" }, + "btn_next": { "height": 25, "label": "", "scaleX": -1, "width": 55, "x": 415, "y": 11, "$t": "$eB", "skinName": "CrossServerRankViewSkin$Skin152" }, + "rank_desc": { "size": 20, "stroke": 2, "text": "我的排名:未上榜", "textColor": 15064527, "x": 81, "y": 55, "$t": "$eL" }, + "rank_guild": { "size": 20, "stroke": 2, "text": "所属行会:金近十三少保", "textColor": 15064527, "x": 327, "y": 55, "$t": "$eL" }, + "rank_no": { "size": 22, "stroke": 2, "text": "暂时没有排名", "textColor": 15064527, "x": 255, "y": -255, "$t": "$eL" }, + "pageLab": { "horizontalCenter": 27.83499999999998, "size": 20, "text": "1/3", "verticalCenter": -22.165, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "19", "x": 16, "y": 514, "$t": "app.RuleTipsButton" }, + "btn_operation": { "bottom": 46, "height": 44, "label": "查 看", "width": 109, "x": 630.66, "$t": "$eB", "skinName": "CrossServerRankViewSkin$Skin153" }, + "$sP": ["modelGroup", "menu_group", "rank_list", "btn_home", "btn_pre", "btn_next", "rank_desc", "rank_guild", "rank_no", "pageLab", "btn_operation"], + "$sC": "$eSk" + }, + "CrossServerRankViewSkin$Skin151": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "growway_jt" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "growway_jt" }] } + }, + "$sC": "$eSk" + }, + "CrossServerRankViewSkin$Skin152": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "growway_jt" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "growway_jt" }] } + }, + "$sC": "$eSk" + }, + "CrossServerRankViewSkin$Skin153": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "CrossServerWorshipItemSkin": { + "$path": "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml", + "$bs": { "height": 280, "width": 280, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 280, + "touchChildren": true, + "touchEnabled": false, + "touchThrough": true, + "width": 280, + "$t": "$eG", + "$eleC": ["_Image1", "modelGroup", "_Image6", "imgTitle", "playEff", "_Image7", "playName", "worship", "count", "check"] + }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "kf_kfmb_bg_png", "top": 0, "$t": "$eI" }, + "modelGroup": { + "bottom": 22, + "height": 525, + "right": 45, + "scaleX": 0.8, + "scaleY": 0.8, + "touchChildren": false, + "touchEnabled": false, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5"] + }, + "_Image2": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image3": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image4": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image5": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "_Image6": { "source": "kf_kfmb_bg1", "x": 15, "y": 43, "$t": "$eI" }, + "imgTitle": { "source": "kf_mb_dynd", "x": 11, "y": 55, "$t": "$eI" }, + "playEff": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 83.5, "x": 145, "y": 219, "$t": "$eG" }, + "_Image7": { "horizontalCenter": 0.5, "source": "Act_mobai_biaotibg", "top": 8, "x": 18, "y": 12, "$t": "$eI" }, + "playName": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "我的的", "textColor": 16742144, "top": 13, "x": 61, "y": 20, "$t": "$eL" }, + "worship": { "bottom": 10, "horizontalCenter": 0, "label": "膜 拜", "skinName": "Btn9Skin", "$t": "$eB" }, + "count": { "bold": true, "bottom": 23, "right": 13, "size": 15, "stroke": 2, "text": "", "textColor": 2682369, "x": 212, "y": 232, "$t": "$eL" }, + "check": { "bottom": 3, "icon": "Act_chakan", "label": "", "left": 15, "skinName": "Btn0Skin", "visible": false, "$t": "$eB" }, + "$sP": ["modelGroup", "imgTitle", "playEff", "playName", "worship", "count", "check"], + "$sC": "$eSk" + }, + "CrossServerWorshipWinSkin": { + "$path": "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml", + "$bs": { "height": 676, "width": 984, "$eleC": ["dragDropUI", "titleImg", "_Group1", "_RuleTipsButton1", "closeBtn"] }, + "dragDropUI": { "source": "kf_bg1_png", "$t": "$eI" }, + "titleImg": { "horizontalCenter": 0, "source": "kf_kfmb", "top": 37, "touchEnabled": false, "$t": "$eI" }, + "_Group1": { + "horizontalCenter": 0, + "touchChildren": true, + "touchEnabled": false, + "touchThrough": true, + "y": 88, + "$t": "$eG", + "$eleC": ["bg", "item0", "item1", "item2", "item3", "item4", "item5"] + }, + "bg": { "source": "worship_bg_jpg", "width": 860, "height": 555, "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "item0": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 2, "y": 0, "$t": "app.CrossServerWorshipItem" }, + "item1": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 289, "y": 0, "$t": "app.CrossServerWorshipItem" }, + "item2": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 576, "y": 0, "$t": "app.CrossServerWorshipItem" }, + "item3": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 2, "y": 283, "$t": "app.CrossServerWorshipItem" }, + "item4": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 289, "y": 283, "$t": "app.CrossServerWorshipItem" }, + "item5": { "skinName": "CrossServerWorshipItemSkin", "touchEnabled": false, "x": 576, "y": 283, "$t": "app.CrossServerWorshipItem" }, + "_RuleTipsButton1": { "label": "Button", "left": 38, "ruleId": "32", "top": 43, "$t": "app.RuleTipsButton" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 894, "y": 30, "$t": "$eB", "skinName": "CrossServerWorshipWinSkin$Skin154" }, + "$sP": ["dragDropUI", "titleImg", "item0", "item1", "item2", "item3", "item4", "item5", "closeBtn"], + "$sC": "$eSk" + }, + "CrossServerWorshipWinSkin$Skin154": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "CrystalIdentifyItemSkin": { + "$path": "resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml", + "$bs": { "height": 270, "width": 427, "$eleC": ["_Image1", "allGrp"] }, + "_Image1": { "source": "Avt_sjjd_bg1_png", "$t": "$eI" }, + "allGrp": { + "height": 270, + "width": 429, + "$t": "$eG", + "$eleC": ["_Image2", "titleName", "_Image3", "_Image4", "itemIcon", "itemCount", "consumeGrp", "surplusNum", "expLabel", "suitBtn", "txt_get", "redPoint"] + }, + "_Image2": { "horizontalCenter": 5.5, "source": "Avt_sjjd_bg2", "top": 6, "x": 78, "y": 6, "$t": "$eI" }, + "titleName": { "horizontalCenter": 5.5, "size": 24, "text": "", "textColor": 14724725, "verticalCenter": -105, "x": 148, "y": 18, "$t": "$eL" }, + "_Image3": { "horizontalCenter": -108, "source": "ach_xunzhangbg", "verticalCenter": 20, "$t": "$eI" }, + "_Image4": { "horizontalCenter": -107.5, "source": "quality_0", "verticalCenter": 18, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": -107.5, "source": "13000", "verticalCenter": 18, "$t": "$eI" }, + "itemCount": { "horizontalCenter": -90.5, "size": 15, "text": "30", "textColor": 15064527, "verticalCenter": 36.5, "$t": "$eL" }, + "consumeGrp": { "height": 41.33, "width": 196, "x": 201, "y": 114.67, "$t": "$eG", "$eleC": ["_Label1", "moneyImg", "moneyNum"] }, + "_Label1": { "size": 21, "stroke": 2, "text": "消耗:", "textColor": 14724725, "x": 8.99, "y": 12.01, "$t": "$eL" }, + "moneyImg": { "height": 36, "source": "13010", "width": 36, "x": 57, "y": 3, "$t": "$eI" }, + "moneyNum": { "left": 91, "size": 19, "text": "", "y": 13, "$t": "$eL" }, + "surplusNum": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "x": 211, "y": 154, "$t": "$eL" }, + "expLabel": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 211, "y": 96, "$t": "$eL" }, + "suitBtn": { "label": "鉴 定", "skinName": "Btn9Skin", "x": 240, "y": 215, "$t": "$eB" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "left", + "textColor": 2682369, + "x": 355, + "y": 235, + "$t": "$eL" + }, + "redPoint": { "height": 20, "visible": false, "width": 20, "x": 337, "y": 211, "$t": "app.RedDotControl" }, + "$sP": ["titleName", "itemIcon", "itemCount", "moneyImg", "moneyNum", "consumeGrp", "surplusNum", "expLabel", "suitBtn", "txt_get", "redPoint", "allGrp"], + "$sC": "$eSk" + }, + "CrystalIdentifyWinSkin": { + "$path": "resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_RuleTipsButton1", "_Group1"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_RuleTipsButton1": { "label": "Button", "left": 31, "ruleId": "31", "top": 14, "$t": "app.RuleTipsButton" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 31, "horizontalCenter": -1.5, "top": 63, "width": 853, "$t": "$eG", "$eleC": ["playList"] }, + "playList": { "bottom": 0, "horizontalCenter": 1, "itemRendererSkinName": "CrystalIdentifyItemSkin", "top": 0, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "paddingRight": 0, "requestedColumnCount": 2, "requestedRowCount": 2, "verticalGap": 4, "$t": "$eTL" }, + "$sP": ["dragDropUI", "playList"], + "$sC": "$eSk" + }, + "CumulativeOnlineItemSkin": { + "$path": "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml", + "$bs": { "height": 300, "width": 140, "$eleC": ["descGrp", "ItemData", "effGrp", "receiveImg", "txtTimer", "imgBar", "getBtn", "redPoint"] }, + "descGrp": { "horizontalCenter": 0, "y": 12, "$t": "$eG", "$eleC": ["_Image1", "txtDesc"] }, + "_Image1": { "source": "lj_tt1", "$t": "$eI" }, + "txtDesc": { "horizontalCenter": 0, "size": 15, "stroke": 1, "text": "在线10小时", "textAlign": "center", "textColor": 15655172, "verticalCenter": 0, "width": 100, "$t": "$eL" }, + "ItemData": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "y": 50, "$t": "app.ItemBase" }, + "effGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "y": 80, "$t": "$eG" }, + "receiveImg": { "horizontalCenter": 0.5, "source": "apay_yilingqu", "touchEnabled": false, "y": 45, "$t": "$eI" }, + "txtTimer": { "horizontalCenter": 1, "size": 15, "stroke": 1, "text": "在线10小时", "textAlign": "center", "textColor": 2682369, "width": 100, "y": 130, "$t": "$eL" }, + "imgBar": { "horizontalCenter": 1, "source": "lj_jdt3", "y": 195, "$t": "$eI" }, + "getBtn": { "horizontalCenter": 0, "label": "领取奖励", "scaleX": 0.9, "scaleY": 0.9, "skinName": "Btn9Skin", "y": 255, "$t": "$eB" }, + "redPoint": { "height": 20, "horizontalCenter": 46, "width": 20, "y": 248, "$t": "app.RedDotControl" }, + "$sP": ["txtDesc", "descGrp", "ItemData", "effGrp", "receiveImg", "txtTimer", "imgBar", "getBtn", "redPoint"], + "$sC": "$eSk" + }, + "CumulativeOnlineItemSkin2": { + "$path": "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml", + "$bs": { "$eleC": ["_Image1", "ItemData", "effGrp", "receiveImg", "getBtn", "redPoint"] }, + "_Image1": { "source": "lj_frame", "$t": "$eI" }, + "ItemData": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "y": 90, "$t": "app.ItemBase" }, + "effGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "y": 120, "$t": "$eG" }, + "receiveImg": { "horizontalCenter": 0, "source": "apay_yilingqu", "touchEnabled": false, "y": 86, "$t": "$eI" }, + "getBtn": { "horizontalCenter": -0.5, "label": "领取奖励", "scaleX": 0.9, "scaleY": 0.9, "skinName": "Btn9Skin", "y": 170, "$t": "$eB" }, + "redPoint": { "height": 20, "horizontalCenter": 46.5, "width": 20, "y": 163, "$t": "app.RedDotControl" }, + "$sP": ["ItemData", "effGrp", "receiveImg", "getBtn", "redPoint"], + "$sC": "$eSk" + }, + "CumulativeOnlineViewSkin": { + "$path": "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "titleImg", "closeBtn", "_Group2", "_Group5"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "lj_bg1_png", "y": 110, "$t": "$eI" }, + "titleImg": { "horizontalCenter": 5, "source": "lj_title", "top": 55, "touchEnabled": false, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "CumulativeOnlineViewSkin$Skin155" }, + "_Group2": { "left": 80, "right": 80, "y": 110, "$t": "$eG", "$eleC": ["_Image2", "_Group1"] }, + "_Image2": { "horizontalCenter": 0, "source": "lj_xc", "y": 40, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 0.5, "y": 120, "$t": "$eG", "$eleC": ["_Image3", "timeLab"] }, + "_Image3": { "source": "lj_bg3", "$t": "$eI" }, + "timeLab": { "horizontalCenter": 0, "size": 18, "stroke": 1, "text": "累计在线时间:00:00:00", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "_Group5": { "left": 80, "right": 80, "y": 320, "$t": "$eG", "$eleC": ["_Image4", "itemScroller", "list2", "leftBtn", "rightBtn"] }, + "_Image4": { "source": "lj_bg2", "$t": "$eI" }, + "itemScroller": { "height": 300, "width": 620, "x": 45, "y": 0, "$t": "$eS", "viewport": "_Group4" }, + "_Group4": { "$t": "$eG", "$eleC": ["imgArrow", "_Group3", "list"] }, + "imgArrow": { "anchorOffsetX": 27, "source": "lj_arrow", "x": 280, "y": 60, "$t": "$eI" }, + "_Group3": { "y": 200, "$t": "$eG", "$eleC": ["barMask", "barBg", "bar"] }, + "barMask": { "height": 22, "width": 1400, "$t": "$eR" }, + "barBg": { "scale9Grid": "84,2,509,18", "source": "lj_jdt1", "width": 1400, "$t": "$eI" }, + "bar": { "scale9Grid": "84,1,504,10", "source": "lj_jdt2", "verticalCenter": -1, "width": 1396, "x": 2, "$t": "$eI" }, + "list": { "itemRendererSkinName": "CumulativeOnlineItemSkin", "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 0, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5", "_Object6", "_Object7", "_Object8", "_Object9", "_Object10"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "$t": "Object" }, + "_Object3": { "$t": "Object" }, + "_Object4": { "$t": "Object" }, + "_Object5": { "$t": "Object" }, + "_Object6": { "$t": "Object" }, + "_Object7": { "$t": "Object" }, + "_Object8": { "$t": "Object" }, + "_Object9": { "$t": "Object" }, + "_Object10": { "$t": "Object" }, + "list2": { "itemRendererSkinName": "CumulativeOnlineItemSkin2", "x": 685, "y": -40, "$t": "$eLs", "layout": "_HorizontalLayout2", "dataProvider": "_ArrayCollection2" }, + "_HorizontalLayout2": { "gap": 0, "$t": "$eHL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object11"] }, + "_Object11": { "$t": "Object" }, + "leftBtn": { "source": "lj_jt1", "x": 10, "y": 55, "$t": "$eI" }, + "rightBtn": { "source": "lj_jt2", "x": 660, "y": 55, "$t": "$eI" }, + "$sP": ["dragDropUI", "titleImg", "closeBtn", "timeLab", "imgArrow", "barMask", "barBg", "bar", "list", "itemScroller", "list2", "leftBtn", "rightBtn"], + "$sC": "$eSk" + }, + "CumulativeOnlineViewSkin$Skin155": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "DimensionBossListItemSkin": { + "$path": "resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml", + "$bs": { "height": 182, "width": 270, "$eleC": ["_Image1", "_Image2", "imgTitle", "itemScroller"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "6,6,8,6", "source": "com_bg_kuang_xian1", "top": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "kf_cy_bg3", "y": 2, "$t": "$eI" }, + "imgTitle": { "horizontalCenter": 0, "source": "kf_cy_gsj", "y": 6, "$t": "$eI" }, + "itemScroller": { "bottom": 6, "left": 0, "right": 0, "top": 45, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["list1", "list2"] }, + "list1": { "itemRendererSkinName": "ItemBaseSkin", "x": 6, "y": 3, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "$t": "Object" }, + "_Object3": { "$t": "Object" }, + "_Object4": { "$t": "Object" }, + "list2": { "itemRendererSkinName": "ItemBaseSkin", "x": 6, "y": 68, "$t": "$eLs", "layout": "_HorizontalLayout2", "dataProvider": "_ArrayCollection2" }, + "_HorizontalLayout2": { "$t": "$eHL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object5", "_Object6", "_Object7", "_Object8"] }, + "_Object5": { "$t": "Object" }, + "_Object6": { "$t": "Object" }, + "_Object7": { "$t": "Object" }, + "_Object8": { "$t": "Object" }, + "$sP": ["imgTitle", "list1", "list2", "itemScroller"], + "$sC": "$eSk" + }, + "DimensionBossRoleInfoSkin": { + "$path": "resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml", + "$bs": { "height": 300, "width": 225, "$eleC": ["_Group1", "list1", "list2", "list3"] }, + "_Group1": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "labRoleNum"] + }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsk", "top": 0, "$t": "$eI" }, + "_Image3": { "source": "kf_cy_gsj", "x": 30, "y": 25, "$t": "$eI" }, + "_Image4": { "source": "kf_cy_ydj", "x": 30, "y": 105, "$t": "$eI" }, + "_Image5": { "source": "kf_cy_cyj", "x": 30, "y": 185, "$t": "$eI" }, + "labRoleNum": { "size": 20, "stroke": 1, "text": "当前玩家数量:100", "textColor": 2682369, "x": 20, "y": 250, "$t": "$eL" }, + "list1": { "itemRendererSkinName": "ItemBaseSkin", "x": 120, "y": 10, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1"] }, + "_Object1": { "$t": "Object" }, + "list2": { "itemRendererSkinName": "ItemBaseSkin", "x": 120, "y": 90, "$t": "$eLs", "layout": "_HorizontalLayout2", "dataProvider": "_ArrayCollection2" }, + "_HorizontalLayout2": { "$t": "$eHL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object2"] }, + "_Object2": { "$t": "Object" }, + "list3": { "itemRendererSkinName": "ItemBaseSkin", "x": 120, "y": 170, "$t": "$eLs", "layout": "_HorizontalLayout3", "dataProvider": "_ArrayCollection3" }, + "_HorizontalLayout3": { "$t": "$eHL" }, + "_ArrayCollection3": { "$t": "eui.ArrayCollection", "source": ["_Object3"] }, + "_Object3": { "$t": "Object" }, + "$sP": ["labRoleNum", "list1", "list2", "list3"], + "$sC": "$eSk" + }, + "DimensionBossSkin": { + "$path": "resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml", + "$bs": { "height": 676, "width": 984, "$eleC": ["dragDropUI", "_Image1", "_Group4", "helpBtn", "closeBtn"] }, + "dragDropUI": { "source": "kf_bg1_png", "$t": "$eI" }, + "_Image1": { "source": "kf_kfsl", "touchEnabled": false, "x": 409, "y": 33, "$t": "$eI" }, + "_Group4": { "height": 556, "left": 60, "right": 60, "y": 90, "$t": "$eG", "$eleC": ["_Group2", "_Group3"] }, + "_Group2": { + "height": 556, + "touchEnabled": false, + "width": 594, + "$t": "$eG", + "$eleC": ["bg_boss", "_Group1", "btn_go", "redPoint", "actTime", "actTime2", "txt_refresh", "labTips", "hpBar", "imgDead"] + }, + "bg_boss": { "source": "kf_cy_bg1_png", "touchEnabled": false, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 0, "y": 55, "$t": "$eG", "$eleC": ["_Image2", "imgBossName"] }, + "_Image2": { "source": "kf_cy_bg2", "$t": "$eI" }, + "imgBossName": { "source": "kf_cy_cysl", "x": 145, "y": 5, "$t": "$eI" }, + "btn_go": { "horizontalCenter": 0.5, "label": "参与", "skinName": "Btn9Skin", "y": 500, "$t": "$eB" }, + "redPoint": { "height": 20, "horizontalCenter": 50, "width": 20, "y": 495, "$t": "app.RedDotControl" }, + "actTime": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "活动时间:12:00:00-12:30:00", "textColor": 2682369, "y": 20, "$t": "$eL" }, + "actTime2": { + "lineSpacing": 5, + "size": 16, + "stroke": 2, + "text": "活动时间:\n\n12:00:00-12:30:00\n12:00:00-12:30:00\n12:00:00-12:30:00", + "textAlign": "left", + "textColor": 2682369, + "x": 30, + "y": 115, + "$t": "$eL" + }, + "txt_refresh": { "size": 16, "stroke": 1, "text": "剩余时间:15:30", "textColor": 2682369, "x": 355, "y": 498, "$t": "$eL" }, + "labTips": { "size": 16, "stroke": 2, "text": "所有奖励回到原服时邮件发放", "textColor": 16742144, "x": 355, "y": 522, "$t": "$eL" }, + "hpBar": { "horizontalCenter": 0, "skinName": "bloodBarSkin3", "slideDuration": 0, "value": 0, "width": 396, "y": 460, "$t": "$ePB" }, + "imgDead": { "source": "kf_cy_bg4", "x": 435, "y": 115, "$t": "$eI" }, + "_Group3": { "x": 594, "$t": "$eG", "$eleC": ["rewardItem1", "rewardItem2", "rewardItem3"] }, + "rewardItem1": { "height": 182, "skinName": "DimensionBossListItemSkin", "width": 270, "y": 0, "$t": "app.DimensionBossListItem" }, + "rewardItem2": { "height": 182, "skinName": "DimensionBossListItemSkin", "width": 270, "y": 186, "$t": "app.DimensionBossListItem" }, + "rewardItem3": { "height": 182, "skinName": "DimensionBossListItemSkin", "width": 270, "y": 372, "$t": "app.DimensionBossListItem" }, + "helpBtn": { "label": "Button", "ruleId": "96", "x": 90, "y": 120, "$t": "app.RuleTipsButton" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 903, "y": 28, "$t": "$eB", "skinName": "DimensionBossSkin$Skin156" }, + "$sP": [ + "dragDropUI", + "bg_boss", + "imgBossName", + "btn_go", + "redPoint", + "actTime", + "actTime2", + "txt_refresh", + "labTips", + "hpBar", + "imgDead", + "rewardItem1", + "rewardItem2", + "rewardItem3", + "helpBtn", + "closeBtn" + ], + "$sC": "$eSk" + }, + "DimensionBossSkin$Skin156": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "DonationRankItemSkin": { + "$path": "resource/eui_skins/web/donationRank/DonationRankItemSkin.exml", + "$bs": { "height": 59, "width": 701, "$eleC": ["_Image1", "rankImg", "nameLab", "moneyLab"] }, + "_Image1": { "horizontalCenter": 0, "source": "jxpm_bg1", "verticalCenter": 0, "$t": "$eI" }, + "rankImg": { "source": "jxpm_1", "x": 54, "y": 18, "$t": "$eI" }, + "nameLab": { "left": 195, "size": 20, "stroke": 2, "text": "属性奖励", "textColor": 15007744, "y": 20, "$t": "$eL" }, + "moneyLab": { "left": 460, "size": 20, "stroke": 2, "text": "捐献元宝:22900", "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["rankImg", "nameLab", "moneyLab"], + "$sC": "$eSk" + }, + "DonationRankWinSkin": { + "$path": "resource/eui_skins/web/donationRank/DonationRankWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_Group1", "donaTionGrp"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 559, + "width": 861, + "x": 23.5, + "y": 56.5, + "$t": "$eG", + "$eleC": ["_Image1", "_Image2", "tabList", "_Image3", "titleLab", "itemList", "myDonation", "myRank", "donationBtn"] + }, + "_Image1": { "height": 559, "left": 0, "scale9Grid": "19,18,1,1", "source": "com_bg_kuang_6_png", "width": 150, "y": 0, "$t": "$eI" }, + "_Image2": { "anchorOffsetY": 0, "bottom": 68, "height": 395, "right": 0, "scale9Grid": "19,18,1,1", "source": "com_bg_kuang_6_png", "width": 705, "$t": "$eI" }, + "tabList": { "itemRendererSkinName": "TradeLineTabSkin", "x": -1, "y": 0, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -4, "$t": "$eVL" }, + "_Image3": { "right": -1, "source": "jxpm_banner", "top": 0, "$t": "$eI" }, + "titleLab": { "size": 20, "stroke": 2, "text": "", "textColor": 15655172, "x": 330, "y": 63, "$t": "$eL" }, + "itemList": { "height": 353, "itemRendererSkinName": "DonationRankItemSkin", "x": 159, "y": 100, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -1, "$t": "$eVL" }, + "myDonation": { "left": 168, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "y": 502, "$t": "$eL" }, + "myRank": { "left": 169, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "y": 530, "$t": "$eL" }, + "donationBtn": { "height": 44, "label": "我要捐献", "skinName": "Btn9Skin", "width": 109, "x": 731, "y": 505, "$t": "$eB" }, + "donaTionGrp": { + "height": 301, + "horizontalCenter": 0, + "verticalCenter": 0, + "visible": false, + "width": 426, + "$t": "$eG", + "$eleC": ["_Rect1", "_Image4", "doanaTionDescLab", "_Label1", "sureBtn", "closeBtn", "_Image5", "inputNum", "lessBtn", "addBtn", "btn_close", "jianYiBai", "addYiBai"] + }, + "_Rect1": { "alpha": 0, "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 559, "width": 861, "x": -218, "y": -120, "$t": "$eR" }, + "_Image4": { "scaleX": 1, "scaleY": 1, "source": "bg_tipstc2_png", "$t": "$eI" }, + "doanaTionDescLab": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "y": 95, "$t": "$eL" }, + "_Label1": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "捐献元宝", "textColor": 15064527, "y": 15, "$t": "$eL" }, + "sureBtn": { "label": "立即捐献", "skinName": "Btn9Skin", "x": 60, "y": 239, "$t": "$eB" }, + "closeBtn": { "label": "取消捐献", "skinName": "Btn9Skin", "x": 257, "y": 239, "$t": "$eB" }, + "_Image5": { "height": 36, "horizontalCenter": 0, "scale9Grid": "5,5,32,32", "source": "bag_piliangbg_0", "width": 155.6, "y": 149, "$t": "$eI" }, + "inputNum": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "0", "textColor": 15064527, "verticalCenter": 16.5, "$t": "$eL" }, + "lessBtn": { "icon": "com_jian", "label": "Button", "skinName": "Btn0Skin", "x": 91.8, "y": 151, "$t": "$eB" }, + "addBtn": { "icon": "com_jia", "label": "Button", "skinName": "Btn0Skin", "x": 303, "y": 151, "$t": "$eB" }, + "btn_close": { "label": "", "width": 60, "x": 404, "y": -8, "$t": "$eB", "skinName": "DonationRankWinSkin$Skin157" }, + "jianYiBai": { "height": 30, "icon": "com_jiabg", "label": "-100", "width": 63, "x": 22, "y": 151, "$t": "$eB", "skinName": "DonationRankWinSkin$Skin158" }, + "addYiBai": { "height": 30, "icon": "com_jiabg", "label": "+100", "width": 63, "x": 341, "y": 151, "$t": "$eB", "skinName": "DonationRankWinSkin$Skin159" }, + "$sP": [ + "dragDropUI", + "tabList", + "titleLab", + "itemList", + "myDonation", + "myRank", + "donationBtn", + "doanaTionDescLab", + "sureBtn", + "closeBtn", + "inputNum", + "lessBtn", + "addBtn", + "btn_close", + "jianYiBai", + "addYiBai", + "donaTionGrp" + ], + "$sC": "$eSk" + }, + "DonationRankWinSkin$Skin157": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "DonationRankWinSkin$Skin158": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_jiabg", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_jiabg" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_jiabg" }] } + }, + "$sC": "$eSk" + }, + "DonationRankWinSkin$Skin159": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_jiabg", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "com_jiabg" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "com_jiabg" }] } + }, + "$sC": "$eSk" + }, + "FlyShoesBtnItemSkin": { + "$path": "resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml", + "$bs": { "height": 43, "width": 126, "$eleC": ["select", "_Group1"] }, + "select": { "scaleX": 0.9, "scaleY": 0.9, "smoothing": false, "source": "com_yeqian_4", "x": 3, "y": 3, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 46, "scaleX": 0.9, "scaleY": 0.9, "width": 136, "x": 2, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["nameTf"] }, + "_HorizontalLayout1": { "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "nameTf": { "size": 22, "text": "", "textColor": 15588544, "x": 38, "y": 14.22, "$t": "$eL" }, + "$sP": ["select", "nameTf"], + "$sC": "$eSk" + }, + "FlyShoesListItemSkin": { + "$path": "resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml", + "$bs": { "$eleC": ["btn_go"] }, + "btn_go": { "skinName": "Btn15Skin", "x": 0, "y": 0, "$t": "app.BtnItem" }, + "$sP": ["btn_go"], + "$sC": "$eSk" + }, + "FlyShoesSkin": { + "$path": "resource/eui_skins/web/flyshoes/FlyShoesSkin.exml", + "$bs": { "height": 469, "width": 419, "$eleC": ["_Group1", "ruleBtn"] }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 460, + "width": 419, + "$t": "$eG", + "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "btn_list", "list", "txt_count", "txt_consume"] + }, + "dragDropUI": { "anchorOffsetX": 0, "anchorOffsetY": 0, "skinName": "ViewBgWin4Skin", "x": -3, "y": 1, "$t": "app.UIViewFrame" }, + "_Image1": { "source": "task_k2_png", "x": 156, "y": 53, "$t": "$eI" }, + "_Image2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 383, + "scale9Grid": "6,6,8,6", + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 132, + "x": 9.08, + "y": 56.5, + "$t": "$eI" + }, + "_Image3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 383, + "scale9Grid": "6,6,8,6", + "smoothing": false, + "source": "com_bg_kuang_xian1", + "visible": false, + "width": 212.66, + "x": 147.08, + "y": 56.5, + "$t": "$eI" + }, + "btn_list": { "height": 378, "x": 18, "y": 55, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 370, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 132, "x": 4, "y": 0, "$t": "$eS" }, + "_List1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "itemRendererSkinName": "TradeLineTabSkin", + "name": "list", + "scaleX": 0.9, + "scaleY": 0.9, + "x": 4, + "y": 2, + "$t": "$eLs", + "layout": "_VerticalLayout1" + }, + "_VerticalLayout1": { "gap": -3, "$t": "$eVL" }, + "list": { "height": 322, "width": 228, "x": 172, "y": 59, "$t": "$eG", "$eleC": ["_Scroller2", "_List2"] }, + "_Scroller2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 320, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 227, "x": 0, "y": 0, "$t": "$eS" }, + "_List2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "itemRendererSkinName": "FlyShoesListItemSkin", + "name": "list", + "scaleX": 1, + "scaleY": 1, + "x": 0, + "y": 0, + "$t": "$eLs", + "layout": "_TileLayout1" + }, + "_TileLayout1": { "horizontalGap": 11, "requestedColumnCount": 2, "verticalGap": 5, "$t": "$eTL" }, + "txt_count": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 20, + "size": 19, + "text": "", + "textAlign": "left", + "textColor": 15779990, + "verticalAlign": "middle", + "width": 150, + "x": 169.33, + "y": 396, + "$t": "$eL" + }, + "txt_consume": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 20, + "size": 19, + "text": "", + "textAlign": "left", + "textColor": 15779990, + "verticalAlign": "middle", + "width": 200, + "x": 169.03, + "y": 420.33, + "$t": "$eL" + }, + "ruleBtn": { "label": "Button", "ruleId": "73", "x": 20, "y": 415, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "btn_list", "list", "txt_count", "txt_consume", "ruleBtn"], + "$sC": "$eSk" + }, + "ForgeRecordItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRecordItemSkin.exml", + "$bs": { "height": 30, "width": 435, "$eleC": ["bg", "desc"] }, + "bg": { "bottom": 0, "left": -1, "right": 1, "scale9Grid": "10,8,1,2", "source": "bg_quyu_1", "top": 0, "$t": "$eI" }, + "desc": { "size": 18, "text": "", "textColor": 15779990, "verticalCenter": 0, "x": 18, "$t": "$eL" }, + "$sP": ["bg", "desc"], + "$sC": "$eSk" + }, + "ForgeRecordSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRecordSkin.exml", + "$bs": { "height": 340, "width": 478, "$eleC": ["dragDropUI", "_Image1", "msgScroller", "sure"] }, + "dragDropUI": { "bottom": 0, "height": 340, "horizontalCenter": 0, "skinName": "ViewBgWin5Skin", "width": 478, "$t": "app.UIViewFrame" }, + "_Image1": { "bottom": 58, "height": 239, "horizontalCenter": -0.5, "scale9Grid": "4,4,28,28", "source": "chat_bg_bg2", "visible": false, "width": 441, "$t": "$eI" }, + "msgScroller": { "anchorOffsetY": 0, "bottom": 71, "height": 211, "horizontalCenter": -2.5, "width": 435, "$t": "$eS", "viewport": "msgList" }, + "msgList": { "itemRendererSkinName": "ForgeRecordItemSkin", "$t": "$eLs", "dataProvider": "_ArrayCollection1" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection" }, + "sure": { "bottom": 12, "height": 44, "horizontalCenter": -10.5, "label": "确 定", "width": 109, "$t": "$eB", "skinName": "ForgeRecordSkin$Skin160" }, + "$sP": ["dragDropUI", "msgList", "msgScroller", "sure"], + "$sC": "$eSk" + }, + "ForgeRecordSkin$Skin160": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ForgeRecycleItemViewSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml", + "$bs": { "height": 288, "width": 212, "$eleC": ["_Group2"] }, + "_Group2": { "bottom": 0, "left": 0, "right": 0, "top": 0, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Image1", "title", "item", "txtGrp", "recycleBtn", "rect", "angleImg"] }, + "_Image1": { "scale9Grid": "101,129,10,15", "scaleX": 1, "scaleY": 1, "source": "recovery_bg", "x": 0, "y": 0, "$t": "$eI" }, + "title": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "逆魔王布鞋", "textColor": 16770596, "x": 85, "y": 19, "$t": "$eL" }, + "item": { "horizontalCenter": -2.5, "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin", "x": 88, "y": 71, "$t": "app.ItemBase" }, + "txtGrp": { "horizontalCenter": 2, "touchEnabled": false, "verticalCenter": 29, "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["_Group1", "cdTime", "recycleNum"] }, + "_VerticalLayout1": { "gap": 7, "horizontalAlign": "center", "$t": "$eVL" }, + "_Group1": { "scaleX": 1, "scaleY": 1, "touchEnabled": false, "width": 212, "x": -4, "y": 47, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Label1", "moneyImg", "recycleMoney"] }, + "_HorizontalLayout1": { "gap": 1, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "_Label1": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "回收可得", "textColor": 16770596, "$t": "$eL" }, + "moneyImg": { "height": 37, "source": "icon_yuanbao", "width": 37, "x": 112, "y": 4, "$t": "$eI" }, + "recycleMoney": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "*20", "textColor": 16770596, "$t": "$eL" }, + "cdTime": { "horizontalCenter": 0.5, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "倒计时:30小时", "textColor": 2682369, "x": 31, "y": 84, "$t": "$eL" }, + "recycleNum": { "horizontalCenter": 0.5, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "剩余次数:10", "textColor": 16770596, "x": 41, "y": 113, "$t": "$eL" }, + "recycleBtn": { "bottom": 21, "horizontalCenter": 0, "label": "回 收", "scaleX": 1, "scaleY": 1, "skinName": "Btn9Skin", "x": 74, "y": 268, "$t": "$eB" }, + "rect": { "bottom": 0, "fillAlpha": 0.5, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "angleImg": { "height": 80, "left": -6, "source": "recovery_zs_1", "top": -6, "width": 72, "$t": "$eI" }, + "$sP": ["title", "item", "moneyImg", "recycleMoney", "cdTime", "recycleNum", "txtGrp", "recycleBtn", "rect", "angleImg"], + "$sC": "$eSk" + }, + "ForgeRecycleViewSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["bgImg", "_Group1"] }, + "bgImg": { "source": "recovery_banner", "touchEnabled": false, "width": 875, "x": -10, "y": -15, "$t": "$eI" }, + "_Group1": { "bottom": 0, "height": 427, "width": 869, "$t": "$eG", "$eleC": ["recycleScroller"] }, + "recycleScroller": { "height": 427, "width": 869, "$t": "$eS", "viewport": "recycleList" }, + "recycleList": { "itemRendererSkinName": "ForgeRecycleItemViewSkin", "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 3, "paddingLeft": 6, "verticalGap": 10, "$t": "$eTL" }, + "$sP": ["bgImg", "recycleList", "recycleScroller"], + "$sC": "$eSk" + }, + "ForgeRefiningAttrItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml", + "$bs": { "height": 23, "width": 232, "$eleC": ["txt_next", "iconFlat", "iconUp", "iconDown"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 15, "text": "生命值上限:+2", "textAlign": "left", "textColor": 2682369, "x": 16, "y": 3, "$t": "$eL" }, + "iconFlat": { "right": 44, "source": "forge_t2", "visible": false, "y": 9.2, "$t": "$eI" }, + "iconUp": { "scaleY": 1, "source": "forge_t3", "visible": false, "x": 173.2, "y": 4.6, "$t": "$eI" }, + "iconDown": { "scaleY": 1, "source": "forge_t1", "visible": false, "x": 173, "y": 6, "$t": "$eI" }, + "$sP": ["txt_next", "iconFlat", "iconUp", "iconDown"], + "$sC": "$eSk" + }, + "ForgeRefiningButtonSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml", + "$bs": { "height": 81, "width": 229, "$eleC": ["select", "labelDisplay", "redDot", "lbEquip", "item"], "$sId": ["selectLine"] }, + "select": { "horizontalCenter": 0, "source": "forge_equipbg1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": false, "left": 86, "size": 19, "stroke": 2, "text": "紫色长跑", "textAlign": "center", "textColor": 15779990, "verticalAlign": "middle", "y": 12, "$t": "$eL" }, + "redDot": { "height": 20, "right": 2, "top": 5, "visible": false, "width": 20, "$t": "app.RedDotControl" }, + "selectLine": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 83.6, + "scale9Grid": "24,23,2,2", + "scaleX": 1, + "scaleY": 1, + "source": "liebiaoxuanzhong", + "width": 229.93, + "x": -1.19, + "y": -1.92, + "$t": "$eI" + }, + "lbEquip": { "left": 86, "size": 20, "stroke": 2, "text": "武器", "textColor": 2682369, "y": 48, "$t": "$eL" }, + "item": { "skinName": "ItemBaseSkin", "x": 9.6, "y": 10, "$t": "app.ItemBase" }, + "$sP": ["select", "labelDisplay", "redDot", "selectLine", "lbEquip", "item"], + "$s": { + "up": { "$ssP": [{ "target": "select", "name": "source", "value": "forge_equipbg2" }] }, + "down": { + "$ssP": [ + { "target": "select", "name": "source", "value": "forge_equipbg1" }, + { "target": "labelDisplay", "name": "textColor", "value": 15451538 }, + { "target": "", "name": "width", "value": 229 }, + { "target": "", "name": "height", "value": 81 } + ], + "$saI": [{ "target": "selectLine", "property": "", "position": 2, "relativeTo": "lbEquip" }] + } + }, + "$sC": "$eSk" + }, + "ForgeRefiningCurrAttrItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml", + "$bs": { "height": 23, "$eleC": ["txt_next"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "horizontalCenter": 0, "size": 15, "text": "", "textAlign": "left", "textColor": 16448761, "y": 2, "$t": "$eL" }, + "$sP": ["txt_next"], + "$sC": "$eSk" + }, + "ForgeRefiningMoneyItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml", + "$bs": { "height": 27, "width": 254, "$eleC": ["checkYes", "lbMoney"] }, + "checkYes": { "name": "tabRed", "skinName": "CheckBox3", "x": 8, "y": 1, "$t": "$eCB" }, + "lbMoney": { "size": 18, "text": "20元宝/补齐赤月凭证", "textColor": 15106630, "x": 40, "y": 4, "$t": "$eL" }, + "$sP": ["checkYes", "lbMoney"], + "$sC": "$eSk" + }, + "ForgeRefiningNeedGoodsItem": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml", + "$bs": { "height": 124, "width": 75, "$eleC": ["itembase", "lbGoodsNum", "lbIsMoney"] }, + "itembase": { "skinName": "ItemBaseSkin", "x": 8, "y": 6, "$t": "app.ItemBase" }, + "lbGoodsNum": { "horizontalCenter": 1.5, "size": 20, "text": "30", "textAlign": "center", "textColor": 15779990, "y": 76, "$t": "$eL" }, + "lbIsMoney": { "horizontalCenter": 1.5, "size": 14, "text": "元宝替换", "textAlign": "center", "textColor": 2682369, "visible": false, "y": 102, "$t": "$eL" }, + "$sP": ["itembase", "lbGoodsNum", "lbIsMoney"], + "$sC": "$eSk" + }, + "ForgeRefiningShowAttrSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml", + "$bs": { "width": 230, "$eleC": ["_Image1", "lbDesc", "btn_close"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 0, "scale9Grid": "5,5,32,32", "source": "chat_bg_bg2_png", "top": 0, "width": 230, "x": 0, "$t": "$eI" }, + "lbDesc": { + "bottom": 10, + "lineSpacing": 3, + "size": 18, + "text": "可能出现的属性:\n攻击上限\n魔法上限\n道术上限\n物防上限\n魔御上限\n物理命中\n魔法命中\n魔法命中\n魔法命中", + "top": 10, + "width": 171, + "x": 15, + "$t": "$eL" + }, + "btn_close": { "label": "", "skinName": "ButtonCloseSkin", "x": 204, "y": 0, "$t": "$eB" }, + "$sP": ["lbDesc", "btn_close"], + "$sC": "$eSk" + }, + "ForgeRefiningSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRefiningSkin.exml", + "$bs": { + "height": 558, + "width": 875, + "$eleC": [ + "bg", + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "tabItem", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "btnReplace", + "btnRefining", + "_Image10", + "item", + "_Scroller1", + "listCurAttr", + "scroller", + "listMoney", + "listGoods", + "ruleTips", + "lbShowDesc", + "iconNo", + "lbFail", + "lbReplaceState", + "txt_get0", + "txt_get1", + "_Image11" + ] + }, + "bg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 558, + "scale9Grid": "60,60,12,12", + "scaleX": 1, + "scaleY": 1, + "source": "apay_tab_bg", + "visible": false, + "width": 637.84, + "x": 236.71, + "y": 0.48, + "$t": "$eI" + }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 558.03, + "scale9Grid": "60,60,12,12", + "scaleX": 1, + "scaleY": 1, + "source": "apay_tab_bg", + "visible": false, + "width": 239.5, + "x": -1.62, + "y": 0.48, + "$t": "$eI" + }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 547, "source": "forge_bg2", "width": 629.5, "x": 241.16, "y": 5.31, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 200, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 211, "x": 266.99, "y": 148, "$t": "$eI" }, + "_Image4": { "source": "com_bg_kuang_4_png", "x": 235, "y": -5, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 192, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 614, "x": 247.33, "y": 357.97, "$t": "$eI" }, + "tabItem": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 43, "itemRendererSkinName": "BtnTabSkin2", "visible": false, "x": 5.32, "y": 5.37, "$t": "$eT" }, + "_Image6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 200, "scale9Grid": "22,20,1,1", "source": "forge_bg3", "width": 211, "x": 612.95, "y": 148, "$t": "$eI" }, + "_Image7": { "source": "forge_btjt", "x": 513.66, "y": 199.62, "$t": "$eI" }, + "_Image8": { "source": "forge_bt2", "x": 649.71, "y": 158.32, "$t": "$eI" }, + "_Image9": { "source": "forge_bt1", "x": 277.64, "y": 158.65, "$t": "$eI" }, + "btnReplace": { "label": "替 换", "skinName": "Btn9Skin", "visible": false, "x": 673.46, "y": 298.03, "$t": "$eB" }, + "btnRefining": { "label": "洗 炼", "skinName": "Btn9Skin", "x": 610.14, "y": 494.65, "$t": "$eB" }, + "_Image10": { "source": "achievement_json.ach_xunzhangbg", "x": 474.49, "y": 24.67, "$t": "$eI" }, + "item": { "anchorOffsetX": 0, "anchorOffsetY": 0, "skinName": "ItemBaseSkin", "x": 513.33, "y": 53, "$t": "app.ItemBase" }, + "_Scroller1": { "anchorOffsetY": 0, "height": 112, "width": 200, "x": 619, "y": 190, "$t": "$eS", "viewport": "listNewAttr" }, + "listNewAttr": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeRefiningAttrItemSkin", "width": 200, "x": 619, "y": 190, "$t": "$eLs" }, + "listCurAttr": { "horizontalCenter": -64.5, "itemRendererSkinName": "ForgeRefiningCurrAttrItemSkin", "width": 199, "y": 190, "$t": "$eLs" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 511, "width": 229, "x": 4, "y": 40, "$t": "$eS", "viewport": "tabEq" }, + "tabEq": { "itemRendererSkinName": "ForgeRefiningButtonSkin", "width": 209, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "listMoney": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeRefiningMoneyItemSkin", "width": 226, "x": 253, "y": 370, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 6, "$t": "$eVL" }, + "listGoods": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 123, + "horizontalCenter": 225, + "itemRendererSkinName": "ForgeRefiningNeedGoodsItem", + "y": 371, + "$t": "$eLs", + "layout": "_HorizontalLayout1" + }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "ruleTips": { "height": 32, "horizontalCenter": -171.5, "label": "Button", "ruleId": "78", "verticalCenter": -250, "$t": "app.RuleTipsButton" }, + "lbShowDesc": { "borderColor": 14166313, "size": 18, "text": "查看详情", "textColor": 15106630, "x": 509.34, "y": 131.95, "$t": "$eL" }, + "iconNo": { "source": "zl_iconzw", "visible": false, "x": 513.67, "y": 53, "$t": "$eI" }, + "lbFail": { "size": 18, "text": "很遗憾您洗炼失败了", "textColor": 15869478, "visible": false, "x": 638, "y": 245, "$t": "$eL" }, + "lbReplaceState": { "size": 17, "text": "更好极品属性\n已自动替换", "textAlign": "center", "textColor": 15779990, "visible": false, "x": 672.26, "y": 307, "$t": "$eL" }, + "txt_get0": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "visible": false, + "x": 729, + "y": 493, + "$t": "$eL" + }, + "txt_get1": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "visible": false, + "x": 729, + "y": 515.99, + "$t": "$eL" + }, + "_Image11": { "source": "forge_xlt", "x": -1, "y": 4, "$t": "$eI" }, + "$sP": [ + "bg", + "tabItem", + "btnReplace", + "btnRefining", + "item", + "listNewAttr", + "listCurAttr", + "tabEq", + "scroller", + "listMoney", + "listGoods", + "ruleTips", + "lbShowDesc", + "iconNo", + "lbFail", + "lbReplaceState", + "txt_get0", + "txt_get1" + ], + "$sC": "$eSk" + }, + "ForgeRewardItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeRewardItemSkin.exml", + "$bs": { "$eleC": ["_Image1", "itemBg", "itemIcon"] }, + "_Image1": { "horizontalCenter": 0, "source": "forge_equip2", "verticalCenter": 0, "$t": "$eI" }, + "itemBg": { "horizontalCenter": 0, "source": "quality_1", "verticalCenter": 0, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": 0, "source": "11000", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["itemBg", "itemIcon"], + "$sC": "$eSk" + }, + "ForgeUpStarCurrAttrItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml", + "$bs": { "height": 23, "width": 186, "$eleC": ["txt_next"] }, + "txt_next": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 17, + "left": 19, + "size": 15, + "stroke": 2, + "text": "全职业攻击下限:+11", + "textAlign": "left", + "textColor": 16448761, + "y": 2, + "$t": "$eL" + }, + "$sP": ["txt_next"], + "$sC": "$eSk" + }, + "ForgeUpStarNextArrtItemSkin": { + "$path": "resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml", + "$bs": { "height": 23, "width": 186, "$eleC": ["txt_next"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "left": 25, "size": 15, "stroke": 2, "text": "生命值上限:+2", "textAlign": "left", "textColor": 2682369, "y": 3, "$t": "$eL" }, + "$sP": ["txt_next"], + "$sC": "$eSk" + }, + "ForgeUpStarSkin": { + "$path": "resource/eui_skins/web/forge/ForgeUpStarSkin.exml", + "$bs": { + "height": 558, + "width": 875, + "$eleC": [ + "bg", + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "tabItem", + "_Image6", + "_Image7", + "btnReplace", + "btnUpStar", + "_Image8", + "item", + "listMoney", + "listNextAttr", + "listCurAttr", + "scroller", + "listGoods", + "ruleTips", + "iconNo", + "lbFail", + "group_star", + "_Label1", + "lbMax", + "_Image9", + "_Image10", + "lbTitle", + "txt_get0", + "txt_get1", + "txt_get2", + "rateLabel", + "_Label2" + ] + }, + "bg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 558, + "scale9Grid": "60,60,12,12", + "scaleX": 1, + "scaleY": 1, + "source": "apay_tab_bg", + "visible": false, + "width": 637.84, + "x": 236.71, + "y": 0.48, + "$t": "$eI" + }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 547, "source": "forge_bg2", "width": 629.5, "x": 241.16, "y": 5.31, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 147, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 185, "x": 330.33, "y": 207.59, "$t": "$eI" }, + "_Image3": { "source": "com_bg_kuang_4_png", "x": 234, "y": -5, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 147, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 185, "x": 586.02, "y": 204.26, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 192, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 614, "x": 247.33, "y": 357.97, "$t": "$eI" }, + "tabItem": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 43, "itemRendererSkinName": "BtnTabSkin2", "visible": false, "x": 5.32, "y": 5.37, "$t": "$eT" }, + "_Image6": { "source": "forge_bt4", "x": 603.43, "y": 217.91, "$t": "$eI" }, + "_Image7": { "source": "forge_bt3", "x": 347.64, "y": 218.24, "$t": "$eI" }, + "btnReplace": { "label": "替 换", "skinName": "Btn9Skin", "visible": false, "x": 673.46, "y": 298.03, "$t": "$eB" }, + "btnUpStar": { "label": "升 星", "skinName": "Btn9Skin", "x": 568.16, "y": 499.21, "$t": "$eB" }, + "_Image8": { "source": "achievement_json.ach_xunzhangbg", "x": 486.49, "y": 24.67, "$t": "$eI" }, + "item": { "anchorOffsetX": 0, "anchorOffsetY": 0, "skinName": "ItemBaseSkin", "x": 525.33, "y": 53, "$t": "app.ItemBase" }, + "listMoney": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeRefiningMoneyItemSkin", "width": 226, "x": 253, "y": 370, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "listNextAttr": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeUpStarNextArrtItemSkin", "width": 178, "x": 589.98, "y": 249, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 0, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eVL" }, + "listCurAttr": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -16, "itemRendererSkinName": "ForgeUpStarCurrAttrItemSkin", "width": 175, "y": 249, "$t": "$eLs" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 515, "width": 229, "x": 4, "y": 40, "$t": "$eS", "viewport": "tabEq" }, + "tabEq": { "itemRendererSkinName": "ForgeRefiningButtonSkin", "width": 209.67, "$t": "$eT", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "$t": "$eVL" }, + "listGoods": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 105.67, + "horizontalCenter": 186, + "itemRendererSkinName": "ForgeRefiningNeedGoodsItem", + "y": 377.65, + "$t": "$eLs", + "layout": "_HorizontalLayout1" + }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "ruleTips": { "height": 32, "horizontalCenter": -171.5, "label": "Button", "ruleId": "80", "verticalCenter": -250, "$t": "app.RuleTipsButton" }, + "iconNo": { "source": "zl_iconzw", "visible": false, "x": 513.67, "y": 53, "$t": "$eI" }, + "lbFail": { "size": 18, "text": "很遗憾您洗炼失败了", "textColor": 15869478, "visible": false, "x": 638, "y": 245, "$t": "$eL" }, + "group_star": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "x": 356.39, + "y": 153.18, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["imgStar1", "imgStar2", "imgStar3", "imgStar4", "imgStar5", "imgStar6", "imgStar7", "imgStar8", "imgStar9", "imgStar10", "imgStar11", "imgStar12"] + }, + "_HorizontalLayout2": { "gap": 0, "horizontalAlign": "left", "$t": "$eHL" }, + "imgStar1": { "source": "forge_xxbg", "x": 15, "y": 17, "$t": "$eI" }, + "imgStar2": { "source": "forge_xxbg", "x": 25, "y": 27, "$t": "$eI" }, + "imgStar3": { "source": "forge_xxbg", "x": 35, "y": 37, "$t": "$eI" }, + "imgStar4": { "source": "forge_xxbg", "x": 45, "y": 47, "$t": "$eI" }, + "imgStar5": { "source": "forge_xxbg", "x": 55, "y": 57, "$t": "$eI" }, + "imgStar6": { "source": "forge_xxbg", "x": 65, "y": 67, "$t": "$eI" }, + "imgStar7": { "source": "forge_xxbg", "x": 75, "y": 77, "$t": "$eI" }, + "imgStar8": { "source": "forge_xxbg", "x": 85, "y": 87, "$t": "$eI" }, + "imgStar9": { "source": "forge_xxbg", "x": 95, "y": 97, "$t": "$eI" }, + "imgStar10": { "source": "forge_xxbg", "x": 105, "y": 107, "$t": "$eI" }, + "imgStar11": { "source": "forge_xxbg", "x": 115, "y": 117, "$t": "$eI" }, + "imgStar12": { "source": "forge_xxbg", "x": 125, "y": 127, "$t": "$eI" }, + "_Label1": { "size": 23, "stroke": 2, "text": "消耗材料:", "textColor": 15779990, "visible": false, "x": 331, "y": 372, "$t": "$eL" }, + "lbMax": { "size": 23, "text": "已满星", "textColor": 15779990, "visible": false, "x": 644.65, "y": 267.33, "$t": "$eL" }, + "_Image9": { "source": "forge_json.forge_sxjt", "x": 510.65, "y": 234, "$t": "$eI" }, + "_Image10": { "source": "forge_sxt", "x": -1, "y": 0, "$t": "$eI" }, + "lbTitle": { "horizontalCenter": 117.5, "size": 20, "stroke": 1, "text": "黄金裁决", "textAlign": "center", "textColor": 16742144, "y": 131.23, "$t": "$eL" }, + "txt_get0": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 782.48, + "y": 420, + "$t": "$eL" + }, + "txt_get1": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 782.48, + "y": 466, + "$t": "$eL" + }, + "txt_get2": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "stroke": 2, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 782.48, + "y": 443, + "$t": "$eL" + }, + "rateLabel": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 695, "y": 503, "$t": "$eL" }, + "_Label2": { "lineSpacing": 5, "size": 16, "stroke": 2, "text": "7星以上装备在回收时返还部分玛法宝石", "textColor": 15655172, "x": 421, "y": 187, "$t": "$eL" }, + "$sP": [ + "bg", + "tabItem", + "btnReplace", + "btnUpStar", + "item", + "listMoney", + "listNextAttr", + "listCurAttr", + "tabEq", + "scroller", + "listGoods", + "ruleTips", + "iconNo", + "lbFail", + "imgStar1", + "imgStar2", + "imgStar3", + "imgStar4", + "imgStar5", + "imgStar6", + "imgStar7", + "imgStar8", + "imgStar9", + "imgStar10", + "imgStar11", + "imgStar12", + "group_star", + "lbMax", + "lbTitle", + "txt_get0", + "txt_get1", + "txt_get2", + "rateLabel" + ], + "$sC": "$eSk" + }, + "ForgeViewSkin": { + "$path": "resource/eui_skins/web/forge/ForgeViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["_Image1", "_Image2", "obtain", "_Group1", "oneGrp", "_Image4", "scroller", "rewardList", "txt_get"] }, + "_Image1": { "bottom": 57, "height": 499, "horizontalCenter": 308.5, "scale9Grid": "42,45,3,4", "source": "kbg_3_1_png", "width": 238, "$t": "$eI" }, + "_Image2": { "bottom": 57, "horizontalCenter": -123, "source": "forge_bg", "$t": "$eI" }, + "obtain": { "bottom": 448, "horizontalCenter": -116, "source": "forge_huode", "$t": "$eI" }, + "_Group1": { "bottom": 7, "height": 44, "horizontalCenter": 6.5, "width": 712, "$t": "$eG", "$eleC": ["recycle", "bulkRecycle", "historyRecord", "forge", "forgeTen", "rule"] }, + "recycle": { "label": "回 收", "skinName": "Btn9Skin", "x": 9, "y": 1, "$t": "$eB" }, + "bulkRecycle": { "label": "批量回收", "skinName": "Btn9Skin", "x": 127, "y": 2, "$t": "$eB" }, + "historyRecord": { "label": "历史记录", "skinName": "Btn9Skin", "x": 246.3, "y": 2, "$t": "$eB" }, + "forge": { "label": "锻造", "skinName": "Btn9Skin", "x": 362.8, "y": 2, "$t": "$eB" }, + "forgeTen": { "label": "锻造10次", "skinName": "Btn9Skin", "x": 480, "y": 2, "$t": "$eB" }, + "rule": { "label": "说明", "skinName": "Btn9Skin", "x": 598.8, "y": 2, "$t": "$eB" }, + "oneGrp": { "horizontalCenter": -119, "verticalCenter": -79, "$t": "$eG", "$eleC": ["_Image3", "itemQua", "itemIcon"] }, + "_Image3": { "scaleX": 1, "scaleY": 1, "source": "forge_equip1", "$t": "$eI" }, + "itemQua": { "horizontalCenter": -1, "source": "quality_0", "verticalCenter": -1, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": -1, "source": "11000", "verticalCenter": -1, "$t": "$eI" }, + "_Image4": { "bottom": 513, "horizontalCenter": 310.5, "source": "forge_t", "$t": "$eI" }, + "scroller": { "bottom": 97, "height": 411, "horizontalCenter": 309, "width": 219, "$t": "$eS", "viewport": "forgeList" }, + "forgeList": { "bottom": 97, "height": 411, "horizontalCenter": 309, "itemRendererSkinName": "ItemBaseSkin", "width": 219, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 19, "requestedColumnCount": 3, "verticalGap": 11, "$t": "$eTL" }, + "rewardList": { "bottom": 298, "horizontalCenter": -109, "itemRendererSkinName": "ForgeRewardItemSkin", "visible": false, "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "requestedColumnCount": 5, "$t": "$eTL" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 529, + "y": 475, + "$t": "$eL" + }, + "$sP": ["obtain", "recycle", "bulkRecycle", "historyRecord", "forge", "forgeTen", "rule", "itemQua", "itemIcon", "oneGrp", "forgeList", "scroller", "rewardList", "txt_get"], + "$sC": "$eSk" + }, + "ForgeWinSkin": { + "$path": "resource/eui_skins/web/forge/ForgeWinSkin.exml", + "$bs": { "height": 644, "width": 919, "$eleC": ["dragDropUI", "viewStack", "ruleTips"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "width": 921, "y": 0, "$t": "app.UIViewFrame" }, + "viewStack": { "height": 558, "horizontalCenter": 0, "verticalCenter": 14, "width": 869, "$t": "$eG" }, + "ruleTips": { "height": 32, "horizontalCenter": -408.5, "label": "Button", "ruleId": "23", "verticalCenter": -234, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "viewStack", "ruleTips"], + "$sC": "$eSk" + }, + "SynthesisItem2CostItemSkin": { + "$path": "resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml", + "$bs": { "height": 20, "$eleC": ["iconImg", "_Group1"] }, + "iconImg": { "height": 30, "source": "13009", "width": 30, "x": -30, "y": -6, "$t": "$eI" }, + "_Group1": { "verticalCenter": 0, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["costName"] }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "costName": { "size": 18, "stroke": 2, "text": "炎之赤月凭证 (1/3)", "textColor": 15064527, "verticalAlign": "middle", "$t": "$eL" }, + "$sP": ["iconImg", "costName"], + "$sC": "$eSk" + }, + "SynthesisItem2Skin": { + "$path": "resource/eui_skins/web/forge/SynthesisItem2Skin.exml", + "$bs": { "height": 183, "width": 338, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 183, + "width": 338, + "$t": "$eG", + "$eleC": ["_Image1", "itemData", "itemName", "syntheticBtn", "syntheticBtn1", "syntheticBtn2", "limitLab", "redPoint", "redPoint1", "redPoint2", "_Label1", "costList"] + }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "hecheng_bg1", "x": 0, "y": 0, "$t": "$eI" }, + "itemData": { "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin", "x": 28, "y": 50, "$t": "app.SynthesisItemBase" }, + "itemName": { "horizontalCenter": -1, "size": 20, "stroke": 2, "text": "炎之黄金裁决", "textColor": 16742144, "verticalCenter": -63.5, "$t": "$eL" }, + "syntheticBtn": { + "bottom": 14, + "height": 44, + "horizontalCenter": 0, + "label": "第88天开放", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "SynthesisItem2Skin$Skin161" + }, + "syntheticBtn1": { + "bottom": 14, + "height": 44, + "horizontalCenter": -65, + "label": "第88天开放", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "SynthesisItem2Skin$Skin162" + }, + "syntheticBtn2": { + "bottom": 14, + "height": 44, + "horizontalCenter": 65, + "label": "第88天开放", + "scaleX": 1, + "scaleY": 1, + "width": 113, + "x": 183, + "y": 279, + "$t": "$eB", + "skinName": "SynthesisItem2Skin$Skin163" + }, + "limitLab": { "horizontalCenter": 1.5, "size": 20, "stroke": 2, "text": "20转开放", "textColor": 2682369, "verticalCenter": 54.5, "$t": "$eL" }, + "redPoint": { "x": 210, "y": 120, "$t": "app.RedDotControl" }, + "redPoint1": { "x": 150, "y": 120, "$t": "app.RedDotControl" }, + "redPoint2": { "x": 280, "y": 120, "$t": "app.RedDotControl" }, + "_Label1": { "size": 18, "stroke": 2, "text": "材料:", "textColor": 15064527, "x": 99.34, "y": 54.01, "$t": "$eL" }, + "costList": { "itemRendererSkinName": "SynthesisItem2CostItemSkin", "width": 152, "x": 144, "y": 52, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 5, "$t": "$eVL" }, + "$sP": ["itemData", "itemName", "syntheticBtn", "syntheticBtn1", "syntheticBtn2", "limitLab", "redPoint", "redPoint1", "redPoint2", "costList"], + "$sC": "$eSk" + }, + "SynthesisItem2Skin$Skin161": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "alpha", "value": 0.5 } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisItem2Skin$Skin162": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "alpha", "value": 0.5 } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisItem2Skin$Skin163": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "alpha", "value": 0.5 } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisItemSkin": { + "$path": "resource/eui_skins/web/forge/SynthesisItemSkin.exml", + "$bs": { "currentState": "item4", "height": 119, "width": 700, "$eleC": ["_Image1", "_Group1", "_Group2", "_Group3", "_Group4", "_Group5", "_Button1", "sure", "redPoint", "limitLab"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "183,51,84,22", "source": "hecheng_bg2", "top": 0, "$t": "$eI" }, + "_Group1": { "width": 92, "x": 23.35, "y": 12, "$t": "$eG", "$eleC": ["item1", "name1", "_Image2"] }, + "item1": { "skinName": "ItemBaseSkin", "$t": "app.SynthesisItemBase" }, + "name1": { "horizontalCenter": -16, "size": 16, "stroke": 2, "text": "两仪魔器", "textAlign": "center", "textColor": 15064527, "y": 66, "$t": "$eL" }, + "_Image2": { "source": "bag_jia", "x": 70, "y": 20, "$t": "$eI" }, + "_Group2": { "width": 92, "x": 119, "y": 12, "$t": "$eG", "$eleC": ["item2", "name2", "_Image3"] }, + "item2": { "skinName": "ItemBaseSkin", "$t": "app.SynthesisItemBase" }, + "name2": { "horizontalCenter": -16, "size": 16, "stroke": 2, "text": "两仪魔器", "textAlign": "center", "textColor": 15064527, "y": 66, "$t": "$eL" }, + "_Image3": { "source": "bag_jia", "x": 70, "y": 20, "$t": "$eI" }, + "_Group3": { "width": 92, "x": 216, "y": 12, "$t": "$eG", "$eleC": ["item3", "name3", "_Image4"] }, + "item3": { "skinName": "ItemBaseSkin", "$t": "app.SynthesisItemBase" }, + "name3": { "horizontalCenter": -16, "size": 16, "stroke": 2, "text": "两仪魔器", "textAlign": "center", "textColor": 15064527, "y": 66, "$t": "$eL" }, + "_Image4": { "source": "bag_jia", "x": 70, "y": 20, "$t": "$eI" }, + "_Group4": { "width": 120, "x": 315, "y": 13, "$t": "$eG", "$eleC": ["item4", "name4", "_Image5"] }, + "item4": { "skinName": "ItemBaseSkin", "$t": "app.SynthesisItemBase" }, + "name4": { "horizontalCenter": -29, "size": 16, "stroke": 2, "text": "两仪魔器", "textAlign": "center", "textColor": 15064527, "y": 66, "$t": "$eL" }, + "_Image5": { "source": "com_jiantoux3", "x": 88, "y": 20, "$t": "$eI" }, + "_Group5": { "width": 64, "x": 459, "y": 12, "$t": "$eG", "$eleC": ["itemData", "itemName"] }, + "itemData": { "skinName": "ItemBaseSkin", "$t": "app.SynthesisItemBase" }, + "itemName": { "horizontalCenter": -1, "size": 16, "stroke": 2, "text": "两仪魔器", "textAlign": "center", "textColor": 15064527, "y": 66, "$t": "$eL" }, + "_Button1": { "label": "合 成", "skinName": "Btn9Skin", "visible": false, "x": 594, "y": 37, "$t": "$eB" }, + "sure": { "height": 44, "label": "第88天开放", "scaleX": 1, "scaleY": 1, "width": 113, "x": 570, "y": 36, "$t": "$eB", "skinName": "SynthesisItemSkin$Skin164" }, + "redPoint": { "visible": false, "x": 673.5, "y": 33.5, "$t": "app.RedDotControl" }, + "limitLab": { "right": 16, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": -2.5, "visible": false, "$t": "$eL" }, + "$sP": ["item1", "name1", "item2", "name2", "item3", "name3", "item4", "name4", "itemData", "itemName", "sure", "redPoint", "limitLab"], + "$s": { + "item4": { + "$ssP": [ + { "target": "_Group3", "name": "x", "value": 218.68 }, + { "target": "_Group4", "name": "x", "value": 320.36 } + ] + }, + "item3": { + "$ssP": [ + { "target": "_Group2", "name": "x", "value": 125.67 }, + { "target": "_Image4", "name": "source", "value": "com_jiantoux3" }, + { "target": "_Image4", "name": "x", "value": 95 }, + { "target": "_Image4", "name": "y", "value": 23.25 }, + { "target": "_Group3", "name": "x", "value": 229.34 }, + { "target": "_Group4", "name": "visible", "value": false }, + { "target": "_Group5", "name": "x", "value": 370.62 } + ] + }, + "item2": { + "$ssP": [ + { "target": "_Image2", "name": "x", "value": 76.67 }, + { "target": "_Image3", "name": "source", "value": "com_jiantoux3" }, + { "target": "_Image3", "name": "x", "value": 100 }, + { "target": "_Group2", "name": "x", "value": 132.34 }, + { "target": "_Group3", "name": "visible", "value": false }, + { "target": "_Group4", "name": "visible", "value": false }, + { "target": "_Group5", "name": "x", "value": 278.62 } + ] + }, + "item1": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "com_jiantoux3" }, + { "target": "_Image2", "name": "x", "value": 100 }, + { "target": "_Group2", "name": "visible", "value": false }, + { "target": "_Group3", "name": "visible", "value": false }, + { "target": "_Group4", "name": "visible", "value": false }, + { "target": "_Group5", "name": "x", "value": 200.62 } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisItemSkin$Skin164": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "alpha", "value": 0.5 } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisTab2Skin": { + "$path": "resource/eui_skins/web/forge/SynthesisTab2Skin.exml", + "$bs": { "height": 41, "width": 130, "$eleC": ["_Image1", "itemName", "redPoint"], "$sId": ["chosen"] }, + "_Image1": { "horizontalCenter": 0, "source": "com_yeqian_6", "verticalCenter": 0, "$t": "$eI" }, + "chosen": { "horizontalCenter": 0, "source": "com_yeqian_7", "verticalCenter": 0, "$t": "$eI" }, + "itemName": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "魔龙装备", "textColor": 15779990, "verticalCenter": -0.5, "$t": "$eL" }, + "redPoint": { "right": 4, "top": 4, "visible": false, "$t": "app.RedDotControl" }, + "$sP": ["chosen", "itemName", "redPoint"], + "$s": { + "up": { "$ssP": [{ "target": "itemName", "name": "textColor", "value": 8420211 }] }, + "down": { "$saI": [{ "target": "chosen", "property": "", "position": 2, "relativeTo": "itemName" }] } + }, + "$sC": "$eSk" + }, + "SynthesisTabSkin": { + "$path": "resource/eui_skins/web/forge/SynthesisTabSkin.exml", + "$bs": { "$eleC": ["_Group1"], "$sId": ["_Image2", "list"] }, + "_Group1": { "height": 51, "width": 139, "$t": "$eG", "$eleC": ["_Image1", "equipName", "redPoint"] }, + "_Image1": { "source": "tab_01_2", "$t": "$eI" }, + "_Image2": { "source": "tab_01_3", "$t": "$eI" }, + "equipName": { "horizontalCenter": 0.5, "size": 22, "stroke": 2, "text": "魔龙装备", "textColor": 15779990, "top": 16, "x": 23, "y": 11, "$t": "$eL" }, + "redPoint": { "right": 2, "top": 1, "visible": false, "$t": "app.RedDotControl" }, + "list": { "width": 130, "x": 5, "y": 48, "$t": "$eLs" }, + "$sP": ["equipName", "redPoint", "list"], + "$s": { + "clickUp": { "$ssP": [{ "target": "list", "name": "visible", "value": false }] }, + "clickDown": { + "$ssP": [ + { "target": "equipName", "name": "textColor", "value": 15064527 }, + { "target": "list", "name": "itemRendererSkinName", "value": "SynthesisTab2Skin" }, + { "target": "list", "name": "x", "value": 2 } + ], + "$saI": [ + { "target": "_Image2", "property": "_Group1", "position": 2, "relativeTo": "equipName" }, + { "target": "list", "property": "", "position": 1, "relativeTo": "" } + ] + } + }, + "$sC": "$eSk" + }, + "SynthesisViewSkin": { + "$path": "resource/eui_skins/web/forge/SynthesisViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["_Image1", "_Image2", "_Image3", "tabScroller", "itemScroller2", "itemScroller1", "isVisible"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 712, "scale9Grid": "10,9,3,3", "source": "com_bg_kuang_xian1", "top": 0, "visible": false, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 155, "right": 0, "scale9Grid": "10,9,2,3", "source": "com_bg_kuang_xian1", "top": 0, "visible": false, "$t": "$eI" }, + "_Image3": { "source": "com_bg_kuang_4_png", "x": 149, "y": -5, "$t": "$eI" }, + "tabScroller": { "bounces": false, "height": 541, "scrollPolicyH": "off", "width": 139, "x": 6, "y": 7, "$t": "$eS", "viewport": "TabList" }, + "TabList": { "anchorOffsetX": 0, "itemRendererSkinName": "SynthesisTabSkin", "width": 135, "x": 12, "y": 8, "$t": "$eLs" }, + "itemScroller2": { "height": 546, "width": 700, "x": 162, "y": 6, "$t": "$eS", "viewport": "itemList2" }, + "itemList2": { "itemRendererSkinName": "SynthesisItemSkin", "y": -1, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 1, "verticalGap": 1, "$t": "$eTL" }, + "itemScroller1": { "height": 546, "width": 700, "x": 162, "y": 6, "$t": "$eS", "viewport": "itemList1" }, + "itemList1": { "itemRendererSkinName": "SynthesisItem2Skin", "y": -1, "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "horizontalGap": 7, "paddingLeft": 8, "requestedColumnCount": 2, "verticalGap": 6, "$t": "$eTL" }, + "isVisible": { "horizontalCenter": 91, "size": 23, "text": "该类型物品合成即将开放,敬请期待", "textColor": 6028300, "verticalCenter": -36, "visible": false, "$t": "$eL" }, + "$sP": ["TabList", "tabScroller", "itemList2", "itemScroller2", "itemList1", "itemScroller1", "isVisible"], + "$sC": "$eSk" + }, + "FriendAddViewSkin": { + "$path": "resource/eui_skins/web/friend/FriendAddViewSkin.exml", + "$bs": { "height": 345, "width": 478, "$eleC": ["dragDropUI", "_Image1", "_Image2", "playerNameText", "typeLb", "ConfirmBtn"] }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 281, "scale9Grid": "4,4,28,28", "source": "bg_bg2", "visible": false, "width": 449, "x": 15, "y": 44, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 32, "scale9Grid": "10,10,2,1", "source": "ltk_4", "width": 360, "x": 63, "y": 141, "$t": "$eI" }, + "playerNameText": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 32, "skinName": "TextInputSkin", "width": 360, "x": 63, "y": 141, "$t": "$eTI" }, + "typeLb": { "horizontalCenter": 0, "size": 18, "text": "", "y": 98, "$t": "$eL" }, + "ConfirmBtn": { "anchorOffsetY": 0, "height": 44, "label": "", "width": 109, "x": 189, "y": 283, "$t": "$eB", "skinName": "FriendAddViewSkin$Skin165" }, + "$sP": ["dragDropUI", "playerNameText", "typeLb", "ConfirmBtn"], + "$sC": "$eSk" + }, + "FriendAddViewSkin$Skin165": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "FriendBlackListItemSkin": { + "$path": "resource/eui_skins/web/friend/FriendBlackListItemSkin.exml", + "$bs": { "height": 48, "width": 867, "$eleC": ["state_1", "state_2", "selected", "playerName", "playerLevel"] }, + "state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "selected": { "scale9Grid": "22,22,2,1", "source": "friend_json.liebiaoxuanzhong", "visible": false, "width": 863, "x": 1.5, "y": -1, "$t": "$eI" }, + "playerName": { "stroke": 1, "text": "", "textColor": 14471870, "x": 186, "y": 8, "$t": "$eL" }, + "playerLevel": { "stroke": 1, "text": "", "textColor": 14471870, "x": 636, "y": 8, "$t": "$eL" }, + "$sP": ["state_1", "state_2", "selected", "playerName", "playerLevel"], + "$sC": "$eSk" + }, + "FriendColorBtnSkin": { + "$path": "resource/eui_skins/web/friend/FriendColorBtnSkin.exml", + "$bs": { "height": 32, "width": 92, "$eleC": ["colorBtn"] }, + "colorBtn": { "source": "szys_1", "width": 92, "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["colorBtn"], + "$sC": "$eSk" + }, + "FriendColorMenuViewSkin": { + "$path": "resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml", + "$bs": { "height": 134, "width": 98, "$eleC": ["bg", "gList"] }, + "bg": { "height": 134, "scale9Grid": "10,10,10,10", "source": "9s_bg_2", "visible": true, "width": 98, "x": 0, "y": 1, "$t": "$eI" }, + "gList": { "anchorOffsetY": 0, "height": 128, "itemRendererSkinName": "FriendColorBtnSkin", "width": 92, "x": 3.01, "y": 4, "$t": "$eLs" }, + "$sP": ["bg", "gList"], + "$sC": "$eSk" + }, + "FriendCommonItemSkin": { + "$path": "resource/eui_skins/web/friend/FriendCommonItemSkin.exml", + "$bs": { "height": 48, "width": 858, "$eleC": ["gp_1", "gp_2", "gp_3", "gp_4", "gp_5"] }, + "gp_1": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfession", "playerGuild"] }, + "state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "playerName": { "horizontalCenter": -309, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "playerLevel": { "horizontalCenter": -109, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "playerProfession": { "horizontalCenter": 76, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 492, "y": 16, "$t": "$eL" }, + "playerGuild": { "horizontalCenter": 301, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "x": 726, "y": 16, "$t": "$eL" }, + "gp_2": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["black_state_1", "black_state_2", "selectedBg2", "black_playerName", "black_playerLevel"] }, + "black_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "black_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg2": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "black_playerName": { "horizontalCenter": -214, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "black_playerLevel": { "horizontalCenter": 221, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "gp_3": { + "height": 48, + "width": 858, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["concern_state_1", "concern_state_2", "selectedBg1", "concern_playerName", "concern_playerLevel", "concern_playerProfession", "concern_colorBg"] + }, + "concern_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "concern_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg1": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "concern_playerName": { "horizontalCenter": -309, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "concern_playerLevel": { "horizontalCenter": -109, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "concern_playerProfession": { "horizontalCenter": 75.5, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 492, "y": 16, "$t": "$eL" }, + "concern_colorBg": { "horizontalCenter": 297.5, "source": "szys_1", "verticalCenter": 0, "$t": "$eI" }, + "gp_4": { + "height": 48, + "width": 858, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["near_state_1", "near_state_2", "selectedBg3", "near_playerName", "near_playerLevel", "near_playerProfession", "near_playerSex", "near_playerGuild"] + }, + "near_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "near_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg3": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "near_playerName": { "horizontalCenter": -309, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "near_playerLevel": { "horizontalCenter": -128, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 1, "x": 310, "y": 16, "$t": "$eL" }, + "near_playerProfession": { "horizontalCenter": -2.5, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 1, "x": 492, "y": 16, "$t": "$eL" }, + "near_playerSex": { "horizontalCenter": 91, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 1, "x": 726, "$t": "$eL" }, + "near_playerGuild": { "horizontalCenter": 282, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 736, "$t": "$eL" }, + "gp_5": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["report_state_1", "report_state_2", "selectedBg0", "report_playerName", "report_timer"] }, + "report_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "report_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg0": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "report_playerName": { "left": 24, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "y": 13, "$t": "$eL" }, + "report_timer": { "left": 634, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "y": 14, "$t": "$eL" }, + "$sP": [ + "state_1", + "state_2", + "selectedBg", + "playerName", + "playerLevel", + "playerProfession", + "playerGuild", + "gp_1", + "black_state_1", + "black_state_2", + "selectedBg2", + "black_playerName", + "black_playerLevel", + "gp_2", + "concern_state_1", + "concern_state_2", + "selectedBg1", + "concern_playerName", + "concern_playerLevel", + "concern_playerProfession", + "concern_colorBg", + "gp_3", + "near_state_1", + "near_state_2", + "selectedBg3", + "near_playerName", + "near_playerLevel", + "near_playerProfession", + "near_playerSex", + "near_playerGuild", + "gp_4", + "report_state_1", + "report_state_2", + "selectedBg0", + "report_playerName", + "report_timer", + "gp_5" + ], + "$sC": "$eSk" + }, + "FriendFunMenuBtnSkin": { + "$path": "resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml", + "$bs": { "height": 44, "width": 109, "$eleC": ["menuBtn"] }, + "menuBtn": { "label": "设置颜色", "skinName": "Btn9Skin", "x": 0, "y": 0, "$t": "$eB" }, + "$sP": ["menuBtn"], + "$sC": "$eSk" + }, + "FriendFunMenuViewSkin": { + "$path": "resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml", + "$bs": { "$eleC": ["bg", "gList"] }, + "bg": { "bottom": -4, "left": -5, "right": -5, "scale9Grid": "12,12,1,1", "source": "9s_bg_2", "top": -4, "visible": true, "$t": "$eI" }, + "gList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "FriendFunMenuBtnSkin", "x": 0, "y": 5, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 3, "$t": "$eVL" }, + "$sP": ["bg", "gList"], + "$sC": "$eSk" + }, + "FriendHederSkin": { + "$path": "resource/eui_skins/web/friend/FriendHederSkin.exml", + "$bs": { "height": 42, "width": 862, "$eleC": ["gHeader0", "gHeader1", "gHeader2", "gHeader3", "gHeader4", "gHeader5"] }, + "gHeader0": { "height": 42, "width": 862, "x": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "txt0PlayerName", "txt0Lv", "txt0Job", "txt0Guild"] }, + "_Image1": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image2": { "source": "fd_top_fenge", "x": 232, "y": 0, "$t": "$eI" }, + "_Image3": { "source": "fd_top_fenge", "x": 414, "y": 0, "$t": "$eI" }, + "_Image4": { "source": "fd_top_fenge", "x": 597.53, "y": 0, "$t": "$eI" }, + "txt0PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 91, "y": 11, "$t": "$eL" }, + "txt0Lv": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 305, "y": 11, "$t": "$eL" }, + "txt0Job": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 489, "y": 11, "$t": "$eL" }, + "txt0Guild": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 689, "y": 11, "$t": "$eL" }, + "gHeader1": { + "height": 42, + "width": 862, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image5", "_Image6", "_Image7", "_Image8", "_Image9", "txt1PlayerName", "txt1Lv", "txt1Job", "txt1Sex", "txt1Guild"] + }, + "_Image5": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image6": { "source": "fd_top_fenge", "x": 232, "y": 0, "$t": "$eI" }, + "_Image7": { "source": "fd_top_fenge", "x": 381, "y": 0, "$t": "$eI" }, + "_Image8": { "source": "fd_top_fenge", "x": 479, "y": 0, "$t": "$eI" }, + "_Image9": { "source": "fd_top_fenge", "x": 572, "y": 0, "$t": "$eI" }, + "txt1PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 91, "y": 11, "$t": "$eL" }, + "txt1Lv": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 284, "y": 11, "$t": "$eL" }, + "txt1Job": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 411, "y": 11, "$t": "$eL" }, + "txt1Sex": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 505, "y": 11, "$t": "$eL" }, + "txt1Guild": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 672, "y": 11, "$t": "$eL" }, + "gHeader2": { "height": 42, "width": 862, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image10", "_Image11", "_Image12", "_Image13", "txt2PlayerName", "txt2Lv", "txt2Job", "txt2ShowColor"] }, + "_Image10": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image11": { "source": "fd_top_fenge", "x": 232, "y": 0, "$t": "$eI" }, + "_Image12": { "source": "fd_top_fenge", "x": 414, "y": 0, "$t": "$eI" }, + "_Image13": { "source": "fd_top_fenge", "x": 597.53, "y": 0, "$t": "$eI" }, + "txt2PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 91, "y": 11, "$t": "$eL" }, + "txt2Lv": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 305, "y": 11, "$t": "$eL" }, + "txt2Job": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 489, "y": 11, "$t": "$eL" }, + "txt2ShowColor": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 689, "y": 11, "$t": "$eL" }, + "gHeader3": { "height": 42, "width": 862, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image14", "_Image15", "txt3PlayerName", "txt3Lv"] }, + "_Image14": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image15": { "source": "fd_top_fenge", "x": 433, "y": 0, "$t": "$eI" }, + "txt3PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 186, "y": 11, "$t": "$eL" }, + "txt3Lv": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 636, "y": 11, "$t": "$eL" }, + "gHeader4": { "height": 42, "width": 862, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image16", "_Image17", "_Image18", "_Image19", "txt4PlayerName", "txt4Lv", "txt4Job", "txt4Sex"] }, + "_Image16": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image17": { "source": "fd_top_fenge", "x": 232, "y": 0, "$t": "$eI" }, + "_Image18": { "source": "fd_top_fenge", "x": 414, "y": 0, "$t": "$eI" }, + "_Image19": { "source": "fd_top_fenge", "x": 616, "y": 0, "$t": "$eI" }, + "txt4PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 91, "y": 11, "$t": "$eL" }, + "txt4Lv": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 305, "y": 11, "$t": "$eL" }, + "txt4Job": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 489, "y": 11, "$t": "$eL" }, + "txt4Sex": { "border": false, "horizontalCenter": 305, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 1, "$t": "$eL" }, + "gHeader5": { "height": 42, "width": 862, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image20", "_Image21", "txt5PlayerName", "txt5Date"] }, + "_Image20": { "source": "fd_top_bg", "$t": "$eI" }, + "_Image21": { "source": "fd_top_fenge", "x": 556, "y": 0, "$t": "$eI" }, + "txt5PlayerName": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 186, "y": 11, "$t": "$eL" }, + "txt5Date": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 636, "y": 11, "$t": "$eL" }, + "$sP": [ + "txt0PlayerName", + "txt0Lv", + "txt0Job", + "txt0Guild", + "gHeader0", + "txt1PlayerName", + "txt1Lv", + "txt1Job", + "txt1Sex", + "txt1Guild", + "gHeader1", + "txt2PlayerName", + "txt2Lv", + "txt2Job", + "txt2ShowColor", + "gHeader2", + "txt3PlayerName", + "txt3Lv", + "gHeader3", + "txt4PlayerName", + "txt4Lv", + "txt4Job", + "txt4Sex", + "gHeader4", + "txt5PlayerName", + "txt5Date", + "gHeader5" + ], + "$sC": "$eSk" + }, + "FriendQQItemSkin": { + "$path": "resource/eui_skins/web/friend/FriendQQItemSkin.exml", + "$bs": { "height": 48, "width": 858, "$eleC": ["gp_1", "gp_2", "gp_3", "gp_4", "gp_5", "blueImg", "blueYearImg"] }, + "gp_1": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfession", "playerGuild"] }, + "state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "playerName": { "horizontalCenter": -290, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 1, "x": 65, "y": 16, "$t": "$eL" }, + "playerLevel": { "horizontalCenter": -109, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "playerProfession": { "horizontalCenter": 76, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 492, "y": 16, "$t": "$eL" }, + "playerGuild": { "horizontalCenter": 301, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "x": 726, "y": 16, "$t": "$eL" }, + "gp_2": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["black_state_1", "black_state_2", "selectedBg2", "black_playerName", "black_playerLevel"] }, + "black_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "black_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg2": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "black_playerName": { "horizontalCenter": -214, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "black_playerLevel": { "horizontalCenter": 221, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "gp_3": { + "height": 48, + "width": 858, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["concern_state_1", "concern_state_2", "selectedBg1", "concern_playerName", "concern_playerLevel", "concern_playerProfession", "concern_colorBg"] + }, + "concern_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "concern_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg1": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "concern_playerName": { "horizontalCenter": -290, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "concern_playerLevel": { "horizontalCenter": -109, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "concern_playerProfession": { "horizontalCenter": 75.5, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 492, "y": 16, "$t": "$eL" }, + "concern_colorBg": { "horizontalCenter": 297.5, "source": "szys_1", "verticalCenter": 0, "$t": "$eI" }, + "gp_4": { + "height": 48, + "width": 858, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["near_state_1", "near_state_2", "selectedBg3", "near_playerName", "near_playerLevel", "near_playerProfession", "near_playerSex", "near_playerGuild"] + }, + "near_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "near_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg3": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "near_playerName": { "horizontalCenter": -290, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "near_playerLevel": { "horizontalCenter": -128, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 1, "x": 310, "y": 16, "$t": "$eL" }, + "near_playerProfession": { "horizontalCenter": -2.5, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 1, "x": 492, "y": 16, "$t": "$eL" }, + "near_playerSex": { "horizontalCenter": 91, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 1, "x": 726, "$t": "$eL" }, + "near_playerGuild": { "horizontalCenter": 282, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "verticalCenter": 0.5, "x": 736, "$t": "$eL" }, + "gp_5": { "height": 48, "width": 858, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["report_state_1", "report_state_2", "selectedBg0", "report_playerName", "report_timer"] }, + "report_state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "report_state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 858, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg0": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "visible": false, "width": 853, "x": 1.5, "y": -1, "$t": "$eI" }, + "report_playerName": { "left": 24, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "y": 13, "$t": "$eL" }, + "report_timer": { "left": 634, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "y": 14, "$t": "$eL" }, + "blueImg": { "source": "lz_hh1", "verticalCenter": 0, "visible": false, "x": 3, "$t": "$eI" }, + "blueYearImg": { "height": 20, "source": "lz_nf", "verticalCenter": 0, "visible": false, "width": 20, "x": 39, "$t": "$eI" }, + "$sP": [ + "state_1", + "state_2", + "selectedBg", + "playerName", + "playerLevel", + "playerProfession", + "playerGuild", + "gp_1", + "black_state_1", + "black_state_2", + "selectedBg2", + "black_playerName", + "black_playerLevel", + "gp_2", + "concern_state_1", + "concern_state_2", + "selectedBg1", + "concern_playerName", + "concern_playerLevel", + "concern_playerProfession", + "concern_colorBg", + "gp_3", + "near_state_1", + "near_state_2", + "selectedBg3", + "near_playerName", + "near_playerLevel", + "near_playerProfession", + "near_playerSex", + "near_playerGuild", + "gp_4", + "report_state_1", + "report_state_2", + "selectedBg0", + "report_playerName", + "report_timer", + "gp_5", + "blueImg", + "blueYearImg" + ], + "$sC": "$eSk" + }, + "FriendViewPageSkin": { + "$path": "resource/eui_skins/web/friend/FriendViewPageSkin.exml", + "$bs": { "height": 565, "width": 862, "$eleC": ["gHeader", "gp", "friendNumGrp"] }, + "gHeader": { "height": 42, "width": 858, "x": 0, "$t": "$eG", "$eleC": ["header"] }, + "header": { "anchorOffsetX": 0, "height": 42, "skinName": "FriendHederSkin", "width": 862, "x": -0.5, "$t": "app.FriendHeaderView" }, + "gp": { "height": 443, "width": 858, "x": 1, "y": 41, "$t": "$eG", "$eleC": ["scroller", "noListTipsLb"] }, + "scroller": { "height": 440, "scrollPolicyH": "off", "width": 858, "$t": "$eS", "viewport": "gList" }, + "gList": { "itemRendererSkinName": "FriendCommonItemSkin", "$t": "$eLs" }, + "noListTipsLb": { + "horizontalCenter": 0, + "lineSpacing": 5, + "size": 24, + "stroke": 2, + "text": "当前未添加玩家成为好友\n快去添加吧", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "friendNumGrp": { "x": 40.36, "y": 523.35, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["friendNumLab", "onLineFriendLab"] }, + "_HorizontalLayout1": { "gap": 96, "$t": "$eHL" }, + "friendNumLab": { "size": 22, "stroke": 2, "text": "好友数量:30/50", "textColor": 15064527, "verticalAlign": "middle", "x": 5.01, "y": 22, "$t": "$eL" }, + "onLineFriendLab": { "size": 22, "stroke": 2, "text": "在线好友:5", "textColor": 15064527, "verticalAlign": "middle", "x": 15.01, "y": 32, "$t": "$eL" }, + "$sP": ["header", "gHeader", "gList", "scroller", "noListTipsLb", "gp", "friendNumLab", "onLineFriendLab", "friendNumGrp"], + "$sC": "$eSk" + }, + "FriendViewSkin": { + "$path": "resource/eui_skins/web/friend/FriendViewSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "tabBar", "_Image1", "_Group1", "ruleTipsButton"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "tabBar": { "itemRendererSkinName": "CommonTarBtnWinSkin2", "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -15, "$t": "$eVL" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 496.25, "scale9Grid": "20,17,1,2", "source": "com_bg_kuang_6_png", "width": 862, "x": 24, "y": 55.75, "$t": "$eI" }, + "_Group1": { "height": 567, "width": 873, "x": 19, "y": 51, "$t": "$eG", "$eleC": ["page", "firendGp_0", "firendGp_1", "firendGp_2", "firendGp_3", "firendGp_4", "firendGp_5"] }, + "page": { "skinName": "FriendViewPageSkin", "width": 862, "x": 5.66, "y": 2, "$t": "app.FriendViewPage" }, + "firendGp_0": { "x": 625, "y": 512, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["addBtn", "operationBtn"] }, + "_HorizontalLayout1": { "gap": 13, "$t": "$eHL" }, + "addBtn": { "label": "添 加", "skinName": "Btn9Skin", "x": 78, "y": 6, "$t": "$eB" }, + "operationBtn": { "label": "操作", "skinName": "Btn9Skin", "x": 203, "y": 6, "$t": "$eB" }, + "firendGp_1": { "x": 749, "y": 512, "$t": "$eG", "$eleC": ["operationBtn0"] }, + "operationBtn0": { "label": "操 作", "skinName": "Btn9Skin", "$t": "$eB" }, + "firendGp_2": { "x": 503, "y": 512, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["setColorBtn", "delConcernBtn", "addConcernBtn"] }, + "_HorizontalLayout2": { "gap": 13, "$t": "$eHL" }, + "setColorBtn": { "label": "设置颜色", "skinName": "Btn9Skin", "x": 15, "y": 6, "$t": "$eB" }, + "delConcernBtn": { "label": "取消关注", "skinName": "Btn9Skin", "x": 236, "y": 6, "$t": "$eB" }, + "addConcernBtn": { "label": "添加关注", "skinName": "Btn9Skin", "x": 125, "y": 6, "$t": "$eB" }, + "firendGp_3": { "x": 625, "y": 513, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["addBlackBtn", "blackDelBtn"] }, + "_HorizontalLayout3": { "gap": 13, "$t": "$eHL" }, + "addBlackBtn": { "label": "添 加", "skinName": "Btn9Skin", "x": 78, "y": 6, "$t": "$eB" }, + "blackDelBtn": { "label": "删 除", "skinName": "Btn9Skin", "x": 203, "y": 6, "$t": "$eB" }, + "firendGp_4": { "horizontalCenter": 241, "verticalCenter": 250, "$t": "$eG", "layout": "_HorizontalLayout4", "$eleC": ["allAcceptBtn", "acceptBtn", "rejectBtn"] }, + "_HorizontalLayout4": { "gap": 13, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "allAcceptBtn": { "label": "全部接受", "skinName": "Btn9Skin", "x": 78, "y": 6, "$t": "$eB" }, + "acceptBtn": { "label": "接 受", "skinName": "Btn9Skin", "x": 203, "y": 6, "$t": "$eB" }, + "rejectBtn": { "label": "拒 绝", "skinName": "Btn9Skin", "x": 213, "y": 16, "$t": "$eB" }, + "firendGp_5": { "x": 746, "y": 513, "$t": "$eG", "$eleC": ["operationBtn5"] }, + "operationBtn5": { "label": "操作", "skinName": "Btn9Skin", "$t": "$eB" }, + "ruleTipsButton": { "label": "Button", "ruleId": "10", "visible": false, "x": 60, "y": 574, "$t": "app.RuleTipsButton" }, + "$sP": [ + "dragDropUI", + "tabBar", + "page", + "addBtn", + "operationBtn", + "firendGp_0", + "operationBtn0", + "firendGp_1", + "setColorBtn", + "delConcernBtn", + "addConcernBtn", + "firendGp_2", + "addBlackBtn", + "blackDelBtn", + "firendGp_3", + "allAcceptBtn", + "acceptBtn", + "rejectBtn", + "firendGp_4", + "operationBtn5", + "firendGp_5", + "ruleTipsButton" + ], + "$sC": "$eSk" + }, + "debugViewSkin": { + "$path": "resource/eui_skins/web/fuben/debugViewSkin.exml", + "$bs": { + "height": 625, + "width": 943, + "$eleC": [ + "dragDropUI", + "_Rect1", + "btnSent", + "msgInfo", + "sysId", + "msgId", + "inputTxt1", + "btn1", + "inputTxt2", + "btn2", + "btn3", + "btn4", + "_Label1", + "_Label2", + "_Scroller1", + "_Scroller2", + "_Label3", + "_Label4", + "_Label5", + "group", + "charSum" + ] + }, + "dragDropUI": { "anchorOffsetX": 0, "anchorOffsetY": 0, "currentState": "default9", "percentHeight": 100, "skinName": "UIViewFrameSkin", "percentWidth": 100, "$t": "app.UIViewFrame" }, + "_Rect1": { "anchorOffsetX": 0, "bottom": 30, "fillColor": 9736079, "left": 30, "right": 30, "top": 30, "$t": "$eR" }, + "btnSent": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 30, "label": "发送", "skinName": "Btn11Skin", "width": 105, "x": 347, "y": 378, "$t": "$eB" }, + "msgInfo": { "anchorOffsetX": 0, "anchorOffsetY": 0, "border": true, "height": 101, "size": 30, "text": "", "width": 278, "x": 53, "y": 341, "$t": "$eET" }, + "sysId": { "anchorOffsetX": 0, "border": true, "restrict": "0-9", "size": 30, "text": "", "width": 80, "x": 123, "y": 257, "$t": "$eET" }, + "msgId": { "anchorOffsetX": 0, "border": true, "restrict": "0-9", "size": 30, "text": "", "width": 80, "x": 302.856, "y": 256, "$t": "$eET" }, + "inputTxt1": { "anchorOffsetX": 0, "border": true, "size": 30, "text": "", "width": 127, "x": 52, "y": 38, "$t": "$eET" }, + "btn1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 30, "label": "进入副本", "skinName": "Btn11Skin", "width": 105, "x": 197, "y": 38, "$t": "$eB" }, + "inputTxt2": { "anchorOffsetX": 0, "border": true, "size": 30, "text": "", "width": 127, "x": 52, "y": 78, "$t": "$eET" }, + "btn2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 30, "label": "退出副本", "skinName": "Btn11Skin", "width": 105, "x": 197, "y": 78, "$t": "$eB" }, + "btn3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 30, "label": "gpu size", "skinName": "Btn11Skin", "width": 105, "x": 197, "y": 118, "$t": "$eB" }, + "btn4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 30, "label": "实体数量", "skinName": "Btn11Skin", "width": 105, "x": 197, "y": 158, "$t": "$eB" }, + "_Label1": { "anchorOffsetX": 0, "text": "发送", "textAlign": "center", "width": 207, "x": 470, "y": 41, "$t": "$eL" }, + "_Label2": { "anchorOffsetX": 0, "text": "接收", "textAlign": "center", "width": 207, "x": 700, "y": 41, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 496, "width": 199, "x": 473, "y": 88, "$t": "$eS", "viewport": "sentList" }, + "sentList": { "itemRendererSkinName": "LabelSkinSkin", "scaleX": 1, "scaleY": 1, "x": 69, "y": 184, "$t": "$eLs" }, + "_Scroller2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 496, "width": 199, "x": 703, "y": 88, "$t": "$eS", "viewport": "getList" }, + "getList": { "itemRendererSkinName": "LabelSkinSkin", "scaleX": 1, "scaleY": 1, "x": 69, "y": 184, "$t": "$eLs" }, + "_Label3": { "text": "sysId", "x": 46, "y": 257, "$t": "$eL" }, + "_Label4": { "text": "msgId", "x": 209, "y": 255.11, "$t": "$eL" }, + "_Label5": { "anchorOffsetX": 0, "size": 18, "text": "消息内容如:writeUnsignedInt=32;writeUnsignedShort:16", "width": 383, "x": 52, "y": 296, "$t": "$eL" }, + "group": { "anchorOffsetX": 0, "anchorOffsetY": 0, "x": 293, "y": 502, "$t": "$eG" }, + "charSum": { "size": 20, "text": "Label", "x": 53, "y": 162, "$t": "$eL" }, + "$sP": ["dragDropUI", "btnSent", "msgInfo", "sysId", "msgId", "inputTxt1", "btn1", "inputTxt2", "btn2", "btn3", "btn4", "sentList", "getList", "group", "charSum"], + "$sC": "$eSk" + }, + "FubenRankItemSkin": { + "$path": "resource/eui_skins/web/fuben/FubenRankItemSkin.exml", + "$bs": { "height": 39, "width": 380, "$eleC": ["bg", "rankImage", "numLabel", "label1", "label2"] }, + "bg": { "percentHeight": 100, "scale9Grid": "2,2,16,16", "smoothing": false, "source": "bg_quyu_1", "percentWidth": 100, "$t": "$eI" }, + "rankImage": { "source": "Act_pm_1", "x": 20, "y": 2, "$t": "$eI" }, + "numLabel": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 31, "y": 11, "$t": "$eL" }, + "label1": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 121, "y": 11, "$t": "$eL" }, + "label2": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 302, "y": 11, "$t": "$eL" }, + "$sP": ["bg", "rankImage", "numLabel", "label1", "label2"], + "$sC": "$eSk" + }, + "FubenRankPagSkin": { + "$path": "resource/eui_skins/web/fuben/FubenRankPagSkin.exml", + "$bs": { "height": 450, "width": 382, "$eleC": ["label1", "label2", "label3", "_Image1", "_Image2", "_Scroller1"] }, + "label1": { "size": 20, "stroke": 2, "text": "排名", "textColor": 15779990, "x": 24, "y": 10, "$t": "$eL" }, + "label2": { "size": 20, "stroke": 2, "text": "积分", "textColor": 15779990, "x": 319, "y": 10, "$t": "$eL" }, + "label3": { "size": 20, "stroke": 2, "text": "角色名称", "textColor": 15779990, "x": 157, "y": 10, "$t": "$eL" }, + "_Image1": { "smoothing": false, "source": "common_liebiaoding_fenge", "x": 87, "y": -1, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "common_liebiaoding_fenge", "x": 285, "y": -1, "$t": "$eI" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 407, "scrollPolicyH": "off", "width": 378, "x": 2, "y": 41, "$t": "$eS", "viewport": "list" }, + "list": { "height": 200, "itemRendererSkinName": "FubenScoreItemSkin", "width": 200, "x": -1, "y": 134, "$t": "$eLs" }, + "$sP": ["label1", "label2", "label3", "list"], + "$sC": "$eSk" + }, + "FubenRankSkin": { + "$path": "resource/eui_skins/web/fuben/FubenRankSkin.exml", + "$bs": { "height": 580, "width": 456, "$eleC": ["dragDropUI", "_Image1", "tabBar", "myRank", "myScore", "myShaBakScore", "pagGroup"] }, + "dragDropUI": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 578, "skinName": "ViewBgWin4Skin", "width": 431, "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "smoothing": false, "source": "common_liebiaoding_bg", "width": 384, "x": 24, "y": 54, "$t": "$eI" }, + "tabBar": { "itemRendererSkinName": "CommonTarBtnWinSkin2", "width": 45, "x": 424, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 4, "$t": "$eVL" }, + "myRank": { "border": false, "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "x": 49, "y": 521, "$t": "$eL" }, + "myScore": { "anchorOffsetX": 0, "anchorOffsetY": 0, "border": false, "right": 65, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "y": 521, "$t": "$eL" }, + "myShaBakScore": { "anchorOffsetX": 0, "anchorOffsetY": 0, "border": false, "right": 65, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15779990, "y": 521, "$t": "$eL" }, + "pagGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 450, "width": 382, "x": 24, "y": 56, "$t": "$eG" }, + "$sP": ["dragDropUI", "tabBar", "myRank", "myScore", "myShaBakScore", "pagGroup"], + "$sC": "$eSk" + }, + "FubenScoreItemSkin": { + "$path": "resource/eui_skins/web/fuben/FubenScoreItemSkin.exml", + "$bs": { "height": 78, "width": 380, "$eleC": ["bg", "rankImage", "numLabel", "list"] }, + "bg": { "percentHeight": 100, "scale9Grid": "2,2,16,16", "smoothing": false, "source": "bg_quyu_1", "percentWidth": 100, "$t": "$eI" }, + "rankImage": { "source": "Act_pm_1", "verticalCenter": 0, "visible": false, "x": 20, "$t": "$eI" }, + "numLabel": { "size": 18, "stroke": 2, "text": "60", "textColor": 15064527, "verticalCenter": 0, "x": 29, "$t": "$eL" }, + "list": { "height": 62, "itemRendererSkinName": "ItemBaseSkin", "width": 268, "x": 108, "y": 5, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "$sP": ["bg", "rankImage", "numLabel", "list"], + "$sC": "$eSk" + }, + "FubenScoreSkin": { + "$path": "resource/eui_skins/web/fuben/FubenScoreSkin.exml", + "$bs": { "height": 450, "width": 382, "$eleC": ["_Image1", "label1", "label2", "rankLabel0", "rankLabel1", "_Scroller1"] }, + "_Image1": { "smoothing": false, "source": "common_liebiaoding_fenge", "x": 98, "y": -1, "$t": "$eI" }, + "label1": { "horizontalCenter": -137, "size": 20, "stroke": 2, "text": "积分", "textColor": 15779990, "top": 11, "$t": "$eL" }, + "label2": { "horizontalCenter": 51, "size": 20, "stroke": 2, "text": "奖励", "textColor": 15779990, "top": 11, "$t": "$eL" }, + "rankLabel0": { "bold": true, "border": false, "size": 22, "stroke": 1, "text": "", "textColor": 13744500, "x": 30, "y": 12, "$t": "$eL" }, + "rankLabel1": { "bold": true, "border": false, "size": 22, "stroke": 1, "text": "", "textColor": 13744500, "x": 220, "y": 12, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "height": 407, "scrollPolicyH": "off", "width": 378, "x": 2, "y": 41, "$t": "$eS", "viewport": "list" }, + "list": { "height": 200, "itemRendererSkinName": "FubenScoreItemSkin", "width": 200, "x": 169, "y": 134, "$t": "$eLs" }, + "$sP": ["label1", "label2", "rankLabel0", "rankLabel1", "list"], + "$sC": "$eSk" + }, + "FubenSkin": { + "$path": "resource/eui_skins/web/fuben/FubenSkin.exml", + "$bs": { "height": 444, "$eleC": ["timeGrp", "rankGroup"] }, + "timeGrp": { "height": 73, "touchChildren": false, "touchEnabled": false, "width": 288, "$t": "$eG", "$eleC": ["campGrp", "actGrp", "waveNumGrp", "monsterGrp", "crossSeverBossLab"] }, + "campGrp": { "height": 31, "touchEnabled": false, "width": 281, "x": 4, "y": 42, "$t": "$eG", "$eleC": ["_Image1", "campTime"] }, + "_Image1": { "height": 31, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "width": 281, "$t": "$eI" }, + "campTime": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 1.5, "$t": "$eL" }, + "actGrp": { "height": 31, "touchEnabled": false, "width": 281, "x": 4, "y": 6, "$t": "$eG", "$eleC": ["_Image2", "lbDctyImg", "actTime", "lbDcty"] }, + "_Image2": { "height": 31, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "width": 281, "$t": "$eI" }, + "lbDctyImg": { "height": 31, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "visible": false, "width": 281, "y": 32, "$t": "$eI" }, + "actTime": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "lbDcty": { "horizontalCenter": 0, "lineSpacing": 4, "size": 20, "stroke": 2, "text": "地图中央NPC可前往下一层", "textColor": 2682369, "visible": false, "y": 37, "$t": "$eL" }, + "waveNumGrp": { "height": 31, "touchEnabled": false, "visible": false, "width": 281, "x": 4, "y": 78, "$t": "$eG", "$eleC": ["_Image3", "waveNum"] }, + "_Image3": { "height": 31, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "width": 281, "$t": "$eI" }, + "waveNum": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "monsterGrp": { "height": 31, "touchEnabled": false, "visible": false, "width": 281, "x": 4, "y": 114, "$t": "$eG", "$eleC": ["_Image4", "monsterNum"] }, + "_Image4": { "height": 31, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "width": 281, "$t": "$eI" }, + "monsterNum": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 1.5, "$t": "$eL" }, + "crossSeverBossLab": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "双击角色名攻击", "textColor": 16742144, "visible": false, "y": 47, "$t": "$eL" }, + "rankGroup": { + "height": 243, + "touchChildren": true, + "touchEnabled": false, + "width": 288, + "y": 80, + "$t": "$eG", + "$eleC": ["_Image5", "_Image6", "_Group1", "fbLabel1", "fbLabel3", "myScore", "myRank", "rankGrp0", "rankGrp1", "rankGrp2", "rankGrp3", "boxGroup", "escapeGroup"] + }, + "_Image5": { "height": 241, "scale9Grid": "11,11,2,2", "source": "9s_tipsbg", "touchEnabled": false, "width": 289, "$t": "$eI" }, + "_Image6": { "height": 241, "scale9Grid": "13,14,3,2", "source": "9s_tipsk", "touchEnabled": false, "width": 289, "$t": "$eI" }, + "_Group1": { "x": 192, "y": 14, "$t": "$eG", "$eleC": ["fbLabel2", "_Rect1"] }, + "fbLabel2": { "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "$t": "$eL" }, + "_Rect1": { "bottom": 0, "fillColor": 2682369, "height": 1, "percentWidth": 100, "$t": "$eR" }, + "fbLabel1": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "touchEnabled": false, "x": 15, "y": 14, "$t": "$eL" }, + "fbLabel3": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "touchEnabled": false, "x": 48.8, "y": 208, "$t": "$eL" }, + "myScore": { "right": 18, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "touchEnabled": false, "y": 208, "$t": "$eL" }, + "myRank": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "touchEnabled": false, "x": 23, "y": 208, "$t": "$eL" }, + "rankGrp0": { + "name": "group0", + "touchChildren": false, + "touchEnabled": false, + "visible": false, + "width": 274, + "x": 9, + "y": 42, + "$t": "$eG", + "$eleC": ["_Image7", "_Image8", "_Image9", "_Label1", "_Label2"] + }, + "_Image7": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,9,1,2", "source": "bg_quyu_2", "top": 0, "$t": "$eI" }, + "_Image8": { "bottom": 0, "left": 0, "name": "selectImg", "right": 0, "scale9Grid": "28,29,2,2", "source": "common_liebiaoxuanzhong", "top": -5, "visible": false, "$t": "$eI" }, + "_Image9": { "name": "rank", "source": "Act_pm_1", "$t": "$eI" }, + "_Label1": { "name": "nameLab", "size": 18, "stroke": 2, "text": "", "textColor": 15854850, "x": 40, "y": 10, "$t": "$eL" }, + "_Label2": { "name": "score", "right": 13, "size": 18, "stroke": 2, "text": "", "textColor": 15854850, "x": 266, "y": 10, "$t": "$eL" }, + "rankGrp1": { + "name": "group1", + "touchChildren": false, + "touchEnabled": false, + "visible": false, + "width": 274, + "x": 9, + "y": 85, + "$t": "$eG", + "$eleC": ["_Image10", "_Image11", "_Label3", "_Label4"] + }, + "_Image10": { + "bottom": 0, + "left": 0, + "name": "selectImg", + "right": 0, + "scale9Grid": "28,29,2,2", + "scaleX": 1, + "scaleY": 1, + "source": "common_liebiaoxuanzhong", + "top": -5, + "visible": false, + "x": 0, + "y": -48, + "$t": "$eI" + }, + "_Image11": { "name": "rank", "source": "Act_pm_2", "$t": "$eI" }, + "_Label3": { "name": "nameLab", "size": 18, "stroke": 2, "textColor": 2682369, "x": 40, "y": 10, "$t": "$eL" }, + "_Label4": { "name": "score", "right": 13, "size": 18, "stroke": 2, "textColor": 2682369, "x": 266, "y": 10, "$t": "$eL" }, + "rankGrp2": { + "name": "group2", + "touchChildren": false, + "touchEnabled": false, + "visible": false, + "width": 274, + "x": 9, + "y": 126, + "$t": "$eG", + "$eleC": ["_Image12", "_Image13", "_Image14", "_Label5", "_Label6"] + }, + "_Image12": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "8,9,1,1", "source": "bg_quyu_2", "top": 0, "$t": "$eI" }, + "_Image13": { + "bottom": 0, + "left": 0, + "name": "selectImg", + "right": 0, + "scale9Grid": "28,29,2,2", + "scaleX": 1, + "scaleY": 1, + "source": "common_liebiaoxuanzhong", + "top": -5, + "visible": false, + "x": 0, + "y": -46, + "$t": "$eI" + }, + "_Image14": { "name": "rank", "source": "Act_pm_3", "$t": "$eI" }, + "_Label5": { "name": "nameLab", "size": 18, "stroke": 2, "text": "", "textColor": 16720621, "x": 40, "y": 10, "$t": "$eL" }, + "_Label6": { "name": "score", "right": 13, "size": 18, "stroke": 2, "text": "", "textColor": 16720621, "x": 266, "y": 10, "$t": "$eL" }, + "rankGrp3": { + "name": "group3", + "touchChildren": false, + "touchEnabled": false, + "visible": false, + "width": 274, + "x": 9, + "y": 167, + "$t": "$eG", + "$eleC": ["_Image15", "_Label7", "_Label8", "_Label9"] + }, + "_Image15": { + "bottom": 0, + "left": 0, + "name": "selectImg", + "right": 0, + "scale9Grid": "28,29,2,2", + "scaleX": 1, + "scaleY": 1, + "source": "common_liebiaoxuanzhong", + "top": -5, + "visible": false, + "x": 0, + "y": -46, + "$t": "$eI" + }, + "_Label7": { "name": "nameLab", "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 40, "y": 10, "$t": "$eL" }, + "_Label8": { "name": "rank", "size": 20, "stroke": 2, "text": "4", "textColor": 15064527, "x": 14, "y": 10, "$t": "$eL" }, + "_Label9": { "name": "score", "right": 13, "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "x": 266, "y": 10, "$t": "$eL" }, + "boxGroup": { "right": 0, "width": 102, "y": 244.34, "$t": "$eG", "$eleC": ["boxBg", "boxImage", "redPoint", "_Group2"] }, + "boxBg": { "right": 0, "scaleX": 1, "scaleY": 1, "source": "Act_dld_icon2", "percentWidth": 100, "y": 64, "$t": "$eI" }, + "boxImage": { "horizontalCenter": 0.5, "scaleX": 1, "scaleY": 1, "source": "Act_dld_icon", "y": -4, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 80, "y": 1, "$t": "app.RedDotControl" }, + "_Group2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "y": 67.67, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["boxMyScore", "boxScore"] }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "boxMyScore": { "size": 18, "text": "", "textColor": 15837759, "x": 10, "y": 10, "$t": "$eL" }, + "boxScore": { "size": 18, "text": "", "textColor": 15837759, "x": 20, "y": 20, "$t": "$eL" }, + "escapeGroup": { "right": 0, "visible": false, "y": 244, "$t": "$eG", "$eleC": ["_Image16", "_Image17", "enterFb", "labEscapeRoleNum"] }, + "_Image16": { "height": 60, "scale9Grid": "11,11,2,2", "source": "9s_tipsbg", "touchEnabled": false, "width": 289, "$t": "$eI" }, + "_Image17": { "height": 60, "scale9Grid": "13,14,3,2", "source": "9s_tipsk", "touchEnabled": false, "width": 289, "$t": "$eI" }, + "enterFb": { "label": "完成试炼", "verticalCenter": 1, "x": 20, "$t": "$eB", "skinName": "FubenSkin$Skin166" }, + "labEscapeRoleNum": { "size": 18, "text": "逃脱人数:100", "textColor": 15837759, "verticalCenter": 0, "x": 150, "$t": "$eL" }, + "$sP": [ + "campTime", + "campGrp", + "lbDctyImg", + "actTime", + "lbDcty", + "actGrp", + "waveNum", + "waveNumGrp", + "monsterNum", + "monsterGrp", + "crossSeverBossLab", + "timeGrp", + "fbLabel2", + "fbLabel1", + "fbLabel3", + "myScore", + "myRank", + "rankGrp0", + "rankGrp1", + "rankGrp2", + "rankGrp3", + "boxBg", + "boxImage", + "redPoint", + "boxMyScore", + "boxScore", + "boxGroup", + "enterFb", + "labEscapeRoleNum", + "escapeGroup", + "rankGroup" + ], + "$sC": "$eSk" + }, + "FubenSkin$Skin166": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "button_lt3", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "labelDisplay": { "bold": false, "horizontalCenter": 0, "size": 18, "stroke": 1, "text": "button", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "LabelSkinSkin": { + "$path": "resource/eui_skins/web/fuben/LabelSkinSkin.exml", + "$bs": { "width": 100, "$eleC": ["label"] }, + "label": { "size": 20, "text": "", "percentWidth": 100, "$t": "$eL" }, + "$sP": ["label"], + "$sC": "$eSk" + }, + "GameFightSceneSkin": { + "$path": "resource/eui_skins/web/GameFightSceneSkin.exml", + "$bs": { "height": 930, "width": 580, "$eleC": ["_Group1"] }, + "_Group1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "$eleC": ["_mapgBgImge"] }, + "_mapgBgImge": { "percentHeight": 100, "source": "mapmini_png", "percentWidth": 100, "$t": "$eI" }, + "$sP": ["_mapgBgImge"], + "$sC": "$eSk" + }, + "GhostAutoViewSkin": { + "$path": "resource/eui_skins/web/ghost/GhostAutoViewSkin.exml", + "$bs": { "width": 470, "$eleC": ["dragDropUI", "strLab", "_Group1", "sureBtn", "cancelBtn"] }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "$t": "app.UIViewFrame" }, + "strLab": { + "horizontalCenter": 0, + "lineSpacing": 7, + "size": 21, + "stroke": 2, + "text": "消耗神魔结晶自动修炼神魔字体", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 394, + "y": 100, + "$t": "$eL" + }, + "_Group1": { "horizontalCenter": 0, "y": 170, "$t": "$eG", "$eleC": ["typeLab", "_Image1", "lbCount", "addBtn", "jianBtn", "_Label1"] }, + "typeLab": { "lineSpacing": 7, "size": 21, "stroke": 2, "text": "技能升到", "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "_Image1": { "scale9Grid": "15,13,2,3", "source": "com_bg_kuang_3", "verticalCenter": 0, "width": 66, "x": 85, "$t": "$eI" }, + "lbCount": { "size": 20, "text": "100", "textAlign": "center", "textColor": 2682369, "verticalCenter": 0, "width": 66, "x": 85, "$t": "$eL" }, + "addBtn": { "height": 17, "icon": "get_jj2", "label": "Button", "skinName": "Btn0Skin", "width": 38, "x": 160.5, "$t": "$eB" }, + "jianBtn": { "height": 17, "icon": "get_jj1", "label": "Button", "skinName": "Btn0Skin", "width": 38, "x": 160.5, "y": 15, "$t": "$eB" }, + "_Label1": { "lineSpacing": 7, "size": 21, "stroke": 2, "text": "级停止", "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0.5, "x": 205, "$t": "$eL" }, + "sureBtn": { "height": 44, "label": "确 定", "width": 109, "x": 81, "y": 286, "$t": "$eB", "skinName": "GhostAutoViewSkin$Skin167" }, + "cancelBtn": { "height": 44, "label": "确 定", "width": 109, "x": 281, "y": 286, "$t": "$eB", "skinName": "GhostAutoViewSkin$Skin168" }, + "$sP": ["dragDropUI", "strLab", "typeLab", "lbCount", "addBtn", "jianBtn", "sureBtn", "cancelBtn"], + "$sC": "$eSk" + }, + "GhostAutoViewSkin$Skin167": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "GhostAutoViewSkin$Skin168": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "GhostSkin": { + "$path": "resource/eui_skins/web/ghost/GhostSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_Image1", "optTab", "dotImage", "infoGroup"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "source": "com_bg_kuang_4_png", "x": 171, "y": 52.32, "$t": "$eI" }, + "optTab": { "anchorOffsetX": 0, "itemRendererSkinName": "TradeLineTabSkin", "x": 25, "y": 61, "$t": "$eT", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "a": "null", "$t": "Object" }, + "_Object2": { "a": "null", "$t": "Object" }, + "_Object3": { "a": "null", "$t": "Object" }, + "dotImage": { "source": "common_hongdian", "visible": false, "x": 153, "y": 64, "$t": "$eI" }, + "infoGroup": { "anchorOffsetX": 0, "height": 550, "width": 709, "x": 181, "y": 61, "$t": "$eG", "$eleC": ["_Image2", "group1", "group2", "group3", "group4"] }, + "_Image2": { "anchorOffsetX": 0, "source": "bg_sm", "width": 703, "$t": "$eI" }, + "group1": { + "anchorOffsetX": 0, + "height": 441, + "width": 701, + "$t": "$eG", + "$eleC": ["info1_desc1", "info1_desc2", "info1_desc3", "txt_get", "info1_Item", "info1_List", "listCost", "checkYes", "lbMoney"] + }, + "info1_desc1": { "size": 22, "stroke": 2, "text": "", "textColor": 15655172, "x": 25, "y": 27, "$t": "$eL" }, + "info1_desc2": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 25, "y": 68, "$t": "$eL" }, + "info1_desc3": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 36, "y": 454, "$t": "$eL" }, + "txt_get": { "italic": false, "multiline": false, "size": 22, "text": "", "textAlign": "left", "textColor": 3341312, "x": 577, "y": 486, "$t": "$eL" }, + "info1_Item": { "height": 86, "visible": false, "width": 200, "x": 341, "y": 449, "$t": "$eG", "$eleC": ["_ItemBase1", "_Label1", "_ItemBase2", "_Label2"] }, + "_ItemBase1": { "name": "item0", "skinName": "ItemBaseSkin", "x": 10, "y": 0, "$t": "app.ItemBase" }, + "_Label1": { "name": "itemName0", "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "width": 120, "x": -21, "y": 64, "$t": "$eL" }, + "_ItemBase2": { "name": "item1", "skinName": "ItemBaseSkin", "x": 100, "y": 0, "$t": "app.ItemBase" }, + "_Label2": { "name": "itemName1", "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "width": 120, "x": 69, "y": 64, "$t": "$eL" }, + "info1_List": { "anchorOffsetX": 0, "height": 323, "itemRendererSkinName": "ResonateItemSkin", "width": 683, "x": 19, "y": 109, "$t": "$eLs" }, + "listCost": { "anchorOffsetY": 0, "width": 200, "x": 342, "y": 450, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 2, "verticalAlign": "contentJustify", "$t": "$eVL" }, + "checkYes": { "name": "tabRed", "skinName": "CheckBox3", "x": 36, "y": 514, "$t": "$eCB" }, + "lbMoney": { "size": 18, "text": "神魔结晶不足时使用元宝代替,50元宝/个", "textColor": 15106630, "x": 68, "y": 518, "$t": "$eL" }, + "group2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 548, "visible": false, "width": 701, "$t": "$eG", "$eleC": ["scroller"] }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 532, "scaleX": 1, "scaleY": 1, "scrollPolicyH": "off", "width": 696, "x": 0, "y": 5, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "width": 690, "$t": "$eG", "$eleC": ["info2_desc1", "info2_desc2", "info2_list"] }, + "info2_desc1": { "size": 22, "stroke": 2, "text": "", "textColor": 15655172, "x": 23, "y": 15, "$t": "$eL" }, + "info2_desc2": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 23, "y": 55, "$t": "$eL" }, + "info2_list": { "anchorOffsetX": 0, "itemRendererSkinName": "ResonateItem2Skin", "width": 655, "x": 24, "y": 97, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 14, "$t": "$eVL" }, + "group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 538, + "visible": false, + "width": 701, + "$t": "$eG", + "$eleC": ["_Image3", "info3_list", "info3_desc", "info3_desc1", "info3_desc2", "info3_desc4", "info3_desc5"] + }, + "_Image3": { "source": "sm_t7", "x": 133, "y": 148, "$t": "$eI" }, + "info3_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 302, "itemRendererSkinName": "ResonateItem2Skin", "width": 649, "x": 26, "y": 240, "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": 0, "$t": "$eVL" }, + "info3_desc": { "size": 22, "stroke": 2, "text": "", "textColor": 15655172, "x": 25, "y": 27, "$t": "$eL" }, + "info3_desc1": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 25, "y": 68, "$t": "$eL" }, + "info3_desc2": { "size": 22, "stroke": 2, "text": "", "textColor": 15655172, "x": 25, "y": 113, "$t": "$eL" }, + "info3_desc4": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 25, "y": 154, "$t": "$eL" }, + "info3_desc5": { "size": 22, "stroke": 2, "text": "", "textColor": 15655172, "x": 25, "y": 203, "$t": "$eL" }, + "group4": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 549, + "visible": false, + "width": 701, + "$t": "$eG", + "$eleC": [ + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "_Image11", + "_Image12", + "_Image13", + "receiveBtn", + "_ProgressBar1", + "_ProgressBar2", + "_ProgressBar3", + "_ProgressBar4", + "_ProgressBar5", + "info4_desc", + "info4_desc1", + "_Label3", + "_Label4", + "_Label5", + "_Label6", + "_Label7" + ] + }, + "_Image4": { "source": "sm_p1", "x": 26, "y": 161, "$t": "$eI" }, + "_Image5": { "source": "sm_p1", "x": 26, "y": 204, "$t": "$eI" }, + "_Image6": { "source": "sm_p1", "x": 26, "y": 248, "$t": "$eI" }, + "_Image7": { "source": "sm_p1", "x": 26, "y": 289, "$t": "$eI" }, + "_Image8": { "source": "sm_p1", "x": 26, "y": 331, "$t": "$eI" }, + "_Image9": { "name": "img1", "source": "t_shenmo_1", "x": 52, "y": 161, "$t": "$eI" }, + "_Image10": { "name": "img2", "source": "t_shenmo_2", "x": 52, "y": 203, "$t": "$eI" }, + "_Image11": { "name": "img3", "source": "t_shenmo_3", "x": 52, "y": 245, "$t": "$eI" }, + "_Image12": { "name": "img4", "source": "t_shenmo_4", "x": 52, "y": 287, "$t": "$eI" }, + "_Image13": { "name": "img5", "source": "t_shenmo_5", "x": 52, "y": 329, "$t": "$eI" }, + "receiveBtn": { "label": "", "skinName": "Btn9Skin", "x": 283, "y": 486, "$t": "$eB" }, + "_ProgressBar1": { "height": 20, "name": "bar1", "value": 0, "width": 182, "x": 141, "y": 161, "$t": "$ePB", "skinName": "GhostSkin$Skin169" }, + "_ProgressBar2": { "height": 20, "name": "bar2", "value": 0, "width": 182, "x": 141, "y": 203, "$t": "$ePB", "skinName": "GhostSkin$Skin170" }, + "_ProgressBar3": { "height": 20, "name": "bar3", "value": 0, "width": 182, "x": 141, "y": 244, "$t": "$ePB", "skinName": "GhostSkin$Skin171" }, + "_ProgressBar4": { "height": 20, "name": "bar4", "value": 0, "width": 182, "x": 141, "y": 287, "$t": "$ePB", "skinName": "GhostSkin$Skin172" }, + "_ProgressBar5": { "height": 20, "name": "bar5", "value": 0, "width": 182, "x": 141, "y": 329, "$t": "$ePB", "skinName": "GhostSkin$Skin173" }, + "info4_desc": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 126, + "lineSpacing": 18, + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "width": 665, + "x": 25, + "y": 27, + "$t": "$eL" + }, + "info4_desc1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15655172, + "width": 680, + "x": 10, + "y": 441, + "$t": "$eL" + }, + "_Label3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "name": "lab1", + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "x": 365, + "y": 161, + "$t": "$eL" + }, + "_Label4": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "name": "lab2", + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "x": 365, + "y": 203, + "$t": "$eL" + }, + "_Label5": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "name": "lab3", + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "x": 365, + "y": 246, + "$t": "$eL" + }, + "_Label6": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "name": "lab4", + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "x": 365, + "y": 286, + "$t": "$eL" + }, + "_Label7": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 18, + "name": "lab5", + "scaleX": 1, + "scaleY": 1, + "size": 22, + "stroke": 2, + "text": "", + "textColor": 15064527, + "x": 365, + "y": 330, + "$t": "$eL" + }, + "$sP": [ + "dragDropUI", + "optTab", + "dotImage", + "info1_desc1", + "info1_desc2", + "info1_desc3", + "txt_get", + "info1_Item", + "info1_List", + "listCost", + "checkYes", + "lbMoney", + "group1", + "info2_desc1", + "info2_desc2", + "info2_list", + "scroller", + "group2", + "info3_list", + "info3_desc", + "info3_desc1", + "info3_desc2", + "info3_desc4", + "info3_desc5", + "group3", + "receiveBtn", + "info4_desc", + "info4_desc1", + "group4", + "infoGroup" + ], + "$sC": "$eSk" + }, + "GhostSkin$Skin169": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GhostSkin$Skin170": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GhostSkin$Skin171": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GhostSkin$Skin172": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GhostSkin$Skin173": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "ResonateItem2Skin": { + "$path": "resource/eui_skins/web/ghost/ResonateItem2Skin.exml", + "$bs": { "height": 32, "width": 779, "$eleC": ["_Image1", "label"] }, + "_Image1": { "source": "sm_p1", "y": 5, "$t": "$eI" }, + "label": { "anchorOffsetX": 0, "anchorOffsetY": 0, "lineSpacing": 5, "size": 22, "stroke": 2, "text": "最小\n最大", "textColor": 2682369, "width": 631, "x": 22, "y": 6, "$t": "$eL" }, + "$sP": ["label"], + "$sC": "$eSk" + }, + "ResonateItemSkin": { + "$path": "resource/eui_skins/web/ghost/ResonateItemSkin.exml", + "$bs": { "height": 62, "width": 697, "$eleC": ["nameImage", "attrLabel", "lvLabel", "button", "button2", "totallyImage", "dotImage"] }, + "nameImage": { "source": "sm_t1", "x": 10, "y": 15, "$t": "$eI" }, + "attrLabel": { "size": 22, "stroke": 2, "text": "攻击", "textColor": 15064527, "x": 190, "y": 23, "$t": "$eL" }, + "lvLabel": { "size": 22, "stroke": 2, "text": "Lv.8", "textAlign": "left", "textColor": 15064527, "x": 110, "y": 23, "$t": "$eL" }, + "button": { "label": "", "skinName": "Btn9Skin", "x": 430, "y": 10, "$t": "$eB" }, + "button2": { "label": "", "skinName": "Btn9Skin", "x": 560, "y": 10, "$t": "$eB" }, + "totallyImage": { "source": "sm_t6", "x": 380, "y": 7, "$t": "$eI" }, + "dotImage": { "source": "common_hongdian", "visible": false, "x": 525, "y": 6, "$t": "$eI" }, + "$sP": ["nameImage", "attrLabel", "lvLabel", "button", "button2", "totallyImage", "dotImage"], + "$sC": "$eSk" + }, + "RoleGhostSkin": { + "$path": "resource/eui_skins/web/ghost/RoleGhostSkin.exml", + "$bs": { "height": 448, "width": 384, "$eleC": ["_Image1", "infoGroup"] }, + "_Image1": { "source": "bg_shenmo", "x": 3, "y": 2, "$t": "$eI" }, + "infoGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 430, + "width": 361, + "x": 17, + "y": 11, + "$t": "$eG", + "$eleC": [ + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "_Image11", + "_Label1", + "_Label2", + "_Label3", + "_Label4", + "_Label5", + "descLabel", + "button", + "_RedDotControl1" + ] + }, + "_Image2": { "source": "icon_shenmo_1", "x": 140, "y": 14, "$t": "$eI" }, + "_Image3": { "source": "icon_shenmo_3", "x": 268, "y": 104, "$t": "$eI" }, + "_Image4": { "source": "icon_shenmo_5", "x": 217, "y": 250, "$t": "$eI" }, + "_Image5": { "source": "icon_shenmo_4", "x": 64, "y": 251, "$t": "$eI" }, + "_Image6": { "source": "icon_shenmo_2", "x": 14, "y": 104, "$t": "$eI" }, + "_Image7": { "source": "t_shenmo_1", "x": 158, "y": 78, "$t": "$eI" }, + "_Image8": { "source": "t_shenmo_3", "x": 286, "y": 172, "$t": "$eI" }, + "_Image9": { "source": "t_shenmo_5", "x": 238, "y": 317, "$t": "$eI" }, + "_Image10": { "source": "t_shenmo_4", "x": 78, "y": 324, "$t": "$eI" }, + "_Image11": { "source": "t_shenmo_2", "x": 31, "y": 171, "$t": "$eI" }, + "_Label1": { "name": "lv1", "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "width": 50, "x": 150, "y": 4, "$t": "$eL" }, + "_Label2": { "name": "lv2", "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "width": 50, "x": 22, "y": 91, "$t": "$eL" }, + "_Label3": { "name": "lv3", "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "width": 50, "x": 278, "y": 91, "$t": "$eL" }, + "_Label4": { "name": "lv4", "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "width": 50, "x": 74, "y": 236, "$t": "$eL" }, + "_Label5": { "name": "lv5", "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "width": 50, "x": 229, "y": 236, "$t": "$eL" }, + "descLabel": { "anchorOffsetX": 0, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 359, "x": 1, "y": 358, "$t": "$eL" }, + "button": { "height": 46, "horizontalCenter": 0, "label": "", "verticalCenter": 195, "width": 113, "$t": "$eB", "skinName": "RoleGhostSkin$Skin174" }, + "_RedDotControl1": { "showMessages": "GhostMgr.post_31_1;GhostMgr.post_31_2", "updateShowFunctions": "GhostMgr.getRed", "visible": false, "x": 221, "y": 387, "$t": "app.RedDotControl" }, + "$sP": ["descLabel", "button", "infoGroup"], + "$sC": "$eSk" + }, + "RoleGhostSkin$Skin174": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "button", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "GongGaoWinSkin": { + "$path": "resource/eui_skins/web/gonggao/GongGaoWinSkin.exml", + "$bs": { "width": 418, "$eleC": ["dragDropUI", "closeBtn", "_Label1", "str", "sureBtn"] }, + "dragDropUI": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "210,141,13,20", "source": "bg_tipstc2_png", "top": 0, "$t": "$eI" }, + "closeBtn": { "height": 60, "right": -39, "top": -8, "width": 60, "$t": "$eB", "skinName": "GongGaoWinSkin$Skin175" }, + "_Label1": { "bold": true, "horizontalCenter": 0, "size": 24, "text": "公告", "textColor": 16758598, "top": 14, "touchEnabled": false, "$t": "$eL" }, + "str": { "anchorOffsetY": 0, "bottom": 81, "left": 27, "maxWidth": 364, "minHeight": 174, "right": 27, "size": 23, "text": "", "textColor": 14731679, "top": 58, "$t": "$eL" }, + "sureBtn": { "bottom": 18, "height": 44, "horizontalCenter": -4.5, "label": "确 定", "width": 109, "$t": "$eB", "skinName": "GongGaoWinSkin$Skin176" }, + "$sP": ["dragDropUI", "closeBtn", "str", "sureBtn"], + "$sC": "$eSk" + }, + "GongGaoWinSkin$Skin175": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_guanbi3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "GongGaoWinSkin$Skin176": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ShengQuNoticeWinSkin": { + "$path": "resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml", + "$bs": { "height": 300, "width": 426, "$eleC": ["dragDropUI", "noticeLab"] }, + "dragDropUI": { "skinName": "ViewBgWin6Skin", "$t": "app.UIViewFrame" }, + "noticeLab": { + "height": 163, + "size": 22, + "text": "夜深了,已经到了宵禁时间(22:00-次日8:00),系统将强制离线,请在宵禁解除后登陆。请合理安排游戏时间,注意休息。", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 372, + "x": 27, + "y": 59, + "$t": "$eL" + }, + "$sP": ["dragDropUI", "noticeLab"], + "$sC": "$eSk" + }, + "GrowWayRendererSkin": { + "$path": "resource/eui_skins/web/growway/GrowWayRendererSkin.exml", + "$bs": { "width": 690, "$eleC": ["group"] }, + "group": { "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["titleLabel", "list", "descLabel"] }, + "_VerticalLayout1": { "gap": 11, "$t": "$eVL" }, + "titleLabel": { "lineSpacing": 5, "size": 22, "stroke": 2, "textColor": 15655172, "x": 6, "y": 7, "$t": "$eL" }, + "list": { "anchorOffsetX": 0, "itemRendererSkinName": "ItemBaseSkin", "width": 662, "x": 3, "y": 41, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 6, "verticalGap": 6, "$t": "$eTL" }, + "descLabel": { "lineSpacing": 5, "size": 22, "stroke": 2, "textColor": 15064527, "width": 680, "x": 6, "y": 167, "$t": "$eL" }, + "$sP": ["titleLabel", "list", "descLabel", "group"], + "$sC": "$eSk" + }, + "GrowWaySkin": { + "$path": "resource/eui_skins/web/growway/GrowWaySkin.exml", + "$bs": { "width": 947, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "leftButton", "rightButton", "tab", "btnList", "itemList", "pageLabel"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "source": "com_bg_kuang_4_png", "x": 173, "y": 53, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "source": "bg_czzl", "x": 180, "y": 60, "$t": "$eI" }, + "_Image3": { "source": "czzl_t1", "x": 318, "y": 580, "$t": "$eI" }, + "leftButton": { "label": "", "x": 425, "y": 536, "$t": "$eB", "skinName": "GrowWaySkin$Skin177" }, + "rightButton": { "label": "", "scaleX": -1, "x": 627, "y": 536, "$t": "$eB", "skinName": "GrowWaySkin$Skin178" }, + "tab": { "itemRendererSkinName": "CommonTarBtnWinSkin2", "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "btnList": { "height": 555, "itemRendererSkinName": "TradeLineTabSkin", "width": 147, "x": 28, "y": 63, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -2, "$t": "$eVL" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 434, "itemRendererSkinName": "GrowWayRendererSkin", "width": 690, "x": 192, "y": 95, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 21, "$t": "$eVL" }, + "pageLabel": { "anchorOffsetX": 0, "size": 22, "stroke": 2, "text": "1/4", "textAlign": "center", "width": 70, "x": 490, "y": 538, "$t": "$eL" }, + "$sP": ["dragDropUI", "leftButton", "rightButton", "tab", "btnList", "itemList", "pageLabel"], + "$sC": "$eSk" + }, + "GrowWaySkin$Skin177": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "GrowWaySkin$Skin178": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CreatGuildViewSkin": { + "$path": "resource/eui_skins/web/guild/CreatGuildViewSkin.exml", + "$bs": { + "height": 345, + "width": 478, + "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "guildNameText", "typeLb", "txt", "ConfirmBtn", "closeBtn", "_Image4", "moneyLb", "_RuleTipsButton1", "conditionText"] + }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "height": 273, "scale9Grid": "4,4,28,28", "source": "bg_bg2", "visible": false, "width": 446, "x": 17, "y": 46, "$t": "$eI" }, + "_Image2": { "bottom": 113, "height": 50, "left": 213, "right": 127, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "top": 202, "visible": true, "width": 59, "$t": "$eI" }, + "_Image3": { "height": 32, "scale9Grid": "10,10,2,1", "source": "ltk_4", "width": 360, "x": 63, "y": 128, "$t": "$eI" }, + "guildNameText": { "height": 32, "maxChars": 6, "skinName": "TextInputSkin", "width": 360, "x": 63, "y": 128, "$t": "$eTI" }, + "typeLb": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "y": 79, "$t": "$eL" }, + "txt": { "horizontalCenter": -80.5, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "y": 206, "$t": "$eL" }, + "ConfirmBtn": { "height": 44, "label": "", "width": 109, "x": 99, "y": 282, "$t": "$eB", "skinName": "CreatGuildViewSkin$Skin179" }, + "closeBtn": { "height": 44, "label": "", "width": 109, "x": 299, "y": 282, "$t": "$eB", "skinName": "CreatGuildViewSkin$Skin180" }, + "_Image4": { "source": "icon_yuanbao", "visible": true, "x": 215, "y": 197, "$t": "$eI" }, + "moneyLb": { "bold": true, "size": 22, "text": "500", "textColor": 3377663, "x": 270, "y": 206, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "20", "x": 33, "y": 288, "$t": "app.RuleTipsButton" }, + "conditionText": { "horizontalCenter": 0, "size": 22, "text": "", "textColor": 15064527, "visible": false, "y": 169, "$t": "$eL" }, + "$sP": ["dragDropUI", "guildNameText", "typeLb", "txt", "ConfirmBtn", "closeBtn", "moneyLb", "conditionText"], + "$sC": "$eSk" + }, + "CreatGuildViewSkin$Skin179": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "CreatGuildViewSkin$Skin180": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "GuildApplyItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml", + "$bs": { "height": 81, "width": 685, "$eleC": ["gp"] }, + "gp": { "height": 81, "width": 685, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["bg0", "roleNameLb", "_Group1", "rejectBtn", "agreeBtn"] }, + "bg0": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg2", "$t": "$eI" }, + "roleNameLb": { "size": 22, "stroke": 2, "text": "冰雪真好玩", "textColor": 16742144, "x": 36, "y": 13, "$t": "$eL" }, + "_Group1": { "x": 34, "y": 48, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["roleLevelLb", "rolePrensionLb"] }, + "_HorizontalLayout1": { "gap": 8, "$t": "$eHL" }, + "roleLevelLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "32级", "textColor": 15064527, "x": -12, "y": -3, "$t": "$eL" }, + "rolePrensionLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "女法师", "textColor": 15064527, "x": 38, "y": -3, "$t": "$eL" }, + "rejectBtn": { "label": "", "skinName": "Btn9Skin", "verticalCenter": 1.5, "x": 445, "$t": "$eB" }, + "agreeBtn": { "label": "", "skinName": "Btn9Skin", "verticalCenter": 1.5, "x": 568, "$t": "$eB" }, + "$sP": ["bg0", "roleNameLb", "roleLevelLb", "rolePrensionLb", "rejectBtn", "agreeBtn", "gp"], + "$sC": "$eSk" + }, + "GuildDevoteViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildDevoteViewSkin.exml", + "$bs": { "height": 478, "width": 431, "$eleC": ["dragDropUI", "_Group3"] }, + "dragDropUI": { "skinName": "ViewBgWin4Skin", "$t": "app.UIViewFrame" }, + "_Group3": { "height": 382, "width": 370, "x": 30, "y": 56, "$t": "$eG", "$eleC": ["_Group1", "_Group2"] }, + "_Group1": { + "height": 186, + "width": 370, + "$t": "$eG", + "$eleC": ["bg0", "_Image1", "goldLb0", "txt0Get", "goldDayNum0", "txt0Money", "goldAddCionLb0", "txt0Devote", "goldAddDevoteLb0", "goldDevoteBtn0", "_Image2", "_Image3", "goldIcon0"] + }, + "bg0": { "height": 188, "scale9Grid": "38,38,14,23", "source": "kbg_3_1_png", "visible": false, "width": 345, "x": 1, "y": -1, "$t": "$eI" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "goldLb0": { "horizontalCenter": 4, "size": 20, "stroke": 2, "text": "捐献20000绑定元宝", "textColor": 14724725, "verticalCenter": -69, "$t": "$eL" }, + "txt0Get": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 123, "y": 52.5, "$t": "$eL" }, + "goldDayNum0": { "right": 10, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "y": 149, "$t": "$eL" }, + "txt0Money": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 125.5, "y": 82, "$t": "$eL" }, + "goldAddCionLb0": { "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "x": 173.5, "y": 83.5, "$t": "$eL" }, + "txt0Devote": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 234, "y": 82.5, "$t": "$eL" }, + "goldAddDevoteLb0": { "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "x": 282, "y": 83, "$t": "$eL" }, + "goldDevoteBtn0": { "label": "", "skinName": "Btn9Skin", "x": 130, "y": 131.5, "$t": "$eB" }, + "_Image2": { "source": "guild_jxfgx", "x": 41, "y": 36.5, "$t": "$eI" }, + "_Image3": { "source": "guild_jxiconk", "x": 36, "y": 49, "$t": "$eI" }, + "goldIcon0": { "source": "13010", "x": 40, "y": 52, "$t": "$eI" }, + "_Group2": { + "height": 187, + "width": 370, + "x": 0, + "y": 201, + "$t": "$eG", + "$eleC": ["bg1", "_Image4", "goldLb1", "txt1Get", "goldDayNum1", "txt1Money", "goldAddCionLb1", "txt1Devote", "goldAddDevoteLb1", "goldDevoteBtn1", "_Image5", "_Image6", "goldIcon1"] + }, + "bg1": { "height": 188, "scale9Grid": "38,38,14,23", "source": "kbg_3_1_png", "visible": false, "width": 345, "x": 1, "y": -1, "$t": "$eI" }, + "_Image4": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "15,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "goldLb1": { "horizontalCenter": 15, "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -76.5, "$t": "$eL" }, + "txt1Get": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 123.5, "y": 47, "$t": "$eL" }, + "goldDayNum1": { "right": 10, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "y": 146, "$t": "$eL" }, + "txt1Money": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 124.5, "y": 75.5, "$t": "$eL" }, + "goldAddCionLb1": { "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "x": 170, "y": 76, "$t": "$eL" }, + "txt1Devote": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 234, "y": 76.5, "$t": "$eL" }, + "goldAddDevoteLb1": { "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "x": 281, "y": 77, "$t": "$eL" }, + "goldDevoteBtn1": { "label": "", "skinName": "Btn9Skin", "x": 130, "y": 126.5, "$t": "$eB" }, + "_Image5": { "source": "guild_jxfgx", "x": 31, "y": 30.5, "$t": "$eI" }, + "_Image6": { "source": "guild_jxiconk", "x": 36.35, "y": 46.98, "$t": "$eI" }, + "goldIcon1": { "source": "13010", "x": 39.7, "y": 50.65, "$t": "$eI" }, + "$sP": [ + "dragDropUI", + "bg0", + "goldLb0", + "txt0Get", + "goldDayNum0", + "txt0Money", + "goldAddCionLb0", + "txt0Devote", + "goldAddDevoteLb0", + "goldDevoteBtn0", + "goldIcon0", + "bg1", + "goldLb1", + "txt1Get", + "goldDayNum1", + "txt1Money", + "goldAddCionLb1", + "txt1Devote", + "goldAddDevoteLb1", + "goldDevoteBtn1", + "goldIcon1" + ], + "$sC": "$eSk" + }, + "GuildInfoViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildInfoViewSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "tabBar", "_Image1", "optTab", "gp_0", "gp_1", "gp_2", "gp_3", "gp_4", "gp_5"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "tabBar": { "height": 594, "itemRendererSkinName": "CommonTarBtnItemSkin1", "visible": false, "width": 45, "x": 3, "y": 11, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 555, "scale9Grid": "19,20,2,2", "source": "com_bg_kuang_6_png", "width": 162, "x": 24, "y": 57, "$t": "$eI" }, + "optTab": { "height": 556, "itemRendererSkinName": "GuildTarBtnItemSkin", "x": 31.5, "y": 59.69, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -2, "horizontalAlign": "center", "$t": "$eVL" }, + "gp_0": { + "height": 560, + "width": 694, + "x": 191, + "y": 57, + "$t": "$eG", + "$eleC": [ + "bg", + "topBg", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "txtNoice", + "noiceLb", + "_Label1", + "_Label2", + "guildNameLb", + "guildPresident", + "txtLv", + "guildLevelLb", + "txtMoney", + "guildMoneyLb", + "txtMyDevote", + "guildMyDevoteLb", + "guildMermerNumLb", + "guildMyPostLb", + "txtCount", + "txtMyJob", + "gpBtnList", + "ruleBtn" + ] + }, + "bg": { "height": 490, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "topBg": { "source": "guild_bg_hanghuidating", "visible": false, "width": 707, "x": 0, "y": 1, "$t": "$eI" }, + "_Image2": { "height": 34, "scale9Grid": "15,15,1,1", "source": "mail_bg", "width": 663, "x": 17, "y": 10.68, "$t": "$eI" }, + "_Image3": { "height": 34, "scale9Grid": "13,15,1,1", "source": "mail_bg", "width": 663, "x": 17, "y": 54, "$t": "$eI" }, + "_Image4": { "height": 34, "scale9Grid": "14,13,1,1", "source": "mail_bg", "width": 663, "x": 17, "y": 98.18, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 273, "scale9Grid": "14,13,1,1", "source": "mail_bg", "width": 661, "x": 17, "y": 170, "$t": "$eI" }, + "txtNoice": { "size": 22, "stroke": 2, "text": "行会公告", "textColor": 15655172, "x": 305.32, "y": 142, "$t": "$eL" }, + "noiceLb": { "height": 242, "lineSpacing": 5, "multiline": true, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "width": 625, "x": 37, "y": 185, "$t": "$eET" }, + "_Label1": { "size": 22, "stroke": 2, "text": "行会:", "textColor": 15655172, "x": 28, "y": 16, "$t": "$eL" }, + "_Label2": { "size": 22, "stroke": 2, "text": "会长:", "textColor": 15655172, "x": 426, "y": 16, "$t": "$eL" }, + "guildNameLb": { "left": 84, "size": 22, "stroke": 2, "text": "冰雪无敌帮", "textColor": 15655172, "y": 16, "$t": "$eL" }, + "guildPresident": { "left": 483, "size": 22, "stroke": 2, "text": "冰雪无敌", "textColor": 15655172, "y": 16, "$t": "$eL" }, + "txtLv": { "size": 22, "stroke": 2, "text": "行会等级:", "textColor": 16742144, "x": 27, "y": 59, "$t": "$eL" }, + "guildLevelLb": { "left": 125, "size": 22, "stroke": 2, "text": "1级", "textColor": 15064527, "y": 59.66, "$t": "$eL" }, + "txtMoney": { "size": 22, "stroke": 2, "text": "行会资金:", "textColor": 16742144, "x": 427, "y": 59, "$t": "$eL" }, + "guildMoneyLb": { "left": 521, "size": 22, "stroke": 1, "text": "1000", "textColor": 15064527, "verticalCenter": -210, "$t": "$eL" }, + "txtMyDevote": { "size": 22, "stroke": 2, "text": "我的贡献:", "textColor": 16742144, "x": 226.33, "y": 105, "$t": "$eL" }, + "guildMyDevoteLb": { "left": 324, "size": 22, "stroke": 1, "text": "50000", "textColor": 2682369, "verticalCenter": -164, "$t": "$eL" }, + "guildMermerNumLb": { "left": 280, "size": 22, "stroke": 2, "text": "50/100", "textColor": 15064527, "y": 59.5, "$t": "$eL" }, + "guildMyPostLb": { "left": 125, "size": 22, "stroke": 2, "text": "副", "textColor": 2682369, "verticalCenter": -165, "$t": "$eL" }, + "txtCount": { "size": 22, "stroke": 2, "text": "成员:", "textColor": 16742144, "x": 226, "y": 59, "$t": "$eL" }, + "txtMyJob": { "size": 22, "stroke": 2, "text": "我的职位:", "textColor": 16742144, "x": 27, "y": 104, "$t": "$eL" }, + "gpBtnList": { "x": 453, "y": 505, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["editGuildNoticeBtn", "devoteBtn"] }, + "_HorizontalLayout1": { "gap": 13, "$t": "$eHL" }, + "editGuildNoticeBtn": { "label": "编辑公告", "skinName": "Btn9Skin", "x": 109, "y": 10, "$t": "$eB" }, + "devoteBtn": { "label": "捐献物资", "skinName": "Btn9Skin", "x": 209, "y": 10, "$t": "$eB" }, + "ruleBtn": { "label": "Button", "ruleId": "21", "x": 18, "y": 512, "$t": "app.RuleTipsButton" }, + "gp_1": { "height": 560, "visible": false, "width": 694, "x": 191, "y": 57, "$t": "$eG", "$eleC": ["bg0", "_Group1", "mgrHallGp", "lgfGp", "assemblyHallGp", "txtBuild12", "_Group2"] }, + "bg0": { "height": 555, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "_Group1": { "height": 322, "x": 8, "y": 7, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["_Image6", "_Image7", "_Image8"] }, + "_HorizontalLayout2": { "gap": 3, "$t": "$eHL" }, + "_Image6": { "source": "guild_bg_guanlidating", "x": 46, "y": 2, "$t": "$eI" }, + "_Image7": { "source": "guild_bg_liangongfang", "x": 256, "y": 36, "$t": "$eI" }, + "_Image8": { "source": "guild_bg_yishiting", "x": 446, "y": 28, "$t": "$eI" }, + "mgrHallGp": { + "height": 271, + "width": 217, + "x": 11.5, + "y": 34, + "$t": "$eG", + "$eleC": ["txtBuild0", "hallBuildLevelLb", "txtBuild1", "txtBuild2", "txtBuild3", "txtBuild4", "hallNeedMoneyLb", "hallBuildpb", "mgrHallLvBtn"] + }, + "txtBuild0": { "horizontalCenter": -63.5, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -81.5, "$t": "$eL" }, + "hallBuildLevelLb": { "horizontalCenter": -30, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": -81.5, "$t": "$eL" }, + "txtBuild1": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 18, "y": 78, "$t": "$eL" }, + "txtBuild2": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 18, "y": 107.5, "$t": "$eL" }, + "txtBuild3": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 18, "y": 136.5, "$t": "$eL" }, + "txtBuild4": { "rotation": 359.88, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "x": 20, "y": 168, "$t": "$eL" }, + "hallNeedMoneyLb": { "left": 83, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "verticalAlign": "middle", "verticalCenter": 41.5, "$t": "$eL" }, + "hallBuildpb": { "height": 22, "name": "bar2", "value": 50, "width": 195, "x": 12, "y": 193, "$t": "$ePB", "skinName": "GuildInfoViewSkin$Skin181" }, + "mgrHallLvBtn": { "label": "", "skinName": "Btn9Skin", "x": 57.5, "y": 223, "$t": "$eB" }, + "lgfGp": { + "height": 271, + "width": 217, + "x": 237, + "y": 34, + "$t": "$eG", + "$eleC": ["txtBuild5", "liangongBuildLevelLb", "txtBuild6", "_Label3", "lgfNeedMoneyLb", "txtBuild7", "lgfBuildpb", "lgfLvBtn"] + }, + "txtBuild5": { "horizontalCenter": -60.5, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -24.5, "$t": "$eL" }, + "liangongBuildLevelLb": { "horizontalCenter": -29, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": -24.5, "$t": "$eL" }, + "txtBuild6": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 20, "y": 136, "$t": "$eL" }, + "_Label3": { "size": 20, "stroke": 1, "text": "决定其他建筑最高级", "textColor": 13350813, "visible": false, "x": 1, "y": 75, "$t": "$eL" }, + "lgfNeedMoneyLb": { "left": 86, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "verticalAlign": "middle", "verticalCenter": 40.5, "$t": "$eL" }, + "txtBuild7": { "left": 20, "size": 18, "stroke": 1, "text": "", "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "y": 165.5, "$t": "$eL" }, + "lgfBuildpb": { "height": 22, "name": "bar2", "value": 50, "width": 195, "x": 12, "y": 192.5, "$t": "$ePB", "skinName": "GuildInfoViewSkin$Skin182" }, + "lgfLvBtn": { "label": "", "skinName": "Btn9Skin", "x": 60.49, "y": 222.69, "$t": "$eB" }, + "assemblyHallGp": { + "height": 271, + "width": 217, + "x": 465, + "y": 34, + "$t": "$eG", + "$eleC": ["txtBuild8", "assemblyHallLb", "txtBuild9", "txtBuild10", "assNeedMoneyLb", "txtBuild11", "assemblyHallBuildpb", "assemblyHallLvBtn"] + }, + "txtBuild8": { "horizontalCenter": -61.5, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -48.5, "$t": "$eL" }, + "assemblyHallLb": { "horizontalCenter": -30, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -47.5, "$t": "$eL" }, + "txtBuild9": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 20, "y": 108, "$t": "$eL" }, + "txtBuild10": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 20, "y": 136, "$t": "$eL" }, + "assNeedMoneyLb": { "left": 87, "size": 18, "stroke": 2, "text": "消耗资金:", "textAlign": "center", "textColor": 2682369, "verticalAlign": "middle", "verticalCenter": 42.5, "$t": "$eL" }, + "txtBuild11": { "size": 18, "stroke": 1, "text": "需资金:", "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 40, "x": 20, "$t": "$eL" }, + "assemblyHallBuildpb": { "height": 22, "name": "bar2", "value": 50, "width": 195, "x": 13.5, "y": 192.5, "$t": "$ePB", "skinName": "GuildInfoViewSkin$Skin183" }, + "assemblyHallLvBtn": { "label": "", "skinName": "Btn9Skin", "x": 58, "y": 223.5, "$t": "$eB" }, + "txtBuild12": { "size": 22, "stroke": 2, "text": "行会日志", "textColor": 15655172, "x": 310, "y": 325, "$t": "$eL" }, + "_Group2": { "height": 200, "width": 681, "x": 6, "y": 353, "$t": "$eG", "$eleC": ["_Image9", "scroller_log"] }, + "_Image9": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "visible": false, "$t": "$eI" }, + "scroller_log": { "height": 183, "width": 665, "x": 9.33, "y": 1, "$t": "$eS", "viewport": "guildLogList" }, + "guildLogList": { "itemRendererSkinName": "GuildLogItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 3, "$t": "$eVL" }, + "gp_2": { + "height": 560, + "visible": false, + "width": 694, + "x": 191, + "y": 57, + "$t": "$eG", + "$eleC": ["bg1", "txtInfo0", "txtInfo1", "myDevoteLb", "myPostLB", "exitGuildBtn", "optGuildBtn", "scroller_member", "ruleBtn0"] + }, + "bg1": { "height": 490, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "txtInfo0": { "size": 22, "stroke": 2, "text": "我的职位:", "textColor": 15064527, "verticalAlign": "middle", "x": 66, "y": 519, "$t": "$eL" }, + "txtInfo1": { "size": 22, "stroke": 2, "text": "我的贡献:", "textColor": 15064527, "verticalAlign": "middle", "x": 243, "y": 519, "$t": "$eL" }, + "myDevoteLb": { "size": 22, "stroke": 2, "text": "99999", "textColor": 2682369, "verticalAlign": "middle", "x": 352, "y": 519, "$t": "$eL" }, + "myPostLB": { "size": 22, "stroke": 2, "text": "99999", "textColor": 15064527, "verticalAlign": "middle", "x": 175, "y": 519, "$t": "$eL" }, + "exitGuildBtn": { "label": "", "skinName": "Btn9Skin", "x": 451, "y": 507, "$t": "$eB" }, + "optGuildBtn": { "label": "", "skinName": "Btn9Skin", "x": 575, "y": 508, "$t": "$eB" }, + "scroller_member": { "height": 478, "scrollPolicyH": "off", "width": 685, "x": 6, "y": 6, "$t": "$eS", "viewport": "memberList" }, + "memberList": { "itemRendererSkinName": "GuildMemberItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": 1, "$t": "$eVL" }, + "ruleBtn0": { "label": "Button", "ruleId": "22", "x": 17, "y": 514, "$t": "app.RuleTipsButton" }, + "gp_3": { "height": 560, "visible": false, "width": 694, "x": 192, "y": 57, "$t": "$eG", "$eleC": ["bg2", "txtInfo2", "memberNumLb", "allRejectBtn", "setBtn", "allagreeBtn", "scroller_app"] }, + "bg2": { "height": 490, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "txtInfo2": { "size": 22, "stroke": 2, "text": "成员数量:", "textColor": 15064527, "verticalAlign": "middle", "x": 66, "y": 519, "$t": "$eL" }, + "memberNumLb": { "size": 22, "stroke": 2, "text": "50/100", "textColor": 15064527, "verticalAlign": "middle", "x": 175, "y": 519, "$t": "$eL" }, + "allRejectBtn": { "label": "", "skinName": "Btn9Skin", "x": 451, "y": 508, "$t": "$eB" }, + "setBtn": { "label": "", "skinName": "Btn9Skin", "x": 328, "y": 508, "$t": "$eB" }, + "allagreeBtn": { "label": "", "skinName": "Btn9Skin", "x": 574, "y": 508, "$t": "$eB" }, + "scroller_app": { "height": 481, "width": 685, "x": 6, "y": 6, "$t": "$eS", "viewport": "memberAppList" }, + "memberAppList": { "itemRendererSkinName": "GuildApplyItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout5" }, + "_VerticalLayout5": { "gap": 1, "$t": "$eVL" }, + "gp_4": { "height": 560, "visible": false, "width": 694, "x": 191, "y": 57, "$t": "$eG", "$eleC": ["bg3", "scroller_guildList"] }, + "bg3": { "height": 555, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "scroller_guildList": { "height": 544, "scrollPolicyH": "off", "width": 685, "x": 6, "y": 6, "$t": "$eS", "viewport": "guildList" }, + "guildList": { "itemRendererSkinName": "GuildListItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout6" }, + "_VerticalLayout6": { "gap": 3, "$t": "$eVL" }, + "gp_5": { "height": 560, "width": 694, "x": 192, "y": 57, "$t": "$eG", "$eleC": ["_Image10", "_Scroller1", "_Label4", "guildContributionLab", "_RuleTipsButton1"] }, + "_Image10": { "height": 490, "scale9Grid": "19,17,1,1", "source": "com_bg_kuang_6_png", "width": 694, "$t": "$eI" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 474, "width": 682, "x": 7, "y": 7, "$t": "$eS", "viewport": "guildShopList" }, + "guildShopList": { "itemRendererSkinName": "ShopItemViewSkin", "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 3, "$t": "$eTL" }, + "_Label4": { "size": 22, "stroke": 2, "text": "拥有贡献:", "textColor": 15064527, "x": 63, "y": 517, "$t": "$eL" }, + "guildContributionLab": { "size": 22, "stroke": 2, "text": "0", "textColor": 2682369, "x": 163, "y": 518, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "17", "x": 17, "y": 510, "$t": "app.RuleTipsButton" }, + "$sP": [ + "dragDropUI", + "tabBar", + "optTab", + "bg", + "topBg", + "txtNoice", + "noiceLb", + "guildNameLb", + "guildPresident", + "txtLv", + "guildLevelLb", + "txtMoney", + "guildMoneyLb", + "txtMyDevote", + "guildMyDevoteLb", + "guildMermerNumLb", + "guildMyPostLb", + "txtCount", + "txtMyJob", + "editGuildNoticeBtn", + "devoteBtn", + "gpBtnList", + "ruleBtn", + "gp_0", + "bg0", + "txtBuild0", + "hallBuildLevelLb", + "txtBuild1", + "txtBuild2", + "txtBuild3", + "txtBuild4", + "hallNeedMoneyLb", + "hallBuildpb", + "mgrHallLvBtn", + "mgrHallGp", + "txtBuild5", + "liangongBuildLevelLb", + "txtBuild6", + "lgfNeedMoneyLb", + "txtBuild7", + "lgfBuildpb", + "lgfLvBtn", + "lgfGp", + "txtBuild8", + "assemblyHallLb", + "txtBuild9", + "txtBuild10", + "assNeedMoneyLb", + "txtBuild11", + "assemblyHallBuildpb", + "assemblyHallLvBtn", + "assemblyHallGp", + "txtBuild12", + "guildLogList", + "scroller_log", + "gp_1", + "bg1", + "txtInfo0", + "txtInfo1", + "myDevoteLb", + "myPostLB", + "exitGuildBtn", + "optGuildBtn", + "memberList", + "scroller_member", + "ruleBtn0", + "gp_2", + "bg2", + "txtInfo2", + "memberNumLb", + "allRejectBtn", + "setBtn", + "allagreeBtn", + "memberAppList", + "scroller_app", + "gp_3", + "bg3", + "guildList", + "scroller_guildList", + "gp_4", + "guildShopList", + "guildContributionLab", + "gp_5" + ], + "$sC": "$eSk" + }, + "GuildInfoViewSkin$Skin181": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GuildInfoViewSkin$Skin182": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GuildInfoViewSkin$Skin183": { + "$bs": { "$eleC": ["_Image1", "thumb", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "sm_jyt1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "sm_jyt2", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textAlign": "center", "textColor": 15064527, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "GuildListItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildListItemViewSkin.exml", + "$bs": { "height": 81, "width": 685, "$eleC": ["gp"] }, + "gp": { + "height": 81, + "horizontalCenter": 0, + "verticalCenter": 0, + "width": 685, + "$t": "$eG", + "$eleC": ["bg", "_Group1", "rankLb", "rolePrensionLevelLb", "txt0", "xuanzhanLb", "txt1", "txt2", "roleLevelLb", "guildMemberNumLb", "levelIcon", "fightBtn"] + }, + "bg": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg2", "x": 0, "y": 0, "$t": "$eI" }, + "_Group1": { "x": 115, "y": 11, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["guildNameLb", "guildLevelLb"] }, + "_HorizontalLayout1": { "gap": 7, "$t": "$eHL" }, + "guildNameLb": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "", "textColor": 15655172, "wordWrap": false, "x": 4, "y": 3, "$t": "$eL" }, + "guildLevelLb": { "left": 246, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "", "textColor": 1044007, "x": 136, "y": 4, "$t": "$eL" }, + "rankLb": { "fontFamily": "Arial", "horizontalCenter": -296, "size": 30, "text": "", "textColor": 16166721, "verticalCenter": 0.5, "$t": "$eL" }, + "rolePrensionLevelLb": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 178, "y": 48, "$t": "$eL" }, + "txt0": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 349, "y": 13, "$t": "$eL" }, + "xuanzhanLb": { "size": 24, "stroke": 2, "text": "", "textColor": 15007744, "verticalAlign": "middle", "verticalCenter": 0.5, "x": 580, "$t": "$eL" }, + "txt1": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 348, "y": 48, "$t": "$eL" }, + "txt2": { "size": 20, "stroke": 1, "text": "", "textColor": 15064527, "x": 118.68, "y": 48, "$t": "$eL" }, + "roleLevelLb": { "size": 20, "stroke": 1, "text": "", "textColor": 1044007, "x": 447, "y": 48, "$t": "$eL" }, + "guildMemberNumLb": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "x": 409, "y": 13, "$t": "$eL" }, + "levelIcon": { "source": "guild_json.guild_pm_1", "x": 25, "y": 16, "$t": "$eI" }, + "fightBtn": { "label": "", "skinName": "Btn9Skin", "x": 560.34, "y": 19.84, "$t": "$eB" }, + "$sP": ["bg", "guildNameLb", "guildLevelLb", "rankLb", "rolePrensionLevelLb", "txt0", "xuanzhanLb", "txt1", "txt2", "roleLevelLb", "guildMemberNumLb", "levelIcon", "fightBtn", "gp"], + "$sC": "$eSk" + }, + "GuildListViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildListViewSkin.exml", + "$bs": { "height": 645, "width": 910, "$eleC": ["dragDropUI", "creatGuildBtn", "onekeyAppBtn", "bg1", "_RuleTipsButton1", "_Group1"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "creatGuildBtn": { "label": "", "skinName": "Btn9Skin", "x": 644, "y": 565, "$t": "$eB" }, + "onekeyAppBtn": { "label": "", "skinName": "Btn9Skin", "x": 766, "y": 564, "$t": "$eB" }, + "bg1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 492, "scale9Grid": "18,17,3,2", "source": "com_bg_kuang_6_png", "width": 861.5, "x": 24.5, "y": 57, "$t": "$eI" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "20", "x": 577, "y": 571, "$t": "app.RuleTipsButton" }, + "_Group1": { "height": 488, "width": 856, "x": 27.2, "y": 61, "$t": "$eG", "$eleC": ["noListTipsLb", "scroller"] }, + "noListTipsLb": { "horizontalCenter": 0, "stroke": 1, "text": "", "textAlign": "center", "textColor": 14471870, "verticalAlign": "middle", "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "scroller": { "height": 488, "scrollPolicyH": "off", "width": 856, "$t": "$eS", "viewport": "gList" }, + "gList": { "itemRendererSkinName": "GuildNoGuildListItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "paddingLeft": 1, "$t": "$eVL" }, + "$sP": ["dragDropUI", "creatGuildBtn", "onekeyAppBtn", "bg1", "noListTipsLb", "gList", "scroller"], + "$sC": "$eSk" + }, + "GuildLogItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildLogItemViewSkin.exml", + "$bs": { "height": 32, "width": 665, "$eleC": ["imgBg", "logInfoLb"] }, + "imgBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "top": 0, "$t": "$eI" }, + "logInfoLb": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": -1, "x": 13, "$t": "$eL" }, + "$sP": ["imgBg", "logInfoLb"], + "$b": [{ "$bd": ["hostComponent.data"], "$bt": "logInfoLb", "$bp": "text" }], + "$sC": "$eSk" + }, + "GuildMemberItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml", + "$bs": { "height": 81, "width": 685, "$eleC": ["gp"] }, + "gp": { "height": 81, "width": 685, "$t": "$eG", "$eleC": ["selectedBg", "bg", "_Group1", "roleNameLb", "txt0", "txt1", "job", "txt2", "onlineLb", "devoteLb"] }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "guild_lbbg3", "$t": "$eI" }, + "bg": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg2", "$t": "$eI" }, + "_Group1": { "x": 37, "y": 49, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["roleLevelLb", "rolePrensionLb"] }, + "_HorizontalLayout1": { "gap": 16, "$t": "$eHL" }, + "roleLevelLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "32级", "textColor": 15064527, "x": 2, "y": 1, "$t": "$eL" }, + "rolePrensionLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "女法师", "textColor": 15064527, "x": 61, "y": 1, "$t": "$eL" }, + "roleNameLb": { "size": 24, "stroke": 2, "text": "冰雪真好玩", "textColor": 16742144, "x": 37, "y": 9, "$t": "$eL" }, + "txt0": { "size": 20, "stroke": 2, "text": "贡献度:", "textColor": 15064527, "x": 271, "y": 13, "$t": "$eL" }, + "txt1": { "size": 20, "stroke": 2, "text": "职位:", "textColor": 15064527, "x": 492, "y": 13, "$t": "$eL" }, + "job": { "size": 20, "stroke": 2, "text": "成员", "textColor": 15064527, "x": 550, "y": 13, "$t": "$eL" }, + "txt2": { "size": 20, "stroke": 2, "text": "上次在线:", "textColor": 15064527, "x": 271, "y": 47, "$t": "$eL" }, + "onlineLb": { "size": 20, "stroke": 2, "text": "在线", "textColor": 15064527, "x": 367, "y": 47, "$t": "$eL" }, + "devoteLb": { "size": 20, "stroke": 2, "text": "18000", "textColor": 15064527, "x": 347, "y": 14, "$t": "$eL" }, + "$sP": ["selectedBg", "bg", "roleLevelLb", "rolePrensionLb", "roleNameLb", "txt0", "txt1", "job", "txt2", "onlineLb", "devoteLb", "gp"], + "$sC": "$eSk" + }, + "GuildNoGuildListItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml", + "$bs": { "height": 81, "width": 856, "$eleC": ["_Group1"] }, + "_Group1": { + "x": -1, + "y": 0, + "$t": "$eG", + "$eleC": ["bg0", "guildNameLb", "rankLb", "guildLevelLb", "txt2", "guildLeaderNameLb", "txt0", "isApproveLb", "txt1", "roleLevelLb", "guildMemberNumLb", "levelIcon", "applyBtn"] + }, + "bg0": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg1", "y": 0, "$t": "$eI" }, + "guildNameLb": { "left": 123, "size": 24, "stroke": 2, "text": "<王者归来>", "textColor": 16166721, "y": 11, "$t": "$eL" }, + "rankLb": { "fontFamily": "Arial", "size": 30, "stroke": 2, "text": "5", "textColor": 16742144, "verticalCenter": -1.5, "x": 45, "$t": "$eL" }, + "guildLevelLb": { "left": 282, "size": 24, "stroke": 2, "text": "5级", "textColor": 2682369, "y": 12, "$t": "$eL" }, + "txt2": { "size": 20, "stroke": 2, "text": "会长:", "textColor": 15064527, "x": 123, "y": 47, "$t": "$eL" }, + "guildLeaderNameLb": { "left": 181, "size": 20, "stroke": 2, "text": "耳朵渴了", "textColor": 26367, "y": 48, "$t": "$eL" }, + "txt0": { "size": 20, "stroke": 2, "text": "人数:", "textColor": 15064527, "x": 353, "y": 13, "$t": "$eL" }, + "isApproveLb": { "size": 22, "stroke": 2, "text": "不需要审批", "textColor": 2682369, "verticalAlign": "middle", "verticalCenter": -15.5, "x": 544, "$t": "$eL" }, + "txt1": { "size": 20, "stroke": 2, "text": "等级要求:", "textColor": 15064527, "x": 351, "y": 47, "$t": "$eL" }, + "roleLevelLb": { "left": 446, "size": 20, "stroke": 2, "text": "45", "textColor": 2682369, "y": 48, "$t": "$eL" }, + "guildMemberNumLb": { "left": 410, "size": 20, "stroke": 2, "text": "2/100", "textColor": 15064527, "y": 13, "$t": "$eL" }, + "levelIcon": { "source": "guild_pm_1", "x": 29, "y": 17, "$t": "$eI" }, + "applyBtn": { "label": "", "skinName": "Btn9Skin", "x": 740, "y": 17, "$t": "$eB" }, + "$sP": ["bg0", "guildNameLb", "rankLb", "guildLevelLb", "txt2", "guildLeaderNameLb", "txt0", "isApproveLb", "txt1", "roleLevelLb", "guildMemberNumLb", "levelIcon", "applyBtn"], + "$sC": "$eSk" + }, + "GuildQQApplyItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml", + "$bs": { "height": 81, "width": 685, "$eleC": ["gp", "blueImg", "blueYearImg"] }, + "gp": { "height": 81, "width": 685, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["bg0", "roleNameLb", "_Group1", "rejectBtn", "agreeBtn"] }, + "bg0": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg2", "$t": "$eI" }, + "roleNameLb": { "size": 22, "stroke": 2, "text": "这周日你有空吗", "textColor": 16742144, "x": 64, "y": 13, "$t": "$eL" }, + "_Group1": { "x": 65, "y": 48, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["roleLevelLb", "rolePrensionLb"] }, + "_HorizontalLayout1": { "gap": 8, "$t": "$eHL" }, + "roleLevelLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "32级", "textColor": 15064527, "x": -12, "y": -3, "$t": "$eL" }, + "rolePrensionLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "女法师", "textColor": 15064527, "x": 38, "y": -3, "$t": "$eL" }, + "rejectBtn": { "label": "", "skinName": "Btn9Skin", "verticalCenter": 1.5, "x": 445, "$t": "$eB" }, + "agreeBtn": { "label": "", "skinName": "Btn9Skin", "verticalCenter": 1.5, "x": 568, "$t": "$eB" }, + "blueImg": { "source": "lz_hh1", "verticalCenter": -16.5, "visible": false, "x": 5.68, "$t": "$eI" }, + "blueYearImg": { "height": 20, "source": "lz_nf", "verticalCenter": -17.5, "visible": false, "width": 20, "x": 39, "$t": "$eI" }, + "$sP": ["bg0", "roleNameLb", "roleLevelLb", "rolePrensionLb", "rejectBtn", "agreeBtn", "gp", "blueImg", "blueYearImg"], + "$sC": "$eSk" + }, + "GuildQQMemberItemViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml", + "$bs": { "height": 81, "width": 685, "$eleC": ["gp", "blueImg", "blueYearImg"] }, + "gp": { "height": 81, "width": 685, "$t": "$eG", "$eleC": ["selectedBg", "bg", "_Group1", "roleNameLb", "txt0", "txt1", "job", "txt2", "onlineLb", "devoteLb"] }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "guild_lbbg3", "$t": "$eI" }, + "bg": { "scale9Grid": "14,14,1,1", "source": "guild_lbbg2", "$t": "$eI" }, + "_Group1": { "x": 63.68, "y": 49, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["roleLevelLb", "rolePrensionLb"] }, + "_HorizontalLayout1": { "gap": 16, "$t": "$eHL" }, + "roleLevelLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "32级", "textColor": 15064527, "x": 2, "y": 1, "$t": "$eL" }, + "rolePrensionLb": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "女法师", "textColor": 15064527, "x": 61, "y": 1, "$t": "$eL" }, + "roleNameLb": { "size": 24, "stroke": 2, "text": "这周日你有空吗", "textColor": 16742144, "x": 63.68, "y": 9, "$t": "$eL" }, + "txt0": { "size": 20, "stroke": 2, "text": "贡献度:", "textColor": 15064527, "x": 271, "y": 13, "$t": "$eL" }, + "txt1": { "size": 20, "stroke": 2, "text": "职位:", "textColor": 15064527, "x": 492, "y": 13, "$t": "$eL" }, + "job": { "size": 20, "stroke": 2, "text": "成员", "textColor": 15064527, "x": 550, "y": 13, "$t": "$eL" }, + "txt2": { "size": 20, "stroke": 2, "text": "上次在线:", "textColor": 15064527, "x": 271, "y": 47, "$t": "$eL" }, + "onlineLb": { "size": 20, "stroke": 2, "text": "在线", "textColor": 15064527, "x": 367, "y": 47, "$t": "$eL" }, + "devoteLb": { "size": 20, "stroke": 2, "text": "18000", "textColor": 15064527, "x": 347, "y": 14, "$t": "$eL" }, + "blueImg": { "source": "lz_hh1", "verticalCenter": -18.5, "x": 5.68, "$t": "$eI" }, + "blueYearImg": { "height": 20, "source": "lz_nf", "verticalCenter": -19.5, "width": 20, "x": 39, "$t": "$eI" }, + "$sP": ["selectedBg", "bg", "roleLevelLb", "rolePrensionLb", "roleNameLb", "txt0", "txt1", "job", "txt2", "onlineLb", "devoteLb", "gp", "blueImg", "blueYearImg"], + "$sC": "$eSk" + }, + "GuildSetViewSkin": { + "$path": "resource/eui_skins/web/guild/GuildSetViewSkin.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 301, + "width": 426, + "x": 0, + "$t": "$eG", + "$eleC": ["dragDropUI", "txt0", "txt1", "txt2", "txt3", "txt4", "checkYes", "checkNo", "btnCancel", "btnConfirm", "_Image1", "levelTpText"] + }, + "dragDropUI": { "height": 301, "skinName": "ViewBgWin6Skin", "width": 426, "$t": "app.UIViewFrame" }, + "txt0": { "size": 22, "text": "", "textColor": 15451538, "verticalAlign": "middle", "x": 34, "y": 106, "$t": "$eL" }, + "txt1": { "size": 22, "text": "", "textColor": 15451538, "verticalAlign": "middle", "x": 34, "y": 156, "$t": "$eL" }, + "txt2": { "size": 22, "text": "", "textColor": 15451538, "verticalAlign": "middle", "x": 228.12, "y": 109, "$t": "$eL" }, + "txt3": { "size": 22, "text": "", "textColor": 15451538, "verticalAlign": "middle", "x": 318, "y": 109, "$t": "$eL" }, + "txt4": { "size": 22, "text": "", "textColor": 15451538, "verticalAlign": "middle", "x": 241, "y": 156, "$t": "$eL" }, + "checkYes": { "name": "tabRed", "skinName": "CheckBox2", "x": 187, "y": 100, "$t": "$eCB" }, + "checkNo": { "name": "tabRed", "skinName": "CheckBox2", "x": 278, "y": 100, "$t": "$eCB" }, + "btnCancel": { "height": 44, "label": "", "width": 109, "x": 247, "y": 240, "$t": "$eB", "skinName": "GuildSetViewSkin$Skin184" }, + "btnConfirm": { "height": 44, "label": "", "width": 109, "x": 73, "y": 240, "$t": "$eB", "skinName": "GuildSetViewSkin$Skin185" }, + "_Image1": { "height": 32, "scale9Grid": "10,10,2,1", "source": "ltk_4", "width": 87, "x": 147, "y": 151, "$t": "$eI" }, + "levelTpText": { "height": 32, "restrict": "0-9", "skinName": "TextInputSkin", "width": 87, "x": 147, "y": 151, "$t": "$eTI" }, + "$sP": ["dragDropUI", "txt0", "txt1", "txt2", "txt3", "txt4", "checkYes", "checkNo", "btnCancel", "btnConfirm", "levelTpText"], + "$sC": "$eSk" + }, + "GuildSetViewSkin$Skin184": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "GuildSetViewSkin$Skin185": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "GuildTarBtnItemSkin": { + "$path": "resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml", + "$bs": { "height": 59, "width": 147, "$eleC": ["labelDisplay", "redDot"], "$sId": ["select", "selected"] }, + "select": { "horizontalCenter": 0, "smoothing": false, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "selected": { "source": "tab_01_1", "$t": "$eI" }, + "labelDisplay": { + "bold": false, + "horizontalCenter": 0, + "size": 22, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 15451538, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "redDot": { "height": 20, "right": -5, "top": 1, "width": 20, "$t": "app.RedDotControl" }, + "$sP": ["select", "selected", "labelDisplay", "redDot"], + "$s": { + "down": { "$saI": [{ "target": "selected", "property": "", "position": 2, "relativeTo": "labelDisplay" }] }, + "up": { "$saI": [{ "target": "select", "property": "", "position": 0, "relativeTo": "" }] } + }, + "$sC": "$eSk" + }, + "InspireItemSkin": { + "$path": "resource/eui_skins/web/inspire/InspireItemSkin.exml", + "$bs": { "height": 72, "width": 265, "$eleC": ["_Image1", "_Image2", "icon", "money", "txtAdd", "txtConsume"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 61, "source": "boss_gw_bg2", "width": 218, "x": 43, "y": 5, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "scaleX": 0.8, "scaleY": 0.8, "smoothing": false, "source": "boss_gw_bg", "y": 1, "$t": "$eI" }, + "icon": { "scaleX": 0.8, "scaleY": 0.8, "source": "boss_gw_jb", "x": 0, "y": 7, "$t": "$eI" }, + "money": { "scaleX": 0.6, "scaleY": 0.5, "source": "13123", "x": 123, "y": 33, "$t": "$eI" }, + "txtAdd": { "size": 18, "text": "60", "textColor": 2682369, "x": 73, "y": 14, "$t": "$eL" }, + "txtConsume": { "size": 18, "text": "消耗: 5000", "textColor": 14857866, "x": 73, "y": 39, "$t": "$eL" }, + "$sP": ["icon", "money", "txtAdd", "txtConsume"], + "$sC": "$eSk" + }, + "InspireSkin": { + "$path": "resource/eui_skins/web/inspire/InspireSkin.exml", + "$bs": { "height": 71, "width": 474, "$eleC": ["inspire_1", "inspire_2"] }, + "inspire_1": { "scaleX": 0.8, "scaleY": 0.8, "skinName": "InspireItemSkin", "visible": false, "x": 8, "y": 8, "$t": "app.InspireItemView" }, + "inspire_2": { "scaleX": 0.8, "scaleY": 0.8, "skinName": "InspireItemSkin", "visible": false, "x": 260, "y": 8, "$t": "app.InspireItemView" }, + "$sP": ["inspire_1", "inspire_2"], + "$sC": "$eSk" + }, + "KuanFuView": { + "$path": "resource/eui_skins/web/kuafu/KuanFuView.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "height": 840, "horizontalCenter": 0, "verticalCenter": 0, "width": 1344, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "_Image3", "doubleRoleExp"] }, + "_Image1": { "source": "loading_1_jpg", "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "scaleX": 0.7, "scaleY": 0.7, "source": "txt_kf_png", "visible": false, "x": 565, "y": 717, "$t": "$eI" }, + "_Image3": { "scaleX": 0.7, "scaleY": 0.7, "source": "Login_json.login_jdt_k", "x": 225, "y": 737, "$t": "$eI" }, + "doubleRoleExp": { "height": 18, "scaleX": 0.7, "scaleY": 0.7, "touchChildren": false, "value": 1, "width": 1262, "x": 231, "y": 740, "$t": "$ePB", "skinName": "KuanFuView$Skin186" }, + "$sP": ["doubleRoleExp"], + "$sC": "$eSk" + }, + "KuanFuView$Skin186": { + "$bs": { "$eleC": ["thumb", "labelDisplay"] }, + "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "login_jdt_t", "top": 1, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0.5, "size": 27, "stroke": 2, "text": "跨服中......", "textColor": 15064527, "top": 40, "$t": "$eL" }, + "$sP": ["thumb", "labelDisplay"], + "$sC": "$eSk" + }, + "MailSkin": { + "$path": "resource/eui_skins/web/mail/MailSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["_Group3"] }, + "_Group3": { "$t": "$eG", "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "_Image6", "_Image7", "container", "list", "_Group2"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 492, + "scale9Grid": "19,20,2,1", + "scaleX": 1, + "scaleY": 1, + "source": "com_bg_kuang_6_png", + "width": 590.61, + "x": 296, + "y": 57, + "$t": "$eI" + }, + "_Image2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 491.33, + "scale9Grid": "17,19,2,4", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_6_png", + "width": 267.67, + "x": 23.96, + "y": 57, + "$t": "$eI" + }, + "_Image3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 29, + "scale9Grid": "18,18,2,1", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_6_png", + "width": 561, + "x": 309, + "y": 67, + "$t": "$eI" + }, + "_Image4": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 29, + "scale9Grid": "18,18,2,1", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_6_png", + "width": 561, + "x": 309, + "y": 105, + "$t": "$eI" + }, + "_Image5": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 29, + "scale9Grid": "18,18,2,1", + "scaleX": 1, + "scaleY": 1, + "smoothing": false, + "source": "com_bg_kuang_6_png", + "width": 561, + "x": 309, + "y": 143, + "$t": "$eI" + }, + "_Image6": { "height": 162, "scale9Grid": "19,18,2,2", "smoothing": false, "source": "com_bg_kuang_6_png", "width": 561, "x": 308.8, "y": 181.4, "$t": "$eI" }, + "_Image7": { "anchorOffsetY": 0, "height": 110.67, "scale9Grid": "19,18,2,2", "smoothing": false, "source": "com_bg_kuang_6_png", "width": 561, "x": 308.8, "y": 352.07, "$t": "$eI" }, + "container": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 403.68, + "width": 578.67, + "x": 304.37, + "y": 64.98, + "$t": "$eG", + "$eleC": ["_Label1", "_Label2", "_Label3", "_Label4", "_Label5", "_Group1"] + }, + "_Label1": { "name": "txt_name", "size": 20, "stroke": 2, "text": "端午福利", "textAlign": "center", "textColor": 15655172, "x": 17, "y": 7.98, "$t": "$eL" }, + "_Label2": { "name": "txt_time", "size": 20, "stroke": 1, "text": "时 间", "textAlign": "left", "textColor": 16742144, "x": 17, "y": 44.97, "$t": "$eL" }, + "_Label3": { + "height": 147, + "lineSpacing": 9, + "name": "txt_desc", + "size": 20, + "stroke": 2, + "text": "每日竞技场结算奖励,您的最终排名为:第16名!以下是我们特地为你准备的奖励:第16名!以下是我们特地为你准备的奖励:", + "textColor": 15064527, + "width": 536, + "x": 12, + "y": 123, + "$t": "$eL" + }, + "_Label4": { "lineSpacing": 7, "size": 24, "stroke": 2, "text": "附件", "textColor": 15064527, "width": 38, "x": 19.5, "y": 315, "$t": "$eL" }, + "_Label5": { "lineSpacing": 7, "name": "txt_sendName", "size": 20, "stroke": 2, "text": "发送者:系统邮件", "textColor": 2682369, "x": 17, "y": 83.01, "$t": "$eL" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 64, + "name": "item_group", + "width": 454.66, + "x": 66.02, + "y": 310.65, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["_ItemSlot1", "_ItemSlot2", "_ItemSlot3", "_ItemSlot4", "_ItemSlot5", "_ItemSlot6"] + }, + "_HorizontalLayout1": { "gap": 4, "paddingBottom": 2, "paddingLeft": 5, "paddingRight": 5, "paddingTop": 2, "verticalAlign": "middle", "$t": "$eHL" }, + "_ItemSlot1": { "name": "item_0", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 2.66, "y": 2.66, "$t": "app.ItemSlot" }, + "_ItemSlot2": { "name": "item_1", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 12.66, "y": 12.66, "$t": "app.ItemSlot" }, + "_ItemSlot3": { "name": "item_2", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 22.66, "y": 22.66, "$t": "app.ItemSlot" }, + "_ItemSlot4": { "name": "item_3", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 32.66, "y": 32.66, "$t": "app.ItemSlot" }, + "_ItemSlot5": { "name": "item_4", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 42.66, "y": 42.66, "$t": "app.ItemSlot" }, + "_ItemSlot6": { "name": "item_5", "scaleX": 1, "scaleY": 1, "skinName": "ItemSlotSkin", "x": 52.66, "y": 52.66, "$t": "app.ItemSlot" }, + "list": { "anchorOffsetY": 0, "height": 426, "width": 258, "x": 26.32, "y": 61.67, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "height": 426, "name": "scroller", "width": 258, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "MailItemSkin", "name": "list", "scaleX": 1, "scaleY": 1, "x": 2, "y": 2, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -1, "$t": "$eVL" }, + "_Group2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 62, + "width": 873, + "x": 14, + "y": 549, + "$t": "$eG", + "$eleC": [ + "_RuleTipsButton1", + "btn_delete", + "btn_get_attach", + "btn_onekey_get", + "btn_delete_com", + "_Label6", + "txt_count", + "_Label7", + "txt_no_read", + "_Label8", + "txt_no_get", + "_Label9", + "txt_no_com" + ] + }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "77", "x": 824.17, "y": 23.17, "$t": "app.RuleTipsButton" }, + "btn_delete": { "label": "删除", "skinName": "Btn9Skin", "visible": false, "x": 410, "y": -69, "$t": "$eB" }, + "btn_get_attach": { "label": "领取附件", "skinName": "Btn9Skin", "x": 510, "y": -67, "$t": "$eB" }, + "btn_onekey_get": { "label": "一键领取", "skinName": "Btn9Skin", "x": 21.64, "y": -51.36, "$t": "$eB" }, + "btn_delete_com": { "label": "删除完成", "skinName": "Btn9Skin", "x": 152.64, "y": -50.36, "$t": "$eB" }, + "_Label6": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25.33, + "size": 22, + "stroke": 2, + "text": "邮件数量:", + "textColor": 15064527, + "verticalAlign": "middle", + "x": 52.48, + "y": 29, + "$t": "$eL" + }, + "txt_count": { "size": 22, "stroke": 2, "text": "30/50", "textColor": 15064527, "verticalAlign": "middle", "width": 96, "x": 151.48, "y": 31, "$t": "$eL" }, + "_Label7": { "size": 22, "stroke": 2, "text": "未读邮件:", "textColor": 15064527, "verticalAlign": "middle", "x": 363.48, "y": 29, "$t": "$eL" }, + "txt_no_read": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25.33, + "size": 22, + "stroke": 2, + "text": "0", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 45, + "x": 465.98, + "y": 27, + "$t": "$eL" + }, + "_Label8": { "size": 22, "stroke": 2, "text": "未领取:", "textColor": 15064527, "verticalAlign": "middle", "x": 651.46, "y": 29, "$t": "$eL" }, + "txt_no_get": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25.33, + "size": 22, + "stroke": 2, + "text": "0", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 42, + "x": 730.98, + "y": 27, + "$t": "$eL" + }, + "_Label9": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25.33, + "size": 20, + "text": "完成", + "textColor": 15779990, + "verticalAlign": "middle", + "visible": false, + "width": 45, + "x": 466.98, + "y": 21, + "$t": "$eL" + }, + "txt_no_com": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25.33, + "size": 20, + "text": "", + "textColor": 15100230, + "verticalAlign": "middle", + "visible": false, + "width": 42, + "x": 512.98, + "y": 21, + "$t": "$eL" + }, + "$sP": ["dragDropUI", "container", "list", "btn_delete", "btn_get_attach", "btn_onekey_get", "btn_delete_com", "txt_count", "txt_no_read", "txt_no_get", "txt_no_com"], + "$sC": "$eSk" + }, + "MailItemSkin": { + "$path": "resource/eui_skins/web/mail/MailtemSkin.exml", + "$bs": { "height": 78, "width": 258, "$eleC": ["bg", "img_icon", "img_com", "txt_name", "txt_desc", "redImage", "mailState"] }, + "bg": { "smoothing": false, "source": "mail_tab_2", "$t": "$eI" }, + "img_icon": { "horizontalCenter": 87.5, "smoothing": false, "source": "mail_bx", "verticalCenter": -18.5, "visible": false, "$t": "$eI" }, + "img_com": { "smoothing": false, "source": "mail_com", "visible": false, "x": 4, "y": 14, "$t": "$eI" }, + "txt_name": { "anchorOffsetY": 0, "height": 18, "size": 18, "stroke": 2, "text": "系统邮件", "textColor": 15655172, "top": 44, "x": 16, "$t": "$eL" }, + "txt_desc": { "size": 18, "stroke": 2, "text": "每日竞技场奖励", "textColor": 15064527, "top": 14, "x": 16, "$t": "$eL" }, + "redImage": { "right": 0, "source": "common_hongdian", "top": -2, "visible": false, "$t": "$eI" }, + "mailState": { "horizontalCenter": 86, "size": 20, "stroke": 2, "text": "已读", "textColor": 15064527, "verticalCenter": 15, "$t": "$eL" }, + "$sP": ["bg", "img_icon", "img_com", "txt_name", "txt_desc", "redImage", "mailState"], + "$sC": "$eSk" + }, + "AntiAddictionView": { + "$path": "resource/eui_skins/web/main/AntiAddictionView.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "bottom": 0, "fillAlpha": 0.3, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["_Image1", "_Label1", "_Label2", "enterBtn"] }, + "_Image1": { "source": "chat_bg_tc1_2_png", "$t": "$eI" }, + "_Label1": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "防沉迷认证", "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "_Label2": { + "height": 180, + "horizontalCenter": -1, + "lineSpacing": 7, + "size": 21, + "stroke": 2, + "text": "未成年用户仅在周五,周六,周日和法定节假日的每日20:00—21:00有1小时的游戏体验时间。", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": -12, + "width": 394, + "$t": "$eL" + }, + "enterBtn": { "height": 44, "label": "前往认证", "width": 109, "x": 177, "y": 283, "$t": "$eB", "skinName": "AntiAddictionView$Skin187" }, + "$sP": ["enterBtn"], + "$sC": "$eSk" + }, + "AntiAddictionView$Skin187": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "AttackCharItemSkin": { + "$path": "resource/eui_skins/web/main/AttackCharItemSkin.exml", + "$bs": { "height": 43, "width": 247, "$eleC": ["_Rect1", "bg", "lbJob", "lbPlayerName", "playerLevel", "guildLevel", "selectImg"] }, + "_Rect1": { "bottom": 0, "fillAlpha": 0.1, "left": 1, "right": -1, "top": 0, "$t": "$eR" }, + "bg": { "bottom": 0, "fillAlpha": 0.3, "fillColor": 16711680, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eR" }, + "lbJob": { "source": "m_task_zy1", "touchEnabled": false, "x": 0, "y": 0, "$t": "$eI" }, + "lbPlayerName": { "size": 16, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "x": 46, "y": 4, "$t": "$eL" }, + "playerLevel": { "size": 16, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "x": 180, "y": 4, "$t": "$eL" }, + "guildLevel": { "size": 16, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "x": 46, "y": 23, "$t": "$eL" }, + "selectImg": { + "percentHeight": 100, + "scale9Grid": "9,8,8,9", + "scaleX": 1, + "scaleY": 1, + "source": "m_t_ms_bg2", + "touchEnabled": false, + "visible": false, + "percentWidth": 100, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "$sP": ["bg", "lbJob", "lbPlayerName", "playerLevel", "guildLevel", "selectImg"], + "$sC": "$eSk" + }, + "BulletFrameItemSkin": { + "$path": "resource/eui_skins/web/main/BulletFrameItemSkin.exml", + "$bs": { "height": 78, "$eleC": ["ItemData", "itemName"] }, + "ItemData": { "horizontalCenter": 0, "skinName": "ItemBaseSkin", "top": 0, "$t": "app.ItemBase" }, + "itemName": { "bottom": 0, "horizontalCenter": 0, "size": 15, "stroke": 2, "text": "道具名称", "textColor": 15064527, "$t": "$eL" }, + "$sP": ["ItemData", "itemName"], + "$sC": "$eSk" + }, + "BulletFrameSkin": { + "$path": "resource/eui_skins/web/main/BulletFrameSkin.exml", + "$bs": { "width": 260, "$eleC": ["_Image1", "imgType", "nameLabel"] }, + "_Image1": { "anchorOffsetY": 0, "height": 83, "horizontalCenter": 0, "scale9Grid": "30,5,184,30", "source": "dikuang", "width": 260, "$t": "$eI" }, + "imgType": { "horizontalCenter": 0, "source": "", "y": 9, "$t": "$eI" }, + "nameLabel": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textColor": 15007744, "y": 53, "$t": "$eL" }, + "$sP": ["imgType", "nameLabel"], + "$sC": "$eSk" + }, + "BulletFrameSkin2": { + "$path": "resource/eui_skins/web/main/BulletFrameSkin2.exml", + "$bs": { "height": 99, "width": 291, "$eleC": ["_Image1", "_Image2", "_Group1"] }, + "_Image1": { "horizontalCenter": 0, "scale9Grid": "30,5,184,30", "source": "tips_hdwpbg", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "scale9Grid": "30,5,184,30", "source": "tips_hdwptxt", "y": -30, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "itemRendererSkinName": "BulletFrameItemSkin", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "$sP": ["itemList"], + "$sC": "$eSk" + }, + "FastItemSkin": { + "$path": "resource/eui_skins/web/main/FastItemSkin.exml", + "$bs": { "height": 58, "width": 58, "$eleC": ["_Image1", "_Image2", "kjIcon"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "13,25,3,6", "source": "kuaijielan1", "top": 0, "$t": "$eI" }, + "_Image2": { "source": "F1", "x": 3, "y": 1, "$t": "$eI" }, + "kjIcon": { "height": 46, "horizontalCenter": 0, "source": "icon_activity", "verticalCenter": 0, "width": 46, "$t": "$eI" }, + "$sP": ["kjIcon"], + "$sC": "$eSk" + }, + "GongGaoView": { + "$path": "resource/eui_skins/web/main/GongGaoView.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["_Group1", "btn_close", "txt_name", "tab", "_Group3"] }, + "_Group1": { "$t": "$eG", "$eleC": ["dragDropUI", "_Image1", "_Image2"] }, + "dragDropUI": { "scaleX": 1, "scaleY": 1, "skinName": "ViewBgWin1Skin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "height": 560, "scale9Grid": "17,19,2,4", "smoothing": false, "source": "com_bg_kuang_6_png", "width": 157, "x": 23, "y": 56, "$t": "$eI" }, + "_Image2": { "height": 486, "source": "com_bg_kuang_6_png", "width": 702, "x": 185, "y": 56, "$t": "$eI" }, + "btn_close": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 889, "y": -9, "$t": "$eB", "skinName": "GongGaoView$Skin188" }, + "txt_name": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 26, "stroke": 2, "text": "系统公告", "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "tab": { "x": 28, "y": 61, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "_Group3": { "height": 560, "touchEnabled": false, "width": 700, "x": 185, "y": 56, "$t": "$eG", "$eleC": ["gongGaoScroller", "sureBtn"] }, + "gongGaoScroller": { "height": 452, "width": 644, "x": 30, "y": 22, "$t": "$eS", "viewport": "_Group2" }, + "_Group2": { "$t": "$eG", "$eleC": ["textLab"] }, + "textLab": { "lineSpacing": 10, "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "", "textColor": 15064527, "width": 644, "y": 2, "$t": "$eL" }, + "sureBtn": { "height": 44, "label": "确 定", "scaleX": 1, "scaleY": 1, "width": 109, "x": 273, "y": 500, "$t": "$eB", "skinName": "GongGaoView$Skin189" }, + "$sP": ["dragDropUI", "btn_close", "txt_name", "tab", "textLab", "gongGaoScroller", "sureBtn"], + "$sC": "$eSk" + }, + "GongGaoView$Skin188": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "GongGaoView$Skin189": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "IDCard": { + "$path": "resource/eui_skins/web/main/IDCard.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "bottom": 0, "fillAlpha": 0.5, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "height": 566, "horizontalCenter": 0, "verticalCenter": 0, "width": 515, "$t": "$eG", "$eleC": ["_Image1", "closeImg", "verificationImg"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "fcm_bg_png", "$t": "$eI" }, + "closeImg": { "right": 5, "source": "btn_guanbi", "top": 4, "$t": "$eI" }, + "verificationImg": { "source": "fcm_btn", "x": 160, "y": 500, "$t": "$eI" }, + "$sP": ["closeImg", "verificationImg"], + "$sC": "$eSk" + }, + "MainBanSkin": { + "$path": "resource/eui_skins/web/main/MainBanSkin.exml", + "$bs": { "height": 800, "width": 800, "$eleC": ["_Rect1", "_Image1", "desc", "_Label1"] }, + "_Rect1": { "alpha": 0.5, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Image1": { "anchorOffsetY": 0, "height": 277, "horizontalCenter": 0, "scale9Grid": "101,70,175,335", "source": "kbg_4_png", "verticalCenter": 0, "$t": "$eI" }, + "desc": { "horizontalCenter": 0, "size": 22, "textAlign": "center", "textColor": 14731679, "verticalCenter": 17, "y": 286, "$t": "$eL" }, + "_Label1": { "horizontalCenter": 1, "size": 22, "text": "提示", "textColor": 14731679, "verticalCenter": -113, "$t": "$eL" }, + "$sP": ["desc"], + "$sC": "$eSk" + }, + "skillItemSkin": { + "$path": "resource/eui_skins/web/main/skillItemSkin.exml", + "$bs": { "height": 55, "width": 55, "$eleC": ["skillIcon", "itemCount", "rect"] }, + "skillIcon": { "height": 55, "horizontalCenter": 0, "source": "skillicon_ds1", "verticalCenter": 0, "width": 55, "$t": "$eI" }, + "itemCount": { "right": 3, "size": 16, "stroke": 2, "text": "1", "textColor": 848404, "touchEnabled": false, "y": 39, "$t": "$eL" }, + "rect": { "bottom": 0, "fillAlpha": 0.7, "height": 55, "maxHeight": 55, "maxWidth": 55, "width": 55, "x": 0, "$t": "$eR" }, + "$sP": ["skillIcon", "itemCount", "rect"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "skillIcon", "name": "scaleX", "value": 0.95 }, + { "target": "skillIcon", "name": "scaleY", "value": 0.95 } + ] + } + }, + "$sC": "$eSk" + }, + + "MainBottomSkin": { + "$path": "resource/eui_skins/web/main/MainBottomSkin.exml", + "$bs": { + "height": 1076, + "width": 1920, + "$eleC": [ + "particleGroup", + "topGroup", + "_Group1", + "bindGoldNum", + "yuanbaoNum", + "playerName", + "lvLabel", + "blueImg", + "blueYearImg", + "_Group7", + "InfoGrp", + "_Group8", + "_Group9", + "_Group10", + "lyaer1", + "lyaer4", + "lyaer6", + "lyaer7", + "timerGrp", + "npcTimerGrp", + "duoBaoTimerGrp", + "suitBtn", + "effGroup", + "effGroup2", + "bubbleLabel", + "topGroup2", + "petGrp", + "sbkCdGrp", + "violentGuideTipsGrp", + "donationGuideTipsGrp", + "vipGuideTipsGrp", + "secondChargeTipsGrp", + "firstChargeTipsGrp", + "editionLabel", + "attackGroup", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3", + "msgGroup", + "qqGrp", + "shengQuGrp", + "addGroup", + "actTipsAllGrp", + "actEquipGrp", + "actLevelGrp" + ] + }, + "particleGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "topGroup": { "height": 66, "horizontalCenter": 0, "top": 13, "width": 313, "$t": "$eG", "$eleC": ["_Image1", "jobImage", "_Image2", "hpBar"] }, + "_Image1": { "source": "m_m_lock_bg", "touchEnabled": false, "x": 0, "y": 2, "$t": "$eI" }, + "jobImage": { "height": 60, "source": "", "touchEnabled": false, "visible": true, "width": 60, "x": 1, "y": 4, "$t": "$eI" }, + "_Image2": { "source": "m_m_lockname_bg", "touchEnabled": false, "x": 73, "y": 4, "$t": "$eI" }, + "hpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "touchChildren": false, "value": 50, "x": 75, "y": 43, "$t": "$ePB" }, + "_Group1": { + "height": 732, + "touchEnabled": false, + "width": 379, + "$t": "$eG", + "$eleC": [ + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "charIcon", + "vipbg", + "vipImg", + "vipEffGrp", + "rechargeButton", + "rechargeEffGrp", + "stretchBtn", + "switchButton", + "growWayBtn", + "growButton", + "CrossServerButton", + "returnServerButton", + "crossServerEffGrp", + "saviorBuff", + "buffList", + "leftBtnGrp" + ] + }, + "_Image3": { "source": "name_touxiangk", "x": 1, "y": 43, "visible": false, "$t": "$eI" }, + "_Image4": { "source": "name_hybg", "x": -3, "y": 131, "visible": false, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scale9Grid": "5,5,32,32", "source": "name_bg", "width": 293, "x": 2, "y": 1, "$t": "$eI" }, + "_Image6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 36, "scale9Grid": "5,5,32,32", "source": "name_bg", "width": 211, "x": 84, "y": 44, "visible": false, "$t": "$eI" }, + "_Image7": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 36, "scale9Grid": "5,5,32,32", "source": "name_bg", "width": 211, "x": 84, "y": 81, "visible": false, "$t": "$eI" }, + "_Image8": { "source": "", "x": 87, "y": 65, "$t": "$eI" }, + "_Image9": { "source": "name_icon_jb", "x": 6, "y": 13, "$t": "$eI" }, + "_Image10": { "source": "name_icon_yb", "x": 168, "y": 4, "$t": "$eI" }, + "charIcon": { "source": "name_1_0", "x": 5, "y": 51, "visible": false, "$t": "$eI" }, + "vipbg": { "blendMode": "add", "source": "", "x": -2, "y": 129, "visible": false, "$t": "$eI" }, + "vipImg": { "source": "name_hy0", "x": 6, "y": 136, "visible": false, "$t": "$eI" }, + "vipEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 42, "y": 149, "visible": false, "$t": "$eG" }, + "rechargeButton": { "height": 37, "label": "", "width": 78, "x": 301, "y": 3, "$t": "$eB", "visible": false, "skinName": "MainBottomSkin$Skin190" }, + "rechargeEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 301, "y": 3, "visible": false, "$t": "$eG" }, + "stretchBtn": { "anchorOffsetY": 12, "visible": false, "x": 5, "y": 270, "$t": "$eB", "skinName": "MainBottomSkin$Skin191" }, + "switchButton": { "x": 301, "y": 3, "$t": "$eB", "skinName": "MainBottomSkin$Skin192" }, + "growWayBtn": { "configid": 25, "skinName": "MainBtn7Skin", "x": 7, "y": 123, "$t": "app.MainButton3" }, + "growButton": { "configid": 46, "skinName": "MainBtn7Skin", "x": 7, "y": 205, "$t": "app.MainButton3" }, + "CrossServerButton": { "configid": 65, "skinName": "MainBtnSkin", "x": 7, "y": 287, "$t": "app.MainButton3" }, + "returnServerButton": { "configid": 66, "skinName": "MainBtn7Skin", "x": 7, "y": 287, "$t": "app.MainButton3" }, + "crossServerEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 42, "y": 324, "$t": "$eG" }, + "saviorBuff": { "skinName": "ImageBaseSkin", "visible": false, "x": 89, "y": 117, "$t": "app.ImageBase" }, + "buffList": { "itemRendererSkinName": "ImageBaseSkin", "x": 89, "y": 117.37, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "leftBtnGrp": { "touchEnabled": false, "visible": false, "width": 83, "x": 3, "y": 281.67, "$t": "$eG", "$eleC": ["btnBg", "teamButton2"] }, + "btnBg": { "height": 420, "scale9Grid": "10,27,62,25", "source": "icon_bg", "touchEnabled": false, "width": 82, "x": 2, "$t": "$eI" }, + "teamButton2": { "configid": 8, "skinName": "MainBtn7Skin", "x": 6, "y": 8, "$t": "app.MainButton3" }, + "bindGoldNum": { "size": 20, "stroke": 2, "text": "", "textColor": 16777215, "x": 40, "y": 15, "$t": "$eL" }, + "yuanbaoNum": { "size": 20, "stroke": 2, "text": "", "textColor": 16777215, "x": 206, "y": 15, "$t": "$eL" }, + "playerName": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 97, "y": 53, "visible": false, "$t": "$eL" }, + "lvLabel": { "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "x": 96.33, "y": 89, "visible": false, "$t": "$eL" }, + "blueImg": { "source": "name_lz_hh3", "visible": false, "x": 87.69, "y": 52, "$t": "$eI" }, + "blueYearImg": { "height": 20, "source": "name_lz_nf", "visible": false, "width": 20, "x": 109.01, "y": 53, "$t": "$eI" }, + "_Group7": { + "bottom": -5, + "height": 252, + "horizontalCenter": 1.5, + "touchEnabled": false, + "$t": "$eG", + "$eleC": [ + "_Image11", + "guildButton", + "roleButton", + "bagMaxImage", + "_Group2", + "bagButton", + "skillButton", + "setupButton", + "composeButton", + "shopButton", + "shieldNearButton", + "shieldGuildButton", + "shieldPrivateButton", + "ruletipsButton", + "patternButton", + "_Image12", + "levelLab", + "_Image13", + "_Image14", + "roleExp", + "doubleRoleExp", + "labelTime", + "expMcGroup", + "_Group3", + "_Group4", + "levelGroup", + "expGroup", + "hpGroup", + "mpGroup", + "pkSelect", + "_Group5", + "buttonGroup", + "chatView", + "chatBtn", + "shopGroup" + ] + }, + "_Image11": { "source": "m_bg_zhuui", "touchEnabled": false, "visible": true, "$t": "$eI" }, + "guildButton": { "configid": 8, "skinName": "MainBtn3Skin", "x": 1185, "y": 194, "$t": "app.MainButton3" }, + "roleButton": { "configid": 5, "skinName": "MainBtn3Skin", "x": 1018, "y": 52, "$t": "app.MainButton3" }, + "bagMaxImage": { "source": "tips_man2", "visible": false, "x": 922, "y": -51, "$t": "$eI" }, + "_Group2": { "height": 0, "width": 0, "x": 1187, "y": 33, "$t": "$eG", "$eleC": ["skillTipsImage"] }, + "skillTipsImage": { "source": "tips_man4", "visible": true, "$t": "$eI" }, + "bagButton": { "configid": 2, "skinName": "MainBtn3Skin", "x": 1073, "y": 20, "$t": "app.MainButton3" }, + "skillButton": { "configid": 3, "skinName": "MainBtn3Skin", "x": 1138, "y": 31, "$t": "app.MainButton3" }, + "setupButton": { "configid": 4, "skinName": "MainBtn3Skin", "x": 1184, "y": 72, "$t": "app.MainButton3" }, + "composeButton": { "configid": 11, "skinName": "MainBtn3Skin", "x": 1199, "y": 133, "$t": "app.MainButton3" }, + "shopButton": { "configid": 1, "skinName": "MainBtn4Skin", "x": 1120, "y": 120, "$t": "app.MainButton3" }, + "shieldNearButton": { "height": 24, "icon": "m_chat_ltpb_fj1", "width": 24, "x": 290, "y": 103, "$t": "$eB" }, + "shieldGuildButton": { "height": 24, "icon": "m_chat_ltpb_hh1", "width": 24, "x": 290, "y": 129, "$t": "$eB" }, + "shieldPrivateButton": { "height": 24, "icon": "m_chat_ltpb_sl1", "width": 24, "x": 290, "y": 155, "$t": "$eB" }, + "ruletipsButton": { "height": 24, "icon": "m_chat_ltpb_shuoming", "width": 24, "x": 290, "y": 182, "$t": "$eB" }, + "patternButton": { "anchorOffsetY": 0, "height": 28, "icon": "m_t_ms_quanti", "width": 100, "x": 136, "y": 217, "$t": "$eB" }, + "_Image12": { "source": "exp_lv", "x": 993, "y": 117, "$t": "$eI" }, + "levelLab": { "font": "levelnumber_fnt", "letterSpacing": -1, "scaleX": 1, "scaleY": 1, "text": "132", "x": 1025, "y": 119, "$t": "$eBL" }, + "_Image13": { "source": "exp_exp", "x": 993, "y": 156, "$t": "$eI" }, + "_Image14": { "source": "exp_sexp", "x": 993, "y": 188, "$t": "$eI" }, + "roleExp": { "bottom": 80, "left": 1022, "touchChildren": false, "value": 100, "width": 101, "$t": "$ePB", "skinName": "MainBottomSkin$Skin193" }, + "doubleRoleExp": { "bottom": 43, "left": 1021, "touchChildren": false, "value": 100, "width": 128, "x": 1032, "y": 181, "$t": "$ePB", "skinName": "MainBottomSkin$Skin194" }, + "labelTime": { "size": 18, "text": "", "textAlign": "center", "touchEnabled": false, "width": 100, "x": 1063, "y": 223, "$t": "$eL" }, + "expMcGroup": { "bottom": 52, "height": 0, "left": 1086, "$t": "$eG" }, + "_Group3": { "width": 86, "x": 1024, "y": 157, "$t": "$eG", "$eleC": ["expLab"] }, + "expLab": { "font": "levelnumber_fnt", "horizontalCenter": 0, "letterSpacing": -1, "text": "132b", "y": -1, "$t": "$eBL" }, + "_Group4": { "width": 116, "x": 1022, "y": 196, "$t": "$eG", "$eleC": ["doubleExpLab"] }, + "doubleExpLab": { "font": "levelnumber_fnt", "horizontalCenter": 0, "letterSpacing": -1, "text": "", "y": -2, "$t": "$eBL" }, + "levelGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 81, "width": 122, "x": 989, "y": 106, "$t": "$eG" }, + "expGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 28, "width": 123, "x": 989, "y": 190, "$t": "$eG" }, + "hpGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 107, "visible": true, "width": 52, "x": 131, "y": 93, "$t": "$eG" }, + "mpGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 107, "visible": true, "width": 52, "x": 189, "y": 93, "$t": "$eG" }, + "pkSelect": { "skinName": "SelectInputSkin", "visible": false, "x": 137, "y": 216, "$t": "app.SelectInput" }, + "_Group5": { + "height": 61, + "touchEnabled": false, + "visible": true, + "width": 660, + "x": 318, + "y": 22, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["skillGrp0", "skillGrp1", "skillGrp2", "skillGrp3", "skillGrp4", "skillGrp5", "skillGrp6", "skillGrp7", "skillGrp8", "skillGrp9", "skillGrp10", "skillGrp11"] + }, + "_HorizontalLayout2": { "gap": -1, "$t": "$eHL" }, + "skillGrp0": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill0", "_Image15", "cdGrp0", "_Image16"] }, + "skill0": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image15": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp0": { "touchEnabled": false, "x": 29, "y": 29, "$t": "$eG" }, + "_Image16": { "source": "m_kjj_1", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp1": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill1", "_Image17", "cdGrp1", "_Image18"] }, + "skill1": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image17": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp1": { "touchEnabled": false, "x": 29, "y": 29, "$t": "$eG" }, + "_Image18": { "source": "m_kjj_2", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp2": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill2", "_Image19", "cdGrp2", "_Image20"] }, + "skill2": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image19": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp2": { "touchEnabled": false, "x": 29, "y": 29, "$t": "$eG" }, + "_Image20": { "source": "m_kjj_3", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp3": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill3", "_Image21", "cdGrp3", "_Image22"] }, + "skill3": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image21": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp3": { "touchEnabled": false, "x": 29, "y": 29, "$t": "$eG" }, + "_Image22": { "source": "m_kjj_4", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp4": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill4", "_Image23", "cdGrp4", "_Image24"] }, + "skill4": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image23": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp4": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image24": { "source": "m_kjj_5", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp5": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill5", "_Image25", "cdGrp5", "_Image26"] }, + "skill5": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image25": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp5": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image26": { "source": "m_kjj_6", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp6": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill6", "_Image27", "cdGrp6", "_Image28"] }, + "skill6": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image27": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp6": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image28": { "source": "m_kjj_7", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp7": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill7", "_Image29", "cdGrp7", "_Image30"] }, + "skill7": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image29": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp7": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image30": { "source": "m_kjj_8", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp8": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill8", "_Image31", "cdGrp8", "_Image32"] }, + "skill8": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image31": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp8": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image32": { "source": "m_kjj_9", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp9": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill9", "_Image33", "cdGrp9", "_Image34"] }, + "skill9": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image33": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp9": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image34": { "source": "m_kjj_10", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp10": { "touchEnabled": false, "$t": "$eG", "$eleC": ["skill10", "_Image35", "cdGrp10", "_Image36"] }, + "skill10": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image35": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp10": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image36": { "source": "m_kjj_11", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "skillGrp11": { "touchEnabled": false, "visible": false, "$t": "$eG", "$eleC": ["skill11", "_Image37", "cdGrp11", "_Image38"] }, + "skill11": { "skinName": "skillItemSkin", "touchEnabled": false, "x": 2, "y": 1, "$t": "app.MainSkillIconItem" }, + "_Image37": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp11": { "touchEnabled": false, "x": 30, "y": 30, "$t": "$eG" }, + "_Image38": { "source": "m_kjj_12", "touchEnabled": false, "x": 4, "y": 4, "$t": "$eI" }, + "buttonGroup": { "touchEnabled": false, "width": 660, "x": 318, "y": 84, "$t": "$eG", "$eleC": ["_Group6", "settingBtn"] }, + "_Group6": { "x": 25, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["friendsButton", "mailButton", "teamButton", "flyButton", "privateDealsButton", "tradeLineWinButton", "rankBtn"] }, + "_HorizontalLayout3": { "gap": 6, "$t": "$eHL" }, + "friendsButton": { "configid": 42, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "mailButton": { "configid": 40, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "teamButton": { "configid": 41, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "flyButton": { "configid": 18, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "privateDealsButton": { "configid": 9, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "tradeLineWinButton": { "configid": 45, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "rankBtn": { "configid": 44, "skinName": "MainBtn5Skin", "$t": "app.MainButton3" }, + "settingBtn": { "configid": 43, "skinName": "MainBtn6Skin", "x": 575, "$t": "app.MainButton3" }, + "chatView": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 134, "skinName": "ChatSkin", "width": 660, "x": 319, "y": 108, "$t": "app.ChatView" }, + "chatBtn": { "horizontalCenter": 304.5, "scaleX": 0.9, "scaleY": 0.9, "source": "btn_liaotian", "verticalCenter": -32, "$t": "$eI" }, + "shopGroup": { "touchChildren": false, "touchEnabled": false, "x": 1141, "y": 141, "$t": "$eG" }, + "InfoGrp": { "bottom": 1, "height": 214, "left": 3, "touchEnabled": false, "visible": true, "$t": "$eG", "$eleC": ["buffList1", "buffList2"] }, + "buffList1": { "alpha": 0.5, "itemRendererSkinName": "ImageBaseSkin", "y": 44.37, "$t": "$eLs", "layout": "_HorizontalLayout4" }, + "_HorizontalLayout4": { "gap": 3, "$t": "$eHL" }, + "buffList2": { "alpha": 0.5, "itemRendererSkinName": "ImageBaseSkin", "y": 86, "$t": "$eLs", "layout": "_HorizontalLayout5" }, + "_HorizontalLayout5": { "gap": 3, "$t": "$eHL" }, + "_Group8": { "bottom": 240, "height": 87, "horizontalCenter": -235, "touchEnabled": false, "width": 702, "$t": "$eG", "$eleC": ["lyaer5", "buffList3"] }, + "lyaer5": { "height": 72, "y": 14, "$t": "$eG" }, + "buffList3": { "alpha": 0.5, "bottom": 12, "itemRendererSkinName": "ImageBaseSkin", "touchChildren": false, "x": 10, "y": 39, "$t": "$eLs", "layout": "_HorizontalLayout6" }, + "_HorizontalLayout6": { "gap": 3, "$t": "$eHL" }, + "_Group9": { "height": 0, "touchEnabled": false, "verticalCenter": -150, "width": 0, "x": 550, "$t": "$eG", "$eleC": ["buffList4"] }, + "buffList4": { "itemRendererSkinName": "ImageBaseSkin", "touchChildren": false, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 0, "requestedColumnCount": 4, "verticalGap": 0, "$t": "$eTL" }, + "_Group10": { "right": 164, "top": 13, "visible": true, "$t": "$eG", "$eleC": ["iconToggle", "toggleRed"] }, + "iconToggle": { "height": 42, "label": "", "width": 41, "$t": "$eTB", "skinName": "MainBottomSkin$Skin195" }, + "toggleRed": { "right": 0, "top": 0, "visible": false, "$t": "app.RedDotControl" }, + "lyaer1": { "bottom": 232, "left": 0, "right": 0, "touchChildren": true, "touchEnabled": false, "$t": "$eG" }, + "lyaer4": { "right": 208, "top": 10, "touchChildren": true, "touchEnabled": false, "visible": true, "$t": "$eG" }, + "lyaer6": { "right": 208, "top": 95, "touchChildren": true, "touchEnabled": false, "visible": true, "$t": "$eG" }, + "lyaer7": { "left": 388, "top": 10, "touchChildren": true, "touchEnabled": false, "visible": true, "$t": "$eG" }, + "timerGrp": { "height": 32, "right": 5, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 300, "y": 190, "$t": "$eG", "$eleC": ["_Image39", "actTime"] }, + "_Image39": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "actTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "npcTimerGrp": { "height": 32, "right": 5, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 300, "y": 190, "$t": "$eG", "$eleC": ["_Image40", "npcTime"] }, + "_Image40": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "npcTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "duoBaoTimerGrp": { "height": 32, "right": 5, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 300, "y": 190, "$t": "$eG", "$eleC": ["_Image41", "duoBaoTime"] }, + "_Image41": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "duoBaoTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "suitBtn": { "bottom": 85, "icon": "main_tuichu", "label": "Button", "left": 25, "skinName": "Btn0Skin", "visible": false, "$t": "$eB" }, + "effGroup": { "bottom": 263, "height": 1, "horizontalCenter": -79.5, "touchEnabled": false, "visible": true, "width": 1, "$t": "$eG", "$eleC": ["onHookGroup"] }, + "onHookGroup": { "x": 110, "y": -34, "$t": "$eG", "$eleC": ["drugBtn", "pickupBtn", "splitBtn"] }, + "drugBtn": { "height": 53, "label": "", "width": 50, "$t": "$eB", "skinName": "MainBottomSkin$Skin196" }, + "pickupBtn": { "height": 53, "label": "", "width": 50, "x": 52, "y": 0, "$t": "$eB", "skinName": "MainBottomSkin$Skin197" }, + "splitBtn": { "height": 53, "label": "", "visible": false, "width": 50, "x": 104, "y": 0, "$t": "$eB", "skinName": "MainBottomSkin$Skin198" }, + "effGroup2": { "bottom": 325, "height": 1, "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "visible": true, "width": 1, "$t": "$eG" }, + "bubbleLabel": { "bold": true, "bottom": 330, "horizontalCenter": 0, "size": 30, "stroke": 1, "text": "", "textColor": 2682369, "touchEnabled": false, "visible": false, "$t": "$eL" }, + "topGroup2": { "horizontalCenter": 0, "top": 14, "touchChildren": false, "touchEnabled": false, "visible": false, "width": 313, "$t": "$eG", "$eleC": ["jobImg", "lockName", "lockHpLabel"] }, + "jobImg": { "scaleX": 0.8, "scaleY": 0.8, "source": "m_job1", "x": 74.31, "y": 7.02, "$t": "$eI" }, + "lockName": { "size": 18, "stroke": 2, "text": "我姐小熙是拖啊 10转999", "textAlign": "left", "verticalCenter": -11.5, "width": 210, "x": 101.65, "$t": "$eL" }, + "lockHpLabel": { "anchorOffsetY": 0, "height": 20, "size": 18, "stroke": 2, "text": "3086/5895", "textAlign": "center", "verticalAlign": "middle", "width": 235, "x": 75, "y": 43, "$t": "$eL" }, + "petGrp": { "bottom": 61, "left": 7, "visible": false, "$t": "$eG", "$eleC": ["_Image42", "petFollow", "followRect", "petKuang", "petAck", "_Label1"] }, + "_Image42": { "source": "cwms_bg", "$t": "$eI" }, + "petFollow": { "height": 33, "label": "跟 随", "width": 100, "x": 3.6, "y": 39, "$t": "$eB", "skinName": "MainBottomSkin$Skin199" }, + "followRect": { "fillAlpha": 0.7, "height": 26, "right": 107, "touchEnabled": false, "visible": false, "width": 93, "y": 42, "$t": "$eR" }, + "petKuang": { "height": 37, "scale9Grid": "13,11,1,1", "source": "pet_kuang", "visible": false, "width": 101, "x": 2.6, "y": 36.6, "$t": "$eI" }, + "petAck": { "height": 33, "label": "攻击中", "width": 100, "x": 103, "y": 39, "$t": "$eB", "skinName": "MainBottomSkin$Skin200" }, + "_Label1": { "bold": true, "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "宠物状态", "textColor": 14724725, "top": 12, "$t": "$eL" }, + "sbkCdGrp": { "touchChildren": false, "touchEnabled": false, "visible": false, "x": 825.28, "y": 188.01, "$t": "$eG", "$eleC": ["_Image43", "sbkTimeLab"] }, + "_Image43": { "source": "icon_shachengdjs", "x": 0, "y": 0, "$t": "$eI" }, + "sbkTimeLab": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "23:18:59", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "violentGuideTipsGrp": { "right": 208, "top": 10, "$t": "$eG" }, + "donationGuideTipsGrp": { "right": 208, "top": 10, "$t": "$eG" }, + "vipGuideTipsGrp": { "right": 208, "top": 10, "$t": "$eG" }, + "secondChargeTipsGrp": { "right": 370, "top": 10, "$t": "$eG" }, + "firstChargeTipsGrp": { "right": 290, "top": 10, "$t": "$eG" }, + "editionLabel": { "bottom": 10, "right": 10, "size": 22, "text": "", "visible": false, "$t": "$eL" }, + "attackGroup": { "right": 320, "top": 247, "touchEnabled": false, "visible": false, "$t": "$eG", "$eleC": ["_Image44", "_Label2", "attackList"] }, + "_Image44": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": -10, "left": -10, "right": -10, "scale9Grid": "3,3,18,18", "source": "m_task_k", "top": -10, "touchEnabled": false, "$t": "$eI" }, + "_Label2": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "受到玩家攻击,双击智能PK", "textColor": 15007744, "touchEnabled": false, "verticalAlign": "middle", "$t": "$eL" }, + "attackList": { "itemRendererSkinName": "AttackCharItemSkin", "width": 247, "y": 29, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 3, "$t": "$eVL" }, + "expDian": { "source": "exp_dian", "x": 1893, "y": 999, "visible": false, "$t": "app.TweenImage" }, + "expDian0": { "source": "exp_dian", "x": 1903, "y": 1009, "visible": false, "$t": "app.TweenImage" }, + "expDian1": { "source": "exp_dian", "x": 1913, "y": 1019, "visible": false, "$t": "app.TweenImage" }, + "expDian2": { "source": "exp_dian", "x": 1923, "y": 1029, "visible": false, "$t": "app.TweenImage" }, + "expDian3": { "source": "exp_dian", "x": 1933, "y": 1039, "visible": false, "$t": "app.TweenImage" }, + "msgGroup": { "bottom": 10, "right": 8, "touchChildren": false, "touchEnabled": false, "width": 120, "$t": "$eG", "$eleC": ["msg1", "msg2", "msg3"] }, + "msg1": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 2, "$t": "$eL" }, + "msg2": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 22, "$t": "$eL" }, + "msg3": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 42, "$t": "$eL" }, + "qqGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 0, "height": 56, "left": 4, "visible": false, "width": 335, "$t": "$eG", "$eleC": ["qqOpenID", "qqTxt", "addGrpBtn"] }, + "qqOpenID": { "left": 0, "right": 0, "size": 13, "stroke": 2, "text": "您的平台ID:YFBX", "textColor": 15064527, "$t": "$eL", "visible": false }, + "qqTxt": { "size": 13, "stroke": 2, "text": "若您在游戏中遇到问题,可联系官方客服。QQ:%s", "textColor": 15064527, "x": 0, "y": 16.67, "$t": "$eL", "visible": false }, + "addGrpBtn": { "icon": "join_qqun", "label": "Button", "skinName": "Btn0Skin", "x": 3.65, "y": 29.99, "$t": "$eB", "visible": false }, + "shengQuGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 0, "height": 56, "left": 4, "visible": false, "width": 335, "$t": "$eG", "$eleC": ["qqGrpTxt", "shengQuAddGrpBtn"] }, + "qqGrpTxt": { "size": 13, "stroke": 2, "text": "若您在游戏中遇到问题,可到官方群反馈。QQ:%s", "textColor": 15064527, "x": 0, "y": 16.67, "$t": "$eL" }, + "shengQuAddGrpBtn": { "icon": "join_qqun", "label": "Button", "skinName": "Btn0Skin", "x": 3.65, "y": 29.99, "$t": "$eB" }, + "addGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "actTipsAllGrp": { "left": 0, "top": 250, "touchEnabled": false, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["actTipsGrp1", "actTipsGrp2"] }, + "_VerticalLayout2": { "gap": -8, "$t": "$eVL" }, + "actTipsGrp1": { + "anchorOffsetX": 0, + "height": 124, + "scaleX": 1, + "scaleY": 1, + "touchEnabled": false, + "visible": true, + "width": 315, + "x": 453, + "y": 133, + "$t": "$eG", + "$eleC": ["actCircleGrp", "actCircleBtn"] + }, + "actCircleGrp": { + "scaleX": 1, + "scaleY": 1, + "touchChildren": false, + "visible": false, + "x": 21, + "y": 10, + "$t": "$eG", + "$eleC": ["_Image45", "actCircleEffGrp", "actCircleIcon", "actCircleQuality", "_Group11", "actCircleEffGrp0", "actCircleStrGrp", "clickReceive", "cieclereceiveEffGrp"] + }, + "_Image45": { "source": "dc_bg2", "touchEnabled": false, "$t": "$eI" }, + "actCircleEffGrp": { "touchEnabled": false, "verticalCenter": 0, "x": 43, "$t": "$eG" }, + "actCircleIcon": { "scaleX": 1.3, "scaleY": 1.3, "source": "13362", "touchEnabled": false, "x": 5, "y": 9, "$t": "$eI" }, + "actCircleQuality": { "scaleX": 1.3, "scaleY": 1.3, "source": "yan_109", "touchEnabled": false, "x": 5, "y": 9, "$t": "$eI" }, + "_Group11": { + "horizontalCenter": 43.5, + "touchChildren": false, + "touchEnabled": false, + "verticalCenter": -16, + "$t": "$eG", + "layout": "_HorizontalLayout7", + "$eleC": ["actTipsTopImg1", "actTipsTopImg2"] + }, + "_HorizontalLayout7": { "gap": -1, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "actTipsTopImg1": { "scaleX": 1, "scaleY": 1, "source": "dc_zs_jl11", "x": 22, "y": 15, "$t": "$eI" }, + "actTipsTopImg2": { "scaleX": 1, "scaleY": 1, "source": "dc_mu2", "x": 32, "y": 25, "$t": "$eI" }, + "actCircleEffGrp0": { "touchEnabled": false, "verticalCenter": -17, "x": 167, "$t": "$eG" }, + "actCircleStrGrp": { "horizontalCenter": 45, "touchChildren": false, "touchEnabled": false, "y": 58, "$t": "$eG", "$eleC": ["actCircleStr"] }, + "actCircleStr": { "size": 18, "stroke": 2, "text": "达到5转立即获得", "textColor": 15064527, "$t": "$eL" }, + "clickReceive": { "size": 18, "stroke": 2, "text": "前往领奖>>", "textColor": 2682369, "x": 116, "y": 58, "$t": "$eL" }, + "cieclereceiveEffGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "actCircleBtn": { + "anchorOffsetX": 12, + "anchorOffsetY": 17, + "height": 34, + "icon": "dc_btn1", + "label": "Button", + "scaleX": 0.9, + "scaleY": 0.9, + "skinName": "Btn0Skin", + "verticalCenter": 0, + "visible": false, + "width": 25, + "x": 12, + "$t": "$eB" + }, + "actTipsGrp2": { "height": 110, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "width": 316, "x": 448, "y": 285, "$t": "$eG", "$eleC": ["actMonsterGrp", "actMonsterBtn"] }, + "actMonsterGrp": { + "scaleX": 1, + "scaleY": 1, + "touchChildren": false, + "verticalCenter": 0, + "visible": false, + "x": 27, + "$t": "$eG", + "$eleC": ["_Image46", "actMonsterEff", "_Image47", "_Group12", "actMonsterEff0", "actMOnsterStr", "monsterClickReceive", "monsterEffGrp"] + }, + "_Image46": { "source": "dc_bg0", "touchEnabled": false, "$t": "$eI" }, + "actMonsterEff": { "touchEnabled": false, "verticalCenter": 3, "x": 31, "$t": "$eG" }, + "_Image47": { "right": 0, "source": "dc_bg1", "touchEnabled": false, "y": -1, "$t": "$eI" }, + "_Group12": { "horizontalCenter": 18, "touchEnabled": false, "verticalCenter": -21, "$t": "$eG", "layout": "_HorizontalLayout8", "$eleC": ["actMonsterImg1", "actMonsterImg2"] }, + "_HorizontalLayout8": { "horizontalAlign": "center", "$t": "$eHL" }, + "actMonsterImg1": { "scaleX": 1, "scaleY": 1, "source": "", "x": 22, "y": 15, "$t": "$eI" }, + "actMonsterImg2": { "scaleX": 1, "scaleY": 1, "source": "", "x": 32, "y": 25, "$t": "$eI" }, + "actMonsterEff0": { "touchEnabled": false, "x": 153, "y": 24, "$t": "$eG" }, + "actMOnsterStr": { + "bottom": 0, + "lineSpacing": 3, + "size": 16, + "stroke": 2, + "text": "打怪还差1299个完成目标赠送一转材料", + "textAlign": "center", + "textColor": 15064527, + "touchEnabled": false, + "width": 199, + "x": 48, + "$t": "$eL" + }, + "monsterClickReceive": { "size": 20, "stroke": 2, "text": "前往领奖>>", "textColor": 2682369, "x": 93, "y": 58, "$t": "$eL" }, + "monsterEffGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 0, "x": 128, "y": 60, "$t": "$eG" }, + "actMonsterBtn": { + "anchorOffsetX": 12, + "anchorOffsetY": 54, + "height": 109, + "icon": "dc_btn2", + "label": "Button", + "scaleX": 1, + "scaleY": 1, + "skinName": "Btn0Skin", + "verticalCenter": -1, + "visible": false, + "width": 25, + "x": 12, + "$t": "$eB" + }, + "actEquipGrp": { + "right": 0, + "top": 191, + "touchChildren": false, + "visible": false, + "$t": "$eG", + "$eleC": ["_Image48", "_Group13", "actEquipEffGrp", "actEquipImgGrp", "actEquipReceive", "actEquipProgress", "equipEffGrp"] + }, + "_Image48": { "scale9Grid": "0,0,283,67", "source": "dc_bg3", "$t": "$eI" }, + "_Group13": { "horizontalCenter": 0, "y": 3, "$t": "$eG", "$eleC": ["actEquipIcon", "actEquipNum"] }, + "actEquipIcon": { "scaleX": 1, "scaleY": 1, "source": "dc_cdwenzi1", "$t": "$eI" }, + "actEquipNum": { "left": 53, "source": "dc_cdmu7", "y": 0, "$t": "$eI" }, + "actEquipEffGrp": { "touchChildren": false, "touchEnabled": false, "x": 149, "y": 20, "$t": "$eG" }, + "actEquipImgGrp": { "horizontalCenter": -27, "y": 34, "$t": "$eG", "layout": "_HorizontalLayout9", "$eleC": ["actEquipImg1", "actEquipImg2"] }, + "_HorizontalLayout9": { "gap": -4, "$t": "$eHL" }, + "actEquipImg1": { "scaleX": 1, "scaleY": 1, "source": "dc_jpwenzi0", "x": 16, "y": 34, "$t": "$eI" }, + "actEquipImg2": { "scaleX": 1, "scaleY": 1, "source": "dc_jpwenzi1", "x": 26, "y": 44, "$t": "$eI" }, + "actEquipReceive": { "horizontalCenter": -23, "size": 20, "stroke": 2, "text": "已达成,前往领奖>>", "textColor": 2682369, "y": 41, "$t": "$eL" }, + "actEquipProgress": { "left": 219, "size": 20, "stroke": 2, "text": "(5/6)", "textColor": 2682369, "y": 41, "$t": "$eL" }, + "equipEffGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "actLevelGrp": { + "bottom": 234, + "horizontalCenter": -367, + "touchChildren": false, + "visible": false, + "$t": "$eG", + "$eleC": ["_Image49", "_Image50", "actLevelIcon", "actLevelQuality", "actLevelStr", "actLevelReceive", "actLevelEff", "levelEffGrp", "receiveEffGrp"] + }, + "_Image49": { "horizontalCenter": 0.5, "source": "dc_bg4", "visible": true, "y": 35.402, "$t": "$eI" }, + "_Image50": { "height": 45, "horizontalCenter": 0, "scale9Grid": "34,5,34,6", "source": "dc_bg5", "visible": true, "width": 130, "y": 56, "$t": "$eI" }, + "actLevelIcon": { "height": 72, "horizontalCenter": 1.5, "source": "12097", "width": 72, "y": -6, "$t": "$eI" }, + "actLevelQuality": { "horizontalCenter": 1, "source": "yan_101", "visible": false, "$t": "$eI" }, + "actLevelStr": { "lineSpacing": 3, "size": 15, "stroke": 2, "text": "还差5级\n等级50可领取", "textAlign": "center", "textColor": 15064527, "visible": true, "width": 129, "y": 64, "$t": "$eL" }, + "actLevelReceive": { + "horizontalCenter": 0, + "lineSpacing": 3, + "size": 15, + "stroke": 2, + "text": "领取奖励>>", + "textAlign": "center", + "textColor": 2682369, + "visible": true, + "width": 101, + "y": 72, + "$t": "$eL" + }, + "actLevelEff": { "touchChildren": false, "touchEnabled": false, "x": 65, "y": 28, "$t": "$eG" }, + "levelEffGrp": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchChildren": false, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "receiveEffGrp": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchChildren": false, "touchEnabled": false, "verticalCenter": 29, "x": 0, "y": 0, "$t": "$eG" }, + "$sP": [ + "particleGroup", + "jobImage", + "hpBar", + "topGroup", + "charIcon", + "vipbg", + "vipImg", + "vipEffGrp", + "rechargeButton", + "rechargeEffGrp", + "stretchBtn", + "switchButton", + "growWayBtn", + "growButton", + "CrossServerButton", + "returnServerButton", + "crossServerEffGrp", + "saviorBuff", + "buffList", + "btnBg", + "teamButton2", + "leftBtnGrp", + "bindGoldNum", + "yuanbaoNum", + "playerName", + "lvLabel", + "blueImg", + "blueYearImg", + "guildButton", + "roleButton", + "bagMaxImage", + "skillTipsImage", + "bagButton", + "skillButton", + "setupButton", + "composeButton", + "shopButton", + "shieldNearButton", + "shieldGuildButton", + "shieldPrivateButton", + "ruletipsButton", + "patternButton", + "levelLab", + "roleExp", + "doubleRoleExp", + "labelTime", + "expMcGroup", + "expLab", + "doubleExpLab", + "levelGroup", + "expGroup", + "hpGroup", + "mpGroup", + "pkSelect", + "skill0", + "cdGrp0", + "skillGrp0", + "skill1", + "cdGrp1", + "skillGrp1", + "skill2", + "cdGrp2", + "skillGrp2", + "skill3", + "cdGrp3", + "skillGrp3", + "skill4", + "cdGrp4", + "skillGrp4", + "skill5", + "cdGrp5", + "skillGrp5", + "skill6", + "cdGrp6", + "skillGrp6", + "skill7", + "cdGrp7", + "skillGrp7", + "skill8", + "cdGrp8", + "skillGrp8", + "skill9", + "cdGrp9", + "skillGrp9", + "skill10", + "cdGrp10", + "skillGrp10", + "skill11", + "cdGrp11", + "skillGrp11", + "friendsButton", + "mailButton", + "teamButton", + "flyButton", + "privateDealsButton", + "tradeLineWinButton", + "rankBtn", + "settingBtn", + "buttonGroup", + "chatView", + "chatBtn", + "shopGroup", + "buffList1", + "buffList2", + "InfoGrp", + "lyaer5", + "buffList3", + "buffList4", + "iconToggle", + "toggleRed", + "lyaer1", + "lyaer4", + "lyaer6", + "lyaer7", + "actTime", + "timerGrp", + "npcTime", + "npcTimerGrp", + "duoBaoTime", + "duoBaoTimerGrp", + "suitBtn", + "drugBtn", + "pickupBtn", + "splitBtn", + "onHookGroup", + "effGroup", + "effGroup2", + "bubbleLabel", + "jobImg", + "lockName", + "lockHpLabel", + "topGroup2", + "petFollow", + "followRect", + "petKuang", + "petAck", + "petGrp", + "sbkTimeLab", + "sbkCdGrp", + "violentGuideTipsGrp", + "donationGuideTipsGrp", + "vipGuideTipsGrp", + "secondChargeTipsGrp", + "firstChargeTipsGrp", + "editionLabel", + "attackList", + "attackGroup", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3", + "msg1", + "msg2", + "msg3", + "msgGroup", + "qqOpenID", + "qqTxt", + "qqGrpTxt", + "addGrpBtn", + "qqGrp", + "shengQuAddGrpBtn", + "shengQuGrp", + "addGroup", + "actCircleEffGrp", + "actCircleIcon", + "actCircleQuality", + "actTipsTopImg1", + "actTipsTopImg2", + "actCircleEffGrp0", + "actCircleStr", + "actCircleStrGrp", + "clickReceive", + "cieclereceiveEffGrp", + "actCircleGrp", + "actCircleBtn", + "actTipsGrp1", + "actMonsterEff", + "actMonsterImg1", + "actMonsterImg2", + "actMonsterEff0", + "actMOnsterStr", + "monsterClickReceive", + "monsterEffGrp", + "actMonsterGrp", + "actMonsterBtn", + "actTipsGrp2", + "actTipsAllGrp", + "actEquipIcon", + "actEquipNum", + "actEquipEffGrp", + "actEquipImg1", + "actEquipImg2", + "actEquipImgGrp", + "actEquipReceive", + "actEquipProgress", + "equipEffGrp", + "actEquipGrp", + "actLevelIcon", + "actLevelQuality", + "actLevelStr", + "actLevelReceive", + "actLevelEff", + "levelEffGrp", + "receiveEffGrp", + "actLevelGrp" + ], + "$sC": "$eSk" + }, + "MainBottomSkin$Skin190": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_czcz", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin191": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "percentHeight": 100, "source": "icon_bgbtn", "percentWidth": 100, "$t": "$eI" }, + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin192": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "percentHeight": 100, "source": "name_btn", "percentWidth": 100, "$t": "$eI" }, + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin193": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "m_exp_expbg", "top": 0, "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "MainBottomSkin$Skin194": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "m_exp_sexpbg", "top": 0, "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "MainBottomSkin$Skin195": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "icon_sq_2", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "icon_sq_1" }] }, "disabled": {} }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin196": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "gjbtn_hy", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin197": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_sq", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin198": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_fj", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin199": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "cwms_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 16, "stroke": 2, "textColor": 14724725, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "cwms_btn" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "cwms_btn" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "MainBottomSkin$Skin200": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "cwms_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 16, "stroke": 2, "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "cwms_btn" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "cwms_btn" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + + "MainLockSkin": { + "$path": "resource/eui_skins/web/main/MainLockSkin.exml", + "$bs": { "currentState": "nOpen", "height": 181, "$eleC": ["_Image1", "hpBar", "charName", "iconImage"] }, + "_Image1": { "source": "m_lock_bg", "$t": "$eI" }, + "hpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "width": 162, "y": 1, "$t": "$ePB" }, + "charName": { "size": 18, "stroke": 1, "text": "", "textAlign": "center", "width": 160, "x": -6, "y": 29, "$t": "$eL" }, + "iconImage": { "$t": "$eI" }, + "$sP": ["hpBar", "charName", "iconImage"], + "$s": { + "nLock": { + "$ssP": [ + { "target": "_Image1", "name": "x", "value": -20 }, + { "target": "hpBar", "name": "x", "value": -13 }, + { "target": "iconImage", "name": "x", "value": 16 }, + { "target": "iconImage", "name": "y", "value": 68 } + ] + }, + "nOpen": { + "$ssP": [ + { "target": "_Image1", "name": "rotation", "value": 90 }, + { "target": "_Image1", "name": "x", "value": 117 }, + { "target": "_Image1", "name": "y", "value": 22 }, + { "target": "hpBar", "name": "slideDuration", "value": 0 }, + { "target": "hpBar", "name": "width", "value": 116 }, + { "target": "hpBar", "name": "x", "value": -5 }, + { "target": "charName", "name": "x", "value": -10 }, + { "target": "charName", "name": "width", "value": 122 }, + { "target": "charName", "name": "y", "value": 27 }, + { "target": "charName", "name": "textAlign", "value": "center" }, + { "target": "charName", "name": "size", "value": 17 }, + { "target": "iconImage", "name": "x", "value": 15 }, + { "target": "iconImage", "name": "y", "value": 51 } + ] + } + }, + "$sC": "$eSk" + }, + "MainRightSkin": { + "$path": "resource/eui_skins/web/main/MainRightSkin.exml", + "$bs": { "height": 500, "width": 300, "$eleC": ["label"] }, + "label": { "anchorOffsetX": 0, "anchorOffsetY": 0, "background": true, "backgroundColor": 3486001, "size": 15, "text": "sdfsdf", "width": 224, "x": 65, "y": 6, "$t": "$eL" }, + "$sP": ["label"], + "$sC": "$eSk" + }, + "MainSelectArrItem": { + "$path": "resource/eui_skins/web/main/MainSelectArrItem.exml", + "$bs": { "height": 28, "width": 100, "$eleC": ["_Group1"] }, + "_Group1": { "percentHeight": 100, "touchChildren": false, "touchEnabled": true, "percentWidth": 100, "$t": "$eG", "$eleC": ["selectImg", "img", "red"] }, + "selectImg": { + "percentHeight": 100, + "scale9Grid": "9,8,8,9", + "scaleX": 1, + "scaleY": 1, + "source": "m_t_ms_bg2", + "touchEnabled": false, + "visible": false, + "percentWidth": 100, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "img": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "m_t_ms_quanti", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "red": { "right": 0, "top": 0, "visible": false, "$t": "app.RedDotControl" }, + "$sP": ["selectImg", "img", "red"], + "$sC": "$eSk" + }, + "MainTopLeftSkin": { + "$path": "resource/eui_skins/web/main/MainTopLeftSkin.exml", + "$bs": { "currentState": "nStand", "height": 152, "width": 321, "$eleC": ["_Image1", "stateImage", "stateArrow", "petGrp", "labelTime"] }, + "_Image1": { "source": "m_yaogan_bg", "y": 19, "$t": "$eI" }, + "stateImage": { "source": "", "x": 51, "y": 71, "$t": "$eI" }, + "stateArrow": { "anchorOffsetX": 21, "anchorOffsetY": 60, "source": "", "x": 62, "y": 79, "$t": "$eI" }, + "petGrp": { "left": 0, "top": 28, "visible": false, "$t": "$eG", "$eleC": ["_Image2", "petFollow", "followRect", "petKuang", "petAck", "_Label1"] }, + "_Image2": { "source": "cwms_bg", "$t": "$eI" }, + "petFollow": { "height": 33, "label": "跟 随", "width": 100, "x": 3.6, "y": 39, "$t": "$eB", "skinName": "MainTopLeftSkin$Skin201" }, + "followRect": { "fillAlpha": 0.7, "height": 26, "right": 107, "touchEnabled": false, "visible": false, "width": 93, "y": 42, "$t": "$eR" }, + "petKuang": { "height": 37, "scale9Grid": "13,11,1,1", "source": "pet_kuang", "visible": false, "width": 101, "x": 2.6, "y": 36.6, "$t": "$eI" }, + "petAck": { "height": 33, "label": "攻击中", "width": 100, "x": 103, "y": 39, "$t": "$eB", "skinName": "MainTopLeftSkin$Skin202" }, + "_Label1": { "bold": true, "horizontalCenter": 0.5, "size": 21, "text": "宠物状态", "textColor": 13410403, "top": 9, "$t": "$eL" }, + "labelTime": { "left": 6, "size": 18, "text": "", "top": 6, "touchEnabled": false, "$t": "$eL" }, + "$sP": ["stateImage", "stateArrow", "petFollow", "followRect", "petKuang", "petAck", "petGrp", "labelTime"], + "$s": { + "nStand": { "$ssP": [{ "target": "_Image1", "name": "visible", "value": false }] }, + "nWalk": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_yaogan_bg2" }, + { "target": "_Image1", "name": "y", "value": 33 }, + { "target": "_Image1", "name": "x", "value": 13 }, + { "target": "stateImage", "name": "source", "value": "m_yaogan_zou" }, + { "target": "stateImage", "name": "y", "value": 70 }, + { "target": "stateArrow", "name": "source", "value": "m_yaoganjiantou_1" }, + { "target": "stateArrow", "name": "x", "value": 62 }, + { "target": "stateArrow", "name": "anchorOffsetX", "value": 18 }, + { "target": "stateArrow", "name": "y", "value": 81 } + ] + }, + "nRun": { + "$ssP": [ + { "target": "_Image1", "name": "y", "value": 19 }, + { "target": "stateImage", "name": "source", "value": "m_yaogan_pao" }, + { "target": "stateImage", "name": "y", "value": 71 }, + { "target": "stateArrow", "name": "source", "value": "m_yaoganjiantou_2" }, + { "target": "stateArrow", "name": "y", "value": 79 } + ] + } + }, + "$sC": "$eSk" + }, + "MainTopLeftSkin$Skin201": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "cwms_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 16, "stroke": 1, "textColor": 13482376, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "cwms_btn" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "cwms_btn" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "MainTopLeftSkin$Skin202": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "cwms_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 16, "stroke": 1, "textColor": 13482376, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "cwms_btn" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "cwms_btn" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "MianBottomNotice": { + "$path": "resource/eui_skins/web/main/MianBottomNotice.exml", + "$bs": { "height": 1076, "width": 1920, "$eleC": ["noticeGroup", "noticeGroup1", "noticeGroup2", "feelingsGrp", "skillTipsGrp", "addGroup"] }, + "noticeGroup": { "alpha": 0, "horizontalCenter": 0, "left": 390, "right": 390, "top": 300, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Image1", "noticeLabel"] }, + "_Image1": { "height": 33, "horizontalCenter": 0, "source": "pmd_bg2", "percentWidth": 100, "$t": "$eI" }, + "noticeLabel": { "horizontalCenter": 0, "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "noticeGroup1": { + "alpha": 1, + "height": 33, + "horizontalCenter": 0, + "left": 390, + "right": 390, + "top": 180, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Image2", "_Scroller1"] + }, + "_Image2": { "height": 33, "horizontalCenter": 0, "scale9Grid": "142,4,855,25", "source": "pmd_bg2", "percentWidth": 100, "$t": "$eI" }, + "_Scroller1": { "height": 33, "percentWidth": 100, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "anchorOffsetY": 33, "$t": "$eG", "$eleC": ["noticeLabel1"] }, + "noticeLabel1": { "height": 33, "size": 24, "stroke": 1, "text": "", "textColor": 15064527, "verticalAlign": "middle", "x": 570, "y": 1, "$t": "$eL" }, + "noticeGroup2": { + "alpha": 1, + "height": 33, + "horizontalCenter": 0, + "left": 390, + "right": 390, + "top": 240, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Image3", "_Scroller2"] + }, + "_Image3": { "height": 33, "horizontalCenter": 0, "scale9Grid": "204,4,1229,26", "source": "pmd_bg1", "percentWidth": 100, "$t": "$eI" }, + "_Scroller2": { "height": 33, "percentWidth": 100, "$t": "$eS", "viewport": "_Group2" }, + "_Group2": { "height": 33, "$t": "$eG", "$eleC": ["noticeLabel2"] }, + "noticeLabel2": { "height": 33, "size": 20, "stroke": 1, "text": "", "textColor": 2682369, "verticalAlign": "middle", "x": 570, "y": 1, "$t": "$eL" }, + "feelingsGrp": { "bottom": 325, "height": 1, "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "visible": true, "width": 1, "$t": "$eG" }, + "skillTipsGrp": { + "anchorOffsetX": 132, + "anchorOffsetY": 44, + "bottom": 409, + "height": 88, + "horizontalCenter": 0, + "touchChildren": false, + "touchEnabled": false, + "width": 264, + "$t": "$eG", + "$eleC": ["skillTipsBgGrp", "skillTipsIconGrp"] + }, + "skillTipsBgGrp": { "anchorOffsetX": 132, "anchorOffsetY": 44, "height": 88, "width": 264, "x": 132, "y": 44, "$t": "$eG", "$eleC": ["_Image4", "_Label1", "skillTipsName"] }, + "_Image4": { "scaleX": 1, "scaleY": 1, "source": "tips_man3", "x": 0, "y": 0, "$t": "$eI" }, + "_Label1": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "升级学会新技能:", "textColor": 15654932, "x": 97, "y": 15, "$t": "$eL" }, + "skillTipsName": { "horizontalCenter": 21, "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "召唤神兽", "textColor": 2682369, "x": 142, "y": 56, "$t": "$eL" }, + "skillTipsIconGrp": { "anchorOffsetX": 132, "anchorOffsetY": 44, "height": 88, "width": 264, "x": 132, "y": 44, "$t": "$eG", "$eleC": ["skillTipsIcon"] }, + "skillTipsIcon": { "source": "skillicon_fs4", "x": 19, "y": 16, "$t": "$eI" }, + "addGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "$sP": [ + "noticeLabel", + "noticeGroup", + "noticeLabel1", + "noticeGroup1", + "noticeLabel2", + "noticeGroup2", + "feelingsGrp", + "skillTipsName", + "skillTipsBgGrp", + "skillTipsIcon", + "skillTipsIconGrp", + "skillTipsGrp", + "addGroup" + ], + "$sC": "$eSk" + }, + "Welcome2Skin": { + "$path": "resource/eui_skins/web/main/Welcome2Skin.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { "height": 679, "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": -30, "width": 485, "$t": "$eG", "$eleC": ["_Image1", "closeBtn", "timeLabel"] }, + "_Image1": { "source": "hyhy_bg_png", "$t": "$eI" }, + "closeBtn": { "horizontalCenter": 0.5, "label": "", "verticalCenter": 258.5, "$t": "$eB", "skinName": "Welcome2Skin$Skin203" }, + "timeLabel": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "Label", "textColor": 2682369, "y": 634, "$t": "$eL" }, + "$sP": ["closeBtn", "timeLabel"], + "$sC": "$eSk" + }, + "Welcome2Skin$Skin203": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "hyhy_btn_png", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "hyhy_btn_png" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "hyhy_btn_png" }] } + }, + "$sC": "$eSk" + }, + + "WelcomeSkin": { + "$path": "resource/eui_skins/web/main/WelcomeSkin.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "bottom": 0, "fillAlpha": 0.55, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Group1": { + "height": 467, + "horizontalCenter": -10, + "touchChildren": false, + "touchEnabled": false, + "verticalCenter": -40, + "width": 825, + "$t": "$eG", + "$eleC": ["welcomeBG", "closeBtn", "startBtn"] + }, + "welcomeBG": { "source": "huanying_bg_1_png", "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 745, "y": 63, "$t": "$eB", "skinName": "WelcomeSkin$Skin204" }, + "startBtn": { "height": 97, "label": "", "width": 204, "x": 464, "y": 322, "$t": "$eB", "skinName": "WelcomeSkin$Skin205" }, + "$sP": ["welcomeBG", "closeBtn", "startBtn"], + "$sC": "$eSk" + }, + "WelcomeSkin$Skin204": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "WelcomeSkin$Skin205": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_btn", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_btn" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_btn" }] } + }, + "$sC": "$eSk" + }, + + "MainServerInfoWinSkin": { + "$path": "resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml", + "$bs": { "height": 677, "width": 660, "$eleC": ["_Image1", "_Image2", "dragDropUI", "title", "_Scroller1"] }, + "_Image1": { "height": 677, "scale9Grid": "6,6,36,36", "source": "rule_bg", "touchEnabled": false, "width": 660, "$t": "$eI" }, + "_Image2": { "source": "rule_biaotibg", "touchEnabled": false, "x": 137, "y": 9, "$t": "$eI" }, + "dragDropUI": { "currentState": "default7", "percentHeight": 100, "skinName": "UIViewFrameSkin", "percentWidth": 100, "$t": "app.UIViewFrame" }, + "title": { "bold": true, "horizontalCenter": 0, "size": 24, "text": "", "textColor": 16758598, "touchEnabled": false, "y": 16, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 593, "width": 620, "x": 20, "y": 57, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["contentLabel"] }, + "contentLabel": { "lineSpacing": 6, "size": 20, "text": "", "textColor": 15779990, "width": 600, "x": 7, "y": 7, "$t": "$eL" }, + "$sP": ["dragDropUI", "title", "contentLabel"], + "$sC": "$eSk" + }, + "CallSkin": { + "$path": "resource/eui_skins/web/map/CallSkin.exml", + "$bs": { "height": 300, "width": 426, "$eleC": ["dragDropUI", "descLabel", "okButton", "cancelButton"] }, + "dragDropUI": { "skinName": "ViewBgWin6Skin", "$t": "app.UIViewFrame" }, + "descLabel": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 171, + "horizontalCenter": 0, + "lineSpacing": 14, + "size": 22, + "stroke": 2, + "text": "是否消耗", + "textColor": 15064527, + "verticalAlign": "middle", + "y": 55.5, + "$t": "$eL" + }, + "okButton": { "label": "立即前往", "skinName": "Btn9Skin", "x": 71, "y": 239, "$t": "$eB" }, + "cancelButton": { "label": "不 去", "skinName": "Btn9Skin", "x": 246, "y": 239, "$t": "$eB" }, + "$sP": ["dragDropUI", "descLabel", "okButton", "cancelButton"], + "$sC": "$eSk" + }, + "MapMaxSkin": { + "$path": "resource/eui_skins/web/map/MapMaxSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "txt_name", "btn_close", "mapGroup", "xyLabel", "areaName", "nameLabel", "_Group3", "tipsGroup"] }, + "dragDropUI": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "63,80,628,517", "source": "com_bg_kuang_5_png", "top": 0, "$t": "$eI" }, + "txt_name": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "地图", "textColor": 15064527, "top": 17, "touchEnabled": false, "$t": "$eL" }, + "btn_close": { "label": "", "right": -41, "top": -7, "width": 60, "$t": "$eB", "skinName": "MapMaxSkin$Skin206" }, + "mapGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": 112, + "left": 27, + "right": 29, + "top": 61, + "$t": "$eG", + "$eleC": ["_Image1", "mapImage", "teleportNameGroup", "teleportImageGroup", "routeGroup", "rectGroup", "routeImage", "targetImage", "myRect"] + }, + "_Image1": { "anchorOffsetX": 0, "bottom": -3, "left": -3, "right": -3, "scale9Grid": "5,5,30,30", "source": "com_bg_kuang_6_png", "top": -3, "$t": "$eI" }, + "mapImage": { "$t": "$eI" }, + "teleportNameGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "teleportImageGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "routeGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "rectGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "routeImage": { "anchorOffsetY": 3, "height": 6, "scale9Grid": "1,2,4,2", "source": "map_xian", "visible": false, "width": 20, "$t": "$eI" }, + "targetImage": { "anchorOffsetX": 12, "anchorOffsetY": 32, "source": "map_target", "visible": false, "$t": "$eI" }, + "myRect": { "anchorOffsetX": 10, "anchorOffsetY": 28, "source": "map_my", "x": 428, "y": 289, "$t": "$eI" }, + "xyLabel": { "bottom": 118, "right": 40, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "$t": "$eL" }, + "areaName": { "right": 30, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "top": 64, "touchEnabled": false, "$t": "$eL" }, + "nameLabel": { "bottom": 118, "left": 33, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "$t": "$eL" }, + "_Group3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": 31, + "height": 70, + "left": 24, + "right": 26, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Image2", "troopsImage", "guildImage", "_Image3", "_Image4", "_Group1", "_Group2", "tipsLabel"] + }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 0, "left": 0, "right": 0, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "troopsImage": { "bottom": 7, "right": 220, "source": "skillicon_ty8", "$t": "$eI" }, + "guildImage": { "bottom": 7, "right": 155, "source": "skillicon_ty9", "$t": "$eI" }, + "_Image3": { "bottom": 4, "right": 217, "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "_Image4": { "bottom": 4, "right": 151, "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "_Group1": { "right": 83, "touchEnabled": false, "y": 5, "$t": "$eG", "$eleC": ["skill0", "_Image5", "cdGrp0"] }, + "skill0": { "skinName": "skillItemSkin", "x": 3.5, "y": 2, "$t": "app.MainSkillIconItem" }, + "_Image5": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp0": { "horizontalCenter": 0, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "_Group2": { "right": 14, "touchEnabled": false, "y": 5, "$t": "$eG", "$eleC": ["skill1", "_Image6", "cdGrp1"] }, + "skill1": { "skinName": "skillItemSkin", "x": 3.5, "y": 2, "$t": "app.MainSkillIconItem" }, + "_Image6": { "scale9Grid": "11,21,9,17", "source": "m_kuaijielan1", "touchEnabled": false, "$t": "$eI" }, + "cdGrp1": { "horizontalCenter": -1, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "tipsLabel": { "bold": true, "size": 22, "stroke": 2, "text": "", "textColor": 1769471, "x": 31, "y": 31, "$t": "$eL" }, + "tipsGroup": { "horizontalCenter": 0, "verticalCenter": 0, "visible": false, "$t": "$eG", "$eleC": ["_Image7", "descLabel", "btn_close2", "okButton", "cancelButton"] }, + "_Image7": { "source": "bg_tipstc2_png", "$t": "$eI" }, + "descLabel": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 0, "lineSpacing": 14, "size": 22, "stroke": 2, "text": "是否消耗\n测试", "textColor": 15064527, "y": 105, "$t": "$eL" }, + "btn_close2": { "label": "", "right": -39, "top": -7, "width": 60, "$t": "$eB", "skinName": "MapMaxSkin$Skin207" }, + "okButton": { "label": "确 定", "skinName": "Btn9Skin", "x": 69, "y": 239, "$t": "$eB" }, + "cancelButton": { "label": "取 消", "skinName": "Btn9Skin", "x": 256, "y": 239, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "txt_name", + "btn_close", + "mapImage", + "teleportNameGroup", + "teleportImageGroup", + "routeGroup", + "rectGroup", + "routeImage", + "targetImage", + "myRect", + "mapGroup", + "xyLabel", + "areaName", + "nameLabel", + "troopsImage", + "guildImage", + "skill0", + "cdGrp0", + "skill1", + "cdGrp1", + "tipsLabel", + "descLabel", + "btn_close2", + "okButton", + "cancelButton", + "tipsGroup" + ], + "$sC": "$eSk" + }, + "MapMaxSkin$Skin206": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "MapMaxSkin$Skin207": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "MapMiniSkin": { + "$path": "resource/eui_skins/web/map/MapMiniSkin.exml", + "$bs": { "height": 179, "width": 155, "$eleC": ["clickBtn", "_Image1", "nameLabel", "mapGroup"] }, + "clickBtn": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 26, "scale9Grid": "17,9,8,13", "source": "m_map_k2", "width": 158, "x": -4, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "map_fangda", "touchEnabled": false, "x": 130, "y": 3, "$t": "$eI" }, + "nameLabel": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "size": 18, + "stroke": 2, + "text": "测试", + "textAlign": "center", + "textColor": 15064527, + "touchEnabled": false, + "width": 146, + "x": 4, + "y": 5, + "$t": "$eL" + }, + "mapGroup": { "height": 150, "right": 1, "touchChildren": false, "width": 150, "y": 27, "$t": "$eG", "$eleC": ["_Rect1", "_Scroller1", "_Image2", "xyLabel", "areaName"] }, + "_Rect1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eR" }, + "_Scroller1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["miniGroup"] }, + "miniGroup": { "$t": "$eG", "$eleC": ["miniImage", "teleportGroup", "arrowGroup", "rectGroup", "myRect", "targetImage", "routeImage"] }, + "miniImage": { "$t": "$eI" }, + "teleportGroup": { "height": 0, "width": 0, "x": 0, "y": 0, "$t": "$eG" }, + "arrowGroup": { "height": 0, "touchChildren": false, "touchEnabled": false, "width": 0, "$t": "$eG" }, + "rectGroup": { "height": 0, "width": 0, "$t": "$eG" }, + "myRect": { "source": "map_dian_7", "x": 68, "y": 112, "$t": "$eI" }, + "targetImage": { "anchorOffsetX": 12, "anchorOffsetY": 32, "source": "map_target", "$t": "$eI" }, + "routeImage": { "anchorOffsetY": 3, "height": 6, "scale9Grid": "1,2,4,2", "source": "map_xian", "visible": false, "width": 20, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 160, "scale9Grid": "16,14,9,8", "source": "m_map_k", "width": 160, "x": -9, "y": -6, "$t": "$eI" }, + "xyLabel": { "bottom": 5, "right": 6, "size": 15, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "areaName": { "bottom": 5, "left": 5, "size": 15, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "$sP": ["clickBtn", "nameLabel", "miniImage", "teleportGroup", "arrowGroup", "rectGroup", "myRect", "targetImage", "routeImage", "miniGroup", "xyLabel", "areaName", "mapGroup"], + "$sC": "$eSk" + }, + "MicrotermsViewSkin": { + "$path": "resource/eui_skins/web/microterms/MicrotermsViewSkin.exml", + "$bs": { "height": 262, "width": 414, "$eleC": ["dragDropUI", "rewards", "microDownBtn", "closeBtn"] }, + "dragDropUI": { "source": "weiduan_xzframe_png", "$t": "$eI" }, + "rewards": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "microDownBtn": { "height": 46, "horizontalCenter": 0, "label": "下载微端", "width": 113, "y": 191, "$t": "$eB", "skinName": "MicrotermsViewSkin$Skin208" }, + "closeBtn": { "label": "", "width": 60, "x": 398.18, "y": -9.67, "$t": "$eB", "skinName": "MicrotermsViewSkin$Skin209" }, + "$sP": ["dragDropUI", "rewards", "microDownBtn", "closeBtn"], + "$sC": "$eSk" + }, + "MicrotermsViewSkin$Skin208": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MicrotermsViewSkin$Skin209": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "MultiVersionViewSkin": { + "$path": "resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml", + "$bs": { "height": 645, "width": 910, "$eleC": ["dragDropUI", "optTab", "_Group1", "_Image1"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "optTab": { "itemRendererSkinName": "TradeLineTabSkin", "x": 28, "y": 61, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "_Group1": { "height": 560, "touchEnabled": false, "width": 700, "x": 185, "y": 56, "$t": "$eG", "$eleC": ["imgBg", "btnCopy"] }, + "imgBg": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "btnCopy": { "horizontalCenter": 0.5, "y": 430, "$t": "$eB", "skinName": "MultiVersionViewSkin$Skin210" }, + "_Image1": { "source": "com_bg_kuang_4_png", "x": 180, "y": 52, "$t": "$eI" }, + "$sP": ["dragDropUI", "optTab", "imgBg", "btnCopy"], + "$sC": "$eSk" + }, + "MultiVersionViewSkin$Skin210": { + "$bs": { "$eleC": ["iconDisplay"] }, + "iconDisplay": { "horizontalCenter": 0, "source": "button1", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleX", "value": 0.95 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "NpcLabelRendererSkin": { + "$path": "resource/eui_skins/web/npc/NpcLabelRendererSkin.exml", + "$bs": { "height": 40, "$eleC": ["_Group1"] }, + "_Group1": { "$t": "$eG", "$eleC": ["mfLabel", "_Rect1"] }, + "mfLabel": { "height": 40, "scaleX": 1, "scaleY": 1, "size": 22, "text": "", "textAlign": "center", "textColor": 16774662, "verticalAlign": "middle", "x": 0, "y": 0, "$t": "$eL" }, + "_Rect1": { "bottom": 9, "fillColor": 16774662, "height": 1, "left": 0, "right": 0, "scaleX": 1, "scaleY": 1, "x": 22, "y": 199, "$t": "$eR" }, + "$sP": ["mfLabel"], + "$sC": "$eSk" + }, + "NpcRendererSkin": { + "$path": "resource/eui_skins/web/npc/NpcRendererSkin.exml", + "$bs": { "height": 40, "$eleC": ["_Image1", "mfLabel", "effGrp"] }, + "_Image1": { "height": 20, "source": "npc_lingxing", "verticalCenter": 0, "width": 20, "x": 3, "$t": "$eI" }, + "mfLabel": { "height": 40, "size": 22, "text": "", "textAlign": "center", "textColor": 16774662, "verticalAlign": "middle", "x": 29, "y": 0, "$t": "$eL" }, + "effGrp": { "right": 49, "visible": false, "y": 13, "$t": "$eG" }, + "$sP": ["mfLabel", "effGrp"], + "$sC": "$eSk" + }, + "NpcSkin": { + "$path": "resource/eui_skins/web/npc/NpcSkin.exml", + "$bs": { "width": 642, "$eleC": ["_Group3"] }, + "_Group3": { "minHeight": 300, "width": 642, "$t": "$eG", "$eleC": ["dragDropUI", "_Group2", "lookRewardLab"] }, + "dragDropUI": { "bottom": 0, "left": 0, "right": 0, "skinName": "ViewBgWin3Skin", "top": 0, "$t": "app.UIViewFrame" }, + "_Group2": { + "anchorOffsetY": 0, + "bottom": 30, + "scaleX": 1, + "scaleY": 1, + "top": 36, + "touchEnabled": false, + "x": 28, + "$t": "$eG", + "layout": "_VerticalLayout2", + "$eleC": ["npcName", "descLabel", "_Group1"] + }, + "_VerticalLayout2": { "$t": "$eVL" }, + "npcName": { "size": 21, "stroke": 2, "text": "", "textColor": 2682369, "touchEnabled": false, "x": 29, "y": 31, "$t": "$eL" }, + "descLabel": { "lineSpacing": 9, "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "touchEnabled": false, "width": 582, "x": 30, "y": 67, "$t": "$eL" }, + "_Group1": { "x": 108, "y": 150, "$t": "$eG", "$eleC": ["transList", "list"] }, + "transList": { "itemRendererSkinName": "NpcLabelRendererSkin", "x": 5, "y": 40, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "columnWidth": 288, "horizontalGap": 26, "requestedColumnCount": 2, "verticalGap": 26, "$t": "$eTL" }, + "list": { "anchorOffsetX": 0, "itemRendererSkinName": "NpcRendererSkin", "visible": false, "x": 2, "y": 35, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 16, "$t": "$eVL" }, + "lookRewardLab": { "right": 42, "size": 21, "stroke": 2, "text": "", "textColor": 2682369, "top": 36, "$t": "$eL" }, + "$sP": ["dragDropUI", "npcName", "descLabel", "transList", "list", "lookRewardLab"], + "$sC": "$eSk" + }, + "ShabakRewardsWinSkin": { + "$path": "resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml", + "$bs": { "height": 326, "width": 641, "$eleC": ["dragDropUI", "btn_close", "_Label1", "_Label2", "_Label3", "_Label4", "guildName", "playerName", "_Image1", "rewardsList", "_Group1"] }, + "dragDropUI": { "source": "bg_newNpc_png", "$t": "$eI" }, + "btn_close": { "label": "", "width": 60, "x": 624.02, "y": -11.02, "$t": "$eB", "skinName": "ShabakRewardsWinSkin$Skin211" }, + "_Label1": { "size": 20, "stroke": 2, "text": "沙巴克攻城结束后,城主可通过我来领取专属奖励!", "textColor": 15064527, "x": 30, "y": 40, "$t": "$eL" }, + "_Label2": { "size": 20, "stroke": 2, "text": "沙巴克所属行会:", "textColor": 15064527, "x": 30, "y": 74, "$t": "$eL" }, + "_Label3": { "size": 20, "stroke": 2, "text": "当前沙巴克城主:", "textColor": 15064527, "x": 30, "y": 107, "$t": "$eL" }, + "_Label4": { "size": 20, "text": "城主奖励:", "textColor": 16742144, "x": 34, "y": 206, "$t": "$eL" }, + "guildName": { "size": 20, "stroke": 2, "text": "暂无", "textColor": 2682369, "x": 187, "y": 75, "$t": "$eL" }, + "playerName": { "size": 20, "stroke": 2, "text": "暂无", "textColor": 2682369, "x": 187, "y": 108, "$t": "$eL" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 77.5, "scale9Grid": "5,6,8,9", "source": "bg_sixiang_3", "width": 330, "x": 30, "y": 230, "$t": "$eI" }, + "rewardsList": { "itemRendererSkinName": "ItemBaseSkin", "x": 35.5, "y": 238, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "_Group1": { "x": 492, "y": 272, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["_Image2", "receiveLab"] }, + "_HorizontalLayout2": { "gap": 6, "$t": "$eHL" }, + "_Image2": { "source": "npc_lingxing", "x": 12, "y": 14, "$t": "$eI" }, + "receiveLab": { "scaleX": 1, "scaleY": 1, "size": 20, "text": "领取奖励", "textColor": 15655172, "x": 43, "y": 11, "$t": "$eL" }, + "$sP": ["dragDropUI", "btn_close", "guildName", "playerName", "rewardsList", "receiveLab"], + "$sC": "$eSk" + }, + "ShabakRewardsWinSkin$Skin211": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "WashRedNameViewSkin": { + "$path": "resource/eui_skins/web/npc/WashRedNameViewSkin.exml", + "$bs": { "$eleC": ["dragDropUI", "_Group3"] }, + "dragDropUI": { "skinName": "ViewBgWin4Skin", "$t": "app.UIViewFrame" }, + "_Group3": { "height": 382, "width": 370, "x": 30, "y": 56, "$t": "$eG", "$eleC": ["_Group1", "_Group2"] }, + "_Group1": { + "height": 186, + "width": 370, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["bg0", "_Image1", "goldLb0", "goldPkvalLb0", "goldDayNum0", "txt0", "goldAddCionLb0", "goldWashBtn0", "_Image2", "_Image3", "money1Icon0"] + }, + "bg0": { "height": 188, "scale9Grid": "38,38,14,23", "source": "kbg_3_1_png", "visible": false, "width": 345, "x": 1, "y": -1, "$t": "$eI" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "14,15,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "goldLb0": { "horizontalCenter": 11, "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -72, "$t": "$eL" }, + "goldPkvalLb0": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "x": 148, "y": 54, "$t": "$eL" }, + "goldDayNum0": { "right": 11, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "y": 149, "$t": "$eL" }, + "txt0": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "x": 148, "y": 87, "$t": "$eL" }, + "goldAddCionLb0": { "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "x": 189, "y": 87, "$t": "$eL" }, + "goldWashBtn0": { "label": "", "skinName": "Btn9Skin", "x": 125, "y": 129, "$t": "$eB" }, + "_Image2": { "source": "guild_jxfgx", "x": 36, "y": 36, "$t": "$eI" }, + "_Image3": { "source": "guild_jxiconk", "x": 52, "y": 51, "$t": "$eI" }, + "money1Icon0": { "source": "13010", "x": 56, "y": 54, "$t": "$eI" }, + "_Group2": { + "height": 186, + "width": 370, + "x": 0, + "y": 200, + "$t": "$eG", + "$eleC": ["bg1", "_Image4", "goldLb1", "goldPkvalLb1", "goldDayNum1", "txt1", "goldAddCionLb1", "goldWashBtn1", "_Image5", "_Image6", "money1Icon1"] + }, + "bg1": { "height": 188, "scale9Grid": "38,38,14,23", "source": "kbg_3_1_png", "visible": false, "width": 345, "x": 1, "y": -1, "$t": "$eI" }, + "_Image4": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "15,14,1,1", "source": "mail_bg", "top": 0, "$t": "$eI" }, + "goldLb1": { "horizontalCenter": 11, "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "verticalCenter": -72, "$t": "$eL" }, + "goldPkvalLb1": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "x": 148, "y": 54, "$t": "$eL" }, + "goldDayNum1": { "right": 11, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "y": 149, "$t": "$eL" }, + "txt1": { "size": 20, "stroke": 2, "text": "", "textColor": 14724725, "x": 148, "y": 87, "$t": "$eL" }, + "goldAddCionLb1": { "size": 20, "stroke": 2, "text": "", "textColor": 61184, "x": 189, "y": 87, "$t": "$eL" }, + "goldWashBtn1": { "label": "", "skinName": "Btn9Skin", "x": 125, "y": 129, "$t": "$eB" }, + "_Image5": { "source": "guild_jxfgx", "x": 26, "y": 36, "$t": "$eI" }, + "_Image6": { "source": "guild_jxiconk", "x": 52, "y": 51, "$t": "$eI" }, + "money1Icon1": { "source": "13010", "x": 56, "y": 54, "$t": "$eI" }, + "$sP": [ + "dragDropUI", + "bg0", + "goldLb0", + "goldPkvalLb0", + "goldDayNum0", + "txt0", + "goldAddCionLb0", + "goldWashBtn0", + "money1Icon0", + "bg1", + "goldLb1", + "goldPkvalLb1", + "goldDayNum1", + "txt1", + "goldAddCionLb1", + "goldWashBtn1", + "money1Icon1" + ], + "$sC": "$eSk" + }, + "OnlineRewardsTipsViewSkin": { + "$path": "resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["_Image1", "descLabel", "btn_close", "okButton"] }, + "_Image1": { "source": "bg_tipstc2_png", "$t": "$eI" }, + "descLabel": { "horizontalCenter": 0, "lineSpacing": 14, "size": 22, "stroke": 2, "text": "是否消耗\t测试", "textAlign": "center", "textColor": 15064527, "width": 360, "y": 105, "$t": "$eL" }, + "btn_close": { "label": "", "right": -39, "top": -7, "width": 60, "$t": "$eB", "skinName": "OnlineRewardsTipsViewSkin$Skin212" }, + "okButton": { "label": "前 往", "skinName": "Btn9Skin", "x": 159, "y": 239, "$t": "$eB" }, + "$sP": ["descLabel", "btn_close", "okButton"], + "$sC": "$eSk" + }, + "OnlineRewardsTipsViewSkin$Skin212": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "OnlineRewardsViewSkin": { + "$path": "resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["bgImg", "_Image1", "itemData", "getBtn", "receiveImg", "redPoint", "timeLab", "actTime", "actTime2"] }, + "bgImg": { "horizontalCenter": 0, "source": "banner_fudai_png", "top": 0, "$t": "$eI" }, + "_Image1": { "bottom": 0, "horizontalCenter": 0, "source": "bg_fudai_png", "$t": "$eI" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 332, "y": 269, "$t": "app.ItemBase" }, + "getBtn": { "height": 56, "icon": "fl_jhm_btn_1", "label": "", "skinName": "Btn0Skin", "width": 137, "x": 290, "y": 414, "$t": "$eB" }, + "receiveImg": { "bottom": 61, "horizontalCenter": 6, "source": "apay_yilingqu", "$t": "$eI" }, + "redPoint": { "x": 413, "y": 412, "$t": "app.RedDotControl" }, + "timeLab": { "size": 22, "stroke": 2, "text": "剩余时间:", "textColor": 16770304, "x": 21, "y": 88, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 127, "y": 88, "$t": "$eL" }, + "actTime2": { "horizontalCenter": 8, "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "y": 483, "$t": "$eL" }, + "$sP": ["bgImg", "itemData", "getBtn", "receiveImg", "redPoint", "timeLab", "actTime", "actTime2"], + "$sC": "$eSk" + }, + "OpenServerGiftItemSkin": { + "$path": "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml", + "$bs": { "height": 227, "width": 142, "$eleC": ["_Group1", "unopenedImg", "isSelectImg", "openDesc", "buyImg"] }, + "_Group1": { "height": 208, "width": 142, "$t": "$eG", "$eleC": ["_Image1", "giftIcon", "giftTitle"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "kf_lb_k", "x": 0, "y": 0, "$t": "$eI" }, + "giftIcon": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "kf_lb_p1", "verticalCenter": 0, "x": -1, "y": 32, "$t": "$eI" }, + "giftTitle": { "bottom": 8, "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "kf_lb_t1", "x": 13, "y": 177, "$t": "$eI" }, + "unopenedImg": { "source": "kf_lb_k2", "visible": false, "$t": "$eI" }, + "isSelectImg": { "height": 226, "horizontalCenter": 0, "scale9Grid": "34,19,67,5", "source": "kf_lb_k3", "visible": false, "$t": "$eI" }, + "openDesc": { "bold": true, "horizontalCenter": 0, "size": 17, "text": "开服第4天开启", "textColor": 11731968, "top": 13, "visible": false, "$t": "$eL" }, + "buyImg": { "horizontalCenter": 0, "source": "kf_lb_yigoumai", "verticalCenter": 0, "visible": false, "$t": "$eI" }, + "$sP": ["giftIcon", "giftTitle", "unopenedImg", "isSelectImg", "openDesc", "buyImg"], + "$sC": "$eSk" + }, + "OpenServerGiftViewSkin": { + "$path": "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["_Image1", "giftScroller", "giftIcon", "_Image2", "giftDesc", "rewards", "receiveBtn", "actTime", "_Image3", "giftMoney", "buyImg"] }, + "_Image1": { "height": 538, "horizontalCenter": 0, "source": "kf_lb_bg1_png", "verticalCenter": 0, "width": 707, "$t": "$eI" }, + "giftScroller": { "width": 650, "x": 6, "y": 3, "$t": "$eS", "viewport": "giftList" }, + "giftList": { "itemRendererSkinName": "OpenServerGiftItemSkin", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "giftIcon": { "scaleX": 1.3, "scaleY": 1.3, "source": "kf_lb_p1", "x": 62, "y": 267, "$t": "$eI" }, + "_Image2": { "source": "kf_lb_bg2", "x": 258, "y": 256, "$t": "$eI" }, + "giftDesc": { "size": 24, "stroke": 2, "text": "", "textColor": 15779990, "x": 290, "y": 266, "$t": "$eL" }, + "rewards": { "itemRendererSkinName": "ItemBaseSkin", "x": 348, "y": 338, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": 15, "$t": "$eHL" }, + "receiveBtn": { "bottom": 61, "height": 62, "label": "立即购买", "right": 126, "width": 143, "$t": "$eB", "skinName": "OpenServerGiftViewSkin$Skin213" }, + "actTime": { "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "x": 351, "y": 505, "$t": "$eL" }, + "_Image3": { "source": "icon_yuanbao", "x": 111, "y": 453, "$t": "$eI" }, + "giftMoney": { "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "x": 149, "y": 462, "$t": "$eL" }, + "buyImg": { "horizontalCenter": 140.5, "source": "kf_lb_yigoumai", "verticalCenter": 174.5, "$t": "$eI" }, + "$sP": ["giftList", "giftScroller", "giftIcon", "giftDesc", "rewards", "receiveBtn", "actTime", "giftMoney", "buyImg"], + "$sC": "$eSk" + }, + "OpenServerGiftViewSkin$Skin213": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "kf_kftz_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 20, "textColor": 2031616, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "kf_kftz_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "InvestmentItemSkin": { + "$path": "resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml", + "$bs": { "height": 115, "width": 700, "$eleC": ["_Image1", "buyButton", "rewards", "_Label1", "curDay", "redPoint", "receiveImg"] }, + "_Image1": { "scale9Grid": "82,14,493,87", "source": "apay_liebiao_bg_png", "width": 700, "$t": "$eI" }, + "buyButton": { "height": 46, "label": "领取奖励", "width": 113, "x": 547, "y": 38, "$t": "$eB", "skinName": "InvestmentItemSkin$Skin214" }, + "rewards": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "y": 25, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 18, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Label1": { "left": 32, "size": 24, "stroke": 2, "text": "登录天数", "textColor": 14724725, "y": 26, "$t": "$eL" }, + "curDay": { "bold": true, "left": 67, "size": 24, "stroke": 2, "text": "", "textColor": 15655172, "y": 64, "$t": "$eL" }, + "redPoint": { "height": 20, "visible": false, "width": 20, "x": 647, "y": 34, "$t": "app.RedDotControl" }, + "receiveImg": { "source": "apay_yilingqu", "x": 560, "y": 23, "$t": "$eI" }, + "$sP": ["buyButton", "rewards", "curDay", "redPoint", "receiveImg"], + "$sC": "$eSk" + }, + "InvestmentItemSkin$Skin214": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } + }, + "$sC": "$eSk" + }, + "InvestmentViewSkin": { + "$path": "resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml", + "$bs": { + "height": 538, + "width": 707, + "$eleC": ["_Image1", "_Label1", "actTime", "buyText", "buyTime", "_Label2", "actDesc", "InvestmentScroller", "buyGrp", "_Image3", "_Image4", "_Label3", "_Label4"] + }, + "_Image1": { "horizontalCenter": 0, "source": "kf_kftz_bg_png", "$t": "$eI" }, + "_Label1": { "size": 22, "stroke": 2, "text": "剩余时间:", "textColor": 16770304, "x": 47, "y": 21, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 153, "y": 21, "$t": "$eL" }, + "buyText": { "size": 22, "stroke": 2, "text": "限时购买:", "textColor": 16770304, "visible": false, "x": 357, "y": 21, "$t": "$eL" }, + "buyTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 463, "y": 21, "$t": "$eL" }, + "_Label2": { "size": 22, "stroke": 2, "text": "活动内容:", "textColor": 16770304, "x": 47, "y": 52, "$t": "$eL" }, + "actDesc": { "size": 22, "stroke": 2, "text": "", "textColor": 15189392, "width": 481, "x": 153, "y": 52, "$t": "$eL" }, + "InvestmentScroller": { "height": 372, "horizontalCenter": 0, "width": 700, "y": 163, "$t": "$eS", "viewport": "InvestmentList" }, + "InvestmentList": { "itemRendererSkinName": "InvestmentItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "$t": "$eVL" }, + "buyGrp": { "bottom": 0, "horizontalCenter": 0, "$t": "$eG", "$eleC": ["buyBannerImg", "_Group1", "buyBannerDay", "buyBannerNum2", "receiveBtn", "redPoint"] }, + "buyBannerImg": { "source": "kf_kftz_bg4_png", "$t": "$eI" }, + "_Group1": { "x": 240, "y": 35, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["buyBannerNum", "_Image2"] }, + "_HorizontalLayout1": { "gap": 0, "verticalAlign": "bottom", "$t": "$eHL" }, + "buyBannerNum": { "font": "num_kftz_fnt", "letterSpacing": -4, "text": "0", "$t": "$eBL" }, + "_Image2": { "source": "kf_kftz_yb", "$t": "$eI" }, + "buyBannerDay": { "font": "num_kftz_fnt", "letterSpacing": -4, "text": "5", "x": 320, "y": 76, "$t": "$eBL" }, + "buyBannerNum2": { "size": 20, "text": "0", "textColor": 16682240, "x": 585, "y": 90, "$t": "$eL" }, + "receiveBtn": { "bottom": 40, "height": 62, "label": "立即投资", "right": 38, "width": 143, "$t": "$eB", "skinName": "InvestmentViewSkin$Skin215" }, + "redPoint": { "x": 646, "y": 25, "$t": "app.RedDotControl" }, + "_Image3": { "horizontalCenter": 0, "scale9Grid": "15,5,627,32", "source": "kf_jj_bqbg", "width": 705, "y": 121, "$t": "$eI" }, + "_Image4": { "horizontalCenter": -170, "source": "common_liebiaoding_fenge", "y": 122, "$t": "$eI" }, + "_Label3": { "horizontalCenter": -269, "size": 22, "stroke": 2, "text": "登录天数", "textColor": 13744500, "y": 132, "$t": "$eL" }, + "_Label4": { "horizontalCenter": -2, "size": 22, "stroke": 2, "text": "奖 励", "textColor": 13744500, "y": 132, "$t": "$eL" }, + "$sP": ["actTime", "buyText", "buyTime", "actDesc", "InvestmentList", "InvestmentScroller", "buyBannerImg", "buyBannerNum", "buyBannerDay", "buyBannerNum2", "receiveBtn", "redPoint", "buyGrp"], + "$sC": "$eSk" + }, + "InvestmentViewSkin$Skin215": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "kf_kftz_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 20, "textColor": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "kf_kftz_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "OpenServerGiftWinSkin": { + "$path": "resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "titleImg", "_Image3", "_Image4", "closeBtn", "btnScroller", "infoGrp"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 556, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "visible": false, "width": 200, "x": 74.31, "y": 105.99, "$t": "$eI" }, + "_Image2": { "height": 556, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "visible": false, "width": 677, "x": 273.63, "y": 105.99, "$t": "$eI" }, + "titleImg": { "horizontalCenter": 2, "scaleX": 1, "scaleY": 1, "source": "biaoti_kaifuhaoli", "touchEnabled": false, "verticalCenter": -265, "$t": "$eI" }, + "_Image3": { "height": 538, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 154, "x": 80, "y": 115, "$t": "$eI" }, + "_Image4": { "height": 538, "scale9Grid": "18,15,4,3", "source": "com_bg_kuang_6_png", "width": 707, "x": 239, "y": 115, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "OpenServerGiftWinSkin$Skin216" }, + "btnScroller": { "height": 536, "width": 147, "x": 83, "y": 118, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "ActivityPayButtonSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGrp": { "height": 538, "width": 707, "x": 239, "y": 115, "$t": "$eG" }, + "$sP": ["dragDropUI", "titleImg", "closeBtn", "tabBar", "btnScroller", "infoGrp"], + "$sC": "$eSk" + }, + "OpenServerGiftWinSkin$Skin216": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "SevenDayItemViewSkin": { + "$path": "resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml", + "$bs": { "height": 161, "width": 140, "$eleC": ["_Group1", "receive"] }, + "_Group1": { "x": 2, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "isSelect", "dayImg", "redPoint"] }, + "_Image1": { "source": "qr_p_1", "x": -2.8, "y": 97.2, "$t": "$eI" }, + "_Image2": { "source": "qr_p_2", "x": 15.2, "y": 4.8, "$t": "$eI" }, + "isSelect": { "source": "qr_p_3", "visible": false, "x": 9.2, "y": -1.2, "$t": "$eI" }, + "dayImg": { "source": "qr_t1_1", "x": 24, "y": 123, "$t": "$eI" }, + "redPoint": { "source": "common_hongdian", "visible": false, "x": 109, "y": 11, "$t": "$eI" }, + "receive": { "source": "qr_p_yilingqu", "visible": false, "x": 0.4, "y": 5.6, "$t": "$eI" }, + "$sP": ["isSelect", "dayImg", "redPoint", "receive"], + "$sC": "$eSk" + }, + "SevenDayLoginViewSkin": { + "$path": "resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml", + "$bs": { "height": 538, "width": 707, "$eleC": ["_Image1", "_Image2", "curLogin", "_Group1", "dayImg", "_Scroller1", "receiveBtn", "receiveImg", "_Label1", "actTime"] }, + "_Image1": { "horizontalCenter": 0, "source": "qr_bg_png", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "qr_bg2", "y": 26, "$t": "$eI" }, + "curLogin": { "bold": true, "horizontalCenter": 0.5, "size": 24, "text": "", "textColor": 16700160, "y": 33, "$t": "$eL" }, + "_Group1": { + "height": 328, + "horizontalCenter": -1, + "verticalCenter": -7, + "width": 578, + "$t": "$eG", + "$eleC": ["dayItem1", "dayItem2", "dayItem3", "dayItem4", "dayItem5", "dayItem6", "dayItem7"] + }, + "dayItem1": { "left": 0, "skinName": "SevenDayItemViewSkin", "top": 0, "$t": "app.SevenDayItemView" }, + "dayItem2": { "left": 146, "skinName": "SevenDayItemViewSkin", "top": 0, "$t": "app.SevenDayItemView" }, + "dayItem3": { "right": 146, "skinName": "SevenDayItemViewSkin", "top": 0, "$t": "app.SevenDayItemView" }, + "dayItem4": { "right": 0, "skinName": "SevenDayItemViewSkin", "top": 0, "$t": "app.SevenDayItemView" }, + "dayItem5": { "bottom": 0, "left": 73, "skinName": "SevenDayItemViewSkin", "$t": "app.SevenDayItemView" }, + "dayItem6": { "bottom": 0, "horizontalCenter": 0, "skinName": "SevenDayItemViewSkin", "$t": "app.SevenDayItemView" }, + "dayItem7": { "bottom": 0, "right": 74, "skinName": "SevenDayItemViewSkin", "$t": "app.SevenDayItemView" }, + "dayImg": { "horizontalCenter": -50, "source": "qr_t2_2", "verticalCenter": 168, "$t": "$eI" }, + "_Scroller1": { "width": 367, "x": 38, "y": 460, "$t": "$eS", "viewport": "rewardList" }, + "rewardList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "receiveBtn": { "bottom": 30, "height": 46, "label": "领取奖励", "right": 53, "width": 113, "$t": "$eB", "skinName": "SevenDayLoginViewSkin$Skin217" }, + "receiveImg": { "source": "apay_yilingqu", "visible": false, "x": 497, "y": 453, "$t": "$eI" }, + "_Label1": { "size": 22, "stroke": 1, "text": "剩余时间:", "textColor": 16770304, "x": 217, "y": 73, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 1, "text": "2天5时30分", "textColor": 2682369, "x": 323, "y": 73, "$t": "$eL" }, + "$sP": ["curLogin", "dayItem1", "dayItem2", "dayItem3", "dayItem4", "dayItem5", "dayItem6", "dayItem7", "dayImg", "rewardList", "receiveBtn", "receiveImg", "actTime"], + "$sC": "$eSk" + }, + "SevenDayLoginViewSkin$Skin217": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "OpenServerSportsItemSkin": { + "$path": "resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml", + "$bs": { "height": 86, "width": 700, "$eleC": ["imgBg", "taskName", "taskValue", "buyButton", "redPoint", "rewards", "receiveImg", "curValue"] }, + "imgBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "10,9,2,1", "source": "bg_quyu_1", "top": 0, "$t": "$eI" }, + "taskName": { "horizontalCenter": -243, "size": 22, "stroke": 2, "text": "角色等级", "textAlign": "center", "textColor": 14724725, "verticalCenter": -11, "$t": "$eL" }, + "taskValue": { "horizontalCenter": -246.5, "size": 22, "stroke": 2, "text": "20", "textColor": 15655172, "verticalCenter": 22, "$t": "$eL" }, + "buyButton": { "height": 46, "label": "领取奖励", "width": 113, "x": 539.5, "y": 10, "$t": "$eB", "skinName": "OpenServerSportsItemSkin$Skin218" }, + "redPoint": { "height": 20, "visible": false, "width": 20, "x": 639, "y": 8, "$t": "app.RedDotControl" }, + "rewards": { "itemRendererSkinName": "ItemBaseSkin", "x": 230, "y": 13, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 9, "$t": "$eHL" }, + "receiveImg": { "source": "apay_yilingqu", "visible": false, "x": 557, "y": 10, "$t": "$eI" }, + "curValue": { "horizontalCenter": 248, "size": 20, "stroke": 2, "text": "(5/100)", "textColor": 2682369, "verticalCenter": 27, "$t": "$eL" }, + "$sP": ["imgBg", "taskName", "taskValue", "buyButton", "redPoint", "rewards", "receiveImg", "curValue"], + "$sC": "$eSk" + }, + "OpenServerSportsItemSkin$Skin218": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "OpenServerSportsViewSkin": { + "$path": "resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml", + "$bs": { + "height": 538, + "width": 707, + "$eleC": ["bgImg", "timeLab", "actTime", "descLab", "actDesc", "curValue", "_Image1", "_Image2", "_Image3", "sportsName", "_Label1", "_Label2", "sportsScroller"] + }, + "bgImg": { "horizontalCenter": 0, "source": "", "top": 0, "$t": "$eI" }, + "timeLab": { "size": 22, "stroke": 2, "text": "剩余时间:", "textColor": 16770304, "x": 161, "y": 18, "$t": "$eL" }, + "actTime": { "size": 22, "stroke": 2, "text": "", "textColor": 2682369, "x": 267, "y": 18, "$t": "$eL" }, + "descLab": { "size": 22, "stroke": 2, "text": "活动内容:", "textColor": 16770304, "x": 159.5, "y": 48, "$t": "$eL" }, + "actDesc": { "size": 22, "stroke": 2, "text": "", "textColor": 15189392, "width": 385, "x": 267, "y": 48, "$t": "$eL" }, + "curValue": { "size": 22, "stroke": 2, "text": "", "textColor": 16770304, "x": 159.5, "y": 94, "$t": "$eL" }, + "_Image1": { "horizontalCenter": 0, "scale9Grid": "15,5,627,32", "source": "kf_jj_bqbg", "width": 705, "y": 121, "$t": "$eI" }, + "_Image2": { "horizontalCenter": -143, "source": "common_liebiaoding_fenge", "y": 122, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 151, "source": "common_liebiaoding_fenge", "y": 122, "$t": "$eI" }, + "sportsName": { "horizontalCenter": -242, "size": 22, "stroke": 2, "text": "达标目标", "textColor": 13744500, "y": 130, "$t": "$eL" }, + "_Label1": { "horizontalCenter": -2, "size": 22, "stroke": 2, "text": "奖 励", "textColor": 13744500, "y": 130, "$t": "$eL" }, + "_Label2": { "horizontalCenter": 240.5, "size": 22, "stroke": 2, "text": "操 作", "textColor": 13744500, "y": 130, "$t": "$eL" }, + "sportsScroller": { "height": 372, "horizontalCenter": 1, "verticalCenter": 80, "$t": "$eS", "viewport": "sportsList" }, + "sportsList": { "itemRendererSkinName": "OpenServerSportsItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "$sP": ["bgImg", "timeLab", "actTime", "descLab", "actDesc", "curValue", "sportsName", "sportsList", "sportsScroller"], + "$sC": "$eSk" + }, + "OpenServerSportsWinSkin": { + "$path": "resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "closeBtn", "btnScroller", "infoGrp"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "_Image1": { "height": 556, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "visible": false, "width": 200, "x": 74.67, "y": 105.99, "$t": "$eI" }, + "_Image2": { "height": 556, "scale9Grid": "60,60,12,12", "source": "apay_tab_bg", "visible": false, "width": 677, "x": 273.99, "y": 105.99, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 7, "scaleX": 1, "scaleY": 1, "source": "biaoti_kaifujingji", "top": 62, "touchEnabled": false, "$t": "$eI" }, + "_Image4": { "height": 538, "scale9Grid": "17,18,2,4", "source": "com_bg_kuang_6_png", "width": 154, "x": 80, "y": 115, "$t": "$eI" }, + "_Image5": { "height": 538, "scale9Grid": "18,15,4,3", "source": "com_bg_kuang_6_png", "width": 707, "x": 239, "y": 115, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "OpenServerSportsWinSkin$Skin219" }, + "btnScroller": { "height": 536, "width": 147, "x": 83, "y": 118, "$t": "$eS", "viewport": "tabBar" }, + "tabBar": { "height": 200, "itemRendererSkinName": "ActivityPayButtonSkin", "width": 200, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "horizontalAlign": "center", "$t": "$eVL" }, + "infoGrp": { "height": 538, "width": 707, "x": 239, "y": 115, "$t": "$eG" }, + "$sP": ["dragDropUI", "closeBtn", "tabBar", "btnScroller", "infoGrp"], + "$sC": "$eSk" + }, + "OpenServerSportsWinSkin$Skin219": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "OpenServerTreasureViewSkin": { + "$path": "resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml", + "$bs": { "currentState": "state1", "height": 556, "width": 874, "$eleC": ["_Group2", "_Group3"] }, + "_Group2": { + "height": 556, + "left": 0, + "width": 614, + "$t": "$eG", + "$eleC": [ + "_Image1", + "_Image2", + "againImg", + "againCount", + "_Image3", + "extractCount", + "extractItem", + "isExtractImg", + "extractMc", + "consumeGrp1", + "consumeGrp2", + "receiveBtn", + "receiveBtn2", + "red", + "_Label1", + "_Label2", + "actTime", + "actDesc", + "_RuleTipsButton1", + "_Group1" + ] + }, + "_Image1": { "height": 556, "scale9Grid": "59,52,8,13", "source": "apay_tab_bg", "width": 614, "$t": "$eI" }, + "_Image2": { "source": "kf_xb_bg_png", "x": 6, "y": 6, "$t": "$eI" }, + "againImg": { "horizontalCenter": -1.5, "source": "kf_xb_t1", "verticalCenter": -234.5, "$t": "$eI" }, + "againCount": { "horizontalCenter": -61.5, "size": 26, "stroke": 2, "text": "49", "textColor": 2682369, "verticalCenter": -234, "$t": "$eL" }, + "_Image3": { "left": 181, "source": "kf_xb_t2", "y": 70, "$t": "$eI" }, + "extractCount": { "left": 372, "size": 26, "stroke": 2, "text": "99/99", "textColor": 15926028, "x": 372, "y": 73, "$t": "$eL" }, + "extractItem": { "skinName": "ItemBaseSkin", "x": 278, "y": 200, "$t": "app.ItemBase" }, + "isExtractImg": { "source": "kf_xb_p1", "x": 278, "y": 200, "$t": "$eI" }, + "extractMc": { "horizontalCenter": -2, "verticalCenter": -44, "$t": "$eG" }, + "consumeGrp1": { + "bottom": 180, + "horizontalCenter": 0, + "touchEnabled": false, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["labConsume", "moneyImg", "extractMoney", "labConsume2", "moneyImg2", "extractMoney2"] + }, + "_HorizontalLayout1": { "gap": 0, "verticalAlign": "middle", "$t": "$eHL" }, + "labConsume": { "size": 20, "stroke": 1, "text": "单次消耗", "textColor": 15189392, "verticalCenter": 0, "x": 0, "$t": "$eL" }, + "moneyImg": { "source": "icon_yuanbao", "x": 40, "$t": "$eI" }, + "extractMoney": { "size": 20, "stroke": 1, "text": "100", "textColor": 15189392, "verticalCenter": 0, "x": 80, "$t": "$eL" }, + "labConsume2": { "size": 20, "stroke": 1, "text": "优先消耗消耗", "textColor": 15189392, "verticalCenter": 0, "x": 0, "$t": "$eL" }, + "moneyImg2": { "scaleX": 0.6, "scaleY": 0.6, "source": "icon_yuanbao", "x": 40, "$t": "$eI" }, + "extractMoney2": { "size": 20, "stroke": 1, "text": "100", "textColor": 15189392, "verticalCenter": 0, "x": 80, "$t": "$eL" }, + "consumeGrp2": { "bottom": 189, "horizontalCenter": 0, "touchEnabled": false, "$t": "$eG", "$eleC": ["labConsume_2"] }, + "labConsume_2": { "size": 20, "stroke": 1, "text": "本次抽奖免费", "textColor": 15189392, "verticalCenter": 0, "x": 0, "$t": "$eL" }, + "receiveBtn": { "height": 83, "label": "抽 奖", "width": 180, "x": 122, "y": 368, "$t": "$eB", "skinName": "OpenServerTreasureViewSkin$Skin220" }, + "receiveBtn2": { "height": 83, "label": "十连抽奖", "width": 180, "x": 312, "y": 368, "$t": "$eB", "skinName": "OpenServerTreasureViewSkin$Skin221" }, + "red": { "source": "common_hongdian", "touchEnabled": false, "x": 269, "y": 381, "$t": "$eI" }, + "_Label1": { "size": 20, "text": "剩余时间:", "textColor": 16770304, "x": 42.5, "y": 462, "$t": "$eL" }, + "_Label2": { "size": 20, "text": "活动内容:", "textColor": 16770304, "x": 41.5, "y": 486, "$t": "$eL" }, + "actTime": { "size": 20, "text": "", "textColor": 2682369, "x": 140, "y": 462, "$t": "$eL" }, + "actDesc": { "size": 20, "text": "", "textColor": 15189392, "width": 409, "x": 140, "y": 486, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "left": 14, "ruleId": "69", "top": 13, "$t": "app.RuleTipsButton" }, + "_Group1": { "height": 53, "x": 455, "y": 200, "$t": "$eG", "$eleC": ["labSurplus", "labSurplus2", "labSurplusNum", "labSurplusNum2", "moneyImg3", "moneyImg4"] }, + "labSurplus": { "size": 20, "stroke": 1, "text": "剩余", "textColor": 1572608, "verticalCenter": -12.5, "$t": "$eL" }, + "labSurplus2": { "size": 20, "stroke": 1, "text": "剩余", "textColor": 1572608, "verticalCenter": 13.5, "$t": "$eL" }, + "labSurplusNum": { "size": 20, "stroke": 1, "text": "10", "textColor": 1572608, "verticalCenter": -12.5, "x": 80, "$t": "$eL" }, + "labSurplusNum2": { "size": 20, "stroke": 1, "text": "10", "textColor": 1572608, "verticalCenter": 13.5, "x": 80, "$t": "$eL" }, + "moneyImg3": { "source": "icon_yuanbao", "verticalCenter": -13, "x": 40, "$t": "$eI" }, + "moneyImg4": { "scaleX": 0.6, "scaleY": 0.6, "source": "icon_yuanbao", "verticalCenter": 13, "x": 40, "$t": "$eI" }, + "_Group3": { "height": 556, "right": 0, "width": 261, "$t": "$eG", "$eleC": ["_Image4", "_Image5", "_Image6", "_Image7", "_Image8", "_Image9", "_Image10", "highScroller", "otherScroller"] }, + "_Image4": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "59,52,8,13", "source": "apay_tab_bg", "top": 0, "$t": "$eI" }, + "_Image5": { "horizontalCenter": 2.5, "source": "kf_xb_bg2", "verticalCenter": -252.5, "$t": "$eI" }, + "_Image6": { "source": "kf_xb_bt", "x": 55, "y": 10, "$t": "$eI" }, + "_Image7": { "horizontalCenter": 2.5, "source": "kf_xb_bg2", "verticalCenter": 50.5, "$t": "$eI" }, + "_Image8": { "source": "kf_xb_bt2", "x": 55, "y": 317, "$t": "$eI" }, + "_Image9": { "height": 263.33, "scale9Grid": "9,11,4,3", "source": "kf_xb_bg3", "width": 244.67, "x": 8.99, "y": 43.66, "$t": "$eI" }, + "_Image10": { "height": 202.12, "scale9Grid": "9,11,4,3", "source": "kf_xb_bg3", "width": 244, "x": 9.66, "y": 348.06, "$t": "$eI" }, + "highScroller": { "height": 246, "scrollPolicyH": "off", "width": 214, "x": 23, "y": 57, "$t": "$eS", "viewport": "highList" }, + "highList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 16, "requestedColumnCount": 3, "verticalGap": 14, "$t": "$eTL" }, + "otherScroller": { "height": 178, "scrollPolicyH": "off", "width": 214, "x": 23, "y": 364, "$t": "$eS", "viewport": "otherList" }, + "otherList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "horizontalGap": 15, "requestedColumnCount": 3, "verticalGap": 14, "$t": "$eTL" }, + "$sP": [ + "againImg", + "againCount", + "extractCount", + "extractItem", + "isExtractImg", + "extractMc", + "labConsume", + "moneyImg", + "extractMoney", + "labConsume2", + "moneyImg2", + "extractMoney2", + "consumeGrp1", + "labConsume_2", + "consumeGrp2", + "receiveBtn", + "receiveBtn2", + "red", + "actTime", + "actDesc", + "labSurplus", + "labSurplus2", + "labSurplusNum", + "labSurplusNum2", + "moneyImg3", + "moneyImg4", + "highList", + "highScroller", + "otherList", + "otherScroller" + ], + "$s": { + "state1": {}, + "state2": { + "$ssP": [ + { "target": "_Image2", "name": "source", "value": "kf_xb_bg4_png" }, + { "target": "extractItem", "name": "x", "value": 271 }, + { "target": "extractItem", "name": "y", "value": 197 }, + { "target": "isExtractImg", "name": "x", "value": 271 }, + { "target": "isExtractImg", "name": "y", "value": 197 }, + { "target": "extractMc", "name": "horizontalCenter", "value": -7 }, + { "target": "extractMc", "name": "verticalCenter", "value": -49 }, + { "target": "_RuleTipsButton1", "name": "ruleId", "value": "101" } + ] + } + }, + "$sC": "$eSk" + }, + "OpenServerTreasureViewSkin$Skin220": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "yk_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 20, "textColor": 2031616, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "yk_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "OpenServerTreasureViewSkin$Skin221": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "yk_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 20, "textColor": 2031616, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "yk_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "OpenServerTreasureWinSkin": { + "$path": "resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml", + "$bs": { "height": 690, "width": 1027, "$eleC": ["dragDropUI", "imgTitle", "closeBtn", "infoGrp"] }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "imgTitle": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "kf_xybt", "touchEnabled": false, "verticalCenter": -264.5, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "OpenServerTreasureWinSkin$Skin222" }, + "infoGrp": { "height": 556, "horizontalCenter": -0.5, "verticalCenter": 39, "width": 874, "$t": "$eG" }, + "$sP": ["dragDropUI", "imgTitle", "closeBtn", "infoGrp"], + "$sC": "$eSk" + }, + "OpenServerTreasureWinSkin$Skin222": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "OtherPlayerSkin": { "$path": "resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml", "$bs": { "height": 611, "width": 417 }, "$sC": "$eSk" }, + "MainCityWinSkin": { + "$path": "resource/eui_skins/web/phone/MainCityWinSkin.exml", + "$bs": { + "height": 1076, + "width": 1920, + "$eleC": [ + "_Group1", + "_Group2", + "_Group11", + "topGroup", + "topGroup2", + "_Image20", + "roleButton", + "bagButton", + "switchBtn", + "_Group12", + "lyaer1", + "lyaer4", + "lyaer6", + "addGroup", + "suitBtn", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3" + ] + }, + "_Group1": { "touchEnabled": false, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "_Image3", "switchButton"] }, + "_Image1": { "scale9Grid": "20,18,1,3", "source": "name_bg", "touchEnabled": false, "width": 286, "$t": "$eI" }, + "_Image2": { "source": "name_icon_jb", "x": 6, "y": 12, "$t": "$eI" }, + "_Image3": { "source": "name_icon_yb", "x": 169.03, "y": 2.99, "$t": "$eI" }, + "switchButton": { "label": "", "x": 287, "y": 3, "$t": "$eB", "skinName": "MainCityWinSkin$Skin223" }, + "_Group2": { "right": 164, "top": 13, "touchEnabled": false, "$t": "$eG", "$eleC": ["iconToggle", "toggleRed"] }, + "iconToggle": { "height": 42, "label": "", "width": 41, "$t": "$eTB", "skinName": "MainCityWinSkin$Skin224" }, + "toggleRed": { "right": 0, "top": 0, "visible": false, "$t": "app.RedDotControl" }, + "_Group11": { + "bottom": 0, + "horizontalCenter": 0, + "touchChildren": true, + "touchEnabled": false, + "percentWidth": 100, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["_Group3", "_Group9", "_Group10"] + }, + "_HorizontalLayout1": { "gap": 0, "horizontalAlign": "justify", "verticalAlign": "bottom", "$t": "$eHL" }, + "_Group3": { + "touchEnabled": false, + "width": 764, + "x": 154, + "y": 26, + "$t": "$eG", + "$eleC": ["_Image4", "patternButton", "hpGroup", "mpGroup", "signal", "_Image5", "electricity", "labelTime", "pkSelect", "lyaer5"] + }, + "_Image4": { "bottom": 0, "height": 149, "left": 0, "right": 0, "scale9Grid": "52,0,230,149", "source": "m_bg_zhuui1", "$t": "$eI" }, + "patternButton": { "bottom": 1, "icon": "m_msp_heping", "label": "", "right": 146, "skinName": "Btn0Skin", "$t": "$eB" }, + "hpGroup": { "bottom": 20, "height": 107, "right": 83, "width": 52, "$t": "$eG" }, + "mpGroup": { "bottom": 20, "height": 107, "right": 25, "width": 52, "$t": "$eG" }, + "signal": { "bottom": 3, "left": 89, "source": "m_sj_xinhao", "$t": "$eI" }, + "_Image5": { "bottom": 1, "left": 136, "source": "m_sj_dianchi1", "$t": "$eI" }, + "electricity": { "bottom": 4, "left": 138, "source": "m_sj_dianchi2", "width": 41, "$t": "$eI" }, + "labelTime": { "bottom": 4, "left": 217, "size": 18, "stroke": 2, "text": "8:59:32", "textColor": 15064271, "$t": "$eL" }, + "pkSelect": { "skinName": "SelectInputSkin", "visible": false, "x": 533, "y": 196, "$t": "app.SelectInput" }, + "lyaer5": { "bottom": 171, "height": 72, "right": 205, "touchChildren": true, "touchEnabled": false, "$t": "$eG" }, + "_Group9": { + "height": 200, + "touchEnabled": false, + "width": 360, + "x": 805, + "y": 41, + "$t": "$eG", + "$eleC": ["_Image6", "_Image7", "_Group4", "_Group5", "_Group6", "_Group7", "_Group8", "effGroup"] + }, + "_Image6": { "bottom": 0, "left": -1, "right": 0, "scale9Grid": "20,20,3,4", "source": "m_liaotianbg", "top": 111, "$t": "$eI" }, + "_Image7": { "bottom": 0, "horizontalCenter": 0, "source": "m_bg_zhuui3", "width": 361, "$t": "$eI" }, + "_Group4": { "height": 57, "width": 57, "x": 8, "y": 52, "$t": "$eG", "$eleC": ["_Image8", "shortcuts0", "keySkill0", "cdGrp0"] }, + "_Image8": { "height": 57, "scale9Grid": "9,10,1,1", "source": "m_daojubg", "width": 57, "$t": "$eI" }, + "shortcuts0": { "horizontalCenter": 0, "icon": "skillicon_ty4", "label": "", "skinName": "Btn0Skin", "verticalCenter": 0, "visible": false, "$t": "$eB" }, + "keySkill0": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "skinName": "skillItemSkin", "touchEnabled": false, "verticalCenter": 0, "$t": "app.MainSkillIconItem" }, + "cdGrp0": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "verticalCenter": 0, "$t": "$eG" }, + "_Group5": { "height": 57, "width": 57, "x": 77, "y": 52, "$t": "$eG", "$eleC": ["_Image9", "shortcuts1", "keySkill1", "cdGrp1"] }, + "_Image9": { "height": 57, "scale9Grid": "9,10,1,1", "source": "m_daojubg", "width": 57, "$t": "$eI" }, + "shortcuts1": { "horizontalCenter": 0, "icon": "skillicon_ty3", "label": "", "skinName": "Btn0Skin", "verticalCenter": 0, "visible": false, "$t": "$eB" }, + "keySkill1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "skinName": "skillItemSkin", "touchEnabled": false, "verticalCenter": 0, "$t": "app.MainSkillIconItem" }, + "cdGrp1": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "verticalCenter": 0, "x": -39, "y": 29, "$t": "$eG" }, + "_Group6": { "height": 57, "width": 57, "x": 148, "y": 52, "$t": "$eG", "$eleC": ["_Image10", "shortcuts2", "keySkill2", "cdGrp2"] }, + "_Image10": { "height": 57, "scale9Grid": "9,10,1,1", "source": "m_daojubg", "width": 57, "$t": "$eI" }, + "shortcuts2": { "horizontalCenter": 0, "label": "", "skinName": "Btn0Skin", "verticalCenter": 0, "visible": false, "$t": "$eB" }, + "keySkill2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "skinName": "skillItemSkin", "touchEnabled": false, "verticalCenter": 0, "$t": "app.MainSkillIconItem" }, + "cdGrp2": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "verticalCenter": 0, "x": -42, "y": 29, "$t": "$eG" }, + "_Group7": { "height": 57, "width": 57, "x": 217, "y": 52, "$t": "$eG", "$eleC": ["_Image11", "shortcuts3", "keySkill3", "cdGrp3"] }, + "_Image11": { "height": 57, "scale9Grid": "9,10,1,1", "source": "m_daojubg", "width": 57, "$t": "$eI" }, + "shortcuts3": { "horizontalCenter": 0, "label": "", "skinName": "Btn0Skin", "verticalCenter": 0, "visible": false, "$t": "$eB" }, + "keySkill3": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "skinName": "skillItemSkin", "touchEnabled": false, "verticalCenter": 0, "$t": "app.MainSkillIconItem" }, + "cdGrp3": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "verticalCenter": 0, "x": -40, "y": 29, "$t": "$eG" }, + "_Group8": { "height": 57, "width": 57, "x": 287, "y": 52, "$t": "$eG", "$eleC": ["_Image12", "shortcuts4", "keySkill4", "cdGrp4"] }, + "_Image12": { "height": 57, "scale9Grid": "9,10,1,1", "source": "m_daojubg", "width": 57, "$t": "$eI" }, + "shortcuts4": { "horizontalCenter": 0, "label": "", "skinName": "Btn0Skin", "verticalCenter": 0, "visible": false, "$t": "$eB" }, + "keySkill4": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "skinName": "skillItemSkin", "touchEnabled": false, "verticalCenter": 0, "$t": "app.MainSkillIconItem" }, + "cdGrp4": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "touchEnabled": false, "verticalCenter": 0, "x": -41, "y": 29, "$t": "$eG" }, + "effGroup": { + "bottom": 182, + "height": 1, + "horizontalCenter": -102, + "scaleX": 1, + "scaleY": 1, + "touchEnabled": false, + "visible": true, + "width": 1, + "x": 92, + "y": 19, + "$t": "$eG", + "$eleC": ["onHookGroup"] + }, + "onHookGroup": { "x": 110, "y": -34, "$t": "$eG", "$eleC": ["drugBtn", "pickupBtn", "splitBtn"] }, + "drugBtn": { "height": 53, "label": "", "width": 50, "$t": "$eB", "skinName": "MainCityWinSkin$Skin225" }, + "pickupBtn": { "height": 53, "label": "", "width": 50, "x": 52, "y": 0, "$t": "$eB", "skinName": "MainCityWinSkin$Skin226" }, + "splitBtn": { "height": 53, "label": "", "visible": false, "width": 50, "x": 104, "y": 0, "$t": "$eB", "skinName": "MainCityWinSkin$Skin227" }, + "_Group10": { + "touchEnabled": false, + "width": 793, + "x": 164, + "y": 36, + "$t": "$eG", + "$eleC": [ + "_Image13", + "shopButton", + "shopGroup", + "_Image14", + "_Image15", + "roleExp", + "doubleRoleExp", + "expGroup", + "expMcGroup", + "lvLabel", + "_Label1", + "fightBtn", + "followBtn", + "skillItemGrp", + "btnGrp" + ] + }, + "_Image13": { "bottom": 0, "height": 67, "left": 0, "right": 0, "scale9Grid": "112,0,354,67", "source": "m_bg_zhuui2", "$t": "$eI" }, + "shopButton": { "bottom": 10, "configid": 1, "left": 3, "skinName": "MainBtn4Skin", "$t": "app.MainButton3" }, + "shopGroup": { "bottom": 29, "left": 24, "touchEnabled": false, "$t": "$eG" }, + "_Image14": { "bottom": 2, "left": 187, "source": "m_expbg", "width": 141, "$t": "$eI" }, + "_Image15": { "bottom": 2, "left": 449, "source": "m_expbg", "width": 141, "$t": "$eI" }, + "roleExp": { "bottom": 7, "left": 192, "touchChildren": false, "value": 100, "width": 129, "$t": "$ePB", "skinName": "MainCityWinSkin$Skin228" }, + "doubleRoleExp": { "bottom": 7, "left": 454, "touchChildren": false, "value": 100, "width": 129, "$t": "$ePB", "skinName": "MainCityWinSkin$Skin229" }, + "expGroup": { "bottom": 3, "height": 20, "left": 450, "width": 123, "$t": "$eG" }, + "expMcGroup": { "bottom": 12, "left": 516, "$t": "$eG" }, + "lvLabel": { "bottom": 3, "left": 80, "size": 18, "stroke": 2, "text": "4转920级", "textColor": 15064527, "$t": "$eL" }, + "_Label1": { "bottom": 3, "left": 369, "size": 18, "stroke": 2, "text": "多倍经验", "textColor": 15064527, "$t": "$eL" }, + "fightBtn": { "bottom": 43, "label": "", "left": 68, "$t": "$eB", "skinName": "MainCityWinSkin$Skin230" }, + "followBtn": { "bottom": 43, "label": "", "left": 143, "$t": "$eB", "skinName": "MainCityWinSkin$Skin231" }, + "skillItemGrp": { "bottom": 40, "height": 465, "right": 20, "touchChildren": true, "touchEnabled": false, "touchThrough": true, "width": 549, "$t": "$eG", "$eleC": ["_Image16", "_Image17"] }, + "_Image16": { "source": "m_skillgw", "x": 398, "y": 372, "$t": "$eI" }, + "_Image17": { "source": "m_skillwj", "x": 468, "y": 288, "$t": "$eI" }, + "btnGrp": { "bottom": 40, "height": 465, "right": 20, "width": 274, "$t": "$eG", "$eleC": ["guildBtn", "friendBtn", "rankBtn", "mailBtn", "teamBtn", "settingBtn", "growWayBtn", "growButton"] }, + "guildBtn": { "configid": 8, "label": "Button", "skinName": "MainBtn7Skin", "x": 178, "y": 20, "$t": "app.MainButton3" }, + "friendBtn": { "configid": 42, "label": "Button", "skinName": "MainBtn7Skin", "x": 178, "y": 112, "$t": "app.MainButton3" }, + "rankBtn": { "configid": 44, "label": "Button", "skinName": "MainBtn7Skin", "x": 178, "y": 204, "$t": "app.MainButton3" }, + "mailBtn": { "configid": 40, "label": "Button", "skinName": "MainBtn7Skin", "x": 178, "y": 296, "$t": "app.MainButton3" }, + "teamBtn": { "configid": 41, "label": "Button", "skinName": "MainBtn7Skin", "x": 178, "y": 388, "$t": "app.MainButton3" }, + "settingBtn": { "configid": 43, "label": "Button", "skinName": "MainBtn7Skin", "x": 86, "y": 388, "$t": "app.MainButton3" }, + "growWayBtn": { "configid": 25, "skinName": "MainBtn7Skin", "x": 86, "y": 296, "$t": "app.MainButton3" }, + "growButton": { "configid": 46, "skinName": "MainBtn7Skin", "x": 86, "y": 204, "$t": "app.MainButton3" }, + "topGroup": { "height": 66, "horizontalCenter": 0, "scaleX": 0.9, "scaleY": 0.9, "top": 0, "width": 330, "$t": "$eG", "$eleC": ["_Image18", "jobImage", "_Image19", "hpBar"] }, + "_Image18": { "source": "m_m_lock_bg", "touchEnabled": false, "x": 0, "y": 2, "$t": "$eI" }, + "jobImage": { "height": 60, "source": "", "touchEnabled": false, "visible": true, "width": 60, "x": 1, "y": 4, "$t": "$eI" }, + "_Image19": { "source": "m_m_lockname_bg", "touchEnabled": false, "width": 257, "x": 73, "y": 4, "$t": "$eI" }, + "hpBar": { "skinName": "bloodBarSkin2", "slideDuration": 0, "touchChildren": false, "value": 50, "x": 75, "y": 43, "$t": "$ePB" }, + "topGroup2": { "horizontalCenter": -9, "top": -3, "touchChildren": false, "touchEnabled": false, "width": 300, "$t": "$eG", "$eleC": ["jobImg", "lockName", "lockHpLabel"] }, + "jobImg": { "scaleX": 0.8, "scaleY": 0.8, "source": "m_job1", "x": 74.31, "y": 7.02, "$t": "$eI" }, + "lockName": { "size": 18, "stroke": 2, "text": "我姐小熙是拖啊 10转999", "textAlign": "left", "verticalCenter": -11.5, "width": 210, "x": 101.65, "$t": "$eL" }, + "lockHpLabel": { "anchorOffsetY": 0, "height": 20, "size": 18, "stroke": 2, "text": "3086/5895", "textAlign": "center", "verticalAlign": "justify", "width": 235, "x": 75, "y": 43, "$t": "$eL" }, + "_Image20": { "bottom": 605, "right": 9, "source": "m_qiehuanbg", "touchEnabled": false, "$t": "$eI" }, + "roleButton": { "configid": 5, "right": 89, "skinName": "MainBtn2Skin", "top": 276, "$t": "app.MainButton3" }, + "bagButton": { "configid": 2, "right": 4, "skinName": "MainBtn2Skin", "top": 276, "$t": "app.MainButton3" }, + "switchBtn": { "bottom": 616, "label": "", "right": 18, "$t": "$eB", "skinName": "MainCityWinSkin$Skin232" }, + "_Group12": { "height": 42, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["bindGoldNum", "yuanbaoNum"] }, + "bindGoldNum": { "size": 20, "stroke": 2, "text": "12,485,694", "textColor": 15064527, "x": 38, "y": 12, "$t": "$eL" }, + "yuanbaoNum": { "size": 20, "stroke": 2, "text": "2,137", "textColor": 15064527, "x": 208, "y": 12, "$t": "$eL" }, + "lyaer1": { "left": 0, "right": 0, "top": 468, "touchChildren": true, "touchEnabled": false, "$t": "$eG" }, + "lyaer4": { "right": 208, "top": 10, "touchChildren": true, "touchEnabled": false, "$t": "$eG" }, + "lyaer6": { "right": 208, "top": 95, "touchChildren": true, "touchEnabled": false, "$t": "$eG" }, + "addGroup": { "touchChildren": false, "touchEnabled": false, "$t": "$eG" }, + "suitBtn": { "bottom": 125, "icon": "main_tuichu", "label": "Button", "left": 25, "skinName": "Btn0Skin", "visible": false, "$t": "$eB" }, + "expDian": { "source": "exp_dian", "x": 1893, "y": 999, "visible": false, "$t": "app.TweenImage" }, + "expDian0": { "source": "exp_dian", "x": 1903, "y": 1009, "visible": false, "$t": "app.TweenImage" }, + "expDian1": { "source": "exp_dian", "x": 1913, "y": 1019, "visible": false, "$t": "app.TweenImage" }, + "expDian2": { "source": "exp_dian", "x": 1923, "y": 1029, "visible": false, "$t": "app.TweenImage" }, + "expDian3": { "source": "exp_dian", "x": 1933, "y": 1039, "visible": false, "$t": "app.TweenImage" }, + "$sP": [ + "switchButton", + "iconToggle", + "toggleRed", + "patternButton", + "hpGroup", + "mpGroup", + "signal", + "electricity", + "labelTime", + "pkSelect", + "lyaer5", + "shortcuts0", + "keySkill0", + "cdGrp0", + "shortcuts1", + "keySkill1", + "cdGrp1", + "shortcuts2", + "keySkill2", + "cdGrp2", + "shortcuts3", + "keySkill3", + "cdGrp3", + "shortcuts4", + "keySkill4", + "cdGrp4", + "drugBtn", + "pickupBtn", + "splitBtn", + "onHookGroup", + "effGroup", + "shopButton", + "shopGroup", + "roleExp", + "doubleRoleExp", + "expGroup", + "expMcGroup", + "lvLabel", + "fightBtn", + "followBtn", + "skillItemGrp", + "guildBtn", + "friendBtn", + "rankBtn", + "mailBtn", + "teamBtn", + "settingBtn", + "growWayBtn", + "growButton", + "btnGrp", + "jobImage", + "hpBar", + "topGroup", + "jobImg", + "lockName", + "lockHpLabel", + "topGroup2", + "roleButton", + "bagButton", + "switchBtn", + "bindGoldNum", + "yuanbaoNum", + "lyaer1", + "lyaer4", + "lyaer6", + "addGroup", + "suitBtn", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3" + ], + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin223": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "name_btn", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin224": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "percentHeight": 100, "source": "icon_sq_2", "percentWidth": 100, "$t": "$eI" }, + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "icon_sq_1" }] }, "disabled": {} }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin225": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "gjbtn_hy", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin226": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_sq", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin227": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_fj", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin228": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "m_exp", "top": 0, "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "MainCityWinSkin$Skin229": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "bottom": 0, "left": 0, "right": 0, "source": "m_exp", "top": 0, "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "MainCityWinSkin$Skin230": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_cw_gj", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin231": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_cw_gs", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "MainCityWinSkin$Skin232": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_qiehuan", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneAtkModelViewSkin": { + "$path": "resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml", + "$bs": { "height": 176, "width": 138, "$eleC": ["_Image1", "pkbg", "pkImage1", "pkImage2", "pkImage3", "pkImage4", "pkImage5"] }, + "_Image1": { "height": 170, "scale9Grid": "4,4,3,2", "source": "m_ms_bg1", "width": 131, "x": 3, "y": 3, "$t": "$eI" }, + "pkbg": { "height": 34, "scale9Grid": "1,1,2,2", "source": "m_ms_bg2", "width": 127, "x": 6, "y": 6, "$t": "$eI" }, + "pkImage1": { "source": "m_heping", "x": 7, "y": 6, "$t": "$eI" }, + "pkImage2": { "source": "m_zudui", "x": 7, "y": 40, "$t": "$eI" }, + "pkImage3": { "source": "m_hanghui", "x": 7, "y": 72, "$t": "$eI" }, + "pkImage4": { "source": "m_didui", "x": 7, "y": 104, "$t": "$eI" }, + "pkImage5": { "source": "m_quanti", "x": 7, "y": 136, "$t": "$eI" }, + "$sP": ["pkbg", "pkImage1", "pkImage2", "pkImage3", "pkImage4", "pkImage5"], + "$sC": "$eSk" + }, + "PhoneBtnCreateSkin": { + "$path": "resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml", + "$bs": { "height": 100, "minHeight": 25, "minWidth": 25, "width": 73, "$eleC": ["iconDisplay", "labelDisplay", "_Image1"], "$sId": ["selected", "_Rect1"] }, + "iconDisplay": { "horizontalCenter": 0, "pixelHitTest": true, "scaleX": 0.6, "scaleY": 0.6, "source": "login_nv_1", "verticalCenter": -10.5, "$t": "$eI" }, + "selected": { "horizontalCenter": 0, "pixelHitTest": true, "scaleX": 0.6, "scaleY": 0.6, "source": "", "verticalCenter": -10.5, "$t": "$eI" }, + "_Rect1": { "fillAlpha": 0, "fillColor": 16777215, "percentHeight": 100, "strokeAlpha": 0, "touchEnabled": true, "percentWidth": 100, "y": 0, "$t": "$eR" }, + "labelDisplay": { "bold": true, "horizontalCenter": 1, "size": 20, "stroke": 2, "text": "战士", "textColor": 15064527, "y": 75.34, "$t": "$eL" }, + "_Image1": { "height": 80, "horizontalCenter": 0, "scale9Grid": "19,19,2,2", "source": "login_xuanzhong", "touchEnabled": false, "verticalCenter": -10, "width": 81, "$t": "$eI" }, + "$sP": ["iconDisplay", "selected", "labelDisplay"], + "$s": { + "up": { + "$ssP": [ + { "target": "labelDisplay", "name": "textColor", "value": 14663070 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ] + }, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "x", "value": 0.5 }, + { "target": "iconDisplay", "name": "y", "value": 1 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.55 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.55 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ] + }, + "disabled": { + "$ssP": [ + { "target": "iconDisplay", "name": "alpha", "value": 0.5 }, + { "target": "_Image1", "name": "x", "value": -10.1 }, + { "target": "_Image1", "name": "y", "value": -9.5 }, + { "target": "_Image1", "name": "visible", "value": false } + ], + "$saI": [{ "target": "_Rect1", "property": "", "position": 2, "relativeTo": "labelDisplay" }] + }, + "selected": { + "$ssP": [ + { "target": "iconDisplay", "name": "horizontalCenter", "value": 0 }, + { "target": "iconDisplay", "name": "source", "value": "login_zs_2" }, + { "target": "labelDisplay", "name": "textColor", "value": 13926697 }, + { "target": "_Image1", "name": "horizontalCenter", "value": 0 } + ], + "$saI": [{ "target": "selected", "property": "", "position": 2, "relativeTo": "labelDisplay" }] + } + }, + "$sC": "$eSk" + }, + "PhoneChatItemSkin": { + "$path": "resource/eui_skins/web/phone/PhoneChatItemSkin.exml", + "$bs": { "width": 304, "$eleC": ["systemGrp", "qqGrp", "txtGrp"] }, + "systemGrp": { "height": 24, "minHeight": 24, "width": 54, "$t": "$eG", "$eleC": ["_Rect1", "chatChannelName", "_Image1"] }, + "_Rect1": { "bottom": -1, "fillColor": 16552473, "left": 0, "right": -6, "top": -1, "$t": "$eR" }, + "chatChannelName": { "backgroundColor": 16552473, "horizontalCenter": 3.5, "size": 16, "stroke": 1, "text": "[系统]", "textColor": 16776956, "verticalCenter": 0.5, "$t": "$eL" }, + "_Image1": { "height": 0, "source": "lt_xitong", "visible": false, "width": 0, "x": 0.32, "y": 0, "$t": "$eI" }, + "qqGrp": { "touchChildren": false, "touchEnabled": false, "visible": false, "x": 62, "y": 1, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["blueImg", "blueYearImg"] }, + "_HorizontalLayout1": { "gap": 0, "$t": "$eHL" }, + "blueImg": { "source": "name_lz_hh8", "x": -3, "y": -1, "$t": "$eI" }, + "blueYearImg": { "source": "name_lz_nf", "x": 7, "y": 9, "$t": "$eI" }, + "txtGrp": { "minHeight": 24, "x": 65, "y": 0, "$t": "$eG", "$eleC": ["bgColor", "chatLab", "bqGroup", "logo"] }, + "bgColor": { "bottom": -1, "fillColor": 472572, "left": -3, "right": -3, "scaleX": 1, "scaleY": 1, "top": -1, "$t": "$eR" }, + "chatLab": { + "background": false, + "backgroundColor": 472572, + "lineSpacing": 3, + "maxWidth": 290, + "size": 16, + "stroke": 1, + "text": "哈哈哈哈", + "textColor": 15064527, + "visible": true, + "x": 0, + "y": 4, + "$t": "$eL" + }, + "bqGroup": { "visible": true, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["bqLab", "icoImage"] }, + "_HorizontalLayout2": { "gap": 1, "verticalAlign": "middle", "$t": "$eHL" }, + "bqLab": { "background": false, "backgroundColor": 472572, "lineSpacing": 3, "maxWidth": 290, "size": 16, "stroke": 1, "textColor": 15064527, "y": 0, "$t": "$eL" }, + "icoImage": { "$t": "$eI" }, + "logo": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 0.4, "scaleY": 0.4, "source": "", "visible": false, "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["chatChannelName", "systemGrp", "blueImg", "blueYearImg", "qqGrp", "bgColor", "chatLab", "bqLab", "icoImage", "bqGroup", "logo", "txtGrp"], + "$sC": "$eSk" + }, + "PhoneCreateRoleSkin": { + "$path": "resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml", + "$bs": { "height": 750, "width": 1344, "$eleC": ["_Rect1", "group"] }, + "_Rect1": { "fillAlpha": 1, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "group": { + "height": 750, + "horizontalCenter": 0, + "verticalCenter": 0, + "width": 1344, + "$t": "$eG", + "$eleC": ["bgImg", "timeLab", "roleGrp", "_Group1", "_Group2", "_Group3", "createMcGrp", "diceBtn", "nameInput"] + }, + "bgImg": { "horizontalCenter": -1, "source": "mp_login_bg_png", "verticalCenter": 0, "$t": "$eI" }, + "timeLab": { "size": 22, "text": "", "textAlign": "center", "textColor": 2682369, "width": 300, "x": 530, "y": 677, "$t": "$eL" }, + "roleGrp": { "scaleX": 0.9, "scaleY": 0.9, "x": 482, "y": 583.33, "$t": "$eG" }, + "_Group1": { "x": 769, "y": 360, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["job1", "job2", "job3"] }, + "_HorizontalLayout1": { "gap": 4, "$t": "$eHL" }, + "job1": { "icon": "login_zs_2", "label": "战士", "skinName": "PhoneBtnCreateSkin", "$t": "$eB" }, + "job2": { "icon": "login_fs_2", "label": "法师", "skinName": "PhoneBtnCreateSkin", "x": 135, "y": -1, "$t": "$eB" }, + "job3": { "icon": "login_ds_2", "label": "道士", "skinName": "PhoneBtnCreateSkin", "x": 283, "y": -1, "$t": "$eB" }, + "_Group2": { "x": 802, "y": 501, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["boy", "girl"] }, + "_HorizontalLayout2": { "gap": 8, "$t": "$eHL" }, + "boy": { "icon": "login_nan_2", "label": "男", "skinName": "PhoneBtnCreateSkin", "x": 2, "$t": "$eB" }, + "girl": { "icon": "login_nv_2", "label": "女", "skinName": "PhoneBtnCreateSkin", "x": 149, "$t": "$eB" }, + "_Group3": { "height": 90, "width": 208, "x": 577, "y": 651.67, "$t": "$eG", "$eleC": ["createBtn"] }, + "createBtn": { "icon": "login_btn", "scaleX": 0.7, "scaleY": 0.7, "x": 0, "$t": "$eB", "skinName": "PhoneCreateRoleSkin$Skin233" }, + "createMcGrp": { "touchChildren": false, "touchEnabled": false, "touchThrough": false, "x": 680, "y": 695, "$t": "$eG" }, + "diceBtn": { "icon": "login_suiji", "scaleX": 1.2, "scaleY": 1.2, "x": 974, "y": 265, "$t": "$eB", "skinName": "PhoneCreateRoleSkin$Skin234" }, + "nameInput": { "size": 24, "text": "", "textAlign": "center", "verticalAlign": "middle", "width": 172, "x": 793, "y": 272, "$t": "$eET" }, + "$sP": ["bgImg", "timeLab", "roleGrp", "job1", "job2", "job3", "boy", "girl", "createBtn", "createMcGrp", "diceBtn", "nameInput", "group"], + "$sC": "$eSk" + }, + "PhoneCreateRoleSkin$Skin233": { + "$bs": { "$eleC": ["iconDisplay", "labelDisplay"] }, + "iconDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["iconDisplay", "labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleX", "value": 0.98 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneCreateRoleSkin$Skin234": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "login_suiji", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "login_suiji" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneLoadingSkin": { + "$path": "resource/eui_skins/web/phone/PhoneLoadingSkin.exml", + "$bs": { "height": 750, "width": 1344, "$eleC": ["_Group2"] }, + "_Group2": { "height": 750, "horizontalCenter": 0, "verticalCenter": 0, "width": 1344, "$t": "$eG", "$eleC": ["BgImg", "_Group1", "version1", "version2", "version3"] }, + "BgImg": { "horizontalCenter": 0, "source": "loading_1_jpg", "verticalCenter": 0, "$t": "$eI" }, + "_Group1": { + "bottom": 71, + "height": 136, + "horizontalCenter": 0.5, + "touchEnabled": false, + "width": 919, + "$t": "$eG", + "$eleC": ["_Image1", "rect", "_Image2", "lodingDesc", "firstLoadImg", "reloadImg"] + }, + "_Image1": { "bottom": 45, "horizontalCenter": 0, "scaleX": 0.7, "scaleY": 0.7, "source": "login_jdt_t", "x": 16, "y": 79, "$t": "$eI" }, + "rect": { "bottom": 45, "fillColor": 1312000, "height": 14, "right": 20, "width": 879, "y": 78, "$t": "$eR" }, + "_Image2": { "bottom": 39, "horizontalCenter": 0, "scaleX": 0.7, "scaleY": 0.7, "source": "login_jdt_k", "x": 11, "y": 75, "$t": "$eI" }, + "lodingDesc": { "bottom": 9, "horizontalCenter": 0, "size": 27, "stroke": 2, "text": "正在进入游戏", "textColor": 15064527, "x": 378, "y": 101, "$t": "$eL" }, + "firstLoadImg": { "bottom": 68, "horizontalCenter": 0, "source": "login_wenzi3", "x": 25, "y": 3, "$t": "$eI" }, + "reloadImg": { "bottom": 12, "horizontalCenter": 337, "source": "login_wenzi1", "x": 645, "y": 97, "$t": "$eI" }, + "version1": { "bottom": 37, "horizontalCenter": 0, "scaleX": 0.75, "scaleY": 0.75, "source": "zjt1_png", "$t": "$eI" }, + "version2": { "bottom": 12, "horizontalCenter": -145, "scaleX": 0.75, "scaleY": 0.75, "source": "zjt2_png", "$t": "$eI" }, + "version3": { "bottom": 13, "horizontalCenter": 145, "scaleX": 0.75, "scaleY": 0.75, "source": "zjt3_png", "$t": "$eI" }, + "$sP": ["BgImg", "rect", "lodingDesc", "firstLoadImg", "reloadImg", "version1", "version2", "version3"], + "$sC": "$eSk" + }, + "PhoneLoginViewSkin": { + "$path": "resource/eui_skins/web/phone/PhoneLoginViewSkin.exml", + "$bs": { "height": 750, "width": 1334, "$eleC": ["_Group1"] }, + "_Group1": { "height": 750, "horizontalCenter": 0, "verticalCenter": 0, "width": 1334, "$t": "$eG", "$eleC": ["_Image1", "gameLogo", "enterGrp", "serverGrp"] }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "mp_xfjm_png", "x": 0, "y": 0, "$t": "$eI" }, + "gameLogo": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "LOGO3_png", "top": 114, "x": 400, "y": 114, "$t": "$eI" }, + "enterGrp": { + "anchorOffsetY": 0, + "height": 193, + "horizontalCenter": 1, + "scaleX": 1, + "scaleY": 1, + "touchEnabled": false, + "verticalCenter": 196, + "x": 480, + "y": 520, + "$t": "$eG", + "$eleC": ["_Image2", "selectServerImg", "serverTypeImg", "serverName", "serverSelect", "enterBtn"] + }, + "_Image2": { "source": "login_bt_2", "x": 0, "$t": "$eI" }, + "selectServerImg": { "source": "login_bt_1", "x": 231, "y": 3, "$t": "$eI" }, + "serverTypeImg": { "source": "login_dian_1", "x": 19.96, "y": 15.96, "$t": "$eI" }, + "serverName": { "horizontalCenter": -65, "size": 22, "stroke": 2, "text": "区服六个字符", "textColor": 15064527, "verticalCenter": -68, "$t": "$eL" }, + "serverSelect": { "horizontalCenter": 117, "size": 22, "stroke": 2, "text": "区服选择", "textColor": 15064527, "touchEnabled": false, "verticalCenter": -68, "$t": "$eL" }, + "enterBtn": { "bottom": 0, "horizontalCenter": 0, "icon": "login_jinru", "$t": "$eB", "skinName": "PhoneLoginViewSkin$Skin235" }, + "serverGrp": { + "horizontalCenter": 0, + "scaleX": 1, + "scaleY": 1, + "verticalCenter": 0, + "visible": false, + "x": 263, + "y": 154, + "$t": "$eG", + "$eleC": ["_Image3", "serverSelectImg", "_Scroller1", "_Scroller2", "closeBtn", "_Image4", "_Image5", "_Image6", "serverTypeLab0", "serverTypeLab1", "serverTypeLab2"] + }, + "_Image3": { "source": "login_bg3", "$t": "$eI" }, + "serverSelectImg": { "horizontalCenter": 0, "source": "login_xzqf", "top": 19, "$t": "$eI" }, + "_Scroller1": { "height": 386, "width": 181, "x": 37, "y": 68, "$t": "$eS", "viewport": "btnList" }, + "btnList": { "x": 26.67, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "$t": "$eVL" }, + "_Scroller2": { "height": 368, "width": 527, "x": 243, "y": 79, "$t": "$eS", "viewport": "serverList" }, + "serverList": { "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 1, "requestedColumnCount": 3, "$t": "$eTL" }, + "closeBtn": { "label": "", "right": 21, "scaleX": 1.3, "scaleY": 1.3, "y": 24, "$t": "$eB", "skinName": "PhoneLoginViewSkin$Skin236" }, + "_Image4": { "source": "login_dian_1", "x": 146, "y": 481, "$t": "$eI" }, + "_Image5": { "source": "login_dian_3", "x": 345, "y": 481, "$t": "$eI" }, + "_Image6": { "source": "login_dian_2", "x": 532, "y": 481, "$t": "$eI" }, + "serverTypeLab0": { "size": 23, "stroke": 2, "text": "顺 畅", "textColor": 2682369, "x": 199, "y": 480, "$t": "$eL" }, + "serverTypeLab1": { "size": 23, "stroke": 2, "text": "维 护", "textColor": 8420211, "x": 395, "y": 480, "$t": "$eL" }, + "serverTypeLab2": { "size": 23, "stroke": 2, "text": "爆 满", "textColor": 15007744, "x": 590, "y": 480, "$t": "$eL" }, + "$sP": [ + "gameLogo", + "selectServerImg", + "serverTypeImg", + "serverName", + "serverSelect", + "enterBtn", + "enterGrp", + "serverSelectImg", + "btnList", + "serverList", + "closeBtn", + "serverTypeLab0", + "serverTypeLab1", + "serverTypeLab2", + "serverGrp" + ], + "$sC": "$eSk" + }, + "PhoneLoginViewSkin$Skin235": { + "$bs": { "$eleC": ["iconDisplay", "labelDisplay"] }, + "iconDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["iconDisplay", "labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleY", "value": 0.98 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneLoginViewSkin$Skin236": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "Login_guanbi", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "Login_guanbi" }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneMainButtonSkin": { + "$path": "resource/eui_skins/web/phone/PhoneMainButtonSkin.exml", + "$bs": { "currentState": "up", "height": 72, "width": 72, "$eleC": ["iconDisplay", "redDot", "ingGrp"] }, + "iconDisplay": { "horizontalCenter": 0, "source": "icon_beibao", "verticalCenter": 0, "$t": "$eI" }, + "redDot": { "height": 20, "right": 0, "source": "common_hongdian", "top": 0, "visible": false, "width": 20, "$t": "$eI" }, + "ingGrp": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "visible": false, "y": 72, "$t": "$eG", "$eleC": ["_Image1", "timeLab"] }, + "_Image1": { "source": "icon_shachengdjs", "x": 0, "y": 0, "$t": "$eI" }, + "timeLab": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["iconDisplay", "redDot", "timeLab", "ingGrp"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "iconDisplay", "name": "scaleX", "value": 0.9 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.9 } + ] + } + }, + "$sC": "$eSk" + }, + "PhoneMainSkillSkin": { + "$path": "resource/eui_skins/web/phone/PhoneMainSkillSkin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_skillbg1", "verticalCenter": 0, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.9 }, + { "target": "_Image1", "name": "scaleY", "value": 0.9 }, + { "target": "iconDisplay", "name": "scaleX", "value": 0.9 }, + { "target": "iconDisplay", "name": "scaleY", "value": 0.9 } + ] + } + }, + "$sC": "$eSk" + }, + "RankRightMenuSkin": { + "$path": "resource/eui_skins/web/rank/RankRightMenuSkin.exml", + "$bs": { "height": 310, "width": 122, "$eleC": ["bg", "gList"] }, + "bg": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 59, "scale9Grid": "6,6,8,6", "smoothing": false, "source": "com_bg_kuang_xian1", "width": 122, "x": 1, "y": -0.5, "$t": "$eI" }, + "gList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 41, "width": 109, "x": 8, "y": 8, "$t": "$eLs", "dataProvider": "_ArrayCollection1" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1"] }, + "_Object1": { "btn": "null", "$t": "Object" }, + "$sP": ["bg", "gList"], + "$sC": "$eSk" + }, + "PhoneMainSkin": { + "$path": "resource/eui_skins/web/phone/PhoneMainSkin.exml", + "$bs": { "height": 750, "width": 1334, "$eleC": ["imageGroup", "clickGroup", "labelGroup", "outerGroup", "mcGroup", "pkGroup", "msgGroup"] }, + "imageGroup": { + "anchorOffsetX": 0, + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Group1", "bg1", "bg2", "_Image9", "_Image10", "_Image11", "lockIconBg", "lockNameBg", "jobImg", "hpBg", "_Group2", "_Image12", "_Image13", "_Image14"] + }, + "_Group1": { + "anchorOffsetY": 0, + "bottom": 0, + "height": 148, + "horizontalCenter": 0, + "touchEnabled": false, + "width": 364, + "$t": "$eG", + "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "_Image6", "_Image7", "_Image8"] + }, + "_Image1": { "anchorOffsetY": 0, "bottom": 6, "left": 0, "right": 0, "scale9Grid": "5,5,31,31", "source": "m_liaotianbg", "top": 62, "$t": "$eI" }, + "_Image2": { "bottom": 0, "horizontalCenter": 0, "source": "m_bg_zhuui3", "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "height": 58, "scale9Grid": "2,2,13,13", "source": "m_daojubg", "width": 58, "x": 10.33, "y": 1, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "height": 58, "scale9Grid": "2,2,13,13", "source": "m_daojubg", "width": 58, "x": 80.66, "y": 1, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "height": 58, "scale9Grid": "2,2,13,13", "source": "m_daojubg", "width": 58, "x": 149.66, "y": 1, "$t": "$eI" }, + "_Image6": { "anchorOffsetX": 0, "height": 58, "scale9Grid": "2,2,13,13", "source": "m_daojubg", "width": 58, "x": 219.66, "y": 1, "$t": "$eI" }, + "_Image7": { "anchorOffsetX": 0, "height": 58, "scale9Grid": "2,2,13,13", "source": "m_daojubg", "width": 58, "x": 288.32, "y": 1, "$t": "$eI" }, + "_Image8": { "source": "m_kuaijielan2", "x": 9, "$t": "$eI" }, + "bg1": { "anchorOffsetX": 0, "bottom": 0, "left": -2, "scale9Grid": "64,104,236,23", "source": "m_bg_zhuui1", "$t": "$eI" }, + "bg2": { "anchorOffsetX": 0, "bottom": 0, "right": 0, "scale9Grid": "112,30,339,27", "source": "m_bg_zhuui2", "width": 483, "$t": "$eI" }, + "_Image9": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 44, "scale9Grid": "4,4,28,28", "source": "name_bg", "touchEnabled": false, "width": 283, "x": 2, "y": 0, "$t": "$eI" }, + "_Image10": { "source": "name_icon_jb", "x": 6, "y": 12, "$t": "$eI" }, + "_Image11": { "source": "name_icon_yb", "x": 168, "y": 3, "$t": "$eI" }, + "lockIconBg": { "horizontalCenter": -89, "scaleX": 0.9, "scaleY": 0.9, "source": "m_m_lock_bg", "top": 2, "touchEnabled": false, "$t": "$eI" }, + "lockNameBg": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 30, + "horizontalCenter": 55, + "scale9Grid": "30,4,180,24", + "source": "m_m_lockname_bg", + "top": 4, + "touchEnabled": false, + "width": 216, + "$t": "$eI" + }, + "jobImg": { "horizontalCenter": -40, "scaleX": 0.8, "scaleY": 0.8, "source": "m_job1", "top": 7, "$t": "$eI" }, + "hpBg": { "height": 20, "horizontalCenter": 55, "scale9Grid": "25,2,152,16", "source": "m_m_sd_xt_k", "top": 39, "width": 214, "$t": "$eI" }, + "_Group2": { "horizontalCenter": 56, "top": 39, "width": 212, "$t": "$eG", "$eleC": ["hpImage"] }, + "hpImage": { "height": 16, "scale9Grid": "25,2,151,14", "source": "m_m_sd_xt_bg", "width": 210, "y": 2, "$t": "$eI" }, + "_Image12": { "bottom": 1, "right": 227, "source": "m_expbg", "$t": "$eI" }, + "_Image13": { "bottom": 1, "right": 38, "source": "m_expbg", "$t": "$eI" }, + "_Image14": { "bottom": 416, "right": 0, "source": "m_qiehuanbg", "$t": "$eI" }, + "clickGroup": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchEnabled": false, + "$t": "$eG", + "$eleC": [ + "switchRoleButton", + "lockIcon", + "modelButton", + "packUpButton", + "rechargeButton", + "bagButton", + "roleButton", + "firstRechargeBtn", + "vipButton", + "pkButton", + "aiButton", + "shopButton", + "packUpGroup", + "switchGrp", + "skillGroup", + "buttonGroup", + "newMsgTipsGrp" + ] + }, + "switchRoleButton": { "source": "name_btn", "x": 374, "y": 5, "$t": "$eI" }, + "lockIcon": { "height": 52, "horizontalCenter": -89, "source": "name_1_1", "top": 5, "width": 52, "$t": "$eI" }, + "modelButton": { "bottom": 4, "height": 45, "horizontalCenter": -348.5, "icon": "m_heping2", "skinName": "PhoneMainButtonSkin", "width": 45, "$t": "$eB" }, + "packUpButton": { "icon": "mp_map_bg1", "right": 142, "top": 2, "$t": "$eB", "skinName": "PhoneMainSkin$Skin237" }, + "rechargeButton": { "height": 37, "label": "", "width": 78, "x": 289, "y": 4, "$t": "$eB", "skinName": "PhoneMainSkin$Skin238" }, + "bagButton": { "bottom": 494, "configid": 2, "icon": "icon_beibao", "right": 5, "skinName": "PhoneMainButtonSkin", "$t": "app.PhoneMainButton" }, + "roleButton": { "bottom": 494, "configid": 5, "icon": "icon_juese", "right": 97, "skinName": "PhoneMainButtonSkin", "$t": "app.PhoneMainButton" }, + "firstRechargeBtn": { "configid": 26, "icon": "icon_shouchong", "right": 179, "skinName": "PhoneMainButtonSkin", "top": 4, "$t": "app.PhoneMainButton" }, + "vipButton": { "configid": 37, "icon": "icon_hytq", "right": 256, "skinName": "PhoneMainButtonSkin", "top": 4, "$t": "app.PhoneMainButton" }, + "pkButton": { "bottom": 415, "configid": 39, "icon": "icon_zhinengPK", "right": 106, "scaleX": 0.8, "scaleY": 0.8, "skinName": "PhoneMainButtonSkin", "$t": "app.PhoneMainButton" }, + "aiButton": { "bottom": 415, "configid": 38, "icon": "icon_guaji", "right": 195, "scaleX": 0.8, "scaleY": 0.8, "skinName": "PhoneMainButtonSkin", "$t": "app.PhoneMainButton" }, + "shopButton": { "bottom": 3, "configid": 1, "height": 45, "horizontalCenter": 211.5, "icon": "m_icon_shangcheng", "skinName": "PhoneMainButtonSkin", "width": 45, "$t": "app.PhoneMainButton" }, + "packUpGroup": { + "right": 179, + "top": 0, + "$t": "$eG", + "$eleC": ["layer1", "layer2", "donationGuideTipsGrp", "violentGuideTipsGrp", "vipGuideTipsGrp", "secondChargeTipsGrp", "firstChargeTipsGrp"] + }, + "layer1": { "height": 72, "right": 0, "top": 4, "touchEnabled": false, "$t": "$eG" }, + "layer2": { "height": 65, "right": 0, "top": 81, "touchEnabled": false, "$t": "$eG" }, + "donationGuideTipsGrp": { "right": 0, "top": 0, "$t": "$eG" }, + "violentGuideTipsGrp": { "right": 0, "top": 0, "$t": "$eG" }, + "vipGuideTipsGrp": { "right": 0, "top": 0, "$t": "$eG" }, + "secondChargeTipsGrp": { "right": 0, "top": 0, "$t": "$eG" }, + "firstChargeTipsGrp": { "right": 0, "top": 0, "$t": "$eG" }, + "switchGrp": { "bottom": 419, "height": 57, "right": 16, "width": 54, "$t": "$eG", "$eleC": ["switchImage", "switchRed"] }, + "switchImage": { "anchorOffsetX": 20, "anchorOffsetY": 20, "horizontalCenter": 0, "scale9Grid": "0,1,38,40", "source": "m_qiehuan", "verticalCenter": 0, "$t": "$eI" }, + "switchRed": { "x": 35, "y": 3, "$t": "app.RedDotControl" }, + "skillGroup": { + "bottom": 0, + "height": 387, + "right": 0, + "touchEnabled": false, + "width": 376, + "$t": "$eG", + "$eleC": [ + "_Image15", + "_Image16", + "bottomImage", + "topImage", + "skillButton0", + "skillButton1", + "skillButton2", + "skillButton3", + "skillButton4", + "skillButton5", + "skillButton6", + "skillButton7", + "skillButton8", + "stormButton", + "petAckButton", + "petFollowButton" + ] + }, + "_Image15": { "source": "mainphone_json.m_skillbg2", "touchEnabled": false, "x": 229, "y": 226, "$t": "$eI" }, + "_Image16": { "source": "m_skillwjgw", "touchEnabled": false, "x": 198, "y": 190, "$t": "$eI" }, + "bottomImage": { "source": "m_skillgw1", "x": 208, "y": 279, "$t": "$eI" }, + "topImage": { "source": "m_skillwj1", "x": 224, "y": 196, "$t": "$eI" }, + "skillButton0": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 286, "y": 1, "$t": "$eB" }, + "skillButton1": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 184, "y": 25, "$t": "$eB" }, + "skillButton2": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 94, "y": 84, "$t": "$eB" }, + "skillButton3": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 30, "y": 173, "$t": "$eB" }, + "skillButton4": { "height": 60, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 0, "y": 283, "$t": "$eB" }, + "skillButton5": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 284, "y": 83, "$t": "$eB" }, + "skillButton6": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 189, "y": 109, "$t": "$eB" }, + "skillButton7": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 116, "y": 182, "$t": "$eB" }, + "skillButton8": { "height": 72, "icon": "m_skillicon_fs11", "skinName": "PhoneMainSkillSkin", "width": 72, "x": 90, "y": 277, "$t": "$eB" }, + "stormButton": { "icon": "m_skillbg3", "skinName": "PhoneMainSkillSkin", "x": 238, "y": 235, "$t": "$eB" }, + "petAckButton": { "height": 47, "icon": "m_cw_gj", "skinName": "PhoneMainButtonSkin", "width": 47, "x": -68, "y": 274, "$t": "$eB" }, + "petFollowButton": { "height": 47, "icon": "m_cw_gs", "skinName": "PhoneMainButtonSkin", "width": 47, "x": -70, "y": 207, "$t": "$eB" }, + "buttonGroup": { "bottom": 0, "right": 0, "touchEnabled": false, "width": 427, "$t": "$eG", "$eleC": ["layer3", "layer4", "layer5", "layer6", "layer7"] }, + "layer3": { "bottom": 36, "right": 10, "width": 72, "$t": "$eG" }, + "layer4": { "bottom": 36, "right": 90, "width": 72, "$t": "$eG" }, + "layer5": { "bottom": 36, "right": 170, "width": 72, "$t": "$eG" }, + "layer6": { "bottom": 36, "right": 250, "width": 72, "$t": "$eG" }, + "layer7": { "bottom": 36, "right": 330, "width": 72, "$t": "$eG" }, + "newMsgTipsGrp": { "bottom": 149, "height": 51, "left": 372, "touchEnabled": false, "$t": "$eG" }, + "labelGroup": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["bindGoldNum", "yuanbaoNum", "labelTime", "levelLab", "_Label1", "lockName", "lockHpLabel"] + }, + "bindGoldNum": { "size": 20, "stroke": 2, "text": "12345688", "textColor": 16777215, "x": 41, "y": 13, "$t": "$eL" }, + "yuanbaoNum": { "size": 20, "stroke": 2, "text": "2132", "textColor": 16777215, "x": 205, "y": 13, "$t": "$eL" }, + "labelTime": { "bottom": 3, "horizontalCenter": -444, "size": 18, "stroke": 2, "text": "08:08:08", "textAlign": "center", "touchEnabled": false, "width": 100, "$t": "$eL" }, + "levelLab": { "bottom": 3, "right": 342, "size": 18, "stroke": 2, "text": "4转500", "textAlign": "center", "touchEnabled": false, "y": 739, "$t": "$eL" }, + "_Label1": { "bottom": 3, "right": 151, "size": 18, "stroke": 2, "text": "多倍经验", "textAlign": "center", "y": 739, "$t": "$eL" }, + "lockName": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 68.5, "size": 18, "stroke": 2, "text": "目标名称", "textAlign": "left", "top": 10, "width": 187, "$t": "$eL" }, + "lockHpLabel": { + "anchorOffsetY": 0, + "height": 15, + "horizontalCenter": 54, + "size": 16, + "stroke": 2, + "text": "3086/5895", + "textAlign": "center", + "top": 41, + "verticalAlign": "justify", + "width": 210, + "$t": "$eL" + }, + "outerGroup": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchEnabled": false, + "$t": "$eG", + "$eleC": [ + "swPKGroup", + "lvBar", + "expBar", + "chatScroller", + "skillShapeGroup", + "skillTipsImage", + "bagMaxImage", + "rightMenuView", + "itemKey0", + "itemKey1", + "itemKey2", + "itemKey3", + "itemKey4", + "_Group3", + "dragImg", + "skillBarCD0", + "skillBarCD1", + "skillBarCD2", + "skillBarCD3", + "skillBarCD4", + "suitBtn", + "saviorBuff", + "buffList", + "_Group4", + "doubleGrp", + "onHookGroup", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3", + "hpTipsGrp", + "mpTipsGrp", + "timerGrp", + "npcTimerGrp", + "duoBaoTimerGrp" + ] + }, + "swPKGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 116, "height": 0, "right": 0, "width": 200, "$t": "$eG" }, + "lvBar": { "bottom": 7, "right": 226, "touchChildren": false, "touchEnabled": false, "value": 100, "width": 108, "$t": "$ePB", "skinName": "PhoneMainSkin$Skin239" }, + "expBar": { "bottom": 6, "right": 37, "touchChildren": false, "touchEnabled": false, "value": 100, "width": 108, "$t": "$ePB", "skinName": "PhoneMainSkin$Skin240" }, + "chatScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 8, "height": 76, "horizontalCenter": 0, "touchEnabled": false, "width": 370, "$t": "$eS", "viewport": "chatGroup" }, + "chatGroup": { "height": 65, "$t": "$eG", "$eleC": ["chatList"] }, + "chatList": { "bottom": 0, "itemRendererSkinName": "PhoneChatItemSkin", "touchChildren": false, "touchEnabled": false, "width": 362, "x": 7, "$t": "$eLs" }, + "skillShapeGroup": { "bottom": 0, "height": 387, "right": 0, "touchChildren": false, "touchEnabled": false, "width": 376, "$t": "$eG" }, + "skillTipsImage": { "bottom": 509, "right": 166, "source": "tips_man5", "$t": "$eI" }, + "bagMaxImage": { "bottom": 565, "right": 29, "source": "tips_man2", "$t": "$eI" }, + "rightMenuView": { "horizontalCenter": -85, "skinName": "RankRightMenuSkin", "top": 60, "$t": "app.RankRightMenuView" }, + "itemKey0": { "bottom": 91, "height": 55, "horizontalCenter": -143.5, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "width": 55, "$t": "$eI" }, + "itemKey1": { "bottom": 91, "height": 55, "horizontalCenter": -72.5, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "width": 55, "$t": "$eI" }, + "itemKey2": { "bottom": 91, "height": 55, "horizontalCenter": -3.5, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "width": 55, "$t": "$eI" }, + "itemKey3": { "bottom": 91, "height": 55, "horizontalCenter": 66.5, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "width": 55, "$t": "$eI" }, + "itemKey4": { "bottom": 91, "height": 55, "horizontalCenter": 135.5, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "width": 55, "$t": "$eI" }, + "_Group3": { + "bottom": 86, + "height": 63, + "horizontalCenter": 0, + "touchChildren": false, + "touchEnabled": false, + "width": 364, + "$t": "$eG", + "$eleC": ["itemKeyLab0", "itemKeyLab1", "itemKeyLab2", "itemKeyLab3", "itemKeyLab4"] + }, + "itemKeyLab0": { "bottom": 5, "right": 298, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 848404, "$t": "$eL" }, + "itemKeyLab1": { "bottom": 5, "right": 228, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 848404, "$t": "$eL" }, + "itemKeyLab2": { "bottom": 5, "right": 158, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 848404, "$t": "$eL" }, + "itemKeyLab3": { "bottom": 5, "right": 89, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 848404, "$t": "$eL" }, + "itemKeyLab4": { "bottom": 5, "right": 20, "scaleX": 1, "scaleY": 1, "size": 16, "text": "", "textColor": 848404, "$t": "$eL" }, + "dragImg": { "height": 55, "width": 55, "x": 496.5, "y": 605, "$t": "$eI" }, + "skillBarCD0": { "bottom": 91, "height": 55, "horizontalCenter": -143, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "touchEnabled": false, "visible": false, "width": 55, "$t": "$eI" }, + "skillBarCD1": { "bottom": 91, "height": 55, "horizontalCenter": -73, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "touchEnabled": false, "visible": false, "width": 55, "$t": "$eI" }, + "skillBarCD2": { "bottom": 91, "height": 55, "horizontalCenter": -4, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "touchEnabled": false, "visible": false, "width": 55, "$t": "$eI" }, + "skillBarCD3": { "bottom": 91, "height": 55, "horizontalCenter": 66, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "touchEnabled": false, "visible": false, "width": 55, "$t": "$eI" }, + "skillBarCD4": { "bottom": 91, "height": 55, "horizontalCenter": 135, "scaleX": 1, "scaleY": 1, "source": "m_daojubg", "touchEnabled": false, "visible": false, "width": 55, "$t": "$eI" }, + "suitBtn": { "bottom": 85, "icon": "main_tuichu", "label": "Button", "left": 25, "skinName": "Btn0Skin", "$t": "$eB" }, + "saviorBuff": { "bottom": 32, "left": 29, "skinName": "ImageBaseSkin", "visible": false, "$t": "app.ImageBase" }, + "buffList": { "bottom": 32, "itemRendererSkinName": "ImageBaseSkin", "left": 29, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "_Group4": { "height": 0, "touchEnabled": false, "verticalCenter": -94, "width": 0, "x": 470, "$t": "$eG", "$eleC": ["buffList1"] }, + "buffList1": { "itemRendererSkinName": "ImageBaseSkin", "touchChildren": false, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 0, "requestedColumnCount": 4, "verticalGap": 0, "$t": "$eTL" }, + "doubleGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bottom": 0, "height": 39, "right": 0, "width": 416, "$t": "$eG" }, + "onHookGroup": { "bottom": 161, "horizontalCenter": 126, "$t": "$eG", "$eleC": ["drugBtn", "pickupBtn", "splitBtn"] }, + "drugBtn": { "height": 53, "label": "", "width": 50, "$t": "$eB", "skinName": "PhoneMainSkin$Skin241" }, + "pickupBtn": { "height": 53, "label": "", "width": 50, "x": 52, "y": 0, "$t": "$eB", "skinName": "PhoneMainSkin$Skin242" }, + "splitBtn": { "height": 53, "label": "", "visible": false, "width": 50, "x": 104, "y": 0, "$t": "$eB", "skinName": "PhoneMainSkin$Skin243" }, + "expDian": { "source": "exp_dian", "x": 1352, "y": 727, "visible": false, "$t": "app.TweenImage" }, + "expDian0": { "source": "exp_dian", "x": 1352, "y": 727, "visible": false, "$t": "app.TweenImage" }, + "expDian1": { "source": "exp_dian", "x": 1352, "y": 727, "visible": false, "$t": "app.TweenImage" }, + "expDian2": { "source": "exp_dian", "x": 1352, "y": 727, "visible": false, "$t": "app.TweenImage" }, + "expDian3": { "source": "exp_dian", "x": 1352, "y": 727, "visible": false, "$t": "app.TweenImage" }, + "hpTipsGrp": { "bottom": 21, "height": 99, "horizontalCenter": -284, "width": 43, "$t": "$eG" }, + "mpTipsGrp": { "bottom": 21, "height": 99, "horizontalCenter": -232, "width": 43, "$t": "$eG" }, + "timerGrp": { "bottom": 429, "height": 32, "left": 0, "touchChildren": false, "touchEnabled": false, "width": 300, "$t": "$eG", "$eleC": ["_Image17", "actTime"] }, + "_Image17": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "actTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "npcTimerGrp": { "bottom": 429, "height": 32, "left": 0, "touchChildren": false, "touchEnabled": false, "width": 300, "$t": "$eG", "$eleC": ["_Image18", "npcTime"] }, + "_Image18": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "npcTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "duoBaoTimerGrp": { + "bottom": 429, + "height": 32, + "left": 0, + "scaleX": 1, + "scaleY": 1, + "touchChildren": false, + "touchEnabled": false, + "width": 300, + "$t": "$eG", + "$eleC": ["_Image19", "duoBaoTime"] + }, + "_Image19": { "height": 31, "right": 4, "scale9Grid": "7,3,209,9", "source": "zjmgonggaobg", "top": 0, "width": 281, "$t": "$eI" }, + "duoBaoTime": { "right": 17, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 2682369, "top": 5, "width": 260, "$t": "$eL" }, + "mcGroup": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["hpScroller", "mpScroller", "playerStateGrp", "addExpGrp", "doubleMcGrp", "stormGroup"] + }, + "hpScroller": { + "bottom": 19, + "height": 107, + "horizontalCenter": -285.5, + "scaleX": 0.95, + "scaleY": 0.95, + "touchChildren": false, + "touchEnabled": false, + "width": 47, + "$t": "$eS", + "viewport": "_Group5" + }, + "_Group5": { "$t": "$eG", "$eleC": ["hpGroup"] }, + "hpGroup": { "bottom": -50, "height": 107, "width": 40, "$t": "$eG" }, + "mpScroller": { + "bottom": 19, + "height": 107, + "horizontalCenter": -233.5, + "scaleX": 0.95, + "scaleY": 0.95, + "touchChildren": false, + "touchEnabled": false, + "width": 47, + "$t": "$eS", + "viewport": "_Group6" + }, + "_Group6": { "$t": "$eG", "$eleC": ["mpGroup"] }, + "mpGroup": { "bottom": -50, "height": 107, "width": 40, "$t": "$eG" }, + "playerStateGrp": { "bottom": 188, "horizontalCenter": -64, "$t": "$eG" }, + "addExpGrp": { "$t": "$eG" }, + "doubleMcGrp": { "bottom": 12, "right": 96, "$t": "$eG" }, + "stormGroup": { "bottom": 114, "height": 1, "right": 101, "width": 1, "$t": "$eG" }, + "pkGroup": { + "bottom": 37, + "height": 170, + "horizontalCenter": -350, + "visible": false, + "width": 131, + "$t": "$eG", + "$eleC": ["_Image20", "pkbg", "pkImage1", "pkImage2", "pkImage3", "pkImage4", "pkImage5"] + }, + "_Image20": { "height": 170, "scale9Grid": "4,4,3,2", "source": "m_ms_bg1", "width": 131, "$t": "$eI" }, + "pkbg": { "height": 34, "scale9Grid": "1,1,2,2", "source": "m_ms_bg2", "width": 127, "x": 3, "y": 3, "$t": "$eI" }, + "pkImage1": { "source": "m_heping", "x": 4, "y": 3, "$t": "$eI" }, + "pkImage2": { "source": "m_zudui", "x": 4, "y": 37, "$t": "$eI" }, + "pkImage3": { "source": "m_hanghui", "x": 4, "y": 69, "$t": "$eI" }, + "pkImage4": { "source": "m_didui", "x": 4, "y": 101, "$t": "$eI" }, + "pkImage5": { "source": "m_quanti", "x": 4, "y": 133, "$t": "$eI" }, + "msgGroup": { "bottom": 189, "left": 8, "touchChildren": false, "touchEnabled": false, "width": 120, "$t": "$eG", "$eleC": ["msg1", "msg2", "msg3"] }, + "msg1": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 2, "$t": "$eL" }, + "msg2": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 22, "$t": "$eL" }, + "msg3": { "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "visible": false, "x": 26, "y": 42, "$t": "$eL" }, + "$sP": [ + "bg1", + "bg2", + "lockIconBg", + "lockNameBg", + "jobImg", + "hpBg", + "hpImage", + "imageGroup", + "switchRoleButton", + "lockIcon", + "modelButton", + "packUpButton", + "rechargeButton", + "bagButton", + "roleButton", + "firstRechargeBtn", + "vipButton", + "pkButton", + "aiButton", + "shopButton", + "layer1", + "layer2", + "donationGuideTipsGrp", + "violentGuideTipsGrp", + "vipGuideTipsGrp", + "secondChargeTipsGrp", + "firstChargeTipsGrp", + "packUpGroup", + "switchImage", + "switchRed", + "switchGrp", + "bottomImage", + "topImage", + "skillButton0", + "skillButton1", + "skillButton2", + "skillButton3", + "skillButton4", + "skillButton5", + "skillButton6", + "skillButton7", + "skillButton8", + "stormButton", + "petAckButton", + "petFollowButton", + "skillGroup", + "layer3", + "layer4", + "layer5", + "layer6", + "layer7", + "buttonGroup", + "newMsgTipsGrp", + "clickGroup", + "bindGoldNum", + "yuanbaoNum", + "labelTime", + "levelLab", + "lockName", + "lockHpLabel", + "labelGroup", + "swPKGroup", + "lvBar", + "expBar", + "chatList", + "chatGroup", + "chatScroller", + "skillShapeGroup", + "skillTipsImage", + "bagMaxImage", + "rightMenuView", + "itemKey0", + "itemKey1", + "itemKey2", + "itemKey3", + "itemKey4", + "itemKeyLab0", + "itemKeyLab1", + "itemKeyLab2", + "itemKeyLab3", + "itemKeyLab4", + "dragImg", + "skillBarCD0", + "skillBarCD1", + "skillBarCD2", + "skillBarCD3", + "skillBarCD4", + "suitBtn", + "saviorBuff", + "buffList", + "buffList1", + "doubleGrp", + "drugBtn", + "pickupBtn", + "splitBtn", + "onHookGroup", + "expDian", + "expDian0", + "expDian1", + "expDian2", + "expDian3", + "hpTipsGrp", + "mpTipsGrp", + "actTime", + "timerGrp", + "npcTime", + "npcTimerGrp", + "duoBaoTime", + "duoBaoTimerGrp", + "outerGroup", + "hpGroup", + "hpScroller", + "mpGroup", + "mpScroller", + "playerStateGrp", + "addExpGrp", + "doubleMcGrp", + "stormGroup", + "mcGroup", + "pkbg", + "pkImage1", + "pkImage2", + "pkImage3", + "pkImage4", + "pkImage5", + "pkGroup", + "msg1", + "msg2", + "msg3", + "msgGroup" + ], + "$sC": "$eSk" + }, + "PhoneMainSkin$Skin237": { + "$bs": { "$eleC": ["_Image1", "iconDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "mp_map_bg2", "percentWidth": 100, "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { "up": {} }, + "$sC": "$eSk" + }, + "PhoneMainSkin$Skin238": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_czcz", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneMainSkin$Skin239": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "source": "m_exp", "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "PhoneMainSkin$Skin240": { "$bs": { "$eleC": ["thumb"] }, "thumb": { "source": "m_exps", "$t": "$eI" }, "$sP": ["thumb"], "$sC": "$eSk" }, + "PhoneMainSkin$Skin241": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "gjbtn_hy", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "PhoneMainSkin$Skin242": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_sq", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "PhoneMainSkin$Skin243": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "gjbtn_fj", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "PhoneTaskLinkItemSkin": { + "$path": "resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml", + "$bs": { "height": 40, "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_btn_bg2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "点击按钮", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "PhoneTaskLinkSkin": { + "$path": "resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml", + "$bs": { "$eleC": ["_Image1", "_Group1"] }, + "_Image1": { "source": "m_btn_bg3", "$t": "$eI" }, + "_Group1": { "bottom": 0, "top": 32, "$t": "$eG", "$eleC": ["_Image2", "taskList"] }, + "_Image2": { "bottom": 0, "scale9Grid": "1,1,6,6", "source": "m_btn_bg1", "top": 0, "width": 240, "$t": "$eI" }, + "taskList": { "itemRendererSkinName": "PhoneTaskLinkItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": 10, "horizontalAlign": "center", "paddingBottom": 5, "paddingTop": 5, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "$t": "Object" }, + "_Object3": { "$t": "Object" }, + "$sP": ["taskList"], + "$sC": "$eSk" + }, + "PhoneTaskSkin": { + "$path": "resource/eui_skins/web/phone/PhoneTaskSkin.exml", + "$bs": { "height": 236, "maxHeight": 233, "width": 296, "$eleC": ["shrinkBtn", "unfoldBtn", "teamBtn", "taskRect", "teamRect", "bgImg", "unfoldGrp", "effGrp", "teamGrp", "linkView"] }, + "shrinkBtn": { "height": 109, "icon": "m_task_bg1", "label": "", "skinName": "Btn0Skin", "width": 48, "x": -1, "y": -5, "$t": "$eB" }, + "unfoldBtn": { "height": 50, "icon": "m_task_bg3", "label": "", "left": -1, "scaleX": 1, "skinName": "Btn0Skin", "verticalCenter": 0, "width": 50, "$t": "$eB" }, + "teamBtn": { "height": 104, "icon": "m_task_bg2", "label": "Button", "skinName": "Btn0Skin", "width": 48, "x": -1, "y": 132, "$t": "$eB" }, + "taskRect": { "source": "m_task_bgh", "touchEnabled": false, "x": -1.5, "y": -7, "$t": "$eI" }, + "teamRect": { "scaleY": -1, "source": "m_task_bgh", "touchEnabled": false, "visible": false, "x": -1.5, "y": 244.5, "$t": "$eI" }, + "bgImg": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 233.5, "scale9Grid": "11,9,1,1", "source": "m_task_k", "width": 253, "x": 49, "y": 0.5, "$t": "$eI" }, + "unfoldGrp": { "x": 54, "y": 7, "$t": "$eG", "$eleC": ["taskScroller"] }, + "taskScroller": { "height": 220, "maxHeight": 210, "scrollPolicyH": "off", "width": 242, "$t": "$eS", "viewport": "taskList" }, + "taskList": { "itemRendererSkinName": "MainTaskItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "paddingLeft": 1, "$t": "$eVL" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 188, "y": 29, "$t": "$eG" }, + "teamGrp": { "height": 221, "visible": false, "width": 245, "x": 53.5, "y": 9, "$t": "$eG", "$eleC": ["_Scroller1", "slidingImg", "btnGrp", "btnGrp1"] }, + "_Scroller1": { "height": 202, "width": 233, "x": 4.5, "y": 3.5, "$t": "$eS", "viewport": "teamList" }, + "teamList": { "itemRendererSkinName": "TeamMainItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 2.2, "$t": "$eVL" }, + "slidingImg": { "horizontalCenter": 0, "source": "m_task_jiantou", "y": 207.8, "$t": "$eI" }, + "btnGrp": { "touchEnabled": false, "x": 2, "y": 185, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["inviteTeamBtn", "invitePlayerBtn"] }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "inviteTeamBtn": { "height": 34, "label": "邀请组队", "width": 121, "x": 55, "y": 72, "$t": "$eB", "skinName": "PhoneTaskSkin$Skin244" }, + "invitePlayerBtn": { "height": 34, "label": "附近玩家", "width": 121, "x": 65, "y": 82, "$t": "$eB", "skinName": "PhoneTaskSkin$Skin245" }, + "btnGrp1": { "touchEnabled": false, "x": 60, "y": 31.65, "$t": "$eG", "layout": "_VerticalLayout3", "$eleC": ["inviteTeamBtn1", "invitePlayerBtn1", "isTeam"] }, + "_VerticalLayout3": { "gap": 22, "horizontalAlign": "left", "$t": "$eVL" }, + "inviteTeamBtn1": { "height": 44, "label": "邀请组队", "width": 129, "x": 55, "y": 72, "$t": "$eB", "skinName": "PhoneTaskSkin$Skin246" }, + "invitePlayerBtn1": { "height": 44, "label": "附近队伍", "width": 129, "x": 65, "y": 82, "$t": "$eB", "skinName": "PhoneTaskSkin$Skin247" }, + "isTeam": { "name": "openSound", "scaleX": 1, "scaleY": 1, "skinName": "SetUpCheckBox", "x": 0, "y": 107, "$t": "app.SetUpCheckBoxEui" }, + "linkView": { "skinName": "PhoneTaskLinkSkin", "x": 305, "$t": "app.MainTaskLinkWin" }, + "$sP": [ + "shrinkBtn", + "unfoldBtn", + "teamBtn", + "taskRect", + "teamRect", + "bgImg", + "taskList", + "taskScroller", + "unfoldGrp", + "effGrp", + "teamList", + "slidingImg", + "inviteTeamBtn", + "invitePlayerBtn", + "btnGrp", + "inviteTeamBtn1", + "invitePlayerBtn1", + "isTeam", + "btnGrp1", + "teamGrp", + "linkView" + ], + "$sC": "$eSk" + }, + "PhoneTaskSkin$Skin244": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn" }] } + }, + "$sC": "$eSk" + }, + "PhoneTaskSkin$Skin245": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn" }] } + }, + "$sC": "$eSk" + }, + "PhoneTaskSkin$Skin246": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn3" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn3" }] } + }, + "$sC": "$eSk" + }, + "PhoneTaskSkin$Skin247": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn3" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn3" }] } + }, + "$sC": "$eSk" + }, + "PhoneTestSkin": { + "$path": "resource/eui_skins/web/phone/PhoneTestSkin.exml", + "$bs": { "height": 750, "width": 1334, "$eleC": ["_Image1", "_Rect1", "input", "signInButton"] }, + "_Image1": { "horizontalCenter": 0, "source": "mp_xfjm_png", "verticalCenter": 0, "$t": "$eI" }, + "_Rect1": { "fillColor": 884627, "height": 30, "horizontalCenter": 0, "width": 300, "y": 252, "$t": "$eR" }, + "input": { "backgroundColor": 16777215, "height": 30, "horizontalCenter": "0", "maxChars": 10, "text": "", "width": 300, "y": 252, "$t": "$eET" }, + "signInButton": { "anchorOffsetX": 0, "height": 50, "horizontalCenter": 0, "label": "登 录", "width": 124, "y": 300, "$t": "$eB", "skinName": "PhoneTestSkin$Skin248" }, + "$sP": ["input", "signInButton"], + "$sC": "$eSk" + }, + "PhoneTestSkin$Skin248": { + "$bs": { "$eleC": ["_Rect1", "_Image1", "labelDisplay"] }, + "_Rect1": { "fillColor": 884627, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Image1": { "percentHeight": 100, "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": {}, "disabled": {} }, + "$sC": "$eSk" + }, + "Rocker2Skin": { + "$path": "resource/eui_skins/web/phone/Rocker2Skin.exml", + "$bs": { "height": 369, "width": 369, "$eleC": ["clickGroup", "rockerGroup", "rockerGroup1"] }, + "clickGroup": { "bottom": 0, "left": 0, "right": 0, "top": 0, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Rect1"] }, + "_Rect1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eR" }, + "rockerGroup": { "bottom": 264, "height": 1, "left": 256, "width": 1, "$t": "$eG", "$eleC": ["rockerBg", "angleGroup", "actionGroup"] }, + "rockerBg": { "anchorOffsetX": 90, "anchorOffsetY": 90, "height": 180, "source": "m_twoyg1", "width": 180, "$t": "$eI" }, + "angleGroup": { "height": 0, "visible": false, "width": 92, "x": 1, "y": -2, "$t": "$eG", "$eleC": ["angleImg"] }, + "angleImg": { "right": -20, "rotation": 46, "source": "m_yg3", "touchEnabled": false, "y": -22, "$t": "$eI" }, + "actionGroup": { "anchorOffsetX": 34, "anchorOffsetY": 34, "scaleX": 1.3, "scaleY": 1.3, "touchChildren": false, "touchEnabled": true, "$t": "$eG", "$eleC": ["_Image1", "actionImg"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_twoyg2", "verticalCenter": 0, "$t": "$eI" }, + "actionImg": { "horizontalCenter": 0, "source": "m_twoyg5", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "rockerGroup1": { "bottom": 119, "height": 1, "left": 113, "width": 1, "$t": "$eG", "$eleC": ["rockerBg1", "angleGroup1", "actionGroup1"] }, + "rockerBg1": { "anchorOffsetX": 69, "anchorOffsetY": 69, "source": "m_twoyg1", "$t": "$eI" }, + "angleGroup1": { "height": 0, "visible": false, "width": 72, "x": 1, "y": -2, "$t": "$eG", "$eleC": ["angleImg1"] }, + "angleImg1": { "right": -20, "rotation": 46, "source": "m_yg3", "touchEnabled": false, "y": -22, "$t": "$eI" }, + "actionGroup1": { "anchorOffsetX": 34, "anchorOffsetY": 34, "touchChildren": false, "touchEnabled": true, "visible": false, "x": 1, "y": -2, "$t": "$eG", "$eleC": ["_Image2", "actionImg1"] }, + "_Image2": { "horizontalCenter": 0, "source": "m_twoyg2", "verticalCenter": 0, "$t": "$eI" }, + "actionImg1": { "horizontalCenter": 0, "source": "m_twoyg4", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["clickGroup", "rockerBg", "angleImg", "angleGroup", "actionImg", "actionGroup", "rockerGroup", "rockerBg1", "angleImg1", "angleGroup1", "actionImg1", "actionGroup1", "rockerGroup1"], + "$sC": "$eSk" + }, + "RockerSkin": { + "$path": "resource/eui_skins/web/phone/RockerSkin.exml", + "$bs": { "height": 380, "width": 400, "$eleC": ["clickGroup", "rockerGroup"] }, + "clickGroup": { "bottom": 0, "left": 0, "right": 0, "top": 0, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Rect1"] }, + "_Rect1": { "bottom": 0, "left": 0, "right": 0, "top": 0, "visible": false, "$t": "$eR" }, + "rockerGroup": { "height": 1, "width": 1, "x": 233, "y": 147, "$t": "$eG", "$eleC": ["rockerBg", "angleGroup", "actionGroup"] }, + "rockerBg": { "anchorOffsetX": 123, "anchorOffsetY": 123, "height": 246, "source": "m_yg1", "width": 246, "$t": "$eI" }, + "angleGroup": { "height": 0, "scaleX": 1.5, "scaleY": 1.5, "visible": false, "width": 72, "x": 1, "y": -2, "$t": "$eG", "$eleC": ["angleImg"] }, + "angleImg": { "right": -20, "rotation": 46, "source": "m_yg3", "touchEnabled": false, "y": -22, "$t": "$eI" }, + "actionGroup": { + "anchorOffsetX": 34, + "anchorOffsetY": 34, + "scaleX": 1.5, + "scaleY": 1.5, + "touchChildren": false, + "touchEnabled": true, + "visible": false, + "x": 1, + "y": -2, + "$t": "$eG", + "$eleC": ["_Image1", "actionImg"] + }, + "_Image1": { "horizontalCenter": 0, "source": "m_yg2", "verticalCenter": 0, "$t": "$eI" }, + "actionImg": { "horizontalCenter": 0, "source": "m_yg4", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["clickGroup", "rockerBg", "angleImg", "angleGroup", "actionImg", "actionGroup", "rockerGroup"], + "$sC": "$eSk" + }, + "IsAgreeTransPanel": { + "$path": "resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml", + "$bs": { "height": 301, "width": 426, "$eleC": ["dragDropUI", "tradingLab", "sureBtn", "closeBtn"] }, + "dragDropUI": { "horizontalCenter": 0, "skinName": "ViewBgWin6Skin", "verticalCenter": 0, "$t": "app.UIViewFrame" }, + "tradingLab": { "bottom": 104, "height": 121, "horizontalCenter": -2, "size": 21, "text": "", "textAlign": "center", "textColor": 14663070, "verticalAlign": "middle", "width": 310, "$t": "$eL" }, + "sureBtn": { "bottom": 18, "height": 44, "horizontalCenter": -89.5, "label": "确 定", "width": 109, "$t": "$eB", "skinName": "IsAgreeTransPanel$Skin249" }, + "closeBtn": { "bottom": 18, "height": 44, "horizontalCenter": 98.5, "label": "取 消", "width": 109, "$t": "$eB", "skinName": "IsAgreeTransPanel$Skin250" }, + "$sP": ["dragDropUI", "tradingLab", "sureBtn", "closeBtn"], + "$sC": "$eSk" + }, + "IsAgreeTransPanel$Skin249": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "IsAgreeTransPanel$Skin250": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "PrivateDealsWinSkin": { + "$path": "resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml", + "$bs": { "height": 581, "width": 431, "$eleC": ["dragDropUI", "title", "_Group1", "ruleTips", "_Group2", "closeBtn"] }, + "dragDropUI": { "height": 579, "scale9Grid": "0,56,429,390", "source": "task_k1_png", "$t": "$eI" }, + "title": { "horizontalCenter": -2.5, "size": 24, "stroke": 2, "text": "私人交易", "textColor": 16710342, "touchEnabled": false, "y": 17, "$t": "$eL" }, + "_Group1": { + "bottom": 292, + "horizontalCenter": 1, + "$t": "$eG", + "$eleC": ["_Image1", "_Image2", "otherItem0", "otherItem1", "otherItem2", "otherItem3", "otherItem4", "otherWing", "otherGold", "otherLockBtn", "search", "playerName", "otherIsLock"] + }, + "_Image1": { "height": 232, "scale9Grid": "14,15,2,2", "source": "mail_bg", "width": 380, "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "height": 39, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 350.2, "x": 15, "y": 6, "$t": "$eI" }, + "otherItem0": { "skinName": "ItemBaseSkin", "x": 17.5, "y": 57, "$t": "app.ItemBase" }, + "otherItem1": { "skinName": "ItemBaseSkin", "x": 88.5, "y": 57, "$t": "app.ItemBase" }, + "otherItem2": { "skinName": "ItemBaseSkin", "x": 160.5, "y": 57, "$t": "app.ItemBase" }, + "otherItem3": { "skinName": "ItemBaseSkin", "x": 230.5, "y": 57, "$t": "app.ItemBase" }, + "otherItem4": { "skinName": "ItemBaseSkin", "x": 301.5, "y": 57, "$t": "app.ItemBase" }, + "otherWing": { "height": 30, "skinName": "moneyPanelSkin", "width": 170, "x": 9, "y": 132, "$t": "app.moneyPanel" }, + "otherGold": { "height": 30, "skinName": "moneyPanelSkin", "width": 170, "x": 201, "y": 132.34, "$t": "app.moneyPanel" }, + "otherLockBtn": { "label": "未锁定", "skinName": "Btn9Skin", "touchEnabled": false, "x": 136.5, "y": 182, "$t": "$eB" }, + "search": { "height": 44, "width": 44, "x": 320, "y": 4, "$t": "$eG", "$eleC": ["_Image3"] }, + "_Image3": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "source": "trade_chakan", "verticalCenter": 0, "$t": "$eI" }, + "playerName": { "bottom": 198, "horizontalCenter": -9, "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "otherIsLock": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "40,40,4,5", "source": "trade_mengban", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "ruleTips": { "label": "Button", "x": 48.01, "y": 244.33, "$t": "app.RuleTipsButton" }, + "_Group2": { + "anchorOffsetX": 0, + "bottom": 41, + "horizontalCenter": 0.5, + "width": 379.5, + "$t": "$eG", + "$eleC": ["_Image4", "_Image5", "myItem0", "myItem1", "myItem2", "myItem3", "myItem4", "myWing", "myGold", "wingInput", "goldInput", "myName", "myIsLock", "myLock", "trading"] + }, + "_Image4": { "height": 232, "scale9Grid": "14,15,1,2", "source": "mail_bg", "width": 380, "x": 0, "y": 0, "$t": "$eI" }, + "_Image5": { "height": 39, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 350, "x": 16, "y": 7, "$t": "$eI" }, + "myItem0": { "skinName": "ItemBaseSkin", "x": 18.5, "y": 56, "$t": "app.ItemBase" }, + "myItem1": { "skinName": "ItemBaseSkin", "x": 89.5, "y": 56, "$t": "app.ItemBase" }, + "myItem2": { "skinName": "ItemBaseSkin", "x": 161.5, "y": 56, "$t": "app.ItemBase" }, + "myItem3": { "skinName": "ItemBaseSkin", "x": 231.5, "y": 56, "$t": "app.ItemBase" }, + "myItem4": { "skinName": "ItemBaseSkin", "x": 302.5, "y": 56, "$t": "app.ItemBase" }, + "myWing": { "anchorOffsetX": 0, "height": 30, "skinName": "moneyPanelSkin", "width": 170, "x": 11.5, "y": 133, "$t": "app.moneyPanel" }, + "myGold": { "height": 30, "skinName": "moneyPanelSkin", "width": 170, "x": 203.5, "y": 133, "$t": "app.moneyPanel" }, + "wingInput": { "height": 36, "restrict": "0-9", "size": 20, "text": "0", "textAlign": "center", "verticalAlign": "middle", "width": 114, "x": 64.01, "y": 130, "$t": "$eET" }, + "goldInput": { "height": 36, "restrict": "0-9", "size": 20, "text": "0", "textAlign": "center", "verticalAlign": "middle", "width": 114, "x": 258, "y": 130, "$t": "$eET" }, + "myName": { "bottom": 197, "horizontalCenter": 0.25, "size": 18, "stroke": 2, "text": "我的事还", "textColor": 15064527, "$t": "$eL" }, + "myIsLock": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "43,39,2,3", "source": "trade_mengban", "top": 0, "$t": "$eI" }, + "myLock": { "horizontalCenter": 0, "label": "锁 定", "skinName": "Btn9Skin", "y": 182, "$t": "$eB" }, + "trading": { "horizontalCenter": 0, "label": "交 易", "skinName": "Btn9Skin", "visible": false, "y": 182, "$t": "$eB" }, + "closeBtn": { "label": "", "width": 60, "x": 406.67, "y": -7, "$t": "$eB", "skinName": "PrivateDealsWinSkin$Skin251" }, + "$sP": [ + "dragDropUI", + "title", + "otherItem0", + "otherItem1", + "otherItem2", + "otherItem3", + "otherItem4", + "otherWing", + "otherGold", + "otherLockBtn", + "search", + "playerName", + "otherIsLock", + "ruleTips", + "myItem0", + "myItem1", + "myItem2", + "myItem3", + "myItem4", + "myWing", + "myGold", + "wingInput", + "goldInput", + "myName", + "myIsLock", + "myLock", + "trading", + "closeBtn" + ], + "$sC": "$eSk" + }, + "PrivateDealsWinSkin$Skin251": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "RankBtnItemSkin": { + "$path": "resource/eui_skins/web/rank/RankBtnItemSkin.exml", + "$bs": { "$eleC": ["_Image1", "_Image2", "label"] }, + "_Image1": { "horizontalCenter": 0, "source": "rank_tab2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "rank_tab1", "verticalCenter": 0, "$t": "$eI" }, + "label": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "基 础", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["label"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "label", "name": "textColor", "value": 8420211 } + ] + }, + "down": { "$ssP": [{ "target": "label", "name": "textColor", "value": 15779990 }] } + }, + "$sC": "$eSk" + }, + "RankListItemSkin": { + "$path": "resource/eui_skins/web/rank/RankListItemSkin.exml", + "$bs": { "height": 45, "width": 524, "$eleC": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild", "logo", "imgTitle", "imgVip"] }, + "bg": { "anchorOffsetX": 0, "height": 45, "scale9Grid": "251,19,57,15", "smoothing": false, "source": "rank_bg2", "width": 524, "x": 0, "y": -1, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "scale9Grid": "22,29,2,2", "source": "liebiaoxuanzhong", "width": 524, "x": 0, "y": -2, "$t": "$eI" }, + "txt_rank": { "size": 18, "stroke": 2, "text": "1", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "width": 50, "x": 6, "y": 14, "$t": "$eL" }, + "rankImg": { "source": "rank_pm1", "x": 15, "y": 5, "$t": "$eI" }, + "txt_name": { "left": 71, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "y": 14, "$t": "$eL" }, + "txt_level": { "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "x": 213, "y": 14, "$t": "$eL" }, + "txt_guild": { "left": 361, "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "y": 14, "$t": "$eL" }, + "logo": { "source": "logo_chaowan", "visible": false, "x": 173, "y": 4, "$t": "$eI" }, + "imgTitle": { "source": "rank_ch1", "verticalCenter": -0.5, "x": 464, "$t": "$eI" }, + "imgVip": { "source": "rank_ck", "verticalCenter": -0.5, "x": 464, "$t": "$eI" }, + "$sP": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild", "logo", "imgTitle", "imgVip"], + "$sC": "$eSk" + }, + "RankQQListItemSkin": { + "$path": "resource/eui_skins/web/rank/RankQQListItemSkin.exml", + "$bs": { "height": 45, "width": 524, "$eleC": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild", "logo", "isBlueYear", "imgTitle", "imgVip"] }, + "bg": { "anchorOffsetX": 0, "height": 45, "scale9Grid": "251,19,57,15", "smoothing": false, "source": "rank_bg2", "width": 524, "x": 0, "y": -1, "$t": "$eI" }, + "select": { "anchorOffsetX": 0, "scale9Grid": "22,29,2,2", "source": "liebiaoxuanzhong", "width": 524, "x": 0, "y": -2, "$t": "$eI" }, + "txt_rank": { "size": 18, "stroke": 2, "text": "1", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "width": 50, "x": 6, "y": 14, "$t": "$eL" }, + "rankImg": { "source": "rank_pm1", "x": 15, "y": 5, "$t": "$eI" }, + "txt_name": { "left": 111, "size": 18, "stroke": 2, "text": "这周日你有空吗", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "y": 14, "$t": "$eL" }, + "txt_level": { "size": 18, "stroke": 2, "text": "7转140", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "x": 249.7, "y": 14, "$t": "$eL" }, + "txt_guild": { "left": 361, "size": 18, "stroke": 2, "text": "青青河边草", "textAlign": "center", "textColor": 15064527, "verticalAlign": "justify", "y": 14, "$t": "$eL" }, + "logo": { "source": "lz_hh1", "visible": false, "x": 48.46, "y": 5.34, "$t": "$eI" }, + "isBlueYear": { "source": "lz_nf", "visible": false, "x": 79.96, "y": 9.34, "$t": "$eI" }, + "imgTitle": { "source": "rank_ch1", "verticalCenter": -0.5, "x": 464, "$t": "$eI" }, + "imgVip": { "source": "rank_ck", "verticalCenter": -0.5, "x": 464, "$t": "$eI" }, + "$sP": ["bg", "select", "txt_rank", "rankImg", "txt_name", "txt_level", "txt_guild", "logo", "isBlueYear", "imgTitle", "imgVip"], + "$sC": "$eSk" + }, + "RankTipsSkin": { + "$path": "resource/eui_skins/web/rank/RankTipsSkin.exml", + "$bs": { "height": 285, "width": 229, "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "titleImg", "descLab"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "13,89,2,0", "source": "bag_piliangbg_5", "top": 0, "$t": "$eI" }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "8,8,12,12", "source": "9s_tipsk", "top": 0, "$t": "$eI" }, + "_Image4": { "horizontalCenter": 2, "source": "bag_fengexian", "verticalCenter": -47.5, "width": 209, "$t": "$eI" }, + "titleImg": { "horizontalCenter": 0, "scaleX": 1.3, "scaleY": 1.3, "source": "ch_show_0010", "top": 17, "$t": "$eI" }, + "descLab": { "size": 20, "stroke": 2, "text": "[属性加成]", "textColor": 15064527, "x": 24.4, "y": 108, "$t": "$eL" }, + "$sP": ["titleImg", "descLab"], + "$sC": "$eSk" + }, + "RankViewSkin": { + "$path": "resource/eui_skins/web/rank/RankViewSkin.exml", + "$bs": { "$eleC": ["_Group3", "btn_operation"] }, + "_Group3": { + "height": 693, + "width": 1189, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["dragDropUI", "closeBtn", "tabBar", "_Group1", "modelGroup", "btn_list", "rank_list", "_Group2", "_RuleTipsButton1"] + }, + "dragDropUI": { "source": "rank_bg_png", "$t": "$eI" }, + "closeBtn": { "height": 60, "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 997, "y": 36, "$t": "$eB", "skinName": "RankViewSkin$Skin252" }, + "tabBar": { "bottom": 570, "horizontalCenter": 455, "itemRendererSkinName": "CommonTarBtnItemSkin1", "top": 46, "visible": false, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 49.67, + "visible": false, + "width": 706.67, + "x": 181.66, + "y": 56.99, + "$t": "$eG", + "$eleC": ["_Image1", "_Image2", "_Image3", "_Label1", "_Label2", "valueStr"] + }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 44, "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "common_liebiaoding_bg", "width": 702, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "common_json.common_liebiaoding_fenge", "x": 206.67, "y": 5, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "common_json.common_liebiaoding_fenge", "x": 501, "y": 4, "$t": "$eI" }, + "_Label1": { "size": 22, "stroke": 1, "text": "排名", "textColor": 15779990, "x": 83, "y": 12, "$t": "$eL" }, + "_Label2": { "size": 22, "stroke": 1, "text": "角色名", "textColor": 15779990, "x": 320, "y": 12, "$t": "$eL" }, + "valueStr": { "size": 22, "stroke": 1, "text": "等级", "textColor": 15779990, "x": 597, "y": 12, "$t": "$eL" }, + "modelGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "bottom": 108, + "height": 525, + "right": 265, + "scaleX": 1.2, + "scaleY": 1.2, + "touchChildren": false, + "touchEnabled": false, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image4", "_Image5", "_Image6", "_Image7"] + }, + "_Image4": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image5": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image6": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image7": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "btn_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 554, "width": 122, "x": -109.21, "y": 113.7, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "height": 554, "name": "scroller", "width": 122, "$t": "$eS" }, + "_List1": { "itemRendererSkinName": "RankBtnItemSkin", "name": "list", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 3, "$t": "$eVL" }, + "rank_list": { "height": 458, "width": 524, "x": 85, "y": 113.66, "$t": "$eG", "$eleC": ["_Scroller2", "_List2", "menu_group"] }, + "_Scroller2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 460, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 524, "x": 0, "y": 0, "$t": "$eS" }, + "_List2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "RankListItemSkin", "name": "list", "scaleX": 1, "scaleY": 1, "y": 2, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 0, "$t": "$eVL" }, + "menu_group": { "x": 0, "y": 0, "$t": "$eG" }, + "_Group2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 90.33, + "width": 572.33, + "x": 49.06, + "y": 576.34, + "$t": "$eG", + "$eleC": ["btn_home", "btn_pre", "btn_next", "rank_desc", "rank_guild", "rank_no", "pageLab"] + }, + "btn_home": { "label": "首页", "skinName": "Btn9Skin", "visible": false, "x": 352, "y": 7, "$t": "$eB" }, + "btn_pre": { "height": 25, "label": "", "width": 55, "x": 212.36, "y": 9.68, "$t": "$eB", "skinName": "RankViewSkin$Skin253" }, + "btn_next": { "height": 25, "label": "", "scaleX": -1, "width": 55, "x": 415, "y": 11, "$t": "$eB", "skinName": "RankViewSkin$Skin254" }, + "rank_desc": { "size": 20, "stroke": 2, "text": "我的排名:未上榜", "textColor": 15064527, "x": 59, "y": 58, "$t": "$eL" }, + "rank_guild": { "size": 20, "stroke": 2, "text": "所属行会:金近十三少保", "textColor": 15064527, "x": 309, "y": 58, "$t": "$eL" }, + "rank_no": { "size": 22, "stroke": 2, "text": "暂时没有排名", "textColor": 15064527, "x": 255, "y": -255, "$t": "$eL" }, + "pageLab": { "horizontalCenter": 27.83499999999998, "size": 20, "text": "1/3", "verticalCenter": -22.165, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "19", "x": 55, "y": 626, "$t": "app.RuleTipsButton" }, + "btn_operation": { "height": 44, "label": "查 看", "width": 109, "x": 731.66, "y": 566.99, "$t": "$eB", "skinName": "RankViewSkin$Skin255" }, + "$sP": [ + "dragDropUI", + "closeBtn", + "tabBar", + "valueStr", + "modelGroup", + "btn_list", + "menu_group", + "rank_list", + "btn_home", + "btn_pre", + "btn_next", + "rank_desc", + "rank_guild", + "rank_no", + "pageLab", + "btn_operation" + ], + "$sC": "$eSk" + }, + "RankViewSkin$Skin252": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "RankViewSkin$Skin253": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "growway_jt" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "growway_jt" }] } + }, + "$sC": "$eSk" + }, + "RankViewSkin$Skin254": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "growway_jt", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "growway_jt" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "growway_jt" }] } + }, + "$sC": "$eSk" + }, + "RankViewSkin$Skin255": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "Recharge4366Skin": { + "$path": "resource/eui_skins/web/recharge/Recharge4366Skin.exml", + "$bs": { "height": 573, "width": 458, "$eleC": ["dragDropUI", "closeBtn", "img", "linkLabel"] }, + "dragDropUI": { "source": "saomachongzhi2_png", "$t": "$eI" }, + "closeBtn": { "source": "fuli4366_json.btn_smczx", "x": 412, "y": 11, "$t": "$eI" }, + "img": { "height": 174, "width": 174, "x": 142, "y": 337, "$t": "$eI" }, + "linkLabel": { "size": 20, "text": "前往官网充值", "textColor": 2682369, "x": 321, "y": 528, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "img", "linkLabel"], + "$sC": "$eSk" + }, + "RechargeF1Skin": { + "$path": "resource/eui_skins/web/recharge/RechargeF1Skin.exml", + "$bs": { "height": 696, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "_Scroller1", "closeBtn"] }, + "dragDropUI": { "height": 696, "source": "apay_bg2_png", "width": 1027, "x": 0, "y": -1, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_cz", "touchEnabled": false, "y": 55, "$t": "$eI" }, + "_Scroller1": { "height": 540, "scrollPolicyH": "off", "width": 865, "x": 81, "y": 118, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 205.33, "width": 204, "$t": "$eG", "$eleC": ["grp1", "grp2", "grp3", "grp4", "grp5", "grp6", "grp7", "grp8", "grp9", "grp10"] }, + "grp1": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 3, "y": 3.0300000000000153, "$t": "$eG", "$eleC": ["_Image2", "lab1", "icon1", "buyButton1"] }, + "_Image2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab1": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 150, "$t": "$eL" }, + "icon1": { "horizontalCenter": 0, "source": "cz_icon1", "touchEnabled": false, "y": 93, "$t": "$eI" }, + "buyButton1": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp2": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 218.02, "y": 3.0300000000000153, "$t": "$eG", "$eleC": ["_Image3", "lab2", "icon2", "buyButton2"] }, + "_Image3": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab2": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon2": { "horizontalCenter": 0, "source": "cz_icon2", "touchEnabled": false, "y": 86, "$t": "$eI" }, + "buyButton2": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp3": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 433.02, "y": 3.0300000000000153, "$t": "$eG", "$eleC": ["_Image4", "lab3", "icon3", "buyButton3"] }, + "_Image4": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab3": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon3": { "horizontalCenter": 0, "source": "cz_icon3", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton3": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp4": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 648.02, "y": 3.0300000000000153, "$t": "$eG", "$eleC": ["_Image5", "lab4", "icon4", "buyButton4"] }, + "_Image5": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab4": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon4": { "horizontalCenter": 0, "source": "cz_icon4", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton4": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp5": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 3, "y": 271.03000000000003, "$t": "$eG", "$eleC": ["_Image6", "lab5", "icon5", "buyButton5"] }, + "_Image6": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab5": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon5": { "horizontalCenter": 0, "source": "cz_icon5", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton5": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp6": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 218.02, "y": 271.03000000000003, "$t": "$eG", "$eleC": ["_Image7", "lab6", "icon6", "buyButton6"] }, + "_Image7": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab6": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon6": { "horizontalCenter": 0, "source": "cz_icon6", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton6": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp7": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 433.02, "y": 271.03000000000003, "$t": "$eG", "$eleC": ["_Image8", "lab7", "icon7", "buyButton7"] }, + "_Image8": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab7": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon7": { "horizontalCenter": 0, "source": "cz_icon7", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton7": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp8": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 648.02, "y": 271.03000000000003, "$t": "$eG", "$eleC": ["_Image9", "lab8", "icon8", "buyButton8"] }, + "_Image9": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab8": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon8": { "horizontalCenter": 0, "source": "cz_icon8", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton8": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp9": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 3, "y": 539, "$t": "$eG", "$eleC": ["_Image10", "lab9", "icon9", "buyButton9"] }, + "_Image10": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab9": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon9": { "horizontalCenter": 0, "source": "cz_icon8", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton9": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "grp10": { "height": 266, "scaleX": 1, "scaleY": 1, "visible": false, "width": 213, "x": 218, "y": 539, "$t": "$eG", "$eleC": ["_Image11", "lab10", "icon10", "buyButton10"] }, + "_Image11": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 266, + "scale9Grid": "11,12,24,20", + "scaleX": 1, + "scaleY": 1, + "source": "cz_bg1", + "touchEnabled": false, + "width": 213, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "lab10": { "horizontalCenter": 0, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "top": 25, "width": 160, "$t": "$eL" }, + "icon10": { "horizontalCenter": 0, "source": "cz_icon8", "touchEnabled": false, "verticalCenter": 0, "$t": "$eI" }, + "buyButton10": { "bottom": 22, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "RechargeF1Skin$Skin256" }, + "$sP": [ + "dragDropUI", + "lab1", + "icon1", + "buyButton1", + "grp1", + "lab2", + "icon2", + "buyButton2", + "grp2", + "lab3", + "icon3", + "buyButton3", + "grp3", + "lab4", + "icon4", + "buyButton4", + "grp4", + "lab5", + "icon5", + "buyButton5", + "grp5", + "lab6", + "icon6", + "buyButton6", + "grp6", + "lab7", + "icon7", + "buyButton7", + "grp7", + "lab8", + "icon8", + "buyButton8", + "grp8", + "lab9", + "icon9", + "buyButton9", + "grp9", + "lab10", + "icon10", + "buyButton10", + "grp10", + "closeBtn" + ], + "$sC": "$eSk" + }, + "RechargeF1Skin$Skin256": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "RechargeGameCatItemSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml", + "$bs": { "height": 228, "$eleC": ["_Image1", "icon", "buyButton", "lab", "rebateImg"] }, + "_Image1": { "height": 228, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "$t": "$eI" }, + "icon": { "horizontalCenter": 0.5, "source": "cz_icon8", "touchEnabled": false, "verticalCenter": -9.5, "$t": "$eI" }, + "buyButton": { "bottom": 7, "horizontalCenter": 0, "label": "10 元", "skinName": "Btn32Skin", "$t": "$eB" }, + "lab": { "horizontalCenter": 0.5, "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "y": 13, "$t": "$eL" }, + "rebateImg": { "horizontalCenter": 0, "source": "cz_10bei1", "touchEnabled": false, "y": 147, "$t": "$eI" }, + "$sP": ["icon", "buyButton", "lab", "rebateImg"], + "$sC": "$eSk" + }, + "RechargeGameCatSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeGameCatSkin.exml", + "$bs": { "height": 696, "width": 1027, "$eleC": ["dragDropUI", "_Image1", "closeBtn", "payScroller", "rebateTxt"] }, + "dragDropUI": { "height": 696, "source": "apay_bg2_png", "width": 1027, "x": 0, "y": -1, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_cz", "touchEnabled": false, "y": 55, "$t": "$eI" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "RechargeGameCatSkin$Skin257" }, + "payScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "bounces": false, "height": 552, "width": 870.67, "x": 79, "y": 110.67, "$t": "$eS", "viewport": "rechargeList" }, + "rechargeList": { "itemRendererSkinName": "RechargeGameCatItemSkin", "x": -1.33, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 6, "requestedColumnCount": 4, "verticalGap": 1, "$t": "$eTL" }, + "rebateTxt": { "size": 24, "stroke": 2, "text": "任意档位充值,立享10倍超额返利!", "textColor": 2682369, "x": 541, "y": 609, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rechargeList", "payScroller", "rebateTxt"], + "$sC": "$eSk" + }, + "RechargeGameCatSkin$Skin257": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "RechargeQQSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeQQSkin.exml", + "$bs": { + "height": 696, + "width": 1027, + "$eleC": [ + "dragDropUI", + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "icon1", + "icon2", + "icon3", + "icon4", + "icon5", + "icon6", + "icon7", + "icon8", + "buyButton1", + "buyButton2", + "buyButton3", + "buyButton4", + "buyButton5", + "buyButton6", + "buyButton7", + "buyButton8", + "lab1", + "lab2", + "lab3", + "lab4", + "lab5", + "lab6", + "lab7", + "lab8", + "closeBtn", + "discountGrp1", + "discountGrp2", + "discountGrp3", + "discountGrp4", + "discountGrp5", + "discountGrp6", + "discountGrp7", + "discountGrp8", + "openBlue" + ] + }, + "dragDropUI": { "height": 696, "source": "apay_bg2_png", "width": 1027, "x": 0, "y": -1, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0.5, "source": "banner_lzchongzhi", "top": 106, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "biaoti_cz", "touchEnabled": false, "y": 55, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 89, "y": 196, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 303, "y": 196, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 519, "y": 196, "$t": "$eI" }, + "_Image6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 734, "y": 196, "$t": "$eI" }, + "_Image7": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 89, "y": 424, "$t": "$eI" }, + "_Image8": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 303, "y": 424, "$t": "$eI" }, + "_Image9": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 519, "y": 424, "$t": "$eI" }, + "_Image10": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 208, "x": 734, "y": 424, "$t": "$eI" }, + "icon1": { "source": "cz_icon1", "touchEnabled": false, "x": 158, "y": 258, "$t": "$eI" }, + "icon2": { "source": "cz_icon2", "touchEnabled": false, "x": 357, "y": 246, "$t": "$eI" }, + "icon3": { "source": "cz_icon3", "touchEnabled": false, "x": 551, "y": 243, "$t": "$eI" }, + "icon4": { "source": "cz_icon4", "touchEnabled": false, "x": 766, "y": 246, "$t": "$eI" }, + "icon5": { "source": "cz_icon5", "touchEnabled": false, "x": 129, "y": 474, "$t": "$eI" }, + "icon6": { "source": "cz_icon6", "touchEnabled": false, "x": 330, "y": 485, "$t": "$eI" }, + "icon7": { "source": "cz_icon7", "touchEnabled": false, "x": 542, "y": 474, "$t": "$eI" }, + "icon8": { "source": "cz_icon8", "touchEnabled": false, "x": 746, "y": 459, "$t": "$eI" }, + "buyButton1": { "label": "10 元", "skinName": "Btn32Skin", "x": 122, "y": 354, "$t": "$eB" }, + "buyButton2": { "label": "10 元", "skinName": "Btn32Skin", "x": 339, "y": 354, "$t": "$eB" }, + "buyButton3": { "label": "10 元", "skinName": "Btn32Skin", "x": 554, "y": 354, "$t": "$eB" }, + "buyButton4": { "label": "10 元", "skinName": "Btn32Skin", "x": 766, "y": 354, "$t": "$eB" }, + "buyButton5": { "label": "10 元", "skinName": "Btn32Skin", "x": 122, "y": 585, "$t": "$eB" }, + "buyButton6": { "label": "10 元", "skinName": "Btn32Skin", "x": 339, "y": 585, "$t": "$eB" }, + "buyButton7": { "label": "10 元", "skinName": "Btn32Skin", "x": 554, "y": 585, "$t": "$eB" }, + "buyButton8": { "label": "10 元", "skinName": "Btn32Skin", "x": 766, "y": 585, "$t": "$eB" }, + "lab1": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 112, "y": 202, "$t": "$eL" }, + "lab2": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 326, "y": 202, "$t": "$eL" }, + "lab3": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 544, "y": 202, "$t": "$eL" }, + "lab4": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 764, "y": 202, "$t": "$eL" }, + "lab5": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 112, "y": 436, "$t": "$eL" }, + "lab6": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 326, "y": 436, "$t": "$eL" }, + "lab7": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 544, "y": 436, "$t": "$eL" }, + "lab8": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 764, "y": 436, "$t": "$eL" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "RechargeQQSkin$Skin258" }, + "discountGrp1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -323.5, "verticalCenter": -7, "visible": false, "$t": "$eG", "$eleC": ["discountLab1"] }, + "discountLab1": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -107.5, "verticalCenter": -7, "visible": false, "$t": "$eG", "$eleC": ["discountLab2"] }, + "discountLab2": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 109.5, "verticalCenter": -7, "visible": false, "$t": "$eG", "$eleC": ["discountLab3"] }, + "discountLab3": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 326.5, "verticalCenter": -7, "visible": false, "$t": "$eG", "$eleC": ["discountLab4"] }, + "discountLab4": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp5": { "horizontalCenter": -323.5, "verticalCenter": 226, "visible": false, "$t": "$eG", "$eleC": ["discountLab5"] }, + "discountLab5": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -107.5, "verticalCenter": 226, "visible": false, "$t": "$eG", "$eleC": ["discountLab6"] }, + "discountLab6": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp7": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 109.5, "verticalCenter": 226, "visible": false, "$t": "$eG", "$eleC": ["discountLab7"] }, + "discountLab7": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "discountGrp8": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 326.5, "verticalCenter": 226, "visible": false, "$t": "$eG", "$eleC": ["discountLab8"] }, + "discountLab8": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "openBlue": { "icon": "lz_ktlzbt", "label": "", "skinName": "Btn0Skin", "x": 771.02, "y": 130.32, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "icon1", + "icon2", + "icon3", + "icon4", + "icon5", + "icon6", + "icon7", + "icon8", + "buyButton1", + "buyButton2", + "buyButton3", + "buyButton4", + "buyButton5", + "buyButton6", + "buyButton7", + "buyButton8", + "lab1", + "lab2", + "lab3", + "lab4", + "lab5", + "lab6", + "lab7", + "lab8", + "closeBtn", + "discountLab1", + "discountGrp1", + "discountLab2", + "discountGrp2", + "discountLab3", + "discountGrp3", + "discountLab4", + "discountGrp4", + "discountLab5", + "discountGrp5", + "discountLab6", + "discountGrp6", + "discountLab7", + "discountGrp7", + "discountLab8", + "discountGrp8", + "openBlue" + ], + "$sC": "$eSk" + }, + "RechargeQQSkin$Skin258": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "RechargeQRCodeSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml", + "$bs": { "height": 573, "width": 458, "$eleC": ["dragDropUI", "closeBtn", "rect", "img", "pf37", "linkLabel", "unusualGroup"] }, + "dragDropUI": { "source": "saomachongzhi2_png", "$t": "$eI" }, + "closeBtn": { "source": "fuli4366_json.btn_smczx", "x": 412, "y": 11, "$t": "$eI" }, + "rect": { "fillColor": 16777215, "height": 190, "width": 190, "x": 134, "y": 309, "$t": "$eR" }, + "img": { "height": 174, "width": 174, "x": 142, "y": 317, "$t": "$eI" }, + "pf37": { "height": 174, "visible": false, "width": 174, "x": 142, "y": 317, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "source": "37_smczzq_0", "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 87, "anchorOffsetY": 87, "source": "37_smczzq_1", "x": 87, "y": 87, "$t": "$eI" }, + "linkLabel": { "size": 20, "stroke": 2, "text": "+更多充值方式", "textColor": 2682369, "visible": false, "x": 311, "y": 528, "$t": "$eL" }, + "unusualGroup": { "height": 200, "visible": false, "width": 458, "x": 0, "y": 313, "$t": "$eG", "$eleC": ["_Image3", "unusualLabel"] }, + "_Image3": { "height": 150, "source": "37_smcz_tanhao", "width": 150, "x": 154, "$t": "$eI" }, + "unusualLabel": { "horizontalCenter": 0, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "渠道异常", "textColor": 15064527, "x": -284, "y": 169, "$t": "$eL" }, + "$sP": ["dragDropUI", "closeBtn", "rect", "img", "pf37", "linkLabel", "unusualLabel", "unusualGroup"], + "$sC": "$eSk" + }, + "RechargeRequestSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeRequestSkin.exml", + "$bs": { "height": 300, "width": 400, "$eleC": ["_Rect1", "tipsLabel"] }, + "_Rect1": { "fillAlpha": 0.3, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "tipsLabel": { "size": 26, "text": "", "textAlign": "center", "verticalCenter": 0, "percentWidth": 100, "$t": "$eL" }, + "$sP": ["tipsLabel"], + "$sC": "$eSk" + }, + "RechargeSkin": { + "$path": "resource/eui_skins/web/recharge/RechargeSkin.exml", + "$bs": { + "height": 696, + "width": 1027, + "$eleC": [ + "dragDropUI", + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "icon1", + "icon2", + "icon3", + "icon4", + "icon5", + "icon6", + "icon7", + "icon8", + "buyButton1", + "buyButton2", + "buyButton3", + "buyButton4", + "buyButton5", + "buyButton6", + "buyButton7", + "buyButton8", + "lab1", + "lab2", + "lab3", + "lab4", + "lab5", + "lab6", + "lab7", + "lab8", + "closeBtn" + ] + }, + "dragDropUI": { "height": 696, "source": "apay_bg2_png", "width": 1027, "x": 0, "y": -1, "$t": "$eI" }, + "_Image1": { "horizontalCenter": 0, "source": "biaoti_cz", "touchEnabled": false, "y": 55, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 84, "y": 128, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 299, "y": 128, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 514, "y": 128, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 729, "y": 128, "$t": "$eI" }, + "_Image6": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 84, "y": 396, "$t": "$eI" }, + "_Image7": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 299, "y": 396, "$t": "$eI" }, + "_Image8": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 514, "y": 396, "$t": "$eI" }, + "_Image9": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 266, "scale9Grid": "11,12,24,20", "source": "cz_bg1", "touchEnabled": false, "width": 213, "x": 729, "y": 396, "$t": "$eI" }, + "icon1": { "source": "cz_icon1", "touchEnabled": false, "x": 150, "y": 227, "$t": "$eI" }, + "icon2": { "source": "cz_icon2", "touchEnabled": false, "x": 350, "y": 208, "$t": "$eI" }, + "icon3": { "source": "cz_icon3", "touchEnabled": false, "x": 548, "y": 200, "$t": "$eI" }, + "icon4": { "source": "cz_icon4", "touchEnabled": false, "x": 763, "y": 203, "$t": "$eI" }, + "icon5": { "source": "cz_icon5", "touchEnabled": false, "x": 125, "y": 462, "$t": "$eI" }, + "icon6": { "source": "cz_icon6", "touchEnabled": false, "x": 329, "y": 479, "$t": "$eI" }, + "icon7": { "source": "cz_icon7", "touchEnabled": false, "x": 538, "y": 469, "$t": "$eI" }, + "icon8": { "source": "cz_icon8", "touchEnabled": false, "x": 745, "y": 461, "$t": "$eI" }, + "buyButton1": { "label": "10 元", "skinName": "Btn32Skin", "x": 120, "y": 328, "$t": "$eB" }, + "buyButton2": { "label": "10 元", "skinName": "Btn32Skin", "x": 335, "y": 328, "$t": "$eB" }, + "buyButton3": { "label": "10 元", "skinName": "Btn32Skin", "x": 552, "y": 328, "$t": "$eB" }, + "buyButton4": { "label": "10 元", "skinName": "Btn32Skin", "x": 767, "y": 328, "$t": "$eB" }, + "buyButton5": { "label": "10 元", "skinName": "Btn32Skin", "x": 120, "y": 596, "$t": "$eB" }, + "buyButton6": { "label": "10 元", "skinName": "Btn32Skin", "x": 335, "y": 596, "$t": "$eB" }, + "buyButton7": { "label": "10 元", "skinName": "Btn32Skin", "x": 552, "y": 596, "$t": "$eB" }, + "buyButton8": { "label": "10 元", "skinName": "Btn32Skin", "x": 767, "y": 596, "$t": "$eB" }, + "lab1": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 109, "y": 149, "$t": "$eL" }, + "lab2": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 324, "y": 149, "$t": "$eL" }, + "lab3": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 539, "y": 149, "$t": "$eL" }, + "lab4": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 754, "y": 149, "$t": "$eL" }, + "lab5": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 109, "y": 417, "$t": "$eL" }, + "lab6": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 324, "y": 417, "$t": "$eL" }, + "lab7": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 539, "y": 417, "$t": "$eL" }, + "lab8": { "size": 24, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 160, "x": 754, "y": 417, "$t": "$eL" }, + "closeBtn": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "RechargeSkin$Skin259" }, + "$sP": [ + "dragDropUI", + "icon1", + "icon2", + "icon3", + "icon4", + "icon5", + "icon6", + "icon7", + "icon8", + "buyButton1", + "buyButton2", + "buyButton3", + "buyButton4", + "buyButton5", + "buyButton6", + "buyButton7", + "buyButton8", + "lab1", + "lab2", + "lab3", + "lab4", + "lab5", + "lab6", + "lab7", + "lab8", + "closeBtn" + ], + "$sC": "$eSk" + }, + "RechargeSkin$Skin259": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "RecycleWinSkin": { + "$path": "resource/eui_skins/web/recycle/RecycleWinSkin.exml", + "$bs": { "height": 645, "width": 909, "$eleC": ["dragDropUI", "tab", "pageGroup"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "tab": { "itemRendererSkinName": "CommonTarBtnWinSkin2", "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "pageGroup": { "height": 558, "width": 869, "x": 22, "y": 57, "$t": "$eG" }, + "$sP": ["dragDropUI", "tab", "pageGroup"], + "$sC": "$eSk" + }, + "FightResultWinSkin1": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin1.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "$t": "$eI" }, + "titleIcon": { "left": 147, "source": "result_win1", "verticalCenter": -152.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "height": 284, "width": 263, "x": 78, "y": 198, "$t": "$eG", "$eleC": ["_Label1", "_Scroller1"] }, + "_Label1": { "size": 21, "stroke": 2, "text": "获得以下奖励:", "textColor": 15655172, "x": 9, "$t": "$eL" }, + "_Scroller1": { "height": 242, "width": 254, "x": 5, "y": 36, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "x": 5, "y": 36, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "requestedColumnCount": 4, "verticalGap": 15, "$t": "$eTL" }, + "autoSuit": { "bottom": 60, "horizontalCenter": 0.5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 90, "horizontalCenter": 2.5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin12": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin12.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "titleIcon": { "left": 146, "source": "result_win1", "verticalCenter": -158.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "height": 284, "width": 263, "x": 85, "y": 191, "$t": "$eG", "$eleC": ["_Label1", "_Scroller1"] }, + "_Label1": { "size": 21, "stroke": 2, "text": "获得以下奖励:", "textColor": 15655172, "x": 9, "$t": "$eL" }, + "_Scroller1": { "height": 242, "width": 254, "x": 5, "y": 36, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "ItemBaseSkin", "x": 5, "y": 36, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "requestedColumnCount": 4, "verticalGap": 15, "$t": "$eTL" }, + "autoSuit": { "bottom": 56, "horizontalCenter": 0.5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 90, "horizontalCenter": 2.5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin2": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin2.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "titleIcon": { "left": 146, "source": "result_win1", "verticalCenter": -158.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "height": 284, "width": 263, "x": 80, "y": 196, "$t": "$eG", "$eleC": ["_Label1", "_Label2", "_Scroller1"] }, + "_Label1": { "size": 21, "stroke": 2, "text": "活动已结束,恭喜获得XXX积分,排名第X", "textColor": 15655172, "width": 250, "x": 9, "$t": "$eL" }, + "_Label2": { "size": 21, "stroke": 2, "text": "奖励(邮件发放):", "textColor": 15655172, "width": 250, "x": 9, "y": 50, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetY": 0, "height": 199, "width": 254, "x": 5, "y": 79, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 198, "itemRendererSkinName": "ItemBaseSkin", "width": 243, "x": 5, "y": 36, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "requestedColumnCount": 4, "verticalGap": 15, "$t": "$eTL" }, + "autoSuit": { "bottom": 65, "horizontalCenter": 0, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 90, "horizontalCenter": 2.5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin26": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin26.exml", + "$bs": { "height": 856, "width": 415, "$eleC": ["_Rect1", "_Group2"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group2": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "$t": "$eI" }, + "titleIcon": { "left": 146, "source": "result_win1", "verticalCenter": -158.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "height": 343, "horizontalCenter": 5, "touchEnabled": false, "width": 280, "y": 168, "$t": "$eG", "$eleC": ["rankLab", "labDesc", "_Scroller1"] }, + "rankLab": { "lineSpacing": 10, "size": 21, "stroke": 2, "text": "恭喜你第X个完成逃脱试炼!", "textColor": 2682369, "width": 280, "y": 90, "$t": "$eL" }, + "labDesc": { "size": 18, "stroke": 2, "text": "您将获得以下奖励,奖励在回到原服后通过邮件发放", "textColor": 15655172, "width": 240, "x": 20, "y": 200, "$t": "$eL" }, + "_Scroller1": { "height": 63, "width": 260, "x": 10, "y": 246.68, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 0, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "autoSuit": { "bottom": 64, "horizontalCenter": 5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 92, "horizontalCenter": 5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "rankLab", "labDesc", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin28": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin28.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "$t": "$eI" }, + "titleIcon": { "left": 147, "source": "result_win1", "verticalCenter": -152.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Label1"] }, + "_Label1": { "size": 20, "stroke": 2, "text": "您未获得任何奖励", "textColor": 15655172, "width": 250, "x": 9, "$t": "$eL" }, + "listGrp": { "height": 270, "width": 263, "x": 78, "y": 205, "$t": "$eG", "$eleC": ["_Label2", "_Scroller1"] }, + "_Label2": { "size": 20, "stroke": 2, "text": "您将获得以下奖励,奖励在回到原服后通过邮件发放", "textColor": 15655172, "width": 250, "x": 9, "$t": "$eL" }, + "_Scroller1": { "height": 220, "width": 254, "x": 5, "y": 50, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "itemRendererSkinName": "FightResultItemSkin1", "x": 5, "y": 36, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "autoSuit": { "bottom": 60, "horizontalCenter": 0.5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 90, "horizontalCenter": 2.5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin3": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin3.exml", + "$bs": { "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "titleIcon": { "left": 146, "source": "result_win1", "verticalCenter": -158.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "anchorOffsetY": 0, "height": 295, "width": 263, "x": 78, "y": 188, "$t": "$eG", "$eleC": ["rankLab", "_Label1", "_Scroller1", "_Scroller2"] }, + "rankLab": { "size": 21, "stroke": 2, "text": "活动已结束,恭喜获得XXX积分,排名第X", "textColor": 15655172, "width": 250, "x": 9, "$t": "$eL" }, + "_Label1": { "size": 21, "stroke": 2, "text": "奖励(邮件发放):", "textColor": 15655172, "width": 250, "x": 9, "y": 50, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetY": 0, "height": 132, "width": 254, "x": 5, "y": 159, "$t": "$eS", "viewport": "itemList1" }, + "itemList1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 66, "itemRendererSkinName": "ItemBaseSkin", "width": 243, "x": 5, "y": 36, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "requestedColumnCount": 4, "verticalGap": 11, "$t": "$eTL" }, + "_Scroller2": { "anchorOffsetY": 0, "height": 63, "width": 254, "x": 5, "y": 79, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 177, "itemRendererSkinName": "ItemBaseSkin", "width": 243, "x": 5, "y": 36, "$t": "$eLs", "layout": "_TileLayout2" }, + "_TileLayout2": { "horizontalGap": 4, "requestedColumnCount": 4, "requestedRowCount": 1, "verticalGap": 15, "$t": "$eTL" }, + "autoSuit": { "bottom": 63, "horizontalCenter": 0.5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 90, "horizontalCenter": 2.5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "rankLab", "itemList1", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin4": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin4.exml", + "$bs": { "height": 856, "width": 415, "$eleC": ["_Rect1", "_Group2"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group2": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "$t": "$eI" }, + "titleIcon": { "horizontalCenter": 5, "source": "result_win1", "verticalCenter": -153.5, "$t": "$eI" }, + "listGrp": { "height": 343, "horizontalCenter": 5, "touchEnabled": false, "width": 280, "y": 168, "$t": "$eG", "$eleC": ["labTitle", "bossName", "labDesc", "_Scroller1"] }, + "labTitle": { "size": 18, "stroke": 2, "text": "次元首领已被击杀", "textAlign": "center", "textColor": 2682369, "verticalAlign": "middle", "width": 240, "x": 20, "y": 30, "$t": "$eL" }, + "bossName": { + "lineSpacing": 6, + "size": 20, + "stroke": 2, + "text": "玩家名字七个字 获得了归属奖励", + "textAlign": "center", + "textColor": 2682369, + "verticalAlign": "middle", + "verticalCenter": -50, + "width": 240, + "x": 20, + "$t": "$eL" + }, + "labDesc": { "size": 18, "stroke": 2, "text": "您将获得以下奖励,奖励在回到原服后通过邮件发放", "textColor": 15655172, "width": 240, "x": 20, "y": 200, "$t": "$eL" }, + "_Scroller1": { "height": 63, "width": 260, "x": 10, "y": 246.68, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["itemList"] }, + "itemList": { "horizontalCenter": 0, "itemRendererSkinName": "ItemBaseSkin", "verticalCenter": 0, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "autoSuit": { "bottom": 64, "horizontalCenter": 5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 92, "horizontalCenter": 5, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "labTitle", "bossName", "labDesc", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultWinSkin8": { + "$path": "resource/eui_skins/web/result/FightResultWinSkin8.exml", + "$bs": { "height": 856, "width": 415, "$eleC": ["_Rect1", "_Group1"] }, + "_Rect1": { "fillAlpha": 0.2, "percentHeight": 100, "percentWidth": 100, "$t": "$eR" }, + "_Group1": { "height": 628, "horizontalCenter": 0, "verticalCenter": -114, "width": 415, "$t": "$eG", "$eleC": ["bgIcon", "titleIcon", "failGrp", "listGrp", "autoSuit", "suitBtn"] }, + "bgIcon": { "horizontalCenter": 0, "source": "result_win", "verticalCenter": 0, "x": 0, "y": 0, "$t": "$eI" }, + "titleIcon": { "left": 144, "source": "result_win1", "verticalCenter": -153.5, "$t": "$eI" }, + "failGrp": { "horizontalCenter": 1, "verticalCenter": -29.5, "visible": false, "x": 77, "y": 186, "$t": "$eG", "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "result_lost2", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "result_lost3", "y": 60, "$t": "$eI" }, + "listGrp": { "height": 343, "touchEnabled": false, "width": 263, "x": 87, "y": 168, "$t": "$eG", "$eleC": ["bossName", "rankLab0", "_Label1", "_Scroller1", "_Scroller2"] }, + "bossName": { + "anchorOffsetY": 0, + "height": 20, + "size": 20, + "stroke": 2, + "text": "", + "textAlign": "center", + "textColor": 2682369, + "verticalAlign": "middle", + "width": 250, + "x": 16, + "y": 30, + "$t": "$eL" + }, + "rankLab0": { "height": 154, "lineSpacing": 10, "size": 20, "stroke": 2, "text": "", "textColor": 15654932, "width": 253, "y": 57.36, "$t": "$eL" }, + "_Label1": { "size": 20, "stroke": 2, "text": "以下奖励已通过邮件发放", "textColor": 15655172, "width": 250, "x": 7, "y": 216.32, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetY": 0, "height": 132, "visible": false, "width": 254, "x": 5, "y": 205, "$t": "$eS", "viewport": "itemList1" }, + "itemList1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 66, "itemRendererSkinName": "ItemBaseSkin", "width": 243, "x": 5, "y": 10, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 4, "requestedColumnCount": 4, "verticalGap": 11, "$t": "$eTL" }, + "_Scroller2": { "anchorOffsetY": 0, "height": 63, "width": 254, "x": 0.98, "y": 246.68, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 177, "itemRendererSkinName": "ItemBaseSkin", "width": 243, "x": 5, "y": 10, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "$t": "$eHL" }, + "autoSuit": { "bottom": 64, "horizontalCenter": 5.5, "size": 21, "stroke": 2, "text": "3秒后自动退出", "textColor": 2682369, "x": 126, "y": 485, "$t": "$eL" }, + "suitBtn": { "bottom": 92, "horizontalCenter": 8, "icon": "result_btn", "label": "领取奖励", "skinName": "Btn9Skin", "x": 77, "y": 420, "$t": "$eB" }, + "$sP": ["bgIcon", "titleIcon", "failGrp", "bossName", "rankLab0", "itemList1", "itemList", "listGrp", "autoSuit", "suitBtn"], + "$sC": "$eSk" + }, + "FightResultItemSkin1": { + "$path": "resource/eui_skins/web/result/item/FightResultItemSkin1.exml", + "$bs": { "height": 60, "width": 254, "$eleC": ["ItemData", "itemName"] }, + "ItemData": { "skinName": "ItemBaseSkin", "verticalCenter": 0, "$t": "app.ItemBase" }, + "itemName": { "size": 18, "stroke": 2, "text": "道具名称", "textColor": 15064527, "verticalCenter": 0, "x": 70, "$t": "$eL" }, + "$sP": ["ItemData", "itemName"], + "$sC": "$eSk" + }, + "CircleSkin": { + "$path": "resource/eui_skins/web/role/circle/CircleSkin.exml", + "$bs": { "height": 536, "width": 386, "$eleC": ["reinGroup", "arrGroup", "conditionGroup", "btnCircle", "txt_max_lev", "txt_get", "red"] }, + "reinGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 418, "width": 377, "x": 0.5, "y": -0.5, "$t": "$eG", "$eleC": ["_Image1", "txt_circle", "txt_get_repair"] }, + "_Image1": { "horizontalCenter": 0, "smoothing": false, "source": "transform_bg_png", "y": 0, "$t": "$eI" }, + "txt_circle": { "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "width": 220, "x": 74.5, "y": 8, "$t": "$eL" }, + "txt_get_repair": { "italic": false, "multiline": false, "size": 16, "text": "", "textAlign": "center", "textColor": 3341312, "visible": false, "width": 100, "x": 270, "y": 458, "$t": "$eL" }, + "arrGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 110, "width": 376, "x": 1, "y": 259, "$t": "$eG", "$eleC": ["_Image2", "list"] }, + "_Image2": { "anchorOffsetY": 0, "height": 99, "smoothing": false, "source": "blessing_bg2", "x": 0, "y": -7, "$t": "$eI" }, + "list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "x": 0, "y": 10, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "conditionGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 64, "width": 369, "x": 4, "y": 363, "$t": "$eG", "$eleC": ["txt_level", "mater1", "mater2", "mater3", "txt_reduceLv"] }, + "txt_level": { "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 14724725, "width": 150, "x": 15.37, "y": 12, "$t": "$eL" }, + "mater1": { "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 14724725, "x": 15.37, "y": 39, "$t": "$eL" }, + "mater2": { "width": 150, "x": 219.37, "y": 12, "$t": "$eG", "$eleC": ["txt_mater2", "materImg2"] }, + "txt_mater2": { "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 14724725, "width": 150, "$t": "$eL" }, + "materImg2": { "height": 24, "source": "", "width": 24, "x": 34, "y": -3.35, "$t": "$eI" }, + "mater3": { "width": 150, "x": 219.37, "y": 39, "$t": "$eG", "$eleC": ["txt_mater3", "materImg3"] }, + "txt_mater3": { "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 14724725, "width": 150, "$t": "$eL" }, + "materImg3": { "height": 24, "source": "", "width": 24, "x": 34, "y": -3.35, "$t": "$eI" }, + "txt_reduceLv": { "horizontalCenter": 0, "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "y": 82, "$t": "$eL" }, + "btnCircle": { "cacheAsBitmap": true, "enabled": true, "horizontalCenter": 0.5, "label": "转生", "skinName": "Btn30Skin", "y": 473, "$t": "$eB" }, + "txt_max_lev": { "anchorOffsetX": 0, "size": 22, "text": "", "textAlign": "center", "textColor": 14724725, "width": 296, "x": 41, "y": 379, "$t": "$eL" }, + "txt_get": { "anchorOffsetX": 0, "italic": false, "multiline": false, "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 2682369, "x": 297, "y": 496, "$t": "$eL" }, + "red": { "source": "common_hongdian", "touchEnabled": false, "visible": false, "x": 235, "y": 471, "$t": "$eI" }, + "$sP": [ + "txt_circle", + "txt_get_repair", + "reinGroup", + "list", + "arrGroup", + "txt_level", + "mater1", + "txt_mater2", + "materImg2", + "mater2", + "txt_mater3", + "materImg3", + "mater3", + "txt_reduceLv", + "conditionGroup", + "btnCircle", + "txt_max_lev", + "txt_get", + "red" + ], + "$sC": "$eSk" + }, + "RoleCircleAttrItemSkin": { + "$path": "resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml", + "$bs": { "height": 21, "width": 352, "$eleC": ["txt_cur", "txt_next", "arrow"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "width": 200, "x": 28, "y": 2, "$t": "$eL" }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 2682369, "width": 80, "x": 264, "y": 2, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 226, "y": -1, "$t": "$eI" }, + "$sP": ["txt_cur", "txt_next", "arrow"], + "$sC": "$eSk" + }, + "EquipAttrBtnSkin": { + "$path": "resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml", + "$bs": { "$eleC": ["_Image1", "iconDisplay"], "$sId": ["_Image2"] }, + "_Image1": { "source": "role_sx_btn1", "$t": "$eI" }, + "iconDisplay": { "horizontalCenter": 0, "source": "role_sx_btnsx", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "source": "role_sx_btn2", "$t": "$eI" }, + "$sP": ["iconDisplay"], + "$s": { "show": {}, "hide": { "$saI": [{ "target": "_Image2", "property": "", "position": 1, "relativeTo": "" }] } }, + "$sC": "$eSk" + }, + "AttrSkin": { + "$path": "resource/eui_skins/web/role/equip/AttrSkin.exml", + "$bs": { "height": 568, "width": 306, "$eleC": ["attrGroup", "stateScroller", "btn_close", "attrBtn", "stateBtn"] }, + "attrGroup": { "y": 0, "$t": "$eG", "$eleC": ["_Image1", "attrScroller", "attrList", "_VSlider1"] }, + "_Image1": { "smoothing": false, "source": "role_sx_bg_png", "touchEnabled": false, "$t": "$eI" }, + "attrScroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 483, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 238, "x": 16, "y": 66.35, "$t": "$eS" }, + "attrList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "x": 20, "y": 69.35, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "_VSlider1": { + "height": 530, + "maximum": 415, + "minimum": 0, + "name": "verticalSlider", + "value": 415, + "visible": false, + "width": 15, + "x": 244, + "y": 28, + "$t": "$eVS", + "skinName": "AttrSkin$Skin260" + }, + "stateScroller": { "height": 476, "scrollPolicyH": "off", "width": 198, "x": 39, "y": 70, "$t": "$eS", "viewport": "stateList" }, + "stateList": { "itemRendererSkinName": "RoleStateItemSkin", "x": 169, "y": 134, "$t": "$eLs" }, + "btn_close": { "label": "", "top": -9, "width": 60, "x": 243.66, "$t": "$eB", "skinName": "AttrSkin$Skin261" }, + "attrBtn": { "height": 36, "icon": "role_sx_btnsx", "label": "", "skinName": "EquipAttrBtnSkin", "width": 85, "x": 44.5, "y": 23.5, "$t": "$eB" }, + "stateBtn": { "height": 36, "icon": "role_sx_btnzt", "label": "", "skinName": "EquipAttrBtnSkin", "width": 85, "x": 138, "y": 23.5, "$t": "$eB" }, + "$sP": ["attrScroller", "attrList", "attrGroup", "stateList", "stateScroller", "btn_close", "attrBtn", "stateBtn"], + "$sC": "$eSk" + }, + "AttrSkin$Skin260": { + "$bs": { "minHeight": 10, "minWidth": 20, "$eleC": ["track", "trackHighlight", "thumb"] }, + "track": { "percentHeight": 100, "scale9Grid": "2,2,16,15", "smoothing": false, "source": "shuxinghuadong_1", "verticalCenter": 0, "width": 15, "$t": "$eI" }, + "trackHighlight": { "scale9Grid": "2,2,16,15", "smoothing": false, "source": "shuxinghuadong_1", "verticalCenter": 0, "width": 15, "$t": "$eI" }, + "thumb": { "height": 40, "rotation": 0, "scale9Grid": "0,19,16,1", "smoothing": false, "source": "shuxinghuadong_2", "width": 13, "x": 1, "$t": "$eI" }, + "$sP": ["track", "trackHighlight", "thumb"], + "$sC": "$eSk" + }, + "AttrSkin$Skin261": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkin": { + "$path": "resource/eui_skins/web/role/equip/ButtonRoleSkin.exml", + "$bs": { "height": 62, "width": 62, "$eleC": ["_Button1"] }, + "_Button1": { "anchorOffsetX": 0.5, "anchorOffsetY": 0.5, "skinName": "CommonBtnSkin", "$t": "$eB" }, + "$sC": "$eSk" + }, + "NGEquipViewSkin": { + "$path": "resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml", + "$bs": { "height": 234, "width": 309, "$eleC": ["_Image1", "_Image2", "_Image3", "imgTitle", "icon0", "icon1", "icon2", "icon3", "helpBtn"] }, + "_Image1": { "source": "bg_neigongzb_png", "$t": "$eI" }, + "_Image2": { "source": "bg_neigongzb1", "x": 18, "y": 24, "$t": "$eI" }, + "_Image3": { "scaleX": -1, "source": "bg_neigongzb1", "x": 291, "y": 24, "$t": "$eI" }, + "imgTitle": { "horizontalCenter": 0, "source": "t_neigongzb", "y": 18, "$t": "$eI" }, + "icon0": { "skinName": "ItemSlotSkin", "x": 65, "y": 52, "$t": "app.ItemSlot" }, + "icon1": { "skinName": "ItemSlotSkin", "x": 185, "y": 52, "$t": "app.ItemSlot" }, + "icon2": { "skinName": "ItemSlotSkin", "x": 66, "y": 145, "$t": "app.ItemSlot" }, + "icon3": { "skinName": "ItemSlotSkin", "x": 185, "y": 145, "$t": "app.ItemSlot" }, + "helpBtn": { "label": "Button", "ruleId": "0", "x": 13, "y": 16, "$t": "app.RuleTipsButton" }, + "$sP": ["imgTitle", "icon0", "icon1", "icon2", "icon3", "helpBtn"], + "$sC": "$eSk" + }, + "EquipSkin": { + "$path": "resource/eui_skins/web/role/equip/EquipSkin.exml", + "$bs": { "height": 425, "width": 383, "$eleC": ["_Image1", "modelGroup", "txt_job", "txt_guild", "iconGroup", "gzClickGroup", "btnAtrr", "btnAtrr0", "neiGongBtn", "neiGongGrp"] }, + "_Image1": { "source": "role_bg_png", "x": 1, "y": 0, "$t": "$eI" }, + "modelGroup": { "bottom": 23, "height": 525, "right": 73, "touchChildren": false, "touchEnabled": false, "width": 450, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5"] }, + "_Image2": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image3": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image4": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image5": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "txt_job": { "horizontalCenter": 0, "name": "nameTf", "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 13278055, "y": 13, "$t": "$eL" }, + "txt_guild": { "horizontalCenter": 0.5, "name": "nameTf", "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 13278055, "y": 43, "$t": "$eL" }, + "iconGroup": { + "height": 364, + "width": 378, + "x": 3, + "y": 58, + "$t": "$eG", + "$eleC": ["_ItemSlot1", "_ItemSlot2", "_ItemSlot3", "_ItemSlot4", "_ItemSlot5", "_ItemSlot6", "_ItemSlot7", "_ItemSlot8", "_ItemSlot9", "_ItemSlot10", "_ItemSlot11", "_ItemSlot12"] + }, + "_ItemSlot1": { "name": "icon_0", "skinName": "ItemSlotSkin", "x": 4, "y": 91, "$t": "app.ItemSlot" }, + "_ItemSlot2": { "name": "icon_1", "skinName": "ItemSlotSkin", "x": 4, "y": 161, "$t": "app.ItemSlot" }, + "_ItemSlot3": { "name": "icon_2", "skinName": "ItemSlotSkin", "x": 314, "y": 91, "$t": "app.ItemSlot" }, + "_ItemSlot4": { "name": "icon_3", "skinName": "ItemSlotSkin", "x": 314, "y": 161, "$t": "app.ItemSlot" }, + "_ItemSlot5": { "name": "icon_4", "skinName": "ItemSlotSkin", "x": 244, "y": 301, "$t": "app.ItemSlot" }, + "_ItemSlot6": { "name": "icon_5", "skinName": "ItemSlotSkin", "x": 314, "y": 231, "$t": "app.ItemSlot" }, + "_ItemSlot7": { "name": "icon_6", "skinName": "ItemSlotSkin", "x": 314, "y": 301, "$t": "app.ItemSlot" }, + "_ItemSlot8": { "name": "icon_7", "skinName": "ItemSlotSkin", "x": 4, "y": 231, "$t": "app.ItemSlot" }, + "_ItemSlot9": { "name": "icon_8", "skinName": "ItemSlotSkin", "x": 4, "y": 301, "$t": "app.ItemSlot" }, + "_ItemSlot10": { "name": "icon_9", "skinName": "ItemSlotSkin", "x": 74, "y": 301, "$t": "app.ItemSlot" }, + "_ItemSlot11": { "name": "icon_10", "skinName": "ItemSlotSkin", "x": 74, "y": 232, "$t": "app.ItemSlot" }, + "_ItemSlot12": { "name": "icon_11", "skinName": "ItemSlotSkin", "x": 244, "y": 232, "$t": "app.ItemSlot" }, + "gzClickGroup": { "height": 43, "width": 248, "x": 100, "y": 60, "$t": "$eG", "$eleC": ["gzImage", "_Image6", "gzRedPoint"] }, + "gzImage": { "source": "", "touchEnabled": false, "y": 3, "$t": "$eI" }, + "_Image6": { "source": "btn_guanzhi", "touchEnabled": false, "x": 187, "y": 3, "$t": "$eI" }, + "gzRedPoint": { "visible": false, "x": 210.17, "y": -2.33, "$t": "app.RedDotControl" }, + "btnAtrr": { "enabled": true, "x": 351, "y": 21, "$t": "$eB", "skinName": "EquipSkin$Skin262" }, + "btnAtrr0": { "enabled": true, "x": 351, "y": 21, "$t": "$eB", "skinName": "EquipSkin$Skin263" }, + "neiGongBtn": { "icon": "icon_neigong", "label": "", "skinName": "Btn0Skin", "x": 247, "y": 220, "$t": "$eB" }, + "neiGongGrp": { "height": 234, "visible": false, "width": 309, "x": 35, "y": 81, "$t": "$eG", "$eleC": ["ngEquiTabBar", "ngEquipView", "ngGemstoneView", "neiGongCloseBtn"] }, + "ngEquiTabBar": { "itemRendererSkinName": "NGEquipTabSkin", "x": -32, "y": 10, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "ngEquipView": { "skinName": "NGEquipViewSkin", "$t": "app.NGEquipView" }, + "ngGemstoneView": { "skinName": "NGEquipViewSkin", "$t": "app.NGEquipView" }, + "neiGongCloseBtn": { "label": "Button", "skinName": "CloseButtonSkin", "x": 309, "$t": "$eB" }, + "$sP": [ + "modelGroup", + "txt_job", + "txt_guild", + "iconGroup", + "gzImage", + "gzRedPoint", + "gzClickGroup", + "btnAtrr", + "btnAtrr0", + "neiGongBtn", + "ngEquiTabBar", + "ngEquipView", + "ngGemstoneView", + "neiGongCloseBtn", + "neiGongGrp" + ], + "$sC": "$eSk" + }, + "EquipSkin$Skin262": { + "$bs": { "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "source": "btn_shuxing_bg", "$t": "$eI" }, + "_Image2": { "source": "btn_shuxing_1", "x": 8, "y": 8, "$t": "$eI" }, + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_shuxing_bg" }] } }, + "$sC": "$eSk" + }, + "EquipSkin$Skin263": { + "$bs": { "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "source": "btn_shuxing_bg", "$t": "$eI" }, + "_Image2": { "source": "btn_shuxing_2", "x": 8, "y": 8, "$t": "$eI" }, + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_shuxing_bg" }] } }, + "$sC": "$eSk" + }, + "RoleAttrItemSkin": { + "$path": "resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml", + "$bs": { "height": 28, "width": 232, "$eleC": ["_Image1", "txt_name", "txt_value"] }, + "_Image1": { "anchorOffsetX": 0, "scale9Grid": "116,11,5,7", "smoothing": false, "source": "role_sx_bg2", "width": 120, "x": 105.68, "y": 3, "$t": "$eI" }, + "txt_name": { "anchorOffsetX": 0, "size": 18, "stroke": 2, "text": "药品回复率:", "textColor": 14724725, "x": 1, "y": 5, "$t": "$eL" }, + "txt_value": { "size": 18, "stroke": 2, "text": "1000", "textColor": 12824472, "verticalAlign": "middle", "x": 110, "y": 5, "$t": "$eL" }, + "$sP": ["txt_name", "txt_value"], + "$sC": "$eSk" + }, + "RolePriBtnSkin": { + "$path": "resource/eui_skins/web/role/equip/RolePriBtnSkin.exml", + "$bs": { "width": 39, "$eleC": ["_normalImg", "_selectImg", "_nameTf2", "_nameTf", "_redDot"] }, + "_normalImg": { "right": 0, "scaleX": -1, "smoothing": false, "source": "role_tab2", "$t": "$eI" }, + "_selectImg": { "right": 0, "scaleX": -1, "smoothing": false, "source": "role_tab1", "$t": "$eI" }, + "_nameTf2": { "right": -6, "source": "role_tab_jn2", "y": -6, "$t": "$eI" }, + "_nameTf": { "right": -6, "source": "role_tab_jn1", "y": -6, "$t": "$eI" }, + "_redDot": { "height": 20, "left": 0, "touchChildren": false, "touchEnabled": false, "width": 20, "y": -2, "$t": "app.RedDotControl" }, + "$sP": ["_normalImg", "_selectImg", "_nameTf2", "_nameTf", "_redDot"], + "$sC": "$eSk" + }, + "RoleStateItemSkin": { + "$path": "resource/eui_skins/web/role/equip/RoleStateItemSkin.exml", + "$bs": { "height": 23, "width": 198, "$eleC": ["txt_name", "txt_value"] }, + "txt_name": { "anchorOffsetX": 0, "size": 18, "stroke": 2, "text": "积 分 :", "textColor": 10916732, "width": 85, "x": 1, "y": 3, "$t": "$eL" }, + "txt_value": { "size": 18, "stroke": 2, "text": "", "textAlign": "left", "textColor": 43784, "width": 120, "x": 89, "y": 3, "$t": "$eL" }, + "$sP": ["txt_name", "txt_value"], + "$sC": "$eSk" + }, + "StateSkin": { + "$path": "resource/eui_skins/web/role/equip/StateSkin.exml", + "$bs": { "height": 573, "width": 194, "$eleC": ["attrGroup"] }, + "attrGroup": { "x": 1, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "scroller", "btn_close"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 573, "scale9Grid": "8,8,50,50", "smoothing": false, "source": "role_zt_bg", "touchEnabled": false, "width": 191, "$t": "$eI" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 526, "scrollPolicyH": "off", "width": 186, "x": 3, "y": 41, "$t": "$eS", "viewport": "list" }, + "list": { "anchorOffsetX": 0, "height": 200, "itemRendererSkinName": "RoleStateItemSkin", "width": 356, "x": 169, "y": 134, "$t": "$eLs" }, + "btn_close": { "label": "", "skinName": "ButtonCloseSkin", "x": 163, "y": 1.9, "$t": "$eB" }, + "$sP": ["list", "scroller", "btn_close", "attrGroup"], + "$sC": "$eSk" + }, + "RoleExchangSkin": { + "$path": "resource/eui_skins/web/role/exchange/RoleExchangSkin.exml", + "$bs": { "height": 460, "width": 381, "$eleC": ["_Group1"] }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 460, "width": 381, "$t": "$eG", "$eleC": ["dragDropUI", "exchange_list"] }, + "dragDropUI": { "currentState": "default6", "skinName": "UIViewFrameSkin", "$t": "app.UIViewFrame" }, + "exchange_list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 375, "width": 336, "x": 24, "y": 59, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 370, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 337, "x": 0, "y": 0, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "scaleX": 1, "scaleY": 1, "x": 2, "y": 2, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "$t": "$eVL" }, + "$sP": ["dragDropUI", "exchange_list"], + "$sC": "$eSk" + }, + "RoleExchangtemSkin": { + "$path": "resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml", + "$bs": { "height": 115, "width": 337, "$eleC": ["_Image1", "item", "btn_exchange", "txt_desc1", "txt_desc2", "txt_desc3"] }, + "_Image1": { + "alpha": 0.5, + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 112, + "scale9Grid": "3,3,18,18", + "smoothing": false, + "source": "com_bg_kuang_xian2", + "width": 337, + "x": 0, + "y": 0, + "$t": "$eI" + }, + "item": { "skinName": "ItemSlotSkin", "x": 11, "y": 26, "$t": "app.ItemSlot" }, + "btn_exchange": { "anchorOffsetX": 0, "anchorOffsetY": 0, "enabled": true, "label": "兑换", "x": 243, "y": 65, "$t": "$eB", "skinName": "RoleExchangtemSkin$Skin264" }, + "txt_desc1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 22, "size": 15, "text": "", "textColor": 16044452, "x": 74, "y": 26, "$t": "$eL" }, + "txt_desc2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 15, "text": "", "textColor": 16044452, "x": 75, "y": 48, "$t": "$eL" }, + "txt_desc3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 15, "text": "", "textColor": 16044452, "x": 75, "y": 70, "$t": "$eL" }, + "$sP": ["item", "btn_exchange", "txt_desc1", "txt_desc2", "txt_desc3"], + "$sC": "$eSk" + }, + "RoleExchangtemSkin$Skin264": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "smoothing": false, "source": "btn_6", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "textColor": 14729620, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_5" }] }, "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_5" }] } }, + "$sC": "$eSk" + }, + "FashionAttrItemSkin": { + "$path": "resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml", + "$bs": { "height": 31, "width": 222, "$eleC": ["txt"] }, + "txt": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 20, "text": "niaho", "textAlign": "left", "textColor": 16084736, "verticalAlign": "middle", "x": 4, "y": 4, "$t": "$eL" }, + "$sP": ["txt"], + "$sC": "$eSk" + }, + "FashionAttrSkin": { + "$path": "resource/eui_skins/web/role/fashion/FashionAttrSkin.exml", + "$bs": { "height": 568, "width": 261.33, "$eleC": ["attrGroup"] }, + "attrGroup": { "anchorOffsetX": 0, "width": 258.33, "x": 1, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "txt_cur_desc", "txt_next_desc", "txt_desc", "scroller_cur", "scroller_next"] }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 568, "scale9Grid": "8,8,50,50", "smoothing": false, "source": "role_zt_bg", "touchEnabled": false, "width": 259.67, "$t": "$eI" }, + "txt_cur_desc": { "anchorOffsetX": 0, "size": 20, "text": "Label", "textColor": 13353649, "width": 223, "x": 9, "y": 8, "$t": "$eL" }, + "txt_next_desc": { "anchorOffsetX": 0, "size": 20, "text": "Label", "textColor": 16742144, "width": 223, "x": 5, "y": 286, "$t": "$eL" }, + "txt_desc": { "anchorOffsetX": 0, "size": 20, "text": "时装激活后无需展示也可享永久属性加成!", "textColor": 3642619, "width": 223, "x": 17.31, "y": 282, "$t": "$eL" }, + "scroller_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 243, "scrollPolicyH": "off", "width": 239, "x": 10, "y": 34, "$t": "$eS", "viewport": "list_cur" }, + "list_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 450, "itemRendererSkinName": "FashionAttrItemSkin", "width": 247, "x": 169, "y": 1.33, "$t": "$eLs" }, + "scroller_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 243, "scrollPolicyH": "off", "width": 239, "x": 10, "y": 317, "$t": "$eS", "viewport": "list_next" }, + "list_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 450, "itemRendererSkinName": "FashionAttrItemSkin", "width": 249, "x": 169, "y": 134, "$t": "$eLs" }, + "$sP": ["txt_cur_desc", "txt_next_desc", "txt_desc", "list_cur", "scroller_cur", "list_next", "scroller_next", "attrGroup"], + "$sC": "$eSk" + }, + "FashionListItemSkin": { + "$path": "resource/eui_skins/web/role/fashion/FashionListItemSkin.exml", + "$bs": { "height": 83.33, "width": 80, "$eleC": ["itemSlot", "count"] }, + "itemSlot": { "skinName": "ItemSlotSkin2", "$t": "app.ItemSlot2" }, + "count": { "height": 20, "size": 16, "text": "", "textAlign": "right", "verticalAlign": "middle", "width": 60, "x": 10, "y": 46, "$t": "$eL" }, + "$sP": ["itemSlot", "count"], + "$sC": "$eSk" + }, + "FashionNewListItem": { + "$path": "resource/eui_skins/web/role/fashion/FashionNewListItem.exml", + "$bs": { "height": 83, "width": 80, "$eleC": ["_Image1", "icon", "sign", "txtName", "Lv", "effect", "redPoint"] }, + "_Image1": { "source": "quality_0", "x": 10, "y": 4, "$t": "$eI" }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -0.5, "source": "", "verticalCenter": -9.165, "$t": "$eI" }, + "sign": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": -7, "source": "sz_chuandai", "touchEnabled": false, "verticalCenter": -12.165, "visible": false, "$t": "$eI" }, + "txtName": { "height": 20, "size": 14, "stroke": 2, "text": "蓝色欧罗巴", "textAlign": "center", "textColor": 14724725, "verticalAlign": "middle", "width": 80, "y": 64, "$t": "$eL" }, + "Lv": { "height": 20, "size": 16, "text": "", "textAlign": "right", "textColor": 15064527, "verticalAlign": "middle", "width": 60, "x": 10, "y": 46, "$t": "$eL" }, + "effect": { "source": "sz_xuanzhong", "visible": false, "x": 5.68, "y": -0.33, "$t": "$eI" }, + "redPoint": { "source": "common_hongdian", "visible": false, "x": 57, "y": 2, "$t": "$eI" }, + "$sP": ["icon", "sign", "txtName", "Lv", "effect", "redPoint"], + "$sC": "$eSk" + }, + "FashionSkin": { + "$path": "resource/eui_skins/web/role/fashion/FashionSkin.exml", + "$bs": { "height": 447, "width": 384, "$eleC": ["_Image1", "_Image2", "_Image3", "scroller", "_Group1", "fashionAtrrGroup", "tabBar", "txt_max"] }, + "_Image1": { "source": "sz_bg_1_png", "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 151, "source": "sz_bg_3", "visible": false, "width": 370, "x": 8, "y": 276, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 155, "scale9Grid": "22,21,1,1", "source": "sz_bg_2", "width": 379.8, "x": 2.8, "y": 290.6, "$t": "$eI" }, + "scroller": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 94, + "horizontalCenter": -0.5, + "scrollPolicyV": "off", + "touchChildren": true, + "touchEnabled": false, + "verticalCenter": 118.5, + "width": 361, + "$t": "$eS", + "viewport": "list" + }, + "list": { "itemRendererSkinName": "FashionNewListItem", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": -1, "$t": "$eHL" }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 396.66, + "scaleX": 1, + "scaleY": 1, + "touchEnabled": false, + "width": 378, + "x": 3, + "y": 48.72, + "$t": "$eG", + "$eleC": ["attack", "await", "walk", "run", "btn_activat", "activationRed", "lvGrp", "btn_inverse", "btn_along", "btn_wear", "txt_get", "list_cost", "bodyContainer"] + }, + "attack": { "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn18Skin", "x": 30, "y": 6, "$t": "app.FashionBtnItemView" }, + "await": { "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn17Skin", "x": 30, "y": 80, "$t": "app.FashionBtnItemView" }, + "walk": { "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn19Skin", "x": 295.33, "y": 4.66, "$t": "app.FashionBtnItemView" }, + "run": { "label": "", "scaleX": 1, "scaleY": 1, "skinName": "Btn20Skin", "x": 294.66, "y": 80, "$t": "app.FashionBtnItemView" }, + "btn_activat": { + "enabled": true, + "height": 46, + "label": "激 活", + "scaleX": 0.75, + "scaleY": 0.75, + "visible": false, + "width": 113, + "x": 193, + "y": 352, + "$t": "$eB", + "skinName": "FashionSkin$Skin265" + }, + "activationRed": { "scaleX": 1, "scaleY": 1, "visible": false, "x": 265.34, "y": 347.98, "$t": "app.RedDotControl" }, + "lvGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 40.33, "visible": false, "width": 85.83, "x": 283.5, "y": 350, "$t": "$eG", "$eleC": ["btn_upgrade", "lvRed"] }, + "btn_upgrade": { "enabled": true, "height": 46, "label": "升 级", "scaleX": 0.75, "scaleY": 0.75, "width": 113, "x": -1.5, "y": 2, "$t": "$eB", "skinName": "FashionSkin$Skin266" }, + "lvRed": { "scaleX": 1, "scaleY": 1, "visible": false, "x": 71, "y": -2.330000000000041, "$t": "app.RedDotControl" }, + "btn_inverse": { "label": "", "x": 41.35, "y": 158.69, "$t": "$eB", "skinName": "FashionSkin$Skin267" }, + "btn_along": { "label": "", "x": 293.01, "y": 158.69, "$t": "$eB", "skinName": "FashionSkin$Skin268" }, + "btn_wear": { "enabled": true, "height": 46, "label": "展 示", "scaleX": 0.75, "scaleY": 0.75, "visible": false, "width": 113, "x": 193, "y": 352, "$t": "$eB", "skinName": "FashionSkin$Skin269" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 77.65, + "y": 358.69, + "$t": "$eL" + }, + "list_cost": { "itemRendererSkinName": "FourImagesCostItemSkin", "verticalCenter": 168.67, "x": -3.66, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "verticalAlign": "contentJustify", "$t": "$eVL" }, + "bodyContainer": { "anchorOffsetX": 0, "anchorOffsetY": 0, "x": 190, "y": 123.32, "$t": "$eG" }, + "fashionAtrrGroup": { "x": 405.69, "y": -18.67, "$t": "$eG" }, + "tabBar": { "itemRendererSkinName": "CommonTarBtnItemSkin3", "x": 16.67, "y": 258.52, "$t": "$eT", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": 0, "$t": "$eHL" }, + "txt_max": { "anchorOffsetX": 0, "size": 18, "text": "", "textColor": 16350506, "visible": false, "x": 118, "y": 393, "$t": "$eL" }, + "$sP": [ + "list", + "scroller", + "attack", + "await", + "walk", + "run", + "btn_activat", + "activationRed", + "btn_upgrade", + "lvRed", + "lvGrp", + "btn_inverse", + "btn_along", + "btn_wear", + "txt_get", + "list_cost", + "bodyContainer", + "fashionAtrrGroup", + "tabBar", + "txt_max" + ], + "$sC": "$eSk" + }, + "FashionSkin$Skin265": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 22, "stroke": 2, "textColor": 15779990, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay" }] }, "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } }, + "$sC": "$eSk" + }, + "FashionSkin$Skin266": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 22, "stroke": 2, "textColor": 15779990, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay" }] }, "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } }, + "$sC": "$eSk" + }, + "FashionSkin$Skin267": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "sz_btn_6", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "sz_btn_6" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "FashionSkin$Skin268": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "sz_btn_5", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "sz_btn_5" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "FashionSkin$Skin269": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 22, "stroke": 2, "textColor": 15779990, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay" }] }, "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_apay2" }] } }, + "$sC": "$eSk" + }, + "FourImageLevelUpWinSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "pageGroup"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "pageGroup": { + "height": 556, + "horizontalCenter": 0, + "touchEnabled": false, + "verticalCenter": 8, + "width": 876, + "$t": "$eG", + "$eleC": ["_Image1", "_Scroller1", "_Group1", "_Image2", "effGrp", "curLV", "nextLv", "gCurList", "gNextList", "_Image3", "costLab", "costList", "btnUp", "txt_get", "_Group2", "lbMax", "lbMax0"] + }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_4_png", "x": 154.98, "y": -0.7, "$t": "$eI" }, + "_Scroller1": { "bottom": 69, "horizontalCenter": -357.5, "top": 7, "width": 147, "$t": "$eS", "viewport": "tabList" }, + "tabList": { "height": 481, "itemRendererSkinName": "TradeLineTabSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "_Group1": { "x": 136.28, "y": 8.8, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["redPoint1", "redPoint2", "redPoint3", "redPoint4"] }, + "_VerticalLayout2": { "gap": 37, "$t": "$eVL" }, + "redPoint1": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 51, "y": 12, "$t": "app.RedDotControl" }, + "redPoint2": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 61, "y": 22, "$t": "app.RedDotControl" }, + "redPoint3": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 71, "y": 32, "$t": "app.RedDotControl" }, + "redPoint4": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 81, "y": 42, "$t": "app.RedDotControl" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 565, "source": "bg_sixiang2_png", "width": 710, "x": 162.01, "y": 1.3, "$t": "$eI" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 510, "y": 200, "$t": "$eG" }, + "curLV": { "left": 289, "size": 22, "stroke": 2, "text": "当前等级:9", "textColor": 14602500, "y": 300, "$t": "$eL" }, + "nextLv": { "left": 578, "size": 22, "stroke": 2, "text": "下一等级:10", "textColor": 14602500, "y": 300, "$t": "$eL" }, + "gCurList": { "horizontalCenter": -57, "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": 87, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 6, "$t": "$eVL" }, + "gNextList": { "horizontalCenter": 221.5, "itemRendererSkinName": "FourImagesAttrItemNextSkin", "name": "list", "verticalCenter": 88, "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": 6, "$t": "$eVL" }, + "_Image3": { "source": "sx_jiantou", "x": 485, "y": 340, "$t": "$eI" }, + "costLab": { "size": 20, "stroke": 2, "text": "所需材料:", "textColor": 14800843, "visible": false, "x": 276, "y": 408, "$t": "$eL" }, + "costList": { "itemRendererSkinName": "FourImagesCostItemSkin", "x": 282, "y": 422, "$t": "$eLs", "layout": "_VerticalLayout5" }, + "_VerticalLayout5": { "gap": 4, "$t": "$eVL" }, + "btnUp": { "label": "立即升星", "right": 309, "skinName": "Btn9Skin", "verticalCenter": 234, "$t": "$eB" }, + "txt_get": { "bottom": 37, "italic": false, "multiline": false, "right": 84, "size": 16, "text": "", "textAlign": "left", "textColor": 3341312, "$t": "$eL" }, + "_Group2": { "horizontalCenter": -181.5, "verticalCenter": -190, "$t": "$eG", "$eleC": ["_Image4", "curOrder"] }, + "_Image4": { "bottom": -5, "minHeight": 110, "scale9Grid": "4,13,31,83", "source": "jiejikuang", "top": -5, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": 0, "text": "二十阶", "verticalCenter": 0, "width": 27, "$t": "$eBL" }, + "lbMax": { "size": 20, "text": "青龙之魂已达满阶", "textColor": 14724725, "x": 434, "y": 447, "$t": "$eL" }, + "lbMax0": { "size": 20, "text": "已满阶", "textColor": 14724725, "visible": false, "x": 586, "y": 347, "$t": "$eL" }, + "$sP": [ + "dragDropUI", + "tabList", + "redPoint1", + "redPoint2", + "redPoint3", + "redPoint4", + "effGrp", + "curLV", + "nextLv", + "gCurList", + "gNextList", + "costLab", + "costList", + "btnUp", + "txt_get", + "curOrder", + "lbMax", + "lbMax0", + "pageGroup" + ], + "$sC": "$eSk" + }, + "FourImagesAttrItemCurSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml", + "$bs": { "height": 22, "width": 183.8, "$eleC": ["txt_cur", "arrow"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "left": 1, "size": 20, "text": "体力加成:+0%", "textColor": 16044452, "y": 0, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "visible": false, "width": 20, "x": 152.8, "y": -1, "$t": "$eI" }, + "$sP": ["txt_cur", "arrow"], + "$sC": "$eSk" + }, + "FourImagesAttrItemNextSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml", + "$bs": { "height": 25, "width": 162, "$eleC": ["txt_next"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "left": 0, "size": 20, "text": "体力上限:+50", "textAlign": "left", "textColor": 5622796, "y": 2, "$t": "$eL" }, + "$sP": ["txt_next"], + "$sC": "$eSk" + }, + "FourImagesCostItemSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml", + "$bs": { "height": 29, "width": 221, "$eleC": ["_Label1", "txtCost", "iconGoods"] }, + "_Label1": { "size": 17, "stroke": 2, "text": "消耗:", "textColor": 15064527, "x": 7.67, "y": 7.5, "$t": "$eL" }, + "txtCost": { "anchorOffsetX": 0, "anchorOffsetY": 0, "size": 17, "stroke": 2, "text": "3124/9527", "textColor": 15064527, "x": 90, "y": 7.5, "$t": "$eL" }, + "iconGoods": { "height": 60, "scaleX": 0.6, "scaleY": 0.6, "source": "13107", "width": 60, "x": 51.31, "y": -4.04, "$t": "$eI" }, + "$sP": ["txtCost", "iconGoods"], + "$sC": "$eSk" + }, + "FourImagesInfoLevelViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml", + "$bs": { "height": 26, "width": 228.83, "$eleC": ["group_0", "group_1", "group_2"] }, + "group_0": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "visible": false, + "width": 89, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["iconLv", "_Image1", "iconTitle_0", "iconTitle_1"] + }, + "_HorizontalLayout1": { "gap": -3, "$t": "$eHL" }, + "iconLv": { "scaleX": 1, "scaleY": 1, "source": "t_sx_1", "x": 0, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "t_sx_jie", "x": 24, "y": 0, "$t": "$eI" }, + "iconTitle_0": { "source": "t_sx_qing", "x": 48, "y": 0, "$t": "$eI" }, + "iconTitle_1": { "source": "t_sx_long", "x": 72, "y": 0, "$t": "$eI" }, + "group_1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "width": 103, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["iconLv0", "_Image2", "_Image3", "iconTitle_2", "iconTitle_3"] + }, + "_HorizontalLayout2": { "gap": -4, "$t": "$eHL" }, + "iconLv0": { "scaleX": 1, "scaleY": 1, "source": "t_sx_2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "source": "sixiang_json.t_sx_10", "x": 24, "y": 0, "$t": "$eI" }, + "_Image3": { "source": "t_sx_jie", "x": 48, "y": 0, "$t": "$eI" }, + "iconTitle_2": { "source": "t_sx_qing", "x": 72, "y": 0, "$t": "$eI" }, + "iconTitle_3": { "source": "t_sx_long", "x": 96, "y": 0, "$t": "$eI" }, + "group_2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "width": 205.33, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout3", + "$eleC": ["iconLv2_0", "_Image4", "iconLv2_1", "_Image5", "iconStarLv_2", "_Image6", "iconTitle_2_0", "iconTitle_2_1", "_Image7", "_Image8"] + }, + "_HorizontalLayout3": { "gap": -4, "$t": "$eHL" }, + "iconLv2_0": { "scaleX": 1, "scaleY": 1, "source": "t_sx_2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image4": { "source": "sixiang_json.t_sx_10", "x": 24, "y": 0, "$t": "$eI" }, + "iconLv2_1": { "source": "sixiang_json.t_sx_5", "x": 38, "y": 8, "$t": "$eI" }, + "_Image5": { "source": "t_sx_jie", "x": 48, "y": 0, "$t": "$eI" }, + "iconStarLv_2": { "source": "t_sx_5", "x": 79, "y": 9, "$t": "$eI" }, + "_Image6": { "source": "sixiang_json.t_sx_xing", "x": 100, "y": 10, "$t": "$eI" }, + "iconTitle_2_0": { "source": "t_sx_qing", "x": 72, "y": 0, "$t": "$eI" }, + "iconTitle_2_1": { "source": "t_sx_long", "x": 96, "y": 0, "$t": "$eI" }, + "_Image7": { "source": "sixiang_json.t_sx_zhi", "x": 153, "y": 9, "$t": "$eI" }, + "_Image8": { "source": "sixiang_json.t_sx_hun", "x": 191, "y": 11, "$t": "$eI" }, + "$sP": [ + "iconLv", + "iconTitle_0", + "iconTitle_1", + "group_0", + "iconLv0", + "iconTitle_2", + "iconTitle_3", + "group_1", + "iconLv2_0", + "iconLv2_1", + "iconStarLv_2", + "iconTitle_2_0", + "iconTitle_2_1", + "group_2" + ], + "$sC": "$eSk" + }, + "FourImagesStarViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml", + "$bs": { "height": 23, "width": 25, "$eleC": ["star_0", "star_1"] }, + "star_0": { "source": "common_xx_bg", "x": 0, "y": 0, "$t": "$eI" }, + "star_1": { "source": "common_xx", "visible": false, "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["star_0", "star_1"], + "$sC": "$eSk" + }, + "FourImagesItemViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml", + "$bs": { "height": 173, "width": 144, "$eleC": ["seletectd", "icon", "listStar", "lbLevel", "lbTitle"] }, + "seletectd": { "source": "", "visible": false, "x": 3.65, "y": 7.65, "$t": "$eI" }, + "icon": { "bottom": 42, "horizontalCenter": -1.5, "source": "sx_icon_1", "$t": "$eI" }, + "listStar": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 46, + "visible": false, + "width": 94, + "x": 26.98, + "y": 122.55, + "$t": "$eG", + "layout": "_TileLayout1", + "$eleC": [ + "_FourImagesStarView1", + "_FourImagesStarView2", + "_FourImagesStarView3", + "_FourImagesStarView4", + "_FourImagesStarView5", + "_FourImagesStarView6", + "_FourImagesStarView7", + "_FourImagesStarView8" + ] + }, + "_TileLayout1": { "horizontalGap": -2, "verticalGap": -3, "$t": "$eTL" }, + "_FourImagesStarView1": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 4, "y": 1, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView2": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 14, "y": 11, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView3": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 24, "y": 21, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView4": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 34, "y": 31, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView5": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 44, "y": 41, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView6": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 54, "y": 51, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView7": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 64, "y": 61, "$t": "app.FourImagesStarView" }, + "_FourImagesStarView8": { "height": 23, "skinName": "FourImagesStarViewSkin", "width": 25, "x": 74, "y": 71, "$t": "app.FourImagesStarView" }, + "lbLevel": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "font": "sixiangfnt_fnt", + "horizontalCenter": 0.5, + "letterSpacing": -5, + "smoothing": true, + "text": "四阶青龙", + "verticalCenter": 48.5, + "visible": false, + "$t": "$eBL" + }, + "lbTitle": { "anchorOffsetX": 0, "anchorOffsetY": 0, "font": "sixiangfnt_fnt", "horizontalCenter": -1, "letterSpacing": -5, "smoothing": true, "text": "", "verticalCenter": -62.5, "$t": "$eBL" }, + "$sP": ["seletectd", "icon", "listStar", "lbLevel", "lbTitle"], + "$sC": "$eSk" + }, + "FourImagesLevelViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml", + "$bs": { "height": 26, "width": 123.66, "$eleC": ["group_0", "group_1", "group_2"] }, + "group_0": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "visible": false, + "width": 89, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["iconLv", "_Image1", "iconTitle_0", "iconTitle_1"] + }, + "_HorizontalLayout1": { "gap": -3, "$t": "$eHL" }, + "iconLv": { "scaleX": 1, "scaleY": 1, "source": "t_sx_1", "x": 0, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "t_sx_jie", "x": 24, "y": 0, "$t": "$eI" }, + "iconTitle_0": { "source": "t_sx_qing", "x": 48, "y": 0, "$t": "$eI" }, + "iconTitle_1": { "source": "t_sx_long", "x": 72, "y": 0, "$t": "$eI" }, + "group_1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "visible": false, + "width": 103, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["iconLv0", "_Image2", "_Image3", "iconTitle_2", "iconTitle_3"] + }, + "_HorizontalLayout2": { "gap": -4, "$t": "$eHL" }, + "iconLv0": { "scaleX": 1, "scaleY": 1, "source": "t_sx_2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image2": { "source": "sixiang_json.t_sx_10", "x": 24, "y": 0, "$t": "$eI" }, + "_Image3": { "source": "t_sx_jie", "x": 48, "y": 0, "$t": "$eI" }, + "iconTitle_2": { "source": "t_sx_qing", "x": 72, "y": 0, "$t": "$eI" }, + "iconTitle_3": { "source": "t_sx_long", "x": 96, "y": 0, "$t": "$eI" }, + "group_2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26, + "width": 123.33, + "x": 0, + "y": 0, + "$t": "$eG", + "layout": "_HorizontalLayout3", + "$eleC": ["iconLv1", "_Image4", "_Image5", "_Image6", "iconTitle_4", "iconTitle_5"] + }, + "_HorizontalLayout3": { "gap": -4, "$t": "$eHL" }, + "iconLv1": { "scaleX": 1, "scaleY": 1, "source": "t_sx_2", "x": 0, "y": 0, "$t": "$eI" }, + "_Image4": { "source": "sixiang_json.t_sx_10", "x": 24, "y": 0, "$t": "$eI" }, + "_Image5": { "source": "sixiang_json.t_sx_5", "x": 38, "y": 8, "$t": "$eI" }, + "_Image6": { "source": "t_sx_jie", "x": 48, "y": 0, "$t": "$eI" }, + "iconTitle_4": { "source": "t_sx_qing", "x": 72, "y": 0, "$t": "$eI" }, + "iconTitle_5": { "source": "t_sx_long", "x": 96, "y": 0, "$t": "$eI" }, + "$sP": ["iconLv", "iconTitle_0", "iconTitle_1", "group_0", "iconLv0", "iconTitle_2", "iconTitle_3", "group_1", "iconLv1", "iconTitle_4", "iconTitle_5", "group_2"], + "$sC": "$eSk" + }, + "FourImagesShowInfoViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml", + "$bs": { "height": 342.33, "width": 248, "$eleC": ["_Image1", "lbTitle", "_Label1", "gCurList", "gNextList", "txtLimit", "txtAttrib", "effGrp", "_Group1"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "10,11,1,1", "source": "bg_sixiang_3", "top": 0, "$t": "$eI" }, + "lbTitle": { "font": "sixiangfnt_fnt", "horizontalCenter": 0.5, "text": "5星28阶青龙之魂", "verticalCenter": -137.165, "$t": "$eBL" }, + "_Label1": { "size": 20, "stroke": 2, "text": "[当前属性]", "textColor": 15854850, "x": 28, "y": 250, "$t": "$eL" }, + "gCurList": { "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "x": 27, "y": 283.69, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "gNextList": { "name": "list", "visible": false, "x": 143.95, "y": 283.69, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 0, "$t": "$eVL" }, + "txtLimit": { "size": 20, "text": "需要四象神兽都达到5星0阶才能升阶", "textColor": 16747008, "visible": false, "x": 38, "y": 316.88, "$t": "$eL" }, + "txtAttrib": { "lineSpacing": 5, "size": 20, "text": "都是你个都是你个都是你个都是你个\n都是你个都是你个", "textColor": 3642619, "visible": false, "x": 40.35, "y": 279.9, "$t": "$eL" }, + "effGrp": { "horizontalCenter": 0, "verticalCenter": -10.665, "$t": "$eG" }, + "_Group1": { "horizontalCenter": -101.5, "scaleX": 0.7, "scaleY": 0.7, "verticalCenter": -73, "$t": "$eG", "$eleC": ["_Image2", "curOrder"] }, + "_Image2": { "bottom": -5, "minHeight": 110, "scale9Grid": "4,13,31,83", "source": "jiejikuang", "top": -5, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": 0, "text": "二阶", "verticalCenter": 0, "width": 27, "$t": "$eBL" }, + "$sP": ["lbTitle", "gCurList", "gNextList", "txtLimit", "txtAttrib", "effGrp", "curOrder"], + "$sC": "$eSk" + }, + "FourImagesViewSkin": { + "$path": "resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml", + "$bs": { "height": 447, "width": 384, "$eleC": ["bg", "fourImagesItemView_1", "fourImagesItemView_2", "fourImagesItemView_3", "fourImagesItemView_4", "goBtn", "redPoint"] }, + "bg": { "source": "bg_sixiang_png", "$t": "$eI" }, + "fourImagesItemView_1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 185, "skinName": "FourImagesItemViewSkin", "width": 144, "x": 4, "y": 28, "$t": "app.FourImagesItemView" }, + "fourImagesItemView_2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 185, "skinName": "FourImagesItemViewSkin", "width": 144, "x": 237, "y": 28, "$t": "app.FourImagesItemView" }, + "fourImagesItemView_3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 185, "skinName": "FourImagesItemViewSkin", "width": 144, "x": 4, "y": 189, "$t": "app.FourImagesItemView" }, + "fourImagesItemView_4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 185, "skinName": "FourImagesItemViewSkin", "width": 144, "x": 237, "y": 189, "$t": "app.FourImagesItemView" }, + "goBtn": { "height": 46, "label": "前往提升", "right": 134, "verticalCenter": 184.5, "width": 113, "$t": "$eB", "skinName": "FourImagesViewSkin$Skin270" }, + "redPoint": { "visible": false, "x": 236.32, "y": 382.67, "$t": "app.RedDotControl" }, + "$sP": ["bg", "fourImagesItemView_1", "fourImagesItemView_2", "fourImagesItemView_3", "fourImagesItemView_4", "goBtn", "redPoint"], + "$sC": "$eSk" + }, + "FourImagesViewSkin$Skin270": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "GodEquipSkin": { + "$path": "resource/eui_skins/web/role/godequip/GodEquipSkin.exml", + "$bs": { "height": 448, "width": 384, "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "_Image5", "iconGroup", "group_yjh", "img_wjh"] }, + "_Image1": { "source": "Godturn_bg_png", "$t": "$eI" }, + "_Image2": { "name": "img_0", "source": "Godturn_cionbg_1", "x": 59, "y": 96, "$t": "$eI" }, + "_Image3": { "name": "img_2", "source": "Godturn_cionbg_3", "x": 59, "y": 251, "$t": "$eI" }, + "_Image4": { "name": "img_1", "source": "Godturn_cionbg_2", "x": 279, "y": 96, "$t": "$eI" }, + "_Image5": { "name": "img_3", "source": "Godturn_cionbg_4", "x": 279, "y": 251, "$t": "$eI" }, + "iconGroup": { "x": 58, "y": 95.66, "$t": "$eG", "layout": "_TileLayout1", "$eleC": ["_ItemSlot1", "_ItemSlot2", "_ItemSlot3", "_ItemSlot4"] }, + "_TileLayout1": { "horizontalGap": 160, "requestedColumnCount": 2, "requestedRowCount": 2, "verticalGap": 95, "$t": "$eTL" }, + "_ItemSlot1": { "name": "item_0", "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin2", "x": -6, "y": -1, "$t": "app.ItemSlot" }, + "_ItemSlot2": { "name": "item_1", "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin2", "x": -6, "y": 114, "$t": "app.ItemSlot" }, + "_ItemSlot3": { "name": "item_2", "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin2", "x": 216, "y": 114, "$t": "app.ItemSlot" }, + "_ItemSlot4": { "name": "item_3", "scaleX": 1, "scaleY": 1, "skinName": "ItemBaseSkin2", "x": 216, "y": -1, "$t": "app.ItemSlot" }, + "group_yjh": { "height": 169, "touchChildren": false, "touchEnabled": false, "width": 384, "x": 0, "y": 260, "$t": "$eG", "$eleC": ["suitLv", "attrLab"] }, + "suitLv": { "horizontalCenter": 0.5, "size": 22, "stroke": 2, "text": "已激活套装属性:共鸣1阶", "textColor": 15655172, "y": 95, "$t": "$eL" }, + "attrLab": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "攻击加成:5%", "textColor": 15655172, "y": 131, "$t": "$eL" }, + "img_wjh": { "source": "role_json.Godturn_jh_wjh", "x": 120, "y": 370, "$t": "$eI" }, + "$sP": ["iconGroup", "suitLv", "attrLab", "group_yjh", "img_wjh"], + "$sC": "$eSk" + }, + "GuanZhiSkin": { + "$path": "resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml", + "$bs": { + "height": 646, + "width": 912, + "$eleC": [ + "dragDropUI", + "_Image1", + "gzImage", + "curGzImage", + "nextGzImage", + "jiantou", + "currentLabel", + "levelLabel", + "txt_get", + "gCurList", + "gNextList", + "costList", + "btnUp", + "isMaxLab", + "redPoint" + ] + }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "source": "bg_gz_png", "x": 24, "y": 57, "$t": "$eI" }, + "gzImage": { "source": "gz_zw_0", "touchEnabled": false, "x": 421, "y": 93, "$t": "$eI" }, + "curGzImage": { "source": "gz_zw_0", "touchEnabled": false, "x": 212, "y": 206, "$t": "$eI" }, + "nextGzImage": { "source": "gz_zw_0", "touchEnabled": false, "x": 552, "y": 205, "$t": "$eI" }, + "jiantou": { "scaleX": 1.42, "scaleY": 1.42, "source": "sx_jiantou", "x": 428, "y": 295, "$t": "$eI" }, + "currentLabel": { "size": 22, "stroke": 2, "text": "当前官职:", "textColor": 15655172, "x": 332, "y": 101, "$t": "$eL" }, + "levelLabel": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "y": 437, "$t": "$eL" }, + "txt_get": { "italic": false, "multiline": false, "size": 20, "stroke": 2, "text": "", "textAlign": "left", "textColor": 3341312, "x": 787, "y": 583, "$t": "$eL" }, + "gCurList": { "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": -3, "x": 237, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "gNextList": { "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": -3, "x": 576, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 6, "$t": "$eVL" }, + "costList": { "horizontalCenter": 50, "itemRendererSkinName": "FourImagesCostItemSkin", "y": 488, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "requestedColumnCount": 2, "$t": "$eTL" }, + "btnUp": { "label": "升阶官职", "skinName": "Btn9Skin", "x": 413.32, "y": 558.99, "$t": "$eB" }, + "isMaxLab": { "size": 22, "stroke": 2, "text": "当前职位已达满级", "textColor": 15654932, "visible": false, "x": 378, "y": 443, "$t": "$eL" }, + "redPoint": { "visible": false, "x": 509.34, "y": 553.67, "$t": "app.RedDotControl" }, + "$sP": ["dragDropUI", "gzImage", "curGzImage", "nextGzImage", "jiantou", "currentLabel", "levelLabel", "txt_get", "gCurList", "gNextList", "costList", "btnUp", "isMaxLab", "redPoint"], + "$sC": "$eSk" + }, + "WeaponSoulItemViewSkin": { + "$path": "resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml", + "$bs": { "$eleC": ["_Image1", "weaponName", "_Image2", "curOrder", "weaponEff", "tipsGrp"] }, + "_Image1": { "source": "binghun_bg_png", "y": 117, "$t": "$eI" }, + "weaponName": { "source": "role_bh_mc4", "x": 54, "y": 157, "$t": "$eI" }, + "_Image2": { "scaleX": 0.8, "scaleY": 0.8, "source": "jiejikuang", "x": 5, "y": 8, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": -77.5, "scaleX": 0.8, "scaleY": 0.8, "text": "二十阶", "verticalCenter": -79, "width": 27, "$t": "$eBL" }, + "weaponEff": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "touchThrough": true, "y": 102, "$t": "$eG" }, + "tipsGrp": { "height": 116, "width": 138, "x": 30, "y": 24, "$t": "$eG" }, + "$sP": ["weaponName", "curOrder", "weaponEff", "tipsGrp"], + "$sC": "$eSk" + }, + "RoleWeaponSoulViewSkin": { + "$path": "resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml", + "$bs": { "height": 443, "width": 379, "$eleC": ["_Image1", "weaponItem1", "weaponItem2", "weaponItem3", "weaponItem4", "goBtn", "redPoint"] }, + "_Image1": { "height": 443, "horizontalCenter": 0, "source": "binghun_bg1_png", "touchEnabled": false, "width": 379, "$t": "$eI" }, + "weaponItem1": { "skinName": "WeaponSoulItemViewSkin", "$t": "app.WeaponSoulItemView" }, + "weaponItem2": { "right": 0, "skinName": "WeaponSoulItemViewSkin", "$t": "app.WeaponSoulItemView" }, + "weaponItem3": { "skinName": "WeaponSoulItemViewSkin", "y": 188, "$t": "app.WeaponSoulItemView" }, + "weaponItem4": { "right": 0, "skinName": "WeaponSoulItemViewSkin", "y": 188, "$t": "app.WeaponSoulItemView" }, + "goBtn": { "height": 46, "label": "前往提升", "right": 134, "verticalCenter": 191.5, "width": 113, "$t": "$eB", "skinName": "RoleWeaponSoulViewSkin$Skin271" }, + "redPoint": { "visible": false, "x": 231.5, "y": 387, "$t": "app.RedDotControl" }, + "$sP": ["weaponItem1", "weaponItem2", "weaponItem3", "weaponItem4", "goBtn", "redPoint"], + "$sC": "$eSk" + }, + "RoleWeaponSoulViewSkin$Skin271": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin": { + "$path": "resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml", + "$bs": { "height": 52, "width": 58, "$eleC": ["btn_0", "btn_1", "btn_2", "btn_3", "btn_4", "btn_5", "btn_6", "btn_7", "btn_8", "btn_9", "btn_10", "btn_11", "btn_12"] }, + "btn_0": { "label": "", "x": 0, "y": 0, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin272" }, + "btn_1": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin273" }, + "btn_2": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin274" }, + "btn_3": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin275" }, + "btn_4": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin276" }, + "btn_5": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin277" }, + "btn_6": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin278" }, + "btn_7": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin279" }, + "btn_8": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin280" }, + "btn_9": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin281" }, + "btn_10": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin282" }, + "btn_11": { "label": "", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin283" }, + "btn_12": { "label": "设", "visible": false, "$t": "$eB", "skinName": "ButtonRoleSkillKeySkin$Skin284" }, + "$sP": ["btn_0", "btn_1", "btn_2", "btn_3", "btn_4", "btn_5", "btn_6", "btn_7", "btn_8", "btn_9", "btn_10", "btn_11", "btn_12"], + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin272": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "visible": false, "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_1", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin273": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_2", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin274": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_3", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin275": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_4", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin276": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_5", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin277": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_6", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin278": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_q", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin279": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_w", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin280": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_e", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin281": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_r", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin282": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_t", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin283": { + "$bs": { "$eleC": ["bg", "_Image1", "_Image2", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "_Image2": { "smoothing": false, "source": "role_json.anjian_y", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 35, "touchEnabled": false, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ButtonRoleSkillKeySkin$Skin284": { + "$bs": { "$eleC": ["bg", "_Image1", "labelDisplay"] }, + "bg": { "smoothing": false, "source": "role_json.anjian_guang", "$t": "$eI" }, + "_Image1": { "smoothing": false, "source": "role_json.anjian_bg", "x": 6, "y": 8, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": -2, "size": 18, "textColor": 10506821, "touchEnabled": false, "verticalCenter": -8, "$t": "$eL" }, + "$sP": ["bg", "labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "role_json.anjian_bg" }] } + }, + "$sC": "$eSk" + }, + "ShortcutKeySetViewSkin": { + "$path": "resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml", + "$bs": { "height": 263, "width": 517, "$eleC": ["dragDropUI", "_Image1", "icon", "btn_ok", "btn_noSet", "_Button1", "txt_desc", "keyGroup"] }, + "dragDropUI": { "currentState": "default4", "height": 263, "skinName": "UIViewFrameSkin2", "width": 517, "$t": "app.UIViewFrame" }, + "_Image1": { "smoothing": false, "source": "anjian_skillk", "x": 73, "y": 44.5, "$t": "$eI" }, + "icon": { "smoothing": false, "source": "skillicon_ds1", "x": 87, "y": 57, "$t": "$eI" }, + "btn_ok": { "height": 49, "label": "确定", "width": 87, "x": 393, "y": 198, "$t": "$eB", "skinName": "ShortcutKeySetViewSkin$Skin285" }, + "btn_noSet": { "label": "清空", "x": 393, "y": 138, "$t": "$eB", "skinName": "ShortcutKeySetViewSkin$Skin286" }, + "_Button1": { "label": "删除设置", "visible": false, "x": 164, "y": 236, "$t": "$eB", "skinName": "ShortcutKeySetViewSkin$Skin287" }, + "txt_desc": { "scaleX": 1, "scaleY": 1, "size": 18, "text": "冰咆哮快捷键设置为", "textAlign": "center", "textColor": 16777215, "verticalAlign": "justify", "x": 179, "y": 71, "$t": "$eL" }, + "keyGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 100, "width": 325, "x": 40, "y": 140, "$t": "$eG", "layout": "_TileLayout1" }, + "_TileLayout1": { + "columnWidth": 50, + "horizontalAlign": "center", + "horizontalGap": 5, + "requestedColumnCount": 6, + "requestedRowCount": 2, + "rowHeight": 50, + "verticalAlign": "middle", + "verticalGap": 2, + "$t": "$eTL" + }, + "$sP": ["dragDropUI", "icon", "btn_ok", "btn_noSet", "txt_desc", "keyGroup"], + "$sC": "$eSk" + }, + "ShortcutKeySetViewSkin$Skin285": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "anjian_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 18, "textColor": 14203005, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "anjian_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "anjian_btn" }] } + }, + "$sC": "$eSk" + }, + "ShortcutKeySetViewSkin$Skin286": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "anjian_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 18, "textColor": 14203005, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "anjian_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "anjian_btn" }] } + }, + "$sC": "$eSk" + }, + "ShortcutKeySetViewSkin$Skin287": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "smoothing": false, "source": "btn_1", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 18, "textColor": 14203005, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { "up": {}, "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_3" }] }, "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_1" }] } }, + "$sC": "$eSk" + }, + "MerdiansItemSkin": { + "$path": "resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml", + "$bs": { "currentState": "dark", "height": 60, "width": 60, "$eleC": ["bg", "item", "effGp", "effGp0"] }, + "bg": { "height": 18, "horizontalCenter": 0, "source": "meridians_json.Meridians_dian_1", "verticalCenter": 0, "width": 18, "$t": "$eI" }, + "item": { "horizontalCenter": 0, "source": "meridians_json.Meridians_dian_2", "verticalCenter": 0, "$t": "$eI" }, + "effGp": { "height": 18, "width": 18, "x": 21, "y": 21, "$t": "$eG" }, + "effGp0": { "height": 18, "width": 18, "x": 21, "y": 21, "$t": "$eG" }, + "$sP": ["bg", "item", "effGp", "effGp0"], + "$s": { + "open": { + "$ssP": [ + { "target": "bg", "name": "visible", "value": false }, + { "target": "item", "name": "visible", "value": false } + ] + }, + "select": { + "$ssP": [ + { "target": "bg", "name": "visible", "value": false }, + { "target": "item", "name": "visible", "value": false } + ] + }, + "dark": { "$ssP": [{ "target": "item", "name": "visible", "value": false }] } + }, + "$sC": "$eSk" + }, + "MerdiansLevelItemSkin": { + "$path": "resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml", + "$bs": { "height": 24, "width": 24, "$eleC": ["img"] }, + "img": { "horizontalCenter": 0, "source": "Meridians_jie_0", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["img"], + "$sC": "$eSk" + }, + "MerdiansLevelSkin": { + "$path": "resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml", + "$bs": { "width": 33, "$eleC": ["_Group1"] }, + "_Group1": { "$t": "$eG", "$eleC": ["_Image1", "imgList"] }, + "_Image1": { "bottom": -10, "scale9Grid": "4,11,25,67", "source": "Meridians_jie_bg1", "top": -10, "$t": "$eI" }, + "imgList": { "horizontalCenter": -0.5, "itemRendererSkinName": "MerdiansLevelItemSkin", "verticalCenter": 0, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "$sP": ["imgList"], + "$sC": "$eSk" + }, + "MeridiansAttrItemCurSkin": { + "$path": "resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml", + "$bs": { "height": 21, "$eleC": ["txt_cur"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 18, "text": "", "textColor": 16044452, "width": 200, "x": 28, "y": 2, "$t": "$eL" }, + "$sP": ["txt_cur"], + "$sC": "$eSk" + }, + "MeridiansAttrItemNextSkin": { + "$path": "resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml", + "$bs": { "height": 21, "$eleC": ["txt_next", "arrow"] }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 18, "text": "", "textAlign": "left", "textColor": 5622796, "width": 80, "x": 52, "y": 2, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "y": -1, "$t": "$eI" }, + "$sP": ["txt_next", "arrow"], + "$sC": "$eSk" + }, + "MeridiansViewSkin": { + "$path": "resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml", + "$bs": { "height": 471, "width": 382, "$eleC": ["_Group4"] }, + "_Group4": { "height": 468, "name": "group_2", "width": 385, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Group3"] }, + "_Group3": { "scaleX": 1, "scaleY": 1, "width": 377, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Group1", "_Group2", "conditionGroup", "btnUp", "redDotMeridians", "neiGongBtn", "neiGongGrp"] }, + "_Group1": { + "height": 418, + "name": "reinGroup", + "scaleX": 1, + "scaleY": 1, + "width": 377, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": [ + "bg0", + "meridiansLine0", + "meridiansLine1", + "meridiansLine2", + "meridiansLine3", + "meridiansLine4", + "meridiansLine5", + "meridiansLine6", + "meridiansLine7", + "meridiansLine8", + "meridiansitemView0", + "meridiansitemView1", + "meridiansitemView2", + "meridiansitemView3", + "meridiansitemView4", + "meridiansitemView5", + "meridiansitemView6", + "meridiansitemView7", + "meridiansitemView8", + "meridiansitemView9", + "meridiansShowLevel", + "roleGP", + "tipsGP" + ] + }, + "bg0": { "scale9Grid": "48,420,288,21", "smoothing": false, "source": "Meridians_bg", "x": 0, "y": 0, "$t": "$eI" }, + "meridiansLine0": { "rotation": 128.35, "source": "meridians_json.Meridians_xian_2", "x": 196, "y": 42, "$t": "$eI" }, + "meridiansLine1": { "height": 16, "rotation": 354.22, "source": "meridians_json.Meridians_xian_2", "width": 61, "x": 152, "y": 75, "$t": "$eI" }, + "meridiansLine2": { "rotation": 67.4, "source": "meridians_json.Meridians_xian_2", "x": 215, "y": 68, "$t": "$eI" }, + "meridiansLine3": { "rotation": 183.73, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 68, "x": 234, "y": 127, "$t": "$eI" }, + "meridiansLine4": { "height": 14, "rotation": 159.98, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 82, "x": 179, "y": 123, "$t": "$eI" }, + "meridiansLine5": { "rotation": 196.94, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 104, "x": 198, "y": 176, "$t": "$eI" }, + "meridiansLine6": { "height": 14, "rotation": 328.51, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 48, "x": 155, "y": 186, "$t": "$eI" }, + "meridiansLine7": { "height": 14, "rotation": 80.91, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 57, "x": 169, "y": 184, "$t": "$eI" }, + "meridiansLine8": { "height": 14, "rotation": 40.25, "scale9Grid": "30,7,1,0", "source": "meridians_json.Meridians_xian_2", "width": 53, "x": 171, "y": 231, "$t": "$eI" }, + "meridiansitemView0": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 178, "y": 30, "$t": "app.MeridiansItemView" }, + "meridiansitemView1": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 145, "y": 73, "$t": "app.MeridiansItemView" }, + "meridiansitemView2": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 201, "y": 68, "$t": "app.MeridiansItemView" }, + "meridiansitemView3": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 222, "y": 113, "$t": "app.MeridiansItemView" }, + "meridiansitemView4": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 168, "y": 106, "$t": "app.MeridiansItemView" }, + "meridiansitemView5": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 97, "y": 129, "$t": "app.MeridiansItemView" }, + "meridiansitemView6": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 183, "y": 159, "$t": "app.MeridiansItemView" }, + "meridiansitemView7": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 154, "y": 180, "$t": "app.MeridiansItemView" }, + "meridiansitemView8": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 161, "y": 226, "$t": "app.MeridiansItemView" }, + "meridiansitemView9": { "height": 20, "skinName": "MerdiansItemSkin", "width": 20, "x": 196, "y": 259, "$t": "app.MeridiansItemView" }, + "meridiansShowLevel": { "skinName": "MerdiansLevelSkin", "x": 320, "y": 25, "$t": "app.MeridiansLevelView" }, + "roleGP": { "height": 22, "width": 18, "x": 171, "y": 157, "$t": "$eG" }, + "tipsGP": { "height": 22, "width": 18, "x": 171, "y": 157, "$t": "$eG" }, + "_Group2": { "height": 60, "name": "arrGroup", "width": 376, "x": 1, "y": 290, "$t": "$eG", "$eleC": ["_Image1", "gCurList", "gNextList"] }, + "_Image1": { "height": 74, "scale9Grid": "47,10,287,62", "smoothing": false, "source": "blessing_bg2", "x": 0, "y": -2, "$t": "$eI" }, + "gCurList": { "name": "list", "x": 0, "y": 5, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "gNextList": { "name": "list", "x": 226, "y": 5, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 0, "$t": "$eVL" }, + "conditionGroup": { "height": 48, "width": 369, "x": 4, "y": 393, "$t": "$eG", "$eleC": ["txt_level", "costTipsLabel", "maxTipsLabel", "materImg", "costLabel", "txt_get_repair"] }, + "txt_level": { "size": 18, "text": "", "textAlign": "left", "textColor": 13740407, "x": 28, "y": 1, "$t": "$eL" }, + "costTipsLabel": { "size": 18, "text": "消耗:", "textAlign": "left", "textColor": 13740407, "x": 28, "y": 28, "$t": "$eL" }, + "maxTipsLabel": { "horizontalCenter": 0, "size": 18, "text": "消耗:", "textAlign": "left", "textColor": 13740407, "visible": false, "y": 16, "$t": "$eL" }, + "materImg": { "height": 24, "source": "", "width": 24, "x": 73, "y": 24, "$t": "$eI" }, + "costLabel": { "size": 18, "text": "", "textAlign": "left", "textColor": 13740407, "x": 101, "y": 28, "$t": "$eL" }, + "txt_get_repair": { "italic": false, "multiline": false, "right": 145, "size": 16, "text": "", "textColor": 3341312, "y": 28, "$t": "$eL" }, + "btnUp": { "enabled": true, "label": "冲穴", "name": "btnCircle", "skinName": "Btn30Skin", "x": 249, "y": 395, "$t": "$eB" }, + "redDotMeridians": { "height": 20, "width": 20, "x": 344.67, "y": 395.99, "$t": "app.RedDotControl" }, + "neiGongBtn": { "icon": "btn_ngbs", "label": "", "skinName": "Btn0Skin", "x": 40, "y": 40, "$t": "$eB" }, + "neiGongGrp": { "height": 234, "visible": false, "width": 309, "x": 35, "y": 81, "$t": "$eG", "$eleC": ["ngEquiTabBar", "ngEquipView", "ngGemstoneView", "neiGongCloseBtn"] }, + "ngEquiTabBar": { "itemRendererSkinName": "NGEquipTabSkin", "x": -32, "y": 10, "$t": "$eT", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": -11, "$t": "$eVL" }, + "ngEquipView": { "skinName": "NGEquipViewSkin", "$t": "app.NGEquipView" }, + "ngGemstoneView": { "skinName": "NGEquipViewSkin", "$t": "app.NGEquipView" }, + "neiGongCloseBtn": { "label": "Button", "skinName": "CloseButtonSkin", "x": 309, "$t": "$eB" }, + "$sP": [ + "bg0", + "meridiansLine0", + "meridiansLine1", + "meridiansLine2", + "meridiansLine3", + "meridiansLine4", + "meridiansLine5", + "meridiansLine6", + "meridiansLine7", + "meridiansLine8", + "meridiansitemView0", + "meridiansitemView1", + "meridiansitemView2", + "meridiansitemView3", + "meridiansitemView4", + "meridiansitemView5", + "meridiansitemView6", + "meridiansitemView7", + "meridiansitemView8", + "meridiansitemView9", + "meridiansShowLevel", + "roleGP", + "tipsGP", + "gCurList", + "gNextList", + "txt_level", + "costTipsLabel", + "maxTipsLabel", + "materImg", + "costLabel", + "txt_get_repair", + "conditionGroup", + "btnUp", + "redDotMeridians", + "neiGongBtn", + "ngEquiTabBar", + "ngEquipView", + "ngGemstoneView", + "neiGongCloseBtn", + "neiGongGrp" + ], + "$sC": "$eSk" + }, + "NewRingSkin": { + "$path": "resource/eui_skins/web/role/newRing/NewRingSkin.exml", + "$bs": { + "height": 556, + "width": 384, + "$eleC": [ + "_Image1", + "strengthen_name", + "_Image2", + "bt_lv", + "_Group1", + "img_money", + "txt_consume", + "txt_max", + "btn_strengthen", + "redDot", + "listCost", + "_Scroller1", + "tabBar_Group", + "txt_get", + "mcGroup" + ] + }, + "_Image1": { "pixelHitTest": true, "scaleX": 1, "scaleY": 1, "source": "bg_ring_png", "touchEnabled": false, "$t": "$eI" }, + "strengthen_name": { "source": "t_ring", "x": 154, "y": 234.5, "$t": "$eI" }, + "_Image2": { "scale9Grid": "43,0,1,18", "source": "tbg_ring", "width": 220, "x": 85, "y": 239.5, "$t": "$eI" }, + "bt_lv": { "anchorOffsetX": 0, "font": "sixiangfnt_fnt", "letterSpacing": -8, "text": "5", "textAlign": "center", "width": 50, "x": 113, "y": 235.5, "$t": "$eBL" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 114, "width": 372, "x": 12, "y": 272, "$t": "$eG", "$eleC": ["_Image3", "itemList", "arrow", "curAttr", "nextAttr"] }, + "_Image3": { "anchorOffsetY": 0, "height": 158, "source": "blessing_bg2", "touchEnabled": false, "x": 0, "y": -11, "$t": "$eI" }, + "itemList": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 113, + "itemRendererSkinName": "RingAttrItemSkin", + "visible": false, + "width": 380, + "x": -2, + "y": 5, + "$t": "$eLs", + "layout": "_TileLayout1", + "dataProvider": "_ArrayCollection1" + }, + "_TileLayout1": { "horizontalGap": 0, "orientation": "columns", "requestedColumnCount": 1, "verticalGap": -2, "$t": "$eTL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "arrow": { "source": "sx_jiantou", "verticalCenter": 9, "x": 158, "$t": "$eI" }, + "curAttr": { "left": 7, "lineSpacing": 6, "size": 17, "stroke": 2, "text": "", "textAlign": "left", "textColor": 14724725, "verticalAlign": "middle", "verticalCenter": 14, "$t": "$eL" }, + "nextAttr": { "left": 211, "lineSpacing": 6, "size": 17, "stroke": 2, "text": "", "textAlign": "left", "textColor": 2682369, "verticalAlign": "middle", "verticalCenter": 14, "$t": "$eL" }, + "img_money": { "scaleX": 0.5, "scaleY": 0.5, "source": "13123", "visible": false, "x": 50, "y": 393, "$t": "$eI" }, + "txt_consume": { "size": 16, "text": "消耗: 5000", "textColor": 14724725, "visible": false, "width": 150, "x": 12, "y": 400, "$t": "$eL" }, + "txt_max": { "anchorOffsetX": 0, "horizontalCenter": 0, "size": 18, "text": "强化已达最高等级", "textColor": 16350506, "visible": false, "y": 416, "$t": "$eL" }, + "btn_strengthen": { "anchorOffsetX": 0, "label": "升 级", "skinName": "Btn30Skin", "x": 268, "y": 398, "$t": "$eB" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "width": 20, "x": 364, "y": 395, "$t": "app.RedDotControl" }, + "listCost": { "anchorOffsetY": 0, "itemRendererSkinName": "FourImagesCostItemSkin", "width": 200, "x": 12, "y": 396, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -6, "verticalAlign": "contentJustify", "$t": "$eVL" }, + "_Scroller1": { "height": 72, "scrollPolicyH": "off", "scrollPolicyV": "off", "width": 382, "x": 1, "y": 458, "$t": "$eS", "viewport": "iconList" }, + "iconList": { "itemRendererSkinName": "NewRingTabItenSkin", "scaleX": 0.96, "scaleY": 0.96, "$t": "$eT", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": -4, "$t": "$eHL" }, + "tabBar_Group": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 66, + "touchChildren": true, + "touchEnabled": false, + "visible": false, + "width": 380, + "x": 0, + "y": 463, + "$t": "$eG", + "$eleC": ["btn_prev", "btn_next", "tabBar"] + }, + "btn_prev": { "label": "", "scaleX": 1, "scaleY": 1, "visible": false, "x": 0, "y": 11, "$t": "$eB", "skinName": "NewRingSkin$Skin288" }, + "btn_next": { "label": "", "scaleX": 1, "scaleY": 1, "visible": false, "x": 359, "y": 12, "$t": "$eB", "skinName": "NewRingSkin$Skin289" }, + "tabBar": { "itemRendererSkinName": "RingIconItemSkin", "visible": false, "x": 22, "y": -4, "$t": "$eT", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": -5, "$t": "$eHL" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 196, + "y": 422, + "$t": "$eL" + }, + "mcGroup": { "touchChildren": false, "touchEnabled": false, "x": 195, "y": 171, "$t": "$eG" }, + "$sP": [ + "strengthen_name", + "bt_lv", + "itemList", + "arrow", + "curAttr", + "nextAttr", + "img_money", + "txt_consume", + "txt_max", + "btn_strengthen", + "redDot", + "listCost", + "iconList", + "btn_prev", + "btn_next", + "tabBar", + "tabBar_Group", + "txt_get", + "mcGroup" + ], + "$sC": "$eSk" + }, + "NewRingSkin$Skin288": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "ring_jiantou_1", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_1" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_1" }] } + }, + "$sC": "$eSk" + }, + "NewRingSkin$Skin289": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "ring_jiantou_2", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_2" }] } + }, + "$sC": "$eSk" + }, + "NewRingTabItenSkin": { + "$path": "resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml", + "$bs": { "$eleC": ["_Image1", "iconDark", "iconLight", "redPoint"] }, + "_Image1": { "source": "icon_ring_xuanzhong", "$t": "$eI" }, + "iconDark": { "horizontalCenter": 0, "source": "btn_sj_1_d", "verticalCenter": 0, "$t": "$eI" }, + "iconLight": { "horizontalCenter": 0, "source": "btn_sj_1_u", "verticalCenter": 0, "$t": "$eI" }, + "redPoint": { "right": 5, "top": 5, "$t": "app.RedDotControl" }, + "$sP": ["iconDark", "iconLight", "redPoint"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image1", "name": "visible", "value": false }, + { "target": "iconLight", "name": "visible", "value": false } + ] + }, + "down": {} + }, + "$sC": "$eSk" + }, + "NGEquipTabSkin": { + "$path": "resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml", + "$bs": { "height": 90, "width": 32, "$eleC": ["_Image1", "_Image2", "txtIcon1", "txtIcon2"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_ngzb", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "tab_ngzb1", "verticalCenter": 0, "$t": "$eI" }, + "txtIcon1": { "horizontalCenter": 0, "source": "tab_ngzbt01", "verticalCenter": 0, "$t": "$eI" }, + "txtIcon2": { "horizontalCenter": 0, "source": "tab_ngzbt02", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["txtIcon1", "txtIcon2"], + "$s": { + "up": { + "$ssP": [ + { "target": "_Image2", "name": "visible", "value": false }, + { "target": "txtIcon1", "name": "visible", "value": false } + ] + }, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "visible", "value": false }, + { "target": "txtIcon2", "name": "visible", "value": false } + ] + } + }, + "$sC": "$eSk" + }, + "RolePetItemSkin": { + "$path": "resource/eui_skins/web/role/pet/RolePetItemSkin.exml", + "$bs": { "height": 62, "width": 62, "$eleC": ["_Image1", "icon"] }, + "_Image1": { "source": "chongwu_icon", "x": -22, "y": -4, "$t": "$eI" }, + "icon": { "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["icon"], + "$s": { "up": { "$ssP": [{ "target": "_Image1", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "RolePetSkin": { + "$path": "resource/eui_skins/web/role/pet/RolePetSkin.exml", + "$bs": { "height": 443, "width": 379, "$eleC": ["_Image1", "_Group1", "_Scroller1"] }, + "_Image1": { "pixelHitTest": true, "source": "chongwu_bg_png", "touchEnabled": false, "$t": "$eI" }, + "_Group1": { "height": 443, "horizontalCenter": -25, "width": 300, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "effGrp", "imgName", "iconState", "labAttribute", "labTips", "btn_goOut"] }, + "_Image2": { "horizontalCenter": 0, "source": "chongwu_bg1", "y": 300, "$t": "$eI" }, + "_Image3": { "horizontalCenter": 0.5, "source": "chongwu_bg2", "y": 40, "$t": "$eI" }, + "effGrp": { "horizontalCenter": 0, "verticalCenter": 40, "$t": "$eG" }, + "imgName": { "horizontalCenter": 0.5, "source": "", "y": 52, "$t": "$eI" }, + "iconState": { "horizontalCenter": 0, "source": "chongwu_btn", "y": 252, "$t": "$eI" }, + "labAttribute": { + "horizontalCenter": 0, + "lineSpacing": 5, + "size": 16, + "stroke": 2, + "text": "宠物名字宠物名字\n宠物名字\n宠物名字\n宠物名字", + "textAlign": "center", + "textColor": 15064527, + "verticalCenter": 121, + "$t": "$eL" + }, + "labTips": { "size": 16, "stroke": 2, "text": "自动拾取范围:7*7", "textAlign": "left", "textColor": 15064527, "x": 210, "y": 400, "$t": "$eL" }, + "btn_goOut": { "horizontalCenter": 0.5, "label": "升 级", "skinName": "Btn4Skin", "y": 390, "$t": "$eB" }, + "_Scroller1": { "height": 340, "x": 280, "y": 30, "$t": "$eS", "viewport": "iconList" }, + "iconList": { "itemRendererSkinName": "RolePetItemSkin", "name": "list", "y": 2, "$t": "$eT", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": 5, "paddingBottom": 0, "paddingLeft": 25, "paddingRight": 10, "paddingTop": 5, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5"] }, + "_Object1": { "ds": "null", "$t": "Object" }, + "_Object2": { "ds": "null", "$t": "Object" }, + "_Object3": { "ds": "null", "$t": "Object" }, + "_Object4": { "ds": "null", "$t": "Object" }, + "_Object5": { "ds": "null", "$t": "Object" }, + "$sP": ["effGrp", "imgName", "iconState", "labAttribute", "labTips", "btn_goOut", "iconList"], + "$sC": "$eSk" + }, + "RingAttrItemSkin": { + "$path": "resource/eui_skins/web/role/ring/RingAttrItemSkin.exml", + "$bs": { "height": 26, "width": 383, "$eleC": ["txt_cur", "txt_next", "arrow"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 18, "stroke": 2, "text": "等级:109", "textColor": 14724725, "x": 20, "y": 3, "$t": "$eL" }, + "txt_next": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 17, + "size": 18, + "stroke": 2, + "text": "等级:110", + "textAlign": "left", + "textColor": 2682369, + "verticalAlign": "middle", + "x": 213, + "y": 3, + "$t": "$eL" + }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 186, "y": 1, "$t": "$eI" }, + "$sP": ["txt_cur", "txt_next", "arrow"], + "$sC": "$eSk" + }, + "RingIconItemSkin": { + "$path": "resource/eui_skins/web/role/ring/RingIconItemSkin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["effect", "_Image1", "icon", "redPoint"] }, + "effect": { "source": "icon_ring_xuanzhong", "visible": false, "$t": "$eI" }, + "_Image1": { "source": "", "x": 4, "y": 4.8, "$t": "$eI" }, + "icon": { "horizontalCenter": 0, "source": "", "verticalCenter": -1.5, "$t": "$eI" }, + "redPoint": { "right": 4, "top": 4, "$t": "app.RedDotControl" }, + "$sP": ["effect", "icon", "redPoint"], + "$sC": "$eSk" + }, + "RingIconItemSkin2": { + "$path": "resource/eui_skins/web/role/ring/RingIconItemSkin2.exml", + "$bs": { "height": 80, "width": 80, "$eleC": ["effect", "icon"] }, + "effect": { "source": "icon_ring_xuanzhong", "visible": false, "$t": "$eI" }, + "icon": { "horizontalCenter": 0, "source": "ring_json.icon_ring_4", "verticalCenter": 0, "$t": "$eI" }, + "$sP": ["effect", "icon"], + "$sC": "$eSk" + }, + "RingSkin": { + "$path": "resource/eui_skins/web/role/ring/RingSkin.exml", + "$bs": { + "height": 556, + "width": 384, + "$eleC": [ + "_Image1", + "strengthen_name", + "_Image2", + "bt_lv", + "_Group1", + "img_money", + "txt_consume", + "txt_max", + "btn_strengthen", + "redDot", + "listCost", + "_Scroller1", + "tabBar_Group", + "txt_get", + "mcGroup" + ] + }, + "_Image1": { "pixelHitTest": true, "scaleX": 1, "scaleY": 1, "source": "bg_ring_png", "touchEnabled": false, "$t": "$eI" }, + "strengthen_name": { "source": "t_ring", "x": 154, "y": 255, "$t": "$eI" }, + "_Image2": { "scale9Grid": "43,0,1,18", "source": "tbg_ring", "width": 220, "x": 85, "y": 260, "$t": "$eI" }, + "bt_lv": { "anchorOffsetX": 0, "font": "sixiangfnt_fnt", "letterSpacing": -8, "text": "5", "textAlign": "center", "width": 50, "x": 113, "y": 256, "$t": "$eBL" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 114, "width": 372, "x": 12, "y": 290, "$t": "$eG", "$eleC": ["_Image3", "itemList"] }, + "_Image3": { "anchorOffsetY": 0, "height": 99, "source": "blessing_bg2", "x": 0, "y": -7, "$t": "$eI" }, + "itemList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 113, "width": 380, "x": -2, "y": 5, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 0, "orientation": "columns", "requestedColumnCount": 1, "verticalGap": -2, "$t": "$eTL" }, + "img_money": { "scaleX": 0.5, "scaleY": 0.5, "source": "13123", "visible": false, "x": 50, "y": 393, "$t": "$eI" }, + "txt_consume": { "size": 16, "text": "消耗: 5000", "textColor": 14724725, "visible": false, "width": 150, "x": 12, "y": 400, "$t": "$eL" }, + "txt_max": { "anchorOffsetX": 0, "horizontalCenter": 0, "size": 18, "text": "强化已达最高等级", "textColor": 16350506, "visible": false, "y": 388, "$t": "$eL" }, + "btn_strengthen": { "anchorOffsetX": 0, "label": "升 级", "skinName": "Btn30Skin", "x": 268, "y": 398, "$t": "$eB" }, + "redDot": { "height": 20, "touchChildren": false, "touchEnabled": false, "updateShowFunctions": "StrengthenMgr.isCanStrengthenRing", "width": 20, "x": 364, "y": 395, "$t": "app.RedDotControl" }, + "listCost": { "anchorOffsetY": 0, "width": 200, "x": 12, "y": 386, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "verticalAlign": "contentJustify", "$t": "$eVL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 72, "scrollPolicyH": "off", "scrollPolicyV": "off", "width": 338, "x": 3, "y": 459, "$t": "$eS", "viewport": "iconList" }, + "iconList": { "x": -1, "y": 36, "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": -5, "$t": "$eHL" }, + "tabBar_Group": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 66, + "touchChildren": true, + "touchEnabled": false, + "visible": false, + "width": 380, + "x": 0, + "y": 463, + "$t": "$eG", + "$eleC": ["btn_prev", "btn_next", "tabBar"] + }, + "btn_prev": { "label": "", "scaleX": 1, "scaleY": 1, "visible": false, "x": 0, "y": 11, "$t": "$eB", "skinName": "RingSkin$Skin290" }, + "btn_next": { "label": "", "scaleX": 1, "scaleY": 1, "visible": false, "x": 359, "y": 12, "$t": "$eB", "skinName": "RingSkin$Skin291" }, + "tabBar": { "itemRendererSkinName": "RingIconItemSkin", "visible": false, "x": 22, "y": -4, "$t": "$eT", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "gap": -5, "$t": "$eHL" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 196, + "y": 422, + "$t": "$eL" + }, + "mcGroup": { "touchChildren": false, "touchEnabled": false, "x": 195, "y": 171, "$t": "$eG" }, + "$sP": [ + "strengthen_name", + "bt_lv", + "itemList", + "img_money", + "txt_consume", + "txt_max", + "btn_strengthen", + "redDot", + "listCost", + "iconList", + "btn_prev", + "btn_next", + "tabBar", + "tabBar_Group", + "txt_get", + "mcGroup" + ], + "$sC": "$eSk" + }, + "RingSkin$Skin290": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "ring_jiantou_1", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_1" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_1" }] } + }, + "$sC": "$eSk" + }, + "RingSkin$Skin291": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "ring_jiantou_2", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_2" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "ring_jiantou_2" }] } + }, + "$sC": "$eSk" + }, + "RoleViewSkin": { + "$path": "resource/eui_skins/web/role/RoleViewSkin.exml", + "$bs": { "height": 641, "width": 427, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 641, + "touchEnabled": false, + "touchThrough": true, + "$t": "$eG", + "$eleC": ["dragDropUI", "type_group", "attrGroup", "stateGroup", "skillDescGroup", "title2Group", "tab_group", "btnGroup", "helpBtn", "lineImg"] + }, + "dragDropUI": { "skinName": "UIViewBgWinSkin", "$t": "app.UIViewFrame" }, + "type_group": { "height": 440, "touchEnabled": false, "touchThrough": true, "width": 382, "x": 23, "y": 92, "$t": "$eG" }, + "attrGroup": { "touchEnabled": false, "x": 428, "y": 73, "$t": "$eG" }, + "stateGroup": { "touchEnabled": false, "x": 688, "y": 113, "$t": "$eG" }, + "skillDescGroup": { "touchEnabled": false, "x": 428, "y": 113, "$t": "$eG" }, + "title2Group": { "touchEnabled": false, "x": 428, "y": 73, "$t": "$eG" }, + "tab_group": { "cacheAsBitmap": true, "height": 39, "touchEnabled": false, "x": -38, "y": 115, "$t": "$eG", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -25, "$t": "$eVL" }, + "btnGroup": { "width": 369, "x": 30, "y": 555, "$t": "$eG", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 0, "$t": "$eHL" }, + "helpBtn": { "label": "Button", "ruleId": "4", "x": 24, "y": 96, "$t": "app.RuleTipsButton" }, + "lineImg": { "source": "role_k2", "x": 18.5, "y": 539, "$t": "$eI" }, + "$sP": ["dragDropUI", "type_group", "attrGroup", "stateGroup", "skillDescGroup", "title2Group", "tab_group", "btnGroup", "helpBtn", "lineImg"], + "$sC": "$eSk" + }, + "RoleSkilltemSkin": { + "$path": "resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml", + "$bs": { + "height": 80, + "width": 388, + "$eleC": ["_Image1", "bg", "icon", "txt_name", "txt_level", "txt_max", "txt_desc", "btn_key", "icon_group", "rect", "keyLab", "phoneTipsGrp", "btn_upgrade", "redDot"] + }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 66.5, "right": 16, "scale9Grid": "7,20,8,3", "source": "bg_jineng_2", "verticalCenter": 3.5, "width": 284.5, "$t": "$eI" }, + "bg": { "smoothing": false, "source": "bg_jineng_1", "x": 5.5, "y": 5.5, "$t": "$eI" }, + "icon": { "height": 60, "smoothing": false, "source": "skillicon_ds1", "width": 60, "x": 11.5, "y": 11, "$t": "$eI" }, + "txt_name": { "size": 20, "stroke": 2, "text": "治愈术", "textColor": 15064527, "width": 100, "x": 98, "y": 16, "$t": "$eL" }, + "txt_level": { "size": 20, "stroke": 2, "text": "1级", "textColor": 15064527, "width": 80, "x": 194, "y": 17, "$t": "$eL" }, + "txt_max": { "size": 20, "stroke": 2, "text": "已满级", "textAlign": "left", "textColor": 15064527, "visible": false, "x": 203, "y": 17, "$t": "$eL" }, + "txt_desc": { "bold": true, "size": 18, "text": "被动技能", "textColor": 11700818, "visible": false, "x": 98, "y": 50, "$t": "$eL" }, + "btn_key": { "size": 18, "stroke": 2, "text": "快捷设置", "textColor": 15655172, "x": 98, "y": 50, "$t": "$eL" }, + "icon_group": { "height": 60, "width": 60, "x": 11.5, "y": 11, "$t": "$eG" }, + "rect": { "alpha": 0, "height": 69, "visible": false, "width": 129, "x": 81, "y": 6, "$t": "$eR" }, + "keyLab": { "right": 316, "size": 16, "stroke": 2, "text": "", "textColor": 4456192, "y": 11.31, "$t": "$eL" }, + "phoneTipsGrp": { "height": 80, "width": 388, "$t": "$eG" }, + "btn_upgrade": { "enabled": true, "icon": "btn_jineng_1", "label": "升 级", "skinName": "Btn0Skin", "verticalCenter": 0, "x": 279, "$t": "$eB" }, + "redDot": { "source": "common_hongdian", "touchEnabled": false, "visible": false, "x": 352, "y": 20, "$t": "$eI" }, + "$sP": ["bg", "icon", "txt_name", "txt_level", "txt_max", "txt_desc", "btn_key", "icon_group", "rect", "keyLab", "phoneTipsGrp", "btn_upgrade", "redDot"], + "$sC": "$eSk" + }, + "SkillDescSkin": { + "$path": "resource/eui_skins/web/role/skill/SkillDescSkin.exml", + "$bs": { "$eleC": ["attrGroup"] }, + "attrGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "width": 259, "x": 1, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "descLab"] }, + "_Image1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "percentHeight": 100, + "scale9Grid": "8,8,50,50", + "smoothing": false, + "source": "role_zt_bg", + "touchEnabled": false, + "percentWidth": 100, + "$t": "$eI" + }, + "descLab": { "size": 20, "stroke": 2, "text": "", "width": 238, "x": 10, "y": 14.99, "$t": "$eL" }, + "$sP": ["descLab", "attrGroup"], + "$sC": "$eSk" + }, + "SkillSkin": { + "$path": "resource/eui_skins/web/role/skill/SkillSkin.exml", + "$bs": { "height": 453, "width": 391, "$eleC": ["container", "txt_get"] }, + "container": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 448, "scaleX": 1, "scaleY": 1, "width": 383, "x": -1.5, "y": -0.5, "$t": "$eG", "$eleC": ["_Scroller1", "_List1", "_VSlider1"] }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 439, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 378, "x": 3, "y": 7, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "RoleSkilltemSkin", "name": "list", "useVirtualLayout": false, "width": 78, "x": 9, "y": 6, "$t": "$eLs" }, + "_VSlider1": { "height": 415, "maximum": 415, "minimum": 0, "name": "verticalSlider", "value": 0, "visible": false, "width": 20, "x": 359, "y": 2, "$t": "$eVS", "skinName": "SkillSkin$Skin292" }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "visible": false, + "x": 273, + "y": 398, + "$t": "$eL" + }, + "$sP": ["container", "txt_get"], + "$sC": "$eSk" + }, + "SkillSkin$Skin292": { + "$bs": { "minHeight": 10, "minWidth": 20, "$eleC": ["track", "trackHighlight", "thumb"] }, + "track": { "percentHeight": 100, "scale9Grid": "2,2,16,15", "source": "shuxinghuadong_1", "verticalCenter": 0, "width": 20, "$t": "$eI" }, + "trackHighlight": { "scale9Grid": "2,2,16,15", "source": "shuxinghuadong_1", "verticalCenter": 0, "width": 20, "$t": "$eI" }, + "thumb": { "height": 40, "rotation": 0, "scale9Grid": "7,21,2,1", "source": "shuxinghuadong_2", "width": 16, "x": 2, "$t": "$eI" }, + "$sP": ["track", "trackHighlight", "thumb"], + "$sC": "$eSk" + }, + "NewStrengthenSkin": { + "$path": "resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml", + "$bs": { "height": 60, "width": 60, "$eleC": ["_Image1", "icon", "txtName", "txtAdd"] }, + "_Image1": { "source": "qh_icon_bg", "$t": "$eI" }, + "icon": { "anchorOffsetX": 0, "anchorOffsetY": 0, "horizontalCenter": 0, "source": "", "verticalCenter": 0, "$t": "$eI" }, + "txtName": { "size": 16, "stroke": 1, "text": "鞋子", "textAlign": "right", "textColor": 14724725, "verticalAlign": "middle", "x": 23, "y": 42, "$t": "$eL" }, + "txtAdd": { "size": 16, "stroke": 1, "text": "", "textAlign": "right", "textColor": 14729984, "verticalAlign": "middle", "width": 50, "x": 7, "y": 2, "$t": "$eL" }, + "$sP": ["icon", "txtName", "txtAdd"], + "$sC": "$eSk" + }, + "StrengthenAttrItemSkin": { + "$path": "resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml", + "$bs": { "height": 23, "width": 383, "$eleC": ["txt_cur", "txt_next", "arrow"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 16, "text": "", "textColor": 14724725, "x": 20, "y": 0, "$t": "$eL" }, + "txt_next": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 17, "size": 15, "text": "", "textAlign": "left", "textColor": 2682369, "x": 225, "y": 3, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 188, "y": -1, "$t": "$eI" }, + "$sP": ["txt_cur", "txt_next", "arrow"], + "$sC": "$eSk" + }, + "StrengthenIconItemSkin": { + "$path": "resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml", + "$bs": { "height": 72, "width": 72, "$eleC": ["effect", "_Image1", "icon"] }, + "effect": { "source": "", "$t": "$eI" }, + "_Image1": { "source": "icon_ring_bg", "visible": false, "x": 4, "y": 4.8, "$t": "$eI" }, + "icon": { "source": "qh_icon_huwan2", "x": 6, "y": 5.3, "$t": "$eI" }, + "$sP": ["effect", "icon"], + "$s": { + "up": { "$ssP": [{ "target": "effect", "name": "source", "value": "" }] }, + "down": { "$ssP": [{ "target": "effect", "name": "source", "value": "icon_ring_xuanzhong" }] }, + "disabled": { "$ssP": [{ "target": "effect", "name": "source", "value": "icon_ring_xuanzhong" }] } + }, + "$sC": "$eSk" + }, + "StrengthenItemSkin": { + "$path": "resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml", + "$bs": { "height": 23, "width": 184, "$eleC": ["txt_desc", "txt_desc2", "arrow"] }, + "txt_desc": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 16, "text": "衣服部位:120级", "textColor": 14724725, "verticalAlign": "middle", "x": 3, "y": 0, "$t": "$eL" }, + "txt_desc2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 17, + "size": 15, + "text": "125级", + "textAlign": "left", + "textColor": 2682369, + "verticalAlign": "middle", + "x": 140, + "y": 1, + "$t": "$eL" + }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 115, "y": 0, "$t": "$eI" }, + "$sP": ["txt_desc", "txt_desc2", "arrow"], + "$sC": "$eSk" + }, + "StrengthenSkin": { + "$path": "resource/eui_skins/web/role/strengthen/StrengthenSkin.exml", + "$bs": { "height": 441, "width": 378, "$eleC": ["_Image1", "icon_group", "_Group1", "strengthen_name", "group2", "txt_max"] }, + "_Image1": { "source": "qh_bg_png", "width": 378, "y": 0, "$t": "$eI" }, + "icon_group": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 267, + "scaleX": 1, + "scaleY": 1, + "width": 371, + "x": 4, + "y": 19, + "$t": "$eG", + "$eleC": [ + "_StrengthenItemSlot1", + "_StrengthenItemSlot2", + "_StrengthenItemSlot3", + "_StrengthenItemSlot4", + "_StrengthenItemSlot5", + "_StrengthenItemSlot6", + "_StrengthenItemSlot7", + "_StrengthenItemSlot8", + "_Image2", + "selectImg", + "selectName" + ] + }, + "_StrengthenItemSlot1": { "name": "icon_0", "skinName": "NewStrengthenSkin", "x": 154, "y": 1, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot2": { "name": "icon_1", "skinName": "NewStrengthenSkin", "x": 79, "y": 26, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot3": { "name": "icon_2", "skinName": "NewStrengthenSkin", "x": 45, "y": 102, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot4": { "name": "icon_3", "skinName": "NewStrengthenSkin", "x": 79, "y": 178, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot5": { "name": "icon_4", "skinName": "NewStrengthenSkin", "x": 154, "y": 206, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot6": { "name": "icon_5", "skinName": "NewStrengthenSkin", "x": 229, "y": 178, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot7": { "name": "icon_6", "skinName": "NewStrengthenSkin", "x": 263, "y": 102, "$t": "app.StrengthenItemSlot" }, + "_StrengthenItemSlot8": { "name": "icon_7", "skinName": "NewStrengthenSkin", "x": 229, "y": 26, "$t": "app.StrengthenItemSlot" }, + "_Image2": { "source": "qh_icon_xz", "x": 145.33, "y": -7.34, "$t": "$eI" }, + "selectImg": { "source": "qh_icon_wuqi2", "x": 154, "y": 93, "$t": "$eI" }, + "selectName": { "source": "qh_t_wuqi", "x": 148, "y": 168, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 97, "width": 372, "x": 3, "y": 293, "$t": "$eG", "$eleC": ["_Image3", "itemList"] }, + "_Image3": { "source": "qh_sxbg", "x": 8, "y": 0, "$t": "$eI" }, + "itemList": { "height": 88, "width": 383, "x": -2, "y": 8, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 0, "orientation": "columns", "requestedColumnCount": 1, "verticalGap": -2, "$t": "$eTL" }, + "strengthen_name": { "source": "", "x": 153, "y": 183, "$t": "$eI" }, + "group2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "width": 372, "x": 2, "y": 391, "$t": "$eG", "$eleC": ["group_consume", "btn_strengthen", "redDot", "txt_get", "group"] }, + "group_consume": { "anchorOffsetY": 0, "height": 46.33, "x": 13, "y": 2.67, "$t": "$eG", "$eleC": ["img_money", "txt_consume", "txt_consume2", "ListCost"] }, + "img_money": { "scaleX": 0.5, "scaleY": 0.5, "source": "13123", "visible": false, "x": 37, "y": -7, "$t": "$eI" }, + "txt_consume": { "scaleX": 1, "scaleY": 1, "size": 16, "text": "消耗:", "textColor": 14724725, "visible": false, "width": 150, "x": -1, "y": 1, "$t": "$eL" }, + "txt_consume2": { "scaleX": 1, "scaleY": 1, "size": 16, "text": "5000", "textColor": 14724725, "visible": false, "x": 69, "y": 1, "$t": "$eL" }, + "ListCost": { "anchorOffsetY": 0, "scaleX": 1, "scaleY": 1, "verticalCenter": -2.164999999999999, "width": 200, "x": -4, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -1, "verticalAlign": "middle", "$t": "$eVL" }, + "btn_strengthen": { "label": "强 化", "scaleX": 1, "scaleY": 1, "skinName": "Btn9Skin", "x": 274, "y": 4, "$t": "$eB" }, + "redDot": { + "scaleX": 1, + "scaleY": 1, + "showMessages": "StrengthenMgr.post_StrengthenData;StrengthenMgr.post_StrengthenUpdate;DefaultMgr.post_g_0_7;BagMgr.post_8_1;BagMgr.post_8_4;BagMgr.post_8_3", + "touchChildren": false, + "touchEnabled": false, + "updateShowFunctions": "StrengthenMgr.isSatisStrengthened", + "visible": false, + "x": 352, + "y": 2, + "$t": "app.RedDotControl" + }, + "txt_get": { + "anchorOffsetX": 0, + "italic": false, + "multiline": false, + "scaleX": 1, + "scaleY": 1, + "size": 16, + "text": "", + "textAlign": "left", + "textColor": 3341312, + "x": 199, + "y": 7.97, + "$t": "$eL" + }, + "group": { "scaleX": 1, "scaleY": 1, "x": 2, "y": -126, "$t": "$eG", "$eleC": ["txt_desc", "txt_desc2", "arrow"] }, + "txt_desc": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "size": 16, "text": "衣服部位:12级", "textColor": 14724725, "verticalAlign": "middle", "x": 3, "y": 0, "$t": "$eL" }, + "txt_desc2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 17, + "size": 15, + "text": "12级", + "textAlign": "left", + "textColor": 2682369, + "verticalAlign": "middle", + "x": 122, + "y": 1, + "$t": "$eL" + }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "width": 20, "x": 103, "y": 0, "$t": "$eI" }, + "txt_max": { "anchorOffsetX": 0, "size": 18, "text": "强化已达最高等级", "textColor": 16350506, "visible": true, "x": 115, "y": 394, "$t": "$eL" }, + "$sP": [ + "selectImg", + "selectName", + "icon_group", + "itemList", + "strengthen_name", + "img_money", + "txt_consume", + "txt_consume2", + "ListCost", + "group_consume", + "btn_strengthen", + "redDot", + "txt_get", + "txt_desc", + "txt_desc2", + "arrow", + "group", + "group2", + "txt_max" + ], + "$sC": "$eSk" + }, + "TitleAttribItemViewSkin": { + "$path": "resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml", + "$bs": { "height": 20, "width": 249, "$eleC": ["txtAttrib"] }, + "txtAttrib": { "size": 20, "stroke": 2, "text": "全职业攻击下限:+25", "textColor": 14724725, "x": 0, "y": 0, "$t": "$eL" }, + "$sP": ["txtAttrib"], + "$sC": "$eSk" + }, + "TitleItemViewSkin": { + "$path": "resource/eui_skins/web/role/title/TitleItemViewSkin.exml", + "$bs": { "height": 300, "width": 359, "$eleC": ["_Group1", "bg", "groupDetailed"] }, + "_Group1": { "height": 78.5, "touchEnabled": false, "width": 357, "$t": "$eG", "$eleC": ["selectImg", "cbSeletTitle", "iconTitle", "iconShow", "group_mc"] }, + "selectImg": { "source": "ch_bg", "width": 358, "x": 0, "y": 0, "$t": "$eI" }, + "cbSeletTitle": { "name": "warnHp", "skinName": "CheckBox2", "x": 302.5, "y": 22, "$t": "$eCB" }, + "iconTitle": { "scaleX": 1.2, "scaleY": 1.2, "source": "title_json.ch_show_004", "touchEnabled": false, "x": 89, "y": 14, "$t": "$eI" }, + "iconShow": { "source": "role_json.ch_zsz", "touchEnabled": false, "x": 5, "y": 11, "$t": "$eI" }, + "group_mc": { "height": 0, "touchChildren": false, "touchEnabled": false, "width": 0, "x": 170, "y": 59.5, "$t": "$eG" }, + "bg": { "fillMode": "scale", "height": 219.8, "scale9Grid": "12,11,1,1", "source": "com_bg_kuang_xian2", "width": 356, "x": 0, "y": 80, "$t": "$eI" }, + "groupDetailed": { "height": 213.5, "width": 355, "x": 0, "y": 83.5, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["lbDesc", "lbValidity", "scroller"] }, + "_VerticalLayout2": { "paddingLeft": 10, "paddingTop": 10, "$t": "$eVL" }, + "lbDesc": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "width": 320, "x": 15, "y": 7, "$t": "$eL" }, + "lbValidity": { "size": 20, "stroke": 2, "text": "", "textColor": 26367, "x": 15, "y": 54, "$t": "$eL" }, + "scroller": { "height": 148, "width": 330, "x": 15, "y": 87, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "TitleAttribItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["selectImg", "cbSeletTitle", "iconTitle", "iconShow", "group_mc", "bg", "lbDesc", "lbValidity", "list", "scroller", "groupDetailed"], + "$sC": "$eSk" + }, + "TitleItemViewSkin2": { + "$path": "resource/eui_skins/web/role/title/TitleItemViewSkin2.exml", + "$bs": { "height": 300, "width": 359, "$eleC": ["_Group2", "bg", "groupDetailed"] }, + "_Group2": { "height": 78.5, "touchEnabled": false, "width": 357, "$t": "$eG", "$eleC": ["selectImg", "cbSeletTitle", "iconTitle", "iconShow", "_Scroller1"] }, + "selectImg": { "source": "ch_bg", "width": 358, "x": 0, "y": 0, "$t": "$eI" }, + "cbSeletTitle": { "name": "warnHp", "skinName": "CheckBox2", "x": 302.5, "y": 22, "$t": "$eCB" }, + "iconTitle": { "scaleX": 1.2, "scaleY": 1.2, "source": "title_json.ch_show_004", "touchEnabled": false, "x": 89, "y": 14, "$t": "$eI" }, + "iconShow": { "source": "role_json.ch_zsz", "touchEnabled": false, "x": 5, "y": 11, "$t": "$eI" }, + "_Scroller1": { "bottom": 0, "horizontalCenter": 0, "top": -40, "touchChildren": false, "touchEnabled": false, "width": 359, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["group_mc"] }, + "group_mc": { "bottom": 18.5, "height": 0, "width": 0, "x": 170, "$t": "$eG" }, + "bg": { "fillMode": "scale", "height": 219.8, "scale9Grid": "12,11,1,1", "source": "com_bg_kuang_xian2", "width": 356, "x": 0, "y": 80, "$t": "$eI" }, + "groupDetailed": { "height": 213.5, "width": 355, "x": 0, "y": 83.5, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["lbDesc", "lbValidity", "scroller"] }, + "_VerticalLayout2": { "paddingLeft": 10, "paddingTop": 10, "$t": "$eVL" }, + "lbDesc": { "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "width": 320, "x": 15, "y": 7, "$t": "$eL" }, + "lbValidity": { "size": 20, "stroke": 2, "text": "", "textColor": 26367, "x": 15, "y": 54, "$t": "$eL" }, + "scroller": { "height": 148, "width": 330, "x": 15, "y": 87, "$t": "$eS", "viewport": "list" }, + "list": { "itemRendererSkinName": "TitleAttribItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["selectImg", "cbSeletTitle", "iconTitle", "iconShow", "group_mc", "bg", "lbDesc", "lbValidity", "list", "scroller", "groupDetailed"], + "$sC": "$eSk" + }, + "TitleViewSkin": { + "$path": "resource/eui_skins/web/role/title/TitleViewSkin.exml", + "$bs": { "height": 446, "width": 384, "$eleC": ["_Image1", "_Image2", "_Label1", "lbNoTitle", "_Label2", "scroller"] }, + "_Image1": { "source": "Act_dld_pmbt", "width": 384, "$t": "$eI" }, + "_Image2": { "source": "common_liebiaoding_fenge", "x": 268, "y": 1, "$t": "$eI" }, + "_Label1": { "horizontalCenter": -29.5, "size": 22, "stroke": 2, "text": "称 号", "textColor": 15779990, "y": 11.99, "$t": "$eL" }, + "lbNoTitle": { "horizontalCenter": -3.5, "size": 25, "stroke": 2, "text": "暂无称号", "textColor": 15779990, "y": 214, "$t": "$eL" }, + "_Label2": { "horizontalCenter": 134.5, "size": 22, "stroke": 2, "text": "展 示", "textColor": 15779990, "y": 11.99, "$t": "$eL" }, + "scroller": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 401, + "scrollPolicyV": "on", + "skinName": "skins.ScrollerSkin1", + "width": 380, + "x": 2, + "y": 42.65, + "$t": "$eS", + "viewport": "listTitle" + }, + "listTitle": { "anchorOffsetY": 0, "height": 401.67, "$t": "$eG", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["lbNoTitle", "listTitle", "scroller"], + "$sC": "$eSk" + }, + "TitleViewSkin2": { + "$path": "resource/eui_skins/web/role/title/TitleViewSkin2.exml", + "$bs": { "height": 568, "width": 415, "$eleC": ["_Image1", "_Image2", "helpBtn", "_Image3", "_Label1", "lbNoTitle", "_Label2", "scroller"] }, + "_Image1": { "source": "kbg_5_png", "$t": "$eI" }, + "_Image2": { "source": "Act_dld_pmbt", "width": 384, "x": 15, "y": 23, "$t": "$eI" }, + "helpBtn": { "label": "Button", "ruleId": "109", "x": 24, "y": 29, "$t": "app.RuleTipsButton" }, + "_Image3": { "source": "common_liebiaoding_fenge", "x": 283, "y": 24, "$t": "$eI" }, + "_Label1": { "horizontalCenter": -14.5, "size": 22, "stroke": 2, "text": "个性称号", "textColor": 15779990, "y": 34.99, "$t": "$eL" }, + "lbNoTitle": { "horizontalCenter": 11.5, "size": 25, "stroke": 2, "text": "暂无称号", "textColor": 15779990, "y": 285, "$t": "$eL" }, + "_Label2": { "horizontalCenter": 150, "size": 22, "stroke": 2, "text": "展 示", "textColor": 15779990, "y": 34.99, "$t": "$eL" }, + "scroller": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 490, + "scrollPolicyV": "on", + "skinName": "skins.ScrollerSkin1", + "width": 380, + "x": 17, + "y": 66, + "$t": "$eS", + "viewport": "listTitle" + }, + "listTitle": { "height": 490, "$t": "$eG", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "$sP": ["helpBtn", "lbNoTitle", "listTitle", "scroller"], + "$sC": "$eSk" + }, + "BlessAttrItemSkin": { + "$path": "resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml", + "$bs": { "height": 23, "width": 384, "$eleC": ["txt_cur", "txt_next", "arrow"] }, + "txt_cur": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 20, "left": 0, "size": 16, "text": "需要祝福值", "textColor": 15779990, "width": 180, "y": 3, "$t": "$eL" }, + "txt_next": { "height": 17, "right": 0, "size": 16, "text": "需要祝福值", "textAlign": "left", "textColor": 2682369, "width": 180, "y": 3, "$t": "$eL" }, + "arrow": { "height": 20, "smoothing": false, "source": "com_jiantoux2", "visible": false, "width": 20, "x": 180, "y": 0, "$t": "$eI" }, + "$sP": ["txt_cur", "txt_next", "arrow"], + "$sC": "$eSk" + }, + "BlessProgressBarSkin": { + "$path": "resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml", + "$bs": { "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "source": "blessing_jdbg", "$t": "$eI" }, + "thumb": { "source": "blessing_jdt", "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "BlessSkin": { + "$path": "resource/eui_skins/web/role/treasure/BlessSkin.exml", + "$bs": { "height": 448, "width": 384, "$eleC": ["_Group3", "starPro"] }, + "_Group3": { "height": 448, "width": 384, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "txt_star", "group_star", "arrGroup", "_Group1", "_Group2", "_Image15", "mcGrp", "arrowImg"] }, + "_Image1": { "smoothing": false, "source": "blessing_bg_png", "$t": "$eI" }, + "_Image2": { "source": "blessing_tubiao", "x": 158, "y": 136, "$t": "$eI" }, + "txt_star": { "size": 20, "text": "祝福星级:6", "textAlign": "center", "textColor": 15655172, "width": 220, "x": 86.5, "y": 8, "$t": "$eL" }, + "group_star": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 23, + "horizontalCenter": 0, + "y": 271, + "$t": "$eG", + "layout": "_HorizontalLayout1", + "$eleC": ["_Image3", "_Image4", "_Image5", "_Image6", "_Image7", "_Image8", "_Image9", "_Image10", "_Image11", "_Image12"] + }, + "_HorizontalLayout1": { "gap": -2, "horizontalAlign": "left", "$t": "$eHL" }, + "_Image3": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image4": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image5": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image6": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image7": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image8": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image9": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image10": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image11": { "source": "blessing_xingxing", "$t": "$eI" }, + "_Image12": { "source": "blessing_xingxing", "$t": "$eI" }, + "arrGroup": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 87, "horizontalCenter": 0, "width": 376, "y": 307.5, "$t": "$eG", "$eleC": ["_Image13", "_Scroller1", "_List1", "_Image14"] }, + "_Image13": { "smoothing": false, "source": "blessing_bg2", "x": 0, "y": 1, "$t": "$eI" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 55, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 370, "x": 0, "y": 15, "$t": "$eS" }, + "_List1": { "itemRendererSkinName": "BlessAttrItemSkin", "name": "list", "width": 372, "y": 15, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 5, "paddingLeft": 38, "paddingRight": 0, "$t": "$eVL" }, + "_Image14": { "horizontalCenter": -3.5, "source": "sx_jiantou", "y": 17.68, "$t": "$eI" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 65, "width": 338, "x": 28, "y": 226.5, "$t": "$eG", "$eleC": ["txt_blessing", "txt_desc"] }, + "txt_blessing": { "horizontalCenter": 0, "size": 18, "stroke": 1, "text": "当前祝福值为58", "textAlign": "center", "textColor": 14724725, "y": 2, "$t": "$eL" }, + "txt_desc": { "size": 16, "stroke": 1, "text": "每天0带你自动回收更难5点祝福值", "textAlign": "center", "textColor": 14724725, "width": 300, "x": 18.5, "y": 29, "$t": "$eL" }, + "_Group2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 71, + "width": 374, + "x": 2, + "y": 376, + "$t": "$eG", + "$eleC": ["group_consume1", "btn_bless1", "btn_bless0", "txt_get", "redDot1", "redDot0"] + }, + "group_consume1": { "anchorOffsetY": 0, "touchChildren": false, "x": 8, "y": 2, "$t": "$eG", "$eleC": ["txt_consume1", "icon_1"] }, + "txt_consume1": { "scaleX": 1, "scaleY": 1, "size": 18, "text": "消耗 10/10", "textAlign": "left", "textColor": 15064527, "x": 5, "y": 15, "$t": "$eL" }, + "icon_1": { "height": 40, "scaleX": 1, "scaleY": 1, "source": "13003", "width": 40, "x": 38, "y": 3, "$t": "$eI" }, + "btn_bless1": { "enabled": true, "height": 46, "label": "祝 福", "width": 113, "x": 138, "y": 18, "$t": "$eB", "skinName": "BlessSkin$Skin293" }, + "btn_bless0": { "enabled": true, "height": 46, "label": "祝 福", "width": 113, "x": 260, "y": 18, "$t": "$eB", "skinName": "BlessSkin$Skin294" }, + "txt_get": { "anchorOffsetX": 0, "italic": false, "multiline": false, "scaleX": 1, "scaleY": 1, "size": 18, "text": "", "textAlign": "left", "textColor": 2682369, "x": 13, "y": 45, "$t": "$eL" }, + "redDot1": { "height": 20, "visible": false, "width": 20, "x": 238, "y": 17, "$t": "app.RedDotControl" }, + "redDot0": { "height": 20, "visible": false, "width": 20, "x": 360, "y": 17, "$t": "app.RedDotControl" }, + "_Image15": { "rotation": 1.2, "source": "blessing_bglz", "x": 175.92, "y": 115.43, "$t": "$eI" }, + "mcGrp": { "touchChildren": false, "touchEnabled": false, "x": 193, "y": 173, "$t": "$eG" }, + "arrowImg": { "source": "blessing_jdt1", "visible": false, "x": 181.5, "y": 196, "$t": "$eI" }, + "starPro": { "skinName": "BlessProgressBarSkin", "value": 70, "visible": false, "x": 146, "y": 123, "$t": "$ePB" }, + "$sP": [ + "txt_star", + "group_star", + "arrGroup", + "txt_blessing", + "txt_desc", + "txt_consume1", + "icon_1", + "group_consume1", + "btn_bless1", + "btn_bless0", + "txt_get", + "redDot1", + "redDot0", + "mcGrp", + "arrowImg", + "starPro" + ], + "$sC": "$eSk" + }, + "BlessSkin$Skin293": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "BlessSkin$Skin294": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "WordFormulaItemViewSkin": { + "$path": "resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml", + "$bs": { "height": 100, "width": 100, "$eleC": ["icon", "lbTitle"] }, + "icon": { "horizontalCenter": 0, "source": "zj_1_1", "verticalCenter": 0, "$t": "$eI" }, + "lbTitle": { "horizontalCenter": 0, "size": 20, "stroke": 1, "text": "", "textColor": 14724725, "y": 100, "$t": "$eL" }, + "$sP": ["icon", "lbTitle"], + "$sC": "$eSk" + }, + "WordFormulaLevelUpWinSkin": { + "$path": "resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "pageGroup"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "pageGroup": { + "height": 556, + "horizontalCenter": 0, + "touchEnabled": false, + "verticalCenter": 8, + "width": 876, + "$t": "$eG", + "$eleC": ["_Image1", "_Scroller1", "_Group1", "_Image2", "effGrp", "curLV", "nextLv", "gCurList", "gNextList", "_Image3", "costLab", "costList", "btnUp", "txt_get", "_Group2", "lbMax", "lbMax0"] + }, + "_Image1": { "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_4_png", "x": 154.98, "y": -0.7, "$t": "$eI" }, + "_Scroller1": { "bottom": 69, "horizontalCenter": -357.5, "top": 7, "width": 147, "$t": "$eS", "viewport": "tabList" }, + "tabList": { "height": 481, "itemRendererSkinName": "TradeLineTabSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "_Group1": { "x": 136.28, "y": 8.8, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["redPoint1", "redPoint2", "redPoint3", "redPoint4"] }, + "_VerticalLayout2": { "gap": 37, "$t": "$eVL" }, + "redPoint1": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 51, "y": 12, "$t": "app.RedDotControl" }, + "redPoint2": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 61, "y": 22, "$t": "app.RedDotControl" }, + "redPoint3": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 71, "y": 32, "$t": "app.RedDotControl" }, + "redPoint4": { "height": 20, "scaleX": 1, "scaleY": 1, "width": 20, "x": 81, "y": 42, "$t": "app.RedDotControl" }, + "_Image2": { "height": 565, "source": "bg_sixiang2_png", "width": 710, "x": 162.01, "y": 1.3, "$t": "$eI" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 510, "y": 200, "$t": "$eG" }, + "curLV": { "left": 289, "size": 22, "stroke": 2, "text": "当前等级:9", "textColor": 14602500, "y": 280, "$t": "$eL" }, + "nextLv": { "left": 578, "size": 22, "stroke": 2, "text": "下一等级:10", "textColor": 14602500, "y": 280, "$t": "$eL" }, + "gCurList": { "horizontalCenter": -57, "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": 87, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 6, "$t": "$eVL" }, + "gNextList": { "horizontalCenter": 221.5, "itemRendererSkinName": "FourImagesAttrItemNextSkin", "name": "list", "verticalCenter": 88, "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": 6, "$t": "$eVL" }, + "_Image3": { "source": "sx_jiantou", "x": 485, "y": 340, "$t": "$eI" }, + "costLab": { "size": 20, "stroke": 2, "text": "所需材料:", "textColor": 14800843, "visible": false, "x": 276, "y": 408, "$t": "$eL" }, + "costList": { "itemRendererSkinName": "FourImagesCostItemSkin", "x": 282, "y": 422, "$t": "$eLs", "layout": "_VerticalLayout5" }, + "_VerticalLayout5": { "gap": 4, "$t": "$eVL" }, + "btnUp": { "label": "立即升星", "right": 309, "skinName": "Btn9Skin", "verticalCenter": 234, "$t": "$eB" }, + "txt_get": { "bottom": 37, "italic": false, "multiline": false, "right": 84, "size": 16, "text": "", "textAlign": "left", "textColor": 3341312, "$t": "$eL" }, + "_Group2": { "horizontalCenter": -181.5, "verticalCenter": -190, "$t": "$eG", "$eleC": ["_Image4", "curOrder"] }, + "_Image4": { "bottom": -5, "minHeight": 110, "scale9Grid": "4,13,31,83", "source": "jiejikuang", "top": -5, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": 0, "text": "二十阶", "verticalCenter": 0, "width": 27, "$t": "$eBL" }, + "lbMax": { "size": 20, "text": "青龙之魂已达满阶", "textColor": 14724725, "x": 434, "y": 447, "$t": "$eL" }, + "lbMax0": { "size": 20, "text": "已满阶", "textColor": 14724725, "visible": false, "x": 586, "y": 347, "$t": "$eL" }, + "$sP": [ + "dragDropUI", + "tabList", + "redPoint1", + "redPoint2", + "redPoint3", + "redPoint4", + "effGrp", + "curLV", + "nextLv", + "gCurList", + "gNextList", + "costLab", + "costList", + "btnUp", + "txt_get", + "curOrder", + "lbMax", + "lbMax0", + "pageGroup" + ], + "$sC": "$eSk" + }, + "WordFormulaShowInfoViewSkin": { + "$path": "resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml", + "$bs": { "width": 248, "$eleC": ["_Image1", "lbTitle", "_Label1", "gCurList", "gNextList", "txtLimit", "txtAttrib", "effGrp", "_Group1"] }, + "_Image1": { "bottom": -10, "left": 0, "right": 0, "scale9Grid": "10,11,1,1", "source": "bg_sixiang_3", "top": 0, "$t": "$eI" }, + "lbTitle": { "horizontalCenter": 0, "size": 20, "stroke": 1, "text": "", "textColor": 14724725, "y": 20, "$t": "$eL" }, + "_Label1": { "size": 20, "stroke": 2, "text": "[当前属性]", "textColor": 15854850, "x": 28, "y": 250, "$t": "$eL" }, + "gCurList": { "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "x": 27, "y": 283.69, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "gNextList": { "name": "list", "visible": false, "x": 143.95, "y": 283.69, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 0, "$t": "$eVL" }, + "txtLimit": { "size": 20, "text": "需要四象神兽都达到5星0阶才能升阶", "textColor": 16747008, "visible": false, "x": 38, "y": 316.88, "$t": "$eL" }, + "txtAttrib": { "lineSpacing": 5, "size": 20, "text": "都是你个都是你个都是你个都是你个\n都是你个都是你个", "textColor": 3642619, "visible": false, "x": 40.35, "y": 279.9, "$t": "$eL" }, + "effGrp": { "horizontalCenter": 0, "verticalCenter": -10.665, "$t": "$eG" }, + "_Group1": { "horizontalCenter": -91, "scaleX": 0.7, "scaleY": 0.7, "verticalCenter": -70, "$t": "$eG", "$eleC": ["_Image2", "curOrder"] }, + "_Image2": { "bottom": -5, "minHeight": 110, "scale9Grid": "4,13,31,83", "source": "jiejikuang", "top": -5, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": 0, "text": "二十阶", "verticalCenter": 0, "width": 27, "$t": "$eBL" }, + "$sP": ["lbTitle", "gCurList", "gNextList", "txtLimit", "txtAttrib", "effGrp", "curOrder"], + "$sC": "$eSk" + }, + "WordFormulaViewSkin": { + "$path": "resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml", + "$bs": { "height": 447, "width": 384, "$eleC": ["bg", "itemView1", "itemView2", "itemView3", "itemView4", "goBtn", "redPoint"] }, + "bg": { "source": "bg_zijue_png", "$t": "$eI" }, + "itemView1": { "height": 100, "skinName": "WordFormulaItemViewSkin", "width": 100, "x": 34, "y": 78, "$t": "app.WordFormulaItemView" }, + "itemView2": { "height": 100, "skinName": "WordFormulaItemViewSkin", "width": 100, "x": 261, "y": 78, "$t": "app.WordFormulaItemView" }, + "itemView3": { "height": 100, "skinName": "WordFormulaItemViewSkin", "width": 100, "x": 34, "y": 228, "$t": "app.WordFormulaItemView" }, + "itemView4": { "height": 100, "skinName": "WordFormulaItemViewSkin", "width": 100, "x": 261, "y": 228, "$t": "app.WordFormulaItemView" }, + "goBtn": { "height": 46, "label": "前往提升", "right": 134, "verticalCenter": 184.5, "width": 113, "$t": "$eB", "skinName": "WordFormulaViewSkin$Skin295" }, + "redPoint": { "visible": false, "x": 236.32, "y": 382.67, "$t": "app.RedDotControl" }, + "$sP": ["bg", "itemView1", "itemView2", "itemView3", "itemView4", "goBtn", "redPoint"], + "$sC": "$eSk" + }, + "WordFormulaViewSkin$Skin295": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "btn_apay", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "btn_apay" } + ] + }, + "disabled": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "btn_apay2" }, + { "target": "labelDisplay", "name": "textColor", "value": 12171705 } + ] + } + }, + "$sC": "$eSk" + }, + "RuleViewSkin": { + "$path": "resource/eui_skins/web/rule/RuleViewSkin.exml", + "$bs": { "height": 677, "width": 660, "$eleC": ["_Image1", "_Image2", "dragDropUI", "title", "_Scroller1"] }, + "_Image1": { "height": 677, "scale9Grid": "6,6,36,36", "source": "rule_bg", "touchEnabled": false, "width": 660, "$t": "$eI" }, + "_Image2": { "source": "rule_biaotibg", "touchEnabled": false, "x": 137, "y": 9, "$t": "$eI" }, + "dragDropUI": { "currentState": "default7", "percentHeight": 100, "skinName": "UIViewFrameSkin", "percentWidth": 100, "$t": "app.UIViewFrame" }, + "title": { "bold": true, "horizontalCenter": 0, "size": 24, "text": "", "textColor": 16758598, "touchEnabled": false, "y": 16, "$t": "$eL" }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 593, "width": 620, "x": 20, "y": 57, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["contentLabel"] }, + "contentLabel": { "lineSpacing": 6, "size": 20, "text": "", "textColor": 15779990, "width": 600, "x": 7, "y": 7, "$t": "$eL" }, + "$sP": ["dragDropUI", "title", "contentLabel"], + "$sC": "$eSk" + }, + "ShaChengStarcraftWinSkin": { + "$path": "resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_Group4"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "_Group4": { "height": 558, "touchEnabled": false, "width": 863, "x": 23.4, "y": 56.4, "$t": "$eG", "$eleC": ["_Image1", "tabList", "tabGrp0", "tabGrp1", "goBtn"] }, + "_Image1": { "anchorOffsetX": 0, "height": 558, "scale9Grid": "18,19,1,1", "source": "com_bg_kuang_6_png", "width": 150.8, "$t": "$eI" }, + "tabList": { "itemRendererSkinName": "TradeLineTabSkin", "x": -1.4, "y": 0.6, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "tabGrp0": { + "height": 491, + "touchEnabled": false, + "width": 707, + "x": 156, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "guildName", "actTimeLab", "_Group1", "_Group2", "_Group3", "modelGroup0", "modelGroup1", "modelGroup2", "name0", "name1", "name2"] + }, + "_Image2": { "scaleX": 1, "scaleY": 1, "source": "sbk_bg_png", "x": 0, "y": 0, "$t": "$eI" }, + "_Image3": { "scaleX": 1, "scaleY": 1, "source": "Act_mobai_biaotibg", "touchEnabled": false, "x": -36, "y": 23, "$t": "$eI" }, + "guildName": { "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "沙城行会:一刀带走", "textColor": 15064527, "x": 9, "y": 14, "$t": "$eL" }, + "actTimeLab": { + "horizontalCenter": -13.5, + "scaleX": 1, + "scaleY": 1, + "size": 21, + "stroke": 2, + "text": "", + "textColor": 15064527, + "verticalCenter": 223, + "x": 210.99999999999997, + "y": 458, + "$t": "$eL" + }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 283, "width": 181, "x": 51, "y": 160, "$t": "$eG", "$eleC": ["_Image4", "imgModel1", "appoint1"] }, + "_Image4": { "source": "sbk_czch2", "x": 35, "y": 8, "$t": "$eI" }, + "imgModel1": { "source": "sbk_czp2", "x": 41, "y": 56, "$t": "$eI" }, + "appoint1": { "size": 20, "stroke": 2, "text": "暂未任命", "textColor": 16742144, "x": 48.5, "y": 134.5, "$t": "$eL" }, + "_Group2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 283, "width": 181, "x": 474, "y": 163, "$t": "$eG", "$eleC": ["_Image5", "imgModel2", "appoint2"] }, + "_Image5": { "source": "sbk_czch2", "x": 35, "y": 8, "$t": "$eI" }, + "imgModel2": { "source": "sbk_czp2", "x": 41, "y": 56, "$t": "$eI" }, + "appoint2": { "size": 20, "stroke": 2, "text": "暂未任命", "textColor": 16742144, "x": 48.5, "y": 134.5, "$t": "$eL" }, + "_Group3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 283, "width": 181, "x": 251, "y": 103, "$t": "$eG", "$eleC": ["_Image6", "imgModel0"] }, + "_Image6": { "source": "sbk_czch1", "x": 35, "y": 8, "$t": "$eI" }, + "imgModel0": { "horizontalCenter": -4, "source": "sbk_czp1", "y": 56, "$t": "$eI" }, + "modelGroup0": { + "bottom": 100, + "height": 525, + "right": 260, + "scaleX": 0.8, + "scaleY": 0.8, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": true, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image7", "_Image8", "_Image9", "_Image10"] + }, + "_Image7": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image8": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image9": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image10": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "modelGroup1": { + "bottom": 47, + "height": 525, + "right": 470, + "scaleX": 0.8, + "scaleY": 0.8, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": true, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image11", "_Image12", "_Image13", "_Image14"] + }, + "_Image11": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image12": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image13": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image14": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "modelGroup2": { + "bottom": 42, + "height": 525, + "right": 44, + "scaleX": 0.8, + "scaleY": 0.8, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": true, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image15", "_Image16", "_Image17", "_Image18"] + }, + "_Image15": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image16": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image17": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image18": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "name0": { "horizontalCenter": 0.5, "size": 20, "stroke": 2, "text": "斩你个娃儿", "textColor": 16742144, "verticalCenter": -81.5, "$t": "$eL" }, + "name1": { "horizontalCenter": -212.5, "size": 20, "stroke": 2, "text": "斩你个娃儿", "textColor": 16742144, "verticalCenter": -29.5, "$t": "$eL" }, + "name2": { "horizontalCenter": 212.5, "size": 20, "stroke": 2, "text": "斩你个娃儿", "textColor": 16742144, "verticalCenter": -26.5, "$t": "$eL" }, + "tabGrp1": { + "height": 491, + "visible": false, + "width": 707, + "x": 156, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image19", "_Image20", "_Image21", "actTimeLab2", "actDescLab", "_Image22", "_Image23", "_Image24", "_Image25", "_Scroller1", "dukeRewadr", "receliveBtn"] + }, + "_Image19": { "bottom": 0, "left": 0, "right": 0, "source": "com_bg_kuang_6_png", "top": 0, "$t": "$eI" }, + "_Image20": { "height": 36, "scale9Grid": "14,16,1,1", "source": "mail_bg", "width": 693, "x": 7, "y": 9, "$t": "$eI" }, + "_Image21": { "anchorOffsetY": 0, "height": 313, "scale9Grid": "14,16,1,1", "source": "mail_bg", "width": 693, "x": 7, "y": 51, "$t": "$eI" }, + "actTimeLab2": { "left": 21, "size": 20, "stroke": 2, "text": "活动时间:", "textColor": 15064527, "y": 16, "$t": "$eL" }, + "actDescLab": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 278.67, + "left": 21, + "lineSpacing": 5, + "size": 20, + "stroke": 2, + "text": "活动时间:", + "textColor": 15064527, + "width": 653, + "y": 67.38, + "$t": "$eL" + }, + "_Image22": { "source": "sbk_jlhd", "x": 11, "y": 376, "$t": "$eI" }, + "_Image23": { "source": "sbk_jlcz", "x": 297, "y": 376, "$t": "$eI" }, + "_Image24": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 76.5, "scale9Grid": "13,14,1,1", "source": "mail_bg", "width": 226.5, "x": 5.5, "y": 407, "$t": "$eI" }, + "_Image25": { "height": 76, "scale9Grid": "13,14,1,1", "source": "mail_bg", "width": 282, "x": 293, "y": 407, "$t": "$eI" }, + "_Scroller1": { "height": 60, "width": 205, "x": 15.5, "y": 415.5, "$t": "$eS", "viewport": "actReward" }, + "actReward": { "itemRendererSkinName": "ItemBaseSkin", "x": 15.5, "y": 415.5, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 4, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "dukeRewadr": { "itemRendererSkinName": "ItemBaseSkin", "x": 302.14, "y": 414.17, "$t": "$eLs", "layout": "_HorizontalLayout2", "dataProvider": "_ArrayCollection2" }, + "_HorizontalLayout2": { "gap": 4, "$t": "$eHL" }, + "_ArrayCollection2": { "$t": "eui.ArrayCollection", "source": ["_Object4", "_Object5", "_Object6"] }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "_Object6": { "null": "", "$t": "Object" }, + "receliveBtn": { "label": "领 取", "skinName": "Btn9Skin", "x": 583, "y": 426, "$t": "$eB" }, + "goBtn": { "label": "前往沙城", "skinName": "Btn9Skin", "x": 442, "y": 505, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "tabList", + "guildName", + "actTimeLab", + "imgModel1", + "appoint1", + "imgModel2", + "appoint2", + "imgModel0", + "modelGroup0", + "modelGroup1", + "modelGroup2", + "name0", + "name1", + "name2", + "tabGrp0", + "actTimeLab2", + "actDescLab", + "actReward", + "dukeRewadr", + "receliveBtn", + "tabGrp1", + "goBtn" + ], + "$sC": "$eSk" + }, + "SecretLandTreasureViewSkin": { + "$path": "resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml", + "$bs": { "height": 350, "width": 300, "$eleC": ["timeGrp", "_Group1", "itemData1", "itemData2", "itemData3"] }, + "timeGrp": { "height": 50, "left": 0, "right": 0, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["_Image1", "actTime"] }, + "_Image1": { "height": 31, "horizontalCenter": 0, "scale9Grid": "7,3,48,23", "source": "Act_dld_djs", "verticalCenter": 0, "width": 281, "$t": "$eI" }, + "actTime": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "", "textColor": 2682369, "verticalCenter": 0, "$t": "$eL" }, + "_Group1": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 50, + "touchChildren": false, + "touchEnabled": false, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Label1", "itemDesc1", "itemDesc2", "itemDesc3"] + }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "_Image3": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsk", "top": 0, "$t": "$eI" }, + "_Label1": { "size": 20, "text": "获得宝箱:", "textColor": 15779990, "x": 15, "y": 15, "$t": "$eL" }, + "itemDesc1": { "size": 20, "text": "秘境宝箱:10", "textColor": 15779990, "x": 110, "y": 75, "$t": "$eL" }, + "itemDesc2": { "size": 20, "text": "秘境宝箱:10", "textColor": 15779990, "x": 110, "y": 155, "$t": "$eL" }, + "itemDesc3": { "size": 20, "text": "秘境宝箱:10", "textColor": 15779990, "x": 110, "y": 235, "$t": "$eL" }, + "itemData1": { "skinName": "ItemBaseSkin", "x": 30, "y": 105, "$t": "app.ItemBase" }, + "itemData2": { "skinName": "ItemBaseSkin", "x": 30, "y": 185, "$t": "app.ItemBase" }, + "itemData3": { "skinName": "ItemBaseSkin", "x": 30, "y": 265, "$t": "app.ItemBase" }, + "$sP": ["actTime", "timeGrp", "itemDesc1", "itemDesc2", "itemDesc3", "itemData1", "itemData2", "itemData3"], + "$sC": "$eSk" + }, + "SetAIDropDownItemSkin": { + "$path": "resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml", + "$bs": { "height": 46, "width": 166, "$eleC": ["nameLbl"] }, + "nameLbl": { "horizontalCenter": -17.5, "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "y": 13, "$t": "$eL" }, + "$sP": ["nameLbl"], + "$s": { "up": {}, "down": {} }, + "$sC": "$eSk" + }, + "SetAIDropDownSkin": { + "$path": "resource/eui_skins/web/setup/SetAIDropDownSkin.exml", + "$bs": { "$eleC": ["_Group1"], "$sId": ["list", "_Label1"] }, + "_Group1": { "width": 166, "$t": "$eG", "$eleC": ["_Image1", "value", "btn"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "top": 0, "$t": "$eI" }, + "value": { "horizontalCenter": -17, "scaleX": 1, "scaleY": 1, "size": 21, "stroke": 2, "text": "回城卷轴随", "textColor": 26367, "y": 12, "$t": "$eL" }, + "list": { "itemRendererSkinName": "SetAIDropDownItemSkin", "y": 46, "$t": "$eLs" }, + "btn": { "label": "按钮", "skinName": "Btn13Skin", "touchEnabled": false, "x": 129, "y": 8, "$t": "$eTB" }, + "_Label1": { "size": 16, "text": "", "x": 4, "y": 40.8, "$t": "$eL" }, + "$sP": ["value", "list", "btn"], + "$s": { + "up": { + "$ssP": [ + { "target": "value", "name": "horizontalCenter", "value": -16.5 }, + { "target": "value", "name": "y", "value": 11 }, + { "target": "value", "name": "textColor", "value": 15064527 }, + { "target": "list", "name": "touchEnabled", "value": false }, + { "target": "btn", "name": "y", "value": 6 } + ], + "$saI": [{ "target": "_Label1", "property": "_Group1", "position": 1, "relativeTo": "" }] + }, + "down": { "$ssP": [{ "target": "list", "name": "touchEnabled", "value": true }], "$saI": [{ "target": "list", "property": "_Group1", "position": 2, "relativeTo": "btn" }] } + }, + "$sC": "$eSk" + }, + "SetDropDownItemSkin": { + "$path": "resource/eui_skins/web/setup/SetDropDownItemSkin.exml", + "$bs": { "height": 46, "width": 195, "$eleC": ["icon", "nameLbl"] }, + "icon": { "height": 40, "verticalCenter": 0, "width": 40, "x": 5, "$t": "$eI" }, + "nameLbl": { "horizontalCenter": 0, "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "y": 13, "$t": "$eL" }, + "$sP": ["icon", "nameLbl"], + "$s": { "up": {}, "down": {} }, + "$sC": "$eSk" + }, + "SetDropDownSkin": { + "$path": "resource/eui_skins/web/setup/SetDropDownSkin.exml", + "$bs": { "$eleC": ["_Group2"], "$sId": ["list"] }, + "_Group2": { "width": 201, "$t": "$eG", "$eleC": ["_Group1", "_Image1", "icon", "value", "btn"] }, + "_Group1": { "height": 46, "visible": false, "width": 46, "$t": "$eG" }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "top": 0, "$t": "$eI" }, + "icon": { "height": 40, "source": "", "width": 40, "x": 4, "y": 3, "$t": "$eI" }, + "value": { "horizontalCenter": -2, "scaleX": 1, "scaleY": 1, "size": 21, "stroke": 2, "text": "回城卷轴随", "textColor": 15064527, "y": 13, "$t": "$eL" }, + "list": { "itemRendererSkinName": "SetDropDownItemSkin", "y": 46, "$t": "$eLs" }, + "btn": { "label": "按钮", "skinName": "Btn13Skin", "touchEnabled": false, "visible": false, "x": 163, "y": 8, "$t": "$eTB" }, + "$sP": ["icon", "value", "list", "btn"], + "$s": { + "up": { + "$ssP": [ + { "target": "icon", "name": "width", "value": 40 }, + { "target": "icon", "name": "height", "value": 40 }, + { "target": "icon", "name": "y", "value": 3 }, + { "target": "icon", "name": "x", "value": 4 }, + { "target": "list", "name": "touchEnabled", "value": false } + ] + }, + "down": { "$ssP": [{ "target": "list", "name": "touchEnabled", "value": true }], "$saI": [{ "target": "list", "property": "_Group2", "position": 2, "relativeTo": "btn" }] } + }, + "$sC": "$eSk" + }, + "SetUpAISkin": { + "$path": "resource/eui_skins/web/setup/SetUpAISkin.exml", + "$bs": { "height": 572, "width": 648, "$eleC": ["_Image1", "jobGrp1", "jobGrp2", "jobGrp3"] }, + "_Image1": { "source": "common_json.com_fengexian", "x": 60, "y": 71, "$t": "$eI" }, + "jobGrp1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 315, "visible": false, "width": 604, "x": 22, "y": 75, "$t": "$eG", "$eleC": ["isMaxHp1", "notPickItem1", "pickItem1", "ltItem1"] }, + "isMaxHp1": { "skinName": "SetUpCheckBox", "x": 21, "y": 18, "$t": "app.SetUpCheckBoxEui" }, + "notPickItem1": { "skinName": "SetUpCheckBox", "x": 21, "y": 88, "$t": "app.SetUpCheckBoxEui" }, + "pickItem1": { "skinName": "SetUpCheckBox", "x": 21, "y": 158, "$t": "app.SetUpCheckBoxEui" }, + "ltItem1": { "skinName": "SetUpCheckBox", "x": 21, "y": 228, "$t": "app.SetUpCheckBoxEui" }, + "jobGrp2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 472, + "visible": false, + "width": 604, + "x": 22, + "y": 66, + "$t": "$eG", + "$eleC": ["isAutoRelease2", "isPoison", "ltItem2", "petGrp", "cureGrp", "isAutoHemophagy2", "isAutoMaxHp2", "notPickItem2", "pickItem2", "isAutoReleaseArr2"] + }, + "isAutoRelease2": { "skinName": "SetUpCheckBox", "x": 30, "y": 9, "$t": "app.SetUpCheckBoxEui" }, + "isPoison": { "skinName": "SetUpCheckBox", "x": 30, "y": 60, "$t": "app.SetUpCheckBoxEui" }, + "ltItem2": { "skinName": "SetUpCheckBox", "x": 30, "y": 120, "$t": "app.SetUpCheckBoxEui" }, + "petGrp": { "visible": false, "x": 30, "y": 174, "$t": "$eG", "$eleC": ["isAutoSummon2"] }, + "isAutoSummon2": { "scaleX": 1, "scaleY": 1, "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "cureGrp": { "visible": false, "x": 30, "y": 234, "$t": "$eG", "$eleC": ["isCure2", "_Image2", "hpInput", "_Label1"] }, + "isCure2": { "name": "isCure2", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "$t": "$eCB" }, + "_Image2": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_3", "width": 93, "x": 159, "$t": "$eI" }, + "hpInput": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25, + "maxChars": 2, + "restrict": "0-9", + "scaleX": 1, + "scaleY": 1, + "size": 24, + "textAlign": "center", + "textColor": 14471870, + "width": 61, + "x": 165, + "y": 6, + "$t": "$eET" + }, + "_Label1": { "scaleX": 1, "scaleY": 1, "size": 19, "text": "%", "x": 229, "y": 9, "$t": "$eL" }, + "isAutoHemophagy2": { "skinName": "SetUpCheckBox", "visible": false, "x": 30, "y": 294, "$t": "app.SetUpCheckBoxEui" }, + "isAutoMaxHp2": { "skinName": "SetUpCheckBox", "visible": false, "x": 30, "y": 354, "$t": "app.SetUpCheckBoxEui" }, + "notPickItem2": { "skinName": "SetUpCheckBox", "visible": false, "x": 30, "y": 414, "$t": "app.SetUpCheckBoxEui" }, + "pickItem2": { "skinName": "SetUpCheckBox", "visible": false, "x": 30, "y": 474, "$t": "app.SetUpCheckBoxEui" }, + "isAutoReleaseArr2": { "skinName": "SetAIDropDownSkin", "visible": false, "x": 181, "y": 75, "$t": "app.SetAIDropDownView" }, + "jobGrp3": { + "height": 407, + "visible": false, + "width": 604, + "x": 32, + "y": 75, + "$t": "$eG", + "layout": "_VerticalLayout1", + "$eleC": ["isThunderbolt3", "isIceBluster3", "isRainFire3", "ltItem3", "isMaxHp3", "notPickItem3", "pickItem3"] + }, + "_VerticalLayout1": { "gap": 28, "paddingLeft": 21, "paddingRight": 0, "paddingTop": 9, "$t": "$eVL" }, + "isThunderbolt3": { "skinName": "SetUpCheckBox", "x": 21, "y": 8, "$t": "app.SetUpCheckBoxEui" }, + "isIceBluster3": { "skinName": "SetUpCheckBox", "x": 21, "y": 78, "$t": "app.SetUpCheckBoxEui" }, + "isRainFire3": { "skinName": "SetUpCheckBox", "x": 21, "y": 143, "$t": "app.SetUpCheckBoxEui" }, + "ltItem3": { "skinName": "SetUpCheckBox", "x": 31, "y": 153, "$t": "app.SetUpCheckBoxEui" }, + "isMaxHp3": { "skinName": "SetUpCheckBox", "x": 21, "y": 211, "$t": "app.SetUpCheckBoxEui" }, + "notPickItem3": { "skinName": "SetUpCheckBox", "x": 21, "y": 275, "$t": "app.SetUpCheckBoxEui" }, + "pickItem3": { "skinName": "SetUpCheckBox", "x": 21, "y": 339, "$t": "app.SetUpCheckBoxEui" }, + "$sP": [ + "isMaxHp1", + "notPickItem1", + "pickItem1", + "ltItem1", + "jobGrp1", + "isAutoRelease2", + "isPoison", + "ltItem2", + "isAutoSummon2", + "petGrp", + "isCure2", + "hpInput", + "cureGrp", + "isAutoHemophagy2", + "isAutoMaxHp2", + "notPickItem2", + "pickItem2", + "isAutoReleaseArr2", + "jobGrp2", + "isThunderbolt3", + "isIceBluster3", + "isRainFire3", + "ltItem3", + "isMaxHp3", + "notPickItem3", + "pickItem3", + "jobGrp3" + ], + "$sC": "$eSk" + }, + "SetUpBasicsSkin": { + "$path": "resource/eui_skins/web/setup/SetUpBasicsSkin.exml", + "$bs": { "$eleC": ["_Group1", "skillGroup"] }, + "_Group1": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 98, + "width": 579, + "x": 24, + "y": 67, + "$t": "$eG", + "layout": "_TileLayout1", + "$eleC": ["checkBox1", "checkBox2", "checkBox3", "checkBox4", "checkBox5", "autoTask", "counterAtk", "shieldPet"] + }, + "_TileLayout1": { "horizontalGap": 140, "requestedColumnCount": 4, "verticalGap": 14, "$t": "$eTL" }, + "checkBox1": { "name": "checkBox1", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "checkBox2": { "name": "checkBox2", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "checkBox3": { "name": "checkBox3", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "checkBox4": { "name": "checkBox4", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "checkBox5": { "name": "checkBox5", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "autoTask": { "name": "checkBox5", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "counterAtk": { "name": "checkBox5", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "shieldPet": { "name": "checkBox5", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "skillGroup": { "x": 23, "y": 220, "$t": "$eG", "layout": "_TileLayout2" }, + "_TileLayout2": { "horizontalGap": 140, "requestedColumnCount": 4, "verticalGap": 14, "$t": "$eTL" }, + "$sP": ["checkBox1", "checkBox2", "checkBox3", "checkBox4", "checkBox5", "autoTask", "counterAtk", "shieldPet", "skillGroup"], + "$sC": "$eSk" + }, + "SetUpDrugsSkin": { + "$path": "resource/eui_skins/web/setup/SetUpDrugsSkin.exml", + "$bs": { "$eleC": ["_Image1", "percentageBox", "percentageLab", "hpbox", "hpLab", "percentageGroup", "hpGroup", "labGroup"] }, + "_Image1": { "source": "common_json.com_fengexian", "x": 60, "y": 71, "$t": "$eI" }, + "percentageBox": { "name": "percentageBox", "scaleX": 1, "scaleY": 1, "skinName": "skins.RadioButtonSkin", "x": 42, "y": 23, "$t": "$eRB" }, + "percentageLab": { "size": 24, "stroke": 2, "text": "按百分比自动吃药", "textColor": 15064527, "x": 88, "y": 29, "$t": "$eL" }, + "hpbox": { "name": "hpbox", "scaleX": 1, "scaleY": 1, "skinName": "skins.RadioButtonSkin", "x": 385, "y": 23, "$t": "$eRB" }, + "hpLab": { "size": 24, "stroke": 2, "text": "按血量自动吃药", "textColor": 15064527, "x": 435, "y": 29, "$t": "$eL" }, + "percentageGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 327, + "width": 696, + "x": 4, + "y": 99, + "$t": "$eG", + "$eleC": ["_Group1", "_Group2", "_Group3", "_Group4", "_Group5", "_Label6", "_Label7", "_Label8", "_Label9", "_Label10"] + }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "name": "group_0", "width": 448, "x": 216, "y": 7, "$t": "$eG", "$eleC": ["_HSlider1", "_Label1"] }, + "_HSlider1": { "anchorOffsetX": 0, "name": "hslider", "scaleX": 1, "scaleY": 1, "skinName": "HSlider1Skin", "width": 309, "x": 0, "y": 0, "$t": "$eHS" }, + "_Label1": { "name": "hsLab", "size": 24, "stroke": 2, "text": "75%", "textColor": 15064527, "x": 364, "y": 3, "$t": "$eL" }, + "_Group2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "name": "group_1", "width": 448, "x": 216, "y": 77, "$t": "$eG", "$eleC": ["_HSlider2", "_Label2"] }, + "_HSlider2": { "anchorOffsetX": 0, "name": "hslider", "scaleX": 1, "scaleY": 1, "skinName": "HSlider1Skin", "width": 309, "x": 0, "y": 0, "$t": "$eHS" }, + "_Label2": { "name": "hsLab", "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "75%", "textColor": 15064527, "x": 364, "y": 3, "$t": "$eL" }, + "_Group3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "name": "group_2", "width": 448, "x": 216, "y": 147, "$t": "$eG", "$eleC": ["_HSlider3", "_Label3"] }, + "_HSlider3": { "anchorOffsetX": 0, "name": "hslider", "scaleX": 1, "scaleY": 1, "skinName": "HSlider1Skin", "width": 309, "x": 0, "y": 0, "$t": "$eHS" }, + "_Label3": { "name": "hsLab", "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "75%", "textColor": 15064527, "x": 364, "y": 3, "$t": "$eL" }, + "_Group4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "name": "group_3", "width": 448, "x": 216, "y": 217, "$t": "$eG", "$eleC": ["_HSlider4", "_Label4"] }, + "_HSlider4": { "anchorOffsetX": 0, "name": "hslider", "scaleX": 1, "scaleY": 1, "skinName": "HSlider1Skin", "width": 309, "x": 0, "y": 0, "$t": "$eHS" }, + "_Label4": { "name": "hsLab", "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "75%", "textColor": 15064527, "x": 364, "y": 3, "$t": "$eL" }, + "_Group5": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 31, "name": "group_4", "width": 448, "x": 216, "y": 287, "$t": "$eG", "$eleC": ["_HSlider5", "_Label5"] }, + "_HSlider5": { "anchorOffsetX": 0, "name": "hslider", "scaleX": 1, "scaleY": 1, "skinName": "HSlider1Skin", "width": 309, "x": 0, "y": 0, "$t": "$eHS" }, + "_Label5": { "name": "hsLab", "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "75%", "textColor": 15064527, "x": 364, "y": 3, "$t": "$eL" }, + "_Label6": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "强效金创药", "textColor": 15064527, "x": 50, "y": 8, "$t": "$eL" }, + "_Label7": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "太阳水", "textColor": 15064527, "x": 50, "y": 78, "$t": "$eL" }, + "_Label8": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "强效太阳水", "textColor": 15064527, "x": 50, "y": 148, "$t": "$eL" }, + "_Label9": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "万年雪霜", "textColor": 15064527, "x": 50, "y": 217, "$t": "$eL" }, + "_Label10": { "scaleX": 1, "scaleY": 1, "size": 24, "stroke": 2, "text": "疗伤药", "textColor": 15064527, "x": 50, "y": 287, "$t": "$eL" }, + "hpGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 294, + "visible": false, + "width": 661, + "x": 39, + "y": 97, + "$t": "$eG", + "$eleC": [ + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "_Image8", + "_Image9", + "_Image10", + "_Image11", + "hpCheckBox1", + "hpCheckBox2", + "hpCheckBox3", + "hpCheckBox4", + "hpCheckBox5", + "edit_hp", + "edit_hp_time", + "edit_mp", + "edit_mp_time", + "edit_moment_hp", + "edit_moment_hp_time", + "edit_moment_mp", + "edit_moment_mp_time", + "edit_therapy_hp", + "edit_therapy_hp_time", + "_Label11", + "_Label12", + "_Label13", + "_Label14", + "_Label15", + "_Label16", + "_Label17", + "_Label18", + "_Label19", + "_Label20", + "_Label21", + "_Label22", + "_Label23", + "_Label24", + "_Label25", + "_Label26", + "_Label27", + "_Label28", + "_Label29", + "_Label30" + ] + }, + "_Image2": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 277, "y": 1, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 447, "y": 1, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 277, "y": 65, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 447, "y": 65, "$t": "$eI" }, + "_Image6": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 277, "y": 131, "$t": "$eI" }, + "_Image7": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 447, "y": 131, "$t": "$eI" }, + "_Image8": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 277, "y": 196, "$t": "$eI" }, + "_Image9": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 447, "y": 196, "$t": "$eI" }, + "_Image10": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 277, "y": 258, "$t": "$eI" }, + "_Image11": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "smoothing": false, "source": "com_bg_kuang_3", "width": 93, "x": 447, "y": 258, "$t": "$eI" }, + "hpCheckBox1": { "name": "hpCheckBox1", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 2, "y": 1, "$t": "$eCB" }, + "hpCheckBox2": { "name": "hpCheckBox2", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 2, "y": 65, "$t": "$eCB" }, + "hpCheckBox3": { "name": "hpCheckBox3", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 2, "y": 129, "$t": "$eCB" }, + "hpCheckBox4": { "name": "hpCheckBox4", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 2, "y": 193, "$t": "$eCB" }, + "hpCheckBox5": { "name": "hpCheckBox5", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 2, "y": 257, "$t": "$eCB" }, + "edit_hp": { "height": 25, "maxChars": 6, "restrict": "0-9", "textColor": 14471870, "width": 90, "x": 278, "y": 8, "$t": "$eTI" }, + "edit_hp_time": { "height": 25, "maxChars": 5, "textColor": 14471870, "width": 90, "x": 449, "y": 8, "$t": "$eTI" }, + "edit_mp": { "height": 25, "maxChars": 6, "textColor": 14471870, "width": 90, "x": 278, "y": 73, "$t": "$eTI" }, + "edit_mp_time": { "height": 25, "maxChars": 5, "textColor": 14471870, "width": 90, "x": 448, "y": 73, "$t": "$eTI" }, + "edit_moment_hp": { "height": 25, "maxChars": 6, "textColor": 14471870, "width": 90, "x": 278, "y": 139, "$t": "$eTI" }, + "edit_moment_hp_time": { "height": 25, "maxChars": 5, "textColor": 14471870, "width": 90, "x": 448, "y": 139, "$t": "$eTI" }, + "edit_moment_mp": { "height": 25, "maxChars": 6, "textColor": 14471870, "width": 90, "x": 278, "y": 203, "$t": "$eTI" }, + "edit_moment_mp_time": { "height": 25, "maxChars": 5, "textColor": 14471870, "width": 90, "x": 448, "y": 203, "$t": "$eTI" }, + "edit_therapy_hp": { "height": 25, "maxChars": 6, "textColor": 14471870, "width": 90, "x": 278, "y": 265, "$t": "$eTI" }, + "edit_therapy_hp_time": { "height": 25, "maxChars": 5, "textColor": 14471870, "width": 90, "x": 449, "y": 265, "$t": "$eTI" }, + "_Label11": { "size": 26, "text": "强效金创药", "textColor": 14471870, "x": 43, "y": 6, "$t": "$eL" }, + "_Label12": { "size": 26, "text": "太阳水", "textColor": 14471870, "x": 43, "y": 70, "$t": "$eL" }, + "_Label13": { "size": 26, "text": "强效太阳水", "textColor": 14471870, "x": 43, "y": 134, "$t": "$eL" }, + "_Label14": { "size": 26, "text": "万年雪霜", "textColor": 14471870, "x": 43, "y": 199, "$t": "$eL" }, + "_Label15": { "size": 26, "text": "疗伤药", "textColor": 14471870, "x": 43, "y": 261, "$t": "$eL" }, + "_Label16": { "size": 26, "text": "剩余HP", "textColor": 14471870, "x": 180, "y": 6, "$t": "$eL" }, + "_Label17": { "size": 26, "text": "剩余HP", "textColor": 14471870, "x": 180, "y": 70, "$t": "$eL" }, + "_Label18": { "size": 26, "text": "剩余HP", "textColor": 14471870, "x": 180, "y": 134, "$t": "$eL" }, + "_Label19": { "size": 26, "text": "剩余HP", "textColor": 14471870, "x": 180, "y": 199, "$t": "$eL" }, + "_Label20": { "size": 26, "text": "剩余HP", "textColor": 14471870, "x": 180, "y": 261, "$t": "$eL" }, + "_Label21": { "size": 26, "text": "间隔", "textColor": 14471870, "x": 383, "y": 6, "$t": "$eL" }, + "_Label22": { "size": 26, "text": "间隔", "textColor": 14471870, "x": 383, "y": 70, "$t": "$eL" }, + "_Label23": { "size": 26, "text": "间隔", "textColor": 14471870, "x": 383, "y": 134, "$t": "$eL" }, + "_Label24": { "size": 26, "text": "间隔", "textColor": 14471870, "x": 383, "y": 199, "$t": "$eL" }, + "_Label25": { "size": 26, "text": "间隔", "textColor": 14471870, "x": 383, "y": 261, "$t": "$eL" }, + "_Label26": { "size": 26, "text": "毫秒", "textColor": 14471870, "x": 550, "y": 6, "$t": "$eL" }, + "_Label27": { "size": 26, "text": "毫秒", "textColor": 14471870, "x": 550, "y": 70, "$t": "$eL" }, + "_Label28": { "size": 26, "text": "毫秒", "textColor": 14471870, "x": 550, "y": 134, "$t": "$eL" }, + "_Label29": { "size": 26, "text": "毫秒", "textColor": 14471870, "x": 550, "y": 199, "$t": "$eL" }, + "_Label30": { "size": 26, "text": "毫秒", "textColor": 14471870, "x": 550, "y": 261, "$t": "$eL" }, + "labGroup": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 129, + "visible": false, + "width": 661, + "x": 44, + "y": 405, + "$t": "$eG", + "$eleC": ["_Label31", "_Label32", "_Label33", "_Label34", "_Label35", "_Label36", "_Label37", "_Label38"] + }, + "_Label31": { "bold": true, "size": 18, "text": "普通红药:", "textColor": 11025950, "x": 17, "y": 21, "$t": "$eL" }, + "_Label32": { "bold": true, "size": 18, "text": "普通蓝药:", "textColor": 11025950, "x": 17, "y": 48, "$t": "$eL" }, + "_Label33": { "bold": true, "size": 18, "text": "瞬回红药:", "textColor": 11025950, "x": 17, "y": 75, "$t": "$eL" }, + "_Label34": { "bold": true, "size": 18, "text": "瞬回蓝药:", "textColor": 11025950, "x": 17, "y": 99, "$t": "$eL" }, + "_Label35": { "name": "txt_desc_0", "size": 18, "text": "普通红药描述", "textColor": 15252861, "width": 550, "x": 100, "y": 21, "$t": "$eL" }, + "_Label36": { "name": "txt_desc_1", "size": 18, "text": "普通红药描述", "textColor": 15252861, "width": 550, "x": 100, "y": 48, "$t": "$eL" }, + "_Label37": { "name": "txt_desc_2", "size": 18, "text": "瞬回红药描述", "textColor": 15252861, "width": 550, "x": 100, "y": 75, "$t": "$eL" }, + "_Label38": { "name": "txt_desc_3", "size": 18, "text": "瞬回蓝药描述", "textColor": 15252861, "width": 550, "x": 100, "y": 99, "$t": "$eL" }, + "$sP": [ + "percentageBox", + "percentageLab", + "hpbox", + "hpLab", + "percentageGroup", + "hpCheckBox1", + "hpCheckBox2", + "hpCheckBox3", + "hpCheckBox4", + "hpCheckBox5", + "edit_hp", + "edit_hp_time", + "edit_mp", + "edit_mp_time", + "edit_moment_hp", + "edit_moment_hp_time", + "edit_moment_mp", + "edit_moment_mp_time", + "edit_therapy_hp", + "edit_therapy_hp_time", + "hpGroup", + "labGroup" + ], + "$sC": "$eSk" + }, + "SetUpItemSkin": { + "$path": "resource/eui_skins/web/setup/SetUpItemSkin.exml", + "$bs": { "$eleC": ["dropDownBtn", "dropDownImage", "pickUp", "tabRed", "pickUpAll", "tabRedAll", "list", "dropDownGroup"] }, + "dropDownBtn": { "label": "", "skinName": "Btn9Skin", "x": 474, "y": 511, "$t": "$eB" }, + "dropDownImage": { "source": "com_ljt_2", "touchEnabled": false, "visible": false, "x": 567, "y": 526, "$t": "$eI" }, + "pickUp": { "name": "pickUp", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "visible": false, "x": 381, "y": 14, "$t": "$eCB" }, + "tabRed": { "name": "tabRed", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "visible": false, "x": 621, "y": 16, "$t": "$eCB" }, + "pickUpAll": { "name": "pickUpAll", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 43, "y": 514, "$t": "$eCB" }, + "tabRedAll": { "name": "tabRedAll", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 262, "y": 514, "$t": "$eCB" }, + "list": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 434, "touchChildren": true, "touchEnabled": false, "width": 725, "x": 2, "y": 63, "$t": "$eG", "$eleC": ["_Scroller1", "_List1"] }, + "_Scroller1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 430, "name": "scroller", "scaleX": 1, "scaleY": 1, "width": 727, "x": -2, "y": 0, "$t": "$eS" }, + "_List1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "name": "list", "scaleX": 1, "scaleY": 1, "x": 0, "y": 0, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 1, "$t": "$eVL" }, + "dropDownGroup": { "bottom": 50, "visible": false, "width": 120, "x": 468.64, "$t": "$eG", "$eleC": ["_Image1", "dropDownList"] }, + "_Image1": { "bottom": -7, "left": 0, "right": 0, "scale9Grid": "12,13,8,5", "source": "9s_bg_2", "top": -7, "$t": "$eI" }, + "dropDownList": { "horizontalCenter": 0, "itemRendererSkinName": "Btn9Skin", "y": 0, "$t": "$eLs" }, + "$sP": ["dropDownBtn", "dropDownImage", "pickUp", "tabRed", "pickUpAll", "tabRedAll", "list", "dropDownList", "dropDownGroup"], + "$sC": "$eSk" + }, + "SetUpListItemSkin": { + "$path": "resource/eui_skins/web/setup/SetUpListItemSkin.exml", + "$bs": { "height": 45, "width": 725, "$eleC": ["bg", "txt_name", "check_pick_up", "check_marked_red"] }, + "bg": { "anchorOffsetX": 0, "height": 45, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 725, "$t": "$eI" }, + "txt_name": { "size": 18, "stroke": 2, "text": "", "textAlign": "center", "textColor": 15655172, "verticalAlign": "justify", "x": 23, "y": 14, "$t": "$eL" }, + "check_pick_up": { "name": "tabRed", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 381, "y": 4, "$t": "$eCB" }, + "check_marked_red": { "name": "tabRed", "scaleX": 1, "scaleY": 1, "skinName": "CheckBox2", "x": 621, "y": 4, "$t": "$eCB" }, + "$sP": ["bg", "txt_name", "check_pick_up", "check_marked_red"], + "$sC": "$eSk" + }, + "SetUpProtectSkin": { + "$path": "resource/eui_skins/web/setup/SetUpProtectSkin.exml", + "$bs": { + "$eleC": ["_Image1", "_Image2", "_Image3", "_Label1", "_Label2", "warnHp", "warnHp2", "_Label3", "_Label4", "hp1Input", "hp2Input", "hp2Drop", "hp1Drop", "_Label5", "_Label6", "_Label7"] + }, + "_Image1": { "source": "common_json.com_fengexian", "x": 60, "y": 71, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_3", "width": 93, "x": 219, "y": 120, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "height": 35, "scale9Grid": "12,13,8,5", "scaleX": 1, "scaleY": 1, "source": "com_bg_kuang_3", "width": 93, "x": 219, "y": 209.34, "$t": "$eI" }, + "_Label1": { "size": 24, "stroke": 2, "text": "回城保护", "textColor": 13744500, "x": 44, "y": 89, "$t": "$eL" }, + "_Label2": { "size": 24, "stroke": 2, "text": "随机保护", "textColor": 13744500, "x": 44, "y": 180.34, "$t": "$eL" }, + "warnHp": { "name": "openSound", "skinName": "SetUpCheckBox", "x": 41, "y": 119, "$t": "app.SetUpCheckBoxEui" }, + "warnHp2": { "name": "openSound", "skinName": "SetUpCheckBox", "x": 41, "y": 208.34, "$t": "app.SetUpCheckBoxEui" }, + "_Label3": { "size": 24, "text": "时使用", "textColor": 14471870, "x": 340, "y": 125, "$t": "$eL" }, + "_Label4": { "size": 24, "text": "时使用", "textColor": 14471870, "x": 340, "y": 215.34, "$t": "$eL" }, + "hp1Input": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25, + "restrict": "0-9", + "size": 24, + "stroke": 2, + "textAlign": "center", + "textColor": 15064527, + "width": 81, + "x": 223, + "y": 126, + "$t": "$eET" + }, + "hp2Input": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 25, + "restrict": "0-9", + "size": 24, + "stroke": 2, + "textAlign": "center", + "textColor": 15064527, + "width": 81, + "x": 223, + "y": 215.34, + "$t": "$eET" + }, + "hp2Drop": { "skinName": "SetDropDownSkin", "touchChildren": false, "touchEnabled": false, "x": 447, "y": 204.34, "$t": "app.SetDropDownView" }, + "hp1Drop": { "skinName": "SetDropDownSkin", "touchChildren": false, "touchEnabled": false, "x": 447, "y": 117, "$t": "app.SetDropDownView" }, + "_Label5": { "right": 0, "size": 18, "text": "注意:在不能使用随机的地图,随机保护无效", "textColor": 16711680, "y": 258.34, "$t": "$eL" }, + "_Label6": { "right": 0, "size": 18, "text": "注意:救主灵刃保护时,将不会触发回城保护", "textColor": 16711680, "y": 175.34, "$t": "$eL" }, + "_Label7": { "right": 0, "size": 18, "text": "注意:救主灵刃保护时,将不会触发随机保护", "textColor": 16711680, "y": 287.34, "$t": "$eL" }, + "$sP": ["warnHp", "warnHp2", "hp1Input", "hp2Input", "hp2Drop", "hp1Drop"], + "$sC": "$eSk" + }, + "SetUpRecycleItemCheckBoxSkin": { + "$path": "resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml", + "$bs": { "height": 36, "width": 147, "$eleC": ["box", "rect"] }, + "box": { "name": "openSound", "skinName": "SetUpCheckBox", "$t": "app.SetUpCheckBoxEui" }, + "rect": { "fillAlpha": 0, "height": 55, "width": 55, "x": -10, "y": -10, "$t": "$eR" }, + "$sP": ["box", "rect"], + "$sC": "$eSk" + }, + "SetUpRecycleItemSkin": { + "$path": "resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml", + "$bs": { "$eleC": ["title", "boxList"] }, + "title": { "size": 24, "stroke": 2, "text": "回收选项", "textColor": 15779990, "y": 3, "$t": "$eL" }, + "boxList": { "itemRendererSkinName": "SetUpRecycleItemCheckBoxSkin", "width": 688, "y": 29, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { "horizontalGap": 22, "requestedColumnCount": 4, "verticalGap": 3, "$t": "$eTL" }, + "$sP": ["title", "boxList"], + "$sC": "$eSk" + }, + "SetUpRecycleSkin": { + "$path": "resource/eui_skins/web/setup/SetUpRecycleSkin.exml", + "$bs": { "height": 555, "width": 701, "$eleC": ["_Label1", "smartRecycle", "rect", "defaultGrp", "recycle", "effGrp"] }, + "_Label1": { "size": 24, "stroke": 2, "text": "特权", "textColor": 15779990, "x": 25, "y": 23, "$t": "$eL" }, + "smartRecycle": { "name": "openSound", "skinName": "SetUpCheckBox", "x": 95, "y": 17, "$t": "app.SetUpCheckBoxEui" }, + "rect": { "fillAlpha": 0, "height": 38, "width": 38, "x": 92.8, "y": 16.2, "$t": "$eR" }, + "defaultGrp": { "anchorOffsetY": 0, "height": 436, "width": 677, "x": 24, "y": 65, "$t": "$eG", "$eleC": ["boxScroller"] }, + "boxScroller": { "bottom": 0, "left": 0, "right": 0, "scrollPolicyH": "off", "top": 0, "$t": "$eS", "viewport": "boxList" }, + "boxList": { "itemRendererSkinName": "SetUpRecycleItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 3, "$t": "$eVL" }, + "recycle": { "label": "一键回收", "skinName": "Btn9Skin", "x": 291, "y": 514, "$t": "$eB" }, + "effGrp": { "height": 0, "touchEnabled": false, "width": 0, "x": 338, "y": 533, "$t": "$eG", "$eleC": ["clseGroup"] }, + "clseGroup": { "height": 35, "visible": false, "width": 35, "x": -15, "y": -20, "$t": "$eG" }, + "$sP": ["smartRecycle", "rect", "boxList", "boxScroller", "defaultGrp", "recycle", "clseGroup", "effGrp"], + "$sC": "$eSk" + }, + "SetUpSkin": { + "$path": "resource/eui_skins/web/setup/SetUpSkin.exml", + "$bs": { "height": 644, "width": 909, "$eleC": ["dragDropUI", "_Image1", "bg2", "tabBar", "_Image2", "pageGrp", "resetButton", "helpBtn"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 568, "scale9Grid": "6,6,8,6", "source": "com_bg_kuang_xian1", "visible": false, "width": 150, "x": 8, "y": 43, "$t": "$eI" }, + "bg2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 568, "scale9Grid": "6,6,8,6", "source": "com_bg_kuang_xian1", "visible": false, "width": 733, "x": 158, "y": 43, "$t": "$eI" }, + "tabBar": { "itemRendererSkinName": "TradeLineTabSkin", "x": 18, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "horizontalAlign": "center", "paddingLeft": 4, "paddingTop": 4, "$t": "$eVL" }, + "_Image2": { "source": "com_bg_kuang_4_png", "x": 169, "y": 52, "$t": "$eI" }, + "pageGrp": { "anchorOffsetX": 0, "height": 557, "touchChildren": true, "touchEnabled": false, "width": 711, "x": 177, "y": 56.66, "$t": "$eG" }, + "resetButton": { "label": "", "skinName": "Btn9Skin", "x": 770, "y": 567.66, "$t": "$eB" }, + "helpBtn": { "label": "Button", "ruleId": "4", "x": 184, "y": 577.66, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "bg2", "tabBar", "pageGrp", "resetButton", "helpBtn"], + "$sC": "$eSk" + }, + "SetUpSystemSkin": { + "$path": "resource/eui_skins/web/setup/SetUpSystemSkin.exml?v=1", + "$bs": { + "height": 470, + "$eleC": ["_Image1", "_Image2", "rockerImg", "openSound", "openBgSound", "highQuality", "lowQuality", "swimShow", "closeEff", "closeMap", "scale1", "scale2", "scale3", "rocker1", "rocker2"] + }, + "_Image1": { "source": "common_json.com_fengexian", "x": 60, "y": 65, "$t": "$eI" }, + "_Image2": { "source": "common_json.com_fengexian", "x": 60, "y": 293, "$t": "$eI" }, + "rockerImg": { "source": "com_fengexian", "visible": false, "x": 60, "y": 413, "$t": "$eI" }, + "openSound": { "name": "openSound", "skinName": "SetUpCheckBox", "x": 38, "y": 87, "$t": "app.SetUpCheckBoxEui" }, + "openBgSound": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 264, "y": 87, "$t": "app.SetUpCheckBoxEui" }, + "highQuality": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 38, "y": 141, "$t": "app.SetUpCheckBoxEui" }, + "lowQuality": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 264, "y": 141, "$t": "app.SetUpCheckBoxEui" }, + "swimShow": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 488, "y": 141, "$t": "app.SetUpCheckBoxEui" }, + "closeEff": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 38, "y": 195, "$t": "app.SetUpCheckBoxEui" }, + "closeMap": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 264, "y": 195, "$t": "app.SetUpCheckBoxEui" }, + "scale1": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 38, "y": 315, "$t": "app.SetUpCheckBoxEui" }, + "scale2": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 264, "y": 315, "$t": "app.SetUpCheckBoxEui" }, + "scale3": { "name": "openBgSound", "skinName": "SetUpCheckBox", "x": 488, "y": 315, "$t": "app.SetUpCheckBoxEui" }, + "rocker1": { "name": "openBgSound", "skinName": "SetUpCheckBox", "visible": false, "x": 38, "y": 435, "$t": "app.SetUpCheckBoxEui" }, + "rocker2": { "name": "openBgSound", "skinName": "SetUpCheckBox", "visible": false, "x": 264, "y": 435, "$t": "app.SetUpCheckBoxEui" }, + "$sP": ["rockerImg", "openSound", "openBgSound", "highQuality", "lowQuality", "swimShow", "closeEff", "closeMap", "scale1", "scale2", "scale3", "rocker1", "rocker2"], + "$sC": "$eSk" + }, + + "ShopBatchBuySkin": { + "$path": "resource/eui_skins/web/shop/ShopBatchBuySkin.exml", + "$bs": { "height": 346, "width": 478, "$eleC": ["_Group2"] }, + "_Group2": { + "height": 340, + "width": 478, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": [ + "dragDropUI", + "_Image1", + "itemData", + "itemName", + "_Image2", + "scroller", + "btnLessLess", + "btnLess", + "btnAdd", + "btnAddadd", + "_Image3", + "btnBuy", + "btnCannel", + "_Label1", + "_Label2", + "lbCount", + "lbPrice", + "icon_item", + "icon_Itemprite", + "lbNum" + ] + }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "x": 0, "y": 0, "$t": "app.UIViewFrame" }, + "_Image1": { "scale9Grid": "222,95,27,17", "source": "chat_bg_bg1_png", "visible": false, "x": 17.63, "y": 54.66, "$t": "$eI" }, + "itemData": { "skinName": "ItemBaseSkin", "x": 51.98, "y": 72.66, "$t": "app.ItemBase" }, + "itemName": { "bold": true, "size": 23, "stroke": 2, "text": "", "textColor": 15064527, "x": 125, "y": 73, "$t": "$eL" }, + "_Image2": { "horizontalCenter": 3, "source": "bag_fengexian", "verticalCenter": -30, "width": 448, "x": 12, "y": 88, "$t": "$eI" }, + "scroller": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 71, "scrollPolicyH": "off", "width": 411, "x": 33, "y": 145, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["itemDesc"] }, + "itemDesc": { "horizontalCenter": 2.5, "lineSpacing": 5, "scaleX": 1, "scaleY": 1, "size": 19, "text": "", "textColor": 3708413, "width": 411, "x": 3, "y": 1, "$t": "$eL" }, + "btnLessLess": { "icon": "com_jianjian", "label": "Button", "skinName": "Btn0Skin", "x": 35.31, "y": 218.02, "$t": "$eB" }, + "btnLess": { "icon": "com_jian", "label": "Button", "skinName": "Btn0Skin", "x": 74.11, "y": 217.02, "$t": "$eB" }, + "btnAdd": { "icon": "com_jia", "label": "Button", "skinName": "Btn0Skin", "x": 225.11, "y": 217.02, "$t": "$eB" }, + "btnAddadd": { "icon": "com_jiajia", "label": "Button", "skinName": "Btn0Skin", "x": 263.31, "y": 217.02, "$t": "$eB" }, + "_Image3": { "bottom": 90, "height": 36, "horizontalCenter": -74, "scale9Grid": "5,5,32,32", "source": "bag_piliangbg_0", "width": 99.6, "$t": "$eI" }, + "btnBuy": { "bottom": 12, "height": 44, "horizontalCenter": 90.5, "label": "购 买", "width": 109, "$t": "$eB", "skinName": "ShopBatchBuySkin$Skin296" }, + "btnCannel": { "bottom": 12, "height": 44, "horizontalCenter": -79.5, "label": "取 消", "width": 109, "$t": "$eB", "skinName": "ShopBatchBuySkin$Skin297" }, + "_Label1": { "size": 20, "stroke": 2, "text": "总价:", "textColor": 15779990, "x": 309, "y": 222, "$t": "$eL" }, + "_Label2": { "size": 20, "stroke": 2, "text": "单价:", "textColor": 15451538, "x": 126, "y": 109, "$t": "$eL" }, + "lbCount": { "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "x": 393, "y": 222, "$t": "$eL" }, + "lbPrice": { "size": 20, "stroke": 2, "text": "", "textColor": 15779990, "x": 209, "y": 110, "$t": "$eL" }, + "icon_item": { "anchorOffsetX": 0, "anchorOffsetY": 0, "scaleX": 0.7, "scaleY": 0.7, "source": "13123", "x": 352, "y": 210, "$t": "$eI" }, + "icon_Itemprite": { "scaleX": 0.7, "scaleY": 0.7, "source": "13123", "x": 169, "y": 97, "$t": "$eI" }, + "lbNum": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 26.67, + "horizontalCenter": -76, + "verticalCenter": 61, + "restrict": "0-9", + "size": 18, + "text": "", + "textAlign": "center", + "verticalAlign": "middle", + "width": 80, + "$t": "$eET" + }, + "$sP": [ + "dragDropUI", + "itemData", + "itemName", + "itemDesc", + "scroller", + "btnLessLess", + "btnLess", + "btnAdd", + "btnAddadd", + "btnBuy", + "btnCannel", + "lbCount", + "lbPrice", + "icon_item", + "icon_Itemprite", + "lbNum" + ], + "$sC": "$eSk" + }, + "ShopBatchBuySkin$Skin296": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ShopBatchBuySkin$Skin297": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + + "ShopHotViewSkin": { + "$path": "resource/eui_skins/web/shop/ShopHotViewSkin.exml", + "$bs": { "currentState": "odd", "height": 64, "width": 62, "$eleC": [], "$sId": ["hotdualGp", "hotOddGp"] }, + "hotdualGp": { "height": 64, "width": 62, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "hotIon1", "dualNum_0", "dualNum_1", "dualText"] }, + "_Image1": { "source": "shop_jiaobiao", "x": 0, "y": 0, "$t": "$eI" }, + "hotIon1": { "source": "shop_rexiao", "visible": false, "x": 1, "y": 0, "$t": "$eI" }, + "dualNum_0": { "source": "shop_zhekou_7", "x": -2, "y": 2, "$t": "$eI" }, + "dualNum_1": { "source": "shop_zhekou_5", "x": 5, "y": -5, "$t": "$eI" }, + "dualText": { "source": "shop_zhekou_bg", "x": 5, "y": -5, "$t": "$eI" }, + "hotOddGp": { "height": 64, "width": 62, "y": 0, "$t": "$eG", "$eleC": ["_Image2", "hotIon0", "oddNum", "oddText"] }, + "_Image2": { "source": "shop_jiaobiao", "x": 0, "y": 0, "$t": "$eI" }, + "hotIon0": { "source": "shop_rexiao", "visible": false, "x": 1, "y": 0, "$t": "$eI" }, + "oddNum": { "source": "shop_zhekou_1", "x": 1, "y": -1, "$t": "$eI" }, + "oddText": { "source": "shop_zhekou_bg", "x": 3, "y": -2, "$t": "$eI" }, + "$sP": ["hotIon1", "dualNum_0", "dualNum_1", "dualText", "hotdualGp", "hotIon0", "oddNum", "oddText", "hotOddGp"], + "$s": { + "odd": { "$saI": [{ "target": "hotOddGp", "property": "", "position": 1, "relativeTo": "" }] }, + "dual": { "$saI": [{ "target": "hotdualGp", "property": "", "position": 0, "relativeTo": "" }] } + }, + "$sC": "$eSk" + }, + "ShopItemViewSkin": { + "$path": "resource/eui_skins/web/shop/ShopItemViewSkin.exml", + "$bs": { "height": 143, "width": 224, "$eleC": ["gp"] }, + "gp": { "height": 143, "width": 224, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["bg", "_Image1", "_Image2", "shopItemNameLb", "surplusCountLb", "goodsItem", "countLb"] }, + "bg": { "source": "shop_bg", "x": 0, "y": 0, "$t": "$eI" }, + "_Image1": { "source": "shop_iconk", "x": 22, "y": 63, "$t": "$eI" }, + "_Image2": { "source": "shop_bg_xian", "x": 11, "y": 43, "$t": "$eI" }, + "shopItemNameLb": { "horizontalCenter": -4, "size": 22, "stroke": 2, "text": "绑定金币", "textColor": 15779990, "verticalCenter": -43.5, "$t": "$eL" }, + "surplusCountLb": { "height": 20, "width": 112, "x": 103, "y": 64, "$t": "$eG", "$eleC": ["numTxt", "numLb"] }, + "numTxt": { "horizontalCenter": -10, "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": 0, "width": 91, "x": 0, "y": 1, "$t": "$eL" }, + "numLb": { "size": 18, "stroke": 2, "text": "", "textColor": 15064527, "width": 32, "x": 81, "y": 0.7, "$t": "$eL" }, + "goodsItem": { "source": "11027", "x": 22.33, "y": 63.67, "$t": "$eI" }, + "countLb": { "right": 142, "size": 18, "stroke": 1, "text": "10", "textColor": 14471870, "y": 105, "$t": "$eL" }, + "$sP": ["bg", "shopItemNameLb", "numTxt", "numLb", "surplusCountLb", "goodsItem", "countLb", "gp"], + "$sC": "$eSk" + }, + "ShopQQViewSkin": { + "$path": "resource/eui_skins/web/shop/ShopQQViewSkin.exml", + "$bs": { "height": 645, "width": 910, "$eleC": ["win"] }, + "win": { "height": 645, "width": 910, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["dragDropUI", "_Image1", "optTab", "_Group1", "btnExchangeMoney", "txt0", "_RuleTipsButton1", "_Image2", "openBlue"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "source": "banner_lzshangcheng", "x": 187, "y": 57, "$t": "$eI" }, + "optTab": { "anchorOffsetX": 0, "itemRendererSkinName": "TradeLineTabSkin", "x": 28, "y": 61, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "_Group1": { "height": 405, "touchEnabled": false, "width": 697, "x": 188, "y": 161, "$t": "$eG", "$eleC": ["noListTipsLb", "scroller"] }, + "noListTipsLb": { "horizontalCenter": 0, "stroke": 1, "text": "", "textAlign": "center", "textColor": 14471870, "verticalAlign": "middle", "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "scroller": { "height": 400, "$t": "$eS", "viewport": "gList" }, + "gList": { "itemRendererSkinName": "ShopItemViewSkin", "x": 3, "y": 0, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { + "horizontalAlign": "center", + "horizontalGap": 7, + "orientation": "rows", + "paddingLeft": 10, + "paddingTop": 5, + "requestedColumnCount": 3, + "verticalAlign": "middle", + "verticalGap": 5, + "$t": "$eTL" + }, + "btnExchangeMoney": { "height": 46, "label": "兑换绑金", "skinName": "Btn30Skin", "visible": false, "width": 113, "x": 758, "y": 564, "$t": "$eB" }, + "txt0": { "horizontalCenter": -325.5, "size": 22, "text": "", "textColor": 15779990, "verticalCenter": 265, "visible": false, "x": 68, "y": 569, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "17", "x": 33, "y": 570.33, "$t": "app.RuleTipsButton" }, + "_Image2": { "source": "com_bg_kuang_4_png", "x": 180, "y": 52.32, "$t": "$eI" }, + "openBlue": { "height": 32, "icon": "lz_ktlzbt", "label": "", "scaleX": 1.2, "scaleY": 1.2, "skinName": "Btn0Skin", "width": 156, "x": 695, "y": 79.32, "$t": "$eB" }, + "$sP": ["dragDropUI", "optTab", "noListTipsLb", "gList", "scroller", "btnExchangeMoney", "txt0", "openBlue", "win"], + "$sC": "$eSk" + }, + "ShopTarBtnItemSkin": { + "$path": "resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml", + "$bs": { "height": 63, "width": 140, "$eleC": ["labelDisplay"], "$sId": ["select", "selected"] }, + "select": { "smoothing": false, "source": "shop_yeqian_1", "x": 4, "y": 4, "$t": "$eI" }, + "selected": { "source": "shop_yeqian_2", "x": 0, "y": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 24, "text": "", "textAlign": "center", "textColor": 15779990, "verticalAlign": "middle", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["select", "selected", "labelDisplay"], + "$s": { + "down": { + "$ssP": [ + { "target": "", "name": "width", "value": 140 }, + { "target": "", "name": "height", "value": 63 } + ], + "$saI": [{ "target": "selected", "property": "", "position": 2, "relativeTo": "labelDisplay" }] + }, + "up": { + "$ssP": [ + { "target": "", "name": "width", "value": 140 }, + { "target": "", "name": "height", "value": 63 } + ], + "$saI": [{ "target": "select", "property": "", "position": 0, "relativeTo": "" }] + } + }, + "$sC": "$eSk" + }, + "ShopViewSkin": { + "$path": "resource/eui_skins/web/shop/ShopViewSkin.exml", + "$bs": { "height": 645, "width": 910, "$eleC": ["win"] }, + "win": { "height": 645, "width": 910, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["dragDropUI", "optTab", "_Group1", "btnExchangeMoney", "txt0", "_RuleTipsButton1", "_Image3"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "optTab": { "anchorOffsetX": 0, "itemRendererSkinName": "TradeLineTabSkin", "x": 28, "y": 61, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -3, "horizontalAlign": "center", "$t": "$eVL" }, + "_Group1": { "height": 496, "touchEnabled": false, "width": 697, "x": 185, "y": 56, "$t": "$eG", "$eleC": ["bannerGrp", "noListTipsLb", "scroller"] }, + "bannerGrp": { "horizontalCenter": 0, "$t": "$eG", "$eleC": ["imgBanner", "_Image1", "_Image2", "timeLabel"] }, + "imgBanner": { "source": "shop_yybsc", "$t": "$eI" }, + "_Image1": { "source": "shop_yyb_bannert", "x": 365, "y": 39, "$t": "$eI" }, + "_Image2": { "source": "shop_yyb_bannert2", "x": 173, "y": 14, "$t": "$eI" }, + "timeLabel": { "right": 15, "scaleX": 1, "scaleY": 1, "size": 18, "stroke": 2, "text": "倒计时:3天29小时59分", "textColor": 2682369, "y": 75, "$t": "$eL" }, + "noListTipsLb": { "horizontalCenter": 0, "stroke": 1, "text": "", "textAlign": "center", "textColor": 14471870, "verticalAlign": "middle", "verticalCenter": 0, "visible": false, "$t": "$eL" }, + "scroller": { "bottom": 5, "top": 0, "$t": "$eS", "viewport": "gList" }, + "gList": { "height": 503, "itemRendererSkinName": "ShopItemViewSkin", "x": 3, "y": 0, "$t": "$eLs", "layout": "_TileLayout1" }, + "_TileLayout1": { + "horizontalAlign": "center", + "horizontalGap": 7, + "orientation": "rows", + "paddingLeft": 10, + "paddingTop": 10, + "requestedColumnCount": 3, + "verticalAlign": "middle", + "verticalGap": 5, + "$t": "$eTL" + }, + "btnExchangeMoney": { "height": 46, "label": "兑换绑金", "skinName": "Btn30Skin", "visible": false, "width": 113, "x": 758, "y": 564, "$t": "$eB" }, + "txt0": { "horizontalCenter": -325.5, "size": 22, "text": "", "textColor": 15779990, "verticalCenter": 265, "visible": false, "x": 68, "y": 569, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "17", "x": 33, "y": 570.33, "$t": "app.RuleTipsButton" }, + "_Image3": { "source": "com_bg_kuang_4_png", "x": 180, "y": 52.32, "$t": "$eI" }, + "$sP": ["dragDropUI", "optTab", "imgBanner", "timeLabel", "bannerGrp", "noListTipsLb", "gList", "scroller", "btnExchangeMoney", "txt0", "win"], + "$sC": "$eSk" + }, + "SoldierSoulLevelViewSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml", + "$bs": { "height": 562, "width": 709, "$eleC": ["_Group3"] }, + "_Group3": { + "height": 562, + "touchEnabled": false, + "width": 709, + "$t": "$eG", + "$eleC": ["_Image1", "weaponTips", "weaponEff", "_Group2", "btnUp", "_Image5", "curLV", "nextLv", "_Image6", "gCurList", "gNextList", "lbMax", "lbMax0", "costList", "txt_get", "redPoint"] + }, + "_Image1": { "horizontalCenter": 0, "source": "sw_bh_bg1_png", "verticalCenter": 0, "$t": "$eI" }, + "weaponTips": { "right": 37, "source": "sw_bh_Lv_4", "top": 43, "$t": "$eI" }, + "weaponEff": { "touchChildren": false, "touchEnabled": false, "x": 342, "y": 127, "$t": "$eG" }, + "_Group2": { "horizontalCenter": 0, "y": 31, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["weaponName", "_Image2", "_Group1"] }, + "_HorizontalLayout2": { "gap": -6, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "weaponName": { "scaleX": 1, "scaleY": 1, "source": "sw_bh_mc1", "$t": "$eI" }, + "_Image2": { "source": "sw_bh_dj11", "x": 6, "y": 2, "$t": "$eI" }, + "_Group1": { "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["curOrder", "_Image3", "_Image4"] }, + "_HorizontalLayout1": { "gap": -8, "horizontalAlign": "center", "paddingLeft": -9, "paddingTop": 1, "verticalAlign": "middle", "$t": "$eHL" }, + "curOrder": { "font": "SoldierSoul_fnt_fnt", "letterSpacing": -12, "scaleX": 1, "scaleY": 1, "text": "30", "$t": "$eBL" }, + "_Image3": { "source": "sw_bh_dj10", "x": 15, "y": 10, "$t": "$eI" }, + "_Image4": { "source": "sw_bh_dj12", "x": 16, "y": 12, "$t": "$eI" }, + "btnUp": { "horizontalCenter": -9, "label": "立即升级", "skinName": "Btn9Skin", "verticalCenter": 230, "$t": "$eB" }, + "_Image5": { "height": 188, "horizontalCenter": 0, "scale9Grid": "17,0,415,94", "source": "sw_bh_bg2", "y": 284, "$t": "$eI" }, + "curLV": { "left": 141, "size": 22, "stroke": 2, "text": "当前等级:9", "textColor": 14602500, "y": 259, "$t": "$eL" }, + "nextLv": { "left": 400, "size": 22, "stroke": 2, "text": "下一等级:10", "textColor": 14602500, "y": 259, "$t": "$eL" }, + "_Image6": { "source": "sx_jiantou", "x": 319, "y": 327, "$t": "$eI" }, + "gCurList": { "horizontalCenter": -121.5, "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": 65.5, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "gNextList": { "horizontalCenter": 126, "itemRendererSkinName": "FourImagesAttrItemNextSkin", "name": "list", "verticalCenter": 65.5, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 6, "$t": "$eVL" }, + "lbMax": { "size": 20, "text": "青龙之魂已达满阶", "textColor": 14724725, "x": 268, "y": 449, "$t": "$eL" }, + "lbMax0": { "size": 20, "text": "已满级", "textColor": 14724725, "visible": false, "x": 428, "y": 299, "$t": "$eL" }, + "costList": { "itemRendererSkinName": "FourImagesCostItemSkin", "x": 134, "y": 418, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 4, "$t": "$eVL" }, + "txt_get": { "bottom": 37, "italic": false, "multiline": false, "right": 84, "size": 20, "text": "获取道具", "textAlign": "left", "textColor": 3341312, "$t": "$eL" }, + "redPoint": { "visible": false, "x": 387.69, "y": 483.98, "$t": "app.RedDotControl" }, + "$sP": ["weaponTips", "weaponEff", "weaponName", "curOrder", "btnUp", "curLV", "nextLv", "gCurList", "gNextList", "lbMax", "lbMax0", "costList", "txt_get", "redPoint"], + "$sC": "$eSk" + }, + "SoldierSoulOrderViewSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml", + "$bs": { "height": 562, "width": 709, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 562, + "touchEnabled": false, + "width": 709, + "$t": "$eG", + "$eleC": [ + "_Image1", + "_Image2", + "curOrder", + "btnUp", + "_Image3", + "curLV", + "nextLv", + "_Image4", + "gCurList", + "gNextList", + "lbMax", + "lbMax0", + "costList", + "txt_get", + "weaponEff", + "specialCurLab", + "specialNextLab", + "gCurList0", + "gNextList0", + "weaponTips", + "redPoint" + ] + }, + "_Image1": { "horizontalCenter": 0, "source": "sw_bh_bg1_png", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "source": "jiejikuang", "x": 81, "y": 35, "$t": "$eI" }, + "curOrder": { "font": "fourImage_fnt", "horizontalCenter": -254.5, "text": "二十阶", "verticalCenter": -192, "width": 27, "$t": "$eBL" }, + "btnUp": { "horizontalCenter": -9, "label": "立即升阶", "skinName": "Btn9Skin", "verticalCenter": 230, "$t": "$eB" }, + "_Image3": { "height": 188, "horizontalCenter": 0, "scale9Grid": "9,0,426,94", "source": "sw_bh_bg2", "y": 284, "$t": "$eI" }, + "curLV": { "left": 141, "size": 22, "stroke": 2, "text": "当前等级:9", "textColor": 14602500, "y": 259, "$t": "$eL" }, + "nextLv": { "left": 400, "size": 22, "stroke": 2, "text": "下一等级:10", "textColor": 14602500, "y": 259, "$t": "$eL" }, + "_Image4": { "source": "sx_jiantou", "verticalCenter": 64, "x": 319, "$t": "$eI" }, + "gCurList": { "horizontalCenter": -121.5, "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "verticalCenter": 17, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "gNextList": { "horizontalCenter": 126, "itemRendererSkinName": "FourImagesAttrItemNextSkin", "name": "list", "verticalCenter": 17, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 6, "$t": "$eVL" }, + "lbMax": { "size": 20, "text": "青龙之魂已达满阶", "textColor": 14724725, "x": 268, "y": 421, "$t": "$eL" }, + "lbMax0": { "size": 20, "text": "已满阶", "textColor": 14724725, "visible": false, "x": 428, "y": 299, "$t": "$eL" }, + "costList": { "itemRendererSkinName": "FourImagesCostItemSkin", "x": 134, "y": 419, "$t": "$eLs", "layout": "_VerticalLayout3" }, + "_VerticalLayout3": { "gap": 4, "$t": "$eVL" }, + "txt_get": { "bottom": 37, "italic": false, "multiline": false, "right": 84, "size": 20, "text": "获取道具", "textAlign": "left", "textColor": 3341312, "$t": "$eL" }, + "weaponEff": { "touchChildren": false, "touchEnabled": false, "x": 342, "y": 127, "$t": "$eG" }, + "specialCurLab": { "size": 20, "stroke": 2, "text": "血饮BUFF属性:", "textColor": 13928514, "visible": false, "x": 141, "y": 324, "$t": "$eL" }, + "specialNextLab": { "size": 20, "stroke": 2, "text": "血饮BUFF属性:", "textColor": 13928514, "visible": false, "x": 400, "y": 324, "$t": "$eL" }, + "gCurList0": { "horizontalCenter": -121.5, "itemRendererSkinName": "FourImagesAttrItemCurSkin", "name": "list", "visible": false, "y": 348, "$t": "$eLs", "layout": "_VerticalLayout4" }, + "_VerticalLayout4": { "gap": -2, "$t": "$eVL" }, + "gNextList0": { "horizontalCenter": 126.5, "itemRendererSkinName": "FourImagesAttrItemNextSkin", "name": "list", "visible": false, "y": 347, "$t": "$eLs", "layout": "_VerticalLayout5" }, + "_VerticalLayout5": { "gap": -5, "$t": "$eVL" }, + "weaponTips": { "right": 27, "source": "sw_bh_1", "top": 40, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 386.35, "y": 484.65, "$t": "app.RedDotControl" }, + "$sP": [ + "curOrder", + "btnUp", + "curLV", + "nextLv", + "gCurList", + "gNextList", + "lbMax", + "lbMax0", + "costList", + "txt_get", + "weaponEff", + "specialCurLab", + "specialNextLab", + "gCurList0", + "gNextList0", + "weaponTips", + "redPoint" + ], + "$sC": "$eSk" + }, + "SoldierSoulTabSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml", + "$bs": { "height": 119, "width": 131, "$eleC": ["_Image1", "weaponIcon", "weaponName", "_Image2", "redPoint"] }, + "_Image1": { "source": "sw_bh_icon0", "$t": "$eI" }, + "weaponIcon": { "source": "sw_bh_icon3", "x": 30, "y": 12, "$t": "$eI" }, + "weaponName": { "source": "sw_bh_mc1", "x": 21, "y": 84, "$t": "$eI" }, + "_Image2": { "source": "sw_bh_icon5", "x": 20, "$t": "$eI" }, + "redPoint": { "visible": false, "x": 93, "y": 4, "$t": "app.RedDotControl" }, + "$sP": ["weaponIcon", "weaponName", "redPoint"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": {} }, + "$sC": "$eSk" + }, + "SoldierSoulUpRefineViewSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml", + "$bs": { + "height": 562, + "width": 709, + "$eleC": [ + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "_Image7", + "btnRefining", + "_Image8", + "_Image9", + "itemIcon", + "_Scroller1", + "btnReplace", + "lbFail", + "listCurAttr", + "listMoney", + "listGoods", + "lbShowDesc", + "lbReplaceState", + "upTips" + ] + }, + "_Image1": { "horizontalCenter": -1.5, "source": "forge_bg4_png", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 200, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 211, "x": 84.99, "y": 148, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 192, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 614, "x": 65.33, "y": 357.97, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 200, "scale9Grid": "22,20,1,1", "source": "forge_bg3", "width": 211, "x": 430.95, "y": 148, "$t": "$eI" }, + "_Image5": { "source": "forge_btjt", "x": 331.66, "y": 199.62, "$t": "$eI" }, + "_Image6": { "source": "forge_bt2", "x": 467.71, "y": 158.32, "$t": "$eI" }, + "_Image7": { "source": "forge_bt1", "x": 95.64, "y": 158.65, "$t": "$eI" }, + "btnRefining": { "horizontalCenter": 18, "label": "洗 炼", "skinName": "Btn9Skin", "y": 494, "$t": "$eB" }, + "_Image8": { "horizontalCenter": 18, "source": "achievement_json.ach_xunzhangbg", "y": 24, "$t": "$eI" }, + "_Image9": { "height": 60, "source": "quality_4", "width": 60, "x": 344, "y": 53, "$t": "$eI" }, + "itemIcon": { "height": 60, "width": 60, "x": 344, "y": 53, "$t": "$eI" }, + "_Scroller1": { "anchorOffsetY": 0, "height": 112, "width": 200, "x": 437, "y": 190, "$t": "$eS", "viewport": "listNewAttr" }, + "listNewAttr": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeRefiningAttrItemSkin", "width": 200, "x": 619, "y": 190, "$t": "$eLs" }, + "btnReplace": { "label": "替 换", "skinName": "Btn9Skin", "visible": false, "x": 484, "y": 298, "$t": "$eB" }, + "lbFail": { "size": 18, "text": "很遗憾您洗炼失败了", "textColor": 15869478, "visible": false, "x": 456, "y": 235, "$t": "$eL" }, + "listCurAttr": { "horizontalCenter": -164, "itemRendererSkinName": "ForgeRefiningCurrAttrItemSkin", "width": 199, "y": 190, "$t": "$eLs" }, + "listMoney": { "anchorOffsetX": 0, "anchorOffsetY": 0, "itemRendererSkinName": "ForgeRefiningMoneyItemSkin", "width": 226, "x": 77, "y": 370, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "listGoods": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 123, + "horizontalCenter": 109, + "itemRendererSkinName": "ForgeRefiningNeedGoodsItem", + "y": 371, + "$t": "$eLs", + "layout": "_HorizontalLayout1" + }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "lbShowDesc": { "borderColor": 14166313, "horizontalCenter": 14.5, "size": 18, "text": "查看详情", "textColor": 15106630, "y": 131, "$t": "$eL" }, + "lbReplaceState": { "size": 17, "text": "更好极品属性\n已自动替换", "textAlign": "center", "textColor": 15779990, "visible": false, "x": 486.26, "y": 307, "$t": "$eL" }, + "upTips": { "size": 20, "stroke": 2, "text": "救主灵刃3阶后可升星", "textColor": 16742144, "x": 79, "y": 511, "$t": "$eL" }, + "$sP": ["btnRefining", "itemIcon", "listNewAttr", "btnReplace", "lbFail", "listCurAttr", "listMoney", "listGoods", "lbShowDesc", "lbReplaceState", "upTips"], + "$sC": "$eSk" + }, + "SoldierSoulUpStarViewSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml", + "$bs": { + "height": 562, + "width": 709, + "$eleC": [ + "_Image1", + "_Image2", + "_Image3", + "_Image4", + "_Image5", + "_Image6", + "btnUpStar", + "_Image7", + "_Image8", + "itemIcon", + "listMoney", + "listNextAttr", + "listCurAttr", + "listGoods", + "group_star", + "_Image9", + "lbTitle", + "rateLabel", + "lbMax", + "upTips" + ] + }, + "_Image1": { "horizontalCenter": -1.5, "source": "forge_bg4_png", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "height": 147, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 185, "x": 149, "y": 207, "$t": "$eI" }, + "_Image3": { "height": 147, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 185, "x": 405, "y": 204, "$t": "$eI" }, + "_Image4": { "height": 192, "scale9Grid": "22,21,1,1", "source": "forge_bg3", "width": 614, "x": 66, "y": 357, "$t": "$eI" }, + "_Image5": { "source": "forge_bt4", "x": 422, "y": 217, "$t": "$eI" }, + "_Image6": { "source": "forge_bt3", "x": 166, "y": 218, "$t": "$eI" }, + "btnUpStar": { "label": "升 星", "skinName": "Btn9Skin", "x": 306, "y": 499, "$t": "$eB" }, + "_Image7": { "horizontalCenter": 18, "source": "ach_xunzhangbg", "y": 24, "$t": "$eI" }, + "_Image8": { "height": 60, "source": "quality_4", "width": 60, "x": 344, "y": 53, "$t": "$eI" }, + "itemIcon": { "height": 60, "width": 60, "x": 344, "y": 53, "$t": "$eI" }, + "listMoney": { "itemRendererSkinName": "ForgeRefiningMoneyItemSkin", "width": 226, "x": 72, "y": 370, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 6, "$t": "$eVL" }, + "listNextAttr": { "itemRendererSkinName": "ForgeUpStarNextArrtItemSkin", "width": 178, "x": 415, "y": 249, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 0, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eVL" }, + "listCurAttr": { "horizontalCenter": -105, "itemRendererSkinName": "ForgeUpStarCurrAttrItemSkin", "width": 175, "y": 249, "$t": "$eLs" }, + "listGoods": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 105.67, + "horizontalCenter": 69, + "itemRendererSkinName": "ForgeRefiningNeedGoodsItem", + "y": 377, + "$t": "$eLs", + "layout": "_HorizontalLayout1" + }, + "_HorizontalLayout1": { "horizontalAlign": "center", "$t": "$eHL" }, + "group_star": { + "x": 183, + "y": 160, + "$t": "$eG", + "layout": "_HorizontalLayout2", + "$eleC": ["imgStar1", "imgStar2", "imgStar3", "imgStar4", "imgStar5", "imgStar6", "imgStar7", "imgStar8", "imgStar9", "imgStar10", "imgStar11", "imgStar12"] + }, + "_HorizontalLayout2": { "gap": 0, "horizontalAlign": "left", "$t": "$eHL" }, + "imgStar1": { "source": "forge_xxbg", "x": 15, "y": 17, "$t": "$eI" }, + "imgStar2": { "source": "forge_xxbg", "x": 25, "y": 27, "$t": "$eI" }, + "imgStar3": { "source": "forge_xxbg", "x": 35, "y": 37, "$t": "$eI" }, + "imgStar4": { "source": "forge_xxbg", "x": 45, "y": 47, "$t": "$eI" }, + "imgStar5": { "source": "forge_xxbg", "x": 55, "y": 57, "$t": "$eI" }, + "imgStar6": { "source": "forge_xxbg", "x": 65, "y": 67, "$t": "$eI" }, + "imgStar7": { "source": "forge_xxbg", "x": 75, "y": 77, "$t": "$eI" }, + "imgStar8": { "source": "forge_xxbg", "x": 85, "y": 87, "$t": "$eI" }, + "imgStar9": { "source": "forge_xxbg", "x": 95, "y": 97, "$t": "$eI" }, + "imgStar10": { "source": "forge_xxbg", "x": 105, "y": 107, "$t": "$eI" }, + "imgStar11": { "source": "forge_xxbg", "x": 115, "y": 117, "$t": "$eI" }, + "imgStar12": { "source": "forge_xxbg", "x": 125, "y": 127, "$t": "$eI" }, + "_Image9": { "source": "forge_json.forge_sxjt", "x": 329, "y": 234, "$t": "$eI" }, + "lbTitle": { "horizontalCenter": 16.5, "size": 20, "stroke": 1, "text": "黄金裁决", "textAlign": "center", "textColor": 16742144, "y": 131, "$t": "$eL" }, + "rateLabel": { "size": 18, "stroke": 2, "text": "", "textColor": 14724725, "x": 514, "y": 503, "$t": "$eL" }, + "lbMax": { "size": 23, "text": "已满星", "textColor": 15779990, "visible": false, "x": 462, "y": 267, "$t": "$eL" }, + "upTips": { "size": 20, "stroke": 2, "text": "救主灵刃3阶后可升星", "textColor": 16742144, "x": 79, "y": 511, "$t": "$eL" }, + "$sP": [ + "btnUpStar", + "itemIcon", + "listMoney", + "listNextAttr", + "listCurAttr", + "listGoods", + "imgStar1", + "imgStar2", + "imgStar3", + "imgStar4", + "imgStar5", + "imgStar6", + "imgStar7", + "imgStar8", + "imgStar9", + "imgStar10", + "imgStar11", + "imgStar12", + "group_star", + "lbTitle", + "rateLabel", + "lbMax", + "upTips" + ], + "$sC": "$eSk" + }, + "SoldierSoulWinSkin": { + "$path": "resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_Group1", "tabBar", "_Group2", "ruleTips"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "_Group1": { "height": 562, "touchEnabled": false, "width": 864, "x": 22.67, "y": 56.34, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "_Scroller1", "infoGrp"] }, + "_Image1": { "bottom": 0, "left": 0, "scale9Grid": "17,19,2,4", "smoothing": false, "source": "com_bg_kuang_6_png", "top": 0, "width": 149, "$t": "$eI" }, + "_Image2": { "bottom": 0, "right": 0, "scale9Grid": "17,19,2,4", "smoothing": false, "source": "com_bg_kuang_6_png", "top": 0, "width": 709, "$t": "$eI" }, + "_Scroller1": { "height": 542, "x": 3, "y": 14, "$t": "$eS", "viewport": "weaponTab" }, + "weaponTab": { "itemRendererSkinName": "SoldierSoulTabSkin", "x": 13, "y": 22, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 12, "paddingLeft": 8, "$t": "$eVL" }, + "infoGrp": { "height": 562, "right": 0, "touchEnabled": false, "width": 709, "y": 0, "$t": "$eG" }, + "tabBar": { "height": 552, "itemRendererSkinName": "CommonTarBtnWinSkin2", "width": 45, "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": -11, "$t": "$eVL" }, + "_Group2": { "touchChildren": false, "touchEnabled": false, "x": 937, "y": 39, "$t": "$eG", "layout": "_VerticalLayout3", "$eleC": ["redPoint1", "redPoint2"] }, + "_VerticalLayout3": { "gap": 80, "$t": "$eVL" }, + "redPoint1": { "height": 20, "visible": false, "width": 20, "x": 109, "y": 46, "$t": "app.RedDotControl" }, + "redPoint2": { "height": 20, "visible": false, "width": 20, "x": 119, "y": 56, "$t": "app.RedDotControl" }, + "ruleTips": { "label": "", "x": 185, "y": 65, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "weaponTab", "infoGrp", "tabBar", "redPoint1", "redPoint2", "ruleTips"], + "$sC": "$eSk" + }, + "MainTaskButtonSkin": { + "$path": "resource/eui_skins/web/task/MainTaskButtonSkin.exml", + "$bs": { "height": 233, "width": 20, "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "2,2,16,16", "source": "m_task_btn_2bg", "top": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0.5, "source": "m_task_btn_2", "verticalCenter": 0.5, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 }, + { "target": "_Image2", "name": "scaleX", "value": 0.98 }, + { "target": "_Image2", "name": "scaleY", "value": 0.98 } + ] + } + }, + "$sC": "$eSk" + }, + "MainTaskItemSkin": { + "$path": "resource/eui_skins/web/task/MainTaskItemSkin.exml", + "$bs": { "width": 236, "$eleC": ["rect", "isSelectImg", "_Group2", "flyGrp", "completeImg"] }, + "rect": { "bottom": 6, "fillAlpha": 0, "left": 0, "right": 9, "top": 0, "$t": "$eR" }, + "isSelectImg": { "bottom": 6, "left": 0, "right": 0, "scale9Grid": "27,28,4,2", "source": "m_task_xuanzhongkuang", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Group2": { "touchEnabled": false, "x": 3.5, "$t": "$eG", "layout": "_VerticalLayout4", "$eleC": ["allGrp", "_Image1"] }, + "_VerticalLayout4": { "gap": 5, "$t": "$eVL" }, + "allGrp": { + "scaleX": 1, + "scaleY": 1, + "touchEnabled": false, + "x": 3.5, + "y": 0, + "$t": "$eG", + "layout": "_VerticalLayout3", + "$eleC": ["_Group1", "taskContent", "taskCirceGrp", "taskSendGrp", "taskTips", "taskBtn"] + }, + "_VerticalLayout3": { "gap": 8, "$t": "$eVL" }, + "_Group1": { "touchChildren": false, "touchEnabled": false, "$t": "$eG", "$eleC": ["taskName"] }, + "taskName": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 15655172, "x": 1, "y": 10, "$t": "$eL" }, + "taskContent": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 15064527, "touchEnabled": false, "width": 454, "x": 60, "y": 59, "$t": "$eL" }, + "taskCirceGrp": { "touchChildren": false, "touchEnabled": false, "x": 10, "y": 10, "$t": "$eG", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "$t": "$eVL" }, + "taskSendGrp": { "touchEnabled": false, "width": 228, "x": 0, "y": 0, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["taskflyGrp0", "taskflyGrp1"] }, + "_VerticalLayout2": { "gap": 4, "$t": "$eVL" }, + "taskflyGrp0": { "touchEnabled": false, "x": 26, "y": 4, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["taskSend0", "taskSend1", "taskSend2"] }, + "_HorizontalLayout1": { "gap": 13, "$t": "$eHL" }, + "taskSend0": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -90, "y": 0, "$t": "$eL" }, + "taskSend1": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -48, "y": 0, "$t": "$eL" }, + "taskSend2": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -6, "y": 0, "$t": "$eL" }, + "taskflyGrp1": { "touchEnabled": false, "x": 36, "y": 14, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["taskSend3", "taskSend4", "taskSend5"] }, + "_HorizontalLayout2": { "gap": 13, "$t": "$eHL" }, + "taskSend3": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -90, "y": 0, "$t": "$eL" }, + "taskSend4": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -48, "y": 0, "$t": "$eL" }, + "taskSend5": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": -6, "y": 0, "$t": "$eL" }, + "taskTips": { "lineSpacing": 10, "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 15064527, "touchEnabled": false, "width": 464, "x": 80, "y": 79, "$t": "$eL" }, + "taskBtn": { "scaleX": 0.5, "scaleY": 0.5, "size": 36, "stroke": 2.5, "text": "", "textColor": 2682369, "x": 80, "y": 79, "$t": "$eL" }, + "_Image1": { "bottom": 0, "horizontalCenter": 0, "source": "m_task_fengexian", "touchEnabled": false, "$t": "$eI" }, + "flyGrp": { "right": 3, "touchChildren": false, "visible": false, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["_Image2", "flyShoeLab"] }, + "_HorizontalLayout3": { "gap": -9, "verticalAlign": "middle", "$t": "$eHL" }, + "_Image2": { "anchorOffsetX": 20, "anchorOffsetY": 20, "height": 40, "rotation": -90, "source": "13132", "width": 40, "y": 2, "$t": "$eI" }, + "flyShoeLab": { "scaleX": 1, "scaleY": 1, "size": 15, "stroke": 1, "text": "免费传送", "textColor": 8388352, "visible": false, "x": 29, "y": 8, "$t": "$eL" }, + "completeImg": { "right": 9, "source": "m_task_yiwancheng", "top": 1, "touchEnabled": false, "visible": false, "$t": "$eI" }, + "$sP": [ + "rect", + "isSelectImg", + "taskName", + "taskContent", + "taskCirceGrp", + "taskSend0", + "taskSend1", + "taskSend2", + "taskflyGrp0", + "taskSend3", + "taskSend4", + "taskSend5", + "taskflyGrp1", + "taskSendGrp", + "taskTips", + "taskBtn", + "allGrp", + "flyShoeLab", + "flyGrp", + "completeImg" + ], + "$sC": "$eSk" + }, + "MainTaskWinSkin": { + "$path": "resource/eui_skins/web/task/MainTaskWinSkin.exml", + "$bs": { "height": 236, "maxHeight": 233, "width": 320, "$eleC": ["shrinkBtn", "unfoldBtn", "teamBtn", "taskRect", "teamRect", "bgImg", "unfoldGrp", "effGrp", "teamGrp"] }, + "shrinkBtn": { "height": 109, "icon": "m_task_bg1", "label": "", "right": 1, "skinName": "Btn0Skin", "width": 48, "y": -5, "$t": "$eB" }, + "unfoldBtn": { "height": 50, "icon": "m_task_bg3", "label": "", "right": -1, "scaleX": 1, "skinName": "Btn0Skin", "verticalCenter": 0, "width": 50, "$t": "$eB" }, + "teamBtn": { "height": 104, "icon": "m_task_bg2", "label": "Button", "skinName": "Btn0Skin", "width": 48, "x": 271, "y": 132, "$t": "$eB" }, + "taskRect": { "source": "m_task_bgh", "touchEnabled": false, "visible": false, "x": 270.5, "y": -7, "$t": "$eI" }, + "teamRect": { "scaleY": -1, "source": "m_task_bgh", "touchEnabled": false, "x": 270.5, "y": 244.5, "$t": "$eI" }, + "bgImg": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 233.5, "scale9Grid": "11,9,1,1", "source": "m_task_k", "width": 253, "x": 19, "y": 0.5, "$t": "$eI" }, + "unfoldGrp": { "x": 24, "y": 7, "$t": "$eG", "$eleC": ["taskScroller"] }, + "taskScroller": { "height": 220, "maxHeight": 210, "scrollPolicyH": "off", "width": 242, "$t": "$eS", "viewport": "taskList" }, + "taskList": { "itemRendererSkinName": "MainTaskItemSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "paddingLeft": 1, "$t": "$eVL" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 63, "y": 29, "$t": "$eG" }, + "teamGrp": { "height": 221, "visible": false, "width": 245, "x": 23.5, "y": 9, "$t": "$eG", "$eleC": ["_Scroller1", "slidingImg", "btnGrp", "btnGrp1"] }, + "_Scroller1": { "height": 202, "width": 233, "x": 4.5, "y": 3.5, "$t": "$eS", "viewport": "teamList" }, + "teamList": { "itemRendererSkinName": "TeamMainItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 2.2, "$t": "$eVL" }, + "slidingImg": { "horizontalCenter": 0, "source": "m_task_jiantou", "y": 207.8, "$t": "$eI" }, + "btnGrp": { "touchEnabled": false, "x": 2, "y": 185, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["inviteTeamBtn", "invitePlayerBtn"] }, + "_HorizontalLayout1": { "gap": 1, "$t": "$eHL" }, + "inviteTeamBtn": { "height": 34, "label": "邀请组队", "width": 121, "x": 55, "y": 72, "$t": "$eB", "skinName": "MainTaskWinSkin$Skin298" }, + "invitePlayerBtn": { "height": 34, "label": "附近玩家", "width": 121, "x": 65, "y": 82, "$t": "$eB", "skinName": "MainTaskWinSkin$Skin299" }, + "btnGrp1": { "touchEnabled": false, "x": 60, "y": 31.65, "$t": "$eG", "layout": "_VerticalLayout3", "$eleC": ["inviteTeamBtn1", "invitePlayerBtn1", "isTeam"] }, + "_VerticalLayout3": { "gap": 22, "horizontalAlign": "left", "$t": "$eVL" }, + "inviteTeamBtn1": { "height": 44, "label": "邀请组队", "width": 129, "x": 55, "y": 72, "$t": "$eB", "skinName": "MainTaskWinSkin$Skin300" }, + "invitePlayerBtn1": { "height": 44, "label": "附近队伍", "width": 129, "x": 65, "y": 82, "$t": "$eB", "skinName": "MainTaskWinSkin$Skin301" }, + "isTeam": { "name": "openSound", "scaleX": 1, "scaleY": 1, "skinName": "SetUpCheckBox", "x": 0, "y": 107, "$t": "app.SetUpCheckBoxEui" }, + "$sP": [ + "shrinkBtn", + "unfoldBtn", + "teamBtn", + "taskRect", + "teamRect", + "bgImg", + "taskList", + "taskScroller", + "unfoldGrp", + "effGrp", + "teamList", + "slidingImg", + "inviteTeamBtn", + "invitePlayerBtn", + "btnGrp", + "inviteTeamBtn1", + "invitePlayerBtn1", + "isTeam", + "btnGrp1", + "teamGrp" + ], + "$sC": "$eSk" + }, + "MainTaskWinSkin$Skin298": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn" }] } + }, + "$sC": "$eSk" + }, + "MainTaskWinSkin$Skin299": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15064527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn" }] } + }, + "$sC": "$eSk" + }, + "MainTaskWinSkin$Skin300": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn3" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn3" }] } + }, + "$sC": "$eSk" + }, + "MainTaskWinSkin$Skin301": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "m_task_btn3", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "m_task_btn3" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "m_task_btn3" }] } + }, + "$sC": "$eSk" + }, + "TaskInfoWinSkin": { + "$path": "resource/eui_skins/web/task/TaskInfoWinSkin.exml", + "$bs": { "height": 445, "width": 413, "$eleC": ["dragDropUI", "_Image1", "_Image2", "rewardImg", "taskDesc", "taskAims", "_Scroller1", "sureBtn", "effGrp", "autoTask"] }, + "dragDropUI": { "currentState": "default10", "height": 445, "skinName": "UIViewFrameSkin", "$t": "app.UIViewFrame" }, + "_Image1": { "height": 383, "scale9Grid": "10,7,2,2", "source": "com_bg_kuang_xian1", "width": 386, "x": 14, "y": 48, "$t": "$eI" }, + "_Image2": { "left": 23, "source": "task_biaoti_1", "top": 57, "$t": "$eI" }, + "rewardImg": { "bottom": 169, "left": 23, "source": "task_biaoti_2", "$t": "$eI" }, + "taskDesc": { "height": 114, "horizontalCenter": 2.5, "lineSpacing": 7, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": -70.5, "width": 362, "$t": "$eL" }, + "taskAims": { "horizontalCenter": -2, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": 10.5, "width": 353, "$t": "$eL" }, + "_Scroller1": { "bottom": 101, "horizontalCenter": 1.5, "width": 348, "$t": "$eS", "viewport": "rewardList" }, + "rewardList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 12, "$t": "$eHL" }, + "sureBtn": { "bottom": 35, "horizontalCenter": 0, "label": "接收任务", "skinName": "Btn9Skin", "$t": "$eB" }, + "effGrp": { "touchEnabled": false, "x": 205.33, "y": 388.33, "$t": "$eG" }, + "autoTask": { "right": 20, "size": 15, "stroke": 2, "text": "无操作2秒后自动点击", "textColor": 2682369, "touchEnabled": false, "y": 410, "$t": "$eL" }, + "$sP": ["dragDropUI", "rewardImg", "taskDesc", "taskAims", "rewardList", "sureBtn", "effGrp", "autoTask"], + "$sC": "$eSk" + }, + "TaskInfoWinSkin2": { + "$path": "resource/eui_skins/web/task/TaskInfoWinSkin2.exml", + "$bs": { "height": 478, "width": 469, "$eleC": ["dragDropUI", "title", "rewardImg", "taskDesc", "taskAims", "_Scroller1", "sureBtn", "effGrp", "autoTask", "closeBtn"] }, + "dragDropUI": { "source": "task_k1_png", "$t": "$eI" }, + "title": { "horizontalCenter": -21.5, "size": 24, "stroke": 2, "text": "标题", "textColor": 16710342, "touchEnabled": false, "y": 15, "$t": "$eL" }, + "rewardImg": { "bottom": 197, "left": 36, "source": "task_rwjj", "$t": "$eI" }, + "taskDesc": { "height": 114, "horizontalCenter": -18.5, "lineSpacing": 7, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": -111, "width": 362, "$t": "$eL" }, + "taskAims": { "horizontalCenter": -21, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "verticalCenter": -22.5, "width": 353, "$t": "$eL" }, + "_Scroller1": { "bottom": 120, "horizontalCenter": -19.5, "width": 348, "$t": "$eS", "viewport": "rewardList" }, + "rewardList": { "itemRendererSkinName": "ItemBaseSkin", "$t": "$eLs", "layout": "_HorizontalLayout1" }, + "_HorizontalLayout1": { "gap": 12, "$t": "$eHL" }, + "sureBtn": { "bottom": 53, "height": 46, "horizontalCenter": -27, "icon": "open_btn", "label": "接收任务", "width": 113, "$t": "$eB", "skinName": "TaskInfoWinSkin2$Skin302" }, + "effGrp": { "touchEnabled": false, "x": 205.33, "y": 401.33, "$t": "$eG" }, + "autoTask": { "right": 65, "size": 15, "stroke": 2, "text": "无操作2秒后自动点击", "textColor": 2682369, "touchEnabled": false, "y": 427, "$t": "$eL" }, + "closeBtn": { "label": "", "scaleX": 1.2, "scaleY": 1.2, "width": 60, "x": 404, "y": -9, "$t": "$eB", "skinName": "TaskInfoWinSkin2$Skin303" }, + "$sP": ["dragDropUI", "title", "rewardImg", "taskDesc", "taskAims", "rewardList", "sureBtn", "effGrp", "autoTask", "closeBtn"], + "$sC": "$eSk" + }, + "TaskInfoWinSkin2$Skin302": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "open_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 1, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "open_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "open_btn" }] } + }, + "$sC": "$eSk" + }, + "TaskInfoWinSkin2$Skin303": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TeamAddViewSkin": { + "$path": "resource/eui_skins/web/team/TeamAddViewSkin.exml", + "$bs": { "height": 344, "width": 478, "$eleC": ["dragDropUI", "_Image1", "_Image2", "playerNameText", "typeLb", "ConfirmBtn"] }, + "dragDropUI": { "skinName": "ViewBgWin5Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 281, "scale9Grid": "4,4,28,28", "source": "chat_json.bg_bg2", "visible": false, "width": 449.33, "x": 15, "y": 44, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 32, "scale9Grid": "10,10,2,1", "source": "chat_json.ltk_4", "width": 360, "x": 64, "y": 166, "$t": "$eI" }, + "playerNameText": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 32, "skinName": "TextInputSkin", "width": 360, "x": 64, "y": 166, "$t": "$eTI" }, + "typeLb": { "horizontalCenter": 0, "size": 18, "text": "", "y": 98, "$t": "$eL" }, + "ConfirmBtn": { "height": 44, "label": "确 定", "width": 109, "x": 191, "y": 283, "$t": "$eB", "skinName": "TeamAddViewSkin$Skin304" }, + "$sP": ["dragDropUI", "playerNameText", "typeLb", "ConfirmBtn"], + "$sC": "$eSk" + }, + "TeamAddViewSkin$Skin304": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TeamCommonItemSkin": { + "$path": "resource/eui_skins/web/team/TeamCommonItemSkin.exml", + "$bs": { "currentState": "common", "height": 48, "width": 855, "$sId": ["gCommon"] }, + "gCommon": { + "height": 48, + "width": 855, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfessionorNum", "playerGuildorMap", "captainImg"] + }, + "state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "width": 853, "x": 2, "y": -1, "$t": "$eI" }, + "playerName": { "horizontalCenter": -309, "size": 22, "stroke": 2, "text": "", "textAlign": "center", "textColor": 14471870, "verticalCenter": 0.5, "x": 65, "y": 16, "$t": "$eL" }, + "playerLevel": { "horizontalCenter": -109, "size": 22, "stroke": 2, "text": "等级", "textColor": 14471870, "verticalCenter": 0.5, "x": 310, "y": 16, "$t": "$eL" }, + "playerProfessionorNum": { + "horizontalCenter": 76, + "size": 22, + "stroke": 2, + "text": "感觉你和功能", + "textAlign": "center", + "textColor": 14471870, + "verticalCenter": 0.5, + "x": 492, + "y": 16, + "$t": "$eL" + }, + "playerGuildorMap": { "horizontalCenter": 300, "size": 22, "stroke": 2, "text": "干了拿过来", "textAlign": "center", "textColor": 14471870, "verticalCenter": 0, "x": 726, "$t": "$eL" }, + "captainImg": { "source": "team_duizhang", "x": 200, "y": 10, "$t": "$eI" }, + "$sP": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfessionorNum", "playerGuildorMap", "captainImg", "gCommon"], + "$s": { "common": { "$saI": [{ "target": "gCommon", "property": "", "position": 0, "relativeTo": "" }] } }, + "$sC": "$eSk" + }, + "TeamHederSkin": { + "$path": "resource/eui_skins/web/team/TeamHederSkin.exml", + "$bs": { "height": 42, "width": 862, "$eleC": ["gHeader0"] }, + "gHeader0": { "height": 42, "width": 862, "x": 0, "$t": "$eG", "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "txt0", "txt1", "txt2", "txt3"] }, + "_Image1": { "source": "fd_top_bg", "width": 862, "x": -1, "y": -1, "$t": "$eI" }, + "_Image2": { "source": "fd_top_fenge", "x": 232, "y": 0, "$t": "$eI" }, + "_Image3": { "source": "fd_top_fenge", "x": 414, "y": 0, "$t": "$eI" }, + "_Image4": { "source": "fd_top_fenge", "x": 598, "y": 0, "$t": "$eI" }, + "txt0": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 91, "y": 12, "$t": "$eL" }, + "txt1": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 305, "y": 12, "$t": "$eL" }, + "txt2": { "border": false, "horizontalCenter": 77, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "txt3": { "border": false, "size": 22, "stroke": 2, "text": "", "textColor": 15779990, "x": 689, "y": 12, "$t": "$eL" }, + "$sP": ["txt0", "txt1", "txt2", "txt3", "gHeader0"], + "$sC": "$eSk" + }, + "TeamMainItemViewSkin": { + "$path": "resource/eui_skins/web/team/TeamMainItemViewSkin.exml", + "$bs": { "height": 52, "width": 233, "$eleC": ["lbPlayerName", "iconLeader", "lbJob", "playerLevel", "hpBar"] }, + "lbPlayerName": { "left": 59, "size": 20, "stroke": 2, "text": "斩你个娃儿", "textColor": 15064527, "y": 7, "$t": "$eL" }, + "iconLeader": { "right": 7, "source": "m_task_duizhang", "y": 2.3, "$t": "$eI" }, + "lbJob": { "source": "m_task_zy1", "x": 5, "y": 4.5, "$t": "$eI" }, + "playerLevel": { "horizontalCenter": -89, "size": 15, "stroke": 2, "text": "4转125", "textColor": 15064527, "verticalCenter": 16.3, "$t": "$eL" }, + "hpBar": { "name": "bar2", "value": 100, "x": 60, "y": 33, "$t": "$ePB", "skinName": "TeamMainItemViewSkin$Skin305" }, + "$sP": ["lbPlayerName", "iconLeader", "lbJob", "playerLevel", "hpBar"], + "$sC": "$eSk" + }, + "TeamMainItemViewSkin$Skin305": { + "$bs": { "$eleC": ["_Image1", "thumb"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "1,1,4,4", "source": "m_task_hp1", "verticalCenter": 0, "percentWidth": 100, "$t": "$eI" }, + "thumb": { "percentHeight": 100, "source": "m_task_hp2", "percentWidth": 100, "$t": "$eI" }, + "$sP": ["thumb"], + "$sC": "$eSk" + }, + "TeamMainViewSkin": { + "$path": "resource/eui_skins/web/team/TeamMainViewSkin.exml", + "$bs": { "height": 67, "width": 194, "$eleC": ["bg", "gList"] }, + "bg": { "anchorOffsetY": 0, "height": 67, "scale9Grid": "0,39,308,18", "source": "team_json.team_bg", "touchEnabled": false, "visible": false, "x": 0, "y": 0, "$t": "$eI" }, + "gList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "touchChildren": false, "touchEnabled": false, "touchThrough": true, "width": 194, "x": 1, "y": 34, "$t": "$eG", "layout": "_TileLayout1" }, + "_TileLayout1": { "verticalGap": 2, "$t": "$eTL" }, + "$sP": ["bg", "gList"], + "$sC": "$eSk" + }, + "TeamQQItemSkin": { + "$path": "resource/eui_skins/web/team/TeamQQItemSkin.exml", + "$bs": { "currentState": "common", "height": 48, "width": 855, "$eleC": ["blueImg", "blueYearImg"], "$sId": ["gCommon"] }, + "gCommon": { + "height": 48, + "width": 855, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfessionorNum", "playerGuildorMap", "captainImg"] + }, + "state_1": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_1", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "state_2": { "height": 48, "scale9Grid": "9,9,1,1", "source": "bg_quyu_2", "width": 867, "x": 0, "y": 0, "$t": "$eI" }, + "selectedBg": { "scale9Grid": "22,22,2,1", "source": "liebiaoxuanzhong", "width": 853, "x": 2, "y": -1, "$t": "$eI" }, + "playerName": { "horizontalCenter": -291.5, "size": 22, "stroke": 2, "text": "这周日你有空吗", "textAlign": "center", "textColor": 14471870, "verticalCenter": 1, "x": 65, "y": 16, "$t": "$eL" }, + "playerLevel": { "horizontalCenter": -104.5, "size": 22, "stroke": 2, "text": "等级", "textColor": 14471870, "verticalCenter": 1, "x": 310, "y": 16, "$t": "$eL" }, + "playerProfessionorNum": { + "horizontalCenter": 78.5, + "size": 22, + "stroke": 2, + "text": "感觉你和功能", + "textAlign": "center", + "textColor": 14471870, + "verticalCenter": 1, + "x": 492, + "y": 16, + "$t": "$eL" + }, + "playerGuildorMap": { "horizontalCenter": 301.5, "size": 22, "stroke": 2, "text": "干了拿过来", "textAlign": "center", "textColor": 14471870, "verticalCenter": 0, "x": 726, "$t": "$eL" }, + "captainImg": { "source": "team_duizhang", "x": 217, "y": 10, "$t": "$eI" }, + "blueImg": { "source": "lz_hh1", "verticalCenter": 0, "x": 6, "$t": "$eI" }, + "blueYearImg": { "height": 20, "source": "lz_nf", "verticalCenter": 0, "width": 20, "x": 38, "$t": "$eI" }, + "$sP": ["state_1", "state_2", "selectedBg", "playerName", "playerLevel", "playerProfessionorNum", "playerGuildorMap", "captainImg", "gCommon", "blueImg", "blueYearImg"], + "$s": { "common": { "$saI": [{ "target": "gCommon", "property": "", "position": 0, "relativeTo": "" }] } }, + "$sC": "$eSk" + }, + "TeamViewPageSkin": { + "$path": "resource/eui_skins/web/team/TeamViewPageSkin.exml", + "$bs": { "height": 484.67, "width": 862, "$eleC": ["gHeader", "gp"] }, + "gHeader": { "height": 42, "width": 862, "x": 0, "$t": "$eG", "$eleC": ["header"] }, + "header": { "height": 42, "skinName": "TeamHederSkin", "width": 862, "$t": "app.TeamHeaderView" }, + "gp": { "height": 443, "width": 855, "x": 1, "y": 41, "$t": "$eG", "$eleC": ["scroller", "noListTipsLb"] }, + "scroller": { "height": 440, "scrollPolicyH": "off", "width": 855, "x": -1, "$t": "$eS", "viewport": "gList" }, + "gList": { "itemRendererSkinName": "TeamCommonItemSkin", "$t": "$eLs" }, + "noListTipsLb": { + "horizontalCenter": 0, + "lineSpacing": 5, + "size": 24, + "stroke": 2, + "text": "当前未添加玩家成为好友", + "textAlign": "center", + "textColor": 14471870, + "verticalAlign": "middle", + "verticalCenter": 0, + "$t": "$eL" + }, + "$sP": ["header", "gHeader", "gList", "scroller", "noListTipsLb", "gp"], + "$sC": "$eSk" + }, + + "TeamViewSkin": { + "$path": "resource/eui_skins/web/team/TeamViewSkin.exml", + "$bs": { "height": 647, "width": 912, "$eleC": ["dragDropUI", "tabBar", "bg", "_Group1", "_RuleTipsButton1"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "tabBar": { "height": 552, "itemRendererSkinName": "CommonTarBtnWinSkin2", "width": 45, "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "bg": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 491.67, "scale9Grid": "14,14,1,1", "source": "com_bg_kuang_6_png", "width": 862.66, "x": 23.36, "y": 55.32, "$t": "$eI" }, + "_Group1": { "height": 560, "width": 861, "x": 25.34, "y": 56.68, "$t": "$eG", "$eleC": ["page", "teamGp_0", "teamGp_1", "teamGp_2", "teamGp_3", "autoTeamCB", "txt0", "confirmTeamCB", "txt1"] }, + "page": { "height": 488, "skinName": "TeamViewPageSkin", "width": 862, "$t": "app.TeamViewPage" }, + "teamGp_0": { "horizontalCenter": 234, "verticalCenter": 249, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["kickBtn", "exitBtn", "addBtn"] }, + "_HorizontalLayout1": { "gap": 13, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "kickBtn": { "icon": "t_zd_tichuduiwu", "label": "踢出队伍", "skinName": "Btn9Skin", "x": 8.11, "y": 6, "$t": "$eB" }, + "exitBtn": { "icon": "t_zd_tuichuduiwu", "label": "退出退伍", "skinName": "Btn9Skin", "x": 202.73, "y": 6, "$t": "$eB" }, + "addBtn": { "icon": "t_zd_tianjia", "label": "添 加", "skinName": "Btn9Skin", "x": 78, "y": 6, "$t": "$eB" }, + "teamGp_1": { "visible": false, "x": 732, "y": 507, "$t": "$eG", "$eleC": ["operationBtn"] }, + "operationBtn": { "icon": "t_gx_caozuo", "label": "操 作", "skinName": "Btn9Skin", "visible": true, "$t": "$eB" }, + "teamGp_2": { "visible": false, "x": 732, "y": 507, "$t": "$eG", "$eleC": ["applyBtn"] }, + "applyBtn": { "icon": "t_zd_shenqingrudui", "label": "申请入队", "skinName": "Btn9Skin", "$t": "$eB" }, + "teamGp_3": { "visible": false, "x": 732, "y": 507, "$t": "$eG", "$eleC": ["inviteBtn"] }, + "inviteBtn": { "icon": "t_zd_yaoqingrudui", "label": "邀请入队", "skinName": "Btn9Skin", "$t": "$eB" }, + "autoTeamCB": { "label": "", "skinName": "CheckBox2", "width": 36, "x": 133, "y": 509, "$t": "$eCB" }, + "txt0": { "size": 22, "stroke": 2, "text": "允许组队", "textColor": 15064527, "x": 34, "y": 518, "$t": "$eL" }, + "confirmTeamCB": { "label": "", "skinName": "CheckBox2", "width": 36, "x": 333, "y": 509, "$t": "$eCB" }, + "txt1": { "size": 22, "stroke": 2, "text": "组队确认", "textColor": 15064527, "x": 234, "y": 518, "$t": "$eL" }, + "_RuleTipsButton1": { "label": "Button", "ruleId": "18", "x": 22.36, "y": 569.65, "$t": "app.RuleTipsButton" }, + "$sP": [ + "dragDropUI", + "tabBar", + "bg", + "page", + "kickBtn", + "exitBtn", + "addBtn", + "teamGp_0", + "operationBtn", + "teamGp_1", + "applyBtn", + "teamGp_2", + "inviteBtn", + "teamGp_3", + "autoTeamCB", + "txt0", + "confirmTeamCB", + "txt1" + ], + "$sC": "$eSk" + }, + + "ActivityTimingSkin1": { + "$path": "resource/eui_skins/web/timing/ActivityTimingSkin1.exml", + "$bs": { "height": 579, "width": 452, "$eleC": ["_Group1"] }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["dragDropUI", "title", "desc", "closeBtn", "_Image1", "itemList", "cdLab", "goBtn"] }, + "dragDropUI": { "source": "timing_bg1", "$t": "$eI" }, + "title": { "horizontalCenter": 0, "size": 42, "stroke": 1, "text": "竞技大乱斗", "textColor": 1899520, "top": 52, "$t": "$eL" }, + "desc": { + "anchorOffsetY": 0, + "height": 150, + "size": 24, + "stroke": 1, + "text": "那分开嘉安斐波那看附近奥班农发卡本菲卡办法咖啡吧客服部", + "textColor": 14077624, + "width": 342, + "x": 58, + "y": 125, + "$t": "$eL" + }, + "closeBtn": { "height": 57, "label": "", "right": 0, "top": 0, "width": 61, "$t": "$eB", "skinName": "ActivityTimingSkin1$Skin306" }, + "_Image1": { "horizontalCenter": -4, "source": "timing_tsjl", "verticalCenter": 8.5, "$t": "$eI" }, + "itemList": { "horizontalCenter": 0.5, "itemRendererSkinName": "ItemBaseSkin", "y": 320, "$t": "$eLs", "layout": "_HorizontalLayout1", "dataProvider": "_ArrayCollection1" }, + "_HorizontalLayout1": { "gap": 13, "$t": "$eHL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4"] }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "cdLab": { "bottom": 166, "horizontalCenter": 0, "size": 17, "text": "xx秒后关闭", "textColor": 3863040, "$t": "$eL" }, + "goBtn": { "height": 52, "label": "前往参与", "width": 129, "x": 161.66, "y": 424.16, "$t": "$eB", "skinName": "ActivityTimingSkin1$Skin307" }, + "$sP": ["dragDropUI", "title", "desc", "closeBtn", "itemList", "cdLab", "goBtn"], + "$sC": "$eSk" + }, + "ActivityTimingSkin1$Skin306": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "ActivityTimingSkin1$Skin307": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "timing_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 24, "stroke": 1, "textColor": 16626527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "timing_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "ActivityTimingSkin2": { + "$path": "resource/eui_skins/web/timing/ActivityTimingSkin2.exml", + "$bs": { "height": 405, "width": 506, "$eleC": ["_Group1"] }, + "_Group1": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eG", "$eleC": ["dragDropUI", "title", "desc", "closeBtn", "cdLab", "goBtn"] }, + "dragDropUI": { "source": "timing_bg2", "$t": "$eI" }, + "title": { "horizontalCenter": 0, "size": 24, "stroke": 1, "text": "竞技大乱斗", "textColor": 15779990, "top": 28, "touchEnabled": false, "$t": "$eL" }, + "desc": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "height": 214, + "size": 24, + "stroke": 1, + "text": "那分开嘉安斐波那看附近奥班农发卡本菲卡办法咖啡吧客服部", + "textColor": 14077624, + "width": 398, + "x": 58, + "y": 82, + "$t": "$eL" + }, + "closeBtn": { "height": 57, "label": "", "right": 0, "top": 0, "width": 61, "$t": "$eB", "skinName": "ActivityTimingSkin2$Skin308" }, + "cdLab": { "bottom": 47, "horizontalCenter": 146.5, "size": 17, "text": "10秒后关闭", "textColor": 3863040, "$t": "$eL" }, + "goBtn": { "height": 52, "horizontalCenter": -1.5, "label": "前往参与", "width": 129, "y": 318.16, "$t": "$eB", "skinName": "ActivityTimingSkin2$Skin309" }, + "$sP": ["dragDropUI", "title", "desc", "closeBtn", "cdLab", "goBtn"], + "$sC": "$eSk" + }, + "ActivityTimingSkin2$Skin308": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "huanying_x", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "huanying_x" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "huanying_x" }] } + }, + "$sC": "$eSk" + }, + "ActivityTimingSkin2$Skin309": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "timing_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "bold": true, "horizontalCenter": 0, "size": 24, "stroke": 1, "textColor": 16626527, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "timing_btn" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsActorSkin": { + "$path": "resource/eui_skins/web/tips/TipsActorSkin.exml", + "$bs": { "height": 59, "width": 422, "$eleC": ["effGrp", "_Group1"] }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 181, "y": 58, "$t": "$eG" }, + "_Group1": { "height": 58, "width": 224, "x": 190, "y": 14, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Scroller1", "_Image1", "_Scroller2"] }, + "_HorizontalLayout1": { "gap": -6, "verticalAlign": "middle", "$t": "$eHL" }, + "_Scroller1": { "height": 29, "scaleX": 1, "scaleY": 1, "x": 2, "y": 3, "$t": "$eS", "viewport": "attrStrGrp" }, + "attrStrGrp": { "$t": "$eG" }, + "_Image1": { "source": "sx_num_p", "x": 66, "y": 7, "$t": "$eI" }, + "_Scroller2": { "height": 24, "scaleX": 1, "scaleY": 1, "visible": false, "x": 86.5, "y": 4.5, "$t": "$eS", "viewport": "tarNumGrp" }, + "tarNumGrp": { "$t": "$eG" }, + "$sP": ["effGrp", "attrStrGrp", "tarNumGrp"], + "$sC": "$eSk" + }, + "TipsAttrItemSkin": { + "$path": "resource/eui_skins/web/tips/TipsAttrItemSkin.exml", + "$bs": { "$eleC": ["viewGrp"] }, + "viewGrp": { "height": 58, "width": 257, "$t": "$eG", "$eleC": ["imgBg", "_Group2"] }, + "imgBg": { "left": 0, "scaleX": 1, "scaleY": 1, "source": "fightnum_bg2", "verticalCenter": 0, "x": 0, "y": 4, "$t": "$eI" }, + "_Group2": { "left": 15, "scaleX": 1, "scaleY": 1, "verticalCenter": 0, "x": 15, "y": 0, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["_Group1", "attrImg"] }, + "_HorizontalLayout2": { "gap": 1, "verticalAlign": "middle", "$t": "$eHL" }, + "_Group1": { "scaleX": 1, "scaleY": 1, "x": -19, "y": -43, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["strImg", "valueStr"] }, + "_HorizontalLayout1": { "gap": -2, "verticalAlign": "middle", "$t": "$eHL" }, + "strImg": { "scaleX": 1, "scaleY": 1, "source": "numsx_3", "x": -10, "y": 13, "$t": "$eI" }, + "valueStr": { "font": "num_4_fnt", "text": "+1500", "x": 137, "y": 15, "$t": "$eBL" }, + "attrImg": { "scaleX": 1, "scaleY": 1, "source": "sx_num_p", "x": 152, "y": -50, "$t": "$eI" }, + "$sP": ["imgBg", "strImg", "valueStr", "attrImg", "viewGrp"], + "$sC": "$eSk" + }, + "TipsBossRefreshSkin": { + "$path": "resource/eui_skins/web/tips/TipsBossRefreshSkin.exml", + "$bs": { "height": 250, "width": 156, "$eleC": ["_Image1", "_Image2", "btn_close", "labTitle", "itemIcon", "itemName", "btn_go", "checkLabel", "checkBox"] }, + "_Image1": { "source": "bg_bosstips1", "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "bg_bosstips2", "y": 45, "$t": "$eI" }, + "btn_close": { "height": 60, "label": "", "width": 60, "x": 139, "y": -9, "$t": "$eB", "skinName": "TipsBossRefreshSkin$Skin310" }, + "labTitle": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "更好的装备", "textColor": 15655172, "y": 18, "$t": "$eL" }, + "itemIcon": { "horizontalCenter": -0.5, "source": "11000", "verticalCenter": -28.5, "$t": "$eI" }, + "itemName": { "bold": true, "horizontalCenter": 1.5, "size": 18, "stroke": 2, "text": "手戳", "textColor": 13215867, "touchEnabled": false, "verticalCenter": 22, "$t": "$eL" }, + "btn_go": { "height": 44, "horizontalCenter": 1.5, "label": "前 往", "scaleX": 1, "scaleY": 1, "verticalCenter": 59, "width": 113, "$t": "$eB", "skinName": "TipsBossRefreshSkin$Skin311" }, + "checkLabel": { "size": 19, "stroke": 2, "text": "不再提示", "textColor": 2682369, "x": 54, "y": 213, "$t": "$eL" }, + "checkBox": { "scaleX": 0.8, "scaleY": 0.8, "skinName": "SetUpCheckBox", "x": 22, "y": 208, "$t": "app.SetUpCheckBoxEui" }, + "$sP": ["btn_close", "labTitle", "itemIcon", "itemName", "btn_go", "checkLabel", "checkBox"], + "$sC": "$eSk" + }, + "TipsBossRefreshSkin$Skin310": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TipsBossRefreshSkin$Skin311": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsBuffSkin": { + "$path": "resource/eui_skins/web/tips/TipsBuffSkin.exml", + "$bs": { "$eleC": ["_Image1", "txt"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "top": 0, "$t": "$eI" }, + "txt": { "bottom": 6, "left": 6, "lineSpacing": 3, "right": 6, "size": 20, "stroke": 2, "textColor": 15064527, "top": 6, "$t": "$eL" }, + "$sP": ["txt"], + "$sC": "$eSk" + }, + "TipsDropSkin": { + "$path": "resource/eui_skins/web/tips/TipsDropSkin.exml", + "$bs": { "height": 30, "$eleC": ["_Group1"] }, + "_Group1": { "bottom": 0, "width": 125, "$t": "$eG", "$eleC": ["_Image1", "txt"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "5,5,34,34", "source": "com_bg_kuang_xian3", "top": 0, "x": 0, "y": 0, "$t": "$eI" }, + "txt": { "bottom": 8, "left": 6, "lineSpacing": 3, "right": 4, "size": 14, "stroke": 1, "text": "", "textAlign": "left", "textColor": 15064527, "top": 8, "x": 4, "y": 8, "$t": "$eL" }, + "$sP": ["txt"], + "$sC": "$eSk" + }, + "TipsEquipContrastSkin": { + "$path": "resource/eui_skins/web/tips/TipsEquipContrastSkin.exml", + "$bs": { "$eleC": ["_Group3"] }, + "_Group3": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Group1", "_Group2"] }, + "_HorizontalLayout1": { "gap": 4, "$t": "$eHL" }, + "_Group1": { + "bottom": 0, + "left": 0, + "right": 0, + "top": 0, + "touchEnabled": false, + "width": 334, + "x": 0, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image1", "imgBg1", "_Image2", "effGrp1", "nameLab", "tips1Scroller"] + }, + "_Image1": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "3,3,18,18", "source": "9s_tipsbg", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "imgBg1": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "13,89,1,0", "source": "bag_piliangbg_1", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image2": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "8,9,12,11", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "effGrp1": { "touchChildren": false, "touchEnabled": false, "x": 2, "$t": "$eG" }, + "nameLab": { "left": 15, "scaleX": 1, "scaleY": 1, "size": 22, "stroke": 2, "text": "", "textColor": 15774976, "x": 15, "y": 10, "$t": "$eL" }, + "tips1Scroller": { "maxHeight": 500, "name": "tipsview", "width": 334, "y": 32, "$t": "$eS", "viewport": "strGrp1" }, + "strGrp1": { "bottom": 0, "left": 0, "name": "tipsview", "right": 0, "top": 0, "touchChildren": false, "$t": "$eG", "$eleC": ["bindLab1"] }, + "bindLab1": { "left": 15, "lineSpacing": 4, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "", "width": 300, "x": 15, "y": 8, "$t": "$eL" }, + "_Group2": { + "bottom": 0, + "left": 350, + "right": -10, + "top": 0, + "touchEnabled": false, + "width": 334, + "x": 342, + "y": 0, + "$t": "$eG", + "$eleC": ["_Image3", "imgBg2", "_Image4", "_Image5", "effGrp2", "nameLab2", "tips2Scroller"] + }, + "_Image3": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "3,3,18,18", "source": "9s_tipsbg", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "imgBg2": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "19,89,1,0", "source": "bag_piliangbg_1", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image4": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "8,8,12,12", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image5": { "right": 4, "source": "com_yizhuangbei", "top": 13, "touchEnabled": false, "$t": "$eI" }, + "effGrp2": { "x": 2, "$t": "$eG" }, + "nameLab2": { "left": 15, "scaleX": 1, "scaleY": 1, "size": 22, "stroke": 2, "text": "", "textColor": 15774976, "x": 15, "y": 10, "$t": "$eL" }, + "tips2Scroller": { "maxHeight": 500, "name": "tipsview", "width": 334, "x": 0, "y": 32, "$t": "$eS", "viewport": "strGrp2" }, + "strGrp2": { "bottom": 0, "left": 0, "name": "tipsview", "right": 0, "top": 0, "touchChildren": false, "$t": "$eG", "$eleC": ["bindLab2"] }, + "bindLab2": { "left": 15, "lineSpacing": 4, "scaleX": 1, "scaleY": 1, "size": 20, "stroke": 2, "text": "", "width": 300, "x": 15, "y": 8, "$t": "$eL" }, + "$sP": ["imgBg1", "effGrp1", "nameLab", "bindLab1", "strGrp1", "tips1Scroller", "imgBg2", "effGrp2", "nameLab2", "bindLab2", "strGrp2", "tips2Scroller"], + "$sC": "$eSk" + }, + "TipsEquipFashionSKin": { + "$path": "resource/eui_skins/web/tips/TipsEquipFashionSKin.exml", + "$bs": { "$eleC": ["strGrp"] }, + "strGrp": { "touchEnabled": false, "width": 334, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Image1", "imgBg", "_Image2", "nameLab", "_Group1", "effGrp"] }, + "_Image1": { "bottom": -4, "left": 0, "right": 0, "source": "9s_tipsbg", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "imgBg": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "13,89,2,0", "source": "bag_piliangbg_1", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image2": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "8,8,12,12", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "nameLab": { "left": 15, "size": 22, "stroke": 2, "text": "", "textColor": 15774976, "touchEnabled": false, "y": 10, "$t": "$eL" }, + "_Group1": { "horizontalCenter": 0, "top": -84, "touchChildren": false, "touchEnabled": false, "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["fashionImg", "bindLab"] }, + "_VerticalLayout1": { "gap": -29, "horizontalAlign": "center", "paddingLeft": 0, "$t": "$eVL" }, + "fashionImg": { "source": "sz_show_005_0_png", "touchEnabled": false, "$t": "$eI" }, + "bindLab": { "lineSpacing": 4, "size": 20, "stroke": 2, "text": "", "textColor": 16777215, "width": 300, "$t": "$eL" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 1, "$t": "$eG" }, + "$sP": ["imgBg", "nameLab", "fashionImg", "bindLab", "effGrp", "strGrp"], + "$sC": "$eSk" + }, + "TipsEquipSKin": { + "$path": "resource/eui_skins/web/tips/TipsEquipSKin.exml", + "$bs": { "width": 334, "$eleC": ["_Image1", "imgBg", "_Image2", "effGrp", "nameLab", "tipsScroller"] }, + "_Image1": { "bottom": -4, "left": 0, "right": 0, "source": "9s_tipsbg", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "imgBg": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "13,89,2,0", "source": "bag_piliangbg_1", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "_Image2": { "bottom": -4, "left": 0, "right": 0, "scale9Grid": "8,8,12,12", "source": "9s_tipsk", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "effGrp": { "touchChildren": false, "touchEnabled": false, "x": 1, "$t": "$eG" }, + "nameLab": { "left": 15, "size": 22, "stroke": 2, "text": "星王项链", "textColor": 15774976, "y": 10, "$t": "$eL" }, + "tipsScroller": { "maxHeight": 500, "name": "tipsview", "width": 334, "y": 32, "$t": "$eS", "viewport": "strGrp" }, + "strGrp": { "name": "tipsview", "width": 334, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["_Group1"] }, + "_Group1": { "left": 15, "touchChildren": false, "touchEnabled": false, "y": 5, "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["useCountLab", "bindLab"] }, + "_VerticalLayout1": { "$t": "$eVL" }, + "useCountLab": { "left": 15, "lineSpacing": 4, "size": 20, "stroke": 2, "text": "", "textColor": 16777215, "width": 300, "y": 40, "$t": "$eL" }, + "bindLab": { "left": 15, "lineSpacing": 4, "size": 20, "stroke": 2, "text": "", "textColor": 16777215, "width": 300, "y": 40, "$t": "$eL" }, + "$sP": ["imgBg", "effGrp", "nameLab", "useCountLab", "bindLab", "strGrp", "tipsScroller"], + "$sC": "$eSk" + }, + "TipsGoodEquipSkin": { + "$path": "resource/eui_skins/web/tips/TipsGoodEquipSkin.exml", + "$bs": { "height": 223, "width": 155, "$eleC": ["_Image1", "_Image2", "btn_close", "_Label1", "_Image3", "itemIcon", "itemName", "dressEquip", "_Button1", "autoDress"] }, + "_Image1": { "source": "bg_zbgh", "$t": "$eI" }, + "_Image2": { "height": 213, "scale9Grid": "16,17,5,4", "source": "bag_equipbg", "visible": false, "width": 153, "$t": "$eI" }, + "btn_close": { "height": 60, "label": "", "width": 60, "x": 139, "y": -9, "$t": "$eB", "skinName": "TipsGoodEquipSkin$Skin312" }, + "_Label1": { "size": 20, "stroke": 2, "text": "更好的装备", "textColor": 15655172, "x": 30, "y": 18, "$t": "$eL" }, + "_Image3": { "horizontalCenter": -1, "source": "bag_equipk", "verticalCenter": -16.5, "visible": false, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": -0.5, "source": "11000", "verticalCenter": -28.5, "$t": "$eI" }, + "itemName": { "bold": true, "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "手戳", "textColor": 13215867, "touchEnabled": false, "verticalCenter": 19, "$t": "$eL" }, + "dressEquip": { "height": 44, "horizontalCenter": 1, "label": "穿 戴", "scaleX": 1, "scaleY": 1, "verticalCenter": 53, "width": 113, "$t": "$eB", "skinName": "TipsGoodEquipSkin$Skin313" }, + "_Button1": { "bottom": 33, "horizontalCenter": -1, "label": "穿 戴", "skinName": "Btn9Skin", "visible": false, "$t": "$eB" }, + "autoDress": { "bottom": 12, "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "touchEnabled": false, "$t": "$eL" }, + "$sP": ["btn_close", "itemIcon", "itemName", "dressEquip", "autoDress"], + "$sC": "$eSk" + }, + "TipsGoodEquipSkin$Skin312": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TipsGoodEquipSkin$Skin313": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsInsuffResourcesSkin": { + "$path": "resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml", + "$bs": { "height": 145, "width": 331, "$eleC": ["dragDropUI", "strLab", "btnGoto", "btnClose"] }, + "dragDropUI": { "scale9Grid": "37,18,227,109", "source": "revive_bg", "width": 331, "$t": "$eI" }, + "strLab": { + "height": 50, + "horizontalCenter": 0.5, + "size": 20, + "text": "还差点元宝,充点小钱玩玩!!", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "verticalCenter": -19.5, + "width": 280, + "$t": "$eL" + }, + "btnGoto": { "horizontalCenter": 0, "label": "前往充值", "y": 90, "$t": "$eB", "skinName": "TipsInsuffResourcesSkin$Skin314" }, + "btnClose": { "height": 60, "label": "", "width": 60, "x": 315, "y": -10, "$t": "$eB", "skinName": "TipsInsuffResourcesSkin$Skin315" }, + "$sP": ["dragDropUI", "strLab", "btnGoto", "btnClose"], + "$sC": "$eSk" + }, + "TipsInsuffResourcesSkin$Skin314": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "sz_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "sz_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "sz_btn" }] } + }, + "$sC": "$eSk" + }, + "TipsInsuffResourcesSkin$Skin315": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TipsLookRewardsView": { + "$path": "resource/eui_skins/web/tips/TipsLookRewardsSkin.exml", + "$bs": { "$eleC": ["strGrp"] }, + "strGrp": { "width": 254, "$t": "$eG", "$eleC": ["_Image1", "descLab"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "top": 0, "$t": "$eI" }, + "descLab": { "lineSpacing": 3, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "width": 213, "x": 17, "y": 14, "$t": "$eL" }, + "$sP": ["descLab", "strGrp"], + "$sC": "$eSk" + }, + "TipsMoneySKin": { + "$path": "resource/eui_skins/web/tips/TipsMoneySKin.exml", + "$bs": { "$eleC": ["strGrp"] }, + "strGrp": { "width": 335, "$t": "$eG", "$eleC": ["_Image1", "descLab"] }, + "_Image1": { "percentHeight": 100, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "percentWidth": 100, "$t": "$eI" }, + "descLab": { "left": 8, "lineSpacing": 2, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "width": 312, "y": 14, "$t": "$eL" }, + "$sP": ["descLab", "strGrp"], + "$sC": "$eSk" + }, + "TipsSkillDescSKin": { + "$path": "resource/eui_skins/web/tips/TipsSkillDescSKin.exml", + "$bs": { "$eleC": ["strGrp"] }, + "strGrp": { "width": 335, "$t": "$eG", "$eleC": ["_Image1", "descLab"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,24,24", "source": "9s_bg_2", "top": 0, "$t": "$eI" }, + "descLab": { "lineSpacing": 3, "size": 20, "stroke": 2, "text": "", "textColor": 15064527, "width": 294, "x": 17, "y": 14, "$t": "$eL" }, + "$sP": ["descLab", "strGrp"], + "$sC": "$eSk" + }, + "TipsSkin": { + "$path": "resource/eui_skins/web/tips/TipsSkin.exml", + "$bs": { "height": 30, "$eleC": ["bg", "lab", "pic"] }, + "bg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "8,7,7,12", "source": "tongyongtip1", "top": 0, "touchEnabled": false, "$t": "$eI" }, + "lab": { "lineSpacing": 3, "size": 20, "stroke": 2, "text": "Ti", "textColor": 15007744, "touchEnabled": false, "$t": "$eL" }, + "pic": { "bottom": 0, "left": 0, "right": 0, "top": 0, "$t": "$eI" }, + "$sP": ["bg", "lab", "pic"], + "$sC": "$eSk" + }, + "TipsSoldierSoulSkin": { + "$path": "resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml", + "$bs": { "$eleC": ["strGrp"] }, + "strGrp": { "width": 311, "$t": "$eG", "$eleC": ["_Image1", "nameLab", "bindLab"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "3,3,24,24", "scaleX": 1, "scaleY": 1, "source": "9s_bg_2", "top": 0, "x": 0, "y": 0, "$t": "$eI" }, + "nameLab": { "left": 15, "size": 22, "stroke": 2, "text": "霜只哀伤 [9阶]", "textColor": 15774976, "y": 10, "$t": "$eL" }, + "bindLab": { "left": 15, "lineSpacing": 4, "size": 20, "stroke": 2, "text": "我感觉感觉", "textColor": 16777215, "width": 281, "y": 43, "$t": "$eL" }, + "$sP": ["nameLab", "bindLab", "strGrp"], + "$sC": "$eSk" + }, + "TipsStarLevelSkin": { + "$path": "resource/eui_skins/web/tips/TipsStarLevelSkin.exml", + "$bs": { "height": 23, "width": 25, "$eleC": ["_Image1", "starLv"] }, + "_Image1": { "source": "common_xx_bg", "$t": "$eI" }, + "starLv": { "height": 23, "source": "common_xx", "visible": false, "width": 25, "$t": "$eI" }, + "$sP": ["starLv"], + "$sC": "$eSk" + }, + "TipsUseItemViewSkin": { + "$path": "resource/eui_skins/web/tips/TipsUseItemViewSkin.exml", + "$bs": { "height": 223, "width": 155, "$eleC": ["_Image1", "btn_close", "labTitle", "itemIcon", "itemName", "dressEquip", "autoDress"] }, + "_Image1": { "source": "bg_zbgh", "$t": "$eI" }, + "btn_close": { "height": 60, "label": "", "width": 60, "x": 139, "y": -9, "$t": "$eB", "skinName": "TipsUseItemViewSkin$Skin316" }, + "labTitle": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "更好的装备", "textColor": 15655172, "y": 18, "$t": "$eL" }, + "itemIcon": { "horizontalCenter": -0.5, "source": "11000", "verticalCenter": -28.5, "$t": "$eI" }, + "itemName": { "bold": true, "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "手戳", "textColor": 13215867, "touchEnabled": false, "verticalCenter": 19, "$t": "$eL" }, + "dressEquip": { "height": 44, "horizontalCenter": 1, "label": "穿 戴", "scaleX": 1, "scaleY": 1, "verticalCenter": 53, "width": 113, "$t": "$eB", "skinName": "TipsUseItemViewSkin$Skin317" }, + "autoDress": { "bottom": 12, "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "touchEnabled": false, "$t": "$eL" }, + "$sP": ["btn_close", "labTitle", "itemIcon", "itemName", "dressEquip", "autoDress"], + "$sC": "$eSk" + }, + "TipsUseItemViewSkin$Skin316": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TipsUseItemViewSkin$Skin317": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsUseItemViewSkin2": { + "$path": "resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml", + "$bs": { "height": 250, "width": 156, "$eleC": ["_Image1", "btn_close", "labTitle", "_Image2", "itemIcon", "_Group1", "dressEquip", "autoDress"] }, + "_Image1": { "source": "bg_bosstips1", "$t": "$eI" }, + "btn_close": { "height": 60, "label": "", "width": 60, "x": 139, "y": -9, "$t": "$eB", "skinName": "TipsUseItemViewSkin2$Skin318" }, + "labTitle": { "horizontalCenter": 0, "size": 20, "stroke": 2, "text": "更好的装备", "textColor": 15655172, "y": 18, "$t": "$eL" }, + "_Image2": { "horizontalCenter": 0, "source": "bag_equipk", "verticalCenter": -35, "$t": "$eI" }, + "itemIcon": { "horizontalCenter": 0, "source": "11000", "verticalCenter": -37, "$t": "$eI" }, + "_Group1": { "width": 127, "x": 15, "y": 130, "$t": "$eG", "$eleC": ["btnSub", "btnAdd", "_Image3", "lbCount"] }, + "btnSub": { "label": "", "width": 32, "y": 1, "$t": "$eB", "skinName": "TipsUseItemViewSkin2$Skin319" }, + "btnAdd": { "label": "", "x": 95, "y": 1, "$t": "$eB", "skinName": "TipsUseItemViewSkin2$Skin320" }, + "_Image3": { "anchorOffsetX": 0, "horizontalCenter": 0, "scale9Grid": "15,13,2,3", "source": "com_bg_kuang_3", "width": 60, "$t": "$eI" }, + "lbCount": { "horizontalCenter": 0, "size": 20, "text": "100", "textAlign": "center", "textColor": 16777215, "verticalCenter": 0, "$t": "$eL" }, + "dressEquip": { "height": 44, "horizontalCenter": 1.5, "label": "穿 戴", "scaleX": 1, "scaleY": 1, "verticalCenter": 68, "width": 113, "$t": "$eB", "skinName": "TipsUseItemViewSkin2$Skin321" }, + "autoDress": { "bottom": 12, "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "", "textColor": 2682369, "touchEnabled": false, "$t": "$eL" }, + "$sP": ["btn_close", "labTitle", "itemIcon", "btnSub", "btnAdd", "lbCount", "dressEquip", "autoDress"], + "$sC": "$eSk" + }, + "TipsUseItemViewSkin2$Skin318": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "TipsUseItemViewSkin2$Skin319": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "com_jianjian", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "com_jianjian" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsUseItemViewSkin2$Skin320": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "source": "com_jiajia", "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "com_jiajia" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TipsUseItemViewSkin2$Skin321": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 18, "stroke": 2, "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "TradeLineBuyItemViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml", + "$bs": { "height": 77, "width": 701, "$eleC": ["itemBg", "curItem", "itemName", "time", "_Group1", "buyBtn"] }, + "itemBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,8,1,1", "source": "bg_quyu_1", "top": 0, "$t": "$eI" }, + "curItem": { "left": 10, "skinName": "ItemBaseSkin", "verticalCenter": 0, "$t": "app.ItemBase" }, + "itemName": { "left": 80, "size": 21, "stroke": 2, "text": "", "textColor": 16720621, "verticalCenter": 0, "$t": "$eL" }, + "time": { "horizontalCenter": -27, "size": 21, "stroke": 2, "text": "", "textColor": 8421504, "verticalCenter": 0, "$t": "$eL" }, + "_Group1": { "horizontalCenter": 132, "verticalCenter": 0.5, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Image1", "curMoney"] }, + "_HorizontalLayout1": { "gap": 6, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "_Image1": { "source": "icon_yuanbao", "$t": "$eI" }, + "curMoney": { "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "buyBtn": { "label": "购 买", "skinName": "Btn9Skin", "x": 589, "y": 20, "$t": "$eB" }, + "$sP": ["itemBg", "curItem", "itemName", "time", "curMoney", "buyBtn"], + "$sC": "$eSk" + }, + "TradeLineBuyViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["_Image1", "_Image2", "_Scroller1", "curQuota", "_Group1", "buyScroller", "moneyPanel"] }, + "_Image1": { "bottom": 56, "left": 0, "right": 712, "scale9Grid": "10,9,3,3", "source": "com_bg_kuang_xian1", "top": 0, "$t": "$eI" }, + "_Image2": { "bottom": 56, "left": 155, "right": 0, "scale9Grid": "10,9,3,3", "source": "com_bg_kuang_xian1", "top": 0, "x": 10, "y": 10, "$t": "$eI" }, + "_Scroller1": { "bottom": 69, "horizontalCenter": -356, "top": 7, "width": 147, "$t": "$eS", "viewport": "tabList" }, + "tabList": { "height": 481, "itemRendererSkinName": "TradeLineTabSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "curQuota": { "bottom": 15, "left": 450, "size": 22, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "_Group1": { "bottom": 512, "horizontalCenter": 78, "top": 4, "width": 703, "$t": "$eG", "$eleC": ["_Image3", "_Image4", "_Image5", "_Image6", "itemName", "time", "price", "_Label1"] }, + "_Image3": { "scale9Grid": "90,5,546,32", "source": "common_liebiaoding_bg", "width": 703, "$t": "$eI" }, + "_Image4": { "source": "common_liebiaoding_fenge", "x": 235, "$t": "$eI" }, + "_Image5": { "source": "common_liebiaoding_fenge", "x": 410, "$t": "$eI" }, + "_Image6": { "source": "common_liebiaoding_fenge", "x": 565, "$t": "$eI" }, + "itemName": { "horizontalCenter": -234.5, "size": 23, "stroke": 2, "text": "商品名称", "textColor": 15779990, "verticalCenter": -0.5, "$t": "$eL" }, + "time": { "horizontalCenter": -30.5, "size": 23, "stroke": 2, "text": "剩余时间", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "price": { "horizontalCenter": 135.5, "size": 23, "stroke": 2, "text": "价格", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "_Label1": { "horizontalCenter": 285.5, "size": 23, "stroke": 2, "text": "购买", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "buyScroller": { "height": 448, "width": 701, "x": 161, "y": 50, "$t": "$eS", "viewport": "buyList" }, + "buyList": { "itemRendererSkinName": "TradeLineBuyItemViewSkin", "$t": "$eLs" }, + "moneyPanel": { "skinName": "moneyPanelSkin", "width": 155, "x": 164, "y": 514, "$t": "app.moneyPanel" }, + "$sP": ["tabList", "curQuota", "itemName", "time", "price", "buyList", "buyScroller", "moneyPanel"], + "$sC": "$eSk" + }, + "TradeLineIsSellingItemViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml", + "$bs": { "height": 79, "width": 855, "$eleC": ["itemBg", "curItem", "itemName", "time", "_Group1", "shelfBtn"] }, + "itemBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,8,1,1", "source": "bg_quyu_2", "top": 0, "$t": "$eI" }, + "curItem": { "left": 40, "skinName": "ItemBaseSkin", "verticalCenter": 0.5, "$t": "app.ItemBase" }, + "itemName": { "left": 110, "size": 21, "stroke": 2, "text": "", "textColor": 16720621, "verticalCenter": 0, "$t": "$eL" }, + "time": { "horizontalCenter": -27, "size": 21, "stroke": 2, "text": "", "textColor": 8421504, "verticalCenter": 0, "$t": "$eL" }, + "_Group1": { "horizontalCenter": 162, "verticalCenter": 0.5, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Image1", "curMoney"] }, + "_HorizontalLayout1": { "gap": 6, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "_Image1": { "source": "icon_yuanbao", "$t": "$eI" }, + "curMoney": { "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "shelfBtn": { "label": "下 架", "skinName": "Btn9Skin", "x": 729, "y": 20, "$t": "$eB" }, + "$sP": ["itemBg", "curItem", "itemName", "time", "curMoney", "shelfBtn"], + "$sC": "$eSk" + }, + "TradeLineIsSellingViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["_Image1", "_Group1", "itemScroller", "curSell", "allShelf"] }, + "_Image1": { "bottom": 56, "left": 0, "right": 0, "scale9Grid": "10,9,3,3", "source": "com_bg_kuang_xian1", "top": 0, "$t": "$eI" }, + "_Group1": { "bottom": 512, "horizontalCenter": 0, "top": 4, "width": 857, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5", "_Label1", "_Label2", "_Label3", "_Label4"] }, + "_Image2": { "scale9Grid": "90,5,546,32", "source": "common_liebiaoding_bg", "width": 857, "$t": "$eI" }, + "_Image3": { "source": "common_liebiaoding_fenge", "x": 295, "$t": "$eI" }, + "_Image4": { "source": "common_liebiaoding_fenge", "x": 500, "$t": "$eI" }, + "_Image5": { "source": "common_liebiaoding_fenge", "x": 695, "$t": "$eI" }, + "_Label1": { "horizontalCenter": -274.5, "size": 23, "stroke": 2, "text": "商品名称", "textColor": 15779990, "verticalCenter": -0.5, "$t": "$eL" }, + "_Label2": { "horizontalCenter": -20.5, "size": 23, "stroke": 2, "text": "剩余时间", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "_Label3": { "horizontalCenter": 168.5, "size": 23, "stroke": 2, "text": "价格", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "_Label4": { "horizontalCenter": 347.5, "size": 23, "stroke": 2, "text": "下架", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "itemScroller": { "height": 445, "width": 855, "x": 7, "y": 52, "$t": "$eS", "viewport": "sellList" }, + "sellList": { "itemRendererSkinName": "TradeLineIsSellingItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "$t": "$eVL" }, + "curSell": { "bottom": 16, "left": 54, "size": 21, "text": "", "textColor": 15779990, "visible": false, "$t": "$eL" }, + "allShelf": { "bottom": 7, "label": "全部下架", "right": 41, "skinName": "Btn9Skin", "visible": false, "$t": "$eB" }, + "$sP": ["sellList", "itemScroller", "curSell", "allShelf"], + "$sC": "$eSk" + }, + "TradeLineReceiveItemViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml", + "$bs": { "height": 79, "width": 855, "$eleC": ["itemBg", "curItem", "itemName", "itemState", "_Group1", "receiveBtn"] }, + "itemBg": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "9,8,1,1", "source": "bg_quyu_2", "top": 0, "$t": "$eI" }, + "curItem": { "left": 40, "skinName": "ItemBaseSkin", "verticalCenter": 0.5, "$t": "app.ItemBase" }, + "itemName": { "left": 110, "size": 21, "stroke": 2, "text": "", "textColor": 16720621, "verticalCenter": 0, "$t": "$eL" }, + "itemState": { "horizontalCenter": -23.5, "source": "trade_zt1", "verticalCenter": -0.5, "$t": "$eI" }, + "_Group1": { "horizontalCenter": 162, "verticalCenter": 0.5, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Image1", "curMoney"] }, + "_HorizontalLayout1": { "gap": 6, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "_Image1": { "source": "icon_yuanbao", "$t": "$eI" }, + "curMoney": { "size": 21, "stroke": 2, "text": "", "textColor": 15064527, "$t": "$eL" }, + "receiveBtn": { "label": "领 取", "skinName": "Btn9Skin", "x": 729, "y": 20, "$t": "$eB" }, + "$sP": ["itemBg", "curItem", "itemName", "itemState", "curMoney", "receiveBtn"], + "$sC": "$eSk" + }, + "TradeLineReceiveViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml", + "$bs": { "height": 558, "width": 869, "$eleC": ["_Image1", "_Group1", "receiveScroller", "getMoney", "shouxufei", "allReceive", "notHave"] }, + "_Image1": { "bottom": 56, "left": 0, "right": 0, "scale9Grid": "10,9,3,3", "source": "com_bg_kuang_xian1", "top": 0, "$t": "$eI" }, + "_Group1": { "bottom": 512, "horizontalCenter": 0, "top": 4, "width": 857, "$t": "$eG", "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5", "_Label1", "_Label2", "_Label3", "_Label4"] }, + "_Image2": { "scale9Grid": "90,5,546,32", "source": "common_liebiaoding_bg", "width": 857, "x": 0, "y": 0, "$t": "$eI" }, + "_Image3": { "source": "common_liebiaoding_fenge", "x": 295, "$t": "$eI" }, + "_Image4": { "source": "common_liebiaoding_fenge", "x": 500, "$t": "$eI" }, + "_Image5": { "source": "common_liebiaoding_fenge", "x": 695, "$t": "$eI" }, + "_Label1": { "horizontalCenter": -274.5, "size": 23, "stroke": 2, "text": "商品名称", "textColor": 15779990, "verticalCenter": -0.5, "$t": "$eL" }, + "_Label2": { "horizontalCenter": -20.5, "size": 23, "stroke": 2, "text": "状态", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "_Label3": { "horizontalCenter": 168.5, "size": 23, "stroke": 2, "text": "价格", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "_Label4": { "horizontalCenter": 347.5, "size": 23, "stroke": 2, "text": "领取", "textColor": 15779990, "verticalCenter": 0.5, "$t": "$eL" }, + "receiveScroller": { "height": 445, "width": 855, "x": 7, "y": 52, "$t": "$eS", "viewport": "receliveList" }, + "receliveList": { "itemRendererSkinName": "TradeLineReceiveItemViewSkin", "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 2, "$t": "$eVL" }, + "getMoney": { "bottom": 15, "left": 122, "size": 21, "stroke": 2, "text": "", "textColor": 14724725, "$t": "$eL" }, + "shouxufei": { "bottom": 17, "left": 342, "size": 21, "stroke": 2, "text": "", "textColor": 14724725, "$t": "$eL" }, + "allReceive": { "label": "全部领取", "skinName": "Btn9Skin", "visible": false, "x": 728, "y": 509, "$t": "$eB" }, + "notHave": { "horizontalCenter": -9.5, "size": 26, "stroke": 2, "text": "当前无任何物品", "textColor": 14724725, "verticalCenter": -40, "$t": "$eL" }, + "$sP": ["receliveList", "receiveScroller", "getMoney", "shouxufei", "allReceive", "notHave"], + "$sC": "$eSk" + }, + "TradeLineSellViewSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml", + "$bs": { + "height": 558, + "width": 869, + "$eleC": ["_Image1", "addItem", "shelves", "itemGrp", "_Image3", "_Label1", "_Label2", "handlingCharge", "handlingMoney", "dealSuccessful", "textInput", "_Image4", "titleDesc"] + }, + "_Image1": { "bottom": 79, "left": 0, "right": 0, "source": "trade_bg1", "top": 0, "$t": "$eI" }, + "addItem": { "bottom": 18, "height": 41, "horizontalCenter": -113, "label": "添加商品", "skinName": "Btn9Skin", "$t": "$eB" }, + "shelves": { "bottom": 18, "height": 41, "horizontalCenter": 117, "label": "上 架", "skinName": "Btn9Skin", "$t": "$eB" }, + "itemGrp": { "height": 120, "x": 366, "y": 91, "$t": "$eG", "$eleC": ["_Image2", "curITem"] }, + "_Image2": { "height": 120, "source": "trade_iconk", "width": 137, "x": 0, "y": 0, "$t": "$eI" }, + "curITem": { "bottom": 32, "horizontalCenter": -0.5, "skinName": "ItemBaseSkin", "top": 28, "$t": "app.ItemBase" }, + "_Image3": { "bottom": 268, "height": 36, "horizontalCenter": 24.5, "scale9Grid": "3,3,18,18", "source": "com_bg_kuang_xian2", "width": 104, "$t": "$eI" }, + "_Label1": { "size": 22, "stroke": 2, "text": "出售价格:", "textColor": 14724725, "x": 300, "y": 262, "$t": "$eL" }, + "_Label2": { "size": 22, "stroke": 2, "text": "元宝", "textColor": 14724725, "x": 520, "y": 262, "$t": "$eL" }, + "handlingCharge": { "size": 22, "stroke": 2, "text": "上架手续费:", "textColor": 14724725, "x": 300, "y": 331, "$t": "$eL" }, + "handlingMoney": { "size": 22, "stroke": 2, "text": "500", "textColor": 2682369, "x": 470, "y": 331, "$t": "$eL" }, + "dealSuccessful": { "size": 22, "stroke": 2, "text": "交易成功后将扣除售价的", "textColor": 14724725, "x": 300, "y": 389, "$t": "$eL" }, + "textInput": { + "bottom": "271", + "height": 30, + "horizontalCenter": "24.5", + "restrict": "0-9", + "size": 24, + "text": "", + "textAlign": "center", + "textColor": 4062976, + "verticalAlign": "middle", + "$t": "$eET" + }, + "_Image4": { "bottom": 198, "horizontalCenter": 8.5, "source": "icon_bangding", "$t": "$eI" }, + "titleDesc": { "horizontalCenter": 0, "lineSpacing": 5, "size": 20, "stroke": 2, "text": "", "textAlign": "center", "textColor": 14724725, "width": 719, "y": 16, "$t": "$eL" }, + "$sP": ["addItem", "shelves", "curITem", "itemGrp", "handlingCharge", "handlingMoney", "dealSuccessful", "textInput", "titleDesc"], + "$sC": "$eSk" + }, + "TradeLineTabSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml", + "$bs": { "$eleC": ["_Image1", "_Image2", "label"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "tab_01_1", "verticalCenter": 0, "$t": "$eI" }, + "label": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "基 础", "textColor": 15779990, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["label"], + "$s": { "up": { "$ssP": [{ "target": "_Image2", "name": "visible", "value": false }] }, "down": { "$ssP": [{ "target": "label", "name": "textColor", "value": 15064527 }] } }, + "$sC": "$eSk" + }, + "TradeLineWinSkin": { + "$path": "resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml", + "$bs": { "height": 645, "width": 909, "$eleC": ["dragDropUI", "tab", "pageGroup", "_RedDotControl1", "ruleTips"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "tab": { "height": 442, "itemRendererSkinName": "CommonTarBtnWinSkin2", "x": 908, "y": 50, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "pageGroup": { "bottom": 30, "horizontalCenter": 1, "top": 57, "width": 869, "$t": "$eG" }, + "_RedDotControl1": { + "height": 20, + "showMessages": "TradeLineMgr.post_27_9", + "updateShowFunctions": "TradeLineMgr.getReceiveRed", + "visible": false, + "width": 20, + "x": 936, + "y": 337, + "$t": "app.RedDotControl" + }, + "ruleTips": { "label": "Button", "x": 50, "y": 573, "$t": "app.RuleTipsButton" }, + "$sP": ["dragDropUI", "tab", "pageGroup", "ruleTips"], + "$sC": "$eSk" + }, + "UIView2Skin": { + "$path": "resource/eui_skins/web/UIView2Skin.exml", + "$bs": { "height": 251, "width": 212, "$eleC": ["btn3", "btn4", "btn5", "btn6", "_Image1"] }, + "btn3": { "bottom": 30, "label": "攻击", "skinName": "Btn11Skin", "visible": false, "x": 12, "$t": "$eB" }, + "btn4": { "bottom": 30, "label": "大招", "skinName": "Btn11Skin", "visible": false, "x": 155, "$t": "$eB" }, + "btn5": { "bottom": 30, "label": "施法", "skinName": "Btn11Skin", "visible": false, "x": 302, "$t": "$eB" }, + "btn6": { "bottom": 30, "label": "受击", "skinName": "Btn11Skin", "visible": false, "x": 445, "$t": "$eB" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 210, "right": 0, "scale9Grid": "13,25,3,6", "source": "kuaijielan1", "top": 0, "width": 210, "$t": "$eI" }, + "$sP": ["btn3", "btn4", "btn5", "btn6"], + "$sC": "$eSk" + }, + "UseBossBoxSkin": { + "$path": "resource/eui_skins/web/useItem/UseBossBoxSkin.exml", + "$bs": { + "height": 290, + "width": 368, + "$eleC": ["dragDropUI", "_Image1", "selectImg", "LabYaoshiName", "LabYaoshiNum", "box0", "box1", "box2", "labBox0", "labBox1", "labBox2", "btnUse", "closeBtn"] + }, + "dragDropUI": { "source": "kf_cyjl_bg1_png", "$t": "$eI" }, + "_Image1": { "source": "kf_cyjl_key", "x": 110, "y": 70, "$t": "$eI" }, + "selectImg": { "anchorOffsetX": 6, "anchorOffsetY": 8, "source": "kf_cyjl_frame2", "x": 54, "y": 110, "$t": "$eI" }, + "LabYaoshiName": { "size": 20, "text": "次元钥匙", "textColor": 15655172, "x": 30, "y": 70, "$t": "$eL" }, + "LabYaoshiNum": { "size": 20, "text": ":100", "textColor": 15655172, "x": 135, "y": 70, "$t": "$eL" }, + "box0": { "skinName": "ItemBaseSkin", "x": 54, "y": 110, "$t": "app.ItemBase" }, + "box1": { "skinName": "ItemBaseSkin", "x": 154, "y": 110, "$t": "app.ItemBase" }, + "box2": { "skinName": "ItemBaseSkin", "x": 254, "y": 110, "$t": "app.ItemBase" }, + "labBox0": { "horizontalCenter": -100, "size": 18, "text": "次元\n参与宝箱", "textAlign": "center", "y": 178, "$t": "$eL" }, + "labBox1": { "horizontalCenter": 0, "size": 18, "text": "次元\n勇斗宝箱", "textAlign": "center", "y": 178, "$t": "$eL" }, + "labBox2": { "horizontalCenter": 100, "size": 18, "text": "次元\n归属宝箱", "textAlign": "center", "y": 178, "$t": "$eL" }, + "btnUse": { "height": 44, "horizontalCenter": 0, "label": "*2开启", "width": 113, "y": 223, "$t": "$eB", "skinName": "UseBossBoxSkin$Skin322" }, + "closeBtn": { "height": 57, "label": "", "scaleX": 0.75, "scaleY": 0.75, "width": 61, "x": 327, "y": 0, "$t": "$eB", "skinName": "UseBossBoxSkin$Skin323" }, + "$sP": ["dragDropUI", "selectImg", "LabYaoshiName", "LabYaoshiNum", "box0", "box1", "box2", "labBox0", "labBox1", "labBox2", "btnUse", "closeBtn"], + "$sC": "$eSk" + }, + "UseBossBoxSkin$Skin322": { + "$bs": { "$eleC": ["_Image1", "_Image2", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "source": "kf_cyjl_key", "x": 10, "y": 11, "$t": "$eI" }, + "labelDisplay": { "size": 20, "stroke": 2, "text": "*2开启", "textColor": 15779990, "verticalCenter": 0, "x": 38, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "UseBossBoxSkin$Skin323": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "apay_x2" } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "ViolentStateWinSkin": { + "$path": "resource/eui_skins/web/violentState/ViolentStateWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_Image1", "_Image2", "tabList", "_Group1"] }, + "dragDropUI": { "skinName": "ViewBgWin7Skin", "$t": "app.UIViewFrame" }, + "_Image1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 558, "scale9Grid": "19,18,1,1", "source": "com_bg_kuang_6_png", "width": 149.6, "x": 24, "y": 56, "$t": "$eI" }, + "_Image2": { "source": "rage_bg_png", "x": 180, "y": 56, "$t": "$eI" }, + "tabList": { "height": 200, "itemRendererSkinName": "TradeLineTabSkin", "x": 22, "y": 56.5, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -2, "$t": "$eVL" }, + "_Group1": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 539, "width": 667, "x": 193, "y": 72, "$t": "$eG", "$eleC": ["titleLab", "strList", "moneyGrp", "curState", "payBtn", "openBtn"] }, + "titleLab": { "size": 22, "stroke": 2, "text": "狂暴状态,气血倒流,激发潜能,带来一切毁灭", "textColor": 15655172, "x": 13, "y": 17, "$t": "$eL" }, + "strList": { "height": 288, "itemRendererSkinName": "ResonateItem2Skin", "width": 644, "x": 13, "y": 54, "$t": "$eLs", "layout": "_VerticalLayout2" }, + "_VerticalLayout2": { "gap": 6, "$t": "$eVL" }, + "moneyGrp": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 90, "width": 297, "x": 191, "y": 346, "$t": "$eG", "$eleC": ["expendMoney", "openViolen"] }, + "expendMoney": { "horizontalCenter": -7, "size": 20, "stroke": 2, "text": "消耗元宝:3758/2000", "textColor": 15064527, "y": 8.35, "$t": "$eL" }, + "openViolen": { "label": "开启狂暴", "skinName": "Btn9Skin", "x": 86.32, "y": 42.99, "$t": "$eB" }, + "curState": { "size": 20, "stroke": 2, "text": "当前狂暴状态:已开启", "textColor": 15064527, "x": 8, "y": 507, "$t": "$eL" }, + "payBtn": { "label": "我要充值", "skinName": "Btn9Skin", "x": 547, "y": 488, "$t": "$eB" }, + "openBtn": { "label": "我要开启", "skinName": "Btn9Skin", "x": 547, "y": 488, "$t": "$eB" }, + "$sP": ["dragDropUI", "tabList", "titleLab", "strList", "expendMoney", "openViolen", "moneyGrp", "curState", "payBtn", "openBtn"], + "$sC": "$eSk" + }, + "VipGaimItemWinSKin": { + "$path": "resource/eui_skins/web/vip/VipGaimItemWinSKin.exml", + "$bs": { + "height": 406, + "width": 347, + "$eleC": ["dragDropUI", "consumeImg", "consumeImg2", "_Group1", "itemName", "itemDesc", "itemDesc2", "priceLab", "consumeLab", "consumeLab2", "consumeLab3", "consumeLab4", "buyBtn", "btnClose"] + }, + "dragDropUI": { "source": "tq_bg7_png", "$t": "$eI" }, + "consumeImg": { "scaleX": 0.5, "scaleY": 0.5, "source": "11001", "x": 163, "y": 229, "$t": "$eI" }, + "consumeImg2": { "scaleX": 0.5, "scaleY": 0.5, "source": "11001", "x": 163, "y": 259, "$t": "$eI" }, + "_Group1": { "height": 60, "horizontalCenter": 0, "verticalCenter": -80, "width": 60, "$t": "$eG", "$eleC": ["itemBg", "itemIcon", "itemNu"] }, + "itemBg": { "source": "quality_4", "$t": "$eI" }, + "itemIcon": { "source": "11001", "$t": "$eI" }, + "itemNu": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "itemName": { "horizontalCenter": 0, "size": 22, "stroke": 2, "text": "道具名称", "textColor": 15779990, "touchEnabled": false, "y": 40, "$t": "$eL" }, + "itemDesc": { + "lineSpacing": 4, + "size": 18, + "stroke": 2, + "text": "使用xxxx个高级特权卡激活特权", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 300, + "x": 24, + "y": 205, + "$t": "$eL" + }, + "itemDesc2": { + "lineSpacing": 4, + "size": 16, + "stroke": 2, + "text": "使用xxxx个高级特权", + "textAlign": "center", + "textColor": 15064527, + "verticalAlign": "middle", + "width": 310, + "x": 19, + "y": 300, + "$t": "$eL" + }, + "priceLab": { "horizontalCenter": 0.5, "size": 18, "stroke": 2, "text": "价格:500元宝", "y": 165, "$t": "$eL" }, + "consumeLab": { "size": 20, "stroke": 2, "text": "已有:", "textColor": 15064527, "x": 114, "y": 235, "$t": "$eL" }, + "consumeLab2": { "size": 20, "text": "*0", "textColor": 2682369, "x": 195, "y": 235, "$t": "$eL" }, + "consumeLab3": { "size": 20, "stroke": 2, "text": "还差:", "textColor": 15064527, "x": 114, "y": 265, "$t": "$eL" }, + "consumeLab4": { "size": 20, "text": "*0", "textColor": 2682369, "x": 195, "y": 265, "$t": "$eL" }, + "buyBtn": { "label": "购 买", "skinName": "Btn9Skin", "x": 111, "y": 330, "$t": "$eB" }, + "btnClose": { "label": "Button", "right": 14, "skinName": "CloseButtonSkin", "top": 20, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "consumeImg", + "consumeImg2", + "itemBg", + "itemIcon", + "itemNu", + "itemName", + "itemDesc", + "itemDesc2", + "priceLab", + "consumeLab", + "consumeLab2", + "consumeLab3", + "consumeLab4", + "buyBtn", + "btnClose" + ], + "$sC": "$eSk" + }, + "VipItemBigIconSkin": { + "$path": "resource/eui_skins/web/vip/VipItemBigIconSkin.exml", + "$bs": { "height": 199, "width": 284, "$eleC": ["icon"] }, + "icon": { "source": "vip_json.tq_p_1_1", "x": 0, "y": 0, "$t": "$eI" }, + "$sP": ["icon"], + "$sC": "$eSk" + }, + "VipItemSkin": { + "$path": "resource/eui_skins/web/vip/VipItemSkin.exml", + "$bs": { "height": 32, "width": 839, "$eleC": ["_Group2", "_Group3", "_Group4"] }, + "_Group2": { "height": 32, "width": 839, "x": 0, "y": 0, "$t": "$eG", "$eleC": ["nameBg", "lbVipName", "_Group1"] }, + "nameBg": { "source": "tq_bg4", "x": 0, "y": 0, "$t": "$eI" }, + "lbVipName": { "size": 18, "text": "专属打宝地图", "touchEnabled": false, "verticalAlign": "middle", "x": 24.36, "y": 7.03, "$t": "$eL" }, + "_Group1": { "anchorOffsetX": 0, "height": 32, "width": 674, "x": 165, "y": 0, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["_Image1", "_Image2", "_Image3", "_Image4", "_Image5"] }, + "_HorizontalLayout1": { "gap": 3, "$t": "$eHL" }, + "_Image1": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "source": "tq_bg4", "width": 131.2, "x": 3, "y": 0, "$t": "$eI" }, + "_Image2": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "source": "tq_bg4", "width": 131.2, "x": 13, "y": 10, "$t": "$eI" }, + "_Image3": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "source": "tq_bg4", "width": 131.2, "x": 23, "y": 20, "$t": "$eI" }, + "_Image4": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "source": "tq_bg4", "width": 131.2, "x": 33, "y": 30, "$t": "$eI" }, + "_Image5": { "anchorOffsetX": 0, "scaleX": 1, "scaleY": 1, "source": "tq_bg4", "width": 131.2, "x": 43, "y": 40, "$t": "$eI" }, + "_Group3": { "anchorOffsetX": 0, "height": 32, "width": 667, "x": 158.7, "y": 0, "$t": "$eG", "$eleC": ["flagVip1", "flagVip2", "flagVip3", "flagVip4", "flagVip5"] }, + "flagVip1": { "horizontalCenter": -260.5, "source": "tq_sf_f", "y": 0.01, "$t": "$eI" }, + "flagVip2": { "horizontalCenter": -131.5, "source": "tq_sf_s", "y": 2.68, "$t": "$eI" }, + "flagVip3": { "horizontalCenter": 8.5, "source": "tq_sf_s", "y": 2.01, "$t": "$eI" }, + "flagVip4": { "horizontalCenter": 145.5, "source": "tq_sf_s", "y": 1.34, "$t": "$eI" }, + "flagVip5": { "horizontalCenter": 276.5, "source": "tq_sf_s", "y": 3.36, "$t": "$eI" }, + "_Group4": { "anchorOffsetX": 0, "height": 32, "width": 679.01, "x": 158.7, "y": 0, "$t": "$eG", "$eleC": ["lbVip1", "lbVip2", "lbVip3", "lbVip4", "lbVip5"] }, + "lbVip1": { "horizontalCenter": -266.505, "size": 18, "text": "复古冰雪", "visible": false, "y": 7, "$t": "$eL" }, + "lbVip2": { "horizontalCenter": -131.505, "size": 18, "text": "1", "visible": false, "y": 7, "$t": "$eL" }, + "lbVip3": { "horizontalCenter": -1.0049999999999955, "size": 18, "text": "Label", "visible": false, "y": 7, "$t": "$eL" }, + "lbVip4": { "horizontalCenter": 134.995, "size": 18, "text": "Label", "visible": false, "y": 7, "$t": "$eL" }, + "lbVip5": { "horizontalCenter": 271.995, "size": 18, "text": "Label", "visible": false, "y": 7, "$t": "$eL" }, + "$sP": ["nameBg", "lbVipName", "flagVip1", "flagVip2", "flagVip3", "flagVip4", "flagVip5", "lbVip1", "lbVip2", "lbVip3", "lbVip4", "lbVip5"], + "$sC": "$eSk" + }, + "VipViewSkin": { + "$path": "resource/eui_skins/web/vip/VipViewSkin.exml", + "$bs": { + "height": 690, + "width": 1027, + "$eleC": [ + "dragDropUI", + "btnClose", + "imgTitle", + "_Image1", + "iconVip", + "effVipGrp", + "btncharge", + "btncharge2Grp", + "ImgTabBgleft", + "ImgTabBgRigth", + "_Image2", + "_Image3", + "bar", + "groupWelfare", + "groupWelfare2", + "lbNeedMoney", + "togBtnVipWel", + "togBtnViptq", + "groupTq" + ] + }, + "dragDropUI": { "source": "apay_bg2_png", "$t": "$eI" }, + "btnClose": { "height": 57, "label": "", "width": 61, "x": 931, "y": 56, "$t": "$eB", "skinName": "VipViewSkin$Skin324" }, + "imgTitle": { "horizontalCenter": 2.5, "source": "biaoti_hytq", "touchEnabled": false, "y": 62, "$t": "$eI" }, + "_Image1": { "source": "tq_bg2_png", "x": 77, "y": 114, "$t": "$eI" }, + "iconVip": { "source": "", "x": 115, "y": 155, "$t": "$eI" }, + "effVipGrp": { "x": 196, "y": 185, "$t": "$eG" }, + "btncharge": { "icon": "tq_btnt1", "label": "", "skinName": "Btn26Skin", "x": 777, "y": 153, "$t": "$eB" }, + "btncharge2Grp": { "width": 137, "x": 777, "y": 143, "$t": "$eG", "$eleC": ["btncharge2", "_Group1"] }, + "btncharge2": { "icon": "tq_btnt16", "label": "", "skinName": "Btn26Skin", "$t": "$eB" }, + "_Group1": { "horizontalCenter": 0, "y": 55, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["moneyLab", "moneyImg", "moneyLab2"] }, + "_HorizontalLayout1": { "gap": 0, "verticalAlign": "middle", "$t": "$eHL" }, + "moneyLab": { "size": 20, "text": "当前已拥有:", "textColor": 16777215, "$t": "$eL" }, + "moneyImg": { "scaleX": 0.6, "scaleY": 0.6, "source": "icon_yuanbao", "x": 40, "$t": "$eI" }, + "moneyLab2": { "size": 20, "text": "*0", "textColor": 2682369, "$t": "$eL" }, + "ImgTabBgleft": { "source": "tq_tabbg1", "x": 347, "y": 247, "$t": "$eI" }, + "ImgTabBgRigth": { "scaleX": -1, "source": "tq_tabbg1", "x": 680, "y": 247, "$t": "$eI" }, + "_Image2": { "source": "tq_bg1_png", "x": 77, "y": 265, "$t": "$eI" }, + "_Image3": { "source": "tq_jdtk", "x": 310, "y": 193, "$t": "$eI" }, + "bar": { "skinName": "bar4Skin", "value": 0, "x": 316, "y": 197, "$t": "$ePB" }, + "groupWelfare": { + "height": 356, + "width": 847, + "x": 90, + "y": 290, + "$t": "$eG", + "$eleC": ["btn_prev", "btn_next", "iconTitle", "effTitleGrp", "_Image4", "_Image5", "_Scroller1", "btnBuy", "btnBuy2Grp", "btnViptq", "_Group4", "imgGet"] + }, + "btn_prev": { "label": "", "x": 275.34, "y": 203, "$t": "$eB", "skinName": "VipViewSkin$Skin325" }, + "btn_next": { "label": "", "x": 524, "y": 203, "$t": "$eB", "skinName": "VipViewSkin$Skin326" }, + "iconTitle": { "bottom": 108, "right": 371, "source": "", "$t": "$eI" }, + "effTitleGrp": { "x": 415.5, "y": 233, "$t": "$eG" }, + "_Image4": { "source": "tq_bg3_png", "x": 19.28, "y": 244, "$t": "$eI" }, + "_Image5": { "source": "tq_zxhl", "x": 39.33, "y": 212, "$t": "$eI" }, + "_Scroller1": { "height": 70, "width": 481, "x": 46, "y": 270, "$t": "$eS", "viewport": "itemList" }, + "itemList": { "height": 64.33, "itemRendererSkinName": "ItemBaseSkin", "width": 372, "x": -9, "y": 0, "$t": "$eLs", "layout": "_HorizontalLayout2" }, + "_HorizontalLayout2": { "$t": "$eHL" }, + "btnBuy": { "icon": "tq_btnt2", "label": "", "skinName": "Btn26Skin", "x": 666, "y": 282, "$t": "$eB" }, + "btnBuy2Grp": { "width": 137, "x": 666, "y": 272, "$t": "$eG", "$eleC": ["btnBuy2", "_Group3"] }, + "btnBuy2": { "icon": "tq_btnt15", "label": "", "skinName": "Btn26Skin", "$t": "$eB" }, + "_Group3": { "horizontalCenter": 0, "y": 55, "$t": "$eG", "layout": "_HorizontalLayout3", "$eleC": ["_Group2", "moneyImg2", "moneyLab3"] }, + "_HorizontalLayout3": { "gap": 0, "verticalAlign": "middle", "$t": "$eHL" }, + "_Group2": { "width": 0, "$t": "$eG", "$eleC": ["moneyLab4"] }, + "moneyLab4": { "right": 0, "size": 18, "text": "", "textColor": 15064527, "$t": "$eL" }, + "moneyImg2": { "scaleX": 0.5, "scaleY": 0.5, "source": "11001", "x": 40, "$t": "$eI" }, + "moneyLab3": { "size": 20, "text": "*0", "textColor": 15064527, "$t": "$eL" }, + "btnViptq": { "height": 56, "width": 154, "x": 655, "y": 200, "$t": "$eB", "skinName": "VipViewSkin$Skin327" }, + "_Group4": { "height": 199, "width": 851, "y": 0, "$t": "$eG", "$eleC": ["icon_Vip0", "icon_Vip1", "icon_Vip2"] }, + "icon_Vip0": { "source": "", "x": 284, "y": 0, "$t": "$eI" }, + "icon_Vip1": { "scaleX": 0.8, "scaleY": 0.8, "source": "", "x": 28, "y": 20, "$t": "$eI" }, + "icon_Vip2": { "scaleX": 0.8, "scaleY": 0.8, "source": "", "x": 597, "y": 20, "$t": "$eI" }, + "imgGet": { "source": "apay_yilingqu", "visible": false, "x": 663, "y": 270, "$t": "$eI" }, + "groupWelfare2": { "visible": false, "width": 847, "x": 90, "y": 290, "$t": "$eG", "$eleC": ["_Group5", "btnWelfare"] }, + "_Group5": { "horizontalCenter": 0, "y": 50, "$t": "$eG", "$eleC": ["_Image6", "imgWelfare", "_Image7"] }, + "_Image6": { "source": "tq_bg6_png", "$t": "$eI" }, + "imgWelfare": { "horizontalCenter": 0, "source": "tq_btnt14", "y": 50, "$t": "$eI" }, + "_Image7": { "horizontalCenter": 0, "source": "tq_btnt13", "y": 100, "$t": "$eI" }, + "btnWelfare": { "horizontalCenter": 0, "label": "", "y": 280, "$t": "$eB", "skinName": "VipViewSkin$Skin328" }, + "lbNeedMoney": { "horizontalCenter": 35.5, "size": 22, "text": "需要1000000元宝即可购买橙卡会员", "y": 149, "$t": "$eL" }, + "togBtnVipWel": { "horizontalCenter": -62.5, "label": "会员福利", "selected": true, "skinName": "Btn24Skin", "y": 247, "$t": "$eTB" }, + "togBtnViptq": { "horizontalCenter": 62.5, "label": "特权详情", "skinName": "Btn25Skin", "y": 247, "$t": "$eTB" }, + "groupTq": { "height": 356, "visible": false, "width": 855, "x": 84, "y": 290, "$t": "$eG", "$eleC": ["_Group7", "scroller"] }, + "_Group7": { "x": 14, "y": 0, "$t": "$eG", "$eleC": ["_Image8", "_Image9", "_Image10", "_Image11", "_Image12", "_Image13", "_Label1", "_Group6"] }, + "_Image8": { "source": "liebiaoding_bg_png", "width": 836, "$t": "$eI" }, + "_Image9": { "source": "tq_top_fenge", "x": 162, "y": 0, "$t": "$eI" }, + "_Image10": { "source": "tq_top_fenge", "x": 296, "y": 0, "$t": "$eI" }, + "_Image11": { "source": "tq_top_fenge", "x": 431, "y": 0, "$t": "$eI" }, + "_Image12": { "source": "tq_top_fenge", "x": 701, "y": 0, "$t": "$eI" }, + "_Image13": { "source": "tq_top_fenge", "x": 566, "y": 0, "$t": "$eI" }, + "_Label1": { "size": 20, "text": "会员特权", "textColor": 15854850, "x": 43, "y": 11, "$t": "$eL" }, + "_Group6": { "height": 43, "width": 671, "x": 164, "y": -3, "$t": "$eG", "layout": "_HorizontalLayout4", "$eleC": ["_Label2", "_Label3", "_Label4", "_Label5", "_Label6"] }, + "_HorizontalLayout4": { "gap": 50, "horizontalAlign": "center", "verticalAlign": "middle", "$t": "$eHL" }, + "_Label2": { "size": 20, "text": "白卡会员", "textColor": 15854850, "$t": "$eL" }, + "_Label3": { "size": 20, "text": "绿卡会员", "textColor": 15854850, "$t": "$eL" }, + "_Label4": { "size": 20, "text": "蓝卡会员", "textColor": 15854850, "$t": "$eL" }, + "_Label5": { "size": 20, "text": "紫卡会员", "textColor": 15854850, "$t": "$eL" }, + "_Label6": { "size": 20, "text": "橙卡会员", "textColor": 15854850, "$t": "$eL" }, + "scroller": { "height": 313, "scrollPolicyH": "off", "width": 849, "x": 9, "y": 43, "$t": "$eS", "viewport": "gList" }, + "gList": { "itemRendererSkinName": "VipItemSkin", "x": 12, "$t": "$eLs", "layout": "_VerticalLayout1", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout1": { "gap": 2, "horizontalAlign": "center", "$t": "$eVL" }, + "_ArrayCollection1": { + "$t": "eui.ArrayCollection", + "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5", "_Object6", "_Object7", "_Object8", "_Object9", "_Object10", "_Object11"] + }, + "_Object1": { "null": "", "$t": "Object" }, + "_Object2": { "null": "", "$t": "Object" }, + "_Object3": { "null": "", "$t": "Object" }, + "_Object4": { "null": "", "$t": "Object" }, + "_Object5": { "null": "", "$t": "Object" }, + "_Object6": { "null": "", "$t": "Object" }, + "_Object7": { "null": "", "$t": "Object" }, + "_Object8": { "null": "", "$t": "Object" }, + "_Object9": { "null": "", "$t": "Object" }, + "_Object10": { "null": "", "$t": "Object" }, + "_Object11": { "null": "", "$t": "Object" }, + "$sP": [ + "dragDropUI", + "btnClose", + "imgTitle", + "iconVip", + "effVipGrp", + "btncharge", + "btncharge2", + "moneyLab", + "moneyImg", + "moneyLab2", + "btncharge2Grp", + "ImgTabBgleft", + "ImgTabBgRigth", + "bar", + "btn_prev", + "btn_next", + "iconTitle", + "effTitleGrp", + "itemList", + "btnBuy", + "btnBuy2", + "moneyLab4", + "moneyImg2", + "moneyLab3", + "btnBuy2Grp", + "btnViptq", + "icon_Vip0", + "icon_Vip1", + "icon_Vip2", + "imgGet", + "groupWelfare", + "imgWelfare", + "btnWelfare", + "groupWelfare2", + "lbNeedMoney", + "togBtnVipWel", + "togBtnViptq", + "gList", + "scroller", + "groupTq" + ], + "$sC": "$eSk" + }, + "VipViewSkin$Skin324": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "apay_x2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "apay_x2" }, + { "target": "_Image1", "name": "scaleX", "value": 0.98 }, + { "target": "_Image1", "name": "scaleY", "value": 0.98 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "apay_x2" }] } + }, + "$sC": "$eSk" + }, + "VipViewSkin$Skin325": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tq_lb_jt1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "tq_lb_jt1" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "VipViewSkin$Skin326": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tq_lb_jt2", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "tq_lb_jt2" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "VipViewSkin$Skin327": { + "$bs": { "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "tq_btn1", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "tq_btnt10", "verticalCenter": 0, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "source", "value": "tq_btn1" }, + { "target": "_Image2", "name": "scaleX", "value": 0.95 }, + { "target": "_Image2", "name": "scaleY", "value": 0.95 }, + { "target": "_Image2", "name": "source", "value": "tq_btnt10" } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "VipViewSkin$Skin328": { + "$bs": { "$eleC": ["_Image1", "_Image2"] }, + "_Image1": { "horizontalCenter": 0, "source": "tab_01_2", "verticalCenter": 0, "$t": "$eI" }, + "_Image2": { "horizontalCenter": 0, "source": "tq_btnt12", "verticalCenter": 3, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image2", "name": "scaleX", "value": 0.95 }, + { "target": "_Image2", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": {} + }, + "$sC": "$eSk" + }, + "VipPrivilegeItemSkin": { + "$path": "resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml", + "$bs": { "width": 350, "$eleC": ["itemBase", "labDesc"] }, + "itemBase": { "skinName": "ItemBaseSkin", "verticalCenter": 0, "x": 20, "$t": "app.ItemBase" }, + "labDesc": { "left": 100, "lineSpacing": 5, "right": 0, "size": 18, "text": "需要1000000元宝即可\n需要1000000元宝即可购买橙卡会员", "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["itemBase", "labDesc"], + "$sC": "$eSk" + }, + "VipPrivilegeViewSkin": { + "$path": "resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml", + "$bs": { "height": 500, "width": 400, "$eleC": ["_Image1", "_Image2", "itemScroller", "btnClose"] }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsbg", "top": 0, "$t": "$eI" }, + "_Image2": { "bottom": 0, "left": 0, "right": 0, "scale9Grid": "7,6,11,11", "source": "9s_tipsk", "top": 0, "$t": "$eI" }, + "itemScroller": { "bottom": 10, "left": 20, "right": 20, "top": 10, "$t": "$eS", "viewport": "_Group4" }, + "_Group4": { "percentWidth": 100, "$t": "$eG", "layout": "_VerticalLayout5", "$eleC": ["grp1", "grp2", "grp3"] }, + "_VerticalLayout5": { "gap": 20, "paddingBottom": 10, "paddingLeft": 0, "paddingRight": 0, "paddingTop": 10, "$t": "$eVL" }, + "grp1": { "percentWidth": 100, "$t": "$eG", "layout": "_VerticalLayout1", "$eleC": ["_Group1", "labDesc1"] }, + "_VerticalLayout1": { "gap": 10, "$t": "$eVL" }, + "_Group1": { "$t": "$eG", "$eleC": ["_Image3", "labTitle1"] }, + "_Image3": { "source": "tq_bg5", "$t": "$eI" }, + "labTitle1": { "size": 20, "text": "会员专属特权", "percentWidth": 100, "y": 4, "$t": "$eL" }, + "labDesc1": { "lineSpacing": 10, "size": 18, "text": "需要1000000元宝即可购买橙卡会员\n需要1000000元宝即可购买橙卡会员", "percentWidth": 100, "$t": "$eL" }, + "grp2": { "percentWidth": 100, "$t": "$eG", "layout": "_VerticalLayout2", "$eleC": ["_Group2", "labDesc2"] }, + "_VerticalLayout2": { "gap": 10, "$t": "$eVL" }, + "_Group2": { "$t": "$eG", "$eleC": ["_Image4", "labTitle2"] }, + "_Image4": { "source": "tq_bg5", "$t": "$eI" }, + "labTitle2": { "size": 20, "text": "会员专属特权", "percentWidth": 100, "y": 4, "$t": "$eL" }, + "labDesc2": { "lineSpacing": 10, "size": 18, "text": "需要1000000元宝即可购买橙卡会员\n需要1000000元宝即可购买橙卡会员", "percentWidth": 100, "$t": "$eL" }, + "grp3": { "percentWidth": 100, "$t": "$eG", "layout": "_VerticalLayout4", "$eleC": ["_Group3", "labDesc3List"] }, + "_VerticalLayout4": { "gap": 10, "$t": "$eVL" }, + "_Group3": { "$t": "$eG", "$eleC": ["_Image5", "labTitle3"] }, + "_Image5": { "source": "tq_bg5", "$t": "$eI" }, + "labTitle3": { "size": 20, "text": "会员专属特权", "percentWidth": 100, "y": 4, "$t": "$eL" }, + "labDesc3List": { "itemRendererSkinName": "VipPrivilegeItemSkin", "percentWidth": 100, "y": 38, "$t": "$eLs", "layout": "_VerticalLayout3", "dataProvider": "_ArrayCollection1" }, + "_VerticalLayout3": { "gap": 10, "$t": "$eVL" }, + "_ArrayCollection1": { "$t": "eui.ArrayCollection", "source": ["_Object1", "_Object2", "_Object3", "_Object4", "_Object5"] }, + "_Object1": { "$t": "Object" }, + "_Object2": { "$t": "Object" }, + "_Object3": { "$t": "Object" }, + "_Object4": { "$t": "Object" }, + "_Object5": { "$t": "Object" }, + "btnClose": { "label": "", "right": 5, "skinName": "ButtonCloseSkin", "top": 5, "$t": "$eB" }, + "$sP": ["labTitle1", "labDesc1", "grp1", "labTitle2", "labDesc2", "grp2", "labTitle3", "labDesc3List", "grp3", "itemScroller", "btnClose"], + "$sC": "$eSk" + }, + "WarehouseWinSkin": { + "$path": "resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml", + "$bs": { "height": 529, "width": 416, "$eleC": ["dragDropUI", "tabBar", "warehouseGrp", "finishingBtn", "saveCheck", "_Label1", "btn_close"] }, + "dragDropUI": { "source": "cangku_bg_png", "$t": "$eI" }, + "tabBar": { "itemRendererSkinName": "CommonTarBtnWinSkin3", "width": 36, "x": -34, "y": 43, "$t": "$eT", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": -11, "$t": "$eVL" }, + "warehouseGrp": { "height": 455, "name": "装备", "width": 383, "x": 16, "y": 19, "$t": "$eG", "$eleC": ["_Scroller1"] }, + "_Scroller1": { "height": 455, "scrollPolicyH": "off", "scrollPolicyV": "off", "width": 383, "$t": "$eS", "viewport": "_Group1" }, + "_Group1": { "$t": "$eG", "$eleC": ["equipBg", "equipLab", "equipStar", "itemEffGrp"] }, + "equipBg": { "height": 455, "width": 383, "$t": "$eG" }, + "equipLab": { "height": 455, "touchEnabled": false, "width": 383, "$t": "$eG" }, + "equipStar": { "height": 455, "touchEnabled": false, "width": 383, "x": 0, "y": 0, "$t": "$eG" }, + "itemEffGrp": { "height": 455, "touchEnabled": false, "width": 383, "$t": "$eG" }, + "finishingBtn": { "bottom": 7, "horizontalCenter": 137.5, "label": "整 理", "$t": "$eB", "skinName": "WarehouseWinSkin$Skin329" }, + "saveCheck": { "label": "CheckBox", "skinName": "CheckBox2", "x": 24, "y": 486, "$t": "$eCB" }, + "_Label1": { "size": 18, "stroke": 2, "text": "一键存取", "textColor": 15064527, "x": 70, "y": 496, "$t": "$eL" }, + "btn_close": { "label": "", "x": -41.32, "y": -7.67, "$t": "$eB", "skinName": "WarehouseWinSkin$Skin330" }, + "$sP": ["dragDropUI", "tabBar", "equipBg", "equipLab", "equipStar", "itemEffGrp", "warehouseGrp", "finishingBtn", "saveCheck", "btn_close"], + "$sC": "$eSk" + }, + "WarehouseWinSkin$Skin329": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "bagbtn_1", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 20, "stroke": 2, "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "bagbtn_1" }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "bagbtn_2" }] } + }, + "$sC": "$eSk" + }, + "WarehouseWinSkin$Skin330": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + }, + "WorshipItemSkin": { + "$path": "resource/eui_skins/web/worship/WorshipItemSkin.exml", + "$bs": { "height": 270, "width": 282, "$eleC": ["_Group1"] }, + "_Group1": { + "height": 270, + "touchChildren": true, + "touchEnabled": false, + "touchThrough": true, + "width": 282, + "$t": "$eG", + "$eleC": ["_Image1", "modelGroup", "_Image6", "imgTitle", "playEff", "_Image7", "playName", "worship", "count", "check"] + }, + "_Image1": { "bottom": 0, "left": 0, "right": 0, "source": "Act_mobai_jsbg_png", "top": 0, "$t": "$eI" }, + "modelGroup": { + "bottom": 22, + "height": 525, + "right": 45, + "scaleX": 0.8, + "scaleY": 0.8, + "touchChildren": false, + "touchEnabled": false, + "touchThrough": true, + "width": 450, + "$t": "$eG", + "$eleC": ["_Image2", "_Image3", "_Image4", "_Image5"] + }, + "_Image2": { "bottom": 0, "name": "bg", "right": 0, "source": "", "$t": "$eI" }, + "_Image3": { "bottom": 0, "name": "cloth", "right": 0, "source": "", "$t": "$eI" }, + "_Image4": { "bottom": 0, "name": "arm", "right": 0, "source": "", "$t": "$eI" }, + "_Image5": { "bottom": 0, "name": "helmet", "right": 0, "source": "", "$t": "$eI" }, + "_Image6": { "source": "kf_kfmb_bg1", "x": 15, "y": 43, "$t": "$eI" }, + "imgTitle": { "source": "kf_mb_dynd", "x": 15, "y": 55, "$t": "$eI" }, + "playEff": { "horizontalCenter": 0, "touchChildren": false, "touchEnabled": false, "verticalCenter": 83.5, "x": 145, "y": 219, "$t": "$eG" }, + "_Image7": { "horizontalCenter": 0.5, "source": "Act_mobai_biaotibg", "top": 8, "x": 18, "y": 12, "$t": "$eI" }, + "playName": { "horizontalCenter": 1, "size": 18, "stroke": 2, "text": "我的的", "textColor": 16742144, "top": 11, "x": 61, "y": 20, "$t": "$eL" }, + "worship": { "bottom": 11, "horizontalCenter": 0, "label": "膜 拜", "skinName": "Btn9Skin", "x": 98, "y": 218, "$t": "$eB" }, + "count": { "bold": true, "bottom": 23, "right": 13, "size": 15, "stroke": 2, "text": "", "textColor": 2682369, "x": 212, "y": 232, "$t": "$eL" }, + "check": { "bottom": 13, "icon": "Act_chakan", "label": "", "left": 22, "skinName": "Btn0Skin", "x": 22, "y": 217, "$t": "$eB" }, + "$sP": ["modelGroup", "imgTitle", "playEff", "playName", "worship", "count", "check"], + "$sC": "$eSk" + }, + "WorshipWinSkin": { + "$path": "resource/eui_skins/web/worship/WorshipWinSkin.exml", + "$bs": { "height": 646, "width": 912, "$eleC": ["dragDropUI", "_RuleTipsButton1", "_Group1"] }, + "dragDropUI": { "skinName": "ViewBgWin1Skin", "$t": "app.UIViewFrame" }, + "_RuleTipsButton1": { "label": "Button", "left": 31, "ruleId": "32", "top": 14, "$t": "app.RuleTipsButton" }, + "_Group1": { + "bottom": 30, + "horizontalCenter": -1, + "top": 61, + "touchChildren": true, + "touchEnabled": false, + "touchThrough": true, + "width": 858, + "$t": "$eG", + "$eleC": ["bg", "item0", "item1", "item2", "item3", "item4", "item5"] + }, + "bg": { "source": "worship_bg_jpg", "width": 860, "height": 555, "horizontalCenter": 0, "verticalCenter": 0, "$t": "$eI" }, + "item0": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 2, "y": 5, "$t": "app.WorshipItem" }, + "item1": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 289, "y": 5, "$t": "app.WorshipItem" }, + "item2": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 576, "y": 5, "$t": "app.WorshipItem" }, + "item3": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 2, "y": 280, "$t": "app.WorshipItem" }, + "item4": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 289, "y": 280, "$t": "app.WorshipItem" }, + "item5": { "height": 270, "skinName": "WorshipItemSkin", "touchEnabled": false, "width": 282, "x": 576, "y": 280, "$t": "app.WorshipItem" }, + "$sP": ["dragDropUI", "item0", "item1", "item2", "item3", "item4", "item5"], + "$sC": "$eSk" + }, + + "ZhuanZhiSkin": { + "$path": "resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml", + "$bs": { + "height": 650, + "width": 1021, + "$eleC": [ + "dragDropUI", + "btn_operation", + "title_image", + "title_label", + "title_bg1", + "title_bg2", + "title_bg3", + "title_bg4", + "_Image6", + "closeBtn", + "roleGrp", + "title_job", + "title_sex", + "job_desc", + "_Label4", + "_Label5", + "cdTime", + "jobIntroduce", + "label1", + "label2", + "strList", + "job_list", + "_Group2" + ] + }, + "dragDropUI": { "source": "jobchange_bg", "$t": "$eI" }, + "btn_operation": { "anchorOffsetX": 0, "label": "确认转换", "scaleX": 1.26, "scaleY": 1.26, "width": 108, "x": 709, "y": 520, "$t": "$eB", "skinName": "ZhuanZhiSkin$Skin331" }, + "title_image": { "source": "biaoti_zhuanzhi", "touchEnabled": false, "x": 437, "y": -6, "$t": "$eI" }, + "title_label": { "size": 40, "text": "性别转换", "textColor": 15655172, "x": 452, "y": -6, "bold": true, "visible": false, "$t": "$eL" }, + "title_bg1": { "source": "jobchange_bg3", "x": 192, "y": 84, "$t": "$eI" }, + "title_bg2": { "source": "jobchange_bg3", "x": 198, "y": 242, "$t": "$eI" }, + "title_bg3": { "source": "jobchange_bg3", "x": 192, "y": 420, "$t": "$eI" }, + "title_bg4": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 139, "scale9Grid": "6,6,40,40", "source": "jobchange_bg2", "width": 317, "x": 131, "y": 280, "$t": "$eI" }, + "_Image6": { "scaleX": 0.5, "scaleY": 0.5, "source": "itemIcon_json.13477", "x": 650, "y": 454, "$t": "$eI" }, + "closeBtn": { "height": 60, "label": "", "width": 60, "x": 963.33, "y": 0.34, "$t": "$eB", "skinName": "ZhuanZhiSkin$Skin332" }, + "roleGrp": { "scaleX": 0.9, "scaleY": 0.9, "x": 282, "y": 483.33, "$t": "$eG" }, + "title_job": { "size": 22, "stroke": 1, "text": "选择职业", "textAlign": "center", "textColor": 15655172, "width": 120, "x": 223, "y": 91, "$t": "$eL" }, + "title_sex": { "size": 22, "stroke": 1, "text": "选男女", "textAlign": "center", "textColor": 15655172, "width": 120, "x": 223, "y": 426, "$t": "$eL" }, + "job_desc": { "size": 22, "stroke": 1, "text": "职业说明", "textAlign": "center", "textColor": 10065023, "width": 120, "x": 223, "y": 249, "$t": "$eL" }, + "_Label4": { "size": 22, "stroke": 1, "text": "消耗:", "textColor": 15655172, "x": 596, "y": 458, "$t": "$eL" }, + "_Label5": { "size": 22, "stroke": 1, "text": "转职卡*1或拥有永久转职卡", "textColor": 15655172, "x": 682, "y": 458, "$t": "$eL" }, + "cdTime": { "anchorOffsetX": 0, "size": 22, "stroke": 1, "text": "转职CD:", "textAlign": "center", "textColor": 15655172, "width": 216, "x": 667, "y": 488, "$t": "$eL" }, + "jobIntroduce": { "height": 119, "size": 22, "text": "", "textColor": 10065023, "width": 297, "x": 139, "y": 290.61, "$t": "$eL" }, + "label1": { "size": 22, "stroke": 1, "text": "转换成功后:", "textColor": 15655172, "x": 607, "y": 101, "$t": "$eL" }, + "label2": { + "anchorOffsetX": 0, + "anchorOffsetY": 0, + "lineSpacing": 4, + "size": 22, + "stroke": 1, + "text": "职业转换成功将重新登陆游戏转职不可逆转,请慎重选择转职后三内不可再次转置", + "textColor": 16742144, + "width": 339, + "x": 612, + "y": 365, + "$t": "$eL" + }, + "strList": { "anchorOffsetX": 0, "anchorOffsetY": 0, "height": 223, "itemRendererSkinName": "ResonateItem2Skin", "width": 339, "x": 610, "y": 131, "$t": "$eLs", "layout": "_VerticalLayout1" }, + "_VerticalLayout1": { "gap": 0, "$t": "$eVL" }, + "job_list": { "x": 139, "y": 126, "$t": "$eG", "layout": "_HorizontalLayout1", "$eleC": ["job1", "job2", "job3"] }, + "_HorizontalLayout1": { "gap": 26, "$t": "$eHL" }, + "job1": { "icon": "login_zs_2", "label": "战士", "skinName": "Btn23Skin", "$t": "$eB" }, + "job2": { "anchorOffsetX": 0, "icon": "login_fs_2", "label": "法师", "skinName": "Btn23Skin", "x": 135, "y": -1, "$t": "$eB" }, + "job3": { "icon": "login_ds_2", "label": "道士", "skinName": "Btn23Skin", "x": 283, "y": -1, "$t": "$eB" }, + "_Group2": { "x": 185, "y": 459, "$t": "$eG", "layout": "_HorizontalLayout2", "$eleC": ["boy", "girl"] }, + "_HorizontalLayout2": { "gap": 26, "$t": "$eHL" }, + "boy": { "icon": "login_nan_2", "label": "男", "skinName": "Btn23Skin", "x": 1.52, "$t": "$eB" }, + "girl": { "icon": "login_nv_2", "label": "女", "skinName": "Btn23Skin", "x": 146.92, "$t": "$eB" }, + "$sP": [ + "dragDropUI", + "btn_operation", + "title_image", + "title_label", + "title_job", + "title_sex", + "job_desc", + "job_list", + "title_bg1", + "title_bg2", + "title_bg3", + "title_bg4", + "closeBtn", + "roleGrp", + "cdTime", + "jobIntroduce", + "label1", + "label2", + "strList", + "job1", + "job2", + "job3", + "boy", + "girl" + ], + "$sC": "$eSk" + }, + "ZhuanZhiSkin$Skin331": { + "$bs": { "$eleC": ["_Image1", "labelDisplay"] }, + "_Image1": { "horizontalCenter": 0, "source": "tips_btn", "verticalCenter": 0, "$t": "$eI" }, + "labelDisplay": { "horizontalCenter": 0, "size": 16, "stroke": 2, "textColor": 15655172, "verticalCenter": 0, "$t": "$eL" }, + "$sP": ["labelDisplay"], + "$s": { + "up": {}, + "down": { + "$ssP": [ + { "target": "_Image1", "name": "source", "value": "tips_btn" }, + { "target": "_Image1", "name": "scaleX", "value": 0.95 }, + { "target": "_Image1", "name": "scaleY", "value": 0.95 } + ] + }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "tips_btn" }] } + }, + "$sC": "$eSk" + }, + "ZhuanZhiSkin$Skin332": { + "$bs": { "$eleC": ["_Image1"] }, + "_Image1": { "percentHeight": 100, "source": "btn_guanbi3", "percentWidth": 100, "$t": "$eI" }, + "$s": { + "up": {}, + "down": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] }, + "disabled": { "$ssP": [{ "target": "_Image1", "name": "source", "value": "btn_guanbi4" }] } + }, + "$sC": "$eSk" + } +} diff --git a/resource_Publish/1 b/resource_Publish/1 new file mode 100644 index 0000000..2a8bdbd --- /dev/null +++ b/resource_Publish/1 @@ -0,0 +1,4501 @@ +{ + "groups":[ + { + "keys":"attrTips_json,common_json,main_json,mapmini_png,scroll_json,buff_json,hp_fnt_fnt,chat_json,itemIcon_json,title_json,huanying_bg_1_png,huanying_bg_2_png,huanying_bg_3_png,huanying_bg_4_png,npc_welcome_mp3", + "name":"preload" + }, + { + "keys":"Login_json,LOGO_png,SelectServer_json", + "name":"login" + } + ], + "resources":[ + { + "name":"checkbox_select_disabled_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_disabled.png" + }, + { + "name":"checkbox_select_down_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_down.png" + }, + { + "name":"checkbox_select_up_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_up.png" + }, + { + "name":"checkbox_unselect_png", + "type":"image", + "url":"assets/CheckBox/checkbox_unselect.png" + }, + { + "name":"selected_png", + "type":"image", + "url":"assets/ItemRenderer/selected.png" + }, + { + "name":"border_png", + "type":"image", + "url":"assets/Panel/border.png" + }, + { + "name":"header_png", + "type":"image", + "url":"assets/Panel/header.png" + }, + { + "name":"radiobutton_select_disabled_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_disabled.png" + }, + { + "name":"radiobutton_select_down_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_down.png" + }, + { + "name":"radiobutton_select_up_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_up.png" + }, + { + "name":"radiobutton_unselect_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_unselect.png" + }, + { + "name":"roundthumb_png", + "type":"image", + "url":"assets/ScrollBar/roundthumb.png" + }, + { + "name":"thumb_png", + "type":"image", + "url":"assets/Slider/thumb.png" + }, + { + "name":"track_png", + "type":"image", + "url":"assets/Slider/track.png" + }, + { + "name":"tracklight_png", + "type":"image", + "url":"assets/Slider/tracklight.png" + }, + { + "name":"handle_png", + "type":"image", + "url":"assets/ToggleSwitch/handle.png" + }, + { + "name":"off_png", + "type":"image", + "url":"assets/ToggleSwitch/off.png" + }, + { + "name":"on_png", + "type":"image", + "url":"assets/ToggleSwitch/on.png" + }, + { + "name":"button_down_png", + "type":"image", + "url":"assets/Button/button_down.png" + }, + { + "name":"button_up_png", + "type":"image", + "url":"assets/Button/button_up.png" + }, + { + "name":"thumb_pb_png", + "type":"image", + "url":"assets/ProgressBar/thumb_pb.png" + }, + { + "name":"track_pb_png", + "type":"image", + "url":"assets/ProgressBar/track_pb.png" + }, + { + "name":"track_sb_png", + "type":"image", + "url":"assets/ScrollBar/track_sb.png" + }, + { + "name":"bg_jpg", + "type":"image", + "url":"assets/bg.jpg" + }, + { + "name":"egret_icon_png", + "type":"image", + "url":"assets/egret_icon.png" + }, + { + "name":"blood_json", + "subkeys":"blood_chaowan,boolBg,boolGreen,boolRed,boolyel", + "type":"sheet", + "url":"assets/image/public/blood.json" + }, + { + "name":"common_json", + "subkeys":"9s_bg_1,9s_bg_2,9s_bg_3,9s_dating_tipsbg,9s_tipsbg,9s_tipsk,apay_gou,apay_tab_1,apay_tab_2,apay_tab_bg,apay_x2,apay_yilingqu,bag_equipbg,bag_equipk,bag_fanye_1,bag_fanye_2,bag_fanye_3,bag_fanye_bg,bag_fengexian,bag_jia,bag_piliangbg_0,bag_piliangbg_1,bag_piliangbg_2,bag_piliangbg_3,bag_piliangbg_4,bag_piliangbg_5,bagbtn_1,bagbtn_2,bagfy_xian,bg_jianbian1,bg_jianbian2,bg_quyu_1,bg_quyu_2,bg_shuzi_1,bg_sixiang_2,bg_sixiang_3,biaoti_bg,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,btn_apay,btn_apay2,btn_fanhui,btn_fanhui2,btn_guanbi,btn_guanbi2,btn_guanbi3,btn_guanbi4,btn_hs,btn_ssck,btn_yjhs,chat_bg_bg2,chat_button_lt,chat_fasongjiantou,chat_ltk_0,chat_ltk_1,chat_ltk_3,chat_ltk_you,chat_ltk_zuo,chat_shangjiantou,chat_yeqian_liaotian1,chat_yeqian_liaotian2,com_bg_kuang_3,com_bg_kuang_xian1,com_bg_kuang_xian2,com_bg_kuang_xian3,com_btn_xiala1,com_btn_xiala2,com_fengexian,com_gou_1,com_gou_2,com_icon_bg1,com_icon_bg2,com_jia,com_jiabg,com_jiajia,com_jian,com_jianjian,com_jiantoux2,com_jiantoux3,com_latiao_bg,com_latiao_yuan,com_ljt_1,com_ljt_2,com_yeqian_3,com_yeqian_4,com_yeqian_5,com_yeqian_6,com_yeqian_7,com_yizhuangbei,com_yuan_hong,com_yuan_kong,common__tjgz,common_btn_15,common_btn_16,common_ckxx,common_jhmdl,common_liebiaoding_bg,common_liebiaoding_fenge,common_liebiaoxuanzhong,common_lock,common_qxgz,common_schy,common_shmd,common_sl,common_slider_bg,common_slider_t,common_sqrd,common_sy,common_syy,common_tjhy,common_xx,common_xx_bg,common_xyy,common_yeqian_5,common_yeqian_6,common_yqzd,dikuang,icon_bangding,icon_jinbi,icon_quan,icon_yinliang,icon_yuanbao,icontype_1,icontype_2,kf_kftz_btn,kuaijielan2,kuaijielanBg,liaotianpaopao,m_lst_dian,m_lst_xian,name_touxiangk,npc_lingxing,num_bbj,num_bj,num_shihua,pmd_bg1,pmd_bg2,renwubg1,renwubg2,rule_bg,rule_biaotibg,rule_btn,shuxinghuadong_1,shuxinghuadong_2,t_b_xuanfu,t_sz_bh,t_sz_gj,t_sz_hs,t_sz_jc,t_sz_wp,t_sz_xt,t_sz_yp,tab_01_1,tab_01_2,tab_01_3,tips_btn,tips_btn1,yeqian_1,yeqian_2,zjmgonggaobg", + "type":"sheet", + "url":"assets/common/common.json" + }, + { + "name":"role_json", + "subkeys":"Godturn_bg2,Godturn_cionbg_1,Godturn_cionbg_2,Godturn_cionbg_3,Godturn_cionbg_4,Godturn_iconk,Godturn_jh_0,Godturn_jh_1,Godturn_jh_10,Godturn_jh_2,Godturn_jh_3,Godturn_jh_4,Godturn_jh_5,Godturn_jh_6,Godturn_jh_7,Godturn_jh_8,Godturn_jh_9,Godturn_jh_jh,Godturn_jh_wjh,anjian_1,anjian_2,anjian_3,anjian_4,anjian_5,anjian_6,anjian_bg,anjian_btn,anjian_e,anjian_guang,anjian_q,anjian_qingkong,anjian_queding,anjian_r,anjian_skillk,anjian_sz,anjian_t,anjian_w,anjian_y,arm_0,arm_1,arm_2,bg_jineng_1,bg_jineng_2,bg_neigongzb1,blessing_bg2,blessing_bglz,blessing_jdbg,blessing_jdt,blessing_jdt1,blessing_taiyan,blessing_taiyan1,blessing_tubiao,blessing_xingxing,blessing_xingxing1,blessing_yueliang,blessing_yueliang1,btn_chongwu_icon,btn_chongwu_icon2,btn_dz_qh,btn_guanzhi,btn_jineng_1,btn_jineng_2,btn_jn_bh,btn_jn_bh2,btn_jn_ty,btn_jn_ty2,btn_jn_zy,btn_jn_zy2,btn_js_ch,btn_js_ch2,btn_js_shiz,btn_js_shiz2,btn_js_sx,btn_js_sx2,btn_js_sz,btn_js_sz2,btn_js_zb,btn_js_zb2,btn_js_zf,btn_js_zf2,btn_js_zj,btn_js_zj2,btn_neigong,btn_neigong2,btn_ngbs,btn_shenmo,btn_shenmo2,btn_shuxing_1,btn_shuxing_2,btn_shuxing_bg,ch_bg,ch_zsz,gz_zw_0,gz_zw_1,gz_zw_10,gz_zw_11,gz_zw_12,gz_zw_13,gz_zw_14,gz_zw_15,gz_zw_16,gz_zw_17,gz_zw_18,gz_zw_19,gz_zw_2,gz_zw_20,gz_zw_21,gz_zw_22,gz_zw_23,gz_zw_24,gz_zw_25,gz_zw_26,gz_zw_27,gz_zw_28,gz_zw_3,gz_zw_4,gz_zw_5,gz_zw_6,gz_zw_7,gz_zw_8,gz_zw_9,icon_guanzhi,icon_neigong,ng_t_neigong,qh_huoqu,qh_icon_bg,qh_icon_huwan,qh_icon_huwan2,qh_icon_jiezhi,qh_icon_jiezhi2,qh_icon_toukui,qh_icon_toukui2,qh_icon_wuqi,qh_icon_wuqi2,qh_icon_xianglian,qh_icon_xianglian2,qh_icon_xiezi,qh_icon_xiezi2,qh_icon_xz,qh_icon_yaodai,qh_icon_yaodai2,qh_icon_yifu,qh_icon_yifu2,qh_jiantou,qh_sxbg,qh_t_huwan,qh_t_jiezhi,qh_t_toukui,qh_t_wuqi,qh_t_xianglian,qh_t_xiezi,qh_t_yaodai,qh_t_yifu,role_bh_mc1,role_bh_mc2,role_bh_mc3,role_bh_mc4,role_k2,role_sx_bg2,role_sx_btn1,role_sx_btn2,role_sx_btnsx,role_sx_btnzt,role_tab1,role_tab2,role_tab3,role_tab4,role_tab_bw1,role_tab_bw2,role_tab_jn1,role_tab_jn2,role_tab_js1,role_tab_js2,role_tab_qh1,role_tab_qh2,role_tab_sw1,role_tab_sw2,role_tab_zs1,role_tab_zs2,role_zt_bg,sz_bg_2,sz_bg_3,sz_btn,sz_btn_1,sz_btn_2,sz_btn_3,sz_btn_4,sz_btn_5,sz_btn_6,sz_chuandai,sz_tab_1,sz_tab_2,sz_tab_t1,sz_tab_t2,sz_tab_t3,sz_xuanzhong,t_neigongzb,t_neigongzb1,tab_ngzb,tab_ngzb1,tab_ngzbt01,tab_ngzbt02,tab_ngzbt11,tab_ngzbt12,transform_bg_shuxing,zj_1_1,zj_1_2,zj_1_3,zj_1_4,zj_2_1,zj_2_2,zj_2_3,zj_2_4,zj_3_1,zj_3_2,zj_3_3,zj_3_4,zj_4_1,zj_4_2,zj_4_3,zj_4_4,zj_5_1,zj_5_2,zj_5_3,zj_5_4", + "type":"sheet", + "url":"assets/role/role.json" + }, + { + "name":"wslxc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-5.mp3" + }, + { + "name":"wslxc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-1.mp3" + }, + { + "name":"xiee-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-5.mp3" + }, + { + "name":"xiee-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-1.mp3" + }, + { + "name":"heiseequ-4_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-4.mp3" + }, + { + "name":"heiseequ-2_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-2.mp3" + }, + { + "name":"xieshe-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-5.mp3" + }, + { + "name":"xieshe-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-1.mp3" + }, + { + "name":"fenchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-4.mp3" + }, + { + "name":"fenchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-2.mp3" + }, + { + "name":"shuyao-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shuyao-2.mp3" + }, + { + "name":"wslxc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-4.mp3" + }, + { + "name":"wslxc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-2.mp3" + }, + { + "name":"xiee-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-4.mp3" + }, + { + "name":"xiee-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-2.mp3" + }, + { + "name":"heiseequ-5_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-5.mp3" + }, + { + "name":"heiseequ-1_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-1.mp3" + }, + { + "name":"xieshe-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-4.mp3" + }, + { + "name":"xieshe-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-2.mp3" + }, + { + "name":"fenchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-5.mp3" + }, + { + "name":"fenchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-1.mp3" + }, + { + "name":"nanshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nanshouji.mp3" + }, + { + "name":"yidong_mp3", + "type":"sound", + "url":"assets/sound/character/yidong.mp3" + }, + { + "name":"nvshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nvshouji.mp3" + }, + { + "name":"nansiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nansiwang.mp3" + }, + { + "name":"gongji_mp3", + "type":"sound", + "url":"assets/sound/character/gongji.mp3" + }, + { + "name":"nvsiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nvsiwang.mp3" + }, + { + "name":"shenshou-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-4.mp3" + }, + { + "name":"lu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-5.mp3" + }, + { + "name":"dpm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-4.mp3" + }, + { + "name":"dpm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-2.mp3" + }, + { + "name":"lu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-1.mp3" + }, + { + "name":"pttongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-5.mp3" + }, + { + "name":"pttongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-1.mp3" + }, + { + "name":"ying-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-4.mp3" + }, + { + "name":"dq-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-5.mp3" + }, + { + "name":"ying-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-2.mp3" + }, + { + "name":"hm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-4.mp3" + }, + { + "name":"hm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-2.mp3" + }, + { + "name":"dq-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-1.mp3" + }, + { + "name":"yang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-4.mp3" + }, + { + "name":"yang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-2.mp3" + }, + { + "name":"gumotongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-4.mp3" + }, + { + "name":"sdbianfu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-5.mp3" + }, + { + "name":"zmjz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-4.mp3" + }, + { + "name":"gumotongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-2.mp3" + }, + { + "name":"huo-2_mp3", + "type":"sound", + "url":"assets/sound/monster/huo-2.mp3" + }, + { + "name":"zmjz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-2.mp3" + }, + { + "name":"bf-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-5.mp3" + }, + { + "name":"bf-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-1.mp3" + }, + { + "name":"dcr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-5.mp3" + }, + { + "name":"qianchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-4.mp3" + }, + { + "name":"kl-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-4.mp3" + }, + { + "name":"dcr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-1.mp3" + }, + { + "name":"qianchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-2.mp3" + }, + { + "name":"kl-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-2.mp3" + }, + { + "name":"woma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-5.mp3" + }, + { + "name":"woma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-1.mp3" + }, + { + "name":"slxr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-5.mp3" + }, + { + "name":"shenshouz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-5.mp3" + }, + { + "name":"slxr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-1.mp3" + }, + { + "name":"shenshouz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-1.mp3" + }, + { + "name":"lang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-5.mp3" + }, + { + "name":"djs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-5.mp3" + }, + { + "name":"zumagjs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-4.mp3" + }, + { + "name":"zumagjs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-2.mp3" + }, + { + "name":"lang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-1.mp3" + }, + { + "name":"djs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-1.mp3" + }, + { + "name":"js-5_mp3", + "type":"sound", + "url":"assets/sound/monster/js-5.mp3" + }, + { + "name":"zuma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-4.mp3" + }, + { + "name":"zuma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-2.mp3" + }, + { + "name":"js-1_mp3", + "type":"sound", + "url":"assets/sound/monster/js-1.mp3" + }, + { + "name":"duojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-4.mp3" + }, + { + "name":"kjc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-5.mp3" + }, + { + "name":"duojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-2.mp3" + }, + { + "name":"wugong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-4.mp3" + }, + { + "name":"kjc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-1.mp3" + }, + { + "name":"wugong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-2.mp3" + }, + { + "name":"ji-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-4.mp3" + }, + { + "name":"banshouyongshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-5.mp3" + }, + { + "name":"ji-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-2.mp3" + }, + { + "name":"banshouyongshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-1.mp3" + }, + { + "name":"bosstongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-4.mp3" + }, + { + "name":"bosstongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-2.mp3" + }, + { + "name":"zztongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-4.mp3" + }, + { + "name":"zztongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-2.mp3" + }, + { + "name":"banshouzhanshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-4.mp3" + }, + { + "name":"banshouzhanshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-2.mp3" + }, + { + "name":"jxduojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-4.mp3" + }, + { + "name":"klss-2_mp3", + "type":"sound", + "url":"assets/sound/monster/klss-2.mp3" + }, + { + "name":"jxduojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-2.mp3" + }, + { + "name":"tiaotiaofeng-4_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-4.mp3" + }, + { + "name":"dzz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-4.mp3" + }, + { + "name":"tiaotiaofeng-2_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-2.mp3" + }, + { + "name":"dzz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-2.mp3" + }, + { + "name":"ruchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-4.mp3" + }, + { + "name":"yezhu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-5.mp3" + }, + { + "name":"hshs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-4.mp3" + }, + { + "name":"banshouren-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-4.mp3" + }, + { + "name":"hshs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-2.mp3" + }, + { + "name":"ruchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-2.mp3" + }, + { + "name":"banshouren-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-2.mp3" + }, + { + "name":"yezhu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-1.mp3" + }, + { + "name":"shiwang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-4.mp3" + }, + { + "name":"shiwang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-2.mp3" + }, + { + "name":"shenshou-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-5.mp3" + }, + { + "name":"shenshou-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-1.mp3" + }, + { + "name":"dpm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-5.mp3" + }, + { + "name":"lu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-4.mp3" + }, + { + "name":"lu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-2.mp3" + }, + { + "name":"dpm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-1.mp3" + }, + { + "name":"pttongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-4.mp3" + }, + { + "name":"pttongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-2.mp3" + }, + { + "name":"ying-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-5.mp3" + }, + { + "name":"hm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-5.mp3" + }, + { + "name":"dq-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-4.mp3" + }, + { + "name":"ying-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-1.mp3" + }, + { + "name":"dq-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-2.mp3" + }, + { + "name":"hm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-1.mp3" + }, + { + "name":"yang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-5.mp3" + }, + { + "name":"gumotongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-5.mp3" + }, + { + "name":"zmjz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-5.mp3" + }, + { + "name":"yang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-1.mp3" + }, + { + "name":"gumotongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-1.mp3" + }, + { + "name":"sdbianfu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-2.mp3" + }, + { + "name":"bf-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-4.mp3" + }, + { + "name":"zmjz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-1.mp3" + }, + { + "name":"bf-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-2.mp3" + }, + { + "name":"qianchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-5.mp3" + }, + { + "name":"dcr-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-4.mp3" + }, + { + "name":"kl-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-5.mp3" + }, + { + "name":"dcr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-2.mp3" + }, + { + "name":"qianchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-1.mp3" + }, + { + "name":"woma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-4.mp3" + }, + { + "name":"kl-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-1.mp3" + }, + { + "name":"woma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-2.mp3" + }, + { + "name":"shenshouz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-4.mp3" + }, + { + "name":"slxr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-2.mp3" + }, + { + "name":"shenshouz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-2.mp3" + }, + { + "name":"shenshouz-0_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-0.mp3" + }, + { + "name":"lang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-4.mp3" + }, + { + "name":"zumagjs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-5.mp3" + }, + { + "name":"djs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-4.mp3" + }, + { + "name":"lang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-2.mp3" + }, + { + "name":"djs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-2.mp3" + }, + { + "name":"zuma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-5.mp3" + }, + { + "name":"zumagjs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-1.mp3" + }, + { + "name":"js-4_mp3", + "type":"sound", + "url":"assets/sound/monster/js-4.mp3" + }, + { + "name":"duojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-5.mp3" + }, + { + "name":"js-2_mp3", + "type":"sound", + "url":"assets/sound/monster/js-2.mp3" + }, + { + "name":"zuma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-1.mp3" + }, + { + "name":"kjc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-4.mp3" + }, + { + "name":"wugong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-5.mp3" + }, + { + "name":"duojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-1.mp3" + }, + { + "name":"kjc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-2.mp3" + }, + { + "name":"ji-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-5.mp3" + }, + { + "name":"wugong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-1.mp3" + }, + { + "name":"banshouyongshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-4.mp3" + }, + { + "name":"ji-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-1.mp3" + }, + { + "name":"banshouyongshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-2.mp3" + }, + { + "name":"bosstongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-1.mp3" + }, + { + "name":"zztongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-5.mp3" + }, + { + "name":"banshouzhanshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-5.mp3" + }, + { + "name":"zztongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-1.mp3" + }, + { + "name":"banshouzhanshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-1.mp3" + }, + { + "name":"jxduojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-5.mp3" + }, + { + "name":"tiaotiaofeng-5_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-5.mp3" + }, + { + "name":"dian-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dian-2.mp3" + }, + { + "name":"dzz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-5.mp3" + }, + { + "name":"jxduojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-1.mp3" + }, + { + "name":"ruchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-5.mp3" + }, + { + "name":"hshs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-5.mp3" + }, + { + "name":"tiaotiaofeng-1_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-1.mp3" + }, + { + "name":"banshouren-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-5.mp3" + }, + { + "name":"yezhu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-4.mp3" + }, + { + "name":"dzz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-1.mp3" + }, + { + "name":"ruchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-1.mp3" + }, + { + "name":"hshs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-1.mp3" + }, + { + "name":"yezhu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-2.mp3" + }, + { + "name":"shiwang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-5.mp3" + }, + { + "name":"banshouren-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-1.mp3" + }, + { + "name":"shiwang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-1.mp3" + }, + { + "name":"dongxue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dongxue.mp3" + }, + { + "name":"fengmogu_mp3", + "type":"sound", + "url":"assets/sound/bgm/fengmogu.mp3" + }, + { + "name":"bairimen_mp3", + "type":"sound", + "url":"assets/sound/bgm/bairimen.mp3" + }, + { + "name":"shimu_mp3", + "type":"sound", + "url":"assets/sound/bgm/shimu.mp3" + }, + { + "name":"npc_welcome_mp3", + "type":"sound", + "url":"assets/sound/npc/npc_welcome.mp3" + }, + { + "name":"biqi_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi.mp3?v=1" + }, + { + "name":"biqi_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_1.mp3" + }, + { + "name":"biqi_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_2.mp3" + }, + { + "name":"biqi_3_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_3.mp3" + }, + { + "name":"huodong_mp3", + "type":"sound", + "url":"assets/sound/bgm/huodong.mp3" + }, + { + "name":"molongcheng_mp3", + "type":"sound", + "url":"assets/sound/bgm/molongcheng.mp3" + }, + { + "name":"fuben_mp3", + "type":"sound", + "url":"assets/sound/bgm/fuben.mp3" + }, + { + "name":"shabake_mp3", + "type":"sound", + "url":"assets/sound/bgm/shabake.mp3" + }, + { + "name":"dixue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dixue.mp3?v=1" + }, + { + "name":"denglu_mp3", + "type":"sound", + "url":"assets/sound/bgm/denglu.mp3" + }, + { + "name":"kuangdong_mp3", + "type":"sound", + "url":"assets/sound/bgm/kuangdong.mp3" + }, + { + "name":"zuma_mp3", + "type":"sound", + "url":"assets/sound/bgm/zuma.mp3" + }, + { + "name":"mengzhong_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong.mp3" + }, + { + "name":"mengzhong_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_1.mp3" + }, + { + "name":"mengzhong_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_2.mp3" + }, + { + "name":"scroll_json", + "subkeys":"bag_15,bag_16,bag_17,bag_18", + "type":"sheet", + "url":"assets/image/public/scroll.json" + }, + { + "name":"num_1_fnt", + "type":"font", + "url":"assets/image/public/num_1.fnt" + }, + { + "name":"anniu1_mp3", + "type":"sound", + "url":"assets/sound/other/anniu1.mp3" + }, + { + "name":"anniu2_mp3", + "type":"sound", + "url":"assets/sound/other/anniu2.mp3" + }, + { + "name":"anniu3_mp3", + "type":"sound", + "url":"assets/sound/other/anniu3.mp3" + }, + { + "name":"duanzao~1_mp3", + "type":"sound", + "url":"assets/sound/other/duanzao~1.mp3" + }, + { + "name":"heyao_mp3", + "type":"sound", + "url":"assets/sound/other/heyao.mp3" + }, + { + "name":"jinbizengjia_mp3", + "type":"sound", + "url":"assets/sound/other/jinbizengjia.mp3" + }, + { + "name":"shengji~1_mp3", + "type":"sound", + "url":"assets/sound/other/shengji~1.mp3" + }, + { + "name":"zhuangjiezhi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangjiezhi.mp3" + }, + { + "name":"zhuangsanjian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangsanjian.mp3" + }, + { + "name":"zhuangshouzhuo_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangshouzhuo.mp3" + }, + { + "name":"zhuangwuqi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangwuqi.mp3" + }, + { + "name":"zhuangxianglian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangxianglian.mp3" + }, + { + "name":"zhuangyifu_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangyifu.mp3" + }, + { + "name":"buff_json", + "subkeys":"buff_1,buff_10,buff_11,buff_12,buff_13,buff_14,buff_15,buff_16,buff_17,buff_18,buff_19,buff_2,buff_20,buff_21,buff_22,buff_23,buff_24,buff_25,buff_26,buff_27,buff_28,buff_29,buff_3,buff_30,buff_31,buff_32,buff_33,buff_34,buff_35,buff_36,buff_37,buff_38,buff_39,buff_4,buff_40,buff_41,buff_42,buff_43,buff_44,buff_45,buff_46,buff_47,buff_48,buff_49,buff_5,buff_50,buff_51,buff_52,buff_53,buff_54,buff_55,buff_56,buff_57,buff_58,buff_59,buff_6,buff_60,buff_61,buff_62,buff_63,buff_64,buff_65,buff_66,buff_67,buff_68,buff_69,buff_7,buff_70,buff_71,buff_8,buff_9,buff_zz1,buff_zz2", + "type":"sheet", + "url":"assets/common/buff.json" + }, + { + "name":"chat_json", + "subkeys":"bg_bg2,button_lt,button_lt2,button_lt3,chat_bqb_1,chat_bqb_10,chat_bqb_11,chat_bqb_12,chat_bqb_13,chat_bqb_14,chat_bqb_15,chat_bqb_16,chat_bqb_17,chat_bqb_18,chat_bqb_19,chat_bqb_2,chat_bqb_20,chat_bqb_21,chat_bqb_22,chat_bqb_23,chat_bqb_24,chat_bqb_25,chat_bqb_26,chat_bqb_27,chat_bqb_28,chat_bqb_29,chat_bqb_3,chat_bqb_30,chat_bqb_31,chat_bqb_32,chat_bqb_33,chat_bqb_34,chat_bqb_35,chat_bqb_36,chat_bqb_37,chat_bqb_38,chat_bqb_39,chat_bqb_4,chat_bqb_40,chat_bqb_41,chat_bqb_42,chat_bqb_43,chat_bqb_5,chat_bqb_6,chat_bqb_7,chat_bqb_8,chat_bqb_9,chat_bqbkuang,chat_ltbg,chat_t_10_1,chat_t_10_2,chat_t_11,chat_t_1_1,chat_t_1_2,chat_t_2_1,chat_t_2_2,chat_t_3_1,chat_t_3_2,chat_t_4_1,chat_t_4_2,chat_t_5_1,chat_t_5_2,chat_t_6_1,chat_t_6_2,chat_t_7,chat_t_8,chat_t_9,chat_tab_1,chat_tab_2,chat_tab_3,chat_tab_4,fasongjiantou,fasongjiantou2,lt_xitong,ltk_0,ltk_1,ltk_2,ltk_2+1,ltk_3,ltk_4,ltk_you,ltk_zuo,ltpb_bangzhu,ltpb_fj1,ltpb_fj2,ltpb_hh1,ltpb_hh2,ltpb_sl1,ltpb_sl2,shangjiantou,shangjiantou2,yeqian_liaotian1,yeqian_liaotian2", + "type":"sheet", + "url":"assets/chat/chat.json" + }, + { + "name":"select_png", + "type":"image", + "url":"assets/common/select.png" + }, + { + "name":"friend_json", + "subkeys":"fd_top_bg,fd_top_fenge,liebiaoxuanzhong,szys_1,szys_166,szys_2,szys_3,t_gxyq_fj1,t_gxyq_fj2,t_gxyq_gz1,t_gxyq_gz2,t_gxyq_hmd1,t_gxyq_hmd2,t_gxyq_hy1,t_gxyq_hy2,t_gxyq_qq1,t_gxyq_qq2,t_gxyq_zb1,t_gxyq_zb2", + "type":"sheet", + "url":"assets/friend/friend.json" + }, + { + "name":"main_json", + "subkeys":"bg_exp_0,bg_exp_1,bg_lakai_1,bg_shaguaichenghao,bq_bg2,bq_biaoti,bq_btn,bq_icon,bq_icon_1,bq_icon_2,bq_icon_3,bq_icon_4,bq_icon_5,bq_icon_6,bq_icon_7,bq_icon_8,btn_bg_1,btn_bg_2,btn_czcz,btn_feixiei,btn_haoyou,btn_jiaoyi,btn_jishou,btn_liaotian,btn_paihang,btn_youjian,btn_zudui,common_chengdian,common_hongdian,cwms_bg,cwms_btn,dialog_mask,eff_2,eff_3,eff_4,eff_5,exp_dian,exp_exp,exp_lv,exp_sexp,fcm_btn,gjbtn_fj,gjbtn_hy,gjbtn_sq,huanying_btn,huanying_x,icon_360dawanjia,icon_360shiming,icon_37fuli,icon_4366,icon_4366VIP,icon_7you_chaihongbao,icon_7you_fuli,icon_activity,icon_activity3,icon_activity4,icon_activity5,icon_activity6,icon_activity7,icon_activity8,icon_activity9,icon_aiqiyiQQqun,icon_bangdingyouli,icon_bg,icon_bgbtn,icon_bianqiang,icon_boss,icon_cangjingge,icon_chaowan,icon_chongyangxianrui,icon_chongzhi,icon_ciyuanshouling,icon_czzl,icon_daluandou,icon_dianfengkuanghuan,icon_dttq,icon_duanwujiajie,icon_fangchenmi,icon_fankui,icon_fenxiangyouxi,icon_fulidating,icon_ganenjie,icon_gonggao,icon_guaji,icon_guanggunjie,icon_hanghui,icon_hecheng,icon_hfhuodong,icon_huanduwuyi,icon_huanzhenchong,icon_huidaoyuanfu,icon_hytq,icon_jingcaihuodong,icon_juanxianbang,icon_kaifu1maogou,icon_kaifuhaoli,icon_kaifujingji,icon_kaifutouzi,icon_kaifuxunbao,icon_kaifuzhanchang,icon_ku25hezi,icon_kuafulingzhu,icon_kuafumobai,icon_kuafushacheng,icon_kuafushouling,icon_kuangbao,icon_ldsyxhz,icon_leijizaixian,icon_ludashilibao,icon_lztequan,icon_mafazhanling,icon_mijingdabao,icon_mingriyugao,icon_ptfl,icon_ptfl_bg,icon_pugong2,icon_qingliangshujia,icon_qqdating,icon_rank2,icon_sanduanhutong,icon_sgyxdt,icon_sgzspf,icon_shacheng,icon_shachengdjs,icon_shengxiakuanghuan,icon_shouchong,icon_shoujilibao,icon_shuangshiqingdian,icon_shuangshiyi,icon_shunwanghezi,icon_sq_1,icon_sq_2,icon_taotuoshilian,icon_taqingxunli,icon_wanshanziliao,icon_wanshengjie,icon_weiduanfuli,icon_womasan,icon_wxhb,icon_xingyunxunbao,icon_xunbao,icon_xunleitequan,icon_yaodou_kefu,icon_yyhy,icon_zaichong,icon_zhinengPK,icon_zhongqiujiajie,icon_zhoumohaoli,icon_zhounianqingdian,icon_zhufuguoqing,icont_beibao,icont_hanghui,icont_hecheng,icont_huishou,icont_jineng,icont_juese,icont_paimai,icont_shezhi,icont_youjian,join_qqun,m_bg_zhuui,m_btn_main1,m_btn_main2,m_btn_shezhi,m_chat_btn,m_chat_ltpb_fj1,m_chat_ltpb_fj2,m_chat_ltpb_hh1,m_chat_ltpb_hh2,m_chat_ltpb_shuoming,m_chat_ltpb_sl1,m_chat_ltpb_sl2,m_chat_t_fasong,m_chat_t_fujin,m_chat_t_hanghui,m_chat_t_jiantou,m_chat_t_shijie,m_chat_t_siliao,m_chat_t_zudui,m_exp_expbg,m_exp_lvbg,m_exp_sexpbg,m_icon_beibao,m_icon_caidan,m_icon_huishou,m_icon_jineng,m_icon_juese,m_icon_shangcheng,m_icon_sq,m_job1,m_job2,m_job3,m_kjj_1,m_kjj_10,m_kjj_11,m_kjj_12,m_kjj_2,m_kjj_3,m_kjj_4,m_kjj_5,m_kjj_6,m_kjj_7,m_kjj_8,m_kjj_9,m_kuaijielan1,m_lst_jt1,m_lst_jt3,m_m_lock_1,m_m_lock_2,m_m_lock_3,m_m_lock_4,m_m_lock_5,m_m_lock_bg,m_m_lockname_bg,m_m_sd_xt_bg,m_m_sd_xt_k,m_map_k,m_map_k2,m_t_ms_bg1,m_t_ms_bg2,m_t_ms_didui,m_t_ms_hanghui,m_t_ms_heping,m_t_ms_quanti,m_t_ms_zhenying,m_t_ms_zudui,m_task_bg1,m_task_bg2,m_task_bg3,m_task_bgh,m_task_btn,m_task_btn3,m_task_btn_2,m_task_btn_2bg,m_task_duizhang,m_task_fengexian,m_task_hp1,m_task_hp2,m_task_hp2h,m_task_jiantou,m_task_k,m_task_xuanzhongkuang,m_task_yiwancheng,m_task_zy1,m_task_zy1h,m_task_zy2,m_task_zy2h,m_task_zy3,m_task_zy3h,m_yg1,m_yg2,m_yg3,m_yg4,m_yg5,main_ciyuanyaoshi,main_tuichu,main_zlb,map_boss,map_btn,map_dian_1,map_dian_10,map_dian_11,map_dian_2,map_dian_3,map_dian_4,map_dian_5,map_dian_6,map_dian_7,map_dian_8,map_dian_9,map_fangda,map_jiantou,map_k,map_my,map_target,map_xian,model,mpa_way,name_1_0,name_1_1,name_2_0,name_2_1,name_3_0,name_3_1,name_bg,name_btn,name_hy0,name_hy1,name_hy2,name_hy3,name_hy4,name_hy5,name_hy6,name_hy7,name_hybg,name_icon_jb,name_icon_yb,open_bg2,open_bt_1,open_bt_10,open_bt_11,open_bt_12,open_bt_13,open_bt_14,open_bt_15,open_bt_2,open_bt_3,open_bt_4,open_bt_5,open_bt_6,open_bt_7,open_bt_8,open_bt_9,open_btn,open_hdjl,pet_kuang,skillicon2_jz1,skillicon2_jz2,skillicon2_jz3,skillicon2_jz4,skillicon2_jz5,skillicon2_jz6,skillicon2_jz7,skillicon2_jz8,skillicon2_nz1,skillicon2_nz2,skillicon2_nz3,skillicon2_nz4,skillicon2_nz5,skillicon2_nz6,skillicon2_nz7,skillicon2_nz8,skillicon_ds1,skillicon_ds10,skillicon_ds12,skillicon_ds2,skillicon_ds3,skillicon_ds4,skillicon_ds5,skillicon_ds7,skillicon_ds8,skillicon_ds9,skillicon_fs10,skillicon_fs11,skillicon_fs13,skillicon_fs14,skillicon_fs2,skillicon_fs3,skillicon_fs4,skillicon_fs5,skillicon_fs6,skillicon_fs9,skillicon_ty10,skillicon_ty11,skillicon_ty2,skillicon_ty3,skillicon_ty4,skillicon_ty5,skillicon_ty6,skillicon_ty7,skillicon_ty8,skillicon_ty9,skillicon_zs1,skillicon_zs2,skillicon_zs3,skillicon_zs4,skillicon_zs5,skillicon_zs6,skillicon_zs7,skillicon_zs8,sx_num_j,sx_num_p,task_fgx,task_rwjj,tips_man,tips_man2,tips_man3,tips_man4,tips_man5,tips_man6,zjm_shan_haoyou,zjm_shan_jiaoyi,zjm_shan_youjian,zjm_shan_zhhh,zjm_shan_zhzd,zjm_shan_zudui,zs_btn,icon_cydzb", + "type":"sheet", + "url":"assets/main/main.json?v=1" + }, + { + "name":"rank_json", + "subkeys":"phb_tab_01,phb_tab_02,phb_tab_11,phb_tab_12,phb_tab_21,phb_tab_22,phb_tab_31,phb_tab_32,phb_tab_41,phb_tab_42,rank_bg2,rank_bg3,rank_bk,rank_ch1,rank_ch2,rank_ck,rank_cx,rank_cy,rank_lk,rank_lk1,rank_pm1,rank_pm2,rank_pm3,rank_tab1,rank_tab2,rank_zk", + "type":"sheet", + "url":"assets/rank/rank.json" + }, + { + "name":"team_json", + "subkeys":"t_zd_fjdw1,t_zd_fjdw2,t_zd_fjwj1,t_zd_fjwj2,t_zd_shenqingrudui,t_zd_tianjia,t_zd_tichuduiwu,t_zd_tuichuduiwu,t_zd_wddw1,t_zd_wddw2,t_zd_yaoqingrudui,t_zd_zxhy1,t_zd_zxhy2,team_bg,team_duizhang", + "type":"sheet", + "url":"assets/team/team.json" + }, + { + "name":"guild_json", + "subkeys":"guild_bg_biaoqian,guild_bg_guanlidating,guild_bg_hanghuidating,guild_bg_lashen,guild_bg_liangongfang,guild_bg_yishiting,guild_jingyantiao,guild_jingyantiao_bg,guild_jxbt,guild_jxfgx,guild_jxiconk,guild_lbbg1,guild_lbbg2,guild_lbbg3,guild_pm_1,guild_pm_2,guild_pm_3,guild_wenzizhuangshi", + "type":"sheet", + "url":"assets/guild/guild.json" + }, + { + "name":"dls-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-5.mp3" + }, + { + "name":"dls-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-1.mp3" + }, + { + "name":"dls-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-2.mp3" + }, + { + "name":"dls-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-4.mp3" + }, + { + "name":"itemIcon_json", + "subkeys":"10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,cangku_lock,equipd_0,equipd_1,equipd_10,equipd_11,equipd_12,equipd_13,equipd_14,equipd_15,equipd_16,equipd_17,equipd_18,equipd_19,equipd_2,equipd_3,equipd_4,equipd_5,equipd_6,equipd_7,equipd_8,equipd_9,orangePoint,quality_0,quality_1,quality_2,quality_3,quality_4,quality_5,quality_6,quality_huishou,quality_jipin,quality_lock,quality_sheng,redPoint,yan_1,yan_100,yan_101,yan_102,yan_103,yan_104,yan_105,yan_106,yan_107,yan_108,yan_109,yan_110,yan_111,yan_112,yan_113,yan_114,yan_115,yan_116,yan_117,yan_118,yan_119,yan_120,yan_121,yan_122,yan_123,yan_124,yan_125,yan_126,yan_127,yan_128,yan_129,yan_130,yan_131,yan_132,yan_133,yan_134,yan_135", + "type":"sheet", + "url":"assets/image/public/itemIcon.json" + }, + { + "name":"resurrection_json", + "subkeys":"revive_bg,revive_btn,revive_zz", + "type":"sheet", + "url":"assets/resurrection/resurrection.json" + }, + { + "name":"bosstongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-5.mp3" + }, + { + "name":"shop_json", + "subkeys":"shop_bg,shop_bg1,shop_bg_xian,shop_iconk,shop_jiaobiao,shop_rexiao,shop_xianshi,shop_yeqian_1,shop_yeqian_2,shop_yyb_bannert,shop_yyb_bannert2,shop_yybsc,shop_zhekou_1,shop_zhekou_2,shop_zhekou_3,shop_zhekou_4,shop_zhekou_5,shop_zhekou_6,shop_zhekou_7,shop_zhekou_8,shop_zhekou_9,shop_zhekou_bg", + "type":"sheet", + "url":"assets/shop/shop.json" + }, + { + "name":"forge_json", + "subkeys":"forge_bg,forge_bg2,forge_bg3,forge_bt1,forge_bt2,forge_bt3,forge_bt4,forge_btjt,forge_equip1,forge_equip2,forge_equipbg1,forge_equipbg2,forge_gou1,forge_gou2,forge_huode,forge_jiantou1,forge_jiantou2,forge_sxjt,forge_sxt,forge_t,forge_t1,forge_t2,forge_t3,forge_tab1,forge_tab2,forge_xlt,forge_xx1,forge_xx2,forge_xxbg,hc_tab_hc1,hc_tab_hc2,hc_tab_hs1,hc_tab_hs2,hecheng_bg1,hecheng_bg2,recovery_banner,recovery_bg,recovery_zs_1,recovery_zs_2,recovery_zs_3,recovery_zs_4,recovery_zs_5", + "type":"sheet", + "url":"assets/forge/forge.json" + }, + { + "name":"TradeLine_json", + "subkeys":"jishou_tab_buy1,jishou_tab_buy2,jishou_tab_isSell1,jishou_tab_isSell2,jishou_tab_receive1,jishou_tab_receive2,jishou_tab_sell1,jishou_tab_sell2,kbg_trade,trade_bg1,trade_chakan,trade_iconk,trade_mengban,trade_zt1,trade_zt2,trade_zt3", + "type":"sheet", + "url":"assets/TradeLine/TradeLine.json" + }, + { + "name":"bg_npc_png", + "type":"image", + "url":"assets/bg/bg_npc.png" + }, + { + "name":"bg_tipstc_png", + "type":"image", + "url":"assets/bg/bg_tipstc.png" + }, + { + "name":"chat_bg_bg1_png", + "type":"image", + "url":"assets/bg/chat_bg_bg1.png" + }, + { + "name":"chat_bg_bg2_png", + "type":"image", + "url":"assets/bg/chat_bg_bg2.png" + }, + { + "name":"chat_bg_tc1_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1.png" + }, + { + "name":"chat_bg_tc2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc2.png" + }, + { + "name":"com_bg_beibao_png", + "type":"image", + "url":"assets/bg/com_bg_beibao.png" + }, + { + "name":"com_bg_kuang_2_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_2.png" + }, + { + "name":"kbg_1_png", + "type":"image", + "url":"assets/bg/kbg_1.png" + }, + { + "name":"kbg_2_png", + "type":"image", + "url":"assets/bg/kbg_2.png" + }, + { + "name":"kbg_3_png", + "type":"image", + "url":"assets/bg/kbg_3.png" + }, + { + "name":"kbg_3_1_png", + "type":"image", + "url":"assets/bg/kbg_3_1.png" + }, + { + "name":"kbg_4_png", + "type":"image", + "url":"assets/bg/kbg_4.png" + }, + { + "name":"liebiaoding_bg_png", + "type":"image", + "url":"assets/bg/liebiaoding_bg.png" + }, + { + "name":"login_bg2_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg2.jpg" + }, + { + "name":"createRole_json", + "subkeys":"avatar_bg,create_btn_fanhui,login_btn,login_btn1,login_ds_1,login_ds_2,login_fs_1,login_fs_2,login_nan_1,login_nan_2,login_nv_1,login_nv_2,login_suiji,login_xuanzhong,login_zs_1,login_zs_2", + "type":"sheet", + "url":"assets/CreateRole/createRole.json" + }, + { + "name":"mail_json", + "subkeys":"mail_bg,mail_bx,mail_com,mail_tab_1,mail_tab_2,mail_xian", + "type":"sheet", + "url":"assets/mail/mail.json" + }, + { + "name":"meridians_json", + "subkeys":"Meridians_bg,Meridians_dian_1,Meridians_dian_2,Meridians_jie_0,Meridians_jie_1,Meridians_jie_10,Meridians_jie_11,Meridians_jie_2,Meridians_jie_3,Meridians_jie_4,Meridians_jie_5,Meridians_jie_6,Meridians_jie_7,Meridians_jie_8,Meridians_jie_9,Meridians_jie_bg1,Meridians_jie_bg2,Meridians_jie_ji,Meridians_jie_jie,Meridians_xian_1,Meridians_xian_2", + "type":"sheet", + "url":"assets/meridians/meridians.json" + }, + { + "name":"login_bg_jpg", + "type":"image", + "url":"assets/login/login_bg.jpg" + }, + { + "name":"LOGO_png", + "type":"image", + "url":"assets/login/LOGO.png" + }, + { + "name":"Login_json", + "subkeys":"Login_guanbi,login_jdt_k,login_jdt_t,login_wenzi1,login_wenzi2,login_wenzi3,login_wenzi4,login_wenzi5", + "type":"sheet", + "url":"assets/login/Login.json" + }, + { + "name":"chuangjian_mp3", + "type":"sound", + "url":"assets/sound/loading/chuangjian.mp3" + }, + { + "name":"dengdai_mp3", + "type":"sound", + "url":"assets/sound/loading/dengdai.mp3" + }, + { + "name":"kaimen_mp3", + "type":"sound", + "url":"assets/sound/loading/kaimen.mp3" + }, + { + "name":"xuanze_mp3", + "type":"sound", + "url":"assets/sound/loading/xuanze.mp3" + }, + { + "name":"activityCopies_json", + "subkeys":"Act_biaoti_1,Act_biaoti_2,Act_biaoti_cjxg,Act_biaoti_clfb,Act_biaoti_dcty,Act_biaoti_dxdb,Act_biaoti_jjdld,Act_biaoti_jjtgsj,Act_biaoti_sbkgc,Act_biaoti_scl,Act_biaoti_sjboss,Act_biaoti_sjjd,Act_biaoti_smdb,Act_biaoti_smsz,Act_biaoti_smsztz,Act_biaoti_yzwms,Act_biaoti_zsrw,Act_chakan,Act_dld_djs,Act_dld_icon,Act_dld_icon2,Act_dld_pmbt,Act_dld_pmmb,Act_gengduo,Act_hdk1,Act_jlyl,Act_jlyl_bg,Act_mobai_biaotibg,Act_pm_1,Act_pm_2,Act_pm_3,Avt_sjjd_bg2,Avt_sjjd_bg3,a,act_clfbt_1,act_clfbt_2,act_hdjj,act_icon1,act_icon10,act_icon11,act_icon12,act_icon13,act_icon14,act_icon15,act_icon16,act_icon2,act_icon3,act_icon4,act_icon5,act_icon6,act_icon7,act_icon8,act_icon9,act_tab1,act_tab2,act_tab3,act_tab4,act_tab_competitive1,act_tab_competitive2,act_tab_daily1,act_tab_daily2,act_tab_js1,act_tab_js2,act_tab_passion1,act_tab_passion2,act_tab_personal1,act_tab_personal2,act_zsrwt_1,actpm_tab_jf1,actpm_tab_jf2,actpm_tab_jl1,actpm_tab_jl2,actpm_tab_pm1,actpm_tab_pm2,y", + "type":"sheet", + "url":"assets/activityCopies/activityCopies.json" + }, + { + "name":"achievement_json", + "subkeys":"ach_bg1,ach_jiantou,ach_namebg,ach_sjtj,ach_sjxh,ach_xunzhangbg,ach_xzsj,ach_yidacheng,ach_zhuangshi", + "type":"sheet", + "url":"assets/achievement/achievement.json" + }, + { + "name":"shengji_mp3", + "type":"sound", + "url":"assets/sound/other/shengji.mp3" + }, + { + "name":"boss_json", + "subkeys":"boss_canyu,boss_diaoluo,boss_fengexian,boss_guishu,boss_gw_bg,boss_gw_bg2,boss_gw_bg3,boss_gw_jb,boss_gw_yb,boss_head_p_1_0,boss_head_p_1_1,boss_head_p_2_0,boss_head_p_2_1,boss_head_p_3_0,boss_head_p_3_1,boss_hp_1,boss_hp_2,boss_k_1,boss_k_2,boss_shoutong,boss_tab_Lord1,boss_tab_Lord2,boss_tab_classic1,boss_tab_classic2,boss_tab_jindi1,boss_tab_jindi2,boss_tab_reinstall1,boss_tab_reinstall2,boss_xinxi,boss_xuetiao_1,boss_xuetiao_bg,boss_yeqian_bg1,boss_yeqian_bg2,boss_yeqian_bg3,boss_yeqian_bg4,boss_yeqian_bg5,boss_yongdou,boss_zs_bg,bs_tq_1,bs_tq_2,bs_tq_3,bs_tq_4,bs_tq_5", + "type":"sheet", + "url":"assets/boss/boss.json" + }, + { + "name":"result_json", + "subkeys":"result_btn,result_lost,result_lost1,result_lost2,result_lost3,result_win,result_win1,result_win2", + "type":"sheet", + "url":"assets/result/result.json" + }, + { + "name":"Act_hdbg1_1_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_1.png" + }, + { + "name":"Act_hdbg1_jjdld_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png" + }, + { + "name":"Act_hdbg2_1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_1.png" + }, + { + "name":"Act_hdbg2_2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_2.png" + }, + { + "name":"Act_hdk2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdk2.png" + }, + { + "name":"Act_mobai_jsbg_png", + "type":"image", + "url":"assets/activityCopies/mobai/Act_mobai_jsbg.png" + }, + { + "name":"Act_hdbg2_smsz_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png" + }, + { + "name":"Act_hdbg2_sjjd_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png" + }, + { + "name":"Avt_sjjd_bg1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png" + }, + { + "name":"receive_fnt", + "type":"font", + "url":"assets/image/public/receive.fnt" + }, + { + "name":"Act_hdbg1_sbkgc_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png" + }, + { + "name":"Act_hdbg1_yzwms_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png" + }, + { + "name":"Act_hdbg2_cjxg_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png" + }, + { + "name":"Act_hdbg2_jjtgsj_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png" + }, + { + "name":"Act_hdbg2_scl_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_scl.png" + }, + { + "name":"Act_hdbg2_smdb_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png" + }, + { + "name":"monster_json", + "subkeys":"monhead30001,monhead30002,monhead30003,monhead30004,monhead30005,monhead30006,monhead30007,monhead30008,monhead30009,monhead30010,monhead30011,monhead30012,monhead30013,monhead30014,monhead30015,monhead30016,monhead30017,monhead30018,monhead30019,monhead30020,monhead30021,monhead30022,monhead30023,monhead30024,monhead30025,monhead30026,monhead30027,monhead30028,monhead30029,monhead30030,monhead30031,monhead30032,monhead30033,monhead30034,monhead30035,monhead30036,monhead30037,monhead30038,monhead30039,monhead30040,monhead30041,monhead30042,monhead30043,monhead30044,monhead30045,monhead30046,monhead30047,monhead30048,monhead30049,monhead30050,monhead30051,monhead30052,monhead30053,monhead30054,monhead30055,monhead30056,monhead30057,monhead30058,monhead30059,monhead30060,monhead30061,monhead30062,monhead30063,monhead30064,monhead30065,monhead30066,monhead30067,monhead30068,monhead30069,monhead30070,monhead30071,monhead30072,monhead30075,monhead30076,monhead30077,monhead30078,monhead30079,monhead30082,monhead30083,monhead30084,monhead30085,monhead30086,monhead30087,monhead30089,monhead30090,monhead30091,monhead30092,monhead30093,monhead30094,monhead30095,monhead30096,monhead30097,monhead30098,monhead30099,monhead30100,monhead30101,monhead30102,monhead30103,monhead30104,monhead30105,monhead30106,monhead30107,monhead30108,monhead30109,monhead30110,monhead30111,monhead30112,monhead30113,monhead30114,monhead30116,monhead30117,monhead30118,monhead30119,monhead30120,monhead30122,monhead30159,monhead30160,monhead30161,monhead30162,monhead30163,monhead30164,monhead30165,monhead30168,monhead30169,monhead30170,monhead30171,monhead30172,monhead30173,monhead30174,monhead30175,monhead30176,monhead30177,monhead30178,monhead30179,monhead30180,monhead30181,monhead30182,monhead30183,monhead30184", + "type":"sheet", + "url":"assets/image/monster/monster.json?v=1" + }, + { + "name":"m_bywd_1_mp3", + "type":"sound", + "url":"assets/sound/monster/m_bywd_1.mp3" + }, + { + "name":"m_ymcz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_ymcz_1.mp3" + }, + { + "name":"hair001_0_png", + "type":"image", + "url":"assets/image/model/hair/hair001_0.png" + }, + { + "name":"hair001_1_png", + "type":"image", + "url":"assets/image/model/hair/hair001_1.png" + }, + { + "name":"hair007_0_png", + "type":"image", + "url":"assets/image/model/hair/hair007_0.png" + }, + { + "name":"hair007_1_png", + "type":"image", + "url":"assets/image/model/hair/hair007_1.png" + }, + { + "name":"helmet_12000_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12000.png" + }, + { + "name":"helmet_12001_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12001.png" + }, + { + "name":"helmet_12002_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12002.png" + }, + { + "name":"helmet_12003_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12003.png" + }, + { + "name":"helmet_12004_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12004.png" + }, + { + "name":"helmet_12005_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12005.png" + }, + { + "name":"helmet_12006_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12006.png" + }, + { + "name":"helmet_12007_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12007.png" + }, + { + "name":"helmet_12008_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12008.png" + }, + { + "name":"helmet_12009_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12009.png" + }, + { + "name":"helmet_12010_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12010.png" + }, + { + "name":"helmet_12011_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12011.png" + }, + { + "name":"helmet_12012_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12012.png" + }, + { + "name":"helmet_12013_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12013.png" + }, + { + "name":"helmet_12014_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12014.png" + }, + { + "name":"helmet_13112_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13112.png" + }, + { + "name":"weapon_10000_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10000.png" + }, + { + "name":"weapon_10001_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10001.png" + }, + { + "name":"weapon_10002_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10002.png" + }, + { + "name":"weapon_10003_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10003.png" + }, + { + "name":"weapon_10004_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10004.png" + }, + { + "name":"weapon_10005_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10005.png" + }, + { + "name":"weapon_10006_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10006.png" + }, + { + "name":"weapon_10007_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10007.png" + }, + { + "name":"weapon_10008_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10008.png" + }, + { + "name":"weapon_10009_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10009.png" + }, + { + "name":"weapon_10010_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10010.png" + }, + { + "name":"weapon_10011_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10011.png" + }, + { + "name":"weapon_10012_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10012.png" + }, + { + "name":"weapon_10013_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10013.png" + }, + { + "name":"weapon_10014_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10014.png" + }, + { + "name":"weapon_10015_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10015.png" + }, + { + "name":"weapon_10016_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10016.png" + }, + { + "name":"weapon_10017_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10017.png" + }, + { + "name":"weapon_10018_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10018.png" + }, + { + "name":"weapon_10019_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10019.png" + }, + { + "name":"weapon_10020_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10020.png" + }, + { + "name":"weapon_10021_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10021.png" + }, + { + "name":"weapon_10022_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10022.png" + }, + { + "name":"weapon_10023_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10023.png" + }, + { + "name":"weapon_10024_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10024.png" + }, + { + "name":"weapon_10025_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10025.png" + }, + { + "name":"weapon_10026_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10026.png" + }, + { + "name":"weapon_10027_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10027.png" + }, + { + "name":"weapon_10028_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10028.png" + }, + { + "name":"weapon_10029_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10029.png" + }, + { + "name":"weapon_10030_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10030.png" + }, + { + "name":"weapon_10031_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10031.png" + }, + { + "name":"weapon_10032_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10032.png" + }, + { + "name":"weapon_10033_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10033.png" + }, + { + "name":"weapon_10034_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10034.png" + }, + { + "name":"weapon_10035_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10035.png" + }, + { + "name":"weapon_10036_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10036.png" + }, + { + "name":"weapon_10037_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10037.png" + }, + { + "name":"weapon_10038_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10038.png" + }, + { + "name":"weapon_10039_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10039.png" + }, + { + "name":"weapon_10040_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10040.png" + }, + { + "name":"weapon_10041_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10041.png" + }, + { + "name":"weapon_10042_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10042.png" + }, + { + "name":"weapon_10043_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10043.png" + }, + { + "name":"weapon_10044_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10044.png" + }, + { + "name":"weapon_10045_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10045.png" + }, + { + "name":"hp_fnt_fnt", + "type":"font", + "url":"assets/image/public/hp_fnt.fnt" + }, + { + "name":"chuansonglikai_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansonglikai.mp3" + }, + { + "name":"chuansongziji_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansongziji.mp3" + }, + { + "name":"m_bpx_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_1.mp3" + }, + { + "name":"m_bpx_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_3.mp3" + }, + { + "name":"m_csjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_csjs_1.mp3" + }, + { + "name":"m_dylg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_dylg_1.mp3" + }, + { + "name":"m_gsjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_gsjs_1.mp3" + }, + { + "name":"m_hbz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_1.mp3" + }, + { + "name":"m_hbz_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_2.mp3" + }, + { + "name":"m_hbz_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_3.mp3" + }, + { + "name":"m_hq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_1.mp3" + }, + { + "name":"m_hq_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_3.mp3" + }, + { + "name":"m_hqs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_1.mp3" + }, + { + "name":"m_hqs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_2.mp3" + }, + { + "name":"m_hqs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_3.mp3" + }, + { + "name":"m_jgdy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jgdy_3.mp3" + }, + { + "name":"m_jtyss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_1.mp3" + }, + { + "name":"m_jtyss_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_2.mp3" + }, + { + "name":"m_jtyss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_3.mp3" + }, + { + "name":"m_kjhh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_kjhh_1.mp3" + }, + { + "name":"m_lds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lds_3.mp3" + }, + { + "name":"m_lhhf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_1.mp3" + }, + { + "name":"m_lhhf_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_2.mp3" + }, + { + "name":"m_lhhf_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_3.mp3" + }, + { + "name":"m_lhjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhjf_1.mp3" + }, + { + "name":"m_lxhy_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_1.mp3" + }, + { + "name":"m_lxhy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_3.mp3" + }, + { + "name":"m_mfd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mfd_1.mp3" + }, + { + "name":"m_mth_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mth_3.mp3" + }, + { + "name":"m_qtzys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_qtzys_3.mp3" + }, + { + "name":"m_sds_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_1.mp3" + }, + { + "name":"m_sds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_3.mp3" + }, + { + "name":"m_sszjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_1.mp3" + }, + { + "name":"m_sszjs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_2.mp3" + }, + { + "name":"m_sszjs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_3.mp3" + }, + { + "name":"m_sxs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxs_3.mp3" + }, + { + "name":"m_sxyd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxyd_1.mp3" + }, + { + "name":"m_szh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_szh_1.mp3" + }, + { + "name":"m_wjzq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_wjzq_1.mp3" + }, + { + "name":"m_yhzg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_1.mp3" + }, + { + "name":"m_yhzg_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_3.mp3" + }, + { + "name":"m_yss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yss_1.mp3" + }, + { + "name":"m_zhkl_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_1.mp3" + }, + { + "name":"m_zhkl_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_3.mp3" + }, + { + "name":"m_zhss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_1.mp3" + }, + { + "name":"m_zhss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_3.mp3" + }, + { + "name":"m_zrjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zrjf_1.mp3" + }, + { + "name":"m_zys_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_1.mp3" + }, + { + "name":"m_zys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_3.mp3" + }, + + { + "name":"attack_male_mp3", + "type":"sound", + "url":"assets/sound/character/attack_male.mp3" + }, + { + "name":"attack_female_mp3", + "type":"sound", + "url":"assets/sound/character/attack_female.mp3" + }, + + { + "name":"dead_male_mp3", + "type":"sound", + "url":"assets/sound/character/dead_male.mp3" + }, + { + "name":"dead_female_mp3", + "type":"sound", + "url":"assets/sound/character/dead_female.mp3" + }, + + { + "name":"injure_male_mp3", + "type":"sound", + "url":"assets/sound/character/injure_male.mp3" + }, + { + "name":"injure_female_mp3", + "type":"sound", + "url":"assets/sound/character/injure_female.mp3" + }, + + { + "name":"task_complete_mp3", + "type":"sound", + "url":"assets/sound/character/task_complete.mp3" + }, + + { + "name":"Act_hdbg1_dcty_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png" + }, + { + "name":"load_Reel_png", + "type":"image", + "url":"assets/image/public/load_Reel.png" + }, + { + "name":"yingzi_png", + "type":"image", + "url":"assets/image/public/yingzi.png" + }, + { + "name":"Act_hdbg1_sjboss_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png" + }, + { + "name":"mapmini_png", + "type":"image", + "url":"assets/image/public/mapmini.png" + }, + { + "name":"actypay_json", + "subkeys":"apay_bannert_chfl,apay_biaoti_jchd,apay_biaoti_kftz,apay_time_bg,apay_yishouwan,biaoti_chongyangxianrui,biaoti_ganenjie,biaoti_guanggunjie,biaoti_shuangshiqingdian,biaoti_shuangshiyi,biaoti_wanshengjie,biaoti_zhongqiujiajie,biaoti_zhufuguoqing,festival_dw,festival_hd,festival_ql,festival_sx,festival_tq,festival_xiala,festival_zm,festival_zn,hfhd_wenzi", + "type":"sheet", + "url":"assets/actypay/actypay.json" + }, + { + "name":"firstcharge_json", + "subkeys":"fc_bg2,fc_btn_1,fc_btn_2,fc_p_2,fc_t3,fc_t4,fc_t5,fc_t6,fc_yilingqu,weapon_bottom_bg", + "type":"sheet", + "url":"assets/firstcharge/firstcharge.json" + }, + { + "name":"huanying_bg_1_png", + "type":"image", + "url":"assets/main/huanying_bg_1.png" + }, + { + "name":"huanying_bg_2_png", + "type":"image", + "url":"assets/main/huanying_bg_2.png" + }, + { + "name":"huanying_bg_3_png", + "type":"image", + "url":"assets/main/huanying_bg_3.png" + }, + { + "name":"huanying_bg_4_png", + "type":"image", + "url":"assets/main/huanying_bg_4.png" + }, + { + "name":"lixian_json", + "subkeys":"bg_lxpd,biaoqian_lxpd,icon_lxpd1,icon_lxpd2,icon_lxpd3,icon_lxpd4,icon_lxpd5,property_lxpd", + "type":"sheet", + "url":"assets/lixian/lixian_a9737a5c_dfdababe.json" + }, + { + "name":"bq_bg1_png", + "type":"image", + "url":"assets/main/bq_bg1.png" + }, + { + "name":"open_bg_png", + "type":"image", + "url":"assets/main/open_bg.png" + }, + { + "name":"apay_bg_png", + "type":"image", + "url":"assets/bg/apay_bg.png" + }, + { + "name":"sixiang_json", + "subkeys":"jiejikuang,sx_icon_1,sx_icon_2,sx_icon_3,sx_icon_4,sx_jiantou,t_sx_0,t_sx_1,t_sx_10,t_sx_2,t_sx_3,t_sx_4,t_sx_5,t_sx_6,t_sx_7,t_sx_8,t_sx_9,t_sx_bai,t_sx_hu,t_sx_hun,t_sx_jie,t_sx_long,t_sx_qing,t_sx_que,t_sx_wu,t_sx_xing,t_sx_xuan,t_sx_zhi,t_sx_zhu,一,七,三,九,二,五,八,六,十,四,阶,零", + "type":"sheet", + "url":"assets/role/sixiang.json" + }, + { + "name":"sixiangfnt_fnt", + "type":"font", + "url":"assets/image/public/sixiangfnt.fnt" + }, + { + "name":"fl_jhm_bg_png", + "type":"image", + "url":"assets/fuli/fl_jhm_bg.png" + }, + { + "name":"qd_bg_png", + "type":"image", + "url":"assets/fuli/qd_bg.png" + }, + { + "name":"qr_bg_png", + "type":"image", + "url":"assets/fuli/qr_bg.png" + }, + { + "name":"wlelfare_json", + "subkeys":"biaoti_fuli,fl_jhm_btn_1,fl_jhm_btn_2,flqd_bg0,flqd_bg1,flqd_bg2,flqd_bg3,flqd_djqd,flqd_qd1,flqd_qd2,flqd_tab1,flqd_tab2,qd_t_1_0,qd_t_1_1,qd_t_1_2,qd_t_1_3,qd_t_1_4,qd_t_1_5,qd_t_1_6,qd_t_1_7,qd_t_1_8,qd_t_1_9,qd_t_2_0,qd_t_2_1,qd_t_2_2,qd_t_2_3,qd_t_2_4,qd_t_2_5,qd_t_2_6,qd_t_2_7,qd_t_2_8,qd_t_2_9,qd_t_3_1,qd_t_3_2,qd_t_3_3,qd_t_3_4,qd_t_3_5,qd_t_3_6,qd_t_3_7,qd_t_3_z,qd_t_jin,qd_t_leiji,qd_t_yue,qd_yeqian1,qd_yeqian2,qd_yiqiandao,qr_bg2,qr_p_1,qr_p_2,qr_p_3,qr_p_yilingqu,qr_t1_1,qr_t1_2,qr_t1_3,qr_t1_4,qr_t1_5,qr_t1_6,qr_t1_7,qr_t2_1,qr_t2_2,qr_t2_3,qr_t2_4,qr_t2_5,qr_t2_6,qr_t2_7,yk_30tian,yk_30tian2,yk_biaoqian_0,yk_biaoqian_1,yk_biaoqian_2,yk_biaoqian_3,yk_biaoqian_4,yk_btn,yk_dian,yk_icon1,yk_icon2,yk_icon3,yk_icon4,yqs_btn,yqs_wz", + "type":"sheet", + "url":"assets/fuli/wlelfare.json" + }, + { + "name":"signNum_1_fnt", + "type":"font", + "url":"assets/image/public/signNum_1.fnt" + }, + { + "name":"signNum_2_fnt", + "type":"font", + "url":"assets/image/public/signNum_2.fnt" + }, + { + "name":"signNum_3_fnt", + "type":"font", + "url":"assets/image/public/signNum_3.fnt" + }, + { + "name":"yk_bg_png", + "type":"image", + "url":"assets/fuli/yk_bg.png" + }, + { + "name":"openServer_json", + "subkeys":"biaoti_cangjingge,biaoti_kaifuhaoli,biaoti_kaifujingji,biaoti_xunbao,kf_jj_bqbg,kf_kftz_yb,kf_lb_bg2,kf_lb_jt1,kf_lb_jt2,kf_lb_k,kf_lb_k2,kf_lb_k3,kf_lb_p1,kf_lb_p2,kf_lb_p3,kf_lb_p4,kf_lb_p5,kf_lb_p6,kf_lb_t1,kf_lb_t2,kf_lb_t3,kf_lb_t4,kf_lb_t5,kf_lb_t6,kf_lb_yigoumai,kf_slcj,kf_xb_bg2,kf_xb_bg3,kf_xb_bt,kf_xb_bt2,kf_xb_p1,kf_xb_t1,kf_xb_t2,kf_xbbt,kf_xybt", + "type":"sheet", + "url":"assets/openServer/openServer.json" + }, + { + "name":"ring_json", + "subkeys":"btn_sj_1_d,btn_sj_1_u,btn_sj_2_d,btn_sj_2_u,btn_sj_3_d,btn_sj_3_u,btn_sj_4_d,btn_sj_4_u,btn_sj_5_d,btn_sj_5_u,btn_sj_6_d,btn_sj_6_u,icon_ring_1,icon_ring_2,icon_ring_3,icon_ring_4,icon_ring_xuanzhong,ring_jiantou_1,ring_jiantou_2,t_ring,t_ring2,t_ring3,t_ring4,t_ring5,t_ring6,t_ring7,tbg_ring", + "type":"sheet", + "url":"assets/ring/ring.json" + }, + { + "name":"title_json", + "subkeys":"ch_NPC2_001,ch_NPC2_002,ch_NPC2_003,ch_NPC2_004,ch_NPC2_005,ch_NPC2_006,ch_NPC2_007,ch_NPC2_008,ch_NPC2_009,ch_NPC2_010,ch_NPC2_011,ch_NPC2_012,ch_NPC2_013,ch_NPC2_014,ch_NPC2_015,ch_NPC2_016,ch_NPC2_017,ch_NPC2_018,ch_NPC2_019,ch_NPC3_001,ch_NPC3_002,ch_NPC3_003,ch_NPC3_004,ch_NPC3_005,ch_NPC3_006,ch_NPC3_007,ch_NPC3_008,ch_NPC3_009,ch_NPC3_010,ch_NPC3_011,ch_NPC3_012,ch_NPC3_013,ch_NPC3_014,ch_NPC3_015,ch_NPC3_016,ch_NPC3_017,ch_NPC3_018,ch_NPC3_019,ch_NPC3_020,ch_NPC3_021,ch_NPC3_022,ch_NPC3_023,ch_NPC3_024,ch_NPC3_025,ch_NPC3_026,ch_NPC3_027,ch_NPC3_028,ch_NPC3_029,ch_NPC3_030,ch_NPC3_031,ch_NPC3_032,ch_NPC3_033,ch_NPC3_034,ch_NPC3_035,ch_NPC3_036,ch_NPC3_037,ch_NPC3_038,ch_NPC3_039,ch_NPC3_040,ch_NPC3_041,ch_NPC3_042,ch_NPC3_043,ch_NPC3_044,ch_NPC3_045,ch_NPC_001,ch_NPC_002,ch_NPC_003,ch_NPC_004,ch_NPC_005,ch_NPC_006,ch_NPC_007,ch_NPC_008,ch_NPC_009,ch_NPC_010,ch_NPC_011,ch_NPC_012,ch_NPC_013,ch_NPC_014,ch_NPC_015,ch_NPC_016,ch_NPC_017,ch_NPC_018,ch_NPC_019,ch_NPC_020,ch_NPC_021,ch_show_001,ch_show_0010,ch_show_0011,ch_show_0012,ch_show_0013,ch_show_0014,ch_show_0015,ch_show_0016,ch_show_0017,ch_show_0018,ch_show_0019,ch_show_002,ch_show_0020,ch_show_0021,ch_show_0022,ch_show_0023,ch_show_0024,ch_show_0025,ch_show_0026,ch_show_0027,ch_show_0028,ch_show_0029,ch_show_003,ch_show_0030,ch_show_0031,ch_show_0032,ch_show_0033,ch_show_0034,ch_show_0035,ch_show_0036,ch_show_0037,ch_show_0038,ch_show_0039,ch_show_004,ch_show_0040,ch_show_0041,ch_show_0042,ch_show_0043,ch_show_0044,ch_show_0045,ch_show_0046,ch_show_0047,ch_show_0048,ch_show_0049,ch_show_005,ch_show_0050,ch_show_0051,ch_show_0052,ch_show_0053,ch_show_0054,ch_show_0055,ch_show_0056,ch_show_0057,ch_show_0058,ch_show_0059,ch_show_006,ch_show_0060,ch_show_0061,ch_show_0062,ch_show_0063,ch_show_0064,ch_show_0065,ch_show_0066,ch_show_0067,ch_show_0068,ch_show_0069,ch_show_007,ch_show_0070,ch_show_0071,ch_show_0072,ch_show_0073,ch_show_0074,ch_show_0075,ch_show_0076,ch_show_0077,ch_show_0078,ch_show_0079,ch_show_008,ch_show_009,rage_ch,rw_sign_1,rw_sign_2", + "type":"sheet", + "url":"assets/image/title/title.json" + }, + { + "name":"kf_lb_bg1_png", + "type":"image", + "url":"assets/openServer/kf_lb_bg1.png" + }, + { + "name":"kf_xb_bg_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg.png" + }, + { + "name":"fcm_bg_png", + "type":"image", + "url":"assets/bg/fcm_bg.png" + }, + { + "name":"war_json", + "subkeys":"zl_bgk1,zl_biaoti,zl_btn_chakan,zl_hd_1,zl_hd_2,zl_hd_3,zl_hd_4,zl_iconk,zl_iconzw,zl_p_1,zl_p_2,zl_p_3,zl_pzp2,zl_t_yihuode,zl_t_yiwancheng,zl_weijihuo,zl_xian_1,zl_xian_2", + "type":"sheet", + "url":"assets/war/war.json" + }, + { + "name":"zl_bg_png", + "type":"image", + "url":"assets/war/zl_bg.png" + }, + { + "name":"Act_hdbg2_clfb_png", + "type":"image", + "url":"assets/activityCopies/activity12/Act_hdbg2_clfb.png" + }, + { + "name":"act_clfbbg_0_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_0.png" + }, + { + "name":"act_clfbbg_1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_1.png" + }, + { + "name":"act_clfbbg_2_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_2.png" + }, + { + "name":"act_clfbbg_3_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_3.png" + }, + { + "name":"act_clfbbg_4_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_4.png" + }, + { + "name":"activity12_json", + "subkeys":"act_clfbbg", + "type":"sheet", + "url":"assets/activityCopies/activity12/activity12.json" + }, + { + "name":"Act_hdbg2_zsrw_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png" + }, + { + "name":"act_zsrwbg1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_zsrwbg1.png" + }, + { + "name":"YYLobby_json", + "subkeys":"CW_banner,CW_bg,CW_bt,CW_t1,CW_t2,CW_t3,WX_bt,YY_banner,YY_banner2,YY_bg4,YY_bg5,YY_bt,YY_bt1,YY_btn_ljkt,YY_btn_ljlq,YY_btn_ljlq2,YY_hongxian,YY_t_hy0,YY_t_hy1,YY_t_hy2,YY_t_hy3,YY_t_hy4,YY_t_hy5,YY_t_hy6,YY_t_hy7,YY_t_hy8,YY_t_hy9,YY_t_hydj,YY_t_ljxz,YY_t_wkt,YY_t_xslb,YY_tab1,YY_tab2,kf_fanye_rcfl1,kf_fanye_rcfl2,kf_fanye_xfhl1,kf_fanye_xfhl2,logo_chaowan", + "type":"sheet", + "url":"assets/YY/YYLobby.json" + }, + { + "name":"YY_bg_png", + "type":"image", + "url":"assets/YY/YY_bg.png" + }, + { + "name":"YY_bg3_png", + "type":"image", + "url":"assets/YY/YY_bg3.png" + }, + { + "name":"YY_bg2_png", + "type":"image", + "url":"assets/YY/YY_bg2.png" + }, + { + "name":"YY_bg6_png", + "type":"image", + "url":"assets/YY/YY_bg6.png" + }, + { + "name":"wx_bg_png", + "type":"image", + "url":"assets/YY/wx_bg.png" + }, + { + "name":"getProps_json", + "subkeys":"get_bg,get_bg2,get_bg3,get_icon_1,get_icon_10,get_icon_11,get_icon_12,get_icon_13,get_icon_2,get_icon_3,get_icon_4,get_icon_5,get_icon_6,get_icon_7,get_icon_8,get_icon_9,get_jj1,get_jj2,get_tj", + "type":"sheet", + "url":"assets/getProps/getProps.json" + }, + { + "name":"sczhiyin_png", + "type":"image", + "url":"assets/main/sczhiyin.png" + }, + { + "name":"Timing_json", + "subkeys":"timing_bg1,timing_bg2,timing_btn,timing_tsjl", + "type":"sheet", + "url":"assets/timing/Timing.json" + }, + { + "name":"vip_json", + "subkeys":"biaoti_hytq,tq_bg4,tq_bg5,tq_btn,tq_btn1,tq_btnt1,tq_btnt10,tq_btnt11,tq_btnt12,tq_btnt13,tq_btnt14,tq_btnt14_2,tq_btnt14_3,tq_btnt14_4,tq_btnt14_5,tq_btnt15,tq_btnt16,tq_btnt2,tq_btnt3,tq_btnt4,tq_btnt5,tq_btnt6,tq_btnt6_1,tq_btnt7,tq_btnt8,tq_btnt9,tq_icon_0,tq_icon_1,tq_icon_2,tq_icon_3,tq_icon_4,tq_icon_5,tq_icon_6,tq_icon_7,tq_jdt,tq_jdtk,tq_jlt1,tq_jlt2,tq_jlt3,tq_jlt4,tq_jlt5,tq_jlt6,tq_jlt7,tq_lb_jt1,tq_lb_jt2,tq_sf_f,tq_sf_s,tq_tab1,tq_tab2,tq_tabbg1,tq_tabbg2,tq_top_fenge,tq_zxhl", + "type":"sheet", + "url":"assets/vip/vip.json" + }, + { + "name":"levelnumber_fnt", + "type":"font", + "url":"assets/common/levelnumber.fnt" + }, + { + "name":"weapon_13296_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13296.png" + }, + { + "name":"weapon_13317_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13317.png" + }, + { + "name":"weapon_13318_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13318.png" + }, + { + "name":"skillbg2_png", + "type":"image", + "url":"assets/bg/skillbg2.png" + }, + { + "name":"body012_0_png", + "type":"image", + "url":"assets/image/model/body/body012_0.png" + }, + { + "name":"body012_1_png", + "type":"image", + "url":"assets/image/model/body/body012_1.png" + }, + { + "name":"body013_0_png", + "type":"image", + "url":"assets/image/model/body/body013_0.png" + }, + { + "name":"body013_1_png", + "type":"image", + "url":"assets/image/model/body/body013_1.png" + }, + { + "name":"body014_0_png", + "type":"image", + "url":"assets/image/model/body/body014_0.png" + }, + { + "name":"body014_1_png", + "type":"image", + "url":"assets/image/model/body/body014_1.png" + }, + { + "name":"body015_0_png", + "type":"image", + "url":"assets/image/model/body/body015_0.png" + }, + { + "name":"body020_0_png", + "type":"image", + "url":"assets/image/model/body/body020_0.png" + }, + { + "name":"body015_1_png", + "type":"image", + "url":"assets/image/model/body/body015_1.png" + }, + { + "name":"body011_1_png", + "type":"image", + "url":"assets/image/model/body/body011_1.png" + }, + { + "name":"body021_0_png", + "type":"image", + "url":"assets/image/model/body/body021_0.png" + }, + { + "name":"body021_1_png", + "type":"image", + "url":"assets/image/model/body/body021_1.png" + }, + { + "name":"body022_1_png", + "type":"image", + "url":"assets/image/model/body/body022_1.png" + }, + { + "name":"body023_0_png", + "type":"image", + "url":"assets/image/model/body/body023_0.png" + }, + { + "name":"body023_1_png", + "type":"image", + "url":"assets/image/model/body/body023_1.png" + }, + { + "name":"body022_0_png", + "type":"image", + "url":"assets/image/model/body/body022_0.png" + }, + { + "name":"body024_0_png", + "type":"image", + "url":"assets/image/model/body/body024_0.png" + }, + { + "name":"body027_0_png", + "type":"image", + "url":"assets/image/model/body/body027_0.png" + }, + { + "name":"body020_1_png", + "type":"image", + "url":"assets/image/model/body/body020_1.png" + }, + { + "name":"body027_1_png", + "type":"image", + "url":"assets/image/model/body/body027_1.png" + }, + { + "name":"body001_0_png", + "type":"image", + "url":"assets/image/model/body/body001_0.png" + }, + { + "name":"body001_1_png", + "type":"image", + "url":"assets/image/model/body/body001_1.png" + }, + { + "name":"body024_1_png", + "type":"image", + "url":"assets/image/model/body/body024_1.png" + }, + { + "name":"body002_1_png", + "type":"image", + "url":"assets/image/model/body/body002_1.png" + }, + { + "name":"body003_0_png", + "type":"image", + "url":"assets/image/model/body/body003_0.png" + }, + { + "name":"body004_0_png", + "type":"image", + "url":"assets/image/model/body/body004_0.png" + }, + { + "name":"body004_1_png", + "type":"image", + "url":"assets/image/model/body/body004_1.png" + }, + { + "name":"body005_0_png", + "type":"image", + "url":"assets/image/model/body/body005_0.png" + }, + { + "name":"body005_1_png", + "type":"image", + "url":"assets/image/model/body/body005_1.png" + }, + { + "name":"body006_0_png", + "type":"image", + "url":"assets/image/model/body/body006_0.png" + }, + { + "name":"body006_1_png", + "type":"image", + "url":"assets/image/model/body/body006_1.png" + }, + { + "name":"body007_0_png", + "type":"image", + "url":"assets/image/model/body/body007_0.png" + }, + { + "name":"body007_1_png", + "type":"image", + "url":"assets/image/model/body/body007_1.png" + }, + { + "name":"body008_0_png", + "type":"image", + "url":"assets/image/model/body/body008_0.png" + }, + { + "name":"body008_1_png", + "type":"image", + "url":"assets/image/model/body/body008_1.png" + }, + { + "name":"body009_0_png", + "type":"image", + "url":"assets/image/model/body/body009_0.png" + }, + { + "name":"body009_1_png", + "type":"image", + "url":"assets/image/model/body/body009_1.png" + }, + { + "name":"body010_0_png", + "type":"image", + "url":"assets/image/model/body/body010_0.png" + }, + { + "name":"body010_1_png", + "type":"image", + "url":"assets/image/model/body/body010_1.png" + }, + { + "name":"body011_0_png", + "type":"image", + "url":"assets/image/model/body/body011_0.png" + }, + { + "name":"body002_0_png", + "type":"image", + "url":"assets/image/model/body/body002_0.png" + }, + { + "name":"body003_1_png", + "type":"image", + "url":"assets/image/model/body/body003_1.png" + }, + { + "name":"helmet_13356_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13356.png" + }, + { + "name":"helmet_13362_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13362.png" + }, + { + "name":"num_2_fnt", + "type":"font", + "url":"assets/image/public/num_2.fnt" + }, + { + "name":"num_3_fnt", + "type":"font", + "url":"assets/image/public/num_3.fnt" + }, + { + "name":"num_4_fnt", + "type":"font", + "url":"assets/image/public/num_4.fnt" + }, + { + "name":"num_6_fnt", + "type":"font", + "url":"assets/image/public/num_6.fnt" + }, + { + "name":"numAttr_fnt", + "type":"font", + "url":"assets/image/public/numAttr.fnt" + }, + { + "name":"num_5_fnt", + "type":"font", + "url":"assets/image/public/num_5.fnt" + }, + { + "name":"task_k1_png", + "type":"image", + "url":"assets/main/task_k1.png" + }, + { + "name":"sz_bg_1_png", + "type":"image", + "url":"assets/role/sz_bg_1.png" + }, + { + "name":"transform_bg_png", + "type":"image", + "url":"assets/role/transform_bg.png" + }, + { + "name":"blessing_bg_png", + "type":"image", + "url":"assets/role/blessing_bg.png" + }, + { + "name":"Godturn_bg_png", + "type":"image", + "url":"assets/role/Godturn_bg.png" + }, + { + "name":"role_bg_png", + "type":"image", + "url":"assets/role/role_bg.png" + }, + { + "name":"qh_bg_png", + "type":"image", + "url":"assets/role/qh_bg.png" + }, + { + "name":"role_k_png", + "type":"image", + "url":"assets/role/role_k.png" + }, + { + "name":"role_sx_bg_png", + "type":"image", + "url":"assets/role/role_sx_bg.png" + }, + { + "name":"bg_sixiang_png", + "type":"image", + "url":"assets/role/bg_sixiang.png" + }, + { + "name":"bg_sixiang2_png", + "type":"image", + "url":"assets/role/bg_sixiang2.png" + }, + { + "name":"fourImage_fnt", + "type":"font", + "url":"assets/image/public/fourImage.fnt" + }, + { + "name":"growway_json", + "subkeys":"bg_czzl,czzl_t1,czzl_tab_01,czzl_tab_02,czzl_tab_11,czzl_tab_12,czzl_tab_21,czzl_tab_22,czzl_tab_31,czzl_tab_32,czzl_tab_41,czzl_tab_42,growway_jt", + "type":"sheet", + "url":"assets/growway/growway.json" + }, + { + "name":"bg_ring_png", + "type":"image", + "url":"assets/ring/bg_ring.png" + }, + { + "name":"com_bg_kuang_3_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_3.png" + }, + { + "name":"com_bg_kuang_4_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_4.png" + }, + { + "name":"bg_newNpc_png", + "type":"image", + "url":"assets/main/bg_newNpc.png" + }, + { + "name":"bag_bg_png", + "type":"image", + "url":"assets/common/bag_bg.png" + }, + { + "name":"LOGO2_png", + "type":"image", + "url":"assets/login/LOGO2.png" + }, + { + "name":"task_k2_png", + "type":"image", + "url":"assets/main/task_k2.png" + }, + { + "name":"chat_bg_tc1_2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1_2.png" + }, + { + "name":"bg_tipstc2_png", + "type":"image", + "url":"assets/bg/bg_tipstc2.png" + }, + { + "name":"rank_bg_png", + "type":"image", + "url":"assets/rank/rank_bg.png" + }, + { + "name":"bodyimgeff18_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_0.png" + }, + { + "name":"bodyimgeff18_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_1.png" + }, + { + "name":"bodyimgeff19_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_0.png" + }, + { + "name":"bodyimgeff19_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_1.png" + }, + { + "name":"bodyimgeff21_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_0.png" + }, + { + "name":"bodyimgeff21_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_1.png" + }, + { + "name":"bodyimgeff25_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_0.png" + }, + { + "name":"bodyimgeff25_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_1.png" + }, + { + "name":"bodyimgeff26_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_0.png" + }, + { + "name":"bodyimgeff26_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_1.png" + }, + { + "name":"bodyimgeff27_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_0.png" + }, + { + "name":"bodyimgeff27_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_1.png" + }, + { + "name":"hyhy_bg_png", + "type":"image", + "url":"assets/main/hyhy_bg.png" + }, + { + "name":"hyhy_btn_png", + "type":"image", + "url":"assets/main/hyhy_btn.png" + }, + { + "name":"ditutiaozhuan_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/ditutiaozhuan.mp3" + }, + { + "name":"com_bg_kuang_6_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_6.png" + }, + { + "name":"com_bg_kuang_5_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_5.png" + }, + { + "name":"shenmo_json", + "subkeys":"bg_shenmo,bg_sm,btn_shenmo_01,btn_shenmo_02,icon_shenmo_1,icon_shenmo_2,icon_shenmo_3,icon_shenmo_4,icon_shenmo_5,sm_jyt1,sm_jyt2,sm_p1,sm_t1,sm_t2,sm_t3,sm_t4,sm_t5,sm_t6,sm_t7,t_shenmo_1,t_shenmo_2,t_shenmo_3,t_shenmo_4,t_shenmo_5", + "type":"sheet", + "url":"assets/shenmo/shenmo.json" + }, + { + "name":"bg_huishou_png", + "type":"image", + "url":"assets/common/bg_huishou.png" + }, + { + "name":"rage_bg_png", + "type":"image", + "url":"assets/violentState/rage_bg.png" + }, + { + "name":"particle1_json", + "type":"json", + "url":"assets/image/particle/particle1.json" + }, + { + "name":"particle1_png", + "type":"image", + "url":"assets/image/particle/particle1.png" + }, + { + "name":"donationRank_json", + "subkeys":"jxpm_1,jxpm_2,jxpm_3,jxpm_4,jxpm_5,jxpm_6,jxpm_7,jxpm_banner,jxpm_bg1,jxpm_bg2", + "type":"sheet", + "url":"assets/donationRank/donationRank.json" + }, + { + "name":"helmet_13437_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13437.png" + }, + { + "name":"helmet_13438_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13438.png" + }, + { + "name":"helmet_13439_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13439.png" + }, + { + "name":"ShaChengStarcraft_json", + "subkeys":"sbk_bg2,sbk_czch1,sbk_czch2,sbk_czp1,sbk_czp2,sbk_jlcz,sbk_jlhd", + "type":"sheet", + "url":"assets/ShaChengStarcraft/ShaChengStarcraft.json" + }, + { + "name":"sbk_bg_png", + "type":"image", + "url":"assets/ShaChengStarcraft/sbk_bg.png" + }, + { + "name":"apay_bg2_png", + "type":"image", + "url":"assets/bg/apay_bg2.png" + }, + { + "name":"recharge_json", + "subkeys":"biaoti_cz,cz_10bei,cz_10bei1,cz_10bei2,cz_bg1,cz_icon1,cz_icon2,cz_icon3,cz_icon4,cz_icon5,cz_icon6,cz_icon7,cz_icon8", + "type":"sheet", + "url":"assets/recharge/recharge.json" + }, + { + "name":"num_8_fnt", + "type":"font", + "url":"assets/image/public/num_8.fnt" + }, + { + "name":"bg_gz_png", + "type":"image", + "url":"assets/role/bg_gz.png" + }, + { + "name":"LOGO3_png", + "type":"image", + "url":"assets/login/LOGO3.png" + }, + { + "name":"zjt2_png", + "type":"image", + "url":"assets/login/zjt2.png" + }, + { + "name":"zjt3_png", + "type":"image", + "url":"assets/login/zjt3.png" + }, + { + "name":"zjt1_png", + "type":"image", + "url":"assets/login/zjt1.png" + }, + { + "name":"zhuanzhi_json", + "subkeys":"biaoti_zhuanzhi,jobchange_bg,jobchange_bg2,jobchange_bg3", + "type":"sheet", + "url":"assets/zhuanzhi/zhuanzhi.json" + }, + { + "name":"sz_show_001_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_1.png" + }, + { + "name":"sz_show_002_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_1.png" + }, + { + "name":"sz_show_002_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_0.png" + }, + { + "name":"sz_show_001_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_0.png" + }, + { + "name":"sz_show_005_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_0.png" + }, + { + "name":"sz_show_005_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_1.png" + }, + { + "name":"sz_show_003_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_0.png" + }, + { + "name":"sz_show_003_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_1.png" + }, + { + "name":"sz_show_004_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_0.png" + }, + { + "name":"sz_show_004_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_1.png" + }, + { + "name":"cangku_bg_png", + "type":"image", + "url":"assets/Warehouse/cangku_bg.png" + }, + { + "name":"Warehouse_json", + "subkeys":"cangku_tab1,cangku_tab2,cangku_tabt1_1,cangku_tabt1_2,cangku_tabt2_1,cangku_tabt2_2,cangku_tabt3_1,cangku_tabt3_2,cangku_tabt4_1,cangku_tabt4_2,cangku_tabt5_1,cangku_tabt5_2,cangku_tabt6_1,cangku_tabt6_2", + "type":"sheet", + "url":"assets/Warehouse/Warehouse.json" + }, + { + "name":"LOG4366_png", + "type":"image", + "url":"assets/login/LOG4366.png" + }, + { + "name":"fuli4366_json", + "subkeys":"banner_4366,banner_4366vip,banner_qqdating1,biaoti_4366,btn_smczx,t_lijichongzhi", + "type":"sheet", + "url":"assets/4366/fuli4366.json" + }, + { + "name":"qqcode_png", + "type":"image", + "url":"assets/4366/qqcode.png" + }, + { + "name":"loding_png", + "type":"image", + "url":"assets/login/loding.png" + }, + { + "name":"qqBlueDiamond_json", + "subkeys":"banner_lzchongzhi,banner_lzshangcheng,banner_lztequan,biaoti_lztequan,lz_czhuaxian,lz_ktlzbt,lz_ktnflzbt,lz_lzxinshou_dabiaoti,lz_tqzl1,lz_tqzl2,lz_tqzl3,lz_tqzl4,lz_xflzbt,lz_xfnflzbt,lztq_frame,lztq_frame1,wenzi_lzhhbewlq,wenzi_nflzgzewlq", + "type":"sheet", + "url":"assets/qqBlueDiamond/qqBlueDiamond.json" + }, + { + "name":"blueDiamond_json", + "subkeys":"lz_hh1,lz_hh2,lz_hh3,lz_hh4,lz_hh5,lz_hh6,lz_hh7,lz_hh8,lz_hh9,lz_hhe1,lz_hhe2,lz_hhe3,lz_hhe4,lz_hhe5,lz_hhe6,lz_hhe7,lz_hhe8,lz_hhe9,lz_nf,lz_nf1,lz_pt1,lz_pt2,lz_pt3,lz_pt4,lz_pt5,lz_pt6,lz_pt7,lz_pt8,lz_pt9,lz_pte1,lz_pte2,lz_pte3,lz_pte4,lz_pte5,lz_pte6,lz_pte7,lz_pte8,lz_pte9,name_lz_hh1,name_lz_hh2,name_lz_hh3,name_lz_hh4,name_lz_hh5,name_lz_hh6,name_lz_hh7,name_lz_hh8,name_lz_hh9,name_lz_nf,name_lz_pt1,name_lz_pt2,name_lz_pt3,name_lz_pt4,name_lz_pt5,name_lz_pt6,name_lz_pt7,name_lz_pt8,name_lz_pt9", + "type":"sheet", + "url":"assets/image/public/blueDiamond.json" + }, + { + "name":"qqdt_meir_erji_png", + "type":"image", + "url":"assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png" + }, + { + "name":"QQLobby_json", + "subkeys":"banner_qqdating,biaoti_qqdating,qq_bt1,qq_bt2,qqdt_dengji_frame,qqdt_jiangli_sign,qqdt_meir_dabiaoti,qqdt_xinshou_dabiaoti", + "type":"sheet", + "url":"assets/qqLobbyPrivilegesWin/QQLobby.json" + }, + { + "name":"bg_4366jqfuli_png", + "type":"image", + "url":"assets/4366/bg_4366jqfuli.png" + }, + { + "name":"bg_4366renzhenglibao_png", + "type":"image", + "url":"assets/4366/bg_4366renzhenglibao.png" + }, + { + "name":"bg_4366shoujilibao_png", + "type":"image", + "url":"assets/4366/bg_4366shoujilibao.png" + }, + { + "name":"bg_4366vip_png", + "type":"image", + "url":"assets/4366/bg_4366vip.png" + }, + { + "name":"bg_4366vxlibao_png", + "type":"image", + "url":"assets/4366/bg_4366vxlibao.png" + }, + { + "name":"saomachongzhi_png", + "type":"image", + "url":"assets/4366/saomachongzhi.png" + }, + { + "name":"hfhd_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/hfhd_shenhuaboss.png" + }, + { + "name":"weiduan_xzframe_png", + "type":"image", + "url":"assets/microterms/weiduan_xzframe.png" + }, + { + "name":"main_taskTips_json", + "subkeys":"zi_1,zi_2,zi_3,zi_4,zi_5,zi_6", + "type":"sheet", + "url":"assets/main/main_taskTips.json" + }, + { + "name":"loding_jpg", + "type":"image", + "url":"assets/login/loding.jpg" + }, + { + "name":"hitnum9_fnt", + "type":"font", + "url":"assets/image/public/hitnum9.fnt" + }, + { + "name":"main_actTips_json", + "subkeys":"dc_bg0,dc_bg1,dc_bg2,dc_bg3,dc_bg4,dc_bg5,dc_btn1,dc_btn2,dc_cdmu0,dc_cdmu1,dc_cdmu2,dc_cdmu3,dc_cdmu4,dc_cdmu5,dc_cdmu6,dc_cdmu7,dc_cdmu8,dc_cdmu9,dc_cdwenzi0,dc_cdwenzi1,dc_cdwenzi10,dc_cdwenzi11,dc_cdwenzi2,dc_cdwenzi3,dc_cdwenzi4,dc_cdwenzi5,dc_cdwenzi6,dc_cdwenzi7,dc_cdwenzi8,dc_cdwenzi9,dc_chwenzi3,dc_icon_jibai,dc_jb_ch1,dc_jb_ch10,dc_jb_ch11,dc_jb_ch12,dc_jb_ch13,dc_jb_ch14,dc_jb_ch2,dc_jb_ch3,dc_jb_ch4,dc_jb_ch5,dc_jb_ch6,dc_jb_ch7,dc_jb_ch8,dc_jb_ch9,dc_jb_nu0,dc_jb_nu1,dc_jb_nu2,dc_jb_nu3,dc_jb_nu4,dc_jb_nu5,dc_jb_nu6,dc_jb_nu7,dc_jb_nu8,dc_jb_nu9,dc_jpwenzi0,dc_jpwenzi1,dc_mu0,dc_mu1,dc_mu2,dc_mu3,dc_mu4,dc_mu5,dc_mu6,dc_mu7,dc_mu8,dc_mu9,dc_mubiao,dc_nrwenzi0,dc_nrwenzi1,dc_nrwenzi2,dc_nrwenzi3,dc_nrwenzi4,dc_nrwenzi5,dc_nrwenzi6,dc_nrwenzi7,dc_zbmu0,dc_zbmu1,dc_zbmu2,dc_zbmu3,dc_zbmu4,dc_zbmu5,dc_zbmu6,dc_zbmu7,dc_zbmu8,dc_zbmu9,dc_zs_jl1,dc_zs_jl10,dc_zs_jl11,dc_zs_jl12,dc_zs_jl13,dc_zs_jl2,dc_zs_jl3,dc_zs_jl4,dc_zs_jl5,dc_zs_jl6,dc_zs_jl7,dc_zs_jl8,dc_zs_jl9", + "type":"sheet", + "url":"assets/main/main_actTips.json" + }, + { + "name":"skill_1_png", + "type":"image", + "url":"assets/main/actTips/skill_1.png" + }, + { + "name":"skill_3_png", + "type":"image", + "url":"assets/main/actTips/skill_3.png" + }, + { + "name":"skill_2_png", + "type":"image", + "url":"assets/main/actTips/skill_2.png" + }, + { + "name":"skill_4_png", + "type":"image", + "url":"assets/main/actTips/skill_4.png" + }, + { + "name":"skill_5_png", + "type":"image", + "url":"assets/main/actTips/skill_5.png" + }, + { + "name":"skill_6_png", + "type":"image", + "url":"assets/main/actTips/skill_6.png" + }, + { + "name":"SoldierSoul_json", + "subkeys":"sw_bh_1,sw_bh_2,sw_bh_3,sw_bh_4,sw_bh_Lv_4,sw_bh_bg2,sw_bh_bhjj1,sw_bh_bhjj2,sw_bh_bhsj1,sw_bh_bhsj2,sw_bh_bhsx1,sw_bh_bhsx2,sw_bh_bhxl1,sw_bh_bhxl2,sw_bh_dj10,sw_bh_dj11,sw_bh_dj12,sw_bh_icon0,sw_bh_icon1,sw_bh_icon2,sw_bh_icon3,sw_bh_icon4,sw_bh_icon5,sw_bh_mc1,sw_bh_mc2,sw_bh_mc3,sw_bh_mc4", + "type":"sheet", + "url":"assets/SoldierSoul/SoldierSoul.json" + }, + { + "name":"sw_bh_bg1_png", + "type":"image", + "url":"assets/SoldierSoul/sw_bh_bg1.png" + }, + { + "name":"SoldierSoul_fnt_fnt", + "type":"font", + "url":"assets/image/public/SoldierSoul_fnt.fnt" + }, + { + "name":"binghun_bg_png", + "type":"image", + "url":"assets/role/binghun_bg.png" + }, + { + "name":"binghun_bg1_png", + "type":"image", + "url":"assets/role/binghun_bg1.png" + }, + { + "name":"yqs_bg_png", + "type":"image", + "url":"assets/fuli/yqs_bg.png" + }, + { + "name":"lj_bg1_png", + "type":"image", + "url":"assets/cumulativeOnline/lj_bg1.png" + }, + { + "name":"cumulativeOnline_json", + "subkeys":"lj_arrow,lj_bg2,lj_bg3,lj_frame,lj_jdt1,lj_jdt2,lj_jdt3,lj_jdt4,lj_jt1,lj_jt2,lj_title,lj_tt1,lj_tt2,lj_xc", + "type":"sheet", + "url":"assets/cumulativeOnline/cumulativeOnline.json" + }, + { + "name":"bh_show_wp1_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp1.png" + }, + { + "name":"bh_show_wp2_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp2.png" + }, + { + "name":"bx_show_001_png", + "type":"image", + "url":"assets/role/roleFashion/bx_show_001.png" + }, + { + "name":"bh_show_wp4_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp4.png" + }, + { + "name":"bh_show_wp3_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp3.png" + }, + { + "name":"bg_tipstc3_png", + "type":"image", + "url":"assets/bg/bg_tipstc3.png" + }, + { + "name":"forge_bg4_png", + "type":"image", + "url":"assets/forge/forge_bg4.png" + }, + { + "name":"btnbg_png", + "type":"image", + "url":"assets/fuli/btnbg.png" + }, + { + "name":"loding_kf_jpg", + "type":"image", + "url":"assets/login/loding_kf.jpg" + }, + { + "name":"txt_kf_png", + "type":"image", + "url":"assets/login/txt_kf.png" + }, + { + "name":"CrossServer_json", + "subkeys":"icon_gjsl,icon_qgs,kf_cy_bg2,kf_cy_bg3,kf_cy_bg4,kf_cy_bg6,kf_cy_cyj,kf_cy_cysl,kf_cy_gsj,kf_cy_ydj,kf_cyboss_hp1,kf_cyboss_hp2,kf_cyjl_frame1,kf_cyjl_frame2,kf_cyjl_key,kf_fanye_bg1,kf_fanye_bg2,kf_fanye_hd1,kf_fanye_hd2,kf_fanye_phb1,kf_fanye_phb2,kf_fanye_xq1,kf_fanye_xq2,kf_jdt1,kf_jdt2,kf_kfmb,kf_kfmb_bg1,kf_kfphb,kf_kfsl,kf_kfxq,kf_kfzc,kf_kfzk,kf_mb_dynd,kf_mb_dynf,kf_mb_dynz,kf_mb_dyvd,kf_mb_dyvf,kf_mb_dyvz", + "type":"sheet", + "url":"assets/CrossServer/CrossServer.json" + }, + { + "name":"kf_cy_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg1.png" + }, + { + "name":"kf_xq_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_xq_bg.png" + }, + { + "name":"kf_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_bg1.png" + }, + { + "name":"kf_phb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_phb_bg.png" + }, + { + "name":"kf_cyjl_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cyjl_bg1.png" + }, + { + "name":"kf_cy_bg5_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg5.png" + }, + { + "name":"kf_kfmb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_kfmb_bg.png" + }, + { + "name":"tq_bg1_png", + "type":"image", + "url":"assets/vip/tq_bg1.png" + }, + { + "name":"hitnum11_fnt", + "type":"font", + "url":"assets/image/public/hitnum11.fnt" + }, + { + "name":"hitnum12_fnt", + "type":"font", + "url":"assets/image/public/hitnum12.fnt" + }, + { + "name":"chongwu_bg_png", + "type":"image", + "url":"assets/role/chongwu_bg.png" + }, + { + "name":"role_pet_json", + "subkeys":"chongwu_bg1,chongwu_bg2,chongwu_btn,chongwu_btn1,chongwu_btn2,chongwu_icon,pet001,pet001_name,pet002,pet002_name,pet003,pet003_name,pet004,pet004_name,pet005,pet005_name,pet006,pet006_name,pet007,pet007_name,pet008,pet008_name,pet009,pet009_name", + "type":"sheet", + "url":"assets/role/role_pet.json" + }, + { + "name":"SelectServer_json", + "subkeys":"login_bg3,login_bt_1,login_bt_2,login_dian_1,login_dian_2,login_dian_3,login_jinru,login_jinru1,login_qfbg,login_xzqf,login_xzqf1,login_yeqian_1,login_yeqian_2", + "type":"sheet", + "url":"assets/login/SelectServer.json" + }, + { + "name":"enter_game_png", + "type":"image", + "url":"assets/login/enter_game.png" + }, + { + "name":"login_bg1_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg1.jpg" + }, + { + "name":"LOGO4_png", + "type":"image", + "url":"assets/login/LOGO4.png" + }, + { + "name":"loading_1_jpg", + "type":"image", + "url":"assets/phonebg/loading_1.jpg" + }, + { + "name":"mp_jzjm_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm.png" + }, + { + "name":"mp_login_bg_png", + "type":"image", + "url":"assets/phonebg/mp_login_bg.png" + }, + { + "name":"mp_xfjm_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm.png" + }, + { + "name":"attrTips_json", + "subkeys":"bg_bosstips1,bg_bosstips2,bg_zbgh,fightnum_bg,fightnum_bg2,fightnum_d,fightnum_m,fightnum_z,numsx_1,numsx_10,numsx_11,numsx_12,numsx_13,numsx_14,numsx_15,numsx_16,numsx_17,numsx_18,numsx_19,numsx_2,numsx_20,numsx_21,numsx_22,numsx_23,numsx_24,numsx_25,numsx_26,numsx_27,numsx_28,numsx_29,numsx_3,numsx_30,numsx_31,numsx_32,numsx_33,numsx_34,numsx_35,numsx_36,numsx_37,numsx_38,numsx_39,numsx_4,numsx_40,numsx_41,numsx_42,numsx_43,numsx_44,numsx_5,numsx_6,numsx_7,numsx_8,numsx_9", + "type":"sheet", + "url":"assets/common/attrTips.json" + }, + { + "name":"bg_neigongzb_png", + "type":"image", + "url":"assets/role/bg_neigongzb.png" + }, + { + "name":"kf_xb_bg4_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg4.png" + }, + { + "name":"zjt4_png", + "type":"image", + "url":"assets/login/zjt4.png" + }, + { + "name":"zjt5_png", + "type":"image", + "url":"assets/login/zjt5.png" + }, + { + "name":"sz_show_006_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_0.png" + }, + { + "name":"sz_show_006_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_1.png" + }, + { + "name":"sz_show_007_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_0.png" + }, + { + "name":"sz_show_007_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_1.png" + }, + { + "name":"sz_show_008_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_0.png" + }, + { + "name":"sz_show_008_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_1.png" + }, + { + "name":"sz_show_009_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_0.png" + }, + { + "name":"sz_show_009_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_1.png" + }, + { + "name":"sz_show_010_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_0.png" + }, + { + "name":"sz_show_010_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_1.png" + }, + { + "name":"sz_show_011_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_0.png" + }, + { + "name":"sz_show_011_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_1.png" + }, + { + "name":"sz_show_012_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_0.png" + }, + { + "name":"sz_show_012_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_1.png" + }, + { + "name":"sz_show_013_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_0.png" + }, + { + "name":"sz_show_013_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_1.png" + }, + { + "name":"sz_show_014_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_0.png" + }, + { + "name":"sz_show_014_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_1.png" + }, + { + "name":"sz_show_015_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_0.png" + }, + { + "name":"sz_show_015_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_1.png" + }, + { + "name":"Client_png", + "type":"image", + "url":"assets/multiVersion/Client.png" + }, + { + "name":"IOS_png", + "type":"image", + "url":"assets/multiVersion/IOS.png" + }, + { + "name":"Page_png", + "type":"image", + "url":"assets/multiVersion/Page.png" + }, + { + "name":"multiVersion_json", + "subkeys":"button1,button2", + "type":"sheet", + "url":"assets/multiVersion/multiVersion.json" + }, + { + "name":"mp_login_btn2_png", + "type":"image", + "url":"assets/login/mp_login_btn2.png" + }, + { + "name":"bg_qqvip_png", + "type":"image", + "url":"assets/4366/bg_qqvip.png" + }, + { + "name":"IOS-honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS-honghu.png" + }, + { + "name":"Page-honghu_png", + "type":"image", + "url":"assets/multiVersion/Page-honghu.png" + }, + { + "name":"Android-c601_png", + "type":"image", + "url":"assets/multiVersion/Android-c601.png" + }, + { + "name":"Client-c601_png", + "type":"image", + "url":"assets/multiVersion/Client-c601.png" + }, + { + "name":"Android-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Android-gonghui.png" + }, + { + "name":"Client-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Client-gonghui.png" + }, + { + "name":"Page-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Page-gonghui.png" + }, + { + "name":"Android-honghu_png", + "type":"image", + "url":"assets/multiVersion/Android-honghu.png" + }, + { + "name":"logoGameCat_png", + "type":"image", + "url":"assets/login/logoGameCat.png" + }, + { + "name":"loadingGameCat_png", + "type":"image", + "url":"assets/phonebg/loadingGameCat.png" + }, + { + "name":"loginGameCat_png", + "type":"image", + "url":"assets/phonebg/loginGameCat.png" + }, + { + "name":"weapon_13730_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13730.png" + }, + { + "name":"weapon_13731_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13731.png" + }, + { + "name":"weapon_13732_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13732.png" + }, + { + "name":"body034_1_png", + "type":"image", + "url":"assets/image/model/body/body034_1.png" + }, + { + "name":"body034_0_png", + "type":"image", + "url":"assets/image/model/body/body034_0.png" + }, + { + "name":"bodyimgeff34_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_1.png" + }, + { + "name":"bodyimgeff34_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_0.png" + }, + { + "name":"Client-youximao_png", + "type":"image", + "url":"assets/multiVersion/Client-youximao.png" + }, + { + "name":"LOGO5_png", + "type":"image", + "url":"assets/login/LOGO5.png" + }, + { + "name":"Client-155iy_png", + "type":"image", + "url":"assets/multiVersion/Client-155iy.png" + }, + { + "name":"num_kftz_fnt", + "type":"font", + "url":"assets/openServer/num_kftz.fnt" + }, + { + "name":"bg_360dawanjia_png", + "type":"image", + "url":"assets/360/bg_360dawanjia.png" + }, + { + "name":"bg_7youjqfuli_png", + "type":"image", + "url":"assets/7game/bg_7youjqfuli.png" + }, + { + "name":"wx_bg_7youxi_png", + "type":"image", + "url":"assets/7game/wx_bg_7youxi.png" + }, + { + "name":"saomachongzhi2_png", + "type":"image", + "url":"assets/common/saomachongzhi2.png" + }, + { + "name":"bg_ldschaojivip_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip.png" + }, + { + "name":"bg_ldschaojivip2_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip2.png" + }, + { + "name":"bg_ldsflbuff_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflbuff.png" + }, + { + "name":"bg_ldsflhzdl_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl.png" + }, + { + "name":"bg_ldsflmrlb1_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflmrlb1.png" + }, + { + "name":"bg_ldssjlbrzlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbrzlb.png" + }, + { + "name":"bg_ldssjlbsjlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbsjlb.png" + }, + { + "name":"bg_ldssjlbwxlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbwxlb.png" + }, + { + "name":"bg_ldsyouxihezi_png", + "type":"image", + "url":"assets/ludashi/bg_ldsyouxihezi.png" + }, + { + "name":"ludashi_json", + "subkeys":"banner_ldschaojivip,banner_ldsfl,biaoti_ldsfl,txt_bangdingshouji,txt_erweima,txt_fuzhi,txt_ljcz,txt_ljkt", + "type":"sheet", + "url":"assets/ludashi/ludashi.json" + }, + { + "name":"LOGO6_png", + "type":"image", + "url":"assets/login/LOGO6.png" + }, + { + "name":"mp_jzjm2_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm2.png" + }, + { + "name":"fuli37_json", + "subkeys":"37_smcz_tanhao,37_smczzq_0,37_smczzq_1,banner_37vip,biaoti_37fulidating,btnt_txfcm", + "type":"sheet", + "url":"assets/37/fuli37.json" + }, + { + "name":"bg_360smrzlb_png", + "type":"image", + "url":"assets/360/bg_360smrzlb.png" + }, + { + "name":"fuli360_json", + "subkeys":"biaoti_smrz,btn_lijilingqu", + "type":"sheet", + "url":"assets/360/fuli360.json" + }, + { + "name":"bg_ldsflhzdl2_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl2.png" + }, + { + "name":"bg_ku25hezifuli_png", + "type":"image", + "url":"assets/ku25/bg_ku25hezifuli.png" + }, + { + "name":"bg_ku25vip_png", + "type":"image", + "url":"assets/ku25/bg_ku25vip.png" + }, + { + "name":"bg_ku25weixinlibao_png", + "type":"image", + "url":"assets/ku25/bg_ku25weixinlibao.png" + }, + { + "name":"ku25_json", + "subkeys":"banner_ku25hezidenglu1,banner_ku25hezidenglu2,banner_ku25vip", + "type":"sheet", + "url":"assets/ku25/ku25.json" + }, + { + "name":"bg_37weiduan_png", + "type":"image", + "url":"assets/37/bg_37weiduan.png" + }, + { + "name":"bg_sougouvip_png", + "type":"image", + "url":"assets/sogou/bg_sougouvip.png" + }, + { + "name":"bg_zhuanshupifu_png", + "type":"image", + "url":"assets/sogou/bg_zhuanshupifu.png" + }, + { + "name":"sogou_json", + "subkeys":"banner_sougouvip,banner_sougouyxdt,sogou_t_xslb", + "type":"sheet", + "url":"assets/sogou/sogou.json" + }, + { + "name":"bg_sogouwxlb_png", + "type":"image", + "url":"assets/sogou/bg_sogouwxlb.png" + }, + { + "name":"Client-suhai_png", + "type":"image", + "url":"assets/suhai/Client-suhai.png" + }, + { + "name":"IOS_suhai_png", + "type":"image", + "url":"assets/suhai/IOS_suhai.png" + }, + { + "name":"Page-suhai_png", + "type":"image", + "url":"assets/suhai/Page-suhai.png" + }, + { + "name":"Android-suhai_png", + "type":"image", + "url":"assets/suhai/Android-suhai.png" + }, + { + "name":"Android_c601_png", + "type":"image", + "url":"assets/multiVersion/Android_c601.png" + }, + { + "name":"Client_c601_png", + "type":"image", + "url":"assets/multiVersion/Client_c601.png" + }, + { + "name":"Page_c601_png", + "type":"image", + "url":"assets/multiVersion/Page_c601.png" + }, + { + "name":"banner_yaodou_png", + "type":"image", + "url":"assets/yaodou/banner_yaodou.png" + }, + { + "name":"bg_yaodou_png", + "type":"image", + "url":"assets/yaodou/bg_yaodou.png" + }, + { + "name":"zjt8_png", + "type":"image", + "url":"assets/login/zjt8.png" + }, + { + "name":"bg_qidianbdsj_png", + "type":"image", + "url":"assets/qidian/bg_qidianbdsj.png" + }, + { + "name":"bg_qidianvip_png", + "type":"image", + "url":"assets/qidian/bg_qidianvip.png" + }, + { + "name":"LOGO7_png", + "type":"image", + "url":"assets/login/LOGO7.png" + }, + { + "name":"tdloadimg_png", + "type":"image", + "url":"assets/phonebg/tdloadimg.png" + }, + { + "name":"tdlogin_png", + "type":"image", + "url":"assets/phonebg/tdlogin.png" + }, + { + "name":"main_gonggaoBtn_png", + "type":"image", + "url":"assets/login/main_gonggaoBtn.png" + }, + { + "name":"banner_feihuo_png", + "type":"image", + "url":"assets/feihuo/banner_feihuo.png" + }, + { + "name":"bg_feihuo_png", + "type":"image", + "url":"assets/feihuo/bg_feihuo.png" + }, + { + "name":"bg_aiqiyiQQqun_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqiyiQQqun.png" + }, + { + "name":"bg_aiqqiyivip_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqqiyivip.png" + }, + { + "name":"bg_aqiyiweixin_png", + "type":"image", + "url":"assets/iqiyi/bg_aqiyiweixin.png" + }, + { + "name":"iqiyi_json", + "subkeys":"banner_aiqiyivip,btn_ljjrgfqqq,btnt_ljjrgfqqq", + "type":"sheet", + "url":"assets/iqiyi/iqiyi.json" + }, + { + "name":"Client-tudou_png", + "type":"image", + "url":"assets/multiVersion/Client-tudou.png" + }, + { + "name":"bg_tw_qqqun_png", + "type":"image", + "url":"assets/tanwan/bg_tw_qqqun.png" + }, + { + "name":"bg_tw_sanduan_png", + "type":"image", + "url":"assets/tanwan/bg_tw_sanduan.png" + }, + { + "name":"bg_tw_weixin_png", + "type":"image", + "url":"assets/tanwan/bg_tw_weixin.png" + }, + { + "name":"bg_tw_wszl_png", + "type":"image", + "url":"assets/tanwan/bg_tw_wszl.png" + }, + { + "name":"tanwan_json", + "subkeys":"banner_tanwanvip,biaoti_tanwanfuli", + "type":"sheet", + "url":"assets/tanwan/tanwan.json" + }, + { + "name":"bg_tanwanvip_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanvip.png" + }, + { + "name":"bg_tanwanviperweima_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanviperweima.png" + }, + { + "name":"bg_tw_bdsj_png", + "type":"image", + "url":"assets/tanwan/bg_tw_bdsj.png" + }, + { + "name":"bg_zhongqiujiajie_png", + "type":"image", + "url":"assets/actypay/bg_zhongqiujiajie.png" + }, + { + "name":"apay_bg3_png", + "type":"image", + "url":"assets/bg/apay_bg3.png" + }, + { + "name":"bg_wanshanziliao_png", + "type":"image", + "url":"assets/game2/bg_wanshanziliao.png" + }, + { + "name":"ageButton_png", + "type":"image", + "url":"assets/login/ageButton.png" + }, + { + "name":"tdbxscloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloadimg.png" + }, + { + "name":"LOGO8_png", + "type":"image", + "url":"assets/login/LOGO8.png" + }, + { + "name":"bg_2144vip_png", + "type":"image", + "url":"assets/2144/bg_2144vip.png" + }, + { + "name":"fuli2144_json", + "subkeys":"banner_2144vip,biaoti_2144fuli", + "type":"sheet", + "url":"assets/2144/fuli2144.json" + }, + { + "name":"tdbxscloginimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloginimg.png" + }, + { + "name":"bg_danbichongzhi_png", + "type":"image", + "url":"assets/actypay/bg_danbichongzhi.png" + }, + { + "name":"Client-wanjiepian_png", + "type":"image", + "url":"assets/multiVersion/Client-wanjiepian.png" + }, + { + "name":"kbg_5_png", + "type":"image", + "url":"assets/bg/kbg_5.png" + }, + { + "name":"Client-tudoubxsc_png", + "type":"image", + "url":"assets/multiVersion/Client-tudoubxsc.png" + }, + { + "name":"banner_kuaiwan_png", + "type":"image", + "url":"assets/kuaiwan/banner_kuaiwan.png" + }, + { + "name":"bg_kuaiwanvip_png", + "type":"image", + "url":"assets/kuaiwan/bg_kuaiwanvip.png" + }, + { + "name":"Android-huowu_png", + "type":"image", + "url":"assets/multiVersion/Android-huowu.png" + }, + { + "name":"IOS_huowu_png", + "type":"image", + "url":"assets/multiVersion/IOS_huowu.png" + }, + { + "name":"Page-huowu_png", + "type":"image", + "url":"assets/multiVersion/Page-huowu.png" + }, + { + "name":"Client-huowu_png", + "type":"image", + "url":"assets/multiVersion/Client-huowu.png" + }, + { + "name":"weixincode_qq_png", + "type":"image", + "url":"assets/4366/weixincode_qq.png" + }, + { + "name":"bg_wxlb_shunwang_png", + "type":"image", + "url":"assets/shunwang/bg_wxlb_shunwang.png" + }, + { + "name":"shunwnag_json", + "subkeys":"banner_shunwang,btnt_lijidengji,btnt_xiazaihezi,txt_shunwangdengjilibao,txt_shunwanghezilibao", + "type":"sheet", + "url":"assets/shunwang/shunwnag.json" + }, + { + "name":"bg_platform_1_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_1.png" + }, + { + "name":"bg_platform_2_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_2.png" + }, + { + "name":"bg_platform_3_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_3.png" + }, + { + "name":"platformFuli_json", + "subkeys":"4366_jqfulibt,YY_yq_1,YY_yq_2,YY_yq_jiang,bg_platform_quyu1,biaoti_4366vip,biaoti_bangdingyouli,biaoti_chaojivip,biaoti_datingtequan,biaoti_ku25hezifuli,biaoti_shoujilibao,biaoti_wanshanziliao,biaoti_weixinlibao,biaoti_yxdt,btnt_qwyz,jiangli_bt,lingqu_bt,mun_1,mun_2,mun_3,mun_4,mun_5,mun_6,mun_7,mun_bg,mun_bg2,property_3,t_erweima,t_fuzhi,tab_bg_ldsfl,tab_ldsfl1,tab_ldsfl2,txt_djxz,txt_shenfenyanzheng,txt_xzhz", + "type":"sheet", + "url":"assets/platformFuli/platformFuli.json" + }, + { + "name":"weiduan_denglu_png", + "type":"image", + "url":"assets/platformFuli/weiduan_denglu.png" + }, + { + "name":"banner_qidianvip_png", + "type":"image", + "url":"assets/qidian/banner_qidianvip.png" + }, + { + "name":"banner_7youvip_png", + "type":"image", + "url":"assets/7game/banner_7youvip.png" + }, + { + "name":"bg_zijue_png", + "type":"image", + "url":"assets/role/bg_zijue.png" + }, + { + "name":"tdbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbyloadimg.png" + }, + { + "name":"LOGO9_png", + "type":"image", + "url":"assets/login/LOGO9.png" + }, + { + "name":"apay_banner_chfl_png", + "type":"image", + "url":"assets/actypay/apay_banner_chfl.png" + }, + { + "name":"apay_liebiao_bg_png", + "type":"image", + "url":"assets/actypay/apay_liebiao_bg.png" + }, + { + "name":"banner_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/banner_shenhuaboss.png" + }, + { + "name":"festival_dwjiajie_png", + "type":"image", + "url":"assets/actypay/festival_dwjiajie.png" + }, + { + "name":"festival_hdwuyi_png", + "type":"image", + "url":"assets/actypay/festival_hdwuyi.png" + }, + { + "name":"festival_tqxunli_png", + "type":"image", + "url":"assets/actypay/festival_tqxunli.png" + }, + { + "name":"festival_znqingdian_png", + "type":"image", + "url":"assets/actypay/festival_znqingdian.png" + }, + { + "name":"banner_sbzb_png", + "type":"image", + "url":"assets/fuli/banner_sbzb.png" + }, + { + "name":"banner_ssboss_png", + "type":"image", + "url":"assets/fuli/banner_ssboss.png" + }, + { + "name":"kf_kftz_bg4_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg4.png" + }, + { + "name":"kf_dz_bg_png", + "type":"image", + "url":"assets/openServer/kf_dz_bg.png" + }, + { + "name":"kf_jj_bg_png", + "type":"image", + "url":"assets/openServer/kf_jj_bg.png" + }, + { + "name":"kf_kftz_bg_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg.png" + }, + { + "name":"tq_p_7_3_png", + "type":"image", + "url":"assets/vip/tq_p_7_3.png" + }, + { + "name":"tq_bg2_png", + "type":"image", + "url":"assets/vip/tq_bg2.png" + }, + { + "name":"tq_bg3_png", + "type":"image", + "url":"assets/vip/tq_bg3.png" + }, + { + "name":"tq_bg6_png", + "type":"image", + "url":"assets/vip/tq_bg6.png" + }, + { + "name":"tq_bg7_png", + "type":"image", + "url":"assets/vip/tq_bg7.png" + }, + { + "name":"tq_p_1_1_png", + "type":"image", + "url":"assets/vip/tq_p_1_1.png" + }, + { + "name":"tq_p_1_2_png", + "type":"image", + "url":"assets/vip/tq_p_1_2.png" + }, + { + "name":"tq_p_1_3_png", + "type":"image", + "url":"assets/vip/tq_p_1_3.png" + }, + { + "name":"tq_p_2_1_png", + "type":"image", + "url":"assets/vip/tq_p_2_1.png" + }, + { + "name":"tq_p_2_2_png", + "type":"image", + "url":"assets/vip/tq_p_2_2.png" + }, + { + "name":"tq_p_2_3_png", + "type":"image", + "url":"assets/vip/tq_p_2_3.png" + }, + { + "name":"tq_p_3_1_png", + "type":"image", + "url":"assets/vip/tq_p_3_1.png" + }, + { + "name":"tq_p_3_2_png", + "type":"image", + "url":"assets/vip/tq_p_3_2.png" + }, + { + "name":"tq_p_3_3_png", + "type":"image", + "url":"assets/vip/tq_p_3_3.png" + }, + { + "name":"tq_p_4_1_png", + "type":"image", + "url":"assets/vip/tq_p_4_1.png" + }, + { + "name":"tq_p_4_2_png", + "type":"image", + "url":"assets/vip/tq_p_4_2.png" + }, + { + "name":"tq_p_4_3_png", + "type":"image", + "url":"assets/vip/tq_p_4_3.png" + }, + { + "name":"tq_p_5_1_png", + "type":"image", + "url":"assets/vip/tq_p_5_1.png" + }, + { + "name":"tq_p_5_2_png", + "type":"image", + "url":"assets/vip/tq_p_5_2.png" + }, + { + "name":"tq_p_5_3_png", + "type":"image", + "url":"assets/vip/tq_p_5_3.png" + }, + { + "name":"tq_p_6_1_png", + "type":"image", + "url":"assets/vip/tq_p_6_1.png" + }, + { + "name":"tq_p_6_2_png", + "type":"image", + "url":"assets/vip/tq_p_6_2.png" + }, + { + "name":"tq_p_6_3_png", + "type":"image", + "url":"assets/vip/tq_p_6_3.png" + }, + { + "name":"tq_p_7_1_png", + "type":"image", + "url":"assets/vip/tq_p_7_1.png" + }, + { + "name":"tq_p_7_2_png", + "type":"image", + "url":"assets/vip/tq_p_7_2.png" + }, + { + "name":"bg_ldsflmrlb2_png", + "type":"image", + "url":"assets/platformFuli/bg_ldsflmrlb2.png" + }, + { + "name":"bg_shunwang_fangchenmi_png", + "type":"image", + "url":"assets/platformFuli/bg_shunwang_fangchenmi.png" + }, + { + "name":"LOGO10_png", + "type":"image", + "url":"assets/login/LOGO10.png" + }, + { + "name":"xunwanFuli_json", + "subkeys":"banner_xlhytq,biaoti_xlhytq", + "type":"sheet", + "url":"assets/xunwanFuli/xunwanFuli.json" + }, + { + "name":"zjt10_png", + "type":"image", + "url":"assets/login/zjt10.png" + }, + { + "name":"LOGO11_png", + "type":"image", + "url":"assets/login/LOGO11.png" + }, + { + "name":"tdxlbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdxlbyloadimg.png" + }, + { + "name":"lOG_Honghu_png", + "type":"image", + "url":"assets/login/lOG_Honghu.png" + }, + { + "name":"buff2_json", + "subkeys":"mjdb_buff01,mjdb_buff02,mjdb_buff03,mjdb_buff04,mjdb_buff05,mjdb_buff06,mjdb_buff07,mjdb_buff08", + "type":"sheet", + "url":"assets/common/buff2.json" + }, + { + "name":"IOS_honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS_honghu.png" + }, + { + "name":"zjt11_png", + "type":"image", + "url":"assets/login/zjt11.png" + }, + { + "name":"mp_xfjm_nztl_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm_nztl.png" + }, + { + "name":"LOGO12_png", + "type":"image", + "url":"assets/login/LOGO12.png" + }, + { + "name":"saomachongzhi3_png", + "type":"image", + "url":"assets/common/saomachongzhi3.png" + }, + { + "name":"LOGO13_png", + "type":"image", + "url":"assets/login/LOGO13.png" + }, + { + "name":"banner_fudai_png", + "type":"image", + "url":"assets/actypay/banner_fudai.png" + }, + { + "name":"bg_fudai_png", + "type":"image", + "url":"assets/actypay/bg_fudai.png" + }, + { + "name":"bg_xfphb_png", + "type":"image", + "url":"assets/consumeRank/bg_xfphb.png" + }, + { + "name":"consumeRank_json", + "subkeys":"btn_xfphb,xfph_pm1,xfph_pm2,xfph_pm3", + "type":"sheet", + "url":"assets/consumeRank/consumeRank.json" + }, + { + "name":"worship_bg_jpg", + "type":"image", + "url":"assets/common/worship_bg.jpg" + } + ] +} \ No newline at end of file diff --git a/resource_Publish/2 b/resource_Publish/2 new file mode 100644 index 0000000..8ec0fb0 --- /dev/null +++ b/resource_Publish/2 @@ -0,0 +1,641 @@ +{ + "skins": { + "eui.Button": "resource/eui_skins/ButtonSkin.exml", + "eui.CheckBox": "resource/eui_skins/CheckBoxSkin.exml", + "eui.HScrollBar": "resource/eui_skins/HScrollBarSkin.exml", + "eui.HSlider": "resource/eui_skins/HSliderSkin.exml", + "eui.Panel": "resource/eui_skins/PanelSkin.exml", + "eui.TextInput": "resource/eui_skins/TextInputSkin.exml", + "eui.ProgressBar": "resource/eui_skins/ProgressBarSkin.exml", + "eui.RadioButton": "resource/eui_skins/RadioButtonSkin.exml", + "eui.Scroller": "resource/eui_skins/ScrollerSkin.exml", + "eui.ToggleSwitch": "resource/eui_skins/ToggleSwitchSkin.exml", + "eui.VScrollBar": "resource/eui_skins/VScrollBarSkin.exml", + "eui.VSlider": "resource/eui_skins/VSliderSkin.exml", + "eui.ItemRenderer": "resource/eui_skins/ItemRendererSkin.exml", + "app.RuleTipsButton": "resource/eui_skins/web/common/RuleButton.exml", + "app.RedDotControl": "resource/eui_skins/web/common/RedDotSkin.exml" + }, + "autoGenerateExmlsList": true, + "exmls": [ + "resource/eui_skins/ButtonSkin.exml", + "resource/eui_skins/HScrollBarSkin.exml", + "resource/eui_skins/ProgressBarSkin.exml", + "resource/eui_skins/ProgressBarSkin1.exml", + "resource/eui_skins/RadioButtonSkin.exml", + "resource/eui_skins/ScrollerSkin.exml", + "resource/eui_skins/VScrollBarSkin1.exml", + "resource/eui_skins/ScrollerSkin1.exml", + "resource/eui_skins/TextInputSkin.exml", + "resource/eui_skins/VScrollBarSkin.exml", + "resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml", + "resource/eui_skins/web/common/ViewBgWin6Skin.exml", + "resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml", + "resource/eui_skins/web/common/Btn4Skin.exml", + "resource/eui_skins/web/achievement/AchievementItemViewSkin.exml", + "resource/eui_skins/web/common/ButtonCloseSkin.exml", + "resource/eui_skins/web/common/UIViewFrameSkin.exml", + "resource/eui_skins/web/common/Btn9Skin.exml", + "resource/eui_skins/web/common/ItemBaseSkin.exml", + "resource/eui_skins/web/achievement/AchievementViewSkin.exml", + "resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml", + "resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml", + "resource/eui_skins/web/achievement/MedalItemViewSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml", + "resource/eui_skins/web/common/ViewBgWin7Skin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml", + "resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml", + "resource/eui_skins/web/activityCopies/ActivityTabSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml", + "resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml", + "resource/eui_skins/web/activitypay/ActivityPaySkin.exml", + "resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml", + "resource/eui_skins/web/activitypay/PayItemRenderSkin.exml", + "resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml", + "resource/eui_skins/web/common/bar3Skin.exml", + "resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml", + "resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml", + "resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml", + "resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml", + "resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml", + "resource/eui_skins/web/common/Btn26Skin.exml", + "resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml", + "resource/eui_skins/web/Btn0Skin.exml", + "resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml", + "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml", + "resource/eui_skins/web/common/Btn31Skin.exml", + "resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml", + "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml", + "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml", + "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml", + "resource/eui_skins/web/common/BtnResurrectionSkin.exml", + "resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml", + "resource/eui_skins/web/common/CloseButtonSkin.exml", + "resource/eui_skins/web/bag/BagBatchUseSkin.exml", + "resource/eui_skins/web/common/ViewBgWin5Skin.exml", + "resource/eui_skins/web/bag/BagGoldChangeSkin.exml", + "resource/eui_skins/web/bag/BagItemSplitSkin.exml", + "resource/eui_skins/web/common/ViewBgWin4Skin.exml", + "resource/eui_skins/web/bag/BagRecycleSkin.exml", + "resource/eui_skins/web/bag/BagUpSkin.exml", + "resource/eui_skins/web/common/ViewBgWin2Skin.exml", + "resource/eui_skins/web/common/moneyPanelSkin.exml", + "resource/eui_skins/web/bag/BagViewSkin.exml", + "resource/eui_skins/web/bloodBarSkin.exml", + "resource/eui_skins/web/bloodBarSkin2.exml", + "resource/eui_skins/web/bloodBarSkin3.exml", + "resource/eui_skins/web/bloodBarSkin4.exml", + "resource/eui_skins/web/bloodBarSkin5.exml", + "resource/eui_skins/web/bloodBarSkin6.exml", + "resource/eui_skins/web/bloodyelskin.exml", + "resource/eui_skins/web/common/ItemSlotSkin.exml", + "resource/eui_skins/web/boss/BossDropItemSkin.exml", + "resource/eui_skins/web/boss/BossItemSkin.exml", + "resource/eui_skins/web/common/ViewBgWin1Skin.exml", + "resource/eui_skins/web/boss/MagicBossSkin.exml", + "resource/eui_skins/web/boss/PersonalBossSkin.exml", + "resource/eui_skins/web/boss/BossSkin.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml", + "resource/eui_skins/web/boss/MagicBossItemSkin.exml", + "resource/eui_skins/web/Btn11Skin.exml", + "resource/eui_skins/web/Btn23Skin.exml", + "resource/eui_skins/web/common/CheckBox2.exml", + "resource/eui_skins/web/setup/SetUpCheckBox.exml", + "resource/eui_skins/web/caution/CautionViewSkin.exml", + "resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml", + "resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml", + "resource/eui_skins/web/char/CharSkin.exml", + "resource/eui_skins/web/chat/chatListItemSkin.exml", + "resource/eui_skins/web/chat/chatListWinItemSkin.exml", + "resource/eui_skins/web/chat/ChatMenuSkin.exml", + "resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml", + "resource/eui_skins/web/chat/ChatRuleButton.exml", + "resource/eui_skins/web/chat/ChatSelectArrItem.exml", + "resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml", + "resource/eui_skins/web/common/Btn2Skin.exml", + "resource/eui_skins/web/common/Btn10Skin.exml", + "resource/eui_skins/web/common/SelectInputSkin.exml", + "resource/eui_skins/web/chat/ChatSkin.exml", + "resource/eui_skins/web/chat/ChatWinMenuSkin.exml", + "resource/eui_skins/web/common/CheckBox3.exml", + "resource/eui_skins/web/common/Btn22Skin.exml", + "resource/eui_skins/web/chat/ChatWinSkin.exml", + "resource/eui_skins/web/common/ActivityCommonViewSkin.exml", + "resource/eui_skins/web/common/ActWleFareTabSkin.exml", + "resource/eui_skins/web/common/bar1Skin.exml", + "resource/eui_skins/web/common/bar2Skin.exml", + "resource/eui_skins/web/common/bar4Skin.exml", + "resource/eui_skins/web/common/btn11Skin.exml", + "resource/eui_skins/web/common/Btn12Skin.exml", + "resource/eui_skins/web/common/Btn13Skin.exml", + "resource/eui_skins/web/common/Btn14Skin.exml", + "resource/eui_skins/web/common/Btn15Skin.exml", + "resource/eui_skins/web/common/Btn16Skin.exml", + "resource/eui_skins/web/common/Btn17Skin.exml", + "resource/eui_skins/web/common/Btn18Skin.exml", + "resource/eui_skins/web/common/Btn19Skin.exml", + "resource/eui_skins/web/common/Btn1Skin.exml", + "resource/eui_skins/web/common/Btn20Skin.exml", + "resource/eui_skins/web/common/Btn21Skin.exml", + "resource/eui_skins/web/common/Btn24Skin.exml", + "resource/eui_skins/web/common/Btn25Skin.exml", + "resource/eui_skins/web/common/Btn30Skin.exml", + "resource/eui_skins/web/common/Btn32Skin.exml", + "resource/eui_skins/web/common/Btn3Skin.exml", + "resource/eui_skins/web/common/Btn5Skin.exml", + "resource/eui_skins/web/common/Btn6Skin.exml", + "resource/eui_skins/web/common/Btn7Skin.exml", + "resource/eui_skins/web/common/Btn8Skin.exml", + "resource/eui_skins/web/common/BtnTabSkin.exml", + "resource/eui_skins/web/common/BtnTabSkin1.exml", + "resource/eui_skins/web/common/BtnTabSkin2.exml", + "resource/eui_skins/web/common/ButtonAttrSkin.exml", + "resource/eui_skins/web/common/ButtonReturnSkin.exml", + "resource/eui_skins/web/common/ButtonUISkin.exml", + "resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml", + "resource/eui_skins/web/common/ChatBtnMenuSkin.exml", + "resource/eui_skins/web/common/chatBtnSkin.exml", + "resource/eui_skins/web/common/CircleTipsWinSkin.exml", + "resource/eui_skins/web/common/CommonBtnSkin.exml", + "resource/eui_skins/web/common/CommonDialogSkin.exml", + "resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml", + "resource/eui_skins/web/common/CommonGiftShowSKin.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml", + "resource/eui_skins/web/common/CommonViewSkin.exml", + "resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml", + "resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml", + "resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml", + "resource/eui_skins/web/common/UIViewFrameSkin2.exml", + "resource/eui_skins/web/common/ItemSlotSkin3.exml", + "resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml", + "resource/eui_skins/web/common/HSlider1Skin.exml", + "resource/eui_skins/web/common/ImageBaseSkin.exml", + "resource/eui_skins/web/common/ItemBaseSkin2.exml", + "resource/eui_skins/web/common/ItemSelectBaseSkin.exml", + "resource/eui_skins/web/common/ItemSlotSkin2.exml", + "resource/eui_skins/web/common/MainBtn2Skin.exml", + "resource/eui_skins/web/common/MainBtn3Skin.exml", + "resource/eui_skins/web/common/MainBtn4Skin.exml", + "resource/eui_skins/web/common/MainBtn5Skin.exml", + "resource/eui_skins/web/common/MainBtn6Skin.exml", + "resource/eui_skins/web/common/MainBtn7Skin.exml", + "resource/eui_skins/web/common/MainBtn8Skin.exml", + "resource/eui_skins/web/common/MainBtnSkin.exml", + "resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml", + "resource/eui_skins/web/common/RedDotSkin.exml", + "resource/eui_skins/web/common/RuleButton.exml", + "resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml", + "resource/eui_skins/web/common/UIViewBgWinSkin.exml", + "resource/eui_skins/web/common/VersionUpdateSkin.exml", + "resource/eui_skins/web/common/ViewBgWin3Skin.exml", + "resource/eui_skins/web/common/ViewBgWinSkin.exml", + "resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml", + "resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml", + "resource/eui_skins/web/CreateRole/CreateRole2Skin.exml", + "resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml", + "resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml", + "resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml", + "resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml", + "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml", + "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml", + "resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml", + "resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml", + "resource/eui_skins/web/donationRank/DonationRankItemSkin.exml", + "resource/eui_skins/web/donationRank/DonationRankWinSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesSkin.exml", + "resource/eui_skins/web/forge/ForgeRecordItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRecordSkin.exml", + "resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml", + "resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml", + "resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningSkin.exml", + "resource/eui_skins/web/forge/ForgeRewardItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarSkin.exml", + "resource/eui_skins/web/forge/ForgeViewSkin.exml", + "resource/eui_skins/web/forge/ForgeWinSkin.exml", + "resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml", + "resource/eui_skins/web/forge/SynthesisItem2Skin.exml", + "resource/eui_skins/web/forge/SynthesisItemSkin.exml", + "resource/eui_skins/web/forge/SynthesisTab2Skin.exml", + "resource/eui_skins/web/forge/SynthesisTabSkin.exml", + "resource/eui_skins/web/forge/SynthesisViewSkin.exml", + "resource/eui_skins/web/friend/FriendAddViewSkin.exml", + "resource/eui_skins/web/friend/FriendBlackListItemSkin.exml", + "resource/eui_skins/web/friend/FriendColorBtnSkin.exml", + "resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml", + "resource/eui_skins/web/friend/FriendCommonItemSkin.exml", + "resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml", + "resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml", + "resource/eui_skins/web/friend/FriendHederSkin.exml", + "resource/eui_skins/web/friend/FriendQQItemSkin.exml", + "resource/eui_skins/web/friend/FriendViewPageSkin.exml", + "resource/eui_skins/web/friend/FriendViewSkin.exml", + "resource/eui_skins/web/fuben/debugViewSkin.exml", + "resource/eui_skins/web/fuben/FubenRankItemSkin.exml", + "resource/eui_skins/web/fuben/FubenRankPagSkin.exml", + "resource/eui_skins/web/fuben/FubenRankSkin.exml", + "resource/eui_skins/web/fuben/FubenScoreItemSkin.exml", + "resource/eui_skins/web/fuben/FubenScoreSkin.exml", + "resource/eui_skins/web/fuben/FubenSkin.exml", + "resource/eui_skins/web/fuben/LabelSkinSkin.exml", + "resource/eui_skins/web/GameFightSceneSkin.exml", + "resource/eui_skins/web/ghost/GhostAutoViewSkin.exml", + "resource/eui_skins/web/ghost/GhostSkin.exml", + "resource/eui_skins/web/ghost/ResonateItem2Skin.exml", + "resource/eui_skins/web/ghost/ResonateItemSkin.exml", + "resource/eui_skins/web/ghost/RoleGhostSkin.exml", + "resource/eui_skins/web/gonggao/GongGaoWinSkin.exml", + "resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml", + "resource/eui_skins/web/growway/GrowWayRendererSkin.exml", + "resource/eui_skins/web/growway/GrowWaySkin.exml", + "resource/eui_skins/web/guild/CreatGuildViewSkin.exml", + "resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildDevoteViewSkin.exml", + "resource/eui_skins/web/guild/GuildInfoViewSkin.exml", + "resource/eui_skins/web/guild/GuildListItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildListViewSkin.exml", + "resource/eui_skins/web/guild/GuildLogItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildSetViewSkin.exml", + "resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml", + "resource/eui_skins/web/inspire/InspireItemSkin.exml", + "resource/eui_skins/web/inspire/InspireSkin.exml", + "resource/eui_skins/web/kuafu/KuanFuView.exml", + "resource/eui_skins/web/mail/MailSkin.exml", + "resource/eui_skins/web/mail/MailtemSkin.exml", + "resource/eui_skins/web/main/AntiAddictionView.exml", + "resource/eui_skins/web/main/AttackCharItemSkin.exml", + "resource/eui_skins/web/main/BulletFrameItemSkin.exml", + "resource/eui_skins/web/main/BulletFrameSkin.exml", + "resource/eui_skins/web/main/BulletFrameSkin2.exml", + "resource/eui_skins/web/main/FastItemSkin.exml", + "resource/eui_skins/web/main/GongGaoView.exml", + "resource/eui_skins/web/main/IDCard.exml", + "resource/eui_skins/web/main/MainBanSkin.exml", + "resource/eui_skins/web/main/skillItemSkin.exml", + "resource/eui_skins/web/main/MainBottomSkin.exml", + "resource/eui_skins/web/main/MainLockSkin.exml", + "resource/eui_skins/web/main/MainRightSkin.exml", + "resource/eui_skins/web/main/MainSelectArrItem.exml", + "resource/eui_skins/web/main/MainTopLeftSkin.exml", + "resource/eui_skins/web/main/MianBottomNotice.exml", + "resource/eui_skins/web/main/Welcome2Skin.exml", + "resource/eui_skins/web/main/WelcomeSkin.exml?v=1", + "resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml", + "resource/eui_skins/web/map/CallSkin.exml", + "resource/eui_skins/web/map/MapMaxSkin.exml", + "resource/eui_skins/web/map/MapMiniSkin.exml", + "resource/eui_skins/web/microterms/MicrotermsViewSkin.exml", + "resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml", + "resource/eui_skins/web/npc/NpcLabelRendererSkin.exml", + "resource/eui_skins/web/npc/NpcRendererSkin.exml", + "resource/eui_skins/web/npc/NpcSkin.exml", + "resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml", + "resource/eui_skins/web/npc/WashRedNameViewSkin.exml", + "resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml", + "resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml", + "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml", + "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml", + "resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml", + "resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml", + "resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml", + "resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml", + "resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml", + "resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml", + "resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml", + "resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml", + "resource/eui_skins/web/phone/MainCityWinSkin.exml", + "resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml", + "resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml", + "resource/eui_skins/web/phone/PhoneChatItemSkin.exml", + "resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml", + "resource/eui_skins/web/phone/PhoneLoadingSkin.exml", + "resource/eui_skins/web/phone/PhoneLoginViewSkin.exml", + "resource/eui_skins/web/phone/PhoneMainButtonSkin.exml", + "resource/eui_skins/web/phone/PhoneMainSkillSkin.exml", + "resource/eui_skins/web/rank/RankRightMenuSkin.exml", + "resource/eui_skins/web/phone/PhoneMainSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskSkin.exml", + "resource/eui_skins/web/phone/PhoneTestSkin.exml", + "resource/eui_skins/web/phone/Rocker2Skin.exml", + "resource/eui_skins/web/phone/RockerSkin.exml", + "resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml", + "resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml", + "resource/eui_skins/web/rank/RankBtnItemSkin.exml", + "resource/eui_skins/web/rank/RankListItemSkin.exml", + "resource/eui_skins/web/rank/RankQQListItemSkin.exml", + "resource/eui_skins/web/rank/RankTipsSkin.exml", + "resource/eui_skins/web/rank/RankViewSkin.exml", + "resource/eui_skins/web/recharge/Recharge4366Skin.exml", + "resource/eui_skins/web/recharge/RechargeF1Skin.exml", + "resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml", + "resource/eui_skins/web/recharge/RechargeGameCatSkin.exml", + "resource/eui_skins/web/recharge/RechargeQQSkin.exml", + "resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml", + "resource/eui_skins/web/recharge/RechargeRequestSkin.exml", + "resource/eui_skins/web/recharge/RechargeSkin.exml", + "resource/eui_skins/web/recycle/RecycleWinSkin.exml", + "resource/eui_skins/web/result/FightResultWinSkin1.exml", + "resource/eui_skins/web/result/FightResultWinSkin12.exml", + "resource/eui_skins/web/result/FightResultWinSkin2.exml", + "resource/eui_skins/web/result/FightResultWinSkin26.exml", + "resource/eui_skins/web/result/FightResultWinSkin28.exml", + "resource/eui_skins/web/result/FightResultWinSkin3.exml", + "resource/eui_skins/web/result/FightResultWinSkin4.exml", + "resource/eui_skins/web/result/FightResultWinSkin8.exml", + "resource/eui_skins/web/result/item/FightResultItemSkin1.exml", + "resource/eui_skins/web/role/circle/CircleSkin.exml", + "resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml", + "resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml", + "resource/eui_skins/web/role/equip/AttrSkin.exml", + "resource/eui_skins/web/role/equip/ButtonRoleSkin.exml", + "resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml", + "resource/eui_skins/web/role/equip/EquipSkin.exml", + "resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml", + "resource/eui_skins/web/role/equip/RolePriBtnSkin.exml", + "resource/eui_skins/web/role/equip/RoleStateItemSkin.exml", + "resource/eui_skins/web/role/equip/StateSkin.exml", + "resource/eui_skins/web/role/exchange/RoleExchangSkin.exml", + "resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionAttrSkin.exml", + "resource/eui_skins/web/role/fashion/FashionListItemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionNewListItem.exml", + "resource/eui_skins/web/role/fashion/FashionSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml", + "resource/eui_skins/web/role/godequip/GodEquipSkin.exml", + "resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml", + "resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml", + "resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml", + "resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml", + "resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml", + "resource/eui_skins/web/role/newRing/NewRingSkin.exml", + "resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml", + "resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml", + "resource/eui_skins/web/role/pet/RolePetItemSkin.exml", + "resource/eui_skins/web/role/pet/RolePetSkin.exml", + "resource/eui_skins/web/role/ring/RingAttrItemSkin.exml", + "resource/eui_skins/web/role/ring/RingIconItemSkin.exml", + "resource/eui_skins/web/role/ring/RingIconItemSkin2.exml", + "resource/eui_skins/web/role/ring/RingSkin.exml", + "resource/eui_skins/web/role/RoleViewSkin.exml", + "resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml", + "resource/eui_skins/web/role/skill/SkillDescSkin.exml", + "resource/eui_skins/web/role/skill/SkillSkin.exml", + "resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenSkin.exml", + "resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml", + "resource/eui_skins/web/role/title/TitleItemViewSkin.exml", + "resource/eui_skins/web/role/title/TitleItemViewSkin2.exml", + "resource/eui_skins/web/role/title/TitleViewSkin.exml", + "resource/eui_skins/web/role/title/TitleViewSkin2.exml", + "resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml", + "resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml", + "resource/eui_skins/web/role/treasure/BlessSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml", + "resource/eui_skins/web/rule/RuleViewSkin.exml", + "resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml", + "resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml", + "resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml", + "resource/eui_skins/web/setup/SetAIDropDownSkin.exml", + "resource/eui_skins/web/setup/SetDropDownItemSkin.exml", + "resource/eui_skins/web/setup/SetDropDownSkin.exml", + "resource/eui_skins/web/setup/SetUpAISkin.exml", + "resource/eui_skins/web/setup/SetUpBasicsSkin.exml", + "resource/eui_skins/web/setup/SetUpDrugsSkin.exml", + "resource/eui_skins/web/setup/SetUpItemSkin.exml", + "resource/eui_skins/web/setup/SetUpListItemSkin.exml", + "resource/eui_skins/web/setup/SetUpProtectSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleSkin.exml", + "resource/eui_skins/web/setup/SetUpSkin.exml", + "resource/eui_skins/web/setup/SetUpSystemSkin.exml?v=1.1", + "resource/eui_skins/web/shop/ShopBatchBuySkin.exml", + "resource/eui_skins/web/shop/ShopHotViewSkin.exml", + "resource/eui_skins/web/shop/ShopItemViewSkin.exml", + "resource/eui_skins/web/shop/ShopQQViewSkin.exml", + "resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml", + "resource/eui_skins/web/shop/ShopViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml", + "resource/eui_skins/web/task/MainTaskButtonSkin.exml", + "resource/eui_skins/web/task/MainTaskItemSkin.exml", + "resource/eui_skins/web/task/MainTaskWinSkin.exml", + "resource/eui_skins/web/task/TaskInfoWinSkin.exml", + "resource/eui_skins/web/task/TaskInfoWinSkin2.exml", + "resource/eui_skins/web/team/TeamAddViewSkin.exml", + "resource/eui_skins/web/team/TeamCommonItemSkin.exml", + "resource/eui_skins/web/team/TeamHederSkin.exml", + "resource/eui_skins/web/team/TeamMainItemViewSkin.exml", + "resource/eui_skins/web/team/TeamMainViewSkin.exml", + "resource/eui_skins/web/team/TeamQQItemSkin.exml", + "resource/eui_skins/web/team/TeamViewPageSkin.exml", + "resource/eui_skins/web/team/TeamViewSkin.exml", + "resource/eui_skins/web/timing/ActivityTimingSkin1.exml", + "resource/eui_skins/web/timing/ActivityTimingSkin2.exml", + "resource/eui_skins/web/tips/TipsActorSkin.exml", + "resource/eui_skins/web/tips/TipsAttrItemSkin.exml", + "resource/eui_skins/web/tips/TipsBossRefreshSkin.exml", + "resource/eui_skins/web/tips/TipsBuffSkin.exml", + "resource/eui_skins/web/tips/TipsDropSkin.exml", + "resource/eui_skins/web/tips/TipsEquipContrastSkin.exml", + "resource/eui_skins/web/tips/TipsEquipFashionSKin.exml", + "resource/eui_skins/web/tips/TipsEquipSKin.exml", + "resource/eui_skins/web/tips/TipsGoodEquipSkin.exml", + "resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml", + "resource/eui_skins/web/tips/TipsLookRewardsSkin.exml", + "resource/eui_skins/web/tips/TipsMoneySKin.exml", + "resource/eui_skins/web/tips/TipsOfflineRewardItemSkin.exml", + "resource/eui_skins/web/tips/TipsOfflineRewardViewSkin.exml", + "resource/eui_skins/web/tips/TipsRoleMagicWaoponAttrSkin.exml", + "resource/eui_skins/web/tips/TipsSkillDescSKin.exml", + "resource/eui_skins/web/tips/TipsSkin.exml", + "resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml", + "resource/eui_skins/web/tips/TipsStarLevelSkin.exml", + "resource/eui_skins/web/tips/TipsUseItemViewSkin.exml", + "resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml", + "resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml", + "resource/eui_skins/web/UIView2Skin.exml", + "resource/eui_skins/web/useItem/UseBossBoxSkin.exml", + "resource/eui_skins/web/violentState/ViolentStateWinSkin.exml", + "resource/eui_skins/web/vip/VipGaimItemWinSKin.exml", + "resource/eui_skins/web/vip/VipItemBigIconSkin.exml", + "resource/eui_skins/web/vip/VipItemSkin.exml", + "resource/eui_skins/web/vip/VipViewSkin.exml", + "resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml", + "resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml", + "resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml", + "resource/eui_skins/web/worship/WorshipItemSkin.exml", + "resource/eui_skins/web/worship/WorshipWinSkin.exml", + "resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml" + ], + "path": "resource/default.thm.json?v=1.1" +} \ No newline at end of file diff --git a/resource_Publish/3 b/resource_Publish/3 new file mode 100644 index 0000000..5281a23 --- /dev/null +++ b/resource_Publish/3 @@ -0,0 +1,4495 @@ +{ + "groups":[ + { + "keys":"attrTips_json,common_json,mapmini_png,mainphone_json,scroll_json,buff_json,hp_fnt_fnt,chat_json,itemIcon_json,title_json,huanying_bg_1_png,huanying_bg_2_png,huanying_bg_3_png,huanying_bg_4_png,npc_welcome_mp3", + "name":"preload" + }, + { + "keys":"Login_json,LOGO_png,SelectServer_json", + "name":"login" + } + ], + "resources":[ + { + "name":"checkbox_select_disabled_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_disabled.png" + }, + { + "name":"checkbox_select_down_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_down.png" + }, + { + "name":"checkbox_select_up_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_up.png" + }, + { + "name":"checkbox_unselect_png", + "type":"image", + "url":"assets/CheckBox/checkbox_unselect.png" + }, + { + "name":"selected_png", + "type":"image", + "url":"assets/ItemRenderer/selected.png" + }, + { + "name":"border_png", + "type":"image", + "url":"assets/Panel/border.png" + }, + { + "name":"header_png", + "type":"image", + "url":"assets/Panel/header.png" + }, + { + "name":"radiobutton_select_disabled_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_disabled.png" + }, + { + "name":"radiobutton_select_down_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_down.png" + }, + { + "name":"radiobutton_select_up_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_up.png" + }, + { + "name":"radiobutton_unselect_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_unselect.png" + }, + { + "name":"roundthumb_png", + "type":"image", + "url":"assets/ScrollBar/roundthumb.png" + }, + { + "name":"thumb_png", + "type":"image", + "url":"assets/Slider/thumb.png" + }, + { + "name":"track_png", + "type":"image", + "url":"assets/Slider/track.png" + }, + { + "name":"tracklight_png", + "type":"image", + "url":"assets/Slider/tracklight.png" + }, + { + "name":"handle_png", + "type":"image", + "url":"assets/ToggleSwitch/handle.png" + }, + { + "name":"off_png", + "type":"image", + "url":"assets/ToggleSwitch/off.png" + }, + { + "name":"on_png", + "type":"image", + "url":"assets/ToggleSwitch/on.png" + }, + { + "name":"button_down_png", + "type":"image", + "url":"assets/Button/button_down.png" + }, + { + "name":"button_up_png", + "type":"image", + "url":"assets/Button/button_up.png" + }, + { + "name":"thumb_pb_png", + "type":"image", + "url":"assets/ProgressBar/thumb_pb.png" + }, + { + "name":"track_pb_png", + "type":"image", + "url":"assets/ProgressBar/track_pb.png" + }, + { + "name":"track_sb_png", + "type":"image", + "url":"assets/ScrollBar/track_sb.png" + }, + { + "name":"bg_jpg", + "type":"image", + "url":"assets/bg.jpg" + }, + { + "name":"egret_icon_png", + "type":"image", + "url":"assets/egret_icon.png" + }, + { + "name":"blood_json", + "subkeys":"blood_chaowan,boolBg,boolGreen,boolRed,boolyel", + "type":"sheet", + "url":"assets/image/public/blood.json" + }, + { + "name":"common_json", + "subkeys":"9s_bg_1,9s_bg_2,9s_bg_3,9s_dating_tipsbg,9s_tipsbg,9s_tipsk,apay_gou,apay_tab_1,apay_tab_2,apay_tab_bg,apay_x2,apay_yilingqu,bag_equipbg,bag_equipk,bag_fanye_1,bag_fanye_2,bag_fanye_3,bag_fanye_bg,bag_fengexian,bag_jia,bag_piliangbg_0,bag_piliangbg_1,bag_piliangbg_2,bag_piliangbg_3,bag_piliangbg_4,bag_piliangbg_5,bagbtn_1,bagbtn_2,bagfy_xian,bg_jianbian1,bg_jianbian2,bg_quyu_1,bg_quyu_2,bg_shuzi_1,bg_sixiang_2,bg_sixiang_3,biaoti_bg,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,btn_apay,btn_apay2,btn_fanhui,btn_fanhui2,btn_guanbi,btn_guanbi2,btn_guanbi3,btn_guanbi4,btn_hs,btn_ssck,btn_yjhs,chat_bg_bg2,chat_button_lt,chat_fasongjiantou,chat_ltk_0,chat_ltk_1,chat_ltk_3,chat_ltk_you,chat_ltk_zuo,chat_shangjiantou,chat_yeqian_liaotian1,chat_yeqian_liaotian2,com_bg_kuang_3,com_bg_kuang_xian1,com_bg_kuang_xian2,com_bg_kuang_xian3,com_btn_xiala1,com_btn_xiala2,com_fengexian,com_gou_1,com_gou_2,com_icon_bg1,com_icon_bg2,com_jia,com_jiabg,com_jiajia,com_jian,com_jianjian,com_jiantoux2,com_jiantoux3,com_latiao_bg,com_latiao_yuan,com_ljt_1,com_ljt_2,com_yeqian_3,com_yeqian_4,com_yeqian_5,com_yeqian_6,com_yeqian_7,com_yizhuangbei,com_yuan_hong,com_yuan_kong,common__tjgz,common_btn_15,common_btn_16,common_ckxx,common_jhmdl,common_liebiaoding_bg,common_liebiaoding_fenge,common_liebiaoxuanzhong,common_lock,common_qxgz,common_schy,common_shmd,common_sl,common_slider_bg,common_slider_t,common_sqrd,common_sy,common_syy,common_tjhy,common_xx,common_xx_bg,common_xyy,common_yeqian_5,common_yeqian_6,common_yqzd,dikuang,icon_bangding,icon_jinbi,icon_quan,icon_yinliang,icon_yuanbao,icontype_1,icontype_2,kf_kftz_btn,kuaijielan2,kuaijielanBg,liaotianpaopao,m_lst_dian,m_lst_xian,name_touxiangk,npc_lingxing,num_bbj,num_bj,num_shihua,pmd_bg1,pmd_bg2,renwubg1,renwubg2,rule_bg,rule_biaotibg,rule_btn,shuxinghuadong_1,shuxinghuadong_2,t_b_xuanfu,t_sz_bh,t_sz_gj,t_sz_hs,t_sz_jc,t_sz_wp,t_sz_xt,t_sz_yp,tab_01_1,tab_01_2,tab_01_3,tips_btn,tips_btn1,yeqian_1,yeqian_2,zjmgonggaobg", + "type":"sheet", + "url":"assets/common/common.json" + }, + { + "name":"role_json", + "subkeys":"Godturn_bg2,Godturn_cionbg_1,Godturn_cionbg_2,Godturn_cionbg_3,Godturn_cionbg_4,Godturn_iconk,Godturn_jh_0,Godturn_jh_1,Godturn_jh_10,Godturn_jh_2,Godturn_jh_3,Godturn_jh_4,Godturn_jh_5,Godturn_jh_6,Godturn_jh_7,Godturn_jh_8,Godturn_jh_9,Godturn_jh_jh,Godturn_jh_wjh,anjian_1,anjian_2,anjian_3,anjian_4,anjian_5,anjian_6,anjian_bg,anjian_btn,anjian_e,anjian_guang,anjian_q,anjian_qingkong,anjian_queding,anjian_r,anjian_skillk,anjian_sz,anjian_t,anjian_w,anjian_y,arm_0,arm_1,arm_2,bg_jineng_1,bg_jineng_2,bg_neigongzb1,blessing_bg2,blessing_bglz,blessing_jdbg,blessing_jdt,blessing_jdt1,blessing_taiyan,blessing_taiyan1,blessing_tubiao,blessing_xingxing,blessing_xingxing1,blessing_yueliang,blessing_yueliang1,btn_chongwu_icon,btn_chongwu_icon2,btn_dz_qh,btn_guanzhi,btn_jineng_1,btn_jineng_2,btn_jn_bh,btn_jn_bh2,btn_jn_ty,btn_jn_ty2,btn_jn_zy,btn_jn_zy2,btn_js_ch,btn_js_ch2,btn_js_shiz,btn_js_shiz2,btn_js_sx,btn_js_sx2,btn_js_sz,btn_js_sz2,btn_js_zb,btn_js_zb2,btn_js_zf,btn_js_zf2,btn_js_zj,btn_js_zj2,btn_neigong,btn_neigong2,btn_ngbs,btn_shenmo,btn_shenmo2,btn_shuxing_1,btn_shuxing_2,btn_shuxing_bg,ch_bg,ch_zsz,gz_zw_0,gz_zw_1,gz_zw_10,gz_zw_11,gz_zw_12,gz_zw_13,gz_zw_14,gz_zw_15,gz_zw_16,gz_zw_17,gz_zw_18,gz_zw_19,gz_zw_2,gz_zw_20,gz_zw_21,gz_zw_22,gz_zw_23,gz_zw_24,gz_zw_25,gz_zw_26,gz_zw_27,gz_zw_28,gz_zw_3,gz_zw_4,gz_zw_5,gz_zw_6,gz_zw_7,gz_zw_8,gz_zw_9,icon_guanzhi,icon_neigong,ng_t_neigong,qh_huoqu,qh_icon_bg,qh_icon_huwan,qh_icon_huwan2,qh_icon_jiezhi,qh_icon_jiezhi2,qh_icon_toukui,qh_icon_toukui2,qh_icon_wuqi,qh_icon_wuqi2,qh_icon_xianglian,qh_icon_xianglian2,qh_icon_xiezi,qh_icon_xiezi2,qh_icon_xz,qh_icon_yaodai,qh_icon_yaodai2,qh_icon_yifu,qh_icon_yifu2,qh_jiantou,qh_sxbg,qh_t_huwan,qh_t_jiezhi,qh_t_toukui,qh_t_wuqi,qh_t_xianglian,qh_t_xiezi,qh_t_yaodai,qh_t_yifu,role_bh_mc1,role_bh_mc2,role_bh_mc3,role_bh_mc4,role_k2,role_sx_bg2,role_sx_btn1,role_sx_btn2,role_sx_btnsx,role_sx_btnzt,role_tab1,role_tab2,role_tab3,role_tab4,role_tab_bw1,role_tab_bw2,role_tab_jn1,role_tab_jn2,role_tab_js1,role_tab_js2,role_tab_qh1,role_tab_qh2,role_tab_sw1,role_tab_sw2,role_tab_zs1,role_tab_zs2,role_zt_bg,sz_bg_2,sz_bg_3,sz_btn,sz_btn_1,sz_btn_2,sz_btn_3,sz_btn_4,sz_btn_5,sz_btn_6,sz_chuandai,sz_tab_1,sz_tab_2,sz_tab_t1,sz_tab_t2,sz_tab_t3,sz_xuanzhong,t_neigongzb,t_neigongzb1,tab_ngzb,tab_ngzb1,tab_ngzbt01,tab_ngzbt02,tab_ngzbt11,tab_ngzbt12,transform_bg_shuxing,zj_1_1,zj_1_2,zj_1_3,zj_1_4,zj_2_1,zj_2_2,zj_2_3,zj_2_4,zj_3_1,zj_3_2,zj_3_3,zj_3_4,zj_4_1,zj_4_2,zj_4_3,zj_4_4,zj_5_1,zj_5_2,zj_5_3,zj_5_4", + "type":"sheet", + "url":"assets/role/role.json" + }, + { + "name":"wslxc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-5.mp3" + }, + { + "name":"wslxc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-1.mp3" + }, + { + "name":"xiee-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-5.mp3" + }, + { + "name":"xiee-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-1.mp3" + }, + { + "name":"heiseequ-4_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-4.mp3" + }, + { + "name":"heiseequ-2_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-2.mp3" + }, + { + "name":"xieshe-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-5.mp3" + }, + { + "name":"xieshe-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-1.mp3" + }, + { + "name":"fenchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-4.mp3" + }, + { + "name":"fenchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-2.mp3" + }, + { + "name":"shuyao-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shuyao-2.mp3" + }, + { + "name":"wslxc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-4.mp3" + }, + { + "name":"wslxc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-2.mp3" + }, + { + "name":"xiee-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-4.mp3" + }, + { + "name":"xiee-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-2.mp3" + }, + { + "name":"heiseequ-5_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-5.mp3" + }, + { + "name":"heiseequ-1_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-1.mp3" + }, + { + "name":"xieshe-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-4.mp3" + }, + { + "name":"xieshe-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-2.mp3" + }, + { + "name":"fenchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-5.mp3" + }, + { + "name":"fenchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-1.mp3" + }, + { + "name":"nanshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nanshouji.mp3" + }, + { + "name":"yidong_mp3", + "type":"sound", + "url":"assets/sound/character/yidong.mp3" + }, + { + "name":"nvshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nvshouji.mp3" + }, + { + "name":"nansiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nansiwang.mp3" + }, + { + "name":"gongji_mp3", + "type":"sound", + "url":"assets/sound/character/gongji.mp3" + }, + { + "name":"nvsiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nvsiwang.mp3" + }, + { + "name":"shenshou-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-4.mp3" + }, + { + "name":"lu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-5.mp3" + }, + { + "name":"dpm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-4.mp3" + }, + { + "name":"dpm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-2.mp3" + }, + { + "name":"lu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-1.mp3" + }, + { + "name":"pttongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-5.mp3" + }, + { + "name":"pttongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-1.mp3" + }, + { + "name":"ying-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-4.mp3" + }, + { + "name":"dq-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-5.mp3" + }, + { + "name":"ying-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-2.mp3" + }, + { + "name":"hm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-4.mp3" + }, + { + "name":"hm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-2.mp3" + }, + { + "name":"dq-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-1.mp3" + }, + { + "name":"yang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-4.mp3" + }, + { + "name":"yang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-2.mp3" + }, + { + "name":"gumotongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-4.mp3" + }, + { + "name":"sdbianfu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-5.mp3" + }, + { + "name":"zmjz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-4.mp3" + }, + { + "name":"gumotongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-2.mp3" + }, + { + "name":"huo-2_mp3", + "type":"sound", + "url":"assets/sound/monster/huo-2.mp3" + }, + { + "name":"zmjz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-2.mp3" + }, + { + "name":"bf-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-5.mp3" + }, + { + "name":"bf-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-1.mp3" + }, + { + "name":"dcr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-5.mp3" + }, + { + "name":"qianchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-4.mp3" + }, + { + "name":"kl-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-4.mp3" + }, + { + "name":"dcr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-1.mp3" + }, + { + "name":"qianchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-2.mp3" + }, + { + "name":"kl-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-2.mp3" + }, + { + "name":"woma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-5.mp3" + }, + { + "name":"woma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-1.mp3" + }, + { + "name":"slxr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-5.mp3" + }, + { + "name":"shenshouz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-5.mp3" + }, + { + "name":"slxr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-1.mp3" + }, + { + "name":"shenshouz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-1.mp3" + }, + { + "name":"lang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-5.mp3" + }, + { + "name":"djs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-5.mp3" + }, + { + "name":"zumagjs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-4.mp3" + }, + { + "name":"zumagjs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-2.mp3" + }, + { + "name":"lang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-1.mp3" + }, + { + "name":"djs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-1.mp3" + }, + { + "name":"js-5_mp3", + "type":"sound", + "url":"assets/sound/monster/js-5.mp3" + }, + { + "name":"zuma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-4.mp3" + }, + { + "name":"zuma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-2.mp3" + }, + { + "name":"js-1_mp3", + "type":"sound", + "url":"assets/sound/monster/js-1.mp3" + }, + { + "name":"duojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-4.mp3" + }, + { + "name":"kjc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-5.mp3" + }, + { + "name":"duojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-2.mp3" + }, + { + "name":"wugong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-4.mp3" + }, + { + "name":"kjc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-1.mp3" + }, + { + "name":"wugong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-2.mp3" + }, + { + "name":"ji-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-4.mp3" + }, + { + "name":"banshouyongshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-5.mp3" + }, + { + "name":"ji-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-2.mp3" + }, + { + "name":"banshouyongshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-1.mp3" + }, + { + "name":"bosstongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-4.mp3" + }, + { + "name":"bosstongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-2.mp3" + }, + { + "name":"zztongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-4.mp3" + }, + { + "name":"zztongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-2.mp3" + }, + { + "name":"banshouzhanshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-4.mp3" + }, + { + "name":"banshouzhanshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-2.mp3" + }, + { + "name":"jxduojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-4.mp3" + }, + { + "name":"klss-2_mp3", + "type":"sound", + "url":"assets/sound/monster/klss-2.mp3" + }, + { + "name":"jxduojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-2.mp3" + }, + { + "name":"tiaotiaofeng-4_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-4.mp3" + }, + { + "name":"dzz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-4.mp3" + }, + { + "name":"tiaotiaofeng-2_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-2.mp3" + }, + { + "name":"dzz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-2.mp3" + }, + { + "name":"ruchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-4.mp3" + }, + { + "name":"yezhu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-5.mp3" + }, + { + "name":"hshs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-4.mp3" + }, + { + "name":"banshouren-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-4.mp3" + }, + { + "name":"hshs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-2.mp3" + }, + { + "name":"ruchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-2.mp3" + }, + { + "name":"banshouren-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-2.mp3" + }, + { + "name":"yezhu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-1.mp3" + }, + { + "name":"shiwang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-4.mp3" + }, + { + "name":"shiwang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-2.mp3" + }, + { + "name":"shenshou-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-5.mp3" + }, + { + "name":"shenshou-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-1.mp3" + }, + { + "name":"dpm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-5.mp3" + }, + { + "name":"lu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-4.mp3" + }, + { + "name":"lu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-2.mp3" + }, + { + "name":"dpm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-1.mp3" + }, + { + "name":"pttongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-4.mp3" + }, + { + "name":"pttongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-2.mp3" + }, + { + "name":"ying-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-5.mp3" + }, + { + "name":"hm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-5.mp3" + }, + { + "name":"dq-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-4.mp3" + }, + { + "name":"ying-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-1.mp3" + }, + { + "name":"dq-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-2.mp3" + }, + { + "name":"hm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-1.mp3" + }, + { + "name":"yang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-5.mp3" + }, + { + "name":"gumotongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-5.mp3" + }, + { + "name":"zmjz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-5.mp3" + }, + { + "name":"yang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-1.mp3" + }, + { + "name":"gumotongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-1.mp3" + }, + { + "name":"sdbianfu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-2.mp3" + }, + { + "name":"bf-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-4.mp3" + }, + { + "name":"zmjz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-1.mp3" + }, + { + "name":"bf-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-2.mp3" + }, + { + "name":"qianchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-5.mp3" + }, + { + "name":"dcr-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-4.mp3" + }, + { + "name":"kl-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-5.mp3" + }, + { + "name":"dcr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-2.mp3" + }, + { + "name":"qianchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-1.mp3" + }, + { + "name":"woma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-4.mp3" + }, + { + "name":"kl-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-1.mp3" + }, + { + "name":"woma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-2.mp3" + }, + { + "name":"shenshouz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-4.mp3" + }, + { + "name":"slxr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-2.mp3" + }, + { + "name":"shenshouz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-2.mp3" + }, + { + "name":"shenshouz-0_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-0.mp3" + }, + { + "name":"lang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-4.mp3" + }, + { + "name":"zumagjs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-5.mp3" + }, + { + "name":"djs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-4.mp3" + }, + { + "name":"lang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-2.mp3" + }, + { + "name":"djs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-2.mp3" + }, + { + "name":"zuma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-5.mp3" + }, + { + "name":"zumagjs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-1.mp3" + }, + { + "name":"js-4_mp3", + "type":"sound", + "url":"assets/sound/monster/js-4.mp3" + }, + { + "name":"duojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-5.mp3" + }, + { + "name":"js-2_mp3", + "type":"sound", + "url":"assets/sound/monster/js-2.mp3" + }, + { + "name":"zuma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-1.mp3" + }, + { + "name":"kjc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-4.mp3" + }, + { + "name":"wugong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-5.mp3" + }, + { + "name":"duojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-1.mp3" + }, + { + "name":"kjc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-2.mp3" + }, + { + "name":"ji-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-5.mp3" + }, + { + "name":"wugong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-1.mp3" + }, + { + "name":"banshouyongshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-4.mp3" + }, + { + "name":"ji-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-1.mp3" + }, + { + "name":"banshouyongshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-2.mp3" + }, + { + "name":"bosstongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-1.mp3" + }, + { + "name":"zztongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-5.mp3" + }, + { + "name":"banshouzhanshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-5.mp3" + }, + { + "name":"zztongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-1.mp3" + }, + { + "name":"banshouzhanshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-1.mp3" + }, + { + "name":"jxduojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-5.mp3" + }, + { + "name":"tiaotiaofeng-5_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-5.mp3" + }, + { + "name":"dian-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dian-2.mp3" + }, + { + "name":"dzz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-5.mp3" + }, + { + "name":"jxduojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-1.mp3" + }, + { + "name":"ruchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-5.mp3" + }, + { + "name":"hshs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-5.mp3" + }, + { + "name":"tiaotiaofeng-1_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-1.mp3" + }, + { + "name":"banshouren-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-5.mp3" + }, + { + "name":"yezhu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-4.mp3" + }, + { + "name":"dzz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-1.mp3" + }, + { + "name":"ruchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-1.mp3" + }, + { + "name":"hshs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-1.mp3" + }, + { + "name":"yezhu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-2.mp3" + }, + { + "name":"shiwang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-5.mp3" + }, + { + "name":"banshouren-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-1.mp3" + }, + { + "name":"shiwang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-1.mp3" + }, + { + "name":"dongxue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dongxue.mp3" + }, + { + "name":"fengmogu_mp3", + "type":"sound", + "url":"assets/sound/bgm/fengmogu.mp3" + }, + { + "name":"bairimen_mp3", + "type":"sound", + "url":"assets/sound/bgm/bairimen.mp3" + }, + { + "name":"shimu_mp3", + "type":"sound", + "url":"assets/sound/bgm/shimu.mp3" + }, + { + "name":"npc_welcome_mp3", + "type":"sound", + "url":"assets/sound/npc/npc_welcome.mp3" + }, + { + "name":"biqi_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi.mp3?v=1" + }, + { + "name":"biqi_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_1.mp3" + }, + { + "name":"biqi_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_2.mp3" + }, + { + "name":"biqi_3_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_3.mp3" + }, + { + "name":"huodong_mp3", + "type":"sound", + "url":"assets/sound/bgm/huodong.mp3" + }, + { + "name":"molongcheng_mp3", + "type":"sound", + "url":"assets/sound/bgm/molongcheng.mp3" + }, + { + "name":"fuben_mp3", + "type":"sound", + "url":"assets/sound/bgm/fuben.mp3" + }, + { + "name":"shabake_mp3", + "type":"sound", + "url":"assets/sound/bgm/shabake.mp3" + }, + { + "name":"dixue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dixue.mp3?v=1" + }, + { + "name":"denglu_mp3", + "type":"sound", + "url":"assets/sound/bgm/denglu.mp3" + }, + { + "name":"kuangdong_mp3", + "type":"sound", + "url":"assets/sound/bgm/kuangdong.mp3" + }, + { + "name":"zuma_mp3", + "type":"sound", + "url":"assets/sound/bgm/zuma.mp3" + }, + { + "name":"mengzhong_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong.mp3" + }, + { + "name":"mengzhong_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_1.mp3" + }, + { + "name":"mengzhong_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_2.mp3" + }, + { + "name":"scroll_json", + "subkeys":"bag_15,bag_16,bag_17,bag_18", + "type":"sheet", + "url":"assets/image/public/scroll.json" + }, + { + "name":"num_1_fnt", + "type":"font", + "url":"assets/image/public/num_1.fnt" + }, + { + "name":"anniu1_mp3", + "type":"sound", + "url":"assets/sound/other/anniu1.mp3" + }, + { + "name":"anniu2_mp3", + "type":"sound", + "url":"assets/sound/other/anniu2.mp3" + }, + { + "name":"anniu3_mp3", + "type":"sound", + "url":"assets/sound/other/anniu3.mp3" + }, + { + "name":"duanzao~1_mp3", + "type":"sound", + "url":"assets/sound/other/duanzao~1.mp3" + }, + { + "name":"heyao_mp3", + "type":"sound", + "url":"assets/sound/other/heyao.mp3" + }, + { + "name":"jinbizengjia_mp3", + "type":"sound", + "url":"assets/sound/other/jinbizengjia.mp3" + }, + { + "name":"shengji~1_mp3", + "type":"sound", + "url":"assets/sound/other/shengji~1.mp3" + }, + { + "name":"zhuangjiezhi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangjiezhi.mp3" + }, + { + "name":"zhuangsanjian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangsanjian.mp3" + }, + { + "name":"zhuangshouzhuo_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangshouzhuo.mp3" + }, + { + "name":"zhuangwuqi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangwuqi.mp3" + }, + { + "name":"zhuangxianglian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangxianglian.mp3" + }, + { + "name":"zhuangyifu_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangyifu.mp3" + }, + { + "name":"buff_json", + "subkeys":"buff_1,buff_10,buff_11,buff_12,buff_13,buff_14,buff_15,buff_16,buff_17,buff_18,buff_19,buff_2,buff_20,buff_21,buff_22,buff_23,buff_24,buff_25,buff_26,buff_27,buff_28,buff_29,buff_3,buff_30,buff_31,buff_32,buff_33,buff_34,buff_35,buff_36,buff_37,buff_38,buff_39,buff_4,buff_40,buff_41,buff_42,buff_43,buff_44,buff_45,buff_46,buff_47,buff_48,buff_49,buff_5,buff_50,buff_51,buff_52,buff_53,buff_54,buff_55,buff_56,buff_57,buff_58,buff_59,buff_6,buff_60,buff_61,buff_62,buff_63,buff_64,buff_65,buff_66,buff_67,buff_68,buff_69,buff_7,buff_70,buff_71,buff_8,buff_9,buff_zz1,buff_zz2", + "type":"sheet", + "url":"assets/common/buff.json" + }, + { + "name":"chat_json", + "subkeys":"bg_bg2,button_lt,button_lt2,button_lt3,chat_bqb_1,chat_bqb_10,chat_bqb_11,chat_bqb_12,chat_bqb_13,chat_bqb_14,chat_bqb_15,chat_bqb_16,chat_bqb_17,chat_bqb_18,chat_bqb_19,chat_bqb_2,chat_bqb_20,chat_bqb_21,chat_bqb_22,chat_bqb_23,chat_bqb_24,chat_bqb_25,chat_bqb_26,chat_bqb_27,chat_bqb_28,chat_bqb_29,chat_bqb_3,chat_bqb_30,chat_bqb_31,chat_bqb_32,chat_bqb_33,chat_bqb_34,chat_bqb_35,chat_bqb_36,chat_bqb_37,chat_bqb_38,chat_bqb_39,chat_bqb_4,chat_bqb_40,chat_bqb_41,chat_bqb_42,chat_bqb_43,chat_bqb_5,chat_bqb_6,chat_bqb_7,chat_bqb_8,chat_bqb_9,chat_bqbkuang,chat_ltbg,chat_t_10_1,chat_t_10_2,chat_t_11,chat_t_1_1,chat_t_1_2,chat_t_2_1,chat_t_2_2,chat_t_3_1,chat_t_3_2,chat_t_4_1,chat_t_4_2,chat_t_5_1,chat_t_5_2,chat_t_6_1,chat_t_6_2,chat_t_7,chat_t_8,chat_t_9,chat_tab_1,chat_tab_2,chat_tab_3,chat_tab_4,fasongjiantou,fasongjiantou2,lt_xitong,ltk_0,ltk_1,ltk_2,ltk_2+1,ltk_3,ltk_4,ltk_you,ltk_zuo,ltpb_bangzhu,ltpb_fj1,ltpb_fj2,ltpb_hh1,ltpb_hh2,ltpb_sl1,ltpb_sl2,shangjiantou,shangjiantou2,yeqian_liaotian1,yeqian_liaotian2", + "type":"sheet", + "url":"assets/chat/chat.json" + }, + { + "name":"select_png", + "type":"image", + "url":"assets/common/select.png" + }, + { + "name":"friend_json", + "subkeys":"fd_top_bg,fd_top_fenge,liebiaoxuanzhong,szys_1,szys_166,szys_2,szys_3,t_gxyq_fj1,t_gxyq_fj2,t_gxyq_gz1,t_gxyq_gz2,t_gxyq_hmd1,t_gxyq_hmd2,t_gxyq_hy1,t_gxyq_hy2,t_gxyq_qq1,t_gxyq_qq2,t_gxyq_zb1,t_gxyq_zb2", + "type":"sheet", + "url":"assets/friend/friend.json" + }, + { + "name":"mainphone_json", + "subkeys":"bq_bg2,bq_biaoti,bq_icon_1,bq_icon_2,bq_icon_3,bq_icon_5,btn_czcz,common_chengdian,common_hongdian,dialog_mask,exp_dian,gjbtn_fj,gjbtn_hy,gjbtn_sq,huanying_btn,huanying_x,icon_360dawanjia,icon_360shiming,icon_37fuli,icon_4366VIP,icon_7you_chaihongbao,icon_7you_fuli,icon_activity,icon_activity3,icon_activity4,icon_activity5,icon_activity6,icon_activity7,icon_activity8,icon_activity9,icon_aiqiyiQQqun,icon_bangdingyouli,icon_beibao,icon_bianqiang,icon_boss,icon_cangjingge,icon_chaowan,icon_chongzhi,icon_ciyuanshouling,icon_czzl,icon_daluandou,icon_dianfengkuanghuan,icon_dttq,icon_duanwujiajie,icon_duanzao,icon_fangchenmi,icon_fankui,icon_feixie,icon_fenxiangyouxi,icon_fulidating,icon_ganenjie,icon_gonggao,icon_guaji,icon_guanggunjie,icon_hanghui,icon_haoyou,icon_hecheng,icon_hfhuodong,icon_huanduwuyi,icon_huanzhenchong,icon_huidaoyuanfu,icon_huishou,icon_hytq,icon_jiaoyi,icon_jineng,icon_jingcaihuodong,icon_jishouhang,icon_juanxianbang,icon_juese,icon_kaifu1maogou,icon_kaifuhaoli,icon_kaifujingji,icon_kaifutouzi,icon_kaifuxunbao,icon_kaifuzhanchang,icon_ku25hezi,icon_kuafulingzhu,icon_kuafumobai,icon_kuafushacheng,icon_kuafushouling,icon_kuangbao,icon_ldsyxhz,icon_leijizaixian,icon_ludashilibao,icon_lztequan,icon_mafazhanling,icon_mijingdabao,icon_mingriyugao,icon_ptfl,icon_qqdating,icon_qufuxinxi,icon_rank,icon_rank2,icon_sanduanhutong,icon_sgyxdt,icon_sgzspf,icon_shacheng,icon_shachengdjs,icon_shengxiakuanghuan,icon_shengxing,icon_shezhi,icon_shouchong,icon_shoujilibao,icon_shuangshiqingdian,icon_shuangshiyi,icon_taotuoshilian,icon_taqingxunli,icon_wanshanziliao,icon_wanshengjie,icon_weiduanfuli,icon_womasan,icon_xilian,icon_xingyunxunbao,icon_xunbao,icon_yaodou_kefu,icon_youjian,icon_yyhy,icon_zaichong,icon_zhinengPK,icon_zhongqiujiajie,icon_zhoumohaoli,icon_zhounianqingdian,icon_zhufuguoqing,icon_zudui,m_bg,m_bg_zhuui1,m_bg_zhuui2,m_bg_zhuui3,m_btn_bg1,m_btn_bg2,m_btn_bg3,m_cw_gj,m_cw_gs,m_daojubg,m_didui,m_didui1,m_didui2,m_exp,m_expbg,m_exps,m_hanghui,m_hanghui1,m_hanghui2,m_heping,m_heping1,m_heping2,m_icon_shangcheng,m_job1,m_job2,m_job3,m_kuaijielan1,m_kuaijielan2,m_liaotianbg,m_lock_1,m_lock_2,m_m_lock_1,m_m_lock_2,m_m_lock_bg,m_m_lockname_bg,m_m_sd_xt_bg,m_m_sd_xt_k,m_map_k,m_map_k2,m_ms_bg1,m_ms_bg2,m_qiehuan,m_qiehuanbg,m_quanti,m_quanti1,m_quanti2,m_sj_dianchi1,m_sj_dianchi2,m_sj_wifi,m_sj_xinhao,m_skillbg1,m_skillbg2,m_skillbg3,m_skillgw,m_skillgw1,m_skillgw2,m_skillicon_ds1,m_skillicon_ds10,m_skillicon_ds11,m_skillicon_ds12,m_skillicon_ds2,m_skillicon_ds3,m_skillicon_ds4,m_skillicon_ds5,m_skillicon_ds6,m_skillicon_ds7,m_skillicon_ds8,m_skillicon_ds9,m_skillicon_fs1,m_skillicon_fs10,m_skillicon_fs11,m_skillicon_fs12,m_skillicon_fs13,m_skillicon_fs14,m_skillicon_fs2,m_skillicon_fs3,m_skillicon_fs4,m_skillicon_fs5,m_skillicon_fs6,m_skillicon_fs7,m_skillicon_fs8,m_skillicon_fs9,m_skillicon_ty1,m_skillicon_ty2,m_skillicon_zs1,m_skillicon_zs2,m_skillicon_zs3,m_skillicon_zs4,m_skillicon_zs5,m_skillicon_zs6,m_skillicon_zs7,m_skillicon_zs8,m_skillwj,m_skillwj1,m_skillwj2,m_skillwjgw,m_task_bg1,m_task_bg2,m_task_bg3,m_task_bgh,m_task_btn,m_task_btn3,m_task_btn_2,m_task_btn_2bg,m_task_duizhang,m_task_fengexian,m_task_hp1,m_task_hp2,m_task_hp2h,m_task_jiantou,m_task_k,m_task_xuanzhongkuang,m_task_yiwancheng,m_task_zy1,m_task_zy1h,m_task_zy2,m_task_zy2h,m_task_zy3,m_task_zy3h,m_twoyg1,m_twoyg1_1,m_twoyg2,m_twoyg4,m_twoyg5,m_yg1,m_yg2,m_yg3,m_yg4,m_yg5,m_zhenying,m_zhenying1,m_zhenying2,m_zudui,m_zudui1,m_zudui2,main_tuichu,main_zlb,map_boss,map_btn,map_dian_1,map_dian_10,map_dian_11,map_dian_2,map_dian_3,map_dian_4,map_dian_5,map_dian_6,map_dian_7,map_dian_8,map_dian_9,map_fangda,map_jiantou,map_k,map_my,map_target,map_xian,mp_m_lock_bg,mp_map_bg1,mp_map_bg2,mpa_way,name_1_0,name_1_1,name_2_0,name_2_1,name_3_0,name_3_1,name_bg,name_btn,name_icon_jb,name_icon_yb,open_bg,open_bg2,open_bt_1,open_bt_10,open_bt_11,open_bt_12,open_bt_13,open_bt_14,open_bt_15,open_bt_2,open_bt_3,open_bt_4,open_bt_5,open_bt_6,open_bt_7,open_bt_8,open_bt_9,open_btn,open_hdjl,sbss_tab_bg1,sbss_tab_bg2,sbss_tab_bg3,skillicon2_jz1,skillicon2_jz2,skillicon2_jz3,skillicon2_jz4,skillicon2_jz5,skillicon2_jz6,skillicon2_jz7,skillicon2_jz8,skillicon2_nz1,skillicon2_nz2,skillicon2_nz3,skillicon2_nz4,skillicon2_nz5,skillicon2_nz6,skillicon2_nz7,skillicon2_nz8,skillicon_ds1,skillicon_ds10,skillicon_ds12,skillicon_ds2,skillicon_ds3,skillicon_ds4,skillicon_ds5,skillicon_ds7,skillicon_ds8,skillicon_ds9,skillicon_fs10,skillicon_fs11,skillicon_fs13,skillicon_fs14,skillicon_fs2,skillicon_fs3,skillicon_fs4,skillicon_fs5,skillicon_fs6,skillicon_fs9,skillicon_ty10,skillicon_ty11,skillicon_ty2,skillicon_ty3,skillicon_ty4,skillicon_ty5,skillicon_ty6,skillicon_ty7,skillicon_ty8,skillicon_ty9,skillicon_zs1,skillicon_zs2,skillicon_zs3,skillicon_zs4,skillicon_zs5,skillicon_zs6,skillicon_zs7,skillicon_zs8,sx_num_p,task_rwjj,tips_man2,tips_man3,tips_man4,tips_man5,tips_man6,zjm_shan_haoyou,zjm_shan_jiaoyi,zjm_shan_youjian,zjm_shan_zhhh,zjm_shan_zhzd,zjm_shan_zudui,btn_shop,m_bg_zhuui1_1,m_bg_zhuui2_1,icon_cydzb", + "type":"sheet", + "url":"assets/phone/mainphone.json?v=1.4" + }, + { + "name":"rank_json", + "subkeys":"phb_tab_01,phb_tab_02,phb_tab_11,phb_tab_12,phb_tab_21,phb_tab_22,phb_tab_31,phb_tab_32,phb_tab_41,phb_tab_42,rank_bg2,rank_bg3,rank_bk,rank_ch1,rank_ch2,rank_ck,rank_cx,rank_cy,rank_lk,rank_lk1,rank_pm1,rank_pm2,rank_pm3,rank_tab1,rank_tab2,rank_zk", + "type":"sheet", + "url":"assets/rank/rank.json" + }, + { + "name":"team_json", + "subkeys":"t_zd_fjdw1,t_zd_fjdw2,t_zd_fjwj1,t_zd_fjwj2,t_zd_shenqingrudui,t_zd_tianjia,t_zd_tichuduiwu,t_zd_tuichuduiwu,t_zd_wddw1,t_zd_wddw2,t_zd_yaoqingrudui,t_zd_zxhy1,t_zd_zxhy2,team_bg,team_duizhang", + "type":"sheet", + "url":"assets/team/team.json" + }, + { + "name":"guild_json", + "subkeys":"guild_bg_biaoqian,guild_bg_guanlidating,guild_bg_hanghuidating,guild_bg_lashen,guild_bg_liangongfang,guild_bg_yishiting,guild_jingyantiao,guild_jingyantiao_bg,guild_jxbt,guild_jxfgx,guild_jxiconk,guild_lbbg1,guild_lbbg2,guild_lbbg3,guild_pm_1,guild_pm_2,guild_pm_3,guild_wenzizhuangshi", + "type":"sheet", + "url":"assets/guild/guild.json" + }, + { + "name":"dls-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-5.mp3" + }, + { + "name":"dls-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-1.mp3" + }, + { + "name":"dls-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-2.mp3" + }, + { + "name":"dls-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-4.mp3" + }, + { + "name":"itemIcon_json", + "subkeys":"10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,cangku_lock,equipd_0,equipd_1,equipd_10,equipd_11,equipd_12,equipd_13,equipd_14,equipd_15,equipd_16,equipd_17,equipd_18,equipd_19,equipd_2,equipd_3,equipd_4,equipd_5,equipd_6,equipd_7,equipd_8,equipd_9,orangePoint,quality_0,quality_1,quality_2,quality_3,quality_4,quality_5,quality_6,quality_huishou,quality_jipin,quality_lock,quality_sheng,redPoint,yan_1,yan_100,yan_101,yan_102,yan_103,yan_104,yan_105,yan_106,yan_107,yan_108,yan_109,yan_110,yan_111,yan_112,yan_113,yan_114,yan_115,yan_116,yan_117,yan_118,yan_119,yan_120,yan_121,yan_122,yan_123,yan_124,yan_125,yan_126,yan_127,yan_128,yan_129,yan_130,yan_131,yan_132,yan_133,yan_134,yan_135", + "type":"sheet", + "url":"assets/image/public/itemIcon.json" + }, + { + "name":"resurrection_json", + "subkeys":"revive_bg,revive_btn,revive_zz", + "type":"sheet", + "url":"assets/resurrection/resurrection.json" + }, + { + "name":"bosstongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-5.mp3" + }, + { + "name":"shop_json", + "subkeys":"shop_bg,shop_bg1,shop_bg_xian,shop_iconk,shop_jiaobiao,shop_rexiao,shop_xianshi,shop_yeqian_1,shop_yeqian_2,shop_yyb_bannert,shop_yyb_bannert2,shop_yybsc,shop_zhekou_1,shop_zhekou_2,shop_zhekou_3,shop_zhekou_4,shop_zhekou_5,shop_zhekou_6,shop_zhekou_7,shop_zhekou_8,shop_zhekou_9,shop_zhekou_bg", + "type":"sheet", + "url":"assets/shop/shop.json" + }, + { + "name":"forge_json", + "subkeys":"forge_bg,forge_bg2,forge_bg3,forge_bt1,forge_bt2,forge_bt3,forge_bt4,forge_btjt,forge_equip1,forge_equip2,forge_equipbg1,forge_equipbg2,forge_gou1,forge_gou2,forge_huode,forge_jiantou1,forge_jiantou2,forge_sxjt,forge_sxt,forge_t,forge_t1,forge_t2,forge_t3,forge_tab1,forge_tab2,forge_xlt,forge_xx1,forge_xx2,forge_xxbg,hc_tab_hc1,hc_tab_hc2,hc_tab_hs1,hc_tab_hs2,hecheng_bg1,hecheng_bg2,recovery_banner,recovery_bg,recovery_zs_1,recovery_zs_2,recovery_zs_3,recovery_zs_4,recovery_zs_5", + "type":"sheet", + "url":"assets/forge/forge.json" + }, + { + "name":"TradeLine_json", + "subkeys":"jishou_tab_buy1,jishou_tab_buy2,jishou_tab_isSell1,jishou_tab_isSell2,jishou_tab_receive1,jishou_tab_receive2,jishou_tab_sell1,jishou_tab_sell2,kbg_trade,trade_bg1,trade_chakan,trade_iconk,trade_mengban,trade_zt1,trade_zt2,trade_zt3", + "type":"sheet", + "url":"assets/TradeLine/TradeLine.json" + }, + { + "name":"bg_npc_png", + "type":"image", + "url":"assets/bg/bg_npc.png" + }, + { + "name":"bg_tipstc_png", + "type":"image", + "url":"assets/bg/bg_tipstc.png" + }, + { + "name":"chat_bg_bg1_png", + "type":"image", + "url":"assets/bg/chat_bg_bg1.png" + }, + { + "name":"chat_bg_bg2_png", + "type":"image", + "url":"assets/bg/chat_bg_bg2.png" + }, + { + "name":"chat_bg_tc1_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1.png" + }, + { + "name":"chat_bg_tc2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc2.png" + }, + { + "name":"com_bg_beibao_png", + "type":"image", + "url":"assets/bg/com_bg_beibao.png" + }, + { + "name":"com_bg_kuang_2_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_2.png" + }, + { + "name":"kbg_1_png", + "type":"image", + "url":"assets/bg/kbg_1.png" + }, + { + "name":"kbg_2_png", + "type":"image", + "url":"assets/bg/kbg_2.png" + }, + { + "name":"kbg_3_png", + "type":"image", + "url":"assets/bg/kbg_3.png" + }, + { + "name":"kbg_3_1_png", + "type":"image", + "url":"assets/bg/kbg_3_1.png" + }, + { + "name":"kbg_4_png", + "type":"image", + "url":"assets/bg/kbg_4.png" + }, + { + "name":"liebiaoding_bg_png", + "type":"image", + "url":"assets/bg/liebiaoding_bg.png" + }, + { + "name":"login_bg2_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg2.jpg" + }, + { + "name":"createRole_json", + "subkeys":"avatar_bg,create_btn_fanhui,login_btn,login_btn1,login_ds_1,login_ds_2,login_fs_1,login_fs_2,login_nan_1,login_nan_2,login_nv_1,login_nv_2,login_suiji,login_xuanzhong,login_zs_1,login_zs_2", + "type":"sheet", + "url":"assets/CreateRole/createRole.json" + }, + { + "name":"mail_json", + "subkeys":"mail_bg,mail_bx,mail_com,mail_tab_1,mail_tab_2,mail_xian", + "type":"sheet", + "url":"assets/mail/mail.json" + }, + { + "name":"meridians_json", + "subkeys":"Meridians_bg,Meridians_dian_1,Meridians_dian_2,Meridians_jie_0,Meridians_jie_1,Meridians_jie_10,Meridians_jie_11,Meridians_jie_2,Meridians_jie_3,Meridians_jie_4,Meridians_jie_5,Meridians_jie_6,Meridians_jie_7,Meridians_jie_8,Meridians_jie_9,Meridians_jie_bg1,Meridians_jie_bg2,Meridians_jie_ji,Meridians_jie_jie,Meridians_xian_1,Meridians_xian_2", + "type":"sheet", + "url":"assets/meridians/meridians.json" + }, + { + "name":"login_bg_jpg", + "type":"image", + "url":"assets/login/login_bg.jpg" + }, + { + "name":"LOGO_png", + "type":"image", + "url":"assets/login/LOGO.png" + }, + { + "name":"Login_json", + "subkeys":"Login_guanbi,login_jdt_k,login_jdt_t,login_wenzi1,login_wenzi2,login_wenzi3,login_wenzi4,login_wenzi5", + "type":"sheet", + "url":"assets/login/Login.json" + }, + { + "name":"chuangjian_mp3", + "type":"sound", + "url":"assets/sound/loading/chuangjian.mp3" + }, + { + "name":"dengdai_mp3", + "type":"sound", + "url":"assets/sound/loading/dengdai.mp3" + }, + { + "name":"kaimen_mp3", + "type":"sound", + "url":"assets/sound/loading/kaimen.mp3" + }, + { + "name":"xuanze_mp3", + "type":"sound", + "url":"assets/sound/loading/xuanze.mp3" + }, + { + "name":"activityCopies_json", + "subkeys":"Act_biaoti_1,Act_biaoti_2,Act_biaoti_cjxg,Act_biaoti_clfb,Act_biaoti_dcty,Act_biaoti_dxdb,Act_biaoti_jjdld,Act_biaoti_jjtgsj,Act_biaoti_sbkgc,Act_biaoti_scl,Act_biaoti_sjboss,Act_biaoti_sjjd,Act_biaoti_smdb,Act_biaoti_smsz,Act_biaoti_smsztz,Act_biaoti_yzwms,Act_biaoti_zsrw,Act_chakan,Act_dld_djs,Act_dld_icon,Act_dld_icon2,Act_dld_pmbt,Act_dld_pmmb,Act_gengduo,Act_hdk1,Act_jlyl,Act_jlyl_bg,Act_mobai_biaotibg,Act_pm_1,Act_pm_2,Act_pm_3,Avt_sjjd_bg2,Avt_sjjd_bg3,a,act_clfbt_1,act_clfbt_2,act_hdjj,act_icon1,act_icon10,act_icon11,act_icon12,act_icon13,act_icon14,act_icon15,act_icon16,act_icon2,act_icon3,act_icon4,act_icon5,act_icon6,act_icon7,act_icon8,act_icon9,act_tab1,act_tab2,act_tab3,act_tab4,act_tab_competitive1,act_tab_competitive2,act_tab_daily1,act_tab_daily2,act_tab_js1,act_tab_js2,act_tab_passion1,act_tab_passion2,act_tab_personal1,act_tab_personal2,act_zsrwt_1,actpm_tab_jf1,actpm_tab_jf2,actpm_tab_jl1,actpm_tab_jl2,actpm_tab_pm1,actpm_tab_pm2,y", + "type":"sheet", + "url":"assets/activityCopies/activityCopies.json" + }, + { + "name":"achievement_json", + "subkeys":"ach_bg1,ach_jiantou,ach_namebg,ach_sjtj,ach_sjxh,ach_xunzhangbg,ach_xzsj,ach_yidacheng,ach_zhuangshi", + "type":"sheet", + "url":"assets/achievement/achievement.json" + }, + { + "name":"shengji_mp3", + "type":"sound", + "url":"assets/sound/other/shengji.mp3" + }, + { + "name":"boss_json", + "subkeys":"boss_canyu,boss_diaoluo,boss_fengexian,boss_guishu,boss_gw_bg,boss_gw_bg2,boss_gw_bg3,boss_gw_jb,boss_gw_yb,boss_head_p_1_0,boss_head_p_1_1,boss_head_p_2_0,boss_head_p_2_1,boss_head_p_3_0,boss_head_p_3_1,boss_hp_1,boss_hp_2,boss_k_1,boss_k_2,boss_shoutong,boss_tab_Lord1,boss_tab_Lord2,boss_tab_classic1,boss_tab_classic2,boss_tab_jindi1,boss_tab_jindi2,boss_tab_reinstall1,boss_tab_reinstall2,boss_xinxi,boss_xuetiao_1,boss_xuetiao_bg,boss_yeqian_bg1,boss_yeqian_bg2,boss_yeqian_bg3,boss_yeqian_bg4,boss_yeqian_bg5,boss_yongdou,boss_zs_bg,bs_tq_1,bs_tq_2,bs_tq_3,bs_tq_4,bs_tq_5", + "type":"sheet", + "url":"assets/boss/boss.json" + }, + { + "name":"result_json", + "subkeys":"result_btn,result_lost,result_lost1,result_lost2,result_lost3,result_win,result_win1,result_win2", + "type":"sheet", + "url":"assets/result/result.json" + }, + { + "name":"Act_hdbg1_1_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_1.png" + }, + { + "name":"Act_hdbg1_jjdld_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png" + }, + { + "name":"Act_hdbg2_1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_1.png" + }, + { + "name":"Act_hdbg2_2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_2.png" + }, + { + "name":"Act_hdk2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdk2.png" + }, + { + "name":"Act_mobai_jsbg_png", + "type":"image", + "url":"assets/activityCopies/mobai/Act_mobai_jsbg.png" + }, + { + "name":"Act_hdbg2_smsz_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png" + }, + { + "name":"Act_hdbg2_sjjd_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png" + }, + { + "name":"Avt_sjjd_bg1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png" + }, + { + "name":"receive_fnt", + "type":"font", + "url":"assets/image/public/receive.fnt" + }, + { + "name":"Act_hdbg1_sbkgc_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png" + }, + { + "name":"Act_hdbg1_yzwms_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png" + }, + { + "name":"Act_hdbg2_cjxg_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png" + }, + { + "name":"Act_hdbg2_jjtgsj_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png" + }, + { + "name":"Act_hdbg2_scl_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_scl.png" + }, + { + "name":"Act_hdbg2_smdb_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png" + }, + { + "name":"monster_json", + "subkeys":"monhead30001,monhead30002,monhead30003,monhead30004,monhead30005,monhead30006,monhead30007,monhead30008,monhead30009,monhead30010,monhead30011,monhead30012,monhead30013,monhead30014,monhead30015,monhead30016,monhead30017,monhead30018,monhead30019,monhead30020,monhead30021,monhead30022,monhead30023,monhead30024,monhead30025,monhead30026,monhead30027,monhead30028,monhead30029,monhead30030,monhead30031,monhead30032,monhead30033,monhead30034,monhead30035,monhead30036,monhead30037,monhead30038,monhead30039,monhead30040,monhead30041,monhead30042,monhead30043,monhead30044,monhead30045,monhead30046,monhead30047,monhead30048,monhead30049,monhead30050,monhead30051,monhead30052,monhead30053,monhead30054,monhead30055,monhead30056,monhead30057,monhead30058,monhead30059,monhead30060,monhead30061,monhead30062,monhead30063,monhead30064,monhead30065,monhead30066,monhead30067,monhead30068,monhead30069,monhead30070,monhead30071,monhead30072,monhead30075,monhead30076,monhead30077,monhead30078,monhead30079,monhead30082,monhead30083,monhead30084,monhead30085,monhead30086,monhead30087,monhead30089,monhead30090,monhead30091,monhead30092,monhead30093,monhead30094,monhead30095,monhead30096,monhead30097,monhead30098,monhead30099,monhead30100,monhead30101,monhead30102,monhead30103,monhead30104,monhead30105,monhead30106,monhead30107,monhead30108,monhead30109,monhead30110,monhead30111,monhead30112,monhead30113,monhead30114,monhead30116,monhead30117,monhead30118,monhead30119,monhead30120,monhead30122,monhead30159,monhead30160,monhead30161,monhead30162,monhead30163,monhead30164,monhead30165,monhead30168,monhead30169,monhead30170,monhead30171,monhead30172,monhead30173,monhead30174,monhead30175,monhead30176,monhead30177,monhead30178,monhead30179,monhead30180,monhead30181,monhead30182,monhead30183,monhead30184", + "type":"sheet", + "url":"assets/image/monster/monster.json?v=1" + }, + { + "name":"m_bywd_1_mp3", + "type":"sound", + "url":"assets/sound/monster/m_bywd_1.mp3" + }, + { + "name":"m_ymcz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_ymcz_1.mp3" + }, + { + "name":"hair001_0_png", + "type":"image", + "url":"assets/image/model/hair/hair001_0.png" + }, + { + "name":"hair001_1_png", + "type":"image", + "url":"assets/image/model/hair/hair001_1.png" + }, + { + "name":"hair007_0_png", + "type":"image", + "url":"assets/image/model/hair/hair007_0.png" + }, + { + "name":"hair007_1_png", + "type":"image", + "url":"assets/image/model/hair/hair007_1.png" + }, + { + "name":"helmet_12000_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12000.png" + }, + { + "name":"helmet_12001_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12001.png" + }, + { + "name":"helmet_12002_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12002.png" + }, + { + "name":"helmet_12003_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12003.png" + }, + { + "name":"helmet_12004_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12004.png" + }, + { + "name":"helmet_12005_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12005.png" + }, + { + "name":"helmet_12006_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12006.png" + }, + { + "name":"helmet_12007_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12007.png" + }, + { + "name":"helmet_12008_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12008.png" + }, + { + "name":"helmet_12009_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12009.png" + }, + { + "name":"helmet_12010_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12010.png" + }, + { + "name":"helmet_12011_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12011.png" + }, + { + "name":"helmet_12012_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12012.png" + }, + { + "name":"helmet_12013_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12013.png" + }, + { + "name":"helmet_12014_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12014.png" + }, + { + "name":"helmet_13112_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13112.png" + }, + { + "name":"weapon_10000_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10000.png" + }, + { + "name":"weapon_10001_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10001.png" + }, + { + "name":"weapon_10002_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10002.png" + }, + { + "name":"weapon_10003_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10003.png" + }, + { + "name":"weapon_10004_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10004.png" + }, + { + "name":"weapon_10005_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10005.png" + }, + { + "name":"weapon_10006_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10006.png" + }, + { + "name":"weapon_10007_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10007.png" + }, + { + "name":"weapon_10008_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10008.png" + }, + { + "name":"weapon_10009_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10009.png" + }, + { + "name":"weapon_10010_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10010.png" + }, + { + "name":"weapon_10011_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10011.png" + }, + { + "name":"weapon_10012_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10012.png" + }, + { + "name":"weapon_10013_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10013.png" + }, + { + "name":"weapon_10014_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10014.png" + }, + { + "name":"weapon_10015_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10015.png" + }, + { + "name":"weapon_10016_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10016.png" + }, + { + "name":"weapon_10017_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10017.png" + }, + { + "name":"weapon_10018_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10018.png" + }, + { + "name":"weapon_10019_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10019.png" + }, + { + "name":"weapon_10020_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10020.png" + }, + { + "name":"weapon_10021_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10021.png" + }, + { + "name":"weapon_10022_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10022.png" + }, + { + "name":"weapon_10023_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10023.png" + }, + { + "name":"weapon_10024_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10024.png" + }, + { + "name":"weapon_10025_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10025.png" + }, + { + "name":"weapon_10026_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10026.png" + }, + { + "name":"weapon_10027_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10027.png" + }, + { + "name":"weapon_10028_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10028.png" + }, + { + "name":"weapon_10029_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10029.png" + }, + { + "name":"weapon_10030_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10030.png" + }, + { + "name":"weapon_10031_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10031.png" + }, + { + "name":"weapon_10032_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10032.png" + }, + { + "name":"weapon_10033_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10033.png" + }, + { + "name":"weapon_10034_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10034.png" + }, + { + "name":"weapon_10035_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10035.png" + }, + { + "name":"weapon_10036_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10036.png" + }, + { + "name":"weapon_10037_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10037.png" + }, + { + "name":"weapon_10038_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10038.png" + }, + { + "name":"weapon_10039_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10039.png" + }, + { + "name":"weapon_10040_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10040.png" + }, + { + "name":"weapon_10041_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10041.png" + }, + { + "name":"weapon_10042_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10042.png" + }, + { + "name":"weapon_10043_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10043.png" + }, + { + "name":"weapon_10044_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10044.png" + }, + { + "name":"weapon_10045_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10045.png" + }, + { + "name":"hp_fnt_fnt", + "type":"font", + "url":"assets/image/public/hp_fnt.fnt" + }, + { + "name":"chuansonglikai_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansonglikai.mp3" + }, + { + "name":"chuansongziji_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansongziji.mp3" + }, + { + "name":"m_bpx_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_1.mp3" + }, + { + "name":"m_bpx_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_3.mp3" + }, + { + "name":"m_csjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_csjs_1.mp3" + }, + { + "name":"m_dylg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_dylg_1.mp3" + }, + { + "name":"m_gsjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_gsjs_1.mp3" + }, + { + "name":"m_hbz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_1.mp3" + }, + { + "name":"m_hbz_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_2.mp3" + }, + { + "name":"m_hbz_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_3.mp3" + }, + { + "name":"m_hq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_1.mp3" + }, + { + "name":"m_hq_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_3.mp3" + }, + { + "name":"m_hqs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_1.mp3" + }, + { + "name":"m_hqs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_2.mp3" + }, + { + "name":"m_hqs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_3.mp3" + }, + { + "name":"m_jgdy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jgdy_3.mp3" + }, + { + "name":"m_jtyss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_1.mp3" + }, + { + "name":"m_jtyss_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_2.mp3" + }, + { + "name":"m_jtyss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_3.mp3" + }, + { + "name":"m_kjhh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_kjhh_1.mp3" + }, + { + "name":"m_lds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lds_3.mp3" + }, + { + "name":"m_lhhf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_1.mp3" + }, + { + "name":"m_lhhf_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_2.mp3" + }, + { + "name":"m_lhhf_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_3.mp3" + }, + { + "name":"m_lhjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhjf_1.mp3" + }, + { + "name":"m_lxhy_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_1.mp3" + }, + { + "name":"m_lxhy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_3.mp3" + }, + { + "name":"m_mfd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mfd_1.mp3" + }, + { + "name":"m_mth_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mth_3.mp3" + }, + { + "name":"m_qtzys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_qtzys_3.mp3" + }, + { + "name":"m_sds_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_1.mp3" + }, + { + "name":"m_sds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_3.mp3" + }, + { + "name":"m_sszjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_1.mp3" + }, + { + "name":"m_sszjs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_2.mp3" + }, + { + "name":"m_sszjs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_3.mp3" + }, + { + "name":"m_sxs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxs_3.mp3" + }, + { + "name":"m_sxyd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxyd_1.mp3" + }, + { + "name":"m_szh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_szh_1.mp3" + }, + { + "name":"m_wjzq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_wjzq_1.mp3" + }, + { + "name":"m_yhzg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_1.mp3" + }, + { + "name":"m_yhzg_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_3.mp3" + }, + { + "name":"m_yss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yss_1.mp3" + }, + { + "name":"m_zhkl_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_1.mp3" + }, + { + "name":"m_zhkl_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_3.mp3" + }, + { + "name":"m_zhss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_1.mp3" + }, + { + "name":"m_zhss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_3.mp3" + }, + { + "name":"m_zrjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zrjf_1.mp3" + }, + { + "name":"m_zys_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_1.mp3" + }, + { + "name":"m_zys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_3.mp3" + }, + + { + "name":"attack_male_mp3", + "type":"sound", + "url":"assets/sound/character/attack_male.mp3" + }, + { + "name":"attack_female_mp3", + "type":"sound", + "url":"assets/sound/character/attack_female.mp3" + }, + + { + "name":"dead_male_mp3", + "type":"sound", + "url":"assets/sound/character/dead_male.mp3" + }, + { + "name":"dead_female_mp3", + "type":"sound", + "url":"assets/sound/character/dead_female.mp3" + }, + + { + "name":"injure_male_mp3", + "type":"sound", + "url":"assets/sound/character/injure_male.mp3" + }, + { + "name":"injure_female_mp3", + "type":"sound", + "url":"assets/sound/character/injure_female.mp3" + }, + + { + "name":"task_complete_mp3", + "type":"sound", + "url":"assets/sound/character/task_complete.mp3" + }, + + { + "name":"Act_hdbg1_dcty_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png" + }, + { + "name":"load_Reel_png", + "type":"image", + "url":"assets/image/public/load_Reel.png" + }, + { + "name":"yingzi_png", + "type":"image", + "url":"assets/image/public/yingzi.png" + }, + { + "name":"Act_hdbg1_sjboss_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png" + }, + { + "name":"mapmini_png", + "type":"image", + "url":"assets/image/public/mapmini.png" + }, + { + "name":"actypay_json", + "subkeys":"apay_bannert_chfl,apay_biaoti_jchd,apay_biaoti_kftz,apay_time_bg,apay_yishouwan,biaoti_chongyangxianrui,biaoti_ganenjie,biaoti_guanggunjie,biaoti_shuangshiqingdian,biaoti_shuangshiyi,biaoti_wanshengjie,biaoti_zhongqiujiajie,biaoti_zhufuguoqing,festival_dw,festival_hd,festival_ql,festival_sx,festival_tq,festival_xiala,festival_zm,festival_zn,hfhd_wenzi", + "type":"sheet", + "url":"assets/actypay/actypay.json" + }, + { + "name":"firstcharge_json", + "subkeys":"fc_bg2,fc_btn_1,fc_btn_2,fc_p_2,fc_t3,fc_t4,fc_t5,fc_t6,fc_yilingqu,weapon_bottom_bg", + "type":"sheet", + "url":"assets/firstcharge/firstcharge.json" + }, + { + "name":"huanying_bg_1_png", + "type":"image", + "url":"assets/main/huanying_bg_1.png" + }, + { + "name":"huanying_bg_2_png", + "type":"image", + "url":"assets/main/huanying_bg_2.png" + }, + { + "name":"huanying_bg_3_png", + "type":"image", + "url":"assets/main/huanying_bg_3.png" + }, + { + "name":"huanying_bg_4_png", + "type":"image", + "url":"assets/main/huanying_bg_4.png" + }, + { + "name":"bq_bg1_png", + "type":"image", + "url":"assets/main/bq_bg1.png" + }, + { + "name":"open_bg_png", + "type":"image", + "url":"assets/main/open_bg.png" + }, + { + "name":"apay_bg_png", + "type":"image", + "url":"assets/bg/apay_bg.png" + }, + { + "name":"sixiang_json", + "subkeys":"jiejikuang,sx_icon_1,sx_icon_2,sx_icon_3,sx_icon_4,sx_jiantou,t_sx_0,t_sx_1,t_sx_10,t_sx_2,t_sx_3,t_sx_4,t_sx_5,t_sx_6,t_sx_7,t_sx_8,t_sx_9,t_sx_bai,t_sx_hu,t_sx_hun,t_sx_jie,t_sx_long,t_sx_qing,t_sx_que,t_sx_wu,t_sx_xing,t_sx_xuan,t_sx_zhi,t_sx_zhu,一,七,三,九,二,五,八,六,十,四,阶,零", + "type":"sheet", + "url":"assets/role/sixiang.json" + }, + { + "name":"sixiangfnt_fnt", + "type":"font", + "url":"assets/image/public/sixiangfnt.fnt" + }, + { + "name":"fl_jhm_bg_png", + "type":"image", + "url":"assets/fuli/fl_jhm_bg.png" + }, + { + "name":"qd_bg_png", + "type":"image", + "url":"assets/fuli/qd_bg.png" + }, + { + "name":"qr_bg_png", + "type":"image", + "url":"assets/fuli/qr_bg.png" + }, + { + "name":"wlelfare_json", + "subkeys":"biaoti_fuli,fl_jhm_btn_1,fl_jhm_btn_2,flqd_bg0,flqd_bg1,flqd_bg2,flqd_bg3,flqd_djqd,flqd_qd1,flqd_qd2,flqd_tab1,flqd_tab2,qd_t_1_0,qd_t_1_1,qd_t_1_2,qd_t_1_3,qd_t_1_4,qd_t_1_5,qd_t_1_6,qd_t_1_7,qd_t_1_8,qd_t_1_9,qd_t_2_0,qd_t_2_1,qd_t_2_2,qd_t_2_3,qd_t_2_4,qd_t_2_5,qd_t_2_6,qd_t_2_7,qd_t_2_8,qd_t_2_9,qd_t_3_1,qd_t_3_2,qd_t_3_3,qd_t_3_4,qd_t_3_5,qd_t_3_6,qd_t_3_7,qd_t_3_z,qd_t_jin,qd_t_leiji,qd_t_yue,qd_yeqian1,qd_yeqian2,qd_yiqiandao,qr_bg2,qr_p_1,qr_p_2,qr_p_3,qr_p_yilingqu,qr_t1_1,qr_t1_2,qr_t1_3,qr_t1_4,qr_t1_5,qr_t1_6,qr_t1_7,qr_t2_1,qr_t2_2,qr_t2_3,qr_t2_4,qr_t2_5,qr_t2_6,qr_t2_7,yk_30tian,yk_30tian2,yk_biaoqian_0,yk_biaoqian_1,yk_biaoqian_2,yk_biaoqian_3,yk_biaoqian_4,yk_btn,yk_dian,yk_icon1,yk_icon2,yk_icon3,yk_icon4,yqs_btn,yqs_wz", + "type":"sheet", + "url":"assets/fuli/wlelfare.json" + }, + { + "name":"signNum_1_fnt", + "type":"font", + "url":"assets/image/public/signNum_1.fnt" + }, + { + "name":"signNum_2_fnt", + "type":"font", + "url":"assets/image/public/signNum_2.fnt" + }, + { + "name":"signNum_3_fnt", + "type":"font", + "url":"assets/image/public/signNum_3.fnt" + }, + { + "name":"yk_bg_png", + "type":"image", + "url":"assets/fuli/yk_bg.png" + }, + { + "name":"openServer_json", + "subkeys":"biaoti_cangjingge,biaoti_kaifuhaoli,biaoti_kaifujingji,biaoti_xunbao,kf_jj_bqbg,kf_kftz_yb,kf_lb_bg2,kf_lb_jt1,kf_lb_jt2,kf_lb_k,kf_lb_k2,kf_lb_k3,kf_lb_p1,kf_lb_p2,kf_lb_p3,kf_lb_p4,kf_lb_p5,kf_lb_p6,kf_lb_t1,kf_lb_t2,kf_lb_t3,kf_lb_t4,kf_lb_t5,kf_lb_t6,kf_lb_yigoumai,kf_slcj,kf_xb_bg2,kf_xb_bg3,kf_xb_bt,kf_xb_bt2,kf_xb_p1,kf_xb_t1,kf_xb_t2,kf_xbbt,kf_xybt", + "type":"sheet", + "url":"assets/openServer/openServer.json" + }, + { + "name":"ring_json", + "subkeys":"btn_sj_1_d,btn_sj_1_u,btn_sj_2_d,btn_sj_2_u,btn_sj_3_d,btn_sj_3_u,btn_sj_4_d,btn_sj_4_u,btn_sj_5_d,btn_sj_5_u,btn_sj_6_d,btn_sj_6_u,icon_ring_1,icon_ring_2,icon_ring_3,icon_ring_4,icon_ring_xuanzhong,ring_jiantou_1,ring_jiantou_2,t_ring,t_ring2,t_ring3,t_ring4,t_ring5,t_ring6,t_ring7,tbg_ring", + "type":"sheet", + "url":"assets/ring/ring.json" + }, + { + "name":"title_json", + "subkeys":"ch_NPC2_001,ch_NPC2_002,ch_NPC2_003,ch_NPC2_004,ch_NPC2_005,ch_NPC2_006,ch_NPC2_007,ch_NPC2_008,ch_NPC2_009,ch_NPC2_010,ch_NPC2_011,ch_NPC2_012,ch_NPC2_013,ch_NPC2_014,ch_NPC2_015,ch_NPC2_016,ch_NPC2_017,ch_NPC2_018,ch_NPC2_019,ch_NPC3_001,ch_NPC3_002,ch_NPC3_003,ch_NPC3_004,ch_NPC3_005,ch_NPC3_006,ch_NPC3_007,ch_NPC3_008,ch_NPC3_009,ch_NPC3_010,ch_NPC3_011,ch_NPC3_012,ch_NPC3_013,ch_NPC3_014,ch_NPC3_015,ch_NPC3_016,ch_NPC3_017,ch_NPC3_018,ch_NPC3_019,ch_NPC3_020,ch_NPC3_021,ch_NPC3_022,ch_NPC3_023,ch_NPC3_024,ch_NPC3_025,ch_NPC3_026,ch_NPC3_027,ch_NPC3_028,ch_NPC3_029,ch_NPC3_030,ch_NPC3_031,ch_NPC3_032,ch_NPC3_033,ch_NPC3_034,ch_NPC3_035,ch_NPC3_036,ch_NPC3_037,ch_NPC3_038,ch_NPC3_039,ch_NPC3_040,ch_NPC3_041,ch_NPC3_042,ch_NPC3_043,ch_NPC3_044,ch_NPC3_045,ch_NPC_001,ch_NPC_002,ch_NPC_003,ch_NPC_004,ch_NPC_005,ch_NPC_006,ch_NPC_007,ch_NPC_008,ch_NPC_009,ch_NPC_010,ch_NPC_011,ch_NPC_012,ch_NPC_013,ch_NPC_014,ch_NPC_015,ch_NPC_016,ch_NPC_017,ch_NPC_018,ch_NPC_019,ch_NPC_020,ch_NPC_021,ch_show_001,ch_show_0010,ch_show_0011,ch_show_0012,ch_show_0013,ch_show_0014,ch_show_0015,ch_show_0016,ch_show_0017,ch_show_0018,ch_show_0019,ch_show_002,ch_show_0020,ch_show_0021,ch_show_0022,ch_show_0023,ch_show_0024,ch_show_0025,ch_show_0026,ch_show_0027,ch_show_0028,ch_show_0029,ch_show_003,ch_show_0030,ch_show_0031,ch_show_0032,ch_show_0033,ch_show_0034,ch_show_0035,ch_show_0036,ch_show_0037,ch_show_0038,ch_show_0039,ch_show_004,ch_show_0040,ch_show_0041,ch_show_0042,ch_show_0043,ch_show_0044,ch_show_0045,ch_show_0046,ch_show_0047,ch_show_0048,ch_show_0049,ch_show_005,ch_show_0050,ch_show_0051,ch_show_0052,ch_show_0053,ch_show_0054,ch_show_0055,ch_show_0056,ch_show_0057,ch_show_0058,ch_show_0059,ch_show_006,ch_show_0060,ch_show_0061,ch_show_0062,ch_show_0063,ch_show_0064,ch_show_0065,ch_show_0066,ch_show_0067,ch_show_0068,ch_show_0069,ch_show_007,ch_show_0070,ch_show_0071,ch_show_0072,ch_show_0073,ch_show_0074,ch_show_0075,ch_show_0076,ch_show_0077,ch_show_0078,ch_show_0079,ch_show_008,ch_show_009,rage_ch,rw_sign_1,rw_sign_2", + "type":"sheet", + "url":"assets/image/title/title.json" + }, + { + "name":"kf_lb_bg1_png", + "type":"image", + "url":"assets/openServer/kf_lb_bg1.png" + }, + { + "name":"kf_xb_bg_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg.png" + }, + { + "name":"fcm_bg_png", + "type":"image", + "url":"assets/bg/fcm_bg.png" + }, + { + "name":"war_json", + "subkeys":"zl_bgk1,zl_biaoti,zl_btn_chakan,zl_hd_1,zl_hd_2,zl_hd_3,zl_hd_4,zl_iconk,zl_iconzw,zl_p_1,zl_p_2,zl_p_3,zl_pzp2,zl_t_yihuode,zl_t_yiwancheng,zl_weijihuo,zl_xian_1,zl_xian_2", + "type":"sheet", + "url":"assets/war/war.json" + }, + { + "name":"zl_bg_png", + "type":"image", + "url":"assets/war/zl_bg.png" + }, + { + "name":"Act_hdbg2_clfb_png", + "type":"image", + "url":"assets/activityCopies/activity12/Act_hdbg2_clfb.png" + }, + { + "name":"act_clfbbg_0_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_0.png" + }, + { + "name":"act_clfbbg_1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_1.png" + }, + { + "name":"act_clfbbg_2_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_2.png" + }, + { + "name":"act_clfbbg_3_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_3.png" + }, + { + "name":"act_clfbbg_4_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_4.png" + }, + { + "name":"activity12_json", + "subkeys":"act_clfbbg", + "type":"sheet", + "url":"assets/activityCopies/activity12/activity12.json" + }, + { + "name":"Act_hdbg2_zsrw_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png" + }, + { + "name":"act_zsrwbg1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_zsrwbg1.png" + }, + { + "name":"YYLobby_json", + "subkeys":"CW_banner,CW_bg,CW_bt,CW_t1,CW_t2,CW_t3,WX_bt,YY_banner,YY_banner2,YY_bg4,YY_bg5,YY_bt,YY_bt1,YY_btn_ljkt,YY_btn_ljlq,YY_btn_ljlq2,YY_hongxian,YY_t_hy0,YY_t_hy1,YY_t_hy2,YY_t_hy3,YY_t_hy4,YY_t_hy5,YY_t_hy6,YY_t_hy7,YY_t_hy8,YY_t_hy9,YY_t_hydj,YY_t_ljxz,YY_t_wkt,YY_t_xslb,YY_tab1,YY_tab2,kf_fanye_rcfl1,kf_fanye_rcfl2,kf_fanye_xfhl1,kf_fanye_xfhl2,logo_chaowan", + "type":"sheet", + "url":"assets/YY/YYLobby.json" + }, + { + "name":"YY_bg_png", + "type":"image", + "url":"assets/YY/YY_bg.png" + }, + { + "name":"YY_bg3_png", + "type":"image", + "url":"assets/YY/YY_bg3.png" + }, + { + "name":"YY_bg2_png", + "type":"image", + "url":"assets/YY/YY_bg2.png" + }, + { + "name":"YY_bg6_png", + "type":"image", + "url":"assets/YY/YY_bg6.png" + }, + { + "name":"wx_bg_png", + "type":"image", + "url":"assets/YY/wx_bg.png" + }, + { + "name":"getProps_json", + "subkeys":"get_bg,get_bg2,get_bg3,get_icon_1,get_icon_10,get_icon_11,get_icon_12,get_icon_13,get_icon_2,get_icon_3,get_icon_4,get_icon_5,get_icon_6,get_icon_7,get_icon_8,get_icon_9,get_jj1,get_jj2,get_tj", + "type":"sheet", + "url":"assets/getProps/getProps.json" + }, + { + "name":"sczhiyin_png", + "type":"image", + "url":"assets/main/sczhiyin.png" + }, + { + "name":"Timing_json", + "subkeys":"timing_bg1,timing_bg2,timing_btn,timing_tsjl", + "type":"sheet", + "url":"assets/timing/Timing.json" + }, + { + "name":"vip_json", + "subkeys":"biaoti_hytq,tq_bg4,tq_bg5,tq_btn,tq_btn1,tq_btnt1,tq_btnt10,tq_btnt11,tq_btnt12,tq_btnt13,tq_btnt14,tq_btnt14_2,tq_btnt14_3,tq_btnt14_4,tq_btnt14_5,tq_btnt15,tq_btnt16,tq_btnt2,tq_btnt3,tq_btnt4,tq_btnt5,tq_btnt6,tq_btnt6_1,tq_btnt7,tq_btnt8,tq_btnt9,tq_icon_0,tq_icon_1,tq_icon_2,tq_icon_3,tq_icon_4,tq_icon_5,tq_icon_6,tq_icon_7,tq_jdt,tq_jdtk,tq_jlt1,tq_jlt2,tq_jlt3,tq_jlt4,tq_jlt5,tq_jlt6,tq_jlt7,tq_lb_jt1,tq_lb_jt2,tq_sf_f,tq_sf_s,tq_tab1,tq_tab2,tq_tabbg1,tq_tabbg2,tq_top_fenge,tq_zxhl", + "type":"sheet", + "url":"assets/vip/vip.json" + }, + { + "name":"levelnumber_fnt", + "type":"font", + "url":"assets/common/levelnumber.fnt" + }, + { + "name":"weapon_13296_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13296.png" + }, + { + "name":"weapon_13317_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13317.png" + }, + { + "name":"weapon_13318_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13318.png" + }, + { + "name":"skillbg2_png", + "type":"image", + "url":"assets/bg/skillbg2.png" + }, + { + "name":"body012_0_png", + "type":"image", + "url":"assets/image/model/body/body012_0.png" + }, + { + "name":"body012_1_png", + "type":"image", + "url":"assets/image/model/body/body012_1.png" + }, + { + "name":"body013_0_png", + "type":"image", + "url":"assets/image/model/body/body013_0.png" + }, + { + "name":"body013_1_png", + "type":"image", + "url":"assets/image/model/body/body013_1.png" + }, + { + "name":"body014_0_png", + "type":"image", + "url":"assets/image/model/body/body014_0.png" + }, + { + "name":"body014_1_png", + "type":"image", + "url":"assets/image/model/body/body014_1.png" + }, + { + "name":"body015_0_png", + "type":"image", + "url":"assets/image/model/body/body015_0.png" + }, + { + "name":"body020_0_png", + "type":"image", + "url":"assets/image/model/body/body020_0.png" + }, + { + "name":"body015_1_png", + "type":"image", + "url":"assets/image/model/body/body015_1.png" + }, + { + "name":"body011_1_png", + "type":"image", + "url":"assets/image/model/body/body011_1.png" + }, + { + "name":"body021_0_png", + "type":"image", + "url":"assets/image/model/body/body021_0.png" + }, + { + "name":"body021_1_png", + "type":"image", + "url":"assets/image/model/body/body021_1.png" + }, + { + "name":"body022_1_png", + "type":"image", + "url":"assets/image/model/body/body022_1.png" + }, + { + "name":"body023_0_png", + "type":"image", + "url":"assets/image/model/body/body023_0.png" + }, + { + "name":"body023_1_png", + "type":"image", + "url":"assets/image/model/body/body023_1.png" + }, + { + "name":"body022_0_png", + "type":"image", + "url":"assets/image/model/body/body022_0.png" + }, + { + "name":"body024_0_png", + "type":"image", + "url":"assets/image/model/body/body024_0.png" + }, + { + "name":"body027_0_png", + "type":"image", + "url":"assets/image/model/body/body027_0.png" + }, + { + "name":"body020_1_png", + "type":"image", + "url":"assets/image/model/body/body020_1.png" + }, + { + "name":"body027_1_png", + "type":"image", + "url":"assets/image/model/body/body027_1.png" + }, + { + "name":"body001_0_png", + "type":"image", + "url":"assets/image/model/body/body001_0.png" + }, + { + "name":"body001_1_png", + "type":"image", + "url":"assets/image/model/body/body001_1.png" + }, + { + "name":"body024_1_png", + "type":"image", + "url":"assets/image/model/body/body024_1.png" + }, + { + "name":"body002_1_png", + "type":"image", + "url":"assets/image/model/body/body002_1.png" + }, + { + "name":"body003_0_png", + "type":"image", + "url":"assets/image/model/body/body003_0.png" + }, + { + "name":"body004_0_png", + "type":"image", + "url":"assets/image/model/body/body004_0.png" + }, + { + "name":"body004_1_png", + "type":"image", + "url":"assets/image/model/body/body004_1.png" + }, + { + "name":"body005_0_png", + "type":"image", + "url":"assets/image/model/body/body005_0.png" + }, + { + "name":"body005_1_png", + "type":"image", + "url":"assets/image/model/body/body005_1.png" + }, + { + "name":"body006_0_png", + "type":"image", + "url":"assets/image/model/body/body006_0.png" + }, + { + "name":"body006_1_png", + "type":"image", + "url":"assets/image/model/body/body006_1.png" + }, + { + "name":"body007_0_png", + "type":"image", + "url":"assets/image/model/body/body007_0.png" + }, + { + "name":"body007_1_png", + "type":"image", + "url":"assets/image/model/body/body007_1.png" + }, + { + "name":"body008_0_png", + "type":"image", + "url":"assets/image/model/body/body008_0.png" + }, + { + "name":"body008_1_png", + "type":"image", + "url":"assets/image/model/body/body008_1.png" + }, + { + "name":"body009_0_png", + "type":"image", + "url":"assets/image/model/body/body009_0.png" + }, + { + "name":"body009_1_png", + "type":"image", + "url":"assets/image/model/body/body009_1.png" + }, + { + "name":"body010_0_png", + "type":"image", + "url":"assets/image/model/body/body010_0.png" + }, + { + "name":"body010_1_png", + "type":"image", + "url":"assets/image/model/body/body010_1.png" + }, + { + "name":"body011_0_png", + "type":"image", + "url":"assets/image/model/body/body011_0.png" + }, + { + "name":"body002_0_png", + "type":"image", + "url":"assets/image/model/body/body002_0.png" + }, + { + "name":"body003_1_png", + "type":"image", + "url":"assets/image/model/body/body003_1.png" + }, + { + "name":"helmet_13356_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13356.png" + }, + { + "name":"helmet_13362_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13362.png" + }, + { + "name":"num_2_fnt", + "type":"font", + "url":"assets/image/public/num_2.fnt" + }, + { + "name":"num_3_fnt", + "type":"font", + "url":"assets/image/public/num_3.fnt" + }, + { + "name":"num_4_fnt", + "type":"font", + "url":"assets/image/public/num_4.fnt" + }, + { + "name":"num_6_fnt", + "type":"font", + "url":"assets/image/public/num_6.fnt" + }, + { + "name":"numAttr_fnt", + "type":"font", + "url":"assets/image/public/numAttr.fnt" + }, + { + "name":"num_5_fnt", + "type":"font", + "url":"assets/image/public/num_5.fnt" + }, + { + "name":"task_k1_png", + "type":"image", + "url":"assets/main/task_k1.png" + }, + { + "name":"sz_bg_1_png", + "type":"image", + "url":"assets/role/sz_bg_1.png" + }, + { + "name":"transform_bg_png", + "type":"image", + "url":"assets/role/transform_bg.png" + }, + { + "name":"blessing_bg_png", + "type":"image", + "url":"assets/role/blessing_bg.png" + }, + { + "name":"Godturn_bg_png", + "type":"image", + "url":"assets/role/Godturn_bg.png" + }, + { + "name":"role_bg_png", + "type":"image", + "url":"assets/role/role_bg.png" + }, + { + "name":"qh_bg_png", + "type":"image", + "url":"assets/role/qh_bg.png" + }, + { + "name":"role_k_png", + "type":"image", + "url":"assets/role/role_k.png" + }, + { + "name":"role_sx_bg_png", + "type":"image", + "url":"assets/role/role_sx_bg.png" + }, + { + "name":"bg_sixiang_png", + "type":"image", + "url":"assets/role/bg_sixiang.png" + }, + { + "name":"bg_sixiang2_png", + "type":"image", + "url":"assets/role/bg_sixiang2.png" + }, + { + "name":"fourImage_fnt", + "type":"font", + "url":"assets/image/public/fourImage.fnt" + }, + { + "name":"growway_json", + "subkeys":"bg_czzl,czzl_t1,czzl_tab_01,czzl_tab_02,czzl_tab_11,czzl_tab_12,czzl_tab_21,czzl_tab_22,czzl_tab_31,czzl_tab_32,czzl_tab_41,czzl_tab_42,growway_jt", + "type":"sheet", + "url":"assets/growway/growway.json" + }, + { + "name":"bg_ring_png", + "type":"image", + "url":"assets/ring/bg_ring.png" + }, + { + "name":"com_bg_kuang_3_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_3.png" + }, + { + "name":"com_bg_kuang_4_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_4.png" + }, + { + "name":"bg_newNpc_png", + "type":"image", + "url":"assets/main/bg_newNpc.png" + }, + { + "name":"bag_bg_png", + "type":"image", + "url":"assets/common/bag_bg.png" + }, + { + "name":"LOGO2_png", + "type":"image", + "url":"assets/login/LOGO2.png" + }, + { + "name":"task_k2_png", + "type":"image", + "url":"assets/main/task_k2.png" + }, + { + "name":"chat_bg_tc1_2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1_2.png" + }, + { + "name":"bg_tipstc2_png", + "type":"image", + "url":"assets/bg/bg_tipstc2.png" + }, + { + "name":"rank_bg_png", + "type":"image", + "url":"assets/rank/rank_bg.png" + }, + { + "name":"bodyimgeff18_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_0.png" + }, + { + "name":"bodyimgeff18_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_1.png" + }, + { + "name":"bodyimgeff19_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_0.png" + }, + { + "name":"bodyimgeff19_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_1.png" + }, + { + "name":"bodyimgeff21_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_0.png" + }, + { + "name":"bodyimgeff21_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_1.png" + }, + { + "name":"bodyimgeff25_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_0.png" + }, + { + "name":"bodyimgeff25_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_1.png" + }, + { + "name":"bodyimgeff26_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_0.png" + }, + { + "name":"bodyimgeff26_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_1.png" + }, + { + "name":"bodyimgeff27_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_0.png" + }, + { + "name":"bodyimgeff27_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_1.png" + }, + { + "name":"hyhy_bg_png", + "type":"image", + "url":"assets/main/hyhy_bg.png" + }, + { + "name":"hyhy_btn_png", + "type":"image", + "url":"assets/main/hyhy_btn.png" + }, + { + "name":"ditutiaozhuan_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/ditutiaozhuan.mp3" + }, + { + "name":"com_bg_kuang_6_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_6.png" + }, + { + "name":"com_bg_kuang_5_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_5.png" + }, + { + "name":"shenmo_json", + "subkeys":"bg_shenmo,bg_sm,btn_shenmo_01,btn_shenmo_02,icon_shenmo_1,icon_shenmo_2,icon_shenmo_3,icon_shenmo_4,icon_shenmo_5,sm_jyt1,sm_jyt2,sm_p1,sm_t1,sm_t2,sm_t3,sm_t4,sm_t5,sm_t6,sm_t7,t_shenmo_1,t_shenmo_2,t_shenmo_3,t_shenmo_4,t_shenmo_5", + "type":"sheet", + "url":"assets/shenmo/shenmo.json" + }, + { + "name":"bg_huishou_png", + "type":"image", + "url":"assets/common/bg_huishou.png" + }, + { + "name":"rage_bg_png", + "type":"image", + "url":"assets/violentState/rage_bg.png" + }, + { + "name":"particle1_json", + "type":"json", + "url":"assets/image/particle/particle1.json" + }, + { + "name":"particle1_png", + "type":"image", + "url":"assets/image/particle/particle1.png" + }, + { + "name":"donationRank_json", + "subkeys":"jxpm_1,jxpm_2,jxpm_3,jxpm_4,jxpm_5,jxpm_6,jxpm_7,jxpm_banner,jxpm_bg1,jxpm_bg2", + "type":"sheet", + "url":"assets/donationRank/donationRank.json" + }, + { + "name":"helmet_13437_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13437.png" + }, + { + "name":"helmet_13438_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13438.png" + }, + { + "name":"helmet_13439_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13439.png" + }, + { + "name":"ShaChengStarcraft_json", + "subkeys":"sbk_bg2,sbk_czch1,sbk_czch2,sbk_czp1,sbk_czp2,sbk_jlcz,sbk_jlhd", + "type":"sheet", + "url":"assets/ShaChengStarcraft/ShaChengStarcraft.json" + }, + { + "name":"sbk_bg_png", + "type":"image", + "url":"assets/ShaChengStarcraft/sbk_bg.png" + }, + { + "name":"apay_bg2_png", + "type":"image", + "url":"assets/bg/apay_bg2.png" + }, + { + "name":"recharge_json", + "subkeys":"biaoti_cz,cz_10bei,cz_10bei1,cz_10bei2,cz_bg1,cz_icon1,cz_icon2,cz_icon3,cz_icon4,cz_icon5,cz_icon6,cz_icon7,cz_icon8", + "type":"sheet", + "url":"assets/recharge/recharge.json" + }, + { + "name":"num_8_fnt", + "type":"font", + "url":"assets/image/public/num_8.fnt" + }, + { + "name":"bg_gz_png", + "type":"image", + "url":"assets/role/bg_gz.png" + }, + { + "name":"LOGO3_png", + "type":"image", + "url":"assets/login/LOGO3.png" + }, + { + "name":"zjt2_png", + "type":"image", + "url":"assets/login/zjt2.png" + }, + { + "name":"zjt3_png", + "type":"image", + "url":"assets/login/zjt3.png" + }, + { + "name":"zjt1_png", + "type":"image", + "url":"assets/login/zjt1.png" + }, + { + "name":"zhuanzhi_json", + "subkeys":"biaoti_zhuanzhi,jobchange_bg,jobchange_bg2,jobchange_bg3", + "type":"sheet", + "url":"assets/zhuanzhi/zhuanzhi.json" + }, + { + "name":"sz_show_001_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_1.png" + }, + { + "name":"sz_show_002_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_1.png" + }, + { + "name":"sz_show_002_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_0.png" + }, + { + "name":"sz_show_001_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_0.png" + }, + { + "name":"sz_show_005_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_0.png" + }, + { + "name":"sz_show_005_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_1.png" + }, + { + "name":"sz_show_003_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_0.png" + }, + { + "name":"sz_show_003_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_1.png" + }, + { + "name":"sz_show_004_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_0.png" + }, + { + "name":"sz_show_004_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_1.png" + }, + { + "name":"cangku_bg_png", + "type":"image", + "url":"assets/Warehouse/cangku_bg.png" + }, + { + "name":"Warehouse_json", + "subkeys":"cangku_tab1,cangku_tab2,cangku_tabt1_1,cangku_tabt1_2,cangku_tabt2_1,cangku_tabt2_2,cangku_tabt3_1,cangku_tabt3_2,cangku_tabt4_1,cangku_tabt4_2,cangku_tabt5_1,cangku_tabt5_2,cangku_tabt6_1,cangku_tabt6_2", + "type":"sheet", + "url":"assets/Warehouse/Warehouse.json" + }, + { + "name":"LOG4366_png", + "type":"image", + "url":"assets/login/LOG4366.png" + }, + { + "name":"fuli4366_json", + "subkeys":"banner_4366,banner_4366vip,banner_qqdating1,biaoti_4366,btn_smczx,t_lijichongzhi", + "type":"sheet", + "url":"assets/4366/fuli4366.json" + }, + { + "name":"qqcode_png", + "type":"image", + "url":"assets/4366/qqcode.png" + }, + { + "name":"loding_png", + "type":"image", + "url":"assets/login/loding.png" + }, + { + "name":"qqBlueDiamond_json", + "subkeys":"banner_lzchongzhi,banner_lzshangcheng,banner_lztequan,biaoti_lztequan,lz_czhuaxian,lz_ktlzbt,lz_ktnflzbt,lz_lzxinshou_dabiaoti,lz_tqzl1,lz_tqzl2,lz_tqzl3,lz_tqzl4,lz_xflzbt,lz_xfnflzbt,lztq_frame,lztq_frame1,wenzi_lzhhbewlq,wenzi_nflzgzewlq", + "type":"sheet", + "url":"assets/qqBlueDiamond/qqBlueDiamond.json" + }, + { + "name":"blueDiamond_json", + "subkeys":"lz_hh1,lz_hh2,lz_hh3,lz_hh4,lz_hh5,lz_hh6,lz_hh7,lz_hh8,lz_hh9,lz_hhe1,lz_hhe2,lz_hhe3,lz_hhe4,lz_hhe5,lz_hhe6,lz_hhe7,lz_hhe8,lz_hhe9,lz_nf,lz_nf1,lz_pt1,lz_pt2,lz_pt3,lz_pt4,lz_pt5,lz_pt6,lz_pt7,lz_pt8,lz_pt9,lz_pte1,lz_pte2,lz_pte3,lz_pte4,lz_pte5,lz_pte6,lz_pte7,lz_pte8,lz_pte9,name_lz_hh1,name_lz_hh2,name_lz_hh3,name_lz_hh4,name_lz_hh5,name_lz_hh6,name_lz_hh7,name_lz_hh8,name_lz_hh9,name_lz_nf,name_lz_pt1,name_lz_pt2,name_lz_pt3,name_lz_pt4,name_lz_pt5,name_lz_pt6,name_lz_pt7,name_lz_pt8,name_lz_pt9", + "type":"sheet", + "url":"assets/image/public/blueDiamond.json" + }, + { + "name":"qqdt_meir_erji_png", + "type":"image", + "url":"assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png" + }, + { + "name":"QQLobby_json", + "subkeys":"banner_qqdating,biaoti_qqdating,qq_bt1,qq_bt2,qqdt_dengji_frame,qqdt_jiangli_sign,qqdt_meir_dabiaoti,qqdt_xinshou_dabiaoti", + "type":"sheet", + "url":"assets/qqLobbyPrivilegesWin/QQLobby.json" + }, + { + "name":"bg_4366jqfuli_png", + "type":"image", + "url":"assets/4366/bg_4366jqfuli.png" + }, + { + "name":"bg_4366renzhenglibao_png", + "type":"image", + "url":"assets/4366/bg_4366renzhenglibao.png" + }, + { + "name":"bg_4366shoujilibao_png", + "type":"image", + "url":"assets/4366/bg_4366shoujilibao.png" + }, + { + "name":"bg_4366vip_png", + "type":"image", + "url":"assets/4366/bg_4366vip.png" + }, + { + "name":"bg_4366vxlibao_png", + "type":"image", + "url":"assets/4366/bg_4366vxlibao.png" + }, + { + "name":"saomachongzhi_png", + "type":"image", + "url":"assets/4366/saomachongzhi.png" + }, + { + "name":"saomachongzhi2_png", + "type":"image", + "url":"assets/common/saomachongzhi2.png" + }, + { + "name":"hfhd_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/hfhd_shenhuaboss.png" + }, + { + "name":"weiduan_xzframe_png", + "type":"image", + "url":"assets/microterms/weiduan_xzframe.png" + }, + { + "name":"main_taskTips_json", + "subkeys":"zi_1,zi_2,zi_3,zi_4,zi_5,zi_6", + "type":"sheet", + "url":"assets/main/main_taskTips.json" + }, + { + "name":"loding_jpg", + "type":"image", + "url":"assets/login/loding.jpg" + }, + { + "name":"hitnum9_fnt", + "type":"font", + "url":"assets/image/public/hitnum9.fnt" + }, + { + "name":"main_actTips_json", + "subkeys":"dc_bg0,dc_bg1,dc_bg2,dc_bg3,dc_bg4,dc_bg5,dc_btn1,dc_btn2,dc_cdmu0,dc_cdmu1,dc_cdmu2,dc_cdmu3,dc_cdmu4,dc_cdmu5,dc_cdmu6,dc_cdmu7,dc_cdmu8,dc_cdmu9,dc_cdwenzi0,dc_cdwenzi1,dc_cdwenzi10,dc_cdwenzi11,dc_cdwenzi2,dc_cdwenzi3,dc_cdwenzi4,dc_cdwenzi5,dc_cdwenzi6,dc_cdwenzi7,dc_cdwenzi8,dc_cdwenzi9,dc_chwenzi3,dc_icon_jibai,dc_jb_ch1,dc_jb_ch10,dc_jb_ch11,dc_jb_ch12,dc_jb_ch13,dc_jb_ch14,dc_jb_ch2,dc_jb_ch3,dc_jb_ch4,dc_jb_ch5,dc_jb_ch6,dc_jb_ch7,dc_jb_ch8,dc_jb_ch9,dc_jb_nu0,dc_jb_nu1,dc_jb_nu2,dc_jb_nu3,dc_jb_nu4,dc_jb_nu5,dc_jb_nu6,dc_jb_nu7,dc_jb_nu8,dc_jb_nu9,dc_jpwenzi0,dc_jpwenzi1,dc_mu0,dc_mu1,dc_mu2,dc_mu3,dc_mu4,dc_mu5,dc_mu6,dc_mu7,dc_mu8,dc_mu9,dc_mubiao,dc_nrwenzi0,dc_nrwenzi1,dc_nrwenzi2,dc_nrwenzi3,dc_nrwenzi4,dc_nrwenzi5,dc_nrwenzi6,dc_nrwenzi7,dc_zbmu0,dc_zbmu1,dc_zbmu2,dc_zbmu3,dc_zbmu4,dc_zbmu5,dc_zbmu6,dc_zbmu7,dc_zbmu8,dc_zbmu9,dc_zs_jl1,dc_zs_jl10,dc_zs_jl11,dc_zs_jl12,dc_zs_jl13,dc_zs_jl2,dc_zs_jl3,dc_zs_jl4,dc_zs_jl5,dc_zs_jl6,dc_zs_jl7,dc_zs_jl8,dc_zs_jl9", + "type":"sheet", + "url":"assets/main/main_actTips.json" + }, + { + "name":"skill_1_png", + "type":"image", + "url":"assets/main/actTips/skill_1.png" + }, + { + "name":"skill_3_png", + "type":"image", + "url":"assets/main/actTips/skill_3.png" + }, + { + "name":"skill_2_png", + "type":"image", + "url":"assets/main/actTips/skill_2.png" + }, + { + "name":"skill_4_png", + "type":"image", + "url":"assets/main/actTips/skill_4.png" + }, + { + "name":"skill_5_png", + "type":"image", + "url":"assets/main/actTips/skill_5.png" + }, + { + "name":"skill_6_png", + "type":"image", + "url":"assets/main/actTips/skill_6.png" + }, + { + "name":"SoldierSoul_json", + "subkeys":"sw_bh_1,sw_bh_2,sw_bh_3,sw_bh_4,sw_bh_Lv_4,sw_bh_bg2,sw_bh_bhjj1,sw_bh_bhjj2,sw_bh_bhsj1,sw_bh_bhsj2,sw_bh_bhsx1,sw_bh_bhsx2,sw_bh_bhxl1,sw_bh_bhxl2,sw_bh_dj10,sw_bh_dj11,sw_bh_dj12,sw_bh_icon0,sw_bh_icon1,sw_bh_icon2,sw_bh_icon3,sw_bh_icon4,sw_bh_icon5,sw_bh_mc1,sw_bh_mc2,sw_bh_mc3,sw_bh_mc4", + "type":"sheet", + "url":"assets/SoldierSoul/SoldierSoul.json" + }, + { + "name":"sw_bh_bg1_png", + "type":"image", + "url":"assets/SoldierSoul/sw_bh_bg1.png" + }, + { + "name":"SoldierSoul_fnt_fnt", + "type":"font", + "url":"assets/image/public/SoldierSoul_fnt.fnt" + }, + { + "name":"binghun_bg_png", + "type":"image", + "url":"assets/role/binghun_bg.png" + }, + { + "name":"binghun_bg1_png", + "type":"image", + "url":"assets/role/binghun_bg1.png" + }, + { + "name":"yqs_bg_png", + "type":"image", + "url":"assets/fuli/yqs_bg.png" + }, + { + "name":"lj_bg1_png", + "type":"image", + "url":"assets/cumulativeOnline/lj_bg1.png" + }, + { + "name":"cumulativeOnline_json", + "subkeys":"lj_arrow,lj_bg2,lj_bg3,lj_frame,lj_jdt1,lj_jdt2,lj_jdt3,lj_jdt4,lj_jt1,lj_jt2,lj_title,lj_tt1,lj_tt2,lj_xc", + "type":"sheet", + "url":"assets/cumulativeOnline/cumulativeOnline.json" + }, + { + "name":"bh_show_wp1_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp1.png" + }, + { + "name":"bh_show_wp2_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp2.png" + }, + { + "name":"bx_show_001_png", + "type":"image", + "url":"assets/role/roleFashion/bx_show_001.png" + }, + { + "name":"bh_show_wp4_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp4.png" + }, + { + "name":"bh_show_wp3_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp3.png" + }, + { + "name":"bg_tipstc3_png", + "type":"image", + "url":"assets/bg/bg_tipstc3.png" + }, + { + "name":"forge_bg4_png", + "type":"image", + "url":"assets/forge/forge_bg4.png" + }, + { + "name":"btnbg_png", + "type":"image", + "url":"assets/fuli/btnbg.png" + }, + { + "name":"loding_kf_jpg", + "type":"image", + "url":"assets/login/loding_kf.jpg" + }, + { + "name":"txt_kf_png", + "type":"image", + "url":"assets/login/txt_kf.png" + }, + { + "name":"CrossServer_json", + "subkeys":"icon_gjsl,icon_qgs,kf_cy_bg2,kf_cy_bg3,kf_cy_bg4,kf_cy_bg6,kf_cy_cyj,kf_cy_cysl,kf_cy_gsj,kf_cy_ydj,kf_cyboss_hp1,kf_cyboss_hp2,kf_cyjl_frame1,kf_cyjl_frame2,kf_cyjl_key,kf_fanye_bg1,kf_fanye_bg2,kf_fanye_hd1,kf_fanye_hd2,kf_fanye_phb1,kf_fanye_phb2,kf_fanye_xq1,kf_fanye_xq2,kf_jdt1,kf_jdt2,kf_kfmb,kf_kfmb_bg1,kf_kfphb,kf_kfsl,kf_kfxq,kf_kfzc,kf_kfzk,kf_mb_dynd,kf_mb_dynf,kf_mb_dynz,kf_mb_dyvd,kf_mb_dyvf,kf_mb_dyvz", + "type":"sheet", + "url":"assets/CrossServer/CrossServer.json" + }, + { + "name":"kf_cy_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg1.png" + }, + { + "name":"kf_xq_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_xq_bg.png" + }, + { + "name":"kf_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_bg1.png" + }, + { + "name":"kf_phb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_phb_bg.png" + }, + { + "name":"kf_cyjl_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cyjl_bg1.png" + }, + { + "name":"kf_cy_bg5_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg5.png" + }, + { + "name":"kf_kfmb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_kfmb_bg.png" + }, + { + "name":"tq_bg1_png", + "type":"image", + "url":"assets/vip/tq_bg1.png" + }, + { + "name":"hitnum11_fnt", + "type":"font", + "url":"assets/image/public/hitnum11.fnt" + }, + { + "name":"hitnum12_fnt", + "type":"font", + "url":"assets/image/public/hitnum12.fnt" + }, + { + "name":"chongwu_bg_png", + "type":"image", + "url":"assets/role/chongwu_bg.png" + }, + { + "name":"role_pet_json", + "subkeys":"chongwu_bg1,chongwu_bg2,chongwu_btn,chongwu_btn1,chongwu_btn2,chongwu_icon,pet001,pet001_name,pet002,pet002_name,pet003,pet003_name,pet004,pet004_name,pet005,pet005_name,pet006,pet006_name,pet007,pet007_name,pet008,pet008_name,pet009,pet009_name", + "type":"sheet", + "url":"assets/role/role_pet.json" + }, + { + "name":"SelectServer_json", + "subkeys":"login_bg3,login_bt_1,login_bt_2,login_dian_1,login_dian_2,login_dian_3,login_jinru,login_jinru1,login_qfbg,login_xzqf,login_xzqf1,login_yeqian_1,login_yeqian_2", + "type":"sheet", + "url":"assets/login/SelectServer.json" + }, + { + "name":"enter_game_png", + "type":"image", + "url":"assets/login/enter_game.png" + }, + { + "name":"login_bg1_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg1.jpg" + }, + { + "name":"LOGO4_png", + "type":"image", + "url":"assets/login/LOGO4.png" + }, + { + "name":"loading_1_jpg", + "type":"image", + "url":"assets/phonebg/loading_1.jpg" + }, + { + "name":"mp_jzjm_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm.png" + }, + { + "name":"mp_login_bg_png", + "type":"image", + "url":"assets/phonebg/mp_login_bg.png" + }, + { + "name":"mp_xfjm_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm.png" + }, + { + "name":"attrTips_json", + "subkeys":"bg_bosstips1,bg_bosstips2,bg_zbgh,fightnum_bg,fightnum_bg2,fightnum_d,fightnum_m,fightnum_z,numsx_1,numsx_10,numsx_11,numsx_12,numsx_13,numsx_14,numsx_15,numsx_16,numsx_17,numsx_18,numsx_19,numsx_2,numsx_20,numsx_21,numsx_22,numsx_23,numsx_24,numsx_25,numsx_26,numsx_27,numsx_28,numsx_29,numsx_3,numsx_30,numsx_31,numsx_32,numsx_33,numsx_34,numsx_35,numsx_36,numsx_37,numsx_38,numsx_39,numsx_4,numsx_40,numsx_41,numsx_42,numsx_43,numsx_44,numsx_5,numsx_6,numsx_7,numsx_8,numsx_9", + "type":"sheet", + "url":"assets/common/attrTips.json" + }, + { + "name":"bg_neigongzb_png", + "type":"image", + "url":"assets/role/bg_neigongzb.png" + }, + { + "name":"kf_xb_bg4_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg4.png" + }, + { + "name":"zjt4_png", + "type":"image", + "url":"assets/login/zjt4.png" + }, + { + "name":"zjt5_png", + "type":"image", + "url":"assets/login/zjt5.png" + }, + { + "name":"sz_show_006_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_0.png" + }, + { + "name":"sz_show_006_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_1.png" + }, + { + "name":"sz_show_007_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_0.png" + }, + { + "name":"sz_show_007_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_1.png" + }, + { + "name":"sz_show_008_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_0.png" + }, + { + "name":"sz_show_008_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_1.png" + }, + { + "name":"sz_show_009_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_0.png" + }, + { + "name":"sz_show_009_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_1.png" + }, + { + "name":"sz_show_010_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_0.png" + }, + { + "name":"sz_show_010_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_1.png" + }, + { + "name":"sz_show_011_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_0.png" + }, + { + "name":"sz_show_011_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_1.png" + }, + { + "name":"sz_show_012_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_0.png" + }, + { + "name":"sz_show_012_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_1.png" + }, + { + "name":"sz_show_013_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_0.png" + }, + { + "name":"sz_show_013_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_1.png" + }, + { + "name":"sz_show_014_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_0.png" + }, + { + "name":"sz_show_014_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_1.png" + }, + { + "name":"sz_show_015_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_0.png" + }, + { + "name":"sz_show_015_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_1.png" + }, + { + "name":"Client_png", + "type":"image", + "url":"assets/multiVersion/Client.png" + }, + { + "name":"IOS_png", + "type":"image", + "url":"assets/multiVersion/IOS.png" + }, + { + "name":"Page_png", + "type":"image", + "url":"assets/multiVersion/Page.png" + }, + { + "name":"multiVersion_json", + "subkeys":"button1,button2", + "type":"sheet", + "url":"assets/multiVersion/multiVersion.json" + }, + { + "name":"mp_login_btn2_png", + "type":"image", + "url":"assets/login/mp_login_btn2.png" + }, + { + "name":"bg_qqvip_png", + "type":"image", + "url":"assets/4366/bg_qqvip.png" + }, + { + "name":"IOS-honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS-honghu.png" + }, + { + "name":"Page-honghu_png", + "type":"image", + "url":"assets/multiVersion/Page-honghu.png" + }, + { + "name":"Android-c601_png", + "type":"image", + "url":"assets/multiVersion/Android-c601.png" + }, + { + "name":"Client-c601_png", + "type":"image", + "url":"assets/multiVersion/Client-c601.png" + }, + { + "name":"Android-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Android-gonghui.png" + }, + { + "name":"Client-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Client-gonghui.png" + }, + { + "name":"Page-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Page-gonghui.png" + }, + { + "name":"Android-honghu_png", + "type":"image", + "url":"assets/multiVersion/Android-honghu.png" + }, + { + "name":"logoGameCat_png", + "type":"image", + "url":"assets/login/logoGameCat.png" + }, + { + "name":"loadingGameCat_png", + "type":"image", + "url":"assets/phonebg/loadingGameCat.png" + }, + { + "name":"loginGameCat_png", + "type":"image", + "url":"assets/phonebg/loginGameCat.png" + }, + { + "name":"weapon_13730_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13730.png" + }, + { + "name":"weapon_13731_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13731.png" + }, + { + "name":"weapon_13732_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13732.png" + }, + { + "name":"body034_1_png", + "type":"image", + "url":"assets/image/model/body/body034_1.png" + }, + { + "name":"body034_0_png", + "type":"image", + "url":"assets/image/model/body/body034_0.png" + }, + { + "name":"bodyimgeff34_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_1.png" + }, + { + "name":"bodyimgeff34_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_0.png" + }, + { + "name":"Client-youximao_png", + "type":"image", + "url":"assets/multiVersion/Client-youximao.png" + }, + { + "name":"LOGO5_png", + "type":"image", + "url":"assets/login/LOGO5.png" + }, + { + "name":"Client-155iy_png", + "type":"image", + "url":"assets/multiVersion/Client-155iy.png" + }, + { + "name":"num_kftz_fnt", + "type":"font", + "url":"assets/openServer/num_kftz.fnt" + }, + { + "name":"bg_360dawanjia_png", + "type":"image", + "url":"assets/360/bg_360dawanjia.png" + }, + { + "name":"wx_bg_7youxi_png", + "type":"image", + "url":"assets/7game/wx_bg_7youxi.png" + }, + { + "name":"bg_7youjqfuli_png", + "type":"image", + "url":"assets/7game/bg_7youjqfuli.png" + }, + { + "name":"bg_ldschaojivip_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip.png" + }, + { + "name":"bg_ldschaojivip2_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip2.png" + }, + { + "name":"bg_ldsflbuff_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflbuff.png" + }, + { + "name":"bg_ldsflhzdl_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl.png" + }, + { + "name":"bg_ldsflmrlb1_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflmrlb1.png" + }, + { + "name":"bg_ldssjlbrzlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbrzlb.png" + }, + { + "name":"bg_ldssjlbsjlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbsjlb.png" + }, + { + "name":"bg_ldssjlbwxlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbwxlb.png" + }, + { + "name":"bg_ldsyouxihezi_png", + "type":"image", + "url":"assets/ludashi/bg_ldsyouxihezi.png" + }, + { + "name":"ludashi_json", + "subkeys":"banner_ldschaojivip,banner_ldsfl,biaoti_ldsfl,txt_bangdingshouji,txt_erweima,txt_fuzhi,txt_ljcz,txt_ljkt", + "type":"sheet", + "url":"assets/ludashi/ludashi.json" + }, + { + "name":"LOGO6_png", + "type":"image", + "url":"assets/login/LOGO6.png" + }, + { + "name":"mp_jzjm2_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm2.png" + }, + { + "name":"fuli37_json", + "subkeys":"37_smcz_tanhao,37_smczzq_0,37_smczzq_1,banner_37vip,biaoti_37fulidating,btnt_txfcm", + "type":"sheet", + "url":"assets/37/fuli37.json" + }, + { + "name":"bg_360smrzlb_png", + "type":"image", + "url":"assets/360/bg_360smrzlb.png" + }, + { + "name":"fuli360_json", + "subkeys":"biaoti_smrz,btn_lijilingqu", + "type":"sheet", + "url":"assets/360/fuli360.json" + }, + { + "name":"bg_ldsflhzdl2_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl2.png" + }, + { + "name":"bg_ku25hezifuli_png", + "type":"image", + "url":"assets/ku25/bg_ku25hezifuli.png" + }, + { + "name":"bg_ku25vip_png", + "type":"image", + "url":"assets/ku25/bg_ku25vip.png" + }, + { + "name":"bg_ku25weixinlibao_png", + "type":"image", + "url":"assets/ku25/bg_ku25weixinlibao.png" + }, + { + "name":"ku25_json", + "subkeys":"banner_ku25hezidenglu1,banner_ku25hezidenglu2,banner_ku25vip", + "type":"sheet", + "url":"assets/ku25/ku25.json" + }, + { + "name":"bg_37weiduan_png", + "type":"image", + "url":"assets/37/bg_37weiduan.png" + }, + { + "name":"bg_sogouwxlb_png", + "type":"image", + "url":"assets/sogou/bg_sogouwxlb.png" + }, + { + "name":"bg_sougouvip_png", + "type":"image", + "url":"assets/sogou/bg_sougouvip.png" + }, + { + "name":"bg_zhuanshupifu_png", + "type":"image", + "url":"assets/sogou/bg_zhuanshupifu.png" + }, + { + "name":"sogou_json", + "subkeys":"banner_sougouvip,banner_sougouyxdt,sogou_t_xslb", + "type":"sheet", + "url":"assets/sogou/sogou.json" + }, + { + "name":"Client-suhai_png", + "type":"image", + "url":"assets/suhai/Client-suhai.png" + }, + { + "name":"IOS_suhai_png", + "type":"image", + "url":"assets/suhai/IOS_suhai.png" + }, + { + "name":"Page-suhai_png", + "type":"image", + "url":"assets/suhai/Page-suhai.png" + }, + { + "name":"Android-suhai_png", + "type":"image", + "url":"assets/suhai/Android-suhai.png" + }, + { + "name":"Android_c601_png", + "type":"image", + "url":"assets/multiVersion/Android_c601.png" + }, + { + "name":"Client_c601_png", + "type":"image", + "url":"assets/multiVersion/Client_c601.png" + }, + { + "name":"Page_c601_png", + "type":"image", + "url":"assets/multiVersion/Page_c601.png" + }, + { + "name":"banner_yaodou_png", + "type":"image", + "url":"assets/yaodou/banner_yaodou.png" + }, + { + "name":"bg_yaodou_png", + "type":"image", + "url":"assets/yaodou/bg_yaodou.png" + }, + { + "name":"zjt8_png", + "type":"image", + "url":"assets/login/zjt8.png" + }, + { + "name":"bg_qidianbdsj_png", + "type":"image", + "url":"assets/qidian/bg_qidianbdsj.png" + }, + { + "name":"bg_qidianvip_png", + "type":"image", + "url":"assets/qidian/bg_qidianvip.png" + }, + { + "name":"LOGO7_png", + "type":"image", + "url":"assets/login/LOGO7.png" + }, + { + "name":"tdloadimg_png", + "type":"image", + "url":"assets/phonebg/tdloadimg.png" + }, + { + "name":"tdlogin_png", + "type":"image", + "url":"assets/phonebg/tdlogin.png" + }, + { + "name":"main_gonggaoBtn_png", + "type":"image", + "url":"assets/login/main_gonggaoBtn.png" + }, + { + "name":"banner_feihuo_png", + "type":"image", + "url":"assets/feihuo/banner_feihuo.png" + }, + { + "name":"bg_feihuo_png", + "type":"image", + "url":"assets/feihuo/bg_feihuo.png" + }, + { + "name":"bg_aiqiyiQQqun_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqiyiQQqun.png" + }, + { + "name":"bg_aiqqiyivip_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqqiyivip.png" + }, + { + "name":"bg_aqiyiweixin_png", + "type":"image", + "url":"assets/iqiyi/bg_aqiyiweixin.png" + }, + { + "name":"iqiyi_json", + "subkeys":"banner_aiqiyivip,btn_ljjrgfqqq,btnt_ljjrgfqqq", + "type":"sheet", + "url":"assets/iqiyi/iqiyi.json" + }, + { + "name":"Client-tudou_png", + "type":"image", + "url":"assets/multiVersion/Client-tudou.png" + }, + { + "name":"bg_tanwanvip_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanvip.png" + }, + { + "name":"bg_tanwanviperweima_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanviperweima.png" + }, + { + "name":"bg_tw_bdsj_png", + "type":"image", + "url":"assets/tanwan/bg_tw_bdsj.png" + }, + { + "name":"bg_tw_qqqun_png", + "type":"image", + "url":"assets/tanwan/bg_tw_qqqun.png" + }, + { + "name":"bg_tw_sanduan_png", + "type":"image", + "url":"assets/tanwan/bg_tw_sanduan.png" + }, + { + "name":"bg_tw_weixin_png", + "type":"image", + "url":"assets/tanwan/bg_tw_weixin.png" + }, + { + "name":"bg_tw_wszl_png", + "type":"image", + "url":"assets/tanwan/bg_tw_wszl.png" + }, + { + "name":"tanwan_json", + "subkeys":"banner_tanwanvip,biaoti_tanwanfuli", + "type":"sheet", + "url":"assets/tanwan/tanwan.json" + }, + { + "name":"bg_zhongqiujiajie_png", + "type":"image", + "url":"assets/actypay/bg_zhongqiujiajie.png" + }, + { + "name":"apay_bg3_png", + "type":"image", + "url":"assets/bg/apay_bg3.png" + }, + { + "name":"bg_wanshanziliao_png", + "type":"image", + "url":"assets/game2/bg_wanshanziliao.png" + }, + { + "name":"ageButton_png", + "type":"image", + "url":"assets/login/ageButton.png" + }, + { + "name":"tdbxscloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloadimg.png" + }, + { + "name":"LOGO8_png", + "type":"image", + "url":"assets/login/LOGO8.png" + }, + { + "name":"fuli2144_json", + "subkeys":"banner_2144vip,biaoti_2144fuli", + "type":"sheet", + "url":"assets/2144/fuli2144.json" + }, + { + "name":"bg_2144vip_png", + "type":"image", + "url":"assets/2144/bg_2144vip.png" + }, + { + "name":"tdbxscloginimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloginimg.png" + }, + { + "name":"bg_danbichongzhi_png", + "type":"image", + "url":"assets/actypay/bg_danbichongzhi.png" + }, + { + "name":"Client-wanjiepian_png", + "type":"image", + "url":"assets/multiVersion/Client-wanjiepian.png" + }, + { + "name":"kbg_5_png", + "type":"image", + "url":"assets/bg/kbg_5.png" + }, + { + "name":"Client-tudoubxsc_png", + "type":"image", + "url":"assets/multiVersion/Client-tudoubxsc.png" + }, + { + "name":"banner_kuaiwan_png", + "type":"image", + "url":"assets/kuaiwan/banner_kuaiwan.png" + }, + { + "name":"bg_kuaiwanvip_png", + "type":"image", + "url":"assets/kuaiwan/bg_kuaiwanvip.png" + }, + { + "name":"Android-huowu_png", + "type":"image", + "url":"assets/multiVersion/Android-huowu.png" + }, + { + "name":"IOS_huowu_png", + "type":"image", + "url":"assets/multiVersion/IOS_huowu.png" + }, + { + "name":"Page-huowu_png", + "type":"image", + "url":"assets/multiVersion/Page-huowu.png" + }, + { + "name":"Client-huowu_png", + "type":"image", + "url":"assets/multiVersion/Client-huowu.png" + }, + { + "name":"weixincode_qq_png", + "type":"image", + "url":"assets/4366/weixincode_qq.png" + }, + { + "name":"shunwnag_json", + "subkeys":"banner_shunwang,btnt_lijidengji,btnt_xiazaihezi,txt_shunwangdengjilibao,txt_shunwanghezilibao", + "type":"sheet", + "url":"assets/shunwang/shunwnag.json" + }, + { + "name":"bg_wxlb_shunwang_png", + "type":"image", + "url":"assets/shunwang/bg_wxlb_shunwang.png" + }, + { + "name":"bg_platform_1_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_1.png" + }, + { + "name":"bg_platform_2_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_2.png" + }, + { + "name":"bg_platform_3_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_3.png" + }, + { + "name":"platformFuli_json", + "subkeys":"4366_jqfulibt,YY_yq_1,YY_yq_2,YY_yq_jiang,bg_platform_quyu1,biaoti_4366vip,biaoti_bangdingyouli,biaoti_chaojivip,biaoti_datingtequan,biaoti_ku25hezifuli,biaoti_shoujilibao,biaoti_wanshanziliao,biaoti_weixinlibao,biaoti_yxdt,btnt_qwyz,jiangli_bt,lingqu_bt,mun_1,mun_2,mun_3,mun_4,mun_5,mun_6,mun_7,mun_bg,mun_bg2,property_3,t_erweima,t_fuzhi,tab_bg_ldsfl,tab_ldsfl1,tab_ldsfl2,txt_djxz,txt_shenfenyanzheng,txt_xzhz", + "type":"sheet", + "url":"assets/platformFuli/platformFuli.json" + }, + { + "name":"weiduan_denglu_png", + "type":"image", + "url":"assets/platformFuli/weiduan_denglu.png" + }, + { + "name":"banner_qidianvip_png", + "type":"image", + "url":"assets/qidian/banner_qidianvip.png" + }, + { + "name":"banner_7youvip_png", + "type":"image", + "url":"assets/7game/banner_7youvip.png" + }, + { + "name":"bg_zijue_png", + "type":"image", + "url":"assets/role/bg_zijue.png" + }, + { + "name":"tdbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbyloadimg.png" + }, + { + "name":"LOGO9_png", + "type":"image", + "url":"assets/login/LOGO9.png" + }, + { + "name":"apay_liebiao_bg_png", + "type":"image", + "url":"assets/actypay/apay_liebiao_bg.png" + }, + { + "name":"banner_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/banner_shenhuaboss.png" + }, + { + "name":"festival_dwjiajie_png", + "type":"image", + "url":"assets/actypay/festival_dwjiajie.png" + }, + { + "name":"festival_hdwuyi_png", + "type":"image", + "url":"assets/actypay/festival_hdwuyi.png" + }, + { + "name":"festival_tqxunli_png", + "type":"image", + "url":"assets/actypay/festival_tqxunli.png" + }, + { + "name":"festival_znqingdian_png", + "type":"image", + "url":"assets/actypay/festival_znqingdian.png" + }, + { + "name":"apay_banner_chfl_png", + "type":"image", + "url":"assets/actypay/apay_banner_chfl.png" + }, + { + "name":"banner_ssboss_png", + "type":"image", + "url":"assets/fuli/banner_ssboss.png" + }, + { + "name":"banner_sbzb_png", + "type":"image", + "url":"assets/fuli/banner_sbzb.png" + }, + { + "name":"kf_kftz_bg_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg.png" + }, + { + "name":"kf_kftz_bg4_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg4.png" + }, + { + "name":"kf_dz_bg_png", + "type":"image", + "url":"assets/openServer/kf_dz_bg.png" + }, + { + "name":"kf_jj_bg_png", + "type":"image", + "url":"assets/openServer/kf_jj_bg.png" + }, + { + "name":"tq_p_7_3_png", + "type":"image", + "url":"assets/vip/tq_p_7_3.png" + }, + { + "name":"tq_bg2_png", + "type":"image", + "url":"assets/vip/tq_bg2.png" + }, + { + "name":"tq_bg3_png", + "type":"image", + "url":"assets/vip/tq_bg3.png" + }, + { + "name":"tq_bg6_png", + "type":"image", + "url":"assets/vip/tq_bg6.png" + }, + { + "name":"tq_bg7_png", + "type":"image", + "url":"assets/vip/tq_bg7.png" + }, + { + "name":"tq_p_1_1_png", + "type":"image", + "url":"assets/vip/tq_p_1_1.png" + }, + { + "name":"tq_p_1_2_png", + "type":"image", + "url":"assets/vip/tq_p_1_2.png" + }, + { + "name":"tq_p_1_3_png", + "type":"image", + "url":"assets/vip/tq_p_1_3.png" + }, + { + "name":"tq_p_2_1_png", + "type":"image", + "url":"assets/vip/tq_p_2_1.png" + }, + { + "name":"tq_p_2_2_png", + "type":"image", + "url":"assets/vip/tq_p_2_2.png" + }, + { + "name":"tq_p_2_3_png", + "type":"image", + "url":"assets/vip/tq_p_2_3.png" + }, + { + "name":"tq_p_3_1_png", + "type":"image", + "url":"assets/vip/tq_p_3_1.png" + }, + { + "name":"tq_p_3_2_png", + "type":"image", + "url":"assets/vip/tq_p_3_2.png" + }, + { + "name":"tq_p_3_3_png", + "type":"image", + "url":"assets/vip/tq_p_3_3.png" + }, + { + "name":"tq_p_4_1_png", + "type":"image", + "url":"assets/vip/tq_p_4_1.png" + }, + { + "name":"tq_p_4_2_png", + "type":"image", + "url":"assets/vip/tq_p_4_2.png" + }, + { + "name":"tq_p_4_3_png", + "type":"image", + "url":"assets/vip/tq_p_4_3.png" + }, + { + "name":"tq_p_5_1_png", + "type":"image", + "url":"assets/vip/tq_p_5_1.png" + }, + { + "name":"tq_p_5_2_png", + "type":"image", + "url":"assets/vip/tq_p_5_2.png" + }, + { + "name":"tq_p_5_3_png", + "type":"image", + "url":"assets/vip/tq_p_5_3.png" + }, + { + "name":"tq_p_6_1_png", + "type":"image", + "url":"assets/vip/tq_p_6_1.png" + }, + { + "name":"tq_p_6_2_png", + "type":"image", + "url":"assets/vip/tq_p_6_2.png" + }, + { + "name":"tq_p_6_3_png", + "type":"image", + "url":"assets/vip/tq_p_6_3.png" + }, + { + "name":"tq_p_7_1_png", + "type":"image", + "url":"assets/vip/tq_p_7_1.png" + }, + { + "name":"tq_p_7_2_png", + "type":"image", + "url":"assets/vip/tq_p_7_2.png" + }, + { + "name":"bg_shunwang_fangchenmi_png", + "type":"image", + "url":"assets/platformFuli/bg_shunwang_fangchenmi.png" + }, + { + "name":"bg_ldsflmrlb2_png", + "type":"image", + "url":"assets/platformFuli/bg_ldsflmrlb2.png" + }, + { + "name":"LOGO10_png", + "type":"image", + "url":"assets/login/LOGO10.png" + }, + { + "name":"xunwanFuli_json", + "subkeys":"banner_xlhytq,biaoti_xlhytq", + "type":"sheet", + "url":"assets/xunwanFuli/xunwanFuli.json" + }, + { + "name":"zjt10_png", + "type":"image", + "url":"assets/login/zjt10.png" + }, + { + "name":"LOGO11_png", + "type":"image", + "url":"assets/login/LOGO11.png" + }, + { + "name":"tdxlbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdxlbyloadimg.png" + }, + { + "name":"lOG_Honghu_png", + "type":"image", + "url":"assets/login/lOG_Honghu.png" + }, + { + "name":"buff2_json", + "subkeys":"mjdb_buff01,mjdb_buff02,mjdb_buff03,mjdb_buff04,mjdb_buff05,mjdb_buff06,mjdb_buff07,mjdb_buff08", + "type":"sheet", + "url":"assets/common/buff2.json" + }, + { + "name":"IOS_honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS_honghu.png" + }, + { + "name":"zjt11_png", + "type":"image", + "url":"assets/login/zjt11.png" + }, + { + "name":"mp_xfjm_nztl_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm_nztl.png" + }, + { + "name":"LOGO12_png", + "type":"image", + "url":"assets/login/LOGO12.png" + }, + { + "name":"saomachongzhi3_png", + "type":"image", + "url":"assets/common/saomachongzhi3.png" + }, + { + "name":"LOGO13_png", + "type":"image", + "url":"assets/login/LOGO13.png" + }, + { + "name":"banner_fudai_png", + "type":"image", + "url":"assets/actypay/banner_fudai.png" + }, + { + "name":"bg_fudai_png", + "type":"image", + "url":"assets/actypay/bg_fudai.png" + }, + { + "name":"bg_xfphb_png", + "type":"image", + "url":"assets/consumeRank/bg_xfphb.png" + }, + { + "name":"consumeRank_json", + "subkeys":"btn_xfphb,xfph_pm1,xfph_pm2,xfph_pm3", + "type":"sheet", + "url":"assets/consumeRank/consumeRank.json" + }, + { + "name":"worship_bg_jpg", + "type":"image", + "url":"assets/common/worship_bg.jpg" + } + ] +} \ No newline at end of file diff --git a/resource_Publish/assets/2144/bg_2144vip.png b/resource_Publish/assets/2144/bg_2144vip.png new file mode 100644 index 0000000..b350567 Binary files /dev/null and b/resource_Publish/assets/2144/bg_2144vip.png differ diff --git a/resource_Publish/assets/2144/fuli2144.json b/resource_Publish/assets/2144/fuli2144.json new file mode 100644 index 0000000..4773db8 --- /dev/null +++ b/resource_Publish/assets/2144/fuli2144.json @@ -0,0 +1,3 @@ +{"file":"fuli2144.png","frames":{ +"biaoti_2144fuli":{"x":1,"y":139,"w":218,"h":40,"offX":0,"offY":0,"sourceW":218,"sourceH":40}, +"banner_2144vip":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}}} \ No newline at end of file diff --git a/resource_Publish/assets/2144/fuli2144.png b/resource_Publish/assets/2144/fuli2144.png new file mode 100644 index 0000000..d4d1783 Binary files /dev/null and b/resource_Publish/assets/2144/fuli2144.png differ diff --git a/resource_Publish/assets/360/bg_360dawanjia.png b/resource_Publish/assets/360/bg_360dawanjia.png new file mode 100644 index 0000000..3bd8a5a Binary files /dev/null and b/resource_Publish/assets/360/bg_360dawanjia.png differ diff --git a/resource_Publish/assets/360/bg_360smrzlb.png b/resource_Publish/assets/360/bg_360smrzlb.png new file mode 100644 index 0000000..b25f5e1 Binary files /dev/null and b/resource_Publish/assets/360/bg_360smrzlb.png differ diff --git a/resource_Publish/assets/360/fuli360.json b/resource_Publish/assets/360/fuli360.json new file mode 100644 index 0000000..b5e5575 --- /dev/null +++ b/resource_Publish/assets/360/fuli360.json @@ -0,0 +1,3 @@ +{"file":"fuli360.png","frames":{ +"biaoti_smrz":{"x":1,"y":1,"w":180,"h":51,"offX":0,"offY":0,"sourceW":180,"sourceH":51}, +"btn_lijilingqu":{"x":1,"y":54,"w":142,"h":41,"offX":0,"offY":0,"sourceW":142,"sourceH":41}}} \ No newline at end of file diff --git a/resource_Publish/assets/360/fuli360.png b/resource_Publish/assets/360/fuli360.png new file mode 100644 index 0000000..97d8f4c Binary files /dev/null and b/resource_Publish/assets/360/fuli360.png differ diff --git a/resource_Publish/assets/37/bg_37weiduan.png b/resource_Publish/assets/37/bg_37weiduan.png new file mode 100644 index 0000000..1d0d264 Binary files /dev/null and b/resource_Publish/assets/37/bg_37weiduan.png differ diff --git a/resource_Publish/assets/37/fuli37.json b/resource_Publish/assets/37/fuli37.json new file mode 100644 index 0000000..800d7ad --- /dev/null +++ b/resource_Publish/assets/37/fuli37.json @@ -0,0 +1,7 @@ +{"file":"fuli37.png","frames":{ +"37_smczzq_0":{"x":1,"y":148,"w":70,"h":115,"offX":51,"offY":29,"sourceW":174,"sourceH":174}, +"37_smcz_tanhao":{"x":663,"y":1,"w":174,"h":174,"offX":0,"offY":0,"sourceW":174,"sourceH":174}, +"37_smczzq_1":{"x":839,"y":1,"w":161,"h":158,"offX":9,"offY":9,"sourceW":174,"sourceH":174}, +"banner_37vip":{"x":1,"y":1,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}, +"biaoti_37fulidating":{"x":73,"y":148,"w":176,"h":40,"offX":0,"offY":0,"sourceW":176,"sourceH":40}, +"btnt_txfcm":{"x":251,"y":148,"w":123,"h":27,"offX":0,"offY":0,"sourceW":123,"sourceH":27}}} \ No newline at end of file diff --git a/resource_Publish/assets/37/fuli37.png b/resource_Publish/assets/37/fuli37.png new file mode 100644 index 0000000..2ddf3c6 Binary files /dev/null and b/resource_Publish/assets/37/fuli37.png differ diff --git a/resource_Publish/assets/4366/bg_4366jqfuli.png b/resource_Publish/assets/4366/bg_4366jqfuli.png new file mode 100644 index 0000000..ee7b340 Binary files /dev/null and b/resource_Publish/assets/4366/bg_4366jqfuli.png differ diff --git a/resource_Publish/assets/4366/bg_4366renzhenglibao.png b/resource_Publish/assets/4366/bg_4366renzhenglibao.png new file mode 100644 index 0000000..365d473 Binary files /dev/null and b/resource_Publish/assets/4366/bg_4366renzhenglibao.png differ diff --git a/resource_Publish/assets/4366/bg_4366shoujilibao.png b/resource_Publish/assets/4366/bg_4366shoujilibao.png new file mode 100644 index 0000000..d3efa35 Binary files /dev/null and b/resource_Publish/assets/4366/bg_4366shoujilibao.png differ diff --git a/resource_Publish/assets/4366/bg_4366vip.png b/resource_Publish/assets/4366/bg_4366vip.png new file mode 100644 index 0000000..0560a7f Binary files /dev/null and b/resource_Publish/assets/4366/bg_4366vip.png differ diff --git a/resource_Publish/assets/4366/bg_4366vxlibao.png b/resource_Publish/assets/4366/bg_4366vxlibao.png new file mode 100644 index 0000000..a1fe163 Binary files /dev/null and b/resource_Publish/assets/4366/bg_4366vxlibao.png differ diff --git a/resource_Publish/assets/4366/bg_qqvip.png b/resource_Publish/assets/4366/bg_qqvip.png new file mode 100644 index 0000000..25a831d Binary files /dev/null and b/resource_Publish/assets/4366/bg_qqvip.png differ diff --git a/resource_Publish/assets/4366/fuli4366.json b/resource_Publish/assets/4366/fuli4366.json new file mode 100644 index 0000000..0d56c25 --- /dev/null +++ b/resource_Publish/assets/4366/fuli4366.json @@ -0,0 +1,7 @@ +{"file":"fuli4366.png","frames":{ +"biaoti_4366":{"x":663,"y":277,"w":214,"h":44,"offX":0,"offY":0,"sourceW":214,"sourceH":44}, +"banner_4366vip":{"x":1,"y":139,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"banner_4366":{"x":1,"y":277,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}, +"btn_smczx":{"x":962,"y":1,"w":27,"h":27,"offX":16,"offY":16,"sourceW":60,"sourceH":60}, +"t_lijichongzhi":{"x":862,"y":1,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"banner_qqdating1":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}}} \ No newline at end of file diff --git a/resource_Publish/assets/4366/fuli4366.png b/resource_Publish/assets/4366/fuli4366.png new file mode 100644 index 0000000..306930b Binary files /dev/null and b/resource_Publish/assets/4366/fuli4366.png differ diff --git a/resource_Publish/assets/4366/qqcode.png b/resource_Publish/assets/4366/qqcode.png new file mode 100644 index 0000000..d3a9730 Binary files /dev/null and b/resource_Publish/assets/4366/qqcode.png differ diff --git a/resource_Publish/assets/4366/saomachongzhi.png b/resource_Publish/assets/4366/saomachongzhi.png new file mode 100644 index 0000000..5b1119a Binary files /dev/null and b/resource_Publish/assets/4366/saomachongzhi.png differ diff --git a/resource_Publish/assets/4366/weixincode_qq.png b/resource_Publish/assets/4366/weixincode_qq.png new file mode 100644 index 0000000..869cf12 Binary files /dev/null and b/resource_Publish/assets/4366/weixincode_qq.png differ diff --git a/resource_Publish/assets/7game/banner_7youvip.png b/resource_Publish/assets/7game/banner_7youvip.png new file mode 100644 index 0000000..68ab97e Binary files /dev/null and b/resource_Publish/assets/7game/banner_7youvip.png differ diff --git a/resource_Publish/assets/7game/bg_7youjqfuli.png b/resource_Publish/assets/7game/bg_7youjqfuli.png new file mode 100644 index 0000000..c4cb171 Binary files /dev/null and b/resource_Publish/assets/7game/bg_7youjqfuli.png differ diff --git a/resource_Publish/assets/7game/wx_bg_7youxi.png b/resource_Publish/assets/7game/wx_bg_7youxi.png new file mode 100644 index 0000000..b51dd4a Binary files /dev/null and b/resource_Publish/assets/7game/wx_bg_7youxi.png differ diff --git a/resource_Publish/assets/Button/button_down.png b/resource_Publish/assets/Button/button_down.png new file mode 100644 index 0000000..c3f282c Binary files /dev/null and b/resource_Publish/assets/Button/button_down.png differ diff --git a/resource_Publish/assets/Button/button_up.png b/resource_Publish/assets/Button/button_up.png new file mode 100644 index 0000000..e4c9bcf Binary files /dev/null and b/resource_Publish/assets/Button/button_up.png differ diff --git a/resource_Publish/assets/CheckBox/checkbox_select_disabled.png b/resource_Publish/assets/CheckBox/checkbox_select_disabled.png new file mode 100644 index 0000000..0ec2b28 Binary files /dev/null and b/resource_Publish/assets/CheckBox/checkbox_select_disabled.png differ diff --git a/resource_Publish/assets/CheckBox/checkbox_select_down.png b/resource_Publish/assets/CheckBox/checkbox_select_down.png new file mode 100644 index 0000000..6576d4d Binary files /dev/null and b/resource_Publish/assets/CheckBox/checkbox_select_down.png differ diff --git a/resource_Publish/assets/CheckBox/checkbox_select_up.png b/resource_Publish/assets/CheckBox/checkbox_select_up.png new file mode 100644 index 0000000..cd3af18 Binary files /dev/null and b/resource_Publish/assets/CheckBox/checkbox_select_up.png differ diff --git a/resource_Publish/assets/CheckBox/checkbox_unselect.png b/resource_Publish/assets/CheckBox/checkbox_unselect.png new file mode 100644 index 0000000..365c9c7 Binary files /dev/null and b/resource_Publish/assets/CheckBox/checkbox_unselect.png differ diff --git a/resource_Publish/assets/CreateRole/createRole.json b/resource_Publish/assets/CreateRole/createRole.json new file mode 100644 index 0000000..3a331f3 --- /dev/null +++ b/resource_Publish/assets/CreateRole/createRole.json @@ -0,0 +1,17 @@ +{"file":"createRole.png","frames":{ +"login_btn":{"x":300,"y":1,"w":297,"h":129,"offX":0,"offY":0,"sourceW":297,"sourceH":129}, +"login_xuanzhong":{"x":944,"y":94,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"create_btn_fanhui":{"x":944,"y":1,"w":78,"h":91,"offX":0,"offY":0,"sourceW":78,"sourceH":91}, +"login_nv_2":{"x":231,"y":132,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_zs_1":{"x":116,"y":132,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_zs_2":{"x":1,"y":132,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_ds_1":{"x":829,"y":118,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_ds_2":{"x":714,"y":118,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_fs_1":{"x":599,"y":118,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_fs_2":{"x":829,"y":1,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_nan_1":{"x":714,"y":1,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_nan_2":{"x":599,"y":1,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"login_nv_1":{"x":346,"y":132,"w":113,"h":115,"offX":0,"offY":0,"sourceW":114,"sourceH":115}, +"avatar_bg":{"x":461,"y":132,"w":91,"h":96,"offX":0,"offY":0,"sourceW":91,"sourceH":96}, +"login_suiji":{"x":554,"y":132,"w":33,"h":37,"offX":0,"offY":0,"sourceW":33,"sourceH":37}, +"login_btn1":{"x":1,"y":1,"w":297,"h":129,"offX":0,"offY":0,"sourceW":297,"sourceH":129}}} \ No newline at end of file diff --git a/resource_Publish/assets/CreateRole/createRole.png b/resource_Publish/assets/CreateRole/createRole.png new file mode 100644 index 0000000..dc50da3 Binary files /dev/null and b/resource_Publish/assets/CreateRole/createRole.png differ diff --git a/resource_Publish/assets/CreateRole/login_bg1.jpg b/resource_Publish/assets/CreateRole/login_bg1.jpg new file mode 100644 index 0000000..45dea0e Binary files /dev/null and b/resource_Publish/assets/CreateRole/login_bg1.jpg differ diff --git a/resource_Publish/assets/CreateRole/login_bg2.jpg b/resource_Publish/assets/CreateRole/login_bg2.jpg new file mode 100644 index 0000000..bc0f38e Binary files /dev/null and b/resource_Publish/assets/CreateRole/login_bg2.jpg differ diff --git a/resource_Publish/assets/CrossServer/CrossServer.json b/resource_Publish/assets/CrossServer/CrossServer.json new file mode 100644 index 0000000..65ef7ed --- /dev/null +++ b/resource_Publish/assets/CrossServer/CrossServer.json @@ -0,0 +1,39 @@ +{"file":"CrossServer.png","frames":{ +"kf_cy_gsj":{"x":204,"y":200,"w":69,"h":26,"offX":1,"offY":3,"sourceW":72,"sourceH":30}, +"kf_mb_dyvf":{"x":987,"y":161,"w":32,"h":120,"offX":4,"offY":3,"sourceW":41,"sourceH":128}, +"kf_mb_dynd":{"x":432,"y":166,"w":31,"h":122,"offX":4,"offY":2,"sourceW":41,"sourceH":128}, +"kf_cy_bg2":{"x":533,"y":1,"w":385,"h":32,"offX":0,"offY":0,"sourceW":385,"sourceH":32}, +"kf_fanye_xq1":{"x":327,"y":200,"w":24,"h":54,"offX":0,"offY":9,"sourceW":24,"sourceH":72}, +"kf_cyboss_hp2":{"x":524,"y":206,"w":25,"h":17,"offX":0,"offY":0,"sourceW":25,"sourceH":17}, +"kf_cyjl_key":{"x":1000,"y":32,"w":22,"h":21,"offX":0,"offY":0,"sourceW":22,"sourceH":21}, +"kf_mb_dyvz":{"x":919,"y":161,"w":32,"h":123,"offX":4,"offY":2,"sourceW":41,"sourceH":128}, +"kf_cy_cyj":{"x":63,"y":200,"w":69,"h":29,"offX":1,"offY":1,"sourceW":72,"sourceH":30}, +"kf_cy_bg6":{"x":665,"y":136,"w":49,"h":102,"offX":0,"offY":0,"sourceW":49,"sourceH":102}, +"kf_fanye_bg1":{"x":808,"y":136,"w":39,"h":113,"offX":1,"offY":1,"sourceW":40,"sourceH":114}, +"kf_kfzk":{"x":1,"y":117,"w":173,"h":47,"offX":0,"offY":0,"sourceW":173,"sourceH":47}, +"kf_kfmb_bg1":{"x":877,"y":85,"w":40,"h":189,"offX":0,"offY":0,"sourceW":40,"sourceH":189}, +"kf_mb_dyvd":{"x":953,"y":161,"w":32,"h":122,"offX":4,"offY":2,"sourceW":41,"sourceH":128}, +"kf_cyjl_frame1":{"x":1,"y":200,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"kf_kfsl":{"x":348,"y":117,"w":167,"h":47,"offX":0,"offY":0,"sourceW":167,"sourceH":47}, +"kf_kfmb":{"x":704,"y":85,"w":171,"h":49,"offX":0,"offY":0,"sourceW":171,"sourceH":49}, +"kf_fanye_bg2":{"x":767,"y":136,"w":39,"h":113,"offX":1,"offY":1,"sourceW":40,"sourceH":114}, +"kf_mb_dynz":{"x":399,"y":166,"w":31,"h":123,"offX":4,"offY":2,"sourceW":41,"sourceH":128}, +"kf_kfphb":{"x":787,"y":35,"w":211,"h":48,"offX":0,"offY":0,"sourceW":211,"sourceH":48}, +"kf_cy_bg4":{"x":716,"y":136,"w":49,"h":102,"offX":0,"offY":0,"sourceW":49,"sourceH":102}, +"kf_jdt1":{"x":1,"y":166,"w":396,"h":18,"offX":0,"offY":0,"sourceW":396,"sourceH":18}, +"kf_fanye_phb1":{"x":849,"y":136,"w":24,"h":72,"offX":0,"offY":0,"sourceW":24,"sourceH":72}, +"kf_cyjl_frame2":{"x":517,"y":130,"w":74,"h":74,"offX":0,"offY":0,"sourceW":74,"sourceH":74}, +"kf_cy_cysl":{"x":920,"y":1,"w":96,"h":29,"offX":0,"offY":0,"sourceW":96,"sourceH":29}, +"kf_fanye_xq2":{"x":301,"y":200,"w":24,"h":54,"offX":0,"offY":9,"sourceW":24,"sourceH":72}, +"kf_fanye_hd2":{"x":498,"y":206,"w":24,"h":52,"offX":0,"offY":9,"sourceW":24,"sourceH":72}, +"kf_cyboss_hp1":{"x":1,"y":1,"w":530,"h":114,"offX":0,"offY":0,"sourceW":530,"sourceH":114}, +"kf_fanye_hd1":{"x":353,"y":200,"w":24,"h":52,"offX":0,"offY":9,"sourceW":24,"sourceH":72}, +"kf_mb_dynf":{"x":465,"y":166,"w":31,"h":120,"offX":4,"offY":3,"sourceW":41,"sourceH":128}, +"kf_fanye_phb2":{"x":275,"y":200,"w":24,"h":72,"offX":0,"offY":0,"sourceW":24,"sourceH":72}, +"kf_kfxq":{"x":533,"y":78,"w":169,"h":50,"offX":0,"offY":0,"sourceW":169,"sourceH":50}, +"kf_cy_bg3":{"x":533,"y":35,"w":252,"h":41,"offX":0,"offY":0,"sourceW":252,"sourceH":41}, +"kf_cy_ydj":{"x":134,"y":200,"w":68,"h":29,"offX":1,"offY":1,"sourceW":72,"sourceH":30}, +"kf_kfzc":{"x":176,"y":117,"w":170,"h":47,"offX":0,"offY":0,"sourceW":170,"sourceH":47}, +"kf_jdt2":{"x":1,"y":186,"w":393,"h":12,"offX":0,"offY":0,"sourceW":393,"sourceH":12}, +"icon_qgs":{"x":593,"y":130,"w":70,"h":74,"offX":15,"offY":3,"sourceW":99,"sourceH":78}, +"icon_gjsl":{"x":919,"y":85,"w":90,"h":74,"offX":6,"offY":3,"sourceW":99,"sourceH":78}}} \ No newline at end of file diff --git a/resource_Publish/assets/CrossServer/CrossServer.png b/resource_Publish/assets/CrossServer/CrossServer.png new file mode 100644 index 0000000..06daeef Binary files /dev/null and b/resource_Publish/assets/CrossServer/CrossServer.png differ diff --git a/resource_Publish/assets/CrossServer/kf_bg1.png b/resource_Publish/assets/CrossServer/kf_bg1.png new file mode 100644 index 0000000..2bdf9a7 Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_bg1.png differ diff --git a/resource_Publish/assets/CrossServer/kf_cy_bg1.png b/resource_Publish/assets/CrossServer/kf_cy_bg1.png new file mode 100644 index 0000000..fe990fa Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_cy_bg1.png differ diff --git a/resource_Publish/assets/CrossServer/kf_cy_bg5.png b/resource_Publish/assets/CrossServer/kf_cy_bg5.png new file mode 100644 index 0000000..437af59 Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_cy_bg5.png differ diff --git a/resource_Publish/assets/CrossServer/kf_cyjl_bg1.png b/resource_Publish/assets/CrossServer/kf_cyjl_bg1.png new file mode 100644 index 0000000..645349b Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_cyjl_bg1.png differ diff --git a/resource_Publish/assets/CrossServer/kf_kfmb_bg.png b/resource_Publish/assets/CrossServer/kf_kfmb_bg.png new file mode 100644 index 0000000..1619011 Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_kfmb_bg.png differ diff --git a/resource_Publish/assets/CrossServer/kf_phb_bg.png b/resource_Publish/assets/CrossServer/kf_phb_bg.png new file mode 100644 index 0000000..b392f29 Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_phb_bg.png differ diff --git a/resource_Publish/assets/CrossServer/kf_xq_bg.png b/resource_Publish/assets/CrossServer/kf_xq_bg.png new file mode 100644 index 0000000..c62e012 Binary files /dev/null and b/resource_Publish/assets/CrossServer/kf_xq_bg.png differ diff --git a/resource_Publish/assets/ItemRenderer/selected.png b/resource_Publish/assets/ItemRenderer/selected.png new file mode 100644 index 0000000..ff39774 Binary files /dev/null and b/resource_Publish/assets/ItemRenderer/selected.png differ diff --git a/resource_Publish/assets/Panel/border.png b/resource_Publish/assets/Panel/border.png new file mode 100644 index 0000000..f8db3c6 Binary files /dev/null and b/resource_Publish/assets/Panel/border.png differ diff --git a/resource_Publish/assets/Panel/header.png b/resource_Publish/assets/Panel/header.png new file mode 100644 index 0000000..88b2d1d Binary files /dev/null and b/resource_Publish/assets/Panel/header.png differ diff --git a/resource_Publish/assets/ProgressBar/thumb_pb.png b/resource_Publish/assets/ProgressBar/thumb_pb.png new file mode 100644 index 0000000..280cd19 Binary files /dev/null and b/resource_Publish/assets/ProgressBar/thumb_pb.png differ diff --git a/resource_Publish/assets/ProgressBar/track_pb.png b/resource_Publish/assets/ProgressBar/track_pb.png new file mode 100644 index 0000000..9b0df99 Binary files /dev/null and b/resource_Publish/assets/ProgressBar/track_pb.png differ diff --git a/resource_Publish/assets/RadioButton/radiobutton_select_disabled.png b/resource_Publish/assets/RadioButton/radiobutton_select_disabled.png new file mode 100644 index 0000000..6015fdc Binary files /dev/null and b/resource_Publish/assets/RadioButton/radiobutton_select_disabled.png differ diff --git a/resource_Publish/assets/RadioButton/radiobutton_select_down.png b/resource_Publish/assets/RadioButton/radiobutton_select_down.png new file mode 100644 index 0000000..6015fdc Binary files /dev/null and b/resource_Publish/assets/RadioButton/radiobutton_select_down.png differ diff --git a/resource_Publish/assets/RadioButton/radiobutton_select_up.png b/resource_Publish/assets/RadioButton/radiobutton_select_up.png new file mode 100644 index 0000000..d1f699e Binary files /dev/null and b/resource_Publish/assets/RadioButton/radiobutton_select_up.png differ diff --git a/resource_Publish/assets/RadioButton/radiobutton_unselect.png b/resource_Publish/assets/RadioButton/radiobutton_unselect.png new file mode 100644 index 0000000..1d66645 Binary files /dev/null and b/resource_Publish/assets/RadioButton/radiobutton_unselect.png differ diff --git a/resource_Publish/assets/ScrollBar/roundthumb.png b/resource_Publish/assets/ScrollBar/roundthumb.png new file mode 100644 index 0000000..6a410ae Binary files /dev/null and b/resource_Publish/assets/ScrollBar/roundthumb.png differ diff --git a/resource_Publish/assets/ScrollBar/track_sb.png b/resource_Publish/assets/ScrollBar/track_sb.png new file mode 100644 index 0000000..512028e Binary files /dev/null and b/resource_Publish/assets/ScrollBar/track_sb.png differ diff --git a/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.json b/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.json new file mode 100644 index 0000000..bb46d42 --- /dev/null +++ b/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.json @@ -0,0 +1,8 @@ +{"file":"ShaChengStarcraft.png","frames":{ +"sbk_bg2":{"x":1,"y":219,"w":173,"h":49,"offX":0,"offY":0,"sourceW":173,"sourceH":49}, +"sbk_czch1":{"x":1,"y":270,"w":128,"h":40,"offX":0,"offY":0,"sourceW":128,"sourceH":40}, +"sbk_czch2":{"x":131,"y":270,"w":110,"h":32,"offX":0,"offY":0,"sourceW":110,"sourceH":32}, +"sbk_czp1":{"x":1,"y":1,"w":127,"h":216,"offX":0,"offY":0,"sourceW":127,"sourceH":216}, +"sbk_czp2":{"x":130,"y":1,"w":91,"h":206,"offX":0,"offY":0,"sourceW":91,"sourceH":206}, +"sbk_jlcz":{"x":131,"y":304,"w":101,"h":29,"offX":0,"offY":0,"sourceW":101,"sourceH":29}, +"sbk_jlhd":{"x":1,"y":312,"w":98,"h":28,"offX":0,"offY":0,"sourceW":98,"sourceH":28}}} \ No newline at end of file diff --git a/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.png b/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.png new file mode 100644 index 0000000..70c8fde Binary files /dev/null and b/resource_Publish/assets/ShaChengStarcraft/ShaChengStarcraft.png differ diff --git a/resource_Publish/assets/ShaChengStarcraft/sbk_bg.png b/resource_Publish/assets/ShaChengStarcraft/sbk_bg.png new file mode 100644 index 0000000..7c324e0 Binary files /dev/null and b/resource_Publish/assets/ShaChengStarcraft/sbk_bg.png differ diff --git a/resource_Publish/assets/Slider/thumb.png b/resource_Publish/assets/Slider/thumb.png new file mode 100644 index 0000000..a8c76e0 Binary files /dev/null and b/resource_Publish/assets/Slider/thumb.png differ diff --git a/resource_Publish/assets/Slider/track.png b/resource_Publish/assets/Slider/track.png new file mode 100644 index 0000000..512028e Binary files /dev/null and b/resource_Publish/assets/Slider/track.png differ diff --git a/resource_Publish/assets/Slider/tracklight.png b/resource_Publish/assets/Slider/tracklight.png new file mode 100644 index 0000000..6a410ae Binary files /dev/null and b/resource_Publish/assets/Slider/tracklight.png differ diff --git a/resource_Publish/assets/SoldierSoul/SoldierSoul.json b/resource_Publish/assets/SoldierSoul/SoldierSoul.json new file mode 100644 index 0000000..d0befe0 --- /dev/null +++ b/resource_Publish/assets/SoldierSoul/SoldierSoul.json @@ -0,0 +1,28 @@ +{"file":"SoldierSoul.png","frames":{ +"sw_bh_bhjj2":{"x":245,"y":218,"w":24,"h":89,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_mc2":{"x":149,"y":358,"w":86,"h":23,"offX":0,"offY":0,"sourceW":86,"sourceH":23}, +"sw_bh_dj10":{"x":219,"y":309,"w":22,"h":23,"offX":1,"offY":1,"sourceW":24,"sourceH":24}, +"sw_bh_icon0":{"x":149,"y":97,"w":124,"h":119,"offX":0,"offY":0,"sourceW":124,"sourceH":119}, +"sw_bh_1":{"x":76,"y":97,"w":71,"h":392,"offX":2,"offY":0,"sourceW":77,"sourceH":412}, +"sw_bh_bhxl1":{"x":487,"y":183,"w":24,"h":89,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_4":{"x":1,"y":97,"w":73,"h":392,"offX":1,"offY":1,"sourceW":77,"sourceH":412}, +"sw_bh_bhsj2":{"x":487,"y":1,"w":24,"h":89,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"sw_bh_Lv_4":{"x":306,"y":97,"w":27,"h":370,"offX":0,"offY":0,"sourceW":27,"sourceH":370}, +"sw_bh_mc3":{"x":335,"y":368,"w":86,"h":23,"offX":0,"offY":0,"sourceW":86,"sourceH":23}, +"sw_bh_icon2":{"x":149,"y":288,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"sw_bh_bhxl2":{"x":487,"y":92,"w":24,"h":89,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_bhsx1":{"x":487,"y":274,"w":24,"h":88,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_bhsx2":{"x":405,"y":278,"w":24,"h":88,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_icon5":{"x":335,"y":97,"w":111,"h":88,"offX":0,"offY":0,"sourceW":111,"sourceH":88}, +"sw_bh_bhjj1":{"x":405,"y":187,"w":24,"h":89,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"sw_bh_icon3":{"x":149,"y":218,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"sw_bh_mc1":{"x":335,"y":393,"w":85,"h":23,"offX":0,"offY":0,"sourceW":85,"sourceH":23}, +"sw_bh_bhsj1":{"x":219,"y":218,"w":24,"h":89,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"sw_bh_dj12":{"x":431,"y":187,"w":9,"h":22,"offX":7,"offY":1,"sourceW":24,"sourceH":24}, +"sw_bh_mc4":{"x":149,"y":383,"w":85,"h":23,"offX":0,"offY":0,"sourceW":85,"sourceH":23}, +"sw_bh_dj11":{"x":431,"y":211,"w":9,"h":22,"offX":7,"offY":1,"sourceW":24,"sourceH":24}, +"sw_bh_2":{"x":275,"y":97,"w":29,"h":389,"offX":44,"offY":3,"sourceW":77,"sourceH":412}, +"sw_bh_icon1":{"x":335,"y":257,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"sw_bh_icon4":{"x":335,"y":187,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"sw_bh_bg2":{"x":1,"y":1,"w":445,"h":94,"offX":0,"offY":0,"sourceW":445,"sourceH":94}, +"sw_bh_3":{"x":448,"y":1,"w":37,"h":407,"offX":39,"offY":3,"sourceW":77,"sourceH":412}}} \ No newline at end of file diff --git a/resource_Publish/assets/SoldierSoul/SoldierSoul.png b/resource_Publish/assets/SoldierSoul/SoldierSoul.png new file mode 100644 index 0000000..5ba90bb Binary files /dev/null and b/resource_Publish/assets/SoldierSoul/SoldierSoul.png differ diff --git a/resource_Publish/assets/SoldierSoul/sw_bh_bg1.png b/resource_Publish/assets/SoldierSoul/sw_bh_bg1.png new file mode 100644 index 0000000..c674a30 Binary files /dev/null and b/resource_Publish/assets/SoldierSoul/sw_bh_bg1.png differ diff --git a/resource_Publish/assets/ToggleSwitch/handle.png b/resource_Publish/assets/ToggleSwitch/handle.png new file mode 100644 index 0000000..abbfe9b Binary files /dev/null and b/resource_Publish/assets/ToggleSwitch/handle.png differ diff --git a/resource_Publish/assets/ToggleSwitch/off.png b/resource_Publish/assets/ToggleSwitch/off.png new file mode 100644 index 0000000..e677d85 Binary files /dev/null and b/resource_Publish/assets/ToggleSwitch/off.png differ diff --git a/resource_Publish/assets/ToggleSwitch/on.png b/resource_Publish/assets/ToggleSwitch/on.png new file mode 100644 index 0000000..51810be Binary files /dev/null and b/resource_Publish/assets/ToggleSwitch/on.png differ diff --git a/resource_Publish/assets/TradeLine/TradeLine.json b/resource_Publish/assets/TradeLine/TradeLine.json new file mode 100644 index 0000000..95d5cc7 --- /dev/null +++ b/resource_Publish/assets/TradeLine/TradeLine.json @@ -0,0 +1,17 @@ +{"file":"TradeLine.png","frames":{ +"trade_chakan":{"x":1721,"y":41,"w":27,"h":32,"offX":0,"offY":0,"sourceW":27,"sourceH":32}, +"trade_zt2":{"x":1721,"y":1,"w":95,"h":38,"offX":0,"offY":0,"sourceW":95,"sourceH":38}, +"trade_zt1":{"x":1619,"y":1,"w":100,"h":48,"offX":0,"offY":0,"sourceW":100,"sourceH":48}, +"trade_mengban":{"x":1431,"y":1,"w":84,"h":84,"offX":0,"offY":0,"sourceW":84,"sourceH":84}, +"trade_bg1":{"x":1,"y":1,"w":874,"h":473,"offX":0,"offY":6,"sourceW":874,"sourceH":479}, +"kbg_trade":{"x":877,"y":1,"w":413,"h":566,"offX":0,"offY":0,"sourceW":413,"sourceH":566}, +"trade_iconk":{"x":1292,"y":1,"w":137,"h":120,"offX":0,"offY":0,"sourceW":137,"sourceH":120}, +"trade_zt3":{"x":1517,"y":1,"w":100,"h":48,"offX":0,"offY":0,"sourceW":100,"sourceH":48}, +"jishou_tab_buy1":{"x":1926,"y":1,"w":25,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"jishou_tab_buy2":{"x":2007,"y":1,"w":25,"h":55,"offX":3,"offY":22,"sourceW":39,"sourceH":111}, +"jishou_tab_isSell1":{"x":1818,"y":1,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"jishou_tab_isSell2":{"x":1899,"y":1,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"jishou_tab_receive1":{"x":1872,"y":1,"w":25,"h":91,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"jishou_tab_receive2":{"x":1845,"y":1,"w":25,"h":91,"offX":3,"offY":5,"sourceW":39,"sourceH":111}, +"jishou_tab_sell1":{"x":1980,"y":1,"w":25,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"jishou_tab_sell2":{"x":1953,"y":1,"w":25,"h":55,"offX":3,"offY":21,"sourceW":39,"sourceH":111}}} \ No newline at end of file diff --git a/resource_Publish/assets/TradeLine/TradeLine.png b/resource_Publish/assets/TradeLine/TradeLine.png new file mode 100644 index 0000000..35e406c Binary files /dev/null and b/resource_Publish/assets/TradeLine/TradeLine.png differ diff --git a/resource_Publish/assets/Warehouse/Warehouse.json b/resource_Publish/assets/Warehouse/Warehouse.json new file mode 100644 index 0000000..b6cfd86 --- /dev/null +++ b/resource_Publish/assets/Warehouse/Warehouse.json @@ -0,0 +1,15 @@ +{"file":"Warehouse.png","frames":{ +"cangku_tabt1_1":{"x":28,"y":108,"w":25,"h":7,"offX":6,"offY":30,"sourceW":36,"sourceH":81}, +"cangku_tabt6_2":{"x":77,"y":79,"w":25,"h":24,"offX":6,"offY":22,"sourceW":36,"sourceH":81}, +"cangku_tabt5_2":{"x":77,"y":53,"w":25,"h":24,"offX":6,"offY":22,"sourceW":36,"sourceH":81}, +"cangku_tabt4_2":{"x":104,"y":1,"w":22,"h":25,"offX":8,"offY":21,"sourceW":36,"sourceH":81}, +"cangku_tabt1_2":{"x":1,"y":108,"w":25,"h":7,"offX":6,"offY":30,"sourceW":36,"sourceH":81}, +"cangku_tabt5_1":{"x":77,"y":27,"w":25,"h":24,"offX":6,"offY":22,"sourceW":36,"sourceH":81}, +"cangku_tabt2_1":{"x":82,"y":105,"w":25,"h":19,"offX":6,"offY":24,"sourceW":36,"sourceH":81}, +"cangku_tabt3_1":{"x":28,"y":84,"w":25,"h":22,"offX":6,"offY":22,"sourceW":36,"sourceH":81}, +"cangku_tabt4_1":{"x":104,"y":28,"w":22,"h":25,"offX":8,"offY":21,"sourceW":36,"sourceH":81}, +"cangku_tabt3_2":{"x":1,"y":84,"w":25,"h":22,"offX":6,"offY":22,"sourceW":36,"sourceH":81}, +"cangku_tab2":{"x":39,"y":1,"w":36,"h":81,"offX":0,"offY":0,"sourceW":36,"sourceH":81}, +"cangku_tabt2_2":{"x":55,"y":105,"w":25,"h":19,"offX":6,"offY":24,"sourceW":36,"sourceH":81}, +"cangku_tab1":{"x":1,"y":1,"w":36,"h":81,"offX":0,"offY":0,"sourceW":36,"sourceH":81}, +"cangku_tabt6_1":{"x":77,"y":1,"w":25,"h":24,"offX":6,"offY":22,"sourceW":36,"sourceH":81}}} \ No newline at end of file diff --git a/resource_Publish/assets/Warehouse/Warehouse.png b/resource_Publish/assets/Warehouse/Warehouse.png new file mode 100644 index 0000000..0c7ff81 Binary files /dev/null and b/resource_Publish/assets/Warehouse/Warehouse.png differ diff --git a/resource_Publish/assets/Warehouse/cangku_bg.png b/resource_Publish/assets/Warehouse/cangku_bg.png new file mode 100644 index 0000000..2a9a6dd Binary files /dev/null and b/resource_Publish/assets/Warehouse/cangku_bg.png differ diff --git a/resource_Publish/assets/YY/YYLobby.json b/resource_Publish/assets/YY/YYLobby.json new file mode 100644 index 0000000..31f759e --- /dev/null +++ b/resource_Publish/assets/YY/YYLobby.json @@ -0,0 +1,39 @@ +{"file":"YYLobby.png","frames":{ +"YY_btn_ljkt":{"x":881,"y":1,"w":118,"h":48,"offX":0,"offY":0,"sourceW":118,"sourceH":48}, +"YY_btn_ljlq2":{"x":681,"y":389,"w":176,"h":84,"offX":0,"offY":0,"sourceW":176,"sourceH":85}, +"YY_tab1":{"x":928,"y":51,"w":45,"h":107,"offX":0,"offY":0,"sourceW":45,"sourceH":107}, +"YY_tab2":{"x":881,"y":51,"w":45,"h":107,"offX":0,"offY":0,"sourceW":45,"sourceH":107}, +"YY_hongxian":{"x":881,"y":270,"w":139,"h":1,"offX":0,"offY":0,"sourceW":139,"sourceH":1}, +"YY_bt1":{"x":418,"y":489,"w":232,"h":37,"offX":0,"offY":0,"sourceW":232,"sourceH":37}, +"YY_banner":{"x":1,"y":152,"w":878,"h":149,"offX":0,"offY":0,"sourceW":878,"sourceH":149}, +"YY_t_hy3":{"x":917,"y":232,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"kf_fanye_rcfl1":{"x":994,"y":184,"w":22,"h":83,"offX":1,"offY":2,"sourceW":24,"sourceH":86}, +"YY_bg5":{"x":1,"y":489,"w":181,"h":55,"offX":0,"offY":0,"sourceW":181,"sourceH":55}, +"YY_banner2":{"x":1,"y":303,"w":678,"h":149,"offX":0,"offY":0,"sourceW":678,"sourceH":149}, +"YY_t_xslb":{"x":599,"y":535,"w":221,"h":29,"offX":0,"offY":0,"sourceW":221,"sourceH":29}, +"YY_bg4":{"x":671,"y":475,"w":196,"h":58,"offX":2,"offY":0,"sourceW":200,"sourceH":58}, +"CW_bg":{"x":1,"y":454,"w":668,"h":33,"offX":0,"offY":0,"sourceW":668,"sourceH":33}, +"YY_t_hy2":{"x":933,"y":210,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"CW_banner":{"x":1,"y":1,"w":878,"h":149,"offX":0,"offY":0,"sourceW":878,"sourceH":149}, +"YY_t_hydj":{"x":859,"y":303,"w":164,"h":26,"offX":0,"offY":0,"sourceW":164,"sourceH":26}, +"YY_t_hy1":{"x":949,"y":232,"w":10,"h":20,"offX":1,"offY":0,"sourceW":15,"sourceH":20}, +"kf_fanye_rcfl2":{"x":1001,"y":1,"w":22,"h":83,"offX":1,"offY":2,"sourceW":24,"sourceH":86}, +"YY_t_hy6":{"x":1001,"y":108,"w":15,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"CW_t2":{"x":859,"y":331,"w":149,"h":22,"offX":0,"offY":0,"sourceW":149,"sourceH":22}, +"kf_fanye_xfhl1":{"x":968,"y":184,"w":24,"h":84,"offX":0,"offY":1,"sourceW":24,"sourceH":86}, +"YY_t_hy0":{"x":933,"y":232,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"YY_t_ljxz":{"x":881,"y":184,"w":85,"h":24,"offX":0,"offY":0,"sourceW":85,"sourceH":24}, +"CW_t3":{"x":881,"y":160,"w":131,"h":22,"offX":0,"offY":0,"sourceW":131,"sourceH":22}, +"YY_t_wkt":{"x":822,"y":535,"w":178,"h":26,"offX":0,"offY":0,"sourceW":178,"sourceH":26}, +"YY_btn_ljlq":{"x":681,"y":303,"w":176,"h":84,"offX":0,"offY":0,"sourceW":176,"sourceH":85}, +"CW_bt":{"x":418,"y":528,"w":179,"h":37,"offX":0,"offY":0,"sourceW":179,"sourceH":37}, +"logo_chaowan":{"x":881,"y":210,"w":34,"h":31,"offX":1,"offY":2,"sourceW":36,"sourceH":36}, +"YY_t_hy8":{"x":949,"y":210,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"CW_t1":{"x":599,"y":566,"w":261,"h":22,"offX":0,"offY":0,"sourceW":261,"sourceH":22}, +"YY_t_hy9":{"x":975,"y":137,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"YY_t_hy7":{"x":1001,"y":130,"w":15,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"YY_t_hy4":{"x":1001,"y":86,"w":15,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"YY_bt":{"x":184,"y":489,"w":232,"h":38,"offX":0,"offY":0,"sourceW":232,"sourceH":38}, +"WX_bt":{"x":184,"y":529,"w":182,"h":36,"offX":0,"offY":0,"sourceW":182,"sourceH":36}, +"YY_t_hy5":{"x":917,"y":210,"w":14,"h":20,"offX":0,"offY":0,"sourceW":15,"sourceH":20}, +"kf_fanye_xfhl2":{"x":975,"y":51,"w":24,"h":84,"offX":0,"offY":1,"sourceW":24,"sourceH":86}}} \ No newline at end of file diff --git a/resource_Publish/assets/YY/YYLobby.png b/resource_Publish/assets/YY/YYLobby.png new file mode 100644 index 0000000..c7b0c31 Binary files /dev/null and b/resource_Publish/assets/YY/YYLobby.png differ diff --git a/resource_Publish/assets/YY/YY_bg.png b/resource_Publish/assets/YY/YY_bg.png new file mode 100644 index 0000000..f95f121 Binary files /dev/null and b/resource_Publish/assets/YY/YY_bg.png differ diff --git a/resource_Publish/assets/YY/YY_bg2.png b/resource_Publish/assets/YY/YY_bg2.png new file mode 100644 index 0000000..627e9db Binary files /dev/null and b/resource_Publish/assets/YY/YY_bg2.png differ diff --git a/resource_Publish/assets/YY/YY_bg3.png b/resource_Publish/assets/YY/YY_bg3.png new file mode 100644 index 0000000..25512ef Binary files /dev/null and b/resource_Publish/assets/YY/YY_bg3.png differ diff --git a/resource_Publish/assets/YY/YY_bg6.png b/resource_Publish/assets/YY/YY_bg6.png new file mode 100644 index 0000000..d6acd0e Binary files /dev/null and b/resource_Publish/assets/YY/YY_bg6.png differ diff --git a/resource_Publish/assets/YY/wx_bg.png b/resource_Publish/assets/YY/wx_bg.png new file mode 100644 index 0000000..25b7532 Binary files /dev/null and b/resource_Publish/assets/YY/wx_bg.png differ diff --git a/resource_Publish/assets/achievement/achievement.json b/resource_Publish/assets/achievement/achievement.json new file mode 100644 index 0000000..77f0e86 --- /dev/null +++ b/resource_Publish/assets/achievement/achievement.json @@ -0,0 +1,10 @@ +{"file":"achievement.png","frames":{ +"ach_bg1":{"x":1,"y":1,"w":521,"h":496,"offX":0,"offY":0,"sourceW":521,"sourceH":496}, +"ach_jiantou":{"x":760,"y":1,"w":58,"h":49,"offX":0,"offY":0,"sourceW":58,"sourceH":49}, +"ach_namebg":{"x":820,"y":1,"w":118,"h":23,"offX":0,"offY":0,"sourceW":118,"sourceH":23}, +"ach_sjtj":{"x":760,"y":52,"w":108,"h":23,"offX":0,"offY":0,"sourceW":108,"sourceH":23}, +"ach_sjxh":{"x":870,"y":52,"w":108,"h":23,"offX":0,"offY":0,"sourceW":108,"sourceH":23}, +"ach_xunzhangbg":{"x":524,"y":1,"w":137,"h":120,"offX":0,"offY":0,"sourceW":137,"sourceH":120}, +"ach_xzsj":{"x":820,"y":26,"w":109,"h":24,"offX":0,"offY":0,"sourceW":109,"sourceH":24}, +"ach_yidacheng":{"x":663,"y":1,"w":95,"h":68,"offX":0,"offY":0,"sourceW":95,"sourceH":68}, +"ach_zhuangshi":{"x":940,"y":1,"w":18,"h":17,"offX":0,"offY":0,"sourceW":18,"sourceH":17}}} \ No newline at end of file diff --git a/resource_Publish/assets/achievement/achievement.png b/resource_Publish/assets/achievement/achievement.png new file mode 100644 index 0000000..6a4b76e Binary files /dev/null and b/resource_Publish/assets/achievement/achievement.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/Act_hdbg2_clfb.png b/resource_Publish/assets/activityCopies/activity12/Act_hdbg2_clfb.png new file mode 100644 index 0000000..cf8f998 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/Act_hdbg2_clfb.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_clfbbg_0.png b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_0.png new file mode 100644 index 0000000..9dbcf52 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_0.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_clfbbg_1.png b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_1.png new file mode 100644 index 0000000..ebe0b7e Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_1.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_clfbbg_2.png b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_2.png new file mode 100644 index 0000000..a55ed37 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_2.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_clfbbg_3.png b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_3.png new file mode 100644 index 0000000..a1db7a6 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_3.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_clfbbg_4.png b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_4.png new file mode 100644 index 0000000..6432bfc Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_clfbbg_4.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/act_zsrwbg1.png b/resource_Publish/assets/activityCopies/activity12/act_zsrwbg1.png new file mode 100644 index 0000000..b89a2c8 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/act_zsrwbg1.png differ diff --git a/resource_Publish/assets/activityCopies/activity12/activity12.json b/resource_Publish/assets/activityCopies/activity12/activity12.json new file mode 100644 index 0000000..f5e87d0 --- /dev/null +++ b/resource_Publish/assets/activityCopies/activity12/activity12.json @@ -0,0 +1,2 @@ +{"file":"activity12.png","frames":{ +"act_clfbbg":{"x":1,"y":1,"w":493,"h":127,"offX":0,"offY":0,"sourceW":493,"sourceH":127}}} \ No newline at end of file diff --git a/resource_Publish/assets/activityCopies/activity12/activity12.png b/resource_Publish/assets/activityCopies/activity12/activity12.png new file mode 100644 index 0000000..4b82ae8 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity12/activity12.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_1.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_1.png new file mode 100644 index 0000000..9e68bc3 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_1.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png new file mode 100644 index 0000000..bcb076a Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png new file mode 100644 index 0000000..8ab6ce3 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png new file mode 100644 index 0000000..3af0c92 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png new file mode 100644 index 0000000..f515eed Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png differ diff --git a/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png new file mode 100644 index 0000000..28061d6 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_1.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_1.png new file mode 100644 index 0000000..ee81582 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_1.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_2.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_2.png new file mode 100644 index 0000000..6c01953 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_2.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png new file mode 100644 index 0000000..cce39b1 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png new file mode 100644 index 0000000..504a73b Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_scl.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_scl.png new file mode 100644 index 0000000..085cb95 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_scl.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png new file mode 100644 index 0000000..a2786de Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png new file mode 100644 index 0000000..ef9d03c Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png new file mode 100644 index 0000000..7d6da4f Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png new file mode 100644 index 0000000..ec463b8 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Act_hdk2.png b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdk2.png new file mode 100644 index 0000000..320f3bd Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Act_hdk2.png differ diff --git a/resource_Publish/assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png b/resource_Publish/assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png new file mode 100644 index 0000000..41decf8 Binary files /dev/null and b/resource_Publish/assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png differ diff --git a/resource_Publish/assets/activityCopies/activityCopies.json b/resource_Publish/assets/activityCopies/activityCopies.json new file mode 100644 index 0000000..2045c2b --- /dev/null +++ b/resource_Publish/assets/activityCopies/activityCopies.json @@ -0,0 +1,76 @@ +{"file":"activityCopies.png","frames":{ +"Act_biaoti_cjxg":{"x":835,"y":333,"w":130,"h":26,"offX":15,"offY":0,"sourceW":162,"sourceH":26}, +"Act_biaoti_2":{"x":447,"y":385,"w":74,"h":27,"offX":0,"offY":0,"sourceW":74,"sourceH":27}, +"Act_biaoti_yzwms":{"x":1,"y":167,"w":162,"h":25,"offX":0,"offY":1,"sourceW":162,"sourceH":26}, +"act_icon15":{"x":70,"y":265,"w":67,"h":63,"offX":0,"offY":8,"sourceW":72,"sourceH":72}, +"actpm_tab_jl2":{"x":260,"y":370,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"Act_biaoti_smdb":{"x":460,"y":358,"w":130,"h":25,"offX":15,"offY":1,"sourceW":162,"sourceH":26}, +"Act_dld_icon":{"x":916,"y":156,"w":80,"h":74,"offX":0,"offY":0,"sourceW":80,"sourceH":74}, +"act_icon7":{"x":960,"y":74,"w":63,"h":65,"offX":4,"offY":7,"sourceW":72,"sourceH":72}, +"Act_biaoti_scl":{"x":1,"y":384,"w":98,"h":25,"offX":15,"offY":0,"sourceW":130,"sourceH":25}, +"actpm_tab_pm1":{"x":962,"y":380,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"act_tab_passion2":{"x":139,"y":265,"w":26,"h":56,"offX":3,"offY":20,"sourceW":39,"sourceH":111}, +"actpm_tab_jl1":{"x":288,"y":370,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"Act_jlyl_bg":{"x":739,"y":200,"w":76,"h":73,"offX":0,"offY":0,"sourceW":76,"sourceH":73}, +"Act_mobai_biaotibg":{"x":1,"y":237,"w":173,"h":26,"offX":37,"offY":0,"sourceW":253,"sourceH":34}, +"act_icon11":{"x":468,"y":81,"w":67,"h":66,"offX":0,"offY":6,"sourceW":72,"sourceH":72}, +"act_tab_competitive1":{"x":649,"y":387,"w":26,"h":56,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"act_tab_daily2":{"x":761,"y":387,"w":25,"h":55,"offX":3,"offY":20,"sourceW":39,"sourceH":111}, +"Act_dld_pmmb":{"x":571,"y":81,"w":108,"h":106,"offX":0,"offY":0,"sourceW":108,"sourceH":106}, +"act_icon13":{"x":891,"y":232,"w":71,"h":68,"offX":0,"offY":4,"sourceW":72,"sourceH":72}, +"actpm_tab_pm2":{"x":990,"y":380,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"Act_biaoti_sjboss":{"x":707,"y":275,"w":150,"h":26,"offX":5,"offY":1,"sourceW":158,"sourceH":28}, +"act_icon5":{"x":643,"y":265,"w":62,"h":66,"offX":5,"offY":6,"sourceW":72,"sourceH":72}, +"Avt_sjjd_bg2":{"x":182,"y":81,"w":284,"h":67,"offX":0,"offY":0,"sourceW":284,"sourceH":67}, +"Act_biaoti_dcty":{"x":707,"y":303,"w":130,"h":27,"offX":13,"offY":0,"sourceW":158,"sourceH":28}, +"act_tab2":{"x":442,"y":1,"w":258,"h":78,"offX":0,"offY":0,"sourceW":258,"sourceH":78}, +"act_icon9":{"x":373,"y":293,"w":62,"h":62,"offX":5,"offY":9,"sourceW":72,"sourceH":72}, +"act_clfbt_2":{"x":840,"y":361,"w":120,"h":24,"offX":0,"offY":0,"sourceW":120,"sourceH":24}, +"y":{"x":681,"y":156,"w":233,"h":42,"offX":0,"offY":0,"sourceW":269,"sourceH":42}, +"act_tab_competitive2":{"x":677,"y":387,"w":26,"h":56,"offX":3,"offY":20,"sourceW":39,"sourceH":111}, +"Act_biaoti_1":{"x":707,"y":332,"w":126,"h":27,"offX":0,"offY":0,"sourceW":126,"sourceH":27}, +"act_tab_personal2":{"x":733,"y":387,"w":26,"h":56,"offX":3,"offY":20,"sourceW":39,"sourceH":111}, +"Act_biaoti_dxdb":{"x":330,"y":357,"w":128,"h":26,"offX":0,"offY":2,"sourceW":128,"sourceH":29}, +"act_tab3":{"x":702,"y":79,"w":256,"h":75,"offX":0,"offY":0,"sourceW":256,"sourceH":75}, +"Act_dld_djs":{"x":236,"y":194,"w":290,"h":26,"offX":0,"offY":0,"sourceW":290,"sourceH":26}, +"Act_jlyl":{"x":1,"y":359,"w":128,"h":23,"offX":0,"offY":0,"sourceW":128,"sourceH":23}, +"act_tab_personal1":{"x":705,"y":387,"w":26,"h":56,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"Act_biaoti_smsztz":{"x":528,"y":200,"w":209,"h":33,"offX":0,"offY":0,"sourceW":209,"sourceH":33}, +"actpm_tab_jf1":{"x":420,"y":385,"w":25,"h":92,"offX":3,"offY":3,"sourceW":39,"sourceH":111}, +"act_icon2":{"x":245,"y":278,"w":62,"h":62,"offX":5,"offY":10,"sourceW":72,"sourceH":72}, +"act_icon12":{"x":430,"y":222,"w":72,"h":69,"offX":0,"offY":3,"sourceW":72,"sourceH":72}, +"act_tab4":{"x":702,"y":1,"w":256,"h":76,"offX":0,"offY":0,"sourceW":256,"sourceH":76}, +"Act_dld_icon2":{"x":316,"y":385,"w":102,"h":23,"offX":0,"offY":0,"sourceW":102,"sourceH":23}, +"Act_chakan":{"x":812,"y":387,"w":31,"h":40,"offX":0,"offY":0,"sourceW":31,"sourceH":40}, +"Act_biaoti_sjjd":{"x":859,"y":302,"w":128,"h":29,"offX":0,"offY":0,"sourceW":128,"sourceH":29}, +"act_tab1":{"x":182,"y":1,"w":258,"h":78,"offX":0,"offY":0,"sourceW":258,"sourceH":78}, +"Act_biaoti_zsrw":{"x":70,"y":330,"w":128,"h":27,"offX":0,"offY":2,"sourceW":128,"sourceH":29}, +"act_tab_daily1":{"x":998,"y":141,"w":25,"h":55,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"act_icon4":{"x":176,"y":250,"w":67,"h":65,"offX":3,"offY":7,"sourceW":72,"sourceH":72}, +"act_icon6":{"x":960,"y":1,"w":63,"h":71,"offX":5,"offY":1,"sourceW":72,"sourceH":72}, +"Act_hdk1":{"x":964,"y":232,"w":52,"h":52,"offX":0,"offY":0,"sourceW":52,"sourceH":52}, +"act_tab_js2":{"x":231,"y":370,"w":27,"h":92,"offX":2,"offY":3,"sourceW":39,"sourceH":111}, +"act_icon16":{"x":1,"y":265,"w":67,"h":64,"offX":0,"offY":7,"sourceW":72,"sourceH":72}, +"Act_biaoti_smsz":{"x":501,"y":329,"w":128,"h":27,"offX":0,"offY":0,"sourceW":128,"sourceH":27}, +"act_hdjj":{"x":131,"y":370,"w":98,"h":28,"offX":0,"offY":0,"sourceW":98,"sourceH":28}, +"act_icon14":{"x":817,"y":200,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"Act_biaoti_sbkgc":{"x":245,"y":250,"w":162,"h":26,"offX":0,"offY":0,"sourceW":162,"sourceH":26}, +"Act_dld_pmbt":{"x":182,"y":150,"w":387,"h":42,"offX":0,"offY":0,"sourceW":387,"sourceH":42}, +"act_tab_passion1":{"x":537,"y":81,"w":26,"h":56,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"Act_pm_1":{"x":565,"y":387,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"act_icon10":{"x":504,"y":235,"w":68,"h":71,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"a":{"x":1,"y":194,"w":233,"h":41,"offX":0,"offY":1,"sourceW":269,"sourceH":42}, +"Act_biaoti_jjtgsj":{"x":236,"y":222,"w":192,"h":26,"offX":0,"offY":0,"sourceW":192,"sourceH":26}, +"actpm_tab_jf2":{"x":101,"y":384,"w":25,"h":92,"offX":3,"offY":3,"sourceW":39,"sourceH":111}, +"Act_gengduo":{"x":788,"y":387,"w":22,"h":60,"offX":0,"offY":0,"sourceW":22,"sourceH":60}, +"act_icon3":{"x":437,"y":293,"w":62,"h":62,"offX":5,"offY":10,"sourceW":72,"sourceH":72}, +"act_zsrwt_1":{"x":592,"y":361,"w":122,"h":24,"offX":0,"offY":0,"sourceW":122,"sourceH":24}, +"act_clfbt_1":{"x":716,"y":361,"w":122,"h":24,"offX":0,"offY":0,"sourceW":122,"sourceH":24}, +"Avt_sjjd_bg3":{"x":1,"y":1,"w":179,"h":164,"offX":0,"offY":0,"sourceW":179,"sourceH":164}, +"act_icon1":{"x":309,"y":278,"w":62,"h":62,"offX":5,"offY":10,"sourceW":72,"sourceH":72}, +"Act_pm_3":{"x":607,"y":387,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"Act_biaoti_clfb":{"x":200,"y":342,"w":128,"h":26,"offX":0,"offY":2,"sourceW":128,"sourceH":29}, +"Act_biaoti_jjdld":{"x":574,"y":235,"w":158,"h":28,"offX":0,"offY":0,"sourceW":158,"sourceH":28}, +"act_tab_js1":{"x":989,"y":286,"w":27,"h":92,"offX":2,"offY":3,"sourceW":39,"sourceH":111}, +"act_icon8":{"x":574,"y":265,"w":67,"h":62,"offX":2,"offY":9,"sourceW":72,"sourceH":72}, +"Act_pm_2":{"x":523,"y":385,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}}} \ No newline at end of file diff --git a/resource_Publish/assets/activityCopies/activityCopies.png b/resource_Publish/assets/activityCopies/activityCopies.png new file mode 100644 index 0000000..b11cd5c Binary files /dev/null and b/resource_Publish/assets/activityCopies/activityCopies.png differ diff --git a/resource_Publish/assets/activityCopies/mobai/Act_mobai_jsbg.png b/resource_Publish/assets/activityCopies/mobai/Act_mobai_jsbg.png new file mode 100644 index 0000000..2e593bb Binary files /dev/null and b/resource_Publish/assets/activityCopies/mobai/Act_mobai_jsbg.png differ diff --git a/resource_Publish/assets/actypay/actypay.json b/resource_Publish/assets/actypay/actypay.json new file mode 100644 index 0000000..fed90d3 --- /dev/null +++ b/resource_Publish/assets/actypay/actypay.json @@ -0,0 +1,23 @@ +{"file":"actypay.png","frames":{ +"apay_biaoti_jchd":{"x":519,"y":142,"w":171,"h":47,"offX":0,"offY":0,"sourceW":171,"sourceH":47}, +"biaoti_ganenjie":{"x":838,"y":142,"w":142,"h":56,"offX":0,"offY":0,"sourceW":142,"sourceH":56}, +"biaoti_guanggunjie":{"x":344,"y":191,"w":141,"h":56,"offX":0,"offY":0,"sourceW":141,"sourceH":56}, +"biaoti_wanshengjie":{"x":692,"y":142,"w":144,"h":56,"offX":0,"offY":0,"sourceW":144,"sourceH":56}, +"biaoti_shuangshiyi":{"x":661,"y":200,"w":142,"h":40,"offX":0,"offY":0,"sourceW":142,"sourceH":40}, +"biaoti_chongyangxianrui":{"x":181,"y":86,"w":190,"h":50,"offX":0,"offY":0,"sourceW":190,"sourceH":50}, +"biaoti_shuangshiqingdian":{"x":400,"y":31,"w":191,"h":53,"offX":0,"offY":0,"sourceW":191,"sourceH":53}, +"biaoti_zhufuguoqing":{"x":373,"y":86,"w":189,"h":50,"offX":0,"offY":0,"sourceW":189,"sourceH":50}, +"biaoti_zhongqiujiajie":{"x":352,"y":138,"w":165,"h":51,"offX":0,"offY":0,"sourceW":165,"sourceH":51}, +"festival_zm":{"x":1,"y":142,"w":171,"h":49,"offX":3,"offY":3,"sourceW":178,"sourceH":55}, +"festival_sx":{"x":564,"y":88,"w":180,"h":52,"offX":0,"offY":0,"sourceW":180,"sourceH":52}, +"festival_ql":{"x":181,"y":138,"w":169,"h":51,"offX":4,"offY":0,"sourceW":178,"sourceH":55}, +"apay_biaoti_kftz":{"x":174,"y":191,"w":168,"h":47,"offX":0,"offY":0,"sourceW":168,"sourceH":47}, +"festival_zn":{"x":773,"y":31,"w":175,"h":55,"offX":1,"offY":0,"sourceW":178,"sourceH":55}, +"hfhd_wenzi":{"x":487,"y":191,"w":172,"h":45,"offX":0,"offY":0,"sourceW":172,"sourceH":46}, +"festival_xiala":{"x":98,"y":249,"w":707,"h":5,"offX":0,"offY":0,"sourceW":707,"sourceH":5}, +"festival_hd":{"x":746,"y":88,"w":177,"h":52,"offX":0,"offY":2,"sourceW":178,"sourceH":55}, +"festival_dw":{"x":593,"y":31,"w":178,"h":55,"offX":0,"offY":0,"sourceW":178,"sourceH":55}, +"festival_tq":{"x":1,"y":86,"w":178,"h":54,"offX":0,"offY":1,"sourceW":178,"sourceH":55}, +"apay_yishouwan":{"x":1,"y":193,"w":95,"h":68,"offX":0,"offY":0,"sourceW":95,"sourceH":68}, +"apay_time_bg":{"x":400,"y":1,"w":453,"h":28,"offX":0,"offY":0,"sourceW":453,"sourceH":28}, +"apay_bannert_chfl":{"x":1,"y":1,"w":397,"h":83,"offX":0,"offY":0,"sourceW":397,"sourceH":83}}} \ No newline at end of file diff --git a/resource_Publish/assets/actypay/actypay.png b/resource_Publish/assets/actypay/actypay.png new file mode 100644 index 0000000..6d367cd Binary files /dev/null and b/resource_Publish/assets/actypay/actypay.png differ diff --git a/resource_Publish/assets/actypay/apay_banner_chfl.png b/resource_Publish/assets/actypay/apay_banner_chfl.png new file mode 100644 index 0000000..c2f1ccd Binary files /dev/null and b/resource_Publish/assets/actypay/apay_banner_chfl.png differ diff --git a/resource_Publish/assets/actypay/apay_liebiao_bg.png b/resource_Publish/assets/actypay/apay_liebiao_bg.png new file mode 100644 index 0000000..72d23c7 Binary files /dev/null and b/resource_Publish/assets/actypay/apay_liebiao_bg.png differ diff --git a/resource_Publish/assets/actypay/banner_fudai.png b/resource_Publish/assets/actypay/banner_fudai.png new file mode 100644 index 0000000..180d2d5 Binary files /dev/null and b/resource_Publish/assets/actypay/banner_fudai.png differ diff --git a/resource_Publish/assets/actypay/banner_shenhuaboss.png b/resource_Publish/assets/actypay/banner_shenhuaboss.png new file mode 100644 index 0000000..617d7c0 Binary files /dev/null and b/resource_Publish/assets/actypay/banner_shenhuaboss.png differ diff --git a/resource_Publish/assets/actypay/bg_danbichongzhi.png b/resource_Publish/assets/actypay/bg_danbichongzhi.png new file mode 100644 index 0000000..9c8dcfa Binary files /dev/null and b/resource_Publish/assets/actypay/bg_danbichongzhi.png differ diff --git a/resource_Publish/assets/actypay/bg_fudai.png b/resource_Publish/assets/actypay/bg_fudai.png new file mode 100644 index 0000000..4b1eefe Binary files /dev/null and b/resource_Publish/assets/actypay/bg_fudai.png differ diff --git a/resource_Publish/assets/actypay/bg_zhongqiujiajie.png b/resource_Publish/assets/actypay/bg_zhongqiujiajie.png new file mode 100644 index 0000000..76d78c1 Binary files /dev/null and b/resource_Publish/assets/actypay/bg_zhongqiujiajie.png differ diff --git a/resource_Publish/assets/actypay/festival_dwjiajie.png b/resource_Publish/assets/actypay/festival_dwjiajie.png new file mode 100644 index 0000000..a219b74 Binary files /dev/null and b/resource_Publish/assets/actypay/festival_dwjiajie.png differ diff --git a/resource_Publish/assets/actypay/festival_hdwuyi.png b/resource_Publish/assets/actypay/festival_hdwuyi.png new file mode 100644 index 0000000..542838d Binary files /dev/null and b/resource_Publish/assets/actypay/festival_hdwuyi.png differ diff --git a/resource_Publish/assets/actypay/festival_tqxunli.png b/resource_Publish/assets/actypay/festival_tqxunli.png new file mode 100644 index 0000000..485bde5 Binary files /dev/null and b/resource_Publish/assets/actypay/festival_tqxunli.png differ diff --git a/resource_Publish/assets/actypay/festival_znqingdian.png b/resource_Publish/assets/actypay/festival_znqingdian.png new file mode 100644 index 0000000..58b90da Binary files /dev/null and b/resource_Publish/assets/actypay/festival_znqingdian.png differ diff --git a/resource_Publish/assets/actypay/hfhd_shenhuaboss.png b/resource_Publish/assets/actypay/hfhd_shenhuaboss.png new file mode 100644 index 0000000..ea772c3 Binary files /dev/null and b/resource_Publish/assets/actypay/hfhd_shenhuaboss.png differ diff --git a/resource_Publish/assets/bg.jpg b/resource_Publish/assets/bg.jpg new file mode 100644 index 0000000..a61ee5b Binary files /dev/null and b/resource_Publish/assets/bg.jpg differ diff --git a/resource_Publish/assets/bg/apay_bg.png b/resource_Publish/assets/bg/apay_bg.png new file mode 100644 index 0000000..7714cef Binary files /dev/null and b/resource_Publish/assets/bg/apay_bg.png differ diff --git a/resource_Publish/assets/bg/apay_bg2.png b/resource_Publish/assets/bg/apay_bg2.png new file mode 100644 index 0000000..72aafff Binary files /dev/null and b/resource_Publish/assets/bg/apay_bg2.png differ diff --git a/resource_Publish/assets/bg/apay_bg3.png b/resource_Publish/assets/bg/apay_bg3.png new file mode 100644 index 0000000..7bc9dd3 Binary files /dev/null and b/resource_Publish/assets/bg/apay_bg3.png differ diff --git a/resource_Publish/assets/bg/bg_npc.png b/resource_Publish/assets/bg/bg_npc.png new file mode 100644 index 0000000..dbf5424 Binary files /dev/null and b/resource_Publish/assets/bg/bg_npc.png differ diff --git a/resource_Publish/assets/bg/bg_tipstc.png b/resource_Publish/assets/bg/bg_tipstc.png new file mode 100644 index 0000000..d163d39 Binary files /dev/null and b/resource_Publish/assets/bg/bg_tipstc.png differ diff --git a/resource_Publish/assets/bg/bg_tipstc2.png b/resource_Publish/assets/bg/bg_tipstc2.png new file mode 100644 index 0000000..adc798c Binary files /dev/null and b/resource_Publish/assets/bg/bg_tipstc2.png differ diff --git a/resource_Publish/assets/bg/bg_tipstc3.png b/resource_Publish/assets/bg/bg_tipstc3.png new file mode 100644 index 0000000..a0b0cb3 Binary files /dev/null and b/resource_Publish/assets/bg/bg_tipstc3.png differ diff --git a/resource_Publish/assets/bg/chat_bg_bg1.png b/resource_Publish/assets/bg/chat_bg_bg1.png new file mode 100644 index 0000000..e3f48c9 Binary files /dev/null and b/resource_Publish/assets/bg/chat_bg_bg1.png differ diff --git a/resource_Publish/assets/bg/chat_bg_bg2.png b/resource_Publish/assets/bg/chat_bg_bg2.png new file mode 100644 index 0000000..a7a0052 Binary files /dev/null and b/resource_Publish/assets/bg/chat_bg_bg2.png differ diff --git a/resource_Publish/assets/bg/chat_bg_tc1.png b/resource_Publish/assets/bg/chat_bg_tc1.png new file mode 100644 index 0000000..a252036 Binary files /dev/null and b/resource_Publish/assets/bg/chat_bg_tc1.png differ diff --git a/resource_Publish/assets/bg/chat_bg_tc1_2.png b/resource_Publish/assets/bg/chat_bg_tc1_2.png new file mode 100644 index 0000000..2b65dab Binary files /dev/null and b/resource_Publish/assets/bg/chat_bg_tc1_2.png differ diff --git a/resource_Publish/assets/bg/chat_bg_tc2.png b/resource_Publish/assets/bg/chat_bg_tc2.png new file mode 100644 index 0000000..87bf9b6 Binary files /dev/null and b/resource_Publish/assets/bg/chat_bg_tc2.png differ diff --git a/resource_Publish/assets/bg/com_bg_beibao.png b/resource_Publish/assets/bg/com_bg_beibao.png new file mode 100644 index 0000000..4d83984 Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_beibao.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_2.png b/resource_Publish/assets/bg/com_bg_kuang_2.png new file mode 100644 index 0000000..796a8a4 Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_2.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_3.png b/resource_Publish/assets/bg/com_bg_kuang_3.png new file mode 100644 index 0000000..958ad97 Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_3.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_4.png b/resource_Publish/assets/bg/com_bg_kuang_4.png new file mode 100644 index 0000000..9d9b43b Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_4.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_5.png b/resource_Publish/assets/bg/com_bg_kuang_5.png new file mode 100644 index 0000000..a8890a8 Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_5.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_6.png b/resource_Publish/assets/bg/com_bg_kuang_6.png new file mode 100644 index 0000000..76bdace Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_6.png differ diff --git a/resource_Publish/assets/bg/com_bg_kuang_7.png b/resource_Publish/assets/bg/com_bg_kuang_7.png new file mode 100644 index 0000000..b137343 Binary files /dev/null and b/resource_Publish/assets/bg/com_bg_kuang_7.png differ diff --git a/resource_Publish/assets/bg/fcm_bg.png b/resource_Publish/assets/bg/fcm_bg.png new file mode 100644 index 0000000..905e79d Binary files /dev/null and b/resource_Publish/assets/bg/fcm_bg.png differ diff --git a/resource_Publish/assets/bg/kbg_1.png b/resource_Publish/assets/bg/kbg_1.png new file mode 100644 index 0000000..cdf0ddf Binary files /dev/null and b/resource_Publish/assets/bg/kbg_1.png differ diff --git a/resource_Publish/assets/bg/kbg_2.png b/resource_Publish/assets/bg/kbg_2.png new file mode 100644 index 0000000..0ef88f4 Binary files /dev/null and b/resource_Publish/assets/bg/kbg_2.png differ diff --git a/resource_Publish/assets/bg/kbg_3.png b/resource_Publish/assets/bg/kbg_3.png new file mode 100644 index 0000000..9792e18 Binary files /dev/null and b/resource_Publish/assets/bg/kbg_3.png differ diff --git a/resource_Publish/assets/bg/kbg_3_1.png b/resource_Publish/assets/bg/kbg_3_1.png new file mode 100644 index 0000000..53fb0d1 Binary files /dev/null and b/resource_Publish/assets/bg/kbg_3_1.png differ diff --git a/resource_Publish/assets/bg/kbg_4.png b/resource_Publish/assets/bg/kbg_4.png new file mode 100644 index 0000000..9792e18 Binary files /dev/null and b/resource_Publish/assets/bg/kbg_4.png differ diff --git a/resource_Publish/assets/bg/kbg_5.png b/resource_Publish/assets/bg/kbg_5.png new file mode 100644 index 0000000..edb0509 Binary files /dev/null and b/resource_Publish/assets/bg/kbg_5.png differ diff --git a/resource_Publish/assets/bg/liebiaoding_bg.png b/resource_Publish/assets/bg/liebiaoding_bg.png new file mode 100644 index 0000000..3c91a67 Binary files /dev/null and b/resource_Publish/assets/bg/liebiaoding_bg.png differ diff --git a/resource_Publish/assets/bg/skillbg2.png b/resource_Publish/assets/bg/skillbg2.png new file mode 100644 index 0000000..a5bc633 Binary files /dev/null and b/resource_Publish/assets/bg/skillbg2.png differ diff --git a/resource_Publish/assets/boss/boss.json b/resource_Publish/assets/boss/boss.json new file mode 100644 index 0000000..89c17d3 --- /dev/null +++ b/resource_Publish/assets/boss/boss.json @@ -0,0 +1,44 @@ +{"file":"boss.png","frames":{ +"boss_gw_yb":{"x":358,"y":356,"w":92,"h":73,"offX":0,"offY":0,"sourceW":92,"sourceH":74}, +"boss_canyu":{"x":748,"y":384,"w":74,"h":30,"offX":0,"offY":0,"sourceW":74,"sourceH":30}, +"boss_zs_bg":{"x":945,"y":91,"w":44,"h":96,"offX":0,"offY":0,"sourceW":44,"sourceH":96}, +"boss_head_p_3_1":{"x":945,"y":313,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_guishu":{"x":545,"y":416,"w":98,"h":19,"offX":0,"offY":0,"sourceW":124,"sourceH":19}, +"boss_fengexian":{"x":1,"y":435,"w":403,"h":2,"offX":0,"offY":0,"sourceW":403,"sourceH":2}, +"boss_gw_bg":{"x":912,"y":1,"w":89,"h":88,"offX":0,"offY":0,"sourceW":89,"sourceH":88}, +"boss_head_p_2_0":{"x":945,"y":189,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_head_p_1_0":{"x":829,"y":81,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_tab_jindi2":{"x":824,"y":384,"w":26,"h":55,"offX":3,"offY":20,"sourceW":39,"sourceH":111}, +"boss_tab_Lord1":{"x":601,"y":437,"w":26,"h":54,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"boss_tab_classic2":{"x":991,"y":91,"w":26,"h":55,"offX":3,"offY":21,"sourceW":39,"sourceH":111}, +"boss_gw_bg2":{"x":608,"y":81,"w":219,"h":73,"offX":0,"offY":0,"sourceW":219,"sourceH":73}, +"boss_gw_bg3":{"x":1,"y":430,"w":150,"h":3,"offX":0,"offY":0,"sourceW":150,"sourceH":3}, +"boss_shoutong":{"x":647,"y":384,"w":99,"h":28,"offX":0,"offY":0,"sourceW":99,"sourceH":28}, +"boss_hp_2":{"x":1,"y":380,"w":196,"h":16,"offX":0,"offY":0,"sourceW":196,"sourceH":16}, +"boss_head_p_3_0":{"x":897,"y":375,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_yongdou":{"x":1,"y":398,"w":73,"h":30,"offX":0,"offY":0,"sourceW":73,"sourceH":30}, +"boss_yeqian_bg4":{"x":1,"y":256,"w":512,"h":98,"offX":0,"offY":0,"sourceW":512,"sourceH":98}, +"boss_tab_reinstall1":{"x":406,"y":431,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"boss_head_p_1_1":{"x":959,"y":375,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_xinxi":{"x":199,"y":380,"w":116,"h":28,"offX":0,"offY":0,"sourceW":116,"sourceH":28}, +"boss_gw_jb":{"x":452,"y":366,"w":91,"h":73,"offX":1,"offY":0,"sourceW":92,"sourceH":74}, +"boss_yeqian_bg5":{"x":1,"y":156,"w":512,"h":98,"offX":0,"offY":0,"sourceW":512,"sourceH":98}, +"boss_tab_reinstall2":{"x":891,"y":91,"w":26,"h":55,"offX":3,"offY":21,"sourceW":39,"sourceH":111}, +"boss_yeqian_bg1":{"x":515,"y":248,"w":428,"h":90,"offX":0,"offY":0,"sourceW":428,"sourceH":90}, +"boss_head_p_2_1":{"x":945,"y":251,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"boss_hp_1":{"x":515,"y":340,"w":424,"h":24,"offX":0,"offY":0,"sourceW":424,"sourceH":24}, +"boss_tab_jindi1":{"x":852,"y":384,"w":26,"h":55,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"boss_xuetiao_1":{"x":545,"y":366,"w":350,"h":16,"offX":2,"offY":2,"sourceW":355,"sourceH":22}, +"boss_xuetiao_bg":{"x":1,"y":356,"w":355,"h":22,"offX":0,"offY":0,"sourceW":355,"sourceH":22}, +"boss_k_2":{"x":608,"y":1,"w":302,"h":78,"offX":0,"offY":0,"sourceW":302,"sourceH":78}, +"boss_tab_Lord2":{"x":573,"y":437,"w":26,"h":54,"offX":3,"offY":21,"sourceW":39,"sourceH":111}, +"boss_tab_classic1":{"x":545,"y":437,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"boss_diaoluo":{"x":545,"y":384,"w":100,"h":30,"offX":0,"offY":0,"sourceW":100,"sourceH":30}, +"boss_k_1":{"x":1,"y":1,"w":605,"h":153,"offX":0,"offY":0,"sourceW":605,"sourceH":153}, +"boss_yeqian_bg3":{"x":919,"y":91,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"boss_yeqian_bg2":{"x":515,"y":156,"w":428,"h":90,"offX":0,"offY":0,"sourceW":428,"sourceH":90}, +"bs_tq_5":{"x":161,"y":410,"w":83,"h":23,"offX":1,"offY":2,"sourceW":85,"sourceH":26}, +"bs_tq_1":{"x":732,"y":416,"w":81,"h":23,"offX":3,"offY":2,"sourceW":85,"sourceH":26}, +"bs_tq_2":{"x":76,"y":398,"w":83,"h":23,"offX":1,"offY":2,"sourceW":85,"sourceH":26}, +"bs_tq_3":{"x":647,"y":414,"w":83,"h":23,"offX":1,"offY":2,"sourceW":85,"sourceH":26}, +"bs_tq_4":{"x":246,"y":410,"w":83,"h":23,"offX":1,"offY":2,"sourceW":85,"sourceH":26}}} \ No newline at end of file diff --git a/resource_Publish/assets/boss/boss.png b/resource_Publish/assets/boss/boss.png new file mode 100644 index 0000000..4cc22a5 Binary files /dev/null and b/resource_Publish/assets/boss/boss.png differ diff --git a/resource_Publish/assets/chat/chat.json b/resource_Publish/assets/chat/chat.json new file mode 100644 index 0000000..e6a0392 --- /dev/null +++ b/resource_Publish/assets/chat/chat.json @@ -0,0 +1,94 @@ +{"file":"chat.png","frames":{ +"bg_bg2":{"x":45,"y":93,"w":36,"h":36,"offX":0,"offY":0,"sourceW":36,"sourceH":36}, +"button_lt":{"x":101,"y":90,"w":55,"h":25,"offX":0,"offY":0,"sourceW":55,"sourceH":25}, +"button_lt2":{"x":1,"y":137,"w":62,"h":27,"offX":0,"offY":0,"sourceW":62,"sourceH":27}, +"button_lt3":{"x":164,"y":50,"w":93,"h":41,"offX":0,"offY":0,"sourceW":93,"sourceH":41}, +"chat_bqb_1":{"x":101,"y":156,"w":22,"h":22,"offX":1,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_2":{"x":238,"y":116,"w":21,"h":21,"offX":1,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_3":{"x":219,"y":164,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_4":{"x":206,"y":93,"w":20,"h":23,"offX":2,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_5":{"x":95,"y":227,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_6":{"x":170,"y":207,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_7":{"x":124,"y":225,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_8":{"x":196,"y":164,"w":21,"h":20,"offX":2,"offY":3,"sourceW":24,"sourceH":24}, +"chat_bqb_9":{"x":126,"y":132,"w":24,"h":21,"offX":0,"offY":3,"sourceW":24,"sourceH":24}, +"chat_bqb_10":{"x":101,"y":204,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_11":{"x":147,"y":202,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_12":{"x":241,"y":188,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_13":{"x":173,"y":184,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_14":{"x":149,"y":178,"w":21,"h":22,"offX":2,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_15":{"x":215,"y":141,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_16":{"x":228,"y":93,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_17":{"x":215,"y":118,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_18":{"x":149,"y":155,"w":22,"h":21,"offX":1,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_19":{"x":261,"y":96,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_20":{"x":124,"y":180,"w":21,"h":22,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_21":{"x":261,"y":142,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_22":{"x":261,"y":119,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_23":{"x":282,"y":73,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_24":{"x":259,"y":73,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_25":{"x":305,"y":145,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_26":{"x":283,"y":142,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_27":{"x":327,"y":167,"w":20,"h":20,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_28":{"x":125,"y":156,"w":22,"h":22,"offX":2,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_29":{"x":72,"y":233,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_30":{"x":72,"y":210,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_31":{"x":170,"y":230,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_32":{"x":196,"y":186,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_33":{"x":101,"y":180,"w":21,"h":22,"offX":2,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_34":{"x":282,"y":50,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_35":{"x":238,"y":139,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_36":{"x":147,"y":225,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_37":{"x":241,"y":165,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_38":{"x":284,"y":96,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_39":{"x":101,"y":132,"w":23,"h":22,"offX":0,"offY":1,"sourceW":24,"sourceH":24}, +"chat_bqb_40":{"x":173,"y":161,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_41":{"x":285,"y":190,"w":20,"h":20,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_42":{"x":259,"y":50,"w":21,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqb_43":{"x":283,"y":119,"w":20,"h":21,"offX":2,"offY":2,"sourceW":24,"sourceH":24}, +"chat_bqbkuang":{"x":152,"y":152,"w":25,"h":1,"offX":0,"offY":0,"sourceW":25,"sourceH":1}, +"chat_ltbg":{"x":1,"y":93,"w":42,"h":42,"offX":0,"offY":0,"sourceW":42,"sourceH":42}, +"chat_t_1_1":{"x":335,"y":189,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_1_2":{"x":307,"y":189,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_2_1":{"x":236,"y":211,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_2_2":{"x":41,"y":239,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_3_1":{"x":363,"y":121,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_3_2":{"x":349,"y":106,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_4_1":{"x":349,"y":91,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_4_2":{"x":349,"y":76,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_5_1":{"x":349,"y":61,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_5_2":{"x":349,"y":46,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_6_1":{"x":377,"y":16,"w":25,"h":13,"offX":11,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_6_2":{"x":377,"y":1,"w":25,"h":13,"offX":11,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_7":{"x":43,"y":192,"w":37,"h":13,"offX":4,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_8":{"x":152,"y":137,"w":37,"h":13,"offX":4,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_9":{"x":349,"y":1,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_10_1":{"x":349,"y":31,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_10_2":{"x":349,"y":16,"w":26,"h":13,"offX":10,"offY":4,"sourceW":46,"sourceH":20}, +"chat_t_11":{"x":101,"y":117,"w":44,"h":13,"offX":0,"offY":0,"sourceW":44,"sourceH":13}, +"chat_tab_1":{"x":164,"y":1,"w":152,"h":47,"offX":0,"offY":0,"sourceW":152,"sourceH":47}, +"chat_tab_2":{"x":1,"y":1,"w":161,"h":57,"offX":0,"offY":0,"sourceW":161,"sourceH":57}, +"chat_tab_3":{"x":43,"y":166,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"chat_tab_4":{"x":1,"y":208,"w":38,"h":38,"offX":0,"offY":0,"sourceW":38,"sourceH":38}, +"fasongjiantou":{"x":304,"y":73,"w":12,"h":11,"offX":0,"offY":0,"sourceW":12,"sourceH":11}, +"fasongjiantou2":{"x":307,"y":168,"w":17,"h":16,"offX":0,"offY":0,"sourceW":17,"sourceH":16}, +"lt_xitong":{"x":84,"y":60,"w":66,"h":28,"offX":0,"offY":0,"sourceW":66,"sourceH":28}, +"ltk_0":{"x":1,"y":166,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"ltk_1":{"x":41,"y":208,"w":29,"h":29,"offX":0,"offY":0,"sourceW":29,"sourceH":29}, +"ltk_2":{"x":1,"y":60,"w":81,"h":31,"offX":0,"offY":0,"sourceW":81,"sourceH":31}, +"ltk_2+1":{"x":65,"y":131,"w":13,"h":24,"offX":0,"offY":0,"sourceW":13,"sourceH":24}, +"ltk_3":{"x":124,"y":204,"w":16,"h":16,"offX":0,"offY":0,"sourceW":16,"sourceH":16}, +"ltk_4":{"x":191,"y":137,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"ltk_you":{"x":84,"y":90,"w":15,"h":118,"offX":0,"offY":0,"sourceW":15,"sourceH":118}, +"ltk_zuo":{"x":318,"y":1,"w":29,"h":142,"offX":0,"offY":0,"sourceW":29,"sourceH":142}, +"ltpb_bangzhu":{"x":263,"y":165,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_fj1":{"x":218,"y":187,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_fj2":{"x":214,"y":209,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_hh1":{"x":192,"y":209,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_hh2":{"x":285,"y":168,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_sl1":{"x":263,"y":187,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"ltpb_sl2":{"x":327,"y":145,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"shangjiantou":{"x":264,"y":209,"w":14,"h":8,"offX":0,"offY":0,"sourceW":14,"sourceH":8}, +"shangjiantou2":{"x":377,"y":31,"w":20,"h":12,"offX":0,"offY":0,"sourceW":20,"sourceH":12}, +"yeqian_liaotian1":{"x":158,"y":93,"w":46,"h":20,"offX":0,"offY":0,"sourceW":46,"sourceH":20}, +"yeqian_liaotian2":{"x":158,"y":115,"w":46,"h":20,"offX":0,"offY":0,"sourceW":46,"sourceH":20}}} \ No newline at end of file diff --git a/resource_Publish/assets/chat/chat.png b/resource_Publish/assets/chat/chat.png new file mode 100644 index 0000000..1eec414 Binary files /dev/null and b/resource_Publish/assets/chat/chat.png differ diff --git a/resource_Publish/assets/common/attrTips.json b/resource_Publish/assets/common/attrTips.json new file mode 100644 index 0000000..8e81705 --- /dev/null +++ b/resource_Publish/assets/common/attrTips.json @@ -0,0 +1,53 @@ +{"file":"attrTips.png","frames":{ +"bg_bosstips1":{"x":1,"y":1,"w":156,"h":250,"offX":0,"offY":0,"sourceW":156,"sourceH":250}, +"bg_bosstips2":{"x":921,"y":1,"w":92,"h":105,"offX":0,"offY":0,"sourceW":92,"sourceH":105}, +"bg_zbgh":{"x":159,"y":1,"w":156,"h":223,"offX":0,"offY":0,"sourceW":156,"sourceH":223}, +"fightnum_bg":{"x":317,"y":1,"w":361,"h":72,"offX":0,"offY":0,"sourceW":361,"sourceH":72}, +"fightnum_bg2":{"x":680,"y":1,"w":239,"h":50,"offX":0,"offY":0,"sourceW":239,"sourceH":50}, +"fightnum_d":{"x":680,"y":53,"w":120,"h":32,"offX":1,"offY":0,"sourceW":123,"sourceH":32}, +"fightnum_m":{"x":317,"y":75,"w":120,"h":32,"offX":1,"offY":0,"sourceW":123,"sourceH":32}, +"fightnum_z":{"x":439,"y":75,"w":120,"h":31,"offX":1,"offY":1,"sourceW":123,"sourceH":32}, +"numsx_1":{"x":939,"y":170,"w":76,"h":30,"offX":4,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_10":{"x":417,"y":141,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_11":{"x":362,"y":235,"w":104,"h":27,"offX":3,"offY":3,"sourceW":110,"sourceH":32}, +"numsx_12":{"x":855,"y":139,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_13":{"x":904,"y":108,"w":105,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_14":{"x":423,"y":203,"w":97,"h":30,"offX":7,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_15":{"x":643,"y":120,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_16":{"x":629,"y":151,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_17":{"x":347,"y":264,"w":57,"h":32,"offX":3,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_18":{"x":523,"y":141,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_19":{"x":317,"y":109,"w":98,"h":31,"offX":5,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_2":{"x":941,"y":234,"w":64,"h":31,"offX":1,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_20":{"x":540,"y":109,"w":101,"h":30,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_21":{"x":422,"y":172,"w":102,"h":29,"offX":2,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_22":{"x":526,"y":182,"w":105,"h":28,"offX":3,"offY":2,"sourceW":110,"sourceH":32}, +"numsx_23":{"x":802,"y":86,"w":100,"h":32,"offX":3,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_24":{"x":839,"y":202,"w":104,"h":28,"offX":3,"offY":2,"sourceW":110,"sourceH":32}, +"numsx_25":{"x":281,"y":264,"w":64,"h":29,"offX":0,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_26":{"x":961,"y":139,"w":59,"h":28,"offX":0,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_27":{"x":217,"y":264,"w":62,"h":30,"offX":0,"offY":0,"sourceW":110,"sourceH":33}, +"numsx_28":{"x":663,"y":87,"w":99,"h":31,"offX":5,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_29":{"x":439,"y":108,"w":99,"h":31,"offX":5,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_3":{"x":945,"y":202,"w":73,"h":30,"offX":7,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_30":{"x":522,"y":212,"w":100,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_31":{"x":839,"y":232,"w":100,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_32":{"x":735,"y":151,"w":100,"h":30,"offX":5,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_33":{"x":624,"y":214,"w":100,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_34":{"x":736,"y":202,"w":101,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_35":{"x":633,"y":183,"w":101,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_36":{"x":261,"y":233,"w":99,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_37":{"x":726,"y":233,"w":99,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_38":{"x":837,"y":170,"w":100,"h":30,"offX":5,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_39":{"x":159,"y":226,"w":100,"h":29,"offX":5,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_4":{"x":468,"y":243,"w":104,"h":27,"offX":3,"offY":3,"sourceW":110,"sourceH":32}, +"numsx_40":{"x":574,"y":245,"w":106,"h":25,"offX":4,"offY":4,"sourceW":110,"sourceH":32}, +"numsx_41":{"x":827,"y":263,"w":106,"h":24,"offX":4,"offY":5,"sourceW":110,"sourceH":32}, +"numsx_42":{"x":1,"y":253,"w":106,"h":25,"offX":4,"offY":4,"sourceW":110,"sourceH":32}, +"numsx_43":{"x":109,"y":257,"w":106,"h":24,"offX":4,"offY":5,"sourceW":110,"sourceH":32}, +"numsx_44":{"x":317,"y":142,"w":54,"h":28,"offX":4,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_5":{"x":317,"y":203,"w":104,"h":28,"offX":3,"offY":2,"sourceW":110,"sourceH":32}, +"numsx_6":{"x":561,"y":75,"w":100,"h":32,"offX":3,"offY":0,"sourceW":110,"sourceH":32}, +"numsx_7":{"x":317,"y":172,"w":103,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}, +"numsx_8":{"x":802,"y":53,"w":116,"h":31,"offX":2,"offY":0,"sourceW":119,"sourceH":32}, +"numsx_9":{"x":749,"y":120,"w":104,"h":29,"offX":3,"offY":1,"sourceW":110,"sourceH":32}}} \ No newline at end of file diff --git a/resource_Publish/assets/common/attrTips.png b/resource_Publish/assets/common/attrTips.png new file mode 100644 index 0000000..31fd0a0 Binary files /dev/null and b/resource_Publish/assets/common/attrTips.png differ diff --git a/resource_Publish/assets/common/bag_bg.png b/resource_Publish/assets/common/bag_bg.png new file mode 100644 index 0000000..8452edb Binary files /dev/null and b/resource_Publish/assets/common/bag_bg.png differ diff --git a/resource_Publish/assets/common/bg_huishou.png b/resource_Publish/assets/common/bg_huishou.png new file mode 100644 index 0000000..ad7cb5c Binary files /dev/null and b/resource_Publish/assets/common/bg_huishou.png differ diff --git a/resource_Publish/assets/common/btn_guanbi3.png b/resource_Publish/assets/common/btn_guanbi3.png new file mode 100644 index 0000000..1fdb058 Binary files /dev/null and b/resource_Publish/assets/common/btn_guanbi3.png differ diff --git a/resource_Publish/assets/common/buff.json b/resource_Publish/assets/common/buff.json new file mode 100644 index 0000000..4817dbc --- /dev/null +++ b/resource_Publish/assets/common/buff.json @@ -0,0 +1,74 @@ +{"file":"buff.png","frames":{ +"buff_1":{"x":1,"y":253,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_10":{"x":463,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_11":{"x":421,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_12":{"x":379,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_13":{"x":337,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_14":{"x":295,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_15":{"x":253,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_16":{"x":211,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_17":{"x":169,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_18":{"x":127,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_19":{"x":85,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_2":{"x":43,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_20":{"x":1,"y":211,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_21":{"x":463,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_22":{"x":421,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_23":{"x":379,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_24":{"x":337,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_25":{"x":295,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_26":{"x":253,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_27":{"x":211,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_28":{"x":169,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_29":{"x":127,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_3":{"x":85,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_30":{"x":43,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_31":{"x":1,"y":169,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_32":{"x":463,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_33":{"x":421,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_34":{"x":379,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_35":{"x":337,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_36":{"x":295,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_37":{"x":253,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_38":{"x":211,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_39":{"x":169,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_4":{"x":127,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_40":{"x":85,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_41":{"x":43,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_42":{"x":1,"y":127,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_43":{"x":463,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_44":{"x":421,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_45":{"x":379,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_46":{"x":337,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_47":{"x":295,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_48":{"x":253,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_49":{"x":211,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_5":{"x":169,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_50":{"x":127,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_51":{"x":85,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_52":{"x":43,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_53":{"x":1,"y":85,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_54":{"x":463,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_55":{"x":421,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_56":{"x":379,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_57":{"x":337,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_58":{"x":295,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_59":{"x":253,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_6":{"x":211,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_60":{"x":169,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_61":{"x":127,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_62":{"x":85,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_63":{"x":43,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_64":{"x":1,"y":43,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_65":{"x":463,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_66":{"x":421,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_67":{"x":379,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_68":{"x":337,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_69":{"x":295,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_7":{"x":253,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_70":{"x":211,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_71":{"x":169,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_8":{"x":127,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_9":{"x":85,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_zz1":{"x":43,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"buff_zz2":{"x":1,"y":1,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}}} \ No newline at end of file diff --git a/resource_Publish/assets/common/buff.png b/resource_Publish/assets/common/buff.png new file mode 100644 index 0000000..5414f9d Binary files /dev/null and b/resource_Publish/assets/common/buff.png differ diff --git a/resource_Publish/assets/common/buff2.json b/resource_Publish/assets/common/buff2.json new file mode 100644 index 0000000..0980097 --- /dev/null +++ b/resource_Publish/assets/common/buff2.json @@ -0,0 +1,9 @@ +{"file":"buff2.png","frames":{ +"mjdb_buff01":{"x":1,"y":67,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff02":{"x":1,"y":1,"w":79,"h":31,"offX":2,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff03":{"x":127,"y":34,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff04":{"x":64,"y":34,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff05":{"x":1,"y":34,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff06":{"x":145,"y":1,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff07":{"x":82,"y":1,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}, +"mjdb_buff08":{"x":190,"y":34,"w":61,"h":31,"offX":11,"offY":0,"sourceW":84,"sourceH":31}}} \ No newline at end of file diff --git a/resource_Publish/assets/common/buff2.png b/resource_Publish/assets/common/buff2.png new file mode 100644 index 0000000..2d3fcc8 Binary files /dev/null and b/resource_Publish/assets/common/buff2.png differ diff --git a/resource_Publish/assets/common/common.json b/resource_Publish/assets/common/common.json new file mode 100644 index 0000000..a56a7fe --- /dev/null +++ b/resource_Publish/assets/common/common.json @@ -0,0 +1,169 @@ +{"file":"common.png","frames":{ +"9s_bg_2":{"x":1382,"y":309,"w":30,"h":30,"offX":0,"offY":0,"sourceW":30,"sourceH":30}, +"9s_bg_3":{"x":125,"y":321,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"9s_dating_tipsbg":{"x":1650,"y":321,"w":17,"h":21,"offX":0,"offY":0,"sourceW":17,"sourceH":21}, +"9s_tipsbg":{"x":201,"y":186,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"9s_tipsk":{"x":908,"y":315,"w":28,"h":28,"offX":0,"offY":0,"sourceW":28,"sourceH":28}, +"apay_gou":{"x":1317,"y":306,"w":30,"h":32,"offX":0,"offY":0,"sourceW":30,"sourceH":32}, +"apay_tab_bg":{"x":1870,"y":1,"w":132,"h":132,"offX":0,"offY":0,"sourceW":132,"sourceH":132}, +"apay_yilingqu":{"x":1533,"y":170,"w":95,"h":68,"offX":0,"offY":0,"sourceW":95,"sourceH":68}, +"bag_equipbg":{"x":158,"y":276,"w":38,"h":39,"offX":0,"offY":0,"sourceW":38,"sourceH":39}, +"bag_equipk":{"x":227,"y":133,"w":74,"h":78,"offX":0,"offY":0,"sourceW":74,"sourceH":78}, +"bag_fanye_1":{"x":684,"y":305,"w":22,"h":46,"offX":0,"offY":0,"sourceW":22,"sourceH":46}, +"bag_fanye_2":{"x":660,"y":305,"w":22,"h":46,"offX":0,"offY":0,"sourceW":22,"sourceH":46}, +"bag_fanye_3":{"x":1195,"y":227,"w":16,"h":24,"offX":0,"offY":0,"sourceW":16,"sourceH":24}, +"bag_fanye_bg":{"x":1052,"y":72,"w":46,"h":276,"offX":0,"offY":0,"sourceW":46,"sourceH":276}, +"bag_fengexian":{"x":1650,"y":318,"w":262,"h":1,"offX":7,"offY":9,"sourceW":277,"sourceH":18}, +"bag_jia":{"x":147,"y":317,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"bag_piliangbg_0":{"x":1573,"y":290,"w":42,"h":42,"offX":0,"offY":0,"sourceW":42,"sourceH":42}, +"bag_piliangbg_1":{"x":1466,"y":201,"w":43,"h":89,"offX":0,"offY":0,"sourceW":43,"sourceH":89}, +"bag_piliangbg_2":{"x":1630,"y":215,"w":43,"h":89,"offX":0,"offY":0,"sourceW":43,"sourceH":89}, +"bag_piliangbg_3":{"x":1324,"y":215,"w":43,"h":89,"offX":0,"offY":0,"sourceW":43,"sourceH":89}, +"bag_piliangbg_4":{"x":246,"y":213,"w":43,"h":89,"offX":0,"offY":0,"sourceW":43,"sourceH":89}, +"bag_piliangbg_5":{"x":201,"y":213,"w":43,"h":89,"offX":0,"offY":0,"sourceW":43,"sourceH":89}, +"bagbtn_2":{"x":888,"y":253,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"bagfy_xian":{"x":2035,"y":1,"w":3,"h":116,"offX":0,"offY":0,"sourceW":3,"sourceH":116}, +"bg_jianbian1":{"x":743,"y":72,"w":307,"h":42,"offX":0,"offY":0,"sourceW":307,"sourceH":42}, +"bg_jianbian2":{"x":303,"y":194,"w":82,"h":61,"offX":0,"offY":0,"sourceW":82,"sourceH":61}, +"bg_quyu_1":{"x":781,"y":269,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"bg_quyu_2":{"x":1146,"y":321,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"bg_shuzi_1":{"x":743,"y":158,"w":230,"h":30,"offX":0,"offY":0,"sourceW":230,"sourceH":30}, +"bg_sixiang_2":{"x":81,"y":321,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"bg_sixiang_3":{"x":1448,"y":316,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"biaoti_bg":{"x":1,"y":72,"w":312,"h":59,"offX":0,"offY":0,"sourceW":312,"sourceH":59}, +"btn_fanhui":{"x":96,"y":234,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"btn_fanhui2":{"x":595,"y":240,"w":60,"h":59,"offX":0,"offY":1,"sourceW":60,"sourceH":60}, +"btn_hs":{"x":989,"y":116,"w":60,"h":63,"offX":0,"offY":0,"sourceW":60,"sourceH":64}, +"btn_ssck":{"x":657,"y":240,"w":57,"h":54,"offX":2,"offY":4,"sourceW":60,"sourceH":60}, +"btn_yjhs":{"x":1511,"y":240,"w":60,"h":55,"offX":0,"offY":4,"sourceW":60,"sourceH":64}, +"chat_bg_bg2":{"x":293,"y":305,"w":36,"h":36,"offX":0,"offY":0,"sourceW":36,"sourceH":36}, +"chat_fasongjiantou":{"x":1682,"y":23,"w":12,"h":11,"offX":0,"offY":0,"sourceW":12,"sourceH":11}, +"chat_ltk_0":{"x":158,"y":234,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"chat_ltk_1":{"x":1989,"y":313,"w":29,"h":29,"offX":0,"offY":0,"sourceW":29,"sourceH":29}, +"chat_ltk_3":{"x":708,"y":305,"w":31,"h":31,"offX":0,"offY":0,"sourceW":31,"sourceH":31}, +"chat_ltk_you":{"x":2029,"y":211,"w":15,"h":118,"offX":0,"offY":0,"sourceW":15,"sourceH":118}, +"chat_ltk_zuo":{"x":2004,"y":1,"w":29,"h":142,"offX":0,"offY":0,"sourceW":29,"sourceH":142}, +"chat_shangjiantou":{"x":1696,"y":23,"w":14,"h":8,"offX":0,"offY":0,"sourceW":14,"sourceH":8}, +"chat_yeqian_liaotian1":{"x":1265,"y":309,"w":46,"h":20,"offX":0,"offY":0,"sourceW":46,"sourceH":20}, +"chat_yeqian_liaotian2":{"x":1415,"y":263,"w":46,"h":20,"offX":0,"offY":0,"sourceW":46,"sourceH":20}, +"com_bg_kuang_3":{"x":1215,"y":179,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"com_bg_kuang_xian1":{"x":1196,"y":321,"w":20,"h":18,"offX":0,"offY":0,"sourceW":20,"sourceH":18}, +"com_bg_kuang_xian2":{"x":1839,"y":258,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"com_bg_kuang_xian3":{"x":1369,"y":263,"w":44,"h":44,"offX":0,"offY":0,"sourceW":44,"sourceH":44}, +"com_btn_xiala1":{"x":1617,"y":306,"w":31,"h":30,"offX":0,"offY":0,"sourceW":31,"sourceH":30}, +"com_btn_xiala2":{"x":1349,"y":309,"w":31,"h":30,"offX":0,"offY":0,"sourceW":31,"sourceH":30}, +"com_fengexian":{"x":291,"y":301,"w":577,"h":2,"offX":0,"offY":0,"sourceW":577,"sourceH":2}, +"com_gou_1":{"x":408,"y":305,"w":36,"h":34,"offX":0,"offY":0,"sourceW":36,"sourceH":34}, +"com_gou_2":{"x":369,"y":305,"w":37,"h":34,"offX":0,"offY":0,"sourceW":37,"sourceH":34}, +"com_icon_bg1":{"x":624,"y":72,"w":117,"h":116,"offX":0,"offY":0,"sourceW":117,"sourceH":116}, +"com_icon_bg2":{"x":315,"y":72,"w":121,"h":120,"offX":0,"offY":0,"sourceW":121,"sourceH":120}, +"com_jia":{"x":741,"y":305,"w":32,"h":30,"offX":0,"offY":0,"sourceW":32,"sourceH":30}, +"com_jiabg":{"x":716,"y":269,"w":63,"h":30,"offX":0,"offY":0,"sourceW":63,"sourceH":30}, +"com_jiajia":{"x":809,"y":305,"w":32,"h":30,"offX":0,"offY":0,"sourceW":32,"sourceH":30}, +"com_jian":{"x":775,"y":305,"w":32,"h":30,"offX":0,"offY":0,"sourceW":32,"sourceH":30}, +"com_jianjian":{"x":843,"y":305,"w":32,"h":30,"offX":0,"offY":0,"sourceW":32,"sourceH":30}, +"com_jiantoux2":{"x":1123,"y":319,"w":21,"h":20,"offX":0,"offY":0,"sourceW":21,"sourceH":20}, +"com_jiantoux3":{"x":1955,"y":313,"w":32,"h":27,"offX":0,"offY":0,"sourceW":32,"sourceH":27}, +"com_latiao_bg":{"x":1168,"y":321,"w":26,"h":15,"offX":0,"offY":0,"sourceW":26,"sourceH":15}, +"com_latiao_yuan":{"x":877,"y":315,"w":29,"h":28,"offX":0,"offY":0,"sourceW":29,"sourceH":28}, +"com_ljt_1":{"x":1640,"y":23,"w":19,"h":11,"offX":0,"offY":0,"sourceW":19,"sourceH":11}, +"com_ljt_2":{"x":1661,"y":23,"w":19,"h":11,"offX":0,"offY":0,"sourceW":19,"sourceH":11}, +"com_yeqian_4":{"x":1630,"y":170,"w":133,"h":43,"offX":0,"offY":0,"sourceW":133,"sourceH":43}, +"com_yeqian_6":{"x":1900,"y":211,"w":126,"h":37,"offX":1,"offY":1,"sourceW":128,"sourceH":39}, +"com_yizhuangbei":{"x":1774,"y":81,"w":89,"h":62,"offX":0,"offY":0,"sourceW":89,"sourceH":62}, +"com_yuan_hong":{"x":103,"y":321,"w":20,"h":20,"offX":7,"offY":7,"sourceW":34,"sourceH":34}, +"com_yuan_kong":{"x":446,"y":305,"w":34,"h":34,"offX":0,"offY":0,"sourceW":34,"sourceH":34}, +"common__tjgz":{"x":1839,"y":292,"w":82,"h":21,"offX":0,"offY":0,"sourceW":82,"sourceH":21}, +"common_ckxx":{"x":888,"y":291,"w":80,"h":22,"offX":0,"offY":0,"sourceW":80,"sourceH":22}, +"common_jhmdl":{"x":1415,"y":292,"w":80,"h":22,"offX":0,"offY":0,"sourceW":80,"sourceH":22}, +"common_liebiaoding_bg":{"x":1142,"y":37,"w":726,"h":42,"offX":0,"offY":0,"sourceW":726,"sourceH":42}, +"common_liebiaoding_fenge":{"x":2039,"y":128,"w":4,"h":40,"offX":0,"offY":0,"sourceW":4,"sourceH":40}, +"common_liebiaoxuanzhong":{"x":1573,"y":240,"w":50,"h":48,"offX":0,"offY":0,"sourceW":50,"sourceH":48}, +"common_lock":{"x":1511,"y":201,"w":20,"h":22,"offX":7,"offY":7,"sourceW":27,"sourceH":29}, +"common_qxgz":{"x":1,"y":277,"w":81,"h":22,"offX":0,"offY":0,"sourceW":81,"sourceH":22}, +"common_schy":{"x":1100,"y":270,"w":81,"h":22,"offX":0,"offY":0,"sourceW":81,"sourceH":22}, +"common_shmd":{"x":1944,"y":289,"w":81,"h":22,"offX":0,"offY":0,"sourceW":81,"sourceH":22}, +"common_sl":{"x":519,"y":305,"w":51,"h":22,"offX":0,"offY":0,"sourceW":51,"sourceH":22}, +"common_slider_bg":{"x":1629,"y":145,"w":324,"h":23,"offX":0,"offY":0,"sourceW":324,"sourceH":23}, +"common_slider_t":{"x":718,"y":190,"w":318,"h":15,"offX":0,"offY":0,"sourceW":318,"sourceH":15}, +"common_sqrd":{"x":970,"y":291,"w":80,"h":22,"offX":0,"offY":0,"sourceW":80,"sourceH":22}, +"common_sy":{"x":1533,"y":148,"w":58,"h":19,"offX":0,"offY":0,"sourceW":58,"sourceH":19}, +"common_syy":{"x":434,"y":280,"w":59,"h":18,"offX":0,"offY":0,"sourceW":59,"sourceH":18}, +"common_tjhy":{"x":1675,"y":293,"w":81,"h":21,"offX":0,"offY":0,"sourceW":81,"sourceH":21}, +"common_xx":{"x":1100,"y":319,"w":21,"h":20,"offX":2,"offY":1,"sourceW":25,"sourceH":23}, +"common_xx_bg":{"x":1022,"y":315,"w":25,"h":23,"offX":0,"offY":0,"sourceW":25,"sourceH":23}, +"common_xyy":{"x":600,"y":305,"w":58,"h":18,"offX":0,"offY":0,"sourceW":58,"sourceH":18}, +"common_yqzd":{"x":1955,"y":145,"w":82,"h":22,"offX":0,"offY":0,"sourceW":82,"sourceH":22}, +"dikuang":{"x":743,"y":116,"w":244,"h":40,"offX":0,"offY":0,"sourceW":244,"sourceH":40}, +"icon_bangding":{"x":482,"y":305,"w":35,"h":33,"offX":0,"offY":2,"sourceW":36,"sourceH":36}, +"icon_jinbi":{"x":1414,"y":316,"w":32,"h":21,"offX":0,"offY":0,"sourceW":32,"sourceH":21}, +"icon_quan":{"x":331,"y":305,"w":36,"h":36,"offX":0,"offY":0,"sourceW":36,"sourceH":36}, +"icon_yinliang":{"x":1593,"y":148,"w":31,"h":19,"offX":3,"offY":10,"sourceW":36,"sourceH":36}, +"icon_yuanbao":{"x":1226,"y":296,"w":37,"h":37,"offX":0,"offY":0,"sourceW":37,"sourceH":37}, +"icontype_1":{"x":438,"y":152,"w":168,"h":38,"offX":0,"offY":0,"sourceW":168,"sourceH":38}, +"icontype_2":{"x":1900,"y":170,"w":146,"h":39,"offX":0,"offY":0,"sourceW":146,"sourceH":39}, +"kuaijielan2":{"x":2040,"y":71,"w":3,"h":55,"offX":0,"offY":0,"sourceW":3,"sourceH":55}, +"kuaijielanBg":{"x":1923,"y":292,"w":16,"h":18,"offX":0,"offY":0,"sourceW":16,"sourceH":18}, +"liaotianpaopao":{"x":1025,"y":207,"w":24,"h":32,"offX":0,"offY":0,"sourceW":24,"sourceH":32}, +"m_lst_dian":{"x":517,"y":285,"w":16,"h":14,"offX":0,"offY":0,"sourceW":16,"sourceH":14}, +"m_lst_xian":{"x":2040,"y":1,"w":3,"h":68,"offX":0,"offY":0,"sourceW":3,"sourceH":68}, +"name_touxiangk":{"x":1,"y":133,"w":83,"h":87,"offX":0,"offY":0,"sourceW":83,"sourceH":87}, +"npc_lingxing":{"x":1472,"y":316,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"num_bbj":{"x":1381,"y":201,"w":83,"h":60,"offX":0,"offY":0,"sourceW":83,"sourceH":60}, +"num_bj":{"x":718,"y":207,"w":83,"h":60,"offX":0,"offY":0,"sourceW":83,"sourceH":60}, +"num_shihua":{"x":1865,"y":250,"w":77,"h":40,"offX":0,"offY":0,"sourceW":77,"sourceH":40}, +"pmd_bg1":{"x":1,"y":1,"w":1637,"h":34,"offX":0,"offY":0,"sourceW":1637,"sourceH":34}, +"pmd_bg2":{"x":1,"y":37,"w":1139,"h":33,"offX":0,"offY":0,"sourceW":1139,"sourceH":33}, +"renwubg1":{"x":1923,"y":313,"w":30,"h":29,"offX":0,"offY":0,"sourceW":30,"sourceH":29}, +"renwubg2":{"x":1712,"y":23,"w":24,"h":3,"offX":0,"offY":0,"sourceW":24,"sourceH":3}, +"rule_bg":{"x":1267,"y":259,"w":48,"h":48,"offX":0,"offY":0,"sourceW":48,"sourceH":48}, +"rule_biaotibg":{"x":1100,"y":81,"w":356,"h":35,"offX":0,"offY":0,"sourceW":356,"sourceH":35}, +"rule_btn":{"x":1865,"y":215,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"shuxinghuadong_1":{"x":495,"y":280,"w":20,"h":19,"offX":0,"offY":0,"sourceW":20,"sourceH":19}, +"shuxinghuadong_2":{"x":63,"y":301,"w":16,"h":40,"offX":0,"offY":0,"sourceW":16,"sourceH":40}, +"t_b_xuanfu":{"x":938,"y":315,"w":26,"h":26,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"t_sz_bh":{"x":1100,"y":294,"w":61,"h":23,"offX":0,"offY":0,"sourceW":61,"sourceH":23}, +"t_sz_gj":{"x":1758,"y":293,"w":62,"h":23,"offX":0,"offY":0,"sourceW":62,"sourceH":23}, +"t_sz_hs":{"x":1,"y":301,"w":60,"h":23,"offX":1,"offY":0,"sourceW":61,"sourceH":23}, +"t_sz_jc":{"x":1392,"y":118,"w":60,"h":24,"offX":0,"offY":0,"sourceW":60,"sourceH":24}, +"t_sz_wp":{"x":1163,"y":296,"w":61,"h":23,"offX":0,"offY":0,"sourceW":61,"sourceH":23}, +"t_sz_xt":{"x":1497,"y":297,"w":60,"h":23,"offX":0,"offY":0,"sourceW":60,"sourceH":23}, +"t_sz_yp":{"x":84,"y":296,"w":61,"h":23,"offX":0,"offY":0,"sourceW":61,"sourceH":23}, +"zjmgonggaobg":{"x":1640,"y":1,"w":227,"h":20,"offX":0,"offY":0,"sourceW":227,"sourceH":20}, +"apay_tab_1":{"x":1458,"y":81,"w":169,"h":65,"offX":0,"offY":0,"sourceW":169,"sourceH":65}, +"apay_tab_2":{"x":438,"y":72,"w":184,"h":78,"offX":0,"offY":0,"sourceW":184,"sourceH":78}, +"apay_x2":{"x":255,"y":305,"w":36,"h":37,"offX":13,"offY":11,"sourceW":61,"sourceH":57}, +"bagbtn_1":{"x":291,"y":257,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"btn_0":{"x":1770,"y":215,"w":93,"h":41,"offX":0,"offY":0,"sourceW":93,"sourceH":41}, +"btn_1":{"x":1675,"y":215,"w":93,"h":41,"offX":0,"offY":0,"sourceW":93,"sourceH":41}, +"btn_2":{"x":1,"y":234,"w":93,"h":41,"offX":0,"offY":0,"sourceW":93,"sourceH":41}, +"btn_3":{"x":1100,"y":227,"w":93,"h":41,"offX":0,"offY":0,"sourceW":93,"sourceH":41}, +"btn_4":{"x":1944,"y":250,"w":83,"h":37,"offX":0,"offY":0,"sourceW":83,"sourceH":37}, +"btn_5":{"x":434,"y":241,"w":84,"h":37,"offX":0,"offY":0,"sourceW":84,"sourceH":37}, +"btn_6":{"x":803,"y":253,"w":83,"h":37,"offX":0,"offY":0,"sourceW":83,"sourceH":37}, +"btn_7":{"x":1675,"y":258,"w":80,"h":33,"offX":0,"offY":0,"sourceW":80,"sourceH":33}, +"btn_8":{"x":1757,"y":258,"w":80,"h":33,"offX":0,"offY":0,"sourceW":80,"sourceH":33}, +"btn_9":{"x":1215,"y":215,"w":107,"h":42,"offX":0,"offY":0,"sourceW":107,"sourceH":42}, +"btn_apay":{"x":86,"y":186,"w":113,"h":46,"offX":0,"offY":0,"sourceW":113,"sourceH":46}, +"btn_apay2":{"x":1100,"y":179,"w":113,"h":46,"offX":0,"offY":0,"sourceW":113,"sourceH":46}, +"btn_guanbi":{"x":994,"y":315,"w":26,"h":26,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"btn_guanbi2":{"x":966,"y":315,"w":26,"h":26,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"btn_guanbi3":{"x":520,"y":241,"w":26,"h":42,"offX":16,"offY":9,"sourceW":60,"sourceH":60}, +"btn_guanbi4":{"x":572,"y":305,"w":26,"h":42,"offX":16,"offY":9,"sourceW":60,"sourceH":60}, +"chat_button_lt":{"x":198,"y":304,"w":55,"h":25,"offX":0,"offY":0,"sourceW":55,"sourceH":25}, +"common_btn_15":{"x":608,"y":190,"w":108,"h":48,"offX":0,"offY":0,"sourceW":108,"sourceH":48}, +"common_btn_16":{"x":438,"y":192,"w":108,"h":47,"offX":0,"offY":0,"sourceW":108,"sourceH":47}, +"common_yeqian_5":{"x":548,"y":192,"w":45,"h":99,"offX":0,"offY":0,"sourceW":45,"sourceH":99}, +"common_yeqian_6":{"x":387,"y":194,"w":45,"h":99,"offX":0,"offY":0,"sourceW":45,"sourceH":99}, +"com_yeqian_3":{"x":1249,"y":118,"w":141,"h":52,"offX":0,"offY":0,"sourceW":141,"sourceH":52}, +"com_yeqian_5":{"x":1765,"y":170,"w":133,"h":43,"offX":0,"offY":0,"sourceW":133,"sourceH":43}, +"com_yeqian_7":{"x":1249,"y":172,"w":130,"h":41,"offX":0,"offY":0,"sourceW":130,"sourceH":41}, +"tab_01_1":{"x":1100,"y":118,"w":147,"h":59,"offX":0,"offY":0,"sourceW":147,"sourceH":59}, +"tab_01_2":{"x":86,"y":133,"w":139,"h":51,"offX":0,"offY":0,"sourceW":139,"sourceH":51}, +"tab_01_3":{"x":1392,"y":148,"w":139,"h":51,"offX":0,"offY":0,"sourceW":139,"sourceH":51}, +"tips_btn":{"x":914,"y":207,"w":109,"h":44,"offX":0,"offY":0,"sourceW":109,"sourceH":44}, +"tips_btn1":{"x":803,"y":207,"w":109,"h":44,"offX":0,"offY":0,"sourceW":109,"sourceH":44}, +"yeqian_1":{"x":1195,"y":259,"w":70,"h":35,"offX":0,"offY":0,"sourceW":70,"sourceH":35}, +"yeqian_2":{"x":975,"y":253,"w":70,"h":35,"offX":0,"offY":0,"sourceW":70,"sourceH":35}, +"9s_bg_1":{"x":171,"y":317,"w":21,"h":20,"offX":0,"offY":0,"sourceW":21,"sourceH":20}, +"kf_kftz_btn":{"x":1629,"y":81,"w":143,"h":62,"offX":0,"offY":0,"sourceW":143,"sourceH":62}}} \ No newline at end of file diff --git a/resource_Publish/assets/common/common.png b/resource_Publish/assets/common/common.png new file mode 100644 index 0000000..20bbfbc Binary files /dev/null and b/resource_Publish/assets/common/common.png differ diff --git a/resource_Publish/assets/common/levelnumber.fnt b/resource_Publish/assets/common/levelnumber.fnt new file mode 100644 index 0000000..758a37c --- /dev/null +++ b/resource_Publish/assets/common/levelnumber.fnt @@ -0,0 +1,15 @@ +{"file":"levelnumber.png","frames":{ +"0":{"x":49,"y":1,"w":8,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"1":{"x":21,"y":35,"w":6,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"2":{"x":1,"y":35,"w":8,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"3":{"x":48,"y":16,"w":8,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"4":{"x":37,"y":1,"w":10,"h":13,"offX":0,"offY":2,"sourceW":10,"sourceH":17}, +"5":{"x":45,"y":31,"w":9,"h":13,"offX":0,"offY":2,"sourceW":10,"sourceH":17}, +"6":{"x":1,"y":20,"w":9,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"7":{"x":11,"y":35,"w":8,"h":13,"offX":1,"offY":2,"sourceW":10,"sourceH":17}, +"8":{"x":34,"y":31,"w":9,"h":13,"offX":0,"offY":2,"sourceW":10,"sourceH":17}, +"9":{"x":12,"y":20,"w":9,"h":13,"offX":0,"offY":2,"sourceW":10,"sourceH":17}, +"b":{"x":37,"y":16,"w":9,"h":13,"offX":0,"offY":2,"sourceW":10,"sourceH":17}, +"j":{"x":1,"y":1,"w":16,"h":17,"offX":0,"offY":0,"sourceW":16,"sourceH":17}, +"l":{"x":23,"y":20,"w":9,"h":13,"offX":0,"offY":0,"sourceW":9,"sourceH":13}, +"z":{"x":19,"y":1,"w":16,"h":17,"offX":0,"offY":0,"sourceW":16,"sourceH":17}}} \ No newline at end of file diff --git a/resource_Publish/assets/common/levelnumber.png b/resource_Publish/assets/common/levelnumber.png new file mode 100644 index 0000000..e067600 Binary files /dev/null and b/resource_Publish/assets/common/levelnumber.png differ diff --git a/resource_Publish/assets/common/saomachongzhi2.png b/resource_Publish/assets/common/saomachongzhi2.png new file mode 100644 index 0000000..9b43a72 Binary files /dev/null and b/resource_Publish/assets/common/saomachongzhi2.png differ diff --git a/resource_Publish/assets/common/saomachongzhi3.png b/resource_Publish/assets/common/saomachongzhi3.png new file mode 100644 index 0000000..5123752 Binary files /dev/null and b/resource_Publish/assets/common/saomachongzhi3.png differ diff --git a/resource_Publish/assets/common/select.png b/resource_Publish/assets/common/select.png new file mode 100644 index 0000000..b4dad61 Binary files /dev/null and b/resource_Publish/assets/common/select.png differ diff --git a/resource_Publish/assets/common/worship_bg.jpg b/resource_Publish/assets/common/worship_bg.jpg new file mode 100644 index 0000000..f060e42 Binary files /dev/null and b/resource_Publish/assets/common/worship_bg.jpg differ diff --git a/resource_Publish/assets/consumeRank/bg_xfphb.png b/resource_Publish/assets/consumeRank/bg_xfphb.png new file mode 100644 index 0000000..0ea210f Binary files /dev/null and b/resource_Publish/assets/consumeRank/bg_xfphb.png differ diff --git a/resource_Publish/assets/consumeRank/consumeRank.json b/resource_Publish/assets/consumeRank/consumeRank.json new file mode 100644 index 0000000..922df9b --- /dev/null +++ b/resource_Publish/assets/consumeRank/consumeRank.json @@ -0,0 +1,5 @@ +{"file":"consumeRank.png","frames":{ +"btn_xfphb":{"x":1,"y":1,"w":134,"h":48,"offX":0,"offY":0,"sourceW":134,"sourceH":48}, +"xfph_pm1":{"x":1,"y":94,"w":137,"h":40,"offX":0,"offY":0,"sourceW":137,"sourceH":40}, +"xfph_pm2":{"x":1,"y":51,"w":134,"h":41,"offX":0,"offY":0,"sourceW":134,"sourceH":41}, +"xfph_pm3":{"x":1,"y":136,"w":135,"h":38,"offX":0,"offY":0,"sourceW":135,"sourceH":38}}} \ No newline at end of file diff --git a/resource_Publish/assets/consumeRank/consumeRank.png b/resource_Publish/assets/consumeRank/consumeRank.png new file mode 100644 index 0000000..7c57710 Binary files /dev/null and b/resource_Publish/assets/consumeRank/consumeRank.png differ diff --git a/resource_Publish/assets/cumulativeOnline.json b/resource_Publish/assets/cumulativeOnline.json new file mode 100644 index 0000000..be6bd5d --- /dev/null +++ b/resource_Publish/assets/cumulativeOnline.json @@ -0,0 +1,11 @@ +{"file":"cumulativeOnline.png","frames":{ +"lj_bg2":{"x":1,"y":1,"w":791,"h":213,"offX":0,"offY":12,"sourceW":791,"sourceH":230}, +"lj_bg3":{"x":1,"y":216,"w":314,"h":75,"offX":0,"offY":0,"sourceW":314,"sourceH":75}, +"lj_frame1":{"x":794,"y":176,"w":113,"h":154,"offX":0,"offY":0,"sourceW":113,"sourceH":154}, +"lj_frame2":{"x":794,"y":1,"w":125,"h":173,"offX":0,"offY":0,"sourceW":125,"sourceH":173}, +"lj_jdt1":{"x":1,"y":293,"w":612,"h":27,"offX":0,"offY":0,"sourceW":612,"sourceH":27}, +"lj_jdt2":{"x":1,"y":322,"w":542,"h":15,"offX":0,"offY":0,"sourceW":542,"sourceH":15}, +"lj_mb":{"x":921,"y":1,"w":27,"h":27,"offX":0,"offY":0,"sourceW":27,"sourceH":27}, +"lj_title":{"x":615,"y":250,"w":169,"h":48,"offX":0,"offY":0,"sourceW":169,"sourceH":48}, +"lj_xc":{"x":317,"y":216,"w":379,"h":32,"offX":0,"offY":0,"sourceW":379,"sourceH":32}, +"lj_2r":{"x":909,"y":176,"w":110,"h":25,"offX":0,"offY":0,"sourceW":110,"sourceH":25}}} \ No newline at end of file diff --git a/resource_Publish/assets/cumulativeOnline.png b/resource_Publish/assets/cumulativeOnline.png new file mode 100644 index 0000000..8117a2e Binary files /dev/null and b/resource_Publish/assets/cumulativeOnline.png differ diff --git a/resource_Publish/assets/cumulativeOnline/cumulativeOnline.json b/resource_Publish/assets/cumulativeOnline/cumulativeOnline.json new file mode 100644 index 0000000..b52ac26 --- /dev/null +++ b/resource_Publish/assets/cumulativeOnline/cumulativeOnline.json @@ -0,0 +1,15 @@ +{"file":"cumulativeOnline.png","frames":{ +"lj_bg2":{"x":1,"y":1,"w":695,"h":171,"offX":0,"offY":0,"sourceW":695,"sourceH":171}, +"lj_bg3":{"x":1,"y":222,"w":510,"h":40,"offX":22,"offY":0,"sourceW":554,"sourceH":40}, +"lj_frame":{"x":698,"y":1,"w":150,"h":226,"offX":3,"offY":7,"sourceW":155,"sourceH":236}, +"lj_jdt1":{"x":1,"y":264,"w":677,"h":22,"offX":0,"offY":0,"sourceW":677,"sourceH":22}, +"lj_jdt2":{"x":1,"y":288,"w":672,"h":12,"offX":0,"offY":0,"sourceW":672,"sourceH":12}, +"lj_jdt3":{"x":991,"y":51,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"lj_jdt4":{"x":991,"y":85,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"lj_jt1":{"x":907,"y":101,"w":39,"h":54,"offX":0,"offY":0,"sourceW":39,"sourceH":54}, +"lj_jt2":{"x":948,"y":101,"w":38,"h":54,"offX":0,"offY":0,"sourceW":38,"sourceH":54}, +"lj_title":{"x":850,"y":1,"w":169,"h":48,"offX":0,"offY":0,"sourceW":169,"sourceH":48}, +"lj_tt1":{"x":850,"y":76,"w":139,"h":23,"offX":0,"offY":0,"sourceW":139,"sourceH":23}, +"lj_tt2":{"x":850,"y":51,"w":139,"h":23,"offX":0,"offY":0,"sourceW":139,"sourceH":23}, +"lj_xc":{"x":1,"y":174,"w":639,"h":46,"offX":0,"offY":0,"sourceW":639,"sourceH":46}, +"lj_arrow":{"x":850,"y":101,"w":55,"h":39,"offX":0,"offY":0,"sourceW":55,"sourceH":39}}} \ No newline at end of file diff --git a/resource_Publish/assets/cumulativeOnline/cumulativeOnline.png b/resource_Publish/assets/cumulativeOnline/cumulativeOnline.png new file mode 100644 index 0000000..be380fe Binary files /dev/null and b/resource_Publish/assets/cumulativeOnline/cumulativeOnline.png differ diff --git a/resource_Publish/assets/cumulativeOnline/lj_bg1.png b/resource_Publish/assets/cumulativeOnline/lj_bg1.png new file mode 100644 index 0000000..eae92a1 Binary files /dev/null and b/resource_Publish/assets/cumulativeOnline/lj_bg1.png differ diff --git a/resource_Publish/assets/donationRank/donationRank.json b/resource_Publish/assets/donationRank/donationRank.json new file mode 100644 index 0000000..71f772a --- /dev/null +++ b/resource_Publish/assets/donationRank/donationRank.json @@ -0,0 +1,11 @@ +{"file":"donationRank.png","frames":{ +"jxpm_bg1":{"x":1,"y":156,"w":701,"h":58,"offX":0,"offY":0,"sourceW":701,"sourceH":58}, +"jxpm_bg2":{"x":1,"y":95,"w":701,"h":59,"offX":0,"offY":0,"sourceW":701,"sourceH":59}, +"jxpm_1":{"x":710,"y":28,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_2":{"x":944,"y":1,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_3":{"x":880,"y":1,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_4":{"x":816,"y":1,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_5":{"x":838,"y":28,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_6":{"x":774,"y":28,"w":62,"h":25,"offX":0,"offY":0,"sourceW":62,"sourceH":25}, +"jxpm_7":{"x":710,"y":1,"w":104,"h":25,"offX":0,"offY":0,"sourceW":104,"sourceH":25}, +"jxpm_banner":{"x":1,"y":1,"w":707,"h":92,"offX":0,"offY":0,"sourceW":707,"sourceH":92}}} \ No newline at end of file diff --git a/resource_Publish/assets/donationRank/donationRank.png b/resource_Publish/assets/donationRank/donationRank.png new file mode 100644 index 0000000..fb97942 Binary files /dev/null and b/resource_Publish/assets/donationRank/donationRank.png differ diff --git a/resource_Publish/assets/egret_icon.png b/resource_Publish/assets/egret_icon.png new file mode 100644 index 0000000..ede29c7 Binary files /dev/null and b/resource_Publish/assets/egret_icon.png differ diff --git a/resource_Publish/assets/feihuo/banner_feihuo.png b/resource_Publish/assets/feihuo/banner_feihuo.png new file mode 100644 index 0000000..8085bab Binary files /dev/null and b/resource_Publish/assets/feihuo/banner_feihuo.png differ diff --git a/resource_Publish/assets/feihuo/bg_feihuo.png b/resource_Publish/assets/feihuo/bg_feihuo.png new file mode 100644 index 0000000..4ea27c9 Binary files /dev/null and b/resource_Publish/assets/feihuo/bg_feihuo.png differ diff --git a/resource_Publish/assets/firstcharge/firstcharge.json b/resource_Publish/assets/firstcharge/firstcharge.json new file mode 100644 index 0000000..b65097f --- /dev/null +++ b/resource_Publish/assets/firstcharge/firstcharge.json @@ -0,0 +1,11 @@ +{"file":"firstcharge.png","frames":{ +"fc_t3":{"x":0,"y":575,"w":537,"h":190,"offX":31,"offY":3,"sourceW":614,"sourceH":193}, +"fc_t4":{"x":0,"y":385,"w":537,"h":190,"offX":31,"offY":3,"sourceW":614,"sourceH":193}, +"fc_t5":{"x":460,"y":765,"w":458,"h":181,"offX":52,"offY":12,"sourceW":614,"sourceH":193}, +"fc_btn_1":{"x":757,"y":571,"w":203,"h":96,"offX":0,"offY":0,"sourceW":204,"sourceH":97}, +"fc_btn_2":{"x":537,"y":612,"w":203,"h":96,"offX":0,"offY":0,"sourceW":204,"sourceH":97}, +"fc_yilingqu":{"x":740,"y":667,"w":114,"h":69,"offX":0,"offY":0,"sourceW":114,"sourceH":69}, +"fc_t6":{"x":0,"y":765,"w":460,"h":181,"offX":50,"offY":12,"sourceW":614,"sourceH":193}, +"fc_p_2":{"x":537,"y":385,"w":220,"h":227,"offX":56,"offY":279,"sourceW":325,"sourceH":544}, +"fc_bg2":{"x":0,"y":0,"w":763,"h":385,"offX":35,"offY":40,"sourceW":847,"sourceH":486}, +"weapon_bottom_bg":{"x":757,"y":385,"w":267,"h":186,"offX":0,"offY":0,"sourceW":267,"sourceH":186}}} \ No newline at end of file diff --git a/resource_Publish/assets/firstcharge/firstcharge.png b/resource_Publish/assets/firstcharge/firstcharge.png new file mode 100644 index 0000000..8ee920b Binary files /dev/null and b/resource_Publish/assets/firstcharge/firstcharge.png differ diff --git a/resource_Publish/assets/forge/forge.json b/resource_Publish/assets/forge/forge.json new file mode 100644 index 0000000..9424d41 --- /dev/null +++ b/resource_Publish/assets/forge/forge.json @@ -0,0 +1,43 @@ +{"file":"forge.png","frames":{ +"forge_t3":{"x":1481,"y":330,"w":12,"h":14,"offX":0,"offY":0,"sourceW":12,"sourceH":14}, +"forge_xlt":{"x":1261,"y":411,"w":236,"h":32,"offX":0,"offY":0,"sourceW":236,"sourceH":32}, +"forge_jiantou2":{"x":1965,"y":84,"w":44,"h":32,"offX":0,"offY":0,"sourceW":44,"sourceH":32}, +"forge_bg":{"x":638,"y":1,"w":621,"h":499,"offX":0,"offY":0,"sourceW":621,"sourceH":499}, +"forge_t2":{"x":2011,"y":115,"w":17,"h":2,"offX":3,"offY":0,"sourceW":20,"sourceH":2}, +"forge_bg2":{"x":1,"y":1,"w":635,"h":555,"offX":0,"offY":0,"sourceW":635,"sourceH":555}, +"hc_tab_hc2":{"x":2010,"y":297,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"forge_equip1":{"x":1815,"y":297,"w":119,"h":119,"offX":1,"offY":0,"sourceW":121,"sourceH":120}, +"hecheng_bg2":{"x":1261,"y":1,"w":702,"h":126,"offX":0,"offY":0,"sourceW":702,"sourceH":126}, +"recovery_zs_4":{"x":1936,"y":297,"w":72,"h":75,"offX":0,"offY":0,"sourceW":72,"sourceH":80}, +"forge_xx2":{"x":1499,"y":391,"w":27,"h":26,"offX":1,"offY":0,"sourceW":30,"sourceH":29}, +"forge_xx1":{"x":1936,"y":374,"w":27,"h":26,"offX":1,"offY":0,"sourceW":30,"sourceH":29}, +"recovery_banner":{"x":638,"y":502,"w":877,"h":183,"offX":12,"offY":0,"sourceW":889,"sourceH":194}, +"forge_bt4":{"x":1452,"y":468,"w":147,"h":23,"offX":0,"offY":0,"sourceW":147,"sourceH":23}, +"forge_xxbg":{"x":2011,"y":84,"w":32,"h":29,"offX":0,"offY":0,"sourceW":32,"sourceH":29}, +"forge_gou1":{"x":1689,"y":468,"w":25,"h":24,"offX":0,"offY":0,"sourceW":25,"sourceH":24}, +"forge_bt1":{"x":1261,"y":445,"w":189,"h":23,"offX":0,"offY":0,"sourceW":189,"sourceH":23}, +"recovery_zs_5":{"x":1728,"y":419,"w":71,"h":73,"offX":1,"offY":2,"sourceW":72,"sourceH":80}, +"hc_tab_hc1":{"x":1735,"y":494,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"recovery_zs_3":{"x":1499,"y":314,"w":72,"h":75,"offX":0,"offY":0,"sourceW":72,"sourceH":80}, +"recovery_zs_2":{"x":1973,"y":374,"w":72,"h":75,"offX":0,"offY":0,"sourceW":72,"sourceH":80}, +"forge_t":{"x":1815,"y":418,"w":156,"h":36,"offX":0,"offY":1,"sourceW":156,"sourceH":37}, +"forge_equipbg1":{"x":1815,"y":213,"w":232,"h":82,"offX":0,"offY":0,"sourceW":232,"sourceH":82}, +"forge_gou2":{"x":1528,"y":391,"w":26,"h":24,"offX":0,"offY":0,"sourceW":26,"sourceH":24}, +"hecheng_bg1":{"x":1261,"y":129,"w":338,"h":183,"offX":0,"offY":0,"sourceW":338,"sourceH":183}, +"forge_equipbg2":{"x":1815,"y":129,"w":232,"h":82,"offX":0,"offY":0,"sourceW":232,"sourceH":82}, +"forge_sxjt":{"x":1869,"y":456,"w":77,"h":55,"offX":2,"offY":0,"sourceW":79,"sourceH":55}, +"forge_jiantou1":{"x":1869,"y":513,"w":44,"h":32,"offX":0,"offY":0,"sourceW":44,"sourceH":32}, +"forge_t1":{"x":1481,"y":314,"w":12,"h":14,"offX":0,"offY":0,"sourceW":12,"sourceH":14}, +"recovery_zs_1":{"x":1973,"y":451,"w":69,"h":73,"offX":3,"offY":2,"sourceW":72,"sourceH":80}, +"forge_tab2":{"x":1499,"y":419,"w":113,"h":47,"offX":0,"offY":0,"sourceW":113,"sourceH":47}, +"forge_bt2":{"x":1517,"y":493,"w":142,"h":23,"offX":0,"offY":0,"sourceW":142,"sourceH":24}, +"forge_bt3":{"x":1261,"y":470,"w":147,"h":23,"offX":0,"offY":0,"sourceW":147,"sourceH":23}, +"recovery_bg":{"x":1601,"y":129,"w":212,"h":288,"offX":0,"offY":0,"sourceW":212,"sourceH":288}, +"forge_sxt":{"x":1261,"y":377,"w":236,"h":32,"offX":0,"offY":0,"sourceW":236,"sourceH":32}, +"forge_huode":{"x":1261,"y":314,"w":218,"h":61,"offX":4,"offY":1,"sourceW":225,"sourceH":62}, +"forge_btjt":{"x":1965,"y":1,"w":69,"h":81,"offX":0,"offY":0,"sourceW":69,"sourceH":81}, +"forge_tab1":{"x":1614,"y":419,"w":112,"h":47,"offX":0,"offY":0,"sourceW":112,"sourceH":47}, +"forge_equip2":{"x":1801,"y":456,"w":66,"h":66,"offX":0,"offY":0,"sourceW":66,"sourceH":66}, +"forge_bg3":{"x":1689,"y":494,"w":44,"h":44,"offX":0,"offY":0,"sourceW":44,"sourceH":44}, +"hc_tab_hs2":{"x":1573,"y":314,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"hc_tab_hs1":{"x":1661,"y":468,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}}} \ No newline at end of file diff --git a/resource_Publish/assets/forge/forge.png b/resource_Publish/assets/forge/forge.png new file mode 100644 index 0000000..935d86f Binary files /dev/null and b/resource_Publish/assets/forge/forge.png differ diff --git a/resource_Publish/assets/forge/forge_bg4.png b/resource_Publish/assets/forge/forge_bg4.png new file mode 100644 index 0000000..cc1ceb4 Binary files /dev/null and b/resource_Publish/assets/forge/forge_bg4.png differ diff --git a/resource_Publish/assets/friend/friend.json b/resource_Publish/assets/friend/friend.json new file mode 100644 index 0000000..65cc30d --- /dev/null +++ b/resource_Publish/assets/friend/friend.json @@ -0,0 +1,20 @@ +{"file":"friend.png","frames":{ +"fd_top_bg":{"x":1,"y":1,"w":862,"h":42,"offX":0,"offY":0,"sourceW":862,"sourceH":42}, +"fd_top_fenge":{"x":1001,"y":1,"w":4,"h":40,"offX":0,"offY":0,"sourceW":4,"sourceH":40}, +"liebiaoxuanzhong":{"x":865,"y":1,"w":50,"h":48,"offX":0,"offY":0,"sourceW":50,"sourceH":48}, +"szys_1":{"x":259,"y":45,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"szys_2":{"x":225,"y":45,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"szys_3":{"x":327,"y":45,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"szys_166":{"x":293,"y":45,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"t_gxyq_fj1":{"x":197,"y":45,"w":26,"h":54,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_fj2":{"x":169,"y":45,"w":26,"h":54,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_gz1":{"x":85,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_gz2":{"x":57,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_hmd1":{"x":945,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"t_gxyq_hmd2":{"x":917,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"t_gxyq_hy1":{"x":973,"y":58,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_hy2":{"x":973,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_qq1":{"x":141,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_qq2":{"x":113,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_zb1":{"x":29,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"t_gxyq_zb2":{"x":1,"y":45,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}}} \ No newline at end of file diff --git a/resource_Publish/assets/friend/friend.png b/resource_Publish/assets/friend/friend.png new file mode 100644 index 0000000..6984bea Binary files /dev/null and b/resource_Publish/assets/friend/friend.png differ diff --git a/resource_Publish/assets/fuli/banner_sbzb.png b/resource_Publish/assets/fuli/banner_sbzb.png new file mode 100644 index 0000000..4f62e16 Binary files /dev/null and b/resource_Publish/assets/fuli/banner_sbzb.png differ diff --git a/resource_Publish/assets/fuli/banner_ssboss.png b/resource_Publish/assets/fuli/banner_ssboss.png new file mode 100644 index 0000000..ccaca6a Binary files /dev/null and b/resource_Publish/assets/fuli/banner_ssboss.png differ diff --git a/resource_Publish/assets/fuli/btnbg.png b/resource_Publish/assets/fuli/btnbg.png new file mode 100644 index 0000000..b9b11f1 Binary files /dev/null and b/resource_Publish/assets/fuli/btnbg.png differ diff --git a/resource_Publish/assets/fuli/fl_jhm_bg.png b/resource_Publish/assets/fuli/fl_jhm_bg.png new file mode 100644 index 0000000..bc30edc Binary files /dev/null and b/resource_Publish/assets/fuli/fl_jhm_bg.png differ diff --git a/resource_Publish/assets/fuli/qd_bg.png b/resource_Publish/assets/fuli/qd_bg.png new file mode 100644 index 0000000..f53bc94 Binary files /dev/null and b/resource_Publish/assets/fuli/qd_bg.png differ diff --git a/resource_Publish/assets/fuli/qr_bg.png b/resource_Publish/assets/fuli/qr_bg.png new file mode 100644 index 0000000..c583533 Binary files /dev/null and b/resource_Publish/assets/fuli/qr_bg.png differ diff --git a/resource_Publish/assets/fuli/wlelfare.json b/resource_Publish/assets/fuli/wlelfare.json new file mode 100644 index 0000000..bb01106 --- /dev/null +++ b/resource_Publish/assets/fuli/wlelfare.json @@ -0,0 +1,81 @@ +{"file":"wlelfare.png","frames":{ +"qd_t_3_6":{"x":612,"y":320,"w":19,"h":18,"offX":0,"offY":1,"sourceW":19,"sourceH":21}, +"qd_t_1_9":{"x":588,"y":320,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qd_yeqian2":{"x":545,"y":288,"w":86,"h":30,"offX":0,"offY":0,"sourceW":86,"sourceH":30}, +"fl_jhm_btn_2":{"x":735,"y":246,"w":86,"h":40,"offX":0,"offY":0,"sourceW":86,"sourceH":40}, +"qd_t_2_7":{"x":146,"y":329,"w":12,"h":17,"offX":1,"offY":2,"sourceW":13,"sourceH":20}, +"qd_t_yue":{"x":735,"y":156,"w":22,"h":35,"offX":0,"offY":0,"sourceW":22,"sourceH":35}, +"biaoti_fuli":{"x":285,"y":239,"w":168,"h":45,"offX":0,"offY":0,"sourceW":168,"sourceH":45}, +"qd_t_1_4":{"x":735,"y":193,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qr_bg2":{"x":1,"y":140,"w":454,"h":39,"offX":0,"offY":0,"sourceW":454,"sourceH":39}, +"qd_t_2_1":{"x":756,"y":224,"w":11,"h":17,"offX":1,"offY":2,"sourceW":13,"sourceH":20}, +"qr_t2_7":{"x":633,"y":318,"w":38,"h":28,"offX":0,"offY":0,"sourceW":38,"sourceH":28}, +"yk_biaoqian_3":{"x":1,"y":279,"w":132,"h":25,"offX":0,"offY":0,"sourceW":132,"sourceH":25}, +"qd_t_3_7":{"x":160,"y":329,"w":11,"h":17,"offX":4,"offY":2,"sourceW":19,"sourceH":21}, +"qr_p_yilingqu":{"x":630,"y":1,"w":137,"h":153,"offX":0,"offY":0,"sourceW":137,"sourceH":153}, +"qr_t1_7":{"x":198,"y":246,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"yk_dian":{"x":19,"y":329,"w":17,"h":17,"offX":0,"offY":0,"sourceW":17,"sourceH":17}, +"qr_t1_2":{"x":238,"y":313,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"yk_biaoqian_4":{"x":135,"y":279,"w":132,"h":25,"offX":0,"offY":0,"sourceW":132,"sourceH":25}, +"qd_t_1_7":{"x":737,"y":322,"w":21,"h":28,"offX":1,"offY":1,"sourceW":22,"sourceH":29}, +"qr_p_3":{"x":769,"y":129,"w":106,"h":115,"offX":0,"offY":0,"sourceW":106,"sourceH":115}, +"qd_t_2_0":{"x":59,"y":329,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qr_p_2":{"x":639,"y":156,"w":94,"h":103,"offX":0,"offY":0,"sourceW":94,"sourceH":103}, +"qd_t_1_1":{"x":760,"y":322,"w":20,"h":29,"offX":1,"offY":0,"sourceW":22,"sourceH":29}, +"qd_t_leiji":{"x":1,"y":246,"w":195,"h":31,"offX":0,"offY":0,"sourceW":195,"sourceH":31}, +"qr_t2_1":{"x":986,"y":291,"w":37,"h":19,"offX":1,"offY":4,"sourceW":38,"sourceH":28}, +"qd_t_2_5":{"x":132,"y":329,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qd_t_2_2":{"x":118,"y":329,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qd_t_1_8":{"x":564,"y":320,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qd_t_2_9":{"x":712,"y":295,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"yk_icon4":{"x":423,"y":1,"w":205,"h":123,"offX":19,"offY":23,"sourceW":260,"sourceH":146}, +"flqd_bg0":{"x":317,"y":313,"w":40,"h":40,"offX":0,"offY":0,"sourceW":40,"sourceH":40}, +"qr_t1_1":{"x":820,"y":311,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"qr_t1_5":{"x":159,"y":306,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"yk_30tian2":{"x":877,"y":129,"w":47,"h":89,"offX":0,"offY":0,"sourceW":47,"sourceH":89}, +"yk_icon3":{"x":209,"y":1,"w":212,"h":120,"offX":16,"offY":14,"sourceW":260,"sourceH":146}, +"yk_biaoqian_2":{"x":269,"y":286,"w":131,"h":25,"offX":0,"offY":0,"sourceW":131,"sourceH":25}, +"qd_t_1_6":{"x":424,"y":181,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qd_yeqian1":{"x":402,"y":289,"w":86,"h":29,"offX":0,"offY":0,"sourceW":86,"sourceH":30}, +"qd_t_1_0":{"x":459,"y":320,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qr_t2_4":{"x":399,"y":320,"w":34,"h":28,"offX":2,"offY":0,"sourceW":38,"sourceH":28}, +"qd_t_3_1":{"x":198,"y":269,"w":18,"h":6,"offX":0,"offY":7,"sourceW":19,"sourceH":21}, +"qd_t_1_5":{"x":713,"y":322,"w":22,"h":28,"offX":0,"offY":1,"sourceW":22,"sourceH":29}, +"qr_t1_3":{"x":1,"y":306,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"flqd_djqd":{"x":899,"y":316,"w":74,"h":21,"offX":0,"offY":0,"sourceW":74,"sourceH":21}, +"qd_t_2_8":{"x":803,"y":322,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qd_yiqiandao":{"x":986,"y":256,"w":36,"h":33,"offX":6,"offY":5,"sourceW":45,"sourceH":41}, +"yk_icon2":{"x":1,"y":1,"w":206,"h":137,"offX":24,"offY":0,"sourceW":260,"sourceH":146}, +"qd_t_2_3":{"x":104,"y":329,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qr_t2_3":{"x":588,"y":126,"w":38,"h":28,"offX":0,"offY":0,"sourceW":38,"sourceH":28}, +"flqd_bg1":{"x":823,"y":246,"w":52,"h":52,"offX":0,"offY":0,"sourceW":52,"sourceH":52}, +"yk_30tian":{"x":877,"y":220,"w":47,"h":89,"offX":0,"offY":0,"sourceW":47,"sourceH":89}, +"qd_t_2_6":{"x":74,"y":329,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"qd_t_3_3":{"x":782,"y":322,"w":19,"h":17,"offX":0,"offY":1,"sourceW":19,"sourceH":21}, +"yk_icon1":{"x":769,"y":1,"w":166,"h":126,"offX":53,"offY":13,"sourceW":260,"sourceH":146}, +"qr_t1_4":{"x":633,"y":295,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"flqd_qd1":{"x":455,"y":241,"w":88,"h":46,"offX":0,"offY":0,"sourceW":88,"sourceH":46}, +"qd_t_3_z":{"x":1,"y":329,"w":16,"h":20,"offX":1,"offY":1,"sourceW":19,"sourceH":21}, +"qd_t_2_4":{"x":89,"y":329,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"flqd_bg2":{"x":490,"y":289,"w":48,"h":48,"offX":0,"offY":0,"sourceW":48,"sourceH":48}, +"qd_t_3_4":{"x":419,"y":126,"w":18,"h":11,"offX":1,"offY":5,"sourceW":19,"sourceH":21}, +"flqd_bg3":{"x":926,"y":256,"w":58,"h":58,"offX":0,"offY":0,"sourceW":58,"sourceH":58}, +"qd_t_3_2":{"x":38,"y":329,"w":19,"h":13,"offX":0,"offY":3,"sourceW":19,"sourceH":21}, +"flqd_qd2":{"x":545,"y":241,"w":89,"h":45,"offX":0,"offY":0,"sourceW":89,"sourceH":45}, +"qd_t_3_5":{"x":735,"y":224,"w":19,"h":19,"offX":0,"offY":0,"sourceW":19,"sourceH":21}, +"fl_jhm_btn_1":{"x":285,"y":181,"w":137,"h":56,"offX":0,"offY":0,"sourceW":137,"sourceH":56}, +"yk_biaoqian_1":{"x":457,"y":126,"w":129,"h":26,"offX":0,"offY":0,"sourceW":129,"sourceH":26}, +"flqd_tab1":{"x":636,"y":261,"w":90,"h":32,"offX":0,"offY":0,"sourceW":90,"sourceH":32}, +"yqs_btn":{"x":1,"y":181,"w":143,"h":62,"offX":0,"offY":0,"sourceW":143,"sourceH":62}, +"yk_btn":{"x":457,"y":156,"w":180,"h":83,"offX":0,"offY":0,"sourceW":180,"sourceH":83}, +"qr_t1_6":{"x":80,"y":306,"w":77,"h":21,"offX":0,"offY":0,"sourceW":77,"sourceH":21}, +"qd_t_1_3":{"x":435,"y":320,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qr_t2_2":{"x":673,"y":318,"w":38,"h":27,"offX":0,"offY":1,"sourceW":38,"sourceH":28}, +"qd_t_1_2":{"x":540,"y":320,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"qr_p_1":{"x":146,"y":181,"w":137,"h":63,"offX":0,"offY":0,"sourceW":137,"sourceH":63}, +"qd_t_jin":{"x":424,"y":212,"w":23,"h":22,"offX":0,"offY":0,"sourceW":23,"sourceH":22}, +"qr_t2_5":{"x":359,"y":313,"w":38,"h":28,"offX":0,"offY":0,"sourceW":38,"sourceH":28}, +"flqd_tab2":{"x":728,"y":288,"w":90,"h":32,"offX":0,"offY":0,"sourceW":90,"sourceH":32}, +"qr_t2_6":{"x":975,"y":316,"w":38,"h":28,"offX":0,"offY":0,"sourceW":38,"sourceH":28}, +"yk_biaoqian_0":{"x":209,"y":123,"w":208,"h":14,"offX":0,"offY":0,"sourceW":208,"sourceH":14}, +"yqs_wz":{"x":937,"y":1,"w":80,"h":253,"offX":0,"offY":0,"sourceW":80,"sourceH":253}}} \ No newline at end of file diff --git a/resource_Publish/assets/fuli/wlelfare.png b/resource_Publish/assets/fuli/wlelfare.png new file mode 100644 index 0000000..e612e97 Binary files /dev/null and b/resource_Publish/assets/fuli/wlelfare.png differ diff --git a/resource_Publish/assets/fuli/yk_bg.png b/resource_Publish/assets/fuli/yk_bg.png new file mode 100644 index 0000000..112be8e Binary files /dev/null and b/resource_Publish/assets/fuli/yk_bg.png differ diff --git a/resource_Publish/assets/fuli/yqs_bg.png b/resource_Publish/assets/fuli/yqs_bg.png new file mode 100644 index 0000000..4f4d58e Binary files /dev/null and b/resource_Publish/assets/fuli/yqs_bg.png differ diff --git a/resource_Publish/assets/game2/bg_wanshanziliao.png b/resource_Publish/assets/game2/bg_wanshanziliao.png new file mode 100644 index 0000000..ed8aec3 Binary files /dev/null and b/resource_Publish/assets/game2/bg_wanshanziliao.png differ diff --git a/resource_Publish/assets/getProps/getProps.json b/resource_Publish/assets/getProps/getProps.json new file mode 100644 index 0000000..bc99837 --- /dev/null +++ b/resource_Publish/assets/getProps/getProps.json @@ -0,0 +1,20 @@ +{"file":"getProps.png","frames":{ +"get_icon_3":{"x":390,"y":208,"w":68,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_12":{"x":320,"y":208,"w":68,"h":66,"offX":1,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_4":{"x":320,"y":1,"w":70,"h":66,"offX":0,"offY":2,"sourceW":70,"sourceH":70}, +"get_jj2":{"x":461,"y":26,"w":39,"h":19,"offX":0,"offY":0,"sourceW":39,"sourceH":19}, +"get_icon_7":{"x":388,"y":276,"w":66,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_jj1":{"x":461,"y":47,"w":38,"h":17,"offX":0,"offY":0,"sourceW":38,"sourceH":17}, +"get_icon_8":{"x":320,"y":140,"w":68,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_5":{"x":392,"y":1,"w":67,"h":67,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_bg":{"x":1,"y":1,"w":317,"h":364,"offX":0,"offY":0,"sourceW":317,"sourceH":364}, +"get_icon_9":{"x":1,"y":385,"w":66,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_2":{"x":389,"y":70,"w":66,"h":68,"offX":2,"offY":0,"sourceW":70,"sourceH":70}, +"get_bg2":{"x":1,"y":367,"w":282,"h":16,"offX":0,"offY":0,"sourceW":282,"sourceH":16}, +"get_icon_1":{"x":320,"y":276,"w":66,"h":67,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_6":{"x":388,"y":344,"w":66,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_icon_10":{"x":320,"y":345,"w":66,"h":66,"offX":2,"offY":2,"sourceW":70,"sourceH":70}, +"get_tj":{"x":461,"y":1,"w":42,"h":23,"offX":0,"offY":0,"sourceW":42,"sourceH":23}, +"get_icon_11":{"x":390,"y":140,"w":68,"h":66,"offX":1,"offY":2,"sourceW":70,"sourceH":70}, +"get_bg3":{"x":69,"y":385,"w":144,"h":27,"offX":0,"offY":0,"sourceW":144,"sourceH":27}, +"get_icon_13":{"x":320,"y":69,"w":67,"h":67,"offX":2,"offY":2,"sourceW":70,"sourceH":70}}} \ No newline at end of file diff --git a/resource_Publish/assets/getProps/getProps.png b/resource_Publish/assets/getProps/getProps.png new file mode 100644 index 0000000..66fa6e7 Binary files /dev/null and b/resource_Publish/assets/getProps/getProps.png differ diff --git a/resource_Publish/assets/growway/growway.json b/resource_Publish/assets/growway/growway.json new file mode 100644 index 0000000..06a2d45 --- /dev/null +++ b/resource_Publish/assets/growway/growway.json @@ -0,0 +1,14 @@ +{"file":"growway.png","frames":{ +"czzl_tab_21":{"x":962,"y":1,"w":26,"h":54,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"czzl_t1":{"x":1,"y":561,"w":455,"h":28,"offX":0,"offY":0,"sourceW":455,"sourceH":28}, +"czzl_tab_31":{"x":878,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"czzl_tab_01":{"x":850,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"czzl_tab_11":{"x":710,"y":1,"w":26,"h":56,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"czzl_tab_02":{"x":794,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"growway_jt":{"x":934,"y":57,"w":55,"h":25,"offX":0,"offY":0,"sourceW":55,"sourceH":25}, +"czzl_tab_32":{"x":766,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"czzl_tab_22":{"x":934,"y":1,"w":26,"h":54,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"bg_czzl":{"x":1,"y":1,"w":707,"h":558,"offX":0,"offY":0,"sourceW":707,"sourceH":558}, +"czzl_tab_12":{"x":738,"y":1,"w":26,"h":56,"offX":4,"offY":20,"sourceW":39,"sourceH":111}, +"czzl_tab_41":{"x":906,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}, +"czzl_tab_42":{"x":822,"y":1,"w":26,"h":55,"offX":4,"offY":21,"sourceW":39,"sourceH":111}}} \ No newline at end of file diff --git a/resource_Publish/assets/growway/growway.png b/resource_Publish/assets/growway/growway.png new file mode 100644 index 0000000..a470683 Binary files /dev/null and b/resource_Publish/assets/growway/growway.png differ diff --git a/resource_Publish/assets/guild/guild.json b/resource_Publish/assets/guild/guild.json new file mode 100644 index 0000000..1073fd5 --- /dev/null +++ b/resource_Publish/assets/guild/guild.json @@ -0,0 +1,19 @@ +{"file":"guild.png","frames":{ +"guild_bg_biaoqian":{"x":1,"y":691,"w":482,"h":35,"offX":0,"offY":0,"sourceW":482,"sourceH":35}, +"guild_bg_guanlidating":{"x":453,"y":214,"w":224,"h":309,"offX":0,"offY":0,"sourceW":224,"sourceH":309}, +"guild_bg_hanghuidating":{"x":1,"y":1,"w":722,"h":128,"offX":0,"offY":0,"sourceW":722,"sourceH":128}, +"guild_bg_lashen":{"x":948,"y":35,"w":61,"h":13,"offX":0,"offY":0,"sourceW":61,"sourceH":13}, +"guild_bg_liangongfang":{"x":1,"y":214,"w":224,"h":309,"offX":0,"offY":0,"sourceW":224,"sourceH":309}, +"guild_bg_yishiting":{"x":227,"y":214,"w":224,"h":309,"offX":0,"offY":0,"sourceW":224,"sourceH":309}, +"guild_jingyantiao":{"x":795,"y":21,"w":218,"h":12,"offX":0,"offY":0,"sourceW":218,"sourceH":12}, +"guild_jingyantiao_bg":{"x":795,"y":1,"w":224,"h":18,"offX":0,"offY":0,"sourceW":224,"sourceH":18}, +"guild_jxbt":{"x":679,"y":214,"w":313,"h":32,"offX":0,"offY":0,"sourceW":313,"sourceH":32}, +"guild_jxfgx":{"x":679,"y":248,"w":304,"h":3,"offX":0,"offY":0,"sourceW":304,"sourceH":3}, +"guild_jxiconk":{"x":725,"y":1,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"guild_lbbg1":{"x":1,"y":131,"w":856,"h":81,"offX":0,"offY":0,"sourceW":856,"sourceH":81}, +"guild_lbbg2":{"x":1,"y":525,"w":685,"h":81,"offX":0,"offY":0,"sourceW":685,"sourceH":81}, +"guild_lbbg3":{"x":1,"y":608,"w":685,"h":81,"offX":0,"offY":0,"sourceW":685,"sourceH":81}, +"guild_pm_1":{"x":848,"y":35,"w":49,"h":50,"offX":0,"offY":0,"sourceW":49,"sourceH":50}, +"guild_pm_2":{"x":899,"y":35,"w":47,"h":49,"offX":0,"offY":0,"sourceW":47,"sourceH":49}, +"guild_pm_3":{"x":795,"y":35,"w":51,"h":49,"offX":0,"offY":0,"sourceW":51,"sourceH":49}, +"guild_wenzizhuangshi":{"x":1011,"y":35,"w":10,"h":10,"offX":0,"offY":0,"sourceW":10,"sourceH":10}}} \ No newline at end of file diff --git a/resource_Publish/assets/guild/guild.png b/resource_Publish/assets/guild/guild.png new file mode 100644 index 0000000..b7942d7 Binary files /dev/null and b/resource_Publish/assets/guild/guild.png differ diff --git a/resource_Publish/assets/image/model/body/body001_0.png b/resource_Publish/assets/image/model/body/body001_0.png new file mode 100644 index 0000000..69a3310 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body001_0.png differ diff --git a/resource_Publish/assets/image/model/body/body001_1.png b/resource_Publish/assets/image/model/body/body001_1.png new file mode 100644 index 0000000..284565f Binary files /dev/null and b/resource_Publish/assets/image/model/body/body001_1.png differ diff --git a/resource_Publish/assets/image/model/body/body002_0.png b/resource_Publish/assets/image/model/body/body002_0.png new file mode 100644 index 0000000..53c5129 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body002_0.png differ diff --git a/resource_Publish/assets/image/model/body/body002_1.png b/resource_Publish/assets/image/model/body/body002_1.png new file mode 100644 index 0000000..b07e742 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body002_1.png differ diff --git a/resource_Publish/assets/image/model/body/body003_0.png b/resource_Publish/assets/image/model/body/body003_0.png new file mode 100644 index 0000000..a09b146 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body003_0.png differ diff --git a/resource_Publish/assets/image/model/body/body003_1.png b/resource_Publish/assets/image/model/body/body003_1.png new file mode 100644 index 0000000..e500880 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body003_1.png differ diff --git a/resource_Publish/assets/image/model/body/body004_0.png b/resource_Publish/assets/image/model/body/body004_0.png new file mode 100644 index 0000000..8a42264 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body004_0.png differ diff --git a/resource_Publish/assets/image/model/body/body004_1.png b/resource_Publish/assets/image/model/body/body004_1.png new file mode 100644 index 0000000..6133c0a Binary files /dev/null and b/resource_Publish/assets/image/model/body/body004_1.png differ diff --git a/resource_Publish/assets/image/model/body/body005_0.png b/resource_Publish/assets/image/model/body/body005_0.png new file mode 100644 index 0000000..07addf0 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body005_0.png differ diff --git a/resource_Publish/assets/image/model/body/body005_1.png b/resource_Publish/assets/image/model/body/body005_1.png new file mode 100644 index 0000000..5c51886 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body005_1.png differ diff --git a/resource_Publish/assets/image/model/body/body006_0.png b/resource_Publish/assets/image/model/body/body006_0.png new file mode 100644 index 0000000..07b70f0 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body006_0.png differ diff --git a/resource_Publish/assets/image/model/body/body006_1.png b/resource_Publish/assets/image/model/body/body006_1.png new file mode 100644 index 0000000..affb7d0 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body006_1.png differ diff --git a/resource_Publish/assets/image/model/body/body007_0.png b/resource_Publish/assets/image/model/body/body007_0.png new file mode 100644 index 0000000..b0d0326 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body007_0.png differ diff --git a/resource_Publish/assets/image/model/body/body007_1.png b/resource_Publish/assets/image/model/body/body007_1.png new file mode 100644 index 0000000..4efafe9 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body007_1.png differ diff --git a/resource_Publish/assets/image/model/body/body008_0.png b/resource_Publish/assets/image/model/body/body008_0.png new file mode 100644 index 0000000..c94cd37 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body008_0.png differ diff --git a/resource_Publish/assets/image/model/body/body008_1.png b/resource_Publish/assets/image/model/body/body008_1.png new file mode 100644 index 0000000..bf7e72d Binary files /dev/null and b/resource_Publish/assets/image/model/body/body008_1.png differ diff --git a/resource_Publish/assets/image/model/body/body009_0.png b/resource_Publish/assets/image/model/body/body009_0.png new file mode 100644 index 0000000..623e48c Binary files /dev/null and b/resource_Publish/assets/image/model/body/body009_0.png differ diff --git a/resource_Publish/assets/image/model/body/body009_1.png b/resource_Publish/assets/image/model/body/body009_1.png new file mode 100644 index 0000000..a22a687 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body009_1.png differ diff --git a/resource_Publish/assets/image/model/body/body010_0.png b/resource_Publish/assets/image/model/body/body010_0.png new file mode 100644 index 0000000..714fc0a Binary files /dev/null and b/resource_Publish/assets/image/model/body/body010_0.png differ diff --git a/resource_Publish/assets/image/model/body/body010_1.png b/resource_Publish/assets/image/model/body/body010_1.png new file mode 100644 index 0000000..05ec982 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body010_1.png differ diff --git a/resource_Publish/assets/image/model/body/body011_0.png b/resource_Publish/assets/image/model/body/body011_0.png new file mode 100644 index 0000000..8e5e129 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body011_0.png differ diff --git a/resource_Publish/assets/image/model/body/body011_1.png b/resource_Publish/assets/image/model/body/body011_1.png new file mode 100644 index 0000000..a206233 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body011_1.png differ diff --git a/resource_Publish/assets/image/model/body/body012_0.png b/resource_Publish/assets/image/model/body/body012_0.png new file mode 100644 index 0000000..6cf6992 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body012_0.png differ diff --git a/resource_Publish/assets/image/model/body/body012_1.png b/resource_Publish/assets/image/model/body/body012_1.png new file mode 100644 index 0000000..ed2d336 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body012_1.png differ diff --git a/resource_Publish/assets/image/model/body/body013_0.png b/resource_Publish/assets/image/model/body/body013_0.png new file mode 100644 index 0000000..55de093 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body013_0.png differ diff --git a/resource_Publish/assets/image/model/body/body013_1.png b/resource_Publish/assets/image/model/body/body013_1.png new file mode 100644 index 0000000..306f1c8 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body013_1.png differ diff --git a/resource_Publish/assets/image/model/body/body014_0.png b/resource_Publish/assets/image/model/body/body014_0.png new file mode 100644 index 0000000..f86292e Binary files /dev/null and b/resource_Publish/assets/image/model/body/body014_0.png differ diff --git a/resource_Publish/assets/image/model/body/body014_1.png b/resource_Publish/assets/image/model/body/body014_1.png new file mode 100644 index 0000000..2f727a2 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body014_1.png differ diff --git a/resource_Publish/assets/image/model/body/body015_0.png b/resource_Publish/assets/image/model/body/body015_0.png new file mode 100644 index 0000000..126cfab Binary files /dev/null and b/resource_Publish/assets/image/model/body/body015_0.png differ diff --git a/resource_Publish/assets/image/model/body/body015_1.png b/resource_Publish/assets/image/model/body/body015_1.png new file mode 100644 index 0000000..51710ec Binary files /dev/null and b/resource_Publish/assets/image/model/body/body015_1.png differ diff --git a/resource_Publish/assets/image/model/body/body020_0.png b/resource_Publish/assets/image/model/body/body020_0.png new file mode 100644 index 0000000..a221c2e Binary files /dev/null and b/resource_Publish/assets/image/model/body/body020_0.png differ diff --git a/resource_Publish/assets/image/model/body/body020_1.png b/resource_Publish/assets/image/model/body/body020_1.png new file mode 100644 index 0000000..54be0bf Binary files /dev/null and b/resource_Publish/assets/image/model/body/body020_1.png differ diff --git a/resource_Publish/assets/image/model/body/body021_0.png b/resource_Publish/assets/image/model/body/body021_0.png new file mode 100644 index 0000000..b380fc3 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body021_0.png differ diff --git a/resource_Publish/assets/image/model/body/body021_1.png b/resource_Publish/assets/image/model/body/body021_1.png new file mode 100644 index 0000000..d9cbcb3 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body021_1.png differ diff --git a/resource_Publish/assets/image/model/body/body022_0.png b/resource_Publish/assets/image/model/body/body022_0.png new file mode 100644 index 0000000..9c822f8 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body022_0.png differ diff --git a/resource_Publish/assets/image/model/body/body022_1.png b/resource_Publish/assets/image/model/body/body022_1.png new file mode 100644 index 0000000..a3f0620 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body022_1.png differ diff --git a/resource_Publish/assets/image/model/body/body023_0.png b/resource_Publish/assets/image/model/body/body023_0.png new file mode 100644 index 0000000..97242a1 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body023_0.png differ diff --git a/resource_Publish/assets/image/model/body/body023_1.png b/resource_Publish/assets/image/model/body/body023_1.png new file mode 100644 index 0000000..35c29cd Binary files /dev/null and b/resource_Publish/assets/image/model/body/body023_1.png differ diff --git a/resource_Publish/assets/image/model/body/body024_0.png b/resource_Publish/assets/image/model/body/body024_0.png new file mode 100644 index 0000000..7b4f4e6 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body024_0.png differ diff --git a/resource_Publish/assets/image/model/body/body024_1.png b/resource_Publish/assets/image/model/body/body024_1.png new file mode 100644 index 0000000..f61168c Binary files /dev/null and b/resource_Publish/assets/image/model/body/body024_1.png differ diff --git a/resource_Publish/assets/image/model/body/body027_0.png b/resource_Publish/assets/image/model/body/body027_0.png new file mode 100644 index 0000000..162dc40 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body027_0.png differ diff --git a/resource_Publish/assets/image/model/body/body027_1.png b/resource_Publish/assets/image/model/body/body027_1.png new file mode 100644 index 0000000..f40bf1c Binary files /dev/null and b/resource_Publish/assets/image/model/body/body027_1.png differ diff --git a/resource_Publish/assets/image/model/body/body034_0.png b/resource_Publish/assets/image/model/body/body034_0.png new file mode 100644 index 0000000..d81751a Binary files /dev/null and b/resource_Publish/assets/image/model/body/body034_0.png differ diff --git a/resource_Publish/assets/image/model/body/body034_1.png b/resource_Publish/assets/image/model/body/body034_1.png new file mode 100644 index 0000000..126e113 Binary files /dev/null and b/resource_Publish/assets/image/model/body/body034_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff18_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff18_0.png new file mode 100644 index 0000000..2084939 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff18_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff18_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff18_1.png new file mode 100644 index 0000000..14f2e89 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff18_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff19_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff19_0.png new file mode 100644 index 0000000..74dbab0 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff19_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff19_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff19_1.png new file mode 100644 index 0000000..a1bccca Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff19_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff21_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff21_0.png new file mode 100644 index 0000000..73cc05c Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff21_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff21_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff21_1.png new file mode 100644 index 0000000..5876de7 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff21_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff25_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff25_0.png new file mode 100644 index 0000000..84cd0e0 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff25_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff25_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff25_1.png new file mode 100644 index 0000000..49a17e2 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff25_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff26_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff26_0.png new file mode 100644 index 0000000..f938536 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff26_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff26_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff26_1.png new file mode 100644 index 0000000..72fc786 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff26_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff27_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff27_0.png new file mode 100644 index 0000000..7235e6c Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff27_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff27_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff27_1.png new file mode 100644 index 0000000..b65708f Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff27_1.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff34_0.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff34_0.png new file mode 100644 index 0000000..0ec7e8d Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff34_0.png differ diff --git a/resource_Publish/assets/image/model/bodybg/bodyimgeff34_1.png b/resource_Publish/assets/image/model/bodybg/bodyimgeff34_1.png new file mode 100644 index 0000000..f3d7f73 Binary files /dev/null and b/resource_Publish/assets/image/model/bodybg/bodyimgeff34_1.png differ diff --git a/resource_Publish/assets/image/model/hair/hair001_0.png b/resource_Publish/assets/image/model/hair/hair001_0.png new file mode 100644 index 0000000..f8d7bf5 Binary files /dev/null and b/resource_Publish/assets/image/model/hair/hair001_0.png differ diff --git a/resource_Publish/assets/image/model/hair/hair001_1.png b/resource_Publish/assets/image/model/hair/hair001_1.png new file mode 100644 index 0000000..6a25c6b Binary files /dev/null and b/resource_Publish/assets/image/model/hair/hair001_1.png differ diff --git a/resource_Publish/assets/image/model/hair/hair007_0.png b/resource_Publish/assets/image/model/hair/hair007_0.png new file mode 100644 index 0000000..b540108 Binary files /dev/null and b/resource_Publish/assets/image/model/hair/hair007_0.png differ diff --git a/resource_Publish/assets/image/model/hair/hair007_1.png b/resource_Publish/assets/image/model/hair/hair007_1.png new file mode 100644 index 0000000..c77dda0 Binary files /dev/null and b/resource_Publish/assets/image/model/hair/hair007_1.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12000.png b/resource_Publish/assets/image/model/helmet/helmet_12000.png new file mode 100644 index 0000000..5ca760e Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12000.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12001.png b/resource_Publish/assets/image/model/helmet/helmet_12001.png new file mode 100644 index 0000000..a1d0529 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12001.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12002.png b/resource_Publish/assets/image/model/helmet/helmet_12002.png new file mode 100644 index 0000000..e773349 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12002.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12003.png b/resource_Publish/assets/image/model/helmet/helmet_12003.png new file mode 100644 index 0000000..7f4de4f Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12003.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12004.png b/resource_Publish/assets/image/model/helmet/helmet_12004.png new file mode 100644 index 0000000..3932be9 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12004.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12005.png b/resource_Publish/assets/image/model/helmet/helmet_12005.png new file mode 100644 index 0000000..6663682 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12005.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12006.png b/resource_Publish/assets/image/model/helmet/helmet_12006.png new file mode 100644 index 0000000..9b9815f Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12006.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12007.png b/resource_Publish/assets/image/model/helmet/helmet_12007.png new file mode 100644 index 0000000..ca11752 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12007.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12008.png b/resource_Publish/assets/image/model/helmet/helmet_12008.png new file mode 100644 index 0000000..0ea73b4 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12008.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12009.png b/resource_Publish/assets/image/model/helmet/helmet_12009.png new file mode 100644 index 0000000..11a4992 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12009.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12010.png b/resource_Publish/assets/image/model/helmet/helmet_12010.png new file mode 100644 index 0000000..de76ecc Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12010.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12011.png b/resource_Publish/assets/image/model/helmet/helmet_12011.png new file mode 100644 index 0000000..6f77591 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12011.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12012.png b/resource_Publish/assets/image/model/helmet/helmet_12012.png new file mode 100644 index 0000000..664bbdc Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12012.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12013.png b/resource_Publish/assets/image/model/helmet/helmet_12013.png new file mode 100644 index 0000000..038a19d Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12013.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_12014.png b/resource_Publish/assets/image/model/helmet/helmet_12014.png new file mode 100644 index 0000000..a3c72de Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_12014.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13112.png b/resource_Publish/assets/image/model/helmet/helmet_13112.png new file mode 100644 index 0000000..1e5d37c Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13112.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13356.png b/resource_Publish/assets/image/model/helmet/helmet_13356.png new file mode 100644 index 0000000..e62161b Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13356.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13362.png b/resource_Publish/assets/image/model/helmet/helmet_13362.png new file mode 100644 index 0000000..1ca4491 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13362.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13437.png b/resource_Publish/assets/image/model/helmet/helmet_13437.png new file mode 100644 index 0000000..0fe27a8 Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13437.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13438.png b/resource_Publish/assets/image/model/helmet/helmet_13438.png new file mode 100644 index 0000000..071da6f Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13438.png differ diff --git a/resource_Publish/assets/image/model/helmet/helmet_13439.png b/resource_Publish/assets/image/model/helmet/helmet_13439.png new file mode 100644 index 0000000..9e6cbfa Binary files /dev/null and b/resource_Publish/assets/image/model/helmet/helmet_13439.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10000.png b/resource_Publish/assets/image/model/weapon/weapon_10000.png new file mode 100644 index 0000000..fa68899 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10000.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10001.png b/resource_Publish/assets/image/model/weapon/weapon_10001.png new file mode 100644 index 0000000..83638ac Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10001.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10002.png b/resource_Publish/assets/image/model/weapon/weapon_10002.png new file mode 100644 index 0000000..d78a9f1 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10002.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10003.png b/resource_Publish/assets/image/model/weapon/weapon_10003.png new file mode 100644 index 0000000..609f06c Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10003.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10004.png b/resource_Publish/assets/image/model/weapon/weapon_10004.png new file mode 100644 index 0000000..eb01a98 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10004.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10005.png b/resource_Publish/assets/image/model/weapon/weapon_10005.png new file mode 100644 index 0000000..525f41e Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10005.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10006.png b/resource_Publish/assets/image/model/weapon/weapon_10006.png new file mode 100644 index 0000000..8333c4f Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10006.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10007.png b/resource_Publish/assets/image/model/weapon/weapon_10007.png new file mode 100644 index 0000000..be83203 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10007.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10008.png b/resource_Publish/assets/image/model/weapon/weapon_10008.png new file mode 100644 index 0000000..cc4ae76 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10008.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10009.png b/resource_Publish/assets/image/model/weapon/weapon_10009.png new file mode 100644 index 0000000..0c9caa8 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10009.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10010.png b/resource_Publish/assets/image/model/weapon/weapon_10010.png new file mode 100644 index 0000000..f05855d Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10010.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10011.png b/resource_Publish/assets/image/model/weapon/weapon_10011.png new file mode 100644 index 0000000..9a9ac8d Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10011.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10012.png b/resource_Publish/assets/image/model/weapon/weapon_10012.png new file mode 100644 index 0000000..92717b9 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10012.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10013.png b/resource_Publish/assets/image/model/weapon/weapon_10013.png new file mode 100644 index 0000000..37e609b Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10013.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10014.png b/resource_Publish/assets/image/model/weapon/weapon_10014.png new file mode 100644 index 0000000..8da6154 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10014.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10015.png b/resource_Publish/assets/image/model/weapon/weapon_10015.png new file mode 100644 index 0000000..5908e48 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10015.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10016.png b/resource_Publish/assets/image/model/weapon/weapon_10016.png new file mode 100644 index 0000000..a476378 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10016.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10017.png b/resource_Publish/assets/image/model/weapon/weapon_10017.png new file mode 100644 index 0000000..294395a Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10017.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10018.png b/resource_Publish/assets/image/model/weapon/weapon_10018.png new file mode 100644 index 0000000..3e7193c Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10018.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10019.png b/resource_Publish/assets/image/model/weapon/weapon_10019.png new file mode 100644 index 0000000..def439c Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10019.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10020.png b/resource_Publish/assets/image/model/weapon/weapon_10020.png new file mode 100644 index 0000000..96a7e50 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10020.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10021.png b/resource_Publish/assets/image/model/weapon/weapon_10021.png new file mode 100644 index 0000000..100d7b4 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10021.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10022.png b/resource_Publish/assets/image/model/weapon/weapon_10022.png new file mode 100644 index 0000000..1b108eb Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10022.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10023.png b/resource_Publish/assets/image/model/weapon/weapon_10023.png new file mode 100644 index 0000000..d58ecb4 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10023.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10024.png b/resource_Publish/assets/image/model/weapon/weapon_10024.png new file mode 100644 index 0000000..5e26d6e Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10024.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10025.png b/resource_Publish/assets/image/model/weapon/weapon_10025.png new file mode 100644 index 0000000..3b00689 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10025.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10026.png b/resource_Publish/assets/image/model/weapon/weapon_10026.png new file mode 100644 index 0000000..f39c9fb Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10026.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10027.png b/resource_Publish/assets/image/model/weapon/weapon_10027.png new file mode 100644 index 0000000..44a44b9 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10027.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10028.png b/resource_Publish/assets/image/model/weapon/weapon_10028.png new file mode 100644 index 0000000..7bde9be Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10028.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10029.png b/resource_Publish/assets/image/model/weapon/weapon_10029.png new file mode 100644 index 0000000..2fc2cfc Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10029.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10030.png b/resource_Publish/assets/image/model/weapon/weapon_10030.png new file mode 100644 index 0000000..68ba660 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10030.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10031.png b/resource_Publish/assets/image/model/weapon/weapon_10031.png new file mode 100644 index 0000000..0f722dd Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10031.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10032.png b/resource_Publish/assets/image/model/weapon/weapon_10032.png new file mode 100644 index 0000000..5fd2292 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10032.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10033.png b/resource_Publish/assets/image/model/weapon/weapon_10033.png new file mode 100644 index 0000000..ea5797c Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10033.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10034.png b/resource_Publish/assets/image/model/weapon/weapon_10034.png new file mode 100644 index 0000000..5570015 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10034.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10035.png b/resource_Publish/assets/image/model/weapon/weapon_10035.png new file mode 100644 index 0000000..eedf140 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10035.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10036.png b/resource_Publish/assets/image/model/weapon/weapon_10036.png new file mode 100644 index 0000000..05ab54a Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10036.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10037.png b/resource_Publish/assets/image/model/weapon/weapon_10037.png new file mode 100644 index 0000000..5a91c71 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10037.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10038.png b/resource_Publish/assets/image/model/weapon/weapon_10038.png new file mode 100644 index 0000000..f34ab75 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10038.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10039.png b/resource_Publish/assets/image/model/weapon/weapon_10039.png new file mode 100644 index 0000000..f0f90d8 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10039.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10040.png b/resource_Publish/assets/image/model/weapon/weapon_10040.png new file mode 100644 index 0000000..4ff9583 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10040.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10041.png b/resource_Publish/assets/image/model/weapon/weapon_10041.png new file mode 100644 index 0000000..a4e4c1b Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10041.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10042.png b/resource_Publish/assets/image/model/weapon/weapon_10042.png new file mode 100644 index 0000000..db47fff Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10042.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10043.png b/resource_Publish/assets/image/model/weapon/weapon_10043.png new file mode 100644 index 0000000..bde3c12 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10043.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10044.png b/resource_Publish/assets/image/model/weapon/weapon_10044.png new file mode 100644 index 0000000..cdd4a82 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10044.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_10045.png b/resource_Publish/assets/image/model/weapon/weapon_10045.png new file mode 100644 index 0000000..12e53c1 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_10045.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13296.png b/resource_Publish/assets/image/model/weapon/weapon_13296.png new file mode 100644 index 0000000..6d7014c Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13296.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13317.png b/resource_Publish/assets/image/model/weapon/weapon_13317.png new file mode 100644 index 0000000..cf3c7ed Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13317.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13318.png b/resource_Publish/assets/image/model/weapon/weapon_13318.png new file mode 100644 index 0000000..4c7b396 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13318.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13730.png b/resource_Publish/assets/image/model/weapon/weapon_13730.png new file mode 100644 index 0000000..97d7422 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13730.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13731.png b/resource_Publish/assets/image/model/weapon/weapon_13731.png new file mode 100644 index 0000000..c9b2950 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13731.png differ diff --git a/resource_Publish/assets/image/model/weapon/weapon_13732.png b/resource_Publish/assets/image/model/weapon/weapon_13732.png new file mode 100644 index 0000000..b2ce036 Binary files /dev/null and b/resource_Publish/assets/image/model/weapon/weapon_13732.png differ diff --git a/resource_Publish/assets/image/monster/monster.json b/resource_Publish/assets/image/monster/monster.json new file mode 100644 index 0000000..d55b5db --- /dev/null +++ b/resource_Publish/assets/image/monster/monster.json @@ -0,0 +1,140 @@ +{"file":"monster.png","frames":{ +"monhead30005":{"x":925,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30100":{"x":859,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30010":{"x":793,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30041":{"x":727,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30012":{"x":661,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30168":{"x":595,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30171":{"x":529,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30038":{"x":463,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30033":{"x":397,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30164":{"x":331,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30018":{"x":265,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30181":{"x":199,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30174":{"x":133,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30024":{"x":67,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30013":{"x":1,"y":529,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30020":{"x":925,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30051":{"x":859,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30046":{"x":793,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30061":{"x":727,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30056":{"x":661,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30071":{"x":595,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30066":{"x":529,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30085":{"x":463,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30028":{"x":397,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30036":{"x":331,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30118":{"x":265,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30113":{"x":199,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30091":{"x":133,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30114":{"x":67,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30078":{"x":1,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30101":{"x":925,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30096":{"x":859,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30105":{"x":793,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30108":{"x":727,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30120":{"x":661,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30014":{"x":595,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30042":{"x":529,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30111":{"x":463,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30031":{"x":397,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30016":{"x":331,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30029":{"x":265,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30162":{"x":199,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30017":{"x":133,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30047":{"x":67,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30002":{"x":1,"y":397,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30001":{"x":925,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30178":{"x":859,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30057":{"x":793,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30052":{"x":727,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30072":{"x":661,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30067":{"x":595,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30062":{"x":529,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30086":{"x":463,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30079":{"x":397,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30097":{"x":331,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30034":{"x":265,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30122":{"x":199,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30092":{"x":133,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30027":{"x":67,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30039":{"x":1,"y":331,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30159":{"x":925,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30019":{"x":859,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30021":{"x":793,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30008":{"x":727,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30102":{"x":67,"y":595,"w":64,"h":63,"offX":0,"offY":1,"sourceW":64,"sourceH":64}, +"monhead30172":{"x":661,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30116":{"x":595,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30003":{"x":529,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30170":{"x":463,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30106":{"x":397,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30009":{"x":331,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30043":{"x":265,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30053":{"x":199,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30048":{"x":133,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30063":{"x":67,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30165":{"x":1,"y":265,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30058":{"x":925,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30075":{"x":859,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30068":{"x":793,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30087":{"x":727,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30023":{"x":661,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30037":{"x":595,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30104":{"x":133,"y":595,"w":64,"h":63,"offX":0,"offY":1,"sourceW":64,"sourceH":64}, +"monhead30025":{"x":529,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30082":{"x":463,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30098":{"x":397,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30006":{"x":331,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30107":{"x":265,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30093":{"x":199,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30173":{"x":133,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30176":{"x":67,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30007":{"x":1,"y":199,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30112":{"x":925,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30163":{"x":859,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30169":{"x":793,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30179":{"x":727,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30044":{"x":661,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30032":{"x":595,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30054":{"x":529,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30049":{"x":463,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30064":{"x":397,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30103":{"x":1,"y":595,"w":64,"h":63,"offX":0,"offY":1,"sourceW":64,"sourceH":64}, +"monhead30059":{"x":331,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30076":{"x":265,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30069":{"x":199,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30089":{"x":133,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30083":{"x":67,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30117":{"x":1,"y":133,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30099":{"x":925,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30035":{"x":859,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30011":{"x":793,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30094":{"x":727,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30177":{"x":661,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30110":{"x":595,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30040":{"x":529,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30015":{"x":463,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30026":{"x":397,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30022":{"x":331,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30119":{"x":265,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30175":{"x":199,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30004":{"x":133,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30180":{"x":67,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30045":{"x":1,"y":67,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30055":{"x":925,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30050":{"x":859,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30065":{"x":793,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30161":{"x":727,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30160":{"x":661,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30060":{"x":595,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30077":{"x":529,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30070":{"x":463,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30090":{"x":397,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30084":{"x":331,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30030":{"x":265,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30109":{"x":199,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30095":{"x":133,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30184":{"x":67,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30182":{"x":67,"y":463,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"monhead30183":{"x":1,"y":1,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/monster/monster.png b/resource_Publish/assets/image/monster/monster.png new file mode 100644 index 0000000..8484d80 Binary files /dev/null and b/resource_Publish/assets/image/monster/monster.png differ diff --git a/resource_Publish/assets/image/particle/particle1.json b/resource_Publish/assets/image/particle/particle1.json new file mode 100644 index 0000000..faecf47 --- /dev/null +++ b/resource_Publish/assets/image/particle/particle1.json @@ -0,0 +1,51 @@ +{ +"texture":"particle1.png", +"startRedVariance":0 +,"emitAngleVariance":360 +,"endGreen":255 +,"endSizeVariance":5 +,"startRotation":0 +,"startGreenVariance":0 +,"endRed":255 +,"startAlphaVariance":0 +,"speed":20 +,"endRotationVariance":292.07 +,"maxRadius":100 +,"startRotationVariance":45 +,"startGreen":255 +,"startRed":255 +,"speedVariance":0 +,"maxParticles":100 +,"engGreenVariance":0 +,"endAlpha":0.38823529411764707 +,"startBlue":255 +,"gravity":{"x":15,"y":30} +,"radialAcceleration":0 +,"blendFactorDestination":"oneMinusSourceAlpha" +,"endRedVariance":0 +,"radialAccelerationVariance":0 +,"startBlueVariance":0 +,"tangentialAcceleration":0 +,"tangentialAccelerationVariance":0 +,"startAlpha":0.8901960784313725 +,"duration":-1 +,"maxRadiusVariance":30 +,"lifespan":8000 +,"endAlphaVariance":0 +,"minRadius":20 +,"lifespanVariance":1000 +,"endRotation":263.58 +,"emitterType":0 +,"startSize":15 +,"rotatePerSecond":30 +,"blendFactorSource":"one" +,"rotatePerSecondVariance":10 +,"endSize":10 +,"minRadiusVariance":10 +,"endBlueVariance":0 +,"emitterVariance":{"x":394,"y":2} +,"emitter":{"x":799,"y":23} +,"startSizeVariance":5 +,"emitAngle":180 +,"endBlue":255 +} \ No newline at end of file diff --git a/resource_Publish/assets/image/particle/particle1.png b/resource_Publish/assets/image/particle/particle1.png new file mode 100644 index 0000000..7d70114 Binary files /dev/null and b/resource_Publish/assets/image/particle/particle1.png differ diff --git a/resource_Publish/assets/image/public/SoldierSoul_fnt.fnt b/resource_Publish/assets/image/public/SoldierSoul_fnt.fnt new file mode 100644 index 0000000..bca93c2 --- /dev/null +++ b/resource_Publish/assets/image/public/SoldierSoul_fnt.fnt @@ -0,0 +1,11 @@ +{"file":"SoldierSoul_fnt.png","frames":{ +"0":{"x":46,"y":21,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"1":{"x":16,"y":41,"w":9,"h":18,"offX":7,"offY":3,"sourceW":24,"sourceH":24}, +"2":{"x":31,"y":21,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"3":{"x":1,"y":21,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"4":{"x":17,"y":1,"w":14,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"5":{"x":1,"y":41,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"6":{"x":1,"y":1,"w":14,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"7":{"x":33,"y":1,"w":14,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"8":{"x":49,"y":1,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}, +"9":{"x":16,"y":21,"w":13,"h":18,"offX":5,"offY":3,"sourceW":24,"sourceH":24}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/SoldierSoul_fnt.png b/resource_Publish/assets/image/public/SoldierSoul_fnt.png new file mode 100644 index 0000000..13cf9f6 Binary files /dev/null and b/resource_Publish/assets/image/public/SoldierSoul_fnt.png differ diff --git a/resource_Publish/assets/image/public/blood.json b/resource_Publish/assets/image/public/blood.json new file mode 100644 index 0000000..e945ba7 --- /dev/null +++ b/resource_Publish/assets/image/public/blood.json @@ -0,0 +1,6 @@ +{"file":"blood.png","frames":{ +"boolBg":{"x":1,"y":34,"w":49,"h":4,"offX":0,"offY":0,"sourceW":49,"sourceH":4}, +"boolGreen":{"x":37,"y":5,"w":4,"h":2,"offX":0,"offY":0,"sourceW":4,"sourceH":2}, +"boolRed":{"x":37,"y":1,"w":4,"h":2,"offX":0,"offY":0,"sourceW":4,"sourceH":2}, +"boolyel":{"x":37,"y":9,"w":4,"h":2,"offX":0,"offY":0,"sourceW":4,"sourceH":2}, +"blood_chaowan":{"x":1,"y":1,"w":34,"h":31,"offX":1,"offY":2,"sourceW":36,"sourceH":36}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/blood.png b/resource_Publish/assets/image/public/blood.png new file mode 100644 index 0000000..0a5a781 Binary files /dev/null and b/resource_Publish/assets/image/public/blood.png differ diff --git a/resource_Publish/assets/image/public/blueDiamond.json b/resource_Publish/assets/image/public/blueDiamond.json new file mode 100644 index 0000000..5709f8b --- /dev/null +++ b/resource_Publish/assets/image/public/blueDiamond.json @@ -0,0 +1,58 @@ +{"file":"blueDiamond.png","frames":{ +"lz_nf1":{"x":90,"y":122,"w":25,"h":25,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"lz_hhe5":{"x":33,"y":34,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pt3":{"x":65,"y":93,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hh4":{"x":1,"y":34,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hh7":{"x":97,"y":33,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pte8":{"x":161,"y":92,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pt1":{"x":189,"y":121,"w":28,"h":25,"offX":1,"offY":3,"sourceW":30,"sourceH":32}, +"lz_nf":{"x":63,"y":122,"w":25,"h":25,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"lz_hh9":{"x":33,"y":1,"w":30,"h":31,"offX":0,"offY":0,"sourceW":30,"sourceH":32}, +"lz_pt4":{"x":33,"y":65,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hhe7":{"x":225,"y":32,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hh2":{"x":65,"y":1,"w":30,"h":30,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pte3":{"x":65,"y":64,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pt9":{"x":225,"y":63,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pte7":{"x":193,"y":63,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pte5":{"x":161,"y":63,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pt5":{"x":129,"y":63,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pt6":{"x":97,"y":93,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hh3":{"x":161,"y":32,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pt7":{"x":193,"y":92,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hh8":{"x":1,"y":1,"w":30,"h":31,"offX":0,"offY":0,"sourceW":30,"sourceH":32}, +"lz_pt8":{"x":1,"y":65,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hhe9":{"x":225,"y":1,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hhe8":{"x":193,"y":1,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pt2":{"x":1,"y":94,"w":29,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hhe2":{"x":97,"y":1,"w":30,"h":30,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pte6":{"x":97,"y":64,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pte4":{"x":225,"y":92,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_pte1":{"x":219,"y":121,"w":28,"h":25,"offX":1,"offY":3,"sourceW":30,"sourceH":32}, +"lz_hhe1":{"x":129,"y":121,"w":28,"h":27,"offX":1,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hh1":{"x":159,"y":121,"w":28,"h":27,"offX":1,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hh6":{"x":129,"y":1,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hhe3":{"x":65,"y":33,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hhe6":{"x":193,"y":32,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_hh5":{"x":129,"y":32,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pte2":{"x":32,"y":94,"w":29,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"lz_hhe4":{"x":161,"y":1,"w":30,"h":29,"offX":0,"offY":1,"sourceW":30,"sourceH":32}, +"lz_pte9":{"x":129,"y":92,"w":30,"h":27,"offX":0,"offY":2,"sourceW":30,"sourceH":32}, +"name_lz_hh4":{"x":211,"y":148,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh5":{"x":189,"y":148,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh6":{"x":23,"y":145,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh7":{"x":1,"y":145,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh8":{"x":23,"y":123,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":21}, +"name_lz_hh9":{"x":1,"y":123,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":21}, +"name_lz_nf":{"x":67,"y":149,"w":19,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_pt1":{"x":217,"y":169,"w":18,"h":17,"offX":1,"offY":3,"sourceW":20,"sourceH":21}, +"name_lz_pt2":{"x":176,"y":169,"w":19,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt3":{"x":154,"y":150,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt4":{"x":132,"y":150,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt5":{"x":110,"y":150,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt6":{"x":88,"y":149,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt7":{"x":88,"y":169,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt8":{"x":23,"y":166,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_pt9":{"x":1,"y":166,"w":20,"h":18,"offX":0,"offY":2,"sourceW":20,"sourceH":21}, +"name_lz_hh1":{"x":197,"y":169,"w":18,"h":18,"offX":1,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh2":{"x":45,"y":149,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}, +"name_lz_hh3":{"x":233,"y":148,"w":20,"h":19,"offX":0,"offY":1,"sourceW":20,"sourceH":21}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/blueDiamond.png b/resource_Publish/assets/image/public/blueDiamond.png new file mode 100644 index 0000000..558436a Binary files /dev/null and b/resource_Publish/assets/image/public/blueDiamond.png differ diff --git a/resource_Publish/assets/image/public/fourImage.fnt b/resource_Publish/assets/image/public/fourImage.fnt new file mode 100644 index 0000000..0a68283 --- /dev/null +++ b/resource_Publish/assets/image/public/fourImage.fnt @@ -0,0 +1,14 @@ +{"file":"fourImage.png","frames":{ +"八":{"x":56,"y":70,"w":26,"h":11,"offX":0,"offY":10,"sourceW":28,"sourceH":30}, +"二":{"x":28,"y":53,"w":26,"h":18,"offX":0,"offY":7,"sourceW":28,"sourceH":30}, +"级":{"x":59,"y":1,"w":28,"h":26,"offX":0,"offY":3,"sourceW":28,"sourceH":30}, +"阶":{"x":1,"y":1,"w":28,"h":29,"offX":0,"offY":1,"sourceW":28,"sourceH":30}, +"九":{"x":59,"y":29,"w":25,"h":22,"offX":1,"offY":4,"sourceW":28,"sourceH":30}, +"零":{"x":31,"y":1,"w":26,"h":29,"offX":1,"offY":1,"sourceW":28,"sourceH":30}, +"六":{"x":89,"y":26,"w":24,"h":23,"offX":1,"offY":4,"sourceW":28,"sourceH":30}, +"七":{"x":86,"y":51,"w":26,"h":19,"offX":1,"offY":6,"sourceW":28,"sourceH":30}, +"三":{"x":1,"y":32,"w":25,"h":21,"offX":1,"offY":5,"sourceW":28,"sourceH":30}, +"十":{"x":28,"y":32,"w":27,"h":19,"offX":0,"offY":7,"sourceW":28,"sourceH":30}, +"四":{"x":56,"y":53,"w":24,"h":15,"offX":2,"offY":9,"sourceW":28,"sourceH":30}, +"五":{"x":89,"y":1,"w":25,"h":23,"offX":0,"offY":4,"sourceW":28,"sourceH":30}, +"一":{"x":1,"y":55,"w":25,"h":8,"offX":1,"offY":10,"sourceW":28,"sourceH":30}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/fourImage.png b/resource_Publish/assets/image/public/fourImage.png new file mode 100644 index 0000000..419829f Binary files /dev/null and b/resource_Publish/assets/image/public/fourImage.png differ diff --git a/resource_Publish/assets/image/public/hitnum11.fnt b/resource_Publish/assets/image/public/hitnum11.fnt new file mode 100644 index 0000000..674e61d --- /dev/null +++ b/resource_Publish/assets/image/public/hitnum11.fnt @@ -0,0 +1,13 @@ +{"file":"hitnum11.png","frames":{ +"-":{"x":99,"y":44,"w":31,"h":14,"offX":0,"offY":14,"sourceW":31,"sourceH":42}, +"0":{"x":190,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"1":{"x":31,"y":85,"w":21,"h":41,"offX":0,"offY":1,"sourceW":21,"sourceH":42}, +"2":{"x":1,"y":42,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"3":{"x":157,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"4":{"x":223,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"5":{"x":34,"y":42,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"6":{"x":124,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"7":{"x":1,"y":85,"w":28,"h":41,"offX":3,"offY":1,"sourceW":31,"sourceH":42}, +"8":{"x":91,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"9":{"x":67,"y":44,"w":30,"h":41,"offX":1,"offY":1,"sourceW":31,"sourceH":42}, +"z":{"x":1,"y":1,"w":88,"h":39,"offX":0,"offY":0,"sourceW":88,"sourceH":39}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/hitnum11.png b/resource_Publish/assets/image/public/hitnum11.png new file mode 100644 index 0000000..cd6a98c Binary files /dev/null and b/resource_Publish/assets/image/public/hitnum11.png differ diff --git a/resource_Publish/assets/image/public/hitnum12.fnt b/resource_Publish/assets/image/public/hitnum12.fnt new file mode 100644 index 0000000..9dbaf2b --- /dev/null +++ b/resource_Publish/assets/image/public/hitnum12.fnt @@ -0,0 +1,13 @@ +{"file":"hitnum12.png","frames":{ +"-":{"x":99,"y":44,"w":31,"h":14,"offX":0,"offY":14,"sourceW":31,"sourceH":42}, +"0":{"x":91,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"1":{"x":31,"y":85,"w":21,"h":41,"offX":0,"offY":1,"sourceW":21,"sourceH":42}, +"2":{"x":124,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"3":{"x":190,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"4":{"x":1,"y":42,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"5":{"x":34,"y":42,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"6":{"x":157,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"7":{"x":1,"y":85,"w":28,"h":41,"offX":3,"offY":1,"sourceW":31,"sourceH":42}, +"8":{"x":223,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"9":{"x":67,"y":44,"w":30,"h":41,"offX":1,"offY":1,"sourceW":31,"sourceH":42}, +"z":{"x":1,"y":1,"w":88,"h":39,"offX":0,"offY":0,"sourceW":88,"sourceH":39}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/hitnum12.png b/resource_Publish/assets/image/public/hitnum12.png new file mode 100644 index 0000000..f26f9db Binary files /dev/null and b/resource_Publish/assets/image/public/hitnum12.png differ diff --git a/resource_Publish/assets/image/public/hitnum9.fnt b/resource_Publish/assets/image/public/hitnum9.fnt new file mode 100644 index 0000000..dcfb0d5 --- /dev/null +++ b/resource_Publish/assets/image/public/hitnum9.fnt @@ -0,0 +1,13 @@ +{"file":"hitnum9.png","frames":{ +"-":{"x":1,"y":86,"w":31,"h":14,"offX":0,"offY":14,"sourceW":31,"sourceH":42}, +"0":{"x":122,"y":1,"w":31,"h":42,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"1":{"x":67,"y":45,"w":21,"h":41,"offX":0,"offY":0,"sourceW":21,"sourceH":42}, +"2":{"x":34,"y":42,"w":31,"h":42,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"3":{"x":155,"y":1,"w":31,"h":42,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"4":{"x":188,"y":44,"w":31,"h":41,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"5":{"x":188,"y":1,"w":31,"h":41,"offX":0,"offY":1,"sourceW":31,"sourceH":42}, +"6":{"x":89,"y":1,"w":31,"h":42,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"7":{"x":221,"y":45,"w":28,"h":41,"offX":3,"offY":1,"sourceW":31,"sourceH":42}, +"8":{"x":1,"y":42,"w":31,"h":42,"offX":0,"offY":0,"sourceW":31,"sourceH":42}, +"9":{"x":221,"y":1,"w":30,"h":42,"offX":1,"offY":0,"sourceW":31,"sourceH":42}, +"z":{"x":1,"y":1,"w":86,"h":39,"offX":1,"offY":0,"sourceW":88,"sourceH":39}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/hitnum9.png b/resource_Publish/assets/image/public/hitnum9.png new file mode 100644 index 0000000..ca10ee0 Binary files /dev/null and b/resource_Publish/assets/image/public/hitnum9.png differ diff --git a/resource_Publish/assets/image/public/hp_fnt.fnt b/resource_Publish/assets/image/public/hp_fnt.fnt new file mode 100644 index 0000000..0d5c15d --- /dev/null +++ b/resource_Publish/assets/image/public/hp_fnt.fnt @@ -0,0 +1,15 @@ +{"file":"hp_fnt.png","frames":{ +"0":{"x":12,"y":43,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"1":{"x":25,"y":29,"w":6,"h":12,"offX":1,"offY":1,"sourceW":10,"sourceH":14}, +"2":{"x":23,"y":43,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"3":{"x":25,"y":1,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"4":{"x":13,"y":29,"w":10,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"5":{"x":25,"y":15,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"6":{"x":1,"y":17,"w":10,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"7":{"x":13,"y":15,"w":10,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"8":{"x":1,"y":45,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"9":{"x":36,"y":1,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"d":{"x":13,"y":1,"w":10,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}, +"f":{"x":1,"y":31,"w":9,"h":12,"offX":1,"offY":1,"sourceW":10,"sourceH":14}, +"x":{"x":1,"y":1,"w":10,"h":14,"offX":0,"offY":0,"sourceW":10,"sourceH":14}, +"z":{"x":34,"y":29,"w":9,"h":12,"offX":0,"offY":1,"sourceW":10,"sourceH":14}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/hp_fnt.png b/resource_Publish/assets/image/public/hp_fnt.png new file mode 100644 index 0000000..2315a05 Binary files /dev/null and b/resource_Publish/assets/image/public/hp_fnt.png differ diff --git a/resource_Publish/assets/image/public/itemIcon.json b/resource_Publish/assets/image/public/itemIcon.json new file mode 100644 index 0000000..b173a34 --- /dev/null +++ b/resource_Publish/assets/image/public/itemIcon.json @@ -0,0 +1,1091 @@ +{"file":"itemIcon.png","frames":{ +"10000":{"x":228,"y":1031,"w":39,"h":28,"offX":11,"offY":16,"sourceW":60,"sourceH":60}, +"10001":{"x":305,"y":1065,"w":38,"h":26,"offX":11,"offY":17,"sourceW":60,"sourceH":60}, +"10002":{"x":1974,"y":794,"w":48,"h":38,"offX":6,"offY":11,"sourceW":60,"sourceH":60}, +"10003":{"x":511,"y":849,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"10004":{"x":511,"y":811,"w":46,"h":36,"offX":7,"offY":12,"sourceW":60,"sourceH":60}, +"10005":{"x":1925,"y":845,"w":38,"h":39,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"10006":{"x":1347,"y":889,"w":39,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"10007":{"x":465,"y":810,"w":44,"h":38,"offX":8,"offY":11,"sourceW":60,"sourceH":60}, +"10008":{"x":1892,"y":703,"w":45,"h":47,"offX":8,"offY":7,"sourceW":60,"sourceH":60}, +"10009":{"x":1925,"y":754,"w":47,"h":43,"offX":7,"offY":9,"sourceW":60,"sourceH":60}, +"10010":{"x":967,"y":812,"w":45,"h":36,"offX":8,"offY":12,"sourceW":60,"sourceH":60}, +"10011":{"x":1636,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"10012":{"x":1568,"y":840,"w":42,"h":36,"offX":9,"offY":12,"sourceW":60,"sourceH":60}, +"10013":{"x":1860,"y":886,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10014":{"x":121,"y":849,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"10015":{"x":843,"y":848,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"10016":{"x":1098,"y":861,"w":37,"h":37,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10017":{"x":941,"y":930,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10018":{"x":649,"y":968,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"10019":{"x":211,"y":847,"w":39,"h":38,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"10020":{"x":363,"y":961,"w":36,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"10021":{"x":398,"y":999,"w":35,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"10022":{"x":1736,"y":894,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10023":{"x":1409,"y":971,"w":35,"h":35,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"10024":{"x":513,"y":1030,"w":32,"h":35,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"10025":{"x":526,"y":929,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10026":{"x":495,"y":967,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"10027":{"x":1562,"y":878,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10028":{"x":885,"y":878,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10029":{"x":2006,"y":872,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10030":{"x":1965,"y":872,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10031":{"x":294,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10032":{"x":205,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10033":{"x":1749,"y":935,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10034":{"x":1522,"y":809,"w":44,"h":38,"offX":8,"offY":11,"sourceW":60,"sourceH":60}, +"10035":{"x":1820,"y":886,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10036":{"x":699,"y":851,"w":39,"h":37,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"10037":{"x":1842,"y":762,"w":36,"h":37,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10038":{"x":688,"y":1003,"w":33,"h":36,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"10039":{"x":1551,"y":954,"w":37,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"10040":{"x":533,"y":891,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10041":{"x":1265,"y":890,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10042":{"x":745,"y":815,"w":40,"h":38,"offX":10,"offY":11,"sourceW":60,"sourceH":60}, +"10043":{"x":245,"y":924,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"10044":{"x":1218,"y":718,"w":39,"h":38,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"10045":{"x":1894,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"11000":{"x":688,"y":969,"w":39,"h":32,"offX":11,"offY":14,"sourceW":60,"sourceH":60}, +"11001":{"x":1121,"y":998,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"11002":{"x":1611,"y":1032,"w":40,"h":27,"offX":10,"offY":17,"sourceW":60,"sourceH":60}, +"11003":{"x":1221,"y":890,"w":42,"h":32,"offX":9,"offY":14,"sourceW":60,"sourceH":60}, +"11004":{"x":1589,"y":1089,"w":35,"h":26,"offX":13,"offY":17,"sourceW":60,"sourceH":60}, +"11005":{"x":237,"y":998,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"11006":{"x":991,"y":1084,"w":38,"h":24,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"11007":{"x":1938,"y":1024,"w":42,"h":27,"offX":9,"offY":17,"sourceW":60,"sourceH":60}, +"11008":{"x":595,"y":888,"w":44,"h":31,"offX":8,"offY":15,"sourceW":60,"sourceH":60}, +"11009":{"x":380,"y":1096,"w":35,"h":24,"offX":13,"offY":18,"sourceW":60,"sourceH":60}, +"11010":{"x":1694,"y":889,"w":40,"h":34,"offX":10,"offY":13,"sourceW":60,"sourceH":60}, +"11011":{"x":603,"y":849,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"11012":{"x":1854,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"11013":{"x":413,"y":848,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"11014":{"x":1590,"y":960,"w":40,"h":32,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"11015":{"x":41,"y":855,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"11016":{"x":1024,"y":976,"w":36,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"11017":{"x":1475,"y":853,"w":40,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"11018":{"x":1900,"y":886,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"11019":{"x":1475,"y":815,"w":42,"h":36,"offX":9,"offY":12,"sourceW":60,"sourceH":60}, +"11020":{"x":364,"y":880,"w":41,"h":34,"offX":9,"offY":13,"sourceW":60,"sourceH":60}, +"11021":{"x":252,"y":853,"w":40,"h":36,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"11022":{"x":790,"y":961,"w":36,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"11023":{"x":1500,"y":997,"w":37,"h":33,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"11024":{"x":699,"y":814,"w":44,"h":35,"offX":8,"offY":13,"sourceW":60,"sourceH":60}, +"11025":{"x":1653,"y":887,"w":39,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"11026":{"x":1014,"y":812,"w":40,"h":40,"offX":10,"offY":10,"sourceW":60,"sourceH":60}, +"11027":{"x":322,"y":848,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"11028":{"x":1216,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"11029":{"x":686,"y":890,"w":40,"h":34,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"12000":{"x":2031,"y":177,"w":16,"h":44,"offX":22,"offY":8,"sourceW":60,"sourceH":60}, +"12001":{"x":1368,"y":1003,"w":37,"h":32,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"12002":{"x":1867,"y":997,"w":30,"h":40,"offX":16,"offY":10,"sourceW":60,"sourceH":60}, +"12003":{"x":1190,"y":808,"w":42,"h":40,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"12004":{"x":84,"y":817,"w":35,"h":43,"offX":13,"offY":9,"sourceW":60,"sourceH":60}, +"12005":{"x":472,"y":1040,"w":39,"h":27,"offX":11,"offY":17,"sourceW":60,"sourceH":60}, +"12006":{"x":1401,"y":669,"w":30,"h":40,"offX":15,"offY":10,"sourceW":60,"sourceH":60}, +"12007":{"x":931,"y":563,"w":26,"h":34,"offX":17,"offY":13,"sourceW":60,"sourceH":60}, +"12008":{"x":1855,"y":610,"w":24,"h":35,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"12009":{"x":421,"y":804,"w":42,"h":42,"offX":9,"offY":9,"sourceW":60,"sourceH":60}, +"12010":{"x":1349,"y":811,"w":43,"h":38,"offX":9,"offY":11,"sourceW":60,"sourceH":60}, +"12011":{"x":1181,"y":850,"w":43,"h":34,"offX":9,"offY":13,"sourceW":60,"sourceH":60}, +"12012":{"x":324,"y":805,"w":43,"h":41,"offX":9,"offY":10,"sourceW":60,"sourceH":60}, +"12013":{"x":377,"y":797,"w":42,"h":43,"offX":9,"offY":9,"sourceW":60,"sourceH":60}, +"12014":{"x":1569,"y":795,"w":42,"h":43,"offX":9,"offY":9,"sourceW":60,"sourceH":60}, +"12015":{"x":613,"y":605,"w":20,"h":15,"offX":20,"offY":23,"sourceW":60,"sourceH":60}, +"12016":{"x":572,"y":891,"w":21,"h":19,"offX":20,"offY":21,"sourceW":60,"sourceH":60}, +"12017":{"x":641,"y":553,"w":18,"h":14,"offX":21,"offY":23,"sourceW":60,"sourceH":60}, +"12018":{"x":766,"y":670,"w":18,"h":24,"offX":21,"offY":18,"sourceW":60,"sourceH":60}, +"12019":{"x":2024,"y":794,"w":23,"h":26,"offX":19,"offY":17,"sourceW":60,"sourceH":60}, +"12020":{"x":861,"y":887,"w":22,"h":25,"offX":19,"offY":18,"sourceW":60,"sourceH":60}, +"12021":{"x":1216,"y":1091,"w":26,"h":31,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"12022":{"x":211,"y":809,"w":18,"h":22,"offX":21,"offY":19,"sourceW":60,"sourceH":60}, +"12023":{"x":857,"y":767,"w":18,"h":23,"offX":21,"offY":19,"sourceW":60,"sourceH":60}, +"12024":{"x":662,"y":623,"w":25,"h":34,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"12025":{"x":1005,"y":892,"w":23,"h":26,"offX":19,"offY":17,"sourceW":60,"sourceH":60}, +"12026":{"x":1389,"y":562,"w":18,"h":27,"offX":21,"offY":17,"sourceW":60,"sourceH":60}, +"12027":{"x":1361,"y":616,"w":25,"h":34,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"12028":{"x":1162,"y":998,"w":26,"h":31,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"12029":{"x":951,"y":1092,"w":28,"h":32,"offX":16,"offY":14,"sourceW":60,"sourceH":60}, +"12030":{"x":890,"y":540,"w":18,"h":21,"offX":21,"offY":20,"sourceW":60,"sourceH":60}, +"12031":{"x":1535,"y":614,"w":16,"h":22,"offX":22,"offY":19,"sourceW":60,"sourceH":60}, +"12032":{"x":1559,"y":535,"w":16,"h":20,"offX":22,"offY":20,"sourceW":60,"sourceH":60}, +"12033":{"x":1389,"y":1112,"w":26,"h":24,"offX":17,"offY":18,"sourceW":60,"sourceH":60}, +"12034":{"x":1190,"y":766,"w":26,"h":32,"offX":17,"offY":14,"sourceW":60,"sourceH":60}, +"12035":{"x":1832,"y":100,"w":24,"h":21,"offX":18,"offY":20,"sourceW":60,"sourceH":60}, +"12036":{"x":1485,"y":1032,"w":34,"h":32,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12037":{"x":547,"y":1059,"w":32,"h":32,"offX":14,"offY":14,"sourceW":60,"sourceH":60}, +"12038":{"x":737,"y":1092,"w":28,"h":32,"offX":16,"offY":14,"sourceW":60,"sourceH":60}, +"12039":{"x":534,"y":967,"w":28,"h":26,"offX":16,"offY":17,"sourceW":60,"sourceH":60}, +"12040":{"x":1693,"y":1007,"w":36,"h":32,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"12041":{"x":32,"y":1097,"w":32,"h":25,"offX":14,"offY":18,"sourceW":60,"sourceH":60}, +"12042":{"x":1539,"y":1029,"w":34,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12043":{"x":1178,"y":1066,"w":23,"h":23,"offX":19,"offY":19,"sourceW":60,"sourceH":60}, +"12044":{"x":1149,"y":719,"w":21,"h":27,"offX":20,"offY":17,"sourceW":60,"sourceH":60}, +"12045":{"x":1229,"y":1007,"w":35,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12046":{"x":239,"y":1096,"w":37,"h":23,"offX":12,"offY":19,"sourceW":60,"sourceH":60}, +"12047":{"x":1904,"y":961,"w":28,"h":23,"offX":16,"offY":19,"sourceW":60,"sourceH":60}, +"12048":{"x":113,"y":1031,"w":33,"h":33,"offX":14,"offY":14,"sourceW":60,"sourceH":60}, +"12049":{"x":1166,"y":1118,"w":37,"h":15,"offX":12,"offY":23,"sourceW":60,"sourceH":60}, +"12050":{"x":970,"y":1028,"w":33,"h":34,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"12051":{"x":1940,"y":986,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"12052":{"x":355,"y":1031,"w":34,"h":32,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12053":{"x":1205,"y":1062,"w":37,"h":27,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"12054":{"x":1136,"y":1103,"w":28,"h":25,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"12055":{"x":1031,"y":1105,"w":29,"h":24,"offX":15,"offY":18,"sourceW":60,"sourceH":60}, +"12056":{"x":827,"y":1101,"w":30,"h":24,"offX":15,"offY":18,"sourceW":60,"sourceH":60}, +"12057":{"x":693,"y":1100,"w":32,"h":24,"offX":14,"offY":18,"sourceW":60,"sourceH":60}, +"12058":{"x":2007,"y":1093,"w":36,"h":24,"offX":12,"offY":18,"sourceW":60,"sourceH":60}, +"12059":{"x":1332,"y":1069,"w":34,"h":28,"offX":13,"offY":16,"sourceW":60,"sourceH":60}, +"12060":{"x":1769,"y":1030,"w":36,"h":31,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"12061":{"x":1800,"y":1069,"w":36,"h":26,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"12062":{"x":1653,"y":1037,"w":38,"h":28,"offX":11,"offY":16,"sourceW":60,"sourceH":60}, +"12063":{"x":573,"y":1003,"w":35,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"12064":{"x":715,"y":931,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12065":{"x":1361,"y":1111,"w":26,"h":24,"offX":17,"offY":18,"sourceW":60,"sourceH":60}, +"12066":{"x":255,"y":1066,"w":35,"h":28,"offX":13,"offY":16,"sourceW":60,"sourceH":60}, +"12067":{"x":890,"y":511,"w":18,"h":27,"offX":21,"offY":17,"sourceW":60,"sourceH":60}, +"12068":{"x":927,"y":968,"w":38,"h":33,"offX":11,"offY":14,"sourceW":60,"sourceH":60}, +"12069":{"x":667,"y":1041,"w":34,"h":31,"offX":13,"offY":15,"sourceW":60,"sourceH":60}, +"12070":{"x":770,"y":1030,"w":36,"h":31,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"12071":{"x":1,"y":969,"w":38,"h":33,"offX":11,"offY":14,"sourceW":60,"sourceH":60}, +"12072":{"x":1693,"y":1041,"w":30,"h":35,"offX":15,"offY":13,"sourceW":60,"sourceH":60}, +"12073":{"x":1747,"y":973,"w":36,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"12074":{"x":113,"y":995,"w":36,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"12075":{"x":1301,"y":1032,"w":32,"h":34,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"12076":{"x":753,"y":961,"w":35,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"12077":{"x":928,"y":708,"w":33,"h":34,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"12078":{"x":572,"y":921,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12079":{"x":1710,"y":970,"w":35,"h":35,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"12080":{"x":1899,"y":1024,"w":37,"h":31,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"12081":{"x":934,"y":1028,"w":34,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12082":{"x":883,"y":668,"w":25,"h":34,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"12083":{"x":487,"y":921,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12084":{"x":1517,"y":887,"w":39,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"12085":{"x":647,"y":1004,"w":34,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"12086":{"x":159,"y":930,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12087":{"x":553,"y":853,"w":40,"h":36,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"12088":{"x":1267,"y":852,"w":40,"h":36,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"12089":{"x":1814,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"12090":{"x":1056,"y":852,"w":40,"h":36,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"12091":{"x":128,"y":1074,"w":38,"h":25,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"12092":{"x":1725,"y":1072,"w":38,"h":25,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"12093":{"x":168,"y":1093,"w":38,"h":23,"offX":11,"offY":19,"sourceW":60,"sourceH":60}, +"12094":{"x":1725,"y":1043,"w":38,"h":27,"offX":11,"offY":17,"sourceW":60,"sourceH":60}, +"12095":{"x":831,"y":1074,"w":38,"h":25,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"12096":{"x":951,"y":1064,"w":38,"h":26,"offX":11,"offY":17,"sourceW":60,"sourceH":60}, +"12097":{"x":33,"y":1070,"w":38,"h":25,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"12098":{"x":979,"y":960,"w":43,"h":30,"offX":9,"offY":15,"sourceW":60,"sourceH":60}, +"12099":{"x":1899,"y":1057,"w":43,"h":24,"offX":9,"offY":18,"sourceW":60,"sourceH":60}, +"12100":{"x":245,"y":891,"w":43,"h":31,"offX":9,"offY":15,"sourceW":60,"sourceH":60}, +"12101":{"x":1676,"y":412,"w":44,"h":32,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"12102":{"x":115,"y":961,"w":40,"h":32,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"12103":{"x":132,"y":1101,"w":34,"h":22,"offX":13,"offY":19,"sourceW":60,"sourceH":60}, +"12104":{"x":1169,"y":1032,"w":34,"h":32,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12105":{"x":1,"y":1004,"w":38,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"12106":{"x":77,"y":1015,"w":34,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12107":{"x":319,"y":1030,"w":34,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12108":{"x":1976,"y":986,"w":36,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"12109":{"x":1982,"y":1025,"w":34,"h":33,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"12110":{"x":1761,"y":811,"w":37,"h":43,"offX":12,"offY":9,"sourceW":60,"sourceH":60}, +"12111":{"x":857,"y":804,"w":42,"h":42,"offX":9,"offY":9,"sourceW":60,"sourceH":60}, +"12112":{"x":1885,"y":801,"w":38,"h":43,"offX":11,"offY":9,"sourceW":60,"sourceH":60}, +"12113":{"x":1511,"y":924,"w":38,"h":35,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"12114":{"x":1181,"y":886,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"12115":{"x":1388,"y":893,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12116":{"x":157,"y":968,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"12117":{"x":1137,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"12118":{"x":926,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"12119":{"x":1715,"y":811,"w":44,"h":37,"offX":8,"offY":12,"sourceW":60,"sourceH":60}, +"12120":{"x":1,"y":893,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12121":{"x":966,"y":892,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12122":{"x":162,"y":892,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12123":{"x":1472,"y":891,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12124":{"x":1177,"y":924,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12125":{"x":1597,"y":922,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12126":{"x":1005,"y":922,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12127":{"x":1558,"y":916,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"12128":{"x":861,"y":916,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13000":{"x":757,"y":1063,"w":37,"h":27,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"13001":{"x":1264,"y":567,"w":21,"h":33,"offX":20,"offY":14,"sourceW":60,"sourceH":60}, +"13002":{"x":1673,"y":708,"w":21,"h":33,"offX":20,"offY":14,"sourceW":60,"sourceH":60}, +"13003":{"x":787,"y":619,"w":21,"h":33,"offX":20,"offY":14,"sourceW":60,"sourceH":60}, +"13004":{"x":1030,"y":854,"w":24,"h":32,"offX":18,"offY":14,"sourceW":60,"sourceH":60}, +"13005":{"x":1234,"y":808,"w":24,"h":32,"offX":18,"offY":14,"sourceW":60,"sourceH":60}, +"13006":{"x":799,"y":1126,"w":24,"h":18,"offX":20,"offY":28,"sourceW":60,"sourceH":60}, +"13007":{"x":66,"y":1097,"w":33,"h":24,"offX":15,"offY":23,"sourceW":60,"sourceH":60}, +"13008":{"x":770,"y":999,"w":41,"h":29,"offX":9,"offY":18,"sourceW":60,"sourceH":60}, +"13009":{"x":1030,"y":890,"w":45,"h":30,"offX":7,"offY":17,"sourceW":60,"sourceH":60}, +"13010":{"x":1296,"y":510,"w":60,"h":41,"offX":0,"offY":9,"sourceW":60,"sourceH":60}, +"13011":{"x":455,"y":925,"w":30,"h":31,"offX":15,"offY":15,"sourceW":60,"sourceH":60}, +"13012":{"x":42,"y":814,"w":40,"h":39,"offX":10,"offY":11,"sourceW":60,"sourceH":60}, +"13013":{"x":1656,"y":847,"w":39,"h":38,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"13014":{"x":1226,"y":851,"w":39,"h":37,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13015":{"x":534,"y":995,"w":37,"h":33,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13016":{"x":391,"y":1035,"w":40,"h":27,"offX":10,"offY":17,"sourceW":60,"sourceH":60}, +"13017":{"x":1343,"y":926,"w":40,"h":33,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"13018":{"x":1,"y":854,"w":38,"h":37,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13019":{"x":1832,"y":63,"w":27,"h":35,"offX":17,"offY":13,"sourceW":60,"sourceH":60}, +"13020":{"x":447,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13021":{"x":407,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13022":{"x":1607,"y":557,"w":20,"h":35,"offX":20,"offY":13,"sourceW":60,"sourceH":60}, +"13023":{"x":77,"y":939,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13024":{"x":689,"y":569,"w":23,"h":35,"offX":19,"offY":13,"sourceW":60,"sourceH":60}, +"13025":{"x":1044,"y":938,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13026":{"x":698,"y":179,"w":20,"h":35,"offX":20,"offY":13,"sourceW":60,"sourceH":60}, +"13027":{"x":284,"y":961,"w":35,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13028":{"x":810,"y":565,"w":23,"h":35,"offX":19,"offY":13,"sourceW":60,"sourceH":60}, +"13029":{"x":1423,"y":933,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13030":{"x":1904,"y":986,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13031":{"x":77,"y":977,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13032":{"x":41,"y":969,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13033":{"x":899,"y":1003,"w":33,"h":36,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13034":{"x":849,"y":954,"w":37,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13035":{"x":728,"y":893,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13036":{"x":1407,"y":1008,"w":32,"h":36,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13037":{"x":1266,"y":1007,"w":33,"h":35,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"13038":{"x":2012,"y":834,"w":35,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13039":{"x":151,"y":1004,"w":34,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13040":{"x":1940,"y":886,"w":21,"h":20,"offX":20,"offY":20,"sourceW":60,"sourceH":60}, +"13041":{"x":1277,"y":1100,"w":27,"h":28,"offX":17,"offY":16,"sourceW":60,"sourceH":60}, +"13042":{"x":41,"y":1007,"w":34,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13043":{"x":1603,"y":889,"w":44,"h":31,"offX":8,"offY":15,"sourceW":60,"sourceH":60}, +"13044":{"x":1968,"y":834,"w":42,"h":36,"offX":9,"offY":12,"sourceW":60,"sourceH":60}, +"13045":{"x":1441,"y":1037,"w":38,"h":28,"offX":11,"offY":16,"sourceW":60,"sourceH":60}, +"13046":{"x":1292,"y":970,"w":35,"h":35,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13047":{"x":235,"y":962,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13048":{"x":197,"y":961,"w":36,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13049":{"x":334,"y":916,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13050":{"x":39,"y":931,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13051":{"x":1,"y":931,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13052":{"x":1466,"y":929,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13053":{"x":1335,"y":1032,"w":31,"h":35,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"13054":{"x":610,"y":1003,"w":35,"h":34,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13055":{"x":1785,"y":997,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13056":{"x":729,"y":999,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13057":{"x":278,"y":999,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13058":{"x":357,"y":998,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13059":{"x":196,"y":998,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13060":{"x":1368,"y":1037,"w":30,"h":36,"offX":15,"offY":12,"sourceW":60,"sourceH":60}, +"13061":{"x":1600,"y":1117,"w":24,"h":24,"offX":18,"offY":18,"sourceW":60,"sourceH":60}, +"13062":{"x":1979,"y":910,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13063":{"x":1940,"y":910,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13064":{"x":79,"y":901,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13065":{"x":1077,"y":900,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13066":{"x":1775,"y":897,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13067":{"x":810,"y":717,"w":21,"h":28,"offX":20,"offY":16,"sourceW":60,"sourceH":60}, +"13068":{"x":1072,"y":1096,"w":30,"h":27,"offX":15,"offY":17,"sourceW":60,"sourceH":60}, +"13069":{"x":1427,"y":895,"w":37,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13070":{"x":477,"y":1003,"w":34,"h":35,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13071":{"x":781,"y":887,"w":38,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13072":{"x":401,"y":961,"w":35,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13073":{"x":1446,"y":1003,"w":37,"h":32,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13074":{"x":455,"y":959,"w":38,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13075":{"x":1654,"y":1003,"w":37,"h":32,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13076":{"x":871,"y":1074,"w":36,"h":26,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"13077":{"x":989,"y":854,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13078":{"x":1779,"y":859,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13079":{"x":1431,"y":857,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13080":{"x":1738,"y":856,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13081":{"x":1390,"y":855,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13082":{"x":1826,"y":997,"w":39,"h":31,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13083":{"x":740,"y":855,"w":39,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"13084":{"x":917,"y":1126,"w":27,"h":16,"offX":17,"offY":22,"sourceW":60,"sourceH":60}, +"13085":{"x":888,"y":1126,"w":27,"h":16,"offX":17,"offY":22,"sourceW":60,"sourceH":60}, +"13086":{"x":321,"y":992,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13087":{"x":1543,"y":991,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13088":{"x":828,"y":991,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13089":{"x":1579,"y":994,"w":34,"h":36,"offX":13,"offY":12,"sourceW":60,"sourceH":60}, +"13090":{"x":1719,"y":1099,"w":35,"h":22,"offX":13,"offY":19,"sourceW":60,"sourceH":60}, +"13091":{"x":1481,"y":1066,"w":36,"h":27,"offX":12,"offY":17,"sourceW":60,"sourceH":60}, +"13092":{"x":604,"y":969,"w":39,"h":32,"offX":11,"offY":14,"sourceW":60,"sourceH":60}, +"13093":{"x":981,"y":611,"w":24,"h":34,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"13094":{"x":487,"y":888,"w":44,"h":31,"offX":8,"offY":15,"sourceW":60,"sourceH":60}, +"13095":{"x":1005,"y":1012,"w":32,"h":36,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13096":{"x":735,"y":718,"w":28,"h":36,"offX":16,"offY":12,"sourceW":60,"sourceH":60}, +"13097":{"x":2018,"y":910,"w":28,"h":36,"offX":16,"offY":12,"sourceW":60,"sourceH":60}, +"13098":{"x":1,"y":1037,"w":30,"h":36,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13099":{"x":1385,"y":931,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13100":{"x":611,"y":931,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13101":{"x":369,"y":842,"w":42,"h":36,"offX":9,"offY":12,"sourceW":60,"sourceH":60}, +"13102":{"x":2010,"y":948,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13103":{"x":1972,"y":948,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13104":{"x":1934,"y":948,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13105":{"x":1711,"y":932,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13106":{"x":1291,"y":932,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13107":{"x":325,"y":954,"w":36,"h":36,"offX":12,"offY":12,"sourceW":60,"sourceH":60}, +"13108":{"x":864,"y":997,"w":33,"h":37,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13109":{"x":2014,"y":986,"w":33,"h":37,"offX":14,"offY":12,"sourceW":60,"sourceH":60}, +"13110":{"x":1880,"y":847,"w":40,"h":37,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"13111":{"x":163,"y":854,"w":40,"h":36,"offX":10,"offY":12,"sourceW":60,"sourceH":60}, +"13112":{"x":645,"y":855,"w":39,"h":36,"offX":12,"offY":11,"sourceW":60,"sourceH":60}, +"13113":{"x":1172,"y":671,"w":36,"h":45,"offX":13,"offY":8,"sourceW":60,"sourceH":60}, +"13114":{"x":1306,"y":766,"w":41,"h":45,"offX":10,"offY":7,"sourceW":60,"sourceH":60}, +"13115":{"x":1056,"y":766,"w":41,"h":45,"offX":10,"offY":7,"sourceW":60,"sourceH":60}, +"13116":{"x":445,"y":709,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13117":{"x":1975,"y":1092,"w":30,"h":29,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"13118":{"x":1612,"y":850,"w":39,"h":37,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13119":{"x":1394,"y":814,"w":39,"h":39,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13120":{"x":1799,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13121":{"x":1737,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13122":{"x":1675,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13123":{"x":1613,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13124":{"x":1551,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13125":{"x":1489,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13126":{"x":1427,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13127":{"x":1365,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13128":{"x":1303,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13129":{"x":1241,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13130":{"x":754,"y":768,"w":41,"h":45,"offX":10,"offY":6,"sourceW":60,"sourceH":60}, +"13131":{"x":1179,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13132":{"x":1117,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13133":{"x":1055,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13134":{"x":629,"y":451,"w":51,"h":51,"offX":5,"offY":5,"sourceW":60,"sourceH":60}, +"13135":{"x":1124,"y":671,"w":46,"h":46,"offX":8,"offY":8,"sourceW":60,"sourceH":60}, +"13136":{"x":345,"y":296,"w":57,"h":51,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13137":{"x":412,"y":237,"w":58,"h":51,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13138":{"x":460,"y":398,"w":58,"h":47,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13139":{"x":1107,"y":297,"w":58,"h":49,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13140":{"x":1047,"y":348,"w":58,"h":48,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13141":{"x":987,"y":348,"w":58,"h":48,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13142":{"x":460,"y":348,"w":58,"h":48,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13143":{"x":277,"y":457,"w":57,"h":45,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13144":{"x":1,"y":452,"w":58,"h":45,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13145":{"x":1727,"y":397,"w":58,"h":47,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13146":{"x":1047,"y":297,"w":58,"h":49,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13147":{"x":761,"y":297,"w":58,"h":50,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13148":{"x":1944,"y":404,"w":58,"h":46,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13149":{"x":916,"y":354,"w":58,"h":47,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13150":{"x":1676,"y":446,"w":57,"h":46,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13151":{"x":1773,"y":347,"w":58,"h":48,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13152":{"x":584,"y":297,"w":58,"h":50,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13153":{"x":460,"y":296,"w":58,"h":50,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13154":{"x":987,"y":297,"w":58,"h":49,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13155":{"x":1,"y":177,"w":58,"h":52,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13156":{"x":754,"y":238,"w":58,"h":51,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13157":{"x":1404,"y":457,"w":50,"h":51,"offX":6,"offY":7,"sourceW":60,"sourceH":60}, +"13158":{"x":1807,"y":1030,"w":30,"h":37,"offX":15,"offY":11,"sourceW":60,"sourceH":60}, +"13159":{"x":1306,"y":718,"w":44,"h":46,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13160":{"x":565,"y":770,"w":45,"h":41,"offX":7,"offY":9,"sourceW":60,"sourceH":60}, +"13161":{"x":1670,"y":804,"w":43,"h":41,"offX":9,"offY":10,"sourceW":60,"sourceH":60}, +"13162":{"x":993,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13163":{"x":1882,"y":123,"w":37,"h":44,"offX":10,"offY":9,"sourceW":60,"sourceH":60}, +"13164":{"x":1861,"y":1,"w":59,"h":59,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13165":{"x":580,"y":722,"w":44,"h":46,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13166":{"x":1137,"y":850,"w":42,"h":35,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"13167":{"x":945,"y":850,"w":42,"h":35,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"13168":{"x":787,"y":850,"w":42,"h":35,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"13169":{"x":455,"y":850,"w":42,"h":35,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"13170":{"x":901,"y":840,"w":42,"h":36,"offX":8,"offY":13,"sourceW":60,"sourceH":60}, +"13171":{"x":1056,"y":813,"w":43,"h":37,"offX":8,"offY":13,"sourceW":60,"sourceH":60}, +"13172":{"x":967,"y":992,"w":36,"h":34,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13173":{"x":121,"y":888,"w":39,"h":35,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"13174":{"x":564,"y":959,"w":38,"h":34,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13175":{"x":821,"y":887,"w":38,"h":36,"offX":10,"offY":15,"sourceW":60,"sourceH":60}, +"13176":{"x":82,"y":862,"w":37,"h":37,"offX":11,"offY":15,"sourceW":60,"sourceH":60}, +"13177":{"x":1838,"y":847,"w":40,"h":37,"offX":9,"offY":15,"sourceW":60,"sourceH":60}, +"13178":{"x":657,"y":814,"w":40,"h":39,"offX":9,"offY":13,"sourceW":60,"sourceH":60}, +"13190":{"x":1082,"y":938,"w":31,"h":27,"offX":15,"offY":19,"sourceW":60,"sourceH":60}, +"13191":{"x":1503,"y":1096,"w":30,"h":27,"offX":15,"offY":19,"sourceW":60,"sourceH":60}, +"13192":{"x":1104,"y":1096,"w":30,"h":27,"offX":15,"offY":19,"sourceW":60,"sourceH":60}, +"13193":{"x":1765,"y":1095,"w":31,"h":27,"offX":15,"offY":19,"sourceW":60,"sourceH":60}, +"13194":{"x":954,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13195":{"x":896,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13196":{"x":838,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13197":{"x":302,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13198":{"x":484,"y":120,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13199":{"x":364,"y":120,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13200":{"x":545,"y":119,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13201":{"x":780,"y":118,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13202":{"x":722,"y":118,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13203":{"x":1979,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13204":{"x":1921,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13205":{"x":1774,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13206":{"x":1716,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13207":{"x":1658,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13208":{"x":1600,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13209":{"x":933,"y":297,"w":52,"h":55,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13210":{"x":1542,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13211":{"x":1484,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13212":{"x":1426,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13213":{"x":1368,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13214":{"x":1310,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13215":{"x":1252,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13216":{"x":1194,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13217":{"x":1136,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13218":{"x":1873,"y":179,"w":54,"h":55,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13219":{"x":1078,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13220":{"x":1020,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13221":{"x":962,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13222":{"x":904,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13223":{"x":846,"y":63,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13224":{"x":1921,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13225":{"x":1766,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13226":{"x":1091,"y":398,"w":50,"h":54,"offX":5,"offY":4,"sourceW":60,"sourceH":60}, +"13227":{"x":63,"y":125,"w":56,"h":54,"offX":2,"offY":4,"sourceW":60,"sourceH":60}, +"13228":{"x":1708,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13229":{"x":1650,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13230":{"x":1374,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13231":{"x":228,"y":296,"w":56,"h":52,"offX":2,"offY":4,"sourceW":60,"sourceH":60}, +"13232":{"x":296,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13233":{"x":479,"y":178,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13234":{"x":360,"y":178,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13235":{"x":1979,"y":177,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13236":{"x":594,"y":177,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13237":{"x":542,"y":177,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13238":{"x":781,"y":176,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13239":{"x":1821,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13240":{"x":1769,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13241":{"x":1717,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13242":{"x":1665,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13243":{"x":1613,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13244":{"x":1561,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13245":{"x":1509,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13246":{"x":1457,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13247":{"x":1405,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13248":{"x":1353,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13249":{"x":1301,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13250":{"x":1249,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13251":{"x":1197,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13252":{"x":1145,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13253":{"x":1553,"y":611,"w":48,"h":49,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"13254":{"x":612,"y":807,"w":43,"h":40,"offX":8,"offY":10,"sourceW":60,"sourceH":60}, +"13255":{"x":640,"y":711,"w":46,"h":45,"offX":7,"offY":8,"sourceW":60,"sourceH":60}, +"13256":{"x":931,"y":611,"w":48,"h":49,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"13257":{"x":1873,"y":236,"w":56,"h":53,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13258":{"x":1592,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13259":{"x":1143,"y":400,"w":50,"h":54,"offX":5,"offY":3,"sourceW":60,"sourceH":60}, +"13260":{"x":976,"y":398,"w":51,"h":53,"offX":6,"offY":4,"sourceW":60,"sourceH":60}, +"13261":{"x":914,"y":454,"w":50,"h":52,"offX":5,"offY":4,"sourceW":60,"sourceH":60}, +"13262":{"x":1534,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13263":{"x":412,"y":180,"w":54,"h":55,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13264":{"x":738,"y":619,"w":47,"h":49,"offX":7,"offY":6,"sourceW":60,"sourceH":60}, +"13265":{"x":281,"y":352,"w":53,"h":52,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"13266":{"x":1833,"y":351,"w":53,"h":52,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"13267":{"x":1339,"y":351,"w":53,"h":52,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"13268":{"x":1824,"y":123,"w":56,"h":54,"offX":2,"offY":4,"sourceW":60,"sourceH":60}, +"13269":{"x":344,"y":614,"w":51,"h":46,"offX":4,"offY":8,"sourceW":60,"sourceH":60}, +"13270":{"x":1952,"y":504,"w":55,"h":46,"offX":3,"offY":9,"sourceW":60,"sourceH":60}, +"13271":{"x":1284,"y":297,"w":53,"h":53,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"13272":{"x":1,"y":810,"w":39,"h":42,"offX":10,"offY":9,"sourceW":60,"sourceH":60}, +"13273":{"x":878,"y":759,"w":45,"h":43,"offX":8,"offY":9,"sourceW":60,"sourceH":60}, +"13274":{"x":97,"y":662,"w":44,"h":51,"offX":11,"offY":7,"sourceW":60,"sourceH":60}, +"13275":{"x":1800,"y":813,"w":36,"h":44,"offX":13,"offY":7,"sourceW":60,"sourceH":60}, +"13276":{"x":221,"y":506,"w":50,"h":50,"offX":4,"offY":5,"sourceW":60,"sourceH":60}, +"13277":{"x":1797,"y":660,"w":46,"h":49,"offX":7,"offY":6,"sourceW":60,"sourceH":60}, +"13278":{"x":87,"y":766,"w":38,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13279":{"x":241,"y":707,"w":44,"h":48,"offX":9,"offY":6,"sourceW":60,"sourceH":60}, +"13280":{"x":1934,"y":295,"w":53,"h":55,"offX":5,"offY":3,"sourceW":60,"sourceH":60}, +"13281":{"x":292,"y":1093,"w":30,"h":29,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"13282":{"x":698,"y":231,"w":54,"h":55,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13283":{"x":1766,"y":241,"w":54,"h":54,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13284":{"x":219,"y":1061,"w":34,"h":30,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13285":{"x":183,"y":1061,"w":34,"h":30,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13286":{"x":1434,"y":1067,"w":32,"h":30,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13287":{"x":513,"y":1067,"w":32,"h":30,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13288":{"x":461,"y":1069,"w":32,"h":30,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13289":{"x":1298,"y":1068,"w":32,"h":30,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13290":{"x":813,"y":1029,"w":34,"h":33,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"13291":{"x":649,"y":931,"w":29,"h":34,"offX":15,"offY":12,"sourceW":60,"sourceH":60}, +"13292":{"x":1261,"y":805,"w":40,"h":44,"offX":11,"offY":7,"sourceW":60,"sourceH":60}, +"13293":{"x":435,"y":1030,"w":35,"h":32,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"13294":{"x":1731,"y":1009,"w":36,"h":32,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13295":{"x":1652,"y":1067,"w":32,"h":30,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"13296":{"x":1838,"y":1091,"w":29,"h":31,"offX":15,"offY":13,"sourceW":60,"sourceH":60}, +"13297":{"x":148,"y":1040,"w":33,"h":32,"offX":15,"offY":12,"sourceW":60,"sourceH":60}, +"13298":{"x":208,"y":1093,"w":29,"h":30,"offX":16,"offY":15,"sourceW":60,"sourceH":60}, +"13299":{"x":1097,"y":1031,"w":34,"h":32,"offX":14,"offY":14,"sourceW":60,"sourceH":60}, +"13300":{"x":1521,"y":1064,"w":33,"h":30,"offX":14,"offY":15,"sourceW":60,"sourceH":60}, +"13301":{"x":796,"y":1064,"w":33,"h":30,"offX":14,"offY":15,"sourceW":60,"sourceH":60}, +"13302":{"x":1727,"y":353,"w":43,"h":42,"offX":7,"offY":11,"sourceW":60,"sourceH":60}, +"13303":{"x":1899,"y":405,"w":43,"h":45,"offX":7,"offY":10,"sourceW":60,"sourceH":60}, +"13304":{"x":1261,"y":758,"w":43,"h":45,"offX":6,"offY":10,"sourceW":60,"sourceH":60}, +"13305":{"x":787,"y":666,"w":45,"h":49,"offX":7,"offY":6,"sourceW":60,"sourceH":60}, +"13306":{"x":1749,"y":660,"w":46,"h":49,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"13307":{"x":1308,"y":667,"w":45,"h":49,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"13308":{"x":1,"y":714,"w":43,"h":48,"offX":8,"offY":9,"sourceW":60,"sourceH":60}, +"13309":{"x":48,"y":713,"w":43,"h":48,"offX":7,"offY":8,"sourceW":60,"sourceH":60}, +"13310":{"x":1835,"y":712,"w":43,"h":48,"offX":7,"offY":9,"sourceW":60,"sourceH":60}, +"13311":{"x":1011,"y":712,"w":44,"h":47,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13312":{"x":2007,"y":452,"w":40,"h":48,"offX":10,"offY":5,"sourceW":60,"sourceH":60}, +"13313":{"x":1247,"y":405,"w":50,"h":53,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13314":{"x":2002,"y":552,"w":45,"h":50,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13315":{"x":1,"y":499,"w":48,"h":53,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13316":{"x":910,"y":508,"w":47,"h":53,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13317":{"x":1686,"y":1078,"w":31,"h":30,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"13318":{"x":881,"y":1041,"w":34,"h":31,"offX":14,"offY":17,"sourceW":60,"sourceH":60}, +"13319":{"x":1033,"y":654,"w":41,"h":56,"offX":19,"offY":4,"sourceW":60,"sourceH":60}, +"13320":{"x":1259,"y":710,"w":45,"h":46,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13321":{"x":834,"y":668,"w":47,"h":46,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13322":{"x":689,"y":618,"w":47,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13323":{"x":1435,"y":664,"w":46,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13324":{"x":193,"y":664,"w":46,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13325":{"x":966,"y":505,"w":50,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13326":{"x":1952,"y":552,"w":48,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13327":{"x":295,"y":614,"w":47,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13328":{"x":1187,"y":514,"w":49,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13329":{"x":784,"y":513,"w":49,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13330":{"x":1822,"y":241,"w":49,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13331":{"x":1804,"y":610,"w":49,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13332":{"x":1686,"y":550,"w":49,"h":49,"offX":6,"offY":5,"sourceW":60,"sourceH":60}, +"13333":{"x":1683,"y":1110,"w":26,"h":24,"offX":16,"offY":20,"sourceW":60,"sourceH":60}, +"13334":{"x":334,"y":887,"w":28,"h":26,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"13335":{"x":1787,"y":935,"w":24,"h":24,"offX":19,"offY":16,"sourceW":60,"sourceH":60}, +"13336":{"x":981,"y":1110,"w":28,"h":24,"offX":15,"offY":20,"sourceW":60,"sourceH":60}, +"13337":{"x":934,"y":1003,"w":30,"h":20,"offX":14,"offY":20,"sourceW":60,"sourceH":60}, +"13338":{"x":1,"y":1109,"w":28,"h":24,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"13339":{"x":1798,"y":1097,"w":34,"h":23,"offX":12,"offY":18,"sourceW":60,"sourceH":60}, +"13340":{"x":324,"y":1097,"w":34,"h":23,"offX":13,"offY":19,"sourceW":60,"sourceH":60}, +"13341":{"x":495,"y":1099,"w":34,"h":23,"offX":13,"offY":20,"sourceW":60,"sourceH":60}, +"13342":{"x":1112,"y":1065,"w":34,"h":29,"offX":11,"offY":14,"sourceW":60,"sourceH":60}, +"13343":{"x":1076,"y":1065,"w":34,"h":29,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"13344":{"x":92,"y":1066,"w":34,"h":29,"offX":13,"offY":16,"sourceW":60,"sourceH":60}, +"13345":{"x":1978,"y":1060,"w":34,"h":30,"offX":12,"offY":16,"sourceW":60,"sourceH":60}, +"13346":{"x":1875,"y":1083,"w":32,"h":29,"offX":11,"offY":16,"sourceW":60,"sourceH":60}, +"13347":{"x":1368,"y":1080,"w":32,"h":29,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"13348":{"x":1195,"y":405,"w":50,"h":53,"offX":9,"offY":4,"sourceW":60,"sourceH":60}, +"13349":{"x":170,"y":809,"w":39,"h":43,"offX":12,"offY":10,"sourceW":60,"sourceH":60}, +"13350":{"x":1535,"y":662,"w":44,"h":51,"offX":8,"offY":5,"sourceW":60,"sourceH":60}, +"13351":{"x":1535,"y":1099,"w":29,"h":27,"offX":14,"offY":19,"sourceW":60,"sourceH":60}, +"13352":{"x":612,"y":1092,"w":28,"h":32,"offX":16,"offY":15,"sourceW":60,"sourceH":60}, +"13353":{"x":1039,"y":1041,"w":35,"h":30,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"13354":{"x":1039,"y":1073,"w":31,"h":30,"offX":13,"offY":16,"sourceW":60,"sourceH":60}, +"13355":{"x":1611,"y":1061,"w":39,"h":26,"offX":11,"offY":18,"sourceW":60,"sourceH":60}, +"13356":{"x":426,"y":1064,"w":33,"h":30,"offX":13,"offY":17,"sourceW":60,"sourceH":60}, +"13357":{"x":642,"y":1101,"w":26,"h":28,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"13358":{"x":1244,"y":1078,"w":31,"h":30,"offX":14,"offY":17,"sourceW":60,"sourceH":60}, +"13359":{"x":1178,"y":1091,"w":36,"h":25,"offX":11,"offY":19,"sourceW":60,"sourceH":60}, +"13360":{"x":391,"y":1064,"w":33,"h":30,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"13361":{"x":581,"y":1060,"w":34,"h":30,"offX":13,"offY":17,"sourceW":60,"sourceH":60}, +"13362":{"x":345,"y":1065,"w":33,"h":30,"offX":13,"offY":15,"sourceW":60,"sourceH":60}, +"13363":{"x":2009,"y":502,"w":38,"h":43,"offX":12,"offY":10,"sourceW":60,"sourceH":60}, +"13364":{"x":931,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13365":{"x":1101,"y":765,"w":40,"h":47,"offX":10,"offY":4,"sourceW":60,"sourceH":60}, +"13366":{"x":1332,"y":1099,"w":27,"h":29,"offX":16,"offY":16,"sourceW":60,"sourceH":60}, +"13367":{"x":1121,"y":967,"w":27,"h":29,"offX":16,"offY":16,"sourceW":60,"sourceH":60}, +"13368":{"x":1626,"y":1099,"w":27,"h":29,"offX":16,"offY":16,"sourceW":60,"sourceH":60}, +"13369":{"x":417,"y":1096,"w":29,"h":28,"offX":15,"offY":17,"sourceW":60,"sourceH":60}, +"13370":{"x":909,"y":1096,"w":29,"h":28,"offX":15,"offY":17,"sourceW":60,"sourceH":60}, +"13371":{"x":796,"y":1096,"w":29,"h":28,"offX":15,"offY":17,"sourceW":60,"sourceH":60}, +"13372":{"x":1306,"y":1100,"w":24,"h":30,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"13373":{"x":1190,"y":962,"w":24,"h":30,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"13374":{"x":547,"y":1093,"w":28,"h":30,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"13375":{"x":1151,"y":925,"w":24,"h":30,"offX":16,"offY":13,"sourceW":60,"sourceH":60}, +"13376":{"x":979,"y":930,"w":24,"h":28,"offX":16,"offY":15,"sourceW":60,"sourceH":60}, +"13377":{"x":1655,"y":1099,"w":26,"h":30,"offX":15,"offY":14,"sourceW":60,"sourceH":60}, +"13378":{"x":2018,"y":1025,"w":29,"h":32,"offX":15,"offY":13,"sourceW":60,"sourceH":60}, +"13379":{"x":1133,"y":1031,"w":34,"h":32,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13380":{"x":1402,"y":1080,"w":30,"h":30,"offX":13,"offY":15,"sourceW":60,"sourceH":60}, +"13381":{"x":712,"y":765,"w":40,"h":47,"offX":11,"offY":5,"sourceW":60,"sourceH":60}, +"13382":{"x":670,"y":765,"w":40,"h":47,"offX":11,"offY":4,"sourceW":60,"sourceH":60}, +"13383":{"x":1116,"y":925,"w":33,"h":40,"offX":12,"offY":11,"sourceW":60,"sourceH":60}, +"13384":{"x":1256,"y":928,"w":33,"h":40,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"13385":{"x":680,"y":926,"w":33,"h":40,"offX":12,"offY":11,"sourceW":60,"sourceH":60}, +"13386":{"x":1143,"y":766,"w":45,"h":41,"offX":8,"offY":10,"sourceW":60,"sourceH":60}, +"13387":{"x":1349,"y":768,"w":45,"h":41,"offX":8,"offY":10,"sourceW":60,"sourceH":60}, +"13388":{"x":810,"y":767,"w":45,"h":41,"offX":7,"offY":10,"sourceW":60,"sourceH":60}, +"13389":{"x":1522,"y":766,"w":45,"h":41,"offX":8,"offY":10,"sourceW":60,"sourceH":60}, +"13390":{"x":1468,"y":1095,"w":33,"h":26,"offX":13,"offY":16,"sourceW":60,"sourceH":60}, +"13391":{"x":641,"y":893,"w":37,"h":36,"offX":12,"offY":11,"sourceW":60,"sourceH":60}, +"13392":{"x":1418,"y":121,"w":56,"h":56,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13393":{"x":1360,"y":121,"w":56,"h":56,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13394":{"x":1302,"y":121,"w":56,"h":56,"offX":2,"offY":1,"sourceW":60,"sourceH":60}, +"13395":{"x":1244,"y":121,"w":56,"h":56,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13396":{"x":342,"y":349,"w":52,"h":53,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13397":{"x":806,"y":352,"w":52,"h":53,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13398":{"x":1719,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13399":{"x":1628,"y":708,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13400":{"x":1665,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13401":{"x":344,"y":708,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13402":{"x":1611,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13403":{"x":1939,"y":703,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13404":{"x":1557,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13405":{"x":535,"y":709,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13406":{"x":1503,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13407":{"x":883,"y":708,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13408":{"x":1449,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13409":{"x":1944,"y":352,"w":43,"h":49,"offX":9,"offY":5,"sourceW":60,"sourceH":60}, +"13410":{"x":1395,"y":297,"w":52,"h":54,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"13411":{"x":722,"y":176,"w":57,"h":53,"offX":1,"offY":5,"sourceW":60,"sourceH":60}, +"13412":{"x":1562,"y":353,"w":55,"h":50,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13413":{"x":63,"y":63,"w":57,"h":60,"offX":3,"offY":0,"sourceW":60,"sourceH":60}, +"13414":{"x":122,"y":63,"w":58,"h":58,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13415":{"x":917,"y":1063,"w":32,"h":31,"offX":15,"offY":13,"sourceW":60,"sourceH":60}, +"13416":{"x":57,"y":237,"w":57,"h":52,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13417":{"x":231,"y":806,"w":45,"h":39,"offX":6,"offY":9,"sourceW":60,"sourceH":60}, +"13418":{"x":1765,"y":1063,"w":33,"h":30,"offX":13,"offY":14,"sourceW":60,"sourceH":60}, +"13419":{"x":397,"y":614,"w":20,"h":30,"offX":21,"offY":13,"sourceW":60,"sourceH":60}, +"13420":{"x":617,"y":1060,"w":34,"h":30,"offX":12,"offY":15,"sourceW":60,"sourceH":60}, +"13421":{"x":1909,"y":1083,"w":32,"h":29,"offX":13,"offY":15,"sourceW":60,"sourceH":60}, +"13422":{"x":703,"y":1068,"w":32,"h":30,"offX":14,"offY":13,"sourceW":60,"sourceH":60}, +"13423":{"x":1943,"y":1087,"w":30,"h":30,"offX":14,"offY":14,"sourceW":60,"sourceH":60}, +"13424":{"x":1264,"y":1044,"w":32,"h":32,"offX":16,"offY":12,"sourceW":60,"sourceH":60}, +"13425":{"x":1944,"y":1053,"w":32,"h":32,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13426":{"x":2014,"y":1060,"w":32,"h":31,"offX":15,"offY":14,"sourceW":60,"sourceH":60}, +"13427":{"x":1556,"y":1066,"w":31,"h":31,"offX":16,"offY":15,"sourceW":60,"sourceH":60}, +"13428":{"x":1839,"y":1059,"w":34,"h":30,"offX":14,"offY":16,"sourceW":60,"sourceH":60}, +"13429":{"x":448,"y":1101,"w":30,"h":25,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"13430":{"x":101,"y":1101,"w":29,"h":26,"offX":14,"offY":16,"sourceW":60,"sourceH":60}, +"13431":{"x":1005,"y":1050,"w":32,"h":32,"offX":15,"offY":13,"sourceW":60,"sourceH":60}, +"13432":{"x":1262,"y":656,"w":44,"h":52,"offX":8,"offY":4,"sourceW":60,"sourceH":60}, +"13433":{"x":1389,"y":614,"w":44,"h":53,"offX":8,"offY":3,"sourceW":60,"sourceH":60}, +"13434":{"x":723,"y":1032,"w":32,"h":34,"offX":14,"offY":14,"sourceW":60,"sourceH":60}, +"13435":{"x":581,"y":1092,"w":29,"h":31,"offX":18,"offY":16,"sourceW":60,"sourceH":60}, +"13436":{"x":767,"y":1092,"w":27,"h":31,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"13437":{"x":1,"y":1075,"w":29,"h":32,"offX":18,"offY":13,"sourceW":60,"sourceH":60}, +"13438":{"x":294,"y":853,"w":26,"h":31,"offX":17,"offY":15,"sourceW":60,"sourceH":60}, +"13439":{"x":1400,"y":1046,"w":32,"h":32,"offX":16,"offY":14,"sourceW":60,"sourceH":60}, +"13440":{"x":733,"y":512,"w":49,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13441":{"x":839,"y":511,"w":49,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13442":{"x":494,"y":659,"w":47,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13443":{"x":445,"y":659,"w":47,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13444":{"x":245,"y":657,"w":47,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13445":{"x":1773,"y":297,"w":47,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13446":{"x":1435,"y":614,"w":48,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13447":{"x":1112,"y":615,"w":48,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13448":{"x":1703,"y":609,"w":49,"h":48,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13449":{"x":766,"y":717,"w":42,"h":49,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13450":{"x":834,"y":716,"w":42,"h":49,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13451":{"x":1533,"y":715,"w":42,"h":49,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13452":{"x":1057,"y":715,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13453":{"x":93,"y":715,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13454":{"x":1489,"y":714,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13455":{"x":1445,"y":714,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13456":{"x":1401,"y":714,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13457":{"x":287,"y":714,"w":42,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13458":{"x":1698,"y":707,"w":43,"h":49,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13459":{"x":1358,"y":510,"w":49,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13460":{"x":1172,"y":718,"w":44,"h":46,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13461":{"x":928,"y":744,"w":44,"h":46,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13462":{"x":1352,"y":720,"w":44,"h":46,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13463":{"x":859,"y":1102,"w":27,"h":26,"offX":16,"offY":18,"sourceW":60,"sourceH":60}, +"13464":{"x":1869,"y":1114,"w":24,"h":25,"offX":19,"offY":17,"sourceW":60,"sourceH":60}, +"13465":{"x":168,"y":1118,"w":23,"h":25,"offX":17,"offY":18,"sourceW":60,"sourceH":60}, +"13466":{"x":1575,"y":1032,"w":34,"h":32,"offX":13,"offY":13,"sourceW":60,"sourceH":60}, +"13467":{"x":1348,"y":851,"w":40,"h":36,"offX":10,"offY":13,"sourceW":60,"sourceH":60}, +"13468":{"x":910,"y":617,"w":17,"h":27,"offX":22,"offY":17,"sourceW":60,"sourceH":60}, +"13469":{"x":714,"y":516,"w":17,"h":27,"offX":22,"offY":17,"sourceW":60,"sourceH":60}, +"13470":{"x":1559,"y":506,"w":17,"h":27,"offX":22,"offY":17,"sourceW":60,"sourceH":60}, +"13471":{"x":1581,"y":662,"w":17,"h":27,"offX":22,"offY":17,"sourceW":60,"sourceH":60}, +"13472":{"x":278,"y":813,"w":42,"h":38,"offX":9,"offY":12,"sourceW":60,"sourceH":60}, +"13473":{"x":559,"y":813,"w":42,"h":38,"offX":9,"offY":13,"sourceW":60,"sourceH":60}, +"13474":{"x":185,"y":764,"w":44,"h":43,"offX":8,"offY":10,"sourceW":60,"sourceH":60}, +"13475":{"x":797,"y":810,"w":44,"h":38,"offX":8,"offY":14,"sourceW":60,"sourceH":60}, +"13476":{"x":331,"y":759,"w":44,"h":44,"offX":8,"offY":8,"sourceW":60,"sourceH":60}, +"13477":{"x":805,"y":407,"w":51,"h":51,"offX":5,"offY":2,"sourceW":60,"sourceH":60}, +"13478":{"x":1673,"y":758,"w":44,"h":44,"offX":8,"offY":8,"sourceW":60,"sourceH":60}, +"13479":{"x":910,"y":662,"w":51,"h":44,"offX":5,"offY":8,"sourceW":60,"sourceH":60}, +"13480":{"x":1,"y":398,"w":52,"h":52,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13481":{"x":1719,"y":760,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13482":{"x":524,"y":760,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13483":{"x":46,"y":763,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13484":{"x":1801,"y":762,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13485":{"x":1015,"y":761,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13486":{"x":974,"y":761,"w":39,"h":49,"offX":11,"offY":6,"sourceW":60,"sourceH":60}, +"13487":{"x":1070,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13488":{"x":1062,"y":1003,"w":33,"h":36,"offX":11,"offY":9,"sourceW":60,"sourceH":60}, +"13489":{"x":242,"y":63,"w":58,"h":58,"offX":1,"offY":1,"sourceW":60,"sourceH":60}, +"13490":{"x":1151,"y":962,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13491":{"x":1865,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13492":{"x":1826,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13493":{"x":1787,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13494":{"x":1107,"y":348,"w":58,"h":48,"offX":2,"offY":0,"sourceW":60,"sourceH":60}, +"13495":{"x":1982,"y":1,"w":58,"h":60,"offX":2,"offY":0,"sourceW":60,"sourceH":60}, +"13496":{"x":182,"y":63,"w":58,"h":58,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13497":{"x":121,"y":177,"w":58,"h":52,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"13498":{"x":174,"y":237,"w":57,"h":52,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13499":{"x":626,"y":758,"w":42,"h":47,"offX":11,"offY":4,"sourceW":60,"sourceH":60}, +"13500":{"x":869,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13501":{"x":1082,"y":967,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13502":{"x":1632,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13503":{"x":1504,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13504":{"x":1329,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13505":{"x":143,"y":711,"w":46,"h":45,"offX":7,"offY":8,"sourceW":60,"sourceH":60}, +"13506":{"x":1078,"y":509,"w":56,"h":44,"offX":2,"offY":8,"sourceW":60,"sourceH":60}, +"13507":{"x":1989,"y":295,"w":55,"h":53,"offX":2,"offY":5,"sourceW":60,"sourceH":60}, +"13508":{"x":1984,"y":702,"w":47,"h":45,"offX":6,"offY":8,"sourceW":60,"sourceH":60}, +"13509":{"x":433,"y":549,"w":56,"h":43,"offX":1,"offY":9,"sourceW":60,"sourceH":60}, +"13510":{"x":860,"y":405,"w":52,"h":51,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"13511":{"x":1409,"y":510,"w":45,"h":47,"offX":8,"offY":7,"sourceW":60,"sourceH":60}, +"13512":{"x":452,"y":447,"w":57,"h":46,"offX":1,"offY":7,"sourceW":60,"sourceH":60}, +"13513":{"x":700,"y":347,"w":49,"h":57,"offX":5,"offY":0,"sourceW":60,"sourceH":60}, +"13514":{"x":1101,"y":719,"w":46,"h":44,"offX":7,"offY":8,"sourceW":60,"sourceH":60}, +"13515":{"x":1167,"y":297,"w":60,"h":47,"offX":0,"offY":9,"sourceW":60,"sourceH":60}, +"13516":{"x":1630,"y":548,"w":54,"h":45,"offX":4,"offY":8,"sourceW":60,"sourceH":60}, +"13517":{"x":1,"y":123,"w":60,"h":52,"offX":0,"offY":4,"sourceW":60,"sourceH":60}, +"13518":{"x":565,"y":457,"w":57,"h":45,"offX":0,"offY":8,"sourceW":60,"sourceH":60}, +"13519":{"x":807,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13520":{"x":1029,"y":398,"w":60,"h":45,"offX":0,"offY":9,"sourceW":60,"sourceH":60}, +"13521":{"x":302,"y":63,"w":60,"h":56,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13522":{"x":531,"y":239,"w":60,"h":49,"offX":0,"offY":7,"sourceW":60,"sourceH":60}, +"13523":{"x":1029,"y":445,"w":60,"h":44,"offX":0,"offY":9,"sourceW":60,"sourceH":60}, +"13524":{"x":784,"y":63,"w":60,"h":53,"offX":0,"offY":5,"sourceW":60,"sourceH":60}, +"13525":{"x":122,"y":123,"w":60,"h":52,"offX":0,"offY":3,"sourceW":60,"sourceH":60}, +"13526":{"x":396,"y":400,"w":54,"h":50,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"13527":{"x":1861,"y":62,"w":58,"h":59,"offX":1,"offY":1,"sourceW":60,"sourceH":60}, +"13528":{"x":49,"y":611,"w":46,"h":51,"offX":7,"offY":5,"sourceW":60,"sourceH":60}, +"13529":{"x":576,"y":403,"w":51,"h":52,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13530":{"x":1979,"y":121,"w":58,"h":54,"offX":1,"offY":3,"sourceW":60,"sourceH":60}, +"13531":{"x":484,"y":63,"w":59,"h":55,"offX":0,"offY":4,"sourceW":60,"sourceH":60}, +"13532":{"x":397,"y":648,"w":46,"h":50,"offX":7,"offY":5,"sourceW":60,"sourceH":60}, +"13533":{"x":705,"y":291,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13534":{"x":172,"y":291,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13535":{"x":57,"y":291,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13536":{"x":528,"y":290,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13537":{"x":1922,"y":1,"w":58,"h":60,"offX":1,"offY":0,"sourceW":60,"sourceH":60}, +"13538":{"x":745,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13539":{"x":665,"y":63,"w":55,"h":58,"offX":5,"offY":0,"sourceW":60,"sourceH":60}, +"13540":{"x":683,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"13541":{"x":222,"y":455,"w":53,"h":49,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"13542":{"x":1466,"y":406,"w":54,"h":49,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"13543":{"x":1410,"y":406,"w":54,"h":49,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"13544":{"x":336,"y":455,"w":53,"h":49,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"13545":{"x":1613,"y":807,"w":41,"h":41,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"13546":{"x":364,"y":63,"w":60,"h":55,"offX":0,"offY":5,"sourceW":60,"sourceH":60}, +"13547":{"x":169,"y":347,"w":55,"h":51,"offX":2,"offY":5,"sourceW":60,"sourceH":60}, +"13548":{"x":434,"y":760,"w":46,"h":42,"offX":7,"offY":10,"sourceW":60,"sourceH":60}, +"13549":{"x":963,"y":696,"w":46,"h":46,"offX":7,"offY":9,"sourceW":60,"sourceH":60}, +"13550":{"x":294,"y":666,"w":48,"h":46,"offX":6,"offY":9,"sourceW":60,"sourceH":60}, +"13551":{"x":1698,"y":659,"w":49,"h":46,"offX":2,"offY":6,"sourceW":54,"sourceH":54}, +"13552":{"x":1725,"y":500,"w":53,"h":48,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"13553":{"x":1615,"y":997,"w":37,"h":33,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13554":{"x":1329,"y":997,"w":37,"h":33,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13555":{"x":1190,"y":997,"w":37,"h":33,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13556":{"x":438,"y":995,"w":37,"h":33,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13557":{"x":223,"y":404,"w":55,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13558":{"x":916,"y":403,"w":55,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13559":{"x":55,"y":401,"w":55,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13560":{"x":1619,"y":404,"w":55,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13561":{"x":336,"y":404,"w":55,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"13562":{"x":1654,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13563":{"x":1598,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13564":{"x":1542,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13565":{"x":1486,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13566":{"x":1430,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13567":{"x":1318,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13568":{"x":1262,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13569":{"x":426,"y":63,"w":56,"h":58,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13570":{"x":607,"y":63,"w":56,"h":57,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13571":{"x":181,"y":180,"w":54,"h":55,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13572":{"x":1038,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13573":{"x":118,"y":231,"w":54,"h":55,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13574":{"x":926,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13575":{"x":1,"y":231,"w":54,"h":55,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13576":{"x":814,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13577":{"x":649,"y":241,"w":47,"h":45,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13578":{"x":397,"y":700,"w":46,"h":46,"offX":4,"offY":2,"sourceW":60,"sourceH":60}, +"13579":{"x":981,"y":648,"w":50,"h":46,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13580":{"x":810,"y":617,"w":49,"h":47,"offX":4,"offY":2,"sourceW":60,"sourceH":60}, +"13581":{"x":1309,"y":852,"w":36,"h":40,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13582":{"x":1892,"y":660,"w":35,"h":41,"offX":4,"offY":2,"sourceW":60,"sourceH":60}, +"13583":{"x":593,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13584":{"x":289,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13585":{"x":472,"y":240,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13586":{"x":348,"y":240,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13587":{"x":1989,"y":350,"w":53,"h":52,"offX":5,"offY":4,"sourceW":60,"sourceH":60}, +"13588":{"x":925,"y":792,"w":40,"h":46,"offX":7,"offY":5,"sourceW":60,"sourceH":60}, +"13589":{"x":603,"y":122,"w":59,"h":53,"offX":1,"offY":4,"sourceW":60,"sourceH":60}, +"13590":{"x":281,"y":765,"w":41,"h":46,"offX":10,"offY":7,"sourceW":60,"sourceH":60}, +"13591":{"x":48,"y":664,"w":47,"h":47,"offX":6,"offY":5,"sourceW":60,"sourceH":60}, +"13592":{"x":1288,"y":553,"w":51,"h":47,"offX":4,"offY":9,"sourceW":60,"sourceH":60}, +"13593":{"x":543,"y":659,"w":47,"h":48,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13594":{"x":1211,"y":621,"w":49,"h":47,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13595":{"x":273,"y":553,"w":50,"h":48,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13596":{"x":1485,"y":614,"w":48,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13597":{"x":145,"y":610,"w":49,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13598":{"x":821,"y":297,"w":54,"h":53,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13599":{"x":1229,"y":297,"w":53,"h":53,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13600":{"x":1987,"y":239,"w":54,"h":54,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13601":{"x":393,"y":452,"w":50,"h":52,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13602":{"x":1735,"y":446,"w":50,"h":52,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13603":{"x":61,"y":452,"w":51,"h":51,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13604":{"x":1091,"y":454,"w":49,"h":53,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13605":{"x":686,"y":406,"w":49,"h":54,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13606":{"x":737,"y":456,"w":48,"h":54,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13607":{"x":1929,"y":179,"w":48,"h":54,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13608":{"x":1136,"y":509,"w":49,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13609":{"x":1754,"y":609,"w":48,"h":49,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13610":{"x":973,"y":453,"w":52,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13611":{"x":1843,"y":456,"w":51,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13612":{"x":1299,"y":405,"w":53,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13613":{"x":1355,"y":669,"w":44,"h":49,"offX":9,"offY":4,"sourceW":60,"sourceH":60}, +"13614":{"x":1676,"y":925,"w":33,"h":40,"offX":13,"offY":11,"sourceW":60,"sourceH":60}, +"13615":{"x":1312,"y":616,"w":47,"h":49,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13616":{"x":613,"y":623,"w":47,"h":49,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13617":{"x":1162,"y":620,"w":47,"h":49,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13618":{"x":1,"y":662,"w":45,"h":50,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13619":{"x":1845,"y":660,"w":45,"h":50,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13620":{"x":1651,"y":655,"w":45,"h":51,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13621":{"x":1238,"y":514,"w":48,"h":51,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13622":{"x":196,"y":612,"w":47,"h":50,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13623":{"x":1891,"y":553,"w":47,"h":51,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13624":{"x":664,"y":516,"w":48,"h":51,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13625":{"x":718,"y":670,"w":46,"h":46,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13626":{"x":592,"y":674,"w":46,"h":46,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13627":{"x":1211,"y":670,"w":46,"h":46,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13628":{"x":1076,"y":665,"w":46,"h":48,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13629":{"x":1483,"y":664,"w":46,"h":48,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13630":{"x":145,"y":660,"w":46,"h":49,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13631":{"x":751,"y":349,"w":53,"h":52,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13632":{"x":751,"y":403,"w":52,"h":51,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13633":{"x":113,"y":398,"w":52,"h":52,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13634":{"x":576,"y":349,"w":53,"h":52,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13635":{"x":1299,"y":457,"w":50,"h":51,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13636":{"x":1142,"y":456,"w":50,"h":51,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13637":{"x":787,"y":460,"w":50,"h":51,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13638":{"x":1578,"y":505,"w":50,"h":50,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13639":{"x":51,"y":505,"w":50,"h":50,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13640":{"x":858,"y":458,"w":50,"h":51,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13641":{"x":1456,"y":457,"w":51,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13642":{"x":1456,"y":509,"w":50,"h":49,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13643":{"x":169,"y":504,"w":50,"h":50,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13644":{"x":1351,"y":457,"w":51,"h":50,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13645":{"x":1842,"y":801,"w":41,"h":44,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13646":{"x":1925,"y":799,"w":41,"h":44,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13647":{"x":127,"y":803,"w":41,"h":44,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13648":{"x":236,"y":757,"w":43,"h":47,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13649":{"x":1880,"y":752,"w":43,"h":47,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13650":{"x":191,"y":714,"w":43,"h":48,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13651":{"x":1743,"y":711,"w":44,"h":47,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13652":{"x":2004,"y":404,"w":43,"h":46,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13653":{"x":389,"y":748,"w":43,"h":47,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13654":{"x":1789,"y":711,"w":44,"h":47,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"13655":{"x":1671,"y":967,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13656":{"x":1461,"y":967,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13657":{"x":1216,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13658":{"x":888,"y":961,"w":37,"h":34,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13659":{"x":1931,"y":239,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13660":{"x":1843,"y":405,"w":54,"h":49,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"13661":{"x":1787,"y":405,"w":54,"h":49,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"13662":{"x":114,"y":504,"w":53,"h":48,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13663":{"x":1780,"y":506,"w":53,"h":47,"offX":4,"offY":7,"sourceW":60,"sourceH":60}, +"13664":{"x":608,"y":504,"w":54,"h":47,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"13665":{"x":226,"y":350,"w":53,"h":52,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13666":{"x":631,"y":398,"w":53,"h":51,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13667":{"x":1878,"y":295,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"13668":{"x":1450,"y":353,"w":54,"h":51,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"13669":{"x":1787,"y":456,"w":54,"h":48,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"13670":{"x":1101,"y":814,"w":34,"h":45,"offX":13,"offY":8,"sourceW":60,"sourceH":60}, +"13671":{"x":1398,"y":765,"w":40,"h":47,"offX":10,"offY":7,"sourceW":60,"sourceH":60}, +"13672":{"x":833,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13673":{"x":646,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13674":{"x":49,"y":557,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13675":{"x":1833,"y":556,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13676":{"x":151,"y":556,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13677":{"x":1785,"y":555,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13678":{"x":1737,"y":555,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13679":{"x":1072,"y":555,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13680":{"x":103,"y":554,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13681":{"x":1,"y":554,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13682":{"x":97,"y":608,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13683":{"x":1,"y":608,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13684":{"x":1881,"y":606,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13685":{"x":565,"y":605,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13686":{"x":517,"y":605,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13687":{"x":469,"y":605,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13688":{"x":1988,"y":604,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13689":{"x":1940,"y":604,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13690":{"x":247,"y":603,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13691":{"x":1264,"y":602,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13692":{"x":1655,"y":601,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13693":{"x":1607,"y":595,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13694":{"x":1007,"y":594,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13695":{"x":421,"y":594,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13696":{"x":641,"y":569,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13697":{"x":242,"y":123,"w":52,"h":59,"offX":4,"offY":1,"sourceW":60,"sourceH":60}, +"13698":{"x":1677,"y":353,"w":48,"h":57,"offX":6,"offY":2,"sourceW":60,"sourceH":60}, +"13699":{"x":762,"y":565,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13700":{"x":714,"y":564,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13701":{"x":883,"y":563,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13702":{"x":835,"y":563,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13703":{"x":1341,"y":562,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13704":{"x":1120,"y":561,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13705":{"x":1505,"y":560,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13706":{"x":1457,"y":560,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13707":{"x":383,"y":506,"w":48,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13708":{"x":682,"y":462,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13709":{"x":1245,"y":460,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13710":{"x":1194,"y":460,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13711":{"x":1559,"y":557,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13712":{"x":959,"y":557,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13713":{"x":1216,"y":567,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13714":{"x":1168,"y":566,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13715":{"x":1509,"y":506,"w":48,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13716":{"x":333,"y":506,"w":48,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13717":{"x":445,"y":495,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13718":{"x":1674,"y":494,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13719":{"x":1027,"y":491,"w":49,"h":52,"offX":6,"offY":3,"sourceW":60,"sourceH":60}, +"13720":{"x":373,"y":560,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13721":{"x":325,"y":560,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13722":{"x":199,"y":558,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13723":{"x":1409,"y":560,"w":46,"h":52,"offX":7,"offY":3,"sourceW":60,"sourceH":60}, +"13724":{"x":490,"y":709,"w":43,"h":49,"offX":7,"offY":7,"sourceW":60,"sourceH":60}, +"13725":{"x":1929,"y":658,"w":53,"h":43,"offX":4,"offY":11,"sourceW":60,"sourceH":60}, +"13726":{"x":1041,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13727":{"x":989,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13728":{"x":937,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13729":{"x":885,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13730":{"x":1519,"y":849,"w":41,"h":36,"offX":11,"offY":11,"sourceW":60,"sourceH":60}, +"13731":{"x":1255,"y":970,"w":35,"h":35,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"13732":{"x":1697,"y":850,"w":39,"h":37,"offX":10,"offY":11,"sourceW":60,"sourceH":60}, +"13733":{"x":1303,"y":813,"w":43,"h":37,"offX":10,"offY":11,"sourceW":60,"sourceH":60}, +"13734":{"x":1953,"y":452,"w":52,"h":50,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13735":{"x":1093,"y":179,"w":50,"h":60,"offX":6,"offY":0,"sourceW":60,"sourceH":60}, +"13736":{"x":201,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13737":{"x":118,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13738":{"x":900,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13739":{"x":808,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13740":{"x":767,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13741":{"x":414,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13742":{"x":373,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13743":{"x":284,"y":925,"w":39,"h":34,"offX":11,"offY":13,"sourceW":60,"sourceH":60}, +"13744":{"x":974,"y":744,"w":27,"h":14,"offX":16,"offY":22,"sourceW":60,"sourceH":60}, +"13745":{"x":839,"y":460,"w":15,"h":31,"offX":21,"offY":13,"sourceW":60,"sourceH":60}, +"13746":{"x":1895,"y":1114,"w":24,"h":25,"offX":20,"offY":16,"sourceW":60,"sourceH":60}, +"13747":{"x":901,"y":804,"w":21,"h":27,"offX":22,"offY":15,"sourceW":60,"sourceH":60}, +"13748":{"x":61,"y":181,"w":55,"h":54,"offX":4,"offY":4,"sourceW":60,"sourceH":60}, +"13749":{"x":982,"y":241,"w":54,"h":54,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"13750":{"x":237,"y":184,"w":55,"h":54,"offX":2,"offY":4,"sourceW":60,"sourceH":60}, +"13751":{"x":422,"y":123,"w":55,"h":55,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"13752":{"x":1577,"y":750,"w":47,"h":43,"offX":6,"offY":9,"sourceW":60,"sourceH":60}, +"13753":{"x":1984,"y":749,"w":47,"h":43,"offX":6,"offY":9,"sourceW":60,"sourceH":60}, +"13754":{"x":137,"y":758,"w":46,"h":43,"offX":6,"offY":9,"sourceW":60,"sourceH":60}, +"13755":{"x":1522,"y":406,"w":38,"h":48,"offX":12,"offY":10,"sourceW":60,"sourceH":60}, +"13756":{"x":1440,"y":765,"w":39,"h":48,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"13757":{"x":1018,"y":545,"w":52,"h":47,"offX":5,"offY":10,"sourceW":60,"sourceH":60}, +"13758":{"x":1481,"y":765,"w":39,"h":48,"offX":12,"offY":10,"sourceW":60,"sourceH":60}, +"13759":{"x":1760,"y":760,"w":39,"h":49,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"13760":{"x":1578,"y":456,"w":38,"h":47,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"13761":{"x":1218,"y":758,"w":41,"h":48,"offX":12,"offY":10,"sourceW":60,"sourceH":60}, +"13762":{"x":482,"y":760,"w":40,"h":48,"offX":11,"offY":10,"sourceW":60,"sourceH":60}, +"13763":{"x":344,"y":662,"w":51,"h":44,"offX":4,"offY":8,"sourceW":60,"sourceH":60}, +"13764":{"x":1603,"y":649,"w":46,"h":50,"offX":6,"offY":5,"sourceW":60,"sourceH":60}, +"468":{"x":496,"y":504,"w":54,"h":47,"offX":3,"offY":8,"sourceW":60,"sourceH":60}, +"469":{"x":662,"y":669,"w":54,"h":40,"offX":3,"offY":12,"sourceW":60,"sourceH":60}, +"470":{"x":1822,"y":291,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"471":{"x":404,"y":290,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"472":{"x":552,"y":504,"w":54,"h":47,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"473":{"x":649,"y":288,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"474":{"x":116,"y":288,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"475":{"x":1,"y":288,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"476":{"x":286,"y":297,"w":54,"h":53,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"477":{"x":184,"y":123,"w":56,"h":55,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"478":{"x":1619,"y":353,"w":56,"h":49,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"479":{"x":1012,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"480":{"x":664,"y":123,"w":56,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"481":{"x":491,"y":553,"w":48,"h":50,"offX":3,"offY":2,"sourceW":54,"sourceH":54}, +"482":{"x":591,"y":553,"w":48,"h":50,"offX":3,"offY":2,"sourceW":54,"sourceH":54}, +"483":{"x":541,"y":553,"w":48,"h":50,"offX":3,"offY":2,"sourceW":54,"sourceH":54}, +"484":{"x":644,"y":344,"w":54,"h":52,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"485":{"x":1618,"y":455,"w":54,"h":48,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"486":{"x":1094,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"487":{"x":167,"y":400,"w":54,"h":50,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"488":{"x":1506,"y":353,"w":54,"h":51,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"489":{"x":1394,"y":353,"w":54,"h":51,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"490":{"x":1888,"y":352,"w":54,"h":51,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"491":{"x":1279,"y":352,"w":54,"h":51,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"492":{"x":1055,"y":609,"w":55,"h":43,"offX":3,"offY":9,"sourceW":60,"sourceH":60}, +"493":{"x":1984,"y":658,"w":54,"h":42,"offX":3,"offY":9,"sourceW":60,"sourceH":60}, +"494":{"x":1223,"y":352,"w":54,"h":51,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"495":{"x":1835,"y":508,"w":54,"h":46,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"496":{"x":280,"y":406,"w":54,"h":49,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"497":{"x":870,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"498":{"x":621,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"499":{"x":559,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"500":{"x":545,"y":63,"w":60,"h":54,"offX":0,"offY":6,"sourceW":60,"sourceH":60}, +"501":{"x":1,"y":63,"w":60,"h":58,"offX":0,"offY":2,"sourceW":60,"sourceH":60}, +"502":{"x":497,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"503":{"x":435,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"504":{"x":114,"y":452,"w":52,"h":50,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"505":{"x":1899,"y":452,"w":52,"h":50,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"506":{"x":511,"y":452,"w":52,"h":50,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"507":{"x":168,"y":452,"w":52,"h":50,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"508":{"x":1206,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"509":{"x":1150,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"510":{"x":233,"y":240,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"511":{"x":877,"y":297,"w":54,"h":53,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"512":{"x":1354,"y":406,"w":54,"h":49,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"513":{"x":277,"y":504,"w":54,"h":47,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"514":{"x":520,"y":346,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"515":{"x":404,"y":346,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"516":{"x":113,"y":344,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"517":{"x":520,"y":400,"w":54,"h":50,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"518":{"x":1562,"y":405,"w":54,"h":49,"offX":3,"offY":8,"sourceW":60,"sourceH":60}, +"519":{"x":1,"y":344,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"520":{"x":722,"y":63,"w":60,"h":53,"offX":0,"offY":4,"sourceW":60,"sourceH":60}, +"521":{"x":57,"y":347,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"522":{"x":1167,"y":346,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"523":{"x":1710,"y":241,"w":54,"h":54,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"524":{"x":860,"y":352,"w":54,"h":51,"offX":3,"offY":4,"sourceW":60,"sourceH":60}, +"525":{"x":1896,"y":504,"w":54,"h":47,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"526":{"x":1522,"y":456,"w":54,"h":48,"offX":3,"offY":7,"sourceW":60,"sourceH":60}, +"527":{"x":1339,"y":297,"w":54,"h":52,"offX":3,"offY":5,"sourceW":60,"sourceH":60}, +"cangku_lock":{"x":1186,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"equipd_0":{"x":187,"y":1031,"w":39,"h":28,"offX":11,"offY":16,"sourceW":60,"sourceH":60}, +"equipd_1":{"x":1368,"y":969,"w":39,"h":32,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"equipd_10":{"x":1434,"y":1099,"w":27,"h":29,"offX":15,"offY":16,"sourceW":60,"sourceH":60}, +"equipd_11":{"x":1630,"y":505,"w":41,"h":41,"offX":9,"offY":8,"sourceW":60,"sourceH":60}, +"equipd_12":{"x":1,"y":764,"w":43,"h":44,"offX":8,"offY":8,"sourceW":60,"sourceH":60}, +"equipd_13":{"x":1626,"y":759,"w":42,"h":46,"offX":9,"offY":10,"sourceW":60,"sourceH":60}, +"equipd_14":{"x":861,"y":617,"w":47,"h":49,"offX":6,"offY":5,"sourceW":60,"sourceH":60}, +"equipd_15":{"x":1143,"y":809,"w":43,"h":39,"offX":9,"offY":11,"sourceW":60,"sourceH":60}, +"equipd_16":{"x":1435,"y":815,"w":38,"h":40,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"equipd_17":{"x":1581,"y":701,"w":45,"h":47,"offX":10,"offY":7,"sourceW":60,"sourceH":60}, +"equipd_18":{"x":688,"y":718,"w":45,"h":45,"offX":8,"offY":7,"sourceW":60,"sourceH":60}, +"equipd_19":{"x":849,"y":1036,"w":30,"h":36,"offX":16,"offY":13,"sourceW":60,"sourceH":60}, +"equipd_2":{"x":247,"y":558,"w":24,"h":35,"offX":16,"offY":12,"sourceW":60,"sourceH":60}, +"equipd_3":{"x":1244,"y":1110,"w":26,"h":24,"offX":16,"offY":17,"sourceW":60,"sourceH":60}, +"equipd_4":{"x":40,"y":893,"w":37,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"equipd_5":{"x":1301,"y":1007,"w":23,"h":23,"offX":18,"offY":19,"sourceW":60,"sourceH":60}, +"equipd_6":{"x":1361,"y":652,"w":20,"h":15,"offX":19,"offY":23,"sourceW":60,"sourceH":60}, +"equipd_7":{"x":653,"y":1074,"w":38,"h":25,"offX":10,"offY":18,"sourceW":60,"sourceH":60}, +"equipd_8":{"x":269,"y":1032,"w":34,"h":32,"offX":12,"offY":14,"sourceW":60,"sourceH":60}, +"equipd_9":{"x":1304,"y":894,"w":37,"h":36,"offX":11,"offY":12,"sourceW":60,"sourceH":60}, +"orangePoint":{"x":839,"y":493,"w":16,"h":16,"offX":0,"offY":0,"sourceW":16,"sourceH":16}, +"quality_0":{"x":373,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_1":{"x":311,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_2":{"x":249,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_3":{"x":187,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_4":{"x":125,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_5":{"x":63,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_6":{"x":1,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"quality_huishou":{"x":1476,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"quality_jipin":{"x":1389,"y":591,"w":18,"h":18,"offX":4,"offY":3,"sourceW":60,"sourceH":60}, +"quality_lock":{"x":640,"y":674,"w":19,"h":22,"offX":2,"offY":36,"sourceW":60,"sourceH":60}, +"quality_sheng":{"x":1148,"y":1066,"w":28,"h":35,"offX":3,"offY":25,"sourceW":60,"sourceH":60}, +"redPoint":{"x":714,"y":545,"w":16,"h":16,"offX":0,"offY":0,"sourceW":16,"sourceH":16}, +"yan_1":{"x":1128,"y":121,"w":56,"h":56,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_100":{"x":272,"y":1124,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_101":{"x":31,"y":1124,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_102":{"x":1954,"y":1123,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_103":{"x":578,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_104":{"x":546,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_105":{"x":193,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_106":{"x":132,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_107":{"x":670,"y":1126,"w":31,"h":17,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"yan_108":{"x":390,"y":1126,"w":31,"h":17,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"yan_109":{"x":1496,"y":1125,"w":31,"h":17,"offX":2,"offY":3,"sourceW":60,"sourceH":60}, +"yan_110":{"x":735,"y":1126,"w":30,"h":17,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"yan_111":{"x":703,"y":1126,"w":30,"h":17,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"yan_112":{"x":1831,"y":1124,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_113":{"x":1711,"y":1123,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_114":{"x":610,"y":1126,"w":30,"h":17,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"yan_115":{"x":1205,"y":1124,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_116":{"x":1566,"y":1117,"w":32,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_117":{"x":66,"y":1123,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_118":{"x":1798,"y":1122,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_119":{"x":357,"y":1122,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_120":{"x":324,"y":1122,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_121":{"x":239,"y":1121,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_122":{"x":2007,"y":1119,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_123":{"x":1062,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_124":{"x":1205,"y":1042,"w":57,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_125":{"x":33,"y":1050,"w":57,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_126":{"x":547,"y":1039,"w":58,"h":18,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"yan_127":{"x":607,"y":1040,"w":58,"h":18,"offX":1,"offY":2,"sourceW":60,"sourceH":60}, +"yan_128":{"x":1921,"y":1119,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_129":{"x":513,"y":1124,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_130":{"x":767,"y":1126,"w":30,"h":17,"offX":3,"offY":3,"sourceW":60,"sourceH":60}, +"yan_131":{"x":480,"y":1124,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_132":{"x":1094,"y":1125,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_133":{"x":1744,"y":1124,"w":30,"h":18,"offX":3,"offY":2,"sourceW":60,"sourceH":60}, +"yan_134":{"x":1463,"y":1123,"w":31,"h":18,"offX":2,"offY":2,"sourceW":60,"sourceH":60}, +"yan_135":{"x":1839,"y":1039,"w":58,"h":18,"offX":1,"offY":2,"sourceW":60,"sourceH":60}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/itemIcon.png b/resource_Publish/assets/image/public/itemIcon.png new file mode 100644 index 0000000..08e3ad8 Binary files /dev/null and b/resource_Publish/assets/image/public/itemIcon.png differ diff --git a/resource_Publish/assets/image/public/load_Reel.png b/resource_Publish/assets/image/public/load_Reel.png new file mode 100644 index 0000000..e143a72 Binary files /dev/null and b/resource_Publish/assets/image/public/load_Reel.png differ diff --git a/resource_Publish/assets/image/public/mapmini.png b/resource_Publish/assets/image/public/mapmini.png new file mode 100644 index 0000000..d77231f Binary files /dev/null and b/resource_Publish/assets/image/public/mapmini.png differ diff --git a/resource_Publish/assets/image/public/numAttr.fnt b/resource_Publish/assets/image/public/numAttr.fnt new file mode 100644 index 0000000..3db6c37 --- /dev/null +++ b/resource_Publish/assets/image/public/numAttr.fnt @@ -0,0 +1,25 @@ +{"file":"numAttr.png","frames":{ +"运":{"x":285,"y":160,"w":71,"h":30,"offX":0,"offY":0,"sourceW":71,"sourceH":30}, +"中":{"x":340,"y":97,"w":109,"h":30,"offX":0,"offY":0,"sourceW":109,"sourceH":30}, +"转":{"x":228,"y":97,"w":110,"h":30,"offX":0,"offY":0,"sourceW":110,"sourceH":30}, +"帮":{"x":115,"y":97,"w":111,"h":30,"offX":0,"offY":0,"sourceW":111,"sourceH":30}, +"避":{"x":229,"y":33,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"道":{"x":112,"y":129,"w":112,"h":29,"offX":0,"offY":0,"sourceW":112,"sourceH":29}, +"法":{"x":115,"y":33,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"防":{"x":343,"y":33,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"复":{"x":256,"y":1,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"攻":{"x":1,"y":97,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"回":{"x":1,"y":33,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"活":{"x":200,"y":160,"w":83,"h":30,"offX":0,"offY":0,"sourceW":83,"sourceH":30}, +"角":{"x":112,"y":160,"w":86,"h":30,"offX":0,"offY":0,"sourceW":86,"sourceH":30}, +"喇":{"x":340,"y":129,"w":111,"h":29,"offX":0,"offY":0,"sourceW":111,"sourceH":29}, +"命":{"x":1,"y":129,"w":109,"h":30,"offX":0,"offY":0,"sourceW":109,"sourceH":30}, +"魔":{"x":1,"y":65,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"闪":{"x":115,"y":65,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"上":{"x":229,"y":65,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"声":{"x":358,"y":160,"w":70,"h":30,"offX":0,"offY":0,"sourceW":70,"sourceH":30}, +"术":{"x":226,"y":129,"w":112,"h":29,"offX":0,"offY":0,"sourceW":112,"sourceH":29}, +"物":{"x":370,"y":1,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"下":{"x":142,"y":1,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}, +"药":{"x":1,"y":1,"w":139,"h":30,"offX":0,"offY":0,"sourceW":139,"sourceH":30}, +"御":{"x":343,"y":65,"w":112,"h":30,"offX":0,"offY":0,"sourceW":112,"sourceH":30}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/numAttr.png b/resource_Publish/assets/image/public/numAttr.png new file mode 100644 index 0000000..5c21d15 Binary files /dev/null and b/resource_Publish/assets/image/public/numAttr.png differ diff --git a/resource_Publish/assets/image/public/num_1.fnt b/resource_Publish/assets/image/public/num_1.fnt new file mode 100644 index 0000000..673907d --- /dev/null +++ b/resource_Publish/assets/image/public/num_1.fnt @@ -0,0 +1,12 @@ +{"file":"num_1.png","frames":{ +"9":{"x":62,"y":1,"w":28,"h":38,"offX":2,"offY":3,"sourceW":32,"sourceH":44}, +"-":{"x":62,"y":80,"w":18,"h":10,"offX":7,"offY":20,"sourceW":32,"sourceH":44}, +"0":{"x":92,"y":1,"w":28,"h":38,"offX":2,"offY":3,"sourceW":32,"sourceH":44}, +"1":{"x":31,"y":81,"w":25,"h":37,"offX":3,"offY":3,"sourceW":32,"sourceH":44}, +"2":{"x":1,"y":40,"w":29,"h":37,"offX":2,"offY":3,"sourceW":32,"sourceH":44}, +"3":{"x":92,"y":41,"w":27,"h":38,"offX":3,"offY":3,"sourceW":32,"sourceH":44}, +"4":{"x":1,"y":1,"w":29,"h":37,"offX":1,"offY":3,"sourceW":32,"sourceH":44}, +"5":{"x":1,"y":79,"w":28,"h":38,"offX":3,"offY":3,"sourceW":32,"sourceH":44}, +"6":{"x":32,"y":1,"w":28,"h":38,"offX":3,"offY":3,"sourceW":32,"sourceH":44}, +"7":{"x":62,"y":41,"w":28,"h":37,"offX":3,"offY":3,"sourceW":32,"sourceH":44}, +"8":{"x":32,"y":41,"w":28,"h":38,"offX":2,"offY":3,"sourceW":32,"sourceH":44}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_1.png b/resource_Publish/assets/image/public/num_1.png new file mode 100644 index 0000000..662061b Binary files /dev/null and b/resource_Publish/assets/image/public/num_1.png differ diff --git a/resource_Publish/assets/image/public/num_2.fnt b/resource_Publish/assets/image/public/num_2.fnt new file mode 100644 index 0000000..c5a6a74 --- /dev/null +++ b/resource_Publish/assets/image/public/num_2.fnt @@ -0,0 +1,12 @@ +{"file":"num_2.png","frames":{ +"-":{"x":31,"y":103,"w":17,"h":7,"offX":0,"offY":8,"sourceW":17,"sourceH":24}, +"0":{"x":20,"y":1,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"1":{"x":19,"y":103,"w":10,"h":23,"offX":2,"offY":0,"sourceW":17,"sourceH":24}, +"2":{"x":38,"y":1,"w":16,"h":23,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"3":{"x":1,"y":78,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"4":{"x":1,"y":27,"w":17,"h":23,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"5":{"x":19,"y":78,"w":16,"h":23,"offX":0,"offY":1,"sourceW":17,"sourceH":24}, +"6":{"x":1,"y":1,"w":17,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"7":{"x":20,"y":27,"w":17,"h":22,"offX":0,"offY":1,"sourceW":17,"sourceH":24}, +"8":{"x":19,"y":52,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"9":{"x":1,"y":52,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_2.png b/resource_Publish/assets/image/public/num_2.png new file mode 100644 index 0000000..20cc1e7 Binary files /dev/null and b/resource_Publish/assets/image/public/num_2.png differ diff --git a/resource_Publish/assets/image/public/num_3.fnt b/resource_Publish/assets/image/public/num_3.fnt new file mode 100644 index 0000000..47f6f35 --- /dev/null +++ b/resource_Publish/assets/image/public/num_3.fnt @@ -0,0 +1,12 @@ +{"file":"num_3.png","frames":{ +"-":{"x":31,"y":103,"w":17,"h":7,"offX":0,"offY":8,"sourceW":17,"sourceH":24}, +"0":{"x":1,"y":78,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"1":{"x":19,"y":103,"w":10,"h":23,"offX":2,"offY":0,"sourceW":17,"sourceH":24}, +"2":{"x":19,"y":78,"w":16,"h":23,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"3":{"x":20,"y":1,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"4":{"x":1,"y":27,"w":17,"h":23,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"5":{"x":38,"y":1,"w":16,"h":23,"offX":0,"offY":1,"sourceW":17,"sourceH":24}, +"6":{"x":1,"y":1,"w":17,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"7":{"x":20,"y":27,"w":17,"h":22,"offX":0,"offY":1,"sourceW":17,"sourceH":24}, +"8":{"x":1,"y":52,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"9":{"x":19,"y":52,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_3.png b/resource_Publish/assets/image/public/num_3.png new file mode 100644 index 0000000..ba24128 Binary files /dev/null and b/resource_Publish/assets/image/public/num_3.png differ diff --git a/resource_Publish/assets/image/public/num_4.fnt b/resource_Publish/assets/image/public/num_4.fnt new file mode 100644 index 0000000..9ae9dff --- /dev/null +++ b/resource_Publish/assets/image/public/num_4.fnt @@ -0,0 +1,12 @@ +{"file":"num_4.png","frames":{ +"6":{"x":1,"y":26,"w":18,"h":23,"offX":1,"offY":0,"sourceW":19,"sourceH":23}, +"7":{"x":21,"y":51,"w":17,"h":22,"offX":2,"offY":0,"sourceW":19,"sourceH":23}, +"8":{"x":22,"y":1,"w":19,"h":23,"offX":0,"offY":0,"sourceW":19,"sourceH":23}, +"9":{"x":43,"y":25,"w":18,"h":23,"offX":1,"offY":0,"sourceW":19,"sourceH":23}, +"+":{"x":1,"y":75,"w":18,"h":17,"offX":1,"offY":3,"sourceW":19,"sourceH":23}, +"0":{"x":41,"y":50,"w":18,"h":23,"offX":1,"offY":0,"sourceW":19,"sourceH":23}, +"1":{"x":21,"y":75,"w":13,"h":22,"offX":3,"offY":0,"sourceW":19,"sourceH":23}, +"2":{"x":43,"y":1,"w":19,"h":22,"offX":0,"offY":0,"sourceW":19,"sourceH":23}, +"3":{"x":1,"y":1,"w":19,"h":23,"offX":0,"offY":0,"sourceW":19,"sourceH":23}, +"4":{"x":1,"y":51,"w":18,"h":22,"offX":0,"offY":0,"sourceW":19,"sourceH":23}, +"5":{"x":21,"y":26,"w":18,"h":23,"offX":1,"offY":0,"sourceW":19,"sourceH":23}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_4.png b/resource_Publish/assets/image/public/num_4.png new file mode 100644 index 0000000..74775e3 Binary files /dev/null and b/resource_Publish/assets/image/public/num_4.png differ diff --git a/resource_Publish/assets/image/public/num_5.fnt b/resource_Publish/assets/image/public/num_5.fnt new file mode 100644 index 0000000..7b8a051 --- /dev/null +++ b/resource_Publish/assets/image/public/num_5.fnt @@ -0,0 +1,11 @@ +{"file":"num_5.png","frames":{ +"7":{"x":44,"y":85,"w":19,"h":25,"offX":1,"offY":1,"sourceW":20,"sourceH":26}, +"8":{"x":23,"y":1,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"9":{"x":1,"y":57,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"0":{"x":1,"y":85,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"1":{"x":45,"y":1,"w":16,"h":26,"offX":2,"offY":0,"sourceW":20,"sourceH":26}, +"2":{"x":1,"y":29,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"3":{"x":23,"y":57,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"4":{"x":23,"y":85,"w":19,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"5":{"x":23,"y":29,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}, +"6":{"x":1,"y":1,"w":20,"h":26,"offX":0,"offY":0,"sourceW":20,"sourceH":26}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_5.png b/resource_Publish/assets/image/public/num_5.png new file mode 100644 index 0000000..625053b Binary files /dev/null and b/resource_Publish/assets/image/public/num_5.png differ diff --git a/resource_Publish/assets/image/public/num_6.fnt b/resource_Publish/assets/image/public/num_6.fnt new file mode 100644 index 0000000..2c84347 --- /dev/null +++ b/resource_Publish/assets/image/public/num_6.fnt @@ -0,0 +1,12 @@ +{"file":"num_6.png","frames":{ +"6":{"x":1,"y":1,"w":17,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"7":{"x":19,"y":52,"w":17,"h":22,"offX":0,"offY":1,"sourceW":17,"sourceH":24}, +"8":{"x":1,"y":27,"w":16,"h":24,"offX":1,"offY":0,"sourceW":17,"sourceH":24}, +"9":{"x":20,"y":26,"w":16,"h":24,"offX":1,"offY":0,"sourceW":17,"sourceH":24}, +"+":{"x":19,"y":76,"w":17,"h":17,"offX":0,"offY":3,"sourceW":17,"sourceH":24}, +"0":{"x":39,"y":1,"w":16,"h":24,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"1":{"x":1,"y":78,"w":10,"h":23,"offX":4,"offY":0,"sourceW":17,"sourceH":24}, +"2":{"x":38,"y":53,"w":16,"h":23,"offX":0,"offY":0,"sourceW":18,"sourceH":24}, +"3":{"x":38,"y":27,"w":16,"h":24,"offX":1,"offY":0,"sourceW":17,"sourceH":24}, +"4":{"x":20,"y":1,"w":17,"h":23,"offX":0,"offY":0,"sourceW":17,"sourceH":24}, +"5":{"x":1,"y":53,"w":16,"h":23,"offX":1,"offY":1,"sourceW":17,"sourceH":24}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_6.png b/resource_Publish/assets/image/public/num_6.png new file mode 100644 index 0000000..7b4df28 Binary files /dev/null and b/resource_Publish/assets/image/public/num_6.png differ diff --git a/resource_Publish/assets/image/public/num_8.fnt b/resource_Publish/assets/image/public/num_8.fnt new file mode 100644 index 0000000..a7c1797 --- /dev/null +++ b/resource_Publish/assets/image/public/num_8.fnt @@ -0,0 +1,12 @@ +{"file":"num_8.png","frames":{ +"+":{"x":15,"y":39,"w":14,"h":13,"offX":0,"offY":2,"sourceW":14,"sourceH":17}, +"0":{"x":43,"y":20,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}, +"1":{"x":31,"y":39,"w":8,"h":17,"offX":1,"offY":0,"sourceW":12,"sourceH":17}, +"2":{"x":1,"y":20,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}, +"3":{"x":15,"y":20,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}, +"4":{"x":1,"y":1,"w":14,"h":17,"offX":0,"offY":0,"sourceW":14,"sourceH":17}, +"5":{"x":32,"y":1,"w":13,"h":17,"offX":0,"offY":0,"sourceW":13,"sourceH":17}, +"6":{"x":17,"y":1,"w":13,"h":17,"offX":0,"offY":0,"sourceW":13,"sourceH":17}, +"7":{"x":1,"y":39,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}, +"8":{"x":29,"y":20,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}, +"9":{"x":47,"y":1,"w":12,"h":17,"offX":0,"offY":0,"sourceW":12,"sourceH":17}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/num_8.png b/resource_Publish/assets/image/public/num_8.png new file mode 100644 index 0000000..2779a16 Binary files /dev/null and b/resource_Publish/assets/image/public/num_8.png differ diff --git a/resource_Publish/assets/image/public/receive.fnt b/resource_Publish/assets/image/public/receive.fnt new file mode 100644 index 0000000..3bba192 --- /dev/null +++ b/resource_Publish/assets/image/public/receive.fnt @@ -0,0 +1,14 @@ +{"file":"receive.png","frames":{ +"7":{"x":366,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"8":{"x":418,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"9":{"x":236,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"0":{"x":340,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"1":{"x":470,"y":45,"w":24,"h":39,"offX":0,"offY":2,"sourceW":24,"sourceH":42}, +"2":{"x":262,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"3":{"x":314,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"4":{"x":444,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"5":{"x":288,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"6":{"x":392,"y":45,"w":24,"h":40,"offX":0,"offY":1,"sourceW":24,"sourceH":42}, +"f":{"x":1,"y":1,"w":269,"h":42,"offX":0,"offY":0,"sourceW":269,"sourceH":42}, +"y":{"x":272,"y":1,"w":233,"h":42,"offX":0,"offY":0,"sourceW":269,"sourceH":42}, +"a":{"x":1,"y":45,"w":233,"h":41,"offX":0,"offY":1,"sourceW":269,"sourceH":42}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/receive.png b/resource_Publish/assets/image/public/receive.png new file mode 100644 index 0000000..6ff16ae Binary files /dev/null and b/resource_Publish/assets/image/public/receive.png differ diff --git a/resource_Publish/assets/image/public/scroll.json b/resource_Publish/assets/image/public/scroll.json new file mode 100644 index 0000000..5a48900 --- /dev/null +++ b/resource_Publish/assets/image/public/scroll.json @@ -0,0 +1,5 @@ +{"file":"scroll.png","frames":{ +"bag_15":{"x":1,"y":1,"w":7,"h":13,"offX":0,"offY":0,"sourceW":7,"sourceH":13}, +"bag_18":{"x":1,"y":16,"w":17,"h":3,"offX":0,"offY":0,"sourceW":17,"sourceH":3}, +"bag_17":{"x":10,"y":1,"w":13,"h":7,"offX":0,"offY":0,"sourceW":13,"sourceH":7}, +"bag_16":{"x":25,"y":1,"w":3,"h":17,"offX":0,"offY":0,"sourceW":3,"sourceH":17}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/scroll.png b/resource_Publish/assets/image/public/scroll.png new file mode 100644 index 0000000..9d87402 Binary files /dev/null and b/resource_Publish/assets/image/public/scroll.png differ diff --git a/resource_Publish/assets/image/public/signNum_1.fnt b/resource_Publish/assets/image/public/signNum_1.fnt new file mode 100644 index 0000000..b0b26f5 --- /dev/null +++ b/resource_Publish/assets/image/public/signNum_1.fnt @@ -0,0 +1,12 @@ +{"file":"signNum_1.png","frames":{ +"0":{"x":49,"y":32,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"1":{"x":97,"y":62,"w":20,"h":29,"offX":1,"offY":0,"sourceW":22,"sourceH":29}, +"2":{"x":49,"y":1,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"3":{"x":97,"y":1,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"4":{"x":25,"y":1,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"5":{"x":97,"y":32,"w":22,"h":28,"offX":0,"offY":1,"sourceW":22,"sourceH":29}, +"6":{"x":25,"y":32,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"7":{"x":1,"y":38,"w":21,"h":28,"offX":1,"offY":1,"sourceW":22,"sourceH":29}, +"8":{"x":73,"y":1,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"9":{"x":73,"y":32,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"月":{"x":1,"y":1,"w":22,"h":35,"offX":0,"offY":0,"sourceW":22,"sourceH":35}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/signNum_1.png b/resource_Publish/assets/image/public/signNum_1.png new file mode 100644 index 0000000..6863c06 Binary files /dev/null and b/resource_Publish/assets/image/public/signNum_1.png differ diff --git a/resource_Publish/assets/image/public/signNum_2.fnt b/resource_Publish/assets/image/public/signNum_2.fnt new file mode 100644 index 0000000..ac1711e --- /dev/null +++ b/resource_Publish/assets/image/public/signNum_2.fnt @@ -0,0 +1,11 @@ +{"file":"signNum_2.png","frames":{ +"9":{"x":1,"y":1,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"0":{"x":46,"y":1,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"1":{"x":15,"y":39,"w":11,"h":17,"offX":1,"offY":2,"sourceW":13,"sourceH":20}, +"2":{"x":1,"y":39,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"3":{"x":30,"y":20,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"4":{"x":16,"y":1,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"5":{"x":44,"y":20,"w":12,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"6":{"x":1,"y":20,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}, +"7":{"x":16,"y":20,"w":12,"h":17,"offX":1,"offY":2,"sourceW":13,"sourceH":20}, +"8":{"x":31,"y":1,"w":13,"h":17,"offX":0,"offY":2,"sourceW":13,"sourceH":20}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/signNum_2.png b/resource_Publish/assets/image/public/signNum_2.png new file mode 100644 index 0000000..bc7a9e5 Binary files /dev/null and b/resource_Publish/assets/image/public/signNum_2.png differ diff --git a/resource_Publish/assets/image/public/signNum_3.fnt b/resource_Publish/assets/image/public/signNum_3.fnt new file mode 100644 index 0000000..9f09ed1 --- /dev/null +++ b/resource_Publish/assets/image/public/signNum_3.fnt @@ -0,0 +1,9 @@ +{"file":"signNum_3.png","frames":{ +"一":{"x":14,"y":36,"w":18,"h":6,"offX":0,"offY":7,"sourceW":19,"sourceH":21}, +"二":{"x":22,"y":21,"w":19,"h":13,"offX":0,"offY":3,"sourceW":19,"sourceH":21}, +"三":{"x":43,"y":1,"w":19,"h":17,"offX":0,"offY":1,"sourceW":19,"sourceH":21}, +"四":{"x":1,"y":22,"w":18,"h":11,"offX":1,"offY":5,"sourceW":19,"sourceH":21}, +"五":{"x":1,"y":1,"w":19,"h":19,"offX":0,"offY":0,"sourceW":19,"sourceH":21}, +"六":{"x":22,"y":1,"w":19,"h":18,"offX":0,"offY":1,"sourceW":19,"sourceH":21}, +"日":{"x":1,"y":35,"w":11,"h":17,"offX":4,"offY":2,"sourceW":19,"sourceH":21}, +"周":{"x":43,"y":20,"w":16,"h":20,"offX":1,"offY":1,"sourceW":19,"sourceH":21}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/signNum_3.png b/resource_Publish/assets/image/public/signNum_3.png new file mode 100644 index 0000000..ed18800 Binary files /dev/null and b/resource_Publish/assets/image/public/signNum_3.png differ diff --git a/resource_Publish/assets/image/public/sixiangfnt.fnt b/resource_Publish/assets/image/public/sixiangfnt.fnt new file mode 100644 index 0000000..95a3fdb --- /dev/null +++ b/resource_Publish/assets/image/public/sixiangfnt.fnt @@ -0,0 +1,34 @@ +{"file":"sixiangfnt.png","frames":{ +"五":{"x":78,"y":113,"w":24,"h":24,"offX":0,"offY":1,"sourceW":24,"sourceH":26}, +"六":{"x":53,"y":85,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"七":{"x":53,"y":1,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"八":{"x":27,"y":57,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"九":{"x":1,"y":1,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"十":{"x":53,"y":57,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"一":{"x":35,"y":165,"w":24,"h":11,"offX":0,"offY":7,"sourceW":24,"sourceH":26}, +"二":{"x":27,"y":140,"w":24,"h":21,"offX":0,"offY":3,"sourceW":24,"sourceH":26}, +"三":{"x":78,"y":139,"w":24,"h":24,"offX":0,"offY":1,"sourceW":24,"sourceH":26}, +"四":{"x":27,"y":113,"w":24,"h":25,"offX":0,"offY":1,"sourceW":24,"sourceH":26}, +"0":{"x":105,"y":73,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"1":{"x":20,"y":163,"w":13,"h":22,"offX":2,"offY":2,"sourceW":20,"sourceH":26}, +"2":{"x":53,"y":141,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"3":{"x":104,"y":121,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"4":{"x":105,"y":49,"w":18,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"5":{"x":104,"y":145,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"6":{"x":105,"y":1,"w":18,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"7":{"x":105,"y":25,"w":18,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"8":{"x":105,"y":97,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"9":{"x":1,"y":141,"w":17,"h":22,"offX":1,"offY":2,"sourceW":20,"sourceH":26}, +"白":{"x":53,"y":113,"w":23,"h":26,"offX":1,"offY":0,"sourceW":24,"sourceH":26}, +"虎":{"x":1,"y":85,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"魂":{"x":1,"y":113,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"阶":{"x":27,"y":1,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"零":{"x":79,"y":29,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"龙":{"x":27,"y":29,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"青":{"x":79,"y":1,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"雀":{"x":79,"y":85,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"武":{"x":53,"y":29,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"星":{"x":1,"y":29,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"玄":{"x":79,"y":57,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"之":{"x":27,"y":85,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"朱":{"x":1,"y":57,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/public/sixiangfnt.png b/resource_Publish/assets/image/public/sixiangfnt.png new file mode 100644 index 0000000..34a6886 Binary files /dev/null and b/resource_Publish/assets/image/public/sixiangfnt.png differ diff --git a/resource_Publish/assets/image/public/yingzi.png b/resource_Publish/assets/image/public/yingzi.png new file mode 100644 index 0000000..009cef8 Binary files /dev/null and b/resource_Publish/assets/image/public/yingzi.png differ diff --git a/resource_Publish/assets/image/title/title.json b/resource_Publish/assets/image/title/title.json new file mode 100644 index 0000000..79f9baa --- /dev/null +++ b/resource_Publish/assets/image/title/title.json @@ -0,0 +1,168 @@ +{"file":"title.png","frames":{ +"ch_NPC2_001":{"x":139,"y":422,"w":96,"h":24,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_002":{"x":784,"y":317,"w":96,"h":24,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_003":{"x":696,"y":633,"w":56,"h":23,"offX":39,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_004":{"x":1,"y":579,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_005":{"x":900,"y":578,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_006":{"x":120,"y":577,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_007":{"x":695,"y":558,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_008":{"x":597,"y":558,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_009":{"x":499,"y":558,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_010":{"x":818,"y":678,"w":56,"h":23,"offX":39,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_011":{"x":802,"y":557,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_012":{"x":926,"y":227,"w":96,"h":24,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_013":{"x":921,"y":553,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_014":{"x":921,"y":528,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_015":{"x":790,"y":429,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_016":{"x":793,"y":582,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_017":{"x":760,"y":658,"w":56,"h":23,"offX":39,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_018":{"x":218,"y":582,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC2_019":{"x":246,"y":557,"w":96,"h":23,"offX":19,"offY":6,"sourceW":134,"sourceH":32}, +"ch_NPC3_001":{"x":630,"y":658,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_002":{"x":758,"y":607,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_003":{"x":630,"y":633,"w":64,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_004":{"x":950,"y":653,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_005":{"x":585,"y":608,"w":83,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_006":{"x":949,"y":494,"w":64,"h":24,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_007":{"x":86,"y":652,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_008":{"x":452,"y":634,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_009":{"x":723,"y":461,"w":64,"h":24,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_010":{"x":322,"y":634,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_011":{"x":410,"y":659,"w":62,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_012":{"x":172,"y":632,"w":82,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_013":{"x":216,"y":659,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_014":{"x":565,"y":659,"w":62,"h":23,"offX":36,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_015":{"x":695,"y":658,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_016":{"x":185,"y":607,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_017":{"x":346,"y":659,"w":62,"h":23,"offX":36,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_018":{"x":1,"y":604,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_019":{"x":585,"y":583,"w":85,"h":23,"offX":24,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_020":{"x":99,"y":602,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_021":{"x":441,"y":609,"w":83,"h":23,"offX":26,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_022":{"x":402,"y":584,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_023":{"x":271,"y":609,"w":83,"h":23,"offX":26,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_024":{"x":1,"y":654,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_025":{"x":670,"y":608,"w":83,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_026":{"x":1,"y":629,"w":83,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_027":{"x":316,"y":584,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_028":{"x":499,"y":583,"w":84,"h":24,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_029":{"x":891,"y":603,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_030":{"x":957,"y":182,"w":64,"h":24,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_031":{"x":356,"y":609,"w":83,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_032":{"x":387,"y":634,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_033":{"x":256,"y":634,"w":64,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_034":{"x":929,"y":628,"w":83,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_035":{"x":885,"y":653,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_036":{"x":844,"y":628,"w":83,"h":23,"offX":26,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_037":{"x":672,"y":583,"w":84,"h":23,"offX":25,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_038":{"x":87,"y":627,"w":83,"h":23,"offX":26,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_039":{"x":820,"y":653,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_040":{"x":281,"y":659,"w":63,"h":23,"offX":36,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_041":{"x":755,"y":632,"w":63,"h":24,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_042":{"x":565,"y":633,"w":63,"h":24,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_043":{"x":151,"y":657,"w":63,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_044":{"x":474,"y":663,"w":62,"h":23,"offX":35,"offY":3,"sourceW":134,"sourceH":32}, +"ch_NPC3_045":{"x":66,"y":677,"w":64,"h":22,"offX":35,"offY":5,"sourceW":134,"sourceH":32}, +"ch_NPC_001":{"x":1,"y":173,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_002":{"x":697,"y":130,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_003":{"x":523,"y":130,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_004":{"x":349,"y":130,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_005":{"x":175,"y":130,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_006":{"x":1,"y":130,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_007":{"x":697,"y":87,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_008":{"x":523,"y":87,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_009":{"x":349,"y":87,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_010":{"x":175,"y":87,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_011":{"x":1,"y":87,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_012":{"x":844,"y":44,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_013":{"x":670,"y":44,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_014":{"x":496,"y":44,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_015":{"x":322,"y":44,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_016":{"x":148,"y":44,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_017":{"x":844,"y":1,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_018":{"x":670,"y":1,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_019":{"x":496,"y":1,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_020":{"x":322,"y":1,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_NPC_021":{"x":148,"y":1,"w":172,"h":41,"offX":0,"offY":5,"sourceW":172,"sourceH":46}, +"ch_show_001":{"x":127,"y":521,"w":131,"h":26,"offX":3,"offY":15,"sourceW":136,"sourceH":46}, +"ch_show_0010":{"x":259,"y":345,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0011":{"x":1,"y":343,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0012":{"x":655,"y":317,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0013":{"x":886,"y":316,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0014":{"x":526,"y":311,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0015":{"x":397,"y":311,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0016":{"x":790,"y":460,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0017":{"x":340,"y":458,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0018":{"x":227,"y":453,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0019":{"x":114,"y":453,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_002":{"x":889,"y":392,"w":118,"h":34,"offX":9,"offY":9,"sourceW":136,"sourceH":46}, +"ch_show_0020":{"x":497,"y":448,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0021":{"x":907,"y":354,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0022":{"x":566,"y":495,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0023":{"x":836,"y":494,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0024":{"x":723,"y":494,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0025":{"x":340,"y":492,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0026":{"x":227,"y":487,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0027":{"x":114,"y":487,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0028":{"x":1,"y":261,"w":130,"h":42,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0029":{"x":824,"y":182,"w":131,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_003":{"x":245,"y":421,"w":131,"h":30,"offX":3,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0030":{"x":871,"y":135,"w":136,"h":45,"offX":0,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0031":{"x":770,"y":392,"w":117,"h":35,"offX":9,"offY":7,"sourceW":136,"sourceH":46}, +"ch_show_0032":{"x":886,"y":272,"w":118,"h":42,"offX":9,"offY":4,"sourceW":136,"sourceH":46}, +"ch_show_0033":{"x":1,"y":521,"w":124,"h":28,"offX":6,"offY":14,"sourceW":136,"sourceH":46}, +"ch_show_0034":{"x":637,"y":393,"w":117,"h":25,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0035":{"x":380,"y":556,"w":117,"h":26,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0036":{"x":1,"y":551,"w":117,"h":26,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0037":{"x":503,"y":529,"w":117,"h":27,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0038":{"x":127,"y":549,"w":117,"h":26,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0039":{"x":802,"y":528,"w":117,"h":27,"offX":11,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_004":{"x":520,"y":349,"w":126,"h":36,"offX":5,"offY":9,"sourceW":136,"sourceH":46}, +"ch_show_0040":{"x":1,"y":422,"w":136,"h":29,"offX":0,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0041":{"x":502,"y":387,"w":133,"h":31,"offX":1,"offY":7,"sourceW":136,"sourceH":46}, +"ch_show_0042":{"x":1,"y":56,"w":136,"h":29,"offX":0,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0043":{"x":658,"y":429,"w":130,"h":30,"offX":3,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0044":{"x":889,"y":428,"w":130,"h":30,"offX":3,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0045":{"x":784,"y":354,"w":121,"h":36,"offX":8,"offY":1,"sourceW":136,"sourceH":46}, +"ch_show_0046":{"x":259,"y":383,"w":120,"h":36,"offX":8,"offY":1,"sourceW":136,"sourceH":46}, +"ch_show_0047":{"x":1,"y":381,"w":120,"h":36,"offX":8,"offY":1,"sourceW":136,"sourceH":46}, +"ch_show_0048":{"x":648,"y":355,"w":120,"h":36,"offX":8,"offY":1,"sourceW":136,"sourceH":46}, +"ch_show_0049":{"x":123,"y":384,"w":120,"h":36,"offX":8,"offY":1,"sourceW":136,"sourceH":46}, +"ch_show_005":{"x":765,"y":272,"w":119,"h":43,"offX":10,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0050":{"x":871,"y":87,"w":136,"h":46,"offX":0,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0051":{"x":133,"y":266,"w":133,"h":40,"offX":1,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0052":{"x":260,"y":526,"w":118,"h":29,"offX":3,"offY":9,"sourceW":136,"sourceH":46}, +"ch_show_0053":{"x":378,"y":423,"w":117,"h":33,"offX":9,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0054":{"x":381,"y":386,"w":119,"h":35,"offX":11,"offY":6,"sourceW":136,"sourceH":46}, +"ch_show_0055":{"x":388,"y":349,"w":130,"h":35,"offX":4,"offY":7,"sourceW":136,"sourceH":46}, +"ch_show_0056":{"x":1,"y":1,"w":145,"h":53,"offX":8,"offY":2,"sourceW":160,"sourceH":59}, +"ch_show_0057":{"x":696,"y":173,"w":126,"h":46,"offX":5,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0058":{"x":439,"y":173,"w":127,"h":46,"offX":5,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0059":{"x":310,"y":173,"w":127,"h":46,"offX":5,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_006":{"x":1,"y":216,"w":131,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0060":{"x":568,"y":173,"w":126,"h":46,"offX":5,"offY":0,"sourceW":136,"sourceH":46}, +"ch_show_0061":{"x":175,"y":173,"w":133,"h":44,"offX":1,"offY":2,"sourceW":136,"sourceH":46}, +"ch_show_0062":{"x":662,"y":221,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0063":{"x":453,"y":482,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0064":{"x":610,"y":461,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0065":{"x":679,"y":528,"w":121,"h":28,"offX":7,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_0066":{"x":130,"y":346,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0067":{"x":523,"y":266,"w":119,"h":43,"offX":10,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0068":{"x":530,"y":221,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0069":{"x":268,"y":266,"w":132,"h":39,"offX":2,"offY":7,"sourceW":136,"sourceH":46}, +"ch_show_007":{"x":1,"y":453,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0070":{"x":130,"y":308,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0071":{"x":402,"y":266,"w":119,"h":43,"offX":10,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0072":{"x":398,"y":221,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0073":{"x":266,"y":221,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0074":{"x":134,"y":219,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0075":{"x":903,"y":460,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0076":{"x":1,"y":487,"w":111,"h":32,"offX":12,"offY":11,"sourceW":136,"sourceH":46}, +"ch_show_0077":{"x":268,"y":307,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"ch_show_0078":{"x":644,"y":266,"w":119,"h":43,"offX":10,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_0079":{"x":794,"y":227,"w":130,"h":43,"offX":2,"offY":3,"sourceW":136,"sourceH":46}, +"ch_show_008":{"x":380,"y":526,"w":121,"h":28,"offX":7,"offY":12,"sourceW":136,"sourceH":46}, +"ch_show_009":{"x":1,"y":305,"w":127,"h":36,"offX":5,"offY":8,"sourceW":136,"sourceH":46}, +"rage_ch":{"x":502,"y":420,"w":154,"h":26,"offX":0,"offY":0,"sourceW":154,"sourceH":26}, +"rw_sign_1":{"x":538,"y":663,"w":23,"h":50,"offX":11,"offY":1,"sourceW":44,"sourceH":52}, +"rw_sign_2":{"x":526,"y":609,"w":37,"h":52,"offX":4,"offY":0,"sourceW":44,"sourceH":52}}} \ No newline at end of file diff --git a/resource_Publish/assets/image/title/title.png b/resource_Publish/assets/image/title/title.png new file mode 100644 index 0000000..2547218 Binary files /dev/null and b/resource_Publish/assets/image/title/title.png differ diff --git a/resource_Publish/assets/iqiyi/bg_aiqqiyivip.png b/resource_Publish/assets/iqiyi/bg_aiqqiyivip.png new file mode 100644 index 0000000..899e479 Binary files /dev/null and b/resource_Publish/assets/iqiyi/bg_aiqqiyivip.png differ diff --git a/resource_Publish/assets/iqiyi/bg_aqiyiweixin.png b/resource_Publish/assets/iqiyi/bg_aqiyiweixin.png new file mode 100644 index 0000000..295b004 Binary files /dev/null and b/resource_Publish/assets/iqiyi/bg_aqiyiweixin.png differ diff --git a/resource_Publish/assets/iqiyi/iqiyi.json b/resource_Publish/assets/iqiyi/iqiyi.json new file mode 100644 index 0000000..9f346ff --- /dev/null +++ b/resource_Publish/assets/iqiyi/iqiyi.json @@ -0,0 +1,4 @@ +{"file":"iqiyi.png","frames":{ +"btn_ljjrgfqqq":{"x":1,"y":139,"w":189,"h":62,"offX":0,"offY":0,"sourceW":189,"sourceH":62}, +"btnt_ljjrgfqqq":{"x":862,"y":1,"w":138,"h":20,"offX":0,"offY":0,"sourceW":138,"sourceH":20}, +"banner_aiqiyivip":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}}} \ No newline at end of file diff --git a/resource_Publish/assets/iqiyi/iqiyi.png b/resource_Publish/assets/iqiyi/iqiyi.png new file mode 100644 index 0000000..c020427 Binary files /dev/null and b/resource_Publish/assets/iqiyi/iqiyi.png differ diff --git a/resource_Publish/assets/ku25/bg_ku25hezifuli.png b/resource_Publish/assets/ku25/bg_ku25hezifuli.png new file mode 100644 index 0000000..af3d72d Binary files /dev/null and b/resource_Publish/assets/ku25/bg_ku25hezifuli.png differ diff --git a/resource_Publish/assets/ku25/bg_ku25vip.png b/resource_Publish/assets/ku25/bg_ku25vip.png new file mode 100644 index 0000000..887fa49 Binary files /dev/null and b/resource_Publish/assets/ku25/bg_ku25vip.png differ diff --git a/resource_Publish/assets/ku25/bg_ku25weixinlibao.png b/resource_Publish/assets/ku25/bg_ku25weixinlibao.png new file mode 100644 index 0000000..7c8dc4f Binary files /dev/null and b/resource_Publish/assets/ku25/bg_ku25weixinlibao.png differ diff --git a/resource_Publish/assets/ku25/ku25.json b/resource_Publish/assets/ku25/ku25.json new file mode 100644 index 0000000..f7a7be0 --- /dev/null +++ b/resource_Publish/assets/ku25/ku25.json @@ -0,0 +1,4 @@ +{"file":"ku25.png","frames":{ +"banner_ku25vip":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"banner_ku25hezidenglu2":{"x":1,"y":139,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}, +"banner_ku25hezidenglu1":{"x":1,"y":286,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}}} \ No newline at end of file diff --git a/resource_Publish/assets/ku25/ku25.png b/resource_Publish/assets/ku25/ku25.png new file mode 100644 index 0000000..dd5f493 Binary files /dev/null and b/resource_Publish/assets/ku25/ku25.png differ diff --git a/resource_Publish/assets/kuaiwan/banner_kuaiwan.png b/resource_Publish/assets/kuaiwan/banner_kuaiwan.png new file mode 100644 index 0000000..49c4a13 Binary files /dev/null and b/resource_Publish/assets/kuaiwan/banner_kuaiwan.png differ diff --git a/resource_Publish/assets/kuaiwan/bg_kuaiwanvip.png b/resource_Publish/assets/kuaiwan/bg_kuaiwanvip.png new file mode 100644 index 0000000..290059b Binary files /dev/null and b/resource_Publish/assets/kuaiwan/bg_kuaiwanvip.png differ diff --git a/resource_Publish/assets/lixian/lixian_a9737a5c_dfdababe.json b/resource_Publish/assets/lixian/lixian_a9737a5c_dfdababe.json new file mode 100644 index 0000000..4e4b677 --- /dev/null +++ b/resource_Publish/assets/lixian/lixian_a9737a5c_dfdababe.json @@ -0,0 +1 @@ +{"file":"lixian_dfdababe.png","frames":{"bg_lxpd":{"x":1,"y":1,"w":449,"h":523,"offX":2,"offY":0,"sourceW":451,"sourceH":523},"biaoqian_lxpd":{"x":1,"y":613,"w":268,"h":29,"offX":0,"offY":0,"sourceW":268,"sourceH":29},"icon_lxpd1":{"x":484,"y":26,"w":20,"h":24,"offX":0,"offY":0,"sourceW":20,"sourceH":24},"icon_lxpd2":{"x":452,"y":1,"w":29,"h":29,"offX":0,"offY":0,"sourceW":29,"sourceH":29},"icon_lxpd3":{"x":452,"y":61,"w":32,"h":21,"offX":0,"offY":0,"sourceW":32,"sourceH":21},"icon_lxpd4":{"x":452,"y":32,"w":30,"h":27,"offX":0,"offY":0,"sourceW":30,"sourceH":27},"icon_lxpd5":{"x":483,"y":1,"w":24,"h":23,"offX":0,"offY":0,"sourceW":24,"sourceH":23},"property_lxpd":{"x":1,"y":526,"w":282,"h":85,"offX":0,"offY":0,"sourceW":282,"sourceH":85}}} \ No newline at end of file diff --git a/resource_Publish/assets/lixian/lixian_dfdababe.png b/resource_Publish/assets/lixian/lixian_dfdababe.png new file mode 100644 index 0000000..c38fe00 Binary files /dev/null and b/resource_Publish/assets/lixian/lixian_dfdababe.png differ diff --git a/resource_Publish/assets/login/LGO4366.png b/resource_Publish/assets/login/LGO4366.png new file mode 100644 index 0000000..3e73721 Binary files /dev/null and b/resource_Publish/assets/login/LGO4366.png differ diff --git a/resource_Publish/assets/login/LOGO.png b/resource_Publish/assets/login/LOGO.png new file mode 100644 index 0000000..91d998e Binary files /dev/null and b/resource_Publish/assets/login/LOGO.png differ diff --git a/resource_Publish/assets/login/LOGO10.png b/resource_Publish/assets/login/LOGO10.png new file mode 100644 index 0000000..6a088f6 Binary files /dev/null and b/resource_Publish/assets/login/LOGO10.png differ diff --git a/resource_Publish/assets/login/LOGO11.png b/resource_Publish/assets/login/LOGO11.png new file mode 100644 index 0000000..fc367ec Binary files /dev/null and b/resource_Publish/assets/login/LOGO11.png differ diff --git a/resource_Publish/assets/login/LOGO12.png b/resource_Publish/assets/login/LOGO12.png new file mode 100644 index 0000000..9095c66 Binary files /dev/null and b/resource_Publish/assets/login/LOGO12.png differ diff --git a/resource_Publish/assets/login/LOGO13.png b/resource_Publish/assets/login/LOGO13.png new file mode 100644 index 0000000..aec2bcb Binary files /dev/null and b/resource_Publish/assets/login/LOGO13.png differ diff --git a/resource_Publish/assets/login/LOGO2.png b/resource_Publish/assets/login/LOGO2.png new file mode 100644 index 0000000..183bb1a Binary files /dev/null and b/resource_Publish/assets/login/LOGO2.png differ diff --git a/resource_Publish/assets/login/LOGO3.png b/resource_Publish/assets/login/LOGO3.png new file mode 100644 index 0000000..ca549b1 Binary files /dev/null and b/resource_Publish/assets/login/LOGO3.png differ diff --git a/resource_Publish/assets/login/LOGO4.png b/resource_Publish/assets/login/LOGO4.png new file mode 100644 index 0000000..1021ea3 Binary files /dev/null and b/resource_Publish/assets/login/LOGO4.png differ diff --git a/resource_Publish/assets/login/LOGO5.png b/resource_Publish/assets/login/LOGO5.png new file mode 100644 index 0000000..794131a Binary files /dev/null and b/resource_Publish/assets/login/LOGO5.png differ diff --git a/resource_Publish/assets/login/LOGO6.png b/resource_Publish/assets/login/LOGO6.png new file mode 100644 index 0000000..21c3a80 Binary files /dev/null and b/resource_Publish/assets/login/LOGO6.png differ diff --git a/resource_Publish/assets/login/LOGO7.png b/resource_Publish/assets/login/LOGO7.png new file mode 100644 index 0000000..c6cfaad Binary files /dev/null and b/resource_Publish/assets/login/LOGO7.png differ diff --git a/resource_Publish/assets/login/LOGO8.png b/resource_Publish/assets/login/LOGO8.png new file mode 100644 index 0000000..a9e6c1a Binary files /dev/null and b/resource_Publish/assets/login/LOGO8.png differ diff --git a/resource_Publish/assets/login/LOGO9.png b/resource_Publish/assets/login/LOGO9.png new file mode 100644 index 0000000..a18a0b1 Binary files /dev/null and b/resource_Publish/assets/login/LOGO9.png differ diff --git a/resource_Publish/assets/login/Login.json b/resource_Publish/assets/login/Login.json new file mode 100644 index 0000000..4fd53d4 --- /dev/null +++ b/resource_Publish/assets/login/Login.json @@ -0,0 +1,9 @@ +{"file":"Login.png","frames":{ +"login_wenzi2":{"x":1280,"y":1,"w":504,"h":24,"offX":0,"offY":0,"sourceW":504,"sourceH":24}, +"login_jdt_k":{"x":1,"y":1,"w":1277,"h":32,"offX":0,"offY":0,"sourceW":1277,"sourceH":32}, +"Login_guanbi":{"x":1835,"y":31,"w":26,"h":26,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"login_wenzi1":{"x":1661,"y":31,"w":172,"h":18,"offX":0,"offY":0,"sourceW":172,"sourceH":18}, +"login_wenzi3":{"x":1,"y":35,"w":828,"h":41,"offX":0,"offY":0,"sourceW":828,"sourceH":41}, +"login_jdt_t":{"x":1,"y":78,"w":1266,"h":18,"offX":0,"offY":0,"sourceW":1266,"sourceH":18}, +"login_wenzi5":{"x":831,"y":35,"w":828,"h":41,"offX":0,"offY":0,"sourceW":828,"sourceH":41}, +"login_wenzi4":{"x":1786,"y":1,"w":244,"h":28,"offX":0,"offY":0,"sourceW":244,"sourceH":28}}} \ No newline at end of file diff --git a/resource_Publish/assets/login/Login.png b/resource_Publish/assets/login/Login.png new file mode 100644 index 0000000..81f32e2 Binary files /dev/null and b/resource_Publish/assets/login/Login.png differ diff --git a/resource_Publish/assets/login/SelectServer.json b/resource_Publish/assets/login/SelectServer.json new file mode 100644 index 0000000..444293c --- /dev/null +++ b/resource_Publish/assets/login/SelectServer.json @@ -0,0 +1,14 @@ +{"file":"SelectServer.png","frames":{ +"login_jinru1":{"x":237,"y":526,"w":234,"h":105,"offX":0,"offY":0,"sourceW":234,"sourceH":105}, +"login_qfbg":{"x":822,"y":187,"w":174,"h":48,"offX":0,"offY":0,"sourceW":174,"sourceH":48}, +"login_xzqf":{"x":822,"y":237,"w":132,"h":36,"offX":0,"offY":0,"sourceW":132,"sourceH":36}, +"login_xzqf1":{"x":822,"y":275,"w":130,"h":34,"offX":1,"offY":1,"sourceW":132,"sourceH":36}, +"login_yeqian_1":{"x":822,"y":65,"w":180,"h":59,"offX":0,"offY":0,"sourceW":180,"sourceH":59}, +"login_yeqian_2":{"x":822,"y":1,"w":179,"h":62,"offX":0,"offY":0,"sourceW":179,"sourceH":62}, +"login_bg3":{"x":1,"y":1,"w":819,"h":523,"offX":0,"offY":0,"sourceW":819,"sourceH":533}, +"login_bt_1":{"x":822,"y":126,"w":155,"h":59,"offX":0,"offY":0,"sourceW":155,"sourceH":59}, +"login_bt_2":{"x":473,"y":526,"w":228,"h":61,"offX":0,"offY":1,"sourceW":228,"sourceH":62}, +"login_dian_1":{"x":979,"y":152,"w":22,"h":24,"offX":0,"offY":0,"sourceW":22,"sourceH":24}, +"login_dian_2":{"x":998,"y":178,"w":22,"h":24,"offX":0,"offY":0,"sourceW":22,"sourceH":24}, +"login_dian_3":{"x":979,"y":126,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"login_jinru":{"x":1,"y":526,"w":234,"h":108,"offX":0,"offY":0,"sourceW":234,"sourceH":108}}} \ No newline at end of file diff --git a/resource_Publish/assets/login/SelectServer.png b/resource_Publish/assets/login/SelectServer.png new file mode 100644 index 0000000..3e49545 Binary files /dev/null and b/resource_Publish/assets/login/SelectServer.png differ diff --git a/resource_Publish/assets/login/ageButton.png b/resource_Publish/assets/login/ageButton.png new file mode 100644 index 0000000..eeab50b Binary files /dev/null and b/resource_Publish/assets/login/ageButton.png differ diff --git a/resource_Publish/assets/login/enter_game.png b/resource_Publish/assets/login/enter_game.png new file mode 100644 index 0000000..96819cb Binary files /dev/null and b/resource_Publish/assets/login/enter_game.png differ diff --git a/resource_Publish/assets/login/lOG_Honghu.png b/resource_Publish/assets/login/lOG_Honghu.png new file mode 100644 index 0000000..34bff55 Binary files /dev/null and b/resource_Publish/assets/login/lOG_Honghu.png differ diff --git a/resource_Publish/assets/login/loding.jpg b/resource_Publish/assets/login/loding.jpg new file mode 100644 index 0000000..0543a1a Binary files /dev/null and b/resource_Publish/assets/login/loding.jpg differ diff --git a/resource_Publish/assets/login/loding.png b/resource_Publish/assets/login/loding.png new file mode 100644 index 0000000..0feb1b6 Binary files /dev/null and b/resource_Publish/assets/login/loding.png differ diff --git a/resource_Publish/assets/login/loding_kf.jpg b/resource_Publish/assets/login/loding_kf.jpg new file mode 100644 index 0000000..22d30de Binary files /dev/null and b/resource_Publish/assets/login/loding_kf.jpg differ diff --git a/resource_Publish/assets/login/login_bg.jpg b/resource_Publish/assets/login/login_bg.jpg new file mode 100644 index 0000000..0ea137a Binary files /dev/null and b/resource_Publish/assets/login/login_bg.jpg differ diff --git a/resource_Publish/assets/login/logoGameCat.png b/resource_Publish/assets/login/logoGameCat.png new file mode 100644 index 0000000..3e73721 Binary files /dev/null and b/resource_Publish/assets/login/logoGameCat.png differ diff --git a/resource_Publish/assets/login/main_gonggaoBtn.png b/resource_Publish/assets/login/main_gonggaoBtn.png new file mode 100644 index 0000000..d3bc787 Binary files /dev/null and b/resource_Publish/assets/login/main_gonggaoBtn.png differ diff --git a/resource_Publish/assets/login/mp_login_btn2.png b/resource_Publish/assets/login/mp_login_btn2.png new file mode 100644 index 0000000..9ddb1ec Binary files /dev/null and b/resource_Publish/assets/login/mp_login_btn2.png differ diff --git a/resource_Publish/assets/login/txt_kf.png b/resource_Publish/assets/login/txt_kf.png new file mode 100644 index 0000000..e5933df Binary files /dev/null and b/resource_Publish/assets/login/txt_kf.png differ diff --git a/resource_Publish/assets/login/zjt1.png b/resource_Publish/assets/login/zjt1.png new file mode 100644 index 0000000..06302cf Binary files /dev/null and b/resource_Publish/assets/login/zjt1.png differ diff --git a/resource_Publish/assets/login/zjt10.png b/resource_Publish/assets/login/zjt10.png new file mode 100644 index 0000000..54dc845 Binary files /dev/null and b/resource_Publish/assets/login/zjt10.png differ diff --git a/resource_Publish/assets/login/zjt11#.png b/resource_Publish/assets/login/zjt11#.png new file mode 100644 index 0000000..d1e693a Binary files /dev/null and b/resource_Publish/assets/login/zjt11#.png differ diff --git a/resource_Publish/assets/login/zjt2.png b/resource_Publish/assets/login/zjt2.png new file mode 100644 index 0000000..b058cc5 Binary files /dev/null and b/resource_Publish/assets/login/zjt2.png differ diff --git a/resource_Publish/assets/login/zjt3.png b/resource_Publish/assets/login/zjt3.png new file mode 100644 index 0000000..8af0253 Binary files /dev/null and b/resource_Publish/assets/login/zjt3.png differ diff --git a/resource_Publish/assets/login/zjt4.png b/resource_Publish/assets/login/zjt4.png new file mode 100644 index 0000000..37c5dc1 Binary files /dev/null and b/resource_Publish/assets/login/zjt4.png differ diff --git a/resource_Publish/assets/login/zjt5.png b/resource_Publish/assets/login/zjt5.png new file mode 100644 index 0000000..a1c9644 Binary files /dev/null and b/resource_Publish/assets/login/zjt5.png differ diff --git a/resource_Publish/assets/login/zjt8#.png b/resource_Publish/assets/login/zjt8#.png new file mode 100644 index 0000000..6b79d5c Binary files /dev/null and b/resource_Publish/assets/login/zjt8#.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldschaojivip.png b/resource_Publish/assets/ludashi/bg_ldschaojivip.png new file mode 100644 index 0000000..0225cfd Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldschaojivip.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldschaojivip2.png b/resource_Publish/assets/ludashi/bg_ldschaojivip2.png new file mode 100644 index 0000000..aaddf6e Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldschaojivip2.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldsflbuff.png b/resource_Publish/assets/ludashi/bg_ldsflbuff.png new file mode 100644 index 0000000..a611162 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldsflbuff.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldsflhzdl.png b/resource_Publish/assets/ludashi/bg_ldsflhzdl.png new file mode 100644 index 0000000..95d0a7b Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldsflhzdl.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldsflhzdl2.png b/resource_Publish/assets/ludashi/bg_ldsflhzdl2.png new file mode 100644 index 0000000..1dca323 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldsflhzdl2.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldsflmrlb1.png b/resource_Publish/assets/ludashi/bg_ldsflmrlb1.png new file mode 100644 index 0000000..60c6e89 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldsflmrlb1.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldssjlbrzlb.png b/resource_Publish/assets/ludashi/bg_ldssjlbrzlb.png new file mode 100644 index 0000000..acccaff Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldssjlbrzlb.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldssjlbsjlb.png b/resource_Publish/assets/ludashi/bg_ldssjlbsjlb.png new file mode 100644 index 0000000..63d9fa8 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldssjlbsjlb.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldssjlbwxlb.png b/resource_Publish/assets/ludashi/bg_ldssjlbwxlb.png new file mode 100644 index 0000000..deecd87 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldssjlbwxlb.png differ diff --git a/resource_Publish/assets/ludashi/bg_ldsyouxihezi.png b/resource_Publish/assets/ludashi/bg_ldsyouxihezi.png new file mode 100644 index 0000000..7e16fd9 Binary files /dev/null and b/resource_Publish/assets/ludashi/bg_ldsyouxihezi.png differ diff --git a/resource_Publish/assets/ludashi/ludashi.json b/resource_Publish/assets/ludashi/ludashi.json new file mode 100644 index 0000000..3f6a982 --- /dev/null +++ b/resource_Publish/assets/ludashi/ludashi.json @@ -0,0 +1,9 @@ +{"file":"ludashi.png","frames":{ +"txt_fuzhi":{"x":962,"y":24,"w":47,"h":21,"offX":0,"offY":0,"sourceW":47,"sourceH":21}, +"banner_ldschaojivip":{"x":1,"y":139,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"banner_ldsfl":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"biaoti_ldsfl":{"x":1,"y":277,"w":218,"h":53,"offX":0,"offY":0,"sourceW":218,"sourceH":53}, +"txt_ljkt":{"x":862,"y":59,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"txt_bangdingshouji":{"x":862,"y":30,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"txt_erweima":{"x":962,"y":1,"w":57,"h":21,"offX":0,"offY":0,"sourceW":57,"sourceH":21}, +"txt_ljcz":{"x":862,"y":1,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}}} \ No newline at end of file diff --git a/resource_Publish/assets/ludashi/ludashi.png b/resource_Publish/assets/ludashi/ludashi.png new file mode 100644 index 0000000..fee45dd Binary files /dev/null and b/resource_Publish/assets/ludashi/ludashi.png differ diff --git a/resource_Publish/assets/mail/mail.json b/resource_Publish/assets/mail/mail.json new file mode 100644 index 0000000..3aea9e4 --- /dev/null +++ b/resource_Publish/assets/mail/mail.json @@ -0,0 +1,7 @@ +{"file":"mail.png","frames":{ +"mail_bg":{"x":290,"y":1,"w":30,"h":32,"offX":0,"offY":0,"sourceW":30,"sourceH":32}, +"mail_bx":{"x":322,"y":1,"w":31,"h":25,"offX":0,"offY":0,"sourceW":31,"sourceH":25}, +"mail_com":{"x":261,"y":1,"w":27,"h":43,"offX":0,"offY":0,"sourceW":27,"sourceH":43}, +"mail_tab_1":{"x":1,"y":81,"w":258,"h":78,"offX":0,"offY":0,"sourceW":258,"sourceH":78}, +"mail_tab_2":{"x":1,"y":1,"w":258,"h":78,"offX":0,"offY":0,"sourceW":258,"sourceH":78}, +"mail_xian":{"x":1,"y":161,"w":372,"h":2,"offX":0,"offY":0,"sourceW":372,"sourceH":2}}} \ No newline at end of file diff --git a/resource_Publish/assets/mail/mail.png b/resource_Publish/assets/mail/mail.png new file mode 100644 index 0000000..60b571d Binary files /dev/null and b/resource_Publish/assets/mail/mail.png differ diff --git a/resource_Publish/assets/main/actTips/skill_1.png b/resource_Publish/assets/main/actTips/skill_1.png new file mode 100644 index 0000000..f65d111 Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_1.png differ diff --git a/resource_Publish/assets/main/actTips/skill_2.png b/resource_Publish/assets/main/actTips/skill_2.png new file mode 100644 index 0000000..b26adb4 Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_2.png differ diff --git a/resource_Publish/assets/main/actTips/skill_3.png b/resource_Publish/assets/main/actTips/skill_3.png new file mode 100644 index 0000000..a7b501b Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_3.png differ diff --git a/resource_Publish/assets/main/actTips/skill_4.png b/resource_Publish/assets/main/actTips/skill_4.png new file mode 100644 index 0000000..a9d4cd2 Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_4.png differ diff --git a/resource_Publish/assets/main/actTips/skill_5.png b/resource_Publish/assets/main/actTips/skill_5.png new file mode 100644 index 0000000..99bdb65 Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_5.png differ diff --git a/resource_Publish/assets/main/actTips/skill_6.png b/resource_Publish/assets/main/actTips/skill_6.png new file mode 100644 index 0000000..507dc1c Binary files /dev/null and b/resource_Publish/assets/main/actTips/skill_6.png differ diff --git a/resource_Publish/assets/main/bg_newNpc.png b/resource_Publish/assets/main/bg_newNpc.png new file mode 100644 index 0000000..8881d81 Binary files /dev/null and b/resource_Publish/assets/main/bg_newNpc.png differ diff --git a/resource_Publish/assets/main/bq_bg1.png b/resource_Publish/assets/main/bq_bg1.png new file mode 100644 index 0000000..44fc5e3 Binary files /dev/null and b/resource_Publish/assets/main/bq_bg1.png differ diff --git a/resource_Publish/assets/main/huanying_bg_1.png b/resource_Publish/assets/main/huanying_bg_1.png new file mode 100644 index 0000000..e4fe99f Binary files /dev/null and b/resource_Publish/assets/main/huanying_bg_1.png differ diff --git a/resource_Publish/assets/main/huanying_bg_2.png b/resource_Publish/assets/main/huanying_bg_2.png new file mode 100644 index 0000000..2f5f6b3 Binary files /dev/null and b/resource_Publish/assets/main/huanying_bg_2.png differ diff --git a/resource_Publish/assets/main/huanying_bg_3.png b/resource_Publish/assets/main/huanying_bg_3.png new file mode 100644 index 0000000..67b95cb Binary files /dev/null and b/resource_Publish/assets/main/huanying_bg_3.png differ diff --git a/resource_Publish/assets/main/huanying_bg_4.png b/resource_Publish/assets/main/huanying_bg_4.png new file mode 100644 index 0000000..e923f0d Binary files /dev/null and b/resource_Publish/assets/main/huanying_bg_4.png differ diff --git a/resource_Publish/assets/main/hyhy_bg.png b/resource_Publish/assets/main/hyhy_bg.png new file mode 100644 index 0000000..bf89d1e Binary files /dev/null and b/resource_Publish/assets/main/hyhy_bg.png differ diff --git a/resource_Publish/assets/main/hyhy_btn.png b/resource_Publish/assets/main/hyhy_btn.png new file mode 100644 index 0000000..90727e0 Binary files /dev/null and b/resource_Publish/assets/main/hyhy_btn.png differ diff --git a/resource_Publish/assets/main/main.json b/resource_Publish/assets/main/main.json new file mode 100644 index 0000000..527bf05 --- /dev/null +++ b/resource_Publish/assets/main/main.json @@ -0,0 +1,389 @@ +{"file":"main.png","frames":{ +"skillicon_ds12":{"x":1318,"y":793,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_yiwancheng":{"x":1732,"y":917,"w":93,"h":46,"offX":0,"offY":0,"sourceW":94,"sourceH":46}, +"skillicon_ds3":{"x":1263,"y":880,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_shunwanghezi":{"x":1107,"y":593,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_bg3":{"x":1477,"y":881,"w":50,"h":50,"offX":0,"offY":0,"sourceW":50,"sourceH":50}, +"icon_360shiming":{"x":1035,"y":593,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_fs5":{"x":1043,"y":956,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_xunleitequan":{"x":963,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz4":{"x":1153,"y":903,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_k":{"x":908,"y":993,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"m_yg4":{"x":1393,"y":687,"w":51,"h":37,"offX":0,"offY":1,"sourceW":51,"sourceH":39}, +"m_kjj_1":{"x":1492,"y":995,"w":9,"h":18,"offX":0,"offY":0,"sourceW":9,"sourceH":18}, +"map_target":{"x":386,"y":519,"w":23,"h":35,"offX":0,"offY":0,"sourceW":23,"sourceH":35}, +"skillicon_ds4":{"x":1208,"y":880,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icont_hecheng":{"x":744,"y":993,"w":36,"h":19,"offX":0,"offY":0,"sourceW":36,"sourceH":19}, +"bq_icon_6":{"x":1179,"y":593,"w":68,"h":70,"offX":10,"offY":4,"sourceW":88,"sourceH":74}, +"open_bt_8":{"x":1309,"y":396,"w":189,"h":52,"offX":32,"offY":5,"sourceW":252,"sourceH":60}, +"name_hy4":{"x":293,"y":993,"w":73,"h":21,"offX":0,"offY":0,"sourceW":73,"sourceH":21}, +"bq_icon_3":{"x":970,"y":246,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"open_bt_6":{"x":1498,"y":396,"w":187,"h":51,"offX":34,"offY":4,"sourceW":252,"sourceH":60}, +"m_chat_t_hanghui":{"x":1930,"y":577,"w":34,"h":18,"offX":0,"offY":0,"sourceW":34,"sourceH":18}, +"bg_exp_1":{"x":1436,"y":1015,"w":118,"h":8,"offX":4,"offY":0,"sourceW":122,"sourceH":8}, +"open_bt_9":{"x":846,"y":345,"w":179,"h":47,"offX":34,"offY":7,"sourceW":252,"sourceH":60}, +"icont_youjian":{"x":566,"y":993,"w":35,"h":20,"offX":0,"offY":0,"sourceW":35,"sourceH":20}, +"open_bt_14":{"x":472,"y":345,"w":189,"h":48,"offX":33,"offY":7,"sourceW":252,"sourceH":60}, +"icon_fangchenmi":{"x":1465,"y":739,"w":70,"h":72,"offX":2,"offY":0,"sourceW":72,"sourceH":72}, +"icon_bianqiang":{"x":675,"y":515,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bg2":{"x":1220,"y":338,"w":277,"h":28,"offX":2,"offY":0,"sourceW":280,"sourceH":28}, +"bq_btn":{"x":1905,"y":811,"w":94,"h":34,"offX":0,"offY":0,"sourceW":94,"sourceH":34}, +"icon_hfhuodong":{"x":72,"y":755,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_7":{"x":1122,"y":396,"w":187,"h":53,"offX":34,"offY":4,"sourceW":252,"sourceH":60}, +"task_rwjj":{"x":1208,"y":848,"w":99,"h":28,"offX":0,"offY":0,"sourceW":99,"sourceH":28}, +"icon_czzl":{"x":216,"y":736,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty7":{"x":1786,"y":963,"w":59,"h":59,"offX":0,"offY":0,"sourceW":59,"sourceH":59}, +"eff_4":{"x":1737,"y":851,"w":92,"h":36,"offX":0,"offY":0,"sourceW":92,"sourceH":36}, +"icon_kaifutouzi":{"x":144,"y":683,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ds8":{"x":988,"y":791,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_bt_15":{"x":1319,"y":257,"w":191,"h":49,"offX":30,"offY":6,"sourceW":252,"sourceH":60}, +"skillicon_zs5":{"x":1098,"y":736,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"tips_man3":{"x":0,"y":451,"w":264,"h":88,"offX":0,"offY":0,"sourceW":264,"sourceH":88}, +"m_kjj_6":{"x":1915,"y":710,"w":14,"h":18,"offX":0,"offY":0,"sourceW":14,"sourceH":18}, +"icon_leijizaixian":{"x":288,"y":700,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_zhhh":{"x":1368,"y":931,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"eff_5":{"x":1845,"y":963,"w":92,"h":36,"offX":0,"offY":0,"sourceW":92,"sourceH":36}, +"icon_sanduanhutong":{"x":216,"y":664,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz3":{"x":878,"y":938,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"sx_num_p":{"x":1871,"y":342,"w":34,"h":55,"offX":3,"offY":1,"sourceW":38,"sourceH":58}, +"icont_beibao":{"x":1360,"y":982,"w":36,"h":20,"offX":0,"offY":0,"sourceW":36,"sourceH":20}, +"btn_haoyou":{"x":1333,"y":376,"w":35,"h":20,"offX":6,"offY":0,"sourceW":49,"sourceH":22}, +"icon_taotuoshilian":{"x":288,"y":628,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"btn_liaotian":{"x":933,"y":703,"w":30,"h":30,"offX":6,"offY":7,"sourceW":40,"sourceH":40}, +"main_ciyuanyaoshi":{"x":2012,"y":879,"w":35,"h":35,"offX":0,"offY":0,"sourceW":36,"sourceH":36}, +"skillicon2_jz1":{"x":878,"y":828,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_kjj_10":{"x":1890,"y":490,"w":14,"h":18,"offX":0,"offY":0,"sourceW":14,"sourceH":18}, +"icon_yaodou_kefu":{"x":1035,"y":665,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"skillicon_fs4":{"x":878,"y":718,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_3_1":{"x":1747,"y":778,"w":66,"h":73,"offX":7,"offY":0,"sourceW":73,"sourceH":73}, +"m_lst_jt3":{"x":1485,"y":491,"w":11,"h":22,"offX":0,"offY":0,"sourceW":11,"sourceH":22}, +"skillicon_ty6":{"x":823,"y":646,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"common_hongdian":{"x":323,"y":608,"w":15,"h":16,"offX":1,"offY":0,"sourceW":16,"sourceH":16}, +"bg_lakai_1":{"x":1373,"y":761,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"name_icon_yb":{"x":2012,"y":914,"w":35,"h":35,"offX":1,"offY":1,"sourceW":37,"sourceH":37}, +"m_icon_caidan":{"x":1438,"y":376,"w":22,"h":19,"offX":8,"offY":9,"sourceW":37,"sourceH":37}, +"m_t_ms_bg1":{"x":1466,"y":306,"w":32,"h":32,"offX":0,"offY":0,"sourceW":32,"sourceH":32}, +"skillicon_zs6":{"x":823,"y":591,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_t_ms_zudui":{"x":1519,"y":945,"w":82,"h":21,"offX":0,"offY":0,"sourceW":82,"sourceH":21}, +"map_xian":{"x":1492,"y":1013,"w":6,"h":2,"offX":0,"offY":2,"sourceW":6,"sourceH":6}, +"m_chat_ltpb_fj2":{"x":360,"y":677,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"icon_ciyuanshouling":{"x":531,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty9":{"x":713,"y":587,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_btn":{"x":506,"y":246,"w":113,"h":46,"offX":0,"offY":0,"sourceW":113,"sourceH":46}, +"icon_ptfl_bg":{"x":1597,"y":523,"w":44,"h":36,"offX":0,"offY":0,"sourceW":44,"sourceH":36}, +"m_chat_t_jiantou":{"x":1419,"y":995,"w":16,"h":12,"offX":0,"offY":0,"sourceW":16,"sourceH":12}, +"icon_activity7":{"x":386,"y":591,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ds10":{"x":458,"y":595,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_hy5":{"x":219,"y":993,"w":74,"h":21,"offX":0,"offY":0,"sourceW":74,"sourceH":21}, +"icon_huanduwuyi":{"x":459,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_dian_4":{"x":465,"y":446,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"map_dian_5":{"x":462,"y":446,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_yg1":{"x":1527,"y":181,"w":164,"h":164,"offX":0,"offY":0,"sourceW":164,"sourceH":164}, +"icon_kaifuxunbao":{"x":1535,"y":778,"w":72,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"skillicon_ty2":{"x":1991,"y":275,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"btn_jiaoyi":{"x":1368,"y":376,"w":35,"h":20,"offX":7,"offY":0,"sourceW":49,"sourceH":22}, +"icon_boss":{"x":1957,"y":739,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty5":{"x":1991,"y":165,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_icon_huishou":{"x":1396,"y":982,"w":23,"h":25,"offX":7,"offY":6,"sourceW":37,"sourceH":37}, +"icon_ludashilibao":{"x":1885,"y":739,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_haoyou":{"x":1153,"y":958,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"dialog_mask":{"x":596,"y":638,"w":4,"h":4,"offX":0,"offY":0,"sourceW":4,"sourceH":4}, +"icon_sgyxdt":{"x":1813,"y":739,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_fs14":{"x":1991,"y":0,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_m_lock_bg":{"x":603,"y":451,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"bg_shaguaichenghao":{"x":1527,"y":98,"w":333,"h":83,"offX":0,"offY":0,"sourceW":334,"sourceH":84}, +"skillicon2_nz5":{"x":1098,"y":956,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_kuaijielan1":{"x":1248,"y":449,"w":61,"h":61,"offX":0,"offY":0,"sourceW":61,"sourceH":61}, +"icon_taqingxunli":{"x":1669,"y":706,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_btn_2":{"x":2029,"y":949,"w":17,"h":66,"offX":0,"offY":0,"sourceW":17,"sourceH":66}, +"gjbtn_hy":{"x":1208,"y":935,"w":50,"h":53,"offX":0,"offY":0,"sourceW":50,"sourceH":53}, +"sx_num_j":{"x":1507,"y":207,"w":20,"h":35,"offX":1,"offY":0,"sourceW":22,"sourceH":36}, +"m_kjj_11":{"x":878,"y":591,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"icon_yyhy":{"x":963,"y":519,"w":68,"h":72,"offX":2,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_11":{"x":0,"y":246,"w":237,"h":51,"offX":10,"offY":6,"sourceW":252,"sourceH":60}, +"btn_bg_2":{"x":1527,"y":918,"w":68,"h":27,"offX":1,"offY":1,"sourceW":70,"sourceH":28}, +"cwms_btn":{"x":1829,"y":847,"w":100,"h":33,"offX":0,"offY":0,"sourceW":100,"sourceH":33}, +"m_task_btn":{"x":1665,"y":985,"w":121,"h":34,"offX":0,"offY":0,"sourceW":121,"sourceH":34}, +"icon_activity9":{"x":1813,"y":667,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_youjian":{"x":1309,"y":956,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"m_task_btn3":{"x":377,"y":246,"w":129,"h":44,"offX":0,"offY":0,"sourceW":129,"sourceH":44}, +"icon_cangjingge":{"x":1669,"y":634,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz7":{"x":988,"y":846,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"main_tuichu":{"x":1670,"y":848,"w":67,"h":69,"offX":0,"offY":0,"sourceW":67,"sourceH":69}, +"icon_37fuli":{"x":1525,"y":667,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"model":{"x":1197,"y":246,"w":22,"h":61,"offX":2,"offY":0,"sourceW":26,"sourceH":61}, +"skillicon_ds7":{"x":1263,"y":738,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"tips_man4":{"x":442,"y":302,"w":202,"h":34,"offX":1,"offY":1,"sourceW":204,"sourceH":36}, +"icon_activity":{"x":1741,"y":562,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"exp_exp":{"x":492,"y":667,"w":32,"h":18,"offX":0,"offY":0,"sourceW":32,"sourceH":18}, +"icon_fankui":{"x":1607,"y":778,"w":70,"h":70,"offX":2,"offY":2,"sourceW":72,"sourceH":72}, +"icon_bg":{"x":1909,"y":0,"w":82,"h":451,"offX":0,"offY":0,"sourceW":82,"sourceH":451}, +"skillicon_fs6":{"x":1153,"y":738,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_t_ms_bg2":{"x":360,"y":628,"w":26,"h":25,"offX":0,"offY":0,"sourceW":26,"sourceH":25}, +"icon_huanzhenchong":{"x":1525,"y":595,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bq_biaoti":{"x":1497,"y":345,"w":143,"h":43,"offX":6,"offY":4,"sourceW":154,"sourceH":48}, +"icon_360dawanjia":{"x":1930,"y":667,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man6":{"x":470,"y":396,"w":202,"h":55,"offX":3,"offY":2,"sourceW":208,"sourceH":60}, +"map_dian_6":{"x":1662,"y":1016,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_activity3":{"x":1858,"y":595,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_zs7":{"x":878,"y":773,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_zhoumohaoli":{"x":1858,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_bgh":{"x":411,"y":446,"w":48,"h":109,"offX":0,"offY":0,"sourceW":48,"sourceH":109}, +"icon_daluandou":{"x":1714,"y":490,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_lztequan":{"x":1525,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_jiaoyi":{"x":1426,"y":881,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"icon_kaifuzhanchang":{"x":1642,"y":490,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_sgzspf":{"x":1320,"y":595,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_chat_ltpb_hh1":{"x":360,"y":725,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"m_icon_jineng":{"x":1373,"y":738,"w":20,"h":23,"offX":9,"offY":7,"sourceW":37,"sourceH":37}, +"skillicon_zs3":{"x":1991,"y":330,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_hy6":{"x":145,"y":993,"w":74,"h":21,"offX":0,"offY":0,"sourceW":74,"sourceH":21}, +"icon_wanshanziliao":{"x":1248,"y":592,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_zudui":{"x":1258,"y":935,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"m_task_fengexian":{"x":846,"y":392,"w":227,"h":3,"offX":1,"offY":0,"sourceW":229,"sourceH":3}, +"skillicon2_jz6":{"x":1991,"y":110,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_kjj_12":{"x":1583,"y":966,"w":14,"h":18,"offX":0,"offY":0,"sourceW":14,"sourceH":18}, +"icont_shezhi":{"x":636,"y":993,"w":36,"h":19,"offX":0,"offY":0,"sourceW":36,"sourceH":19}, +"m_yg5":{"x":1535,"y":739,"w":52,"h":37,"offX":0,"offY":1,"sourceW":53,"sourceH":38}, +"icon_activity8":{"x":1176,"y":521,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty11":{"x":1263,"y":793,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_chat_t_shijie":{"x":492,"y":650,"w":34,"h":17,"offX":0,"offY":0,"sourceW":34,"sourceH":17}, +"main_zlb":{"x":288,"y":592,"w":35,"h":35,"offX":0,"offY":1,"sourceW":36,"sourceH":36}, +"icon_pugong2":{"x":1665,"y":917,"w":67,"h":68,"offX":2,"offY":3,"sourceW":72,"sourceH":72}, +"fcm_btn":{"x":1025,"y":345,"w":195,"h":43,"offX":0,"offY":0,"sourceW":195,"sourceH":43}, +"skillicon_zs8":{"x":1098,"y":901,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_map_k":{"x":539,"y":650,"w":28,"h":28,"offX":7,"offY":5,"sourceW":35,"sourceH":33}, +"mpa_way":{"x":1307,"y":870,"w":9,"h":7,"offX":0,"offY":0,"sourceW":9,"sourceH":7}, +"tips_man2":{"x":1691,"y":342,"w":180,"h":75,"offX":0,"offY":0,"sourceW":181,"sourceH":75}, +"m_task_zy2h":{"x":1642,"y":447,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"eff_3":{"x":1937,"y":963,"w":92,"h":36,"offX":0,"offY":0,"sourceW":92,"sourceH":36}, +"m_chat_ltpb_hh2":{"x":360,"y":653,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"m_kjj_9":{"x":1964,"y":577,"w":12,"h":18,"offX":0,"offY":0,"sourceW":12,"sourceH":18}, +"m_t_ms_didui":{"x":1899,"y":939,"w":82,"h":22,"offX":0,"offY":0,"sourceW":82,"sourceH":22}, +"skillicon_fs10":{"x":988,"y":901,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ds2":{"x":1153,"y":848,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"map_dian_7":{"x":1462,"y":806,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_chat_t_siliao":{"x":458,"y":667,"w":34,"h":17,"offX":0,"offY":0,"sourceW":34,"sourceH":17}, +"m_task_hp2h":{"x":1297,"y":366,"w":166,"h":10,"offX":0,"offY":0,"sourceW":166,"sourceH":10}, +"open_bt_3":{"x":661,"y":345,"w":185,"h":48,"offX":36,"offY":9,"sourceW":252,"sourceH":60}, +"skillicon_zs1":{"x":1043,"y":846,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_1_0":{"x":1831,"y":417,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_ku25hezi":{"x":1104,"y":449,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man":{"x":1372,"y":880,"w":54,"h":51,"offX":0,"offY":0,"sourceW":54,"sourceH":51}, +"icon_huidaoyuanfu":{"x":1032,"y":519,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_10":{"x":1319,"y":207,"w":188,"h":50,"offX":33,"offY":0,"sourceW":252,"sourceH":67}, +"icon_mafazhanling":{"x":960,"y":447,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_kjj_5":{"x":1461,"y":932,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"icon_shacheng":{"x":888,"y":447,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_nz2":{"x":933,"y":845,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_fenxiangyouxi":{"x":531,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_icon_juese":{"x":568,"y":629,"w":28,"h":32,"offX":2,"offY":2,"sourceW":37,"sourceH":37}, +"m_yg2":{"x":1602,"y":848,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"exp_sexp":{"x":1858,"y":490,"w":32,"h":33,"offX":0,"offY":0,"sourceW":32,"sourceH":33}, +"m_task_xuanzhongkuang":{"x":1393,"y":627,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"name_hy7":{"x":1220,"y":366,"w":77,"h":22,"offX":0,"offY":0,"sourceW":77,"sourceH":22}, +"m_kjj_2":{"x":878,"y":609,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"icon_zhounianqingdian":{"x":459,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"gjbtn_fj":{"x":1860,"y":98,"w":49,"h":53,"offX":1,"offY":0,"sourceW":50,"sourceH":53}, +"btn_youjian":{"x":1403,"y":376,"w":35,"h":20,"offX":7,"offY":0,"sourceW":49,"sourceH":22}, +"open_hdjl":{"x":1310,"y":306,"w":156,"h":28,"offX":0,"offY":1,"sourceW":156,"sourceH":30}, +"m_bg_zhuui":{"x":0,"y":0,"w":1319,"h":246,"offX":1,"offY":1,"sourceW":1321,"sourceH":247}, +"skillicon_fs2":{"x":768,"y":591,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"bq_icon_5":{"x":1122,"y":246,"w":75,"h":76,"offX":1,"offY":0,"sourceW":76,"sourceH":76}, +"map_dian_8":{"x":1737,"y":848,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_wanshengjie":{"x":672,"y":443,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_boss":{"x":610,"y":292,"w":9,"h":9,"offX":0,"offY":0,"sourceW":9,"sourceH":9}, +"bq_icon_4":{"x":811,"y":246,"w":83,"h":70,"offX":4,"offY":4,"sourceW":88,"sourceH":74}, +"m_chat_ltpb_shuoming":{"x":619,"y":270,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"skillicon2_jz8":{"x":1991,"y":385,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_activity5":{"x":72,"y":611,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bq_icon_7":{"x":728,"y":246,"w":83,"h":70,"offX":3,"offY":4,"sourceW":88,"sourceH":74}, +"icon_7you_fuli":{"x":216,"y":592,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty10":{"x":988,"y":956,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"exp_lv":{"x":482,"y":685,"w":32,"h":18,"offX":0,"offY":0,"sourceW":32,"sourceH":18}, +"icon_dianfengkuanghuan":{"x":1677,"y":778,"w":70,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"bq_icon_8":{"x":644,"y":246,"w":84,"h":70,"offX":3,"offY":4,"sourceW":88,"sourceH":74}, +"m_chat_t_zudui":{"x":458,"y":650,"w":34,"h":17,"offX":0,"offY":0,"sourceW":34,"sourceH":17}, +"btn_czcz":{"x":1825,"y":887,"w":78,"h":41,"offX":0,"offY":0,"sourceW":78,"sourceH":41}, +"icon_shachengdjs":{"x":1204,"y":988,"w":104,"h":21,"offX":0,"offY":0,"sourceW":105,"sourceH":21}, +"icont_juese":{"x":601,"y":993,"w":35,"h":20,"offX":0,"offY":0,"sourceW":35,"sourceH":20}, +"icon_4366VIP":{"x":72,"y":539,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_kuafulingzhu":{"x":0,"y":539,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_fulidating":{"x":1453,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"exp_dian":{"x":780,"y":993,"w":26,"h":26,"offX":19,"offY":19,"sourceW":64,"sourceH":64}, +"huanying_x":{"x":1208,"y":738,"w":55,"h":55,"offX":3,"offY":1,"sourceW":61,"sourceH":57}, +"icon_mijingdabao":{"x":1453,"y":591,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_weiduanfuli":{"x":1453,"y":519,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_bgbtn":{"x":1737,"y":887,"w":82,"h":24,"offX":0,"offY":0,"sourceW":82,"sourceH":24}, +"m_task_bg2":{"x":1392,"y":523,"w":48,"h":104,"offX":0,"offY":0,"sourceW":48,"sourceH":104}, +"m_icon_shangcheng":{"x":1477,"y":931,"w":42,"h":42,"offX":0,"offY":0,"sourceW":42,"sourceH":42}, +"btn_feixiei":{"x":873,"y":993,"w":35,"h":19,"offX":8,"offY":1,"sourceW":49,"sourceH":22}, +"skillicon_zs4":{"x":933,"y":790,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_zy3h":{"x":1885,"y":667,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"m_m_lock_5":{"x":2002,"y":595,"w":46,"h":54,"offX":9,"offY":8,"sourceW":64,"sourceH":64}, +"icon_shengxiakuanghuan":{"x":1381,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"eff_2":{"x":1813,"y":811,"w":92,"h":36,"offX":0,"offY":0,"sourceW":92,"sourceH":36}, +"btn_zudui":{"x":708,"y":993,"w":36,"h":19,"offX":6,"offY":1,"sourceW":49,"sourceH":22}, +"icon_activity4":{"x":1309,"y":448,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_hytq":{"x":1570,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty4":{"x":658,"y":587,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"map_btn":{"x":1999,"y":811,"w":34,"h":34,"offX":0,"offY":0,"sourceW":34,"sourceH":34}, +"name_hybg":{"x":1929,"y":845,"w":92,"h":34,"offX":0,"offY":0,"sourceW":92,"sourceH":34}, +"map_dian_9":{"x":1662,"y":1013,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_task_bg1":{"x":338,"y":519,"w":48,"h":109,"offX":0,"offY":0,"sourceW":48,"sourceH":109}, +"m_chat_ltpb_sl1":{"x":619,"y":246,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"m_btn_main1":{"x":1732,"y":963,"w":49,"h":22,"offX":0,"offY":0,"sourceW":49,"sourceH":22}, +"icon_chaowan":{"x":1107,"y":665,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"name_bg":{"x":1419,"y":932,"w":42,"h":42,"offX":0,"offY":0,"sourceW":42,"sourceH":42}, +"skillicon2_nz6":{"x":1991,"y":55,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_fs13":{"x":1208,"y":793,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_bt_2":{"x":0,"y":397,"w":235,"h":52,"offX":10,"offY":4,"sourceW":252,"sourceH":60}, +"icon_kuafumobai":{"x":1976,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_jingcaihuodong":{"x":1904,"y":451,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bq_icon_2":{"x":1046,"y":246,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"name_1_1":{"x":338,"y":446,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_mingriyugao":{"x":891,"y":591,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ds1":{"x":1098,"y":791,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_btn":{"x":1498,"y":306,"w":27,"h":37,"offX":0,"offY":0,"sourceW":27,"sourceH":37}, +"icon_shouchong":{"x":891,"y":519,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_chongzhi":{"x":1534,"y":848,"w":68,"h":70,"offX":2,"offY":2,"sourceW":72,"sourceH":72}, +"map_fangda":{"x":1373,"y":781,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"zjm_shan_zhzd":{"x":1640,"y":345,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"btn_bg_1":{"x":386,"y":555,"w":69,"h":27,"offX":1,"offY":1,"sourceW":70,"sourceH":28}, +"icon_womasan":{"x":819,"y":519,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bq_icon":{"x":1220,"y":246,"w":90,"h":92,"offX":0,"offY":0,"sourceW":90,"sourceH":92}, +"icon_bangdingyouli":{"x":144,"y":755,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_icon_sq":{"x":933,"y":663,"w":27,"h":40,"offX":0,"offY":0,"sourceW":27,"sourceH":40}, +"icon_ganenjie":{"x":0,"y":755,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_exp_expbg":{"x":1153,"y":1009,"w":101,"h":14,"offX":0,"offY":0,"sourceW":101,"sourceH":14}, +"icon_sq_1":{"x":1813,"y":604,"w":41,"h":42,"offX":0,"offY":0,"sourceW":41,"sourceH":42}, +"m_m_lock_3":{"x":1930,"y":523,"w":46,"h":54,"offX":9,"offY":8,"sourceW":64,"sourceH":64}, +"icon_activity6":{"x":72,"y":683,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icont_jineng":{"x":672,"y":993,"w":36,"h":19,"offX":0,"offY":0,"sourceW":36,"sourceH":19}, +"m_m_lockname_bg":{"x":0,"y":297,"w":240,"h":32,"offX":0,"offY":0,"sourceW":240,"sourceH":32}, +"m_t_ms_hanghui":{"x":1501,"y":973,"w":82,"h":21,"offX":0,"offY":0,"sourceW":82,"sourceH":21}, +"map_dian_1":{"x":1740,"y":848,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_task_btn_2bg":{"x":1472,"y":995,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"m_t_ms_zhenying":{"x":1583,"y":989,"w":81,"h":21,"offX":0,"offY":0,"sourceW":81,"sourceH":21}, +"m_task_jiantou":{"x":0,"y":329,"w":148,"h":14,"offX":1,"offY":0,"sourceW":151,"sourceH":14}, +"m_kjj_7":{"x":2013,"y":999,"w":14,"h":19,"offX":0,"offY":0,"sourceW":14,"sourceH":19}, +"m_btn_main2":{"x":1860,"y":151,"w":49,"h":22,"offX":0,"offY":0,"sourceW":49,"sourceH":22}, +"name_hy1":{"x":73,"y":993,"w":72,"h":22,"offX":0,"offY":0,"sourceW":72,"sourceH":22}, +"m_lst_jt1":{"x":1307,"y":848,"w":11,"h":22,"offX":0,"offY":0,"sourceW":11,"sourceH":22}, +"icon_juanxianbang":{"x":386,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_yg3":{"x":568,"y":595,"w":31,"h":34,"offX":0,"offY":0,"sourceW":32,"sourceH":34}, +"icon_dttq":{"x":1249,"y":667,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"m_m_lock_2":{"x":1905,"y":880,"w":55,"h":59,"offX":5,"offY":2,"sourceW":64,"sourceH":64}, +"icon_kuafushacheng":{"x":603,"y":515,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"pet_kuang":{"x":1463,"y":366,"w":30,"h":30,"offX":0,"offY":0,"sourceW":30,"sourceH":30}, +"bq_icon_1":{"x":894,"y":246,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"common_chengdian":{"x":323,"y":592,"w":15,"h":16,"offX":1,"offY":0,"sourceW":16,"sourceH":16}, +"icon_4366":{"x":1597,"y":706,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_m_sd_xt_bg":{"x":882,"y":322,"w":236,"h":21,"offX":0,"offY":0,"sourceW":236,"sourceH":21}, +"icon_zhongqiujiajie":{"x":1741,"y":634,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_ptfl":{"x":1597,"y":634,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icont_paimai":{"x":1871,"y":397,"w":36,"h":20,"offX":0,"offY":0,"sourceW":36,"sourceH":20}, +"m_chat_ltpb_sl2":{"x":360,"y":701,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"icon_wxhb":{"x":1321,"y":667,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"icon_shoujilibao":{"x":1669,"y":562,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_jiantou":{"x":596,"y":629,"w":7,"h":9,"offX":0,"offY":0,"sourceW":7,"sourceH":9}, +"m_exp_lvbg":{"x":1582,"y":1010,"w":80,"h":14,"offX":1,"offY":0,"sourceW":81,"sourceH":14}, +"icon_guaji":{"x":1393,"y":806,"w":69,"h":74,"offX":5,"offY":3,"sourceW":78,"sourceH":78}, +"m_task_hp2":{"x":1845,"y":1011,"w":166,"h":10,"offX":0,"offY":0,"sourceW":166,"sourceH":10}, +"name_icon_jb":{"x":806,"y":993,"w":32,"h":21,"offX":0,"offY":0,"sourceW":32,"sourceH":21}, +"huanying_btn":{"x":1691,"y":181,"w":211,"h":86,"offX":0,"offY":0,"sourceW":211,"sourceH":87}, +"map_dian_10":{"x":459,"y":446,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"tips_man5":{"x":240,"y":302,"w":202,"h":35,"offX":1,"offY":1,"sourceW":204,"sourceH":36}, +"m_job1":{"x":511,"y":993,"w":28,"h":28,"offX":3,"offY":3,"sourceW":43,"sourceH":43}, +"bq_bg2":{"x":1527,"y":0,"w":382,"h":98,"offX":0,"offY":0,"sourceW":384,"sourceH":98}, +"m_task_zy2":{"x":216,"y":539,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"m_task_duizhang":{"x":2021,"y":845,"w":25,"h":30,"offX":0,"offY":0,"sourceW":25,"sourceH":30}, +"open_bt_1":{"x":907,"y":396,"w":215,"h":51,"offX":21,"offY":6,"sourceW":252,"sourceH":60}, +"icont_hanghui":{"x":1297,"y":376,"w":36,"h":20,"offX":0,"offY":0,"sourceW":36,"sourceH":20}, +"skillicon2_nz8":{"x":1043,"y":901,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_zhufuguoqing":{"x":1320,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_hy2":{"x":366,"y":993,"w":73,"h":21,"offX":0,"offY":0,"sourceW":73,"sourceH":21}, +"icon_gonggao":{"x":1248,"y":520,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_hy0":{"x":439,"y":993,"w":72,"h":21,"offX":0,"offY":0,"sourceW":72,"sourceH":21}, +"icon_aiqiyiQQqun":{"x":1176,"y":449,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_sq_2":{"x":1813,"y":562,"w":41,"h":42,"offX":0,"offY":0,"sourceW":41,"sourceH":42}, +"skillicon2_nz3":{"x":1153,"y":793,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_m_lock_1":{"x":1960,"y":879,"w":52,"h":60,"offX":6,"offY":2,"sourceW":64,"sourceH":64}, +"icon_kuafushouling":{"x":1032,"y":447,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_kaifu1maogou":{"x":816,"y":443,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_chongyangxianrui":{"x":744,"y":443,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_btn_shezhi":{"x":1254,"y":1009,"w":30,"h":15,"offX":9,"offY":4,"sourceW":49,"sourceH":22}, +"skillicon2_jz5":{"x":933,"y":735,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_2_0":{"x":1685,"y":417,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_shuangshiqingdian":{"x":0,"y":611,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_qingliangshujia":{"x":144,"y":539,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"gjbtn_sq":{"x":1318,"y":903,"w":50,"h":53,"offX":1,"offY":0,"sourceW":51,"sourceH":53}, +"task_fgx":{"x":1662,"y":1022,"w":368,"h":2,"offX":0,"offY":0,"sourceW":370,"sourceH":2}, +"open_bt_12":{"x":0,"y":345,"w":235,"h":52,"offX":10,"offY":4,"sourceW":252,"sourceH":60}, +"icon_xingyunxunbao":{"x":1976,"y":523,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz2":{"x":933,"y":955,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_fs3":{"x":1098,"y":846,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"cwms_bg":{"x":1691,"y":267,"w":207,"h":75,"offX":0,"offY":0,"sourceW":207,"sourceH":75}, +"map_dian_11":{"x":1743,"y":848,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_kjj_4":{"x":524,"y":667,"w":14,"h":18,"offX":0,"offY":0,"sourceW":14,"sourceH":18}, +"m_exp_sexpbg":{"x":1308,"y":1007,"w":128,"h":14,"offX":0,"offY":0,"sourceW":128,"sourceH":14}, +"m_map_k2":{"x":539,"y":678,"w":28,"h":28,"offX":6,"offY":0,"sourceW":34,"sourceH":28}, +"skillicon_ds9":{"x":1318,"y":738,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"map_k":{"x":1319,"y":0,"w":208,"h":207,"offX":0,"offY":0,"sourceW":208,"sourceH":207}, +"m_chat_t_fasong":{"x":596,"y":642,"w":33,"h":17,"offX":0,"offY":0,"sourceW":33,"sourceH":17}, +"m_task_zy3":{"x":2002,"y":649,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"skillicon_zs2":{"x":1043,"y":736,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ty8":{"x":988,"y":736,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ty3":{"x":878,"y":883,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_hp1":{"x":1845,"y":999,"w":168,"h":12,"offX":0,"offY":0,"sourceW":168,"sourceH":12}, +"icon_guanggunjie":{"x":747,"y":515,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_t_ms_quanti":{"x":1501,"y":994,"w":81,"h":21,"offX":0,"offY":0,"sourceW":81,"sourceH":21}, +"m_m_lock_4":{"x":1318,"y":848,"w":54,"h":55,"offX":0,"offY":0,"sourceW":54,"sourceH":55}, +"open_bt_13":{"x":672,"y":396,"w":235,"h":47,"offX":10,"offY":7,"sourceW":252,"sourceH":60}, +"icon_kaifuhaoli":{"x":1462,"y":811,"w":72,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"open_bt_5":{"x":235,"y":345,"w":237,"h":51,"offX":12,"offY":6,"sourceW":252,"sourceH":60}, +"icon_duanwujiajie":{"x":1597,"y":562,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_job2":{"x":539,"y":993,"w":27,"h":27,"offX":3,"offY":3,"sourceW":43,"sourceH":43}, +"icon_kuangbao":{"x":1930,"y":595,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_chat_btn":{"x":1825,"y":928,"w":74,"h":26,"offX":0,"offY":0,"sourceW":74,"sourceH":26}, +"icon_qqdating":{"x":1786,"y":490,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_fs11":{"x":513,"y":595,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_zy1h":{"x":1453,"y":448,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"icon_zhinengPK":{"x":1179,"y":664,"w":70,"h":74,"offX":4,"offY":3,"sourceW":78,"sourceH":78}, +"icon_shuangshiyi":{"x":1104,"y":521,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_nz4":{"x":933,"y":900,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"bg_exp_0":{"x":377,"y":292,"w":233,"h":8,"offX":0,"offY":0,"sourceW":233,"sourceH":8}, +"skillicon2_nz1":{"x":1043,"y":791,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"map_my":{"x":1372,"y":848,"w":17,"h":30,"offX":2,"offY":0,"sourceW":21,"sourceH":30}, +"name_hy3":{"x":0,"y":993,"w":73,"h":22,"offX":0,"offY":0,"sourceW":73,"sourceH":22}, +"m_task_zy1":{"x":2002,"y":692,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"btn_jishou":{"x":1436,"y":995,"w":36,"h":20,"offX":7,"offY":0,"sourceW":49,"sourceH":22}, +"skillicon_fs9":{"x":878,"y":663,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_chat_t_fujin":{"x":482,"y":703,"w":33,"h":17,"offX":0,"offY":0,"sourceW":33,"sourceH":17}, +"m_t_ms_heping":{"x":1419,"y":974,"w":82,"h":21,"offX":0,"offY":0,"sourceW":82,"sourceH":21}, +"skillicon2_nz7":{"x":603,"y":587,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"zs_btn":{"x":240,"y":246,"w":137,"h":56,"offX":0,"offY":0,"sourceW":137,"sourceH":56}, +"m_job3":{"x":1885,"y":710,"w":30,"h":27,"offX":2,"offY":2,"sourceW":43,"sourceH":43}, +"m_icon_beibao":{"x":1981,"y":939,"w":27,"h":22,"offX":5,"offY":8,"sourceW":37,"sourceH":37}, +"icon_zaichong":{"x":1498,"y":447,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_hecheng":{"x":1453,"y":491,"w":32,"h":28,"offX":3,"offY":5,"sourceW":37,"sourceH":37}, +"open_bt_4":{"x":235,"y":396,"w":235,"h":50,"offX":10,"offY":6,"sourceW":252,"sourceH":60}, +"btn_paihang":{"x":1813,"y":646,"w":38,"h":21,"offX":6,"offY":0,"sourceW":49,"sourceH":22}, +"skillicon_ds5":{"x":1991,"y":220,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_hanghui":{"x":963,"y":591,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_3_0":{"x":1602,"y":916,"w":63,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_xunbao":{"x":0,"y":683,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_kjj_8":{"x":514,"y":685,"w":14,"h":18,"offX":0,"offY":0,"sourceW":14,"sourceH":18}, +"icon_7you_chaihongbao":{"x":1741,"y":706,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_2_1":{"x":1758,"y":417,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icont_huishou":{"x":838,"y":993,"w":35,"h":19,"offX":0,"offY":0,"sourceW":35,"sourceH":19}, +"m_kjj_3":{"x":1461,"y":950,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"icon_ldsyxhz":{"x":264,"y":520,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_dian_2":{"x":600,"y":638,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_rank2":{"x":144,"y":611,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_m_sd_xt_k":{"x":644,"y":316,"w":238,"h":23,"offX":0,"offY":0,"sourceW":238,"sourceH":23}, +"join_qqun":{"x":1118,"y":322,"w":90,"h":22,"offX":0,"offY":0,"sourceW":90,"sourceH":22}, +"m_chat_ltpb_fj1":{"x":458,"y":684,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"map_dian_3":{"x":1662,"y":1010,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_kaifujingji":{"x":1393,"y":735,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"icon_cydzb":{"x":264,"y":446,"w":74,"h":74,"offX":0,"offY":0,"sourceW":74,"sourceH":74}}} \ No newline at end of file diff --git a/resource_Publish/assets/main/main.png b/resource_Publish/assets/main/main.png new file mode 100644 index 0000000..296b481 Binary files /dev/null and b/resource_Publish/assets/main/main.png differ diff --git a/resource_Publish/assets/main/main_actTips.json b/resource_Publish/assets/main/main_actTips.json new file mode 100644 index 0000000..8a95abd --- /dev/null +++ b/resource_Publish/assets/main/main_actTips.json @@ -0,0 +1,101 @@ +{"file":"main_actTips.png","frames":{ +"dc_zbmu1":{"x":1007,"y":1,"w":15,"h":32,"offX":5,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu2":{"x":654,"y":314,"w":26,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu3":{"x":135,"y":326,"w":25,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu4":{"x":108,"y":326,"w":25,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu5":{"x":626,"y":314,"w":26,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu6":{"x":598,"y":314,"w":26,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu7":{"x":1002,"y":239,"w":21,"h":32,"offX":2,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu8":{"x":27,"y":322,"w":25,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zbmu9":{"x":279,"y":326,"w":25,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}, +"dc_zs_jl1":{"x":468,"y":248,"w":138,"h":24,"offX":0,"offY":0,"sourceW":138,"sourceH":24}, +"dc_zs_jl2":{"x":328,"y":241,"w":138,"h":24,"offX":0,"offY":0,"sourceW":138,"sourceH":24}, +"dc_zs_jl3":{"x":188,"y":228,"w":138,"h":24,"offX":0,"offY":0,"sourceW":138,"sourceH":24}, +"dc_zs_jl4":{"x":446,"y":182,"w":179,"h":24,"offX":0,"offY":0,"sourceW":179,"sourceH":24}, +"dc_zs_jl5":{"x":265,"y":169,"w":179,"h":24,"offX":0,"offY":0,"sourceW":179,"sourceH":24}, +"dc_zs_jl6":{"x":84,"y":169,"w":179,"h":24,"offX":0,"offY":0,"sourceW":179,"sourceH":24}, +"dc_zs_jl7":{"x":1,"y":296,"w":94,"h":24,"offX":0,"offY":0,"sourceW":94,"sourceH":24}, +"dc_zs_jl8":{"x":853,"y":281,"w":95,"h":24,"offX":0,"offY":0,"sourceW":95,"sourceH":24}, +"dc_zs_jl9":{"x":186,"y":287,"w":94,"h":24,"offX":0,"offY":0,"sourceW":94,"sourceH":24}, +"dc_zs_jl10":{"x":756,"y":307,"w":89,"h":24,"offX":0,"offY":0,"sourceW":89,"sourceH":24}, +"dc_zs_jl11":{"x":282,"y":300,"w":93,"h":24,"offX":0,"offY":0,"sourceW":93,"sourceH":24}, +"dc_zs_jl12":{"x":756,"y":281,"w":95,"h":24,"offX":0,"offY":0,"sourceW":95,"sourceH":24}, +"dc_zs_jl13":{"x":377,"y":306,"w":92,"h":24,"offX":0,"offY":0,"sourceW":92,"sourceH":24}, +"dc_bg0":{"x":239,"y":1,"w":241,"h":87,"offX":0,"offY":0,"sourceW":241,"sourceH":87}, +"dc_bg1":{"x":767,"y":1,"w":206,"h":47,"offX":0,"offY":0,"sourceW":206,"sourceH":48}, +"dc_bg2":{"x":1,"y":1,"w":236,"h":99,"offX":0,"offY":0,"sourceW":236,"sourceH":99}, +"dc_bg3":{"x":482,"y":1,"w":283,"h":67,"offX":0,"offY":0,"sourceW":283,"sourceH":67}, +"dc_bg4":{"x":97,"y":263,"w":87,"h":29,"offX":0,"offY":0,"sourceW":87,"sourceH":29}, +"dc_bg5":{"x":175,"y":313,"w":102,"h":16,"offX":0,"offY":0,"sourceW":102,"sourceH":16}, +"dc_btn1":{"x":975,"y":1,"w":30,"h":47,"offX":0,"offY":0,"sourceW":30,"sourceH":47}, +"dc_btn2":{"x":547,"y":307,"w":22,"h":86,"offX":0,"offY":0,"sourceW":22,"sourceH":86}, +"dc_cdmu0":{"x":682,"y":314,"w":24,"h":34,"offX":0,"offY":0,"sourceW":24,"sourceH":34}, +"dc_cdmu1":{"x":821,"y":333,"w":19,"h":32,"offX":0,"offY":0,"sourceW":19,"sourceH":32}, +"dc_cdmu2":{"x":847,"y":307,"w":26,"h":33,"offX":0,"offY":0,"sourceW":26,"sourceH":33}, +"dc_cdmu3":{"x":902,"y":307,"w":25,"h":34,"offX":0,"offY":0,"sourceW":25,"sourceH":34}, +"dc_cdmu4":{"x":81,"y":326,"w":25,"h":32,"offX":0,"offY":0,"sourceW":25,"sourceH":32}, +"dc_cdmu5":{"x":344,"y":326,"w":24,"h":33,"offX":0,"offY":0,"sourceW":24,"sourceH":33}, +"dc_cdmu6":{"x":875,"y":307,"w":25,"h":34,"offX":0,"offY":0,"sourceW":25,"sourceH":34}, +"dc_cdmu7":{"x":797,"y":333,"w":22,"h":32,"offX":0,"offY":0,"sourceW":22,"sourceH":32}, +"dc_cdmu8":{"x":571,"y":314,"w":25,"h":34,"offX":0,"offY":0,"sourceW":25,"sourceH":34}, +"dc_cdmu9":{"x":1,"y":322,"w":24,"h":34,"offX":0,"offY":0,"sourceW":24,"sourceH":34}, +"dc_cdwenzi0":{"x":1,"y":135,"w":193,"h":31,"offX":0,"offY":0,"sourceW":193,"sourceH":31}, +"dc_cdwenzi1":{"x":781,"y":149,"w":193,"h":31,"offX":0,"offY":0,"sourceW":193,"sourceH":31}, +"dc_cdwenzi2":{"x":586,"y":149,"w":193,"h":31,"offX":0,"offY":0,"sourceW":193,"sourceH":31}, +"dc_cdwenzi3":{"x":501,"y":103,"w":237,"h":31,"offX":0,"offY":0,"sourceW":237,"sourceH":31}, +"dc_cdwenzi4":{"x":196,"y":136,"w":193,"h":31,"offX":0,"offY":0,"sourceW":193,"sourceH":31}, +"dc_cdwenzi5":{"x":262,"y":103,"w":237,"h":31,"offX":0,"offY":0,"sourceW":237,"sourceH":31}, +"dc_cdwenzi6":{"x":391,"y":136,"w":193,"h":31,"offX":0,"offY":0,"sourceW":193,"sourceH":31}, +"dc_cdwenzi7":{"x":765,"y":83,"w":237,"h":31,"offX":0,"offY":0,"sourceW":237,"sourceH":31}, +"dc_cdwenzi8":{"x":767,"y":50,"w":237,"h":31,"offX":0,"offY":0,"sourceW":237,"sourceH":31}, +"dc_cdwenzi9":{"x":482,"y":70,"w":281,"h":31,"offX":0,"offY":0,"sourceW":281,"sourceH":31}, +"dc_cdwenzi10":{"x":740,"y":116,"w":215,"h":31,"offX":0,"offY":0,"sourceW":215,"sourceH":31}, +"dc_cdwenzi11":{"x":1,"y":102,"w":259,"h":31,"offX":0,"offY":0,"sourceW":259,"sourceH":31}, +"dc_chwenzi3":{"x":84,"y":228,"w":102,"h":33,"offX":0,"offY":0,"sourceW":102,"sourceH":34}, +"dc_icon_jibai":{"x":1,"y":168,"w":81,"h":68,"offX":0,"offY":0,"sourceW":82,"sourceH":68}, +"dc_jb_ch1":{"x":957,"y":116,"w":55,"h":31,"offX":0,"offY":0,"sourceW":55,"sourceH":31}, +"dc_jb_ch2":{"x":664,"y":281,"w":90,"h":31,"offX":0,"offY":0,"sourceW":90,"sourceH":31}, +"dc_jb_ch3":{"x":608,"y":248,"w":102,"h":31,"offX":0,"offY":0,"sourceW":102,"sourceH":31}, +"dc_jb_ch4":{"x":641,"y":215,"w":115,"h":31,"offX":0,"offY":0,"sourceW":115,"sourceH":31}, +"dc_jb_ch5":{"x":188,"y":254,"w":94,"h":31,"offX":0,"offY":0,"sourceW":94,"sourceH":31}, +"dc_jb_ch6":{"x":906,"y":248,"w":94,"h":31,"offX":0,"offY":0,"sourceW":94,"sourceH":31}, +"dc_jb_ch7":{"x":571,"y":281,"w":91,"h":31,"offX":0,"offY":0,"sourceW":91,"sourceH":31}, +"dc_jb_ch8":{"x":477,"y":274,"w":92,"h":31,"offX":0,"offY":0,"sourceW":92,"sourceH":31}, +"dc_jb_ch9":{"x":907,"y":182,"w":116,"h":31,"offX":0,"offY":0,"sourceW":116,"sourceH":31}, +"dc_jb_ch10":{"x":1,"y":263,"w":94,"h":31,"offX":0,"offY":0,"sourceW":94,"sourceH":31}, +"dc_jb_ch11":{"x":284,"y":267,"w":94,"h":31,"offX":0,"offY":0,"sourceW":94,"sourceH":31}, +"dc_jb_ch12":{"x":712,"y":248,"w":95,"h":31,"offX":0,"offY":0,"sourceW":95,"sourceH":31}, +"dc_jb_ch13":{"x":758,"y":215,"w":112,"h":31,"offX":0,"offY":0,"sourceW":112,"sourceH":31}, +"dc_jb_ch14":{"x":872,"y":215,"w":110,"h":31,"offX":0,"offY":0,"sourceW":110,"sourceH":31}, +"dc_jb_nu0":{"x":227,"y":331,"w":24,"h":31,"offX":0,"offY":0,"sourceW":24,"sourceH":31}, +"dc_jb_nu1":{"x":1007,"y":35,"w":14,"h":31,"offX":0,"offY":0,"sourceW":14,"sourceH":31}, +"dc_jb_nu2":{"x":422,"y":332,"w":24,"h":31,"offX":0,"offY":0,"sourceW":24,"sourceH":31}, +"dc_jb_nu3":{"x":772,"y":333,"w":23,"h":31,"offX":0,"offY":0,"sourceW":23,"sourceH":31}, +"dc_jb_nu4":{"x":747,"y":333,"w":23,"h":31,"offX":0,"offY":0,"sourceW":23,"sourceH":31}, +"dc_jb_nu5":{"x":200,"y":331,"w":25,"h":31,"offX":0,"offY":0,"sourceW":25,"sourceH":31}, +"dc_jb_nu6":{"x":370,"y":332,"w":24,"h":31,"offX":0,"offY":0,"sourceW":24,"sourceH":31}, +"dc_jb_nu7":{"x":448,"y":332,"w":20,"h":31,"offX":0,"offY":0,"sourceW":20,"sourceH":31}, +"dc_jb_nu8":{"x":253,"y":331,"w":24,"h":31,"offX":0,"offY":0,"sourceW":24,"sourceH":31}, +"dc_jb_nu9":{"x":396,"y":332,"w":24,"h":31,"offX":0,"offY":0,"sourceW":24,"sourceH":31}, +"dc_jpwenzi0":{"x":97,"y":294,"w":76,"h":30,"offX":0,"offY":0,"sourceW":77,"sourceH":31}, +"dc_jpwenzi1":{"x":471,"y":307,"w":74,"h":30,"offX":0,"offY":0,"sourceW":77,"sourceH":31}, +"dc_mu0":{"x":976,"y":149,"w":38,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu1":{"x":708,"y":338,"w":28,"h":22,"offX":0,"offY":8,"sourceW":28,"sourceH":30}, +"dc_mu2":{"x":929,"y":316,"w":37,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu3":{"x":306,"y":326,"w":36,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu4":{"x":708,"y":314,"w":37,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu5":{"x":41,"y":238,"w":38,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu6":{"x":968,"y":316,"w":37,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu7":{"x":162,"y":331,"w":36,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu8":{"x":1,"y":238,"w":38,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mu9":{"x":984,"y":215,"w":38,"h":22,"offX":0,"offY":8,"sourceW":38,"sourceH":30}, +"dc_mubiao":{"x":950,"y":281,"w":59,"h":33,"offX":0,"offY":0,"sourceW":60,"sourceH":34}, +"dc_nrwenzi0":{"x":809,"y":248,"w":95,"h":31,"offX":0,"offY":0,"sourceW":95,"sourceH":31}, +"dc_nrwenzi1":{"x":224,"y":195,"w":137,"h":31,"offX":0,"offY":0,"sourceW":137,"sourceH":31}, +"dc_nrwenzi2":{"x":627,"y":182,"w":138,"h":31,"offX":0,"offY":0,"sourceW":138,"sourceH":31}, +"dc_nrwenzi3":{"x":84,"y":195,"w":138,"h":31,"offX":0,"offY":0,"sourceW":138,"sourceH":31}, +"dc_nrwenzi4":{"x":502,"y":215,"w":137,"h":31,"offX":0,"offY":0,"sourceW":137,"sourceH":31}, +"dc_nrwenzi5":{"x":767,"y":182,"w":138,"h":31,"offX":0,"offY":0,"sourceW":138,"sourceH":31}, +"dc_nrwenzi6":{"x":363,"y":208,"w":137,"h":31,"offX":0,"offY":0,"sourceW":137,"sourceH":31}, +"dc_nrwenzi7":{"x":380,"y":274,"w":95,"h":30,"offX":0,"offY":0,"sourceW":95,"sourceH":31}, +"dc_zbmu0":{"x":54,"y":322,"w":25,"h":32,"offX":0,"offY":1,"sourceW":26,"sourceH":34}}} \ No newline at end of file diff --git a/resource_Publish/assets/main/main_actTips.png b/resource_Publish/assets/main/main_actTips.png new file mode 100644 index 0000000..8ba8bce Binary files /dev/null and b/resource_Publish/assets/main/main_actTips.png differ diff --git a/resource_Publish/assets/main/main_taskTips.json b/resource_Publish/assets/main/main_taskTips.json new file mode 100644 index 0000000..ea8f144 --- /dev/null +++ b/resource_Publish/assets/main/main_taskTips.json @@ -0,0 +1,7 @@ +{"file":"main_taskTips.png","frames":{ +"zi_3":{"x":1,"y":95,"w":386,"h":47,"offX":0,"offY":0,"sourceW":386,"sourceH":47}, +"zi_4":{"x":1,"y":192,"w":393,"h":45,"offX":0,"offY":0,"sourceW":393,"sourceH":45}, +"zi_5":{"x":1,"y":239,"w":254,"h":45,"offX":0,"offY":0,"sourceW":254,"sourceH":45}, +"zi_1":{"x":1,"y":144,"w":387,"h":46,"offX":0,"offY":0,"sourceW":387,"sourceH":46}, +"zi_2":{"x":1,"y":1,"w":490,"h":45,"offX":0,"offY":0,"sourceW":490,"sourceH":45}, +"zi_6":{"x":1,"y":48,"w":430,"h":45,"offX":0,"offY":0,"sourceW":430,"sourceH":45}}} \ No newline at end of file diff --git a/resource_Publish/assets/main/main_taskTips.png b/resource_Publish/assets/main/main_taskTips.png new file mode 100644 index 0000000..e60b676 Binary files /dev/null and b/resource_Publish/assets/main/main_taskTips.png differ diff --git a/resource_Publish/assets/main/open_bg.png b/resource_Publish/assets/main/open_bg.png new file mode 100644 index 0000000..a60c913 Binary files /dev/null and b/resource_Publish/assets/main/open_bg.png differ diff --git a/resource_Publish/assets/main/sczhiyin.png b/resource_Publish/assets/main/sczhiyin.png new file mode 100644 index 0000000..cec12e5 Binary files /dev/null and b/resource_Publish/assets/main/sczhiyin.png differ diff --git a/resource_Publish/assets/main/ss_x.png b/resource_Publish/assets/main/ss_x.png new file mode 100644 index 0000000..6e59618 Binary files /dev/null and b/resource_Publish/assets/main/ss_x.png differ diff --git a/resource_Publish/assets/main/ssbg_360.png b/resource_Publish/assets/main/ssbg_360.png new file mode 100644 index 0000000..ce22f83 Binary files /dev/null and b/resource_Publish/assets/main/ssbg_360.png differ diff --git a/resource_Publish/assets/main/ssbg_qq.png b/resource_Publish/assets/main/ssbg_qq.png new file mode 100644 index 0000000..b51af55 Binary files /dev/null and b/resource_Publish/assets/main/ssbg_qq.png differ diff --git a/resource_Publish/assets/main/ssbg_rule.png b/resource_Publish/assets/main/ssbg_rule.png new file mode 100644 index 0000000..7ce9b38 Binary files /dev/null and b/resource_Publish/assets/main/ssbg_rule.png differ diff --git a/resource_Publish/assets/main/ssbg_sogou.png b/resource_Publish/assets/main/ssbg_sogou.png new file mode 100644 index 0000000..af47068 Binary files /dev/null and b/resource_Publish/assets/main/ssbg_sogou.png differ diff --git a/resource_Publish/assets/main/task_k1.png b/resource_Publish/assets/main/task_k1.png new file mode 100644 index 0000000..c8f5771 Binary files /dev/null and b/resource_Publish/assets/main/task_k1.png differ diff --git a/resource_Publish/assets/main/task_k2.png b/resource_Publish/assets/main/task_k2.png new file mode 100644 index 0000000..1f3ca91 Binary files /dev/null and b/resource_Publish/assets/main/task_k2.png differ diff --git a/resource_Publish/assets/meridians/meridians.json b/resource_Publish/assets/meridians/meridians.json new file mode 100644 index 0000000..0f1a2aa --- /dev/null +++ b/resource_Publish/assets/meridians/meridians.json @@ -0,0 +1,22 @@ +{"file":"meridians.png","frames":{ +"Meridians_jie_3":{"x":387,"y":124,"w":22,"h":16,"offX":0,"offY":3,"sourceW":22,"sourceH":22}, +"Meridians_dian_1":{"x":431,"y":127,"w":18,"h":18,"offX":0,"offY":0,"sourceW":18,"sourceH":18}, +"Meridians_jie_10":{"x":457,"y":25,"w":21,"h":22,"offX":1,"offY":0,"sourceW":22,"sourceH":22}, +"Meridians_xian_2":{"x":422,"y":92,"w":61,"h":14,"offX":0,"offY":0,"sourceW":61,"sourceH":14}, +"Meridians_jie_4":{"x":457,"y":49,"w":21,"h":16,"offX":1,"offY":4,"sourceW":22,"sourceH":22}, +"Meridians_jie_ji":{"x":480,"y":25,"w":23,"h":19,"offX":0,"offY":1,"sourceW":23,"sourceH":22}, +"Meridians_jie_6":{"x":485,"y":107,"w":22,"h":18,"offX":0,"offY":2,"sourceW":22,"sourceH":22}, +"Meridians_jie_2":{"x":451,"y":127,"w":22,"h":14,"offX":0,"offY":4,"sourceW":22,"sourceH":22}, +"Meridians_jie_bg1":{"x":422,"y":1,"w":33,"h":89,"offX":0,"offY":0,"sourceW":33,"sourceH":89}, +"Meridians_xian_1":{"x":387,"y":108,"w":59,"h":14,"offX":0,"offY":0,"sourceW":59,"sourceH":14}, +"Meridians_jie_5":{"x":485,"y":87,"w":22,"h":18,"offX":0,"offY":2,"sourceW":22,"sourceH":22}, +"Meridians_dian_2":{"x":411,"y":124,"w":18,"h":19,"offX":0,"offY":0,"sourceW":18,"sourceH":19}, +"Meridians_jie_9":{"x":480,"y":46,"w":22,"h":19,"offX":0,"offY":1,"sourceW":22,"sourceH":22}, +"Meridians_bg":{"x":1,"y":1,"w":384,"h":448,"offX":0,"offY":0,"sourceW":384,"sourceH":448}, +"Meridians_jie_bg2":{"x":387,"y":1,"w":33,"h":103,"offX":0,"offY":0,"sourceW":33,"sourceH":103}, +"Meridians_jie_1":{"x":475,"y":127,"w":21,"h":7,"offX":1,"offY":7,"sourceW":22,"sourceH":22}, +"Meridians_jie_8":{"x":448,"y":108,"w":22,"h":17,"offX":0,"offY":3,"sourceW":22,"sourceH":22}, +"Meridians_jie_7":{"x":481,"y":67,"w":22,"h":18,"offX":0,"offY":2,"sourceW":22,"sourceH":22}, +"Meridians_jie_jie":{"x":457,"y":1,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"Meridians_jie_0":{"x":481,"y":1,"w":22,"h":22,"offX":0,"offY":0,"sourceW":22,"sourceH":22}, +"Meridians_jie_11":{"x":457,"y":67,"w":22,"h":19,"offX":0,"offY":2,"sourceW":22,"sourceH":22}}} \ No newline at end of file diff --git a/resource_Publish/assets/meridians/meridians.png b/resource_Publish/assets/meridians/meridians.png new file mode 100644 index 0000000..2cc0cbb Binary files /dev/null and b/resource_Publish/assets/meridians/meridians.png differ diff --git a/resource_Publish/assets/microterms/weiduan_xzframe.png b/resource_Publish/assets/microterms/weiduan_xzframe.png new file mode 100644 index 0000000..741bea1 Binary files /dev/null and b/resource_Publish/assets/microterms/weiduan_xzframe.png differ diff --git a/resource_Publish/assets/multiVersion/Android-c601.png b/resource_Publish/assets/multiVersion/Android-c601.png new file mode 100644 index 0000000..712e537 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Android-c601.png differ diff --git a/resource_Publish/assets/multiVersion/Android-gonghui.png b/resource_Publish/assets/multiVersion/Android-gonghui.png new file mode 100644 index 0000000..5e46ba4 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Android-gonghui.png differ diff --git a/resource_Publish/assets/multiVersion/Android-honghu.png b/resource_Publish/assets/multiVersion/Android-honghu.png new file mode 100644 index 0000000..230db1a Binary files /dev/null and b/resource_Publish/assets/multiVersion/Android-honghu.png differ diff --git a/resource_Publish/assets/multiVersion/Android-huowu.png b/resource_Publish/assets/multiVersion/Android-huowu.png new file mode 100644 index 0000000..f0ea408 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Android-huowu.png differ diff --git a/resource_Publish/assets/multiVersion/Android_c601.png b/resource_Publish/assets/multiVersion/Android_c601.png new file mode 100644 index 0000000..7a4324c Binary files /dev/null and b/resource_Publish/assets/multiVersion/Android_c601.png differ diff --git a/resource_Publish/assets/multiVersion/Client-155iy.png b/resource_Publish/assets/multiVersion/Client-155iy.png new file mode 100644 index 0000000..32c9661 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-155iy.png differ diff --git a/resource_Publish/assets/multiVersion/Client-c601.png b/resource_Publish/assets/multiVersion/Client-c601.png new file mode 100644 index 0000000..e61228a Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-c601.png differ diff --git a/resource_Publish/assets/multiVersion/Client-gonghui.png b/resource_Publish/assets/multiVersion/Client-gonghui.png new file mode 100644 index 0000000..c8fe885 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-gonghui.png differ diff --git a/resource_Publish/assets/multiVersion/Client-huowu.png b/resource_Publish/assets/multiVersion/Client-huowu.png new file mode 100644 index 0000000..bd0572b Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-huowu.png differ diff --git a/resource_Publish/assets/multiVersion/Client-tudou.png b/resource_Publish/assets/multiVersion/Client-tudou.png new file mode 100644 index 0000000..5627f48 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-tudou.png differ diff --git a/resource_Publish/assets/multiVersion/Client-tudoubxsc.png b/resource_Publish/assets/multiVersion/Client-tudoubxsc.png new file mode 100644 index 0000000..691d047 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-tudoubxsc.png differ diff --git a/resource_Publish/assets/multiVersion/Client-wanjiepian.png b/resource_Publish/assets/multiVersion/Client-wanjiepian.png new file mode 100644 index 0000000..692bae0 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-wanjiepian.png differ diff --git a/resource_Publish/assets/multiVersion/Client-youximao.png b/resource_Publish/assets/multiVersion/Client-youximao.png new file mode 100644 index 0000000..36aede0 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client-youximao.png differ diff --git a/resource_Publish/assets/multiVersion/Client.png b/resource_Publish/assets/multiVersion/Client.png new file mode 100644 index 0000000..45ff781 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client.png differ diff --git a/resource_Publish/assets/multiVersion/Client_c601.png b/resource_Publish/assets/multiVersion/Client_c601.png new file mode 100644 index 0000000..b26fa8e Binary files /dev/null and b/resource_Publish/assets/multiVersion/Client_c601.png differ diff --git a/resource_Publish/assets/multiVersion/IOS-honghu.png b/resource_Publish/assets/multiVersion/IOS-honghu.png new file mode 100644 index 0000000..65f58ec Binary files /dev/null and b/resource_Publish/assets/multiVersion/IOS-honghu.png differ diff --git a/resource_Publish/assets/multiVersion/IOS.png b/resource_Publish/assets/multiVersion/IOS.png new file mode 100644 index 0000000..a87409d Binary files /dev/null and b/resource_Publish/assets/multiVersion/IOS.png differ diff --git a/resource_Publish/assets/multiVersion/IOS_honghu.png b/resource_Publish/assets/multiVersion/IOS_honghu.png new file mode 100644 index 0000000..68a8fcc Binary files /dev/null and b/resource_Publish/assets/multiVersion/IOS_honghu.png differ diff --git a/resource_Publish/assets/multiVersion/IOS_huowu.png b/resource_Publish/assets/multiVersion/IOS_huowu.png new file mode 100644 index 0000000..6d511ad Binary files /dev/null and b/resource_Publish/assets/multiVersion/IOS_huowu.png differ diff --git a/resource_Publish/assets/multiVersion/Page-gonghui.png b/resource_Publish/assets/multiVersion/Page-gonghui.png new file mode 100644 index 0000000..50da075 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Page-gonghui.png differ diff --git a/resource_Publish/assets/multiVersion/Page-honghu.png b/resource_Publish/assets/multiVersion/Page-honghu.png new file mode 100644 index 0000000..5954a37 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Page-honghu.png differ diff --git a/resource_Publish/assets/multiVersion/Page-huowu.png b/resource_Publish/assets/multiVersion/Page-huowu.png new file mode 100644 index 0000000..7be9b07 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Page-huowu.png differ diff --git a/resource_Publish/assets/multiVersion/Page.png b/resource_Publish/assets/multiVersion/Page.png new file mode 100644 index 0000000..f737a92 Binary files /dev/null and b/resource_Publish/assets/multiVersion/Page.png differ diff --git a/resource_Publish/assets/multiVersion/Page_c601.png b/resource_Publish/assets/multiVersion/Page_c601.png new file mode 100644 index 0000000..0d83e4d Binary files /dev/null and b/resource_Publish/assets/multiVersion/Page_c601.png differ diff --git a/resource_Publish/assets/multiVersion/multiVersion.json b/resource_Publish/assets/multiVersion/multiVersion.json new file mode 100644 index 0000000..2536100 --- /dev/null +++ b/resource_Publish/assets/multiVersion/multiVersion.json @@ -0,0 +1,3 @@ +{"file":"multiVersion.png","frames":{ +"button1":{"x":1,"y":55,"w":129,"h":52,"offX":4,"offY":3,"sourceW":138,"sourceH":58}, +"button2":{"x":1,"y":1,"w":129,"h":52,"offX":4,"offY":3,"sourceW":138,"sourceH":58}}} \ No newline at end of file diff --git a/resource_Publish/assets/multiVersion/multiVersion.png b/resource_Publish/assets/multiVersion/multiVersion.png new file mode 100644 index 0000000..6b20fc2 Binary files /dev/null and b/resource_Publish/assets/multiVersion/multiVersion.png differ diff --git a/resource_Publish/assets/openServer/kf_dz_bg.png b/resource_Publish/assets/openServer/kf_dz_bg.png new file mode 100644 index 0000000..98ad481 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_dz_bg.png differ diff --git a/resource_Publish/assets/openServer/kf_jj_bg.png b/resource_Publish/assets/openServer/kf_jj_bg.png new file mode 100644 index 0000000..52f3149 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_jj_bg.png differ diff --git a/resource_Publish/assets/openServer/kf_kftz_bg.png b/resource_Publish/assets/openServer/kf_kftz_bg.png new file mode 100644 index 0000000..dc51991 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_kftz_bg.png differ diff --git a/resource_Publish/assets/openServer/kf_kftz_bg4.png b/resource_Publish/assets/openServer/kf_kftz_bg4.png new file mode 100644 index 0000000..9f898d4 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_kftz_bg4.png differ diff --git a/resource_Publish/assets/openServer/kf_lb_bg1.png b/resource_Publish/assets/openServer/kf_lb_bg1.png new file mode 100644 index 0000000..4ad1561 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_lb_bg1.png differ diff --git a/resource_Publish/assets/openServer/kf_xb_bg.png b/resource_Publish/assets/openServer/kf_xb_bg.png new file mode 100644 index 0000000..8fef540 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_xb_bg.png differ diff --git a/resource_Publish/assets/openServer/kf_xb_bg4.png b/resource_Publish/assets/openServer/kf_xb_bg4.png new file mode 100644 index 0000000..9a4abe4 Binary files /dev/null and b/resource_Publish/assets/openServer/kf_xb_bg4.png differ diff --git a/resource_Publish/assets/openServer/num_kftz.fnt b/resource_Publish/assets/openServer/num_kftz.fnt new file mode 100644 index 0000000..b1f5148 --- /dev/null +++ b/resource_Publish/assets/openServer/num_kftz.fnt @@ -0,0 +1,11 @@ +{"file":"num_kftz.png","frames":{ +"9":{"x":26,"y":1,"w":23,"h":30,"offX":0,"offY":0,"sourceW":23,"sourceH":30}, +"7":{"x":100,"y":1,"w":22,"h":30,"offX":0,"offY":0,"sourceW":22,"sourceH":30}, +"5":{"x":51,"y":32,"w":22,"h":30,"offX":0,"offY":0,"sourceW":22,"sourceH":30}, +"6":{"x":1,"y":33,"w":22,"h":30,"offX":0,"offY":0,"sourceW":22,"sourceH":30}, +"4":{"x":51,"y":1,"w":23,"h":29,"offX":0,"offY":0,"sourceW":23,"sourceH":29}, +"2":{"x":75,"y":33,"w":22,"h":29,"offX":0,"offY":0,"sourceW":22,"sourceH":29}, +"3":{"x":25,"y":33,"w":22,"h":30,"offX":0,"offY":0,"sourceW":22,"sourceH":30}, +"1":{"x":99,"y":33,"w":18,"h":29,"offX":2,"offY":0,"sourceW":20,"sourceH":29}, +"0":{"x":1,"y":1,"w":23,"h":30,"offX":0,"offY":0,"sourceW":23,"sourceH":30}, +"8":{"x":76,"y":1,"w":22,"h":30,"offX":0,"offY":0,"sourceW":22,"sourceH":30}}} \ No newline at end of file diff --git a/resource_Publish/assets/openServer/num_kftz.png b/resource_Publish/assets/openServer/num_kftz.png new file mode 100644 index 0000000..8ca211b Binary files /dev/null and b/resource_Publish/assets/openServer/num_kftz.png differ diff --git a/resource_Publish/assets/openServer/openServer.json b/resource_Publish/assets/openServer/openServer.json new file mode 100644 index 0000000..7f471b7 --- /dev/null +++ b/resource_Publish/assets/openServer/openServer.json @@ -0,0 +1,36 @@ +{"file":"openServer.png","frames":{ +"biaoti_cangjingge":{"x":544,"y":258,"w":131,"h":54,"offX":0,"offY":0,"sourceW":131,"sourceH":54}, +"biaoti_kaifuhaoli":{"x":677,"y":309,"w":181,"h":34,"offX":0,"offY":0,"sourceW":181,"sourceH":34}, +"biaoti_kaifujingji":{"x":1,"y":285,"w":181,"h":35,"offX":0,"offY":0,"sourceW":181,"sourceH":35}, +"biaoti_xunbao":{"x":278,"y":218,"w":124,"h":36,"offX":0,"offY":0,"sourceW":124,"sourceH":36}, +"kf_jj_bqbg":{"x":289,"y":1,"w":658,"h":42,"offX":0,"offY":0,"sourceW":658,"sourceH":42}, +"kf_kftz_yb":{"x":935,"y":119,"w":56,"h":32,"offX":0,"offY":0,"sourceW":56,"sourceH":32}, +"kf_lb_bg2":{"x":289,"y":45,"w":391,"h":51,"offX":0,"offY":0,"sourceW":391,"sourceH":51}, +"kf_lb_jt1":{"x":935,"y":63,"w":39,"h":54,"offX":0,"offY":0,"sourceW":39,"sourceH":54}, +"kf_lb_jt2":{"x":976,"y":63,"w":38,"h":54,"offX":0,"offY":0,"sourceW":38,"sourceH":54}, +"kf_lb_k":{"x":145,"y":1,"w":142,"h":208,"offX":0,"offY":0,"sourceW":142,"sourceH":208}, +"kf_lb_k2":{"x":1,"y":1,"w":142,"h":208,"offX":0,"offY":0,"sourceW":142,"sourceH":208}, +"kf_lb_k3":{"x":404,"y":200,"w":138,"h":74,"offX":0,"offY":0,"sourceW":138,"sourceH":74}, +"kf_lb_p1":{"x":289,"y":98,"w":113,"h":118,"offX":18,"offY":22,"sourceW":144,"sourceH":144}, +"kf_lb_p2":{"x":816,"y":45,"w":117,"h":117,"offX":15,"offY":22,"sourceW":144,"sourceH":144}, +"kf_lb_p3":{"x":795,"y":164,"w":111,"h":104,"offX":16,"offY":30,"sourceW":144,"sourceH":144}, +"kf_lb_p4":{"x":541,"y":98,"w":126,"h":100,"offX":11,"offY":33,"sourceW":144,"sourceH":144}, +"kf_lb_p5":{"x":682,"y":45,"w":132,"h":115,"offX":12,"offY":15,"sourceW":144,"sourceH":144}, +"kf_lb_p6":{"x":669,"y":162,"w":124,"h":94,"offX":7,"offY":36,"sourceW":144,"sourceH":144}, +"kf_lb_t1":{"x":860,"y":320,"w":116,"h":23,"offX":0,"offY":0,"sourceW":116,"sourceH":23}, +"kf_lb_t2":{"x":489,"y":314,"w":116,"h":23,"offX":0,"offY":0,"sourceW":116,"sourceH":23}, +"kf_lb_t3":{"x":544,"y":200,"w":117,"h":23,"offX":0,"offY":0,"sourceW":117,"sourceH":23}, +"kf_lb_t4":{"x":371,"y":314,"w":116,"h":23,"offX":0,"offY":0,"sourceW":116,"sourceH":23}, +"kf_lb_t5":{"x":544,"y":225,"w":117,"h":23,"offX":0,"offY":0,"sourceW":117,"sourceH":23}, +"kf_lb_t6":{"x":908,"y":164,"w":114,"h":23,"offX":0,"offY":0,"sourceW":114,"sourceH":23}, +"kf_lb_yigoumai":{"x":404,"y":98,"w":135,"h":95,"offX":0,"offY":0,"sourceW":135,"sourceH":95}, +"kf_slcj":{"x":908,"y":189,"w":91,"h":23,"offX":0,"offY":0,"sourceW":91,"sourceH":23}, +"kf_xb_bg2":{"x":1,"y":211,"w":250,"h":39,"offX":0,"offY":0,"sourceW":250,"sourceH":39}, +"kf_xb_bg3":{"x":993,"y":119,"w":26,"h":26,"offX":0,"offY":0,"sourceW":26,"sourceH":26}, +"kf_xb_bt":{"x":859,"y":270,"w":146,"h":23,"offX":0,"offY":0,"sourceW":146,"sourceH":23}, +"kf_xb_bt2":{"x":860,"y":295,"w":146,"h":23,"offX":0,"offY":0,"sourceW":146,"sourceH":23}, +"kf_xb_p1":{"x":949,"y":1,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"kf_xb_t1":{"x":1,"y":252,"w":275,"h":31,"offX":0,"offY":0,"sourceW":275,"sourceH":31}, +"kf_xb_t2":{"x":184,"y":314,"w":185,"h":31,"offX":0,"offY":0,"sourceW":185,"sourceH":31}, +"kf_xbbt":{"x":278,"y":276,"w":181,"h":36,"offX":0,"offY":0,"sourceW":181,"sourceH":36}, +"kf_xybt":{"x":677,"y":270,"w":180,"h":37,"offX":0,"offY":0,"sourceW":180,"sourceH":37}}} \ No newline at end of file diff --git a/resource_Publish/assets/openServer/openServer.png b/resource_Publish/assets/openServer/openServer.png new file mode 100644 index 0000000..f589b9d Binary files /dev/null and b/resource_Publish/assets/openServer/openServer.png differ diff --git a/resource_Publish/assets/phone/mainphone.json b/resource_Publish/assets/phone/mainphone.json new file mode 100644 index 0000000..e32a16d --- /dev/null +++ b/resource_Publish/assets/phone/mainphone.json @@ -0,0 +1,388 @@ +{"file":"mainphone.png","frames":{ +"m_skillicon_fs7":{"x":165,"y":1256,"w":48,"h":53,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_task_btn_2":{"x":1066,"y":591,"w":17,"h":66,"offX":0,"offY":0,"sourceW":17,"sourceH":66}, +"skillicon_ds8":{"x":55,"y":1256,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_yg1":{"x":1078,"y":0,"w":164,"h":164,"offX":0,"offY":0,"sourceW":164,"sourceH":164}, +"m_skillicon_zs5":{"x":552,"y":1255,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"skillicon_ds1":{"x":165,"y":1201,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ty3":{"x":220,"y":1165,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_xingyunxunbao":{"x":216,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_zs2":{"x":353,"y":1120,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_zudui1":{"x":905,"y":795,"w":110,"h":28,"offX":10,"offY":3,"sourceW":123,"sourceH":34}, +"name_3_1":{"x":357,"y":769,"w":66,"h":73,"offX":7,"offY":0,"sourceW":73,"sourceH":73}, +"skillicon_fs4":{"x":462,"y":1023,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_k":{"x":820,"y":764,"w":24,"h":24,"offX":0,"offY":0,"sourceW":24,"sourceH":24}, +"m_skillicon_fs9":{"x":1063,"y":910,"w":52,"h":54,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"bq_biaoti":{"x":1026,"y":399,"w":143,"h":43,"offX":6,"offY":4,"sourceW":154,"sourceH":48}, +"icon_bangdingyouli":{"x":72,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty6":{"x":0,"y":1222,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon2_nz2":{"x":55,"y":1201,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_jiantou":{"x":213,"y":1294,"w":148,"h":14,"offX":1,"offY":0,"sourceW":151,"sourceH":14}, +"m_skillicon_ds12":{"x":696,"y":1339,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_skillicon_fs12":{"x":1068,"y":857,"w":53,"h":53,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"name_icon_yb":{"x":628,"y":720,"w":35,"h":35,"offX":1,"offY":1,"sourceW":37,"sourceH":37}, +"skillicon_zs7":{"x":110,"y":1193,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_duanzao":{"x":0,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_icon_shangcheng":{"x":958,"y":875,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"skillicon_fs2":{"x":220,"y":1110,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_zs3":{"x":298,"y":1098,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"name_icon_jb":{"x":425,"y":878,"w":32,"h":21,"offX":0,"offY":0,"sourceW":32,"sourceH":21}, +"skillicon_fs5":{"x":298,"y":1043,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_bt_11":{"x":1770,"y":127,"w":237,"h":51,"offX":10,"offY":6,"sourceW":252,"sourceH":60}, +"bq_icon_3":{"x":940,"y":406,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"m_skillicon_zs8":{"x":552,"y":1309,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_skillwj1":{"x":1217,"y":525,"w":116,"h":54,"offX":0,"offY":0,"sourceW":116,"sourceH":54}, +"map_jiantou":{"x":213,"y":1256,"w":7,"h":9,"offX":0,"offY":0,"sourceW":7,"sourceH":9}, +"skillicon_fs3":{"x":165,"y":1091,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_bt_5":{"x":1770,"y":178,"w":237,"h":51,"offX":12,"offY":6,"sourceW":252,"sourceH":60}, +"icon_jingcaihuodong":{"x":562,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_14":{"x":1611,"y":281,"w":189,"h":48,"offX":33,"offY":7,"sourceW":252,"sourceH":60}, +"icon_ganenjie":{"x":1930,"y":886,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty2":{"x":243,"y":1055,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ds10":{"x":243,"y":1000,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"gjbtn_fj":{"x":572,"y":1094,"w":49,"h":53,"offX":1,"offY":0,"sourceW":50,"sourceH":53}, +"m_skillicon_fs14":{"x":621,"y":1185,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_exp":{"x":361,"y":1293,"w":98,"h":11,"offX":0,"offY":0,"sourceW":99,"sourceH":11}, +"icon_mingriyugao":{"x":1858,"y":886,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz2":{"x":407,"y":1010,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_map_k":{"x":1507,"y":139,"w":28,"h":28,"offX":7,"offY":5,"sourceW":35,"sourceH":33}, +"skillicon_ds9":{"x":407,"y":955,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ty9":{"x":590,"y":988,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_kuafumobai":{"x":1786,"y":886,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_fangchenmi":{"x":0,"y":806,"w":70,"h":72,"offX":2,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_ds10":{"x":355,"y":988,"w":52,"h":54,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"m_m_sd_xt_k":{"x":1779,"y":431,"w":238,"h":23,"offX":0,"offY":0,"sourceW":238,"sourceH":23}, +"skillicon2_jz3":{"x":651,"y":920,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon2_nz6":{"x":651,"y":865,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_xunbao":{"x":1642,"y":828,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_ds3":{"x":552,"y":1201,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"icon_shoujilibao":{"x":1570,"y":798,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_zudui2":{"x":905,"y":875,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"m_skillicon_fs3":{"x":408,"y":1173,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_task_btn_2bg":{"x":330,"y":1153,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"icon_activity9":{"x":1498,"y":798,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_youjian":{"x":706,"y":964,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"btn_czcz":{"x":628,"y":769,"w":78,"h":41,"offX":0,"offY":0,"sourceW":78,"sourceH":41}, +"skillicon_zs4":{"x":0,"y":1002,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_skillicon_ds1":{"x":621,"y":1239,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_sj_xinhao":{"x":878,"y":906,"w":27,"h":21,"offX":0,"offY":0,"sourceW":27,"sourceH":21}, +"icon_jishouhang":{"x":1426,"y":798,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man6":{"x":1507,"y":179,"w":202,"h":55,"offX":3,"offY":2,"sourceW":208,"sourceH":60}, +"m_expbg":{"x":213,"y":1273,"w":112,"h":21,"offX":0,"offY":0,"sourceW":112,"sourceH":21}, +"m_skillwj2":{"x":1217,"y":471,"w":116,"h":54,"offX":0,"offY":0,"sourceW":116,"sourceH":54}, +"m_skillicon_fs6":{"x":275,"y":1208,"w":48,"h":53,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_yg4":{"x":1155,"y":617,"w":51,"h":37,"offX":0,"offY":1,"sourceW":51,"sourceH":39}, +"open_bt_9":{"x":1611,"y":329,"w":179,"h":47,"offX":34,"offY":7,"sourceW":252,"sourceH":60}, +"tips_man4":{"x":1472,"y":404,"w":202,"h":34,"offX":1,"offY":1,"sourceW":204,"sourceH":36}, +"m_skillicon_ds7":{"x":0,"y":1277,"w":55,"h":54,"offX":3,"offY":6,"sourceW":60,"sourceH":60}, +"m_zudui":{"x":795,"y":793,"w":110,"h":28,"offX":10,"offY":3,"sourceW":123,"sourceH":34}, +"skillicon_zs5":{"x":425,"y":900,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_zy2h":{"x":479,"y":1186,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"m_job1":{"x":965,"y":699,"w":28,"h":28,"offX":0,"offY":0,"sourceW":28,"sourceH":28}, +"open_btn":{"x":1931,"y":229,"w":113,"h":46,"offX":0,"offY":0,"sourceW":113,"sourceH":46}, +"m_task_zy3h":{"x":1877,"y":526,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"m_skillicon_ty1":{"x":830,"y":929,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"icon_juanxianbang":{"x":1714,"y":814,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_zs8":{"x":724,"y":823,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon2_nz3":{"x":669,"y":810,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_skillicon_fs5":{"x":456,"y":1132,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_skillicon_fs13":{"x":509,"y":1078,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"icon_kuafushacheng":{"x":1642,"y":756,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_zudui":{"x":1570,"y":726,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_ptfl":{"x":1498,"y":726,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"huanying_x":{"x":110,"y":1248,"w":55,"h":55,"offX":3,"offY":1,"sourceW":61,"sourceH":57}, +"m_skillicon_fs11":{"x":1011,"y":910,"w":52,"h":54,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"map_dian_10":{"x":423,"y":1258,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"bq_icon_2":{"x":1297,"y":391,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"m_skillicon_ds11":{"x":696,"y":1177,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_bg_zhuui2":{"x":380,"y":416,"w":484,"h":67,"offX":0,"offY":0,"sourceW":484,"sourceH":67}, +"exp_dian":{"x":795,"y":764,"w":25,"h":26,"offX":20,"offY":19,"sourceW":64,"sourceH":64}, +"m_skillicon_ds2":{"x":696,"y":1069,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_cw_gj":{"x":517,"y":1023,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"common_chengdian":{"x":459,"y":1293,"w":15,"h":16,"offX":1,"offY":0,"sourceW":16,"sourceH":16}, +"m_skillicon_ds4":{"x":757,"y":982,"w":48,"h":54,"offX":5,"offY":6,"sourceW":60,"sourceH":60}, +"icon_shuangshiqingdian":{"x":1210,"y":795,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_1":{"x":1209,"y":249,"w":215,"h":51,"offX":21,"offY":6,"sourceW":252,"sourceH":60}, +"map_dian_5":{"x":107,"y":1311,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_activity":{"x":1066,"y":733,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_zhzd":{"x":779,"y":931,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"icon_yaodou_kefu":{"x":144,"y":735,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"mpa_way":{"x":170,"y":1028,"w":9,"h":7,"offX":0,"offY":0,"sourceW":9,"sourceH":7}, +"m_skillicon_fs4":{"x":623,"y":1131,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_map_k2":{"x":706,"y":769,"w":28,"h":28,"offX":6,"offY":0,"sourceW":34,"sourceH":28}, +"m_exps":{"x":323,"y":1250,"w":100,"h":11,"offX":0,"offY":0,"sourceW":101,"sourceH":11}, +"task_rwjj":{"x":1105,"y":268,"w":99,"h":28,"offX":0,"offY":0,"sourceW":99,"sourceH":28}, +"m_skillbg1":{"x":1138,"y":733,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_dianfengkuanghuan":{"x":666,"y":699,"w":70,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"m_twoyg1":{"x":1397,"y":0,"w":138,"h":139,"offX":0,"offY":0,"sourceW":138,"sourceH":139}, +"icon_gonggao":{"x":1138,"y":661,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"gjbtn_sq":{"x":878,"y":928,"w":50,"h":53,"offX":1,"offY":0,"sourceW":51,"sourceH":53}, +"m_skillwjgw":{"x":1242,"y":0,"w":155,"h":157,"offX":0,"offY":0,"sourceW":155,"sourceH":157}, +"map_dian_6":{"x":456,"y":1126,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_37fuli":{"x":994,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_duizhang":{"x":878,"y":876,"w":25,"h":30,"offX":0,"offY":0,"sourceW":25,"sourceH":30}, +"m_zhenying":{"x":1015,"y":805,"w":113,"h":26,"offX":7,"offY":4,"sourceW":123,"sourceH":34}, +"skillicon_zs6":{"x":300,"y":988,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"mp_m_lock_bg":{"x":163,"y":876,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"icon_kaifu1maogou":{"x":994,"y":591,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_xuanzhongkuang":{"x":965,"y":735,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"m_skillicon_fs2":{"x":696,"y":1123,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_skillicon_zs7":{"x":408,"y":1065,"w":53,"h":54,"offX":4,"offY":6,"sourceW":60,"sourceH":60}, +"m_qiehuan":{"x":1333,"y":467,"w":38,"h":41,"offX":0,"offY":0,"sourceW":38,"sourceH":41}, +"icon_kuafushouling":{"x":922,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_job2":{"x":1877,"y":569,"w":27,"h":27,"offX":0,"offY":0,"sourceW":27,"sourceH":27}, +"icon_activity6":{"x":922,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_zudui":{"x":572,"y":1043,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"open_bt_3":{"x":1800,"y":319,"w":185,"h":48,"offX":36,"offY":9,"sourceW":252,"sourceH":60}, +"mp_map_bg1":{"x":1904,"y":569,"w":16,"h":25,"offX":0,"offY":0,"sourceW":16,"sourceH":25}, +"sx_num_p":{"x":1733,"y":468,"w":34,"h":56,"offX":3,"offY":2,"sourceW":38,"sourceH":58}, +"m_zhenying2":{"x":1174,"y":867,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"icon_fankui":{"x":214,"y":806,"w":70,"h":70,"offX":2,"offY":2,"sourceW":72,"sourceH":72}, +"icon_qqdating":{"x":778,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ds2":{"x":188,"y":981,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_qiehuanbg":{"x":64,"y":922,"w":69,"h":59,"offX":0,"offY":0,"sourceW":69,"sourceH":59}, +"icon_yyhy":{"x":430,"y":735,"w":68,"h":72,"offX":2,"offY":0,"sourceW":72,"sourceH":72}, +"icon_shuangshiyi":{"x":706,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_fangda":{"x":2017,"y":431,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"m_task_fengexian":{"x":98,"y":1316,"w":227,"h":3,"offX":1,"offY":0,"sourceW":229,"sourceH":3}, +"m_task_zy1":{"x":479,"y":1229,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"common_hongdian":{"x":220,"y":1091,"w":15,"h":16,"offX":1,"offY":0,"sourceW":16,"sourceH":16}, +"icon_beibao":{"x":634,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_zs4":{"x":408,"y":1119,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"main_zlb":{"x":1025,"y":735,"w":35,"h":35,"offX":0,"offY":1,"sourceW":36,"sourceH":36}, +"m_skillbg2":{"x":1293,"y":300,"w":91,"h":91,"offX":0,"offY":0,"sourceW":91,"sourceH":91}, +"m_skillicon_zs6":{"x":623,"y":1077,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"skillicon_fs6":{"x":724,"y":878,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_shezhi":{"x":490,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_dian_8":{"x":165,"y":1088,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_hanghui":{"x":905,"y":849,"w":110,"h":26,"offX":10,"offY":4,"sourceW":123,"sourceH":34}, +"m_skillicon_ds6":{"x":330,"y":1175,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_twoyg4":{"x":430,"y":663,"w":47,"h":35,"offX":1,"offY":0,"sourceW":48,"sourceH":36}, +"open_bg2":{"x":1472,"y":376,"w":272,"h":28,"offX":2,"offY":0,"sourceW":280,"sourceH":28}, +"m_cw_gs":{"x":795,"y":821,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_shengxing":{"x":706,"y":483,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_ds8":{"x":696,"y":1285,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_ms_bg1":{"x":596,"y":852,"w":12,"h":12,"offX":0,"offY":0,"sourceW":12,"sourceH":12}, +"open_bt_6":{"x":1424,"y":281,"w":187,"h":51,"offX":34,"offY":4,"sourceW":252,"sourceH":60}, +"icon_jiaoyi":{"x":562,"y":483,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man3":{"x":762,"y":318,"w":264,"h":88,"offX":0,"offY":0,"sourceW":264,"sourceH":88}, +"open_bt_12":{"x":1746,"y":75,"w":235,"h":52,"offX":10,"offY":4,"sourceW":252,"sourceH":60}, +"icon_qufuxinxi":{"x":1501,"y":654,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_2_0":{"x":1091,"y":516,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_kuangbao":{"x":1357,"y":654,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_kaifuhaoli":{"x":70,"y":806,"w":72,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"icon_rank2":{"x":1285,"y":654,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_ty2":{"x":1384,"y":300,"w":40,"h":47,"offX":12,"offY":13,"sourceW":60,"sourceH":60}, +"m_task_hp1":{"x":268,"y":1261,"w":168,"h":12,"offX":0,"offY":0,"sourceW":168,"sourceH":12}, +"map_dian_4":{"x":429,"y":1258,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_bg_zhuui3":{"x":110,"y":1309,"w":360,"h":7,"offX":0,"offY":0,"sourceW":360,"sourceH":7}, +"icon_taotuoshilian":{"x":1573,"y":582,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_zhhh":{"x":928,"y":928,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"icon_shachengdjs":{"x":323,"y":1229,"w":104,"h":21,"offX":0,"offY":0,"sourceW":105,"sourceH":21}, +"icon_guanggunjie":{"x":1501,"y":582,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_job3":{"x":1365,"y":217,"w":31,"h":27,"offX":0,"offY":0,"sourceW":31,"sourceH":27}, +"icon_zaichong":{"x":1429,"y":582,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_bg1":{"x":1165,"y":508,"w":48,"h":109,"offX":0,"offY":0,"sourceW":48,"sourceH":109}, +"icon_4366VIP":{"x":1285,"y":582,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_zs1":{"x":696,"y":1231,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"skillicon2_nz5":{"x":596,"y":865,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_chaowan":{"x":216,"y":735,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"name_3_0":{"x":565,"y":720,"w":63,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"dialog_mask":{"x":456,"y":1119,"w":4,"h":4,"offX":0,"offY":0,"sourceW":4,"sourceH":4}, +"m_quanti":{"x":848,"y":699,"w":117,"h":31,"offX":3,"offY":2,"sourceW":123,"sourceH":34}, +"m_task_zy2":{"x":436,"y":1227,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"m_ms_bg2":{"x":103,"y":1311,"w":4,"h":4,"offX":0,"offY":0,"sourceW":4,"sourceH":4}, +"icon_zhinengPK":{"x":360,"y":663,"w":70,"h":74,"offX":4,"offY":3,"sourceW":78,"sourceH":78}, +"skillicon_ty4":{"x":133,"y":973,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"main_tuichu":{"x":498,"y":720,"w":67,"h":69,"offX":0,"offY":0,"sourceW":67,"sourceH":69}, +"skillicon_ds12":{"x":541,"y":858,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_activity7":{"x":1549,"y":510,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ds3":{"x":486,"y":858,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_hdjl":{"x":1209,"y":217,"w":156,"h":28,"offX":0,"offY":1,"sourceW":156,"sourceH":30}, +"map_my":{"x":1642,"y":726,"w":17,"h":30,"offX":2,"offY":0,"sourceW":21,"sourceH":30}, +"m_hanghui1":{"x":905,"y":823,"w":110,"h":26,"offX":10,"offY":4,"sourceW":123,"sourceH":34}, +"skillicon_ty7":{"x":736,"y":764,"w":59,"h":59,"offX":0,"offY":0,"sourceW":59,"sourceH":59}, +"icon_juese":{"x":1477,"y":510,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man2":{"x":1746,"y":0,"w":180,"h":75,"offX":0,"offY":0,"sourceW":181,"sourceH":75}, +"skillicon2_jz4":{"x":517,"y":968,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_hp2":{"x":325,"y":1283,"w":166,"h":10,"offX":0,"offY":0,"sourceW":166,"sourceH":10}, +"m_skillbg3":{"x":1217,"y":391,"w":80,"h":80,"offX":0,"offY":0,"sourceW":80,"sourceH":80}, +"icon_daluandou":{"x":1213,"y":579,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_kaifujingji":{"x":72,"y":735,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"icon_sanduanhutong":{"x":1333,"y":510,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_13":{"x":1507,"y":234,"w":235,"h":47,"offX":10,"offY":7,"sourceW":252,"sourceH":60}, +"huanying_btn":{"x":1535,"y":0,"w":211,"h":86,"offX":0,"offY":0,"sourceW":211,"sourceH":87}, +"icon_7you_chaihongbao":{"x":1805,"y":742,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_feixie":{"x":1733,"y":742,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_zhongqiujiajie":{"x":1949,"y":670,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_jiaoyi":{"x":645,"y":975,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"skillicon_fs10":{"x":590,"y":933,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_hanghui":{"x":1877,"y":670,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"zjm_shan_haoyou":{"x":645,"y":1026,"w":51,"h":51,"offX":0,"offY":0,"sourceW":51,"sourceH":51}, +"icon_taqingxunli":{"x":1805,"y":670,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_ty10":{"x":0,"y":1057,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_kuaijielan1":{"x":1981,"y":64,"w":61,"h":61,"offX":0,"offY":0,"sourceW":61,"sourceH":61}, +"m_daojubg":{"x":457,"y":878,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"mp_map_bg2":{"x":378,"y":1175,"w":27,"h":54,"offX":0,"offY":0,"sourceW":27,"sourceH":54}, +"icon_rank":{"x":1733,"y":670,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_hfhuodong":{"x":1949,"y":598,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_nz4":{"x":245,"y":945,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_ciyuanshouling":{"x":1877,"y":598,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_m_lockname_bg":{"x":1790,"y":399,"w":240,"h":32,"offX":0,"offY":0,"sourceW":240,"sourceH":32}, +"icon_jineng":{"x":1733,"y":598,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_1_1":{"x":864,"y":482,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_xilian":{"x":1733,"y":526,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_ldsyxhz":{"x":1661,"y":684,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillgw":{"x":1217,"y":350,"w":45,"h":41,"offX":0,"offY":0,"sourceW":45,"sourceH":41}, +"m_quanti1":{"x":848,"y":730,"w":117,"h":31,"offX":3,"offY":2,"sourceW":123,"sourceH":34}, +"icon_activity5":{"x":1661,"y":612,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_hp2h":{"x":325,"y":1273,"w":166,"h":10,"offX":0,"offY":0,"sourceW":166,"sourceH":10}, +"icon_kaifutouzi":{"x":1661,"y":540,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_zhenying1":{"x":1015,"y":831,"w":113,"h":26,"offX":7,"offY":4,"sourceW":123,"sourceH":34}, +"map_btn":{"x":1025,"y":770,"w":34,"h":34,"offX":0,"offY":0,"sourceW":34,"sourceH":34}, +"icon_dttq":{"x":0,"y":735,"w":72,"h":71,"offX":0,"offY":1,"sourceW":72,"sourceH":72}, +"icon_leijizaixian":{"x":1661,"y":468,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"tips_man5":{"x":1535,"y":86,"w":202,"h":35,"offX":1,"offY":1,"sourceW":204,"sourceH":36}, +"open_bt_15":{"x":1026,"y":350,"w":191,"h":49,"offX":30,"offY":6,"sourceW":252,"sourceH":60}, +"icon_sgyxdt":{"x":1445,"y":438,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_fs1":{"x":504,"y":1132,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_hanghui2":{"x":1121,"y":858,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"m_btn_bg1":{"x":423,"y":1250,"w":8,"h":8,"offX":0,"offY":0,"sourceW":8,"sourceH":8}, +"icon_wanshanziliao":{"x":1373,"y":438,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"gjbtn_hy":{"x":828,"y":876,"w":50,"h":53,"offX":0,"offY":0,"sourceW":50,"sourceH":53}, +"icon_zhoumohaoli":{"x":1923,"y":526,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz5":{"x":55,"y":1036,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"sbss_tab_bg2":{"x":98,"y":1311,"w":5,"h":5,"offX":0,"offY":0,"sourceW":5,"sourceH":5}, +"map_target":{"x":600,"y":1147,"w":23,"h":35,"offX":0,"offY":0,"sourceW":23,"sourceH":35}, +"bq_icon_1":{"x":864,"y":406,"w":76,"h":76,"offX":0,"offY":0,"sourceW":76,"sourceH":76}, +"skillicon_ty8":{"x":60,"y":981,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_m_lock_1":{"x":425,"y":807,"w":61,"h":71,"offX":0,"offY":0,"sourceW":61,"sourceH":71}, +"icon_360shiming":{"x":1851,"y":454,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_fs8":{"x":220,"y":1220,"w":48,"h":53,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_kuaijielan2":{"x":870,"y":207,"w":339,"h":61,"offX":0,"offY":0,"sourceW":339,"sourceH":61}, +"map_dian_9":{"x":562,"y":789,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"name_bg":{"x":2002,"y":814,"w":42,"h":42,"offX":0,"offY":0,"sourceW":42,"sourceH":42}, +"m_quanti2":{"x":1227,"y":867,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"skillicon_fs14":{"x":275,"y":1153,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_zy3":{"x":0,"y":1331,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"open_bt_7":{"x":1209,"y":164,"w":187,"h":53,"offX":34,"offY":4,"sourceW":252,"sourceH":60}, +"m_didui":{"x":133,"y":940,"w":112,"h":33,"offX":8,"offY":1,"sourceW":123,"sourceH":34}, +"m_task_bg3":{"x":1709,"y":179,"w":50,"h":50,"offX":0,"offY":0,"sourceW":50,"sourceH":50}, +"map_dian_1":{"x":456,"y":1129,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"m_task_bg2":{"x":1995,"y":454,"w":48,"h":104,"offX":0,"offY":0,"sourceW":48,"sourceH":104}, +"icon_huanduwuyi":{"x":288,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"name_1_0":{"x":937,"y":482,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"icon_kaifuxunbao":{"x":142,"y":806,"w":72,"h":70,"offX":0,"offY":2,"sourceW":72,"sourceH":72}, +"m_twoyg1_1":{"x":1397,"y":139,"w":110,"h":110,"offX":0,"offY":0,"sourceW":110,"sourceH":110}, +"icon_ludashilibao":{"x":778,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_guaji":{"x":288,"y":735,"w":69,"h":74,"offX":5,"offY":3,"sourceW":78,"sourceH":78}, +"icon_cangjingge":{"x":706,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillgw1":{"x":1674,"y":404,"w":105,"h":64,"offX":0,"offY":0,"sourceW":106,"sourceH":64}, +"icon_sgzspf":{"x":490,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bt_10":{"x":1105,"y":300,"w":188,"h":50,"offX":33,"offY":0,"sourceW":252,"sourceH":67}, +"icon_youjian":{"x":1354,"y":798,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_bgh":{"x":1169,"y":399,"w":48,"h":109,"offX":0,"offY":0,"sourceW":48,"sourceH":109}, +"icon_7you_fuli":{"x":1930,"y":814,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_boss":{"x":1858,"y":814,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_zhounianqingdian":{"x":1786,"y":814,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_bg":{"x":0,"y":942,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"map_dian_3":{"x":426,"y":1258,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_wanshengjie":{"x":1426,"y":726,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_aiqiyiQQqun":{"x":1354,"y":726,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_fenxiangyouxi":{"x":1282,"y":726,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_activity3":{"x":1210,"y":723,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_nz7":{"x":55,"y":1091,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_liaotianbg":{"x":1985,"y":319,"w":48,"h":48,"offX":0,"offY":0,"sourceW":48,"sourceH":48}, +"open_bt_2":{"x":1535,"y":127,"w":235,"h":52,"offX":10,"offY":4,"sourceW":252,"sourceH":60}, +"m_m_lock_2":{"x":498,"y":789,"w":64,"h":69,"offX":0,"offY":0,"sourceW":64,"sourceH":69}, +"m_heping":{"x":848,"y":761,"w":112,"h":32,"offX":8,"offY":2,"sourceW":123,"sourceH":34}, +"name_btn":{"x":456,"y":1186,"w":20,"h":36,"offX":0,"offY":0,"sourceW":20,"sourceH":36}, +"skillicon2_jz6":{"x":480,"y":913,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon2_jz7":{"x":115,"y":1028,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_yg5":{"x":1995,"y":558,"w":52,"h":37,"offX":0,"offY":1,"sourceW":53,"sourceH":38}, +"icon_bianqiang":{"x":850,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"sbss_tab_bg3":{"x":165,"y":1083,"w":5,"h":5,"offX":0,"offY":0,"sourceW":5,"sourceH":5}, +"icon_huanzhenchong":{"x":562,"y":555,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_jz8":{"x":850,"y":821,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_haoyou":{"x":778,"y":483,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_sj_dianchi1":{"x":355,"y":1042,"w":49,"h":23,"offX":0,"offY":0,"sourceW":49,"sourceH":23}, +"icon_kaifuzhanchang":{"x":634,"y":483,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_btn_bg2":{"x":1800,"y":281,"w":238,"h":38,"offX":0,"offY":0,"sourceW":238,"sourceH":38}, +"icon_lztequan":{"x":1573,"y":654,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_yg2":{"x":284,"y":809,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"m_skillgw2":{"x":1926,"y":0,"w":105,"h":64,"offX":0,"offY":0,"sourceW":106,"sourceH":64}, +"m_yg3":{"x":1262,"y":350,"w":31,"h":34,"offX":0,"offY":0,"sourceW":32,"sourceH":34}, +"icon_shacheng":{"x":1357,"y":582,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_didui1":{"x":736,"y":699,"w":112,"h":33,"offX":8,"offY":1,"sourceW":123,"sourceH":34}, +"skillicon_fs11":{"x":170,"y":1036,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_task_btn":{"x":1078,"y":164,"w":121,"h":34,"offX":0,"offY":0,"sourceW":121,"sourceH":34}, +"icon_weiduanfuli":{"x":1405,"y":510,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon2_nz8":{"x":614,"y":810,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_zhufuguoqing":{"x":1213,"y":651,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"open_bg":{"x":0,"y":0,"w":380,"h":486,"offX":0,"offY":0,"sourceW":380,"sourceH":486}, +"m_twoyg2":{"x":284,"y":877,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"m_twoyg5":{"x":491,"y":1272,"w":48,"h":34,"offX":0,"offY":1,"sourceW":49,"sourceH":35}, +"icon_chongzhi":{"x":357,"y":842,"w":68,"h":70,"offX":2,"offY":2,"sourceW":72,"sourceH":72}, +"skillicon_ty11":{"x":55,"y":1146,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ds5":{"x":110,"y":1138,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"open_bt_4":{"x":870,"y":268,"w":235,"h":50,"offX":10,"offY":6,"sourceW":252,"sourceH":60}, +"m_skillicon_fs10":{"x":1115,"y":911,"w":51,"h":54,"offX":5,"offY":6,"sourceW":60,"sourceH":60}, +"m_heping1":{"x":736,"y":732,"w":112,"h":32,"offX":8,"offY":2,"sourceW":123,"sourceH":34}, +"skillicon2_jz1":{"x":535,"y":913,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"skillicon_ds7":{"x":352,"y":933,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_lock_1":{"x":562,"y":793,"w":52,"h":59,"offX":0,"offY":0,"sourceW":52,"sourceH":59}, +"skillicon_ds4":{"x":462,"y":968,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_360dawanjia":{"x":1805,"y":598,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillicon_ds5":{"x":696,"y":1015,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"m_skillicon_ds9":{"x":779,"y":876,"w":49,"h":55,"offX":5,"offY":5,"sourceW":60,"sourceH":60}, +"skillicon_ty5":{"x":0,"y":1167,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_huidaoyuanfu":{"x":1805,"y":526,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_boss":{"x":1015,"y":795,"w":9,"h":9,"offX":0,"offY":0,"sourceW":9,"sourceH":9}, +"m_sj_dianchi2":{"x":1424,"y":332,"w":41,"h":17,"offX":0,"offY":0,"sourceW":41,"sourceH":17}, +"skillicon_fs9":{"x":110,"y":1083,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_duanwujiajie":{"x":1589,"y":438,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_fs13":{"x":165,"y":1146,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"icon_activity4":{"x":1517,"y":438,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_m_lock_bg":{"x":0,"y":878,"w":64,"h":64,"offX":0,"offY":0,"sourceW":64,"sourceH":64}, +"icon_activity8":{"x":1923,"y":454,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_ku25hezi":{"x":1779,"y":454,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_didui2":{"x":1128,"y":805,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"icon_mafazhanling":{"x":1083,"y":589,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_skillwj":{"x":300,"y":945,"w":45,"h":43,"offX":0,"offY":0,"sourceW":45,"sourceH":43}, +"m_task_btn3":{"x":1472,"y":332,"w":129,"h":44,"offX":0,"offY":0,"sourceW":129,"sourceH":44}, +"icon_womasan":{"x":850,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"icon_fulidating":{"x":634,"y":627,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bq_bg2":{"x":380,"y":318,"w":382,"h":98,"offX":0,"offY":0,"sourceW":384,"sourceH":98}, +"open_bt_8":{"x":1742,"y":229,"w":189,"h":52,"offX":32,"offY":5,"sourceW":252,"sourceH":60}, +"map_dian_11":{"x":1282,"y":723,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"map_k":{"x":870,"y":0,"w":208,"h":207,"offX":0,"offY":0,"sourceW":208,"sourceH":207}, +"m_skillicon_zs2":{"x":552,"y":1147,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"icon_shengxiakuanghuan":{"x":490,"y":483,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_heping2":{"x":1015,"y":857,"w":53,"h":53,"offX":0,"offY":0,"sourceW":53,"sourceH":53}, +"sbss_tab_bg1":{"x":213,"y":1265,"w":5,"h":5,"offX":0,"offY":0,"sourceW":5,"sourceH":5}, +"m_skillicon_zs3":{"x":461,"y":1078,"w":48,"h":54,"offX":6,"offY":6,"sourceW":60,"sourceH":60}, +"name_2_1":{"x":1010,"y":518,"w":73,"h":73,"offX":0,"offY":0,"sourceW":73,"sourceH":73}, +"skillicon2_nz1":{"x":353,"y":1065,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"map_dian_2":{"x":456,"y":1123,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_hecheng":{"x":1949,"y":742,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_yiwancheng":{"x":70,"y":876,"w":93,"h":46,"offX":0,"offY":0,"sourceW":94,"sourceH":46}, +"icon_czzl":{"x":1877,"y":742,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"skillicon_zs1":{"x":0,"y":1112,"w":55,"h":55,"offX":0,"offY":0,"sourceW":55,"sourceH":55}, +"m_lock_2":{"x":227,"y":876,"w":55,"h":58,"offX":0,"offY":0,"sourceW":55,"sourceH":58}, +"m_bg_zhuui1":{"x":380,"y":169,"w":490,"h":149,"offX":0,"offY":0,"sourceW":490,"sourceH":149}, +"icon_hytq":{"x":1714,"y":886,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_dian_7":{"x":284,"y":806,"w":3,"h":3,"offX":0,"offY":0,"sourceW":3,"sourceH":3}, +"icon_huishou":{"x":1282,"y":798,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_m_sd_xt_bg":{"x":430,"y":699,"w":236,"h":21,"offX":0,"offY":0,"sourceW":236,"sourceH":21}, +"icon_kuafulingzhu":{"x":1066,"y":661,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_task_zy1h":{"x":55,"y":1311,"w":43,"h":43,"offX":0,"offY":0,"sourceW":43,"sourceH":43}, +"icon_mijingdabao":{"x":1429,"y":654,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"map_xian":{"x":213,"y":1270,"w":6,"h":2,"offX":0,"offY":2,"sourceW":6,"sourceH":6}, +"bq_icon_5":{"x":1016,"y":442,"w":75,"h":76,"offX":1,"offY":0,"sourceW":76,"sourceH":76}, +"m_btn_bg3":{"x":1790,"y":367,"w":240,"h":32,"offX":0,"offY":0,"sourceW":240,"sourceH":32}, +"icon_shouchong":{"x":144,"y":663,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"m_sj_wifi":{"x":1744,"y":376,"w":35,"h":25,"offX":0,"offY":0,"sourceW":35,"sourceH":25}, +"icon_cydzb":{"x":1091,"y":442,"w":74,"h":74,"offX":0,"offY":0,"sourceW":74,"sourceH":74}, +"btn_shop":{"x":1384,"y":350,"w":88,"h":88,"offX":0,"offY":0,"sourceW":88,"sourceH":88}, +"m_bg_zhuui1_1":{"x":0,"y":486,"w":490,"h":177,"offX":0,"offY":3,"sourceW":490,"sourceH":180}, +"m_bg_zhuui2_1":{"x":380,"y":0,"w":490,"h":169,"offX":0,"offY":11,"sourceW":490,"sourceH":180}}} \ No newline at end of file diff --git a/resource_Publish/assets/phone/mainphone.png b/resource_Publish/assets/phone/mainphone.png new file mode 100644 index 0000000..ab5cda9 Binary files /dev/null and b/resource_Publish/assets/phone/mainphone.png differ diff --git a/resource_Publish/assets/phonebg/loadingGameCat.png b/resource_Publish/assets/phonebg/loadingGameCat.png new file mode 100644 index 0000000..fd79d9d Binary files /dev/null and b/resource_Publish/assets/phonebg/loadingGameCat.png differ diff --git a/resource_Publish/assets/phonebg/loading_1.jpg b/resource_Publish/assets/phonebg/loading_1.jpg new file mode 100644 index 0000000..9580bf0 Binary files /dev/null and b/resource_Publish/assets/phonebg/loading_1.jpg differ diff --git a/resource_Publish/assets/phonebg/loginGameCat#.png b/resource_Publish/assets/phonebg/loginGameCat#.png new file mode 100644 index 0000000..c310e72 Binary files /dev/null and b/resource_Publish/assets/phonebg/loginGameCat#.png differ diff --git a/resource_Publish/assets/phonebg/mp_jzjm.png b/resource_Publish/assets/phonebg/mp_jzjm.png new file mode 100644 index 0000000..68e6165 Binary files /dev/null and b/resource_Publish/assets/phonebg/mp_jzjm.png differ diff --git a/resource_Publish/assets/phonebg/mp_jzjm2.png b/resource_Publish/assets/phonebg/mp_jzjm2.png new file mode 100644 index 0000000..5f983fa Binary files /dev/null and b/resource_Publish/assets/phonebg/mp_jzjm2.png differ diff --git a/resource_Publish/assets/phonebg/mp_login_bg.png b/resource_Publish/assets/phonebg/mp_login_bg.png new file mode 100644 index 0000000..ce93c1b Binary files /dev/null and b/resource_Publish/assets/phonebg/mp_login_bg.png differ diff --git a/resource_Publish/assets/phonebg/mp_xfjm.png b/resource_Publish/assets/phonebg/mp_xfjm.png new file mode 100644 index 0000000..9ac0777 Binary files /dev/null and b/resource_Publish/assets/phonebg/mp_xfjm.png differ diff --git a/resource_Publish/assets/phonebg/mp_xfjm_nztl#.png b/resource_Publish/assets/phonebg/mp_xfjm_nztl#.png new file mode 100644 index 0000000..9d0ee91 Binary files /dev/null and b/resource_Publish/assets/phonebg/mp_xfjm_nztl#.png differ diff --git a/resource_Publish/assets/phonebg/tdbxscloadimg.png b/resource_Publish/assets/phonebg/tdbxscloadimg.png new file mode 100644 index 0000000..8224422 Binary files /dev/null and b/resource_Publish/assets/phonebg/tdbxscloadimg.png differ diff --git a/resource_Publish/assets/phonebg/tdbxscloginimg.png b/resource_Publish/assets/phonebg/tdbxscloginimg.png new file mode 100644 index 0000000..6017a65 Binary files /dev/null and b/resource_Publish/assets/phonebg/tdbxscloginimg.png differ diff --git a/resource_Publish/assets/phonebg/tdbyloadimg.png b/resource_Publish/assets/phonebg/tdbyloadimg.png new file mode 100644 index 0000000..0a25d90 Binary files /dev/null and b/resource_Publish/assets/phonebg/tdbyloadimg.png differ diff --git a/resource_Publish/assets/phonebg/tdloadimg.png b/resource_Publish/assets/phonebg/tdloadimg.png new file mode 100644 index 0000000..672b4cb Binary files /dev/null and b/resource_Publish/assets/phonebg/tdloadimg.png differ diff --git a/resource_Publish/assets/phonebg/tdlogin.png b/resource_Publish/assets/phonebg/tdlogin.png new file mode 100644 index 0000000..a15c0de Binary files /dev/null and b/resource_Publish/assets/phonebg/tdlogin.png differ diff --git a/resource_Publish/assets/phonebg/tdxlbyloadimg.png b/resource_Publish/assets/phonebg/tdxlbyloadimg.png new file mode 100644 index 0000000..10d992a Binary files /dev/null and b/resource_Publish/assets/phonebg/tdxlbyloadimg.png differ diff --git a/resource_Publish/assets/platformFuli/bg_ldsflmrlb2.png b/resource_Publish/assets/platformFuli/bg_ldsflmrlb2.png new file mode 100644 index 0000000..9c5bc88 Binary files /dev/null and b/resource_Publish/assets/platformFuli/bg_ldsflmrlb2.png differ diff --git a/resource_Publish/assets/platformFuli/bg_platform_1.png b/resource_Publish/assets/platformFuli/bg_platform_1.png new file mode 100644 index 0000000..b666bf1 Binary files /dev/null and b/resource_Publish/assets/platformFuli/bg_platform_1.png differ diff --git a/resource_Publish/assets/platformFuli/bg_platform_2.png b/resource_Publish/assets/platformFuli/bg_platform_2.png new file mode 100644 index 0000000..926e383 Binary files /dev/null and b/resource_Publish/assets/platformFuli/bg_platform_2.png differ diff --git a/resource_Publish/assets/platformFuli/bg_platform_3.png b/resource_Publish/assets/platformFuli/bg_platform_3.png new file mode 100644 index 0000000..acd666b Binary files /dev/null and b/resource_Publish/assets/platformFuli/bg_platform_3.png differ diff --git a/resource_Publish/assets/platformFuli/bg_shunwang_fangchenmi.png b/resource_Publish/assets/platformFuli/bg_shunwang_fangchenmi.png new file mode 100644 index 0000000..f2242ed Binary files /dev/null and b/resource_Publish/assets/platformFuli/bg_shunwang_fangchenmi.png differ diff --git a/resource_Publish/assets/platformFuli/platformFuli.json b/resource_Publish/assets/platformFuli/platformFuli.json new file mode 100644 index 0000000..44ac6c3 --- /dev/null +++ b/resource_Publish/assets/platformFuli/platformFuli.json @@ -0,0 +1,36 @@ +{"file":"platformFuli.png","frames":{ +"YY_yq_jiang":{"x":919,"y":283,"w":30,"h":40,"offX":0,"offY":0,"sourceW":30,"sourceH":40}, +"4366_jqfulibt":{"x":682,"y":1,"w":177,"h":63,"offX":0,"offY":0,"sourceW":178,"sourceH":64}, +"bg_platform_quyu1":{"x":1,"y":234,"w":538,"h":28,"offX":0,"offY":0,"sourceW":538,"sourceH":28}, +"biaoti_4366vip":{"x":194,"y":264,"w":180,"h":53,"offX":0,"offY":0,"sourceW":180,"sourceH":53}, +"biaoti_bangdingyouli":{"x":837,"y":128,"w":183,"h":55,"offX":0,"offY":0,"sourceW":183,"sourceH":55}, +"biaoti_chaojivip":{"x":146,"y":319,"w":179,"h":47,"offX":0,"offY":0,"sourceW":179,"sourceH":47}, +"biaoti_datingtequan":{"x":1,"y":264,"w":191,"h":51,"offX":0,"offY":0,"sourceW":191,"sourceH":51}, +"biaoti_ku25hezifuli":{"x":376,"y":275,"w":178,"h":52,"offX":0,"offY":0,"sourceW":178,"sourceH":52}, +"biaoti_shoujilibao":{"x":556,"y":328,"w":157,"h":46,"offX":0,"offY":0,"sourceW":157,"sourceH":46}, +"biaoti_wanshanziliao":{"x":735,"y":326,"w":156,"h":48,"offX":0,"offY":0,"sourceW":156,"sourceH":48}, +"biaoti_weixinlibao":{"x":735,"y":275,"w":182,"h":49,"offX":0,"offY":0,"sourceW":182,"sourceH":49}, +"biaoti_yxdt":{"x":556,"y":275,"w":177,"h":51,"offX":0,"offY":0,"sourceW":177,"sourceH":51}, +"btnt_qwyz":{"x":932,"y":214,"w":85,"h":21,"offX":0,"offY":0,"sourceW":85,"sourceH":21}, +"jiangli_bt":{"x":1,"y":317,"w":143,"h":62,"offX":0,"offY":0,"sourceW":144,"sourceH":62}, +"lingqu_bt":{"x":861,"y":1,"w":143,"h":62,"offX":0,"offY":0,"sourceW":144,"sourceH":62}, +"mun_1":{"x":1012,"y":90,"w":10,"h":18,"offX":0,"offY":0,"sourceW":10,"sourceH":18}, +"mun_2":{"x":997,"y":90,"w":13,"h":19,"offX":0,"offY":0,"sourceW":13,"sourceH":19}, +"mun_3":{"x":1006,"y":43,"w":13,"h":19,"offX":0,"offY":0,"sourceW":13,"sourceH":19}, +"mun_4":{"x":1006,"y":1,"w":15,"h":19,"offX":0,"offY":0,"sourceW":15,"sourceH":19}, +"mun_5":{"x":665,"y":97,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"mun_6":{"x":1006,"y":22,"w":13,"h":19,"offX":0,"offY":0,"sourceW":13,"sourceH":19}, +"mun_7":{"x":650,"y":97,"w":13,"h":18,"offX":0,"offY":0,"sourceW":13,"sourceH":18}, +"mun_bg":{"x":997,"y":65,"w":23,"h":23,"offX":0,"offY":0,"sourceW":23,"sourceH":23}, +"mun_bg2":{"x":541,"y":234,"w":389,"h":39,"offX":0,"offY":0,"sourceW":389,"sourceH":39}, +"property_3":{"x":1,"y":1,"w":679,"h":94,"offX":0,"offY":0,"sourceW":679,"sourceH":94}, +"t_erweima":{"x":869,"y":185,"w":74,"h":27,"offX":0,"offY":0,"sourceW":74,"sourceH":27}, +"t_fuzhi":{"x":945,"y":185,"w":61,"h":27,"offX":0,"offY":0,"sourceW":61,"sourceH":27}, +"tab_bg_ldsfl":{"x":1,"y":197,"w":866,"h":35,"offX":0,"offY":0,"sourceW":866,"sourceH":35}, +"tab_ldsfl1":{"x":869,"y":96,"w":126,"h":29,"offX":0,"offY":0,"sourceW":126,"sourceH":29}, +"tab_ldsfl2":{"x":869,"y":65,"w":126,"h":29,"offX":0,"offY":0,"sourceW":126,"sourceH":29}, +"txt_djxz":{"x":932,"y":260,"w":83,"h":21,"offX":0,"offY":0,"sourceW":83,"sourceH":21}, +"txt_shenfenyanzheng":{"x":1,"y":97,"w":647,"h":98,"offX":0,"offY":0,"sourceW":647,"sourceH":98}, +"txt_xzhz":{"x":932,"y":237,"w":83,"h":21,"offX":0,"offY":0,"sourceW":83,"sourceH":21}, +"YY_yq_1":{"x":650,"y":128,"w":185,"h":59,"offX":0,"offY":0,"sourceW":185,"sourceH":59}, +"YY_yq_2":{"x":682,"y":66,"w":185,"h":60,"offX":0,"offY":0,"sourceW":185,"sourceH":60}}} \ No newline at end of file diff --git a/resource_Publish/assets/platformFuli/platformFuli.png b/resource_Publish/assets/platformFuli/platformFuli.png new file mode 100644 index 0000000..492f8a7 Binary files /dev/null and b/resource_Publish/assets/platformFuli/platformFuli.png differ diff --git a/resource_Publish/assets/platformFuli/weiduan_denglu.png b/resource_Publish/assets/platformFuli/weiduan_denglu.png new file mode 100644 index 0000000..d7605e3 Binary files /dev/null and b/resource_Publish/assets/platformFuli/weiduan_denglu.png differ diff --git a/resource_Publish/assets/qidian/banner_qidianvip.png b/resource_Publish/assets/qidian/banner_qidianvip.png new file mode 100644 index 0000000..4325e69 Binary files /dev/null and b/resource_Publish/assets/qidian/banner_qidianvip.png differ diff --git a/resource_Publish/assets/qidian/bg_qidianbdsj.png b/resource_Publish/assets/qidian/bg_qidianbdsj.png new file mode 100644 index 0000000..0ecb0ce Binary files /dev/null and b/resource_Publish/assets/qidian/bg_qidianbdsj.png differ diff --git a/resource_Publish/assets/qidian/bg_qidianvip.png b/resource_Publish/assets/qidian/bg_qidianvip.png new file mode 100644 index 0000000..0be5188 Binary files /dev/null and b/resource_Publish/assets/qidian/bg_qidianvip.png differ diff --git a/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.json b/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.json new file mode 100644 index 0000000..508ba30 --- /dev/null +++ b/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.json @@ -0,0 +1,19 @@ +{"file":"qqBlueDiamond.png","frames":{ +"lz_ktlzbt":{"x":844,"y":466,"w":155,"h":32,"offX":0,"offY":0,"sourceW":156,"sourceH":32}, +"lz_xfnflzbt":{"x":687,"y":404,"w":195,"h":32,"offX":0,"offY":0,"sourceW":196,"sourceH":32}, +"biaoti_lztequan":{"x":881,"y":1,"w":137,"h":42,"offX":0,"offY":0,"sourceW":138,"sourceH":42}, +"lztq_frame1":{"x":687,"y":105,"w":230,"h":220,"offX":0,"offY":0,"sourceW":230,"sourceH":220}, +"lz_lzxinshou_dabiaoti":{"x":687,"y":327,"w":280,"h":41,"offX":0,"offY":0,"sourceW":280,"sourceH":42}, +"lz_tqzl4":{"x":1,"y":441,"w":684,"h":110,"offX":0,"offY":0,"sourceW":684,"sourceH":110}, +"wenzi_lzhhbewlq":{"x":687,"y":438,"w":208,"h":26,"offX":0,"offY":0,"sourceW":208,"sourceH":26}, +"lz_ktnflzbt":{"x":687,"y":370,"w":195,"h":32,"offX":0,"offY":0,"sourceW":196,"sourceH":32}, +"lztq_frame":{"x":1,"y":740,"w":431,"h":117,"offX":0,"offY":0,"sourceW":432,"sourceH":118}, +"lz_tqzl2":{"x":1,"y":329,"w":684,"h":110,"offX":0,"offY":0,"sourceW":684,"sourceH":110}, +"banner_lzshangcheng":{"x":1,"y":553,"w":701,"h":102,"offX":0,"offY":0,"sourceW":701,"sourceH":102}, +"lz_tqzl1":{"x":1,"y":217,"w":684,"h":110,"offX":0,"offY":0,"sourceW":684,"sourceH":110}, +"lz_xflzbt":{"x":687,"y":466,"w":155,"h":32,"offX":0,"offY":0,"sourceW":156,"sourceH":32}, +"lz_czhuaxian":{"x":881,"y":45,"w":47,"h":13,"offX":0,"offY":0,"sourceW":47,"sourceH":13}, +"wenzi_nflzgzewlq":{"x":687,"y":500,"w":211,"h":23,"offX":0,"offY":0,"sourceW":212,"sourceH":24}, +"banner_lztequan":{"x":1,"y":1,"w":878,"h":102,"offX":0,"offY":0,"sourceW":878,"sourceH":102}, +"lz_tqzl3":{"x":1,"y":105,"w":684,"h":110,"offX":0,"offY":0,"sourceW":684,"sourceH":110}, +"banner_lzchongzhi":{"x":1,"y":657,"w":873,"h":81,"offX":0,"offY":0,"sourceW":873,"sourceH":81}}} \ No newline at end of file diff --git a/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.png b/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.png new file mode 100644 index 0000000..1861b51 Binary files /dev/null and b/resource_Publish/assets/qqBlueDiamond/qqBlueDiamond.png differ diff --git a/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.json b/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.json new file mode 100644 index 0000000..ac75c43 --- /dev/null +++ b/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.json @@ -0,0 +1,9 @@ +{"file":"QQLobby.png","frames":{ +"banner_qqdating":{"x":1,"y":1,"w":878,"h":102,"offX":0,"offY":0,"sourceW":878,"sourceH":102}, +"biaoti_qqdating":{"x":654,"y":105,"w":325,"h":45,"offX":0,"offY":0,"sourceW":325,"sourceH":45}, +"qq_bt1":{"x":654,"y":214,"w":186,"h":59,"offX":0,"offY":0,"sourceW":186,"sourceH":59}, +"qq_bt2":{"x":654,"y":152,"w":186,"h":60,"offX":0,"offY":0,"sourceW":186,"sourceH":60}, +"qqdt_dengji_frame":{"x":1,"y":105,"w":651,"h":117,"offX":0,"offY":0,"sourceW":652,"sourceH":118}, +"qqdt_jiangli_sign":{"x":881,"y":1,"w":30,"h":40,"offX":0,"offY":0,"sourceW":30,"sourceH":40}, +"qqdt_meir_dabiaoti":{"x":215,"y":224,"w":211,"h":41,"offX":0,"offY":0,"sourceW":211,"sourceH":41}, +"qqdt_xinshou_dabiaoti":{"x":1,"y":224,"w":212,"h":41,"offX":0,"offY":0,"sourceW":212,"sourceH":41}}} \ No newline at end of file diff --git a/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.png b/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.png new file mode 100644 index 0000000..268fd18 Binary files /dev/null and b/resource_Publish/assets/qqLobbyPrivilegesWin/QQLobby.png differ diff --git a/resource_Publish/assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png b/resource_Publish/assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png new file mode 100644 index 0000000..2381ccf Binary files /dev/null and b/resource_Publish/assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png differ diff --git a/resource_Publish/assets/rank/rank.json b/resource_Publish/assets/rank/rank.json new file mode 100644 index 0000000..51de4f2 --- /dev/null +++ b/resource_Publish/assets/rank/rank.json @@ -0,0 +1,27 @@ +{"file":"rank.png","frames":{ +"rank_bk":{"x":952,"y":76,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"rank_cx":{"x":901,"y":76,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"rank_pm3":{"x":1,"y":93,"w":33,"h":33,"offX":0,"offY":0,"sourceW":33,"sourceH":33}, +"phb_tab_22":{"x":905,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_bg2":{"x":1,"y":1,"w":514,"h":45,"offX":0,"offY":0,"sourceW":514,"sourceH":45}, +"rank_ck":{"x":748,"y":76,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"rank_lk1":{"x":697,"y":67,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"phb_tab_02":{"x":849,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_tab2":{"x":517,"y":1,"w":122,"h":64,"offX":0,"offY":0,"sourceW":122,"sourceH":64}, +"phb_tab_42":{"x":793,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_pm2":{"x":36,"y":93,"w":33,"h":33,"offX":0,"offY":0,"sourceW":33,"sourceH":33}, +"phb_tab_01":{"x":765,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_ch2":{"x":799,"y":76,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"phb_tab_41":{"x":877,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_lk":{"x":595,"y":67,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"rank_zk":{"x":544,"y":67,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"rank_pm1":{"x":71,"y":93,"w":33,"h":33,"offX":0,"offY":0,"sourceW":33,"sourceH":33}, +"rank_bg3":{"x":1,"y":48,"w":514,"h":43,"offX":0,"offY":0,"sourceW":514,"sourceH":43}, +"rank_tab1":{"x":641,"y":1,"w":122,"h":64,"offX":0,"offY":0,"sourceW":122,"sourceH":64}, +"rank_ch1":{"x":850,"y":76,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}, +"phb_tab_31":{"x":987,"y":1,"w":25,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"phb_tab_21":{"x":821,"y":1,"w":26,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"phb_tab_32":{"x":933,"y":1,"w":25,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"phb_tab_12":{"x":517,"y":67,"w":25,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"phb_tab_11":{"x":960,"y":1,"w":25,"h":73,"offX":4,"offY":17,"sourceW":39,"sourceH":111}, +"rank_cy":{"x":646,"y":67,"w":49,"h":26,"offX":0,"offY":0,"sourceW":49,"sourceH":26}}} \ No newline at end of file diff --git a/resource_Publish/assets/rank/rank.png b/resource_Publish/assets/rank/rank.png new file mode 100644 index 0000000..41c6f30 Binary files /dev/null and b/resource_Publish/assets/rank/rank.png differ diff --git a/resource_Publish/assets/rank/rank_bg.png b/resource_Publish/assets/rank/rank_bg.png new file mode 100644 index 0000000..0cf12ef Binary files /dev/null and b/resource_Publish/assets/rank/rank_bg.png differ diff --git a/resource_Publish/assets/recharge/recharge.json b/resource_Publish/assets/recharge/recharge.json new file mode 100644 index 0000000..22b4a68 --- /dev/null +++ b/resource_Publish/assets/recharge/recharge.json @@ -0,0 +1,14 @@ +{"file":"recharge.png","frames":{ +"cz_icon5":{"x":364,"y":1,"w":141,"h":98,"offX":0,"offY":0,"sourceW":141,"sourceH":98}, +"cz_icon1":{"x":1,"y":258,"w":73,"h":57,"offX":0,"offY":0,"sourceW":73,"sourceH":57}, +"cz_10bei":{"x":162,"y":207,"w":203,"h":50,"offX":0,"offY":0,"sourceW":203,"sourceH":50}, +"cz_icon2":{"x":367,"y":201,"w":96,"h":74,"offX":0,"offY":0,"sourceW":96,"sourceH":74}, +"cz_icon3":{"x":201,"y":102,"w":152,"h":103,"offX":0,"offY":0,"sourceW":152,"sourceH":103}, +"biaoti_cz":{"x":1,"y":210,"w":104,"h":46,"offX":0,"offY":0,"sourceW":104,"sourceH":46}, +"cz_icon6":{"x":1,"y":132,"w":159,"h":76,"offX":0,"offY":0,"sourceW":159,"sourceH":76}, +"cz_bg1":{"x":465,"y":201,"w":44,"h":44,"offX":0,"offY":0,"sourceW":44,"sourceH":44}, +"cz_icon7":{"x":201,"y":1,"w":161,"h":99,"offX":0,"offY":0,"sourceW":161,"sourceH":99}, +"cz_icon8":{"x":1,"y":1,"w":198,"h":129,"offX":0,"offY":0,"sourceW":198,"sourceH":129}, +"cz_icon4":{"x":355,"y":102,"w":156,"h":97,"offX":0,"offY":0,"sourceW":156,"sourceH":97}, +"cz_10bei2":{"x":198,"y":259,"w":120,"h":22,"offX":0,"offY":0,"sourceW":120,"sourceH":22}, +"cz_10bei1":{"x":76,"y":259,"w":120,"h":22,"offX":0,"offY":0,"sourceW":120,"sourceH":22}}} \ No newline at end of file diff --git a/resource_Publish/assets/recharge/recharge.png b/resource_Publish/assets/recharge/recharge.png new file mode 100644 index 0000000..75edf2f Binary files /dev/null and b/resource_Publish/assets/recharge/recharge.png differ diff --git a/resource_Publish/assets/result/result.json b/resource_Publish/assets/result/result.json new file mode 100644 index 0000000..1769836 --- /dev/null +++ b/resource_Publish/assets/result/result.json @@ -0,0 +1,9 @@ +{"file":"result.png","frames":{ +"result_lost1":{"x":810,"y":138,"w":137,"h":71,"offX":0,"offY":0,"sourceW":137,"sourceH":71}, +"result_lost":{"x":418,"y":1,"w":390,"h":571,"offX":0,"offY":0,"sourceW":390,"sourceH":571}, +"result_lost3":{"x":810,"y":211,"w":173,"h":35,"offX":0,"offY":0,"sourceW":173,"sourceH":35}, +"result_btn":{"x":810,"y":80,"w":174,"h":56,"offX":0,"offY":0,"sourceW":174,"sourceH":56}, +"result_lost2":{"x":656,"y":574,"w":237,"h":35,"offX":0,"offY":0,"sourceW":237,"sourceH":35}, +"result_win":{"x":1,"y":1,"w":415,"h":628,"offX":0,"offY":0,"sourceW":415,"sourceH":628}, +"result_win1":{"x":810,"y":1,"w":134,"h":77,"offX":0,"offY":0,"sourceW":134,"sourceH":77}, +"result_win2":{"x":418,"y":574,"w":236,"h":70,"offX":0,"offY":0,"sourceW":236,"sourceH":70}}} \ No newline at end of file diff --git a/resource_Publish/assets/result/result.png b/resource_Publish/assets/result/result.png new file mode 100644 index 0000000..8f8f19b Binary files /dev/null and b/resource_Publish/assets/result/result.png differ diff --git a/resource_Publish/assets/resurrection/resurrection.json b/resource_Publish/assets/resurrection/resurrection.json new file mode 100644 index 0000000..c8c78fb --- /dev/null +++ b/resource_Publish/assets/resurrection/resurrection.json @@ -0,0 +1,4 @@ +{"file":"resurrection.png","frames":{ +"revive_bg":{"x":1,"y":1,"w":301,"h":145,"offX":0,"offY":0,"sourceW":301,"sourceH":145}, +"revive_btn":{"x":1,"y":148,"w":95,"h":34,"offX":0,"offY":0,"sourceW":95,"sourceH":34}, +"revive_zz":{"x":304,"y":1,"w":172,"h":172,"offX":0,"offY":0,"sourceW":172,"sourceH":172}}} \ No newline at end of file diff --git a/resource_Publish/assets/resurrection/resurrection.png b/resource_Publish/assets/resurrection/resurrection.png new file mode 100644 index 0000000..c953451 Binary files /dev/null and b/resource_Publish/assets/resurrection/resurrection.png differ diff --git a/resource_Publish/assets/ring/bg_ring.png b/resource_Publish/assets/ring/bg_ring.png new file mode 100644 index 0000000..032104c Binary files /dev/null and b/resource_Publish/assets/ring/bg_ring.png differ diff --git a/resource_Publish/assets/ring/ring.json b/resource_Publish/assets/ring/ring.json new file mode 100644 index 0000000..6e01424 --- /dev/null +++ b/resource_Publish/assets/ring/ring.json @@ -0,0 +1,28 @@ +{"file":"ring.png","frames":{ +"btn_sj_4_u":{"x":297,"y":132,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"t_ring5":{"x":109,"y":165,"w":106,"h":24,"offX":0,"offY":2,"sourceW":106,"sourceH":27}, +"t_ring4":{"x":93,"y":191,"w":90,"h":27,"offX":0,"offY":0,"sourceW":90,"sourceH":27}, +"btn_sj_1_d":{"x":435,"y":122,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"t_ring3":{"x":1,"y":185,"w":90,"h":28,"offX":0,"offY":0,"sourceW":90,"sourceH":28}, +"ring_jiantou_1":{"x":63,"y":99,"w":21,"h":38,"offX":0,"offY":0,"sourceW":21,"sourceH":38}, +"icon_ring_3":{"x":311,"y":1,"w":64,"h":69,"offX":35,"offY":27,"sourceW":124,"sourceH":126}, +"btn_sj_5_d":{"x":1,"y":99,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_sj_4_d":{"x":100,"y":87,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_sj_2_u":{"x":377,"y":1,"w":60,"h":59,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"ring_jiantou_2":{"x":274,"y":135,"w":21,"h":38,"offX":0,"offY":0,"sourceW":21,"sourceH":38}, +"t_ring6":{"x":359,"y":182,"w":106,"h":24,"offX":0,"offY":0,"sourceW":106,"sourceH":24}, +"icon_ring_xuanzhong":{"x":173,"y":1,"w":70,"h":70,"offX":0,"offY":0,"sourceW":70,"sourceH":70}, +"icon_ring_2":{"x":245,"y":1,"w":64,"h":72,"offX":33,"offY":25,"sourceW":124,"sourceH":126}, +"btn_sj_3_u":{"x":439,"y":62,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"icon_ring_1":{"x":100,"y":1,"w":71,"h":84,"offX":29,"offY":15,"sourceW":124,"sourceH":126}, +"btn_sj_1_u":{"x":373,"y":122,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_sj_5_u":{"x":235,"y":75,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"t_ring2":{"x":185,"y":191,"w":89,"h":27,"offX":0,"offY":0,"sourceW":89,"sourceH":27}, +"tbg_ring":{"x":276,"y":208,"w":84,"h":18,"offX":0,"offY":0,"sourceW":84,"sourceH":18}, +"icon_ring_4":{"x":1,"y":1,"w":97,"h":96,"offX":15,"offY":12,"sourceW":124,"sourceH":126}, +"btn_sj_3_d":{"x":311,"y":72,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"t_ring":{"x":162,"y":135,"w":110,"h":28,"offX":0,"offY":0,"sourceW":110,"sourceH":28}, +"btn_sj_2_d":{"x":439,"y":1,"w":60,"h":59,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_sj_6_u":{"x":173,"y":73,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"t_ring7":{"x":1,"y":159,"w":106,"h":24,"offX":0,"offY":0,"sourceW":106,"sourceH":24}, +"btn_sj_6_d":{"x":377,"y":62,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}}} \ No newline at end of file diff --git a/resource_Publish/assets/ring/ring.png b/resource_Publish/assets/ring/ring.png new file mode 100644 index 0000000..163f146 Binary files /dev/null and b/resource_Publish/assets/ring/ring.png differ diff --git a/resource_Publish/assets/role/Godturn_bg.png b/resource_Publish/assets/role/Godturn_bg.png new file mode 100644 index 0000000..300d977 Binary files /dev/null and b/resource_Publish/assets/role/Godturn_bg.png differ diff --git a/resource_Publish/assets/role/bg_gz.png b/resource_Publish/assets/role/bg_gz.png new file mode 100644 index 0000000..969e9cb Binary files /dev/null and b/resource_Publish/assets/role/bg_gz.png differ diff --git a/resource_Publish/assets/role/bg_neigongzb.png b/resource_Publish/assets/role/bg_neigongzb.png new file mode 100644 index 0000000..89828b3 Binary files /dev/null and b/resource_Publish/assets/role/bg_neigongzb.png differ diff --git a/resource_Publish/assets/role/bg_sixiang.png b/resource_Publish/assets/role/bg_sixiang.png new file mode 100644 index 0000000..e3034a2 Binary files /dev/null and b/resource_Publish/assets/role/bg_sixiang.png differ diff --git a/resource_Publish/assets/role/bg_sixiang2.png b/resource_Publish/assets/role/bg_sixiang2.png new file mode 100644 index 0000000..4771951 Binary files /dev/null and b/resource_Publish/assets/role/bg_sixiang2.png differ diff --git a/resource_Publish/assets/role/bg_zijue.png b/resource_Publish/assets/role/bg_zijue.png new file mode 100644 index 0000000..89a60ff Binary files /dev/null and b/resource_Publish/assets/role/bg_zijue.png differ diff --git a/resource_Publish/assets/role/binghun_bg.png b/resource_Publish/assets/role/binghun_bg.png new file mode 100644 index 0000000..2511459 Binary files /dev/null and b/resource_Publish/assets/role/binghun_bg.png differ diff --git a/resource_Publish/assets/role/binghun_bg1.png b/resource_Publish/assets/role/binghun_bg1.png new file mode 100644 index 0000000..57e95b6 Binary files /dev/null and b/resource_Publish/assets/role/binghun_bg1.png differ diff --git a/resource_Publish/assets/role/blessing_bg.png b/resource_Publish/assets/role/blessing_bg.png new file mode 100644 index 0000000..b7e14ca Binary files /dev/null and b/resource_Publish/assets/role/blessing_bg.png differ diff --git a/resource_Publish/assets/role/chongwu_bg.png b/resource_Publish/assets/role/chongwu_bg.png new file mode 100644 index 0000000..de50d02 Binary files /dev/null and b/resource_Publish/assets/role/chongwu_bg.png differ diff --git a/resource_Publish/assets/role/qh_bg.png b/resource_Publish/assets/role/qh_bg.png new file mode 100644 index 0000000..24375d0 Binary files /dev/null and b/resource_Publish/assets/role/qh_bg.png differ diff --git a/resource_Publish/assets/role/role.json b/resource_Publish/assets/role/role.json new file mode 100644 index 0000000..60bc1da --- /dev/null +++ b/resource_Publish/assets/role/role.json @@ -0,0 +1,226 @@ +{"file":"role.png","frames":{ +"gz_zw_28":{"x":763,"y":491,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_26":{"x":610,"y":491,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_24":{"x":151,"y":490,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_22":{"x":457,"y":469,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_20":{"x":304,"y":465,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_19":{"x":766,"y":461,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_27":{"x":613,"y":461,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_25":{"x":151,"y":460,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_23":{"x":460,"y":439,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"gz_zw_21":{"x":151,"y":430,"w":151,"h":28,"offX":16,"offY":3,"sourceW":182,"sourceH":36}, +"zj_5_4":{"x":399,"y":265,"w":97,"h":95,"offX":3,"offY":5,"sourceW":102,"sourceH":103}, +"zj_5_2":{"x":194,"y":272,"w":92,"h":93,"offX":5,"offY":5,"sourceW":102,"sourceH":103}, +"zj_3_3":{"x":428,"y":166,"w":99,"h":97,"offX":2,"offY":4,"sourceW":102,"sourceH":103}, +"zj_1_4":{"x":924,"y":1,"w":99,"h":99,"offX":2,"offY":2,"sourceW":102,"sourceH":103}, +"zj_3_1":{"x":201,"y":174,"w":98,"h":96,"offX":2,"offY":5,"sourceW":102,"sourceH":103}, +"zj_1_2":{"x":101,"y":174,"w":98,"h":96,"offX":2,"offY":2,"sourceW":102,"sourceH":103}, +"zj_4_3":{"x":529,"y":166,"w":99,"h":96,"offX":2,"offY":5,"sourceW":102,"sourceH":103}, +"zj_2_4":{"x":630,"y":166,"w":98,"h":96,"offX":2,"offY":5,"sourceW":102,"sourceH":103}, +"zj_4_1":{"x":830,"y":202,"w":98,"h":96,"offX":2,"offY":5,"sourceW":102,"sourceH":103}, +"zj_2_2":{"x":930,"y":202,"w":93,"h":94,"offX":5,"offY":4,"sourceW":102,"sourceH":103}, +"zj_5_3":{"x":1,"y":272,"w":95,"h":94,"offX":5,"offY":5,"sourceW":102,"sourceH":103}, +"zj_3_4":{"x":823,"y":1,"w":99,"h":99,"offX":2,"offY":2,"sourceW":102,"sourceH":103}, +"zj_5_1":{"x":930,"y":298,"w":92,"h":93,"offX":5,"offY":5,"sourceW":102,"sourceH":103}, +"zj_3_2":{"x":1,"y":174,"w":98,"h":96,"offX":2,"offY":2,"sourceW":102,"sourceH":103}, +"zj_1_3":{"x":327,"y":166,"w":99,"h":97,"offX":2,"offY":4,"sourceW":102,"sourceH":103}, +"zj_1_1":{"x":730,"y":202,"w":98,"h":96,"offX":2,"offY":5,"sourceW":102,"sourceH":103}, +"zj_4_4":{"x":823,"y":102,"w":99,"h":98,"offX":2,"offY":3,"sourceW":102,"sourceH":103}, +"zj_4_2":{"x":628,"y":264,"w":97,"h":96,"offX":3,"offY":2,"sourceW":102,"sourceH":103}, +"zj_2_3":{"x":529,"y":264,"w":97,"h":96,"offX":3,"offY":5,"sourceW":102,"sourceH":103}, +"zj_2_1":{"x":98,"y":272,"w":94,"h":93,"offX":5,"offY":5,"sourceW":102,"sourceH":103}, +"role_bh_mc3":{"x":815,"y":808,"w":86,"h":23,"offX":0,"offY":0,"sourceW":86,"sourceH":23}, +"role_bh_mc1":{"x":83,"y":814,"w":85,"h":23,"offX":0,"offY":0,"sourceW":85,"sourceH":23}, +"role_bh_mc4":{"x":170,"y":817,"w":85,"h":23,"offX":0,"offY":0,"sourceW":85,"sourceH":23}, +"role_bh_mc2":{"x":454,"y":807,"w":86,"h":23,"offX":0,"offY":0,"sourceW":86,"sourceH":23}, +"btn_js_zj2":{"x":710,"y":613,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_zj":{"x":1,"y":605,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_ngbs":{"x":959,"y":506,"w":59,"h":65,"offX":3,"offY":1,"sourceW":66,"sourceH":66}, +"t_neigongzb1":{"x":1,"y":798,"w":80,"h":25,"offX":0,"offY":0,"sourceW":80,"sourceH":25}, +"tab_ngzbt12":{"x":903,"y":860,"w":23,"h":53,"offX":7,"offY":14,"sourceW":32,"sourceH":90}, +"tab_ngzbt01":{"x":301,"y":174,"w":23,"h":53,"offX":6,"offY":14,"sourceW":32,"sourceH":90}, +"bg_neigongzb1":{"x":383,"y":528,"w":86,"h":11,"offX":0,"offY":0,"sourceW":86,"sourceH":11}, +"tab_ngzb1":{"x":905,"y":732,"w":32,"h":90,"offX":0,"offY":0,"sourceW":32,"sourceH":90}, +"t_neigongzb":{"x":304,"y":433,"w":83,"h":26,"offX":0,"offY":0,"sourceW":83,"sourceH":26}, +"tab_ngzbt02":{"x":701,"y":867,"w":23,"h":53,"offX":6,"offY":14,"sourceW":32,"sourceH":90}, +"tab_ngzbt11":{"x":928,"y":860,"w":23,"h":53,"offX":7,"offY":14,"sourceW":32,"sourceH":90}, +"tab_ngzb":{"x":939,"y":732,"w":32,"h":90,"offX":0,"offY":0,"sourceW":32,"sourceH":90}, +"icon_neigong":{"x":88,"y":765,"w":56,"h":47,"offX":2,"offY":6,"sourceW":60,"sourceH":60}, +"btn_neigong":{"x":125,"y":602,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_neigong2":{"x":497,"y":660,"w":58,"h":58,"offX":2,"offY":2,"sourceW":62,"sourceH":62}, +"ng_t_neigong":{"x":1,"y":368,"w":83,"h":26,"offX":0,"offY":0,"sourceW":83,"sourceH":26}, +"btn_chongwu_icon2":{"x":965,"y":573,"w":58,"h":58,"offX":1,"offY":1,"sourceW":60,"sourceH":60}, +"btn_chongwu_icon":{"x":557,"y":660,"w":58,"h":58,"offX":1,"offY":1,"sourceW":60,"sourceH":60}, +"btn_jn_bh":{"x":183,"y":662,"w":57,"h":57,"offX":2,"offY":2,"sourceW":62,"sourceH":62}, +"btn_jn_bh2":{"x":1,"y":665,"w":57,"h":57,"offX":2,"offY":2,"sourceW":62,"sourceH":62}, +"role_tab_sw2":{"x":249,"y":602,"w":25,"h":55,"offX":4,"offY":19,"sourceW":39,"sourceH":111}, +"role_tab_sw1":{"x":438,"y":859,"w":25,"h":55,"offX":4,"offY":19,"sourceW":39,"sourceH":111}, +"blessing_xingxing":{"x":815,"y":778,"w":30,"h":28,"offX":0,"offY":1,"sourceW":30,"sourceH":30}, +"blessing_xingxing1":{"x":269,"y":520,"w":30,"h":28,"offX":0,"offY":1,"sourceW":30,"sourceH":30}, +"blessing_taiyan":{"x":57,"y":869,"w":30,"h":30,"offX":0,"offY":0,"sourceW":30,"sourceH":30}, +"blessing_taiyan1":{"x":726,"y":867,"w":30,"h":30,"offX":0,"offY":0,"sourceW":30,"sourceH":30}, +"blessing_yueliang1":{"x":994,"y":694,"w":28,"h":29,"offX":1,"offY":0,"sourceW":30,"sourceH":30}, +"blessing_yueliang":{"x":498,"y":323,"w":28,"h":29,"offX":1,"offY":0,"sourceW":30,"sourceH":30}, +"anjian_qingkong":{"x":613,"y":838,"w":58,"h":28,"offX":14,"offY":11,"sourceW":87,"sourceH":49}, +"role_k2":{"x":1,"y":757,"w":394,"h":6,"offX":0,"offY":0,"sourceW":394,"sourceH":6}, +"qh_sxbg":{"x":1,"y":1,"w":363,"h":96,"offX":0,"offY":0,"sourceW":363,"sourceH":96}, +"btn_js_ch":{"x":586,"y":600,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"qh_icon_yaodai2":{"x":515,"y":758,"w":60,"h":46,"offX":0,"offY":8,"sourceW":60,"sourceH":60}, +"sz_bg_3":{"x":127,"y":498,"w":20,"h":20,"offX":0,"offY":0,"sourceW":20,"sourceH":20}, +"anjian_6":{"x":785,"y":871,"w":21,"h":28,"offX":17,"offY":15,"sourceW":56,"sourceH":59}, +"Godturn_cionbg_4":{"x":733,"y":673,"w":56,"h":57,"offX":0,"offY":0,"sourceW":56,"sourceH":57}, +"Godturn_cionbg_2":{"x":675,"y":673,"w":56,"h":58,"offX":0,"offY":0,"sourceW":56,"sourceH":58}, +"qh_icon_wuqi":{"x":854,"y":755,"w":49,"h":51,"offX":5,"offY":4,"sourceW":60,"sourceH":60}, +"anjian_4":{"x":168,"y":882,"w":21,"h":27,"offX":17,"offY":15,"sourceW":56,"sourceH":59}, +"anjian_2":{"x":328,"y":883,"w":21,"h":27,"offX":17,"offY":16,"sourceW":56,"sourceH":59}, +"role_tab4":{"x":42,"y":430,"w":39,"h":111,"offX":0,"offY":0,"sourceW":39,"sourceH":111}, +"Godturn_jh_wjh":{"x":383,"y":499,"w":147,"h":27,"offX":0,"offY":0,"sourceW":147,"sourceH":27}, +"btn_dz_qh":{"x":849,"y":694,"w":54,"h":59,"offX":5,"offY":2,"sourceW":62,"sourceH":62}, +"role_tab2":{"x":919,"y":461,"w":38,"h":107,"offX":0,"offY":0,"sourceW":39,"sourceH":111}, +"anjian_bg":{"x":125,"y":662,"w":56,"h":59,"offX":0,"offY":0,"sourceW":56,"sourceH":59}, +"btn_shuxing_1":{"x":906,"y":300,"w":19,"h":54,"offX":0,"offY":0,"sourceW":19,"sourceH":54}, +"Godturn_iconk":{"x":727,"y":300,"w":92,"h":92,"offX":0,"offY":0,"sourceW":92,"sourceH":92}, +"sz_tab_1":{"x":577,"y":759,"w":85,"h":31,"offX":0,"offY":0,"sourceW":85,"sourceH":31}, +"qh_icon_xz":{"x":460,"y":362,"w":74,"h":75,"offX":0,"offY":0,"sourceW":74,"sourceH":75}, +"role_tab_qh2":{"x":673,"y":838,"w":26,"h":55,"offX":3,"offY":19,"sourceW":39,"sourceH":111}, +"arm_2":{"x":83,"y":498,"w":42,"h":96,"offX":147,"offY":154,"sourceW":300,"sourceH":350}, +"sz_btn":{"x":905,"y":694,"w":87,"h":36,"offX":0,"offY":0,"sourceW":87,"sourceH":36}, +"role_tab_jn1":{"x":272,"y":844,"w":26,"h":55,"offX":4,"offY":19,"sourceW":39,"sourceH":111}, +"arm_0":{"x":749,"y":1,"w":72,"h":143,"offX":139,"offY":155,"sourceW":300,"sourceH":350}, +"btn_jineng_2":{"x":416,"y":720,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"qh_t_huwan":{"x":257,"y":817,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"Godturn_jh_9":{"x":847,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"Godturn_jh_7":{"x":541,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"qh_t_toukui":{"x":637,"y":811,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"transform_bg_shuxing":{"x":127,"y":520,"w":140,"h":28,"offX":0,"offY":0,"sourceW":140,"sourceH":28}, +"Godturn_jh_5":{"x":484,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"btn_jn_ty":{"x":311,"y":659,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"Godturn_jh_3":{"x":542,"y":806,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"Godturn_jh_1":{"x":669,"y":436,"w":13,"h":22,"offX":0,"offY":0,"sourceW":13,"sourceH":22}, +"qh_icon_toukui":{"x":332,"y":837,"w":33,"h":44,"offX":13,"offY":9,"sourceW":60,"sourceH":60}, +"anjian_queding":{"x":76,"y":839,"w":58,"h":28,"offX":14,"offY":11,"sourceW":87,"sourceH":49}, +"qh_icon_yifu":{"x":187,"y":721,"w":45,"h":33,"offX":7,"offY":17,"sourceW":60,"sourceH":60}, +"Godturn_bg2":{"x":1,"y":99,"w":324,"h":73,"offX":0,"offY":0,"sourceW":324,"sourceH":73}, +"btn_guanzhi":{"x":808,"y":860,"w":37,"h":36,"offX":0,"offY":0,"sourceW":37,"sourceH":36}, +"qh_icon_jiezhi2":{"x":714,"y":778,"w":53,"h":45,"offX":4,"offY":8,"sourceW":60,"sourceH":60}, +"blessing_bg2":{"x":366,"y":1,"w":381,"h":82,"offX":0,"offY":0,"sourceW":381,"sourceH":82}, +"qh_icon_toukui2":{"x":769,"y":778,"w":44,"h":54,"offX":8,"offY":4,"sourceW":60,"sourceH":60}, +"role_sx_btn1":{"x":242,"y":719,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"btn_js_shiz2":{"x":958,"y":634,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"role_sx_btnzt":{"x":521,"y":859,"w":53,"h":25,"offX":17,"offY":5,"sourceW":85,"sourceH":36}, +"anjian_y":{"x":301,"y":229,"w":23,"h":27,"offX":16,"offY":15,"sourceW":56,"sourceH":59}, +"sz_tab_t3":{"x":847,"y":860,"w":54,"h":24,"offX":17,"offY":5,"sourceW":85,"sourceH":31}, +"anjian_w":{"x":89,"y":869,"w":30,"h":27,"offX":12,"offY":15,"sourceW":56,"sourceH":59}, +"sz_tab_t1":{"x":613,"y":436,"w":54,"h":23,"offX":17,"offY":6,"sourceW":85,"sourceH":31}, +"anjian_guang":{"x":903,"y":573,"w":60,"h":59,"offX":0,"offY":0,"sourceW":60,"sourceH":59}, +"anjian_q":{"x":758,"y":871,"w":25,"h":30,"offX":14,"offY":14,"sourceW":56,"sourceH":59}, +"anjian_skillk":{"x":821,"y":300,"w":83,"h":87,"offX":0,"offY":0,"sourceW":83,"sourceH":87}, +"anjian_e":{"x":191,"y":882,"w":21,"h":27,"offX":17,"offY":15,"sourceW":56,"sourceH":59}, +"blessing_tubiao":{"x":536,"y":362,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"bg_jineng_1":{"x":610,"y":362,"w":72,"h":72,"offX":0,"offY":0,"sourceW":72,"sourceH":72}, +"sz_xuanzhong":{"x":315,"y":363,"w":68,"h":68,"offX":0,"offY":0,"sourceW":68,"sourceH":68}, +"qh_t_jiezhi":{"x":890,"y":833,"w":72,"h":25,"offX":0,"offY":0,"sourceW":72,"sourceH":25}, +"btn_shenmo":{"x":524,"y":600,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_zb2":{"x":462,"y":599,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_jn_zy":{"x":400,"y":599,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"sz_chuandai":{"x":973,"y":732,"w":48,"h":53,"offX":0,"offY":0,"sourceW":48,"sourceH":53}, +"gz_zw_6":{"x":683,"y":548,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"gz_zw_8":{"x":533,"y":547,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"role_tab_zs2":{"x":300,"y":844,"w":26,"h":55,"offX":3,"offY":18,"sourceW":39,"sourceH":111}, +"gz_zw_4":{"x":383,"y":547,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"sz_btn_5":{"x":136,"y":842,"w":38,"h":38,"offX":0,"offY":0,"sourceW":38,"sourceH":38}, +"qh_icon_jiezhi":{"x":395,"y":859,"w":41,"h":34,"offX":10,"offY":14,"sourceW":60,"sourceH":60}, +"gz_zw_2":{"x":127,"y":576,"w":147,"h":24,"offX":18,"offY":6,"sourceW":182,"sourceH":36}, +"sz_btn_3":{"x":304,"y":765,"w":48,"h":50,"offX":0,"offY":0,"sourceW":48,"sourceH":50}, +"gz_zw_0":{"x":727,"y":586,"w":138,"h":25,"offX":23,"offY":6,"sourceW":182,"sourceH":36}, +"sz_btn_1":{"x":204,"y":765,"w":48,"h":50,"offX":0,"offY":0,"sourceW":48,"sourceH":50}, +"btn_jn_ty2":{"x":249,"y":659,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"gz_zw_17":{"x":821,"y":393,"w":155,"h":32,"offX":14,"offY":1,"sourceW":182,"sourceH":36}, +"qh_icon_wuqi2":{"x":842,"y":521,"w":59,"h":63,"offX":0,"offY":0,"sourceW":60,"sourceH":63}, +"role_tab_js2":{"x":367,"y":859,"w":26,"h":54,"offX":3,"offY":19,"sourceW":39,"sourceH":111}, +"gz_zw_13":{"x":60,"y":723,"w":125,"h":24,"offX":29,"offY":6,"sourceW":182,"sourceH":36}, +"gz_zw_15":{"x":833,"y":427,"w":147,"h":32,"offX":18,"offY":1,"sourceW":182,"sourceH":36}, +"qh_jiantou":{"x":588,"y":499,"w":19,"h":18,"offX":0,"offY":0,"sourceW":19,"sourceH":18}, +"gz_zw_11":{"x":127,"y":550,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"qh_icon_xianglian2":{"x":454,"y":758,"w":59,"h":47,"offX":0,"offY":6,"sourceW":60,"sourceH":60}, +"role_tab_bw1":{"x":327,"y":99,"w":26,"h":56,"offX":4,"offY":18,"sourceW":39,"sourceH":111}, +"qh_huoqu":{"x":532,"y":499,"w":21,"h":19,"offX":0,"offY":0,"sourceW":21,"sourceH":19}, +"blessing_jdt1":{"x":576,"y":859,"w":32,"h":40,"offX":0,"offY":0,"sourceW":32,"sourceH":40}, +"qh_icon_bg":{"x":1,"y":543,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"qh_t_xianglian":{"x":463,"y":832,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"sz_bg_2":{"x":973,"y":787,"w":44,"h":44,"offX":0,"offY":0,"sourceW":44,"sourceH":44}, +"Godturn_cionbg_3":{"x":791,"y":673,"w":56,"h":57,"offX":0,"offY":0,"sourceW":56,"sourceH":57}, +"blessing_bglz":{"x":555,"y":499,"w":31,"h":12,"offX":0,"offY":0,"sourceW":31,"sourceH":12}, +"anjian_5":{"x":959,"y":461,"w":21,"h":28,"offX":17,"offY":15,"sourceW":56,"sourceH":59}, +"anjian_3":{"x":145,"y":882,"w":21,"h":28,"offX":17,"offY":15,"sourceW":56,"sourceH":59}, +"Godturn_cionbg_1":{"x":617,"y":660,"w":56,"h":59,"offX":0,"offY":0,"sourceW":56,"sourceH":59}, +"anjian_1":{"x":295,"y":363,"w":17,"h":27,"offX":18,"offY":15,"sourceW":56,"sourceH":59}, +"btn_js_zf":{"x":648,"y":600,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_sz2":{"x":338,"y":599,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_zb":{"x":276,"y":599,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"role_tab3":{"x":982,"y":393,"w":39,"h":111,"offX":0,"offY":0,"sourceW":39,"sourceH":111}, +"btn_shuxing_2":{"x":726,"y":85,"w":19,"h":54,"offX":0,"offY":0,"sourceW":19,"sourceH":54}, +"role_tab1":{"x":1,"y":430,"w":39,"h":111,"offX":0,"offY":0,"sourceW":39,"sourceH":111}, +"qh_icon_huwan2":{"x":577,"y":792,"w":58,"h":38,"offX":0,"offY":13,"sourceW":60,"sourceH":60}, +"btn_shuxing_bg":{"x":354,"y":765,"w":32,"h":70,"offX":0,"offY":0,"sourceW":32,"sourceH":70}, +"sz_tab_2":{"x":1,"y":765,"w":85,"h":31,"offX":0,"offY":0,"sourceW":85,"sourceH":31}, +"role_tab_jn2":{"x":244,"y":844,"w":26,"h":55,"offX":3,"offY":19,"sourceW":39,"sourceH":111}, +"role_tab_qh1":{"x":216,"y":842,"w":26,"h":55,"offX":4,"offY":19,"sourceW":39,"sourceH":111}, +"arm_1":{"x":399,"y":362,"w":59,"h":101,"offX":135,"offY":160,"sourceW":300,"sourceH":350}, +"btn_jineng_1":{"x":503,"y":720,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"blessing_jdbg":{"x":924,"y":102,"w":98,"h":98,"offX":0,"offY":0,"sourceW":98,"sourceH":98}, +"Godturn_jh_8":{"x":63,"y":543,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"role_sx_btnsx":{"x":1,"y":724,"w":54,"h":25,"offX":17,"offY":5,"sourceW":85,"sourceH":36}, +"Godturn_jh_6":{"x":503,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"qh_icon_xiezi":{"x":712,"y":825,"w":44,"h":40,"offX":6,"offY":11,"sourceW":60,"sourceH":60}, +"role_zt_bg":{"x":83,"y":430,"w":66,"h":66,"offX":0,"offY":0,"sourceW":66,"sourceH":66}, +"Godturn_jh_4":{"x":522,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"Godturn_jh_2":{"x":465,"y":886,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"Godturn_jh_0":{"x":63,"y":567,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"qh_t_yaodai":{"x":538,"y":832,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"icon_guanzhi":{"x":982,"y":871,"w":24,"h":25,"offX":0,"offY":0,"sourceW":24,"sourceH":25}, +"btn_js_shiz":{"x":834,"y":613,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"qh_icon_xiezi2":{"x":397,"y":758,"w":55,"h":52,"offX":1,"offY":5,"sourceW":60,"sourceH":60}, +"qh_icon_xianglian":{"x":964,"y":833,"w":47,"h":36,"offX":6,"offY":12,"sourceW":60,"sourceH":60}, +"qh_icon_yaodai":{"x":758,"y":834,"w":48,"h":35,"offX":6,"offY":14,"sourceW":60,"sourceH":60}, +"anjian_btn":{"x":730,"y":146,"w":87,"h":49,"offX":0,"offY":0,"sourceW":87,"sourceH":49}, +"qh_t_wuqi":{"x":388,"y":832,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"role_sx_btn2":{"x":329,"y":719,"w":85,"h":36,"offX":0,"offY":0,"sourceW":85,"sourceH":36}, +"ch_zsz":{"x":304,"y":495,"w":77,"h":55,"offX":0,"offY":0,"sourceW":77,"sourceH":55}, +"qh_icon_yifu2":{"x":146,"y":765,"w":56,"h":45,"offX":2,"offY":11,"sourceW":60,"sourceH":60}, +"Godturn_jh_jh":{"x":98,"y":367,"w":195,"h":27,"offX":0,"offY":0,"sourceW":195,"sourceH":27}, +"sz_tab_t2":{"x":465,"y":859,"w":54,"h":25,"offX":17,"offY":5,"sourceW":85,"sourceH":31}, +"anjian_t":{"x":121,"y":882,"w":22,"h":27,"offX":16,"offY":15,"sourceW":56,"sourceH":59}, +"qh_icon_huwan":{"x":610,"y":868,"w":46,"h":26,"offX":6,"offY":19,"sourceW":60,"sourceH":60}, +"anjian_r":{"x":906,"y":356,"w":22,"h":27,"offX":16,"offY":15,"sourceW":56,"sourceH":59}, +"anjian_sz":{"x":684,"y":362,"w":35,"h":26,"offX":13,"offY":15,"sourceW":59,"sourceH":59}, +"btn_js_sx2":{"x":435,"y":659,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"blessing_jdt":{"x":301,"y":265,"w":96,"h":96,"offX":1,"offY":1,"sourceW":98,"sourceH":98}, +"role_sx_bg2":{"x":717,"y":755,"w":135,"h":21,"offX":0,"offY":0,"sourceW":135,"sourceH":21}, +"bg_jineng_2":{"x":867,"y":586,"w":24,"h":25,"offX":0,"offY":0,"sourceW":24,"sourceH":25}, +"Godturn_jh_10":{"x":953,"y":871,"w":27,"h":27,"offX":0,"offY":0,"sourceW":27,"sourceH":27}, +"ch_bg":{"x":366,"y":85,"w":358,"h":79,"offX":0,"offY":0,"sourceW":358,"sourceH":79}, +"btn_js_sz":{"x":896,"y":634,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_zf2":{"x":772,"y":613,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_sx":{"x":187,"y":602,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"gz_zw_9":{"x":692,"y":521,"w":148,"h":25,"offX":17,"offY":5,"sourceW":182,"sourceH":36}, +"gz_zw_7":{"x":277,"y":573,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"qh_t_yifu":{"x":815,"y":833,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"role_tab_zs1":{"x":1,"y":852,"w":26,"h":55,"offX":4,"offY":18,"sourceW":39,"sourceH":111}, +"gz_zw_5":{"x":577,"y":574,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"sz_btn_6":{"x":176,"y":842,"w":38,"h":38,"offX":0,"offY":0,"sourceW":38,"sourceH":38}, +"gz_zw_3":{"x":427,"y":573,"w":148,"h":24,"offX":17,"offY":6,"sourceW":182,"sourceH":36}, +"sz_btn_4":{"x":664,"y":759,"w":48,"h":50,"offX":0,"offY":0,"sourceW":48,"sourceH":50}, +"sz_btn_2":{"x":254,"y":765,"w":48,"h":50,"offX":0,"offY":0,"sourceW":48,"sourceH":50}, +"btn_shenmo2":{"x":373,"y":659,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"gz_zw_1":{"x":532,"y":521,"w":158,"h":24,"offX":12,"offY":6,"sourceW":182,"sourceH":36}, +"btn_jn_zy2":{"x":63,"y":596,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_js_ch2":{"x":63,"y":656,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"gz_zw_18":{"x":1,"y":396,"w":155,"h":32,"offX":14,"offY":1,"sourceW":182,"sourceH":36}, +"gz_zw_14":{"x":684,"y":427,"w":147,"h":32,"offX":18,"offY":1,"sourceW":182,"sourceH":36}, +"gz_zw_16":{"x":158,"y":396,"w":155,"h":32,"offX":14,"offY":1,"sourceW":182,"sourceH":36}, +"role_tab_js1":{"x":29,"y":852,"w":26,"h":54,"offX":4,"offY":19,"sourceW":39,"sourceH":111}, +"qh_t_xiezi":{"x":1,"y":825,"w":73,"h":25,"offX":0,"offY":0,"sourceW":73,"sourceH":25}, +"gz_zw_12":{"x":684,"y":394,"w":125,"h":24,"offX":29,"offY":6,"sourceW":182,"sourceH":36}, +"role_tab_bw2":{"x":498,"y":265,"w":26,"h":56,"offX":3,"offY":18,"sourceW":39,"sourceH":111}, +"gz_zw_10":{"x":590,"y":733,"w":125,"h":24,"offX":29,"offY":6,"sourceW":182,"sourceH":36}}} \ No newline at end of file diff --git a/resource_Publish/assets/role/role.png b/resource_Publish/assets/role/role.png new file mode 100644 index 0000000..2fbca39 Binary files /dev/null and b/resource_Publish/assets/role/role.png differ diff --git a/resource_Publish/assets/role/roleFashion/bh_show_wp1.png b/resource_Publish/assets/role/roleFashion/bh_show_wp1.png new file mode 100644 index 0000000..054d062 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/bh_show_wp1.png differ diff --git a/resource_Publish/assets/role/roleFashion/bh_show_wp2.png b/resource_Publish/assets/role/roleFashion/bh_show_wp2.png new file mode 100644 index 0000000..9055b61 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/bh_show_wp2.png differ diff --git a/resource_Publish/assets/role/roleFashion/bh_show_wp3.png b/resource_Publish/assets/role/roleFashion/bh_show_wp3.png new file mode 100644 index 0000000..d708221 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/bh_show_wp3.png differ diff --git a/resource_Publish/assets/role/roleFashion/bh_show_wp4.png b/resource_Publish/assets/role/roleFashion/bh_show_wp4.png new file mode 100644 index 0000000..487f608 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/bh_show_wp4.png differ diff --git a/resource_Publish/assets/role/roleFashion/bx_show_001.png b/resource_Publish/assets/role/roleFashion/bx_show_001.png new file mode 100644 index 0000000..b7c8da4 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/bx_show_001.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_001_0.png b/resource_Publish/assets/role/roleFashion/sz_show_001_0.png new file mode 100644 index 0000000..bff2462 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_001_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_001_1.png b/resource_Publish/assets/role/roleFashion/sz_show_001_1.png new file mode 100644 index 0000000..47790cc Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_001_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_002_0.png b/resource_Publish/assets/role/roleFashion/sz_show_002_0.png new file mode 100644 index 0000000..d33ccf7 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_002_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_002_1.png b/resource_Publish/assets/role/roleFashion/sz_show_002_1.png new file mode 100644 index 0000000..f07d364 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_002_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_003_0.png b/resource_Publish/assets/role/roleFashion/sz_show_003_0.png new file mode 100644 index 0000000..9e9ad69 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_003_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_003_1.png b/resource_Publish/assets/role/roleFashion/sz_show_003_1.png new file mode 100644 index 0000000..a8cac52 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_003_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_004_0.png b/resource_Publish/assets/role/roleFashion/sz_show_004_0.png new file mode 100644 index 0000000..833bb17 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_004_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_004_1.png b/resource_Publish/assets/role/roleFashion/sz_show_004_1.png new file mode 100644 index 0000000..2f426c8 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_004_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_005_0.png b/resource_Publish/assets/role/roleFashion/sz_show_005_0.png new file mode 100644 index 0000000..18f9396 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_005_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_005_1.png b/resource_Publish/assets/role/roleFashion/sz_show_005_1.png new file mode 100644 index 0000000..57d2ee4 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_005_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_006_0.png b/resource_Publish/assets/role/roleFashion/sz_show_006_0.png new file mode 100644 index 0000000..ade2f55 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_006_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_006_1.png b/resource_Publish/assets/role/roleFashion/sz_show_006_1.png new file mode 100644 index 0000000..3bb45c6 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_006_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_007_0.png b/resource_Publish/assets/role/roleFashion/sz_show_007_0.png new file mode 100644 index 0000000..38d4323 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_007_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_007_1.png b/resource_Publish/assets/role/roleFashion/sz_show_007_1.png new file mode 100644 index 0000000..cd3884f Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_007_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_008_0.png b/resource_Publish/assets/role/roleFashion/sz_show_008_0.png new file mode 100644 index 0000000..dacd84a Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_008_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_008_1.png b/resource_Publish/assets/role/roleFashion/sz_show_008_1.png new file mode 100644 index 0000000..79f752c Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_008_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_009_0.png b/resource_Publish/assets/role/roleFashion/sz_show_009_0.png new file mode 100644 index 0000000..5819e80 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_009_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_009_1.png b/resource_Publish/assets/role/roleFashion/sz_show_009_1.png new file mode 100644 index 0000000..9e29f92 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_009_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_010_0.png b/resource_Publish/assets/role/roleFashion/sz_show_010_0.png new file mode 100644 index 0000000..00fde57 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_010_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_010_1.png b/resource_Publish/assets/role/roleFashion/sz_show_010_1.png new file mode 100644 index 0000000..2ea7fb3 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_010_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_011_0.png b/resource_Publish/assets/role/roleFashion/sz_show_011_0.png new file mode 100644 index 0000000..6fc5c1b Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_011_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_011_1.png b/resource_Publish/assets/role/roleFashion/sz_show_011_1.png new file mode 100644 index 0000000..27d4b98 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_011_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_012_0.png b/resource_Publish/assets/role/roleFashion/sz_show_012_0.png new file mode 100644 index 0000000..4398c98 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_012_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_012_1.png b/resource_Publish/assets/role/roleFashion/sz_show_012_1.png new file mode 100644 index 0000000..3d9cad0 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_012_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_013_0.png b/resource_Publish/assets/role/roleFashion/sz_show_013_0.png new file mode 100644 index 0000000..df37512 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_013_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_013_1.png b/resource_Publish/assets/role/roleFashion/sz_show_013_1.png new file mode 100644 index 0000000..0a71028 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_013_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_014_0.png b/resource_Publish/assets/role/roleFashion/sz_show_014_0.png new file mode 100644 index 0000000..b3e2ef8 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_014_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_014_1.png b/resource_Publish/assets/role/roleFashion/sz_show_014_1.png new file mode 100644 index 0000000..2027b38 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_014_1.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_015_0.png b/resource_Publish/assets/role/roleFashion/sz_show_015_0.png new file mode 100644 index 0000000..d152d73 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_015_0.png differ diff --git a/resource_Publish/assets/role/roleFashion/sz_show_015_1.png b/resource_Publish/assets/role/roleFashion/sz_show_015_1.png new file mode 100644 index 0000000..cb76762 Binary files /dev/null and b/resource_Publish/assets/role/roleFashion/sz_show_015_1.png differ diff --git a/resource_Publish/assets/role/role_bg.png b/resource_Publish/assets/role/role_bg.png new file mode 100644 index 0000000..8abc3a4 Binary files /dev/null and b/resource_Publish/assets/role/role_bg.png differ diff --git a/resource_Publish/assets/role/role_k.png b/resource_Publish/assets/role/role_k.png new file mode 100644 index 0000000..2583ad7 Binary files /dev/null and b/resource_Publish/assets/role/role_k.png differ diff --git a/resource_Publish/assets/role/role_pet.json b/resource_Publish/assets/role/role_pet.json new file mode 100644 index 0000000..dbce33b --- /dev/null +++ b/resource_Publish/assets/role/role_pet.json @@ -0,0 +1,25 @@ +{"file":"role_pet.png","frames":{ +"chongwu_bg1":{"x":1,"y":1,"w":292,"h":82,"offX":0,"offY":0,"sourceW":292,"sourceH":82}, +"chongwu_bg2":{"x":1,"y":85,"w":261,"h":40,"offX":0,"offY":0,"sourceW":261,"sourceH":40}, +"chongwu_btn":{"x":385,"y":52,"w":106,"h":49,"offX":0,"offY":0,"sourceW":106,"sourceH":49}, +"chongwu_btn1":{"x":264,"y":85,"w":106,"h":48,"offX":0,"offY":0,"sourceW":106,"sourceH":48}, +"chongwu_btn2":{"x":385,"y":1,"w":106,"h":49,"offX":0,"offY":0,"sourceW":106,"sourceH":49}, +"chongwu_icon":{"x":295,"y":1,"w":88,"h":70,"offX":0,"offY":0,"sourceW":88,"sourceH":70}, +"pet001":{"x":1,"y":127,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet001_name":{"x":93,"y":220,"w":69,"h":28,"offX":0,"offY":0,"sourceW":69,"sourceH":28}, +"pet002":{"x":436,"y":103,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet002_name":{"x":1,"y":191,"w":90,"h":27,"offX":0,"offY":0,"sourceW":90,"sourceH":27}, +"pet003":{"x":372,"y":103,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet003_name":{"x":1,"y":220,"w":90,"h":26,"offX":0,"offY":0,"sourceW":90,"sourceH":26}, +"pet004":{"x":385,"y":167,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet004_name":{"x":164,"y":228,"w":69,"h":27,"offX":0,"offY":0,"sourceW":69,"sourceH":27}, +"pet005":{"x":321,"y":167,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet005_name":{"x":93,"y":191,"w":90,"h":27,"offX":0,"offY":0,"sourceW":90,"sourceH":27}, +"pet006":{"x":257,"y":135,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet006_name":{"x":235,"y":228,"w":67,"h":27,"offX":0,"offY":0,"sourceW":67,"sourceH":27}, +"pet007":{"x":193,"y":127,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet007_name":{"x":321,"y":135,"w":47,"h":28,"offX":0,"offY":0,"sourceW":47,"sourceH":28}, +"pet008":{"x":129,"y":127,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet008_name":{"x":185,"y":199,"w":90,"h":27,"offX":0,"offY":0,"sourceW":90,"sourceH":27}, +"pet009":{"x":65,"y":127,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"pet009_name":{"x":304,"y":231,"w":69,"h":26,"offX":0,"offY":0,"sourceW":69,"sourceH":26}}} \ No newline at end of file diff --git a/resource_Publish/assets/role/role_pet.png b/resource_Publish/assets/role/role_pet.png new file mode 100644 index 0000000..ad8c131 Binary files /dev/null and b/resource_Publish/assets/role/role_pet.png differ diff --git a/resource_Publish/assets/role/role_sx_bg.png b/resource_Publish/assets/role/role_sx_bg.png new file mode 100644 index 0000000..fe397e2 Binary files /dev/null and b/resource_Publish/assets/role/role_sx_bg.png differ diff --git a/resource_Publish/assets/role/sixiang.json b/resource_Publish/assets/role/sixiang.json new file mode 100644 index 0000000..c40f937 --- /dev/null +++ b/resource_Publish/assets/role/sixiang.json @@ -0,0 +1,42 @@ +{"file":"sixiang.png","frames":{ +"sx_jiantou":{"x":452,"y":1,"w":53,"h":37,"offX":0,"offY":0,"sourceW":53,"sourceH":37}, +"t_sx_0":{"x":205,"y":162,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_1":{"x":262,"y":161,"w":13,"h":22,"offX":0,"offY":0,"sourceW":13,"sourceH":22}, +"t_sx_2":{"x":186,"y":162,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_3":{"x":243,"y":161,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_4":{"x":430,"y":155,"w":18,"h":22,"offX":0,"offY":0,"sourceW":18,"sourceH":22}, +"t_sx_5":{"x":470,"y":155,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_6":{"x":410,"y":140,"w":18,"h":22,"offX":0,"offY":0,"sourceW":18,"sourceH":22}, +"t_sx_7":{"x":450,"y":155,"w":18,"h":22,"offX":0,"offY":0,"sourceW":18,"sourceH":22}, +"t_sx_8":{"x":224,"y":162,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_9":{"x":489,"y":155,"w":17,"h":22,"offX":0,"offY":0,"sourceW":17,"sourceH":22}, +"t_sx_10":{"x":53,"y":138,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_bai":{"x":488,"y":127,"w":23,"h":26,"offX":0,"offY":0,"sourceW":23,"sourceH":26}, +"t_sx_hu":{"x":27,"y":138,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_hun":{"x":1,"y":138,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_jie":{"x":462,"y":127,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_long":{"x":436,"y":127,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_qing":{"x":410,"y":112,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_que":{"x":384,"y":110,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_wu":{"x":478,"y":99,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_xing":{"x":452,"y":99,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_xuan":{"x":478,"y":71,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_zhi":{"x":452,"y":71,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"t_sx_zhu":{"x":79,"y":138,"w":24,"h":26,"offX":0,"offY":0,"sourceW":24,"sourceH":26}, +"八":{"x":384,"y":164,"w":26,"h":11,"offX":0,"offY":0,"sourceW":26,"sourceH":11}, +"二":{"x":243,"y":141,"w":26,"h":18,"offX":0,"offY":0,"sourceW":26,"sourceH":18}, +"阶":{"x":452,"y":40,"w":28,"h":29,"offX":0,"offY":0,"sourceW":28,"sourceH":29}, +"九":{"x":132,"y":141,"w":25,"h":22,"offX":0,"offY":0,"sourceW":25,"sourceH":22}, +"零":{"x":482,"y":40,"w":26,"h":29,"offX":0,"offY":0,"sourceW":26,"sourceH":29}, +"六":{"x":384,"y":138,"w":24,"h":23,"offX":0,"offY":0,"sourceW":24,"sourceH":23}, +"七":{"x":215,"y":141,"w":26,"h":19,"offX":0,"offY":0,"sourceW":26,"sourceH":19}, +"三":{"x":159,"y":141,"w":25,"h":21,"offX":0,"offY":0,"sourceW":25,"sourceH":21}, +"十":{"x":186,"y":141,"w":27,"h":19,"offX":0,"offY":0,"sourceW":27,"sourceH":19}, +"四":{"x":105,"y":163,"w":24,"h":15,"offX":0,"offY":0,"sourceW":24,"sourceH":15}, +"五":{"x":105,"y":138,"w":25,"h":23,"offX":0,"offY":0,"sourceW":25,"sourceH":23}, +"一":{"x":159,"y":164,"w":25,"h":8,"offX":0,"offY":0,"sourceW":25,"sourceH":8}, +"jiejikuang":{"x":411,"y":1,"w":39,"h":109,"offX":0,"offY":0,"sourceW":39,"sourceH":109}, +"sx_icon_1":{"x":1,"y":1,"w":139,"h":135,"offX":0,"offY":0,"sourceW":139,"sourceH":135}, +"sx_icon_2":{"x":279,"y":110,"w":103,"h":126,"offX":0,"offY":0,"sourceW":103,"sourceH":126}, +"sx_icon_3":{"x":142,"y":1,"w":135,"h":138,"offX":0,"offY":0,"sourceW":135,"sourceH":138}, +"sx_icon_4":{"x":279,"y":1,"w":130,"h":107,"offX":0,"offY":0,"sourceW":130,"sourceH":107}}} \ No newline at end of file diff --git a/resource_Publish/assets/role/sixiang.png b/resource_Publish/assets/role/sixiang.png new file mode 100644 index 0000000..4b344c2 Binary files /dev/null and b/resource_Publish/assets/role/sixiang.png differ diff --git a/resource_Publish/assets/role/sz_bg_1.png b/resource_Publish/assets/role/sz_bg_1.png new file mode 100644 index 0000000..f590a8e Binary files /dev/null and b/resource_Publish/assets/role/sz_bg_1.png differ diff --git a/resource_Publish/assets/role/transform_bg.png b/resource_Publish/assets/role/transform_bg.png new file mode 100644 index 0000000..c6bfa7b Binary files /dev/null and b/resource_Publish/assets/role/transform_bg.png differ diff --git a/resource_Publish/assets/shenmo/shenmo.json b/resource_Publish/assets/shenmo/shenmo.json new file mode 100644 index 0000000..264fbe8 --- /dev/null +++ b/resource_Publish/assets/shenmo/shenmo.json @@ -0,0 +1,25 @@ +{"file":"shenmo.png","frames":{ +"bg_shenmo":{"x":634,"y":1,"w":381,"h":446,"offX":0,"offY":0,"sourceW":381,"sourceH":446}, +"bg_sm":{"x":1,"y":1,"w":631,"h":558,"offX":0,"offY":0,"sourceW":631,"sourceH":558}, +"btn_shenmo_01":{"x":1,"y":609,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"btn_shenmo_02":{"x":181,"y":598,"w":60,"h":58,"offX":0,"offY":2,"sourceW":62,"sourceH":62}, +"icon_shenmo_1":{"x":634,"y":526,"w":75,"h":75,"offX":0,"offY":0,"sourceW":75,"sourceH":75}, +"icon_shenmo_2":{"x":634,"y":449,"w":75,"h":75,"offX":0,"offY":0,"sourceW":75,"sourceH":75}, +"icon_shenmo_3":{"x":711,"y":526,"w":75,"h":75,"offX":0,"offY":0,"sourceW":75,"sourceH":75}, +"icon_shenmo_4":{"x":788,"y":449,"w":74,"h":74,"offX":0,"offY":0,"sourceW":74,"sourceH":74}, +"icon_shenmo_5":{"x":711,"y":449,"w":75,"h":75,"offX":0,"offY":0,"sourceW":75,"sourceH":75}, +"sm_jyt1":{"x":1,"y":561,"w":182,"h":24,"offX":0,"offY":0,"sourceW":182,"sourceH":24}, +"sm_jyt2":{"x":1,"y":587,"w":178,"h":20,"offX":0,"offY":0,"sourceW":178,"sourceH":20}, +"sm_p1":{"x":448,"y":561,"w":16,"h":19,"offX":0,"offY":0,"sourceW":16,"sourceH":19}, +"sm_t1":{"x":63,"y":644,"w":62,"h":32,"offX":0,"offY":0,"sourceW":62,"sourceH":32}, +"sm_t2":{"x":307,"y":595,"w":62,"h":32,"offX":0,"offY":0,"sourceW":62,"sourceH":32}, +"sm_t3":{"x":293,"y":561,"w":62,"h":32,"offX":0,"offY":0,"sourceW":62,"sourceH":32}, +"sm_t4":{"x":243,"y":598,"w":62,"h":32,"offX":0,"offY":0,"sourceW":62,"sourceH":32}, +"sm_t5":{"x":63,"y":609,"w":61,"h":33,"offX":0,"offY":0,"sourceW":61,"sourceH":33}, +"sm_t6":{"x":1,"y":669,"w":31,"h":49,"offX":0,"offY":0,"sourceW":31,"sourceH":49}, +"sm_t7":{"x":185,"y":561,"w":106,"h":35,"offX":0,"offY":0,"sourceW":106,"sourceH":35}, +"t_shenmo_1":{"x":126,"y":609,"w":43,"h":24,"offX":0,"offY":0,"sourceW":43,"sourceH":24}, +"t_shenmo_2":{"x":371,"y":586,"w":43,"h":23,"offX":0,"offY":0,"sourceW":43,"sourceH":23}, +"t_shenmo_3":{"x":357,"y":561,"w":44,"h":23,"offX":0,"offY":0,"sourceW":44,"sourceH":23}, +"t_shenmo_4":{"x":403,"y":561,"w":43,"h":23,"offX":0,"offY":0,"sourceW":43,"sourceH":23}, +"t_shenmo_5":{"x":127,"y":635,"w":42,"h":24,"offX":0,"offY":0,"sourceW":42,"sourceH":24}}} \ No newline at end of file diff --git a/resource_Publish/assets/shenmo/shenmo.png b/resource_Publish/assets/shenmo/shenmo.png new file mode 100644 index 0000000..a8d9aa5 Binary files /dev/null and b/resource_Publish/assets/shenmo/shenmo.png differ diff --git a/resource_Publish/assets/shop/shop.json b/resource_Publish/assets/shop/shop.json new file mode 100644 index 0000000..305a3a2 --- /dev/null +++ b/resource_Publish/assets/shop/shop.json @@ -0,0 +1,23 @@ +{"file":"shop.png","frames":{ +"shop_xianshi":{"x":355,"y":212,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_bg":{"x":913,"y":205,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_4":{"x":849,"y":205,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_jiaobiao":{"x":901,"y":139,"w":62,"h":64,"offX":0,"offY":0,"sourceW":62,"sourceH":64}, +"shop_bg":{"x":1,"y":107,"w":224,"h":143,"offX":0,"offY":0,"sourceW":224,"sourceH":143}, +"shop_zhekou_8":{"x":785,"y":179,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_1":{"x":721,"y":179,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_iconk":{"x":419,"y":212,"w":62,"h":62,"offX":0,"offY":0,"sourceW":62,"sourceH":62}, +"shop_bg_xian":{"x":1,"y":252,"w":203,"h":3,"offX":0,"offY":0,"sourceW":203,"sourceH":3}, +"shop_zhekou_9":{"x":291,"y":172,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_6":{"x":227,"y":172,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_yeqian_2":{"x":227,"y":107,"w":140,"h":63,"offX":0,"offY":0,"sourceW":140,"sourceH":63}, +"shop_bg1":{"x":708,"y":1,"w":271,"h":136,"offX":0,"offY":0,"sourceW":271,"sourceH":136}, +"shop_rexiao":{"x":369,"y":147,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_2":{"x":625,"y":194,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_3":{"x":561,"y":194,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_yeqian_1":{"x":589,"y":139,"w":130,"h":53,"offX":0,"offY":0,"sourceW":130,"sourceH":53}, +"shop_zhekou_7":{"x":433,"y":147,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_zhekou_5":{"x":497,"y":147,"w":62,"h":63,"offX":0,"offY":0,"sourceW":62,"sourceH":63}, +"shop_yybsc":{"x":1,"y":1,"w":705,"h":104,"offX":0,"offY":0,"sourceW":705,"sourceH":104}, +"shop_yyb_bannert":{"x":369,"y":107,"w":218,"h":38,"offX":0,"offY":0,"sourceW":218,"sourceH":38}, +"shop_yyb_bannert2":{"x":721,"y":139,"w":178,"h":38,"offX":0,"offY":0,"sourceW":178,"sourceH":38}}} \ No newline at end of file diff --git a/resource_Publish/assets/shop/shop.png b/resource_Publish/assets/shop/shop.png new file mode 100644 index 0000000..5c0133d Binary files /dev/null and b/resource_Publish/assets/shop/shop.png differ diff --git a/resource_Publish/assets/shunwang/bg_wxlb_shunwang.png b/resource_Publish/assets/shunwang/bg_wxlb_shunwang.png new file mode 100644 index 0000000..7cd9d81 Binary files /dev/null and b/resource_Publish/assets/shunwang/bg_wxlb_shunwang.png differ diff --git a/resource_Publish/assets/shunwang/shunwnag.json b/resource_Publish/assets/shunwang/shunwnag.json new file mode 100644 index 0000000..7e4c326 --- /dev/null +++ b/resource_Publish/assets/shunwang/shunwnag.json @@ -0,0 +1,6 @@ +{"file":"shunwnag.png","frames":{ +"btnt_lijidengji":{"x":949,"y":1,"w":70,"h":20,"offX":0,"offY":0,"sourceW":70,"sourceH":20}, +"btnt_xiazaihezi":{"x":864,"y":1,"w":83,"h":21,"offX":0,"offY":0,"sourceW":83,"sourceH":21}, +"txt_shunwangdengjilibao":{"x":663,"y":42,"w":198,"h":31,"offX":0,"offY":0,"sourceW":198,"sourceH":31}, +"txt_shunwanghezilibao":{"x":663,"y":1,"w":199,"h":39,"offX":0,"offY":0,"sourceW":199,"sourceH":39}, +"banner_shunwang":{"x":1,"y":1,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}}} \ No newline at end of file diff --git a/resource_Publish/assets/shunwang/shunwnag.png b/resource_Publish/assets/shunwang/shunwnag.png new file mode 100644 index 0000000..47ef46c Binary files /dev/null and b/resource_Publish/assets/shunwang/shunwnag.png differ diff --git a/resource_Publish/assets/sogou/bg_sogouwxlb.png b/resource_Publish/assets/sogou/bg_sogouwxlb.png new file mode 100644 index 0000000..0192dda Binary files /dev/null and b/resource_Publish/assets/sogou/bg_sogouwxlb.png differ diff --git a/resource_Publish/assets/sogou/bg_sougouvip.png b/resource_Publish/assets/sogou/bg_sougouvip.png new file mode 100644 index 0000000..e69de29 diff --git a/resource_Publish/assets/sogou/bg_zhuanshupifu.png b/resource_Publish/assets/sogou/bg_zhuanshupifu.png new file mode 100644 index 0000000..21162da Binary files /dev/null and b/resource_Publish/assets/sogou/bg_zhuanshupifu.png differ diff --git a/resource_Publish/assets/sogou/sogou.json b/resource_Publish/assets/sogou/sogou.json new file mode 100644 index 0000000..ab84d52 --- /dev/null +++ b/resource_Publish/assets/sogou/sogou.json @@ -0,0 +1,4 @@ +{"file":"sogou.png","frames":{ +"sogou_t_xslb":{"x":663,"y":139,"w":245,"h":29,"offX":0,"offY":0,"sourceW":245,"sourceH":29}, +"banner_sougouvip":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"banner_sougouyxdt":{"x":1,"y":139,"w":660,"h":145,"offX":0,"offY":0,"sourceW":660,"sourceH":145}}} \ No newline at end of file diff --git a/resource_Publish/assets/sogou/sogou.png b/resource_Publish/assets/sogou/sogou.png new file mode 100644 index 0000000..e6de135 Binary files /dev/null and b/resource_Publish/assets/sogou/sogou.png differ diff --git a/resource_Publish/assets/sound/bgm/bairimen.mp3 b/resource_Publish/assets/sound/bgm/bairimen.mp3 new file mode 100644 index 0000000..718b674 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/bairimen.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/biqi.mp3 b/resource_Publish/assets/sound/bgm/biqi.mp3 new file mode 100644 index 0000000..c68c776 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/biqi.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/biqi_1.mp3 b/resource_Publish/assets/sound/bgm/biqi_1.mp3 new file mode 100644 index 0000000..54f5cfe Binary files /dev/null and b/resource_Publish/assets/sound/bgm/biqi_1.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/biqi_2.mp3 b/resource_Publish/assets/sound/bgm/biqi_2.mp3 new file mode 100644 index 0000000..b348997 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/biqi_2.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/biqi_3.mp3 b/resource_Publish/assets/sound/bgm/biqi_3.mp3 new file mode 100644 index 0000000..a30a768 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/biqi_3.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/denglu.mp3 b/resource_Publish/assets/sound/bgm/denglu.mp3 new file mode 100644 index 0000000..718b674 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/denglu.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/dixue.mp3 b/resource_Publish/assets/sound/bgm/dixue.mp3 new file mode 100644 index 0000000..2bbb974 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/dixue.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/dongxue.mp3 b/resource_Publish/assets/sound/bgm/dongxue.mp3 new file mode 100644 index 0000000..a500bed Binary files /dev/null and b/resource_Publish/assets/sound/bgm/dongxue.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/fengmogu.mp3 b/resource_Publish/assets/sound/bgm/fengmogu.mp3 new file mode 100644 index 0000000..a9b2f97 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/fengmogu.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/fuben.mp3 b/resource_Publish/assets/sound/bgm/fuben.mp3 new file mode 100644 index 0000000..56a655b Binary files /dev/null and b/resource_Publish/assets/sound/bgm/fuben.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/huodong.mp3 b/resource_Publish/assets/sound/bgm/huodong.mp3 new file mode 100644 index 0000000..ff124d3 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/huodong.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/kuangdong.mp3 b/resource_Publish/assets/sound/bgm/kuangdong.mp3 new file mode 100644 index 0000000..7dd5dc9 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/kuangdong.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/mengzhong.mp3 b/resource_Publish/assets/sound/bgm/mengzhong.mp3 new file mode 100644 index 0000000..b6e24be Binary files /dev/null and b/resource_Publish/assets/sound/bgm/mengzhong.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/mengzhong_1.mp3 b/resource_Publish/assets/sound/bgm/mengzhong_1.mp3 new file mode 100644 index 0000000..a922fec Binary files /dev/null and b/resource_Publish/assets/sound/bgm/mengzhong_1.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/mengzhong_2.mp3 b/resource_Publish/assets/sound/bgm/mengzhong_2.mp3 new file mode 100644 index 0000000..8b092eb Binary files /dev/null and b/resource_Publish/assets/sound/bgm/mengzhong_2.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/molongcheng.mp3 b/resource_Publish/assets/sound/bgm/molongcheng.mp3 new file mode 100644 index 0000000..97d33d5 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/molongcheng.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/shabake.mp3 b/resource_Publish/assets/sound/bgm/shabake.mp3 new file mode 100644 index 0000000..63b9d03 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/shabake.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/shimu.mp3 b/resource_Publish/assets/sound/bgm/shimu.mp3 new file mode 100644 index 0000000..d3bf946 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/shimu.mp3 differ diff --git a/resource_Publish/assets/sound/bgm/zuma.mp3 b/resource_Publish/assets/sound/bgm/zuma.mp3 new file mode 100644 index 0000000..545a126 Binary files /dev/null and b/resource_Publish/assets/sound/bgm/zuma.mp3 differ diff --git a/resource_Publish/assets/sound/character/attack_female.mp3 b/resource_Publish/assets/sound/character/attack_female.mp3 new file mode 100644 index 0000000..00fdad9 Binary files /dev/null and b/resource_Publish/assets/sound/character/attack_female.mp3 differ diff --git a/resource_Publish/assets/sound/character/attack_male.mp3 b/resource_Publish/assets/sound/character/attack_male.mp3 new file mode 100644 index 0000000..29ece21 Binary files /dev/null and b/resource_Publish/assets/sound/character/attack_male.mp3 differ diff --git a/resource_Publish/assets/sound/character/dead_female.mp3 b/resource_Publish/assets/sound/character/dead_female.mp3 new file mode 100644 index 0000000..298b455 Binary files /dev/null and b/resource_Publish/assets/sound/character/dead_female.mp3 differ diff --git a/resource_Publish/assets/sound/character/dead_male.mp3 b/resource_Publish/assets/sound/character/dead_male.mp3 new file mode 100644 index 0000000..05ae96c Binary files /dev/null and b/resource_Publish/assets/sound/character/dead_male.mp3 differ diff --git a/resource_Publish/assets/sound/character/gongji.mp3 b/resource_Publish/assets/sound/character/gongji.mp3 new file mode 100644 index 0000000..7c8c07b Binary files /dev/null and b/resource_Publish/assets/sound/character/gongji.mp3 differ diff --git a/resource_Publish/assets/sound/character/injure_female.mp3 b/resource_Publish/assets/sound/character/injure_female.mp3 new file mode 100644 index 0000000..34e1526 Binary files /dev/null and b/resource_Publish/assets/sound/character/injure_female.mp3 differ diff --git a/resource_Publish/assets/sound/character/injure_male.mp3 b/resource_Publish/assets/sound/character/injure_male.mp3 new file mode 100644 index 0000000..d8f67f5 Binary files /dev/null and b/resource_Publish/assets/sound/character/injure_male.mp3 differ diff --git a/resource_Publish/assets/sound/character/nanshouji.mp3 b/resource_Publish/assets/sound/character/nanshouji.mp3 new file mode 100644 index 0000000..410cdd0 Binary files /dev/null and b/resource_Publish/assets/sound/character/nanshouji.mp3 differ diff --git a/resource_Publish/assets/sound/character/nansiwang.mp3 b/resource_Publish/assets/sound/character/nansiwang.mp3 new file mode 100644 index 0000000..eef4ce2 Binary files /dev/null and b/resource_Publish/assets/sound/character/nansiwang.mp3 differ diff --git a/resource_Publish/assets/sound/character/nvshouji.mp3 b/resource_Publish/assets/sound/character/nvshouji.mp3 new file mode 100644 index 0000000..eebe38e Binary files /dev/null and b/resource_Publish/assets/sound/character/nvshouji.mp3 differ diff --git a/resource_Publish/assets/sound/character/nvsiwang.mp3 b/resource_Publish/assets/sound/character/nvsiwang.mp3 new file mode 100644 index 0000000..fb25dd5 Binary files /dev/null and b/resource_Publish/assets/sound/character/nvsiwang.mp3 differ diff --git a/resource_Publish/assets/sound/character/task_complete.mp3 b/resource_Publish/assets/sound/character/task_complete.mp3 new file mode 100644 index 0000000..c2a5750 Binary files /dev/null and b/resource_Publish/assets/sound/character/task_complete.mp3 differ diff --git a/resource_Publish/assets/sound/character/yidong.mp3 b/resource_Publish/assets/sound/character/yidong.mp3 new file mode 100644 index 0000000..504c6af Binary files /dev/null and b/resource_Publish/assets/sound/character/yidong.mp3 differ diff --git a/resource_Publish/assets/sound/loading/chuangjian.mp3 b/resource_Publish/assets/sound/loading/chuangjian.mp3 new file mode 100644 index 0000000..17147e0 Binary files /dev/null and b/resource_Publish/assets/sound/loading/chuangjian.mp3 differ diff --git a/resource_Publish/assets/sound/loading/dengdai.mp3 b/resource_Publish/assets/sound/loading/dengdai.mp3 new file mode 100644 index 0000000..387ad9d Binary files /dev/null and b/resource_Publish/assets/sound/loading/dengdai.mp3 differ diff --git a/resource_Publish/assets/sound/loading/kaimen.mp3 b/resource_Publish/assets/sound/loading/kaimen.mp3 new file mode 100644 index 0000000..09ab0fe Binary files /dev/null and b/resource_Publish/assets/sound/loading/kaimen.mp3 differ diff --git a/resource_Publish/assets/sound/loading/xuanze.mp3 b/resource_Publish/assets/sound/loading/xuanze.mp3 new file mode 100644 index 0000000..a13206b Binary files /dev/null and b/resource_Publish/assets/sound/loading/xuanze.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouren-1.mp3 b/resource_Publish/assets/sound/monster/banshouren-1.mp3 new file mode 100644 index 0000000..6249af2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouren-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouren-2.mp3 b/resource_Publish/assets/sound/monster/banshouren-2.mp3 new file mode 100644 index 0000000..d5eb7f2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouren-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouren-4.mp3 b/resource_Publish/assets/sound/monster/banshouren-4.mp3 new file mode 100644 index 0000000..90f4f5b Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouren-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouren-5.mp3 b/resource_Publish/assets/sound/monster/banshouren-5.mp3 new file mode 100644 index 0000000..38e2aba Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouren-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouyongshi-1.mp3 b/resource_Publish/assets/sound/monster/banshouyongshi-1.mp3 new file mode 100644 index 0000000..6e28d60 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouyongshi-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouyongshi-2.mp3 b/resource_Publish/assets/sound/monster/banshouyongshi-2.mp3 new file mode 100644 index 0000000..f1a647b Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouyongshi-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouyongshi-4.mp3 b/resource_Publish/assets/sound/monster/banshouyongshi-4.mp3 new file mode 100644 index 0000000..df60503 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouyongshi-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouyongshi-5.mp3 b/resource_Publish/assets/sound/monster/banshouyongshi-5.mp3 new file mode 100644 index 0000000..3079dba Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouyongshi-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouzhanshi-1.mp3 b/resource_Publish/assets/sound/monster/banshouzhanshi-1.mp3 new file mode 100644 index 0000000..4085917 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouzhanshi-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouzhanshi-2.mp3 b/resource_Publish/assets/sound/monster/banshouzhanshi-2.mp3 new file mode 100644 index 0000000..9ec8c0c Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouzhanshi-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouzhanshi-4.mp3 b/resource_Publish/assets/sound/monster/banshouzhanshi-4.mp3 new file mode 100644 index 0000000..ac09ee3 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouzhanshi-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/banshouzhanshi-5.mp3 b/resource_Publish/assets/sound/monster/banshouzhanshi-5.mp3 new file mode 100644 index 0000000..4076b31 Binary files /dev/null and b/resource_Publish/assets/sound/monster/banshouzhanshi-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bf-1.mp3 b/resource_Publish/assets/sound/monster/bf-1.mp3 new file mode 100644 index 0000000..2b11a3e Binary files /dev/null and b/resource_Publish/assets/sound/monster/bf-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bf-2.mp3 b/resource_Publish/assets/sound/monster/bf-2.mp3 new file mode 100644 index 0000000..d40fd23 Binary files /dev/null and b/resource_Publish/assets/sound/monster/bf-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bf-4.mp3 b/resource_Publish/assets/sound/monster/bf-4.mp3 new file mode 100644 index 0000000..501e975 Binary files /dev/null and b/resource_Publish/assets/sound/monster/bf-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bf-5.mp3 b/resource_Publish/assets/sound/monster/bf-5.mp3 new file mode 100644 index 0000000..0f0fdbc Binary files /dev/null and b/resource_Publish/assets/sound/monster/bf-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bosstongyong-1.mp3 b/resource_Publish/assets/sound/monster/bosstongyong-1.mp3 new file mode 100644 index 0000000..dba8e35 Binary files /dev/null and b/resource_Publish/assets/sound/monster/bosstongyong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bosstongyong-2.mp3 b/resource_Publish/assets/sound/monster/bosstongyong-2.mp3 new file mode 100644 index 0000000..a896c1b Binary files /dev/null and b/resource_Publish/assets/sound/monster/bosstongyong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bosstongyong-4.mp3 b/resource_Publish/assets/sound/monster/bosstongyong-4.mp3 new file mode 100644 index 0000000..9027909 Binary files /dev/null and b/resource_Publish/assets/sound/monster/bosstongyong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/bosstongyong-5.mp3 b/resource_Publish/assets/sound/monster/bosstongyong-5.mp3 new file mode 100644 index 0000000..8b4a4f9 Binary files /dev/null and b/resource_Publish/assets/sound/monster/bosstongyong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dcr-1.mp3 b/resource_Publish/assets/sound/monster/dcr-1.mp3 new file mode 100644 index 0000000..e691b80 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dcr-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dcr-2.mp3 b/resource_Publish/assets/sound/monster/dcr-2.mp3 new file mode 100644 index 0000000..8d4841c Binary files /dev/null and b/resource_Publish/assets/sound/monster/dcr-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dcr-4.mp3 b/resource_Publish/assets/sound/monster/dcr-4.mp3 new file mode 100644 index 0000000..1efd832 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dcr-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dcr-5.mp3 b/resource_Publish/assets/sound/monster/dcr-5.mp3 new file mode 100644 index 0000000..47f37db Binary files /dev/null and b/resource_Publish/assets/sound/monster/dcr-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dian-2.mp3 b/resource_Publish/assets/sound/monster/dian-2.mp3 new file mode 100644 index 0000000..f47c57b Binary files /dev/null and b/resource_Publish/assets/sound/monster/dian-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/djs-1.mp3 b/resource_Publish/assets/sound/monster/djs-1.mp3 new file mode 100644 index 0000000..12c09c5 Binary files /dev/null and b/resource_Publish/assets/sound/monster/djs-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/djs-2.mp3 b/resource_Publish/assets/sound/monster/djs-2.mp3 new file mode 100644 index 0000000..7103777 Binary files /dev/null and b/resource_Publish/assets/sound/monster/djs-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/djs-4.mp3 b/resource_Publish/assets/sound/monster/djs-4.mp3 new file mode 100644 index 0000000..e12e065 Binary files /dev/null and b/resource_Publish/assets/sound/monster/djs-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/djs-5.mp3 b/resource_Publish/assets/sound/monster/djs-5.mp3 new file mode 100644 index 0000000..8e435e2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/djs-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dls-1.mp3 b/resource_Publish/assets/sound/monster/dls-1.mp3 new file mode 100644 index 0000000..cf4a257 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dls-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dls-2.mp3 b/resource_Publish/assets/sound/monster/dls-2.mp3 new file mode 100644 index 0000000..6b13600 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dls-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dls-4.mp3 b/resource_Publish/assets/sound/monster/dls-4.mp3 new file mode 100644 index 0000000..35e9483 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dls-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dls-5.mp3 b/resource_Publish/assets/sound/monster/dls-5.mp3 new file mode 100644 index 0000000..d17de3b Binary files /dev/null and b/resource_Publish/assets/sound/monster/dls-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dpm-1.mp3 b/resource_Publish/assets/sound/monster/dpm-1.mp3 new file mode 100644 index 0000000..5b1ecc0 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dpm-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dpm-2.mp3 b/resource_Publish/assets/sound/monster/dpm-2.mp3 new file mode 100644 index 0000000..268adcc Binary files /dev/null and b/resource_Publish/assets/sound/monster/dpm-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dpm-4.mp3 b/resource_Publish/assets/sound/monster/dpm-4.mp3 new file mode 100644 index 0000000..b016239 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dpm-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dpm-5.mp3 b/resource_Publish/assets/sound/monster/dpm-5.mp3 new file mode 100644 index 0000000..b2b19cf Binary files /dev/null and b/resource_Publish/assets/sound/monster/dpm-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dq-1.mp3 b/resource_Publish/assets/sound/monster/dq-1.mp3 new file mode 100644 index 0000000..d27b9f1 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dq-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dq-2.mp3 b/resource_Publish/assets/sound/monster/dq-2.mp3 new file mode 100644 index 0000000..cf98d47 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dq-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dq-4.mp3 b/resource_Publish/assets/sound/monster/dq-4.mp3 new file mode 100644 index 0000000..328fb41 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dq-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dq-5.mp3 b/resource_Publish/assets/sound/monster/dq-5.mp3 new file mode 100644 index 0000000..1ef5922 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dq-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/duojiaochong-1.mp3 b/resource_Publish/assets/sound/monster/duojiaochong-1.mp3 new file mode 100644 index 0000000..bc291ff Binary files /dev/null and b/resource_Publish/assets/sound/monster/duojiaochong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/duojiaochong-2.mp3 b/resource_Publish/assets/sound/monster/duojiaochong-2.mp3 new file mode 100644 index 0000000..affc949 Binary files /dev/null and b/resource_Publish/assets/sound/monster/duojiaochong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/duojiaochong-4.mp3 b/resource_Publish/assets/sound/monster/duojiaochong-4.mp3 new file mode 100644 index 0000000..99dd530 Binary files /dev/null and b/resource_Publish/assets/sound/monster/duojiaochong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/duojiaochong-5.mp3 b/resource_Publish/assets/sound/monster/duojiaochong-5.mp3 new file mode 100644 index 0000000..a6101de Binary files /dev/null and b/resource_Publish/assets/sound/monster/duojiaochong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dzz-1.mp3 b/resource_Publish/assets/sound/monster/dzz-1.mp3 new file mode 100644 index 0000000..84d8ef5 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dzz-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dzz-2.mp3 b/resource_Publish/assets/sound/monster/dzz-2.mp3 new file mode 100644 index 0000000..7107be4 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dzz-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dzz-4.mp3 b/resource_Publish/assets/sound/monster/dzz-4.mp3 new file mode 100644 index 0000000..00a6c99 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dzz-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/dzz-5.mp3 b/resource_Publish/assets/sound/monster/dzz-5.mp3 new file mode 100644 index 0000000..9baf268 Binary files /dev/null and b/resource_Publish/assets/sound/monster/dzz-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/fenchong-1.mp3 b/resource_Publish/assets/sound/monster/fenchong-1.mp3 new file mode 100644 index 0000000..6f03648 Binary files /dev/null and b/resource_Publish/assets/sound/monster/fenchong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/fenchong-2.mp3 b/resource_Publish/assets/sound/monster/fenchong-2.mp3 new file mode 100644 index 0000000..f6cdc47 Binary files /dev/null and b/resource_Publish/assets/sound/monster/fenchong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/fenchong-4.mp3 b/resource_Publish/assets/sound/monster/fenchong-4.mp3 new file mode 100644 index 0000000..33f858a Binary files /dev/null and b/resource_Publish/assets/sound/monster/fenchong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/fenchong-5.mp3 b/resource_Publish/assets/sound/monster/fenchong-5.mp3 new file mode 100644 index 0000000..6485eba Binary files /dev/null and b/resource_Publish/assets/sound/monster/fenchong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/gumotongyong-1.mp3 b/resource_Publish/assets/sound/monster/gumotongyong-1.mp3 new file mode 100644 index 0000000..ef6095f Binary files /dev/null and b/resource_Publish/assets/sound/monster/gumotongyong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/gumotongyong-2.mp3 b/resource_Publish/assets/sound/monster/gumotongyong-2.mp3 new file mode 100644 index 0000000..a94b819 Binary files /dev/null and b/resource_Publish/assets/sound/monster/gumotongyong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/gumotongyong-4.mp3 b/resource_Publish/assets/sound/monster/gumotongyong-4.mp3 new file mode 100644 index 0000000..1ced865 Binary files /dev/null and b/resource_Publish/assets/sound/monster/gumotongyong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/gumotongyong-5.mp3 b/resource_Publish/assets/sound/monster/gumotongyong-5.mp3 new file mode 100644 index 0000000..4380dd3 Binary files /dev/null and b/resource_Publish/assets/sound/monster/gumotongyong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/heiseequ-1.mp3 b/resource_Publish/assets/sound/monster/heiseequ-1.mp3 new file mode 100644 index 0000000..529d51d Binary files /dev/null and b/resource_Publish/assets/sound/monster/heiseequ-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/heiseequ-2.mp3 b/resource_Publish/assets/sound/monster/heiseequ-2.mp3 new file mode 100644 index 0000000..28761eb Binary files /dev/null and b/resource_Publish/assets/sound/monster/heiseequ-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/heiseequ-4.mp3 b/resource_Publish/assets/sound/monster/heiseequ-4.mp3 new file mode 100644 index 0000000..0aaee04 Binary files /dev/null and b/resource_Publish/assets/sound/monster/heiseequ-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/heiseequ-5.mp3 b/resource_Publish/assets/sound/monster/heiseequ-5.mp3 new file mode 100644 index 0000000..017ae86 Binary files /dev/null and b/resource_Publish/assets/sound/monster/heiseequ-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hm-1.mp3 b/resource_Publish/assets/sound/monster/hm-1.mp3 new file mode 100644 index 0000000..96942e2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hm-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hm-2.mp3 b/resource_Publish/assets/sound/monster/hm-2.mp3 new file mode 100644 index 0000000..4b0bac7 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hm-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hm-4.mp3 b/resource_Publish/assets/sound/monster/hm-4.mp3 new file mode 100644 index 0000000..d27d7fe Binary files /dev/null and b/resource_Publish/assets/sound/monster/hm-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hm-5.mp3 b/resource_Publish/assets/sound/monster/hm-5.mp3 new file mode 100644 index 0000000..bd46200 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hm-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hshs-1.mp3 b/resource_Publish/assets/sound/monster/hshs-1.mp3 new file mode 100644 index 0000000..8229f4a Binary files /dev/null and b/resource_Publish/assets/sound/monster/hshs-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hshs-2.mp3 b/resource_Publish/assets/sound/monster/hshs-2.mp3 new file mode 100644 index 0000000..622c707 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hshs-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hshs-4.mp3 b/resource_Publish/assets/sound/monster/hshs-4.mp3 new file mode 100644 index 0000000..25bac56 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hshs-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/hshs-5.mp3 b/resource_Publish/assets/sound/monster/hshs-5.mp3 new file mode 100644 index 0000000..de09c67 Binary files /dev/null and b/resource_Publish/assets/sound/monster/hshs-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/huo-2.mp3 b/resource_Publish/assets/sound/monster/huo-2.mp3 new file mode 100644 index 0000000..8952421 Binary files /dev/null and b/resource_Publish/assets/sound/monster/huo-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ji-1.mp3 b/resource_Publish/assets/sound/monster/ji-1.mp3 new file mode 100644 index 0000000..0f96459 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ji-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ji-2.mp3 b/resource_Publish/assets/sound/monster/ji-2.mp3 new file mode 100644 index 0000000..1562e29 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ji-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ji-4.mp3 b/resource_Publish/assets/sound/monster/ji-4.mp3 new file mode 100644 index 0000000..a064297 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ji-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ji-5.mp3 b/resource_Publish/assets/sound/monster/ji-5.mp3 new file mode 100644 index 0000000..efbb414 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ji-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/js-1.mp3 b/resource_Publish/assets/sound/monster/js-1.mp3 new file mode 100644 index 0000000..7c9394c Binary files /dev/null and b/resource_Publish/assets/sound/monster/js-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/js-2.mp3 b/resource_Publish/assets/sound/monster/js-2.mp3 new file mode 100644 index 0000000..d6ac9ff Binary files /dev/null and b/resource_Publish/assets/sound/monster/js-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/js-4.mp3 b/resource_Publish/assets/sound/monster/js-4.mp3 new file mode 100644 index 0000000..a908835 Binary files /dev/null and b/resource_Publish/assets/sound/monster/js-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/js-5.mp3 b/resource_Publish/assets/sound/monster/js-5.mp3 new file mode 100644 index 0000000..4a5dad9 Binary files /dev/null and b/resource_Publish/assets/sound/monster/js-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/jxduojiaochong-1.mp3 b/resource_Publish/assets/sound/monster/jxduojiaochong-1.mp3 new file mode 100644 index 0000000..b96aabf Binary files /dev/null and b/resource_Publish/assets/sound/monster/jxduojiaochong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/jxduojiaochong-2.mp3 b/resource_Publish/assets/sound/monster/jxduojiaochong-2.mp3 new file mode 100644 index 0000000..6c6bc04 Binary files /dev/null and b/resource_Publish/assets/sound/monster/jxduojiaochong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/jxduojiaochong-4.mp3 b/resource_Publish/assets/sound/monster/jxduojiaochong-4.mp3 new file mode 100644 index 0000000..989309c Binary files /dev/null and b/resource_Publish/assets/sound/monster/jxduojiaochong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/jxduojiaochong-5.mp3 b/resource_Publish/assets/sound/monster/jxduojiaochong-5.mp3 new file mode 100644 index 0000000..9509fce Binary files /dev/null and b/resource_Publish/assets/sound/monster/jxduojiaochong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kjc-1.mp3 b/resource_Publish/assets/sound/monster/kjc-1.mp3 new file mode 100644 index 0000000..522491e Binary files /dev/null and b/resource_Publish/assets/sound/monster/kjc-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kjc-2.mp3 b/resource_Publish/assets/sound/monster/kjc-2.mp3 new file mode 100644 index 0000000..b56bf00 Binary files /dev/null and b/resource_Publish/assets/sound/monster/kjc-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kjc-4.mp3 b/resource_Publish/assets/sound/monster/kjc-4.mp3 new file mode 100644 index 0000000..6da0d2f Binary files /dev/null and b/resource_Publish/assets/sound/monster/kjc-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kjc-5.mp3 b/resource_Publish/assets/sound/monster/kjc-5.mp3 new file mode 100644 index 0000000..c284fc1 Binary files /dev/null and b/resource_Publish/assets/sound/monster/kjc-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kl-1.mp3 b/resource_Publish/assets/sound/monster/kl-1.mp3 new file mode 100644 index 0000000..064cef8 Binary files /dev/null and b/resource_Publish/assets/sound/monster/kl-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kl-2.mp3 b/resource_Publish/assets/sound/monster/kl-2.mp3 new file mode 100644 index 0000000..28b174b Binary files /dev/null and b/resource_Publish/assets/sound/monster/kl-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kl-4.mp3 b/resource_Publish/assets/sound/monster/kl-4.mp3 new file mode 100644 index 0000000..28b7960 Binary files /dev/null and b/resource_Publish/assets/sound/monster/kl-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/kl-5.mp3 b/resource_Publish/assets/sound/monster/kl-5.mp3 new file mode 100644 index 0000000..a9bd6b5 Binary files /dev/null and b/resource_Publish/assets/sound/monster/kl-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/klss-2.mp3 b/resource_Publish/assets/sound/monster/klss-2.mp3 new file mode 100644 index 0000000..f05505b Binary files /dev/null and b/resource_Publish/assets/sound/monster/klss-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lang-1.mp3 b/resource_Publish/assets/sound/monster/lang-1.mp3 new file mode 100644 index 0000000..fb19f48 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lang-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lang-2.mp3 b/resource_Publish/assets/sound/monster/lang-2.mp3 new file mode 100644 index 0000000..8e953ae Binary files /dev/null and b/resource_Publish/assets/sound/monster/lang-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lang-4.mp3 b/resource_Publish/assets/sound/monster/lang-4.mp3 new file mode 100644 index 0000000..20b0296 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lang-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lang-5.mp3 b/resource_Publish/assets/sound/monster/lang-5.mp3 new file mode 100644 index 0000000..ec8627c Binary files /dev/null and b/resource_Publish/assets/sound/monster/lang-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lu-1.mp3 b/resource_Publish/assets/sound/monster/lu-1.mp3 new file mode 100644 index 0000000..5371621 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lu-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lu-2.mp3 b/resource_Publish/assets/sound/monster/lu-2.mp3 new file mode 100644 index 0000000..e97ea69 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lu-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lu-4.mp3 b/resource_Publish/assets/sound/monster/lu-4.mp3 new file mode 100644 index 0000000..c1c1e96 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lu-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/lu-5.mp3 b/resource_Publish/assets/sound/monster/lu-5.mp3 new file mode 100644 index 0000000..6337f12 Binary files /dev/null and b/resource_Publish/assets/sound/monster/lu-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/m_bywd_1.mp3 b/resource_Publish/assets/sound/monster/m_bywd_1.mp3 new file mode 100644 index 0000000..bede7b1 Binary files /dev/null and b/resource_Publish/assets/sound/monster/m_bywd_1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/pttongyong-1.mp3 b/resource_Publish/assets/sound/monster/pttongyong-1.mp3 new file mode 100644 index 0000000..a203f4e Binary files /dev/null and b/resource_Publish/assets/sound/monster/pttongyong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/pttongyong-2.mp3 b/resource_Publish/assets/sound/monster/pttongyong-2.mp3 new file mode 100644 index 0000000..3e98472 Binary files /dev/null and b/resource_Publish/assets/sound/monster/pttongyong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/pttongyong-4.mp3 b/resource_Publish/assets/sound/monster/pttongyong-4.mp3 new file mode 100644 index 0000000..be08220 Binary files /dev/null and b/resource_Publish/assets/sound/monster/pttongyong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/pttongyong-5.mp3 b/resource_Publish/assets/sound/monster/pttongyong-5.mp3 new file mode 100644 index 0000000..55a146f Binary files /dev/null and b/resource_Publish/assets/sound/monster/pttongyong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/qianchong-1.mp3 b/resource_Publish/assets/sound/monster/qianchong-1.mp3 new file mode 100644 index 0000000..529d51d Binary files /dev/null and b/resource_Publish/assets/sound/monster/qianchong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/qianchong-2.mp3 b/resource_Publish/assets/sound/monster/qianchong-2.mp3 new file mode 100644 index 0000000..28761eb Binary files /dev/null and b/resource_Publish/assets/sound/monster/qianchong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/qianchong-4.mp3 b/resource_Publish/assets/sound/monster/qianchong-4.mp3 new file mode 100644 index 0000000..0aaee04 Binary files /dev/null and b/resource_Publish/assets/sound/monster/qianchong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/qianchong-5.mp3 b/resource_Publish/assets/sound/monster/qianchong-5.mp3 new file mode 100644 index 0000000..017ae86 Binary files /dev/null and b/resource_Publish/assets/sound/monster/qianchong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ruchong-1.mp3 b/resource_Publish/assets/sound/monster/ruchong-1.mp3 new file mode 100644 index 0000000..7a81639 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ruchong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ruchong-2.mp3 b/resource_Publish/assets/sound/monster/ruchong-2.mp3 new file mode 100644 index 0000000..9758f41 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ruchong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ruchong-4.mp3 b/resource_Publish/assets/sound/monster/ruchong-4.mp3 new file mode 100644 index 0000000..1eb90da Binary files /dev/null and b/resource_Publish/assets/sound/monster/ruchong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ruchong-5.mp3 b/resource_Publish/assets/sound/monster/ruchong-5.mp3 new file mode 100644 index 0000000..23baae7 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ruchong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/sdbianfu-2.mp3 b/resource_Publish/assets/sound/monster/sdbianfu-2.mp3 new file mode 100644 index 0000000..3eb20cb Binary files /dev/null and b/resource_Publish/assets/sound/monster/sdbianfu-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/sdbianfu-5.mp3 b/resource_Publish/assets/sound/monster/sdbianfu-5.mp3 new file mode 100644 index 0000000..0e48f15 Binary files /dev/null and b/resource_Publish/assets/sound/monster/sdbianfu-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshou-1.mp3 b/resource_Publish/assets/sound/monster/shenshou-1.mp3 new file mode 100644 index 0000000..832ad80 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshou-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshou-4.mp3 b/resource_Publish/assets/sound/monster/shenshou-4.mp3 new file mode 100644 index 0000000..aeea5af Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshou-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshou-5.mp3 b/resource_Publish/assets/sound/monster/shenshou-5.mp3 new file mode 100644 index 0000000..aef89f4 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshou-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshouz-0.mp3 b/resource_Publish/assets/sound/monster/shenshouz-0.mp3 new file mode 100644 index 0000000..92caa69 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshouz-0.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshouz-1.mp3 b/resource_Publish/assets/sound/monster/shenshouz-1.mp3 new file mode 100644 index 0000000..a17b8ba Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshouz-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshouz-2.mp3 b/resource_Publish/assets/sound/monster/shenshouz-2.mp3 new file mode 100644 index 0000000..8be3111 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshouz-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshouz-4.mp3 b/resource_Publish/assets/sound/monster/shenshouz-4.mp3 new file mode 100644 index 0000000..89fefa7 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshouz-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shenshouz-5.mp3 b/resource_Publish/assets/sound/monster/shenshouz-5.mp3 new file mode 100644 index 0000000..160f0cd Binary files /dev/null and b/resource_Publish/assets/sound/monster/shenshouz-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shiwang-1.mp3 b/resource_Publish/assets/sound/monster/shiwang-1.mp3 new file mode 100644 index 0000000..89d7188 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shiwang-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shiwang-2.mp3 b/resource_Publish/assets/sound/monster/shiwang-2.mp3 new file mode 100644 index 0000000..2889ea3 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shiwang-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shiwang-4.mp3 b/resource_Publish/assets/sound/monster/shiwang-4.mp3 new file mode 100644 index 0000000..b4d6d80 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shiwang-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shiwang-5.mp3 b/resource_Publish/assets/sound/monster/shiwang-5.mp3 new file mode 100644 index 0000000..d838c70 Binary files /dev/null and b/resource_Publish/assets/sound/monster/shiwang-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/shuyao-2.mp3 b/resource_Publish/assets/sound/monster/shuyao-2.mp3 new file mode 100644 index 0000000..681e60b Binary files /dev/null and b/resource_Publish/assets/sound/monster/shuyao-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/slxr-1.mp3 b/resource_Publish/assets/sound/monster/slxr-1.mp3 new file mode 100644 index 0000000..5bf58b3 Binary files /dev/null and b/resource_Publish/assets/sound/monster/slxr-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/slxr-2.mp3 b/resource_Publish/assets/sound/monster/slxr-2.mp3 new file mode 100644 index 0000000..3a351fc Binary files /dev/null and b/resource_Publish/assets/sound/monster/slxr-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/slxr-5.mp3 b/resource_Publish/assets/sound/monster/slxr-5.mp3 new file mode 100644 index 0000000..6605045 Binary files /dev/null and b/resource_Publish/assets/sound/monster/slxr-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/tiaotiaofeng-1.mp3 b/resource_Publish/assets/sound/monster/tiaotiaofeng-1.mp3 new file mode 100644 index 0000000..aca8032 Binary files /dev/null and b/resource_Publish/assets/sound/monster/tiaotiaofeng-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/tiaotiaofeng-2.mp3 b/resource_Publish/assets/sound/monster/tiaotiaofeng-2.mp3 new file mode 100644 index 0000000..a2dfc69 Binary files /dev/null and b/resource_Publish/assets/sound/monster/tiaotiaofeng-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/tiaotiaofeng-4.mp3 b/resource_Publish/assets/sound/monster/tiaotiaofeng-4.mp3 new file mode 100644 index 0000000..6be9a70 Binary files /dev/null and b/resource_Publish/assets/sound/monster/tiaotiaofeng-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/tiaotiaofeng-5.mp3 b/resource_Publish/assets/sound/monster/tiaotiaofeng-5.mp3 new file mode 100644 index 0000000..c816a88 Binary files /dev/null and b/resource_Publish/assets/sound/monster/tiaotiaofeng-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/woma-1.mp3 b/resource_Publish/assets/sound/monster/woma-1.mp3 new file mode 100644 index 0000000..e8545c8 Binary files /dev/null and b/resource_Publish/assets/sound/monster/woma-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/woma-2.mp3 b/resource_Publish/assets/sound/monster/woma-2.mp3 new file mode 100644 index 0000000..c4bcedd Binary files /dev/null and b/resource_Publish/assets/sound/monster/woma-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/woma-4.mp3 b/resource_Publish/assets/sound/monster/woma-4.mp3 new file mode 100644 index 0000000..91a0bda Binary files /dev/null and b/resource_Publish/assets/sound/monster/woma-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/woma-5.mp3 b/resource_Publish/assets/sound/monster/woma-5.mp3 new file mode 100644 index 0000000..b9f5cf8 Binary files /dev/null and b/resource_Publish/assets/sound/monster/woma-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wslxc-1.mp3 b/resource_Publish/assets/sound/monster/wslxc-1.mp3 new file mode 100644 index 0000000..cf4a257 Binary files /dev/null and b/resource_Publish/assets/sound/monster/wslxc-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wslxc-2.mp3 b/resource_Publish/assets/sound/monster/wslxc-2.mp3 new file mode 100644 index 0000000..6b13600 Binary files /dev/null and b/resource_Publish/assets/sound/monster/wslxc-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wslxc-4.mp3 b/resource_Publish/assets/sound/monster/wslxc-4.mp3 new file mode 100644 index 0000000..35e9483 Binary files /dev/null and b/resource_Publish/assets/sound/monster/wslxc-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wslxc-5.mp3 b/resource_Publish/assets/sound/monster/wslxc-5.mp3 new file mode 100644 index 0000000..d17de3b Binary files /dev/null and b/resource_Publish/assets/sound/monster/wslxc-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wugong-1.mp3 b/resource_Publish/assets/sound/monster/wugong-1.mp3 new file mode 100644 index 0000000..aef6f4e Binary files /dev/null and b/resource_Publish/assets/sound/monster/wugong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wugong-2.mp3 b/resource_Publish/assets/sound/monster/wugong-2.mp3 new file mode 100644 index 0000000..5f6ebc7 Binary files /dev/null and b/resource_Publish/assets/sound/monster/wugong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wugong-4.mp3 b/resource_Publish/assets/sound/monster/wugong-4.mp3 new file mode 100644 index 0000000..e40b2ee Binary files /dev/null and b/resource_Publish/assets/sound/monster/wugong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/wugong-5.mp3 b/resource_Publish/assets/sound/monster/wugong-5.mp3 new file mode 100644 index 0000000..861b9d4 Binary files /dev/null and b/resource_Publish/assets/sound/monster/wugong-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xiee-1.mp3 b/resource_Publish/assets/sound/monster/xiee-1.mp3 new file mode 100644 index 0000000..62411d2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xiee-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xiee-2.mp3 b/resource_Publish/assets/sound/monster/xiee-2.mp3 new file mode 100644 index 0000000..b7b52c0 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xiee-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xiee-4.mp3 b/resource_Publish/assets/sound/monster/xiee-4.mp3 new file mode 100644 index 0000000..ad4101b Binary files /dev/null and b/resource_Publish/assets/sound/monster/xiee-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xiee-5.mp3 b/resource_Publish/assets/sound/monster/xiee-5.mp3 new file mode 100644 index 0000000..cc08108 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xiee-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xieshe-1.mp3 b/resource_Publish/assets/sound/monster/xieshe-1.mp3 new file mode 100644 index 0000000..2889717 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xieshe-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xieshe-2.mp3 b/resource_Publish/assets/sound/monster/xieshe-2.mp3 new file mode 100644 index 0000000..2d685a8 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xieshe-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xieshe-4.mp3 b/resource_Publish/assets/sound/monster/xieshe-4.mp3 new file mode 100644 index 0000000..86e93b2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/xieshe-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/xieshe-5.mp3 b/resource_Publish/assets/sound/monster/xieshe-5.mp3 new file mode 100644 index 0000000..5f468ff Binary files /dev/null and b/resource_Publish/assets/sound/monster/xieshe-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yang-1.mp3 b/resource_Publish/assets/sound/monster/yang-1.mp3 new file mode 100644 index 0000000..ad6fc28 Binary files /dev/null and b/resource_Publish/assets/sound/monster/yang-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yang-2.mp3 b/resource_Publish/assets/sound/monster/yang-2.mp3 new file mode 100644 index 0000000..2cbad3c Binary files /dev/null and b/resource_Publish/assets/sound/monster/yang-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yang-4.mp3 b/resource_Publish/assets/sound/monster/yang-4.mp3 new file mode 100644 index 0000000..d2c63a4 Binary files /dev/null and b/resource_Publish/assets/sound/monster/yang-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yang-5.mp3 b/resource_Publish/assets/sound/monster/yang-5.mp3 new file mode 100644 index 0000000..5268cb7 Binary files /dev/null and b/resource_Publish/assets/sound/monster/yang-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yezhu-1.mp3 b/resource_Publish/assets/sound/monster/yezhu-1.mp3 new file mode 100644 index 0000000..49a07e5 Binary files /dev/null and b/resource_Publish/assets/sound/monster/yezhu-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yezhu-2.mp3 b/resource_Publish/assets/sound/monster/yezhu-2.mp3 new file mode 100644 index 0000000..98ed6ce Binary files /dev/null and b/resource_Publish/assets/sound/monster/yezhu-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yezhu-4.mp3 b/resource_Publish/assets/sound/monster/yezhu-4.mp3 new file mode 100644 index 0000000..b50740b Binary files /dev/null and b/resource_Publish/assets/sound/monster/yezhu-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/yezhu-5.mp3 b/resource_Publish/assets/sound/monster/yezhu-5.mp3 new file mode 100644 index 0000000..0953675 Binary files /dev/null and b/resource_Publish/assets/sound/monster/yezhu-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ying-1.mp3 b/resource_Publish/assets/sound/monster/ying-1.mp3 new file mode 100644 index 0000000..e552ae4 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ying-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ying-2.mp3 b/resource_Publish/assets/sound/monster/ying-2.mp3 new file mode 100644 index 0000000..310ae1f Binary files /dev/null and b/resource_Publish/assets/sound/monster/ying-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ying-4.mp3 b/resource_Publish/assets/sound/monster/ying-4.mp3 new file mode 100644 index 0000000..ba64e2c Binary files /dev/null and b/resource_Publish/assets/sound/monster/ying-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/ying-5.mp3 b/resource_Publish/assets/sound/monster/ying-5.mp3 new file mode 100644 index 0000000..7735498 Binary files /dev/null and b/resource_Publish/assets/sound/monster/ying-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zmjz-1.mp3 b/resource_Publish/assets/sound/monster/zmjz-1.mp3 new file mode 100644 index 0000000..a409cf5 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zmjz-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zmjz-2.mp3 b/resource_Publish/assets/sound/monster/zmjz-2.mp3 new file mode 100644 index 0000000..38dc401 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zmjz-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zmjz-4.mp3 b/resource_Publish/assets/sound/monster/zmjz-4.mp3 new file mode 100644 index 0000000..1d1a4b1 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zmjz-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zmjz-5.mp3 b/resource_Publish/assets/sound/monster/zmjz-5.mp3 new file mode 100644 index 0000000..e949fa8 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zmjz-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zuma-1.mp3 b/resource_Publish/assets/sound/monster/zuma-1.mp3 new file mode 100644 index 0000000..655579f Binary files /dev/null and b/resource_Publish/assets/sound/monster/zuma-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zuma-2.mp3 b/resource_Publish/assets/sound/monster/zuma-2.mp3 new file mode 100644 index 0000000..05395c3 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zuma-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zuma-4.mp3 b/resource_Publish/assets/sound/monster/zuma-4.mp3 new file mode 100644 index 0000000..3acbf91 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zuma-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zuma-5.mp3 b/resource_Publish/assets/sound/monster/zuma-5.mp3 new file mode 100644 index 0000000..0dbee20 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zuma-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zumagjs-1.mp3 b/resource_Publish/assets/sound/monster/zumagjs-1.mp3 new file mode 100644 index 0000000..c1b59ef Binary files /dev/null and b/resource_Publish/assets/sound/monster/zumagjs-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zumagjs-2.mp3 b/resource_Publish/assets/sound/monster/zumagjs-2.mp3 new file mode 100644 index 0000000..23eb088 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zumagjs-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zumagjs-4.mp3 b/resource_Publish/assets/sound/monster/zumagjs-4.mp3 new file mode 100644 index 0000000..f1d49d0 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zumagjs-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zumagjs-5.mp3 b/resource_Publish/assets/sound/monster/zumagjs-5.mp3 new file mode 100644 index 0000000..024abf2 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zumagjs-5.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zztongyong-1.mp3 b/resource_Publish/assets/sound/monster/zztongyong-1.mp3 new file mode 100644 index 0000000..bebf95c Binary files /dev/null and b/resource_Publish/assets/sound/monster/zztongyong-1.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zztongyong-2.mp3 b/resource_Publish/assets/sound/monster/zztongyong-2.mp3 new file mode 100644 index 0000000..a158ad1 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zztongyong-2.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zztongyong-4.mp3 b/resource_Publish/assets/sound/monster/zztongyong-4.mp3 new file mode 100644 index 0000000..c72a42a Binary files /dev/null and b/resource_Publish/assets/sound/monster/zztongyong-4.mp3 differ diff --git a/resource_Publish/assets/sound/monster/zztongyong-5.mp3 b/resource_Publish/assets/sound/monster/zztongyong-5.mp3 new file mode 100644 index 0000000..5cad697 Binary files /dev/null and b/resource_Publish/assets/sound/monster/zztongyong-5.mp3 differ diff --git a/resource_Publish/assets/sound/npc/npc_welcome.mp3 b/resource_Publish/assets/sound/npc/npc_welcome.mp3 new file mode 100644 index 0000000..c529bc6 Binary files /dev/null and b/resource_Publish/assets/sound/npc/npc_welcome.mp3 differ diff --git a/resource_Publish/assets/sound/other/anniu1.mp3 b/resource_Publish/assets/sound/other/anniu1.mp3 new file mode 100644 index 0000000..d5978d0 Binary files /dev/null and b/resource_Publish/assets/sound/other/anniu1.mp3 differ diff --git a/resource_Publish/assets/sound/other/anniu2.mp3 b/resource_Publish/assets/sound/other/anniu2.mp3 new file mode 100644 index 0000000..8b0f932 Binary files /dev/null and b/resource_Publish/assets/sound/other/anniu2.mp3 differ diff --git a/resource_Publish/assets/sound/other/anniu3.mp3 b/resource_Publish/assets/sound/other/anniu3.mp3 new file mode 100644 index 0000000..ac5cd3f Binary files /dev/null and b/resource_Publish/assets/sound/other/anniu3.mp3 differ diff --git a/resource_Publish/assets/sound/other/duanzao~1.mp3 b/resource_Publish/assets/sound/other/duanzao~1.mp3 new file mode 100644 index 0000000..86b9917 Binary files /dev/null and b/resource_Publish/assets/sound/other/duanzao~1.mp3 differ diff --git a/resource_Publish/assets/sound/other/heyao.mp3 b/resource_Publish/assets/sound/other/heyao.mp3 new file mode 100644 index 0000000..181e8f0 Binary files /dev/null and b/resource_Publish/assets/sound/other/heyao.mp3 differ diff --git a/resource_Publish/assets/sound/other/jinbizengjia.mp3 b/resource_Publish/assets/sound/other/jinbizengjia.mp3 new file mode 100644 index 0000000..5331634 Binary files /dev/null and b/resource_Publish/assets/sound/other/jinbizengjia.mp3 differ diff --git a/resource_Publish/assets/sound/other/shengji.mp3 b/resource_Publish/assets/sound/other/shengji.mp3 new file mode 100644 index 0000000..e367ec4 Binary files /dev/null and b/resource_Publish/assets/sound/other/shengji.mp3 differ diff --git a/resource_Publish/assets/sound/other/shengji~1.mp3 b/resource_Publish/assets/sound/other/shengji~1.mp3 new file mode 100644 index 0000000..e367ec4 Binary files /dev/null and b/resource_Publish/assets/sound/other/shengji~1.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangjiezhi.mp3 b/resource_Publish/assets/sound/other/zhuangjiezhi.mp3 new file mode 100644 index 0000000..37800ca Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangjiezhi.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangsanjian.mp3 b/resource_Publish/assets/sound/other/zhuangsanjian.mp3 new file mode 100644 index 0000000..0f5c778 Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangsanjian.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangshouzhuo.mp3 b/resource_Publish/assets/sound/other/zhuangshouzhuo.mp3 new file mode 100644 index 0000000..a16c3d3 Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangshouzhuo.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangwuqi.mp3 b/resource_Publish/assets/sound/other/zhuangwuqi.mp3 new file mode 100644 index 0000000..2890de7 Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangwuqi.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangxianglian.mp3 b/resource_Publish/assets/sound/other/zhuangxianglian.mp3 new file mode 100644 index 0000000..a7b3999 Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangxianglian.mp3 differ diff --git a/resource_Publish/assets/sound/other/zhuangyifu.mp3 b/resource_Publish/assets/sound/other/zhuangyifu.mp3 new file mode 100644 index 0000000..a4b9d55 Binary files /dev/null and b/resource_Publish/assets/sound/other/zhuangyifu.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/chuansonglikai.mp3 b/resource_Publish/assets/sound/skilleffect/chuansonglikai.mp3 new file mode 100644 index 0000000..314505d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/chuansonglikai.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/chuansongziji.mp3 b/resource_Publish/assets/sound/skilleffect/chuansongziji.mp3 new file mode 100644 index 0000000..26a2468 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/chuansongziji.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/dian-2.mp3 b/resource_Publish/assets/sound/skilleffect/dian-2.mp3 new file mode 100644 index 0000000..e8ffeed Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/dian-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/ditutiaozhuan.mp3 b/resource_Publish/assets/sound/skilleffect/ditutiaozhuan.mp3 new file mode 100644 index 0000000..81812e3 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/ditutiaozhuan.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/hero_hj__ltyj.mp3 b/resource_Publish/assets/sound/skilleffect/hero_hj__ltyj.mp3 new file mode 100644 index 0000000..1353629 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/hero_hj__ltyj.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/hero_hj__pxz.mp3 b/resource_Publish/assets/sound/skilleffect/hero_hj__pxz.mp3 new file mode 100644 index 0000000..026bf2c Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/hero_hj__pxz.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/hero_hj__sszz.mp3 b/resource_Publish/assets/sound/skilleffect/hero_hj__sszz.mp3 new file mode 100644 index 0000000..aac2d1d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/hero_hj__sszz.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/hero_hj_hlqy.mp3 b/resource_Publish/assets/sound/skilleffect/hero_hj_hlqy.mp3 new file mode 100644 index 0000000..4ff846b Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/hero_hj_hlqy.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/klss-2.mp3 b/resource_Publish/assets/sound/skilleffect/klss-2.mp3 new file mode 100644 index 0000000..bf1d11d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/klss-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_bpx_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_bpx_1.mp3 new file mode 100644 index 0000000..5556c95 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_bpx_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_bpx_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_bpx_3.mp3 new file mode 100644 index 0000000..d9f2cfe Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_bpx_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_bywd_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_bywd_1.mp3 new file mode 100644 index 0000000..4bd4b2c Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_bywd_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_csjs_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_csjs_1.mp3 new file mode 100644 index 0000000..cbcb464 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_csjs_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_dylg_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_dylg_1.mp3 new file mode 100644 index 0000000..3c75239 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_dylg_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_gsjs_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_gsjs_1.mp3 new file mode 100644 index 0000000..9c39076 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_gsjs_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hbz_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_hbz_1.mp3 new file mode 100644 index 0000000..b51860f Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hbz_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hbz_2.mp3 b/resource_Publish/assets/sound/skilleffect/m_hbz_2.mp3 new file mode 100644 index 0000000..4bd88fd Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hbz_2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hbz_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_hbz_3.mp3 new file mode 100644 index 0000000..3f32f1d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hbz_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hq_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_hq_1.mp3 new file mode 100644 index 0000000..1c0a79b Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hq_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hq_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_hq_3.mp3 new file mode 100644 index 0000000..2b942d6 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hq_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hqs_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_hqs_1.mp3 new file mode 100644 index 0000000..71b398a Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hqs_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hqs_2.mp3 b/resource_Publish/assets/sound/skilleffect/m_hqs_2.mp3 new file mode 100644 index 0000000..e97f0b8 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hqs_2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_hqs_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_hqs_3.mp3 new file mode 100644 index 0000000..488fe57 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_hqs_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_jgdy_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_jgdy_3.mp3 new file mode 100644 index 0000000..472ce5a Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_jgdy_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_jtyss_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_jtyss_1.mp3 new file mode 100644 index 0000000..38e857d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_jtyss_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_jtyss_2.mp3 b/resource_Publish/assets/sound/skilleffect/m_jtyss_2.mp3 new file mode 100644 index 0000000..0124901 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_jtyss_2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_jtyss_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_jtyss_3.mp3 new file mode 100644 index 0000000..7a1f903 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_jtyss_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_kjhh_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_kjhh_1.mp3 new file mode 100644 index 0000000..8e88b82 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_kjhh_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lds_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_lds_3.mp3 new file mode 100644 index 0000000..79c200e Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lds_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lhhf_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_lhhf_1.mp3 new file mode 100644 index 0000000..38e857d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lhhf_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lhhf_2.mp3 b/resource_Publish/assets/sound/skilleffect/m_lhhf_2.mp3 new file mode 100644 index 0000000..a229d6d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lhhf_2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lhhf_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_lhhf_3.mp3 new file mode 100644 index 0000000..57483bd Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lhhf_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lhjf_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_lhjf_1.mp3 new file mode 100644 index 0000000..a3e68b8 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lhjf_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lxhy_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_lxhy_1.mp3 new file mode 100644 index 0000000..0882a99 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lxhy_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_lxhy_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_lxhy_3.mp3 new file mode 100644 index 0000000..20dc13e Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_lxhy_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_mfd_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_mfd_1.mp3 new file mode 100644 index 0000000..d21da38 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_mfd_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_mth_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_mth_3.mp3 new file mode 100644 index 0000000..8e7956d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_mth_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_qtzys_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_qtzys_3.mp3 new file mode 100644 index 0000000..cad7320 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_qtzys_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sds_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_sds_1.mp3 new file mode 100644 index 0000000..b582fb7 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sds_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sds_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_sds_3.mp3 new file mode 100644 index 0000000..bc8578a Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sds_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sszjs_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_sszjs_1.mp3 new file mode 100644 index 0000000..38e857d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sszjs_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sszjs_2.mp3 b/resource_Publish/assets/sound/skilleffect/m_sszjs_2.mp3 new file mode 100644 index 0000000..11ba329 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sszjs_2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sszjs_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_sszjs_3.mp3 new file mode 100644 index 0000000..1c3dd11 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sszjs_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sxs_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_sxs_3.mp3 new file mode 100644 index 0000000..52cda3a Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sxs_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_sxyd_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_sxyd_1.mp3 new file mode 100644 index 0000000..6680362 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_sxyd_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_szh_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_szh_1.mp3 new file mode 100644 index 0000000..f0e88f1 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_szh_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_wjzq_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_wjzq_1.mp3 new file mode 100644 index 0000000..8e7956d Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_wjzq_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_yhzg_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_yhzg_1.mp3 new file mode 100644 index 0000000..55fbc89 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_yhzg_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_yhzg_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_yhzg_3.mp3 new file mode 100644 index 0000000..7a4c191 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_yhzg_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_ymcz_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_ymcz_1.mp3 new file mode 100644 index 0000000..fb5928b Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_ymcz_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_yss_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_yss_1.mp3 new file mode 100644 index 0000000..4e722ce Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_yss_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zhkl_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_zhkl_1.mp3 new file mode 100644 index 0000000..13951d1 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zhkl_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zhkl_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_zhkl_3.mp3 new file mode 100644 index 0000000..4a77e4c Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zhkl_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zhss_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_zhss_1.mp3 new file mode 100644 index 0000000..37dc5bd Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zhss_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zhss_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_zhss_3.mp3 new file mode 100644 index 0000000..b050a64 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zhss_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zrjf_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_zrjf_1.mp3 new file mode 100644 index 0000000..c22ac70 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zrjf_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zys_1.mp3 b/resource_Publish/assets/sound/skilleffect/m_zys_1.mp3 new file mode 100644 index 0000000..0f88c8c Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zys_1.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/m_zys_3.mp3 b/resource_Publish/assets/sound/skilleffect/m_zys_3.mp3 new file mode 100644 index 0000000..a395bd3 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/m_zys_3.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/shenshouz-2.mp3 b/resource_Publish/assets/sound/skilleffect/shenshouz-2.mp3 new file mode 100644 index 0000000..fdb31a0 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/shenshouz-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/shuyao-2.mp3 b/resource_Publish/assets/sound/skilleffect/shuyao-2.mp3 new file mode 100644 index 0000000..8e963e9 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/shuyao-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/xiee-2.mp3 b/resource_Publish/assets/sound/skilleffect/xiee-2.mp3 new file mode 100644 index 0000000..ded4fa4 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/xiee-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/zmjz-2.mp3 b/resource_Publish/assets/sound/skilleffect/zmjz-2.mp3 new file mode 100644 index 0000000..c1fa66e Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/zmjz-2.mp3 differ diff --git a/resource_Publish/assets/sound/skilleffect/zumagjs-2.mp3 b/resource_Publish/assets/sound/skilleffect/zumagjs-2.mp3 new file mode 100644 index 0000000..63d5a21 Binary files /dev/null and b/resource_Publish/assets/sound/skilleffect/zumagjs-2.mp3 differ diff --git a/resource_Publish/assets/suhai/Android-suhai.png b/resource_Publish/assets/suhai/Android-suhai.png new file mode 100644 index 0000000..ed2b52c Binary files /dev/null and b/resource_Publish/assets/suhai/Android-suhai.png differ diff --git a/resource_Publish/assets/suhai/Client-suhai.png b/resource_Publish/assets/suhai/Client-suhai.png new file mode 100644 index 0000000..1c4bfa7 Binary files /dev/null and b/resource_Publish/assets/suhai/Client-suhai.png differ diff --git a/resource_Publish/assets/suhai/IOS_suhai.png b/resource_Publish/assets/suhai/IOS_suhai.png new file mode 100644 index 0000000..4cb94ed Binary files /dev/null and b/resource_Publish/assets/suhai/IOS_suhai.png differ diff --git a/resource_Publish/assets/suhai/Page-suhai.png b/resource_Publish/assets/suhai/Page-suhai.png new file mode 100644 index 0000000..7a73664 Binary files /dev/null and b/resource_Publish/assets/suhai/Page-suhai.png differ diff --git a/resource_Publish/assets/tanwan/bg_tanwanvip.png b/resource_Publish/assets/tanwan/bg_tanwanvip.png new file mode 100644 index 0000000..cc95dc6 Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tanwanvip.png differ diff --git a/resource_Publish/assets/tanwan/bg_tanwanviperweima.png b/resource_Publish/assets/tanwan/bg_tanwanviperweima.png new file mode 100644 index 0000000..49f792e Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tanwanviperweima.png differ diff --git a/resource_Publish/assets/tanwan/bg_tw_bdsj.png b/resource_Publish/assets/tanwan/bg_tw_bdsj.png new file mode 100644 index 0000000..be46e32 Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tw_bdsj.png differ diff --git a/resource_Publish/assets/tanwan/bg_tw_qqqun.png b/resource_Publish/assets/tanwan/bg_tw_qqqun.png new file mode 100644 index 0000000..67045c1 Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tw_qqqun.png differ diff --git a/resource_Publish/assets/tanwan/bg_tw_sanduan.png b/resource_Publish/assets/tanwan/bg_tw_sanduan.png new file mode 100644 index 0000000..be6dfc5 Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tw_sanduan.png differ diff --git a/resource_Publish/assets/tanwan/bg_tw_weixin.png b/resource_Publish/assets/tanwan/bg_tw_weixin.png new file mode 100644 index 0000000..12b6e34 Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tw_weixin.png differ diff --git a/resource_Publish/assets/tanwan/bg_tw_wszl.png b/resource_Publish/assets/tanwan/bg_tw_wszl.png new file mode 100644 index 0000000..494a7ec Binary files /dev/null and b/resource_Publish/assets/tanwan/bg_tw_wszl.png differ diff --git a/resource_Publish/assets/tanwan/tanwan.json b/resource_Publish/assets/tanwan/tanwan.json new file mode 100644 index 0000000..e31534d --- /dev/null +++ b/resource_Publish/assets/tanwan/tanwan.json @@ -0,0 +1,3 @@ +{"file":"tanwan.png","frames":{ +"biaoti_tanwanfuli":{"x":1,"y":139,"w":180,"h":54,"offX":0,"offY":0,"sourceW":180,"sourceH":54}, +"banner_tanwanvip":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}}} \ No newline at end of file diff --git a/resource_Publish/assets/tanwan/tanwan.png b/resource_Publish/assets/tanwan/tanwan.png new file mode 100644 index 0000000..687fb95 Binary files /dev/null and b/resource_Publish/assets/tanwan/tanwan.png differ diff --git a/resource_Publish/assets/team/team.json b/resource_Publish/assets/team/team.json new file mode 100644 index 0000000..e5b8686 --- /dev/null +++ b/resource_Publish/assets/team/team.json @@ -0,0 +1,16 @@ +{"file":"team.png","frames":{ +"team_duizhang":{"x":272,"y":70,"w":27,"h":29,"offX":0,"offY":0,"sourceW":27,"sourceH":29}, +"t_zd_shenqingrudui":{"x":28,"y":92,"w":78,"h":20,"offX":0,"offY":0,"sourceW":78,"sourceH":20}, +"t_zd_tuichuduiwu":{"x":191,"y":70,"w":79,"h":20,"offX":0,"offY":0,"sourceW":79,"sourceH":20}, +"t_zd_yaoqingrudui":{"x":28,"y":70,"w":80,"h":20,"offX":0,"offY":0,"sourceW":80,"sourceH":20}, +"team_bg":{"x":1,"y":1,"w":308,"h":67,"offX":0,"offY":0,"sourceW":308,"sourceH":67}, +"t_zd_tichuduiwu":{"x":110,"y":70,"w":79,"h":20,"offX":0,"offY":0,"sourceW":79,"sourceH":20}, +"t_zd_tianjia":{"x":108,"y":92,"w":48,"h":19,"offX":0,"offY":0,"sourceW":48,"sourceH":19}, +"t_zd_wddw1":{"x":477,"y":1,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_wddw2":{"x":450,"y":1,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_zxhy1":{"x":423,"y":1,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_zxhy2":{"x":1,"y":70,"w":25,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_fjdw1":{"x":367,"y":1,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_fjdw2":{"x":339,"y":1,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_fjwj1":{"x":311,"y":1,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}, +"t_zd_fjwj2":{"x":395,"y":1,"w":26,"h":91,"offX":3,"offY":4,"sourceW":39,"sourceH":111}}} \ No newline at end of file diff --git a/resource_Publish/assets/team/team.png b/resource_Publish/assets/team/team.png new file mode 100644 index 0000000..0b0d696 Binary files /dev/null and b/resource_Publish/assets/team/team.png differ diff --git a/resource_Publish/assets/timing/Timing.json b/resource_Publish/assets/timing/Timing.json new file mode 100644 index 0000000..4df7259 --- /dev/null +++ b/resource_Publish/assets/timing/Timing.json @@ -0,0 +1,5 @@ +{"file":"Timing.png","frames":{ +"timing_bg1":{"x":1,"y":1,"w":452,"h":579,"offX":0,"offY":0,"sourceW":452,"sourceH":579}, +"timing_bg2":{"x":455,"y":1,"w":506,"h":405,"offX":0,"offY":0,"sourceW":506,"sourceH":405}, +"timing_btn":{"x":659,"y":408,"w":129,"h":52,"offX":0,"offY":0,"sourceW":129,"sourceH":52}, +"timing_tsjl":{"x":455,"y":408,"w":202,"h":34,"offX":0,"offY":0,"sourceW":202,"sourceH":34}}} \ No newline at end of file diff --git a/resource_Publish/assets/timing/Timing.png b/resource_Publish/assets/timing/Timing.png new file mode 100644 index 0000000..419c0f3 Binary files /dev/null and b/resource_Publish/assets/timing/Timing.png differ diff --git a/resource_Publish/assets/violentState/rage_bg.png b/resource_Publish/assets/violentState/rage_bg.png new file mode 100644 index 0000000..e1b7a87 Binary files /dev/null and b/resource_Publish/assets/violentState/rage_bg.png differ diff --git a/resource_Publish/assets/vip/tq_bg1.png b/resource_Publish/assets/vip/tq_bg1.png new file mode 100644 index 0000000..13eba45 Binary files /dev/null and b/resource_Publish/assets/vip/tq_bg1.png differ diff --git a/resource_Publish/assets/vip/tq_bg2.png b/resource_Publish/assets/vip/tq_bg2.png new file mode 100644 index 0000000..adbf402 Binary files /dev/null and b/resource_Publish/assets/vip/tq_bg2.png differ diff --git a/resource_Publish/assets/vip/tq_bg3.png b/resource_Publish/assets/vip/tq_bg3.png new file mode 100644 index 0000000..441d3f8 Binary files /dev/null and b/resource_Publish/assets/vip/tq_bg3.png differ diff --git a/resource_Publish/assets/vip/tq_bg6.png b/resource_Publish/assets/vip/tq_bg6.png new file mode 100644 index 0000000..59b5610 Binary files /dev/null and b/resource_Publish/assets/vip/tq_bg6.png differ diff --git a/resource_Publish/assets/vip/tq_bg7.png b/resource_Publish/assets/vip/tq_bg7.png new file mode 100644 index 0000000..08f836d Binary files /dev/null and b/resource_Publish/assets/vip/tq_bg7.png differ diff --git a/resource_Publish/assets/vip/tq_p_1_1.png b/resource_Publish/assets/vip/tq_p_1_1.png new file mode 100644 index 0000000..acdf320 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_1_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_1_2.png b/resource_Publish/assets/vip/tq_p_1_2.png new file mode 100644 index 0000000..6d5af8f Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_1_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_1_3.png b/resource_Publish/assets/vip/tq_p_1_3.png new file mode 100644 index 0000000..dc6c34f Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_1_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_2_1.png b/resource_Publish/assets/vip/tq_p_2_1.png new file mode 100644 index 0000000..a9a168a Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_2_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_2_2.png b/resource_Publish/assets/vip/tq_p_2_2.png new file mode 100644 index 0000000..1bd6319 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_2_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_2_3.png b/resource_Publish/assets/vip/tq_p_2_3.png new file mode 100644 index 0000000..0209a8d Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_2_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_3_1.png b/resource_Publish/assets/vip/tq_p_3_1.png new file mode 100644 index 0000000..28c4b82 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_3_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_3_2.png b/resource_Publish/assets/vip/tq_p_3_2.png new file mode 100644 index 0000000..91b130e Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_3_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_3_3.png b/resource_Publish/assets/vip/tq_p_3_3.png new file mode 100644 index 0000000..c91991d Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_3_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_4_1.png b/resource_Publish/assets/vip/tq_p_4_1.png new file mode 100644 index 0000000..7109c63 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_4_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_4_2.png b/resource_Publish/assets/vip/tq_p_4_2.png new file mode 100644 index 0000000..9fe5654 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_4_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_4_3.png b/resource_Publish/assets/vip/tq_p_4_3.png new file mode 100644 index 0000000..95a9894 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_4_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_5_1.png b/resource_Publish/assets/vip/tq_p_5_1.png new file mode 100644 index 0000000..9497717 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_5_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_5_2.png b/resource_Publish/assets/vip/tq_p_5_2.png new file mode 100644 index 0000000..a82f5c3 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_5_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_5_3.png b/resource_Publish/assets/vip/tq_p_5_3.png new file mode 100644 index 0000000..aa6b27a Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_5_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_6_1.png b/resource_Publish/assets/vip/tq_p_6_1.png new file mode 100644 index 0000000..b1b5392 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_6_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_6_2.png b/resource_Publish/assets/vip/tq_p_6_2.png new file mode 100644 index 0000000..ccaa47b Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_6_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_6_3.png b/resource_Publish/assets/vip/tq_p_6_3.png new file mode 100644 index 0000000..ce24b3f Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_6_3.png differ diff --git a/resource_Publish/assets/vip/tq_p_7_1.png b/resource_Publish/assets/vip/tq_p_7_1.png new file mode 100644 index 0000000..253108f Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_7_1.png differ diff --git a/resource_Publish/assets/vip/tq_p_7_2.png b/resource_Publish/assets/vip/tq_p_7_2.png new file mode 100644 index 0000000..d44958a Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_7_2.png differ diff --git a/resource_Publish/assets/vip/tq_p_7_3.png b/resource_Publish/assets/vip/tq_p_7_3.png new file mode 100644 index 0000000..58dfb63 Binary files /dev/null and b/resource_Publish/assets/vip/tq_p_7_3.png differ diff --git a/resource_Publish/assets/vip/vip.json b/resource_Publish/assets/vip/vip.json new file mode 100644 index 0000000..2a8f2ae --- /dev/null +++ b/resource_Publish/assets/vip/vip.json @@ -0,0 +1,54 @@ +{"file":"vip.png","frames":{ +"tq_lb_jt1":{"x":951,"y":225,"w":39,"h":54,"offX":0,"offY":0,"sourceW":39,"sourceH":54}, +"tq_btnt14_5":{"x":1,"y":133,"w":635,"h":41,"offX":0,"offY":0,"sourceW":635,"sourceH":42}, +"tq_icon_7":{"x":711,"y":1,"w":209,"h":64,"offX":0,"offY":0,"sourceW":209,"sourceH":64}, +"tq_btnt6_1":{"x":240,"y":386,"w":114,"h":29,"offX":0,"offY":0,"sourceW":114,"sourceH":29}, +"tq_jlt7":{"x":808,"y":324,"w":128,"h":37,"offX":0,"offY":0,"sourceW":128,"sourceH":37}, +"tq_btnt14_4":{"x":1,"y":1,"w":708,"h":42,"offX":0,"offY":0,"sourceW":708,"sourceH":42}, +"tq_btnt14_3":{"x":1,"y":176,"w":668,"h":36,"offX":0,"offY":0,"sourceW":668,"sourceH":36}, +"tq_btnt14_2":{"x":1,"y":45,"w":640,"h":42,"offX":0,"offY":0,"sourceW":640,"sourceH":42}, +"tq_btnt16":{"x":626,"y":402,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_btnt15":{"x":920,"y":400,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_btnt14":{"x":1,"y":89,"w":640,"h":42,"offX":0,"offY":0,"sourceW":640,"sourceH":42}, +"tq_btnt13":{"x":1,"y":214,"w":411,"h":54,"offX":0,"offY":0,"sourceW":411,"sourceH":54}, +"tq_btnt12":{"x":922,"y":1,"w":101,"h":35,"offX":0,"offY":0,"sourceW":101,"sourceH":35}, +"tq_btnt8":{"x":491,"y":394,"w":133,"h":24,"offX":0,"offY":0,"sourceW":133,"sourceH":24}, +"tq_btnt9":{"x":356,"y":394,"w":133,"h":24,"offX":0,"offY":0,"sourceW":133,"sourceH":24}, +"tq_btnt7":{"x":785,"y":400,"w":133,"h":23,"offX":0,"offY":0,"sourceW":133,"sourceH":23}, +"tq_btnt6":{"x":1,"y":377,"w":114,"h":29,"offX":0,"offY":0,"sourceW":114,"sourceH":29}, +"tq_bg5":{"x":503,"y":324,"w":173,"h":29,"offX":0,"offY":0,"sourceW":173,"sourceH":29}, +"tq_btnt10":{"x":319,"y":270,"w":92,"h":26,"offX":0,"offY":0,"sourceW":92,"sourceH":26}, +"tq_btnt11":{"x":317,"y":420,"w":92,"h":26,"offX":0,"offY":0,"sourceW":92,"sourceH":26}, +"tq_jlt6":{"x":808,"y":363,"w":122,"h":35,"offX":0,"offY":0,"sourceW":122,"sourceH":35}, +"tq_icon_6":{"x":1,"y":270,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_btnt5":{"x":932,"y":363,"w":91,"h":26,"offX":0,"offY":0,"sourceW":91,"sourceH":26}, +"tq_btn1":{"x":850,"y":133,"w":154,"h":56,"offX":0,"offY":0,"sourceW":154,"sourceH":56}, +"tq_btnt4":{"x":217,"y":417,"w":98,"h":26,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_tabbg2":{"x":643,"y":45,"w":58,"h":20,"offX":0,"offY":0,"sourceW":58,"sourceH":20}, +"tq_tabbg1":{"x":938,"y":337,"w":58,"h":20,"offX":0,"offY":0,"sourceW":58,"sourceH":20}, +"tq_zxhl":{"x":678,"y":324,"w":128,"h":38,"offX":0,"offY":0,"sourceW":128,"sourceH":38}, +"tq_btn":{"x":180,"y":270,"w":137,"h":56,"offX":0,"offY":0,"sourceW":137,"sourceH":56}, +"tq_jdt":{"x":503,"y":309,"w":433,"h":13,"offX":0,"offY":0,"sourceW":433,"sourceH":13}, +"tq_jlt5":{"x":302,"y":348,"w":122,"h":36,"offX":0,"offY":0,"sourceW":122,"sourceH":36}, +"tq_jlt4":{"x":666,"y":364,"w":117,"h":36,"offX":0,"offY":0,"sourceW":117,"sourceH":36}, +"tq_jlt3":{"x":426,"y":355,"w":117,"h":37,"offX":0,"offY":0,"sourceW":117,"sourceH":37}, +"tq_jlt2":{"x":545,"y":355,"w":119,"h":36,"offX":0,"offY":0,"sourceW":119,"sourceH":36}, +"tq_jlt1":{"x":123,"y":369,"w":115,"h":36,"offX":0,"offY":0,"sourceW":115,"sourceH":36}, +"tq_jdtk":{"x":414,"y":214,"w":442,"h":27,"offX":0,"offY":0,"sourceW":442,"sourceH":27}, +"tq_sf_s":{"x":638,"y":133,"w":28,"h":29,"offX":0,"offY":0,"sourceW":28,"sourceH":29}, +"tq_btnt3":{"x":117,"y":407,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_btnt2":{"x":922,"y":38,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_tab2":{"x":180,"y":328,"w":120,"h":39,"offX":2,"offY":1,"sourceW":122,"sourceH":40}, +"tq_btnt1":{"x":1,"y":408,"w":98,"h":27,"offX":0,"offY":0,"sourceW":98,"sourceH":27}, +"tq_tab1":{"x":1,"y":336,"w":120,"h":39,"offX":2,"offY":1,"sourceW":122,"sourceH":40}, +"tq_sf_f":{"x":726,"y":402,"w":38,"h":32,"offX":0,"offY":0,"sourceW":38,"sourceH":32}, +"tq_bg4":{"x":858,"y":191,"w":162,"h":32,"offX":0,"offY":0,"sourceW":162,"sourceH":32}, +"tq_icon_5":{"x":593,"y":243,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_icon_4":{"x":414,"y":243,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_icon_3":{"x":671,"y":133,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_icon_2":{"x":822,"y":67,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"biaoti_hytq":{"x":319,"y":309,"w":182,"h":37,"offX":0,"offY":0,"sourceW":182,"sourceH":37}, +"tq_icon_1":{"x":643,"y":67,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_icon_0":{"x":772,"y":243,"w":177,"h":64,"offX":0,"offY":0,"sourceW":179,"sourceH":64}, +"tq_top_fenge":{"x":1001,"y":67,"w":4,"h":40,"offX":0,"offY":0,"sourceW":4,"sourceH":40}, +"tq_lb_jt2":{"x":951,"y":281,"w":38,"h":54,"offX":0,"offY":0,"sourceW":38,"sourceH":54}}} \ No newline at end of file diff --git a/resource_Publish/assets/vip/vip.png b/resource_Publish/assets/vip/vip.png new file mode 100644 index 0000000..85fe466 Binary files /dev/null and b/resource_Publish/assets/vip/vip.png differ diff --git a/resource_Publish/assets/war/war.json b/resource_Publish/assets/war/war.json new file mode 100644 index 0000000..d112d4b --- /dev/null +++ b/resource_Publish/assets/war/war.json @@ -0,0 +1,19 @@ +{"file":"war.png","frames":{ +"zl_pzp2":{"x":1,"y":408,"w":266,"h":351,"offX":0,"offY":3,"sourceW":266,"sourceH":354}, +"zl_bgk1":{"x":1,"y":1,"w":314,"h":405,"offX":1,"offY":0,"sourceW":315,"sourceH":405}, +"zl_iconzw":{"x":82,"y":891,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"zl_btn_chakan":{"x":361,"y":897,"w":106,"h":23,"offX":0,"offY":0,"sourceW":106,"sourceH":23}, +"zl_biaoti":{"x":1,"y":761,"w":171,"h":45,"offX":0,"offY":0,"sourceW":171,"sourceH":45}, +"zl_hd_1":{"x":361,"y":875,"w":134,"h":20,"offX":0,"offY":0,"sourceW":134,"sourceH":20}, +"zl_iconk":{"x":163,"y":847,"w":60,"h":60,"offX":0,"offY":0,"sourceW":60,"sourceH":60}, +"zl_t_yihuode":{"x":260,"y":831,"w":72,"h":56,"offX":0,"offY":0,"sourceW":72,"sourceH":56}, +"zl_weijihuo":{"x":144,"y":909,"w":60,"h":24,"offX":0,"offY":0,"sourceW":60,"sourceH":24}, +"zl_p_3":{"x":174,"y":761,"w":84,"h":84,"offX":0,"offY":6,"sourceW":84,"sourceH":90}, +"zl_xian_2":{"x":225,"y":847,"w":2,"h":39,"offX":0,"offY":0,"sourceW":2,"sourceH":39}, +"zl_p_2":{"x":82,"y":808,"w":79,"h":81,"offX":2,"offY":9,"sourceW":84,"sourceH":90}, +"zl_p_1":{"x":1,"y":808,"w":79,"h":84,"offX":2,"offY":5,"sourceW":84,"sourceH":90}, +"zl_t_yiwancheng":{"x":260,"y":761,"w":95,"h":68,"offX":0,"offY":0,"sourceW":95,"sourceH":68}, +"zl_xian_1":{"x":144,"y":935,"w":41,"h":2,"offX":0,"offY":0,"sourceW":41,"sourceH":2}, +"zl_hd_4":{"x":334,"y":853,"w":134,"h":20,"offX":0,"offY":0,"sourceW":134,"sourceH":20}, +"zl_hd_3":{"x":334,"y":831,"w":134,"h":20,"offX":0,"offY":0,"sourceW":134,"sourceH":20}, +"zl_hd_2":{"x":225,"y":889,"w":134,"h":20,"offX":0,"offY":0,"sourceW":134,"sourceH":20}}} \ No newline at end of file diff --git a/resource_Publish/assets/war/war.png b/resource_Publish/assets/war/war.png new file mode 100644 index 0000000..693555c Binary files /dev/null and b/resource_Publish/assets/war/war.png differ diff --git a/resource_Publish/assets/war/zl_bg.png b/resource_Publish/assets/war/zl_bg.png new file mode 100644 index 0000000..53d6105 Binary files /dev/null and b/resource_Publish/assets/war/zl_bg.png differ diff --git a/resource_Publish/assets/xunwanFuli/xunwanFuli.json b/resource_Publish/assets/xunwanFuli/xunwanFuli.json new file mode 100644 index 0000000..2fd5826 --- /dev/null +++ b/resource_Publish/assets/xunwanFuli/xunwanFuli.json @@ -0,0 +1,3 @@ +{"file":"xunwanFuli.png","frames":{ +"banner_xlhytq":{"x":1,"y":1,"w":859,"h":136,"offX":0,"offY":0,"sourceW":859,"sourceH":136}, +"biaoti_xlhytq":{"x":1,"y":139,"w":231,"h":48,"offX":0,"offY":0,"sourceW":231,"sourceH":48}}} \ No newline at end of file diff --git a/resource_Publish/assets/xunwanFuli/xunwanFuli.png b/resource_Publish/assets/xunwanFuli/xunwanFuli.png new file mode 100644 index 0000000..3369a9a Binary files /dev/null and b/resource_Publish/assets/xunwanFuli/xunwanFuli.png differ diff --git a/resource_Publish/assets/yaodou/banner_yaodou.png b/resource_Publish/assets/yaodou/banner_yaodou.png new file mode 100644 index 0000000..8121ed0 Binary files /dev/null and b/resource_Publish/assets/yaodou/banner_yaodou.png differ diff --git a/resource_Publish/assets/yaodou/bg_yaodou.png b/resource_Publish/assets/yaodou/bg_yaodou.png new file mode 100644 index 0000000..e9af7c3 Binary files /dev/null and b/resource_Publish/assets/yaodou/bg_yaodou.png differ diff --git a/resource_Publish/assets/yingzi.png b/resource_Publish/assets/yingzi.png new file mode 100644 index 0000000..009cef8 Binary files /dev/null and b/resource_Publish/assets/yingzi.png differ diff --git a/resource_Publish/assets/zhuanzhi/zhuanzhi.json b/resource_Publish/assets/zhuanzhi/zhuanzhi.json new file mode 100644 index 0000000..6a5c108 --- /dev/null +++ b/resource_Publish/assets/zhuanzhi/zhuanzhi.json @@ -0,0 +1,5 @@ +{"file":"zhuanzhi.png","frames":{ +"biaoti_zhuanzhi":{"x":1,"y":653,"w":209,"h":55,"offX":0,"offY":0,"sourceW":209,"sourceH":55}, +"jobchange_bg":{"x":1,"y":1,"w":1021,"h":650,"offX":0,"offY":0,"sourceW":1021,"sourceH":650}, +"jobchange_bg2":{"x":388,"y":653,"w":52,"h":52,"offX":0,"offY":0,"sourceW":52,"sourceH":52}, +"jobchange_bg3":{"x":212,"y":653,"w":174,"h":35,"offX":0,"offY":0,"sourceW":174,"sourceH":35}}} \ No newline at end of file diff --git a/resource_Publish/assets/zhuanzhi/zhuanzhi.png b/resource_Publish/assets/zhuanzhi/zhuanzhi.png new file mode 100644 index 0000000..d3737ee Binary files /dev/null and b/resource_Publish/assets/zhuanzhi/zhuanzhi.png differ diff --git a/resource_Publish/assets/zhuanzhi/zz_zhuan.jpg b/resource_Publish/assets/zhuanzhi/zz_zhuan.jpg new file mode 100644 index 0000000..eac3699 Binary files /dev/null and b/resource_Publish/assets/zhuanzhi/zz_zhuan.jpg differ diff --git a/resource_Publish/cfg/config.back.xml b/resource_Publish/cfg/config.back.xml new file mode 100644 index 0000000..41f5799 Binary files /dev/null and b/resource_Publish/cfg/config.back.xml differ diff --git a/resource_Publish/cfg/config.xml b/resource_Publish/cfg/config.xml new file mode 100644 index 0000000..0855cd5 Binary files /dev/null and b/resource_Publish/cfg/config.xml differ diff --git a/resource_Publish/default.res.json b/resource_Publish/default.res.json new file mode 100644 index 0000000..2a8bdbd --- /dev/null +++ b/resource_Publish/default.res.json @@ -0,0 +1,4501 @@ +{ + "groups":[ + { + "keys":"attrTips_json,common_json,main_json,mapmini_png,scroll_json,buff_json,hp_fnt_fnt,chat_json,itemIcon_json,title_json,huanying_bg_1_png,huanying_bg_2_png,huanying_bg_3_png,huanying_bg_4_png,npc_welcome_mp3", + "name":"preload" + }, + { + "keys":"Login_json,LOGO_png,SelectServer_json", + "name":"login" + } + ], + "resources":[ + { + "name":"checkbox_select_disabled_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_disabled.png" + }, + { + "name":"checkbox_select_down_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_down.png" + }, + { + "name":"checkbox_select_up_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_up.png" + }, + { + "name":"checkbox_unselect_png", + "type":"image", + "url":"assets/CheckBox/checkbox_unselect.png" + }, + { + "name":"selected_png", + "type":"image", + "url":"assets/ItemRenderer/selected.png" + }, + { + "name":"border_png", + "type":"image", + "url":"assets/Panel/border.png" + }, + { + "name":"header_png", + "type":"image", + "url":"assets/Panel/header.png" + }, + { + "name":"radiobutton_select_disabled_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_disabled.png" + }, + { + "name":"radiobutton_select_down_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_down.png" + }, + { + "name":"radiobutton_select_up_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_up.png" + }, + { + "name":"radiobutton_unselect_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_unselect.png" + }, + { + "name":"roundthumb_png", + "type":"image", + "url":"assets/ScrollBar/roundthumb.png" + }, + { + "name":"thumb_png", + "type":"image", + "url":"assets/Slider/thumb.png" + }, + { + "name":"track_png", + "type":"image", + "url":"assets/Slider/track.png" + }, + { + "name":"tracklight_png", + "type":"image", + "url":"assets/Slider/tracklight.png" + }, + { + "name":"handle_png", + "type":"image", + "url":"assets/ToggleSwitch/handle.png" + }, + { + "name":"off_png", + "type":"image", + "url":"assets/ToggleSwitch/off.png" + }, + { + "name":"on_png", + "type":"image", + "url":"assets/ToggleSwitch/on.png" + }, + { + "name":"button_down_png", + "type":"image", + "url":"assets/Button/button_down.png" + }, + { + "name":"button_up_png", + "type":"image", + "url":"assets/Button/button_up.png" + }, + { + "name":"thumb_pb_png", + "type":"image", + "url":"assets/ProgressBar/thumb_pb.png" + }, + { + "name":"track_pb_png", + "type":"image", + "url":"assets/ProgressBar/track_pb.png" + }, + { + "name":"track_sb_png", + "type":"image", + "url":"assets/ScrollBar/track_sb.png" + }, + { + "name":"bg_jpg", + "type":"image", + "url":"assets/bg.jpg" + }, + { + "name":"egret_icon_png", + "type":"image", + "url":"assets/egret_icon.png" + }, + { + "name":"blood_json", + "subkeys":"blood_chaowan,boolBg,boolGreen,boolRed,boolyel", + "type":"sheet", + "url":"assets/image/public/blood.json" + }, + { + "name":"common_json", + "subkeys":"9s_bg_1,9s_bg_2,9s_bg_3,9s_dating_tipsbg,9s_tipsbg,9s_tipsk,apay_gou,apay_tab_1,apay_tab_2,apay_tab_bg,apay_x2,apay_yilingqu,bag_equipbg,bag_equipk,bag_fanye_1,bag_fanye_2,bag_fanye_3,bag_fanye_bg,bag_fengexian,bag_jia,bag_piliangbg_0,bag_piliangbg_1,bag_piliangbg_2,bag_piliangbg_3,bag_piliangbg_4,bag_piliangbg_5,bagbtn_1,bagbtn_2,bagfy_xian,bg_jianbian1,bg_jianbian2,bg_quyu_1,bg_quyu_2,bg_shuzi_1,bg_sixiang_2,bg_sixiang_3,biaoti_bg,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,btn_apay,btn_apay2,btn_fanhui,btn_fanhui2,btn_guanbi,btn_guanbi2,btn_guanbi3,btn_guanbi4,btn_hs,btn_ssck,btn_yjhs,chat_bg_bg2,chat_button_lt,chat_fasongjiantou,chat_ltk_0,chat_ltk_1,chat_ltk_3,chat_ltk_you,chat_ltk_zuo,chat_shangjiantou,chat_yeqian_liaotian1,chat_yeqian_liaotian2,com_bg_kuang_3,com_bg_kuang_xian1,com_bg_kuang_xian2,com_bg_kuang_xian3,com_btn_xiala1,com_btn_xiala2,com_fengexian,com_gou_1,com_gou_2,com_icon_bg1,com_icon_bg2,com_jia,com_jiabg,com_jiajia,com_jian,com_jianjian,com_jiantoux2,com_jiantoux3,com_latiao_bg,com_latiao_yuan,com_ljt_1,com_ljt_2,com_yeqian_3,com_yeqian_4,com_yeqian_5,com_yeqian_6,com_yeqian_7,com_yizhuangbei,com_yuan_hong,com_yuan_kong,common__tjgz,common_btn_15,common_btn_16,common_ckxx,common_jhmdl,common_liebiaoding_bg,common_liebiaoding_fenge,common_liebiaoxuanzhong,common_lock,common_qxgz,common_schy,common_shmd,common_sl,common_slider_bg,common_slider_t,common_sqrd,common_sy,common_syy,common_tjhy,common_xx,common_xx_bg,common_xyy,common_yeqian_5,common_yeqian_6,common_yqzd,dikuang,icon_bangding,icon_jinbi,icon_quan,icon_yinliang,icon_yuanbao,icontype_1,icontype_2,kf_kftz_btn,kuaijielan2,kuaijielanBg,liaotianpaopao,m_lst_dian,m_lst_xian,name_touxiangk,npc_lingxing,num_bbj,num_bj,num_shihua,pmd_bg1,pmd_bg2,renwubg1,renwubg2,rule_bg,rule_biaotibg,rule_btn,shuxinghuadong_1,shuxinghuadong_2,t_b_xuanfu,t_sz_bh,t_sz_gj,t_sz_hs,t_sz_jc,t_sz_wp,t_sz_xt,t_sz_yp,tab_01_1,tab_01_2,tab_01_3,tips_btn,tips_btn1,yeqian_1,yeqian_2,zjmgonggaobg", + "type":"sheet", + "url":"assets/common/common.json" + }, + { + "name":"role_json", + "subkeys":"Godturn_bg2,Godturn_cionbg_1,Godturn_cionbg_2,Godturn_cionbg_3,Godturn_cionbg_4,Godturn_iconk,Godturn_jh_0,Godturn_jh_1,Godturn_jh_10,Godturn_jh_2,Godturn_jh_3,Godturn_jh_4,Godturn_jh_5,Godturn_jh_6,Godturn_jh_7,Godturn_jh_8,Godturn_jh_9,Godturn_jh_jh,Godturn_jh_wjh,anjian_1,anjian_2,anjian_3,anjian_4,anjian_5,anjian_6,anjian_bg,anjian_btn,anjian_e,anjian_guang,anjian_q,anjian_qingkong,anjian_queding,anjian_r,anjian_skillk,anjian_sz,anjian_t,anjian_w,anjian_y,arm_0,arm_1,arm_2,bg_jineng_1,bg_jineng_2,bg_neigongzb1,blessing_bg2,blessing_bglz,blessing_jdbg,blessing_jdt,blessing_jdt1,blessing_taiyan,blessing_taiyan1,blessing_tubiao,blessing_xingxing,blessing_xingxing1,blessing_yueliang,blessing_yueliang1,btn_chongwu_icon,btn_chongwu_icon2,btn_dz_qh,btn_guanzhi,btn_jineng_1,btn_jineng_2,btn_jn_bh,btn_jn_bh2,btn_jn_ty,btn_jn_ty2,btn_jn_zy,btn_jn_zy2,btn_js_ch,btn_js_ch2,btn_js_shiz,btn_js_shiz2,btn_js_sx,btn_js_sx2,btn_js_sz,btn_js_sz2,btn_js_zb,btn_js_zb2,btn_js_zf,btn_js_zf2,btn_js_zj,btn_js_zj2,btn_neigong,btn_neigong2,btn_ngbs,btn_shenmo,btn_shenmo2,btn_shuxing_1,btn_shuxing_2,btn_shuxing_bg,ch_bg,ch_zsz,gz_zw_0,gz_zw_1,gz_zw_10,gz_zw_11,gz_zw_12,gz_zw_13,gz_zw_14,gz_zw_15,gz_zw_16,gz_zw_17,gz_zw_18,gz_zw_19,gz_zw_2,gz_zw_20,gz_zw_21,gz_zw_22,gz_zw_23,gz_zw_24,gz_zw_25,gz_zw_26,gz_zw_27,gz_zw_28,gz_zw_3,gz_zw_4,gz_zw_5,gz_zw_6,gz_zw_7,gz_zw_8,gz_zw_9,icon_guanzhi,icon_neigong,ng_t_neigong,qh_huoqu,qh_icon_bg,qh_icon_huwan,qh_icon_huwan2,qh_icon_jiezhi,qh_icon_jiezhi2,qh_icon_toukui,qh_icon_toukui2,qh_icon_wuqi,qh_icon_wuqi2,qh_icon_xianglian,qh_icon_xianglian2,qh_icon_xiezi,qh_icon_xiezi2,qh_icon_xz,qh_icon_yaodai,qh_icon_yaodai2,qh_icon_yifu,qh_icon_yifu2,qh_jiantou,qh_sxbg,qh_t_huwan,qh_t_jiezhi,qh_t_toukui,qh_t_wuqi,qh_t_xianglian,qh_t_xiezi,qh_t_yaodai,qh_t_yifu,role_bh_mc1,role_bh_mc2,role_bh_mc3,role_bh_mc4,role_k2,role_sx_bg2,role_sx_btn1,role_sx_btn2,role_sx_btnsx,role_sx_btnzt,role_tab1,role_tab2,role_tab3,role_tab4,role_tab_bw1,role_tab_bw2,role_tab_jn1,role_tab_jn2,role_tab_js1,role_tab_js2,role_tab_qh1,role_tab_qh2,role_tab_sw1,role_tab_sw2,role_tab_zs1,role_tab_zs2,role_zt_bg,sz_bg_2,sz_bg_3,sz_btn,sz_btn_1,sz_btn_2,sz_btn_3,sz_btn_4,sz_btn_5,sz_btn_6,sz_chuandai,sz_tab_1,sz_tab_2,sz_tab_t1,sz_tab_t2,sz_tab_t3,sz_xuanzhong,t_neigongzb,t_neigongzb1,tab_ngzb,tab_ngzb1,tab_ngzbt01,tab_ngzbt02,tab_ngzbt11,tab_ngzbt12,transform_bg_shuxing,zj_1_1,zj_1_2,zj_1_3,zj_1_4,zj_2_1,zj_2_2,zj_2_3,zj_2_4,zj_3_1,zj_3_2,zj_3_3,zj_3_4,zj_4_1,zj_4_2,zj_4_3,zj_4_4,zj_5_1,zj_5_2,zj_5_3,zj_5_4", + "type":"sheet", + "url":"assets/role/role.json" + }, + { + "name":"wslxc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-5.mp3" + }, + { + "name":"wslxc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-1.mp3" + }, + { + "name":"xiee-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-5.mp3" + }, + { + "name":"xiee-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-1.mp3" + }, + { + "name":"heiseequ-4_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-4.mp3" + }, + { + "name":"heiseequ-2_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-2.mp3" + }, + { + "name":"xieshe-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-5.mp3" + }, + { + "name":"xieshe-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-1.mp3" + }, + { + "name":"fenchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-4.mp3" + }, + { + "name":"fenchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-2.mp3" + }, + { + "name":"shuyao-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shuyao-2.mp3" + }, + { + "name":"wslxc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-4.mp3" + }, + { + "name":"wslxc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-2.mp3" + }, + { + "name":"xiee-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-4.mp3" + }, + { + "name":"xiee-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-2.mp3" + }, + { + "name":"heiseequ-5_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-5.mp3" + }, + { + "name":"heiseequ-1_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-1.mp3" + }, + { + "name":"xieshe-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-4.mp3" + }, + { + "name":"xieshe-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-2.mp3" + }, + { + "name":"fenchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-5.mp3" + }, + { + "name":"fenchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-1.mp3" + }, + { + "name":"nanshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nanshouji.mp3" + }, + { + "name":"yidong_mp3", + "type":"sound", + "url":"assets/sound/character/yidong.mp3" + }, + { + "name":"nvshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nvshouji.mp3" + }, + { + "name":"nansiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nansiwang.mp3" + }, + { + "name":"gongji_mp3", + "type":"sound", + "url":"assets/sound/character/gongji.mp3" + }, + { + "name":"nvsiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nvsiwang.mp3" + }, + { + "name":"shenshou-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-4.mp3" + }, + { + "name":"lu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-5.mp3" + }, + { + "name":"dpm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-4.mp3" + }, + { + "name":"dpm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-2.mp3" + }, + { + "name":"lu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-1.mp3" + }, + { + "name":"pttongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-5.mp3" + }, + { + "name":"pttongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-1.mp3" + }, + { + "name":"ying-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-4.mp3" + }, + { + "name":"dq-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-5.mp3" + }, + { + "name":"ying-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-2.mp3" + }, + { + "name":"hm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-4.mp3" + }, + { + "name":"hm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-2.mp3" + }, + { + "name":"dq-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-1.mp3" + }, + { + "name":"yang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-4.mp3" + }, + { + "name":"yang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-2.mp3" + }, + { + "name":"gumotongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-4.mp3" + }, + { + "name":"sdbianfu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-5.mp3" + }, + { + "name":"zmjz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-4.mp3" + }, + { + "name":"gumotongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-2.mp3" + }, + { + "name":"huo-2_mp3", + "type":"sound", + "url":"assets/sound/monster/huo-2.mp3" + }, + { + "name":"zmjz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-2.mp3" + }, + { + "name":"bf-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-5.mp3" + }, + { + "name":"bf-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-1.mp3" + }, + { + "name":"dcr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-5.mp3" + }, + { + "name":"qianchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-4.mp3" + }, + { + "name":"kl-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-4.mp3" + }, + { + "name":"dcr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-1.mp3" + }, + { + "name":"qianchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-2.mp3" + }, + { + "name":"kl-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-2.mp3" + }, + { + "name":"woma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-5.mp3" + }, + { + "name":"woma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-1.mp3" + }, + { + "name":"slxr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-5.mp3" + }, + { + "name":"shenshouz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-5.mp3" + }, + { + "name":"slxr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-1.mp3" + }, + { + "name":"shenshouz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-1.mp3" + }, + { + "name":"lang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-5.mp3" + }, + { + "name":"djs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-5.mp3" + }, + { + "name":"zumagjs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-4.mp3" + }, + { + "name":"zumagjs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-2.mp3" + }, + { + "name":"lang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-1.mp3" + }, + { + "name":"djs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-1.mp3" + }, + { + "name":"js-5_mp3", + "type":"sound", + "url":"assets/sound/monster/js-5.mp3" + }, + { + "name":"zuma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-4.mp3" + }, + { + "name":"zuma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-2.mp3" + }, + { + "name":"js-1_mp3", + "type":"sound", + "url":"assets/sound/monster/js-1.mp3" + }, + { + "name":"duojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-4.mp3" + }, + { + "name":"kjc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-5.mp3" + }, + { + "name":"duojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-2.mp3" + }, + { + "name":"wugong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-4.mp3" + }, + { + "name":"kjc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-1.mp3" + }, + { + "name":"wugong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-2.mp3" + }, + { + "name":"ji-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-4.mp3" + }, + { + "name":"banshouyongshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-5.mp3" + }, + { + "name":"ji-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-2.mp3" + }, + { + "name":"banshouyongshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-1.mp3" + }, + { + "name":"bosstongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-4.mp3" + }, + { + "name":"bosstongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-2.mp3" + }, + { + "name":"zztongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-4.mp3" + }, + { + "name":"zztongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-2.mp3" + }, + { + "name":"banshouzhanshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-4.mp3" + }, + { + "name":"banshouzhanshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-2.mp3" + }, + { + "name":"jxduojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-4.mp3" + }, + { + "name":"klss-2_mp3", + "type":"sound", + "url":"assets/sound/monster/klss-2.mp3" + }, + { + "name":"jxduojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-2.mp3" + }, + { + "name":"tiaotiaofeng-4_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-4.mp3" + }, + { + "name":"dzz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-4.mp3" + }, + { + "name":"tiaotiaofeng-2_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-2.mp3" + }, + { + "name":"dzz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-2.mp3" + }, + { + "name":"ruchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-4.mp3" + }, + { + "name":"yezhu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-5.mp3" + }, + { + "name":"hshs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-4.mp3" + }, + { + "name":"banshouren-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-4.mp3" + }, + { + "name":"hshs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-2.mp3" + }, + { + "name":"ruchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-2.mp3" + }, + { + "name":"banshouren-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-2.mp3" + }, + { + "name":"yezhu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-1.mp3" + }, + { + "name":"shiwang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-4.mp3" + }, + { + "name":"shiwang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-2.mp3" + }, + { + "name":"shenshou-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-5.mp3" + }, + { + "name":"shenshou-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-1.mp3" + }, + { + "name":"dpm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-5.mp3" + }, + { + "name":"lu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-4.mp3" + }, + { + "name":"lu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-2.mp3" + }, + { + "name":"dpm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-1.mp3" + }, + { + "name":"pttongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-4.mp3" + }, + { + "name":"pttongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-2.mp3" + }, + { + "name":"ying-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-5.mp3" + }, + { + "name":"hm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-5.mp3" + }, + { + "name":"dq-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-4.mp3" + }, + { + "name":"ying-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-1.mp3" + }, + { + "name":"dq-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-2.mp3" + }, + { + "name":"hm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-1.mp3" + }, + { + "name":"yang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-5.mp3" + }, + { + "name":"gumotongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-5.mp3" + }, + { + "name":"zmjz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-5.mp3" + }, + { + "name":"yang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-1.mp3" + }, + { + "name":"gumotongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-1.mp3" + }, + { + "name":"sdbianfu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-2.mp3" + }, + { + "name":"bf-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-4.mp3" + }, + { + "name":"zmjz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-1.mp3" + }, + { + "name":"bf-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-2.mp3" + }, + { + "name":"qianchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-5.mp3" + }, + { + "name":"dcr-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-4.mp3" + }, + { + "name":"kl-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-5.mp3" + }, + { + "name":"dcr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-2.mp3" + }, + { + "name":"qianchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-1.mp3" + }, + { + "name":"woma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-4.mp3" + }, + { + "name":"kl-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-1.mp3" + }, + { + "name":"woma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-2.mp3" + }, + { + "name":"shenshouz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-4.mp3" + }, + { + "name":"slxr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-2.mp3" + }, + { + "name":"shenshouz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-2.mp3" + }, + { + "name":"shenshouz-0_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-0.mp3" + }, + { + "name":"lang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-4.mp3" + }, + { + "name":"zumagjs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-5.mp3" + }, + { + "name":"djs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-4.mp3" + }, + { + "name":"lang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-2.mp3" + }, + { + "name":"djs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-2.mp3" + }, + { + "name":"zuma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-5.mp3" + }, + { + "name":"zumagjs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-1.mp3" + }, + { + "name":"js-4_mp3", + "type":"sound", + "url":"assets/sound/monster/js-4.mp3" + }, + { + "name":"duojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-5.mp3" + }, + { + "name":"js-2_mp3", + "type":"sound", + "url":"assets/sound/monster/js-2.mp3" + }, + { + "name":"zuma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-1.mp3" + }, + { + "name":"kjc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-4.mp3" + }, + { + "name":"wugong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-5.mp3" + }, + { + "name":"duojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-1.mp3" + }, + { + "name":"kjc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-2.mp3" + }, + { + "name":"ji-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-5.mp3" + }, + { + "name":"wugong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-1.mp3" + }, + { + "name":"banshouyongshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-4.mp3" + }, + { + "name":"ji-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-1.mp3" + }, + { + "name":"banshouyongshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-2.mp3" + }, + { + "name":"bosstongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-1.mp3" + }, + { + "name":"zztongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-5.mp3" + }, + { + "name":"banshouzhanshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-5.mp3" + }, + { + "name":"zztongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-1.mp3" + }, + { + "name":"banshouzhanshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-1.mp3" + }, + { + "name":"jxduojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-5.mp3" + }, + { + "name":"tiaotiaofeng-5_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-5.mp3" + }, + { + "name":"dian-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dian-2.mp3" + }, + { + "name":"dzz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-5.mp3" + }, + { + "name":"jxduojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-1.mp3" + }, + { + "name":"ruchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-5.mp3" + }, + { + "name":"hshs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-5.mp3" + }, + { + "name":"tiaotiaofeng-1_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-1.mp3" + }, + { + "name":"banshouren-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-5.mp3" + }, + { + "name":"yezhu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-4.mp3" + }, + { + "name":"dzz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-1.mp3" + }, + { + "name":"ruchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-1.mp3" + }, + { + "name":"hshs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-1.mp3" + }, + { + "name":"yezhu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-2.mp3" + }, + { + "name":"shiwang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-5.mp3" + }, + { + "name":"banshouren-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-1.mp3" + }, + { + "name":"shiwang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-1.mp3" + }, + { + "name":"dongxue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dongxue.mp3" + }, + { + "name":"fengmogu_mp3", + "type":"sound", + "url":"assets/sound/bgm/fengmogu.mp3" + }, + { + "name":"bairimen_mp3", + "type":"sound", + "url":"assets/sound/bgm/bairimen.mp3" + }, + { + "name":"shimu_mp3", + "type":"sound", + "url":"assets/sound/bgm/shimu.mp3" + }, + { + "name":"npc_welcome_mp3", + "type":"sound", + "url":"assets/sound/npc/npc_welcome.mp3" + }, + { + "name":"biqi_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi.mp3?v=1" + }, + { + "name":"biqi_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_1.mp3" + }, + { + "name":"biqi_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_2.mp3" + }, + { + "name":"biqi_3_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_3.mp3" + }, + { + "name":"huodong_mp3", + "type":"sound", + "url":"assets/sound/bgm/huodong.mp3" + }, + { + "name":"molongcheng_mp3", + "type":"sound", + "url":"assets/sound/bgm/molongcheng.mp3" + }, + { + "name":"fuben_mp3", + "type":"sound", + "url":"assets/sound/bgm/fuben.mp3" + }, + { + "name":"shabake_mp3", + "type":"sound", + "url":"assets/sound/bgm/shabake.mp3" + }, + { + "name":"dixue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dixue.mp3?v=1" + }, + { + "name":"denglu_mp3", + "type":"sound", + "url":"assets/sound/bgm/denglu.mp3" + }, + { + "name":"kuangdong_mp3", + "type":"sound", + "url":"assets/sound/bgm/kuangdong.mp3" + }, + { + "name":"zuma_mp3", + "type":"sound", + "url":"assets/sound/bgm/zuma.mp3" + }, + { + "name":"mengzhong_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong.mp3" + }, + { + "name":"mengzhong_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_1.mp3" + }, + { + "name":"mengzhong_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_2.mp3" + }, + { + "name":"scroll_json", + "subkeys":"bag_15,bag_16,bag_17,bag_18", + "type":"sheet", + "url":"assets/image/public/scroll.json" + }, + { + "name":"num_1_fnt", + "type":"font", + "url":"assets/image/public/num_1.fnt" + }, + { + "name":"anniu1_mp3", + "type":"sound", + "url":"assets/sound/other/anniu1.mp3" + }, + { + "name":"anniu2_mp3", + "type":"sound", + "url":"assets/sound/other/anniu2.mp3" + }, + { + "name":"anniu3_mp3", + "type":"sound", + "url":"assets/sound/other/anniu3.mp3" + }, + { + "name":"duanzao~1_mp3", + "type":"sound", + "url":"assets/sound/other/duanzao~1.mp3" + }, + { + "name":"heyao_mp3", + "type":"sound", + "url":"assets/sound/other/heyao.mp3" + }, + { + "name":"jinbizengjia_mp3", + "type":"sound", + "url":"assets/sound/other/jinbizengjia.mp3" + }, + { + "name":"shengji~1_mp3", + "type":"sound", + "url":"assets/sound/other/shengji~1.mp3" + }, + { + "name":"zhuangjiezhi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangjiezhi.mp3" + }, + { + "name":"zhuangsanjian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangsanjian.mp3" + }, + { + "name":"zhuangshouzhuo_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangshouzhuo.mp3" + }, + { + "name":"zhuangwuqi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangwuqi.mp3" + }, + { + "name":"zhuangxianglian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangxianglian.mp3" + }, + { + "name":"zhuangyifu_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangyifu.mp3" + }, + { + "name":"buff_json", + "subkeys":"buff_1,buff_10,buff_11,buff_12,buff_13,buff_14,buff_15,buff_16,buff_17,buff_18,buff_19,buff_2,buff_20,buff_21,buff_22,buff_23,buff_24,buff_25,buff_26,buff_27,buff_28,buff_29,buff_3,buff_30,buff_31,buff_32,buff_33,buff_34,buff_35,buff_36,buff_37,buff_38,buff_39,buff_4,buff_40,buff_41,buff_42,buff_43,buff_44,buff_45,buff_46,buff_47,buff_48,buff_49,buff_5,buff_50,buff_51,buff_52,buff_53,buff_54,buff_55,buff_56,buff_57,buff_58,buff_59,buff_6,buff_60,buff_61,buff_62,buff_63,buff_64,buff_65,buff_66,buff_67,buff_68,buff_69,buff_7,buff_70,buff_71,buff_8,buff_9,buff_zz1,buff_zz2", + "type":"sheet", + "url":"assets/common/buff.json" + }, + { + "name":"chat_json", + "subkeys":"bg_bg2,button_lt,button_lt2,button_lt3,chat_bqb_1,chat_bqb_10,chat_bqb_11,chat_bqb_12,chat_bqb_13,chat_bqb_14,chat_bqb_15,chat_bqb_16,chat_bqb_17,chat_bqb_18,chat_bqb_19,chat_bqb_2,chat_bqb_20,chat_bqb_21,chat_bqb_22,chat_bqb_23,chat_bqb_24,chat_bqb_25,chat_bqb_26,chat_bqb_27,chat_bqb_28,chat_bqb_29,chat_bqb_3,chat_bqb_30,chat_bqb_31,chat_bqb_32,chat_bqb_33,chat_bqb_34,chat_bqb_35,chat_bqb_36,chat_bqb_37,chat_bqb_38,chat_bqb_39,chat_bqb_4,chat_bqb_40,chat_bqb_41,chat_bqb_42,chat_bqb_43,chat_bqb_5,chat_bqb_6,chat_bqb_7,chat_bqb_8,chat_bqb_9,chat_bqbkuang,chat_ltbg,chat_t_10_1,chat_t_10_2,chat_t_11,chat_t_1_1,chat_t_1_2,chat_t_2_1,chat_t_2_2,chat_t_3_1,chat_t_3_2,chat_t_4_1,chat_t_4_2,chat_t_5_1,chat_t_5_2,chat_t_6_1,chat_t_6_2,chat_t_7,chat_t_8,chat_t_9,chat_tab_1,chat_tab_2,chat_tab_3,chat_tab_4,fasongjiantou,fasongjiantou2,lt_xitong,ltk_0,ltk_1,ltk_2,ltk_2+1,ltk_3,ltk_4,ltk_you,ltk_zuo,ltpb_bangzhu,ltpb_fj1,ltpb_fj2,ltpb_hh1,ltpb_hh2,ltpb_sl1,ltpb_sl2,shangjiantou,shangjiantou2,yeqian_liaotian1,yeqian_liaotian2", + "type":"sheet", + "url":"assets/chat/chat.json" + }, + { + "name":"select_png", + "type":"image", + "url":"assets/common/select.png" + }, + { + "name":"friend_json", + "subkeys":"fd_top_bg,fd_top_fenge,liebiaoxuanzhong,szys_1,szys_166,szys_2,szys_3,t_gxyq_fj1,t_gxyq_fj2,t_gxyq_gz1,t_gxyq_gz2,t_gxyq_hmd1,t_gxyq_hmd2,t_gxyq_hy1,t_gxyq_hy2,t_gxyq_qq1,t_gxyq_qq2,t_gxyq_zb1,t_gxyq_zb2", + "type":"sheet", + "url":"assets/friend/friend.json" + }, + { + "name":"main_json", + "subkeys":"bg_exp_0,bg_exp_1,bg_lakai_1,bg_shaguaichenghao,bq_bg2,bq_biaoti,bq_btn,bq_icon,bq_icon_1,bq_icon_2,bq_icon_3,bq_icon_4,bq_icon_5,bq_icon_6,bq_icon_7,bq_icon_8,btn_bg_1,btn_bg_2,btn_czcz,btn_feixiei,btn_haoyou,btn_jiaoyi,btn_jishou,btn_liaotian,btn_paihang,btn_youjian,btn_zudui,common_chengdian,common_hongdian,cwms_bg,cwms_btn,dialog_mask,eff_2,eff_3,eff_4,eff_5,exp_dian,exp_exp,exp_lv,exp_sexp,fcm_btn,gjbtn_fj,gjbtn_hy,gjbtn_sq,huanying_btn,huanying_x,icon_360dawanjia,icon_360shiming,icon_37fuli,icon_4366,icon_4366VIP,icon_7you_chaihongbao,icon_7you_fuli,icon_activity,icon_activity3,icon_activity4,icon_activity5,icon_activity6,icon_activity7,icon_activity8,icon_activity9,icon_aiqiyiQQqun,icon_bangdingyouli,icon_bg,icon_bgbtn,icon_bianqiang,icon_boss,icon_cangjingge,icon_chaowan,icon_chongyangxianrui,icon_chongzhi,icon_ciyuanshouling,icon_czzl,icon_daluandou,icon_dianfengkuanghuan,icon_dttq,icon_duanwujiajie,icon_fangchenmi,icon_fankui,icon_fenxiangyouxi,icon_fulidating,icon_ganenjie,icon_gonggao,icon_guaji,icon_guanggunjie,icon_hanghui,icon_hecheng,icon_hfhuodong,icon_huanduwuyi,icon_huanzhenchong,icon_huidaoyuanfu,icon_hytq,icon_jingcaihuodong,icon_juanxianbang,icon_kaifu1maogou,icon_kaifuhaoli,icon_kaifujingji,icon_kaifutouzi,icon_kaifuxunbao,icon_kaifuzhanchang,icon_ku25hezi,icon_kuafulingzhu,icon_kuafumobai,icon_kuafushacheng,icon_kuafushouling,icon_kuangbao,icon_ldsyxhz,icon_leijizaixian,icon_ludashilibao,icon_lztequan,icon_mafazhanling,icon_mijingdabao,icon_mingriyugao,icon_ptfl,icon_ptfl_bg,icon_pugong2,icon_qingliangshujia,icon_qqdating,icon_rank2,icon_sanduanhutong,icon_sgyxdt,icon_sgzspf,icon_shacheng,icon_shachengdjs,icon_shengxiakuanghuan,icon_shouchong,icon_shoujilibao,icon_shuangshiqingdian,icon_shuangshiyi,icon_shunwanghezi,icon_sq_1,icon_sq_2,icon_taotuoshilian,icon_taqingxunli,icon_wanshanziliao,icon_wanshengjie,icon_weiduanfuli,icon_womasan,icon_wxhb,icon_xingyunxunbao,icon_xunbao,icon_xunleitequan,icon_yaodou_kefu,icon_yyhy,icon_zaichong,icon_zhinengPK,icon_zhongqiujiajie,icon_zhoumohaoli,icon_zhounianqingdian,icon_zhufuguoqing,icont_beibao,icont_hanghui,icont_hecheng,icont_huishou,icont_jineng,icont_juese,icont_paimai,icont_shezhi,icont_youjian,join_qqun,m_bg_zhuui,m_btn_main1,m_btn_main2,m_btn_shezhi,m_chat_btn,m_chat_ltpb_fj1,m_chat_ltpb_fj2,m_chat_ltpb_hh1,m_chat_ltpb_hh2,m_chat_ltpb_shuoming,m_chat_ltpb_sl1,m_chat_ltpb_sl2,m_chat_t_fasong,m_chat_t_fujin,m_chat_t_hanghui,m_chat_t_jiantou,m_chat_t_shijie,m_chat_t_siliao,m_chat_t_zudui,m_exp_expbg,m_exp_lvbg,m_exp_sexpbg,m_icon_beibao,m_icon_caidan,m_icon_huishou,m_icon_jineng,m_icon_juese,m_icon_shangcheng,m_icon_sq,m_job1,m_job2,m_job3,m_kjj_1,m_kjj_10,m_kjj_11,m_kjj_12,m_kjj_2,m_kjj_3,m_kjj_4,m_kjj_5,m_kjj_6,m_kjj_7,m_kjj_8,m_kjj_9,m_kuaijielan1,m_lst_jt1,m_lst_jt3,m_m_lock_1,m_m_lock_2,m_m_lock_3,m_m_lock_4,m_m_lock_5,m_m_lock_bg,m_m_lockname_bg,m_m_sd_xt_bg,m_m_sd_xt_k,m_map_k,m_map_k2,m_t_ms_bg1,m_t_ms_bg2,m_t_ms_didui,m_t_ms_hanghui,m_t_ms_heping,m_t_ms_quanti,m_t_ms_zhenying,m_t_ms_zudui,m_task_bg1,m_task_bg2,m_task_bg3,m_task_bgh,m_task_btn,m_task_btn3,m_task_btn_2,m_task_btn_2bg,m_task_duizhang,m_task_fengexian,m_task_hp1,m_task_hp2,m_task_hp2h,m_task_jiantou,m_task_k,m_task_xuanzhongkuang,m_task_yiwancheng,m_task_zy1,m_task_zy1h,m_task_zy2,m_task_zy2h,m_task_zy3,m_task_zy3h,m_yg1,m_yg2,m_yg3,m_yg4,m_yg5,main_ciyuanyaoshi,main_tuichu,main_zlb,map_boss,map_btn,map_dian_1,map_dian_10,map_dian_11,map_dian_2,map_dian_3,map_dian_4,map_dian_5,map_dian_6,map_dian_7,map_dian_8,map_dian_9,map_fangda,map_jiantou,map_k,map_my,map_target,map_xian,model,mpa_way,name_1_0,name_1_1,name_2_0,name_2_1,name_3_0,name_3_1,name_bg,name_btn,name_hy0,name_hy1,name_hy2,name_hy3,name_hy4,name_hy5,name_hy6,name_hy7,name_hybg,name_icon_jb,name_icon_yb,open_bg2,open_bt_1,open_bt_10,open_bt_11,open_bt_12,open_bt_13,open_bt_14,open_bt_15,open_bt_2,open_bt_3,open_bt_4,open_bt_5,open_bt_6,open_bt_7,open_bt_8,open_bt_9,open_btn,open_hdjl,pet_kuang,skillicon2_jz1,skillicon2_jz2,skillicon2_jz3,skillicon2_jz4,skillicon2_jz5,skillicon2_jz6,skillicon2_jz7,skillicon2_jz8,skillicon2_nz1,skillicon2_nz2,skillicon2_nz3,skillicon2_nz4,skillicon2_nz5,skillicon2_nz6,skillicon2_nz7,skillicon2_nz8,skillicon_ds1,skillicon_ds10,skillicon_ds12,skillicon_ds2,skillicon_ds3,skillicon_ds4,skillicon_ds5,skillicon_ds7,skillicon_ds8,skillicon_ds9,skillicon_fs10,skillicon_fs11,skillicon_fs13,skillicon_fs14,skillicon_fs2,skillicon_fs3,skillicon_fs4,skillicon_fs5,skillicon_fs6,skillicon_fs9,skillicon_ty10,skillicon_ty11,skillicon_ty2,skillicon_ty3,skillicon_ty4,skillicon_ty5,skillicon_ty6,skillicon_ty7,skillicon_ty8,skillicon_ty9,skillicon_zs1,skillicon_zs2,skillicon_zs3,skillicon_zs4,skillicon_zs5,skillicon_zs6,skillicon_zs7,skillicon_zs8,sx_num_j,sx_num_p,task_fgx,task_rwjj,tips_man,tips_man2,tips_man3,tips_man4,tips_man5,tips_man6,zjm_shan_haoyou,zjm_shan_jiaoyi,zjm_shan_youjian,zjm_shan_zhhh,zjm_shan_zhzd,zjm_shan_zudui,zs_btn,icon_cydzb", + "type":"sheet", + "url":"assets/main/main.json?v=1" + }, + { + "name":"rank_json", + "subkeys":"phb_tab_01,phb_tab_02,phb_tab_11,phb_tab_12,phb_tab_21,phb_tab_22,phb_tab_31,phb_tab_32,phb_tab_41,phb_tab_42,rank_bg2,rank_bg3,rank_bk,rank_ch1,rank_ch2,rank_ck,rank_cx,rank_cy,rank_lk,rank_lk1,rank_pm1,rank_pm2,rank_pm3,rank_tab1,rank_tab2,rank_zk", + "type":"sheet", + "url":"assets/rank/rank.json" + }, + { + "name":"team_json", + "subkeys":"t_zd_fjdw1,t_zd_fjdw2,t_zd_fjwj1,t_zd_fjwj2,t_zd_shenqingrudui,t_zd_tianjia,t_zd_tichuduiwu,t_zd_tuichuduiwu,t_zd_wddw1,t_zd_wddw2,t_zd_yaoqingrudui,t_zd_zxhy1,t_zd_zxhy2,team_bg,team_duizhang", + "type":"sheet", + "url":"assets/team/team.json" + }, + { + "name":"guild_json", + "subkeys":"guild_bg_biaoqian,guild_bg_guanlidating,guild_bg_hanghuidating,guild_bg_lashen,guild_bg_liangongfang,guild_bg_yishiting,guild_jingyantiao,guild_jingyantiao_bg,guild_jxbt,guild_jxfgx,guild_jxiconk,guild_lbbg1,guild_lbbg2,guild_lbbg3,guild_pm_1,guild_pm_2,guild_pm_3,guild_wenzizhuangshi", + "type":"sheet", + "url":"assets/guild/guild.json" + }, + { + "name":"dls-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-5.mp3" + }, + { + "name":"dls-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-1.mp3" + }, + { + "name":"dls-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-2.mp3" + }, + { + "name":"dls-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-4.mp3" + }, + { + "name":"itemIcon_json", + "subkeys":"10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,cangku_lock,equipd_0,equipd_1,equipd_10,equipd_11,equipd_12,equipd_13,equipd_14,equipd_15,equipd_16,equipd_17,equipd_18,equipd_19,equipd_2,equipd_3,equipd_4,equipd_5,equipd_6,equipd_7,equipd_8,equipd_9,orangePoint,quality_0,quality_1,quality_2,quality_3,quality_4,quality_5,quality_6,quality_huishou,quality_jipin,quality_lock,quality_sheng,redPoint,yan_1,yan_100,yan_101,yan_102,yan_103,yan_104,yan_105,yan_106,yan_107,yan_108,yan_109,yan_110,yan_111,yan_112,yan_113,yan_114,yan_115,yan_116,yan_117,yan_118,yan_119,yan_120,yan_121,yan_122,yan_123,yan_124,yan_125,yan_126,yan_127,yan_128,yan_129,yan_130,yan_131,yan_132,yan_133,yan_134,yan_135", + "type":"sheet", + "url":"assets/image/public/itemIcon.json" + }, + { + "name":"resurrection_json", + "subkeys":"revive_bg,revive_btn,revive_zz", + "type":"sheet", + "url":"assets/resurrection/resurrection.json" + }, + { + "name":"bosstongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-5.mp3" + }, + { + "name":"shop_json", + "subkeys":"shop_bg,shop_bg1,shop_bg_xian,shop_iconk,shop_jiaobiao,shop_rexiao,shop_xianshi,shop_yeqian_1,shop_yeqian_2,shop_yyb_bannert,shop_yyb_bannert2,shop_yybsc,shop_zhekou_1,shop_zhekou_2,shop_zhekou_3,shop_zhekou_4,shop_zhekou_5,shop_zhekou_6,shop_zhekou_7,shop_zhekou_8,shop_zhekou_9,shop_zhekou_bg", + "type":"sheet", + "url":"assets/shop/shop.json" + }, + { + "name":"forge_json", + "subkeys":"forge_bg,forge_bg2,forge_bg3,forge_bt1,forge_bt2,forge_bt3,forge_bt4,forge_btjt,forge_equip1,forge_equip2,forge_equipbg1,forge_equipbg2,forge_gou1,forge_gou2,forge_huode,forge_jiantou1,forge_jiantou2,forge_sxjt,forge_sxt,forge_t,forge_t1,forge_t2,forge_t3,forge_tab1,forge_tab2,forge_xlt,forge_xx1,forge_xx2,forge_xxbg,hc_tab_hc1,hc_tab_hc2,hc_tab_hs1,hc_tab_hs2,hecheng_bg1,hecheng_bg2,recovery_banner,recovery_bg,recovery_zs_1,recovery_zs_2,recovery_zs_3,recovery_zs_4,recovery_zs_5", + "type":"sheet", + "url":"assets/forge/forge.json" + }, + { + "name":"TradeLine_json", + "subkeys":"jishou_tab_buy1,jishou_tab_buy2,jishou_tab_isSell1,jishou_tab_isSell2,jishou_tab_receive1,jishou_tab_receive2,jishou_tab_sell1,jishou_tab_sell2,kbg_trade,trade_bg1,trade_chakan,trade_iconk,trade_mengban,trade_zt1,trade_zt2,trade_zt3", + "type":"sheet", + "url":"assets/TradeLine/TradeLine.json" + }, + { + "name":"bg_npc_png", + "type":"image", + "url":"assets/bg/bg_npc.png" + }, + { + "name":"bg_tipstc_png", + "type":"image", + "url":"assets/bg/bg_tipstc.png" + }, + { + "name":"chat_bg_bg1_png", + "type":"image", + "url":"assets/bg/chat_bg_bg1.png" + }, + { + "name":"chat_bg_bg2_png", + "type":"image", + "url":"assets/bg/chat_bg_bg2.png" + }, + { + "name":"chat_bg_tc1_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1.png" + }, + { + "name":"chat_bg_tc2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc2.png" + }, + { + "name":"com_bg_beibao_png", + "type":"image", + "url":"assets/bg/com_bg_beibao.png" + }, + { + "name":"com_bg_kuang_2_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_2.png" + }, + { + "name":"kbg_1_png", + "type":"image", + "url":"assets/bg/kbg_1.png" + }, + { + "name":"kbg_2_png", + "type":"image", + "url":"assets/bg/kbg_2.png" + }, + { + "name":"kbg_3_png", + "type":"image", + "url":"assets/bg/kbg_3.png" + }, + { + "name":"kbg_3_1_png", + "type":"image", + "url":"assets/bg/kbg_3_1.png" + }, + { + "name":"kbg_4_png", + "type":"image", + "url":"assets/bg/kbg_4.png" + }, + { + "name":"liebiaoding_bg_png", + "type":"image", + "url":"assets/bg/liebiaoding_bg.png" + }, + { + "name":"login_bg2_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg2.jpg" + }, + { + "name":"createRole_json", + "subkeys":"avatar_bg,create_btn_fanhui,login_btn,login_btn1,login_ds_1,login_ds_2,login_fs_1,login_fs_2,login_nan_1,login_nan_2,login_nv_1,login_nv_2,login_suiji,login_xuanzhong,login_zs_1,login_zs_2", + "type":"sheet", + "url":"assets/CreateRole/createRole.json" + }, + { + "name":"mail_json", + "subkeys":"mail_bg,mail_bx,mail_com,mail_tab_1,mail_tab_2,mail_xian", + "type":"sheet", + "url":"assets/mail/mail.json" + }, + { + "name":"meridians_json", + "subkeys":"Meridians_bg,Meridians_dian_1,Meridians_dian_2,Meridians_jie_0,Meridians_jie_1,Meridians_jie_10,Meridians_jie_11,Meridians_jie_2,Meridians_jie_3,Meridians_jie_4,Meridians_jie_5,Meridians_jie_6,Meridians_jie_7,Meridians_jie_8,Meridians_jie_9,Meridians_jie_bg1,Meridians_jie_bg2,Meridians_jie_ji,Meridians_jie_jie,Meridians_xian_1,Meridians_xian_2", + "type":"sheet", + "url":"assets/meridians/meridians.json" + }, + { + "name":"login_bg_jpg", + "type":"image", + "url":"assets/login/login_bg.jpg" + }, + { + "name":"LOGO_png", + "type":"image", + "url":"assets/login/LOGO.png" + }, + { + "name":"Login_json", + "subkeys":"Login_guanbi,login_jdt_k,login_jdt_t,login_wenzi1,login_wenzi2,login_wenzi3,login_wenzi4,login_wenzi5", + "type":"sheet", + "url":"assets/login/Login.json" + }, + { + "name":"chuangjian_mp3", + "type":"sound", + "url":"assets/sound/loading/chuangjian.mp3" + }, + { + "name":"dengdai_mp3", + "type":"sound", + "url":"assets/sound/loading/dengdai.mp3" + }, + { + "name":"kaimen_mp3", + "type":"sound", + "url":"assets/sound/loading/kaimen.mp3" + }, + { + "name":"xuanze_mp3", + "type":"sound", + "url":"assets/sound/loading/xuanze.mp3" + }, + { + "name":"activityCopies_json", + "subkeys":"Act_biaoti_1,Act_biaoti_2,Act_biaoti_cjxg,Act_biaoti_clfb,Act_biaoti_dcty,Act_biaoti_dxdb,Act_biaoti_jjdld,Act_biaoti_jjtgsj,Act_biaoti_sbkgc,Act_biaoti_scl,Act_biaoti_sjboss,Act_biaoti_sjjd,Act_biaoti_smdb,Act_biaoti_smsz,Act_biaoti_smsztz,Act_biaoti_yzwms,Act_biaoti_zsrw,Act_chakan,Act_dld_djs,Act_dld_icon,Act_dld_icon2,Act_dld_pmbt,Act_dld_pmmb,Act_gengduo,Act_hdk1,Act_jlyl,Act_jlyl_bg,Act_mobai_biaotibg,Act_pm_1,Act_pm_2,Act_pm_3,Avt_sjjd_bg2,Avt_sjjd_bg3,a,act_clfbt_1,act_clfbt_2,act_hdjj,act_icon1,act_icon10,act_icon11,act_icon12,act_icon13,act_icon14,act_icon15,act_icon16,act_icon2,act_icon3,act_icon4,act_icon5,act_icon6,act_icon7,act_icon8,act_icon9,act_tab1,act_tab2,act_tab3,act_tab4,act_tab_competitive1,act_tab_competitive2,act_tab_daily1,act_tab_daily2,act_tab_js1,act_tab_js2,act_tab_passion1,act_tab_passion2,act_tab_personal1,act_tab_personal2,act_zsrwt_1,actpm_tab_jf1,actpm_tab_jf2,actpm_tab_jl1,actpm_tab_jl2,actpm_tab_pm1,actpm_tab_pm2,y", + "type":"sheet", + "url":"assets/activityCopies/activityCopies.json" + }, + { + "name":"achievement_json", + "subkeys":"ach_bg1,ach_jiantou,ach_namebg,ach_sjtj,ach_sjxh,ach_xunzhangbg,ach_xzsj,ach_yidacheng,ach_zhuangshi", + "type":"sheet", + "url":"assets/achievement/achievement.json" + }, + { + "name":"shengji_mp3", + "type":"sound", + "url":"assets/sound/other/shengji.mp3" + }, + { + "name":"boss_json", + "subkeys":"boss_canyu,boss_diaoluo,boss_fengexian,boss_guishu,boss_gw_bg,boss_gw_bg2,boss_gw_bg3,boss_gw_jb,boss_gw_yb,boss_head_p_1_0,boss_head_p_1_1,boss_head_p_2_0,boss_head_p_2_1,boss_head_p_3_0,boss_head_p_3_1,boss_hp_1,boss_hp_2,boss_k_1,boss_k_2,boss_shoutong,boss_tab_Lord1,boss_tab_Lord2,boss_tab_classic1,boss_tab_classic2,boss_tab_jindi1,boss_tab_jindi2,boss_tab_reinstall1,boss_tab_reinstall2,boss_xinxi,boss_xuetiao_1,boss_xuetiao_bg,boss_yeqian_bg1,boss_yeqian_bg2,boss_yeqian_bg3,boss_yeqian_bg4,boss_yeqian_bg5,boss_yongdou,boss_zs_bg,bs_tq_1,bs_tq_2,bs_tq_3,bs_tq_4,bs_tq_5", + "type":"sheet", + "url":"assets/boss/boss.json" + }, + { + "name":"result_json", + "subkeys":"result_btn,result_lost,result_lost1,result_lost2,result_lost3,result_win,result_win1,result_win2", + "type":"sheet", + "url":"assets/result/result.json" + }, + { + "name":"Act_hdbg1_1_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_1.png" + }, + { + "name":"Act_hdbg1_jjdld_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png" + }, + { + "name":"Act_hdbg2_1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_1.png" + }, + { + "name":"Act_hdbg2_2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_2.png" + }, + { + "name":"Act_hdk2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdk2.png" + }, + { + "name":"Act_mobai_jsbg_png", + "type":"image", + "url":"assets/activityCopies/mobai/Act_mobai_jsbg.png" + }, + { + "name":"Act_hdbg2_smsz_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png" + }, + { + "name":"Act_hdbg2_sjjd_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png" + }, + { + "name":"Avt_sjjd_bg1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png" + }, + { + "name":"receive_fnt", + "type":"font", + "url":"assets/image/public/receive.fnt" + }, + { + "name":"Act_hdbg1_sbkgc_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png" + }, + { + "name":"Act_hdbg1_yzwms_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png" + }, + { + "name":"Act_hdbg2_cjxg_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png" + }, + { + "name":"Act_hdbg2_jjtgsj_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png" + }, + { + "name":"Act_hdbg2_scl_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_scl.png" + }, + { + "name":"Act_hdbg2_smdb_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png" + }, + { + "name":"monster_json", + "subkeys":"monhead30001,monhead30002,monhead30003,monhead30004,monhead30005,monhead30006,monhead30007,monhead30008,monhead30009,monhead30010,monhead30011,monhead30012,monhead30013,monhead30014,monhead30015,monhead30016,monhead30017,monhead30018,monhead30019,monhead30020,monhead30021,monhead30022,monhead30023,monhead30024,monhead30025,monhead30026,monhead30027,monhead30028,monhead30029,monhead30030,monhead30031,monhead30032,monhead30033,monhead30034,monhead30035,monhead30036,monhead30037,monhead30038,monhead30039,monhead30040,monhead30041,monhead30042,monhead30043,monhead30044,monhead30045,monhead30046,monhead30047,monhead30048,monhead30049,monhead30050,monhead30051,monhead30052,monhead30053,monhead30054,monhead30055,monhead30056,monhead30057,monhead30058,monhead30059,monhead30060,monhead30061,monhead30062,monhead30063,monhead30064,monhead30065,monhead30066,monhead30067,monhead30068,monhead30069,monhead30070,monhead30071,monhead30072,monhead30075,monhead30076,monhead30077,monhead30078,monhead30079,monhead30082,monhead30083,monhead30084,monhead30085,monhead30086,monhead30087,monhead30089,monhead30090,monhead30091,monhead30092,monhead30093,monhead30094,monhead30095,monhead30096,monhead30097,monhead30098,monhead30099,monhead30100,monhead30101,monhead30102,monhead30103,monhead30104,monhead30105,monhead30106,monhead30107,monhead30108,monhead30109,monhead30110,monhead30111,monhead30112,monhead30113,monhead30114,monhead30116,monhead30117,monhead30118,monhead30119,monhead30120,monhead30122,monhead30159,monhead30160,monhead30161,monhead30162,monhead30163,monhead30164,monhead30165,monhead30168,monhead30169,monhead30170,monhead30171,monhead30172,monhead30173,monhead30174,monhead30175,monhead30176,monhead30177,monhead30178,monhead30179,monhead30180,monhead30181,monhead30182,monhead30183,monhead30184", + "type":"sheet", + "url":"assets/image/monster/monster.json?v=1" + }, + { + "name":"m_bywd_1_mp3", + "type":"sound", + "url":"assets/sound/monster/m_bywd_1.mp3" + }, + { + "name":"m_ymcz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_ymcz_1.mp3" + }, + { + "name":"hair001_0_png", + "type":"image", + "url":"assets/image/model/hair/hair001_0.png" + }, + { + "name":"hair001_1_png", + "type":"image", + "url":"assets/image/model/hair/hair001_1.png" + }, + { + "name":"hair007_0_png", + "type":"image", + "url":"assets/image/model/hair/hair007_0.png" + }, + { + "name":"hair007_1_png", + "type":"image", + "url":"assets/image/model/hair/hair007_1.png" + }, + { + "name":"helmet_12000_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12000.png" + }, + { + "name":"helmet_12001_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12001.png" + }, + { + "name":"helmet_12002_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12002.png" + }, + { + "name":"helmet_12003_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12003.png" + }, + { + "name":"helmet_12004_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12004.png" + }, + { + "name":"helmet_12005_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12005.png" + }, + { + "name":"helmet_12006_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12006.png" + }, + { + "name":"helmet_12007_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12007.png" + }, + { + "name":"helmet_12008_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12008.png" + }, + { + "name":"helmet_12009_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12009.png" + }, + { + "name":"helmet_12010_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12010.png" + }, + { + "name":"helmet_12011_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12011.png" + }, + { + "name":"helmet_12012_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12012.png" + }, + { + "name":"helmet_12013_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12013.png" + }, + { + "name":"helmet_12014_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12014.png" + }, + { + "name":"helmet_13112_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13112.png" + }, + { + "name":"weapon_10000_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10000.png" + }, + { + "name":"weapon_10001_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10001.png" + }, + { + "name":"weapon_10002_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10002.png" + }, + { + "name":"weapon_10003_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10003.png" + }, + { + "name":"weapon_10004_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10004.png" + }, + { + "name":"weapon_10005_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10005.png" + }, + { + "name":"weapon_10006_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10006.png" + }, + { + "name":"weapon_10007_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10007.png" + }, + { + "name":"weapon_10008_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10008.png" + }, + { + "name":"weapon_10009_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10009.png" + }, + { + "name":"weapon_10010_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10010.png" + }, + { + "name":"weapon_10011_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10011.png" + }, + { + "name":"weapon_10012_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10012.png" + }, + { + "name":"weapon_10013_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10013.png" + }, + { + "name":"weapon_10014_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10014.png" + }, + { + "name":"weapon_10015_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10015.png" + }, + { + "name":"weapon_10016_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10016.png" + }, + { + "name":"weapon_10017_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10017.png" + }, + { + "name":"weapon_10018_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10018.png" + }, + { + "name":"weapon_10019_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10019.png" + }, + { + "name":"weapon_10020_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10020.png" + }, + { + "name":"weapon_10021_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10021.png" + }, + { + "name":"weapon_10022_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10022.png" + }, + { + "name":"weapon_10023_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10023.png" + }, + { + "name":"weapon_10024_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10024.png" + }, + { + "name":"weapon_10025_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10025.png" + }, + { + "name":"weapon_10026_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10026.png" + }, + { + "name":"weapon_10027_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10027.png" + }, + { + "name":"weapon_10028_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10028.png" + }, + { + "name":"weapon_10029_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10029.png" + }, + { + "name":"weapon_10030_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10030.png" + }, + { + "name":"weapon_10031_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10031.png" + }, + { + "name":"weapon_10032_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10032.png" + }, + { + "name":"weapon_10033_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10033.png" + }, + { + "name":"weapon_10034_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10034.png" + }, + { + "name":"weapon_10035_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10035.png" + }, + { + "name":"weapon_10036_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10036.png" + }, + { + "name":"weapon_10037_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10037.png" + }, + { + "name":"weapon_10038_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10038.png" + }, + { + "name":"weapon_10039_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10039.png" + }, + { + "name":"weapon_10040_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10040.png" + }, + { + "name":"weapon_10041_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10041.png" + }, + { + "name":"weapon_10042_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10042.png" + }, + { + "name":"weapon_10043_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10043.png" + }, + { + "name":"weapon_10044_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10044.png" + }, + { + "name":"weapon_10045_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10045.png" + }, + { + "name":"hp_fnt_fnt", + "type":"font", + "url":"assets/image/public/hp_fnt.fnt" + }, + { + "name":"chuansonglikai_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansonglikai.mp3" + }, + { + "name":"chuansongziji_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansongziji.mp3" + }, + { + "name":"m_bpx_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_1.mp3" + }, + { + "name":"m_bpx_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_3.mp3" + }, + { + "name":"m_csjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_csjs_1.mp3" + }, + { + "name":"m_dylg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_dylg_1.mp3" + }, + { + "name":"m_gsjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_gsjs_1.mp3" + }, + { + "name":"m_hbz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_1.mp3" + }, + { + "name":"m_hbz_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_2.mp3" + }, + { + "name":"m_hbz_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_3.mp3" + }, + { + "name":"m_hq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_1.mp3" + }, + { + "name":"m_hq_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_3.mp3" + }, + { + "name":"m_hqs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_1.mp3" + }, + { + "name":"m_hqs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_2.mp3" + }, + { + "name":"m_hqs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_3.mp3" + }, + { + "name":"m_jgdy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jgdy_3.mp3" + }, + { + "name":"m_jtyss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_1.mp3" + }, + { + "name":"m_jtyss_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_2.mp3" + }, + { + "name":"m_jtyss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_3.mp3" + }, + { + "name":"m_kjhh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_kjhh_1.mp3" + }, + { + "name":"m_lds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lds_3.mp3" + }, + { + "name":"m_lhhf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_1.mp3" + }, + { + "name":"m_lhhf_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_2.mp3" + }, + { + "name":"m_lhhf_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_3.mp3" + }, + { + "name":"m_lhjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhjf_1.mp3" + }, + { + "name":"m_lxhy_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_1.mp3" + }, + { + "name":"m_lxhy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_3.mp3" + }, + { + "name":"m_mfd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mfd_1.mp3" + }, + { + "name":"m_mth_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mth_3.mp3" + }, + { + "name":"m_qtzys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_qtzys_3.mp3" + }, + { + "name":"m_sds_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_1.mp3" + }, + { + "name":"m_sds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_3.mp3" + }, + { + "name":"m_sszjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_1.mp3" + }, + { + "name":"m_sszjs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_2.mp3" + }, + { + "name":"m_sszjs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_3.mp3" + }, + { + "name":"m_sxs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxs_3.mp3" + }, + { + "name":"m_sxyd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxyd_1.mp3" + }, + { + "name":"m_szh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_szh_1.mp3" + }, + { + "name":"m_wjzq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_wjzq_1.mp3" + }, + { + "name":"m_yhzg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_1.mp3" + }, + { + "name":"m_yhzg_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_3.mp3" + }, + { + "name":"m_yss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yss_1.mp3" + }, + { + "name":"m_zhkl_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_1.mp3" + }, + { + "name":"m_zhkl_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_3.mp3" + }, + { + "name":"m_zhss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_1.mp3" + }, + { + "name":"m_zhss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_3.mp3" + }, + { + "name":"m_zrjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zrjf_1.mp3" + }, + { + "name":"m_zys_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_1.mp3" + }, + { + "name":"m_zys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_3.mp3" + }, + + { + "name":"attack_male_mp3", + "type":"sound", + "url":"assets/sound/character/attack_male.mp3" + }, + { + "name":"attack_female_mp3", + "type":"sound", + "url":"assets/sound/character/attack_female.mp3" + }, + + { + "name":"dead_male_mp3", + "type":"sound", + "url":"assets/sound/character/dead_male.mp3" + }, + { + "name":"dead_female_mp3", + "type":"sound", + "url":"assets/sound/character/dead_female.mp3" + }, + + { + "name":"injure_male_mp3", + "type":"sound", + "url":"assets/sound/character/injure_male.mp3" + }, + { + "name":"injure_female_mp3", + "type":"sound", + "url":"assets/sound/character/injure_female.mp3" + }, + + { + "name":"task_complete_mp3", + "type":"sound", + "url":"assets/sound/character/task_complete.mp3" + }, + + { + "name":"Act_hdbg1_dcty_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png" + }, + { + "name":"load_Reel_png", + "type":"image", + "url":"assets/image/public/load_Reel.png" + }, + { + "name":"yingzi_png", + "type":"image", + "url":"assets/image/public/yingzi.png" + }, + { + "name":"Act_hdbg1_sjboss_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png" + }, + { + "name":"mapmini_png", + "type":"image", + "url":"assets/image/public/mapmini.png" + }, + { + "name":"actypay_json", + "subkeys":"apay_bannert_chfl,apay_biaoti_jchd,apay_biaoti_kftz,apay_time_bg,apay_yishouwan,biaoti_chongyangxianrui,biaoti_ganenjie,biaoti_guanggunjie,biaoti_shuangshiqingdian,biaoti_shuangshiyi,biaoti_wanshengjie,biaoti_zhongqiujiajie,biaoti_zhufuguoqing,festival_dw,festival_hd,festival_ql,festival_sx,festival_tq,festival_xiala,festival_zm,festival_zn,hfhd_wenzi", + "type":"sheet", + "url":"assets/actypay/actypay.json" + }, + { + "name":"firstcharge_json", + "subkeys":"fc_bg2,fc_btn_1,fc_btn_2,fc_p_2,fc_t3,fc_t4,fc_t5,fc_t6,fc_yilingqu,weapon_bottom_bg", + "type":"sheet", + "url":"assets/firstcharge/firstcharge.json" + }, + { + "name":"huanying_bg_1_png", + "type":"image", + "url":"assets/main/huanying_bg_1.png" + }, + { + "name":"huanying_bg_2_png", + "type":"image", + "url":"assets/main/huanying_bg_2.png" + }, + { + "name":"huanying_bg_3_png", + "type":"image", + "url":"assets/main/huanying_bg_3.png" + }, + { + "name":"huanying_bg_4_png", + "type":"image", + "url":"assets/main/huanying_bg_4.png" + }, + { + "name":"lixian_json", + "subkeys":"bg_lxpd,biaoqian_lxpd,icon_lxpd1,icon_lxpd2,icon_lxpd3,icon_lxpd4,icon_lxpd5,property_lxpd", + "type":"sheet", + "url":"assets/lixian/lixian_a9737a5c_dfdababe.json" + }, + { + "name":"bq_bg1_png", + "type":"image", + "url":"assets/main/bq_bg1.png" + }, + { + "name":"open_bg_png", + "type":"image", + "url":"assets/main/open_bg.png" + }, + { + "name":"apay_bg_png", + "type":"image", + "url":"assets/bg/apay_bg.png" + }, + { + "name":"sixiang_json", + "subkeys":"jiejikuang,sx_icon_1,sx_icon_2,sx_icon_3,sx_icon_4,sx_jiantou,t_sx_0,t_sx_1,t_sx_10,t_sx_2,t_sx_3,t_sx_4,t_sx_5,t_sx_6,t_sx_7,t_sx_8,t_sx_9,t_sx_bai,t_sx_hu,t_sx_hun,t_sx_jie,t_sx_long,t_sx_qing,t_sx_que,t_sx_wu,t_sx_xing,t_sx_xuan,t_sx_zhi,t_sx_zhu,一,七,三,九,二,五,八,六,十,四,阶,零", + "type":"sheet", + "url":"assets/role/sixiang.json" + }, + { + "name":"sixiangfnt_fnt", + "type":"font", + "url":"assets/image/public/sixiangfnt.fnt" + }, + { + "name":"fl_jhm_bg_png", + "type":"image", + "url":"assets/fuli/fl_jhm_bg.png" + }, + { + "name":"qd_bg_png", + "type":"image", + "url":"assets/fuli/qd_bg.png" + }, + { + "name":"qr_bg_png", + "type":"image", + "url":"assets/fuli/qr_bg.png" + }, + { + "name":"wlelfare_json", + "subkeys":"biaoti_fuli,fl_jhm_btn_1,fl_jhm_btn_2,flqd_bg0,flqd_bg1,flqd_bg2,flqd_bg3,flqd_djqd,flqd_qd1,flqd_qd2,flqd_tab1,flqd_tab2,qd_t_1_0,qd_t_1_1,qd_t_1_2,qd_t_1_3,qd_t_1_4,qd_t_1_5,qd_t_1_6,qd_t_1_7,qd_t_1_8,qd_t_1_9,qd_t_2_0,qd_t_2_1,qd_t_2_2,qd_t_2_3,qd_t_2_4,qd_t_2_5,qd_t_2_6,qd_t_2_7,qd_t_2_8,qd_t_2_9,qd_t_3_1,qd_t_3_2,qd_t_3_3,qd_t_3_4,qd_t_3_5,qd_t_3_6,qd_t_3_7,qd_t_3_z,qd_t_jin,qd_t_leiji,qd_t_yue,qd_yeqian1,qd_yeqian2,qd_yiqiandao,qr_bg2,qr_p_1,qr_p_2,qr_p_3,qr_p_yilingqu,qr_t1_1,qr_t1_2,qr_t1_3,qr_t1_4,qr_t1_5,qr_t1_6,qr_t1_7,qr_t2_1,qr_t2_2,qr_t2_3,qr_t2_4,qr_t2_5,qr_t2_6,qr_t2_7,yk_30tian,yk_30tian2,yk_biaoqian_0,yk_biaoqian_1,yk_biaoqian_2,yk_biaoqian_3,yk_biaoqian_4,yk_btn,yk_dian,yk_icon1,yk_icon2,yk_icon3,yk_icon4,yqs_btn,yqs_wz", + "type":"sheet", + "url":"assets/fuli/wlelfare.json" + }, + { + "name":"signNum_1_fnt", + "type":"font", + "url":"assets/image/public/signNum_1.fnt" + }, + { + "name":"signNum_2_fnt", + "type":"font", + "url":"assets/image/public/signNum_2.fnt" + }, + { + "name":"signNum_3_fnt", + "type":"font", + "url":"assets/image/public/signNum_3.fnt" + }, + { + "name":"yk_bg_png", + "type":"image", + "url":"assets/fuli/yk_bg.png" + }, + { + "name":"openServer_json", + "subkeys":"biaoti_cangjingge,biaoti_kaifuhaoli,biaoti_kaifujingji,biaoti_xunbao,kf_jj_bqbg,kf_kftz_yb,kf_lb_bg2,kf_lb_jt1,kf_lb_jt2,kf_lb_k,kf_lb_k2,kf_lb_k3,kf_lb_p1,kf_lb_p2,kf_lb_p3,kf_lb_p4,kf_lb_p5,kf_lb_p6,kf_lb_t1,kf_lb_t2,kf_lb_t3,kf_lb_t4,kf_lb_t5,kf_lb_t6,kf_lb_yigoumai,kf_slcj,kf_xb_bg2,kf_xb_bg3,kf_xb_bt,kf_xb_bt2,kf_xb_p1,kf_xb_t1,kf_xb_t2,kf_xbbt,kf_xybt", + "type":"sheet", + "url":"assets/openServer/openServer.json" + }, + { + "name":"ring_json", + "subkeys":"btn_sj_1_d,btn_sj_1_u,btn_sj_2_d,btn_sj_2_u,btn_sj_3_d,btn_sj_3_u,btn_sj_4_d,btn_sj_4_u,btn_sj_5_d,btn_sj_5_u,btn_sj_6_d,btn_sj_6_u,icon_ring_1,icon_ring_2,icon_ring_3,icon_ring_4,icon_ring_xuanzhong,ring_jiantou_1,ring_jiantou_2,t_ring,t_ring2,t_ring3,t_ring4,t_ring5,t_ring6,t_ring7,tbg_ring", + "type":"sheet", + "url":"assets/ring/ring.json" + }, + { + "name":"title_json", + "subkeys":"ch_NPC2_001,ch_NPC2_002,ch_NPC2_003,ch_NPC2_004,ch_NPC2_005,ch_NPC2_006,ch_NPC2_007,ch_NPC2_008,ch_NPC2_009,ch_NPC2_010,ch_NPC2_011,ch_NPC2_012,ch_NPC2_013,ch_NPC2_014,ch_NPC2_015,ch_NPC2_016,ch_NPC2_017,ch_NPC2_018,ch_NPC2_019,ch_NPC3_001,ch_NPC3_002,ch_NPC3_003,ch_NPC3_004,ch_NPC3_005,ch_NPC3_006,ch_NPC3_007,ch_NPC3_008,ch_NPC3_009,ch_NPC3_010,ch_NPC3_011,ch_NPC3_012,ch_NPC3_013,ch_NPC3_014,ch_NPC3_015,ch_NPC3_016,ch_NPC3_017,ch_NPC3_018,ch_NPC3_019,ch_NPC3_020,ch_NPC3_021,ch_NPC3_022,ch_NPC3_023,ch_NPC3_024,ch_NPC3_025,ch_NPC3_026,ch_NPC3_027,ch_NPC3_028,ch_NPC3_029,ch_NPC3_030,ch_NPC3_031,ch_NPC3_032,ch_NPC3_033,ch_NPC3_034,ch_NPC3_035,ch_NPC3_036,ch_NPC3_037,ch_NPC3_038,ch_NPC3_039,ch_NPC3_040,ch_NPC3_041,ch_NPC3_042,ch_NPC3_043,ch_NPC3_044,ch_NPC3_045,ch_NPC_001,ch_NPC_002,ch_NPC_003,ch_NPC_004,ch_NPC_005,ch_NPC_006,ch_NPC_007,ch_NPC_008,ch_NPC_009,ch_NPC_010,ch_NPC_011,ch_NPC_012,ch_NPC_013,ch_NPC_014,ch_NPC_015,ch_NPC_016,ch_NPC_017,ch_NPC_018,ch_NPC_019,ch_NPC_020,ch_NPC_021,ch_show_001,ch_show_0010,ch_show_0011,ch_show_0012,ch_show_0013,ch_show_0014,ch_show_0015,ch_show_0016,ch_show_0017,ch_show_0018,ch_show_0019,ch_show_002,ch_show_0020,ch_show_0021,ch_show_0022,ch_show_0023,ch_show_0024,ch_show_0025,ch_show_0026,ch_show_0027,ch_show_0028,ch_show_0029,ch_show_003,ch_show_0030,ch_show_0031,ch_show_0032,ch_show_0033,ch_show_0034,ch_show_0035,ch_show_0036,ch_show_0037,ch_show_0038,ch_show_0039,ch_show_004,ch_show_0040,ch_show_0041,ch_show_0042,ch_show_0043,ch_show_0044,ch_show_0045,ch_show_0046,ch_show_0047,ch_show_0048,ch_show_0049,ch_show_005,ch_show_0050,ch_show_0051,ch_show_0052,ch_show_0053,ch_show_0054,ch_show_0055,ch_show_0056,ch_show_0057,ch_show_0058,ch_show_0059,ch_show_006,ch_show_0060,ch_show_0061,ch_show_0062,ch_show_0063,ch_show_0064,ch_show_0065,ch_show_0066,ch_show_0067,ch_show_0068,ch_show_0069,ch_show_007,ch_show_0070,ch_show_0071,ch_show_0072,ch_show_0073,ch_show_0074,ch_show_0075,ch_show_0076,ch_show_0077,ch_show_0078,ch_show_0079,ch_show_008,ch_show_009,rage_ch,rw_sign_1,rw_sign_2", + "type":"sheet", + "url":"assets/image/title/title.json" + }, + { + "name":"kf_lb_bg1_png", + "type":"image", + "url":"assets/openServer/kf_lb_bg1.png" + }, + { + "name":"kf_xb_bg_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg.png" + }, + { + "name":"fcm_bg_png", + "type":"image", + "url":"assets/bg/fcm_bg.png" + }, + { + "name":"war_json", + "subkeys":"zl_bgk1,zl_biaoti,zl_btn_chakan,zl_hd_1,zl_hd_2,zl_hd_3,zl_hd_4,zl_iconk,zl_iconzw,zl_p_1,zl_p_2,zl_p_3,zl_pzp2,zl_t_yihuode,zl_t_yiwancheng,zl_weijihuo,zl_xian_1,zl_xian_2", + "type":"sheet", + "url":"assets/war/war.json" + }, + { + "name":"zl_bg_png", + "type":"image", + "url":"assets/war/zl_bg.png" + }, + { + "name":"Act_hdbg2_clfb_png", + "type":"image", + "url":"assets/activityCopies/activity12/Act_hdbg2_clfb.png" + }, + { + "name":"act_clfbbg_0_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_0.png" + }, + { + "name":"act_clfbbg_1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_1.png" + }, + { + "name":"act_clfbbg_2_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_2.png" + }, + { + "name":"act_clfbbg_3_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_3.png" + }, + { + "name":"act_clfbbg_4_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_4.png" + }, + { + "name":"activity12_json", + "subkeys":"act_clfbbg", + "type":"sheet", + "url":"assets/activityCopies/activity12/activity12.json" + }, + { + "name":"Act_hdbg2_zsrw_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png" + }, + { + "name":"act_zsrwbg1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_zsrwbg1.png" + }, + { + "name":"YYLobby_json", + "subkeys":"CW_banner,CW_bg,CW_bt,CW_t1,CW_t2,CW_t3,WX_bt,YY_banner,YY_banner2,YY_bg4,YY_bg5,YY_bt,YY_bt1,YY_btn_ljkt,YY_btn_ljlq,YY_btn_ljlq2,YY_hongxian,YY_t_hy0,YY_t_hy1,YY_t_hy2,YY_t_hy3,YY_t_hy4,YY_t_hy5,YY_t_hy6,YY_t_hy7,YY_t_hy8,YY_t_hy9,YY_t_hydj,YY_t_ljxz,YY_t_wkt,YY_t_xslb,YY_tab1,YY_tab2,kf_fanye_rcfl1,kf_fanye_rcfl2,kf_fanye_xfhl1,kf_fanye_xfhl2,logo_chaowan", + "type":"sheet", + "url":"assets/YY/YYLobby.json" + }, + { + "name":"YY_bg_png", + "type":"image", + "url":"assets/YY/YY_bg.png" + }, + { + "name":"YY_bg3_png", + "type":"image", + "url":"assets/YY/YY_bg3.png" + }, + { + "name":"YY_bg2_png", + "type":"image", + "url":"assets/YY/YY_bg2.png" + }, + { + "name":"YY_bg6_png", + "type":"image", + "url":"assets/YY/YY_bg6.png" + }, + { + "name":"wx_bg_png", + "type":"image", + "url":"assets/YY/wx_bg.png" + }, + { + "name":"getProps_json", + "subkeys":"get_bg,get_bg2,get_bg3,get_icon_1,get_icon_10,get_icon_11,get_icon_12,get_icon_13,get_icon_2,get_icon_3,get_icon_4,get_icon_5,get_icon_6,get_icon_7,get_icon_8,get_icon_9,get_jj1,get_jj2,get_tj", + "type":"sheet", + "url":"assets/getProps/getProps.json" + }, + { + "name":"sczhiyin_png", + "type":"image", + "url":"assets/main/sczhiyin.png" + }, + { + "name":"Timing_json", + "subkeys":"timing_bg1,timing_bg2,timing_btn,timing_tsjl", + "type":"sheet", + "url":"assets/timing/Timing.json" + }, + { + "name":"vip_json", + "subkeys":"biaoti_hytq,tq_bg4,tq_bg5,tq_btn,tq_btn1,tq_btnt1,tq_btnt10,tq_btnt11,tq_btnt12,tq_btnt13,tq_btnt14,tq_btnt14_2,tq_btnt14_3,tq_btnt14_4,tq_btnt14_5,tq_btnt15,tq_btnt16,tq_btnt2,tq_btnt3,tq_btnt4,tq_btnt5,tq_btnt6,tq_btnt6_1,tq_btnt7,tq_btnt8,tq_btnt9,tq_icon_0,tq_icon_1,tq_icon_2,tq_icon_3,tq_icon_4,tq_icon_5,tq_icon_6,tq_icon_7,tq_jdt,tq_jdtk,tq_jlt1,tq_jlt2,tq_jlt3,tq_jlt4,tq_jlt5,tq_jlt6,tq_jlt7,tq_lb_jt1,tq_lb_jt2,tq_sf_f,tq_sf_s,tq_tab1,tq_tab2,tq_tabbg1,tq_tabbg2,tq_top_fenge,tq_zxhl", + "type":"sheet", + "url":"assets/vip/vip.json" + }, + { + "name":"levelnumber_fnt", + "type":"font", + "url":"assets/common/levelnumber.fnt" + }, + { + "name":"weapon_13296_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13296.png" + }, + { + "name":"weapon_13317_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13317.png" + }, + { + "name":"weapon_13318_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13318.png" + }, + { + "name":"skillbg2_png", + "type":"image", + "url":"assets/bg/skillbg2.png" + }, + { + "name":"body012_0_png", + "type":"image", + "url":"assets/image/model/body/body012_0.png" + }, + { + "name":"body012_1_png", + "type":"image", + "url":"assets/image/model/body/body012_1.png" + }, + { + "name":"body013_0_png", + "type":"image", + "url":"assets/image/model/body/body013_0.png" + }, + { + "name":"body013_1_png", + "type":"image", + "url":"assets/image/model/body/body013_1.png" + }, + { + "name":"body014_0_png", + "type":"image", + "url":"assets/image/model/body/body014_0.png" + }, + { + "name":"body014_1_png", + "type":"image", + "url":"assets/image/model/body/body014_1.png" + }, + { + "name":"body015_0_png", + "type":"image", + "url":"assets/image/model/body/body015_0.png" + }, + { + "name":"body020_0_png", + "type":"image", + "url":"assets/image/model/body/body020_0.png" + }, + { + "name":"body015_1_png", + "type":"image", + "url":"assets/image/model/body/body015_1.png" + }, + { + "name":"body011_1_png", + "type":"image", + "url":"assets/image/model/body/body011_1.png" + }, + { + "name":"body021_0_png", + "type":"image", + "url":"assets/image/model/body/body021_0.png" + }, + { + "name":"body021_1_png", + "type":"image", + "url":"assets/image/model/body/body021_1.png" + }, + { + "name":"body022_1_png", + "type":"image", + "url":"assets/image/model/body/body022_1.png" + }, + { + "name":"body023_0_png", + "type":"image", + "url":"assets/image/model/body/body023_0.png" + }, + { + "name":"body023_1_png", + "type":"image", + "url":"assets/image/model/body/body023_1.png" + }, + { + "name":"body022_0_png", + "type":"image", + "url":"assets/image/model/body/body022_0.png" + }, + { + "name":"body024_0_png", + "type":"image", + "url":"assets/image/model/body/body024_0.png" + }, + { + "name":"body027_0_png", + "type":"image", + "url":"assets/image/model/body/body027_0.png" + }, + { + "name":"body020_1_png", + "type":"image", + "url":"assets/image/model/body/body020_1.png" + }, + { + "name":"body027_1_png", + "type":"image", + "url":"assets/image/model/body/body027_1.png" + }, + { + "name":"body001_0_png", + "type":"image", + "url":"assets/image/model/body/body001_0.png" + }, + { + "name":"body001_1_png", + "type":"image", + "url":"assets/image/model/body/body001_1.png" + }, + { + "name":"body024_1_png", + "type":"image", + "url":"assets/image/model/body/body024_1.png" + }, + { + "name":"body002_1_png", + "type":"image", + "url":"assets/image/model/body/body002_1.png" + }, + { + "name":"body003_0_png", + "type":"image", + "url":"assets/image/model/body/body003_0.png" + }, + { + "name":"body004_0_png", + "type":"image", + "url":"assets/image/model/body/body004_0.png" + }, + { + "name":"body004_1_png", + "type":"image", + "url":"assets/image/model/body/body004_1.png" + }, + { + "name":"body005_0_png", + "type":"image", + "url":"assets/image/model/body/body005_0.png" + }, + { + "name":"body005_1_png", + "type":"image", + "url":"assets/image/model/body/body005_1.png" + }, + { + "name":"body006_0_png", + "type":"image", + "url":"assets/image/model/body/body006_0.png" + }, + { + "name":"body006_1_png", + "type":"image", + "url":"assets/image/model/body/body006_1.png" + }, + { + "name":"body007_0_png", + "type":"image", + "url":"assets/image/model/body/body007_0.png" + }, + { + "name":"body007_1_png", + "type":"image", + "url":"assets/image/model/body/body007_1.png" + }, + { + "name":"body008_0_png", + "type":"image", + "url":"assets/image/model/body/body008_0.png" + }, + { + "name":"body008_1_png", + "type":"image", + "url":"assets/image/model/body/body008_1.png" + }, + { + "name":"body009_0_png", + "type":"image", + "url":"assets/image/model/body/body009_0.png" + }, + { + "name":"body009_1_png", + "type":"image", + "url":"assets/image/model/body/body009_1.png" + }, + { + "name":"body010_0_png", + "type":"image", + "url":"assets/image/model/body/body010_0.png" + }, + { + "name":"body010_1_png", + "type":"image", + "url":"assets/image/model/body/body010_1.png" + }, + { + "name":"body011_0_png", + "type":"image", + "url":"assets/image/model/body/body011_0.png" + }, + { + "name":"body002_0_png", + "type":"image", + "url":"assets/image/model/body/body002_0.png" + }, + { + "name":"body003_1_png", + "type":"image", + "url":"assets/image/model/body/body003_1.png" + }, + { + "name":"helmet_13356_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13356.png" + }, + { + "name":"helmet_13362_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13362.png" + }, + { + "name":"num_2_fnt", + "type":"font", + "url":"assets/image/public/num_2.fnt" + }, + { + "name":"num_3_fnt", + "type":"font", + "url":"assets/image/public/num_3.fnt" + }, + { + "name":"num_4_fnt", + "type":"font", + "url":"assets/image/public/num_4.fnt" + }, + { + "name":"num_6_fnt", + "type":"font", + "url":"assets/image/public/num_6.fnt" + }, + { + "name":"numAttr_fnt", + "type":"font", + "url":"assets/image/public/numAttr.fnt" + }, + { + "name":"num_5_fnt", + "type":"font", + "url":"assets/image/public/num_5.fnt" + }, + { + "name":"task_k1_png", + "type":"image", + "url":"assets/main/task_k1.png" + }, + { + "name":"sz_bg_1_png", + "type":"image", + "url":"assets/role/sz_bg_1.png" + }, + { + "name":"transform_bg_png", + "type":"image", + "url":"assets/role/transform_bg.png" + }, + { + "name":"blessing_bg_png", + "type":"image", + "url":"assets/role/blessing_bg.png" + }, + { + "name":"Godturn_bg_png", + "type":"image", + "url":"assets/role/Godturn_bg.png" + }, + { + "name":"role_bg_png", + "type":"image", + "url":"assets/role/role_bg.png" + }, + { + "name":"qh_bg_png", + "type":"image", + "url":"assets/role/qh_bg.png" + }, + { + "name":"role_k_png", + "type":"image", + "url":"assets/role/role_k.png" + }, + { + "name":"role_sx_bg_png", + "type":"image", + "url":"assets/role/role_sx_bg.png" + }, + { + "name":"bg_sixiang_png", + "type":"image", + "url":"assets/role/bg_sixiang.png" + }, + { + "name":"bg_sixiang2_png", + "type":"image", + "url":"assets/role/bg_sixiang2.png" + }, + { + "name":"fourImage_fnt", + "type":"font", + "url":"assets/image/public/fourImage.fnt" + }, + { + "name":"growway_json", + "subkeys":"bg_czzl,czzl_t1,czzl_tab_01,czzl_tab_02,czzl_tab_11,czzl_tab_12,czzl_tab_21,czzl_tab_22,czzl_tab_31,czzl_tab_32,czzl_tab_41,czzl_tab_42,growway_jt", + "type":"sheet", + "url":"assets/growway/growway.json" + }, + { + "name":"bg_ring_png", + "type":"image", + "url":"assets/ring/bg_ring.png" + }, + { + "name":"com_bg_kuang_3_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_3.png" + }, + { + "name":"com_bg_kuang_4_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_4.png" + }, + { + "name":"bg_newNpc_png", + "type":"image", + "url":"assets/main/bg_newNpc.png" + }, + { + "name":"bag_bg_png", + "type":"image", + "url":"assets/common/bag_bg.png" + }, + { + "name":"LOGO2_png", + "type":"image", + "url":"assets/login/LOGO2.png" + }, + { + "name":"task_k2_png", + "type":"image", + "url":"assets/main/task_k2.png" + }, + { + "name":"chat_bg_tc1_2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1_2.png" + }, + { + "name":"bg_tipstc2_png", + "type":"image", + "url":"assets/bg/bg_tipstc2.png" + }, + { + "name":"rank_bg_png", + "type":"image", + "url":"assets/rank/rank_bg.png" + }, + { + "name":"bodyimgeff18_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_0.png" + }, + { + "name":"bodyimgeff18_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_1.png" + }, + { + "name":"bodyimgeff19_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_0.png" + }, + { + "name":"bodyimgeff19_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_1.png" + }, + { + "name":"bodyimgeff21_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_0.png" + }, + { + "name":"bodyimgeff21_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_1.png" + }, + { + "name":"bodyimgeff25_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_0.png" + }, + { + "name":"bodyimgeff25_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_1.png" + }, + { + "name":"bodyimgeff26_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_0.png" + }, + { + "name":"bodyimgeff26_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_1.png" + }, + { + "name":"bodyimgeff27_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_0.png" + }, + { + "name":"bodyimgeff27_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_1.png" + }, + { + "name":"hyhy_bg_png", + "type":"image", + "url":"assets/main/hyhy_bg.png" + }, + { + "name":"hyhy_btn_png", + "type":"image", + "url":"assets/main/hyhy_btn.png" + }, + { + "name":"ditutiaozhuan_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/ditutiaozhuan.mp3" + }, + { + "name":"com_bg_kuang_6_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_6.png" + }, + { + "name":"com_bg_kuang_5_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_5.png" + }, + { + "name":"shenmo_json", + "subkeys":"bg_shenmo,bg_sm,btn_shenmo_01,btn_shenmo_02,icon_shenmo_1,icon_shenmo_2,icon_shenmo_3,icon_shenmo_4,icon_shenmo_5,sm_jyt1,sm_jyt2,sm_p1,sm_t1,sm_t2,sm_t3,sm_t4,sm_t5,sm_t6,sm_t7,t_shenmo_1,t_shenmo_2,t_shenmo_3,t_shenmo_4,t_shenmo_5", + "type":"sheet", + "url":"assets/shenmo/shenmo.json" + }, + { + "name":"bg_huishou_png", + "type":"image", + "url":"assets/common/bg_huishou.png" + }, + { + "name":"rage_bg_png", + "type":"image", + "url":"assets/violentState/rage_bg.png" + }, + { + "name":"particle1_json", + "type":"json", + "url":"assets/image/particle/particle1.json" + }, + { + "name":"particle1_png", + "type":"image", + "url":"assets/image/particle/particle1.png" + }, + { + "name":"donationRank_json", + "subkeys":"jxpm_1,jxpm_2,jxpm_3,jxpm_4,jxpm_5,jxpm_6,jxpm_7,jxpm_banner,jxpm_bg1,jxpm_bg2", + "type":"sheet", + "url":"assets/donationRank/donationRank.json" + }, + { + "name":"helmet_13437_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13437.png" + }, + { + "name":"helmet_13438_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13438.png" + }, + { + "name":"helmet_13439_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13439.png" + }, + { + "name":"ShaChengStarcraft_json", + "subkeys":"sbk_bg2,sbk_czch1,sbk_czch2,sbk_czp1,sbk_czp2,sbk_jlcz,sbk_jlhd", + "type":"sheet", + "url":"assets/ShaChengStarcraft/ShaChengStarcraft.json" + }, + { + "name":"sbk_bg_png", + "type":"image", + "url":"assets/ShaChengStarcraft/sbk_bg.png" + }, + { + "name":"apay_bg2_png", + "type":"image", + "url":"assets/bg/apay_bg2.png" + }, + { + "name":"recharge_json", + "subkeys":"biaoti_cz,cz_10bei,cz_10bei1,cz_10bei2,cz_bg1,cz_icon1,cz_icon2,cz_icon3,cz_icon4,cz_icon5,cz_icon6,cz_icon7,cz_icon8", + "type":"sheet", + "url":"assets/recharge/recharge.json" + }, + { + "name":"num_8_fnt", + "type":"font", + "url":"assets/image/public/num_8.fnt" + }, + { + "name":"bg_gz_png", + "type":"image", + "url":"assets/role/bg_gz.png" + }, + { + "name":"LOGO3_png", + "type":"image", + "url":"assets/login/LOGO3.png" + }, + { + "name":"zjt2_png", + "type":"image", + "url":"assets/login/zjt2.png" + }, + { + "name":"zjt3_png", + "type":"image", + "url":"assets/login/zjt3.png" + }, + { + "name":"zjt1_png", + "type":"image", + "url":"assets/login/zjt1.png" + }, + { + "name":"zhuanzhi_json", + "subkeys":"biaoti_zhuanzhi,jobchange_bg,jobchange_bg2,jobchange_bg3", + "type":"sheet", + "url":"assets/zhuanzhi/zhuanzhi.json" + }, + { + "name":"sz_show_001_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_1.png" + }, + { + "name":"sz_show_002_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_1.png" + }, + { + "name":"sz_show_002_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_0.png" + }, + { + "name":"sz_show_001_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_0.png" + }, + { + "name":"sz_show_005_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_0.png" + }, + { + "name":"sz_show_005_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_1.png" + }, + { + "name":"sz_show_003_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_0.png" + }, + { + "name":"sz_show_003_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_1.png" + }, + { + "name":"sz_show_004_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_0.png" + }, + { + "name":"sz_show_004_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_1.png" + }, + { + "name":"cangku_bg_png", + "type":"image", + "url":"assets/Warehouse/cangku_bg.png" + }, + { + "name":"Warehouse_json", + "subkeys":"cangku_tab1,cangku_tab2,cangku_tabt1_1,cangku_tabt1_2,cangku_tabt2_1,cangku_tabt2_2,cangku_tabt3_1,cangku_tabt3_2,cangku_tabt4_1,cangku_tabt4_2,cangku_tabt5_1,cangku_tabt5_2,cangku_tabt6_1,cangku_tabt6_2", + "type":"sheet", + "url":"assets/Warehouse/Warehouse.json" + }, + { + "name":"LOG4366_png", + "type":"image", + "url":"assets/login/LOG4366.png" + }, + { + "name":"fuli4366_json", + "subkeys":"banner_4366,banner_4366vip,banner_qqdating1,biaoti_4366,btn_smczx,t_lijichongzhi", + "type":"sheet", + "url":"assets/4366/fuli4366.json" + }, + { + "name":"qqcode_png", + "type":"image", + "url":"assets/4366/qqcode.png" + }, + { + "name":"loding_png", + "type":"image", + "url":"assets/login/loding.png" + }, + { + "name":"qqBlueDiamond_json", + "subkeys":"banner_lzchongzhi,banner_lzshangcheng,banner_lztequan,biaoti_lztequan,lz_czhuaxian,lz_ktlzbt,lz_ktnflzbt,lz_lzxinshou_dabiaoti,lz_tqzl1,lz_tqzl2,lz_tqzl3,lz_tqzl4,lz_xflzbt,lz_xfnflzbt,lztq_frame,lztq_frame1,wenzi_lzhhbewlq,wenzi_nflzgzewlq", + "type":"sheet", + "url":"assets/qqBlueDiamond/qqBlueDiamond.json" + }, + { + "name":"blueDiamond_json", + "subkeys":"lz_hh1,lz_hh2,lz_hh3,lz_hh4,lz_hh5,lz_hh6,lz_hh7,lz_hh8,lz_hh9,lz_hhe1,lz_hhe2,lz_hhe3,lz_hhe4,lz_hhe5,lz_hhe6,lz_hhe7,lz_hhe8,lz_hhe9,lz_nf,lz_nf1,lz_pt1,lz_pt2,lz_pt3,lz_pt4,lz_pt5,lz_pt6,lz_pt7,lz_pt8,lz_pt9,lz_pte1,lz_pte2,lz_pte3,lz_pte4,lz_pte5,lz_pte6,lz_pte7,lz_pte8,lz_pte9,name_lz_hh1,name_lz_hh2,name_lz_hh3,name_lz_hh4,name_lz_hh5,name_lz_hh6,name_lz_hh7,name_lz_hh8,name_lz_hh9,name_lz_nf,name_lz_pt1,name_lz_pt2,name_lz_pt3,name_lz_pt4,name_lz_pt5,name_lz_pt6,name_lz_pt7,name_lz_pt8,name_lz_pt9", + "type":"sheet", + "url":"assets/image/public/blueDiamond.json" + }, + { + "name":"qqdt_meir_erji_png", + "type":"image", + "url":"assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png" + }, + { + "name":"QQLobby_json", + "subkeys":"banner_qqdating,biaoti_qqdating,qq_bt1,qq_bt2,qqdt_dengji_frame,qqdt_jiangli_sign,qqdt_meir_dabiaoti,qqdt_xinshou_dabiaoti", + "type":"sheet", + "url":"assets/qqLobbyPrivilegesWin/QQLobby.json" + }, + { + "name":"bg_4366jqfuli_png", + "type":"image", + "url":"assets/4366/bg_4366jqfuli.png" + }, + { + "name":"bg_4366renzhenglibao_png", + "type":"image", + "url":"assets/4366/bg_4366renzhenglibao.png" + }, + { + "name":"bg_4366shoujilibao_png", + "type":"image", + "url":"assets/4366/bg_4366shoujilibao.png" + }, + { + "name":"bg_4366vip_png", + "type":"image", + "url":"assets/4366/bg_4366vip.png" + }, + { + "name":"bg_4366vxlibao_png", + "type":"image", + "url":"assets/4366/bg_4366vxlibao.png" + }, + { + "name":"saomachongzhi_png", + "type":"image", + "url":"assets/4366/saomachongzhi.png" + }, + { + "name":"hfhd_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/hfhd_shenhuaboss.png" + }, + { + "name":"weiduan_xzframe_png", + "type":"image", + "url":"assets/microterms/weiduan_xzframe.png" + }, + { + "name":"main_taskTips_json", + "subkeys":"zi_1,zi_2,zi_3,zi_4,zi_5,zi_6", + "type":"sheet", + "url":"assets/main/main_taskTips.json" + }, + { + "name":"loding_jpg", + "type":"image", + "url":"assets/login/loding.jpg" + }, + { + "name":"hitnum9_fnt", + "type":"font", + "url":"assets/image/public/hitnum9.fnt" + }, + { + "name":"main_actTips_json", + "subkeys":"dc_bg0,dc_bg1,dc_bg2,dc_bg3,dc_bg4,dc_bg5,dc_btn1,dc_btn2,dc_cdmu0,dc_cdmu1,dc_cdmu2,dc_cdmu3,dc_cdmu4,dc_cdmu5,dc_cdmu6,dc_cdmu7,dc_cdmu8,dc_cdmu9,dc_cdwenzi0,dc_cdwenzi1,dc_cdwenzi10,dc_cdwenzi11,dc_cdwenzi2,dc_cdwenzi3,dc_cdwenzi4,dc_cdwenzi5,dc_cdwenzi6,dc_cdwenzi7,dc_cdwenzi8,dc_cdwenzi9,dc_chwenzi3,dc_icon_jibai,dc_jb_ch1,dc_jb_ch10,dc_jb_ch11,dc_jb_ch12,dc_jb_ch13,dc_jb_ch14,dc_jb_ch2,dc_jb_ch3,dc_jb_ch4,dc_jb_ch5,dc_jb_ch6,dc_jb_ch7,dc_jb_ch8,dc_jb_ch9,dc_jb_nu0,dc_jb_nu1,dc_jb_nu2,dc_jb_nu3,dc_jb_nu4,dc_jb_nu5,dc_jb_nu6,dc_jb_nu7,dc_jb_nu8,dc_jb_nu9,dc_jpwenzi0,dc_jpwenzi1,dc_mu0,dc_mu1,dc_mu2,dc_mu3,dc_mu4,dc_mu5,dc_mu6,dc_mu7,dc_mu8,dc_mu9,dc_mubiao,dc_nrwenzi0,dc_nrwenzi1,dc_nrwenzi2,dc_nrwenzi3,dc_nrwenzi4,dc_nrwenzi5,dc_nrwenzi6,dc_nrwenzi7,dc_zbmu0,dc_zbmu1,dc_zbmu2,dc_zbmu3,dc_zbmu4,dc_zbmu5,dc_zbmu6,dc_zbmu7,dc_zbmu8,dc_zbmu9,dc_zs_jl1,dc_zs_jl10,dc_zs_jl11,dc_zs_jl12,dc_zs_jl13,dc_zs_jl2,dc_zs_jl3,dc_zs_jl4,dc_zs_jl5,dc_zs_jl6,dc_zs_jl7,dc_zs_jl8,dc_zs_jl9", + "type":"sheet", + "url":"assets/main/main_actTips.json" + }, + { + "name":"skill_1_png", + "type":"image", + "url":"assets/main/actTips/skill_1.png" + }, + { + "name":"skill_3_png", + "type":"image", + "url":"assets/main/actTips/skill_3.png" + }, + { + "name":"skill_2_png", + "type":"image", + "url":"assets/main/actTips/skill_2.png" + }, + { + "name":"skill_4_png", + "type":"image", + "url":"assets/main/actTips/skill_4.png" + }, + { + "name":"skill_5_png", + "type":"image", + "url":"assets/main/actTips/skill_5.png" + }, + { + "name":"skill_6_png", + "type":"image", + "url":"assets/main/actTips/skill_6.png" + }, + { + "name":"SoldierSoul_json", + "subkeys":"sw_bh_1,sw_bh_2,sw_bh_3,sw_bh_4,sw_bh_Lv_4,sw_bh_bg2,sw_bh_bhjj1,sw_bh_bhjj2,sw_bh_bhsj1,sw_bh_bhsj2,sw_bh_bhsx1,sw_bh_bhsx2,sw_bh_bhxl1,sw_bh_bhxl2,sw_bh_dj10,sw_bh_dj11,sw_bh_dj12,sw_bh_icon0,sw_bh_icon1,sw_bh_icon2,sw_bh_icon3,sw_bh_icon4,sw_bh_icon5,sw_bh_mc1,sw_bh_mc2,sw_bh_mc3,sw_bh_mc4", + "type":"sheet", + "url":"assets/SoldierSoul/SoldierSoul.json" + }, + { + "name":"sw_bh_bg1_png", + "type":"image", + "url":"assets/SoldierSoul/sw_bh_bg1.png" + }, + { + "name":"SoldierSoul_fnt_fnt", + "type":"font", + "url":"assets/image/public/SoldierSoul_fnt.fnt" + }, + { + "name":"binghun_bg_png", + "type":"image", + "url":"assets/role/binghun_bg.png" + }, + { + "name":"binghun_bg1_png", + "type":"image", + "url":"assets/role/binghun_bg1.png" + }, + { + "name":"yqs_bg_png", + "type":"image", + "url":"assets/fuli/yqs_bg.png" + }, + { + "name":"lj_bg1_png", + "type":"image", + "url":"assets/cumulativeOnline/lj_bg1.png" + }, + { + "name":"cumulativeOnline_json", + "subkeys":"lj_arrow,lj_bg2,lj_bg3,lj_frame,lj_jdt1,lj_jdt2,lj_jdt3,lj_jdt4,lj_jt1,lj_jt2,lj_title,lj_tt1,lj_tt2,lj_xc", + "type":"sheet", + "url":"assets/cumulativeOnline/cumulativeOnline.json" + }, + { + "name":"bh_show_wp1_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp1.png" + }, + { + "name":"bh_show_wp2_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp2.png" + }, + { + "name":"bx_show_001_png", + "type":"image", + "url":"assets/role/roleFashion/bx_show_001.png" + }, + { + "name":"bh_show_wp4_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp4.png" + }, + { + "name":"bh_show_wp3_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp3.png" + }, + { + "name":"bg_tipstc3_png", + "type":"image", + "url":"assets/bg/bg_tipstc3.png" + }, + { + "name":"forge_bg4_png", + "type":"image", + "url":"assets/forge/forge_bg4.png" + }, + { + "name":"btnbg_png", + "type":"image", + "url":"assets/fuli/btnbg.png" + }, + { + "name":"loding_kf_jpg", + "type":"image", + "url":"assets/login/loding_kf.jpg" + }, + { + "name":"txt_kf_png", + "type":"image", + "url":"assets/login/txt_kf.png" + }, + { + "name":"CrossServer_json", + "subkeys":"icon_gjsl,icon_qgs,kf_cy_bg2,kf_cy_bg3,kf_cy_bg4,kf_cy_bg6,kf_cy_cyj,kf_cy_cysl,kf_cy_gsj,kf_cy_ydj,kf_cyboss_hp1,kf_cyboss_hp2,kf_cyjl_frame1,kf_cyjl_frame2,kf_cyjl_key,kf_fanye_bg1,kf_fanye_bg2,kf_fanye_hd1,kf_fanye_hd2,kf_fanye_phb1,kf_fanye_phb2,kf_fanye_xq1,kf_fanye_xq2,kf_jdt1,kf_jdt2,kf_kfmb,kf_kfmb_bg1,kf_kfphb,kf_kfsl,kf_kfxq,kf_kfzc,kf_kfzk,kf_mb_dynd,kf_mb_dynf,kf_mb_dynz,kf_mb_dyvd,kf_mb_dyvf,kf_mb_dyvz", + "type":"sheet", + "url":"assets/CrossServer/CrossServer.json" + }, + { + "name":"kf_cy_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg1.png" + }, + { + "name":"kf_xq_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_xq_bg.png" + }, + { + "name":"kf_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_bg1.png" + }, + { + "name":"kf_phb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_phb_bg.png" + }, + { + "name":"kf_cyjl_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cyjl_bg1.png" + }, + { + "name":"kf_cy_bg5_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg5.png" + }, + { + "name":"kf_kfmb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_kfmb_bg.png" + }, + { + "name":"tq_bg1_png", + "type":"image", + "url":"assets/vip/tq_bg1.png" + }, + { + "name":"hitnum11_fnt", + "type":"font", + "url":"assets/image/public/hitnum11.fnt" + }, + { + "name":"hitnum12_fnt", + "type":"font", + "url":"assets/image/public/hitnum12.fnt" + }, + { + "name":"chongwu_bg_png", + "type":"image", + "url":"assets/role/chongwu_bg.png" + }, + { + "name":"role_pet_json", + "subkeys":"chongwu_bg1,chongwu_bg2,chongwu_btn,chongwu_btn1,chongwu_btn2,chongwu_icon,pet001,pet001_name,pet002,pet002_name,pet003,pet003_name,pet004,pet004_name,pet005,pet005_name,pet006,pet006_name,pet007,pet007_name,pet008,pet008_name,pet009,pet009_name", + "type":"sheet", + "url":"assets/role/role_pet.json" + }, + { + "name":"SelectServer_json", + "subkeys":"login_bg3,login_bt_1,login_bt_2,login_dian_1,login_dian_2,login_dian_3,login_jinru,login_jinru1,login_qfbg,login_xzqf,login_xzqf1,login_yeqian_1,login_yeqian_2", + "type":"sheet", + "url":"assets/login/SelectServer.json" + }, + { + "name":"enter_game_png", + "type":"image", + "url":"assets/login/enter_game.png" + }, + { + "name":"login_bg1_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg1.jpg" + }, + { + "name":"LOGO4_png", + "type":"image", + "url":"assets/login/LOGO4.png" + }, + { + "name":"loading_1_jpg", + "type":"image", + "url":"assets/phonebg/loading_1.jpg" + }, + { + "name":"mp_jzjm_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm.png" + }, + { + "name":"mp_login_bg_png", + "type":"image", + "url":"assets/phonebg/mp_login_bg.png" + }, + { + "name":"mp_xfjm_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm.png" + }, + { + "name":"attrTips_json", + "subkeys":"bg_bosstips1,bg_bosstips2,bg_zbgh,fightnum_bg,fightnum_bg2,fightnum_d,fightnum_m,fightnum_z,numsx_1,numsx_10,numsx_11,numsx_12,numsx_13,numsx_14,numsx_15,numsx_16,numsx_17,numsx_18,numsx_19,numsx_2,numsx_20,numsx_21,numsx_22,numsx_23,numsx_24,numsx_25,numsx_26,numsx_27,numsx_28,numsx_29,numsx_3,numsx_30,numsx_31,numsx_32,numsx_33,numsx_34,numsx_35,numsx_36,numsx_37,numsx_38,numsx_39,numsx_4,numsx_40,numsx_41,numsx_42,numsx_43,numsx_44,numsx_5,numsx_6,numsx_7,numsx_8,numsx_9", + "type":"sheet", + "url":"assets/common/attrTips.json" + }, + { + "name":"bg_neigongzb_png", + "type":"image", + "url":"assets/role/bg_neigongzb.png" + }, + { + "name":"kf_xb_bg4_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg4.png" + }, + { + "name":"zjt4_png", + "type":"image", + "url":"assets/login/zjt4.png" + }, + { + "name":"zjt5_png", + "type":"image", + "url":"assets/login/zjt5.png" + }, + { + "name":"sz_show_006_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_0.png" + }, + { + "name":"sz_show_006_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_1.png" + }, + { + "name":"sz_show_007_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_0.png" + }, + { + "name":"sz_show_007_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_1.png" + }, + { + "name":"sz_show_008_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_0.png" + }, + { + "name":"sz_show_008_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_1.png" + }, + { + "name":"sz_show_009_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_0.png" + }, + { + "name":"sz_show_009_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_1.png" + }, + { + "name":"sz_show_010_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_0.png" + }, + { + "name":"sz_show_010_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_1.png" + }, + { + "name":"sz_show_011_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_0.png" + }, + { + "name":"sz_show_011_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_1.png" + }, + { + "name":"sz_show_012_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_0.png" + }, + { + "name":"sz_show_012_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_1.png" + }, + { + "name":"sz_show_013_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_0.png" + }, + { + "name":"sz_show_013_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_1.png" + }, + { + "name":"sz_show_014_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_0.png" + }, + { + "name":"sz_show_014_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_1.png" + }, + { + "name":"sz_show_015_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_0.png" + }, + { + "name":"sz_show_015_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_1.png" + }, + { + "name":"Client_png", + "type":"image", + "url":"assets/multiVersion/Client.png" + }, + { + "name":"IOS_png", + "type":"image", + "url":"assets/multiVersion/IOS.png" + }, + { + "name":"Page_png", + "type":"image", + "url":"assets/multiVersion/Page.png" + }, + { + "name":"multiVersion_json", + "subkeys":"button1,button2", + "type":"sheet", + "url":"assets/multiVersion/multiVersion.json" + }, + { + "name":"mp_login_btn2_png", + "type":"image", + "url":"assets/login/mp_login_btn2.png" + }, + { + "name":"bg_qqvip_png", + "type":"image", + "url":"assets/4366/bg_qqvip.png" + }, + { + "name":"IOS-honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS-honghu.png" + }, + { + "name":"Page-honghu_png", + "type":"image", + "url":"assets/multiVersion/Page-honghu.png" + }, + { + "name":"Android-c601_png", + "type":"image", + "url":"assets/multiVersion/Android-c601.png" + }, + { + "name":"Client-c601_png", + "type":"image", + "url":"assets/multiVersion/Client-c601.png" + }, + { + "name":"Android-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Android-gonghui.png" + }, + { + "name":"Client-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Client-gonghui.png" + }, + { + "name":"Page-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Page-gonghui.png" + }, + { + "name":"Android-honghu_png", + "type":"image", + "url":"assets/multiVersion/Android-honghu.png" + }, + { + "name":"logoGameCat_png", + "type":"image", + "url":"assets/login/logoGameCat.png" + }, + { + "name":"loadingGameCat_png", + "type":"image", + "url":"assets/phonebg/loadingGameCat.png" + }, + { + "name":"loginGameCat_png", + "type":"image", + "url":"assets/phonebg/loginGameCat.png" + }, + { + "name":"weapon_13730_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13730.png" + }, + { + "name":"weapon_13731_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13731.png" + }, + { + "name":"weapon_13732_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13732.png" + }, + { + "name":"body034_1_png", + "type":"image", + "url":"assets/image/model/body/body034_1.png" + }, + { + "name":"body034_0_png", + "type":"image", + "url":"assets/image/model/body/body034_0.png" + }, + { + "name":"bodyimgeff34_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_1.png" + }, + { + "name":"bodyimgeff34_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_0.png" + }, + { + "name":"Client-youximao_png", + "type":"image", + "url":"assets/multiVersion/Client-youximao.png" + }, + { + "name":"LOGO5_png", + "type":"image", + "url":"assets/login/LOGO5.png" + }, + { + "name":"Client-155iy_png", + "type":"image", + "url":"assets/multiVersion/Client-155iy.png" + }, + { + "name":"num_kftz_fnt", + "type":"font", + "url":"assets/openServer/num_kftz.fnt" + }, + { + "name":"bg_360dawanjia_png", + "type":"image", + "url":"assets/360/bg_360dawanjia.png" + }, + { + "name":"bg_7youjqfuli_png", + "type":"image", + "url":"assets/7game/bg_7youjqfuli.png" + }, + { + "name":"wx_bg_7youxi_png", + "type":"image", + "url":"assets/7game/wx_bg_7youxi.png" + }, + { + "name":"saomachongzhi2_png", + "type":"image", + "url":"assets/common/saomachongzhi2.png" + }, + { + "name":"bg_ldschaojivip_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip.png" + }, + { + "name":"bg_ldschaojivip2_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip2.png" + }, + { + "name":"bg_ldsflbuff_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflbuff.png" + }, + { + "name":"bg_ldsflhzdl_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl.png" + }, + { + "name":"bg_ldsflmrlb1_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflmrlb1.png" + }, + { + "name":"bg_ldssjlbrzlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbrzlb.png" + }, + { + "name":"bg_ldssjlbsjlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbsjlb.png" + }, + { + "name":"bg_ldssjlbwxlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbwxlb.png" + }, + { + "name":"bg_ldsyouxihezi_png", + "type":"image", + "url":"assets/ludashi/bg_ldsyouxihezi.png" + }, + { + "name":"ludashi_json", + "subkeys":"banner_ldschaojivip,banner_ldsfl,biaoti_ldsfl,txt_bangdingshouji,txt_erweima,txt_fuzhi,txt_ljcz,txt_ljkt", + "type":"sheet", + "url":"assets/ludashi/ludashi.json" + }, + { + "name":"LOGO6_png", + "type":"image", + "url":"assets/login/LOGO6.png" + }, + { + "name":"mp_jzjm2_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm2.png" + }, + { + "name":"fuli37_json", + "subkeys":"37_smcz_tanhao,37_smczzq_0,37_smczzq_1,banner_37vip,biaoti_37fulidating,btnt_txfcm", + "type":"sheet", + "url":"assets/37/fuli37.json" + }, + { + "name":"bg_360smrzlb_png", + "type":"image", + "url":"assets/360/bg_360smrzlb.png" + }, + { + "name":"fuli360_json", + "subkeys":"biaoti_smrz,btn_lijilingqu", + "type":"sheet", + "url":"assets/360/fuli360.json" + }, + { + "name":"bg_ldsflhzdl2_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl2.png" + }, + { + "name":"bg_ku25hezifuli_png", + "type":"image", + "url":"assets/ku25/bg_ku25hezifuli.png" + }, + { + "name":"bg_ku25vip_png", + "type":"image", + "url":"assets/ku25/bg_ku25vip.png" + }, + { + "name":"bg_ku25weixinlibao_png", + "type":"image", + "url":"assets/ku25/bg_ku25weixinlibao.png" + }, + { + "name":"ku25_json", + "subkeys":"banner_ku25hezidenglu1,banner_ku25hezidenglu2,banner_ku25vip", + "type":"sheet", + "url":"assets/ku25/ku25.json" + }, + { + "name":"bg_37weiduan_png", + "type":"image", + "url":"assets/37/bg_37weiduan.png" + }, + { + "name":"bg_sougouvip_png", + "type":"image", + "url":"assets/sogou/bg_sougouvip.png" + }, + { + "name":"bg_zhuanshupifu_png", + "type":"image", + "url":"assets/sogou/bg_zhuanshupifu.png" + }, + { + "name":"sogou_json", + "subkeys":"banner_sougouvip,banner_sougouyxdt,sogou_t_xslb", + "type":"sheet", + "url":"assets/sogou/sogou.json" + }, + { + "name":"bg_sogouwxlb_png", + "type":"image", + "url":"assets/sogou/bg_sogouwxlb.png" + }, + { + "name":"Client-suhai_png", + "type":"image", + "url":"assets/suhai/Client-suhai.png" + }, + { + "name":"IOS_suhai_png", + "type":"image", + "url":"assets/suhai/IOS_suhai.png" + }, + { + "name":"Page-suhai_png", + "type":"image", + "url":"assets/suhai/Page-suhai.png" + }, + { + "name":"Android-suhai_png", + "type":"image", + "url":"assets/suhai/Android-suhai.png" + }, + { + "name":"Android_c601_png", + "type":"image", + "url":"assets/multiVersion/Android_c601.png" + }, + { + "name":"Client_c601_png", + "type":"image", + "url":"assets/multiVersion/Client_c601.png" + }, + { + "name":"Page_c601_png", + "type":"image", + "url":"assets/multiVersion/Page_c601.png" + }, + { + "name":"banner_yaodou_png", + "type":"image", + "url":"assets/yaodou/banner_yaodou.png" + }, + { + "name":"bg_yaodou_png", + "type":"image", + "url":"assets/yaodou/bg_yaodou.png" + }, + { + "name":"zjt8_png", + "type":"image", + "url":"assets/login/zjt8.png" + }, + { + "name":"bg_qidianbdsj_png", + "type":"image", + "url":"assets/qidian/bg_qidianbdsj.png" + }, + { + "name":"bg_qidianvip_png", + "type":"image", + "url":"assets/qidian/bg_qidianvip.png" + }, + { + "name":"LOGO7_png", + "type":"image", + "url":"assets/login/LOGO7.png" + }, + { + "name":"tdloadimg_png", + "type":"image", + "url":"assets/phonebg/tdloadimg.png" + }, + { + "name":"tdlogin_png", + "type":"image", + "url":"assets/phonebg/tdlogin.png" + }, + { + "name":"main_gonggaoBtn_png", + "type":"image", + "url":"assets/login/main_gonggaoBtn.png" + }, + { + "name":"banner_feihuo_png", + "type":"image", + "url":"assets/feihuo/banner_feihuo.png" + }, + { + "name":"bg_feihuo_png", + "type":"image", + "url":"assets/feihuo/bg_feihuo.png" + }, + { + "name":"bg_aiqiyiQQqun_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqiyiQQqun.png" + }, + { + "name":"bg_aiqqiyivip_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqqiyivip.png" + }, + { + "name":"bg_aqiyiweixin_png", + "type":"image", + "url":"assets/iqiyi/bg_aqiyiweixin.png" + }, + { + "name":"iqiyi_json", + "subkeys":"banner_aiqiyivip,btn_ljjrgfqqq,btnt_ljjrgfqqq", + "type":"sheet", + "url":"assets/iqiyi/iqiyi.json" + }, + { + "name":"Client-tudou_png", + "type":"image", + "url":"assets/multiVersion/Client-tudou.png" + }, + { + "name":"bg_tw_qqqun_png", + "type":"image", + "url":"assets/tanwan/bg_tw_qqqun.png" + }, + { + "name":"bg_tw_sanduan_png", + "type":"image", + "url":"assets/tanwan/bg_tw_sanduan.png" + }, + { + "name":"bg_tw_weixin_png", + "type":"image", + "url":"assets/tanwan/bg_tw_weixin.png" + }, + { + "name":"bg_tw_wszl_png", + "type":"image", + "url":"assets/tanwan/bg_tw_wszl.png" + }, + { + "name":"tanwan_json", + "subkeys":"banner_tanwanvip,biaoti_tanwanfuli", + "type":"sheet", + "url":"assets/tanwan/tanwan.json" + }, + { + "name":"bg_tanwanvip_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanvip.png" + }, + { + "name":"bg_tanwanviperweima_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanviperweima.png" + }, + { + "name":"bg_tw_bdsj_png", + "type":"image", + "url":"assets/tanwan/bg_tw_bdsj.png" + }, + { + "name":"bg_zhongqiujiajie_png", + "type":"image", + "url":"assets/actypay/bg_zhongqiujiajie.png" + }, + { + "name":"apay_bg3_png", + "type":"image", + "url":"assets/bg/apay_bg3.png" + }, + { + "name":"bg_wanshanziliao_png", + "type":"image", + "url":"assets/game2/bg_wanshanziliao.png" + }, + { + "name":"ageButton_png", + "type":"image", + "url":"assets/login/ageButton.png" + }, + { + "name":"tdbxscloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloadimg.png" + }, + { + "name":"LOGO8_png", + "type":"image", + "url":"assets/login/LOGO8.png" + }, + { + "name":"bg_2144vip_png", + "type":"image", + "url":"assets/2144/bg_2144vip.png" + }, + { + "name":"fuli2144_json", + "subkeys":"banner_2144vip,biaoti_2144fuli", + "type":"sheet", + "url":"assets/2144/fuli2144.json" + }, + { + "name":"tdbxscloginimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloginimg.png" + }, + { + "name":"bg_danbichongzhi_png", + "type":"image", + "url":"assets/actypay/bg_danbichongzhi.png" + }, + { + "name":"Client-wanjiepian_png", + "type":"image", + "url":"assets/multiVersion/Client-wanjiepian.png" + }, + { + "name":"kbg_5_png", + "type":"image", + "url":"assets/bg/kbg_5.png" + }, + { + "name":"Client-tudoubxsc_png", + "type":"image", + "url":"assets/multiVersion/Client-tudoubxsc.png" + }, + { + "name":"banner_kuaiwan_png", + "type":"image", + "url":"assets/kuaiwan/banner_kuaiwan.png" + }, + { + "name":"bg_kuaiwanvip_png", + "type":"image", + "url":"assets/kuaiwan/bg_kuaiwanvip.png" + }, + { + "name":"Android-huowu_png", + "type":"image", + "url":"assets/multiVersion/Android-huowu.png" + }, + { + "name":"IOS_huowu_png", + "type":"image", + "url":"assets/multiVersion/IOS_huowu.png" + }, + { + "name":"Page-huowu_png", + "type":"image", + "url":"assets/multiVersion/Page-huowu.png" + }, + { + "name":"Client-huowu_png", + "type":"image", + "url":"assets/multiVersion/Client-huowu.png" + }, + { + "name":"weixincode_qq_png", + "type":"image", + "url":"assets/4366/weixincode_qq.png" + }, + { + "name":"bg_wxlb_shunwang_png", + "type":"image", + "url":"assets/shunwang/bg_wxlb_shunwang.png" + }, + { + "name":"shunwnag_json", + "subkeys":"banner_shunwang,btnt_lijidengji,btnt_xiazaihezi,txt_shunwangdengjilibao,txt_shunwanghezilibao", + "type":"sheet", + "url":"assets/shunwang/shunwnag.json" + }, + { + "name":"bg_platform_1_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_1.png" + }, + { + "name":"bg_platform_2_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_2.png" + }, + { + "name":"bg_platform_3_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_3.png" + }, + { + "name":"platformFuli_json", + "subkeys":"4366_jqfulibt,YY_yq_1,YY_yq_2,YY_yq_jiang,bg_platform_quyu1,biaoti_4366vip,biaoti_bangdingyouli,biaoti_chaojivip,biaoti_datingtequan,biaoti_ku25hezifuli,biaoti_shoujilibao,biaoti_wanshanziliao,biaoti_weixinlibao,biaoti_yxdt,btnt_qwyz,jiangli_bt,lingqu_bt,mun_1,mun_2,mun_3,mun_4,mun_5,mun_6,mun_7,mun_bg,mun_bg2,property_3,t_erweima,t_fuzhi,tab_bg_ldsfl,tab_ldsfl1,tab_ldsfl2,txt_djxz,txt_shenfenyanzheng,txt_xzhz", + "type":"sheet", + "url":"assets/platformFuli/platformFuli.json" + }, + { + "name":"weiduan_denglu_png", + "type":"image", + "url":"assets/platformFuli/weiduan_denglu.png" + }, + { + "name":"banner_qidianvip_png", + "type":"image", + "url":"assets/qidian/banner_qidianvip.png" + }, + { + "name":"banner_7youvip_png", + "type":"image", + "url":"assets/7game/banner_7youvip.png" + }, + { + "name":"bg_zijue_png", + "type":"image", + "url":"assets/role/bg_zijue.png" + }, + { + "name":"tdbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbyloadimg.png" + }, + { + "name":"LOGO9_png", + "type":"image", + "url":"assets/login/LOGO9.png" + }, + { + "name":"apay_banner_chfl_png", + "type":"image", + "url":"assets/actypay/apay_banner_chfl.png" + }, + { + "name":"apay_liebiao_bg_png", + "type":"image", + "url":"assets/actypay/apay_liebiao_bg.png" + }, + { + "name":"banner_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/banner_shenhuaboss.png" + }, + { + "name":"festival_dwjiajie_png", + "type":"image", + "url":"assets/actypay/festival_dwjiajie.png" + }, + { + "name":"festival_hdwuyi_png", + "type":"image", + "url":"assets/actypay/festival_hdwuyi.png" + }, + { + "name":"festival_tqxunli_png", + "type":"image", + "url":"assets/actypay/festival_tqxunli.png" + }, + { + "name":"festival_znqingdian_png", + "type":"image", + "url":"assets/actypay/festival_znqingdian.png" + }, + { + "name":"banner_sbzb_png", + "type":"image", + "url":"assets/fuli/banner_sbzb.png" + }, + { + "name":"banner_ssboss_png", + "type":"image", + "url":"assets/fuli/banner_ssboss.png" + }, + { + "name":"kf_kftz_bg4_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg4.png" + }, + { + "name":"kf_dz_bg_png", + "type":"image", + "url":"assets/openServer/kf_dz_bg.png" + }, + { + "name":"kf_jj_bg_png", + "type":"image", + "url":"assets/openServer/kf_jj_bg.png" + }, + { + "name":"kf_kftz_bg_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg.png" + }, + { + "name":"tq_p_7_3_png", + "type":"image", + "url":"assets/vip/tq_p_7_3.png" + }, + { + "name":"tq_bg2_png", + "type":"image", + "url":"assets/vip/tq_bg2.png" + }, + { + "name":"tq_bg3_png", + "type":"image", + "url":"assets/vip/tq_bg3.png" + }, + { + "name":"tq_bg6_png", + "type":"image", + "url":"assets/vip/tq_bg6.png" + }, + { + "name":"tq_bg7_png", + "type":"image", + "url":"assets/vip/tq_bg7.png" + }, + { + "name":"tq_p_1_1_png", + "type":"image", + "url":"assets/vip/tq_p_1_1.png" + }, + { + "name":"tq_p_1_2_png", + "type":"image", + "url":"assets/vip/tq_p_1_2.png" + }, + { + "name":"tq_p_1_3_png", + "type":"image", + "url":"assets/vip/tq_p_1_3.png" + }, + { + "name":"tq_p_2_1_png", + "type":"image", + "url":"assets/vip/tq_p_2_1.png" + }, + { + "name":"tq_p_2_2_png", + "type":"image", + "url":"assets/vip/tq_p_2_2.png" + }, + { + "name":"tq_p_2_3_png", + "type":"image", + "url":"assets/vip/tq_p_2_3.png" + }, + { + "name":"tq_p_3_1_png", + "type":"image", + "url":"assets/vip/tq_p_3_1.png" + }, + { + "name":"tq_p_3_2_png", + "type":"image", + "url":"assets/vip/tq_p_3_2.png" + }, + { + "name":"tq_p_3_3_png", + "type":"image", + "url":"assets/vip/tq_p_3_3.png" + }, + { + "name":"tq_p_4_1_png", + "type":"image", + "url":"assets/vip/tq_p_4_1.png" + }, + { + "name":"tq_p_4_2_png", + "type":"image", + "url":"assets/vip/tq_p_4_2.png" + }, + { + "name":"tq_p_4_3_png", + "type":"image", + "url":"assets/vip/tq_p_4_3.png" + }, + { + "name":"tq_p_5_1_png", + "type":"image", + "url":"assets/vip/tq_p_5_1.png" + }, + { + "name":"tq_p_5_2_png", + "type":"image", + "url":"assets/vip/tq_p_5_2.png" + }, + { + "name":"tq_p_5_3_png", + "type":"image", + "url":"assets/vip/tq_p_5_3.png" + }, + { + "name":"tq_p_6_1_png", + "type":"image", + "url":"assets/vip/tq_p_6_1.png" + }, + { + "name":"tq_p_6_2_png", + "type":"image", + "url":"assets/vip/tq_p_6_2.png" + }, + { + "name":"tq_p_6_3_png", + "type":"image", + "url":"assets/vip/tq_p_6_3.png" + }, + { + "name":"tq_p_7_1_png", + "type":"image", + "url":"assets/vip/tq_p_7_1.png" + }, + { + "name":"tq_p_7_2_png", + "type":"image", + "url":"assets/vip/tq_p_7_2.png" + }, + { + "name":"bg_ldsflmrlb2_png", + "type":"image", + "url":"assets/platformFuli/bg_ldsflmrlb2.png" + }, + { + "name":"bg_shunwang_fangchenmi_png", + "type":"image", + "url":"assets/platformFuli/bg_shunwang_fangchenmi.png" + }, + { + "name":"LOGO10_png", + "type":"image", + "url":"assets/login/LOGO10.png" + }, + { + "name":"xunwanFuli_json", + "subkeys":"banner_xlhytq,biaoti_xlhytq", + "type":"sheet", + "url":"assets/xunwanFuli/xunwanFuli.json" + }, + { + "name":"zjt10_png", + "type":"image", + "url":"assets/login/zjt10.png" + }, + { + "name":"LOGO11_png", + "type":"image", + "url":"assets/login/LOGO11.png" + }, + { + "name":"tdxlbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdxlbyloadimg.png" + }, + { + "name":"lOG_Honghu_png", + "type":"image", + "url":"assets/login/lOG_Honghu.png" + }, + { + "name":"buff2_json", + "subkeys":"mjdb_buff01,mjdb_buff02,mjdb_buff03,mjdb_buff04,mjdb_buff05,mjdb_buff06,mjdb_buff07,mjdb_buff08", + "type":"sheet", + "url":"assets/common/buff2.json" + }, + { + "name":"IOS_honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS_honghu.png" + }, + { + "name":"zjt11_png", + "type":"image", + "url":"assets/login/zjt11.png" + }, + { + "name":"mp_xfjm_nztl_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm_nztl.png" + }, + { + "name":"LOGO12_png", + "type":"image", + "url":"assets/login/LOGO12.png" + }, + { + "name":"saomachongzhi3_png", + "type":"image", + "url":"assets/common/saomachongzhi3.png" + }, + { + "name":"LOGO13_png", + "type":"image", + "url":"assets/login/LOGO13.png" + }, + { + "name":"banner_fudai_png", + "type":"image", + "url":"assets/actypay/banner_fudai.png" + }, + { + "name":"bg_fudai_png", + "type":"image", + "url":"assets/actypay/bg_fudai.png" + }, + { + "name":"bg_xfphb_png", + "type":"image", + "url":"assets/consumeRank/bg_xfphb.png" + }, + { + "name":"consumeRank_json", + "subkeys":"btn_xfphb,xfph_pm1,xfph_pm2,xfph_pm3", + "type":"sheet", + "url":"assets/consumeRank/consumeRank.json" + }, + { + "name":"worship_bg_jpg", + "type":"image", + "url":"assets/common/worship_bg.jpg" + } + ] +} \ No newline at end of file diff --git a/resource_Publish/default.thm.json b/resource_Publish/default.thm.json new file mode 100644 index 0000000..8ec0fb0 --- /dev/null +++ b/resource_Publish/default.thm.json @@ -0,0 +1,641 @@ +{ + "skins": { + "eui.Button": "resource/eui_skins/ButtonSkin.exml", + "eui.CheckBox": "resource/eui_skins/CheckBoxSkin.exml", + "eui.HScrollBar": "resource/eui_skins/HScrollBarSkin.exml", + "eui.HSlider": "resource/eui_skins/HSliderSkin.exml", + "eui.Panel": "resource/eui_skins/PanelSkin.exml", + "eui.TextInput": "resource/eui_skins/TextInputSkin.exml", + "eui.ProgressBar": "resource/eui_skins/ProgressBarSkin.exml", + "eui.RadioButton": "resource/eui_skins/RadioButtonSkin.exml", + "eui.Scroller": "resource/eui_skins/ScrollerSkin.exml", + "eui.ToggleSwitch": "resource/eui_skins/ToggleSwitchSkin.exml", + "eui.VScrollBar": "resource/eui_skins/VScrollBarSkin.exml", + "eui.VSlider": "resource/eui_skins/VSliderSkin.exml", + "eui.ItemRenderer": "resource/eui_skins/ItemRendererSkin.exml", + "app.RuleTipsButton": "resource/eui_skins/web/common/RuleButton.exml", + "app.RedDotControl": "resource/eui_skins/web/common/RedDotSkin.exml" + }, + "autoGenerateExmlsList": true, + "exmls": [ + "resource/eui_skins/ButtonSkin.exml", + "resource/eui_skins/HScrollBarSkin.exml", + "resource/eui_skins/ProgressBarSkin.exml", + "resource/eui_skins/ProgressBarSkin1.exml", + "resource/eui_skins/RadioButtonSkin.exml", + "resource/eui_skins/ScrollerSkin.exml", + "resource/eui_skins/VScrollBarSkin1.exml", + "resource/eui_skins/ScrollerSkin1.exml", + "resource/eui_skins/TextInputSkin.exml", + "resource/eui_skins/VScrollBarSkin.exml", + "resource/eui_skins/web/achievement/AchieveDetailItemViewSkin.exml", + "resource/eui_skins/web/common/ViewBgWin6Skin.exml", + "resource/eui_skins/web/achievement/AchievementDetailedViewSkin.exml", + "resource/eui_skins/web/common/Btn4Skin.exml", + "resource/eui_skins/web/achievement/AchievementItemViewSkin.exml", + "resource/eui_skins/web/common/ButtonCloseSkin.exml", + "resource/eui_skins/web/common/UIViewFrameSkin.exml", + "resource/eui_skins/web/common/Btn9Skin.exml", + "resource/eui_skins/web/common/ItemBaseSkin.exml", + "resource/eui_skins/web/achievement/AchievementViewSkin.exml", + "resource/eui_skins/web/achievement/MedalAttrItemCurSkin.exml", + "resource/eui_skins/web/achievement/MedalAttrItemNextSkin.exml", + "resource/eui_skins/web/achievement/MedalItemViewSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesItem1Skin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesItem2Skin.exml", + "resource/eui_skins/web/common/ViewBgWin7Skin.exml", + "resource/eui_skins/web/activityCopies/ActivityCopiesWinSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityDefendTaskItemSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityDefendTaskSKin.exml", + "resource/eui_skins/web/activityCopies/ActivityMaterialItemSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityMaterialSKin.exml", + "resource/eui_skins/web/activityCopies/ActivityTabSkin.exml", + "resource/eui_skins/web/activityCopies/ActivityTipsWinSKin.exml", + "resource/eui_skins/web/activityFirstCharge/ActivityFirstChargeViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityAdvertViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityExchangeItemViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityExchangeViewSkin.exml", + "resource/eui_skins/web/activitypay/ActivityPayButtonSkin.exml", + "resource/eui_skins/web/activitypay/ActivityPaySkin.exml", + "resource/eui_skins/web/activitypay/ActivityPreferentialSkin.exml", + "resource/eui_skins/web/activitypay/PayItemRenderSkin.exml", + "resource/eui_skins/web/activitySecondCharge/ActivitySecondChargeViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarButtonSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftAdvGoodsViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftAdvViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarGiftGoodsViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarItemViewSkin.exml", + "resource/eui_skins/web/activityWar/ActivityWarTaskItemViewSkin.exml", + "resource/eui_skins/web/common/bar3Skin.exml", + "resource/eui_skins/web/activityWar/ActivityWarViewSkin.exml", + "resource/eui_skins/web/activityWar/WarShopItemViewSkin.exml", + "resource/eui_skins/web/activityWelfare/ActivityWlelfareCardItemView.exml", + "resource/eui_skins/web/activityWelfare/ActivityWlelfareViewSkin.exml", + "resource/eui_skins/web/activityWelfare/SignItemViewSkin.exml", + "resource/eui_skins/web/common/Btn26Skin.exml", + "resource/eui_skins/web/allPlatformFuli/2144Fuli/giftWin/Fuli2144SuperVipGiftSkin.exml", + "resource/eui_skins/web/Btn0Skin.exml", + "resource/eui_skins/web/allPlatformFuli/360Fuli/Fuli360AttestationWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/360Fuli/FuLi360WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/Fuli37WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37BindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37IndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37LevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/37Fuli/giftWin/Fuli37MicroGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366ItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366MicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/FuLi4366WinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366CodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/4366FuLi/VIP4366Skin.exml", + "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/7gameFuli/Fuli7GameWXGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/feihuoFuli/giftView/FuliFeihuoSuperVipGiftSkin.exml", + "resource/eui_skins/web/common/Btn31Skin.exml", + "resource/eui_skins/web/allPlatformFuli/game2Fuli/FuliGame2BindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/FuliIqiyiQQGroupViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/iqiyiFuli/giftView/FuliIqiyiWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25BoxRewardsWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/Ku25/Ku25SuperVipSkin.exml", + "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/kuaiwanFuli/giftWin/FuliKuaiwanWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiPhoneGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/FuliLuDaShiVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxBuffSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiBoxGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiDayGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiIndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiSingleGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/giftWin/FuliLuDaShiWeiXinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiGiftTabSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/ludashi/item/FuliLuDaShiLevelGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliIndulgeGiftSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/giftView/PlatformFuliLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliBannerSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliDescItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/item/PlatformFuliLevelGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/platformFuli/view/PlatformFuliViewSkin3.exml", + "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/qidianFuli/giftView/FuliQidianSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin2.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueGiftItemSkin3.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQBlueOverviewItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/item/QQLobbyPrivilegesTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQBlueDiamondViewSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQLobbyPrivilegesWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/QQFuli/QQVipFuLiSkin.exml", + "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangBoxGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/shunwangFuli/giftView/FuliShunwangWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouMicroWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouVipWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWeixinWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/FuliSogouWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouBindingGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/sogouFuli/giftWin/FuliSougouNoviceGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/FuliTanwanVipCodeSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanQQGroupGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSanduanGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/tanwanFuli/giftView/FuliTanwanWeixinGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/FuliXunwanGiftWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanLevelGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/giftWin/FuliXunwanSingleGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/xunwanFuli/item/FuliXunwanGiftTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/yaodouFuli/giftView/FuliYaodaoSuperVipGiftSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanDailyItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYChaoWan/YYChaoWanWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesTabSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYLobbyPrivileges/YYLobbyPrivilegesWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberGiftItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberNewServerItemSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYMember/YYMemberWinSkin.exml", + "resource/eui_skins/web/allPlatformFuli/YY/YYWxGift/YYWxGiftWinSkin.exml", + "resource/eui_skins/web/common/BtnResurrectionSkin.exml", + "resource/eui_skins/web/autoRevive/AutoReviveWinSkin.exml", + "resource/eui_skins/web/common/CloseButtonSkin.exml", + "resource/eui_skins/web/bag/BagBatchUseSkin.exml", + "resource/eui_skins/web/common/ViewBgWin5Skin.exml", + "resource/eui_skins/web/bag/BagGoldChangeSkin.exml", + "resource/eui_skins/web/bag/BagItemSplitSkin.exml", + "resource/eui_skins/web/common/ViewBgWin4Skin.exml", + "resource/eui_skins/web/bag/BagRecycleSkin.exml", + "resource/eui_skins/web/bag/BagUpSkin.exml", + "resource/eui_skins/web/common/ViewBgWin2Skin.exml", + "resource/eui_skins/web/common/moneyPanelSkin.exml", + "resource/eui_skins/web/bag/BagViewSkin.exml", + "resource/eui_skins/web/bloodBarSkin.exml", + "resource/eui_skins/web/bloodBarSkin2.exml", + "resource/eui_skins/web/bloodBarSkin3.exml", + "resource/eui_skins/web/bloodBarSkin4.exml", + "resource/eui_skins/web/bloodBarSkin5.exml", + "resource/eui_skins/web/bloodBarSkin6.exml", + "resource/eui_skins/web/bloodyelskin.exml", + "resource/eui_skins/web/common/ItemSlotSkin.exml", + "resource/eui_skins/web/boss/BossDropItemSkin.exml", + "resource/eui_skins/web/boss/BossItemSkin.exml", + "resource/eui_skins/web/common/ViewBgWin1Skin.exml", + "resource/eui_skins/web/boss/MagicBossSkin.exml", + "resource/eui_skins/web/boss/PersonalBossSkin.exml", + "resource/eui_skins/web/boss/BossSkin.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin2.exml", + "resource/eui_skins/web/boss/MagicBossInfoShowSkin3.exml", + "resource/eui_skins/web/boss/MagicBossItemSkin.exml", + "resource/eui_skins/web/Btn11Skin.exml", + "resource/eui_skins/web/Btn23Skin.exml", + "resource/eui_skins/web/common/CheckBox2.exml", + "resource/eui_skins/web/setup/SetUpCheckBox.exml", + "resource/eui_skins/web/caution/CautionViewSkin.exml", + "resource/eui_skins/web/changePowerful/ChangePowerfulItemSkin.exml", + "resource/eui_skins/web/changePowerful/ChangePowerfulSkin.exml", + "resource/eui_skins/web/char/CharSkin.exml", + "resource/eui_skins/web/chat/chatListItemSkin.exml", + "resource/eui_skins/web/chat/chatListWinItemSkin.exml", + "resource/eui_skins/web/chat/ChatMenuSkin.exml", + "resource/eui_skins/web/chat/ChatPrivatePlayerListItemskin.exml", + "resource/eui_skins/web/chat/ChatRuleButton.exml", + "resource/eui_skins/web/chat/ChatSelectArrItem.exml", + "resource/eui_skins/web/chat/ChatShowFriendOrNearListSkin.exml", + "resource/eui_skins/web/common/Btn2Skin.exml", + "resource/eui_skins/web/common/Btn10Skin.exml", + "resource/eui_skins/web/common/SelectInputSkin.exml", + "resource/eui_skins/web/chat/ChatSkin.exml", + "resource/eui_skins/web/chat/ChatWinMenuSkin.exml", + "resource/eui_skins/web/common/CheckBox3.exml", + "resource/eui_skins/web/common/Btn22Skin.exml", + "resource/eui_skins/web/chat/ChatWinSkin.exml", + "resource/eui_skins/web/common/ActivityCommonViewSkin.exml", + "resource/eui_skins/web/common/ActWleFareTabSkin.exml", + "resource/eui_skins/web/common/bar1Skin.exml", + "resource/eui_skins/web/common/bar2Skin.exml", + "resource/eui_skins/web/common/bar4Skin.exml", + "resource/eui_skins/web/common/btn11Skin.exml", + "resource/eui_skins/web/common/Btn12Skin.exml", + "resource/eui_skins/web/common/Btn13Skin.exml", + "resource/eui_skins/web/common/Btn14Skin.exml", + "resource/eui_skins/web/common/Btn15Skin.exml", + "resource/eui_skins/web/common/Btn16Skin.exml", + "resource/eui_skins/web/common/Btn17Skin.exml", + "resource/eui_skins/web/common/Btn18Skin.exml", + "resource/eui_skins/web/common/Btn19Skin.exml", + "resource/eui_skins/web/common/Btn1Skin.exml", + "resource/eui_skins/web/common/Btn20Skin.exml", + "resource/eui_skins/web/common/Btn21Skin.exml", + "resource/eui_skins/web/common/Btn24Skin.exml", + "resource/eui_skins/web/common/Btn25Skin.exml", + "resource/eui_skins/web/common/Btn30Skin.exml", + "resource/eui_skins/web/common/Btn32Skin.exml", + "resource/eui_skins/web/common/Btn3Skin.exml", + "resource/eui_skins/web/common/Btn5Skin.exml", + "resource/eui_skins/web/common/Btn6Skin.exml", + "resource/eui_skins/web/common/Btn7Skin.exml", + "resource/eui_skins/web/common/Btn8Skin.exml", + "resource/eui_skins/web/common/BtnTabSkin.exml", + "resource/eui_skins/web/common/BtnTabSkin1.exml", + "resource/eui_skins/web/common/BtnTabSkin2.exml", + "resource/eui_skins/web/common/ButtonAttrSkin.exml", + "resource/eui_skins/web/common/ButtonReturnSkin.exml", + "resource/eui_skins/web/common/ButtonUISkin.exml", + "resource/eui_skins/web/common/ChatBtnBigMenuSkin.exml", + "resource/eui_skins/web/common/ChatBtnMenuSkin.exml", + "resource/eui_skins/web/common/chatBtnSkin.exml", + "resource/eui_skins/web/common/CircleTipsWinSkin.exml", + "resource/eui_skins/web/common/CommonBtnSkin.exml", + "resource/eui_skins/web/common/CommonDialogSkin.exml", + "resource/eui_skins/web/common/CommonGiftSelectWinSKin.exml", + "resource/eui_skins/web/common/CommonGiftShowSKin.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin1.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin2.exml", + "resource/eui_skins/web/common/CommonTarBtnItemSkin3.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin2.exml", + "resource/eui_skins/web/common/CommonTarBtnWinSkin3.exml", + "resource/eui_skins/web/common/CommonViewSkin.exml", + "resource/eui_skins/web/common/getProps/GaimItemListItemSKin.exml", + "resource/eui_skins/web/common/getProps/GaimItemWinSKin.exml", + "resource/eui_skins/web/common/getProps/GetPropsItemSkin.exml", + "resource/eui_skins/web/common/UIViewFrameSkin2.exml", + "resource/eui_skins/web/common/ItemSlotSkin3.exml", + "resource/eui_skins/web/common/getProps/GetPropsViewSkin.exml", + "resource/eui_skins/web/common/HSlider1Skin.exml", + "resource/eui_skins/web/common/ImageBaseSkin.exml", + "resource/eui_skins/web/common/ItemBaseSkin2.exml", + "resource/eui_skins/web/common/ItemSelectBaseSkin.exml", + "resource/eui_skins/web/common/ItemSlotSkin2.exml", + "resource/eui_skins/web/common/MainBtn2Skin.exml", + "resource/eui_skins/web/common/MainBtn3Skin.exml", + "resource/eui_skins/web/common/MainBtn4Skin.exml", + "resource/eui_skins/web/common/MainBtn5Skin.exml", + "resource/eui_skins/web/common/MainBtn6Skin.exml", + "resource/eui_skins/web/common/MainBtn7Skin.exml", + "resource/eui_skins/web/common/MainBtn8Skin.exml", + "resource/eui_skins/web/common/MainBtnSkin.exml", + "resource/eui_skins/web/common/monsterTalk/MonsterTalkSkin.exml", + "resource/eui_skins/web/common/RedDotSkin.exml", + "resource/eui_skins/web/common/RuleButton.exml", + "resource/eui_skins/web/common/ShortcutKeyBtnSkin.exml", + "resource/eui_skins/web/common/UIViewBgWinSkin.exml", + "resource/eui_skins/web/common/VersionUpdateSkin.exml", + "resource/eui_skins/web/common/ViewBgWin3Skin.exml", + "resource/eui_skins/web/common/ViewBgWinSkin.exml", + "resource/eui_skins/web/common/YYPlatformFuLiWinSkin.exml", + "resource/eui_skins/web/CreateRole/ChangeNameViewSkin.exml", + "resource/eui_skins/web/CreateRole/CreateRole2Skin.exml", + "resource/eui_skins/web/CreateRole/SwitchPlayerItemSkin.exml", + "resource/eui_skins/web/CreateRole/SwitchPlayerSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerActViewSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerDetailsItemSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerDetailsSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerTabSkin.exml", + "resource/eui_skins/web/CrossServer/CrossServerWinSkin.exml", + "resource/eui_skins/web/CrossServer/rank/CrossServerRankListItemSkin.exml", + "resource/eui_skins/web/CrossServer/rank/CrossServerRankViewSkin.exml", + "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipItemSkin.exml", + "resource/eui_skins/web/CrossServer/worship/CrossServerWorshipWinSkin.exml", + "resource/eui_skins/web/crystalIdentify/CrystalIdentifyItemSkin.exml", + "resource/eui_skins/web/crystalIdentify/CrystalIdentifyWinSkin.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineItemSkin2.exml", + "resource/eui_skins/web/cumulativeOnline/CumulativeOnlineViewSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossListItemSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossRoleInfoSkin.exml", + "resource/eui_skins/web/dimensionBoss/DimensionBossSkin.exml", + "resource/eui_skins/web/donationRank/DonationRankItemSkin.exml", + "resource/eui_skins/web/donationRank/DonationRankWinSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesBtnItemSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesListItemSkin.exml", + "resource/eui_skins/web/flyshoes/FlyShoesSkin.exml", + "resource/eui_skins/web/forge/ForgeRecordItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRecordSkin.exml", + "resource/eui_skins/web/forge/ForgeRecycleItemViewSkin.exml", + "resource/eui_skins/web/forge/ForgeRecycleViewSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningButtonSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningCurrAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningMoneyItemSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningNeedGoodsItem.exml", + "resource/eui_skins/web/forge/ForgeRefiningShowAttrSkin.exml", + "resource/eui_skins/web/forge/ForgeRefiningSkin.exml", + "resource/eui_skins/web/forge/ForgeRewardItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarCurrAttrItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarNextArrtItemSkin.exml", + "resource/eui_skins/web/forge/ForgeUpStarSkin.exml", + "resource/eui_skins/web/forge/ForgeViewSkin.exml", + "resource/eui_skins/web/forge/ForgeWinSkin.exml", + "resource/eui_skins/web/forge/SynthesisItem2CostItemSkin.exml", + "resource/eui_skins/web/forge/SynthesisItem2Skin.exml", + "resource/eui_skins/web/forge/SynthesisItemSkin.exml", + "resource/eui_skins/web/forge/SynthesisTab2Skin.exml", + "resource/eui_skins/web/forge/SynthesisTabSkin.exml", + "resource/eui_skins/web/forge/SynthesisViewSkin.exml", + "resource/eui_skins/web/friend/FriendAddViewSkin.exml", + "resource/eui_skins/web/friend/FriendBlackListItemSkin.exml", + "resource/eui_skins/web/friend/FriendColorBtnSkin.exml", + "resource/eui_skins/web/friend/FriendColorMenuViewSkin.exml", + "resource/eui_skins/web/friend/FriendCommonItemSkin.exml", + "resource/eui_skins/web/friend/FriendFunMenuBtnSkin.exml", + "resource/eui_skins/web/friend/FriendFunMenuViewSkin.exml", + "resource/eui_skins/web/friend/FriendHederSkin.exml", + "resource/eui_skins/web/friend/FriendQQItemSkin.exml", + "resource/eui_skins/web/friend/FriendViewPageSkin.exml", + "resource/eui_skins/web/friend/FriendViewSkin.exml", + "resource/eui_skins/web/fuben/debugViewSkin.exml", + "resource/eui_skins/web/fuben/FubenRankItemSkin.exml", + "resource/eui_skins/web/fuben/FubenRankPagSkin.exml", + "resource/eui_skins/web/fuben/FubenRankSkin.exml", + "resource/eui_skins/web/fuben/FubenScoreItemSkin.exml", + "resource/eui_skins/web/fuben/FubenScoreSkin.exml", + "resource/eui_skins/web/fuben/FubenSkin.exml", + "resource/eui_skins/web/fuben/LabelSkinSkin.exml", + "resource/eui_skins/web/GameFightSceneSkin.exml", + "resource/eui_skins/web/ghost/GhostAutoViewSkin.exml", + "resource/eui_skins/web/ghost/GhostSkin.exml", + "resource/eui_skins/web/ghost/ResonateItem2Skin.exml", + "resource/eui_skins/web/ghost/ResonateItemSkin.exml", + "resource/eui_skins/web/ghost/RoleGhostSkin.exml", + "resource/eui_skins/web/gonggao/GongGaoWinSkin.exml", + "resource/eui_skins/web/gonggao/ShengQuNoticeWinSkin.exml", + "resource/eui_skins/web/growway/GrowWayRendererSkin.exml", + "resource/eui_skins/web/growway/GrowWaySkin.exml", + "resource/eui_skins/web/guild/CreatGuildViewSkin.exml", + "resource/eui_skins/web/guild/GuildApplyItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildDevoteViewSkin.exml", + "resource/eui_skins/web/guild/GuildInfoViewSkin.exml", + "resource/eui_skins/web/guild/GuildListItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildListViewSkin.exml", + "resource/eui_skins/web/guild/GuildLogItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildMemberItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildNoGuildListItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildQQApplyItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildQQMemberItemViewSkin.exml", + "resource/eui_skins/web/guild/GuildSetViewSkin.exml", + "resource/eui_skins/web/guild/GuildTarBtnItemSkin.exml", + "resource/eui_skins/web/inspire/InspireItemSkin.exml", + "resource/eui_skins/web/inspire/InspireSkin.exml", + "resource/eui_skins/web/kuafu/KuanFuView.exml", + "resource/eui_skins/web/mail/MailSkin.exml", + "resource/eui_skins/web/mail/MailtemSkin.exml", + "resource/eui_skins/web/main/AntiAddictionView.exml", + "resource/eui_skins/web/main/AttackCharItemSkin.exml", + "resource/eui_skins/web/main/BulletFrameItemSkin.exml", + "resource/eui_skins/web/main/BulletFrameSkin.exml", + "resource/eui_skins/web/main/BulletFrameSkin2.exml", + "resource/eui_skins/web/main/FastItemSkin.exml", + "resource/eui_skins/web/main/GongGaoView.exml", + "resource/eui_skins/web/main/IDCard.exml", + "resource/eui_skins/web/main/MainBanSkin.exml", + "resource/eui_skins/web/main/skillItemSkin.exml", + "resource/eui_skins/web/main/MainBottomSkin.exml", + "resource/eui_skins/web/main/MainLockSkin.exml", + "resource/eui_skins/web/main/MainRightSkin.exml", + "resource/eui_skins/web/main/MainSelectArrItem.exml", + "resource/eui_skins/web/main/MainTopLeftSkin.exml", + "resource/eui_skins/web/main/MianBottomNotice.exml", + "resource/eui_skins/web/main/Welcome2Skin.exml", + "resource/eui_skins/web/main/WelcomeSkin.exml?v=1", + "resource/eui_skins/web/mainServerInfo/MainServerInfoWinSkin.exml", + "resource/eui_skins/web/map/CallSkin.exml", + "resource/eui_skins/web/map/MapMaxSkin.exml", + "resource/eui_skins/web/map/MapMiniSkin.exml", + "resource/eui_skins/web/microterms/MicrotermsViewSkin.exml", + "resource/eui_skins/web/multiVersion/MultiVersionViewSkin.exml", + "resource/eui_skins/web/npc/NpcLabelRendererSkin.exml", + "resource/eui_skins/web/npc/NpcRendererSkin.exml", + "resource/eui_skins/web/npc/NpcSkin.exml", + "resource/eui_skins/web/npc/ShabakRewardsWinSkin.exml", + "resource/eui_skins/web/npc/WashRedNameViewSkin.exml", + "resource/eui_skins/web/onlineRewards/OnlineRewardsTipsViewSkin.exml", + "resource/eui_skins/web/onlineRewards/OnlineRewardsViewSkin.exml", + "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftItemSkin.exml", + "resource/eui_skins/web/openServerGift/Gift/OpenServerGiftViewSkin.exml", + "resource/eui_skins/web/openServerGift/Investment/InvestmentItemSkin.exml", + "resource/eui_skins/web/openServerGift/Investment/InvestmentViewSkin.exml", + "resource/eui_skins/web/openServerGift/OpenServerGiftWinSkin.exml", + "resource/eui_skins/web/openServerGift/sevenDay/SevenDayItemViewSkin.exml", + "resource/eui_skins/web/openServerGift/sevenDay/SevenDayLoginViewSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsItemSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsViewSkin.exml", + "resource/eui_skins/web/openServerSports/OpenServerSportsWinSkin.exml", + "resource/eui_skins/web/openServerTreasure/OpenServerTreasureViewSkin.exml", + "resource/eui_skins/web/openServerTreasure/OpenServerTreasureWinSkin.exml", + "resource/eui_skins/web/otherplayer/OtherPlayerSkin.exml", + "resource/eui_skins/web/phone/MainCityWinSkin.exml", + "resource/eui_skins/web/phone/PhoneAtkModelViewSkin.exml", + "resource/eui_skins/web/phone/PhoneBtnCreateSkin.exml", + "resource/eui_skins/web/phone/PhoneChatItemSkin.exml", + "resource/eui_skins/web/phone/PhoneCreateRoleSkin.exml", + "resource/eui_skins/web/phone/PhoneLoadingSkin.exml", + "resource/eui_skins/web/phone/PhoneLoginViewSkin.exml", + "resource/eui_skins/web/phone/PhoneMainButtonSkin.exml", + "resource/eui_skins/web/phone/PhoneMainSkillSkin.exml", + "resource/eui_skins/web/rank/RankRightMenuSkin.exml", + "resource/eui_skins/web/phone/PhoneMainSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskLinkItemSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskLinkSkin.exml", + "resource/eui_skins/web/phone/PhoneTaskSkin.exml", + "resource/eui_skins/web/phone/PhoneTestSkin.exml", + "resource/eui_skins/web/phone/Rocker2Skin.exml", + "resource/eui_skins/web/phone/RockerSkin.exml", + "resource/eui_skins/web/privateDeals/IsAgreeTransPanel.exml", + "resource/eui_skins/web/privateDeals/PrivateDealsWinSkin.exml", + "resource/eui_skins/web/rank/RankBtnItemSkin.exml", + "resource/eui_skins/web/rank/RankListItemSkin.exml", + "resource/eui_skins/web/rank/RankQQListItemSkin.exml", + "resource/eui_skins/web/rank/RankTipsSkin.exml", + "resource/eui_skins/web/rank/RankViewSkin.exml", + "resource/eui_skins/web/recharge/Recharge4366Skin.exml", + "resource/eui_skins/web/recharge/RechargeF1Skin.exml", + "resource/eui_skins/web/recharge/RechargeGameCatItemSkin.exml", + "resource/eui_skins/web/recharge/RechargeGameCatSkin.exml", + "resource/eui_skins/web/recharge/RechargeQQSkin.exml", + "resource/eui_skins/web/recharge/RechargeQRCodeSkin.exml", + "resource/eui_skins/web/recharge/RechargeRequestSkin.exml", + "resource/eui_skins/web/recharge/RechargeSkin.exml", + "resource/eui_skins/web/recycle/RecycleWinSkin.exml", + "resource/eui_skins/web/result/FightResultWinSkin1.exml", + "resource/eui_skins/web/result/FightResultWinSkin12.exml", + "resource/eui_skins/web/result/FightResultWinSkin2.exml", + "resource/eui_skins/web/result/FightResultWinSkin26.exml", + "resource/eui_skins/web/result/FightResultWinSkin28.exml", + "resource/eui_skins/web/result/FightResultWinSkin3.exml", + "resource/eui_skins/web/result/FightResultWinSkin4.exml", + "resource/eui_skins/web/result/FightResultWinSkin8.exml", + "resource/eui_skins/web/result/item/FightResultItemSkin1.exml", + "resource/eui_skins/web/role/circle/CircleSkin.exml", + "resource/eui_skins/web/role/circle/RoleCircleAttrItemSkin.exml", + "resource/eui_skins/web/role/equip/EquipAttrBtnSkin.exml", + "resource/eui_skins/web/role/equip/AttrSkin.exml", + "resource/eui_skins/web/role/equip/ButtonRoleSkin.exml", + "resource/eui_skins/web/role/ngEquip/NGEquipViewSkin.exml", + "resource/eui_skins/web/role/equip/EquipSkin.exml", + "resource/eui_skins/web/role/equip/RoleAttrItemSkin.exml", + "resource/eui_skins/web/role/equip/RolePriBtnSkin.exml", + "resource/eui_skins/web/role/equip/RoleStateItemSkin.exml", + "resource/eui_skins/web/role/equip/StateSkin.exml", + "resource/eui_skins/web/role/exchange/RoleExchangSkin.exml", + "resource/eui_skins/web/role/exchange/RoleExchangtemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionAttrItemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionAttrSkin.exml", + "resource/eui_skins/web/role/fashion/FashionListItemSkin.exml", + "resource/eui_skins/web/role/fashion/FashionNewListItem.exml", + "resource/eui_skins/web/role/fashion/FashionSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImageLevelUpWinSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesAttrItemCurSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesAttrItemNextSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesCostItemSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesInfoLevelViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesStarViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesItemViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesLevelViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesShowInfoViewSkin.exml", + "resource/eui_skins/web/role/fourImages/FourImagesViewSkin.exml", + "resource/eui_skins/web/role/godequip/GodEquipSkin.exml", + "resource/eui_skins/web/role/guanzhi/GuanZhiSkin.exml", + "resource/eui_skins/web/role/halidom/WeaponSoulItemViewSkin.exml", + "resource/eui_skins/web/role/halidom/RoleWeaponSoulViewSkin.exml", + "resource/eui_skins/web/role/keyset/ButtonRoleSkillKeySkin.exml", + "resource/eui_skins/web/role/keyset/ShortcutKeySetViewSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansItemSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansLevelItemSkin.exml", + "resource/eui_skins/web/role/meridians/MerdiansLevelSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansAttrItemCurSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansAttrItemNextSkin.exml", + "resource/eui_skins/web/role/meridians/MeridiansViewSkin.exml", + "resource/eui_skins/web/role/newRing/NewRingSkin.exml", + "resource/eui_skins/web/role/newRing/NewRingTabItenSkin.exml", + "resource/eui_skins/web/role/ngEquip/NGEquipTabSkin.exml", + "resource/eui_skins/web/role/pet/RolePetItemSkin.exml", + "resource/eui_skins/web/role/pet/RolePetSkin.exml", + "resource/eui_skins/web/role/ring/RingAttrItemSkin.exml", + "resource/eui_skins/web/role/ring/RingIconItemSkin.exml", + "resource/eui_skins/web/role/ring/RingIconItemSkin2.exml", + "resource/eui_skins/web/role/ring/RingSkin.exml", + "resource/eui_skins/web/role/RoleViewSkin.exml", + "resource/eui_skins/web/role/skill/RoleSkilltemSkin.exml", + "resource/eui_skins/web/role/skill/SkillDescSkin.exml", + "resource/eui_skins/web/role/skill/SkillSkin.exml", + "resource/eui_skins/web/role/strengthen/NewStrengthenSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenAttrItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenIconItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenItemSkin.exml", + "resource/eui_skins/web/role/strengthen/StrengthenSkin.exml", + "resource/eui_skins/web/role/title/TitleAttribItemViewSkin.exml", + "resource/eui_skins/web/role/title/TitleItemViewSkin.exml", + "resource/eui_skins/web/role/title/TitleItemViewSkin2.exml", + "resource/eui_skins/web/role/title/TitleViewSkin.exml", + "resource/eui_skins/web/role/title/TitleViewSkin2.exml", + "resource/eui_skins/web/role/treasure/BlessAttrItemSkin.exml", + "resource/eui_skins/web/role/treasure/BlessProgressBarSkin.exml", + "resource/eui_skins/web/role/treasure/BlessSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaItemViewSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaLevelUpWinSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaShowInfoViewSkin.exml", + "resource/eui_skins/web/role/wordFormula/WordFormulaViewSkin.exml", + "resource/eui_skins/web/rule/RuleViewSkin.exml", + "resource/eui_skins/web/scStarcraft/ShaChengStarcraftWinSkin.exml", + "resource/eui_skins/web/secretLandTreasure/SecretLandTreasureViewSkin.exml", + "resource/eui_skins/web/setup/SetAIDropDownItemSkin.exml", + "resource/eui_skins/web/setup/SetAIDropDownSkin.exml", + "resource/eui_skins/web/setup/SetDropDownItemSkin.exml", + "resource/eui_skins/web/setup/SetDropDownSkin.exml", + "resource/eui_skins/web/setup/SetUpAISkin.exml", + "resource/eui_skins/web/setup/SetUpBasicsSkin.exml", + "resource/eui_skins/web/setup/SetUpDrugsSkin.exml", + "resource/eui_skins/web/setup/SetUpItemSkin.exml", + "resource/eui_skins/web/setup/SetUpListItemSkin.exml", + "resource/eui_skins/web/setup/SetUpProtectSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleItemCheckBoxSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleItemSkin.exml", + "resource/eui_skins/web/setup/SetUpRecycleSkin.exml", + "resource/eui_skins/web/setup/SetUpSkin.exml", + "resource/eui_skins/web/setup/SetUpSystemSkin.exml?v=1.1", + "resource/eui_skins/web/shop/ShopBatchBuySkin.exml", + "resource/eui_skins/web/shop/ShopHotViewSkin.exml", + "resource/eui_skins/web/shop/ShopItemViewSkin.exml", + "resource/eui_skins/web/shop/ShopQQViewSkin.exml", + "resource/eui_skins/web/shop/ShopTarBtnItemSkin.exml", + "resource/eui_skins/web/shop/ShopViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulLevelViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulOrderViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulTabSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulUpRefineViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulUpStarViewSkin.exml", + "resource/eui_skins/web/soldierSoul/SoldierSoulWinSkin.exml", + "resource/eui_skins/web/task/MainTaskButtonSkin.exml", + "resource/eui_skins/web/task/MainTaskItemSkin.exml", + "resource/eui_skins/web/task/MainTaskWinSkin.exml", + "resource/eui_skins/web/task/TaskInfoWinSkin.exml", + "resource/eui_skins/web/task/TaskInfoWinSkin2.exml", + "resource/eui_skins/web/team/TeamAddViewSkin.exml", + "resource/eui_skins/web/team/TeamCommonItemSkin.exml", + "resource/eui_skins/web/team/TeamHederSkin.exml", + "resource/eui_skins/web/team/TeamMainItemViewSkin.exml", + "resource/eui_skins/web/team/TeamMainViewSkin.exml", + "resource/eui_skins/web/team/TeamQQItemSkin.exml", + "resource/eui_skins/web/team/TeamViewPageSkin.exml", + "resource/eui_skins/web/team/TeamViewSkin.exml", + "resource/eui_skins/web/timing/ActivityTimingSkin1.exml", + "resource/eui_skins/web/timing/ActivityTimingSkin2.exml", + "resource/eui_skins/web/tips/TipsActorSkin.exml", + "resource/eui_skins/web/tips/TipsAttrItemSkin.exml", + "resource/eui_skins/web/tips/TipsBossRefreshSkin.exml", + "resource/eui_skins/web/tips/TipsBuffSkin.exml", + "resource/eui_skins/web/tips/TipsDropSkin.exml", + "resource/eui_skins/web/tips/TipsEquipContrastSkin.exml", + "resource/eui_skins/web/tips/TipsEquipFashionSKin.exml", + "resource/eui_skins/web/tips/TipsEquipSKin.exml", + "resource/eui_skins/web/tips/TipsGoodEquipSkin.exml", + "resource/eui_skins/web/tips/TipsInsuffResourcesSkin.exml", + "resource/eui_skins/web/tips/TipsLookRewardsSkin.exml", + "resource/eui_skins/web/tips/TipsMoneySKin.exml", + "resource/eui_skins/web/tips/TipsOfflineRewardItemSkin.exml", + "resource/eui_skins/web/tips/TipsOfflineRewardViewSkin.exml", + "resource/eui_skins/web/tips/TipsRoleMagicWaoponAttrSkin.exml", + "resource/eui_skins/web/tips/TipsSkillDescSKin.exml", + "resource/eui_skins/web/tips/TipsSkin.exml", + "resource/eui_skins/web/tips/TipsSoldierSoulSkin.exml", + "resource/eui_skins/web/tips/TipsStarLevelSkin.exml", + "resource/eui_skins/web/tips/TipsUseItemViewSkin.exml", + "resource/eui_skins/web/tips/TipsUseItemViewSkin2.exml", + "resource/eui_skins/web/TradeLine/TradeLineBuyItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineBuyViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineIsSellingItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineIsSellingViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineReceiveItemViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineReceiveViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineSellViewSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineTabSkin.exml", + "resource/eui_skins/web/TradeLine/TradeLineWinSkin.exml", + "resource/eui_skins/web/UIView2Skin.exml", + "resource/eui_skins/web/useItem/UseBossBoxSkin.exml", + "resource/eui_skins/web/violentState/ViolentStateWinSkin.exml", + "resource/eui_skins/web/vip/VipGaimItemWinSKin.exml", + "resource/eui_skins/web/vip/VipItemBigIconSkin.exml", + "resource/eui_skins/web/vip/VipItemSkin.exml", + "resource/eui_skins/web/vip/VipViewSkin.exml", + "resource/eui_skins/web/vipPrivilege/VipPrivilegeItemSkin.exml", + "resource/eui_skins/web/vipPrivilege/VipPrivilegeViewSkin.exml", + "resource/eui_skins/web/Warehouse/WarehouseWinSkin.exml", + "resource/eui_skins/web/worship/WorshipItemSkin.exml", + "resource/eui_skins/web/worship/WorshipWinSkin.exml", + "resource/eui_skins/web/zhuanzhi/ZhuanZhiSkin.exml" + ], + "path": "resource/default.thm.json?v=1.1" +} \ No newline at end of file diff --git a/resource_Publish/phonedefault.res.json b/resource_Publish/phonedefault.res.json new file mode 100644 index 0000000..5281a23 --- /dev/null +++ b/resource_Publish/phonedefault.res.json @@ -0,0 +1,4495 @@ +{ + "groups":[ + { + "keys":"attrTips_json,common_json,mapmini_png,mainphone_json,scroll_json,buff_json,hp_fnt_fnt,chat_json,itemIcon_json,title_json,huanying_bg_1_png,huanying_bg_2_png,huanying_bg_3_png,huanying_bg_4_png,npc_welcome_mp3", + "name":"preload" + }, + { + "keys":"Login_json,LOGO_png,SelectServer_json", + "name":"login" + } + ], + "resources":[ + { + "name":"checkbox_select_disabled_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_disabled.png" + }, + { + "name":"checkbox_select_down_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_down.png" + }, + { + "name":"checkbox_select_up_png", + "type":"image", + "url":"assets/CheckBox/checkbox_select_up.png" + }, + { + "name":"checkbox_unselect_png", + "type":"image", + "url":"assets/CheckBox/checkbox_unselect.png" + }, + { + "name":"selected_png", + "type":"image", + "url":"assets/ItemRenderer/selected.png" + }, + { + "name":"border_png", + "type":"image", + "url":"assets/Panel/border.png" + }, + { + "name":"header_png", + "type":"image", + "url":"assets/Panel/header.png" + }, + { + "name":"radiobutton_select_disabled_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_disabled.png" + }, + { + "name":"radiobutton_select_down_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_down.png" + }, + { + "name":"radiobutton_select_up_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_select_up.png" + }, + { + "name":"radiobutton_unselect_png", + "type":"image", + "url":"assets/RadioButton/radiobutton_unselect.png" + }, + { + "name":"roundthumb_png", + "type":"image", + "url":"assets/ScrollBar/roundthumb.png" + }, + { + "name":"thumb_png", + "type":"image", + "url":"assets/Slider/thumb.png" + }, + { + "name":"track_png", + "type":"image", + "url":"assets/Slider/track.png" + }, + { + "name":"tracklight_png", + "type":"image", + "url":"assets/Slider/tracklight.png" + }, + { + "name":"handle_png", + "type":"image", + "url":"assets/ToggleSwitch/handle.png" + }, + { + "name":"off_png", + "type":"image", + "url":"assets/ToggleSwitch/off.png" + }, + { + "name":"on_png", + "type":"image", + "url":"assets/ToggleSwitch/on.png" + }, + { + "name":"button_down_png", + "type":"image", + "url":"assets/Button/button_down.png" + }, + { + "name":"button_up_png", + "type":"image", + "url":"assets/Button/button_up.png" + }, + { + "name":"thumb_pb_png", + "type":"image", + "url":"assets/ProgressBar/thumb_pb.png" + }, + { + "name":"track_pb_png", + "type":"image", + "url":"assets/ProgressBar/track_pb.png" + }, + { + "name":"track_sb_png", + "type":"image", + "url":"assets/ScrollBar/track_sb.png" + }, + { + "name":"bg_jpg", + "type":"image", + "url":"assets/bg.jpg" + }, + { + "name":"egret_icon_png", + "type":"image", + "url":"assets/egret_icon.png" + }, + { + "name":"blood_json", + "subkeys":"blood_chaowan,boolBg,boolGreen,boolRed,boolyel", + "type":"sheet", + "url":"assets/image/public/blood.json" + }, + { + "name":"common_json", + "subkeys":"9s_bg_1,9s_bg_2,9s_bg_3,9s_dating_tipsbg,9s_tipsbg,9s_tipsk,apay_gou,apay_tab_1,apay_tab_2,apay_tab_bg,apay_x2,apay_yilingqu,bag_equipbg,bag_equipk,bag_fanye_1,bag_fanye_2,bag_fanye_3,bag_fanye_bg,bag_fengexian,bag_jia,bag_piliangbg_0,bag_piliangbg_1,bag_piliangbg_2,bag_piliangbg_3,bag_piliangbg_4,bag_piliangbg_5,bagbtn_1,bagbtn_2,bagfy_xian,bg_jianbian1,bg_jianbian2,bg_quyu_1,bg_quyu_2,bg_shuzi_1,bg_sixiang_2,bg_sixiang_3,biaoti_bg,btn_0,btn_1,btn_2,btn_3,btn_4,btn_5,btn_6,btn_7,btn_8,btn_9,btn_apay,btn_apay2,btn_fanhui,btn_fanhui2,btn_guanbi,btn_guanbi2,btn_guanbi3,btn_guanbi4,btn_hs,btn_ssck,btn_yjhs,chat_bg_bg2,chat_button_lt,chat_fasongjiantou,chat_ltk_0,chat_ltk_1,chat_ltk_3,chat_ltk_you,chat_ltk_zuo,chat_shangjiantou,chat_yeqian_liaotian1,chat_yeqian_liaotian2,com_bg_kuang_3,com_bg_kuang_xian1,com_bg_kuang_xian2,com_bg_kuang_xian3,com_btn_xiala1,com_btn_xiala2,com_fengexian,com_gou_1,com_gou_2,com_icon_bg1,com_icon_bg2,com_jia,com_jiabg,com_jiajia,com_jian,com_jianjian,com_jiantoux2,com_jiantoux3,com_latiao_bg,com_latiao_yuan,com_ljt_1,com_ljt_2,com_yeqian_3,com_yeqian_4,com_yeqian_5,com_yeqian_6,com_yeqian_7,com_yizhuangbei,com_yuan_hong,com_yuan_kong,common__tjgz,common_btn_15,common_btn_16,common_ckxx,common_jhmdl,common_liebiaoding_bg,common_liebiaoding_fenge,common_liebiaoxuanzhong,common_lock,common_qxgz,common_schy,common_shmd,common_sl,common_slider_bg,common_slider_t,common_sqrd,common_sy,common_syy,common_tjhy,common_xx,common_xx_bg,common_xyy,common_yeqian_5,common_yeqian_6,common_yqzd,dikuang,icon_bangding,icon_jinbi,icon_quan,icon_yinliang,icon_yuanbao,icontype_1,icontype_2,kf_kftz_btn,kuaijielan2,kuaijielanBg,liaotianpaopao,m_lst_dian,m_lst_xian,name_touxiangk,npc_lingxing,num_bbj,num_bj,num_shihua,pmd_bg1,pmd_bg2,renwubg1,renwubg2,rule_bg,rule_biaotibg,rule_btn,shuxinghuadong_1,shuxinghuadong_2,t_b_xuanfu,t_sz_bh,t_sz_gj,t_sz_hs,t_sz_jc,t_sz_wp,t_sz_xt,t_sz_yp,tab_01_1,tab_01_2,tab_01_3,tips_btn,tips_btn1,yeqian_1,yeqian_2,zjmgonggaobg", + "type":"sheet", + "url":"assets/common/common.json" + }, + { + "name":"role_json", + "subkeys":"Godturn_bg2,Godturn_cionbg_1,Godturn_cionbg_2,Godturn_cionbg_3,Godturn_cionbg_4,Godturn_iconk,Godturn_jh_0,Godturn_jh_1,Godturn_jh_10,Godturn_jh_2,Godturn_jh_3,Godturn_jh_4,Godturn_jh_5,Godturn_jh_6,Godturn_jh_7,Godturn_jh_8,Godturn_jh_9,Godturn_jh_jh,Godturn_jh_wjh,anjian_1,anjian_2,anjian_3,anjian_4,anjian_5,anjian_6,anjian_bg,anjian_btn,anjian_e,anjian_guang,anjian_q,anjian_qingkong,anjian_queding,anjian_r,anjian_skillk,anjian_sz,anjian_t,anjian_w,anjian_y,arm_0,arm_1,arm_2,bg_jineng_1,bg_jineng_2,bg_neigongzb1,blessing_bg2,blessing_bglz,blessing_jdbg,blessing_jdt,blessing_jdt1,blessing_taiyan,blessing_taiyan1,blessing_tubiao,blessing_xingxing,blessing_xingxing1,blessing_yueliang,blessing_yueliang1,btn_chongwu_icon,btn_chongwu_icon2,btn_dz_qh,btn_guanzhi,btn_jineng_1,btn_jineng_2,btn_jn_bh,btn_jn_bh2,btn_jn_ty,btn_jn_ty2,btn_jn_zy,btn_jn_zy2,btn_js_ch,btn_js_ch2,btn_js_shiz,btn_js_shiz2,btn_js_sx,btn_js_sx2,btn_js_sz,btn_js_sz2,btn_js_zb,btn_js_zb2,btn_js_zf,btn_js_zf2,btn_js_zj,btn_js_zj2,btn_neigong,btn_neigong2,btn_ngbs,btn_shenmo,btn_shenmo2,btn_shuxing_1,btn_shuxing_2,btn_shuxing_bg,ch_bg,ch_zsz,gz_zw_0,gz_zw_1,gz_zw_10,gz_zw_11,gz_zw_12,gz_zw_13,gz_zw_14,gz_zw_15,gz_zw_16,gz_zw_17,gz_zw_18,gz_zw_19,gz_zw_2,gz_zw_20,gz_zw_21,gz_zw_22,gz_zw_23,gz_zw_24,gz_zw_25,gz_zw_26,gz_zw_27,gz_zw_28,gz_zw_3,gz_zw_4,gz_zw_5,gz_zw_6,gz_zw_7,gz_zw_8,gz_zw_9,icon_guanzhi,icon_neigong,ng_t_neigong,qh_huoqu,qh_icon_bg,qh_icon_huwan,qh_icon_huwan2,qh_icon_jiezhi,qh_icon_jiezhi2,qh_icon_toukui,qh_icon_toukui2,qh_icon_wuqi,qh_icon_wuqi2,qh_icon_xianglian,qh_icon_xianglian2,qh_icon_xiezi,qh_icon_xiezi2,qh_icon_xz,qh_icon_yaodai,qh_icon_yaodai2,qh_icon_yifu,qh_icon_yifu2,qh_jiantou,qh_sxbg,qh_t_huwan,qh_t_jiezhi,qh_t_toukui,qh_t_wuqi,qh_t_xianglian,qh_t_xiezi,qh_t_yaodai,qh_t_yifu,role_bh_mc1,role_bh_mc2,role_bh_mc3,role_bh_mc4,role_k2,role_sx_bg2,role_sx_btn1,role_sx_btn2,role_sx_btnsx,role_sx_btnzt,role_tab1,role_tab2,role_tab3,role_tab4,role_tab_bw1,role_tab_bw2,role_tab_jn1,role_tab_jn2,role_tab_js1,role_tab_js2,role_tab_qh1,role_tab_qh2,role_tab_sw1,role_tab_sw2,role_tab_zs1,role_tab_zs2,role_zt_bg,sz_bg_2,sz_bg_3,sz_btn,sz_btn_1,sz_btn_2,sz_btn_3,sz_btn_4,sz_btn_5,sz_btn_6,sz_chuandai,sz_tab_1,sz_tab_2,sz_tab_t1,sz_tab_t2,sz_tab_t3,sz_xuanzhong,t_neigongzb,t_neigongzb1,tab_ngzb,tab_ngzb1,tab_ngzbt01,tab_ngzbt02,tab_ngzbt11,tab_ngzbt12,transform_bg_shuxing,zj_1_1,zj_1_2,zj_1_3,zj_1_4,zj_2_1,zj_2_2,zj_2_3,zj_2_4,zj_3_1,zj_3_2,zj_3_3,zj_3_4,zj_4_1,zj_4_2,zj_4_3,zj_4_4,zj_5_1,zj_5_2,zj_5_3,zj_5_4", + "type":"sheet", + "url":"assets/role/role.json" + }, + { + "name":"wslxc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-5.mp3" + }, + { + "name":"wslxc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-1.mp3" + }, + { + "name":"xiee-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-5.mp3" + }, + { + "name":"xiee-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-1.mp3" + }, + { + "name":"heiseequ-4_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-4.mp3" + }, + { + "name":"heiseequ-2_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-2.mp3" + }, + { + "name":"xieshe-5_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-5.mp3" + }, + { + "name":"xieshe-1_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-1.mp3" + }, + { + "name":"fenchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-4.mp3" + }, + { + "name":"fenchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-2.mp3" + }, + { + "name":"shuyao-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shuyao-2.mp3" + }, + { + "name":"wslxc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-4.mp3" + }, + { + "name":"wslxc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wslxc-2.mp3" + }, + { + "name":"xiee-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-4.mp3" + }, + { + "name":"xiee-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xiee-2.mp3" + }, + { + "name":"heiseequ-5_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-5.mp3" + }, + { + "name":"heiseequ-1_mp3", + "type":"sound", + "url":"assets/sound/monster/heiseequ-1.mp3" + }, + { + "name":"xieshe-4_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-4.mp3" + }, + { + "name":"xieshe-2_mp3", + "type":"sound", + "url":"assets/sound/monster/xieshe-2.mp3" + }, + { + "name":"fenchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-5.mp3" + }, + { + "name":"fenchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/fenchong-1.mp3" + }, + { + "name":"nanshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nanshouji.mp3" + }, + { + "name":"yidong_mp3", + "type":"sound", + "url":"assets/sound/character/yidong.mp3" + }, + { + "name":"nvshouji_mp3", + "type":"sound", + "url":"assets/sound/character/nvshouji.mp3" + }, + { + "name":"nansiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nansiwang.mp3" + }, + { + "name":"gongji_mp3", + "type":"sound", + "url":"assets/sound/character/gongji.mp3" + }, + { + "name":"nvsiwang_mp3", + "type":"sound", + "url":"assets/sound/character/nvsiwang.mp3" + }, + { + "name":"shenshou-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-4.mp3" + }, + { + "name":"lu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-5.mp3" + }, + { + "name":"dpm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-4.mp3" + }, + { + "name":"dpm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-2.mp3" + }, + { + "name":"lu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-1.mp3" + }, + { + "name":"pttongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-5.mp3" + }, + { + "name":"pttongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-1.mp3" + }, + { + "name":"ying-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-4.mp3" + }, + { + "name":"dq-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-5.mp3" + }, + { + "name":"ying-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-2.mp3" + }, + { + "name":"hm-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-4.mp3" + }, + { + "name":"hm-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-2.mp3" + }, + { + "name":"dq-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-1.mp3" + }, + { + "name":"yang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-4.mp3" + }, + { + "name":"yang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-2.mp3" + }, + { + "name":"gumotongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-4.mp3" + }, + { + "name":"sdbianfu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-5.mp3" + }, + { + "name":"zmjz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-4.mp3" + }, + { + "name":"gumotongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-2.mp3" + }, + { + "name":"huo-2_mp3", + "type":"sound", + "url":"assets/sound/monster/huo-2.mp3" + }, + { + "name":"zmjz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-2.mp3" + }, + { + "name":"bf-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-5.mp3" + }, + { + "name":"bf-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-1.mp3" + }, + { + "name":"dcr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-5.mp3" + }, + { + "name":"qianchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-4.mp3" + }, + { + "name":"kl-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-4.mp3" + }, + { + "name":"dcr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-1.mp3" + }, + { + "name":"qianchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-2.mp3" + }, + { + "name":"kl-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-2.mp3" + }, + { + "name":"woma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-5.mp3" + }, + { + "name":"woma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-1.mp3" + }, + { + "name":"slxr-5_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-5.mp3" + }, + { + "name":"shenshouz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-5.mp3" + }, + { + "name":"slxr-1_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-1.mp3" + }, + { + "name":"shenshouz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-1.mp3" + }, + { + "name":"lang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-5.mp3" + }, + { + "name":"djs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-5.mp3" + }, + { + "name":"zumagjs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-4.mp3" + }, + { + "name":"zumagjs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-2.mp3" + }, + { + "name":"lang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-1.mp3" + }, + { + "name":"djs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-1.mp3" + }, + { + "name":"js-5_mp3", + "type":"sound", + "url":"assets/sound/monster/js-5.mp3" + }, + { + "name":"zuma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-4.mp3" + }, + { + "name":"zuma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-2.mp3" + }, + { + "name":"js-1_mp3", + "type":"sound", + "url":"assets/sound/monster/js-1.mp3" + }, + { + "name":"duojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-4.mp3" + }, + { + "name":"kjc-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-5.mp3" + }, + { + "name":"duojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-2.mp3" + }, + { + "name":"wugong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-4.mp3" + }, + { + "name":"kjc-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-1.mp3" + }, + { + "name":"wugong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-2.mp3" + }, + { + "name":"ji-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-4.mp3" + }, + { + "name":"banshouyongshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-5.mp3" + }, + { + "name":"ji-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-2.mp3" + }, + { + "name":"banshouyongshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-1.mp3" + }, + { + "name":"bosstongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-4.mp3" + }, + { + "name":"bosstongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-2.mp3" + }, + { + "name":"zztongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-4.mp3" + }, + { + "name":"zztongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-2.mp3" + }, + { + "name":"banshouzhanshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-4.mp3" + }, + { + "name":"banshouzhanshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-2.mp3" + }, + { + "name":"jxduojiaochong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-4.mp3" + }, + { + "name":"klss-2_mp3", + "type":"sound", + "url":"assets/sound/monster/klss-2.mp3" + }, + { + "name":"jxduojiaochong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-2.mp3" + }, + { + "name":"tiaotiaofeng-4_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-4.mp3" + }, + { + "name":"dzz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-4.mp3" + }, + { + "name":"tiaotiaofeng-2_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-2.mp3" + }, + { + "name":"dzz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-2.mp3" + }, + { + "name":"ruchong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-4.mp3" + }, + { + "name":"yezhu-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-5.mp3" + }, + { + "name":"hshs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-4.mp3" + }, + { + "name":"banshouren-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-4.mp3" + }, + { + "name":"hshs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-2.mp3" + }, + { + "name":"ruchong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-2.mp3" + }, + { + "name":"banshouren-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-2.mp3" + }, + { + "name":"yezhu-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-1.mp3" + }, + { + "name":"shiwang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-4.mp3" + }, + { + "name":"shiwang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-2.mp3" + }, + { + "name":"shenshou-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-5.mp3" + }, + { + "name":"shenshou-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshou-1.mp3" + }, + { + "name":"dpm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-5.mp3" + }, + { + "name":"lu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-4.mp3" + }, + { + "name":"lu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lu-2.mp3" + }, + { + "name":"dpm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dpm-1.mp3" + }, + { + "name":"pttongyong-4_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-4.mp3" + }, + { + "name":"pttongyong-2_mp3", + "type":"sound", + "url":"assets/sound/monster/pttongyong-2.mp3" + }, + { + "name":"ying-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-5.mp3" + }, + { + "name":"hm-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-5.mp3" + }, + { + "name":"dq-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-4.mp3" + }, + { + "name":"ying-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ying-1.mp3" + }, + { + "name":"dq-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dq-2.mp3" + }, + { + "name":"hm-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hm-1.mp3" + }, + { + "name":"yang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-5.mp3" + }, + { + "name":"gumotongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-5.mp3" + }, + { + "name":"zmjz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-5.mp3" + }, + { + "name":"yang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/yang-1.mp3" + }, + { + "name":"gumotongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/gumotongyong-1.mp3" + }, + { + "name":"sdbianfu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/sdbianfu-2.mp3" + }, + { + "name":"bf-4_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-4.mp3" + }, + { + "name":"zmjz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zmjz-1.mp3" + }, + { + "name":"bf-2_mp3", + "type":"sound", + "url":"assets/sound/monster/bf-2.mp3" + }, + { + "name":"qianchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-5.mp3" + }, + { + "name":"dcr-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-4.mp3" + }, + { + "name":"kl-5_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-5.mp3" + }, + { + "name":"dcr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dcr-2.mp3" + }, + { + "name":"qianchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/qianchong-1.mp3" + }, + { + "name":"woma-4_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-4.mp3" + }, + { + "name":"kl-1_mp3", + "type":"sound", + "url":"assets/sound/monster/kl-1.mp3" + }, + { + "name":"woma-2_mp3", + "type":"sound", + "url":"assets/sound/monster/woma-2.mp3" + }, + { + "name":"shenshouz-4_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-4.mp3" + }, + { + "name":"slxr-2_mp3", + "type":"sound", + "url":"assets/sound/monster/slxr-2.mp3" + }, + { + "name":"shenshouz-2_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-2.mp3" + }, + { + "name":"shenshouz-0_mp3", + "type":"sound", + "url":"assets/sound/monster/shenshouz-0.mp3" + }, + { + "name":"lang-4_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-4.mp3" + }, + { + "name":"zumagjs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-5.mp3" + }, + { + "name":"djs-4_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-4.mp3" + }, + { + "name":"lang-2_mp3", + "type":"sound", + "url":"assets/sound/monster/lang-2.mp3" + }, + { + "name":"djs-2_mp3", + "type":"sound", + "url":"assets/sound/monster/djs-2.mp3" + }, + { + "name":"zuma-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-5.mp3" + }, + { + "name":"zumagjs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zumagjs-1.mp3" + }, + { + "name":"js-4_mp3", + "type":"sound", + "url":"assets/sound/monster/js-4.mp3" + }, + { + "name":"duojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-5.mp3" + }, + { + "name":"js-2_mp3", + "type":"sound", + "url":"assets/sound/monster/js-2.mp3" + }, + { + "name":"zuma-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zuma-1.mp3" + }, + { + "name":"kjc-4_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-4.mp3" + }, + { + "name":"wugong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-5.mp3" + }, + { + "name":"duojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/duojiaochong-1.mp3" + }, + { + "name":"kjc-2_mp3", + "type":"sound", + "url":"assets/sound/monster/kjc-2.mp3" + }, + { + "name":"ji-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-5.mp3" + }, + { + "name":"wugong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/wugong-1.mp3" + }, + { + "name":"banshouyongshi-4_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-4.mp3" + }, + { + "name":"ji-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ji-1.mp3" + }, + { + "name":"banshouyongshi-2_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouyongshi-2.mp3" + }, + { + "name":"bosstongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-1.mp3" + }, + { + "name":"zztongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-5.mp3" + }, + { + "name":"banshouzhanshi-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-5.mp3" + }, + { + "name":"zztongyong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/zztongyong-1.mp3" + }, + { + "name":"banshouzhanshi-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouzhanshi-1.mp3" + }, + { + "name":"jxduojiaochong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-5.mp3" + }, + { + "name":"tiaotiaofeng-5_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-5.mp3" + }, + { + "name":"dian-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dian-2.mp3" + }, + { + "name":"dzz-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-5.mp3" + }, + { + "name":"jxduojiaochong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/jxduojiaochong-1.mp3" + }, + { + "name":"ruchong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-5.mp3" + }, + { + "name":"hshs-5_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-5.mp3" + }, + { + "name":"tiaotiaofeng-1_mp3", + "type":"sound", + "url":"assets/sound/monster/tiaotiaofeng-1.mp3" + }, + { + "name":"banshouren-5_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-5.mp3" + }, + { + "name":"yezhu-4_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-4.mp3" + }, + { + "name":"dzz-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dzz-1.mp3" + }, + { + "name":"ruchong-1_mp3", + "type":"sound", + "url":"assets/sound/monster/ruchong-1.mp3" + }, + { + "name":"hshs-1_mp3", + "type":"sound", + "url":"assets/sound/monster/hshs-1.mp3" + }, + { + "name":"yezhu-2_mp3", + "type":"sound", + "url":"assets/sound/monster/yezhu-2.mp3" + }, + { + "name":"shiwang-5_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-5.mp3" + }, + { + "name":"banshouren-1_mp3", + "type":"sound", + "url":"assets/sound/monster/banshouren-1.mp3" + }, + { + "name":"shiwang-1_mp3", + "type":"sound", + "url":"assets/sound/monster/shiwang-1.mp3" + }, + { + "name":"dongxue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dongxue.mp3" + }, + { + "name":"fengmogu_mp3", + "type":"sound", + "url":"assets/sound/bgm/fengmogu.mp3" + }, + { + "name":"bairimen_mp3", + "type":"sound", + "url":"assets/sound/bgm/bairimen.mp3" + }, + { + "name":"shimu_mp3", + "type":"sound", + "url":"assets/sound/bgm/shimu.mp3" + }, + { + "name":"npc_welcome_mp3", + "type":"sound", + "url":"assets/sound/npc/npc_welcome.mp3" + }, + { + "name":"biqi_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi.mp3?v=1" + }, + { + "name":"biqi_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_1.mp3" + }, + { + "name":"biqi_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_2.mp3" + }, + { + "name":"biqi_3_mp3", + "type":"sound", + "url":"assets/sound/bgm/biqi_3.mp3" + }, + { + "name":"huodong_mp3", + "type":"sound", + "url":"assets/sound/bgm/huodong.mp3" + }, + { + "name":"molongcheng_mp3", + "type":"sound", + "url":"assets/sound/bgm/molongcheng.mp3" + }, + { + "name":"fuben_mp3", + "type":"sound", + "url":"assets/sound/bgm/fuben.mp3" + }, + { + "name":"shabake_mp3", + "type":"sound", + "url":"assets/sound/bgm/shabake.mp3" + }, + { + "name":"dixue_mp3", + "type":"sound", + "url":"assets/sound/bgm/dixue.mp3?v=1" + }, + { + "name":"denglu_mp3", + "type":"sound", + "url":"assets/sound/bgm/denglu.mp3" + }, + { + "name":"kuangdong_mp3", + "type":"sound", + "url":"assets/sound/bgm/kuangdong.mp3" + }, + { + "name":"zuma_mp3", + "type":"sound", + "url":"assets/sound/bgm/zuma.mp3" + }, + { + "name":"mengzhong_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong.mp3" + }, + { + "name":"mengzhong_1_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_1.mp3" + }, + { + "name":"mengzhong_2_mp3", + "type":"sound", + "url":"assets/sound/bgm/mengzhong_2.mp3" + }, + { + "name":"scroll_json", + "subkeys":"bag_15,bag_16,bag_17,bag_18", + "type":"sheet", + "url":"assets/image/public/scroll.json" + }, + { + "name":"num_1_fnt", + "type":"font", + "url":"assets/image/public/num_1.fnt" + }, + { + "name":"anniu1_mp3", + "type":"sound", + "url":"assets/sound/other/anniu1.mp3" + }, + { + "name":"anniu2_mp3", + "type":"sound", + "url":"assets/sound/other/anniu2.mp3" + }, + { + "name":"anniu3_mp3", + "type":"sound", + "url":"assets/sound/other/anniu3.mp3" + }, + { + "name":"duanzao~1_mp3", + "type":"sound", + "url":"assets/sound/other/duanzao~1.mp3" + }, + { + "name":"heyao_mp3", + "type":"sound", + "url":"assets/sound/other/heyao.mp3" + }, + { + "name":"jinbizengjia_mp3", + "type":"sound", + "url":"assets/sound/other/jinbizengjia.mp3" + }, + { + "name":"shengji~1_mp3", + "type":"sound", + "url":"assets/sound/other/shengji~1.mp3" + }, + { + "name":"zhuangjiezhi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangjiezhi.mp3" + }, + { + "name":"zhuangsanjian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangsanjian.mp3" + }, + { + "name":"zhuangshouzhuo_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangshouzhuo.mp3" + }, + { + "name":"zhuangwuqi_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangwuqi.mp3" + }, + { + "name":"zhuangxianglian_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangxianglian.mp3" + }, + { + "name":"zhuangyifu_mp3", + "type":"sound", + "url":"assets/sound/other/zhuangyifu.mp3" + }, + { + "name":"buff_json", + "subkeys":"buff_1,buff_10,buff_11,buff_12,buff_13,buff_14,buff_15,buff_16,buff_17,buff_18,buff_19,buff_2,buff_20,buff_21,buff_22,buff_23,buff_24,buff_25,buff_26,buff_27,buff_28,buff_29,buff_3,buff_30,buff_31,buff_32,buff_33,buff_34,buff_35,buff_36,buff_37,buff_38,buff_39,buff_4,buff_40,buff_41,buff_42,buff_43,buff_44,buff_45,buff_46,buff_47,buff_48,buff_49,buff_5,buff_50,buff_51,buff_52,buff_53,buff_54,buff_55,buff_56,buff_57,buff_58,buff_59,buff_6,buff_60,buff_61,buff_62,buff_63,buff_64,buff_65,buff_66,buff_67,buff_68,buff_69,buff_7,buff_70,buff_71,buff_8,buff_9,buff_zz1,buff_zz2", + "type":"sheet", + "url":"assets/common/buff.json" + }, + { + "name":"chat_json", + "subkeys":"bg_bg2,button_lt,button_lt2,button_lt3,chat_bqb_1,chat_bqb_10,chat_bqb_11,chat_bqb_12,chat_bqb_13,chat_bqb_14,chat_bqb_15,chat_bqb_16,chat_bqb_17,chat_bqb_18,chat_bqb_19,chat_bqb_2,chat_bqb_20,chat_bqb_21,chat_bqb_22,chat_bqb_23,chat_bqb_24,chat_bqb_25,chat_bqb_26,chat_bqb_27,chat_bqb_28,chat_bqb_29,chat_bqb_3,chat_bqb_30,chat_bqb_31,chat_bqb_32,chat_bqb_33,chat_bqb_34,chat_bqb_35,chat_bqb_36,chat_bqb_37,chat_bqb_38,chat_bqb_39,chat_bqb_4,chat_bqb_40,chat_bqb_41,chat_bqb_42,chat_bqb_43,chat_bqb_5,chat_bqb_6,chat_bqb_7,chat_bqb_8,chat_bqb_9,chat_bqbkuang,chat_ltbg,chat_t_10_1,chat_t_10_2,chat_t_11,chat_t_1_1,chat_t_1_2,chat_t_2_1,chat_t_2_2,chat_t_3_1,chat_t_3_2,chat_t_4_1,chat_t_4_2,chat_t_5_1,chat_t_5_2,chat_t_6_1,chat_t_6_2,chat_t_7,chat_t_8,chat_t_9,chat_tab_1,chat_tab_2,chat_tab_3,chat_tab_4,fasongjiantou,fasongjiantou2,lt_xitong,ltk_0,ltk_1,ltk_2,ltk_2+1,ltk_3,ltk_4,ltk_you,ltk_zuo,ltpb_bangzhu,ltpb_fj1,ltpb_fj2,ltpb_hh1,ltpb_hh2,ltpb_sl1,ltpb_sl2,shangjiantou,shangjiantou2,yeqian_liaotian1,yeqian_liaotian2", + "type":"sheet", + "url":"assets/chat/chat.json" + }, + { + "name":"select_png", + "type":"image", + "url":"assets/common/select.png" + }, + { + "name":"friend_json", + "subkeys":"fd_top_bg,fd_top_fenge,liebiaoxuanzhong,szys_1,szys_166,szys_2,szys_3,t_gxyq_fj1,t_gxyq_fj2,t_gxyq_gz1,t_gxyq_gz2,t_gxyq_hmd1,t_gxyq_hmd2,t_gxyq_hy1,t_gxyq_hy2,t_gxyq_qq1,t_gxyq_qq2,t_gxyq_zb1,t_gxyq_zb2", + "type":"sheet", + "url":"assets/friend/friend.json" + }, + { + "name":"mainphone_json", + "subkeys":"bq_bg2,bq_biaoti,bq_icon_1,bq_icon_2,bq_icon_3,bq_icon_5,btn_czcz,common_chengdian,common_hongdian,dialog_mask,exp_dian,gjbtn_fj,gjbtn_hy,gjbtn_sq,huanying_btn,huanying_x,icon_360dawanjia,icon_360shiming,icon_37fuli,icon_4366VIP,icon_7you_chaihongbao,icon_7you_fuli,icon_activity,icon_activity3,icon_activity4,icon_activity5,icon_activity6,icon_activity7,icon_activity8,icon_activity9,icon_aiqiyiQQqun,icon_bangdingyouli,icon_beibao,icon_bianqiang,icon_boss,icon_cangjingge,icon_chaowan,icon_chongzhi,icon_ciyuanshouling,icon_czzl,icon_daluandou,icon_dianfengkuanghuan,icon_dttq,icon_duanwujiajie,icon_duanzao,icon_fangchenmi,icon_fankui,icon_feixie,icon_fenxiangyouxi,icon_fulidating,icon_ganenjie,icon_gonggao,icon_guaji,icon_guanggunjie,icon_hanghui,icon_haoyou,icon_hecheng,icon_hfhuodong,icon_huanduwuyi,icon_huanzhenchong,icon_huidaoyuanfu,icon_huishou,icon_hytq,icon_jiaoyi,icon_jineng,icon_jingcaihuodong,icon_jishouhang,icon_juanxianbang,icon_juese,icon_kaifu1maogou,icon_kaifuhaoli,icon_kaifujingji,icon_kaifutouzi,icon_kaifuxunbao,icon_kaifuzhanchang,icon_ku25hezi,icon_kuafulingzhu,icon_kuafumobai,icon_kuafushacheng,icon_kuafushouling,icon_kuangbao,icon_ldsyxhz,icon_leijizaixian,icon_ludashilibao,icon_lztequan,icon_mafazhanling,icon_mijingdabao,icon_mingriyugao,icon_ptfl,icon_qqdating,icon_qufuxinxi,icon_rank,icon_rank2,icon_sanduanhutong,icon_sgyxdt,icon_sgzspf,icon_shacheng,icon_shachengdjs,icon_shengxiakuanghuan,icon_shengxing,icon_shezhi,icon_shouchong,icon_shoujilibao,icon_shuangshiqingdian,icon_shuangshiyi,icon_taotuoshilian,icon_taqingxunli,icon_wanshanziliao,icon_wanshengjie,icon_weiduanfuli,icon_womasan,icon_xilian,icon_xingyunxunbao,icon_xunbao,icon_yaodou_kefu,icon_youjian,icon_yyhy,icon_zaichong,icon_zhinengPK,icon_zhongqiujiajie,icon_zhoumohaoli,icon_zhounianqingdian,icon_zhufuguoqing,icon_zudui,m_bg,m_bg_zhuui1,m_bg_zhuui2,m_bg_zhuui3,m_btn_bg1,m_btn_bg2,m_btn_bg3,m_cw_gj,m_cw_gs,m_daojubg,m_didui,m_didui1,m_didui2,m_exp,m_expbg,m_exps,m_hanghui,m_hanghui1,m_hanghui2,m_heping,m_heping1,m_heping2,m_icon_shangcheng,m_job1,m_job2,m_job3,m_kuaijielan1,m_kuaijielan2,m_liaotianbg,m_lock_1,m_lock_2,m_m_lock_1,m_m_lock_2,m_m_lock_bg,m_m_lockname_bg,m_m_sd_xt_bg,m_m_sd_xt_k,m_map_k,m_map_k2,m_ms_bg1,m_ms_bg2,m_qiehuan,m_qiehuanbg,m_quanti,m_quanti1,m_quanti2,m_sj_dianchi1,m_sj_dianchi2,m_sj_wifi,m_sj_xinhao,m_skillbg1,m_skillbg2,m_skillbg3,m_skillgw,m_skillgw1,m_skillgw2,m_skillicon_ds1,m_skillicon_ds10,m_skillicon_ds11,m_skillicon_ds12,m_skillicon_ds2,m_skillicon_ds3,m_skillicon_ds4,m_skillicon_ds5,m_skillicon_ds6,m_skillicon_ds7,m_skillicon_ds8,m_skillicon_ds9,m_skillicon_fs1,m_skillicon_fs10,m_skillicon_fs11,m_skillicon_fs12,m_skillicon_fs13,m_skillicon_fs14,m_skillicon_fs2,m_skillicon_fs3,m_skillicon_fs4,m_skillicon_fs5,m_skillicon_fs6,m_skillicon_fs7,m_skillicon_fs8,m_skillicon_fs9,m_skillicon_ty1,m_skillicon_ty2,m_skillicon_zs1,m_skillicon_zs2,m_skillicon_zs3,m_skillicon_zs4,m_skillicon_zs5,m_skillicon_zs6,m_skillicon_zs7,m_skillicon_zs8,m_skillwj,m_skillwj1,m_skillwj2,m_skillwjgw,m_task_bg1,m_task_bg2,m_task_bg3,m_task_bgh,m_task_btn,m_task_btn3,m_task_btn_2,m_task_btn_2bg,m_task_duizhang,m_task_fengexian,m_task_hp1,m_task_hp2,m_task_hp2h,m_task_jiantou,m_task_k,m_task_xuanzhongkuang,m_task_yiwancheng,m_task_zy1,m_task_zy1h,m_task_zy2,m_task_zy2h,m_task_zy3,m_task_zy3h,m_twoyg1,m_twoyg1_1,m_twoyg2,m_twoyg4,m_twoyg5,m_yg1,m_yg2,m_yg3,m_yg4,m_yg5,m_zhenying,m_zhenying1,m_zhenying2,m_zudui,m_zudui1,m_zudui2,main_tuichu,main_zlb,map_boss,map_btn,map_dian_1,map_dian_10,map_dian_11,map_dian_2,map_dian_3,map_dian_4,map_dian_5,map_dian_6,map_dian_7,map_dian_8,map_dian_9,map_fangda,map_jiantou,map_k,map_my,map_target,map_xian,mp_m_lock_bg,mp_map_bg1,mp_map_bg2,mpa_way,name_1_0,name_1_1,name_2_0,name_2_1,name_3_0,name_3_1,name_bg,name_btn,name_icon_jb,name_icon_yb,open_bg,open_bg2,open_bt_1,open_bt_10,open_bt_11,open_bt_12,open_bt_13,open_bt_14,open_bt_15,open_bt_2,open_bt_3,open_bt_4,open_bt_5,open_bt_6,open_bt_7,open_bt_8,open_bt_9,open_btn,open_hdjl,sbss_tab_bg1,sbss_tab_bg2,sbss_tab_bg3,skillicon2_jz1,skillicon2_jz2,skillicon2_jz3,skillicon2_jz4,skillicon2_jz5,skillicon2_jz6,skillicon2_jz7,skillicon2_jz8,skillicon2_nz1,skillicon2_nz2,skillicon2_nz3,skillicon2_nz4,skillicon2_nz5,skillicon2_nz6,skillicon2_nz7,skillicon2_nz8,skillicon_ds1,skillicon_ds10,skillicon_ds12,skillicon_ds2,skillicon_ds3,skillicon_ds4,skillicon_ds5,skillicon_ds7,skillicon_ds8,skillicon_ds9,skillicon_fs10,skillicon_fs11,skillicon_fs13,skillicon_fs14,skillicon_fs2,skillicon_fs3,skillicon_fs4,skillicon_fs5,skillicon_fs6,skillicon_fs9,skillicon_ty10,skillicon_ty11,skillicon_ty2,skillicon_ty3,skillicon_ty4,skillicon_ty5,skillicon_ty6,skillicon_ty7,skillicon_ty8,skillicon_ty9,skillicon_zs1,skillicon_zs2,skillicon_zs3,skillicon_zs4,skillicon_zs5,skillicon_zs6,skillicon_zs7,skillicon_zs8,sx_num_p,task_rwjj,tips_man2,tips_man3,tips_man4,tips_man5,tips_man6,zjm_shan_haoyou,zjm_shan_jiaoyi,zjm_shan_youjian,zjm_shan_zhhh,zjm_shan_zhzd,zjm_shan_zudui,btn_shop,m_bg_zhuui1_1,m_bg_zhuui2_1,icon_cydzb", + "type":"sheet", + "url":"assets/phone/mainphone.json?v=1.4" + }, + { + "name":"rank_json", + "subkeys":"phb_tab_01,phb_tab_02,phb_tab_11,phb_tab_12,phb_tab_21,phb_tab_22,phb_tab_31,phb_tab_32,phb_tab_41,phb_tab_42,rank_bg2,rank_bg3,rank_bk,rank_ch1,rank_ch2,rank_ck,rank_cx,rank_cy,rank_lk,rank_lk1,rank_pm1,rank_pm2,rank_pm3,rank_tab1,rank_tab2,rank_zk", + "type":"sheet", + "url":"assets/rank/rank.json" + }, + { + "name":"team_json", + "subkeys":"t_zd_fjdw1,t_zd_fjdw2,t_zd_fjwj1,t_zd_fjwj2,t_zd_shenqingrudui,t_zd_tianjia,t_zd_tichuduiwu,t_zd_tuichuduiwu,t_zd_wddw1,t_zd_wddw2,t_zd_yaoqingrudui,t_zd_zxhy1,t_zd_zxhy2,team_bg,team_duizhang", + "type":"sheet", + "url":"assets/team/team.json" + }, + { + "name":"guild_json", + "subkeys":"guild_bg_biaoqian,guild_bg_guanlidating,guild_bg_hanghuidating,guild_bg_lashen,guild_bg_liangongfang,guild_bg_yishiting,guild_jingyantiao,guild_jingyantiao_bg,guild_jxbt,guild_jxfgx,guild_jxiconk,guild_lbbg1,guild_lbbg2,guild_lbbg3,guild_pm_1,guild_pm_2,guild_pm_3,guild_wenzizhuangshi", + "type":"sheet", + "url":"assets/guild/guild.json" + }, + { + "name":"dls-5_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-5.mp3" + }, + { + "name":"dls-1_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-1.mp3" + }, + { + "name":"dls-2_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-2.mp3" + }, + { + "name":"dls-4_mp3", + "type":"sound", + "url":"assets/sound/monster/dls-4.mp3" + }, + { + "name":"itemIcon_json", + "subkeys":"10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,cangku_lock,equipd_0,equipd_1,equipd_10,equipd_11,equipd_12,equipd_13,equipd_14,equipd_15,equipd_16,equipd_17,equipd_18,equipd_19,equipd_2,equipd_3,equipd_4,equipd_5,equipd_6,equipd_7,equipd_8,equipd_9,orangePoint,quality_0,quality_1,quality_2,quality_3,quality_4,quality_5,quality_6,quality_huishou,quality_jipin,quality_lock,quality_sheng,redPoint,yan_1,yan_100,yan_101,yan_102,yan_103,yan_104,yan_105,yan_106,yan_107,yan_108,yan_109,yan_110,yan_111,yan_112,yan_113,yan_114,yan_115,yan_116,yan_117,yan_118,yan_119,yan_120,yan_121,yan_122,yan_123,yan_124,yan_125,yan_126,yan_127,yan_128,yan_129,yan_130,yan_131,yan_132,yan_133,yan_134,yan_135", + "type":"sheet", + "url":"assets/image/public/itemIcon.json" + }, + { + "name":"resurrection_json", + "subkeys":"revive_bg,revive_btn,revive_zz", + "type":"sheet", + "url":"assets/resurrection/resurrection.json" + }, + { + "name":"bosstongyong-5_mp3", + "type":"sound", + "url":"assets/sound/monster/bosstongyong-5.mp3" + }, + { + "name":"shop_json", + "subkeys":"shop_bg,shop_bg1,shop_bg_xian,shop_iconk,shop_jiaobiao,shop_rexiao,shop_xianshi,shop_yeqian_1,shop_yeqian_2,shop_yyb_bannert,shop_yyb_bannert2,shop_yybsc,shop_zhekou_1,shop_zhekou_2,shop_zhekou_3,shop_zhekou_4,shop_zhekou_5,shop_zhekou_6,shop_zhekou_7,shop_zhekou_8,shop_zhekou_9,shop_zhekou_bg", + "type":"sheet", + "url":"assets/shop/shop.json" + }, + { + "name":"forge_json", + "subkeys":"forge_bg,forge_bg2,forge_bg3,forge_bt1,forge_bt2,forge_bt3,forge_bt4,forge_btjt,forge_equip1,forge_equip2,forge_equipbg1,forge_equipbg2,forge_gou1,forge_gou2,forge_huode,forge_jiantou1,forge_jiantou2,forge_sxjt,forge_sxt,forge_t,forge_t1,forge_t2,forge_t3,forge_tab1,forge_tab2,forge_xlt,forge_xx1,forge_xx2,forge_xxbg,hc_tab_hc1,hc_tab_hc2,hc_tab_hs1,hc_tab_hs2,hecheng_bg1,hecheng_bg2,recovery_banner,recovery_bg,recovery_zs_1,recovery_zs_2,recovery_zs_3,recovery_zs_4,recovery_zs_5", + "type":"sheet", + "url":"assets/forge/forge.json" + }, + { + "name":"TradeLine_json", + "subkeys":"jishou_tab_buy1,jishou_tab_buy2,jishou_tab_isSell1,jishou_tab_isSell2,jishou_tab_receive1,jishou_tab_receive2,jishou_tab_sell1,jishou_tab_sell2,kbg_trade,trade_bg1,trade_chakan,trade_iconk,trade_mengban,trade_zt1,trade_zt2,trade_zt3", + "type":"sheet", + "url":"assets/TradeLine/TradeLine.json" + }, + { + "name":"bg_npc_png", + "type":"image", + "url":"assets/bg/bg_npc.png" + }, + { + "name":"bg_tipstc_png", + "type":"image", + "url":"assets/bg/bg_tipstc.png" + }, + { + "name":"chat_bg_bg1_png", + "type":"image", + "url":"assets/bg/chat_bg_bg1.png" + }, + { + "name":"chat_bg_bg2_png", + "type":"image", + "url":"assets/bg/chat_bg_bg2.png" + }, + { + "name":"chat_bg_tc1_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1.png" + }, + { + "name":"chat_bg_tc2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc2.png" + }, + { + "name":"com_bg_beibao_png", + "type":"image", + "url":"assets/bg/com_bg_beibao.png" + }, + { + "name":"com_bg_kuang_2_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_2.png" + }, + { + "name":"kbg_1_png", + "type":"image", + "url":"assets/bg/kbg_1.png" + }, + { + "name":"kbg_2_png", + "type":"image", + "url":"assets/bg/kbg_2.png" + }, + { + "name":"kbg_3_png", + "type":"image", + "url":"assets/bg/kbg_3.png" + }, + { + "name":"kbg_3_1_png", + "type":"image", + "url":"assets/bg/kbg_3_1.png" + }, + { + "name":"kbg_4_png", + "type":"image", + "url":"assets/bg/kbg_4.png" + }, + { + "name":"liebiaoding_bg_png", + "type":"image", + "url":"assets/bg/liebiaoding_bg.png" + }, + { + "name":"login_bg2_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg2.jpg" + }, + { + "name":"createRole_json", + "subkeys":"avatar_bg,create_btn_fanhui,login_btn,login_btn1,login_ds_1,login_ds_2,login_fs_1,login_fs_2,login_nan_1,login_nan_2,login_nv_1,login_nv_2,login_suiji,login_xuanzhong,login_zs_1,login_zs_2", + "type":"sheet", + "url":"assets/CreateRole/createRole.json" + }, + { + "name":"mail_json", + "subkeys":"mail_bg,mail_bx,mail_com,mail_tab_1,mail_tab_2,mail_xian", + "type":"sheet", + "url":"assets/mail/mail.json" + }, + { + "name":"meridians_json", + "subkeys":"Meridians_bg,Meridians_dian_1,Meridians_dian_2,Meridians_jie_0,Meridians_jie_1,Meridians_jie_10,Meridians_jie_11,Meridians_jie_2,Meridians_jie_3,Meridians_jie_4,Meridians_jie_5,Meridians_jie_6,Meridians_jie_7,Meridians_jie_8,Meridians_jie_9,Meridians_jie_bg1,Meridians_jie_bg2,Meridians_jie_ji,Meridians_jie_jie,Meridians_xian_1,Meridians_xian_2", + "type":"sheet", + "url":"assets/meridians/meridians.json" + }, + { + "name":"login_bg_jpg", + "type":"image", + "url":"assets/login/login_bg.jpg" + }, + { + "name":"LOGO_png", + "type":"image", + "url":"assets/login/LOGO.png" + }, + { + "name":"Login_json", + "subkeys":"Login_guanbi,login_jdt_k,login_jdt_t,login_wenzi1,login_wenzi2,login_wenzi3,login_wenzi4,login_wenzi5", + "type":"sheet", + "url":"assets/login/Login.json" + }, + { + "name":"chuangjian_mp3", + "type":"sound", + "url":"assets/sound/loading/chuangjian.mp3" + }, + { + "name":"dengdai_mp3", + "type":"sound", + "url":"assets/sound/loading/dengdai.mp3" + }, + { + "name":"kaimen_mp3", + "type":"sound", + "url":"assets/sound/loading/kaimen.mp3" + }, + { + "name":"xuanze_mp3", + "type":"sound", + "url":"assets/sound/loading/xuanze.mp3" + }, + { + "name":"activityCopies_json", + "subkeys":"Act_biaoti_1,Act_biaoti_2,Act_biaoti_cjxg,Act_biaoti_clfb,Act_biaoti_dcty,Act_biaoti_dxdb,Act_biaoti_jjdld,Act_biaoti_jjtgsj,Act_biaoti_sbkgc,Act_biaoti_scl,Act_biaoti_sjboss,Act_biaoti_sjjd,Act_biaoti_smdb,Act_biaoti_smsz,Act_biaoti_smsztz,Act_biaoti_yzwms,Act_biaoti_zsrw,Act_chakan,Act_dld_djs,Act_dld_icon,Act_dld_icon2,Act_dld_pmbt,Act_dld_pmmb,Act_gengduo,Act_hdk1,Act_jlyl,Act_jlyl_bg,Act_mobai_biaotibg,Act_pm_1,Act_pm_2,Act_pm_3,Avt_sjjd_bg2,Avt_sjjd_bg3,a,act_clfbt_1,act_clfbt_2,act_hdjj,act_icon1,act_icon10,act_icon11,act_icon12,act_icon13,act_icon14,act_icon15,act_icon16,act_icon2,act_icon3,act_icon4,act_icon5,act_icon6,act_icon7,act_icon8,act_icon9,act_tab1,act_tab2,act_tab3,act_tab4,act_tab_competitive1,act_tab_competitive2,act_tab_daily1,act_tab_daily2,act_tab_js1,act_tab_js2,act_tab_passion1,act_tab_passion2,act_tab_personal1,act_tab_personal2,act_zsrwt_1,actpm_tab_jf1,actpm_tab_jf2,actpm_tab_jl1,actpm_tab_jl2,actpm_tab_pm1,actpm_tab_pm2,y", + "type":"sheet", + "url":"assets/activityCopies/activityCopies.json" + }, + { + "name":"achievement_json", + "subkeys":"ach_bg1,ach_jiantou,ach_namebg,ach_sjtj,ach_sjxh,ach_xunzhangbg,ach_xzsj,ach_yidacheng,ach_zhuangshi", + "type":"sheet", + "url":"assets/achievement/achievement.json" + }, + { + "name":"shengji_mp3", + "type":"sound", + "url":"assets/sound/other/shengji.mp3" + }, + { + "name":"boss_json", + "subkeys":"boss_canyu,boss_diaoluo,boss_fengexian,boss_guishu,boss_gw_bg,boss_gw_bg2,boss_gw_bg3,boss_gw_jb,boss_gw_yb,boss_head_p_1_0,boss_head_p_1_1,boss_head_p_2_0,boss_head_p_2_1,boss_head_p_3_0,boss_head_p_3_1,boss_hp_1,boss_hp_2,boss_k_1,boss_k_2,boss_shoutong,boss_tab_Lord1,boss_tab_Lord2,boss_tab_classic1,boss_tab_classic2,boss_tab_jindi1,boss_tab_jindi2,boss_tab_reinstall1,boss_tab_reinstall2,boss_xinxi,boss_xuetiao_1,boss_xuetiao_bg,boss_yeqian_bg1,boss_yeqian_bg2,boss_yeqian_bg3,boss_yeqian_bg4,boss_yeqian_bg5,boss_yongdou,boss_zs_bg,bs_tq_1,bs_tq_2,bs_tq_3,bs_tq_4,bs_tq_5", + "type":"sheet", + "url":"assets/boss/boss.json" + }, + { + "name":"result_json", + "subkeys":"result_btn,result_lost,result_lost1,result_lost2,result_lost3,result_win,result_win1,result_win2", + "type":"sheet", + "url":"assets/result/result.json" + }, + { + "name":"Act_hdbg1_1_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_1.png" + }, + { + "name":"Act_hdbg1_jjdld_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_jjdld.png" + }, + { + "name":"Act_hdbg2_1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_1.png" + }, + { + "name":"Act_hdbg2_2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_2.png" + }, + { + "name":"Act_hdk2_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdk2.png" + }, + { + "name":"Act_mobai_jsbg_png", + "type":"image", + "url":"assets/activityCopies/mobai/Act_mobai_jsbg.png" + }, + { + "name":"Act_hdbg2_smsz_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smsz.png" + }, + { + "name":"Act_hdbg2_sjjd_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_sjjd.png" + }, + { + "name":"Avt_sjjd_bg1_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Avt_sjjd_bg1.png" + }, + { + "name":"receive_fnt", + "type":"font", + "url":"assets/image/public/receive.fnt" + }, + { + "name":"Act_hdbg1_sbkgc_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sbkgc.png" + }, + { + "name":"Act_hdbg1_yzwms_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_yzwms.png" + }, + { + "name":"Act_hdbg2_cjxg_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_cjxg.png" + }, + { + "name":"Act_hdbg2_jjtgsj_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_jjtgsj.png" + }, + { + "name":"Act_hdbg2_scl_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_scl.png" + }, + { + "name":"Act_hdbg2_smdb_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_smdb.png" + }, + { + "name":"monster_json", + "subkeys":"monhead30001,monhead30002,monhead30003,monhead30004,monhead30005,monhead30006,monhead30007,monhead30008,monhead30009,monhead30010,monhead30011,monhead30012,monhead30013,monhead30014,monhead30015,monhead30016,monhead30017,monhead30018,monhead30019,monhead30020,monhead30021,monhead30022,monhead30023,monhead30024,monhead30025,monhead30026,monhead30027,monhead30028,monhead30029,monhead30030,monhead30031,monhead30032,monhead30033,monhead30034,monhead30035,monhead30036,monhead30037,monhead30038,monhead30039,monhead30040,monhead30041,monhead30042,monhead30043,monhead30044,monhead30045,monhead30046,monhead30047,monhead30048,monhead30049,monhead30050,monhead30051,monhead30052,monhead30053,monhead30054,monhead30055,monhead30056,monhead30057,monhead30058,monhead30059,monhead30060,monhead30061,monhead30062,monhead30063,monhead30064,monhead30065,monhead30066,monhead30067,monhead30068,monhead30069,monhead30070,monhead30071,monhead30072,monhead30075,monhead30076,monhead30077,monhead30078,monhead30079,monhead30082,monhead30083,monhead30084,monhead30085,monhead30086,monhead30087,monhead30089,monhead30090,monhead30091,monhead30092,monhead30093,monhead30094,monhead30095,monhead30096,monhead30097,monhead30098,monhead30099,monhead30100,monhead30101,monhead30102,monhead30103,monhead30104,monhead30105,monhead30106,monhead30107,monhead30108,monhead30109,monhead30110,monhead30111,monhead30112,monhead30113,monhead30114,monhead30116,monhead30117,monhead30118,monhead30119,monhead30120,monhead30122,monhead30159,monhead30160,monhead30161,monhead30162,monhead30163,monhead30164,monhead30165,monhead30168,monhead30169,monhead30170,monhead30171,monhead30172,monhead30173,monhead30174,monhead30175,monhead30176,monhead30177,monhead30178,monhead30179,monhead30180,monhead30181,monhead30182,monhead30183,monhead30184", + "type":"sheet", + "url":"assets/image/monster/monster.json?v=1" + }, + { + "name":"m_bywd_1_mp3", + "type":"sound", + "url":"assets/sound/monster/m_bywd_1.mp3" + }, + { + "name":"m_ymcz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_ymcz_1.mp3" + }, + { + "name":"hair001_0_png", + "type":"image", + "url":"assets/image/model/hair/hair001_0.png" + }, + { + "name":"hair001_1_png", + "type":"image", + "url":"assets/image/model/hair/hair001_1.png" + }, + { + "name":"hair007_0_png", + "type":"image", + "url":"assets/image/model/hair/hair007_0.png" + }, + { + "name":"hair007_1_png", + "type":"image", + "url":"assets/image/model/hair/hair007_1.png" + }, + { + "name":"helmet_12000_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12000.png" + }, + { + "name":"helmet_12001_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12001.png" + }, + { + "name":"helmet_12002_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12002.png" + }, + { + "name":"helmet_12003_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12003.png" + }, + { + "name":"helmet_12004_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12004.png" + }, + { + "name":"helmet_12005_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12005.png" + }, + { + "name":"helmet_12006_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12006.png" + }, + { + "name":"helmet_12007_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12007.png" + }, + { + "name":"helmet_12008_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12008.png" + }, + { + "name":"helmet_12009_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12009.png" + }, + { + "name":"helmet_12010_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12010.png" + }, + { + "name":"helmet_12011_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12011.png" + }, + { + "name":"helmet_12012_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12012.png" + }, + { + "name":"helmet_12013_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12013.png" + }, + { + "name":"helmet_12014_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_12014.png" + }, + { + "name":"helmet_13112_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13112.png" + }, + { + "name":"weapon_10000_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10000.png" + }, + { + "name":"weapon_10001_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10001.png" + }, + { + "name":"weapon_10002_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10002.png" + }, + { + "name":"weapon_10003_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10003.png" + }, + { + "name":"weapon_10004_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10004.png" + }, + { + "name":"weapon_10005_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10005.png" + }, + { + "name":"weapon_10006_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10006.png" + }, + { + "name":"weapon_10007_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10007.png" + }, + { + "name":"weapon_10008_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10008.png" + }, + { + "name":"weapon_10009_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10009.png" + }, + { + "name":"weapon_10010_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10010.png" + }, + { + "name":"weapon_10011_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10011.png" + }, + { + "name":"weapon_10012_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10012.png" + }, + { + "name":"weapon_10013_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10013.png" + }, + { + "name":"weapon_10014_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10014.png" + }, + { + "name":"weapon_10015_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10015.png" + }, + { + "name":"weapon_10016_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10016.png" + }, + { + "name":"weapon_10017_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10017.png" + }, + { + "name":"weapon_10018_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10018.png" + }, + { + "name":"weapon_10019_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10019.png" + }, + { + "name":"weapon_10020_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10020.png" + }, + { + "name":"weapon_10021_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10021.png" + }, + { + "name":"weapon_10022_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10022.png" + }, + { + "name":"weapon_10023_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10023.png" + }, + { + "name":"weapon_10024_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10024.png" + }, + { + "name":"weapon_10025_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10025.png" + }, + { + "name":"weapon_10026_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10026.png" + }, + { + "name":"weapon_10027_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10027.png" + }, + { + "name":"weapon_10028_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10028.png" + }, + { + "name":"weapon_10029_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10029.png" + }, + { + "name":"weapon_10030_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10030.png" + }, + { + "name":"weapon_10031_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10031.png" + }, + { + "name":"weapon_10032_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10032.png" + }, + { + "name":"weapon_10033_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10033.png" + }, + { + "name":"weapon_10034_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10034.png" + }, + { + "name":"weapon_10035_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10035.png" + }, + { + "name":"weapon_10036_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10036.png" + }, + { + "name":"weapon_10037_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10037.png" + }, + { + "name":"weapon_10038_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10038.png" + }, + { + "name":"weapon_10039_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10039.png" + }, + { + "name":"weapon_10040_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10040.png" + }, + { + "name":"weapon_10041_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10041.png" + }, + { + "name":"weapon_10042_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10042.png" + }, + { + "name":"weapon_10043_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10043.png" + }, + { + "name":"weapon_10044_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10044.png" + }, + { + "name":"weapon_10045_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_10045.png" + }, + { + "name":"hp_fnt_fnt", + "type":"font", + "url":"assets/image/public/hp_fnt.fnt" + }, + { + "name":"chuansonglikai_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansonglikai.mp3" + }, + { + "name":"chuansongziji_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/chuansongziji.mp3" + }, + { + "name":"m_bpx_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_1.mp3" + }, + { + "name":"m_bpx_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_bpx_3.mp3" + }, + { + "name":"m_csjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_csjs_1.mp3" + }, + { + "name":"m_dylg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_dylg_1.mp3" + }, + { + "name":"m_gsjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_gsjs_1.mp3" + }, + { + "name":"m_hbz_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_1.mp3" + }, + { + "name":"m_hbz_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_2.mp3" + }, + { + "name":"m_hbz_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hbz_3.mp3" + }, + { + "name":"m_hq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_1.mp3" + }, + { + "name":"m_hq_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hq_3.mp3" + }, + { + "name":"m_hqs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_1.mp3" + }, + { + "name":"m_hqs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_2.mp3" + }, + { + "name":"m_hqs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_hqs_3.mp3" + }, + { + "name":"m_jgdy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jgdy_3.mp3" + }, + { + "name":"m_jtyss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_1.mp3" + }, + { + "name":"m_jtyss_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_2.mp3" + }, + { + "name":"m_jtyss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_jtyss_3.mp3" + }, + { + "name":"m_kjhh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_kjhh_1.mp3" + }, + { + "name":"m_lds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lds_3.mp3" + }, + { + "name":"m_lhhf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_1.mp3" + }, + { + "name":"m_lhhf_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_2.mp3" + }, + { + "name":"m_lhhf_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhhf_3.mp3" + }, + { + "name":"m_lhjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lhjf_1.mp3" + }, + { + "name":"m_lxhy_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_1.mp3" + }, + { + "name":"m_lxhy_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_lxhy_3.mp3" + }, + { + "name":"m_mfd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mfd_1.mp3" + }, + { + "name":"m_mth_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_mth_3.mp3" + }, + { + "name":"m_qtzys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_qtzys_3.mp3" + }, + { + "name":"m_sds_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_1.mp3" + }, + { + "name":"m_sds_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sds_3.mp3" + }, + { + "name":"m_sszjs_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_1.mp3" + }, + { + "name":"m_sszjs_2_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_2.mp3" + }, + { + "name":"m_sszjs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sszjs_3.mp3" + }, + { + "name":"m_sxs_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxs_3.mp3" + }, + { + "name":"m_sxyd_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_sxyd_1.mp3" + }, + { + "name":"m_szh_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_szh_1.mp3" + }, + { + "name":"m_wjzq_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_wjzq_1.mp3" + }, + { + "name":"m_yhzg_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_1.mp3" + }, + { + "name":"m_yhzg_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yhzg_3.mp3" + }, + { + "name":"m_yss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_yss_1.mp3" + }, + { + "name":"m_zhkl_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_1.mp3" + }, + { + "name":"m_zhkl_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhkl_3.mp3" + }, + { + "name":"m_zhss_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_1.mp3" + }, + { + "name":"m_zhss_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zhss_3.mp3" + }, + { + "name":"m_zrjf_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zrjf_1.mp3" + }, + { + "name":"m_zys_1_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_1.mp3" + }, + { + "name":"m_zys_3_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/m_zys_3.mp3" + }, + + { + "name":"attack_male_mp3", + "type":"sound", + "url":"assets/sound/character/attack_male.mp3" + }, + { + "name":"attack_female_mp3", + "type":"sound", + "url":"assets/sound/character/attack_female.mp3" + }, + + { + "name":"dead_male_mp3", + "type":"sound", + "url":"assets/sound/character/dead_male.mp3" + }, + { + "name":"dead_female_mp3", + "type":"sound", + "url":"assets/sound/character/dead_female.mp3" + }, + + { + "name":"injure_male_mp3", + "type":"sound", + "url":"assets/sound/character/injure_male.mp3" + }, + { + "name":"injure_female_mp3", + "type":"sound", + "url":"assets/sound/character/injure_female.mp3" + }, + + { + "name":"task_complete_mp3", + "type":"sound", + "url":"assets/sound/character/task_complete.mp3" + }, + + { + "name":"Act_hdbg1_dcty_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_dcty.png" + }, + { + "name":"load_Reel_png", + "type":"image", + "url":"assets/image/public/load_Reel.png" + }, + { + "name":"yingzi_png", + "type":"image", + "url":"assets/image/public/yingzi.png" + }, + { + "name":"Act_hdbg1_sjboss_png", + "type":"image", + "url":"assets/activityCopies/activity1Bg/Act_hdbg1_sjboss.png" + }, + { + "name":"mapmini_png", + "type":"image", + "url":"assets/image/public/mapmini.png" + }, + { + "name":"actypay_json", + "subkeys":"apay_bannert_chfl,apay_biaoti_jchd,apay_biaoti_kftz,apay_time_bg,apay_yishouwan,biaoti_chongyangxianrui,biaoti_ganenjie,biaoti_guanggunjie,biaoti_shuangshiqingdian,biaoti_shuangshiyi,biaoti_wanshengjie,biaoti_zhongqiujiajie,biaoti_zhufuguoqing,festival_dw,festival_hd,festival_ql,festival_sx,festival_tq,festival_xiala,festival_zm,festival_zn,hfhd_wenzi", + "type":"sheet", + "url":"assets/actypay/actypay.json" + }, + { + "name":"firstcharge_json", + "subkeys":"fc_bg2,fc_btn_1,fc_btn_2,fc_p_2,fc_t3,fc_t4,fc_t5,fc_t6,fc_yilingqu,weapon_bottom_bg", + "type":"sheet", + "url":"assets/firstcharge/firstcharge.json" + }, + { + "name":"huanying_bg_1_png", + "type":"image", + "url":"assets/main/huanying_bg_1.png" + }, + { + "name":"huanying_bg_2_png", + "type":"image", + "url":"assets/main/huanying_bg_2.png" + }, + { + "name":"huanying_bg_3_png", + "type":"image", + "url":"assets/main/huanying_bg_3.png" + }, + { + "name":"huanying_bg_4_png", + "type":"image", + "url":"assets/main/huanying_bg_4.png" + }, + { + "name":"bq_bg1_png", + "type":"image", + "url":"assets/main/bq_bg1.png" + }, + { + "name":"open_bg_png", + "type":"image", + "url":"assets/main/open_bg.png" + }, + { + "name":"apay_bg_png", + "type":"image", + "url":"assets/bg/apay_bg.png" + }, + { + "name":"sixiang_json", + "subkeys":"jiejikuang,sx_icon_1,sx_icon_2,sx_icon_3,sx_icon_4,sx_jiantou,t_sx_0,t_sx_1,t_sx_10,t_sx_2,t_sx_3,t_sx_4,t_sx_5,t_sx_6,t_sx_7,t_sx_8,t_sx_9,t_sx_bai,t_sx_hu,t_sx_hun,t_sx_jie,t_sx_long,t_sx_qing,t_sx_que,t_sx_wu,t_sx_xing,t_sx_xuan,t_sx_zhi,t_sx_zhu,一,七,三,九,二,五,八,六,十,四,阶,零", + "type":"sheet", + "url":"assets/role/sixiang.json" + }, + { + "name":"sixiangfnt_fnt", + "type":"font", + "url":"assets/image/public/sixiangfnt.fnt" + }, + { + "name":"fl_jhm_bg_png", + "type":"image", + "url":"assets/fuli/fl_jhm_bg.png" + }, + { + "name":"qd_bg_png", + "type":"image", + "url":"assets/fuli/qd_bg.png" + }, + { + "name":"qr_bg_png", + "type":"image", + "url":"assets/fuli/qr_bg.png" + }, + { + "name":"wlelfare_json", + "subkeys":"biaoti_fuli,fl_jhm_btn_1,fl_jhm_btn_2,flqd_bg0,flqd_bg1,flqd_bg2,flqd_bg3,flqd_djqd,flqd_qd1,flqd_qd2,flqd_tab1,flqd_tab2,qd_t_1_0,qd_t_1_1,qd_t_1_2,qd_t_1_3,qd_t_1_4,qd_t_1_5,qd_t_1_6,qd_t_1_7,qd_t_1_8,qd_t_1_9,qd_t_2_0,qd_t_2_1,qd_t_2_2,qd_t_2_3,qd_t_2_4,qd_t_2_5,qd_t_2_6,qd_t_2_7,qd_t_2_8,qd_t_2_9,qd_t_3_1,qd_t_3_2,qd_t_3_3,qd_t_3_4,qd_t_3_5,qd_t_3_6,qd_t_3_7,qd_t_3_z,qd_t_jin,qd_t_leiji,qd_t_yue,qd_yeqian1,qd_yeqian2,qd_yiqiandao,qr_bg2,qr_p_1,qr_p_2,qr_p_3,qr_p_yilingqu,qr_t1_1,qr_t1_2,qr_t1_3,qr_t1_4,qr_t1_5,qr_t1_6,qr_t1_7,qr_t2_1,qr_t2_2,qr_t2_3,qr_t2_4,qr_t2_5,qr_t2_6,qr_t2_7,yk_30tian,yk_30tian2,yk_biaoqian_0,yk_biaoqian_1,yk_biaoqian_2,yk_biaoqian_3,yk_biaoqian_4,yk_btn,yk_dian,yk_icon1,yk_icon2,yk_icon3,yk_icon4,yqs_btn,yqs_wz", + "type":"sheet", + "url":"assets/fuli/wlelfare.json" + }, + { + "name":"signNum_1_fnt", + "type":"font", + "url":"assets/image/public/signNum_1.fnt" + }, + { + "name":"signNum_2_fnt", + "type":"font", + "url":"assets/image/public/signNum_2.fnt" + }, + { + "name":"signNum_3_fnt", + "type":"font", + "url":"assets/image/public/signNum_3.fnt" + }, + { + "name":"yk_bg_png", + "type":"image", + "url":"assets/fuli/yk_bg.png" + }, + { + "name":"openServer_json", + "subkeys":"biaoti_cangjingge,biaoti_kaifuhaoli,biaoti_kaifujingji,biaoti_xunbao,kf_jj_bqbg,kf_kftz_yb,kf_lb_bg2,kf_lb_jt1,kf_lb_jt2,kf_lb_k,kf_lb_k2,kf_lb_k3,kf_lb_p1,kf_lb_p2,kf_lb_p3,kf_lb_p4,kf_lb_p5,kf_lb_p6,kf_lb_t1,kf_lb_t2,kf_lb_t3,kf_lb_t4,kf_lb_t5,kf_lb_t6,kf_lb_yigoumai,kf_slcj,kf_xb_bg2,kf_xb_bg3,kf_xb_bt,kf_xb_bt2,kf_xb_p1,kf_xb_t1,kf_xb_t2,kf_xbbt,kf_xybt", + "type":"sheet", + "url":"assets/openServer/openServer.json" + }, + { + "name":"ring_json", + "subkeys":"btn_sj_1_d,btn_sj_1_u,btn_sj_2_d,btn_sj_2_u,btn_sj_3_d,btn_sj_3_u,btn_sj_4_d,btn_sj_4_u,btn_sj_5_d,btn_sj_5_u,btn_sj_6_d,btn_sj_6_u,icon_ring_1,icon_ring_2,icon_ring_3,icon_ring_4,icon_ring_xuanzhong,ring_jiantou_1,ring_jiantou_2,t_ring,t_ring2,t_ring3,t_ring4,t_ring5,t_ring6,t_ring7,tbg_ring", + "type":"sheet", + "url":"assets/ring/ring.json" + }, + { + "name":"title_json", + "subkeys":"ch_NPC2_001,ch_NPC2_002,ch_NPC2_003,ch_NPC2_004,ch_NPC2_005,ch_NPC2_006,ch_NPC2_007,ch_NPC2_008,ch_NPC2_009,ch_NPC2_010,ch_NPC2_011,ch_NPC2_012,ch_NPC2_013,ch_NPC2_014,ch_NPC2_015,ch_NPC2_016,ch_NPC2_017,ch_NPC2_018,ch_NPC2_019,ch_NPC3_001,ch_NPC3_002,ch_NPC3_003,ch_NPC3_004,ch_NPC3_005,ch_NPC3_006,ch_NPC3_007,ch_NPC3_008,ch_NPC3_009,ch_NPC3_010,ch_NPC3_011,ch_NPC3_012,ch_NPC3_013,ch_NPC3_014,ch_NPC3_015,ch_NPC3_016,ch_NPC3_017,ch_NPC3_018,ch_NPC3_019,ch_NPC3_020,ch_NPC3_021,ch_NPC3_022,ch_NPC3_023,ch_NPC3_024,ch_NPC3_025,ch_NPC3_026,ch_NPC3_027,ch_NPC3_028,ch_NPC3_029,ch_NPC3_030,ch_NPC3_031,ch_NPC3_032,ch_NPC3_033,ch_NPC3_034,ch_NPC3_035,ch_NPC3_036,ch_NPC3_037,ch_NPC3_038,ch_NPC3_039,ch_NPC3_040,ch_NPC3_041,ch_NPC3_042,ch_NPC3_043,ch_NPC3_044,ch_NPC3_045,ch_NPC_001,ch_NPC_002,ch_NPC_003,ch_NPC_004,ch_NPC_005,ch_NPC_006,ch_NPC_007,ch_NPC_008,ch_NPC_009,ch_NPC_010,ch_NPC_011,ch_NPC_012,ch_NPC_013,ch_NPC_014,ch_NPC_015,ch_NPC_016,ch_NPC_017,ch_NPC_018,ch_NPC_019,ch_NPC_020,ch_NPC_021,ch_show_001,ch_show_0010,ch_show_0011,ch_show_0012,ch_show_0013,ch_show_0014,ch_show_0015,ch_show_0016,ch_show_0017,ch_show_0018,ch_show_0019,ch_show_002,ch_show_0020,ch_show_0021,ch_show_0022,ch_show_0023,ch_show_0024,ch_show_0025,ch_show_0026,ch_show_0027,ch_show_0028,ch_show_0029,ch_show_003,ch_show_0030,ch_show_0031,ch_show_0032,ch_show_0033,ch_show_0034,ch_show_0035,ch_show_0036,ch_show_0037,ch_show_0038,ch_show_0039,ch_show_004,ch_show_0040,ch_show_0041,ch_show_0042,ch_show_0043,ch_show_0044,ch_show_0045,ch_show_0046,ch_show_0047,ch_show_0048,ch_show_0049,ch_show_005,ch_show_0050,ch_show_0051,ch_show_0052,ch_show_0053,ch_show_0054,ch_show_0055,ch_show_0056,ch_show_0057,ch_show_0058,ch_show_0059,ch_show_006,ch_show_0060,ch_show_0061,ch_show_0062,ch_show_0063,ch_show_0064,ch_show_0065,ch_show_0066,ch_show_0067,ch_show_0068,ch_show_0069,ch_show_007,ch_show_0070,ch_show_0071,ch_show_0072,ch_show_0073,ch_show_0074,ch_show_0075,ch_show_0076,ch_show_0077,ch_show_0078,ch_show_0079,ch_show_008,ch_show_009,rage_ch,rw_sign_1,rw_sign_2", + "type":"sheet", + "url":"assets/image/title/title.json" + }, + { + "name":"kf_lb_bg1_png", + "type":"image", + "url":"assets/openServer/kf_lb_bg1.png" + }, + { + "name":"kf_xb_bg_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg.png" + }, + { + "name":"fcm_bg_png", + "type":"image", + "url":"assets/bg/fcm_bg.png" + }, + { + "name":"war_json", + "subkeys":"zl_bgk1,zl_biaoti,zl_btn_chakan,zl_hd_1,zl_hd_2,zl_hd_3,zl_hd_4,zl_iconk,zl_iconzw,zl_p_1,zl_p_2,zl_p_3,zl_pzp2,zl_t_yihuode,zl_t_yiwancheng,zl_weijihuo,zl_xian_1,zl_xian_2", + "type":"sheet", + "url":"assets/war/war.json" + }, + { + "name":"zl_bg_png", + "type":"image", + "url":"assets/war/zl_bg.png" + }, + { + "name":"Act_hdbg2_clfb_png", + "type":"image", + "url":"assets/activityCopies/activity12/Act_hdbg2_clfb.png" + }, + { + "name":"act_clfbbg_0_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_0.png" + }, + { + "name":"act_clfbbg_1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_1.png" + }, + { + "name":"act_clfbbg_2_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_2.png" + }, + { + "name":"act_clfbbg_3_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_3.png" + }, + { + "name":"act_clfbbg_4_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_clfbbg_4.png" + }, + { + "name":"activity12_json", + "subkeys":"act_clfbbg", + "type":"sheet", + "url":"assets/activityCopies/activity12/activity12.json" + }, + { + "name":"Act_hdbg2_zsrw_png", + "type":"image", + "url":"assets/activityCopies/activity2Bg/Act_hdbg2_zsrw.png" + }, + { + "name":"act_zsrwbg1_png", + "type":"image", + "url":"assets/activityCopies/activity12/act_zsrwbg1.png" + }, + { + "name":"YYLobby_json", + "subkeys":"CW_banner,CW_bg,CW_bt,CW_t1,CW_t2,CW_t3,WX_bt,YY_banner,YY_banner2,YY_bg4,YY_bg5,YY_bt,YY_bt1,YY_btn_ljkt,YY_btn_ljlq,YY_btn_ljlq2,YY_hongxian,YY_t_hy0,YY_t_hy1,YY_t_hy2,YY_t_hy3,YY_t_hy4,YY_t_hy5,YY_t_hy6,YY_t_hy7,YY_t_hy8,YY_t_hy9,YY_t_hydj,YY_t_ljxz,YY_t_wkt,YY_t_xslb,YY_tab1,YY_tab2,kf_fanye_rcfl1,kf_fanye_rcfl2,kf_fanye_xfhl1,kf_fanye_xfhl2,logo_chaowan", + "type":"sheet", + "url":"assets/YY/YYLobby.json" + }, + { + "name":"YY_bg_png", + "type":"image", + "url":"assets/YY/YY_bg.png" + }, + { + "name":"YY_bg3_png", + "type":"image", + "url":"assets/YY/YY_bg3.png" + }, + { + "name":"YY_bg2_png", + "type":"image", + "url":"assets/YY/YY_bg2.png" + }, + { + "name":"YY_bg6_png", + "type":"image", + "url":"assets/YY/YY_bg6.png" + }, + { + "name":"wx_bg_png", + "type":"image", + "url":"assets/YY/wx_bg.png" + }, + { + "name":"getProps_json", + "subkeys":"get_bg,get_bg2,get_bg3,get_icon_1,get_icon_10,get_icon_11,get_icon_12,get_icon_13,get_icon_2,get_icon_3,get_icon_4,get_icon_5,get_icon_6,get_icon_7,get_icon_8,get_icon_9,get_jj1,get_jj2,get_tj", + "type":"sheet", + "url":"assets/getProps/getProps.json" + }, + { + "name":"sczhiyin_png", + "type":"image", + "url":"assets/main/sczhiyin.png" + }, + { + "name":"Timing_json", + "subkeys":"timing_bg1,timing_bg2,timing_btn,timing_tsjl", + "type":"sheet", + "url":"assets/timing/Timing.json" + }, + { + "name":"vip_json", + "subkeys":"biaoti_hytq,tq_bg4,tq_bg5,tq_btn,tq_btn1,tq_btnt1,tq_btnt10,tq_btnt11,tq_btnt12,tq_btnt13,tq_btnt14,tq_btnt14_2,tq_btnt14_3,tq_btnt14_4,tq_btnt14_5,tq_btnt15,tq_btnt16,tq_btnt2,tq_btnt3,tq_btnt4,tq_btnt5,tq_btnt6,tq_btnt6_1,tq_btnt7,tq_btnt8,tq_btnt9,tq_icon_0,tq_icon_1,tq_icon_2,tq_icon_3,tq_icon_4,tq_icon_5,tq_icon_6,tq_icon_7,tq_jdt,tq_jdtk,tq_jlt1,tq_jlt2,tq_jlt3,tq_jlt4,tq_jlt5,tq_jlt6,tq_jlt7,tq_lb_jt1,tq_lb_jt2,tq_sf_f,tq_sf_s,tq_tab1,tq_tab2,tq_tabbg1,tq_tabbg2,tq_top_fenge,tq_zxhl", + "type":"sheet", + "url":"assets/vip/vip.json" + }, + { + "name":"levelnumber_fnt", + "type":"font", + "url":"assets/common/levelnumber.fnt" + }, + { + "name":"weapon_13296_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13296.png" + }, + { + "name":"weapon_13317_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13317.png" + }, + { + "name":"weapon_13318_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13318.png" + }, + { + "name":"skillbg2_png", + "type":"image", + "url":"assets/bg/skillbg2.png" + }, + { + "name":"body012_0_png", + "type":"image", + "url":"assets/image/model/body/body012_0.png" + }, + { + "name":"body012_1_png", + "type":"image", + "url":"assets/image/model/body/body012_1.png" + }, + { + "name":"body013_0_png", + "type":"image", + "url":"assets/image/model/body/body013_0.png" + }, + { + "name":"body013_1_png", + "type":"image", + "url":"assets/image/model/body/body013_1.png" + }, + { + "name":"body014_0_png", + "type":"image", + "url":"assets/image/model/body/body014_0.png" + }, + { + "name":"body014_1_png", + "type":"image", + "url":"assets/image/model/body/body014_1.png" + }, + { + "name":"body015_0_png", + "type":"image", + "url":"assets/image/model/body/body015_0.png" + }, + { + "name":"body020_0_png", + "type":"image", + "url":"assets/image/model/body/body020_0.png" + }, + { + "name":"body015_1_png", + "type":"image", + "url":"assets/image/model/body/body015_1.png" + }, + { + "name":"body011_1_png", + "type":"image", + "url":"assets/image/model/body/body011_1.png" + }, + { + "name":"body021_0_png", + "type":"image", + "url":"assets/image/model/body/body021_0.png" + }, + { + "name":"body021_1_png", + "type":"image", + "url":"assets/image/model/body/body021_1.png" + }, + { + "name":"body022_1_png", + "type":"image", + "url":"assets/image/model/body/body022_1.png" + }, + { + "name":"body023_0_png", + "type":"image", + "url":"assets/image/model/body/body023_0.png" + }, + { + "name":"body023_1_png", + "type":"image", + "url":"assets/image/model/body/body023_1.png" + }, + { + "name":"body022_0_png", + "type":"image", + "url":"assets/image/model/body/body022_0.png" + }, + { + "name":"body024_0_png", + "type":"image", + "url":"assets/image/model/body/body024_0.png" + }, + { + "name":"body027_0_png", + "type":"image", + "url":"assets/image/model/body/body027_0.png" + }, + { + "name":"body020_1_png", + "type":"image", + "url":"assets/image/model/body/body020_1.png" + }, + { + "name":"body027_1_png", + "type":"image", + "url":"assets/image/model/body/body027_1.png" + }, + { + "name":"body001_0_png", + "type":"image", + "url":"assets/image/model/body/body001_0.png" + }, + { + "name":"body001_1_png", + "type":"image", + "url":"assets/image/model/body/body001_1.png" + }, + { + "name":"body024_1_png", + "type":"image", + "url":"assets/image/model/body/body024_1.png" + }, + { + "name":"body002_1_png", + "type":"image", + "url":"assets/image/model/body/body002_1.png" + }, + { + "name":"body003_0_png", + "type":"image", + "url":"assets/image/model/body/body003_0.png" + }, + { + "name":"body004_0_png", + "type":"image", + "url":"assets/image/model/body/body004_0.png" + }, + { + "name":"body004_1_png", + "type":"image", + "url":"assets/image/model/body/body004_1.png" + }, + { + "name":"body005_0_png", + "type":"image", + "url":"assets/image/model/body/body005_0.png" + }, + { + "name":"body005_1_png", + "type":"image", + "url":"assets/image/model/body/body005_1.png" + }, + { + "name":"body006_0_png", + "type":"image", + "url":"assets/image/model/body/body006_0.png" + }, + { + "name":"body006_1_png", + "type":"image", + "url":"assets/image/model/body/body006_1.png" + }, + { + "name":"body007_0_png", + "type":"image", + "url":"assets/image/model/body/body007_0.png" + }, + { + "name":"body007_1_png", + "type":"image", + "url":"assets/image/model/body/body007_1.png" + }, + { + "name":"body008_0_png", + "type":"image", + "url":"assets/image/model/body/body008_0.png" + }, + { + "name":"body008_1_png", + "type":"image", + "url":"assets/image/model/body/body008_1.png" + }, + { + "name":"body009_0_png", + "type":"image", + "url":"assets/image/model/body/body009_0.png" + }, + { + "name":"body009_1_png", + "type":"image", + "url":"assets/image/model/body/body009_1.png" + }, + { + "name":"body010_0_png", + "type":"image", + "url":"assets/image/model/body/body010_0.png" + }, + { + "name":"body010_1_png", + "type":"image", + "url":"assets/image/model/body/body010_1.png" + }, + { + "name":"body011_0_png", + "type":"image", + "url":"assets/image/model/body/body011_0.png" + }, + { + "name":"body002_0_png", + "type":"image", + "url":"assets/image/model/body/body002_0.png" + }, + { + "name":"body003_1_png", + "type":"image", + "url":"assets/image/model/body/body003_1.png" + }, + { + "name":"helmet_13356_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13356.png" + }, + { + "name":"helmet_13362_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13362.png" + }, + { + "name":"num_2_fnt", + "type":"font", + "url":"assets/image/public/num_2.fnt" + }, + { + "name":"num_3_fnt", + "type":"font", + "url":"assets/image/public/num_3.fnt" + }, + { + "name":"num_4_fnt", + "type":"font", + "url":"assets/image/public/num_4.fnt" + }, + { + "name":"num_6_fnt", + "type":"font", + "url":"assets/image/public/num_6.fnt" + }, + { + "name":"numAttr_fnt", + "type":"font", + "url":"assets/image/public/numAttr.fnt" + }, + { + "name":"num_5_fnt", + "type":"font", + "url":"assets/image/public/num_5.fnt" + }, + { + "name":"task_k1_png", + "type":"image", + "url":"assets/main/task_k1.png" + }, + { + "name":"sz_bg_1_png", + "type":"image", + "url":"assets/role/sz_bg_1.png" + }, + { + "name":"transform_bg_png", + "type":"image", + "url":"assets/role/transform_bg.png" + }, + { + "name":"blessing_bg_png", + "type":"image", + "url":"assets/role/blessing_bg.png" + }, + { + "name":"Godturn_bg_png", + "type":"image", + "url":"assets/role/Godturn_bg.png" + }, + { + "name":"role_bg_png", + "type":"image", + "url":"assets/role/role_bg.png" + }, + { + "name":"qh_bg_png", + "type":"image", + "url":"assets/role/qh_bg.png" + }, + { + "name":"role_k_png", + "type":"image", + "url":"assets/role/role_k.png" + }, + { + "name":"role_sx_bg_png", + "type":"image", + "url":"assets/role/role_sx_bg.png" + }, + { + "name":"bg_sixiang_png", + "type":"image", + "url":"assets/role/bg_sixiang.png" + }, + { + "name":"bg_sixiang2_png", + "type":"image", + "url":"assets/role/bg_sixiang2.png" + }, + { + "name":"fourImage_fnt", + "type":"font", + "url":"assets/image/public/fourImage.fnt" + }, + { + "name":"growway_json", + "subkeys":"bg_czzl,czzl_t1,czzl_tab_01,czzl_tab_02,czzl_tab_11,czzl_tab_12,czzl_tab_21,czzl_tab_22,czzl_tab_31,czzl_tab_32,czzl_tab_41,czzl_tab_42,growway_jt", + "type":"sheet", + "url":"assets/growway/growway.json" + }, + { + "name":"bg_ring_png", + "type":"image", + "url":"assets/ring/bg_ring.png" + }, + { + "name":"com_bg_kuang_3_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_3.png" + }, + { + "name":"com_bg_kuang_4_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_4.png" + }, + { + "name":"bg_newNpc_png", + "type":"image", + "url":"assets/main/bg_newNpc.png" + }, + { + "name":"bag_bg_png", + "type":"image", + "url":"assets/common/bag_bg.png" + }, + { + "name":"LOGO2_png", + "type":"image", + "url":"assets/login/LOGO2.png" + }, + { + "name":"task_k2_png", + "type":"image", + "url":"assets/main/task_k2.png" + }, + { + "name":"chat_bg_tc1_2_png", + "type":"image", + "url":"assets/bg/chat_bg_tc1_2.png" + }, + { + "name":"bg_tipstc2_png", + "type":"image", + "url":"assets/bg/bg_tipstc2.png" + }, + { + "name":"rank_bg_png", + "type":"image", + "url":"assets/rank/rank_bg.png" + }, + { + "name":"bodyimgeff18_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_0.png" + }, + { + "name":"bodyimgeff18_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff18_1.png" + }, + { + "name":"bodyimgeff19_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_0.png" + }, + { + "name":"bodyimgeff19_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff19_1.png" + }, + { + "name":"bodyimgeff21_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_0.png" + }, + { + "name":"bodyimgeff21_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff21_1.png" + }, + { + "name":"bodyimgeff25_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_0.png" + }, + { + "name":"bodyimgeff25_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff25_1.png" + }, + { + "name":"bodyimgeff26_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_0.png" + }, + { + "name":"bodyimgeff26_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff26_1.png" + }, + { + "name":"bodyimgeff27_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_0.png" + }, + { + "name":"bodyimgeff27_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff27_1.png" + }, + { + "name":"hyhy_bg_png", + "type":"image", + "url":"assets/main/hyhy_bg.png" + }, + { + "name":"hyhy_btn_png", + "type":"image", + "url":"assets/main/hyhy_btn.png" + }, + { + "name":"ditutiaozhuan_mp3", + "type":"sound", + "url":"assets/sound/skilleffect/ditutiaozhuan.mp3" + }, + { + "name":"com_bg_kuang_6_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_6.png" + }, + { + "name":"com_bg_kuang_5_png", + "type":"image", + "url":"assets/bg/com_bg_kuang_5.png" + }, + { + "name":"shenmo_json", + "subkeys":"bg_shenmo,bg_sm,btn_shenmo_01,btn_shenmo_02,icon_shenmo_1,icon_shenmo_2,icon_shenmo_3,icon_shenmo_4,icon_shenmo_5,sm_jyt1,sm_jyt2,sm_p1,sm_t1,sm_t2,sm_t3,sm_t4,sm_t5,sm_t6,sm_t7,t_shenmo_1,t_shenmo_2,t_shenmo_3,t_shenmo_4,t_shenmo_5", + "type":"sheet", + "url":"assets/shenmo/shenmo.json" + }, + { + "name":"bg_huishou_png", + "type":"image", + "url":"assets/common/bg_huishou.png" + }, + { + "name":"rage_bg_png", + "type":"image", + "url":"assets/violentState/rage_bg.png" + }, + { + "name":"particle1_json", + "type":"json", + "url":"assets/image/particle/particle1.json" + }, + { + "name":"particle1_png", + "type":"image", + "url":"assets/image/particle/particle1.png" + }, + { + "name":"donationRank_json", + "subkeys":"jxpm_1,jxpm_2,jxpm_3,jxpm_4,jxpm_5,jxpm_6,jxpm_7,jxpm_banner,jxpm_bg1,jxpm_bg2", + "type":"sheet", + "url":"assets/donationRank/donationRank.json" + }, + { + "name":"helmet_13437_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13437.png" + }, + { + "name":"helmet_13438_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13438.png" + }, + { + "name":"helmet_13439_png", + "type":"image", + "url":"assets/image/model/helmet/helmet_13439.png" + }, + { + "name":"ShaChengStarcraft_json", + "subkeys":"sbk_bg2,sbk_czch1,sbk_czch2,sbk_czp1,sbk_czp2,sbk_jlcz,sbk_jlhd", + "type":"sheet", + "url":"assets/ShaChengStarcraft/ShaChengStarcraft.json" + }, + { + "name":"sbk_bg_png", + "type":"image", + "url":"assets/ShaChengStarcraft/sbk_bg.png" + }, + { + "name":"apay_bg2_png", + "type":"image", + "url":"assets/bg/apay_bg2.png" + }, + { + "name":"recharge_json", + "subkeys":"biaoti_cz,cz_10bei,cz_10bei1,cz_10bei2,cz_bg1,cz_icon1,cz_icon2,cz_icon3,cz_icon4,cz_icon5,cz_icon6,cz_icon7,cz_icon8", + "type":"sheet", + "url":"assets/recharge/recharge.json" + }, + { + "name":"num_8_fnt", + "type":"font", + "url":"assets/image/public/num_8.fnt" + }, + { + "name":"bg_gz_png", + "type":"image", + "url":"assets/role/bg_gz.png" + }, + { + "name":"LOGO3_png", + "type":"image", + "url":"assets/login/LOGO3.png" + }, + { + "name":"zjt2_png", + "type":"image", + "url":"assets/login/zjt2.png" + }, + { + "name":"zjt3_png", + "type":"image", + "url":"assets/login/zjt3.png" + }, + { + "name":"zjt1_png", + "type":"image", + "url":"assets/login/zjt1.png" + }, + { + "name":"zhuanzhi_json", + "subkeys":"biaoti_zhuanzhi,jobchange_bg,jobchange_bg2,jobchange_bg3", + "type":"sheet", + "url":"assets/zhuanzhi/zhuanzhi.json" + }, + { + "name":"sz_show_001_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_1.png" + }, + { + "name":"sz_show_002_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_1.png" + }, + { + "name":"sz_show_002_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_002_0.png" + }, + { + "name":"sz_show_001_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_001_0.png" + }, + { + "name":"sz_show_005_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_0.png" + }, + { + "name":"sz_show_005_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_005_1.png" + }, + { + "name":"sz_show_003_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_0.png" + }, + { + "name":"sz_show_003_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_003_1.png" + }, + { + "name":"sz_show_004_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_0.png" + }, + { + "name":"sz_show_004_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_004_1.png" + }, + { + "name":"cangku_bg_png", + "type":"image", + "url":"assets/Warehouse/cangku_bg.png" + }, + { + "name":"Warehouse_json", + "subkeys":"cangku_tab1,cangku_tab2,cangku_tabt1_1,cangku_tabt1_2,cangku_tabt2_1,cangku_tabt2_2,cangku_tabt3_1,cangku_tabt3_2,cangku_tabt4_1,cangku_tabt4_2,cangku_tabt5_1,cangku_tabt5_2,cangku_tabt6_1,cangku_tabt6_2", + "type":"sheet", + "url":"assets/Warehouse/Warehouse.json" + }, + { + "name":"LOG4366_png", + "type":"image", + "url":"assets/login/LOG4366.png" + }, + { + "name":"fuli4366_json", + "subkeys":"banner_4366,banner_4366vip,banner_qqdating1,biaoti_4366,btn_smczx,t_lijichongzhi", + "type":"sheet", + "url":"assets/4366/fuli4366.json" + }, + { + "name":"qqcode_png", + "type":"image", + "url":"assets/4366/qqcode.png" + }, + { + "name":"loding_png", + "type":"image", + "url":"assets/login/loding.png" + }, + { + "name":"qqBlueDiamond_json", + "subkeys":"banner_lzchongzhi,banner_lzshangcheng,banner_lztequan,biaoti_lztequan,lz_czhuaxian,lz_ktlzbt,lz_ktnflzbt,lz_lzxinshou_dabiaoti,lz_tqzl1,lz_tqzl2,lz_tqzl3,lz_tqzl4,lz_xflzbt,lz_xfnflzbt,lztq_frame,lztq_frame1,wenzi_lzhhbewlq,wenzi_nflzgzewlq", + "type":"sheet", + "url":"assets/qqBlueDiamond/qqBlueDiamond.json" + }, + { + "name":"blueDiamond_json", + "subkeys":"lz_hh1,lz_hh2,lz_hh3,lz_hh4,lz_hh5,lz_hh6,lz_hh7,lz_hh8,lz_hh9,lz_hhe1,lz_hhe2,lz_hhe3,lz_hhe4,lz_hhe5,lz_hhe6,lz_hhe7,lz_hhe8,lz_hhe9,lz_nf,lz_nf1,lz_pt1,lz_pt2,lz_pt3,lz_pt4,lz_pt5,lz_pt6,lz_pt7,lz_pt8,lz_pt9,lz_pte1,lz_pte2,lz_pte3,lz_pte4,lz_pte5,lz_pte6,lz_pte7,lz_pte8,lz_pte9,name_lz_hh1,name_lz_hh2,name_lz_hh3,name_lz_hh4,name_lz_hh5,name_lz_hh6,name_lz_hh7,name_lz_hh8,name_lz_hh9,name_lz_nf,name_lz_pt1,name_lz_pt2,name_lz_pt3,name_lz_pt4,name_lz_pt5,name_lz_pt6,name_lz_pt7,name_lz_pt8,name_lz_pt9", + "type":"sheet", + "url":"assets/image/public/blueDiamond.json" + }, + { + "name":"qqdt_meir_erji_png", + "type":"image", + "url":"assets/qqLobbyPrivilegesWin/qqdt_meir_erji.png" + }, + { + "name":"QQLobby_json", + "subkeys":"banner_qqdating,biaoti_qqdating,qq_bt1,qq_bt2,qqdt_dengji_frame,qqdt_jiangli_sign,qqdt_meir_dabiaoti,qqdt_xinshou_dabiaoti", + "type":"sheet", + "url":"assets/qqLobbyPrivilegesWin/QQLobby.json" + }, + { + "name":"bg_4366jqfuli_png", + "type":"image", + "url":"assets/4366/bg_4366jqfuli.png" + }, + { + "name":"bg_4366renzhenglibao_png", + "type":"image", + "url":"assets/4366/bg_4366renzhenglibao.png" + }, + { + "name":"bg_4366shoujilibao_png", + "type":"image", + "url":"assets/4366/bg_4366shoujilibao.png" + }, + { + "name":"bg_4366vip_png", + "type":"image", + "url":"assets/4366/bg_4366vip.png" + }, + { + "name":"bg_4366vxlibao_png", + "type":"image", + "url":"assets/4366/bg_4366vxlibao.png" + }, + { + "name":"saomachongzhi_png", + "type":"image", + "url":"assets/4366/saomachongzhi.png" + }, + { + "name":"saomachongzhi2_png", + "type":"image", + "url":"assets/common/saomachongzhi2.png" + }, + { + "name":"hfhd_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/hfhd_shenhuaboss.png" + }, + { + "name":"weiduan_xzframe_png", + "type":"image", + "url":"assets/microterms/weiduan_xzframe.png" + }, + { + "name":"main_taskTips_json", + "subkeys":"zi_1,zi_2,zi_3,zi_4,zi_5,zi_6", + "type":"sheet", + "url":"assets/main/main_taskTips.json" + }, + { + "name":"loding_jpg", + "type":"image", + "url":"assets/login/loding.jpg" + }, + { + "name":"hitnum9_fnt", + "type":"font", + "url":"assets/image/public/hitnum9.fnt" + }, + { + "name":"main_actTips_json", + "subkeys":"dc_bg0,dc_bg1,dc_bg2,dc_bg3,dc_bg4,dc_bg5,dc_btn1,dc_btn2,dc_cdmu0,dc_cdmu1,dc_cdmu2,dc_cdmu3,dc_cdmu4,dc_cdmu5,dc_cdmu6,dc_cdmu7,dc_cdmu8,dc_cdmu9,dc_cdwenzi0,dc_cdwenzi1,dc_cdwenzi10,dc_cdwenzi11,dc_cdwenzi2,dc_cdwenzi3,dc_cdwenzi4,dc_cdwenzi5,dc_cdwenzi6,dc_cdwenzi7,dc_cdwenzi8,dc_cdwenzi9,dc_chwenzi3,dc_icon_jibai,dc_jb_ch1,dc_jb_ch10,dc_jb_ch11,dc_jb_ch12,dc_jb_ch13,dc_jb_ch14,dc_jb_ch2,dc_jb_ch3,dc_jb_ch4,dc_jb_ch5,dc_jb_ch6,dc_jb_ch7,dc_jb_ch8,dc_jb_ch9,dc_jb_nu0,dc_jb_nu1,dc_jb_nu2,dc_jb_nu3,dc_jb_nu4,dc_jb_nu5,dc_jb_nu6,dc_jb_nu7,dc_jb_nu8,dc_jb_nu9,dc_jpwenzi0,dc_jpwenzi1,dc_mu0,dc_mu1,dc_mu2,dc_mu3,dc_mu4,dc_mu5,dc_mu6,dc_mu7,dc_mu8,dc_mu9,dc_mubiao,dc_nrwenzi0,dc_nrwenzi1,dc_nrwenzi2,dc_nrwenzi3,dc_nrwenzi4,dc_nrwenzi5,dc_nrwenzi6,dc_nrwenzi7,dc_zbmu0,dc_zbmu1,dc_zbmu2,dc_zbmu3,dc_zbmu4,dc_zbmu5,dc_zbmu6,dc_zbmu7,dc_zbmu8,dc_zbmu9,dc_zs_jl1,dc_zs_jl10,dc_zs_jl11,dc_zs_jl12,dc_zs_jl13,dc_zs_jl2,dc_zs_jl3,dc_zs_jl4,dc_zs_jl5,dc_zs_jl6,dc_zs_jl7,dc_zs_jl8,dc_zs_jl9", + "type":"sheet", + "url":"assets/main/main_actTips.json" + }, + { + "name":"skill_1_png", + "type":"image", + "url":"assets/main/actTips/skill_1.png" + }, + { + "name":"skill_3_png", + "type":"image", + "url":"assets/main/actTips/skill_3.png" + }, + { + "name":"skill_2_png", + "type":"image", + "url":"assets/main/actTips/skill_2.png" + }, + { + "name":"skill_4_png", + "type":"image", + "url":"assets/main/actTips/skill_4.png" + }, + { + "name":"skill_5_png", + "type":"image", + "url":"assets/main/actTips/skill_5.png" + }, + { + "name":"skill_6_png", + "type":"image", + "url":"assets/main/actTips/skill_6.png" + }, + { + "name":"SoldierSoul_json", + "subkeys":"sw_bh_1,sw_bh_2,sw_bh_3,sw_bh_4,sw_bh_Lv_4,sw_bh_bg2,sw_bh_bhjj1,sw_bh_bhjj2,sw_bh_bhsj1,sw_bh_bhsj2,sw_bh_bhsx1,sw_bh_bhsx2,sw_bh_bhxl1,sw_bh_bhxl2,sw_bh_dj10,sw_bh_dj11,sw_bh_dj12,sw_bh_icon0,sw_bh_icon1,sw_bh_icon2,sw_bh_icon3,sw_bh_icon4,sw_bh_icon5,sw_bh_mc1,sw_bh_mc2,sw_bh_mc3,sw_bh_mc4", + "type":"sheet", + "url":"assets/SoldierSoul/SoldierSoul.json" + }, + { + "name":"sw_bh_bg1_png", + "type":"image", + "url":"assets/SoldierSoul/sw_bh_bg1.png" + }, + { + "name":"SoldierSoul_fnt_fnt", + "type":"font", + "url":"assets/image/public/SoldierSoul_fnt.fnt" + }, + { + "name":"binghun_bg_png", + "type":"image", + "url":"assets/role/binghun_bg.png" + }, + { + "name":"binghun_bg1_png", + "type":"image", + "url":"assets/role/binghun_bg1.png" + }, + { + "name":"yqs_bg_png", + "type":"image", + "url":"assets/fuli/yqs_bg.png" + }, + { + "name":"lj_bg1_png", + "type":"image", + "url":"assets/cumulativeOnline/lj_bg1.png" + }, + { + "name":"cumulativeOnline_json", + "subkeys":"lj_arrow,lj_bg2,lj_bg3,lj_frame,lj_jdt1,lj_jdt2,lj_jdt3,lj_jdt4,lj_jt1,lj_jt2,lj_title,lj_tt1,lj_tt2,lj_xc", + "type":"sheet", + "url":"assets/cumulativeOnline/cumulativeOnline.json" + }, + { + "name":"bh_show_wp1_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp1.png" + }, + { + "name":"bh_show_wp2_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp2.png" + }, + { + "name":"bx_show_001_png", + "type":"image", + "url":"assets/role/roleFashion/bx_show_001.png" + }, + { + "name":"bh_show_wp4_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp4.png" + }, + { + "name":"bh_show_wp3_png", + "type":"image", + "url":"assets/role/roleFashion/bh_show_wp3.png" + }, + { + "name":"bg_tipstc3_png", + "type":"image", + "url":"assets/bg/bg_tipstc3.png" + }, + { + "name":"forge_bg4_png", + "type":"image", + "url":"assets/forge/forge_bg4.png" + }, + { + "name":"btnbg_png", + "type":"image", + "url":"assets/fuli/btnbg.png" + }, + { + "name":"loding_kf_jpg", + "type":"image", + "url":"assets/login/loding_kf.jpg" + }, + { + "name":"txt_kf_png", + "type":"image", + "url":"assets/login/txt_kf.png" + }, + { + "name":"CrossServer_json", + "subkeys":"icon_gjsl,icon_qgs,kf_cy_bg2,kf_cy_bg3,kf_cy_bg4,kf_cy_bg6,kf_cy_cyj,kf_cy_cysl,kf_cy_gsj,kf_cy_ydj,kf_cyboss_hp1,kf_cyboss_hp2,kf_cyjl_frame1,kf_cyjl_frame2,kf_cyjl_key,kf_fanye_bg1,kf_fanye_bg2,kf_fanye_hd1,kf_fanye_hd2,kf_fanye_phb1,kf_fanye_phb2,kf_fanye_xq1,kf_fanye_xq2,kf_jdt1,kf_jdt2,kf_kfmb,kf_kfmb_bg1,kf_kfphb,kf_kfsl,kf_kfxq,kf_kfzc,kf_kfzk,kf_mb_dynd,kf_mb_dynf,kf_mb_dynz,kf_mb_dyvd,kf_mb_dyvf,kf_mb_dyvz", + "type":"sheet", + "url":"assets/CrossServer/CrossServer.json" + }, + { + "name":"kf_cy_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg1.png" + }, + { + "name":"kf_xq_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_xq_bg.png" + }, + { + "name":"kf_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_bg1.png" + }, + { + "name":"kf_phb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_phb_bg.png" + }, + { + "name":"kf_cyjl_bg1_png", + "type":"image", + "url":"assets/CrossServer/kf_cyjl_bg1.png" + }, + { + "name":"kf_cy_bg5_png", + "type":"image", + "url":"assets/CrossServer/kf_cy_bg5.png" + }, + { + "name":"kf_kfmb_bg_png", + "type":"image", + "url":"assets/CrossServer/kf_kfmb_bg.png" + }, + { + "name":"tq_bg1_png", + "type":"image", + "url":"assets/vip/tq_bg1.png" + }, + { + "name":"hitnum11_fnt", + "type":"font", + "url":"assets/image/public/hitnum11.fnt" + }, + { + "name":"hitnum12_fnt", + "type":"font", + "url":"assets/image/public/hitnum12.fnt" + }, + { + "name":"chongwu_bg_png", + "type":"image", + "url":"assets/role/chongwu_bg.png" + }, + { + "name":"role_pet_json", + "subkeys":"chongwu_bg1,chongwu_bg2,chongwu_btn,chongwu_btn1,chongwu_btn2,chongwu_icon,pet001,pet001_name,pet002,pet002_name,pet003,pet003_name,pet004,pet004_name,pet005,pet005_name,pet006,pet006_name,pet007,pet007_name,pet008,pet008_name,pet009,pet009_name", + "type":"sheet", + "url":"assets/role/role_pet.json" + }, + { + "name":"SelectServer_json", + "subkeys":"login_bg3,login_bt_1,login_bt_2,login_dian_1,login_dian_2,login_dian_3,login_jinru,login_jinru1,login_qfbg,login_xzqf,login_xzqf1,login_yeqian_1,login_yeqian_2", + "type":"sheet", + "url":"assets/login/SelectServer.json" + }, + { + "name":"enter_game_png", + "type":"image", + "url":"assets/login/enter_game.png" + }, + { + "name":"login_bg1_jpg", + "type":"image", + "url":"assets/CreateRole/login_bg1.jpg" + }, + { + "name":"LOGO4_png", + "type":"image", + "url":"assets/login/LOGO4.png" + }, + { + "name":"loading_1_jpg", + "type":"image", + "url":"assets/phonebg/loading_1.jpg" + }, + { + "name":"mp_jzjm_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm.png" + }, + { + "name":"mp_login_bg_png", + "type":"image", + "url":"assets/phonebg/mp_login_bg.png" + }, + { + "name":"mp_xfjm_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm.png" + }, + { + "name":"attrTips_json", + "subkeys":"bg_bosstips1,bg_bosstips2,bg_zbgh,fightnum_bg,fightnum_bg2,fightnum_d,fightnum_m,fightnum_z,numsx_1,numsx_10,numsx_11,numsx_12,numsx_13,numsx_14,numsx_15,numsx_16,numsx_17,numsx_18,numsx_19,numsx_2,numsx_20,numsx_21,numsx_22,numsx_23,numsx_24,numsx_25,numsx_26,numsx_27,numsx_28,numsx_29,numsx_3,numsx_30,numsx_31,numsx_32,numsx_33,numsx_34,numsx_35,numsx_36,numsx_37,numsx_38,numsx_39,numsx_4,numsx_40,numsx_41,numsx_42,numsx_43,numsx_44,numsx_5,numsx_6,numsx_7,numsx_8,numsx_9", + "type":"sheet", + "url":"assets/common/attrTips.json" + }, + { + "name":"bg_neigongzb_png", + "type":"image", + "url":"assets/role/bg_neigongzb.png" + }, + { + "name":"kf_xb_bg4_png", + "type":"image", + "url":"assets/openServer/kf_xb_bg4.png" + }, + { + "name":"zjt4_png", + "type":"image", + "url":"assets/login/zjt4.png" + }, + { + "name":"zjt5_png", + "type":"image", + "url":"assets/login/zjt5.png" + }, + { + "name":"sz_show_006_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_0.png" + }, + { + "name":"sz_show_006_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_006_1.png" + }, + { + "name":"sz_show_007_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_0.png" + }, + { + "name":"sz_show_007_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_007_1.png" + }, + { + "name":"sz_show_008_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_0.png" + }, + { + "name":"sz_show_008_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_008_1.png" + }, + { + "name":"sz_show_009_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_0.png" + }, + { + "name":"sz_show_009_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_009_1.png" + }, + { + "name":"sz_show_010_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_0.png" + }, + { + "name":"sz_show_010_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_010_1.png" + }, + { + "name":"sz_show_011_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_0.png" + }, + { + "name":"sz_show_011_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_011_1.png" + }, + { + "name":"sz_show_012_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_0.png" + }, + { + "name":"sz_show_012_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_012_1.png" + }, + { + "name":"sz_show_013_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_0.png" + }, + { + "name":"sz_show_013_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_013_1.png" + }, + { + "name":"sz_show_014_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_0.png" + }, + { + "name":"sz_show_014_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_014_1.png" + }, + { + "name":"sz_show_015_0_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_0.png" + }, + { + "name":"sz_show_015_1_png", + "type":"image", + "url":"assets/role/roleFashion/sz_show_015_1.png" + }, + { + "name":"Client_png", + "type":"image", + "url":"assets/multiVersion/Client.png" + }, + { + "name":"IOS_png", + "type":"image", + "url":"assets/multiVersion/IOS.png" + }, + { + "name":"Page_png", + "type":"image", + "url":"assets/multiVersion/Page.png" + }, + { + "name":"multiVersion_json", + "subkeys":"button1,button2", + "type":"sheet", + "url":"assets/multiVersion/multiVersion.json" + }, + { + "name":"mp_login_btn2_png", + "type":"image", + "url":"assets/login/mp_login_btn2.png" + }, + { + "name":"bg_qqvip_png", + "type":"image", + "url":"assets/4366/bg_qqvip.png" + }, + { + "name":"IOS-honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS-honghu.png" + }, + { + "name":"Page-honghu_png", + "type":"image", + "url":"assets/multiVersion/Page-honghu.png" + }, + { + "name":"Android-c601_png", + "type":"image", + "url":"assets/multiVersion/Android-c601.png" + }, + { + "name":"Client-c601_png", + "type":"image", + "url":"assets/multiVersion/Client-c601.png" + }, + { + "name":"Android-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Android-gonghui.png" + }, + { + "name":"Client-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Client-gonghui.png" + }, + { + "name":"Page-gonghui_png", + "type":"image", + "url":"assets/multiVersion/Page-gonghui.png" + }, + { + "name":"Android-honghu_png", + "type":"image", + "url":"assets/multiVersion/Android-honghu.png" + }, + { + "name":"logoGameCat_png", + "type":"image", + "url":"assets/login/logoGameCat.png" + }, + { + "name":"loadingGameCat_png", + "type":"image", + "url":"assets/phonebg/loadingGameCat.png" + }, + { + "name":"loginGameCat_png", + "type":"image", + "url":"assets/phonebg/loginGameCat.png" + }, + { + "name":"weapon_13730_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13730.png" + }, + { + "name":"weapon_13731_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13731.png" + }, + { + "name":"weapon_13732_png", + "type":"image", + "url":"assets/image/model/weapon/weapon_13732.png" + }, + { + "name":"body034_1_png", + "type":"image", + "url":"assets/image/model/body/body034_1.png" + }, + { + "name":"body034_0_png", + "type":"image", + "url":"assets/image/model/body/body034_0.png" + }, + { + "name":"bodyimgeff34_1_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_1.png" + }, + { + "name":"bodyimgeff34_0_png", + "type":"image", + "url":"assets/image/model/bodybg/bodyimgeff34_0.png" + }, + { + "name":"Client-youximao_png", + "type":"image", + "url":"assets/multiVersion/Client-youximao.png" + }, + { + "name":"LOGO5_png", + "type":"image", + "url":"assets/login/LOGO5.png" + }, + { + "name":"Client-155iy_png", + "type":"image", + "url":"assets/multiVersion/Client-155iy.png" + }, + { + "name":"num_kftz_fnt", + "type":"font", + "url":"assets/openServer/num_kftz.fnt" + }, + { + "name":"bg_360dawanjia_png", + "type":"image", + "url":"assets/360/bg_360dawanjia.png" + }, + { + "name":"wx_bg_7youxi_png", + "type":"image", + "url":"assets/7game/wx_bg_7youxi.png" + }, + { + "name":"bg_7youjqfuli_png", + "type":"image", + "url":"assets/7game/bg_7youjqfuli.png" + }, + { + "name":"bg_ldschaojivip_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip.png" + }, + { + "name":"bg_ldschaojivip2_png", + "type":"image", + "url":"assets/ludashi/bg_ldschaojivip2.png" + }, + { + "name":"bg_ldsflbuff_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflbuff.png" + }, + { + "name":"bg_ldsflhzdl_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl.png" + }, + { + "name":"bg_ldsflmrlb1_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflmrlb1.png" + }, + { + "name":"bg_ldssjlbrzlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbrzlb.png" + }, + { + "name":"bg_ldssjlbsjlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbsjlb.png" + }, + { + "name":"bg_ldssjlbwxlb_png", + "type":"image", + "url":"assets/ludashi/bg_ldssjlbwxlb.png" + }, + { + "name":"bg_ldsyouxihezi_png", + "type":"image", + "url":"assets/ludashi/bg_ldsyouxihezi.png" + }, + { + "name":"ludashi_json", + "subkeys":"banner_ldschaojivip,banner_ldsfl,biaoti_ldsfl,txt_bangdingshouji,txt_erweima,txt_fuzhi,txt_ljcz,txt_ljkt", + "type":"sheet", + "url":"assets/ludashi/ludashi.json" + }, + { + "name":"LOGO6_png", + "type":"image", + "url":"assets/login/LOGO6.png" + }, + { + "name":"mp_jzjm2_png", + "type":"image", + "url":"assets/phonebg/mp_jzjm2.png" + }, + { + "name":"fuli37_json", + "subkeys":"37_smcz_tanhao,37_smczzq_0,37_smczzq_1,banner_37vip,biaoti_37fulidating,btnt_txfcm", + "type":"sheet", + "url":"assets/37/fuli37.json" + }, + { + "name":"bg_360smrzlb_png", + "type":"image", + "url":"assets/360/bg_360smrzlb.png" + }, + { + "name":"fuli360_json", + "subkeys":"biaoti_smrz,btn_lijilingqu", + "type":"sheet", + "url":"assets/360/fuli360.json" + }, + { + "name":"bg_ldsflhzdl2_png", + "type":"image", + "url":"assets/ludashi/bg_ldsflhzdl2.png" + }, + { + "name":"bg_ku25hezifuli_png", + "type":"image", + "url":"assets/ku25/bg_ku25hezifuli.png" + }, + { + "name":"bg_ku25vip_png", + "type":"image", + "url":"assets/ku25/bg_ku25vip.png" + }, + { + "name":"bg_ku25weixinlibao_png", + "type":"image", + "url":"assets/ku25/bg_ku25weixinlibao.png" + }, + { + "name":"ku25_json", + "subkeys":"banner_ku25hezidenglu1,banner_ku25hezidenglu2,banner_ku25vip", + "type":"sheet", + "url":"assets/ku25/ku25.json" + }, + { + "name":"bg_37weiduan_png", + "type":"image", + "url":"assets/37/bg_37weiduan.png" + }, + { + "name":"bg_sogouwxlb_png", + "type":"image", + "url":"assets/sogou/bg_sogouwxlb.png" + }, + { + "name":"bg_sougouvip_png", + "type":"image", + "url":"assets/sogou/bg_sougouvip.png" + }, + { + "name":"bg_zhuanshupifu_png", + "type":"image", + "url":"assets/sogou/bg_zhuanshupifu.png" + }, + { + "name":"sogou_json", + "subkeys":"banner_sougouvip,banner_sougouyxdt,sogou_t_xslb", + "type":"sheet", + "url":"assets/sogou/sogou.json" + }, + { + "name":"Client-suhai_png", + "type":"image", + "url":"assets/suhai/Client-suhai.png" + }, + { + "name":"IOS_suhai_png", + "type":"image", + "url":"assets/suhai/IOS_suhai.png" + }, + { + "name":"Page-suhai_png", + "type":"image", + "url":"assets/suhai/Page-suhai.png" + }, + { + "name":"Android-suhai_png", + "type":"image", + "url":"assets/suhai/Android-suhai.png" + }, + { + "name":"Android_c601_png", + "type":"image", + "url":"assets/multiVersion/Android_c601.png" + }, + { + "name":"Client_c601_png", + "type":"image", + "url":"assets/multiVersion/Client_c601.png" + }, + { + "name":"Page_c601_png", + "type":"image", + "url":"assets/multiVersion/Page_c601.png" + }, + { + "name":"banner_yaodou_png", + "type":"image", + "url":"assets/yaodou/banner_yaodou.png" + }, + { + "name":"bg_yaodou_png", + "type":"image", + "url":"assets/yaodou/bg_yaodou.png" + }, + { + "name":"zjt8_png", + "type":"image", + "url":"assets/login/zjt8.png" + }, + { + "name":"bg_qidianbdsj_png", + "type":"image", + "url":"assets/qidian/bg_qidianbdsj.png" + }, + { + "name":"bg_qidianvip_png", + "type":"image", + "url":"assets/qidian/bg_qidianvip.png" + }, + { + "name":"LOGO7_png", + "type":"image", + "url":"assets/login/LOGO7.png" + }, + { + "name":"tdloadimg_png", + "type":"image", + "url":"assets/phonebg/tdloadimg.png" + }, + { + "name":"tdlogin_png", + "type":"image", + "url":"assets/phonebg/tdlogin.png" + }, + { + "name":"main_gonggaoBtn_png", + "type":"image", + "url":"assets/login/main_gonggaoBtn.png" + }, + { + "name":"banner_feihuo_png", + "type":"image", + "url":"assets/feihuo/banner_feihuo.png" + }, + { + "name":"bg_feihuo_png", + "type":"image", + "url":"assets/feihuo/bg_feihuo.png" + }, + { + "name":"bg_aiqiyiQQqun_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqiyiQQqun.png" + }, + { + "name":"bg_aiqqiyivip_png", + "type":"image", + "url":"assets/iqiyi/bg_aiqqiyivip.png" + }, + { + "name":"bg_aqiyiweixin_png", + "type":"image", + "url":"assets/iqiyi/bg_aqiyiweixin.png" + }, + { + "name":"iqiyi_json", + "subkeys":"banner_aiqiyivip,btn_ljjrgfqqq,btnt_ljjrgfqqq", + "type":"sheet", + "url":"assets/iqiyi/iqiyi.json" + }, + { + "name":"Client-tudou_png", + "type":"image", + "url":"assets/multiVersion/Client-tudou.png" + }, + { + "name":"bg_tanwanvip_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanvip.png" + }, + { + "name":"bg_tanwanviperweima_png", + "type":"image", + "url":"assets/tanwan/bg_tanwanviperweima.png" + }, + { + "name":"bg_tw_bdsj_png", + "type":"image", + "url":"assets/tanwan/bg_tw_bdsj.png" + }, + { + "name":"bg_tw_qqqun_png", + "type":"image", + "url":"assets/tanwan/bg_tw_qqqun.png" + }, + { + "name":"bg_tw_sanduan_png", + "type":"image", + "url":"assets/tanwan/bg_tw_sanduan.png" + }, + { + "name":"bg_tw_weixin_png", + "type":"image", + "url":"assets/tanwan/bg_tw_weixin.png" + }, + { + "name":"bg_tw_wszl_png", + "type":"image", + "url":"assets/tanwan/bg_tw_wszl.png" + }, + { + "name":"tanwan_json", + "subkeys":"banner_tanwanvip,biaoti_tanwanfuli", + "type":"sheet", + "url":"assets/tanwan/tanwan.json" + }, + { + "name":"bg_zhongqiujiajie_png", + "type":"image", + "url":"assets/actypay/bg_zhongqiujiajie.png" + }, + { + "name":"apay_bg3_png", + "type":"image", + "url":"assets/bg/apay_bg3.png" + }, + { + "name":"bg_wanshanziliao_png", + "type":"image", + "url":"assets/game2/bg_wanshanziliao.png" + }, + { + "name":"ageButton_png", + "type":"image", + "url":"assets/login/ageButton.png" + }, + { + "name":"tdbxscloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloadimg.png" + }, + { + "name":"LOGO8_png", + "type":"image", + "url":"assets/login/LOGO8.png" + }, + { + "name":"fuli2144_json", + "subkeys":"banner_2144vip,biaoti_2144fuli", + "type":"sheet", + "url":"assets/2144/fuli2144.json" + }, + { + "name":"bg_2144vip_png", + "type":"image", + "url":"assets/2144/bg_2144vip.png" + }, + { + "name":"tdbxscloginimg_png", + "type":"image", + "url":"assets/phonebg/tdbxscloginimg.png" + }, + { + "name":"bg_danbichongzhi_png", + "type":"image", + "url":"assets/actypay/bg_danbichongzhi.png" + }, + { + "name":"Client-wanjiepian_png", + "type":"image", + "url":"assets/multiVersion/Client-wanjiepian.png" + }, + { + "name":"kbg_5_png", + "type":"image", + "url":"assets/bg/kbg_5.png" + }, + { + "name":"Client-tudoubxsc_png", + "type":"image", + "url":"assets/multiVersion/Client-tudoubxsc.png" + }, + { + "name":"banner_kuaiwan_png", + "type":"image", + "url":"assets/kuaiwan/banner_kuaiwan.png" + }, + { + "name":"bg_kuaiwanvip_png", + "type":"image", + "url":"assets/kuaiwan/bg_kuaiwanvip.png" + }, + { + "name":"Android-huowu_png", + "type":"image", + "url":"assets/multiVersion/Android-huowu.png" + }, + { + "name":"IOS_huowu_png", + "type":"image", + "url":"assets/multiVersion/IOS_huowu.png" + }, + { + "name":"Page-huowu_png", + "type":"image", + "url":"assets/multiVersion/Page-huowu.png" + }, + { + "name":"Client-huowu_png", + "type":"image", + "url":"assets/multiVersion/Client-huowu.png" + }, + { + "name":"weixincode_qq_png", + "type":"image", + "url":"assets/4366/weixincode_qq.png" + }, + { + "name":"shunwnag_json", + "subkeys":"banner_shunwang,btnt_lijidengji,btnt_xiazaihezi,txt_shunwangdengjilibao,txt_shunwanghezilibao", + "type":"sheet", + "url":"assets/shunwang/shunwnag.json" + }, + { + "name":"bg_wxlb_shunwang_png", + "type":"image", + "url":"assets/shunwang/bg_wxlb_shunwang.png" + }, + { + "name":"bg_platform_1_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_1.png" + }, + { + "name":"bg_platform_2_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_2.png" + }, + { + "name":"bg_platform_3_png", + "type":"image", + "url":"assets/platformFuli/bg_platform_3.png" + }, + { + "name":"platformFuli_json", + "subkeys":"4366_jqfulibt,YY_yq_1,YY_yq_2,YY_yq_jiang,bg_platform_quyu1,biaoti_4366vip,biaoti_bangdingyouli,biaoti_chaojivip,biaoti_datingtequan,biaoti_ku25hezifuli,biaoti_shoujilibao,biaoti_wanshanziliao,biaoti_weixinlibao,biaoti_yxdt,btnt_qwyz,jiangli_bt,lingqu_bt,mun_1,mun_2,mun_3,mun_4,mun_5,mun_6,mun_7,mun_bg,mun_bg2,property_3,t_erweima,t_fuzhi,tab_bg_ldsfl,tab_ldsfl1,tab_ldsfl2,txt_djxz,txt_shenfenyanzheng,txt_xzhz", + "type":"sheet", + "url":"assets/platformFuli/platformFuli.json" + }, + { + "name":"weiduan_denglu_png", + "type":"image", + "url":"assets/platformFuli/weiduan_denglu.png" + }, + { + "name":"banner_qidianvip_png", + "type":"image", + "url":"assets/qidian/banner_qidianvip.png" + }, + { + "name":"banner_7youvip_png", + "type":"image", + "url":"assets/7game/banner_7youvip.png" + }, + { + "name":"bg_zijue_png", + "type":"image", + "url":"assets/role/bg_zijue.png" + }, + { + "name":"tdbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdbyloadimg.png" + }, + { + "name":"LOGO9_png", + "type":"image", + "url":"assets/login/LOGO9.png" + }, + { + "name":"apay_liebiao_bg_png", + "type":"image", + "url":"assets/actypay/apay_liebiao_bg.png" + }, + { + "name":"banner_shenhuaboss_png", + "type":"image", + "url":"assets/actypay/banner_shenhuaboss.png" + }, + { + "name":"festival_dwjiajie_png", + "type":"image", + "url":"assets/actypay/festival_dwjiajie.png" + }, + { + "name":"festival_hdwuyi_png", + "type":"image", + "url":"assets/actypay/festival_hdwuyi.png" + }, + { + "name":"festival_tqxunli_png", + "type":"image", + "url":"assets/actypay/festival_tqxunli.png" + }, + { + "name":"festival_znqingdian_png", + "type":"image", + "url":"assets/actypay/festival_znqingdian.png" + }, + { + "name":"apay_banner_chfl_png", + "type":"image", + "url":"assets/actypay/apay_banner_chfl.png" + }, + { + "name":"banner_ssboss_png", + "type":"image", + "url":"assets/fuli/banner_ssboss.png" + }, + { + "name":"banner_sbzb_png", + "type":"image", + "url":"assets/fuli/banner_sbzb.png" + }, + { + "name":"kf_kftz_bg_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg.png" + }, + { + "name":"kf_kftz_bg4_png", + "type":"image", + "url":"assets/openServer/kf_kftz_bg4.png" + }, + { + "name":"kf_dz_bg_png", + "type":"image", + "url":"assets/openServer/kf_dz_bg.png" + }, + { + "name":"kf_jj_bg_png", + "type":"image", + "url":"assets/openServer/kf_jj_bg.png" + }, + { + "name":"tq_p_7_3_png", + "type":"image", + "url":"assets/vip/tq_p_7_3.png" + }, + { + "name":"tq_bg2_png", + "type":"image", + "url":"assets/vip/tq_bg2.png" + }, + { + "name":"tq_bg3_png", + "type":"image", + "url":"assets/vip/tq_bg3.png" + }, + { + "name":"tq_bg6_png", + "type":"image", + "url":"assets/vip/tq_bg6.png" + }, + { + "name":"tq_bg7_png", + "type":"image", + "url":"assets/vip/tq_bg7.png" + }, + { + "name":"tq_p_1_1_png", + "type":"image", + "url":"assets/vip/tq_p_1_1.png" + }, + { + "name":"tq_p_1_2_png", + "type":"image", + "url":"assets/vip/tq_p_1_2.png" + }, + { + "name":"tq_p_1_3_png", + "type":"image", + "url":"assets/vip/tq_p_1_3.png" + }, + { + "name":"tq_p_2_1_png", + "type":"image", + "url":"assets/vip/tq_p_2_1.png" + }, + { + "name":"tq_p_2_2_png", + "type":"image", + "url":"assets/vip/tq_p_2_2.png" + }, + { + "name":"tq_p_2_3_png", + "type":"image", + "url":"assets/vip/tq_p_2_3.png" + }, + { + "name":"tq_p_3_1_png", + "type":"image", + "url":"assets/vip/tq_p_3_1.png" + }, + { + "name":"tq_p_3_2_png", + "type":"image", + "url":"assets/vip/tq_p_3_2.png" + }, + { + "name":"tq_p_3_3_png", + "type":"image", + "url":"assets/vip/tq_p_3_3.png" + }, + { + "name":"tq_p_4_1_png", + "type":"image", + "url":"assets/vip/tq_p_4_1.png" + }, + { + "name":"tq_p_4_2_png", + "type":"image", + "url":"assets/vip/tq_p_4_2.png" + }, + { + "name":"tq_p_4_3_png", + "type":"image", + "url":"assets/vip/tq_p_4_3.png" + }, + { + "name":"tq_p_5_1_png", + "type":"image", + "url":"assets/vip/tq_p_5_1.png" + }, + { + "name":"tq_p_5_2_png", + "type":"image", + "url":"assets/vip/tq_p_5_2.png" + }, + { + "name":"tq_p_5_3_png", + "type":"image", + "url":"assets/vip/tq_p_5_3.png" + }, + { + "name":"tq_p_6_1_png", + "type":"image", + "url":"assets/vip/tq_p_6_1.png" + }, + { + "name":"tq_p_6_2_png", + "type":"image", + "url":"assets/vip/tq_p_6_2.png" + }, + { + "name":"tq_p_6_3_png", + "type":"image", + "url":"assets/vip/tq_p_6_3.png" + }, + { + "name":"tq_p_7_1_png", + "type":"image", + "url":"assets/vip/tq_p_7_1.png" + }, + { + "name":"tq_p_7_2_png", + "type":"image", + "url":"assets/vip/tq_p_7_2.png" + }, + { + "name":"bg_shunwang_fangchenmi_png", + "type":"image", + "url":"assets/platformFuli/bg_shunwang_fangchenmi.png" + }, + { + "name":"bg_ldsflmrlb2_png", + "type":"image", + "url":"assets/platformFuli/bg_ldsflmrlb2.png" + }, + { + "name":"LOGO10_png", + "type":"image", + "url":"assets/login/LOGO10.png" + }, + { + "name":"xunwanFuli_json", + "subkeys":"banner_xlhytq,biaoti_xlhytq", + "type":"sheet", + "url":"assets/xunwanFuli/xunwanFuli.json" + }, + { + "name":"zjt10_png", + "type":"image", + "url":"assets/login/zjt10.png" + }, + { + "name":"LOGO11_png", + "type":"image", + "url":"assets/login/LOGO11.png" + }, + { + "name":"tdxlbyloadimg_png", + "type":"image", + "url":"assets/phonebg/tdxlbyloadimg.png" + }, + { + "name":"lOG_Honghu_png", + "type":"image", + "url":"assets/login/lOG_Honghu.png" + }, + { + "name":"buff2_json", + "subkeys":"mjdb_buff01,mjdb_buff02,mjdb_buff03,mjdb_buff04,mjdb_buff05,mjdb_buff06,mjdb_buff07,mjdb_buff08", + "type":"sheet", + "url":"assets/common/buff2.json" + }, + { + "name":"IOS_honghu_png", + "type":"image", + "url":"assets/multiVersion/IOS_honghu.png" + }, + { + "name":"zjt11_png", + "type":"image", + "url":"assets/login/zjt11.png" + }, + { + "name":"mp_xfjm_nztl_png", + "type":"image", + "url":"assets/phonebg/mp_xfjm_nztl.png" + }, + { + "name":"LOGO12_png", + "type":"image", + "url":"assets/login/LOGO12.png" + }, + { + "name":"saomachongzhi3_png", + "type":"image", + "url":"assets/common/saomachongzhi3.png" + }, + { + "name":"LOGO13_png", + "type":"image", + "url":"assets/login/LOGO13.png" + }, + { + "name":"banner_fudai_png", + "type":"image", + "url":"assets/actypay/banner_fudai.png" + }, + { + "name":"bg_fudai_png", + "type":"image", + "url":"assets/actypay/bg_fudai.png" + }, + { + "name":"bg_xfphb_png", + "type":"image", + "url":"assets/consumeRank/bg_xfphb.png" + }, + { + "name":"consumeRank_json", + "subkeys":"btn_xfphb,xfph_pm1,xfph_pm2,xfph_pm3", + "type":"sheet", + "url":"assets/consumeRank/consumeRank.json" + }, + { + "name":"worship_bg_jpg", + "type":"image", + "url":"assets/common/worship_bg.jpg" + } + ] +} \ No newline at end of file diff --git a/server.php b/server.php new file mode 100644 index 0000000..6c40d47 --- /dev/null +++ b/server.php @@ -0,0 +1,160 @@ + [999, 997, 990], + 'serverlist' => [], +]; +$defaultSrvId = 1; +$index = 0; +$nowTime = time(); +$newSrvTime = (24 * 60 * 60) * 7; + +// 获取选择的区服ID +$mySQLi = new mysqli($_CONFIG_DB['db_host'], $_CONFIG_DB['db_user'], $_CONFIG_DB['db_password'], $_CONFIG_DB['db_name'], $_CONFIG_DB['db_port']); +if($mySQLi->connect_errno) returnJson(['code' => 1, 'msg' => $mySQLi->connect_error]); +$mySQLi->set_charset($_CONFIG_DB['db_charset']); + +$stmt = $mySQLi->prepare('select server_id from player where username=?'); +$stmt->bind_param('s', $account); +$stmt->execute(); + +$result = $stmt->get_result(); +$row = $result->fetch_array(); + +$result->free_result(); +$stmt->close(); + +$serverId = !empty($row) ? intval($row['server_id']) : 0; + +// 查询 +$status = 1; +// $stmt = $mySQLi->prepare('select id, server_id, name, host, port, status, time, merge_id from server where server_id = ? and status >= ? order by server_id asc limit 1000'); +// $stmt->bind_param('id', $serverId, $status); +$stmt = $mySQLi->prepare('select id, server_id, name, host, port, status, time, merge_id from server where status >= ? order by server_id asc limit 1000'); +$stmt->bind_param('d', $status); +$stmt->bind_result($id, $server_id, $name, $host, $port, $status, $time, $merge_id); +$stmt->execute(); +$stmt->store_result(); + +$srvData['serverlist'][$index] = []; +$srvData['serverlist'][$index]['name'] = '1-100区'; + +// 全部显示 -------------------------------------------- + +while($stmt->fetch()) { + $sid = $merge_id ? $merge_id : $server_id; + //echo "$sid, $id, $server_id, $host, $port, $status, $time, $merge_id
"; + $srvData['serverlist'][$index]['serverlist'][] = [ + 'id' => $id, + 'serverName' => (isset($name) && $name ? $name : $_CONFIG['game_first_name']).$server_id.'区', + 'srvaddr' => isset($host) && $host && '127.0.0.1' != $host ? $host : $_CONFIG['game_host'], + 'srvport' => isset($port) && $port ? $port : ($_CONFIG['game_port'] + $sid), + 'srvid' => $sid, + 'type' => 3 != $status ? ($nowTime - $time <= $newSrvTime ? 1 : 2) : $status, // 1:新, 2:火爆, 3:维护 + 'opentime' => date('Y-m-d H:i:s', $time), + 'pf' => $_CONFIG['pf'], + 'serverAlias' => 's'.$sid, + 'originalSrvid' => $sid + ]; + //$index++; +} + +// 自动合并 -------------------------------------------- + +/*$list = []; + +while($stmt->fetch()) { + //$sid = $merge_id ? $merge_id : $server_id; + //echo "$sid, $id, $server_id, $host, $port, $status, $time, $merge_id
"; + + if(!$merge_id) { + $list[$server_id] = $server_id; + } else { + if(!isset($list[$server_id]) || $server_id > $list[$server_id]) { + $list[$merge_id] = $server_id; + } + } + //$index++; +} + +//print_r($list);exit; + +foreach ($list as $sid => $last_id) { + $srvData['serverlist'][$index]['serverlist'][] = [ + 'id' => $sid, + 'serverName' => (isset($name) && $name ? $name : $_CONFIG['game_first_name']).$server_id.'区', + 'srvaddr' => isset($host) && $host && '127.0.0.1' != $host ? $host : $_CONFIG['game_host'], + 'srvport' => isset($port) && $port ? $port : ($_CONFIG['game_port'] + $sid), + 'srvid' => $sid, + 'type' => 3 != $status ? ($nowTime - $time <= $newSrvTime ? 1 : 2) : $status, // 1:新, 2:火爆, 3:维护 + 'opentime' => date('Y-m-d H:i:s', $time), + 'pf' => $_CONFIG['pf'], + 'serverAlias' => 's'.$sid, + 'originalSrvid' => $sid + ]; +}*/ + +// -------------------------------------------- + +//echo "Records:".$stmt->num_rows."
"; + +// 关闭MySQL +$stmt->free_result(); +$stmt->close(); +$mySQLi->close(); + +returnJson($srvData); + +/*$groupMax = 10; +$groupSubMax = 100; + +$nowDate = date('Y-m-d H:i:s'); +$lastSrvId = $groupMax * $groupSubMax; +$_day = $lastSrvId; + +for($gid = 1; $gid <= $groupMax; $gid++) { + $srvData['serverlist'][$gid - 1] = []; + + $gidStart = ($gid < 2 ? $gid : ($gid - 1) * $groupSubMax); + $gidEnd = $gid * $groupSubMax; + + for($cid = 1; $cid <= $groupSubMax; $cid++) { + $srvData['serverlist'][$gid - 1]['name'] = $gidStart.'-'.$gidEnd.'区'; + $srvData['serverlist'][$gid - 1]['serverlist'][] = [ + 'id' => $index, + 'serverName' => $_CONFIG['game_first_name'].$index.'区', + 'srvaddr' => $_CONFIG['game_host'], + 'srvport' => 9000 + $defaultSrvId, + 'srvid' => $defaultSrvId, + 'type' => ($index > ($lastSrvId - 10) ? 1 : 2), // 1:新, 2:火爆, 3:维护 + 'opentime' => ($index == $lastSrvId ? $nowDate : date('Y-m-d H:i:s', strtotime('-'.$_day.' day'))), + 'pf' => $_CONFIG['pf'], + 'serverAlias' => 's'.$defaultSrvId, + 'originalSrvid' => $defaultSrvId + ]; + + $index++; + $_day--; + } +} + +echo json_encode($srvData);*/ diff --git a/static/css/font-awesome.min.css b/static/css/font-awesome.min.css new file mode 100644 index 0000000..a0b1451 --- /dev/null +++ b/static/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot-v=4.7.0"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.eot?v=4.7.0*/);src:url("../fonts/fontawesome-webfont.eot-#iefix&v=4.7.0"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0*/) format('embedded-opentype'),url("../fonts/fontawesome-webfont.woff2-v=4.7.0"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.woff2?v=4.7.0*/) format('woff2'),url("../fonts/fontawesome-webfont.woff-v=4.7.0"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.woff?v=4.7.0*/) format('woff'),url("../fonts/fontawesome-webfont.ttf-v=4.7.0"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.ttf?v=4.7.0*/) format('truetype'),url("../fonts/fontawesome-webfont.svg-v=4.7.0#fontawesomeregular"/*tpa=http://youxisf.com/assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular*/) format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/static/css/login.css b/static/css/login.css new file mode 100644 index 0000000..12a92b2 --- /dev/null +++ b/static/css/login.css @@ -0,0 +1,416 @@ +@import url(font-awesome.min.css); +body::-webkit-scrollbar{ + display: none; +} +/* Reset */ +html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } +body { line-height: 1; } +ol, ul { list-style: none; } +blockquote, q { quotes: none; } +blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } +table { border-collapse: collapse; border-spacing: 0; } +body { -webkit-text-size-adjust: none; } + +/* Box Model */ +*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box; } + +html { background-color: #000; } + +/* Type */ +body, input, select, textarea { color: #454545; font-family: "Microsoft Yahei", "Open Sans", sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.65; } +img { display: inline-block; width: 66%;} +a { color: #9c262c; text-decoration: none; } +.flex { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } +[class^="tag-"] { border-radius: 0.125rem; font-size: 0.75rem; padding: 0 0.25rem; margin: 0 0 0 0.25rem; background: #505eff; color: #ffffff; line-height: 1; position: relative; top: -0.125rem; } +.disable { display: none; } + +/* Icon */ +.icon { text-decoration: none; border-bottom: none; position: relative; } +.icon:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; } + +/* Form */ +input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], select, textarea { -moz-appearance: none; -webkit-appearance: none; -ms-appearance: none; appearance: none; background: #F7F8FA; border: none; border-bottom: solid 1px rgba(210, 215, 217, 0.75); color: inherit; display: block; outline: 0; padding: 0 1em; text-decoration: none; width: 100%; } +input[type="text"]:invalid, input[type="password"]:invalid, input[type="email"]:invalid, input[type="tel"]:invalid, input[type="search"]:invalid, input[type="url"]:invalid, select:invalid, textarea:invalid { -webkit-box-shadow: none; box-shadow: none; } +input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="url"]:focus, select:focus, textarea:focus { border-color: #fe3535; } +input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], input[type="url"], select { height: 2.5em; } + +/* Button */ +input[type="submit"], input[type="reset"], input[type="button"], button, .button { background-color: #ff0000; border: 0; -webkit-box-shadow: inset 0 0 0 1px #ff0000; box-shadow: inset 0 0 0 1px #ff0000; color: #F7F8FA !important; cursor: pointer; display: inline-block; font-family: "Microsoft Yahei", "Roboto Slab", serif; font-size: 0.8rem; font-weight: 400; height: 2.4rem; letter-spacing: 0.075em; line-height: 2.4rem; padding: 0 2.25rem; text-align: center; text-decoration: none; text-transform: uppercase; white-space: nowrap; } +input[type="submit"].icon:before, input[type="reset"].icon:before, input[type="button"].icon:before, button.icon:before, .button.icon:before { margin-right: 0.5rem; } +input[type="submit"].fit, input[type="reset"].fit, input[type="button"].fit, button.fit, .button.fit { display: block; margin: 0 0 0.375em 0; width: 100%; } +input[type="submit"].small, input[type="reset"].small, input[type="button"].small, button.small, .button.small { font-size: 0.6rem; } +input[type="submit"].small2, input[type="reset"].small2, input[type="button"].small2, button.small2, .button.small2 { font-size: 0.6rem; height: 2rem; line-height: 2rem; padding:0 0.6rem} +input[type="submit"].big, input[type="reset"].big, input[type="button"].big, button.big, .button.big { font-size: 1rem; height: 3.65rem; line-height: 3.65rem; } +input[type="submit"].special, input[type="reset"].special, input[type="button"].special, button.special, .button.special { background-color: #fe3535; -webkit-box-shadow: none; box-shadow: none; color: #F7F8FA !important; } +input[type="submit"].special:hover, input[type="reset"].special:hover, input[type="button"].special:hover, button.special:hover, .button.special:hover { background-color: #359efc; } +input[type="submit"].special:active, input[type="reset"].special:active, input[type="button"].special:active, button.special:active, .button.special:active { background-color: #1790fc; } +input[type="submit"].disabled, input[type="submit"]:disabled, input[type="reset"].disabled, input[type="reset"]:disabled, input[type="button"].disabled, input[type="button"]:disabled, button.disabled, button:disabled, .button.disabled, .button:disabled { -moz-pointer-events: none; -webkit-pointer-events: none; -ms-pointer-events: none; pointer-events: none; opacity: 0.25; } + +/* layui */ + +.dialogs-msg { border-radius: 0 0 5px 5px; } +.layui-layer-btn .layui-layer-btn0 { background-color: rgb(245, 189, 16); border-color: rgb(245, 189, 16); } +.layui-layer-btn a { padding: 0 20px; height: 32px; line-height: 32px; } + +/* Wrapper */ +.wrapper { max-width: 40rem; margin: 0 auto; } +.pagebg { background: #000; padding-bottom: 1rem; } +.gamebg { display: block; position: fixed; width: 100%; max-width: 40rem; height: 100vh; + background-size: cover; + background-repeat: no-repeat; + background-position: center center; +} + +/* Header */ +.header { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; height: 2.5rem; z-index: 10000; } +.header .userface { border-radius: 50%; border: 0.125rem solid #ffffff; -webkit-box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.5); box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.5); width: 2.75rem; height: 2.75rem; margin: 0.5rem 0 0 0.5rem; } +.header .username, .header .usertest { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding: 0.75rem 0 0 0.625rem; overflow: hidden; } +.userheader { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; background-color: #fe3535; height: 3.75rem; } +.userheader a, .userheader span { padding: 2rem 0.5rem 0; color: rgba(247, 248, 250, 0.5); font-size: 0.75rem; } +.userheader .userface { border-radius: 50%; border: 0.125rem solid #ffffff; -webkit-box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.5); box-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.5); width: 4rem; height: 4rem; margin: 1.5rem 0 0 1rem; } +.userheader .username { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; color: #F7F8FA; padding: 1.5rem 0.5rem 0 0.625rem; font-size: 1.125rem; overflow: hidden; line-height: 2; } +.gift-header { -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: relative; background-color: #fe3535; } +.gift-header .icon { font-size: 1.5rem; color: #F7F8FA; margin: 0 0 0 1rem; } +.gift-header .name { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; color: #F7F8FA; padding: 0 0.5rem 0 0.625rem; overflow: hidden; line-height: 2; } + +/* Main */ +.main { -moz-flex-grow: 1; -ms-flex-grow: 1; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -ms-flex-shrink: 1; -ms-flex-negative: 1; flex-shrink: 1; width: 100%; padding: 0 0 2.9375rem 0; } +.main .banner img { display: block; width: 100%; } +.nav { height: 2.75rem; border-bottom: 0.125rem solid #f0f0f0; } +.nav ul { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.nav ul li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; margin: 0 0.5rem; } +.nav ul li a { display: block; text-align: center; line-height: 2.625rem; color: inherit; } +.nav ul li.active { border-bottom: 0.125rem solid #fe3535; } +.nav ul li.active a { color: #fe3535; } +.gamelist .item { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; overflow: hidden; padding: 0.75em; border-bottom: 0.0625rem solid #f0f0f0; } +.gamelist .item .part1 { width: 3.125rem; height: 3.125rem; overflow: hidden; } +.gamelist .item .part1 img { width: 100%; } +.gamelist .item .part2 { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding: 0 0.75em; } +.gamelist .item .part2 > * { height: 1.5625rem; line-height: 1.5625rem; overflow: hidden; font-size: 14px;} +.gamelist .item .part2 .title .tag-hot { background: #0093ce; } +.gamelist .item .part2 .title .tag-elite { background: #6D16BF; } +.gamelist .item .part2 .title .tag-orange { background: #efa521; } +.gamelist .item .part2 .title .tag-only { background: #C33418; } +.gamelist .item .part2 .title .tag-coupon { background: #2697FC; } +.gamelist .item .part2 .intro { color: #1e9fff; font-size: 0.75rem; } +.gamelist .item .part2 .bar { height: 0.375rem; border: 0.0625rem solid #f0f0f0; border-radius: 0.1875rem; } +.gamelist .item .part2 .bar i { background-color: #fe3535; display: block; height: 100%; } +.gamelist .item .part3 { width: 3rem; } +.gamelist .item .part3 a { display: block; height: 1.5rem; font-size: 0.85rem; text-align: center; background: #fe3535; color: #ffffff; line-height: 1.5rem; border-radius: 1rem; } +.notice { -webkit-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out; position: fixed; opacity: 0; z-index: 10000; top: -80px; left: 10px; width: 95%; background: #ffffff; border-radius: 0.125rem; padding: 0.5rem; font-size: 0.875rem; } +.notice .icon { padding: 0 0.5rem; color: #f0ad4e; } +.notice.show { opacity: 1; top: 10px; display: block; } +.loadmore { text-align: center; font-size: 0.75rem; color: rgba(0, 0, 0, 0.3); padding: 1rem 0; } + +/* Footer */ +.footer { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); position: fixed; width: 100%; max-width: 40rem; bottom: 0; left: 50%; height: 3rem; background: #ffffff; border-top: 0.0625rem solid #e5e5e7; } +.footer ul { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.footer ul li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; color: #888888; } +.footer ul li.active { color: #fe3535; } +.footer ul li a { display: block; text-align: center; color: inherit; padding: 0.5rem 0; } +.footer ul li a span { display: block; line-height: 1; font-size: 0.75rem; } +.footer ul li a span.icon { font-size: 1.25rem; } + +/* User Center */ +.usercenter h1 { background: #fe3535; height: 5rem; font-size: 1rem; text-align: center; color: white; padding-top: 1rem; -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); } +.usercenter .userinfo { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; background: #FFFFFF; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); border-radius: 0.8rem; margin: -2rem 1rem 0; width: calc(100% - 2rem); max-width: 38rem; height: 6rem; overflow: hidden; } +.usercenter .userinfo .info { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } +.usercenter .userinfo .info .face { width: 4rem; margin: 1rem; border-radius: 50%; } +.usercenter .userinfo .name { font-size: 1.125rem; color: rgba(0, 0, 0, 0.9); line-height: 2rem; } +.usercenter .userinfo .account { font-size: 0.75rem; color: rgba(0, 0, 0, 0.5); font-weight: 100; } +.usercenter .userinfo .buttons { border-left: 1px solid rgba(0, 0, 0, 0.1); width: 5rem; } +.usercenter .userinfo .buttons a { display: block; height: 3rem; line-height: 3rem; color: rgba(0, 0, 0, 0.9); font-size: 0.75rem; text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } +.usercenter .userinfo .buttons a:last-child { border-bottom: none; color: #d0021b; } +.usercenter .bangding { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; background: #FFFFFF; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); border-radius: 0.2rem; width: calc(100% - 2rem); margin: 0.5rem 1rem; } +.usercenter .bangding li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; } +.usercenter .bangding li img { -moz-filter: grayscale(100%); -webkit-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); display: block; width: 2.25rem; margin: 0.5rem auto 0; } +.usercenter .bangding li span { display: block; text-align: center; font-size: 0.75rem; line-height: 1.5rem; padding-bottom: 0.5rem; color: rgba(0, 0, 0, 0.5); } +.usercenter .bangding li.active img { -moz-filter: none; -webkit-filter: none; -ms-filter: none; filter: none; } +.usercenter .bangding li.active span { color: rgba(0, 0, 0, 0.9); } +.usercenter .tips { background: #FFFFFF; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); border-radius: 0.2rem; width: calc(100% - 2rem); margin: 0.5rem 1rem; padding: 1rem 0.5rem; text-align: center; } +.usercenter .tips a { padding: 0 0.5rem; } +.usercenter .void { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -moz-justify-content: center; -ms-justify-content: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -moz-flex-direction: column; -ms-flex-direction: column; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; min-height: calc(100vh - 12rem); margin-top: -3rem; } +.usercenter .void .icon { font-size: 6rem; line-height: 1; color: #eef0f0; } +.usercenter .void > p { padding: 0 0 3rem; color: #888888; } +.usercenter .void .button { width: 45%; } +.usercenter .boxa { + display:flex; + flex-direction: column; + background: #FFFFFF; + padding: 0.5rem 1rem 1rem; + border-radius: 0.8rem; + -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); + box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); + margin: 0 1rem; + margin-top: 15px; + justify-content: center; + align-items:center; + /* height: 530px; */ + margin: -2rem 1rem 0; + +} +.usercenter .boxa .button {margin-top:10px; width:100%} +.usercenter .disable { display: none; } +.usercenter .gamelist h2 { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; font-size: 1rem; line-height: 1rem; margin: 1.5rem 1rem; } +.usercenter .gamelist h2 span { width: 0.25rem; height: 1rem; background: #fe3535; border-radius: 0.125rem; margin-right: 0.5rem; } +.usercenter .gamelist .listbox { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 0rem 0.5rem 1rem; } +.usercenter .gamelist .listbox > li { border-radius: 0.25rem; background-size: auto 120%; background-repeat: no-repeat; background-position: center bottom; width: calc(100%/4 - 1rem); min-height: 6rem; margin: 0rem 0.5rem 1rem 0.5rem; overflow: hidden; } +.usercenter .gamelist .listbox .gameicon { background-color: rgba(0, 0, 0, 0.3); width: 100%; } +.usercenter .gamelist .listbox .gameicon img { border-radius: 24%; border: 0.05rem solid #ffffff; width: 70%; margin: 15%; } +.usercenter .gamelist .listbox .gamename { height: 1.5rem; line-height: 1.5rem; overflow: hidden; background: #000000; color: #888888; font-size: 0.75rem; text-align: center; line-height: 2; padding: 0 0.375rem; } +.usercenter .gamelist .listbox .button { border-radius: 0; height: 2rem; line-height: 2rem; padding: 0; margin: 0; } + +/* Gift */ +.giftcenter h1 { background: #fe3535; height: 5rem; font-size: 1rem; text-align: center; color: white; padding-top: 1rem; -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); } +.giftcenter .giftbox { margin: -2rem 1rem 0; } +.giftcenter .gift { background: #FFFFFF; border-radius: 0.8rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); overflow: hidden; padding: 0.5rem; margin-bottom: 0.5rem; } +.giftcenter .gift .part1 { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } +.giftcenter .gift .part1 img { width: 3rem; } +.giftcenter .gift .part1 h3 { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding: 0 1rem; } +.giftcenter .gift .part1 a { font-size: 0.875rem; color: rgba(0, 0, 0, 0.5); font-weight: 300; } +.giftcenter .gift .part2 { margin-top: 0.5rem; display: none; } +.giftcenter .gift .part2 .list { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border-top: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; } +.giftcenter .gift .part2 .list .left { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding-right: 0.5rem; text-align: justify; } +.giftcenter .gift .part2 .list .type { font-size: 0.625rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.25rem; margin: 0 0.5rem 0 0; border-radius: 2px; } +.giftcenter .gift .part2 .list .title { font-size: 0.875rem; line-height: 1.5rem; } +.giftcenter .gift .part2 .list .text { font-size: 0.75rem; color: rgba(0, 0, 0, 0.3); font-weight: 100; } +.giftcenter .gift .part2 .list .button { line-height: 1.75rem; padding: 0 1rem; height: 1.75rem; } +.giftcenter .userinfo { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; background: #FFFFFF; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); border-radius: 0.2rem; margin: -5rem 1rem 0; width: calc(100% - 2rem); max-width: 38rem; height: 6rem; overflow: hidden; } +.giftcenter .userinfo .info { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.giftcenter .userinfo .info .face { width: 4rem; margin: 1rem; border-radius: 50%; } +.giftcenter .userinfo .name { font-size: 1.25rem; color: rgba(0, 0, 0, 0.9); line-height: 2rem; padding-top: 2rem; } +.giftcenter .userinfo .buttons { border-left: 1px solid rgba(0, 0, 0, 0.1); width: 5rem; } +.giftcenter .userinfo .buttons a { display: block; height: 3rem; line-height: 3rem; color: rgba(0, 0, 0, 0.9); font-size: 0.75rem; text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } +.giftcenter .userinfo .buttons a:last-child { border-bottom: none; color: #d0021b; } + +/* SideBox */ +body.gamepage { overflow: hidden; } +.gameframe { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } +.slidebtn { background: #ffffff; border-radius: 50%; position: fixed; top: 20%; right: 0; width: 40px; height: 40px; z-index: 20000; overflow: hidden; } +.slidebtn img { display: block; width: 100%; } +.sidebox { -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; position: fixed; pointer-events: auto; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); opacity: 0; } +.sidebox.show { opacity: 1; left: 0; } +.sidehead { background: #FFFFFF; width: 85%; max-width: 40rem; height: 8.25rem; overflow: hidden; } +.sidehead .bluebg { background: #fe3535; height: 3rem; -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); } +.sidehead .userinfo { background: #FFFFFF; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); border-radius: 0.2rem; margin: -2.5rem 0.5rem 0; width: calc(100% - 1rem); height: 4rem; overflow: hidden; } +.sidehead .userinfo .info { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } +.sidehead .userinfo .info .face { width: 2.5rem; margin: 0.5rem; border-radius: 50%; } +.sidehead .userinfo .name { font-size: 1rem; color: rgba(0, 0, 0, 0.9); line-height: 1.5em; } +.sidehead .userinfo .account { font-size: 0.75rem; color: rgba(0, 0, 0, 0.5); font-weight: 100; line-height: 1em; } +.sidehead .userinfo .buttons { border-left: 1px solid rgba(0, 0, 0, 0.1); width: 4.5rem; } +.sidehead .userinfo .buttons a { display: block; height: 2rem; line-height: 2rem; color: rgba(0, 0, 0, 0.9); font-size: 0.75rem; text-align: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } +.sidehead .userinfo .buttons a:last-child { border-bottom: none; color: #d0021b; } +.sidehead .tabs { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0.5rem 0.5rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); } +.sidehead .tabs li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; margin-bottom: -1px; } +.sidehead .tabs li img { -moz-filter: grayscale(100%); -webkit-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); display: block; width: 1.25rem; margin: 0.5rem auto 0; } +.sidehead .tabs li span { display: block; text-align: center; font-size: 0.625rem; line-height: 1rem; padding-bottom: 0.25rem; color: rgba(0, 0, 0, 0.5); } +.sidehead .tabs li.active { border-bottom: 2px solid #fe3535; } +.sidehead .tabs li.active img { -moz-filter: none; -webkit-filter: none; -ms-filter: none; filter: none; } +.sidehead .tabs li.active span { color: rgba(0, 0, 0, 0.9); } +.sidemain { background: #FFFFFF; width: 85%; height: calc(100% - 8.25rem); overflow-y: auto; max-width: 40rem; } +.sidemain h2.title { font-size: 0.75rem; margin: 1em 0rem; color: rgba(0, 0, 0, 0.5); } +.sidemain h2.title span { width: 0.2rem; height: 1rem; background: #2697FC; border-radius: 0.125rem; margin-right: 0.5rem; } +.sidemain .gamecustom { width: 60%; margin: 3rem auto; text-align: center; } +.sidemain .gamecustom img { width: 50%; } +.sidemain .gamecustom .txtkefu { border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 1rem; color: rgba(0, 0, 0, 0.5); } +.sidemain .moregame { padding: 0.5rem 1rem; } +.sidemain .moregame .list { border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; font-size: 0.875rem; } +.sidemain .moregame .gameicon { width: 2.5rem; border-radius: 0.5rem; margin-right: 0.5rem; } +.sidemain .moregame .gamename { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; overflow: hidden; white-space: nowrap; } +.sidemain .moregame .gamebtn { font-size: 0.75rem; width: 4rem; text-align: center; } +.sidemain .gamegift { padding: 0.5rem 1rem; } +.sidemain .gamegift .list { border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; } +.sidemain .gamegift .list .left { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding-right: 0.3rem; text-align: justify; } +.sidemain .gamegift .list .type { font-size: 0.625rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.15rem; margin: 0 0.2rem 0 0; border-radius: 2px; } +.sidemain .gamegift .list .title { font-size: 0.75rem; line-height: 1.5rem; height: 1.5rem; overflow: hidden; text-align: justify; letter-spacing: -0.1em; } +.sidemain .gamegift .list .text { font-size: 0.75rem; color: rgba(0, 0, 0, 0.3); font-weight: 300; text-align: justify; letter-spacing: -0.1em; height: 1.5em; line-height: 1.5em; overflow: hidden; } +.sidemain .gamegift .list .button { line-height: 1.5rem; padding: 0 0.4rem; height: 1.5rem; font-size: 0.75rem; } +.sidemain .gamebangding { padding: 0.5rem 1rem; } +.sidemain .gamebangding .list { border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; font-size: 0.75rem; } +.sidemain .gamebangding .list.active .gameicon { -moz-filter: none; -webkit-filter: none; -ms-filter: none; filter: none; } +.sidemain .gamebangding .list.active .gamebtn { color: rgba(0, 0, 0, 0.3); } +.sidemain .gamebangding .gameicon { -moz-filter: grayscale(100%); -webkit-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); width: 1.5rem; border-radius: 0.5rem; margin: 0 0.5rem; } +.sidemain .gamebangding .gamename { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; } +.sidemain .gamebangding .gamebtn { font-size: 0.75rem; width: 4rem; text-align: center; } + +/* Dialogs */ +.wrapper .dialogs, .wrapper .loginbox { width: 80%; max-width: 18rem; border-radius: 0.8rem; } +.wrapper .dialogs .layui-layer-title, .wrapper .loginbox .layui-layer-title { border-radius: 0.3rem 0.3rem 0 0; } +.wrapper .dialogs h2.title, .wrapper .loginbox h2.title { color: rgb(245, 189, 16); font-size: 1.2rem; text-align: center; line-height: 2rem; margin-bottom: 1rem; } +.wrapper .loginbox { background-color: rgba(255, 255, 255, 1); } +.dialog { display: none; padding: 1rem .8rem 1.2rem; color: rgba(0, 0, 0, 0.9); } +.dialog.account input[type="text"]:focus, .dialog.account input[type="password"]:focus, .dialog.account input[type="email"]:focus, .dialog.account input[type="tel"]:focus, .dialog.account input[type="search"]:focus, .dialog.account input[type="url"]:focus, .dialog.account select:focus, .dialog.account textarea:focus { border-color: #fe3535; } +.dialog.account input { background-color: #f8f6f9; color: #272727; border-bottom: none; font-size: 14px; margin-bottom: .75rem; } +.dialog.account .code { position: relative; } +.dialog.account .code a { + position: absolute; + right: 20px; + top: 5px; + font-size: 14px; +} +.dialog.account .code a.disabled { cursor: default; color: #999; } +.dialog.account .button { margin: 1rem 0 10px; font-size: inherit; background-color: rgb(245, 189, 16); -webkit-box-shadow: none; box-shadow: none; padding: 0; border-radius: .25rem;} +.dialog.account .tips { font-size: 0.875rem; color: rgba(0, 0, 0, 0.3); padding: 1rem 0; } +.dialog.account .third { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.dialog.account .third a { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding: 0; margin: 0; } +.dialog.account .third img { display: block; margin: 0 auto; width: 2.25rem; } +.dialog.account .inputbox { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.dialog.account .inputbox input { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; } +.dialog.account .inputbox a { display: block; line-height: 2.5rem; padding: 0 0.5rem; color: #1296db; } +.dialog.account a.back { display: inline-block; padding: 1rem 0; color: #1296db; } + +.agree { font-size: 14px; text-align: center; } +.agree a { text-decoration: underline; } +.agree span {width:1rem;height:1rem;display:inline-block;padding:.08rem; vertical-align: sub; } +.agree img { + width: 100%; + height: 100%; + display: block; +} + +.forget_password { font-size: 14px; padding: 0 10px; overflow: hidden; } +.forget_password a { color: #454545; } +.forget_password .pull-left { float: left; } +.forget_password .pull-right { float: right; } + +.dialog.pay .info { background: rgba(10, 0, 50, 0.05); border-radius: 0.25rem; border: 0.05rem solid rgba(0, 0, 0, 0.2); margin: 0.5rem 0; text-align: center; } +.dialog.pay .info p { font-size: 0.875rem; color: rgba(0, 0, 0, 0.5); line-height: 2rem; } +.dialog.pay .info h4 { font-size: 1.5rem; line-height: 2.5rem; color: #CC0000; } +.dialog.pay .btns { margin: 1rem -0.4rem; } +.dialog.pay .btns a { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; margin: 0 0.4rem; width: 4em; padding: 0; -webkit-box-shadow: none; box-shadow: none; } +.dialog.pay .btns .weixinpay { background: #5CCC3D; } +.dialog.pay .erweima img { display: block; width: 100%; max-width: 12.5rem; margin: 0 auto; } +.dialog.pay .clause { display: block; text-align: center; font-size: 0.875rem; } +.dialog.codeimg img { display: block; width: 12.5rem; margin: 0 auto; } +.dialog.text { height: 30rem; } +.dialog.text .content { height: calc(100% - 2rem); overflow-y: auto; font-size: 0.75rem; } +.dialog.text .content p { padding: 1em 0; } +.dialog.gift .content { text-align: center; } +.dialog.gift .content h3 { font-size: 1.125rem; padding: 0 1rem 1rem; } +.dialog.gift .content h3 span { font-size: 0.875rem; padding: 0.5rem; background: rgba(0, 0, 0, 0.1); border-radius: 0.2rem; } +.dialog.gift .content p { font-size: 0.875rem; color: rgba(0, 0, 0, 0.3); } +.dialog.gift .button { margin: 1rem 0 0; font-size: inherit; -webkit-box-shadow: none; box-shadow: none; padding: 0; } +.dialog.close { padding: 0; border-radius: 0.3rem; overflow: hidden; } +.dialog.close .download { background: url("../../images/dialogbg.png") no-repeat; background-size: cover; font-size: 0.875rem; line-height: 2.5em; margin: 0; padding: 1.5rem 1rem; text-align: center; } +.dialog.close .download h2.title { padding: 1rem 0; margin: 0; } +.dialog.close .download .button { height: 3em; line-height: 3em; } +.dialog.close .btns .normal { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; font-size: 0.875rem; color: rgba(0, 0, 0, 0.5); white-space: nowrap; padding: 0.8rem 0; text-align: center; border-right: 0.05rem solid rgba(0, 0, 0, 0.1); } +.dialog.follow .content ol { counter-reset: section; width: 80%; margin: 0 0 0 20%; } +.dialog.follow .content ol li { text-align: justify; line-height: 2.5; font-size: 0.875rem; } +.dialog.follow .content ol li:before { content: counter(section); counter-increment: section; width: 2em; height: 2em; line-height: 2; text-align: center; font-size: 0.625rem; display: inline-block; margin: 0 1em 0 -3em; color: #ffffff; background: #fe3535; border-radius: 50%; overflow: hidden; } +.dialog.follow .content .codeimg { margin: 1rem 0; text-align: center; border-top: 1px solid rgba(0, 0, 0, 0.3); } +.dialog.follow .content .codeimg p { line-height: 4; } +.dialog.follow .content .codeimg img { width: 80%; } + +/* Game Page */ +.gameimg { display: block; min-height: 6rem; background: #fe3535; } +.gameimg img { display: block; width: 100%; } +.gameinfo { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background: #FFFFFF; border-radius: 0.2rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); padding: 0.5rem; position: relative; z-index: 1;flex-wrap:wrap; } +.gameinfo .icon { width: 5.6rem; border-radius: 1rem; border: 0.3rem solid #FFFFFF; margin-top: -3rem; background: #FFFFFF; } +.gameinfo .title { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; margin: 0 0.5rem; } +.gameinfo .title h3 { font-size: 1rem; height: 1.5em; line-height: 1.5em; overflow: hidden; } +.gameinfo .title .tips { font-size: 0.75rem; color: rgba(0, 0, 0, 0.5); text-align: justify; height: 3em; line-height: 1.5em; overflow: hidden; } +.gameinfo .button { height: 2.5rem; line-height: 2.5rem; padding: 0 1rem; border-radius: 0.6rem;} +.gameintro { background: #FFFFFF; padding: 0.5rem 1rem 1rem; border-radius: 0.2rem;} +.gameintro h3 { padding-left: 0.5rem; border-left: 0.3rem solid #fe3535; font-size: 1rem; line-height: 1em; margin-top: 10px; font-weight: bold;} +.gameintro p { text-align: justify; color: rgba(0, 0, 0, 0.5); font-size: 0.875rem; } +.gameintro1 { background: #FFFFFF; border-radius: 0.2rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); } +.gameintro1 h3 { padding-left: 0.5rem; border-left: 0.3rem solid #fe3535; font-size: 1rem; line-height: 1em; margin-bottom: 10px; font-weight: bold;} +.gameintro1 p { text-align: justify; color: rgba(0, 0, 0, 0.5); font-size: 0.875rem; } +.gameimage { background: #FFFFFF; padding: 0.5rem 1rem 1rem; border-radius: 0.2rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);padding: 0.5rem 0.1rem 0.1rem 0.1rem; } +.gameimage .scroll{width: 100%; overflow-x: scroll; white-space: nowrap;} +.gameimage .scroll img{width:100px;} +.gamenews { background: #FFFFFF; padding: 0.5rem 1rem 1rem; border-radius: 0.2rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); } +.gamenews .tabs { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.gamenews .tabs li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; text-align: center; font-size: 1rem; color: rgba(0, 0, 0, 0.3); margin: 0 1rem; height: 2.5rem; line-height: 2.5rem; border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1); } +.gamenews .tabs li.active { border-bottom: 0.1rem solid #fe3535; color: #fe3535; } +.gamenews .box1 { margin-top: 0.5rem; } +.gamenews .box1 .list { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; } +.gamenews .box1 .list .left { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding-right: 0.5rem; text-align: justify; } +.gamenews .box1 .list .type { font-size: 0.75rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.25rem; margin: 0 0.5rem 0 0; border-radius: 2px; } +.gamenews .box1 .list .title { font-size: 0.875rem; line-height: 2rem; height: 2rem; overflow: hidden; } +.gamenews .box1 .list .text { font-size: 0.75rem; color: rgba(0, 0, 0, 0.3); font-weight: 100; height: 1.5em; line-height: 1.5em; overflow: hidden; } +.gamenews .box1 .list .button { line-height: 2rem; padding: 0 1rem; height: 2rem; } +.gamenews .box2 { margin-top: 0.5rem; } +.gamenews .box2 .list { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.75rem 0; } +.gamenews .box2 .list .type { font-size: 0.75rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.25rem; margin: 0 0.5rem 0 0; border-radius: 2px; } +.gamenews .box2 .list .title { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; font-size: 0.875rem; line-height: 2rem; height: 2rem; overflow: hidden; color: rgba(0, 0, 0, 0.9); } +.gamenews .box2 .list .time { padding: 0 0 0 1rem; color: rgba(0, 0, 0, 0.3); font-size: 0.75rem; } + +.gamenews1 { background: #FFFFFF; padding: 0.5rem 1rem 1rem; border-radius: 0.8rem; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15); } +.gamenews1 .tabs { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; } +.gamenews1 .tabs li { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; text-align: center; font-size: 1rem; color: rgba(0, 0, 0, 0.3); margin: 0 1rem; height: 2.5rem; line-height: 2.5rem; border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1); } +.gamenews1 .tabs li.active { border-bottom: 0.1rem solid #fe3535; color: #fe3535; } +.gamenews1 .box1 { margin-top: 0.5rem; } +.gamenews1 .box1 .list { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.5rem 0; } +.gamenews1 .box1 .list .left { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; padding-right: 0.5rem; text-align: justify; } +.gamenews1 .box1 .list .type { font-size: 0.75rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.25rem; margin: 0 0.5rem 0 0; border-radius: 2px; } +.gamenews1 .box1 .list .title { font-size: 0.875rem; line-height: 2rem; height: 2rem; overflow: hidden; } +.gamenews1 .box1 .list .text { font-size: 0.75rem; color: rgba(0, 0, 0, 0.3); font-weight: 100; height: 1.5em; line-height: 1.5em; overflow: hidden; } +.gamenews1 .box1 .list .button { line-height: 2rem; padding: 0 1rem; height: 2rem; } +.gamenews1 .box2 { margin-top: 0.5rem; } +.gamenews1 .box2 .list { display: -moz-flex; display: -ms-flex; display: -webkit-box; display: -ms-flexbox; display: flex; -moz-align-items: center; -ms-align-items: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding: 0.75rem 0; } +.gamenews1 .box2 .list .type { font-size: 0.75rem; border: 0.05rem solid #f6b746; color: #f6b746; padding: 0 0.25rem; margin: 0 0.5rem 0 0; border-radius: 2px; } +.gamenews1 .box2 .list .title { -moz-flex: 1; -ms-flex: 1; -webkit-box-flex: 1; flex: 1; font-size: 0.875rem; line-height: 2rem; height: 2rem; overflow: hidden; color: rgba(0, 0, 0, 0.9); } +.gamenews1 .box2 .list .time { padding: 0 0 0 1rem; color: rgba(0, 0, 0, 0.3); font-size: 0.75rem; } + +/* News Page */ +.news { padding: 1rem 1rem 1rem; font-size: 0.875rem; font-weight: 100; } +.news .title { font-size: 1rem; text-align: left; color: #fe3535; line-height: 2rem; position: relative; text-align: center; font-weight: bold;} +.news .title2 { font-size: 1rem; text-align: left; color: rgba(0, 0, 0, 0.9); line-height: 2rem; position: relative; text-align: center; font-weight: bold;} +.news .title a { position: absolute; left: 0.5rem; font-size: 0.875rem; color: #fe3535; } +.news .time { font-size: 0.875rem; text-align: right; color: rgba(0, 0, 0, 0.3); line-height: 1rem; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding-bottom: 1rem; margin-bottom: 1rem; } +.news img { max-width: 100%; padding: 0.5rem 0; } +.news p { text-align: justify; padding: 0.5rem; } +/* News Page */ +.news { padding: 1rem 1rem 1rem; font-size: 0.875rem; font-weight: 100; } +.news .title1 { font-size: 1.35rem; text-align: left; color: rgba(0, 0, 0, 0.9); line-height: 2rem; position: relative; text-align: center; border-bottom: 1px solid #eee;} +.news .title2 { font-size: 1rem; text-align: left; color: rgba(0, 0, 0, 0.9); line-height: 2rem; position: relative; text-align: center; font-weight: bold;} +.news .title1 a { position: absolute; left: 0.5rem; font-size: 0.875rem; color: #fe3535; } +.news .time { font-size: 0.875rem; text-align: right; color: rgba(0, 0, 0, 0.3); line-height: 1rem; border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1); padding-bottom: 1rem; margin-bottom: 1rem; } +.news img { max-width: 100%; padding: 0.5rem 0; } +.news p { text-align: justify; padding: 0.5rem; } +.mask-img { + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 99998; + background: rgba(0,0,0,.2); +} + +.picture{ + display: none; + position: fixed; + top: 0; + left: 0px; + width: 100%; + height: 100%; + text-align: center; + background: #666666ab; + z-index: 99999; + justify-content:center; + align-items: center; +} +.picture .phone{ + width:90%; + max-width:480px; +} +.pagebg1 { + background: #FFFFFF; + padding-bottom: 1rem; +} + +.copyright { + position: fixed; + bottom: 20px; + font-size: 14px; + width: 100%; + left: 50%; + transform: translate(-50%, -50%); + text-align: center; +} +.copyright, .copyright a { color: #928b74; } diff --git a/static/home/css/Gw.css b/static/home/css/Gw.css new file mode 100644 index 0000000..e470fcb --- /dev/null +++ b/static/home/css/Gw.css @@ -0,0 +1,143 @@ +/*��¼�ɹ���css��ʽ*/ +.loged{padding:0 0 27px 15px;} +.loged li{color:#fff;;} +.loged li a{color:#fff;} +#logout{color:#ddd075;} +.loged li a:hover{text-decoration: underline;} +/*�������б���ʽ*/ +.quickJump ul li{height: 40px;line-height: 40px;font-size: 14px;} +.quickJump ul li a:hover{color:#ddd075;text-decoration: underline;} +/*�õ�CSS*/ +#slideBox {width: 506px;height: 286px;position: relative;} +#slideBox .hd {padding: 0;position: absolute;bottom: 5px;right: 5px;z-index: 2;width: auto;height: auto;background: none;} +#slideBox ul {} +#slideBox .hd li {margin: 0 3px 0 0;float: left;list-style: none;width: 18px;height: 18px;line-height: 18px;background: #000;color: #fff;font-size: 11px;font-family:Arial;cursor: pointer;text-align: center;border: 1px solid #E6CAB4;} +#slideBox .bd ul, #slider .bd li {margin: 0;padding: 0;list-style: none;} +#slideBox .bd li {width: 506px;height: 286px;overflow: hidden;} +#slideBox .bd li img {width: 506px;height: 286px;} +#slideBox .hd li.on{background:#f15900; color:#fff;} + + +/*ͷ���ײ���ʽ*/ +*{margin: 0;padding: 0;} +#top{position:relative;z-index: 100;width: 100%;font-size: 12px;color:#666;background: url("../img/ytbg.gif") repeat-x;height: 38px;} +.top-wrap a{font-size: 12px;color:#666;text-decoration: none;} +.top-wrap{width: 1000px;margin: 0 auto;position: relative;} + +.top-wrap .show-flash{position: absolute;left: 0;top: -2px;width: 1000px;height: 188px;z-index: 9999;display: none;} +.top-wrap .default-flash{width: 360px;height: 38px;} +.top-wrap .top-log{width: 124px;height: 35px;display: block;float: left;/*background:url("../img/top-logo.png") no-repeat 0 0;*/} +.top-wrap .top-log a{width: 100%;height: 100%;display: block} +.top-wrap .top-flash{width: 360px;height: 38px;float: left;margin: 0 150px 0 40px;} +.top-wrap .top-flash object{width: 100%;height: 100%;display: block} +.top-wrap .top-other{position: absolute;right: 93px;height: 38px;line-height: 38px;z-index: 15} +.top-wrap .top-other .top-login{color:#3c3c3c;text-align: center;} +.top-wrap .top-other .fenge{margin: 0 6px;} +.top-wrap .top-other .top-login:hover{text-decoration: underline;} +.top-loginCon{position: absolute;width:206px;top:10px;left: 0;display: none;} +.top-loginCon .top-longin-t{width: 206px;border-bottom: 1px solid #d5d5d5;height: 35px;} +.top-loginCon .top-longin-t a{width: 38px;height: 35px;border: 1px solid #999;background: #FFF;display: block;border-bottom:none;text-align: center;line-height: 23px;font-weight: bold;color: #000;} +.top-loginCon .layer{padding: 10px;border:1px solid #999;border-top: none;text-align: center;background: #fff} +.top-loginCon input{width: 100%;height: 24px;;display:block;line-height: 24px;outline: none;margin-bottom: 5px;border: 1px solid #eee;} +.top-loginCon .forget{text-align: right;display: block;margin-bottom:5px;height: 15px;line-height: 15px;color: #000} +.top-loginCon .forget:hover{text-decoration: underline} +.top-loginCon .top-submit{display: block;height: 30px;margin: 0 auto;background: #da3a0e;text-align: center;overflow: hidden;border-radius: 5px;line-height: 30px;color:#fff} +.top-loginCon .top-submit:hover{} +.top-other .top-register{margin-right: 20px;color:#3c3c3c;} +.top-other .top-pay{margin-right: 20px;display: inline-block;background: url("../img/tubiaoji.png") no-repeat 0 -168px;padding-left: 15px;} +.top-other .top-pay:hover{background-position: 0px -459px;} +.top-other .top-kefu{display:inline-block;margin-right:15px;background: url("../img/tubiaoji.png") no-repeat 0 -218px;padding-left: 15px;} +.top-other .top-kefu:hover{background-position: 0 -506px;} +.top-other .top-register:hover,.top-other .top-pay:hover,.top-other .top-kefu:hover{text-decoration: underline} +.top-wrap .mobile-game {height: 38px;line-height: 38px;width: 68px;padding-left: 25px;position: absolute;right: -90px;background: url(../img/icon-8.png) 5px -201px no-repeat;z-index: 10;} +.top-wrap .mobile-game:hover{background-position: -89px -201px;} +.top-wrap .g-all-game {height: 38px;line-height: 38px;width: 68px;padding-left: 25px;position: absolute;right: 0;background: url(../img/icon-8.png) 5px -87px no-repeat;z-index: 10;} +.top-wrap .g-all-game.active {background: url(../img/icon-8.png) -88px -87px no-repeat;background-color: #fff;border: 1px solid #d9d9d9;box-shadow: 0 -3px 3px rgba(0,0,0,.2);} +.top-wrap .g-all-game-list {width: 760px;height: 262px;position: absolute;right: 0;top: 38px;background: #fff;border: 1px solid #d9d9d9;box-shadow: 0 0 3px rgba(0,0,0,.2);display: none;line-height: 30px;z-index: 999} +.top-wrap .g-all-game-list .g-all-game-img {width: 400px;height: 262px;position: absolute;left: 0;top: 0;} +.top-wrap .g-all-game-list .g-all-game-img .all-game-txt {width: 215px;height: 100px;line-height: 20px;overflow: hidden;color: #6c6c6c; + position: absolute; + left: 17px; + top: 130px; +} +.g-all-game-list .all-game-hot { + width: 330px; + left: 400px; + padding: 0 30px; + font-size: 14px; +} +.g-all-game-list dl { + height: 262px; + position: absolute; + top: 0; +} +.g-all-game-list dt { + height: 44px; + font: 700 14px/44px 'Microsoft Yahei','\5b8b\4f53'; + color: #6c6c6c; + text-align: center; +} + +.all-game-hot a{font-size: 12px;} + +.all-game-hot dd.last-dd { + width: 300px; + clear: both; + text-align: right; +} +.all-game-hot dd { + width: 110px; + height: 23px; + line-height:23px; + float: left; + overflow: hidden; +} + +#footer_b {width: 100%;background:#eee;padding: 40px 0;text-align: center;font-size: 14px;color: #666;} +#footer_b .top {width: 560px;height: 50px;overflow: hidden;margin: 0 auto;} +#footer_b .footer_logo {/*background: url("../img/jt602logo.png") no-repeat;*/float: left;} +#footer_b .footer_link {float: left;height: 35px;line-height: 35px;} +#footer_b .footer_logo_a {width: 30px;height: 35px;display: block;overflow: hidden;margin-left: 108px;text-indent: -1000px;} +#footer_b .footer_info {width: 100%;overflow: hidden;line-height: 24px;} +#footer_b .footer_link a, #footer_b .footer_link a:hover {color: #666;} +#footer_b .footer_link a:hover {text-decoration: underline;} +#footer_b .footer_1002{width: 100%;} +/*������ʽ*/ +.vido{position:fixed;width:100%;height: 100%;left: 0;top: 0;background: rgba(0,0,0,0.4);display: none;z-index: 999} +.closed{top: -5px;right: -49px;display: block;width: 44px; height: 44px;background: url(../img/gb.jpg) no-repeat;z-index: 9;position: absolute} +.vido_m{width: 100%;height: 100%;overflow: hidden;background: #ffffff;} +.vido .layer{width:400px;height:250px;margin-left:-200px;margin-top:-125px; position: absolute;left: 50%;top: 50%;border: 5px solid #505050;background: #fff;} +.vido_m .closed{top: -5px;right: -49px;display: block;width: 44px; height: 44px;background: url(../img/gb.jpg) no-repeat;z-index: 9;position: absolute} + +.user_box{border-radius: 5px;} +.form_item{margin: 15px 0 15px 0;} +.form_item label{height: 25px;line-height: 25px;width: 60px;display: inline-block;text-align: right;margin-right: 10px;font-size: 14px;} +.form_item input{height: 25px;line-height: 25px;width:220px;font-size: 14px;border: 1px solid #999} +.login_links{margin:20px 0 20px 35px; } +.login_links input{float:left;margin-top: 3px;} +.login_links a{margin-left: 10px;font-size: 12px;text-decoration: none;color: #666666;} +.user_submit{display:block; width: 196px;height: 38px;border:none;text-indent: -999px;cursor: pointer;background: url(../img/btn.jpg) no-repeat 0 0;margin: 0 auto;} +.user_submit:hover{background-position: 0 100%;} + +.loged-panel li{font-size: 14px;color:#fff;overflow: hidden;line-height: 21px;} +.loged-panel .logout{color:red} + +body{font-family:"Microsoft Yahei",SimSun; color:#464646;} +body,div,ul,li{padding:0px; margin:0px;} +img {border:0px;} +ul,li{list-style-type:none;} +#newsList{padding-top: 33px;font-size: 12px;} +#newsList li{height: 26px;line-height: 26px;overflow: hidden;} +#newsList li a{color:#b3b3b3;text-decoration:none;} +#newsList li a:hover{color:#fff;} +#newsList span{float:right;color:#fff} + +.log-box{padding: 30px 0 10px 20px;;position: relative} +.log-box .mr{margin-bottom: 10px;} +.log-box .mr input{width: 148px;height:25px;line-height: 25px;background: #d1d1d1;color: #333;border-radius:3px;padding-left: 5px} +.log-box .login-btn{position:absolute;left:190px;top:30px;width: 76px;height: 68px;background: url(../img/icon.png) -28px -263px;cursor: pointer} +.log-box .login-btn:hover{-webkit-filte:brightness(1.1); filter:brightness(1.1);} +.log-box .other {overflow: hidden;font-size: 12px;color: #fff;} +.log-box .other a{color: #fff} +.log-box .other>div{float:left;margin-right: 8px;height: 20px;line-height: 13px;} +.log-box .other>div input{-webkit-appearance:checkbox;} \ No newline at end of file diff --git a/static/home/css/base.css b/static/home/css/base.css new file mode 100644 index 0000000..a795563 --- /dev/null +++ b/static/home/css/base.css @@ -0,0 +1,17 @@ +body, h1, h2, h3, h4, p, a, input, img, ul, li, ol, dl, dt, dd { margin: 0; padding: 0;word-break: break-all;} +body { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;min-width: 1280px; height: auto; } +a{text-decoration:none; cursor: pointer; } +em { font-style: normal; } +ul, li, ol { list-style: none; } +img { border: 0; } +em,i{font-style:normal;} +input { outline: none; } +.clearfix::after,.listNy::after,.yy-list::after{ content: ""; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; zoom: 1; } +.fl { float: left; } +.fr { float: right; } +body { font-family: "微软雅黑","PingFang SC", "Microsoft YaHei", Helvetica, Tahoma, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei"; } +header, footer, section, nav, main, aside, article { display: block; } +body { font-size: 14px; color: #555555; position: relative; } +.cyou_bottom { background-color: #282725; color: #626262; } +img{ display: block; } +.wrapSj{display:none;} \ No newline at end of file diff --git a/static/home/css/idangerous.swiper2.7.6.css b/static/home/css/idangerous.swiper2.7.6.css new file mode 100644 index 0000000..e1c50c2 --- /dev/null +++ b/static/home/css/idangerous.swiper2.7.6.css @@ -0,0 +1,125 @@ +/* + * Swiper 2.7.6 + * Mobile touch slider and framework with hardware accelerated transitions + * + * http://www.idangero.us/sliders/swiper/ + * + * Copyright 2010-2015, Vladimir Kharlampidi + * The iDangero.us + * http://www.idangero.us/ + * + * Licensed under GPL & MIT + * + * Released on: February 11, 2015 +*/ +/* =============================================================== +Basic Swiper Styles +================================================================*/ +.swiper-container { + margin:0 auto; + position:relative; + overflow:hidden; + direction:ltr; + -webkit-backface-visibility:hidden; + -moz-backface-visibility:hidden; + -ms-backface-visibility:hidden; + -o-backface-visibility:hidden; + backface-visibility:hidden; + /* Fix of Webkit flickering */ + z-index:1; +} +.swiper-wrapper { + position:relative; + width:100%; + -webkit-transition-property:-webkit-transform, left, top; + -webkit-transition-duration:0s; + -webkit-transform:translate3d(0px,0,0); + -webkit-transition-timing-function:ease; + + -moz-transition-property:-moz-transform, left, top; + -moz-transition-duration:0s; + -moz-transform:translate3d(0px,0,0); + -moz-transition-timing-function:ease; + + -o-transition-property:-o-transform, left, top; + -o-transition-duration:0s; + -o-transform:translate3d(0px,0,0); + -o-transition-timing-function:ease; + -o-transform:translate(0px,0px); + + -ms-transition-property:-ms-transform, left, top; + -ms-transition-duration:0s; + -ms-transform:translate3d(0px,0,0); + -ms-transition-timing-function:ease; + + transition-property:transform, left, top; + transition-duration:0s; + transform:translate3d(0px,0,0); + transition-timing-function:ease; + + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +.swiper-free-mode > .swiper-wrapper { + -webkit-transition-timing-function: ease-out; + -moz-transition-timing-function: ease-out; + -ms-transition-timing-function: ease-out; + -o-transition-timing-function: ease-out; + transition-timing-function: ease-out; + margin: 0 auto; +} +.swiper-slide { + float: left; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +/* IE10 Windows Phone 8 Fixes */ +.swiper-wp8-horizontal { + -ms-touch-action: pan-y; +} +.swiper-wp8-vertical { + -ms-touch-action: pan-x; +} + +/* =============================================================== +Your custom styles, here you need to specify container's and slide's +sizes, pagination, etc. +================================================================*/ +.swiper-container { + /* Specify Swiper's Size: */ + + /*width:200px; + height: 100px;*/ +} +.swiper-slide { + /* Specify Slides's Size: */ + + /*width: 100%; + height: 100%;*/ +} +.swiper-slide-active { + /* Specific active slide styling: */ + +} +.swiper-slide-visible { + /* Specific visible slide styling: */ + +} +/* =============================================================== +Pagination Styles +================================================================*/ +.swiper-pagination-switch { + /* Stylize pagination button: */ + +} +.swiper-active-switch { + /* Specific active button style: */ + +} +.swiper-visible-switch { + /* Specific visible button style: */ + +} diff --git a/static/home/css/index.css b/static/home/css/index.css new file mode 100644 index 0000000..1d20b25 --- /dev/null +++ b/static/home/css/index.css @@ -0,0 +1,317 @@ +.main-wrap { position: relative; } +.wrap{ position: relative; height: 100%; } +.section{ width: 100%;} +.section.sec1{background: url(../img/banner_top.jpg) top center no-repeat;} +.container{width:1200px;margin:0 auto;position:relative;} +.section.sec1 .container{height: 364px;} +.logo{position:absolute;top:14px;left:32px;} +.menu-list{ position:absolute;right:0;top: 26px; } +.menu-list li {width: 120px; float: left; text-align: center;} +.menu-list a { color: #ccc; font-size: 15px; text-align: center;} +.menu-list a:hover{ color: #e1bc98; } +.menu-list span{ font-family: Arial; color: #999; font-size: 12px; text-align: center; } +.download{ position: absolute; top:584px;left:0; padding: 50px 0 0 20px; width: 399px; height: 190px; } +.download img { border: 10px solid #fff;height: 152px; } +.b_down { margin-left: 14px; } +.b_down a{overflow:hidden;text-indent:-9999px;display:block;background:url(../img/download.jpg) no-repeat; width: 200px;height: 51px;} +.b_down a+a{margin-top:10px;} +.b_down .i-b_ios{background-position: 0 -60px;} +.b_down .i-b_pc{background-position: 0 -120px;} +.b_down .i-b_android:hover{background-position:-204px 0px;} +.b_down .i-b_ios:hover{background-position:-204px -60px;} +.b_down .i-b_pc:hover{background-position:-204px -120px;} + +.btns { position: absolute; top:584px; right: 60px; } +.btns a { margin: 5px 0;display:block; } + +.section.sec2{background: url(../img/sec2.jpg) top center no-repeat;height:1638px;} +.sec2Top{height:300px;width:100%; padding-top: 40px;} +.banner { width: 520px; height: 300px; position: relative; background: url(../img/banner.jpg) top center no-repeat;} +.banner .banner_swiper{position: absolute;top: 7px;} +.banner .banner_swiper img, .banner .banner_swiper{height: 286px; width:506px;} +.banner .pagination{z-index: 100;position: absolute;height:36px;width:100%;left:0;bottom:0;background: url(../img/pagination.jpg) top center no-repeat;} +.banner .pagination .swiper-pagination-switch{float: left; height: 36px; line-height: 36px; width: 25%; text-align: center;color: #dbc2a5; font-size: 14px; cursor: pointer; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis;} +.banner .pagination .swiper-active-switch {background: url(../img/banneract.jpg) top center no-repeat;} + +.news{width:665px;height:300px;background: url(../img/news.jpg) top center no-repeat;position:relative;} +.news .newsTab{background: url(../img/tab.jpg) repeat-x;} +.more1{width: 45px;height: 20px;position: absolute;display: block;right: 18px;top: 18px;background: url(../img/sp.png) -811px -324px no-repeat;overflow: hidden;transition: all .3s;text-indent: -9999px;} +.more1:hover{right: 21px;} +.section.secRole{background: url(../img/secrole.jpg) top center no-repeat;} +.section.secRole .container{height:468px;} +.b_nextTop{position: absolute;top:55px;color: #787878;right: 605px; display: flex;} + +.xszdBox{height: 429px;float: left;width: 390px;} +.xszdBoxXZD{width: 390px;height:308px;background: url(../img/xszdboxxzd.jpg) no-repeat;overflow:hidden;} +.xszdBoxXZD ul{margin-top: 91px;float: left;margin-left: 42px;height: 216px;} +.xszdBoxXZD li{width:148px;height:56px;float:left;margin-right:12px;margin-bottom:13px;} +.xszdBoxXZD li a{width:148px;height:56px;float:left;background:url(../img/xszdn.jpg) no-repeat;overflow:hidden;text-indent:-99999px;} +.xszdBoxXZD li a.zd2{background-position:-160px 0px;} +.xszdBoxXZD li a.zd3{background-position: 0px -69px;} +.xszdBoxXZD li a.zd4{background-position: -160px -69px;} +.xszdBoxXZD li a.zd5{background-position:0px -138px;} +.xszdBoxXZD li a.zd6{background-position: -160px -138px;} +.xszdNav{height:101px;width:100%;margin-top: 20px;} +.xszdNav a{float:left;width:124px;height:101px;background:url(../img/xszdnav.jpg) no-repeat; overflow:hidden;text-indent:-999px;} +.xszdNav a+a{margin-left:9px;} +.xszdNav a.n2{background-position:-133px 0px;} +.xszdNav a.n3{background-position:-266px 0px;} + +.roleBox{height:429px;width:100%;padding-top:40px;} +.role{ width:790px; height: 429px;background: url(../img/role.jpg) no-repeat;float:right;} +.role .role_swiper,.wrapper{ position: relative; width: 100%; height: 100%;} +.role .pagination a { position: absolute; top: 186px; z-index: 100; } +.role .pagination a i { display: block; margin:25px 0 0 36px; } +.role .pagination a.i-b_pre { left: 0; } +.role .pagination a.i-b_next { right: 0; } +.role .pagination a.i-b_next i { margin-left: 20px; } +.role .slide { width: 100%; height: 429px; position: absolute; top: 0; display: none; } +.role .slide.show { display: block; } +.role .content {width: 100%;height: 429px; margin: 0 auto;position: relative; } +.role .content p { -webkit-writing-mode: vertical-rl; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; -webkit-writing-mode: tb-rl; writing-mode: tb-rl; margin: 0 5px; } +.role .content p span { display: inline-block; } +.role .content .explain { height: 512px;background:url(../img/explain.jpg) no-repeat; width: 132px;position: absolute;right: 672px;top: -25px;color: #9c9690; } +.role .content .explain .i-r_zs, .role .content .explain .i-r_fs, .role .content .explain .i-r_ds { margin:22px auto; } +.role .content .explain p { height: 348px; margin: 20px 0 0 27px;line-height: 25px;} +.role .content .i-r_w { margin: 5px 0 40px; } +.role .content .btns { height: 100%; } +.role .content .to_detail { padding: 6px; height: 70px; border: 1px solid #b76048; color: #b76048; -webkit-writing-mode: vertical-rl; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; -webkit-writing-mode: tb-rl; writing-mode: tb-rl; } +.roleBoxRw{width:440px;height:392px;position: absolute;right: 130px;bottom: 20px;} +.wrapperNav{width:82px;position:absolute;top:82px;right:30px;} +.wrapperNav a{width:82px;float:left;height:82px;margin-bottom:8px;background:url(../img/wrappernav.png) no-repeat;overflow:hidden;text-indent:-9999px;} +.wrapperNav a.nZ{background-position: -87px 0;} +.wrapperNav a.nF{background-position:-86px -88px} +.wrapperNav a.nD{background-position:-86px -180px} +.wrapperNav a.nZ.act{background-position:0 0;} +.wrapperNav a.nF.act{ background-position: 0px -88px;} +.wrapperNav a.nD.act{background-position:0px -180px} + +.rtImg{float:right;position: relative;z-index: 99;} +.roleBoxBg{width: 260px;position: absolute;-webkit-filter: blur(7px); -moz-filter: blur(7px); -o-filter: blur(7px);-ms-filter: blur(7px);filter: blur(7px);top: 14px;right: 132px;} +.roleBoxBg img{width:100%;} +.zsMan{background:url(../img/zs_m_1.png) no-repeat} +.zsWoman{background:url(../img/zs_w_1.png) no-repeat;} + +.main-wrap .news, .main-wrap .gl { width: 660px; } +.main-wrap .news .box, .main-wrap .gl .box { margin-top: .3rem; background-color: #fff; } +.roleTab{height: 118px;position: absolute; z-index: 999;width: 50px;right: 540px;top: 54px;} +.roleTab a{width: 50px;height: 50px;margin-bottom:10px;float:left;background:url(../img/sp.png) -808px -159px no-repeat;color:#908a84;font-size:14px;text-align:center;line-height:50px;} +.roleTab a.i-r_w_a,.roleTab a.i-r_m_a{background-position:-808px -100px;color:#ddc2a5;} +.main-wrap .i-more2 { position: absolute; top: 17px; right: 0; transition: all .3s; overflow:hidden;text-indent:-999px;} +.main-wrap .i-more2:hover { right: 3px; } +.section.sec3{background: url(../img/sec3.jpg) top center no-repeat;} +.section.sec3 .container{height:1256px;} +.xtjs,.wfjs{width:521px;height:168px;} +.wfjs{background:url(../img/wfjs.jpg) no-repeat;} +.xtjs{background:url(../img/xtjs.jpg) no-repeat;margin-top: 7px;} + + +.ctZl{padding-top:40px;width:100%;} +.yxzl,.yxgl{position: relative;} +.i-t_yxgl,.i-t_yxzl{margin-bottom: 20px;overflow:hidden;text-indent:-9999px;} +.yxzl .i-bc_m{width: 520px;} +.yxzl .link{color: #766e66;padding: 32px 20px 0 193px;line-height: 36px;} +.yxzl .link p{height: 30px; line-height: 30px; font-size:16px;} +.yxzl .link span{ display: block; float: left; margin: 0 3px; } +.yxzl .link a{color: #766e66; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s;font-size:16px; } +.yxzl .link a:hover { color: #C4AF91;} +.yxgl .i-bc_m{width:660px; height: 343px;background:url(../img/yxgl.jpg) no-repeat;position:relative;} +.yxzl .link a.linkMore{background: #766E66;color: #0E0805;font-size: 12px;padding: 3px 8px;} + +.yxgl .tab,.news .newsTab{height: 45px; width: 648px;position: absolute;left: 5px;top: 7px;} +.yxgl .tab{background:url(../img/yxglx.jpg) repeat-x;} +.yxgl .tab a,.news .newsTab a{padding: 0 15px;height:45px;text-align:center;line-height:45px;color:#6f645c;font-size:18px;float: left;} +.yxgl .tab a.act,.news .newsTab a.act{background:url(../img/tabact.jpg) repeat-x;color:#ddceb9;} +.yxgl .slide,.news .newSlide{width:596px;position:absolute;left:50%;margin-left:-298px;top:62px;display:none;} +.yxgl .slide ul li,.news .newSlide ul li{height:35px;width:100%;line-height:35px;} +.yxgl .slide ul li+li,.news .newSlide ul li+li{border-top:1px dashed #322D2A;} +.yxgl .slide ul li a,.news .newSlide ul li a{color:#a0887a;font-size:14px;} +.yxgl .slide ul li a span,.news .newSlide ul li a span{float:right;} +.yxgl .slide ul li a:hover,.news .newSlide ul li a:hover{color:#d0b9aa;} +.system {margin-top: 20px;margin-bottom:70px;} +.system li { float: left; position: relative; } +.system li .left { padding: 30px 0 0 10px; width: 50%; } +.system li .left h4 { margin: 0 auto 10px; position: relative; left: 0; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; -webkit-transition-delay: .3s; -o-transition-delay: .3s; transition-delay: .3s; } +.system li .left a { width: 75px; height: 20px; border: 1px solid #8f6b56; color: #8f6b56; line-height: 20px; text-align: center; display:block;border-radius: 10px; margin: 0 auto; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s;} +.system li .left a:hover { color: #d0b9aa; border: 1px solid #d0b9aa; } +.system li .img { position: absolute; top: 72px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 7%; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; } +.system li:hover h4 { left: -5px; } +.system li:hover .img { -webkit-transform: translateY(-50%) scale(1.1); -ms-transform: translateY(-50%) scale(1.1); transform: translateY(-50%) scale(1.1); } +.yyzx { width: 651px; position: relative; } +.yyzx .video_box{ background:url(../img/video_box.jpg) no-repeat;height:241px;width:651px;} +.i-t_yyzx,.phb .i-t_phb,.mrt .i-t_mrt{margin-bottom:20px;overflow:hidden;text-indent:-9999px;} +.yyzx .video {width: 633px;height: 224px;position: relative;overflow: hidden;margin: 8px 9px;float: left;} +.descrip{ width: 100%; height: 30px; line-height: 30px; text-align: center; background-color: rgba(0, 0, 0, 0.7); color: #B59C7D; position: absolute; bottom: -30px; z-index: 100; -webkit-transition: all .5s; -o-transition: all .5s; transition: all .5s; } +.yyzx .video img { width: 100%; position: absolute; top: 0;-webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; } +.yyzx .video:hover img { -webkit-transform: translateY(0) scale(1.1); -ms-transform: translateY(0) scale(1.1); transform: translateY(0) scale(1.1); } +.yyzx .video:hover .descrip { bottom: 0; } +.yyzx .i-mask { position: absolute; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 10; } +.yyzx .i-b_player, .yyzx .i-b_watch { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); z-index: 100; } +.yyzx .pic_box { margin-top: 12px; } +.yyzx .pic_box li {width: 256px; height:210px;float: left;background:url(../img/pic_box.jpg) no-repeat;position:relative;} +.yyzx .pic_box li+li{margin-left:8px;} +.yyzx .pic_box .content {width: 239px;height: 195px;overflow: hidden;left: 8px;position: absolute;top: 7px;} +.yyzx .pic_box .content img{width: 100%; height:100%; position: absolute; top:0;-webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; } +.yyzx .pic_box .content .i-b_watch { display: none; z-index: 1000; } +.yyzx .pic_box .content .descrip { bottom: 0; background-color: transparent; } +.yyzx .pic_box .content .i-mask { height: 30px; bottom: 0; -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; } +.yyzx .pic_box .content:hover img { -webkit-transform: translateY(0%) scale(1.1); -ms-transform: translateY(0%) scale(1.1); transform: translateY(0%) scale(1.1); } +.yyzx .pic_box .content:hover .descrip { bottom: 20px; } +.yyzx .pic_box .content:hover .i-mask { height: 100%; } +.yyzx .pic_box .content:hover .i-b_watch { display: block; } +.mrt { width: 520px; position: relative; margin-left: 29px; } +.mrt .player,.phb .i-bc_m{background:url(../img/gy.jpg) no-repeat;width:520px;height:241px;} +.mrt .player ul{margin: 23px 16px; + float: left;} +.mrt .player li {height:194px; width:229px;margin:0 7px; float: left;overflow: hidden; position: relative;background:#4D4D4D;} +.mrt .player li img { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-transition: all .3s; -o-transition: all .3s; transition: all .3s; width: 100%;} +.mrt .player li .descrip { bottom: 0; } +.mrt .player li a:hover img { -webkit-transform: translate(-50%, -50%) scale(1.1); -ms-transform: translate(-50%, -50%) scale(1.1); transform: translate(-50%, -50%) scale(1.1); } +.mrt .player li a{width:280px;height:200px;display:block;} +.phb { width: 320px; position: relative; } +.phb .phbWrap{width:280px;padding:20px;} +.phb .select { color: #b59c7d;font-size:14px;text-align: center; height: 30px; line-height: 30px;width:100%; } +.phb .select select{ outline: none;background:url(../img/select.jpg) no-repeat; height: 30px; width: 72px; text-align: center; text-indent: 5px; border: 0 none; background-color: #015d4c; color: #000;} +.phb .select select option{background:#fff;} +.phb .rank li.title { background:url(../img/rank.jpg) no-repeat; margin: 20px 0 10px;} +.phb .rank li.title p{color:#000;} +.phb .rank li p { float: left; height: 32px; line-height: 32px; color: #6c5d4a; text-align: center; } +.phb .rank li p i { display: block; margin: 0 auto; line-height: 22px; color: #ffd200; } +.phb .rank li .num { width: 20%; } +.phb .rank li .ser { width: 30%; } +.phb .rank li .name { width: 50%; } +.mask {display: none; position: fixed; top: 0; left: 0; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1000; } +.mask a { display: block; } +.mask .close { height: 40px; width: 40px; background-color: #b10808; position: absolute; top: 0; right: -40px; } +.mask .close span { display: block; margin: 11px 0 0 11px; -webkit-transition: all .7s; -o-transition: all .7s; transition: all .7s; } +.mask .close:hover span { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } +.message_mask { display: none; width: 420px; height: 300px; padding: 19px; background-color: #fff; position: absolute; top: 30%; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } +.message_mask .content { width: 400px; height: 280px; border: 1px solid #dfdfdf; position: relative; padding: 10px 10px; } +.message_mask .content .i-b_submit { margin: 0 auto; } +.message_mask .content p { text-align: center; line-height: 26px; color: #666666; } +.message_mask .content textarea { display: block; margin: 10px auto 15px; width: 370px; font-size: 14px; border: 1px solid #dfdfdf; background-color: #f5f5f5; } +.message_mask .content span { display: block; position: absolute; width: 8px; height: 8px; } +.message_mask .content .tl { background-color: #fff; border-right: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf; top: -1px; left: -1px; } +.message_mask .content .tr { background-color: #fff; border-left: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf; top: -1px; right: -1px; } +.message_mask .content .bl { background-color: #fff; border-right: 1px solid #dfdfdf; border-top: 1px solid #dfdfdf; bottom: -1px; left: -1px; } +.message_mask .content .br { background-color: #fff; border-left: 1px solid #dfdfdf; border-top: 1px solid #dfdfdf; bottom: -1px; right: -1px; } + +.ImgBoxBottom{padding-top:40px;width:100%;height:290px;} + + + + + + + + + + + +/*******内页*****/ +.main{width:1280px;margin:0 auto;position:relative;} +.nyTop{background:url(../img/ny.jpg) top center no-repeat;} +.nyTop .main{height:980px;} +.nyBottom{background:url(../img/nybottom.jpg) top center no-repeat;} +.nyBottom .main{height:818px;} +.nyBox{top:-400px;position:absolute;left:0;width:100%;} +.nyLeft{border:1px solid #49403A;background:#291815;width:238px;height:398px;float:left;} +.nyRight{float:right;background:#0E0805;width:1040px;height:1160px;} +.nyEwm{width:100%;height:210px;margin-top:5px;position:relative;} +.nyEwm .downloadEwm{position:absolute;top:0;left:10px;background: url(../img/sp.png) -639px 0px no-repeat;width: 34px;height: 212px;z-index:9;} +.nyEwm img{height: 170px;width: 170px;border: 2px solid #000;left: 38px;top: 10px;position: absolute;padding: 5px;background: #fff;} +.nyLeft .b_down{margin:5px auto 0 auto;width: 200px;} +/*.nyLeft .b_down .i-b_ios {margin: 8px 0 0 -8px;}*/ +.listRtxt{height:60px;width:1000px;background:url(../img/listrtxt.jpg) no-repeat;padding:0 20px;} +.listRtxtName{float:left;} +.listRtxtName span{color: #956c51;font-size: 12px;line-height: 67px;margin-left: 5px;} +.listRtxtName h3{color:#b59c7d;font-size:24px;line-height:60px;float:left;font-family:SimSun;} +.listRtxt p{float:right;line-height:60px;color:#9e8564;font-size:14px;height: 60px;} +.listRtxt p a{color:#9e8564;} +.listRtxt p a:hover{text-decoration:underline;} + +.listNy{padding:30px 60px;} +.listNyTab{border-bottom:1px solid #464646;width:100%;height:58px;line-height:58px;margin-right:15px;} +.listNyTab a{display:inline-block;width:120px;color:#585857;font-size:18px;text-align:center;float: left;} +.listNyTab a.act,.listNyTab a:hover{border-bottom:2px solid #986449;color:#986449;height:57px;} +.listNyList{float: left; margin-top: 20px; width: 100%;height:auto;} +.listNyList li{ width: 100%;float: left;height: 50px;line-height: 50px;color: #3B3B3B;border-bottom:1px dashed #3B3B3B;} +.listNyList li a{font-size:14px;color:#616161;} +.listNyList li a:hover,.listNyPage a:hover{color:#986449} +.listNyList li p{margin-right:5px;font-size:14px;float:left;width:850px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;} +.listNyList li span{color:#666;float:right;font-size:14px;} +.listNyPage{width:100%;text-align:center;height:28px;line-height:28px;font-size:14px;padding:40px 0; float: left;} +.listNyPage a{ padding:0 3px; color: #555;} +.listNyPage a:hover{text-decoration:underline;} + +.nyTit{border-bottom:1px solid #2D2D2D;height:112px;text-align:center;} +.nyTit h3{color:#888;font-size:22px;width:100%;float:left;padding-top: 30px;padding-bottom: 5px;overflow:hidden;text-overflow: ellipsis;white-space: nowrap} +.nyTit p{width:100%;float:left;color:#565656;font-size:14px;} +.nyTxt{width: 100%;color: #fff;font-size: 14px;line-height: 26px;margin-top: 30px;max-height: 860px;overflow-y: auto;} +.nyTxt img{max-width:698px;display:block;margin:10px auto;} +.nyTxt p{text-indent:2em;padding:10px 0;} +.page_ny_xq_zhm {text-align: center;background:#383838;color: #fff;font-size: 14px;font-weight: bold;padding:30px; line-height:36px;width: 100%;} +.page_ny_xq span {display: inline-block;color: #8d8d8d;width: 33.33%;margin-top: 20px;} +.page_ny_xq_zhm a {display: inline-block;vertical-align: middle;width: 78px;height: 26px;line-height: 26px;background-color: #A71E18;border-radius: 3px;font-size: 12px;color: #fff;margin-left: 6px;} +.page_ny_xq_zhm a:hover{background:#AF8C32} +.page_ny_xq_zhm select,.page_ny_xq_zhm input{width: 200px; height: 24px;line-height: 24px;} +.picBox{width:100%;float:left;} +.picBox ul{width:948px;} +.picBox ul li{float: left;margin-right: 20px;margin-bottom: 20px;width:243px;height:207px;overflow:hidden; text-align: center;} +.picBox ul li img{width: 243px;height:173px;} +.nyTxt::-webkit-scrollbar{border-radius: 10px;width: 5px;height: 5px;} +.nyTxt::-webkit-scrollbar-track{background-color:#2B2A28;border-radius: 5px;} +.nyTxt::-webkit-scrollbar-thumb{background-color:#666;border-radius: 5px;} +.gift-list{width:100%;overflow:hidden;} +.gift-lb{padding: 40px;float: left;} +.gift-lb li{width:300px;height: 160px;float: left;margin: 10px;background:url(../img/gift-lb.jpg) no-repeat;} +.gift-way{margin:18px} +.game-gift-name{color:#f5f5f5;width:100%;margin-bottom:6px;display:block;line-height:25px;font-size:18px;overflow:hidden} + +.gift-way .info{height:48px;line-height:20px;overflow:hidden;color:#f5f5f5;font-size:14px;} +.surplus{position:relative;margin-top:10px;color:#b06832;line-height:35px} +.ling-gift-btn{position:absolute;top:0;right:0;padding:0 28px;border:1px solid #8fd33e;font-size:14px;display:block;color:#8fd33e;text-align:center;line-height: 30px;height:30px;} +.ling-gift-btn:hover{background:#8fd33e;color:#363636;} +.gift-tc{display:none;} +.tcbg{background-color:#000;width:100%;height:100%;left:0;top:0;filter:alpha(opacity=50);-moz-opacity:.5;-khtml-opacity:.5;opacity:.5;z-index:99;position:fixed;} +.tc-n{position:fixed;left:50%;top:50%;margin-left:-350px;margin-top:-83px;width:690px;height:156px;z-index:999;background:#313131;border:5px solid #4A4A4A;} +.gift-close{width:40px;height:40px;position:absolute;right: -45px;top: -5px;background:#986449 url(../img/tc-close.png) no-repeat;} +.tc-sr{margin-top: 24px;} +.tc-sr p{color:#fff;text-align:center;height:30px;line-height:30px;margin-bottom:15px;font-size:24px;} +.tc-sr p input{border:0;text-align: center;color:#000;height:30px;width:290px;margin-right:15px;} +.tc-sr p span{height:30px;background:#DB5E41;width:100px;color:#fff;text-align:center;line-height:30px;cursor:pointer;font-size: 12px;padding: 7px 12px;} + +.yy-list{float: left;width: 100%;overflow: hidden;margin-top:40px;} +.yy-list ul{float: left;width: 928px;height:714px;} +.yy-list ul li{width:220px;float:left;margin-right:12px;overflow:hidden;height: 192px;margin-bottom:33px;} +.yy-list ul li img{width:220px;float:left;height:145px;} +.yy-list ul li i{width: 100%;display: block;font-size: 14px;line-height: 21px;margin-top: 3px;float:left;} +.yy-list ul li a{color:#645443;display:block;float:left;} +.yy-list ul li a:hover{color:#956c51;} + +/******2020.6.24********/ +.gzhBox{width:120px;height:152px;background:url(../img/gzh.jpg) no-repeat;} +.gzhBox img{width:104px;height:104px;padding:40px 8px 8px 8px;} + + +#dlq_url{ + overflow: hidden; + text-indent: -9999px; + display: block; + background: url(../img/download.png) no-repeat; + width: 120px; + height: 40px; +} +#dlq_url:hover { + background-position: -125px 0; +} + +/*开始游戏*/ +.start_btn{ width: 200px; height: 100px; background-position:0 0; position: absolute; bottom: 20px; left: 20%; overflow: hidden; text-indent: -100px;} +.start_btn:hover, .log_btn:hover, .ser_btn:hover, .ban:hover{-webkit-filte:brightness(1.1); filter:brightness(1.1);} +.ico {background: url(../img/icon.png) no-repeat; background-size: 105%; } + + diff --git a/static/home/css/sprite.css b/static/home/css/sprite.css new file mode 100644 index 0000000..664b7ce --- /dev/null +++ b/static/home/css/sprite.css @@ -0,0 +1,407 @@ + + +.i-b_message:hover { + background-image: url('../img/sp.png'); + background-position: -193px -629px; + width: 120px; + height: 40px; +} + +.i-b_message { + background-image: url('../img/sp.png'); + background-position: -484px -485px; + width: 120px; + height: 40px; +} + +.i-b_next { + background-image: url('../img/sp.png'); + background-position: -104px -390px; + width: 93px; + height: 87px; +} + +.i-b_player { + background-image: url('../img/sp.png'); + background-position: -678px -341px; + width: 60px; + height: 60px; +} + +.i-b_pre { + background-image: url('../img/sp.png'); + background-position: -202px -390px; + width: 93px; + height: 87px; +} + +.i-b_server:hover { + background-image: url('../img/sp.png'); + background-position: -443px -629px; + width: 120px; + height: 40px; +} + +.i-b_server { + background-image: url('../img/sp.png'); + background-position: -318px -629px; + width: 120px; + height: 40px; +} + +.i-b_submit { + background-image: url('../img/sp.png'); + background-position: -339px -485px; + width: 140px; + height: 50px; +} + +.i-b_submit:hover { + background-image: url('../img/sp.png'); + background-position: -194px -485px; + width: 140px; + height: 50px; +} + +.i-b_watch { + background-image: url('../img/sp.png'); + background-position: -763px -213px; + width: 45px; + height: 39px; +} + +.download { + background-image: url('../img/sp.png'); + background-position: 0px 0px; + width: 420px; + height: 240px; +} + +.i-bc_s { + background-image: url('../img/sp.png'); + background-position: 0px -245px; + width: 240px; + height: 140px; +} + +.i-close { + background-image: url('../img/sp.png'); + background-position: -819px -350px; + width: 17px; + height: 18px; +} + +.i-i_bj { + background-image: url('../img/sp.png'); + background-position: -678px -259px; + width: 75px; + height: 77px; +} + +.i-i_cp { + background-image: url('../img/sp.png'); + background-position: -89px -485px; + width: 100px; + height: 79px; +} + +.i-i_sl { + background-image: url('../img/sp.png'); + background-position: 0px -485px; + width: 84px; + height: 102px; +} + +.i-i_xy { + background-image: url('../img/sp.png'); + background-position: 0px -394px; + width: 99px; + height: 90px; +} + +.i-i_ys { + background-image: url('../img/sp.png'); + background-position: -678px 0px; + width: 80px; + height: 98px; +} + +.i-icon1 { + background-image: url('../img/sp.png'); + background-position: -796px -350px; + width: 18px; + height: 18px; +} + +.i-icon1_a { + background-image: url('../img/sp.png'); + background-position: -834px -83px; + width: 24px; + height: 24px; +} + +.i-icon_bc { + background-image: url('../img/sp.png'); + background-position: -763px -298px; + width: 2px; + height: 158px; +} + +.i-icon_tj { + background-image: url('../img/sp.png'); + background-position: -763px -83px; + width: 66px; + height: 31px; +} + +.i-logo { + background-image: url('../img/sp.png'); + background-position: -245px -245px; + width: 174px; + height: 91px; +} + +.i-more1 { + background-image: url('../img/sp.png'); + background-position: -815px -330px; + width: 35px; + height: 7px; +} + +.i-more2 { + background-image: url('../img/sp.png'); + background-position: -770px -330px; + width: 40px; + height: 15px; +} + +.i-mouse_b { + background-image: url('../img/sp.png'); + background-position: -763px -166px; + width: 48px; + height: 42px; +} + +.i-mouse_w { + background-image: url('../img/sp.png'); + background-position: -763px -119px; + width: 48px; + height: 42px; +} + +.i-r_ds { + background-image: url('../img/sp.png'); + background-position: -95px -629px; + width: 93px; + height: 56px; +} + +.i-r_fs { + background-image: url('../img/sp.png'); + background-position: 0px -697px; + width: 88px; + height: 59px; +} + +.i-r_m { + background-image: url('../img/sp.png'); + background-position: -816px -166px; + width: 35px; + height: 36px; +} + +.i-r_m_a { + background-image: url('../img/sp.png'); + background-position: -813px -213px; + width: 35px; + height: 36px; +} + +.i-r_w { + background-image: url('../img/sp.png'); + background-position: -763px -257px; + width: 35px; + height: 36px; +} + +.i-r_w_a { + background-image: url('../img/sp.png'); + background-position: -816px -119px; + width: 35px; + height: 36px; +} + +.i-r_zs { + background-image: url('../img/sp.png'); + background-position: 0px -629px; + width: 90px; + height: 63px; +} + + + +.i-rank2 { + background-image: url('../img/sp.png'); + background-position: -770px -350px; + width: 21px; + height: 26px; +} + +.i-rank3 { + background-image: url('../img/sp.png'); + background-position: -835px -257px; + width: 21px; + height: 26px; +} + +.i-s_bj { + background-image: url('../img/sp.png'); + background-position: -88px -697px; + width: 105px; + height: 36px; +} + +.i-s_cp { + background-image: url('../img/sp.png'); + background-position: -203px -697px; + width: 96px; + height: 36px; +} + +.i-s_sl { + background-image: url('../img/sp.png'); + background-position: -563px -629px; + width: 112px; + height: 36px; +} + +.i-s_xy { + background-image: url('../img/sp.png'); + background-position: -763px 0px; + width: 95px; + height: 37px; +} + +.i-s_ys { + background-image: url('../img/sp.png'); + background-position: -763px -42px; + width: 95px; + height: 36px; +} + +.i-star-a { + background-image: url('../img/sp.png'); + background-position: -770px -381px; + width: 15px; + height: 14px; +} + +.i-star { + background-image: url('../img/sp.png'); + background-position: -841px -350px; + width: 15px; + height: 14px; +} + +.i-t_lbzx2 { + background-image: url('../img/sp.png'); + background-position: -517px -592px; + width: 151px; + height: 23px; +} + +.i-t_mrt { + background-image: url('../img/sp.png'); + background-position: 0px -592px; + width: 196px; + height: 32px; + +} + +.i-t_phb { + background-image: url('../img/sp.png'); + background-position: -425px -340px; + width: 200px; + height: 32px; +} + + + + + +.i-t_xwzx2 { + background-image: url('../img/sp.png'); + background-position: -201px -592px; + width: 153px; + height: 24px; +} + +.i-t_yxgl { + background-image: url('../img/sp.png'); + background-position: -300px -390px; + width: 235px; + height: 32px; +} + +.i-t_yxgl2 { + background-image: url('../img/sp.png'); + background-position: -194px -540px; + width: 227px; + height: 23px; +} + +.i-t_yxzl { + background-image: url('../img/sp.png'); + background-position: -245px -341px; + width: 170px; + height: 32px; +} + +.i-t_yxzl2 { + background-image: url('../img/sp.png'); + background-position: -359px -592px; + width: 153px; + height: 24px; +} + +.i-t_yyzx { + background-image: url('../img/sp.png'); + background-position: -300px -427px; + width: 228px; + height: 32px; +} + +.i-t_yyzx2 { + background-image: url('../img/sp.png'); + background-position: -426px -540px; + width: 160px; + height: 23px; +} + +.i-w_d { + background-image: url('../img/sp.png'); + background-position: -686px -105px; + width: 40px; + height: 40px; +} + +.i-w_download { + background-image: url('../img/sp.png'); + background-position: -639px 0px; + width: 34px; + height: 212px; +} + +.i-w_f { + background-image: url('../img/sp.png'); + background-position: -686px -154px; + width: 40px; + height: 40px; +} + +.i-w_z { + background-image: url('../img/sp.png'); + background-position:-686px -199px; + width: 40px; + height: 40px; +} \ No newline at end of file diff --git a/static/home/css/style.css b/static/home/css/style.css new file mode 100644 index 0000000..a90960a --- /dev/null +++ b/static/home/css/style.css @@ -0,0 +1,63 @@ + +body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0} +input{ + outline: none; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + -moz-user-select: none; + -webkit-appearance:none; + border: none; +} +.AlertLoginCH{position: fixed;top: 0;left: 0;z-index:9998;width: 100%;height: 100%;;background: #000;opacity: .5;filter:Alpha(opacity=50);} +.AlertLoginCH-main{position: fixed;top: 50%;left: 50%;z-index: 9999;margin:-175px 0 0 -235px;width: 270px;background: #fff;border-radius: 5px;overflow: hidden;padding:30px 90px ;font:12px/1.5 Microsoft yahei;} +.AlertLoginCH-main .LoginCH-closed{position: absolute;top:15px;right:15px;width: 16px;height: 16px;background: url("../img/ico.png") no-repeat -15px -15px} +.AlertLoginCH-main .LoginCH-closed:hover{background-position: -47px -15px;} +.LoginCH{display: block} +.LoginCH .loginCH-tit{height: 30px;line-height: 30px;overflow:hidden} +.LoginCH .loginCH-tit .loginCHname{color:#666;font-size:18px;font-weight: 400;float: left} +.LoginCH .loginCH-tit .loginCH-goregister{float: right;padding-right: 20px;height: 30px;background: url("../img/ico.png") 100% -1px;color:#0cacff} +.LoginCH .loginCH-tit .loginCH-goregister:hover{color: #ff5757;background-position: 100% -32px;} +.LoginCH .LoginCH-mr{padding-left: 35px;width: 235px;height: 38px;position: relative;left: 0;top: 0;margin-top:10px;border: 1px solid #ccc;background: url("../img/ico.png") no-repeat} +.LoginCH .LoginCH-mr.Alertfocus{border-color:#00A5FF} +.LoginCH .LoginCH-mr.blur{border-color:red} +.LoginCH .LoginCH-mr.u{background-position:0 -60px;} +.LoginCH .LoginCH-mr.p{background-position:-37px -60px;} +.LoginCH .LoginCH-mr.y{background: url("../img/icon-3.png") no-repeat 7px 11px;display: none} +.LoginCH .other{margin-top: 10px;overflow: hidden} +.LoginCH .other .jz{overflow: hidden;float: left;color: #666} +.LoginCH .other .jz label{} +.LoginCH .other .jz input{vertical-align: middle;} +.LoginCH .other .forgetpass{float: right;color:#ba9568} +.LoginCH .other .forgetpass a{color:#ba9568} +.LoginCH .LoginCH-mr input{height:36px;line-height: 36px;width: 220px;border:0;} +.LoginCH .loginch-btn{display: block;margin-top:10px;height:40px;line-height: 40px;text-align: center;background:#FF5757;border-radius: 5px;color: #fff;text-decoration: none;font-size: 18px;font-weight: 400;} +.LoginCH .loginch-btn:hover{background:#FF4141;} +.LoginCH-qqlogin{margin-top: 16px;} +.LoginCH-qqlogin .tit{height: 21px;line-height: 21px;background:url(../img/ico.png) no-repeat -16px -109px;text-align: center;color: #999;} +.LoginCH-qqlogin a{display:block; float:left;width: 40px;height: 40px;background: url("../img/other-btn.png") no-repeat 0 0;text-indent:-999px;} +.LoginCH-qqlogin .qq{background-position:0 0;margin:9px 0 0 60px;} +.LoginCH-qqlogin .qq:hover{background-position:0 100%;} +.LoginCH-qqlogin .wx{background-position:-69px 0;margin:9px 0 0 60px;} +.LoginCH-qqlogin .wx:hover{background-position:-69px 100%;} + + +.RigisterCH{display: none} +.RigisterCH .RigisterCH-tit{height: 30px;line-height: 30px;overflow:hidden} +.RigisterCH .RigisterCHname{color:#666;font-size:18px;font-weight: 400;float: left} +.RigisterCH .RigisterCH-gologin{float: right;padding-right: 20px;height: 30px;background: url("../img/ico.png") 100% -1px;color:#0cacff;text-decoration: none} +.RigisterCH .RigisterCH-mr{padding-left: 35px;margin-top:10px;border: 1px solid #ccc;background: url("../img/ico.png") no-repeat} +.RigisterCH .RigisterCH-mr.Alertfocus{border-color:#00A5FF} +.RigisterCH .RigisterCH-mr.blur{border-color:red} +.RigisterCH .RigisterCH-mr.succ{border-color:green} +.RigisterCH .RigisterCH-mr.u{background-position:0 -60px;} +.RigisterCH .RigisterCH-mr.p{background-position:-37px -60px;} +.RigisterCH .RigisterCH-mr.p2{background-position:-37px -60px;} +.RigisterCH .RigisterCH-mr.code{background-position:-37px -60px;} +.RigisterCH .RigisterCH-mr input{height:36px;line-height: 36px;width: 220px;border:none;} + +.RigisterCH .RigisterCH-mr.code input{width: 150px;} +.RigisterCH .RigisterCH-mr.code img{width: 70px;height: 36px;vertical-align: top} + +.RigisterCH .register-btn{display: block;margin-top:10px;height:40px;line-height: 40px;text-align: center;background:#FF5757;border-radius: 5px;color: #fff;text-decoration: none;font-size: 18px;font-weight: 400;} +.RigisterCH .register-btn:hover{background:#FF4141;} + +.AlertLoginCH-main .AlertLogintip{padding-top: 10px;font-size: 12px;color: red;height: 17px;} \ No newline at end of file diff --git a/static/home/img/27093352BTEIe.jpeg b/static/home/img/27093352BTEIe.jpeg new file mode 100644 index 0000000..e9708e7 Binary files /dev/null and b/static/home/img/27093352BTEIe.jpeg differ diff --git a/static/home/img/banner.jpg b/static/home/img/banner.jpg new file mode 100644 index 0000000..6cf03a4 Binary files /dev/null and b/static/home/img/banner.jpg differ diff --git a/static/home/img/banner_top.jpg b/static/home/img/banner_top.jpg new file mode 100644 index 0000000..7559f7c Binary files /dev/null and b/static/home/img/banner_top.jpg differ diff --git a/static/home/img/banneract.jpg b/static/home/img/banneract.jpg new file mode 100644 index 0000000..5dae138 Binary files /dev/null and b/static/home/img/banneract.jpg differ diff --git a/static/home/img/btn.jpg b/static/home/img/btn.jpg new file mode 100644 index 0000000..c2d3bd5 Binary files /dev/null and b/static/home/img/btn.jpg differ diff --git a/static/home/img/download.jpg b/static/home/img/download.jpg new file mode 100644 index 0000000..01276d1 Binary files /dev/null and b/static/home/img/download.jpg differ diff --git a/static/home/img/download.png b/static/home/img/download.png new file mode 100644 index 0000000..748f9a8 Binary files /dev/null and b/static/home/img/download.png differ diff --git a/static/home/img/ds_j.png b/static/home/img/ds_j.png new file mode 100644 index 0000000..4a4daba Binary files /dev/null and b/static/home/img/ds_j.png differ diff --git a/static/home/img/ds_m.png b/static/home/img/ds_m.png new file mode 100644 index 0000000..6a6d953 Binary files /dev/null and b/static/home/img/ds_m.png differ diff --git a/static/home/img/ds_w.png b/static/home/img/ds_w.png new file mode 100644 index 0000000..cc14852 Binary files /dev/null and b/static/home/img/ds_w.png differ diff --git a/static/home/img/explain.jpg b/static/home/img/explain.jpg new file mode 100644 index 0000000..4b59db8 Binary files /dev/null and b/static/home/img/explain.jpg differ diff --git a/static/home/img/fs_j.png b/static/home/img/fs_j.png new file mode 100644 index 0000000..0b5f2f4 Binary files /dev/null and b/static/home/img/fs_j.png differ diff --git a/static/home/img/fs_m.png b/static/home/img/fs_m.png new file mode 100644 index 0000000..e300278 Binary files /dev/null and b/static/home/img/fs_m.png differ diff --git a/static/home/img/fs_w.png b/static/home/img/fs_w.png new file mode 100644 index 0000000..63bb902 Binary files /dev/null and b/static/home/img/fs_w.png differ diff --git a/static/home/img/gb.jpg b/static/home/img/gb.jpg new file mode 100644 index 0000000..8c98fe7 Binary files /dev/null and b/static/home/img/gb.jpg differ diff --git a/static/home/img/gift-lb.jpg b/static/home/img/gift-lb.jpg new file mode 100644 index 0000000..9d05bc3 Binary files /dev/null and b/static/home/img/gift-lb.jpg differ diff --git a/static/home/img/gy.jpg b/static/home/img/gy.jpg new file mode 100644 index 0000000..d3c6f4c Binary files /dev/null and b/static/home/img/gy.jpg differ diff --git a/static/home/img/gzh.jpg b/static/home/img/gzh.jpg new file mode 100644 index 0000000..a341ce2 Binary files /dev/null and b/static/home/img/gzh.jpg differ diff --git a/static/home/img/ico.png b/static/home/img/ico.png new file mode 100644 index 0000000..b55afa1 Binary files /dev/null and b/static/home/img/ico.png differ diff --git a/static/home/img/icon-3.png b/static/home/img/icon-3.png new file mode 100644 index 0000000..482547f Binary files /dev/null and b/static/home/img/icon-3.png differ diff --git a/static/home/img/icon-8.png b/static/home/img/icon-8.png new file mode 100644 index 0000000..8bd6977 Binary files /dev/null and b/static/home/img/icon-8.png differ diff --git a/static/home/img/icon.png b/static/home/img/icon.png new file mode 100644 index 0000000..1dece15 Binary files /dev/null and b/static/home/img/icon.png differ diff --git a/static/home/img/img202101111746210.png b/static/home/img/img202101111746210.png new file mode 100644 index 0000000..dd77f70 Binary files /dev/null and b/static/home/img/img202101111746210.png differ diff --git a/static/home/img/img202101271114290.jpeg b/static/home/img/img202101271114290.jpeg new file mode 100644 index 0000000..35edf88 Binary files /dev/null and b/static/home/img/img202101271114290.jpeg differ diff --git a/static/home/img/img202101271115480.jpeg b/static/home/img/img202101271115480.jpeg new file mode 100644 index 0000000..620b670 Binary files /dev/null and b/static/home/img/img202101271115480.jpeg differ diff --git a/static/home/img/listrtxt.jpg b/static/home/img/listrtxt.jpg new file mode 100644 index 0000000..7dff8a0 Binary files /dev/null and b/static/home/img/listrtxt.jpg differ diff --git a/static/home/img/logo.png b/static/home/img/logo.png new file mode 100644 index 0000000..15b69e6 Binary files /dev/null and b/static/home/img/logo.png differ diff --git a/static/home/img/news.jpg b/static/home/img/news.jpg new file mode 100644 index 0000000..2714888 Binary files /dev/null and b/static/home/img/news.jpg differ diff --git a/static/home/img/ny.jpg b/static/home/img/ny.jpg new file mode 100644 index 0000000..79b8737 Binary files /dev/null and b/static/home/img/ny.jpg differ diff --git a/static/home/img/nybottom.jpg b/static/home/img/nybottom.jpg new file mode 100644 index 0000000..493ff3d Binary files /dev/null and b/static/home/img/nybottom.jpg differ diff --git a/static/home/img/other-btn.png b/static/home/img/other-btn.png new file mode 100644 index 0000000..1c19fb6 Binary files /dev/null and b/static/home/img/other-btn.png differ diff --git a/static/home/img/pagination.jpg b/static/home/img/pagination.jpg new file mode 100644 index 0000000..c8a26e1 Binary files /dev/null and b/static/home/img/pagination.jpg differ diff --git a/static/home/img/pic_box.jpg b/static/home/img/pic_box.jpg new file mode 100644 index 0000000..7ee05ed Binary files /dev/null and b/static/home/img/pic_box.jpg differ diff --git a/static/home/img/rank.jpg b/static/home/img/rank.jpg new file mode 100644 index 0000000..87d28e9 Binary files /dev/null and b/static/home/img/rank.jpg differ diff --git a/static/home/img/role.jpg b/static/home/img/role.jpg new file mode 100644 index 0000000..4486af9 Binary files /dev/null and b/static/home/img/role.jpg differ diff --git a/static/home/img/sec2.jpg b/static/home/img/sec2.jpg new file mode 100644 index 0000000..1aed104 Binary files /dev/null and b/static/home/img/sec2.jpg differ diff --git a/static/home/img/sec3.jpg b/static/home/img/sec3.jpg new file mode 100644 index 0000000..bb40f60 Binary files /dev/null and b/static/home/img/sec3.jpg differ diff --git a/static/home/img/secrole.jpg b/static/home/img/secrole.jpg new file mode 100644 index 0000000..5ac1e64 Binary files /dev/null and b/static/home/img/secrole.jpg differ diff --git a/static/home/img/select.jpg b/static/home/img/select.jpg new file mode 100644 index 0000000..d26547f Binary files /dev/null and b/static/home/img/select.jpg differ diff --git a/static/home/img/slide_1.jpg b/static/home/img/slide_1.jpg new file mode 100644 index 0000000..e6d1776 Binary files /dev/null and b/static/home/img/slide_1.jpg differ diff --git a/static/home/img/slide_2.jpg b/static/home/img/slide_2.jpg new file mode 100644 index 0000000..e90678f Binary files /dev/null and b/static/home/img/slide_2.jpg differ diff --git a/static/home/img/slide_3.jpg b/static/home/img/slide_3.jpg new file mode 100644 index 0000000..218c3e4 Binary files /dev/null and b/static/home/img/slide_3.jpg differ diff --git a/static/home/img/slide_4.jpg b/static/home/img/slide_4.jpg new file mode 100644 index 0000000..0279f89 Binary files /dev/null and b/static/home/img/slide_4.jpg differ diff --git a/static/home/img/slide_5.jpg b/static/home/img/slide_5.jpg new file mode 100644 index 0000000..53b0962 Binary files /dev/null and b/static/home/img/slide_5.jpg differ diff --git a/static/home/img/sp.png b/static/home/img/sp.png new file mode 100644 index 0000000..950ccfe Binary files /dev/null and b/static/home/img/sp.png differ diff --git a/static/home/img/tab.jpg b/static/home/img/tab.jpg new file mode 100644 index 0000000..39f5a6b Binary files /dev/null and b/static/home/img/tab.jpg differ diff --git a/static/home/img/tabact.jpg b/static/home/img/tabact.jpg new file mode 100644 index 0000000..8803b20 Binary files /dev/null and b/static/home/img/tabact.jpg differ diff --git a/static/home/img/tc-close.png b/static/home/img/tc-close.png new file mode 100644 index 0000000..cf506d8 Binary files /dev/null and b/static/home/img/tc-close.png differ diff --git a/static/home/img/tubiaoji.png b/static/home/img/tubiaoji.png new file mode 100644 index 0000000..ae0c2d4 Binary files /dev/null and b/static/home/img/tubiaoji.png differ diff --git a/static/home/img/video_box.jpg b/static/home/img/video_box.jpg new file mode 100644 index 0000000..c185832 Binary files /dev/null and b/static/home/img/video_box.jpg differ diff --git a/static/home/img/wfjs.jpg b/static/home/img/wfjs.jpg new file mode 100644 index 0000000..8173e01 Binary files /dev/null and b/static/home/img/wfjs.jpg differ diff --git a/static/home/img/wrappernav.png b/static/home/img/wrappernav.png new file mode 100644 index 0000000..ddf0b3d Binary files /dev/null and b/static/home/img/wrappernav.png differ diff --git a/static/home/img/xszdboxxzd.jpg b/static/home/img/xszdboxxzd.jpg new file mode 100644 index 0000000..af7e95b Binary files /dev/null and b/static/home/img/xszdboxxzd.jpg differ diff --git a/static/home/img/xszdn.jpg b/static/home/img/xszdn.jpg new file mode 100644 index 0000000..7071dbe Binary files /dev/null and b/static/home/img/xszdn.jpg differ diff --git a/static/home/img/xszdnav.jpg b/static/home/img/xszdnav.jpg new file mode 100644 index 0000000..42bc0ef Binary files /dev/null and b/static/home/img/xszdnav.jpg differ diff --git a/static/home/img/xtjs.jpg b/static/home/img/xtjs.jpg new file mode 100644 index 0000000..8ee6e03 Binary files /dev/null and b/static/home/img/xtjs.jpg differ diff --git a/static/home/img/ytbg.gif b/static/home/img/ytbg.gif new file mode 100644 index 0000000..57453a4 Binary files /dev/null and b/static/home/img/ytbg.gif differ diff --git a/static/home/img/yxgl.jpg b/static/home/img/yxgl.jpg new file mode 100644 index 0000000..fa785ac Binary files /dev/null and b/static/home/img/yxgl.jpg differ diff --git a/static/home/img/yxglx.jpg b/static/home/img/yxglx.jpg new file mode 100644 index 0000000..d4ae5ae Binary files /dev/null and b/static/home/img/yxglx.jpg differ diff --git a/static/home/img/zs_j.png b/static/home/img/zs_j.png new file mode 100644 index 0000000..b147d1e Binary files /dev/null and b/static/home/img/zs_j.png differ diff --git a/static/home/img/zs_m.png b/static/home/img/zs_m.png new file mode 100644 index 0000000..8bf4fcd Binary files /dev/null and b/static/home/img/zs_m.png differ diff --git a/static/home/img/zs_m_1.png b/static/home/img/zs_m_1.png new file mode 100644 index 0000000..8bf4fcd Binary files /dev/null and b/static/home/img/zs_m_1.png differ diff --git a/static/home/img/zs_w.png b/static/home/img/zs_w.png new file mode 100644 index 0000000..339fa16 Binary files /dev/null and b/static/home/img/zs_w.png differ diff --git a/static/home/img/zs_w_1.png b/static/home/img/zs_w_1.png new file mode 100644 index 0000000..339fa16 Binary files /dev/null and b/static/home/img/zs_w_1.png differ diff --git a/static/home/js/AlertLogin.js b/static/home/js/AlertLogin.js new file mode 100644 index 0000000..5f7336d --- /dev/null +++ b/static/home/js/AlertLogin.js @@ -0,0 +1,441 @@ +function AlertLoginCH(){} + +AlertLoginCH.prototype.tip = function(e,m){ + var html = "

"+m+"

"; + e&&e.after(html) +}; + +AlertLoginCH.prototype.sendAjax = function(url,callback,data,type){ + jQuery.ajax({ + type : type||'GET', + cache : "true", + data:data, + url : url, + dataType : 'jsonp', + jsonp : 'jsonpCallback', + async : false, + success : callback + }); +}; + +var AL = new AlertLoginCH(); + +AL.config = function(obj){ + var config = { + "coverBox":jQuery("#AlertLoginCH"), + "AlertBOX":jQuery("#AlertLoginCH-main"), + + "RegisterBox":jQuery("#RigisterCH"), + "LoginBox":jQuery("#LoginCH"), + "LgBtn":jQuery("#loginch-btn"), + "RgBtn":jQuery("#register-btn"), + "QQBtn":jQuery("#LoginCH-qqlogin"), + "tip":jQuery(".AlertLogintip"), + "closedBtn":jQuery("#LoginCH-closed"), + + "LgUser":jQuery("#LoginCH-username"), + "LgPass":jQuery("#LoginCH-password"), + "LgCode":jQuery("#LoginCH-code"), + + "RgUser":jQuery("#RigisterCH-username"), + "RgPas":jQuery("#RigisterCH-password"), + "RgPas2":jQuery("#RigisterCH-password2"), + "Code":jQuery('#RigisterCH-code'), + "COdeImg":jQuery('#code_img'), + + "LgEdBox":jQuery("#user-box"), + "logout":jQuery(".logout"), + "qqloginBtn":"true" + }; + AL.a = (obj!=undefined)?jQuery.extend(config,obj):config; +}; + +AL.showLgBox = function(){ + var B = AL.a; + B["LoginBox"].show(); + B["RegisterBox"].hide(); +}; + +AL.showRgBox = function(){ + var B = AL.a; + B["LoginBox"].hide(); + B["RegisterBox"].show(); +}; + +AL.closed = function(){ + var B = AL.a; + B["coverBox"].hide().remove(); + B["AlertBOX"].hide().remove(); +}; + +AL.regLg = function(){ + var B = AL.a; + B["LgUser"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["LgUser"].blur(function(){ + var val = jQuery(this).val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip(jQuery(this).parent(),"请输入用户名"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); + B["LgPass"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["LgPass"].blur(function(){ + var val = jQuery(this).val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip(B["LgPass"].parent(),"请输入密码"); + B["LgPass"].parent().removeClass("Alertfocus").addClass("blur") + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); +}; + +AL.LgLogin = function(){ + var B = AL.a; + + function login(){ + var LgUserV = B["LgUser"].val(); + var LgpassV = B["LgPass"].val(); + if(!LgUserV){ + B["LgUser"].blur() + } + if(!LgpassV){ + B["LgPass"].blur() + } + if(LgUserV&&LgpassV){ + var url = "/index.php?m=member&c=email&a=checkUsername&service=login&cn=" + LgUserV + "&pwd=" + encodeURIComponent(LgpassV) + "&random="+ Math.random(); + AL.sendAjax(url,function(respons){ + var err = respons.result; + if(err == "err0001"){ + var tip = B["LgPass"].parent().next(".AlertLogintip"); + tip.remove(); + B["LgPass"].val(""); + B["LgPass"].parent().removeClass("Alertfocus").addClass("blur") + AL.tip(B["LgPass"].parent(),"账号或者密码错误!"); + } + else if(err == "success"){ + AL.closed(); + AL.loginSuccess(respons) + } + }) + } + } + + B["LgBtn"].click(function(){ + login(); + }); + B["LgPass"].keyup(function(e){ + var code = e.keyCode||""; + code == 13&&login(); + }) +}; + +AL.RegRg = function(){ + var B = AL.a; + B["RgUser"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["RgUser"].blur(function(){ + var val = jQuery(this).val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip(jQuery(this).parent(),"请输入用户名"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + }else { + AL.sendAjax("index.php?m=member&c=email&a=checkUsername&service=checkCn&cn=" + val + "", function (data) { + if (data.result == "success") { + B["RgUser"].parent().next(".AlertLogintip").remove(); + B["RgUser"].parent().removeClass("Alertfocus").addClass("succ"); + AL.tip(B["RgUser"].parent(), "通过用户名验证!"); + B["RgUser"].parent().next(".AlertLogintip").css("color","green") + AL.isRguser = true; + } else { + B["RgUser"].parent().next(".AlertLogintip").remove(); + B["RgUser"].parent().removeClass("succ Alertfocus blur").addClass("blur"); + AL.tip(B["RgUser"].parent(), "用户名已经存在!"); + } + }); + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); + + B["RgPas"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["RgPas"].blur(function(){ + var val = jQuery(this).val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip( jQuery(this).parent(),"请输入密码!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + }else if(val.length<6||val.length>16){ + AL.tip( jQuery(this).parent(),"密码范围在6~16位之间!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + } + else{ + AL.isRgpas = true; + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); + B["RgPas2"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["RgPas2"].blur(function(){ + var val = jQuery(this).val(); + var pval = B["RgPas"].val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip( jQuery(this).parent(),"请重复密码!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + } + else if(val!==pval){ + AL.tip( jQuery(this).parent(),"两次输入的密码不一致!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + + }else{ + AL.isRgpas2 = true; + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); + B["Code"].focus(function(){ + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + len != 0&&tip.remove(); + jQuery(this).parent().addClass("Alertfocus").removeClass("blur"); + }); + B["Code"].blur(function(){ + var val = jQuery(this).val(); + var tip = jQuery(this).parent().next(".AlertLogintip"); + var len = tip.length; + if(val == ""){ + AL.tip( jQuery(this).parent(),"请输入验证码!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + }else if(val.length!=4){ + AL.tip( jQuery(this).parent(),"验证码不正确!"); + jQuery(this).parent().removeClass("Alertfocus").addClass("blur") + } + else{ + AL.isCode = true; + } + len != 0&&tip.remove(); + jQuery(this).parent().removeClass("Alertfocus"); + }); + B["COdeImg"].click(function(){ + var src = $(this).attr('src'); + var newSrc = src+Math.random(); + $(this).attr({'src':newSrc}); + }) +}; + +AL.RgRigester = function(){ + var B = AL.a; + function register (){ + var ruser = B["RgUser"].val(); + var rpass = B["RgPas"].val(); + var rpass2 = B["RgPas2"].val(); + var code = B['Code'].val(); + !ruser ? B["RgUser"].blur() : !rpass ? B["RgPas"].blur() : (!rpass2 || (rpass2 != rpass)) ? B["RgPas"].blur(): !code ? B["Code"].blur():registerbtn(); + function registerbtn(){ + if(AL.isRguser && AL.isRgpas&&AL.isRgpas2&&AL.isCode){ + var regUrl = "/index.php?m=member&c=email&a=alertWindowReg&Math="+Math.random()+'&'; + var paramObj = packParam({ + cn:ruser, + pwd:rpass, + code:code, + uid : "", + suid: "alertLogin2"||"" + }); + AL.sendAjax(regUrl+paramObj,function(data) { + if (data.result=="success") { + alert("注册成功"); + AL.closed(); + AL.loginSuccess(); + }else if(data.result=="error00"){ + B["Code"].val(""); + B["Code"].parent().next(".AlertLogintip").remove(); + B["Code"].parent().removeClass("Alertfocus succ").addClass("blur"); + AL.tip(B["Code"].parent(),"验证码不正确!"); + } + else { + B["RgUser"].val(""); + B["RgUser"].parent().next(".AlertLogintip").remove(); + B["RgUser"].parent().removeClass("Alertfocus succ").addClass("blur"); + AL.tip(B["RgUser"].parent(),"账号已经存在!"); + } + }); + + + } + } + function packParam (json) { + var string = ''; + for ( var key in json) { + string += "&" + key + "=" + (json[key] || ''); + } + return string.length > 0 ? string.substring(1) : ''; + }; + } + + B["RgBtn"].click(function(){ + register(); + }); + B["RgPas2"].keyup(function(e){ + var code = e.keyCode||""; + code == 13 && register(); + }) +}; + +AL.loginSuccess = function(){ + location.reload() +}; + +AL.qqlogin = function(){ + var Host ='//' + document.domain + '/'; + var gameid = ""; + var uid= "alertLogin"||""; + var suid= "alertLogin"||""; + location.href = Host+'index.php?m=member&c=index&a=public_qq_loginnew&sid='+gameid+'&uid='+uid+'&suid='+suid+'¬last=1&forward='+encodeURIComponent(location.href); +}; + + +AL.wxlogin = function(){ + var Host ='//' + document.domain + '/'; + var gameid =""; + var uid= "alertLogin"||""; + var suid= "alertLogin"||""; + location.href = Host+'index.php?m=member&c=weixin&a=public_weixin_login&sid='+gameid+'&uid='+uid+'&suid='+suid+'¬last=1&forward='+encodeURIComponent(location.href); +}; + +AL.genereteHtml = function(){ + var html = ""; + html+= '
'; + + html+= '
'; + + html+= '
' + + '
' + + '
快速登录
' + + '注册'+ + '
'; + + html+= '
' + + ''+ + '
' + + '
' + + ''+ + '
'; + + html+= '
' + + '' + + '
' + + '
' + + '
' + + '' + + '' + + '
' + + '
' + + '忘记密码' + + '
' + + '
' + + '立即登录
' + + html+= '
'; + + html+= '
' + + '
注册账号
' + + '登录'+ + '
'; + + html+= '
'+ + ''+ + '
'; + + html+= '
'+ + ''+ + '
'; + + html+= '
'+ + ''+ + '
'; + + html+= '
'+ + ''+ + ''+ + '
'; + + html+= '立即登录' + + '
'; + + html+= '
'+ + '
第三方账号登录
'+ + 'qq登录'+ + '微信登录'+ + '
'+ + '' + + '
'; + + jQuery("body").append(html); +} + +AL.BoxInit = function(){ + var B = AL.a; + if(B["box"]=="register"){ + AL.showRgBox(); + AL.RegRg(); + AL.RgRigester(); + }else{ + AL.showLgBox(); + AL.regLg(); + AL.LgLogin(); + } + if(!B["qqloginBtn"]){ + jQuery("#LoginCH-qqlogin").hide(); + } + +}; + +AL.Init = function(obj){ + AL.genereteHtml(); + AL.config(obj); + AL.BoxInit(); +}; + +jQuery.fn.extend({ + AlertLogin:function(obj){ + jQuery(this).click(function(){ + AL.Init(obj); + }) + } +}); \ No newline at end of file diff --git a/static/home/js/AlertVideo.js b/static/home/js/AlertVideo.js new file mode 100644 index 0000000..92e3a69 --- /dev/null +++ b/static/home/js/AlertVideo.js @@ -0,0 +1,78 @@ +var Video = function(){}; +var a = new Video(); +a.ex = function(obj){ + var config = { + Width:"800", + Height:"400", + Src:"", + Type:"flv", + unit:'px' + }; + a.d = obj? $.extend(config,obj):config; +}; + +a.genereteHtml = function(){ + var d = a.d; + var type = a.d.Type; + var width = d.Width+d.unit,height = d.Height+d.unit; + console.log(width,height); + if(type == 'mp4'){ + var html = '
'; + html += '
'; + html += '
'; + }else{ + var html = '
'; + html += '
'; + html += ''; + html += '
'; + } + return html; +}; + +a.countCss = function(){ + var d = a.d; + var css = { + width: d.Width+d.unit, + height: d.Height+d.unit + }; + var mar = '-'+ (d.Height/2)+d.unit+' 0 0 -'+(d.Width/2)+d.unit; + $(".AlertVideo-main").css(css) + $(".AlertVideo").css("margin",mar) +}; + + + +a.closedVideo = function(){ + $(".Alert-cover").remove(); + $("#AlertVideo").remove(); + a.isShow = false; +}; + +a.isShow = false; + +a.showVideo = function(){ + if(a.isShow){return false} + var html = a.genereteHtml(); + $("body").append(html); + a.countCss(); + a.isShow = true; +}; + +a.Init = function(obj){ + a.ex(obj); + a.showVideo(); +}; + +$.fn.extend({ + insertVideo:function(obj){ + $(this).click(function(){ + a.Init(obj) + }) + } +}) diff --git a/static/home/js/Gw_Fn.js b/static/home/js/Gw_Fn.js new file mode 100644 index 0000000..2b01a23 --- /dev/null +++ b/static/home/js/Gw_Fn.js @@ -0,0 +1 @@ +define(function(){ var GW_JS = function(){}; GW_JS.prototype.SendAjax = function(url,callback){ $.ajax({ type : 'GET', cache : true, url : url, dataType : "jsonp", jsonp:'jsonpCallback', async:false, success:callback }) }; var GW = new GW_JS(); GW.config = function(obj){ var defaultConfig = { GameId : "", GameName :"", Slide:{ SlideId : "", SlideBox : "" }, Login:{ LoginBox:"", LoginUser:"", LoginPass:"", LoginSubmit:"" }, SwitchTab:{ TabNav:"", TabContent:"", TabCurrent:"", TabActive:"", TabEvent:"", TabFind:"", TabMore:"" }, Server:{ ServerTemplate:"", ServerBox:"", ServerL:0 } }; GW.extend = obj?$.extend(defaultConfig,obj):defaultConfig; }; GW.slide = function(){ var D = GW.extend.Slide; var id = D.SlideId; var obj = D.SlideBox; if(id && obj){ /*GW.SendAjax('//' + location.host + '/index.php?m=poster&c=index&a=show_poster&type=JSON&id=' + id, function(result){ var list = result.Data; var str="
    "; for (var i in list){ str += "
  • "+(++i)+"
  • "; } str += "
    "; for (var i in list){ str += "
  • "; } str += "
"; $(obj).html(str); $(obj).slide({mainCell:".bd ul",effect:"fade",autoPlay:true}); });*/ var str = ''; str += '
'; str += '
    '; str += '
  • 1
  • '; str += '
  • 2
  • '; str += '
  • 3
  • '; str += '
  • 4
  • '; str += '
  • 5
  • '; str += '
'; str += '
'; str += '
'; str += '
    '; str += '
  • '; str += '
  • '; str += '
  • '; str += '
  • '; str += '
  • '; str += '
'; str += '
'; $(obj).html(str); $(obj).slide({mainCell:".bd ul",effect:"fade",autoPlay:true}); } }; /*GW.login = function(){ var D = GW.extend.Login; var LoginBox = D.LoginBox||""; var LoginSubmit = D.LoginSubmit||""; function loginSubmit(UserName,PassWord){ GW.SendAjax('//' + location.host + '/index.php?m=member&c=email&a=checkUsername&service=login&cn=' + UserName + '&pwd=' + PassWord, function(data){ if (data.result == 'err0001') { alert('用户名或密码错误'); return false; } if (data.result == 'pwderror') { alert('密码错误'); return false; } if (data.result == 'success') { GW.loginSuccess(data); GW.loginSuccessTOP(data) } }) }; function regLogin (){ var UserName = D.LoginUser.val()||""; var PassWord = D.LoginPass.val()||""; if(!UserName){ alert("请输入用户名!"); D.LoginUser.focus(); } else if(!PassWord){ alert("请输入密码!"); D.LoginPass.focus(); } else if(UserName&&PassWord){ loginSubmit(UserName,PassWord); } } LoginSubmit.click(function(){ regLogin(); }); (LoginBox!="")&&LoginBox.keydown(function(e){ var eCode = e.keyCode; (eCode==13)&®Login(); }) }; GW.loginSuccess = function(d){ var name = d.username||d; var href = location.href; var html = '
'; (GW.extend.Login.LoginBox !="")? GW.extend.Login.LoginBox.html(html):""; }; GW.loginSuccessTOP = function (d){ var name = d.username||d; var html = ''+name+''; html += '注销' $(".top-other").prepend(html); $("#top .top-register,#top .fenge,#top .top-login").remove(); };*/ GW.tab = function(d){ var c =d||GW.extend.SwitchTab; var TabNav = c.TabNav; var TabCon = c.TabContent; var TabCurrent = c.TabCurrent; var TabEvent = c.TabEvent; var TabFind = c.TabFind; var main_acive = c.main_acive; var TabMore = c.TabMore; var TabChilden = TabFind!="" ? TabNav.find(TabFind) : TabNav.children(); TabChilden.bind(TabEvent,function(){ var i = $(this).index(); var more = $(this).attr('data-url'); TabChilden.removeClass(TabCurrent).eq(i).addClass(TabCurrent); TabMore.attr({href:more}); if(main_acive){ TabCon.children().removeClass(main_acive).eq(i).addClass(main_acive); }else{ TabCon.children().hide().eq(i).show() } }) }; /*GW.serverList = function(){ var D = GW.extend; var GameId = D.GameId; var ServerBox = D.Server.ServerBox; var ServerTemplate = D.Server.ServerTemplate; var showLength = D.Server.ServerL; !function getServerList(){ var url = '//' + location.host + '/index.php?m=game&c=ajax&a=fuwuqi&gid=' + GameId+"&Math="+Math.random(); GW.SendAjax(url,function(resopons){ dataController(resopons); }); }(); function dataController (d){ var list = d.f_list; var num = 0; var arr = []; for(var i in list){ if(num < showLength-1){ if(list[i].f_zhuantai == "即将开启"){ arr.push(i); }else{ var a = TemplateHtml(list[i],ServerTemplate); ServerBox.append(a); num++; } } } if(arr.length>0){ var b = TemplateHtml(list[arr[arr.length-1]],ServerTemplate); ServerBox.prepend(b); } } function TemplateHtml (d,t){ var list = d; var Gid = GW.extend.GameId; var htmlArr = t.split("%"); for(var b in htmlArr){ (htmlArr[b]=="url")?htmlArr[b]= 'http://' + location.host + '/game/show/' + Gid + "/" + list.f_id + ".html":""; (htmlArr[b]=="serverName")?htmlArr[b]= list.f_name:""; (htmlArr[b]=="serverState")?list.f_zhuantai=="推荐"?htmlArr[b]="新服推荐" : htmlArr[b]="即将开启":"" } return htmlArr.join(""); } }; GW.userInfo = function(){ var url = '//' + location.host + '/index.php?m=member&c=email&a=checkUsername&service=islogin&Math' + Math.random(); GW.SendAjax(url,function(respons){ if(respons.username){ GW.loginSuccessTOP(respons); GW.loginSuccess(respons); } }) };*/ return GW.Init = function(obj){ GW.config(obj); //GW.userInfo(); GW.slide(); //GW.login(); GW.tab(); //GW.serverList(); }; }); \ No newline at end of file diff --git a/static/home/js/common.js b/static/home/js/common.js new file mode 100644 index 0000000..f9ad397 --- /dev/null +++ b/static/home/js/common.js @@ -0,0 +1,73 @@ +require.config({ + baseUrl:'//' + location.host + '/static/home/js/', + paths:{ + 'jquery':'jquery-1.7.2.min', + 'AlertLogin':'AlertLogin', + 'insertFlash':'inserFlash', + 'AlertVideo':'AlertVideo', + 'SuperSlide':'jquery.SuperSlide', + 'picShow1':'picShow1', + 'picShow2':'picShow2', + 'Gw_Fn':'//' + location.host + '/static/home/js/Gw_Fn', + 'top':'//' + location.host + '/static/home/js/top' + }, + shim:{ + 'jquery':{exports:'$'}, + 'SuperSlide':{deps:['jquery']}, + 'Gw_Fn':{deps:['jquery','SuperSlide']}, + 'AlertLogin':{deps:['jquery']}, + 'insertFlash':{deps:['jquery']}, + 'AlertVideo':{deps:['jquery']}, + 'picShow1':{deps:['jquery']}, + 'picShow2':{deps:['jquery']}, + 'top':{deps:['jquery','insertFlash','AlertLogin']} + } +}); + +require(['top'],function (top) { + top('文网游备字〔2022〕W-RPG 001 号', '/') +}); + +require(['jquery','Gw_Fn','SuperSlide','AlertVideo','picShow1','picShow2'], function ($,Gw){ + Gw({ + GameId : "415", + GameName :"yscq", + Slide:{ + SlideId : "765", + SlideBox : $("#slideBox") + }, + Login:{ + LoginBox:$('.log-box'), + LoginUser:$("#username"), + LoginPass:$("#password"), + LoginSubmit:$("#login-sub") + }, + SwitchTab:{ + TabNav:$("#news-nav"), + TabContent:$("#news-con"), + TabCurrent:"current", + TabEvent:"hover", + TabFind:"" + }, + Server:{ + ServerTemplate:'
  • %serverName%%serverState%
  • ', + ServerBox:$("#index_server_list_ul_id"), + ServerL:"7" + } + }); + $('.zf-sec').click(function(){ + "use strict"; + $(this).addClass('fadeIn').siblings().removeClass('fadeIn'); + }); + + $('#news-nav li').hover(function(){ + var url = $(this).attr('more_url'); + $('#news_more_zonghe').attr({'href':url}) + }); + + $('.job-tab-menu li').hover(function(){ + var i = $(this).index(); + $(this).addClass('on').siblings().removeClass('on'); + $('.job-con > div').removeClass('job_cur').eq(i).addClass('job_cur'); + }); +}); \ No newline at end of file diff --git a/static/home/js/idangerous.swiper2.7.6.min.js b/static/home/js/idangerous.swiper2.7.6.min.js new file mode 100644 index 0000000..1392d50 --- /dev/null +++ b/static/home/js/idangerous.swiper2.7.6.min.js @@ -0,0 +1,16 @@ +/* + * Swiper 2.7.6 + * Mobile touch slider and framework with hardware accelerated transitions + * + * http://www.idangero.us/sliders/swiper/ + * + * Copyright 2010-2015, Vladimir Kharlampidi + * The iDangero.us + * http://www.idangero.us/ + * + * Licensed under GPL & MIT + * + * Released on: February 11, 2015 +*/ +var Swiper=function(a,b){"use strict";function c(a,b){return document.querySelectorAll?(b||document).querySelectorAll(a):jQuery(a,b)}function d(a){return"[object Array]"===Object.prototype.toString.apply(a)?!0:!1}function e(){var a=G-J;return b.freeMode&&(a=G-J),b.slidesPerView>D.slides.length&&!b.centeredSlides&&(a=0),0>a&&(a=0),a}function f(){function a(a){var c,d,e=function(){"undefined"!=typeof D&&null!==D&&(void 0!==D.imagesLoaded&&D.imagesLoaded++,D.imagesLoaded===D.imagesToLoad.length&&(D.reInit(),b.onImagesReady&&D.fireCallback(b.onImagesReady,D)))};a.complete?e():(d=a.currentSrc||a.getAttribute("src"),d?(c=new Image,c.onload=e,c.onerror=e,c.src=d):e())}var d=D.h.addEventListener,e="wrapper"===b.eventTarget?D.wrapper:D.container;if(D.browser.ie10||D.browser.ie11?(d(e,D.touchEvents.touchStart,p),d(document,D.touchEvents.touchMove,q),d(document,D.touchEvents.touchEnd,r)):(D.support.touch&&(d(e,"touchstart",p),d(e,"touchmove",q),d(e,"touchend",r)),b.simulateTouch&&(d(e,"mousedown",p),d(document,"mousemove",q),d(document,"mouseup",r))),b.autoResize&&d(window,"resize",D.resizeFix),g(),D._wheelEvent=!1,b.mousewheelControl){if(void 0!==document.onmousewheel&&(D._wheelEvent="mousewheel"),!D._wheelEvent)try{new WheelEvent("wheel"),D._wheelEvent="wheel"}catch(f){}D._wheelEvent||(D._wheelEvent="DOMMouseScroll"),D._wheelEvent&&d(D.container,D._wheelEvent,j)}if(b.keyboardControl&&d(document,"keydown",i),b.updateOnImagesReady){D.imagesToLoad=c("img",D.container);for(var h=0;h=e&&k[0]<=e+g&&k[1]>=f&&k[1]<=f+h&&(c=!0)}if(!c)return}N?((37===b||39===b)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),39===b&&D.swipeNext(),37===b&&D.swipePrev()):((38===b||40===b)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),40===b&&D.swipeNext(),38===b&&D.swipePrev())}}function j(a){var c=D._wheelEvent,d=0;if(a.detail)d=-a.detail;else if("mousewheel"===c)if(b.mousewheelControlForceToAxis)if(N){if(!(Math.abs(a.wheelDeltaX)>Math.abs(a.wheelDeltaY)))return;d=a.wheelDeltaX}else{if(!(Math.abs(a.wheelDeltaY)>Math.abs(a.wheelDeltaX)))return;d=a.wheelDeltaY}else d=a.wheelDelta;else if("DOMMouseScroll"===c)d=-a.detail;else if("wheel"===c)if(b.mousewheelControlForceToAxis)if(N){if(!(Math.abs(a.deltaX)>Math.abs(a.deltaY)))return;d=-a.deltaX}else{if(!(Math.abs(a.deltaY)>Math.abs(a.deltaX)))return;d=-a.deltaY}else d=Math.abs(a.deltaX)>Math.abs(a.deltaY)?-a.deltaX:-a.deltaY;if(b.freeMode){var f=D.getWrapperTranslate()+d;if(f>0&&(f=0),f<-e()&&(f=-e()),D.setWrapperTransition(0),D.setWrapperTranslate(f),D.updateActiveSlide(f),0===f||f===-e())return}else(new Date).getTime()-V>60&&(0>d?D.swipeNext():D.swipePrev()),V=(new Date).getTime();return b.autoplay&&D.stopAutoplay(!0),a.preventDefault?a.preventDefault():a.returnValue=!1,!1}function k(a){D.allowSlideClick&&(m(a),D.fireCallback(b.onSlideClick,D,a))}function l(a){m(a),D.fireCallback(b.onSlideTouch,D,a)}function m(a){if(a.currentTarget)D.clickedSlide=a.currentTarget;else{var c=a.srcElement;do{if(c.className.indexOf(b.slideClass)>-1)break;c=c.parentNode}while(c);D.clickedSlide=c}D.clickedSlideIndex=D.slides.indexOf(D.clickedSlide),D.clickedSlideLoopIndex=D.clickedSlideIndex-(D.loopedSlides||0)}function n(a){return D.allowLinks?void 0:(a.preventDefault?a.preventDefault():a.returnValue=!1,b.preventLinksPropagation&&"stopPropagation"in a&&a.stopPropagation(),!1)}function o(a){return a.stopPropagation?a.stopPropagation():a.returnValue=!1,!1}function p(a){if(b.preventLinks&&(D.allowLinks=!0),D.isTouched||b.onlyExternal)return!1;var c=a.target||a.srcElement;document.activeElement&&document.activeElement!==document.body&&document.activeElement!==c&&document.activeElement.blur();var d="input select textarea".split(" ");if(b.noSwiping&&c&&t(c))return!1;if(_=!1,D.isTouched=!0,$="touchstart"===a.type,!$&&"which"in a&&3===a.which)return D.isTouched=!1,!1;if(!$||1===a.targetTouches.length){D.callPlugins("onTouchStartBegin"),!$&&!D.isAndroid&&d.indexOf(c.tagName.toLowerCase())<0&&(a.preventDefault?a.preventDefault():a.returnValue=!1);var e=$?a.targetTouches[0].pageX:a.pageX||a.clientX,f=$?a.targetTouches[0].pageY:a.pageY||a.clientY;D.touches.startX=D.touches.currentX=e,D.touches.startY=D.touches.currentY=f,D.touches.start=D.touches.current=N?e:f,D.setWrapperTransition(0),D.positions.start=D.positions.current=D.getWrapperTranslate(),D.setWrapperTranslate(D.positions.start),D.times.start=(new Date).getTime(),I=void 0,b.moveStartThreshold>0&&(X=!1),b.onTouchStart&&D.fireCallback(b.onTouchStart,D,a),D.callPlugins("onTouchStartEnd")}}function q(a){if(D.isTouched&&!b.onlyExternal&&(!$||"mousemove"!==a.type)){var c=$?a.targetTouches[0].pageX:a.pageX||a.clientX,d=$?a.targetTouches[0].pageY:a.pageY||a.clientY;if("undefined"==typeof I&&N&&(I=!!(I||Math.abs(d-D.touches.startY)>Math.abs(c-D.touches.startX))),"undefined"!=typeof I||N||(I=!!(I||Math.abs(d-D.touches.startY)D.touches.startX)return}else if(!b.swipeToNext&&dD.touches.startY)return;if(a.assignedToSwiper)return void(D.isTouched=!1);if(a.assignedToSwiper=!0,b.preventLinks&&(D.allowLinks=!1),b.onSlideClick&&(D.allowSlideClick=!1),b.autoplay&&D.stopAutoplay(!0),!$||1===a.touches.length){if(D.isMoved||(D.callPlugins("onTouchMoveStart"),b.loop&&(D.fixLoop(),D.positions.start=D.getWrapperTranslate()),b.onTouchMoveStart&&D.fireCallback(b.onTouchMoveStart,D)),D.isMoved=!0,a.preventDefault?a.preventDefault():a.returnValue=!1,D.touches.current=N?c:d,D.positions.current=(D.touches.current-D.touches.start)*b.touchRatio+D.positions.start,D.positions.current>0&&b.onResistanceBefore&&D.fireCallback(b.onResistanceBefore,D,D.positions.current),D.positions.current<-e()&&b.onResistanceAfter&&D.fireCallback(b.onResistanceAfter,D,Math.abs(D.positions.current+e())),b.resistance&&"100%"!==b.resistance){var f;if(D.positions.current>0&&(f=1-D.positions.current/J/2,D.positions.current=.5>f?J/2:D.positions.current*f),D.positions.current<-e()){var g=(D.touches.current-D.touches.start)*b.touchRatio+(e()+D.positions.start);f=(J+g)/J;var h=D.positions.current-g*(1-f)/2,i=-e()-J/2;D.positions.current=i>h||0>=f?i:h}}if(b.resistance&&"100%"===b.resistance&&(D.positions.current>0&&(!b.freeMode||b.freeModeFluid)&&(D.positions.current=0),D.positions.current<-e()&&(!b.freeMode||b.freeModeFluid)&&(D.positions.current=-e())),!b.followFinger)return;if(b.moveStartThreshold)if(Math.abs(D.touches.current-D.touches.start)>b.moveStartThreshold||X){if(!X)return X=!0,void(D.touches.start=D.touches.current);D.setWrapperTranslate(D.positions.current)}else D.positions.current=D.positions.start;else D.setWrapperTranslate(D.positions.current);return(b.freeMode||b.watchActiveIndex)&&D.updateActiveSlide(D.positions.current),b.grabCursor&&(D.container.style.cursor="move",D.container.style.cursor="grabbing",D.container.style.cursor="-moz-grabbin",D.container.style.cursor="-webkit-grabbing"),Y||(Y=D.touches.current),Z||(Z=(new Date).getTime()),D.velocity=(D.touches.current-Y)/((new Date).getTime()-Z)/2,Math.abs(D.touches.current-Y)<2&&(D.velocity=0),Y=D.touches.current,Z=(new Date).getTime(),D.callPlugins("onTouchMoveEnd"),b.onTouchMove&&D.fireCallback(b.onTouchMove,D,a),!1}}}function r(a){if(I&&D.swipeReset(),!b.onlyExternal&&D.isTouched){D.isTouched=!1,b.grabCursor&&(D.container.style.cursor="move",D.container.style.cursor="grab",D.container.style.cursor="-moz-grab",D.container.style.cursor="-webkit-grab"),D.positions.current||0===D.positions.current||(D.positions.current=D.positions.start),b.followFinger&&D.setWrapperTranslate(D.positions.current),D.times.end=(new Date).getTime(),D.touches.diff=D.touches.current-D.touches.start,D.touches.abs=Math.abs(D.touches.diff),D.positions.diff=D.positions.current-D.positions.start,D.positions.abs=Math.abs(D.positions.diff);var c=D.positions.diff,d=D.positions.abs,f=D.times.end-D.times.start;5>d&&300>f&&D.allowLinks===!1&&(b.freeMode||0===d||D.swipeReset(),b.preventLinks&&(D.allowLinks=!0),b.onSlideClick&&(D.allowSlideClick=!0)),setTimeout(function(){"undefined"!=typeof D&&null!==D&&(b.preventLinks&&(D.allowLinks=!0),b.onSlideClick&&(D.allowSlideClick=!0))},100);var g=e();if(!D.isMoved&&b.freeMode)return D.isMoved=!1,b.onTouchEnd&&D.fireCallback(b.onTouchEnd,D,a),void D.callPlugins("onTouchEnd");if(!D.isMoved||D.positions.current>0||D.positions.current<-g)return D.swipeReset(),b.onTouchEnd&&D.fireCallback(b.onTouchEnd,D,a),void D.callPlugins("onTouchEnd");if(D.isMoved=!1,b.freeMode){if(b.freeModeFluid){var h,i=1e3*b.momentumRatio,j=D.velocity*i,k=D.positions.current+j,l=!1,m=20*Math.abs(D.velocity)*b.momentumBounceRatio;-g>k&&(b.momentumBounce&&D.support.transitions?(-m>k+g&&(k=-g-m),h=-g,l=!0,_=!0):k=-g),k>0&&(b.momentumBounce&&D.support.transitions?(k>m&&(k=m),h=0,l=!0,_=!0):k=0),0!==D.velocity&&(i=Math.abs((k-D.positions.current)/D.velocity)),D.setWrapperTranslate(k),D.setWrapperTransition(i),b.momentumBounce&&l&&D.wrapperTransitionEnd(function(){_&&(b.onMomentumBounce&&D.fireCallback(b.onMomentumBounce,D),D.callPlugins("onMomentumBounce"),D.setWrapperTranslate(h),D.setWrapperTransition(300))}),D.updateActiveSlide(k)}return(!b.freeModeFluid||f>=300)&&D.updateActiveSlide(D.positions.current),b.onTouchEnd&&D.fireCallback(b.onTouchEnd,D,a),void D.callPlugins("onTouchEnd")}H=0>c?"toNext":"toPrev","toNext"===H&&300>=f&&(30>d||!b.shortSwipes?D.swipeReset():D.swipeNext(!0,!0)),"toPrev"===H&&300>=f&&(30>d||!b.shortSwipes?D.swipeReset():D.swipePrev(!0,!0));var n=0;if("auto"===b.slidesPerView){for(var o,p=Math.abs(D.getWrapperTranslate()),q=0,r=0;rp){n=o;break}n>J&&(n=J)}else n=F*b.slidesPerView;"toNext"===H&&f>300&&(d>=n*b.longSwipesRatio?D.swipeNext(!0,!0):D.swipeReset()),"toPrev"===H&&f>300&&(d>=n*b.longSwipesRatio?D.swipePrev(!0,!0):D.swipeReset()),b.onTouchEnd&&D.fireCallback(b.onTouchEnd,D,a),D.callPlugins("onTouchEnd")}}function s(a,b){return a&&a.getAttribute("class")&&a.getAttribute("class").indexOf(b)>-1}function t(a){var c=!1;do s(a,b.noSwipingClass)&&(c=!0),a=a.parentElement;while(!c&&a.parentElement&&!s(a,b.wrapperClass));return!c&&s(a,b.wrapperClass)&&s(a,b.noSwipingClass)&&(c=!0),c}function u(a,b){var c,d=document.createElement("div");return d.innerHTML=b,c=d.firstChild,c.className+=" "+a,c.outerHTML}function v(a,c,d){function e(){var f=+new Date,l=f-g;h+=i*l/(1e3/60),k="toNext"===j?h>a:a>h,k?(D.setWrapperTranslate(Math.ceil(h)),D._DOMAnimating=!0,window.setTimeout(function(){e()},1e3/60)):(b.onSlideChangeEnd&&("to"===c?d.runCallbacks===!0&&D.fireCallback(b.onSlideChangeEnd,D,j):D.fireCallback(b.onSlideChangeEnd,D,j)),D.setWrapperTranslate(a),D._DOMAnimating=!1)}var f="to"===c&&d.speed>=0?d.speed:b.speed,g=+new Date;if(D.support.transitions||!b.DOMAnimation)D.setWrapperTranslate(a),D.setWrapperTransition(f);else{var h=D.getWrapperTranslate(),i=Math.ceil((a-h)/f*(1e3/60)),j=h>a?"toNext":"toPrev",k="toNext"===j?h>a:a>h;if(D._DOMAnimating)return;e()}D.updateActiveSlide(a),b.onSlideNext&&"next"===c&&d.runCallbacks===!0&&D.fireCallback(b.onSlideNext,D,a),b.onSlidePrev&&"prev"===c&&d.runCallbacks===!0&&D.fireCallback(b.onSlidePrev,D,a),b.onSlideReset&&"reset"===c&&d.runCallbacks===!0&&D.fireCallback(b.onSlideReset,D,a),"next"!==c&&"prev"!==c&&"to"!==c||d.runCallbacks!==!0||w(c)}function w(a){if(D.callPlugins("onSlideChangeStart"),b.onSlideChangeStart)if(b.queueStartCallbacks&&D.support.transitions){if(D._queueStartCallbacks)return;D._queueStartCallbacks=!0,D.fireCallback(b.onSlideChangeStart,D,a),D.wrapperTransitionEnd(function(){D._queueStartCallbacks=!1})}else D.fireCallback(b.onSlideChangeStart,D,a);if(b.onSlideChangeEnd)if(D.support.transitions)if(b.queueEndCallbacks){if(D._queueEndCallbacks)return;D._queueEndCallbacks=!0,D.wrapperTransitionEnd(function(c){D.fireCallback(b.onSlideChangeEnd,c,a)})}else D.wrapperTransitionEnd(function(c){D.fireCallback(b.onSlideChangeEnd,c,a)});else b.DOMAnimation||setTimeout(function(){D.fireCallback(b.onSlideChangeEnd,D,a)},10)}function x(){var a=D.paginationButtons;if(a)for(var b=0;b0&&0===D.slides.length&&D.loadSlides(),b.loop&&D.createLoop(),D.init(),f(),b.pagination&&D.createPagination(!0),b.loop||b.initialSlide>0?D.swipeTo(b.initialSlide,0,!1):D.updateActiveSlide(0),b.autoplay&&D.startAutoplay(),D.centerIndex=D.activeIndex,b.onSwiperCreated&&D.fireCallback(b.onSwiperCreated,D),D.callPlugins("onSwiperCreated")}if(!document.body.outerHTML&&document.body.__defineGetter__&&HTMLElement){var C=HTMLElement.prototype;C.__defineGetter__&&C.__defineGetter__("outerHTML",function(){return(new XMLSerializer).serializeToString(this)})}if(window.getComputedStyle||(window.getComputedStyle=function(a){return this.el=a,this.getPropertyValue=function(b){var c=/(\-([a-z]){1})/g;return"float"===b&&(b="styleFloat"),c.test(b)&&(b=b.replace(c,function(){return arguments[2].toUpperCase()})),a.currentStyle[b]?a.currentStyle[b]:null},this}),Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){for(var c=b||0,d=this.length;d>c;c++)if(this[c]===a)return c;return-1}),(document.querySelectorAll||window.jQuery)&&"undefined"!=typeof a&&(a.nodeType||0!==c(a).length)){var D=this;D.touches={start:0,startX:0,startY:0,current:0,currentX:0,currentY:0,diff:0,abs:0},D.positions={start:0,abs:0,diff:0,current:0},D.times={start:0,end:0},D.id=(new Date).getTime(),D.container=a.nodeType?a:c(a)[0],D.isTouched=!1,D.isMoved=!1,D.activeIndex=0,D.centerIndex=0,D.activeLoaderIndex=0,D.activeLoopIndex=0,D.previousIndex=null,D.velocity=0,D.snapGrid=[],D.slidesGrid=[],D.imagesToLoad=[],D.imagesLoaded=0,D.wrapperLeft=0,D.wrapperRight=0,D.wrapperTop=0,D.wrapperBottom=0,D.isAndroid=navigator.userAgent.toLowerCase().indexOf("android")>=0;var E,F,G,H,I,J,K={eventTarget:"wrapper",mode:"horizontal",touchRatio:1,speed:300,freeMode:!1,freeModeFluid:!1,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,slidesPerView:1,slidesPerGroup:1,slidesPerViewFit:!0,simulateTouch:!0,followFinger:!0,shortSwipes:!0,longSwipesRatio:.5,moveStartThreshold:!1,onlyExternal:!1,createPagination:!0,pagination:!1,paginationElement:"span",paginationClickable:!1,paginationAsRange:!0,resistance:!0,scrollContainer:!1,preventLinks:!0,preventLinksPropagation:!1,noSwiping:!1,noSwipingClass:"swiper-no-swiping",initialSlide:0,keyboardControl:!1,mousewheelControl:!1,mousewheelControlForceToAxis:!1,useCSS3Transforms:!0,autoplay:!1,autoplayDisableOnInteraction:!0,autoplayStopOnLast:!1,loop:!1,loopAdditionalSlides:0,roundLengths:!1,calculateHeight:!1,cssWidthAndHeight:!1,updateOnImagesReady:!0,releaseFormElements:!0,watchActiveIndex:!1,visibilityFullFit:!1,offsetPxBefore:0,offsetPxAfter:0,offsetSlidesBefore:0,offsetSlidesAfter:0,centeredSlides:!1,queueStartCallbacks:!1,queueEndCallbacks:!1,autoResize:!0,resizeReInit:!1,DOMAnimation:!0,loader:{slides:[],slidesHTMLType:"inner",surroundGroups:1,logic:"reload",loadAllSlides:!1},swipeToPrev:!0,swipeToNext:!0,slideElement:"div",slideClass:"swiper-slide",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",wrapperClass:"swiper-wrapper",paginationElementClass:"swiper-pagination-switch",paginationActiveClass:"swiper-active-switch",paginationVisibleClass:"swiper-visible-switch"};b=b||{};for(var L in K)if(L in b&&"object"==typeof b[L])for(var M in K[L])M in b[L]||(b[L][M]=K[L][M]);else L in b||(b[L]=K[L]);D.params=b,b.scrollContainer&&(b.freeMode=!0,b.freeModeFluid=!0),b.loop&&(b.resistance="100%");var N="horizontal"===b.mode,O=["mousedown","mousemove","mouseup"];D.browser.ie10&&(O=["MSPointerDown","MSPointerMove","MSPointerUp"]),D.browser.ie11&&(O=["pointerdown","pointermove","pointerup"]),D.touchEvents={touchStart:D.support.touch||!b.simulateTouch?"touchstart":O[0],touchMove:D.support.touch||!b.simulateTouch?"touchmove":O[1],touchEnd:D.support.touch||!b.simulateTouch?"touchend":O[2]};for(var P=D.container.childNodes.length-1;P>=0;P--)if(D.container.childNodes[P].className)for(var Q=D.container.childNodes[P].className.split(/\s+/),R=0;R=0;c--)a===D.slides[c]&&(b=c);return b},a.isActive=function(){return a.index()===D.activeIndex?!0:!1},a.swiperSlideDataStorage||(a.swiperSlideDataStorage={}),a.getData=function(b){return a.swiperSlideDataStorage[b]},a.setData=function(b,c){return a.swiperSlideDataStorage[b]=c,a},a.data=function(b,c){return"undefined"==typeof c?a.getAttribute("data-"+b):(a.setAttribute("data-"+b,c),a)},a.getWidth=function(b,c){return D.h.getWidth(a,b,c)},a.getHeight=function(b,c){return D.h.getHeight(a,b,c)},a.getOffset=function(){return D.h.getOffset(a)},a},D.calcSlides=function(a){var c=D.slides?D.slides.length:!1;D.slides=[],D.displaySlides=[];for(var d=0;d=0;d--)D._extendSwiperSlide(D.slides[d]);c!==!1&&(c!==D.slides.length||a)&&(h(),g(),D.updateActiveSlide(),D.params.pagination&&D.createPagination(),D.callPlugins("numberOfSlidesChanged"))},D.createSlide=function(a,c,d){c=c||D.params.slideClass,d=d||b.slideElement;var e=document.createElement(d);return e.innerHTML=a||"",e.className=c,D._extendSwiperSlide(e)},D.appendSlide=function(a,b,c){return a?a.nodeType?D._extendSwiperSlide(a).append():D.createSlide(a,b,c).append():void 0},D.prependSlide=function(a,b,c){return a?a.nodeType?D._extendSwiperSlide(a).prepend():D.createSlide(a,b,c).prepend():void 0},D.insertSlideAfter=function(a,b,c,d){return"undefined"==typeof a?!1:b.nodeType?D._extendSwiperSlide(b).insertAfter(a):D.createSlide(b,c,d).insertAfter(a)},D.removeSlide=function(a){if(D.slides[a]){if(b.loop){if(!D.slides[a+D.loopedSlides])return!1;D.slides[a+D.loopedSlides].remove(),D.removeLoopedSlides(),D.calcSlides(),D.createLoop()}else D.slides[a].remove();return!0}return!1},D.removeLastSlide=function(){return D.slides.length>0?(b.loop?(D.slides[D.slides.length-1-D.loopedSlides].remove(),D.removeLoopedSlides(),D.calcSlides(),D.createLoop()):D.slides[D.slides.length-1].remove(),!0):!1},D.removeAllSlides=function(){for(var a=D.slides.length,b=D.slides.length-1;b>=0;b--)D.slides[b].remove(),b===a-1&&D.setWrapperTranslate(0)},D.getSlide=function(a){return D.slides[a]},D.getLastSlide=function(){return D.slides[D.slides.length-1]},D.getFirstSlide=function(){return D.slides[0]},D.activeSlide=function(){return D.slides[D.activeIndex]},D.fireCallback=function(){var a=arguments[0];if("[object Array]"===Object.prototype.toString.call(a))for(var c=0;c0&&(m.style.paddingLeft="",m.style.paddingRight="",m.style.paddingTop="",m.style.paddingBottom=""),m.style.width="",m.style.height="",b.offsetPxBefore>0&&(N?D.wrapperLeft=b.offsetPxBefore:D.wrapperTop=b.offsetPxBefore),b.offsetPxAfter>0&&(N?D.wrapperRight=b.offsetPxAfter:D.wrapperBottom=b.offsetPxAfter),b.centeredSlides&&(N?(D.wrapperLeft=(J-this.slides[0].getWidth(!0,b.roundLengths))/2,D.wrapperRight=(J-D.slides[D.slides.length-1].getWidth(!0,b.roundLengths))/2):(D.wrapperTop=(J-D.slides[0].getHeight(!0,b.roundLengths))/2,D.wrapperBottom=(J-D.slides[D.slides.length-1].getHeight(!0,b.roundLengths))/2)),N?(D.wrapperLeft>=0&&(m.style.paddingLeft=D.wrapperLeft+"px"),D.wrapperRight>=0&&(m.style.paddingRight=D.wrapperRight+"px")):(D.wrapperTop>=0&&(m.style.paddingTop=D.wrapperTop+"px"),D.wrapperBottom>=0&&(m.style.paddingBottom=D.wrapperBottom+"px")),k=0;var p=0;for(D.snapGrid=[],D.slidesGrid=[],h=0,l=0;lJ){if(b.slidesPerViewFit)D.snapGrid.push(k+D.wrapperLeft),D.snapGrid.push(k+q-J+D.wrapperLeft);else for(var u=0;u<=Math.floor(q/(J+D.wrapperLeft));u++)D.snapGrid.push(0===u?k+D.wrapperLeft:k+D.wrapperLeft+J*u);D.slidesGrid.push(k+D.wrapperLeft)}else D.snapGrid.push(p),D.slidesGrid.push(p);p+=q/2+t/2}else{if(q>J)if(b.slidesPerViewFit)D.snapGrid.push(k),D.snapGrid.push(k+q-J);else if(0!==J)for(var v=0;v<=Math.floor(q/J);v++)D.snapGrid.push(k+J*v);else D.snapGrid.push(k);else D.snapGrid.push(k);D.slidesGrid.push(k)}k+=q,n+=f,o+=g}b.calculateHeight&&(D.height=h),N?(G=n+D.wrapperRight+D.wrapperLeft,b.cssWidthAndHeight&&"height"!==b.cssWidthAndHeight||(m.style.width=n+"px"),b.cssWidthAndHeight&&"width"!==b.cssWidthAndHeight||(m.style.height=D.height+"px")):(b.cssWidthAndHeight&&"height"!==b.cssWidthAndHeight||(m.style.width=D.width+"px"),b.cssWidthAndHeight&&"width"!==b.cssWidthAndHeight||(m.style.height=o+"px"),G=o+D.wrapperTop+D.wrapperBottom)}else if(b.scrollContainer)m.style.width="",m.style.height="",i=D.slides[0].getWidth(!0,b.roundLengths),j=D.slides[0].getHeight(!0,b.roundLengths),G=N?i:j,m.style.width=i+"px",m.style.height=j+"px",F=N?i:j;else{if(b.calculateHeight){for(h=0,j=0,N||(D.container.style.height=""),m.style.height="",l=0;l0&&(N?D.wrapperLeft=F*b.offsetSlidesBefore:D.wrapperTop=F*b.offsetSlidesBefore),b.offsetSlidesAfter>0&&(N?D.wrapperRight=F*b.offsetSlidesAfter:D.wrapperBottom=F*b.offsetSlidesAfter),b.offsetPxBefore>0&&(N?D.wrapperLeft=b.offsetPxBefore:D.wrapperTop=b.offsetPxBefore),b.offsetPxAfter>0&&(N?D.wrapperRight=b.offsetPxAfter:D.wrapperBottom=b.offsetPxAfter),b.centeredSlides&&(N?(D.wrapperLeft=(J-F)/2,D.wrapperRight=(J-F)/2):(D.wrapperTop=(J-F)/2,D.wrapperBottom=(J-F)/2)),N?(D.wrapperLeft>0&&(m.style.paddingLeft=D.wrapperLeft+"px"),D.wrapperRight>0&&(m.style.paddingRight=D.wrapperRight+"px")):(D.wrapperTop>0&&(m.style.paddingTop=D.wrapperTop+"px"),D.wrapperBottom>0&&(m.style.paddingBottom=D.wrapperBottom+"px")),G=N?i+D.wrapperRight+D.wrapperLeft:j+D.wrapperTop+D.wrapperBottom,parseFloat(i)>0&&(!b.cssWidthAndHeight||"height"===b.cssWidthAndHeight)&&(m.style.width=i+"px"),parseFloat(j)>0&&(!b.cssWidthAndHeight||"width"===b.cssWidthAndHeight)&&(m.style.height=j+"px"),k=0,D.snapGrid=[],D.slidesGrid=[],l=0;l0&&(!b.cssWidthAndHeight||"height"===b.cssWidthAndHeight)&&(D.slides[l].style.width=f+"px"),parseFloat(g)>0&&(!b.cssWidthAndHeight||"width"===b.cssWidthAndHeight)&&(D.slides[l].style.height=g+"px")}D.initialized?(D.callPlugins("onInit"),b.onInit&&D.fireCallback(b.onInit,D)):(D.callPlugins("onFirstInit"),b.onFirstInit&&D.fireCallback(b.onFirstInit,D)),D.initialized=!0}},D.reInit=function(a){D.init(!0,a)},D.resizeFix=function(a){D.callPlugins("beforeResizeFix"),D.init(b.resizeReInit||a),b.freeMode?D.getWrapperTranslate()<-e()&&(D.setWrapperTransition(0),D.setWrapperTranslate(-e())):(D.swipeTo(b.loop?D.activeLoopIndex:D.activeIndex,0,!1),b.autoplay&&(D.support.transitions&&"undefined"!=typeof ab?"undefined"!=typeof ab&&(clearTimeout(ab),ab=void 0,D.startAutoplay()):"undefined"!=typeof bb&&(clearInterval(bb),bb=void 0,D.startAutoplay()))),D.callPlugins("afterResizeFix")},D.destroy=function(a){var c=D.h.removeEventListener,d="wrapper"===b.eventTarget?D.wrapper:D.container;if(D.browser.ie10||D.browser.ie11?(c(d,D.touchEvents.touchStart,p),c(document,D.touchEvents.touchMove,q),c(document,D.touchEvents.touchEnd,r)):(D.support.touch&&(c(d,"touchstart",p),c(d,"touchmove",q),c(d,"touchend",r)),b.simulateTouch&&(c(d,"mousedown",p),c(document,"mousemove",q),c(document,"mouseup",r))),b.autoResize&&c(window,"resize",D.resizeFix),h(),b.paginationClickable&&x(),b.mousewheelControl&&D._wheelEvent&&c(D.container,D._wheelEvent,j),b.keyboardControl&&c(document,"keydown",i),b.autoplay&&D.stopAutoplay(),a){D.wrapper.removeAttribute("style");for(var e=0;e=D.snapGrid[g].toFixed(2)&&-dD.snapGrid[f]&&-e0&&(d=0),d===e?!1:(v(d,"prev",{runCallbacks:a}),!0)},D.swipeReset=function(a){"undefined"==typeof a&&(a=!0),D.callPlugins("onSwipeReset");{var c,d=D.getWrapperTranslate(),f=F*b.slidesPerGroup;-e()}if("auto"===b.slidesPerView){c=0;for(var g=0;g=D.snapGrid[g]&&-d0?-D.snapGrid[g+1]:-D.snapGrid[g];break}}-d>=D.snapGrid[D.snapGrid.length-1]&&(c=-D.snapGrid[D.snapGrid.length-1]),d<=-e()&&(c=-e())}else c=0>d?Math.round(d/f)*f:0,d<=-e()&&(c=-e());return b.scrollContainer&&(c=0>d?d:0),c<-e()&&(c=-e()),b.scrollContainer&&J>F&&(c=0),c===d?!1:(v(c,"reset",{runCallbacks:a}),!0)},D.swipeTo=function(a,c,d){a=parseInt(a,10),D.callPlugins("onSwipeTo",{index:a,speed:c}),b.loop&&(a+=D.loopedSlides);var f=D.getWrapperTranslate();if(!(!isFinite(a)||a>D.slides.length-1||0>a)){var g;return g="auto"===b.slidesPerView?-D.slidesGrid[a]:-a*F,g<-e()&&(g=-e()),g===f?!1:("undefined"==typeof d&&(d=!0),v(g,"to",{index:a,speed:c,runCallbacks:d}),!0)}},D._queueStartCallbacks=!1,D._queueEndCallbacks=!1,D.updateActiveSlide=function(a){if(D.initialized&&0!==D.slides.length){D.previousIndex=D.activeIndex,"undefined"==typeof a&&(a=D.getWrapperTranslate()),a>0&&(a=0);var c;if("auto"===b.slidesPerView){if(D.activeIndex=D.slidesGrid.indexOf(-a),D.activeIndex<0){for(c=0;cD.slidesGrid[c]&&-a=d?c:c+1}}else D.activeIndex=Math[b.visibilityFullFit?"ceil":"round"](-a/F);if(D.activeIndex===D.slides.length&&(D.activeIndex=D.slides.length-1),D.activeIndex<0&&(D.activeIndex=0),D.slides[D.activeIndex]){if(D.calcVisibleSlides(a),D.support.classList){var f;for(c=0;c=0?f.classList.add(b.slideVisibleClass):f.classList.remove(b.slideVisibleClass);D.slides[D.activeIndex].classList.add(b.slideActiveClass)}else{var g=new RegExp("\\s*"+b.slideActiveClass),h=new RegExp("\\s*"+b.slideVisibleClass);for(c=0;c=0&&(D.slides[c].className+=" "+b.slideVisibleClass);D.slides[D.activeIndex].className+=" "+b.slideActiveClass}if(b.loop){var i=D.loopedSlides;D.activeLoopIndex=D.activeIndex-i,D.activeLoopIndex>=D.slides.length-2*i&&(D.activeLoopIndex=D.slides.length-2*i-D.activeLoopIndex),D.activeLoopIndex<0&&(D.activeLoopIndex=D.slides.length-2*i+D.activeLoopIndex),D.activeLoopIndex<0&&(D.activeLoopIndex=0)}else D.activeLoopIndex=D.activeIndex;b.pagination&&D.updatePagination(a)}}},D.createPagination=function(a){if(b.paginationClickable&&D.paginationButtons&&x(),D.paginationContainer=b.pagination.nodeType?b.pagination:c(b.pagination)[0],b.createPagination){var d="",e=D.slides.length,f=e;b.loop&&(f-=2*D.loopedSlides);for(var g=0;f>g;g++)d+="<"+b.paginationElement+' class="'+b.paginationElementClass+'">";D.paginationContainer.innerHTML=d}D.paginationButtons=c("."+b.paginationElementClass,D.paginationContainer),a||D.updatePagination(),D.callPlugins("onCreatePagination"),b.paginationClickable&&y()},D.updatePagination=function(a){if(b.pagination&&!(D.slides.length<1)){var d=c("."+b.paginationActiveClass,D.paginationContainer);if(d){var e=D.paginationButtons;if(0!==e.length){for(var f=0;fj&&(j=D.slides.length-2*D.loopedSlides+j),b.loop&&j>=D.slides.length-2*D.loopedSlides&&(j=D.slides.length-2*D.loopedSlides-j,j=Math.abs(j)),i.push(j)}for(h=0;h0&&(a+=D.wrapperLeft),!N&&D.wrapperTop>0&&(a+=D.wrapperTop);for(var g=0;g=-a&&-a+J>=f&&(h=!0),-a>=d&&f>=-a+J&&(h=!0)):(f>-a&&-a+J>=f&&(h=!0),d>=-a&&-a+J>d&&(h=!0),-a>d&&f>-a+J&&(h=!0)),h&&c.push(D.slides[g])}0===c.length&&(c=[D.slides[D.activeIndex]]),D.visibleSlides=c};var ab,bb;D.startAutoplay=function(){if(D.support.transitions){if("undefined"!=typeof ab)return!1;if(!b.autoplay)return;D.callPlugins("onAutoplayStart"),b.onAutoplayStart&&D.fireCallback(b.onAutoplayStart,D),A()}else{if("undefined"!=typeof bb)return!1;if(!b.autoplay)return;D.callPlugins("onAutoplayStart"),b.onAutoplayStart&&D.fireCallback(b.onAutoplayStart,D),bb=setInterval(function(){b.loop?(D.fixLoop(),D.swipeNext(!0,!0)):D.swipeNext(!0,!0)||(b.autoplayStopOnLast?(clearInterval(bb),bb=void 0):D.swipeTo(0))},b.autoplay)}},D.stopAutoplay=function(a){if(D.support.transitions){if(!ab)return;ab&&clearTimeout(ab),ab=void 0,a&&!b.autoplayDisableOnInteraction&&D.wrapperTransitionEnd(function(){A()}),D.callPlugins("onAutoplayStop"),b.onAutoplayStop&&D.fireCallback(b.onAutoplayStop,D)}else bb&&clearInterval(bb),bb=void 0,D.callPlugins("onAutoplayStop"),b.onAutoplayStop&&D.fireCallback(b.onAutoplayStop,D)},D.loopCreated=!1,D.removeLoopedSlides=function(){if(D.loopCreated)for(var a=0;aD.slides.length&&(D.loopedSlides=D.slides.length);var a,c="",d="",e="",f=D.slides.length,g=Math.floor(D.loopedSlides/f),h=D.loopedSlides%f;for(a=0;g*f>a;a++){var i=a;if(a>=f){var j=Math.floor(a/f);i=a-f*j}e+=D.slides[i].outerHTML}for(a=0;h>a;a++)d+=u(b.slideDuplicateClass,D.slides[a].outerHTML);for(a=f-h;f>a;a++)c+=u(b.slideDuplicateClass,D.slides[a].outerHTML);var k=c+e+E.innerHTML+e+d;for(E.innerHTML=k,D.loopCreated=!0,D.calcSlides(),a=0;a=D.slides.length-D.loopedSlides)&&D.slides[a].setData("looped",!0);D.callPlugins("onCreateLoop")}},D.fixLoop=function(){var a;D.activeIndex=2*D.loopedSlides||D.activeIndex>D.slides.length-2*b.slidesPerView)&&(a=-D.slides.length+D.activeIndex+D.loopedSlides,D.swipeTo(a,0,!1))},D.loadSlides=function(){var a="";D.activeLoaderIndex=0;for(var c=b.loader.slides,d=b.loader.loadAllSlides?c.length:b.slidesPerView*(1+b.loader.surroundGroups),e=0;d>e;e++)a+="outer"===b.loader.slidesHTMLType?c[e]:"<"+b.slideElement+' class="'+b.slideClass+'" data-swiperindex="'+e+'">'+c[e]+"";D.wrapper.innerHTML=a,D.calcSlides(!0),b.loader.loadAllSlides||D.wrapperTransitionEnd(D.reloadSlides,!0)},D.reloadSlides=function(){var a=b.loader.slides,c=parseInt(D.activeSlide().data("swiperindex"),10);if(!(0>c||c>a.length-1)){D.activeLoaderIndex=c;var d=Math.max(0,c-b.slidesPerView*b.loader.surroundGroups),e=Math.min(c+b.slidesPerView*(1+b.loader.surroundGroups)-1,a.length-1);if(c>0){var f=-F*(c-d);D.setWrapperTranslate(f),D.setWrapperTransition(0)}var g;if("reload"===b.loader.logic){D.wrapper.innerHTML="";var h="";for(g=d;e>=g;g++)h+="outer"===b.loader.slidesHTMLType?a[g]:"<"+b.slideElement+' class="'+b.slideClass+'" data-swiperindex="'+g+'">'+a[g]+"";D.wrapper.innerHTML=h}else{var i=1e3,j=0;for(g=0;gk||k>e?D.wrapper.removeChild(D.slides[g]):(i=Math.min(k,i),j=Math.max(k,j))}for(g=d;e>=g;g++){var l;i>g&&(l=document.createElement(b.slideElement),l.className=b.slideClass,l.setAttribute("data-swiperindex",g),l.innerHTML=a[g],D.wrapper.insertBefore(l,D.wrapper.firstChild)),g>j&&(l=document.createElement(b.slideElement),l.className=b.slideClass,l.setAttribute("data-swiperindex",g),l.innerHTML=a[g],D.wrapper.appendChild(l))}}D.reInit(!0)}},B()}};Swiper.prototype={plugins:{},wrapperTransitionEnd:function(a,b){"use strict";function c(h){if(h.target===f&&(a(e),e.params.queueEndCallbacks&&(e._queueEndCallbacks=!1),!b))for(d=0;d0||0>e)&&(e=a.offsetWidth-parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-left"))-parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-right"))),b&&(e+=parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-left"))+parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-right"))),c?Math.ceil(e):e},getHeight:function(a,b,c){"use strict";if(b)return a.offsetHeight;var d=window.getComputedStyle(a,null).getPropertyValue("height"),e=parseFloat(d);return(isNaN(e)||d.indexOf("%")>0||0>e)&&(e=a.offsetHeight-parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-top"))-parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-bottom"))),b&&(e+=parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-top"))+parseFloat(window.getComputedStyle(a,null).getPropertyValue("padding-bottom"))),c?Math.ceil(e):e},getOffset:function(a){"use strict";var b=a.getBoundingClientRect(),c=document.body,d=a.clientTop||c.clientTop||0,e=a.clientLeft||c.clientLeft||0,f=window.pageYOffset||a.scrollTop,g=window.pageXOffset||a.scrollLeft;return document.documentElement&&!window.pageYOffset&&(f=document.documentElement.scrollTop,g=document.documentElement.scrollLeft),{top:b.top+f-d,left:b.left+g-e}},windowWidth:function(){"use strict";return window.innerWidth?window.innerWidth:document.documentElement&&document.documentElement.clientWidth?document.documentElement.clientWidth:void 0},windowHeight:function(){"use strict";return window.innerHeight?window.innerHeight:document.documentElement&&document.documentElement.clientHeight?document.documentElement.clientHeight:void 0},windowScroll:function(){"use strict";return"undefined"!=typeof pageYOffset?{left:window.pageXOffset,top:window.pageYOffset}:document.documentElement?{left:document.documentElement.scrollLeft,top:document.documentElement.scrollTop}:void 0},addEventListener:function(a,b,c,d){"use strict";"undefined"==typeof d&&(d=!1),a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},removeEventListener:function(a,b,c,d){"use strict";"undefined"==typeof d&&(d=!1),a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)}},setTransform:function(a,b){"use strict";var c=a.style;c.webkitTransform=c.MsTransform=c.msTransform=c.MozTransform=c.OTransform=c.transform=b},setTranslate:function(a,b){"use strict";var c=a.style,d={x:b.x||0,y:b.y||0,z:b.z||0},e=this.support.transforms3d?"translate3d("+d.x+"px,"+d.y+"px,"+d.z+"px)":"translate("+d.x+"px,"+d.y+"px)";c.webkitTransform=c.MsTransform=c.msTransform=c.MozTransform=c.OTransform=c.transform=e,this.support.transforms||(c.left=d.x+"px",c.top=d.y+"px")},setTransition:function(a,b){"use strict";var c=a.style;c.webkitTransitionDuration=c.MsTransitionDuration=c.msTransitionDuration=c.MozTransitionDuration=c.OTransitionDuration=c.transitionDuration=b+"ms"},support:{touch:window.Modernizr&&Modernizr.touch===!0||function(){"use strict";return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)}(),transforms3d:window.Modernizr&&Modernizr.csstransforms3d===!0||function(){"use strict";var a=document.createElement("div").style;return"webkitPerspective"in a||"MozPerspective"in a||"OPerspective"in a||"MsPerspective"in a||"perspective"in a}(),transforms:window.Modernizr&&Modernizr.csstransforms===!0||function(){"use strict";var a=document.createElement("div").style;return"transform"in a||"WebkitTransform"in a||"MozTransform"in a||"msTransform"in a||"MsTransform"in a||"OTransform"in a}(),transitions:window.Modernizr&&Modernizr.csstransitions===!0||function(){"use strict";var a=document.createElement("div").style;return"transition"in a||"WebkitTransition"in a||"MozTransition"in a||"msTransition"in a||"MsTransition"in a||"OTransition"in a}(),classList:function(){"use strict";var a=document.createElement("div");return"classList"in a}()},browser:{ie8:function(){"use strict";var a=-1;if("Microsoft Internet Explorer"===navigator.appName){var b=navigator.userAgent,c=new RegExp(/MSIE ([0-9]{1,}[\.0-9]{0,})/);null!==c.exec(b)&&(a=parseFloat(RegExp.$1))}return-1!==a&&9>a}(),ie10:window.navigator.msPointerEnabled,ie11:window.navigator.pointerEnabled}},(window.jQuery||window.Zepto)&&!function(a){"use strict";a.fn.swiper=function(b){var c;return this.each(function(d){var e=a(this),f=new Swiper(e[0],b);d||(c=f),e.data("swiper",f)}),c}}(window.jQuery||window.Zepto),"undefined"!=typeof module?module.exports=Swiper:"function"==typeof define&&define.amd&&define([],function(){"use strict";return Swiper}); \ No newline at end of file diff --git a/static/home/js/index.js b/static/home/js/index.js new file mode 100644 index 0000000..1128c6c --- /dev/null +++ b/static/home/js/index.js @@ -0,0 +1,49 @@ +//banner图切换 +var banner = new Swiper("#bannerSwiper", { + direction: "horizontal", + autoplay: 2000, + speed: 300, + loop: true, + pagination: '.pagination', + createPagination: false, + paginationClickable: true, + noSwiping : true, + onAutoplayStop: function(banner){ + if(!banner.support.transitions){ //IE7、IE8 + banner.startAutoplay(); + } + } +}); +$(".pagination span").hover(function() { + $(this).click(); + },function(){ + banner.startAutoplay(); + } +); + +//职业简介切换 + +//切换男女角色 +$('.roleTab a').on('mouseenter', function() { + if ($(this).hasClass('i-r_w')) { + $('#role_swiper .i-r_w').addClass('i-r_w_a').siblings('.i-r_m').removeClass('i-r_m_a'); + $('#role_swiper .woman').css('display', 'block').siblings('.man').css('display', 'none'); + } else { + $('#role_swiper .i-r_m').addClass('i-r_m_a').siblings('.i-r_w').removeClass('i-r_w_a'); + $('#role_swiper .man').css('display', 'block').siblings('.woman').css('display', 'none'); + } +}); +$(".wrapperNav a").click(function(){ + var _index = $(this).index(); + $(this).addClass('act').siblings().removeClass('act'); + $(".roleRlide").hide().eq(_index).show(); +}); + + +//留言弹窗 +$('.i-b_message').on('click', function() { + $('#mask').show().children('.message_mask').show(); +}); +$('#mask .close').on('click', function() { + $(this).parent().hide().parent('#mask').hide(); +}); \ No newline at end of file diff --git a/static/home/js/inserFlash.js b/static/home/js/inserFlash.js new file mode 100644 index 0000000..b5f5df9 --- /dev/null +++ b/static/home/js/inserFlash.js @@ -0,0 +1,27 @@ +$.fn.extend({ + insertFlash:function(src,url){ + var w = this.width(); + var h = this.height(); + var salf = this; + this.css({"width":"800px",height:"800px","opacity":"0"}); + this.append(this.genereteHtml(800,800,src,url)); + if(url){ + $("#conver").css({"width":w,height:h,"display":"block","position":"absolute","z-index":"10000","left":"0","top":"0"}) + } + setTimeout(function(){ + salf.css({"width":w,"height":h,"opacity":1}) + },100) + }, + genereteHtml:function(w,h,src,url){ + var html =''; + html+=''; + html+=''; + html+=''; + html+=''; + html+=""; + if(url){ + html+=''; + } + return html + } +}); \ No newline at end of file diff --git a/static/home/js/jq_mousewheel.js b/static/home/js/jq_mousewheel.js new file mode 100644 index 0000000..c7a0927 --- /dev/null +++ b/static/home/js/jq_mousewheel.js @@ -0,0 +1,90 @@ +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + + var types = ['DOMMouseScroll', 'mousewheel']; + + if ($.event.fixHooks) { + for (var i = types.length; i;) { + $.event.fixHooks[types[--i]] = $.event.mouseHooks; + } + } + + $.event.special.mousewheel = { + setup: function() { + if (this.addEventListener) { + for (var i = types.length; i;) { + this.addEventListener(types[--i], handler, false); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if (this.removeEventListener) { + for (var i = types.length; i;) { + this.removeEventListener(types[--i], handler, false); + } + } else { + this.onmousewheel = null; + } + } + }; + + $.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } + }); + + + function handler(event) { + var orgEvent = event || window.event, + args = [].slice.call(arguments, 1), + delta = 0, + returnValue = true, + deltaX = 0, + deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if (orgEvent.wheelDelta) { delta = orgEvent.wheelDelta / 120; } + if (orgEvent.detail) { delta = -orgEvent.detail / 3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if (orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS) { + deltaY = 0; + deltaX = -1 * delta; + } + + // Webkit + if (orgEvent.wheelDeltaY !== undefined) { deltaY = orgEvent.wheelDeltaY / 120; } + if (orgEvent.wheelDeltaX !== undefined) { deltaX = -1 * orgEvent.wheelDeltaX / 120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); + } + +})(jQuery); +/* |xGv00|0c5f9ba2d17f5b8891e4fbb77e789dad */ \ No newline at end of file diff --git a/static/home/js/jquery-1.7.2.min.js b/static/home/js/jquery-1.7.2.min.js new file mode 100644 index 0000000..60081f4 --- /dev/null +++ b/static/home/js/jquery-1.7.2.min.js @@ -0,0 +1,2 @@ +/*! jQuery v1.7.2 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement){cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close()}d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border"){for(;e=0===c})}function S(a){return !a||!a.parentNode||a.parentNode.nodeType===11}function K(){return !0}function J(){return !1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b])){continue}if(b!=="toJSON"){return !1}}return !0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else{d=b}}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a){return this}if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2]){return f.find(a)}this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return !d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a)){return f.ready(a)}a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0){return}A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete"){return setTimeout(e.ready,1)}if(c.addEventListener){c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1)}else{if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return !isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a)){return !1}try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf")){return !1}}catch(c){return !1}var d;for(d in a){}return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a){return !1}return !0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b){return null}b=e.trim(b);if(a.JSON&&a.JSON.parse){return a.JSON.parse(b)}if(n.test(b.replace(o,"@").replace(p,"]").replace(q,""))){return(new Function("return "+b))()}e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c){return null}var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a){if(c.apply(a[f],d)===!1){break}}}else{for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k){for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e){return{}}g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent){for(n in {submit:1,change:1,focusin:1}){m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o}}j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
    ",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
    t
    ",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
    ",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return !!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b){return}n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function"){e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c)}g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c]){return g.events}k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k]){return}if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a)){return this.each(function(b){f(this).addClass(a.call(this,b,this.className))})}if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1){return !0}}return !1},val:function(a){var c,d,e,g=this[0];if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set" in c)||c.set(this,h,"value")===b){this.value=h}}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get" in c&&(d=c.get(g,"value"))!==b){return d}d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return !b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0){return null}c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn){return f(a)[c](d)}if(typeof a.getAttribute=="undefined"){return f.prop(a,c,d)}i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set" in h&&i&&(g=h.set(a,d,c))!==b){return g}a.setAttribute(c,""+d);return d}if(h&&"get" in h&&i&&(g=h.get(a,c))!==null){return g}g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h]){return}c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j){j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0)}return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1){return}r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode){r.push([m,s]),n=m}n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9){return[]}if(!b||typeof b!="string"){return e}var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b)){if(w.length===2&&o.relative[w[0]]){j=y(w[0]+w[1],d,f)}else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length){b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}}}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length){q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}}else{k=w=[]}}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]"){if(!u){e.push.apply(e,k)}else{if(d&&d.nodeType===1){for(t=0;k[t]!=null;t++){k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t])}}else{for(t=0;k[t]!=null;t++){k[t]&&k[t].nodeType===1&&e.push(j[t])}}}}else{s(k,e)}l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h){for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a){return[]}for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1))}return !1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else{a[2]&&m.error(a[0])}a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not"){if((a.exec(b[3])||"").length>1||/^\w/.test(b[3])){b[3]=m(b[3],null,null,c)}else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return !1}}else{if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0])){return !0}}return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return !!a.firstChild},empty:function(a){return !a.firstChild},has:function(a,b,c){return !!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f){return f(a,c,b,d)}if(e==="contains"){return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0}if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f){return f(a,c,b,d)}}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match){o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q))}o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]"){Array.prototype.push.apply(d,a)}else{if(typeof a.length=="number"){for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++){c[e].nodeType===1&&d.push(c[e])}c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1]){return s(e.getElementsByTagName(b),f)}if(h[2]&&o.find.CLASS&&e.getElementsByClassName){return s(e.getElementsByClassName(h[2]),f)}}if(e.nodeType===9){if(b==="body"&&e.body){return s([e.body],f)}if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode){return s([],f)}if(i.id===h[3]){return s([i],f)}}try{return s(e.querySelectorAll(b),f)}catch(j){}}else{if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p){return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}}catch(r){}finally{l||k.removeAttribute("id")}}}}return a(b,e,f,g)};for(var e in a){m[e]=a[e]}b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a)){try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11){return f}}}catch(g){}}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1){return}o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c){return b.getElementsByClassName(a[1])}},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return !!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return !1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a)){f+=d[0],a=a.replace(o.match.PSEUDO,"")}a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0){for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11){break}}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a){return this[0]&&this[0].parentNode?this.prevAll().length:-1}if(typeof a=="string"){return f.inArray(this[0],f(a))}return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d))){g.nodeType===1&&e.push(g),g=g[c]}return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c]){if(a.nodeType===1&&++e===b){break}}return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling){a.nodeType===1&&a!==b&&c.push(a)}return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a)){return this.each(function(b){f(this).wrapAll(a.call(this,b))})}if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1){a=a.firstChild}return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a)){return this.each(function(b){f(this).wrapInner(a.call(this,b))})}return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)})}if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)})}if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++){if(!a||f.filter(a,[d]).length){!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d)}}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild){b.removeChild(b.firstChild)}}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b){return c.nodeType===1?c.innerHTML.replace(W,""):null}if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g){e[g]&&bk(d[g],e[g])}}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g){bj(d[g],e[g])}}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l){continue}if(typeof l=="string"){if(!_.test(l)){l=b.createTextNode(l)}else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--){p=p.lastChild}if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i){f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}}var u;if(!f.support.appendChecked){if(l[0]&&typeof(u=l.length)=="number"){for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get" in k&&(g=k.get(a,!1,e))!==b){return g}return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d)){return}h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set" in k)||(d=k.set(a,d))!==b){try{j[c]=d}catch(l){}}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get" in g&&(e=g.get(a,!0,d))!==b){return e}if(by){return by(a,c)}},swap:function(a,b,c){var d={},e,f;for(f in b){d[f]=a.style[f],a.style[f]=b[f]}e=c.call(a);for(f in b){a.style[f]=d[f]}return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c){return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})}},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter){return}}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return !f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++){f[a+bx[d]+b]=e[d]||e[d-2]||e[0]}return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR){return bR.apply(this,arguments)}if(!this.length){return this}var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified")){f.lastModified[k]=y}if(z=v.getResponseHeader("Etag")){f.etag[k]=z}}if(a===304){w="notmodified",o=!0}else{try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}}else{u=w;if(!w||a){w="error",a<0&&(a=0)}}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n)){o[c[1].toLowerCase()]=c[2]}}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2){for(b in a){j[b]=[j[b],a[b]]}}else{b=a[v.status],v.then(b,b)}}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2){return !1}t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers){v.setRequestHeader(u,d.headers[u])}if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return !1}for(u in {success:1,error:1,complete:1}){v[u](d[u])}p=bZ(bT,d,c,v);if(!p){w(-1,"No Transport")}else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2){w(-1,z)}else{throw z}}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a)){f.each(a,function(){e(this.name,this.value)})}else{for(var g in a){b_(g,a[g],c,e)}}return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState)){d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")}},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg){cg[a](0,1)}}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return !this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials" in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields){for(j in c.xhrFields){h[j]=c.xhrFields[j]}}c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e){h.setRequestHeader(j,e[j])}}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e){h.readyState!==4&&h.abort()}else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0){return this.animate(ct("show",3),a,b,c)}for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties){i.animatedProperties[b]!==!0&&(g=!1)}if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show){for(b in i.animatedProperties){f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0)}}d=i.complete,d&&(i.complete=!1,d.call(h))}return !1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return !0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using" in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0]){return null}var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static"){a=a.offsetParent}return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b){return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e]}h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e]){return i[d]}return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/static/home/js/jquery.SuperSlide.js b/static/home/js/jquery.SuperSlide.js new file mode 100644 index 0000000..55d9216 --- /dev/null +++ b/static/home/js/jquery.SuperSlide.js @@ -0,0 +1,15 @@ +/*! + * SuperSlide v2.1.1 + * 轻松解决网站大部分特效展示问题 + * 详尽信息请看官网:http://www.SuperSlide2.com/ + * + * Copyright 2011-2013, 大话主席 + * + * 请尊重原创,保留头部版权 + * 在保留版权的前提下可应用于个人或商业用途 + + * v2.1.1:修复当调用多个SuperSlide,并设置returnDefault:true 时返回defaultIndex索引错误 + + */ + +!function(a){a.fn.slide=function(b){return a.fn.slide.defaults={type:"slide",effect:"fade",autoPlay:!1,delayTime:500,interTime:2500,triggerTime:150,defaultIndex:0,titCell:".hd li",mainCell:".bd",targetCell:null,trigger:"mouseover",scroll:1,vis:1,titOnClassName:"on",autoPage:!1,prevCell:".prev",nextCell:".next",pageStateCell:".pageState",opp:!1,pnLoop:!0,easing:"swing",startFun:null,endFun:null,switchLoad:null,playStateCell:".playState",mouseOverStop:!0,defaultPlay:!0,returnDefault:!1},this.each(function(){var c=a.extend({},a.fn.slide.defaults,b),d=a(this),e=c.effect,f=a(c.prevCell,d),g=a(c.nextCell,d),h=a(c.pageStateCell,d),i=a(c.playStateCell,d),j=a(c.titCell,d),k=j.size(),l=a(c.mainCell,d),m=l.children().size(),n=c.switchLoad,o=a(c.targetCell,d),p=parseInt(c.defaultIndex),q=parseInt(c.delayTime),r=parseInt(c.interTime);parseInt(c.triggerTime);var Q,t=parseInt(c.scroll),u=parseInt(c.vis),v="false"==c.autoPlay||0==c.autoPlay?!1:!0,w="false"==c.opp||0==c.opp?!1:!0,x="false"==c.autoPage||0==c.autoPage?!1:!0,y="false"==c.pnLoop||0==c.pnLoop?!1:!0,z="false"==c.mouseOverStop||0==c.mouseOverStop?!1:!0,A="false"==c.defaultPlay||0==c.defaultPlay?!1:!0,B="false"==c.returnDefault||0==c.returnDefault?!1:!0,C=0,D=0,E=0,F=0,G=c.easing,H=null,I=null,J=null,K=c.titOnClassName,L=j.index(d.find("."+K)),M=p=-1==L?p:L,N=p,O=p,P=m>=u?0!=m%t?m%t:t:0,R="leftMarquee"==e||"topMarquee"==e?!0:!1,S=function(){a.isFunction(c.startFun)&&c.startFun(p,k,d,a(c.titCell,d),l,o,f,g)},T=function(){a.isFunction(c.endFun)&&c.endFun(p,k,d,a(c.titCell,d),l,o,f,g)},U=function(){j.removeClass(K),A&&j.eq(N).addClass(K)};if("menu"==c.type)return A&&j.removeClass(K).eq(p).addClass(K),j.hover(function(){Q=a(this).find(c.targetCell);var b=j.index(a(this));I=setTimeout(function(){switch(p=b,j.removeClass(K).eq(p).addClass(K),S(),e){case"fade":Q.stop(!0,!0).animate({opacity:"show"},q,G,T);break;case"slideDown":Q.stop(!0,!0).animate({height:"show"},q,G,T)}},c.triggerTime)},function(){switch(clearTimeout(I),e){case"fade":Q.animate({opacity:"hide"},q,G);break;case"slideDown":Q.animate({height:"hide"},q,G)}}),B&&d.hover(function(){clearTimeout(J)},function(){J=setTimeout(U,q)}),void 0;if(0==k&&(k=m),R&&(k=2),x){if(m>=u)if("leftLoop"==e||"topLoop"==e)k=0!=m%t?(0^m/t)+1:m/t;else{var V=m-u;k=1+parseInt(0!=V%t?V/t+1:V/t),0>=k&&(k=1)}else k=1;j.html("");var W="";if(1==c.autoPage||"true"==c.autoPage)for(var X=0;k>X;X++)W+="
  • "+(X+1)+"
  • ";else for(var X=0;k>X;X++)W+=c.autoPage.replace("$",X+1);j.html(W);var j=j.children()}if(m>=u){l.children().each(function(){a(this).width()>E&&(E=a(this).width(),D=a(this).outerWidth(!0)),a(this).height()>F&&(F=a(this).height(),C=a(this).outerHeight(!0))});var Y=l.children(),Z=function(){for(var a=0;u>a;a++)Y.eq(a).clone().addClass("clone").appendTo(l);for(var a=0;P>a;a++)Y.eq(m-a-1).clone().addClass("clone").prependTo(l)};switch(e){case"fold":l.css({position:"relative",width:D,height:C}).children().css({position:"absolute",width:E,left:0,top:0,display:"none"});break;case"top":l.wrap('
    ').css({top:-(p*t)*C,position:"relative",padding:"0",margin:"0"}).children().css({height:F});break;case"left":l.wrap('
    ').css({width:m*D,left:-(p*t)*D,position:"relative",overflow:"hidden",padding:"0",margin:"0"}).children().css({"float":"left",width:E});break;case"leftLoop":case"leftMarquee":Z(),l.wrap('
    ').css({width:(m+u+P)*D,position:"relative",overflow:"hidden",padding:"0",margin:"0",left:-(P+p*t)*D}).children().css({"float":"left",width:E});break;case"topLoop":case"topMarquee":Z(),l.wrap('
    ').css({height:(m+u+P)*C,position:"relative",padding:"0",margin:"0",top:-(P+p*t)*C}).children().css({height:F})}}var $=function(a){var b=a*t;return a==k?b=m:-1==a&&0!=m%t&&(b=-m%t),b},_=function(b){var c=function(c){for(var d=c;u+c>d;d++)b.eq(d).find("img["+n+"]").each(function(){var b=a(this);if(b.attr("src",b.attr(n)).removeAttr(n),l.find(".clone")[0])for(var c=l.children(),d=0;d=1?p=1:0>=p&&(p=0):(O=p,p>=k?p=0:0>p&&(p=k-1)),S(),null!=n&&_(l.children()),o[0]&&(Q=o.eq(p),null!=n&&_(o),"slideDown"==e?(o.not(Q).stop(!0,!0).slideUp(q),Q.slideDown(q,G,function(){l[0]||T()})):(o.not(Q).stop(!0,!0).hide(),Q.animate({opacity:"show"},q,function(){l[0]||T()}))),m>=u)switch(e){case"fade":l.children().stop(!0,!0).eq(p).animate({opacity:"show"},q,G,function(){T()}).siblings().hide();break;case"fold":l.children().stop(!0,!0).eq(p).animate({opacity:"show"},q,G,function(){T()}).siblings().animate({opacity:"hide"},q,G);break;case"top":l.stop(!0,!1).animate({top:-p*t*C},q,G,function(){T()});break;case"left":l.stop(!0,!1).animate({left:-p*t*D},q,G,function(){T()});break;case"leftLoop":var b=O;l.stop(!0,!0).animate({left:-($(O)+P)*D},q,G,function(){-1>=b?l.css("left",-(P+(k-1)*t)*D):b>=k&&l.css("left",-P*D),T()});break;case"topLoop":var b=O;l.stop(!0,!0).animate({top:-($(O)+P)*C},q,G,function(){-1>=b?l.css("top",-(P+(k-1)*t)*C):b>=k&&l.css("top",-P*C),T()});break;case"leftMarquee":var c=l.css("left").replace("px","");0==p?l.animate({left:++c},0,function(){l.css("left").replace("px","")>=0&&l.css("left",-m*D)}):l.animate({left:--c},0,function(){l.css("left").replace("px","")<=-(m+P)*D&&l.css("left",-P*D)});break;case"topMarquee":var d=l.css("top").replace("px","");0==p?l.animate({top:++d},0,function(){l.css("top").replace("px","")>=0&&l.css("top",-m*C)}):l.animate({top:--d},0,function(){l.css("top").replace("px","")<=-(m+P)*C&&l.css("top",-P*C)})}j.removeClass(K).eq(p).addClass(K),M=p,y||(g.removeClass("nextStop"),f.removeClass("prevStop"),0==p&&f.addClass("prevStop"),p==k-1&&g.addClass("nextStop")),h.html(""+(p+1)+"/"+k)}};A&&ab(!0),B&&d.hover(function(){clearTimeout(J)},function(){J=setTimeout(function(){p=N,A?ab():"slideDown"==e?Q.slideUp(q,U):Q.animate({opacity:"hide"},q,U),M=p},300)});var bb=function(a){H=setInterval(function(){w?p--:p++,ab()},a?a:r)},cb=function(a){H=setInterval(ab,a?a:r)},db=function(){z||(clearInterval(H),bb())},eb=function(){(y||p!=k-1)&&(p++,ab(),R||db())},fb=function(){(y||0!=p)&&(p--,ab(),R||db())},gb=function(){clearInterval(H),R?cb():bb(),i.removeClass("pauseState")},hb=function(){clearInterval(H),i.addClass("pauseState")};if(v?R?(w?p--:p++,cb(),z&&l.hover(hb,gb)):(bb(),z&&d.hover(hb,gb)):(R&&(w?p--:p++),i.addClass("pauseState")),i.click(function(){i.hasClass("pauseState")?gb():hb()}),"mouseover"==c.trigger?j.hover(function(){var a=j.index(this);I=setTimeout(function(){p=a,ab(),db()},c.triggerTime)},function(){clearTimeout(I)}):j.click(function(){p=j.index(this),ab(),db()}),R){if(g.mousedown(eb),f.mousedown(fb),y){var ib,jb=function(){ib=setTimeout(function(){clearInterval(H),cb(0^r/10)},150)},kb=function(){clearTimeout(ib),clearInterval(H),cb()};g.mousedown(jb),g.mouseup(kb),f.mousedown(jb),f.mouseup(kb)}"mouseover"==c.trigger&&(g.hover(eb,function(){}),f.hover(fb,function(){}))}else g.click(eb),f.click(fb)})}}(jQuery),jQuery.easing.jswing=jQuery.easing.swing,jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(a,b,c,d,e){return jQuery.easing[jQuery.easing.def](a,b,c,d,e)},easeInQuad:function(a,b,c,d,e){return d*(b/=e)*b+c},easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c},easeInOutQuad:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},easeInCubic:function(a,b,c,d,e){return d*(b/=e)*b*b+c},easeOutCubic:function(a,b,c,d,e){return d*((b=b/e-1)*b*b+1)+c},easeInOutCubic:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b+c:d/2*((b-=2)*b*b+2)+c},easeInQuart:function(a,b,c,d,e){return d*(b/=e)*b*b*b+c},easeOutQuart:function(a,b,c,d,e){return-d*((b=b/e-1)*b*b*b-1)+c},easeInOutQuart:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b+c:-d/2*((b-=2)*b*b*b-2)+c},easeInQuint:function(a,b,c,d,e){return d*(b/=e)*b*b*b*b+c},easeOutQuint:function(a,b,c,d,e){return d*((b=b/e-1)*b*b*b*b+1)+c},easeInOutQuint:function(a,b,c,d,e){return(b/=e/2)<1?d/2*b*b*b*b*b+c:d/2*((b-=2)*b*b*b*b+2)+c},easeInSine:function(a,b,c,d,e){return-d*Math.cos(b/e*(Math.PI/2))+d+c},easeOutSine:function(a,b,c,d,e){return d*Math.sin(b/e*(Math.PI/2))+c},easeInOutSine:function(a,b,c,d,e){return-d/2*(Math.cos(Math.PI*b/e)-1)+c},easeInExpo:function(a,b,c,d,e){return 0==b?c:d*Math.pow(2,10*(b/e-1))+c},easeOutExpo:function(a,b,c,d,e){return b==e?c+d:d*(-Math.pow(2,-10*b/e)+1)+c},easeInOutExpo:function(a,b,c,d,e){return 0==b?c:b==e?c+d:(b/=e/2)<1?d/2*Math.pow(2,10*(b-1))+c:d/2*(-Math.pow(2,-10*--b)+2)+c},easeInCirc:function(a,b,c,d,e){return-d*(Math.sqrt(1-(b/=e)*b)-1)+c},easeOutCirc:function(a,b,c,d,e){return d*Math.sqrt(1-(b=b/e-1)*b)+c},easeInOutCirc:function(a,b,c,d,e){return(b/=e/2)<1?-d/2*(Math.sqrt(1-b*b)-1)+c:d/2*(Math.sqrt(1-(b-=2)*b)+1)+c},easeInElastic:function(a,b,c,d,e){var f=1.70158,g=0,h=d;if(0==b)return c;if(1==(b/=e))return c+d;if(g||(g=.3*e),hb?-.5*h*Math.pow(2,10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+c:.5*h*Math.pow(2,-10*(b-=1))*Math.sin((b*e-f)*2*Math.PI/g)+d+c},easeInBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),d*(b/=e)*b*((f+1)*b-f)+c},easeOutBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),d*((b=b/e-1)*b*((f+1)*b+f)+1)+c},easeInOutBack:function(a,b,c,d,e,f){return void 0==f&&(f=1.70158),(b/=e/2)<1?d/2*b*b*(((f*=1.525)+1)*b-f)+c:d/2*((b-=2)*b*(((f*=1.525)+1)*b+f)+2)+c},easeInBounce:function(a,b,c,d,e){return d-jQuery.easing.easeOutBounce(a,e-b,0,d,e)+c},easeOutBounce:function(a,b,c,d,e){return(b/=e)<1/2.75?d*7.5625*b*b+c:2/2.75>b?d*(7.5625*(b-=1.5/2.75)*b+.75)+c:2.5/2.75>b?d*(7.5625*(b-=2.25/2.75)*b+.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+.984375)+c},easeInOutBounce:function(a,b,c,d,e){return e/2>b?.5*jQuery.easing.easeInBounce(a,2*b,0,d,e)+c:.5*jQuery.easing.easeOutBounce(a,2*b-e,0,d,e)+.5*d+c}}); \ No newline at end of file diff --git a/static/home/js/jquery.min.js b/static/home/js/jquery.min.js new file mode 100644 index 0000000..6893ba7 --- /dev/null +++ b/static/home/js/jquery.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.12.0 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; + return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="
    a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:l.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.rnamespace||a.rnamespace.test(g.namespace))&&(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("'); + + this.Image = $('#'+id); + this.Image.css({ + 'width' : size['width']-14, + 'height' : size['height'], + 'background' : size['background'] || '#ffffff' + }).attr('src', src); + + this.Contenedor.css({ + 'background' : 'none' + }); + }, + + showLoading: function() { + this.Background.empty().removeAttr('style').css({'width':'auto', 'height':'auto'}); + this.Contenido.empty().css({ + 'background-color' : 'transparent', + 'padding' : '0px', + 'width' : 'auto' + }); + this.Contenedor.css({ + 'background' : 'url('+this.options.dir+'/'+this.options.color+'/loading.gif) no-repeat 50% 50%' + }); + + this.Contenido.empty().css({ + 'background-color': 'transparent', + 'padding' : '0px', + 'width' : 'auto' + }); + + this.replaceBox($.extend(this.options.BoxStyles, {'resize' : 1})); + }, + + parseQuery: function (query) { + if( !query ) + return {}; + var params = {}; + + var pairs = query.split(/[;&]/); + for ( var i = 0; i < pairs.length; i++ ) { + var pair = pairs[i].split('='); + if ( !pair || pair.length != 2 ) + continue; + params[unescape(pair[0])] = unescape(pair[1]).replace(/\+/g, ' '); + } + return params; + }, + + shake: function() { + var d=this.options.shake.distance; + var l=this.Wrapper.position(); + l=l.left; + for(x=0;x-1&&(!e[i]||!t(e[i],i,e));i-=1);}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var i;for(i in e)if(hasProp(e,i)&&t(e[i],i))break}function mixin(e,t,i,r){return t&&eachProp(t,function(t,n){!i&&hasProp(e,n)||(!r||"object"!=typeof t||!t||isArray(t)||isFunction(t)||t instanceof RegExp?e[n]=t:(e[n]||(e[n]={}),mixin(e[n],t,i,r)))}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,i,r){var n=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return n.requireType=e,n.requireModules=r,i&&(n.originalError=i),n}function newContext(e){function t(e){var t,i;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}function i(e,i,r){var n,o,a,s,u,c,d,p,f,l,h,m,g=i&&i.split("/"),v=y.map,x=v&&v["*"];if(e&&(e=e.split("/"),d=e.length-1,y.nodeIdCompat&&jsSuffixRegExp.test(e[d])&&(e[d]=e[d].replace(jsSuffixRegExp,"")),"."===e[0].charAt(0)&&g&&(m=g.slice(0,g.length-1),e=m.concat(e)),t(e),e=e.join("/")),r&&v&&(g||x)){a=e.split("/");e:for(s=a.length;s>0;s-=1){if(c=a.slice(0,s).join("/"),g)for(u=g.length;u>0;u-=1)if(o=getOwn(v,g.slice(0,u).join("/")),o&&(o=getOwn(o,c))){p=o,f=s;break e}!l&&x&&getOwn(x,c)&&(l=getOwn(x,c),h=s)}!p&&l&&(p=l,f=h),p&&(a.splice(0,f,p),e=a.join("/"))}return n=getOwn(y.pkgs,e),n?n:e}function r(e){isBrowser&&each(scripts(),function(t){if(t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===q.contextName)return t.parentNode.removeChild(t),!0})}function n(e){var t=getOwn(y.paths,e);if(t&&isArray(t)&&t.length>1)return t.shift(),q.require.undef(e),q.makeRequire(null,{skipMap:!0})([e]),!0}function o(e){var t,i=e?e.indexOf("!"):-1;return i>-1&&(t=e.substring(0,i),e=e.substring(i+1,e.length)),[t,e]}function a(e,t,r,n){var a,s,u,c,d=null,p=t?t.name:null,f=e,l=!0,h="";return e||(l=!1,e="_@r"+(T+=1)),c=o(e),d=c[0],e=c[1],d&&(d=i(d,p,n),s=getOwn(j,d)),e&&(d?h=r?e:s&&s.normalize?s.normalize(e,function(e){return i(e,p,n)}):e.indexOf("!")===-1?i(e,p,n):e:(h=i(e,p,n),c=o(h),d=c[0],h=c[1],r=!0,a=q.nameToUrl(h))),u=!d||s||r?"":"_unnormalized"+(A+=1),{prefix:d,name:h,parentMap:t,unnormalized:!!u,url:a,originalName:f,isDefine:l,id:(d?d+"!"+h:h)+u}}function s(e){var t=e.id,i=getOwn(S,t);return i||(i=S[t]=new q.Module(e)),i}function u(e,t,i){var r=e.id,n=getOwn(S,r);!hasProp(j,r)||n&&!n.defineEmitComplete?(n=s(e),n.error&&"error"===t?i(n.error):n.on(t,i)):"defined"===t&&i(j[r])}function c(e,t){var i=e.requireModules,r=!1;t?t(e):(each(i,function(t){var i=getOwn(S,t);i&&(i.error=e,i.events.error&&(r=!0,i.emit("error",e)))}),r||req.onError(e))}function d(){globalDefQueue.length&&(each(globalDefQueue,function(e){var t=e[0];"string"==typeof t&&(q.defQueueMap[t]=!0),O.push(e)}),globalDefQueue=[])}function p(e){delete S[e],delete k[e]}function f(e,t,i){var r=e.map.id;e.error?e.emit("error",e.error):(t[r]=!0,each(e.depMaps,function(r,n){var o=r.id,a=getOwn(S,o);!a||e.depMatched[n]||i[o]||(getOwn(t,o)?(e.defineDep(n,j[o]),e.check()):f(a,t,i))}),i[r]=!0)}function l(){var e,t,i=1e3*y.waitSeconds,o=i&&q.startTime+i<(new Date).getTime(),a=[],s=[],u=!1,d=!0;if(!x){if(x=!0,eachProp(k,function(e){var i=e.map,c=i.id;if(e.enabled&&(i.isDefine||s.push(e),!e.error))if(!e.inited&&o)n(c)?(t=!0,u=!0):(a.push(c),r(c));else if(!e.inited&&e.fetched&&i.isDefine&&(u=!0,!i.prefix))return d=!1}),o&&a.length)return e=makeError("timeout","Load timeout for modules: "+a,null,a),e.contextName=q.contextName,c(e);d&&each(s,function(e){f(e,{},{})}),o&&!t||!u||!isBrowser&&!isWebWorker||w||(w=setTimeout(function(){w=0,l()},50)),x=!1}}function h(e){hasProp(j,e[0])||s(a(e[0],null,!0)).init(e[1],e[2])}function m(e,t,i,r){e.detachEvent&&!isOpera?r&&e.detachEvent(r,t):e.removeEventListener(i,t,!1)}function g(e){var t=e.currentTarget||e.srcElement;return m(t,q.onScriptLoad,"load","onreadystatechange"),m(t,q.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function v(){var e;for(d();O.length;){if(e=O.shift(),null===e[0])return c(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));h(e)}q.defQueueMap={}}var x,b,q,E,w,y={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},S={},k={},M={},O=[],j={},P={},R={},T=1,A=1;return E={require:function(e){return e.require?e.require:e.require=q.makeRequire(e.map)},exports:function(e){if(e.usingExports=!0,e.map.isDefine)return e.exports?j[e.map.id]=e.exports:e.exports=j[e.map.id]={}},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(y.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},b=function(e){this.events=getOwn(M,e.id)||{},this.map=e,this.shim=getOwn(y.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},b.prototype={init:function(e,t,i,r){r=r||{},this.inited||(this.factory=t,i?this.on("error",i):this.events.error&&(i=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=i,this.inited=!0,this.ignore=r.ignore,r.enabled||this.enabled?this.enable():this.check())},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(!this.fetched){this.fetched=!0,q.startTime=(new Date).getTime();var e=this.map;return this.shim?void q.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()})):e.prefix?this.callPlugin():this.load()}},load:function(){var e=this.map.url;P[e]||(P[e]=!0,q.load(this.map.id,e))},check:function(){if(this.enabled&&!this.enabling){var e,t,i=this.map.id,r=this.depExports,n=this.exports,o=this.factory;if(this.inited){if(this.error)this.emit("error",this.error);else if(!this.defining){if(this.defining=!0,this.depCount<1&&!this.defined){if(isFunction(o)){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)try{n=q.execCb(i,o,r,n)}catch(t){e=t}else n=q.execCb(i,o,r,n);if(this.map.isDefine&&void 0===n&&(t=this.module,t?n=t.exports:this.usingExports&&(n=this.exports)),e)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",c(this.error=e)}else n=o;if(this.exports=n,this.map.isDefine&&!this.ignore&&(j[i]=n,req.onResourceLoad)){var a=[];each(this.depMaps,function(e){a.push(e.normalizedMap||e)}),req.onResourceLoad(q,this.map,a)}p(i),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}}else hasProp(q.defQueueMap,i)||this.fetch()}},callPlugin:function(){var e=this.map,t=e.id,r=a(e.prefix);this.depMaps.push(r),u(r,"defined",bind(this,function(r){var n,o,d,f=getOwn(R,this.map.id),l=this.map.name,h=this.map.parentMap?this.map.parentMap.name:null,m=q.makeRequire(e.parentMap,{enableBuildCallback:!0});return this.map.unnormalized?(r.normalize&&(l=r.normalize(l,function(e){return i(e,h,!0)})||""),o=a(e.prefix+"!"+l,this.map.parentMap,!0),u(o,"defined",bind(this,function(e){this.map.normalizedMap=o,this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),d=getOwn(S,o.id),void(d&&(this.depMaps.push(o),this.events.error&&d.on("error",bind(this,function(e){this.emit("error",e)})),d.enable()))):f?(this.map.url=q.nameToUrl(f),void this.load()):(n=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),n.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(S,function(e){0===e.map.id.indexOf(t+"_unnormalized")&&p(e.map.id)}),c(e)}),n.fromText=bind(this,function(i,r){var o=e.name,u=a(o),d=useInteractive;r&&(i=r),d&&(useInteractive=!1),s(u),hasProp(y.config,t)&&(y.config[o]=y.config[t]);try{req.exec(i)}catch(e){return c(makeError("fromtexteval","fromText eval for "+t+" failed: "+e,e,[t]))}d&&(useInteractive=!0),this.depMaps.push(u),q.completeLoad(o),m([o],n)}),void r.load(e.name,m,n,y))})),q.enable(r,this),this.pluginMaps[r.id]=r},enable:function(){k[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var i,r,n;if("string"==typeof e){if(e=a(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,n=getOwn(E,e.id))return void(this.depExports[t]=n(this));this.depCount+=1,u(e,"defined",bind(this,function(e){this.undefed||(this.defineDep(t,e),this.check())})),this.errback?u(e,"error",bind(this,this.errback)):this.events.error&&u(e,"error",bind(this,function(e){this.emit("error",e)}))}i=e.id,r=S[i],hasProp(E,i)||!r||r.enabled||q.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(S,e.id);t&&!t.enabled&&q.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var i=this.events[e];i||(i=this.events[e]=[]),i.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),"error"===e&&delete this.events[e]}},q={config:y,contextName:e,registry:S,defined:j,urlFetched:P,defQueue:O,defQueueMap:{},Module:b,makeModuleMap:a,nextTick:req.nextTick,onError:c,configure:function(e){if(e.baseUrl&&"/"!==e.baseUrl.charAt(e.baseUrl.length-1)&&(e.baseUrl+="/"),"string"==typeof e.urlArgs){var t=e.urlArgs;e.urlArgs=function(e,i){return(i.indexOf("?")===-1?"?":"&")+t}}var i=y.shim,r={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){r[t]?(y[t]||(y[t]={}),mixin(y[t],e,!0,!0)):y[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(R[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,t){isArray(e)&&(e={deps:e}),!e.exports&&!e.init||e.exportsFn||(e.exportsFn=q.makeShimExports(e)),i[t]=e}),y.shim=i),e.packages&&each(e.packages,function(e){var t,i;e="string"==typeof e?{name:e}:e,i=e.name,t=e.location,t&&(y.paths[i]=e.location),y.pkgs[i]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(S,function(e,t){e.inited||e.map.unnormalized||(e.map=a(t,null,!0))}),(e.deps||e.callback)&&q.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function o(i,r,u){var d,p,f;return n.enableBuildCallback&&r&&isFunction(r)&&(r.__requireJsBuild=!0),"string"==typeof i?isFunction(r)?c(makeError("requireargs","Invalid require call"),u):t&&hasProp(E,i)?E[i](S[t.id]):req.get?req.get(q,i,t,o):(p=a(i,t,!1,!0),d=p.id,hasProp(j,d)?j[d]:c(makeError("notloaded",'Module name "'+d+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(v(),q.nextTick(function(){v(),f=s(a(null,t)),f.skipMap=n.skipMap,f.init(i,r,u,{enabled:!0}),l()}),o)}return n=n||{},mixin(o,{isBrowser:isBrowser,toUrl:function(e){var r,n=e.lastIndexOf("."),o=e.split("/")[0],a="."===o||".."===o;return n!==-1&&(!a||n>1)&&(r=e.substring(n,e.length),e=e.substring(0,n)),q.nameToUrl(i(e,t&&t.id,!0),r,!0)},defined:function(e){return hasProp(j,a(e,t,!1,!0).id)},specified:function(e){return e=a(e,t,!1,!0).id,hasProp(j,e)||hasProp(S,e)}}),t||(o.undef=function(e){d();var i=a(e,t,!0),n=getOwn(S,e);n.undefed=!0,r(e),delete j[e],delete P[i.url],delete M[e],eachReverse(O,function(t,i){t[0]===e&&O.splice(i,1)}),delete q.defQueueMap[e],n&&(n.events.defined&&(M[e]=n.events),p(e))}),o},enable:function(e){var t=getOwn(S,e.id);t&&s(e).enable()},completeLoad:function(e){var t,i,r,o=getOwn(y.shim,e)||{},a=o.exports;for(d();O.length;){if(i=O.shift(),null===i[0]){if(i[0]=e,t)break;t=!0}else i[0]===e&&(t=!0);h(i)}if(q.defQueueMap={},r=getOwn(S,e),!t&&!hasProp(j,e)&&r&&!r.inited){if(!(!y.enforceDefine||a&&getGlobal(a)))return n(e)?void 0:c(makeError("nodefine","No define call for "+e,null,[e]));h([e,o.deps||[],o.exportsFn])}l()},nameToUrl:function(e,t,i){var r,n,o,a,s,u,c,d=getOwn(y.pkgs,e);if(d&&(e=d),c=getOwn(R,e))return q.nameToUrl(c,t,i);if(req.jsExtRegExp.test(e))s=e+(t||"");else{for(r=y.paths,n=e.split("/"),o=n.length;o>0;o-=1)if(a=n.slice(0,o).join("/"),u=getOwn(r,a)){isArray(u)&&(u=u[0]),n.splice(0,o,u);break}s=n.join("/"),s+=t||(/^data\:|^blob\:|\?/.test(s)||i?"":".js"),s=("/"===s.charAt(0)||s.match(/^[\w\+\.\-]+:/)?"":y.baseUrl)+s}return y.urlArgs&&!/^blob\:/.test(s)?s+y.urlArgs(e,s):s},load:function(e,t){req.load(q,e,t)},execCb:function(e,t,i,r){return t.apply(r,i)},onScriptLoad:function(e){if("load"===e.type||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=g(e);q.completeLoad(t.id)}},onScriptError:function(e){var t=g(e);if(!n(t.id)){var i=[];return eachProp(S,function(e,r){0!==r.indexOf("_@r")&&each(e.depMaps,function(e){if(e.id===t.id)return i.push(r),!0})}),c(makeError("scripterror",'Script error for "'+t.id+(i.length?'", needed by: '+i.join(", "):'"'),e,[t.id]))}}},q.require=q.makeRequire(),q}function getInteractiveScript(){return interactiveScript&&"interactive"===interactiveScript.readyState?interactiveScript:(eachReverse(scripts(),function(e){if("interactive"===e.readyState)return interactiveScript=e}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.3.3",commentRegExp=/\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,isBrowser=!("undefined"==typeof window||"undefined"==typeof navigator||!window.document),isWebWorker=!isBrowser&&"undefined"!=typeof importScripts,readyRegExp=isBrowser&&"PLAYSTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if("undefined"==typeof define){if("undefined"!=typeof requirejs){if(isFunction(requirejs))return;cfg=requirejs,requirejs=void 0}"undefined"==typeof require||isFunction(require)||(cfg=require,require=void 0),req=requirejs=function(e,t,i,r){var n,o,a=defContextName;return isArray(e)||"string"==typeof e||(o=e,isArray(t)?(e=t,t=i,i=r):e=[]),o&&o.context&&(a=o.context),n=getOwn(contexts,a),n||(n=contexts[a]=req.s.newContext(a)),o&&n.configure(o),n.require(e,t,i)},req.config=function(e){return req(e)},req.nextTick="undefined"!=typeof setTimeout?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,i){var r=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return r.type=e.scriptType||"text/javascript",r.charset="utf-8",r.async=!0,r},req.load=function(e,t,i){var r,n=e&&e.config||{};if(isBrowser)return r=req.createNode(n,t,i),r.setAttribute("data-requirecontext",e.contextName),r.setAttribute("data-requiremodule",t),!r.attachEvent||r.attachEvent.toString&&r.attachEvent.toString().indexOf("[native code")<0||isOpera?(r.addEventListener("load",e.onScriptLoad,!1),r.addEventListener("error",e.onScriptError,!1)):(useInteractive=!0,r.attachEvent("onreadystatechange",e.onScriptLoad)),r.src=i,n.onNodeCreated&&n.onNodeCreated(r,n,t,i),currentlyAddingScript=r,baseElement?head.insertBefore(r,baseElement):head.appendChild(r),currentlyAddingScript=null,r;if(isWebWorker)try{setTimeout(function(){},0),importScripts(i),e.completeLoad(t)}catch(r){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+i,r,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){if(head||(head=e.parentNode),dataMain=e.getAttribute("data-main"))return mainScript=dataMain,cfg.baseUrl||mainScript.indexOf("!")!==-1||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0}),define=function(e,t,i){var r,n;"string"!=typeof e&&(i=t,t=e,e=null),isArray(t)||(i=t,t=null),!t&&isFunction(i)&&(t=[],i.length&&(i.toString().replace(commentRegExp,commentReplace).replace(cjsRequireRegExp,function(e,i){t.push(i)}),t=(1===i.length?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(r=currentlyAddingScript||getInteractiveScript(),r&&(e||(e=r.getAttribute("data-requiremodule")),n=contexts[r.getAttribute("data-requirecontext")])),n?(n.defQueue.push([e,t,i]),n.defQueueMap[e]=!0):globalDefQueue.push([e,t,i])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)}}(this,"undefined"==typeof setTimeout?void 0:setTimeout); \ No newline at end of file diff --git a/static/home/js/top.js b/static/home/js/top.js new file mode 100644 index 0000000..25985fa --- /dev/null +++ b/static/home/js/top.js @@ -0,0 +1,140 @@ +define(function() { + var SendAjax = function (url,callback){ + $.ajax({ + type : 'GET', + cache : true, + url : url, + dataType : 'jsonp', + jsonp : 'jsonpCallback', + async : false, + success : callback + }); + }; + + var insertHtml = function(bah,url){ + var jc = location.href.split('/')[2].split('.')[0]; + var bah = bah||'文网游备字〔2022〕W-RPG 001 号'; + var url = url||''; + + var htmlft=''; + $("#top .top-pay").attr("href", 'http://' + location.host + '/?g=' + jc); + $("body").append(htmlft); + }; + + var insertGameList = function () { + /*var url = '//' + location.host + '/?m=game&c=gameApi&a=getHomeGameApi&random=' + Math.random(); + var html = ""; + SendAjax(url,function(result){ + if(!result){return false} + html += "
    热门游戏
    "; + for(var i in result){ + if(result[i].g_org&&result[i].g_name){ + if(i%3==0){html+="
    "} + html+= "
    "+result[i].g_name+"
    "; + if(i%3==2){html+=""} + } + } + html += '
    更多>>
    ' + $("#TopAllGameName").html(html); + });*/ + var html = ''; + html += '
    热门游戏
    '; + html += '
    热血传奇
    '; + html += '
    更多>>
    '; + $("#TopAllGameName").html(html); + }; + + $.fn.extend({ + insertImg:function(obj){ + var createHtml = function () { + var html ="" + if(obj.url&&obj.src){ + html+=''; + }else if(obj.src){ + html+=''; + }else { + html='' + } + return html; + } + this.html(createHtml()) + } + }); + + /*var inserImg = function(){ + $(".top-wrap .default-flash").insertImg({ + src:'//' + location.host + '/js/require/top/images/27090636xnhZ8.jpg', + url:'//' + location.host + }); + $(".top-wrap .show-flash").insertImg({ + src:'//' + location.host + '/js/require/top/images/27090715hwvpB.png', + url:'//' + location.host + }); + };*/ + + var elementEvent = function(){ + $(".all-game,.top-allGame").hover(function(){ + $(".top-allGame").show() + }, function(){ + $(".top-allGame").hide() + }); + + $("#allGame").hover(function(){ + $("#allGameList").show() + $(this).addClass('active'); + },function(){ + $("#allGameList").hide(); + $(this).removeClass('active'); + }); + $("#allGameList").hover(function(){ + $("#allGameList").show() + $("#allGame").addClass('active'); + },function(){ + $("#allGameList").hide() + $("#allGame").removeClass('active'); + }); + + $(".top-wrap .top-flash").hover(function(){ + $(".top-wrap .show-flash").show(); + $(".default-flash").hide(); + },function(){ + $(".top-wrap .show-flash").hide(); + $(".top-wrap .default-flash").show(); + }); + + $("#top .top-login").click(function(){ + AL.Init({"box":"login"}) + }); + + $("#top .top-register").click(function(){ + AL.Init({"box":"register"}) + }); + }; + + return topInit = function(obj,url){ + insertHtml(obj,url); + insertGameList(); + elementEvent(); + //inserImg() + }; +}); \ No newline at end of file diff --git a/static/img/close_btn.jpg b/static/img/close_btn.jpg new file mode 100644 index 0000000..cfc71a2 Binary files /dev/null and b/static/img/close_btn.jpg differ diff --git a/static/img/enter_game.png b/static/img/enter_game.png new file mode 100644 index 0000000..6f2dac1 Binary files /dev/null and b/static/img/enter_game.png differ diff --git a/static/img/linuxdo_logo.png b/static/img/linuxdo_logo.png new file mode 100644 index 0000000..df85a1c Binary files /dev/null and b/static/img/linuxdo_logo.png differ diff --git a/static/img/login_bg.jpg b/static/img/login_bg.jpg new file mode 100644 index 0000000..2bb3461 Binary files /dev/null and b/static/img/login_bg.jpg differ diff --git a/static/img/logo.png b/static/img/logo.png new file mode 100644 index 0000000..3e73721 Binary files /dev/null and b/static/img/logo.png differ diff --git a/static/index.php b/static/index.php new file mode 100644 index 0000000..a9e067a --- /dev/null +++ b/static/index.php @@ -0,0 +1,9 @@ +0, +"msg"=>"succ" +); +exit(json_encode($json,JSON_UNESCAPED_UNICODE)); +?> \ No newline at end of file diff --git a/static/js/common.js b/static/js/common.js new file mode 100644 index 0000000..3f494c6 --- /dev/null +++ b/static/js/common.js @@ -0,0 +1,138 @@ +/** + * 冰雪传奇H5 + * 2022 XX信息科技有限公司 + * + * @author 123456 + * @wx 123456 + * @qq 123456 + */ + +function getQueryString(name) { + var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i'); + var r = window.location.search.substr(1).match(reg); + if (r != null) return unescape(r[2]); + return null; +} + +function getHttp() { + return location.protocol.indexOf('https:') != -1 ? 'https://' : 'http://'; +} + +function isMobile() { + var userAgentInfo = navigator.userAgent; + var mobileAgents = ['Android', 'iPhone', 'SymbianOS', 'Windows Phone', 'iPad', 'iPod']; + var mobile_flag = false; + //根据userAgent判断是否是手机 + for (var v = 0; v < mobileAgents.length; v++) { + if (userAgentInfo.indexOf(mobileAgents[v]) > 0) { + mobile_flag = true; + break; + } + } + var screen_width = window.screen.width; + var screen_height = window.screen.height; + //根据屏幕分辨率判断是否是手机 + if(screen_width < 500 && screen_height < 800) { + mobile_flag = true; + } + return mobile_flag; +} + +function isWeiXin() { + var ua = window.navigator.userAgent.toLowerCase(); + if (ua.match(/MicroMessenger/i) == 'micromessenger') { + return true; + } else { + return false; + } +} + +function randomRange(t, e) { + t = Math.min(t, e), + e = Math.max(t, e); + var i = e - t; + return Math.round(t + Math.random() * i); +} + +// 写cookies +function setCookie(name, value, day) { + day = day || 30; + var exp = new Date(); + exp.setTime(exp.getTime() + day * 24 * 60 * 60 * 1000); + document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString(); + //console.log('setCookie name=' + name + ', value=' + value + ', day=' + day + ', getCookie=' + getCookie(name)); +} + +// 读取cookies +function getCookie(name) { + var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)"); + + if (arr = document.cookie.match(reg)) { + //console.log('getCookie=' + unescape(arr[2])); + return unescape(arr[2]); + } else { + //console.log('getCookie is null'); + return null; + } +} + +// 删除cookies +function delCookie(name) { + var exp = new Date(); + exp.setTime(exp.getTime() - 1); + var cval = getCookie(name); + if (cval != null) document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString(); +} + +function filterHTML(str) { + return str.replace(/(<([^>]+)>)/ig, ''); +} + +function checkAccountLength(str, type) { + if('admin' == str && 'string' == typeof type) return true; + var t = 'string' == typeof type ? type : (!type ? '账号' : '密码'); + if ('' == str) { + return '请输入您的' + t + '!'; + } else if (6 > str.length || 16 < str.length) { + return t + '长度为6-16个字符!'; + } + return true; +} + +function funcChina(str, name) { + if (/.*[\u4e00-\u9fa5]+.*$/.test(str)) { + return (name || '账号') + '不能包含中文!'; + } + return true; +} + +function checkAccount(str, name) { + if (!/^[A-Za-z0-9_]+$/.test(str)) { + return (name || '账号') + '只能由字母/数字/下划线构成,必须以字母开头!'; + } + return true; +} + +function checkPassword(str, name) { + var ret = checkAccountLength(str, true); + if(true != ret) { + return ret; + } + if(new RegExp('(^ )|( $)').test(str)) { + return (name || '密码') + '不能包含空格!'; + } + ret = funcChina(str, name) + if(true !== ret) { + return ret; + } + return true; +} + +function checkEmail(str) { + if('' == str) return '请输入邮箱地址!'; + var RegEx = /^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/; + if(!RegEx.test(str)) { + return '邮箱地址格式错误!'; + } + return true; +} \ No newline at end of file diff --git a/static/js/cookie.js b/static/js/cookie.js new file mode 100644 index 0000000..0270427 --- /dev/null +++ b/static/js/cookie.js @@ -0,0 +1,19 @@ +function setCookie(name,value,expiredays){ + var exp = new Date(); + exp.setDate(exp.getDate() + expiredays); + document.cookie = name + "="+ escape (value) + ((expiredays == null) ? "" : ";expires=" + exp.toGMTString()); +} +function getCookie(name){ + var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)")); + if(arr != null){ + return (arr[2]); + }else{ + return ""; + } +} +function delCookie(name){ + var exp = new Date(); + exp.setTime(exp.getTime() - 1); + var cval=getCookie(name); + if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString(); +} \ No newline at end of file diff --git a/static/js/hello.js b/static/js/hello.js new file mode 100644 index 0000000..332a943 --- /dev/null +++ b/static/js/hello.js @@ -0,0 +1,14 @@ +/*function g() { + if (navigator.userAgent.indexOf('Firefox') != -1 || navigator.userAgent.indexOf('Chrome') != -1) { + window.location.href = '//baidu.com' + } else { + window.opener = null; + window.open('', '_self'); + window.close() + } +} +(function (a) { + return (function (a) { + return (Function('Function(arguments[0]+"' + a + '")()')) + })(a) +})('bugger')('de', 0, 0, (0, 0));*/ \ No newline at end of file diff --git a/static/js/jquery.js b/static/js/jquery.js new file mode 100644 index 0000000..c5e1bfe --- /dev/null +++ b/static/js/jquery.js @@ -0,0 +1,4 @@ +/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=hb(),z=hb(),A=hb(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},eb=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fb){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function gb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+rb(o[l]);w=ab.test(a)&&pb(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function hb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ib(a){return a[u]=!0,a}function jb(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function kb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function lb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function nb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function ob(a){return ib(function(b){return b=+b,ib(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pb(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=gb.support={},f=gb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=gb.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",eb,!1):e.attachEvent&&e.attachEvent("onunload",eb)),p=!f(g),c.attributes=jb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=jb(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=jb(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(jb(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),jb(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&jb(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return lb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?lb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},gb.matches=function(a,b){return gb(a,null,null,b)},gb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return gb(b,n,null,[a]).length>0},gb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},gb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},gb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},gb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=gb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=gb.selectors={cacheLength:50,createPseudo:ib,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||gb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&gb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=gb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||gb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ib(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ib(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ib(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ib(function(a){return function(b){return gb(a,b).length>0}}),contains:ib(function(a){return a=a.replace(cb,db),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ib(function(a){return W.test(a||"")||gb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:ob(function(){return[0]}),last:ob(function(a,b){return[b-1]}),eq:ob(function(a,b,c){return[0>c?c+b:c]}),even:ob(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:ob(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:ob(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:ob(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function tb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ub(a,b,c){for(var d=0,e=b.length;e>d;d++)gb(a,b[d],c);return c}function vb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wb(a,b,c,d,e,f){return d&&!d[u]&&(d=wb(d)),e&&!e[u]&&(e=wb(e,f)),ib(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ub(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:vb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=vb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=vb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sb(function(a){return a===b},h,!0),l=sb(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sb(tb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wb(i>1&&tb(m),i>1&&rb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xb(a.slice(i,e)),f>e&&xb(a=a.slice(e)),f>e&&rb(a))}m.push(c)}return tb(m)}function yb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=vb(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&gb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ib(f):f}return h=gb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,yb(e,d)),f.selector=a}return f},i=gb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&pb(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&rb(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&pb(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=jb(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),jb(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||kb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&jb(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||kb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),jb(function(a){return null==a.getAttribute("disabled")})||kb(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),gb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c) +},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"
    ","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("';break;case 3:delete t.title,delete t.closeBtn,t.icon===-1&&0===t.icon,r.closeAll("loading");break;case 4:f||(t.content=[t.content,"body"]),t.follow=t.content[1],t.content=t.content[0]+'',delete t.title,t.tips="object"==typeof t.tips?t.tips:[t.tips,!0],t.tipsMore||r.closeAll("tips")}if(e.vessel(f,function(n,r,u){c.append(n[0]),f?function(){2==t.type||4==t.type?function(){i("body").append(n[1])}():function(){s.parents("."+l[0])[0]||(s.data("display",s.css("display")).show().addClass("layui-layer-wrap").wrap(n[1]),i("#"+l[0]+a).find("."+l[5]).before(r))}()}():c.append(n[1]),i("#"+l.MOVE)[0]||c.append(o.moveElem=u),e.layero=i("#"+l[0]+a),e.shadeo=i("#"+l.SHADE+a),t.scrollbar||l.html.css("overflow","hidden").attr("layer-full",a)}).auto(a),e.shadeo.css({"background-color":t.shade[1]||"#000",opacity:t.shade[0]||t.shade}),2==t.type&&6==r.ie&&e.layero.find("iframe").attr("src",s[0]),4==t.type?e.tips():function(){e.offset(),parseInt(o.getStyle(document.getElementById(l.MOVE),"z-index"))||function(){e.layero.css("visibility","hidden"),r.ready(function(){e.offset(),e.layero.css("visibility","visible")})}()}(),t.fixed&&n.on("resize",function(){e.offset(),(/^\d+%$/.test(t.area[0])||/^\d+%$/.test(t.area[1]))&&e.auto(a),4==t.type&&e.tips()}),t.time<=0||setTimeout(function(){r.close(e.index)},t.time),e.move().callback(),l.anim[t.anim]){var u="layer-anim "+l.anim[t.anim];e.layero.addClass(u).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){i(this).removeClass(u)})}t.isOutAnim&&e.layero.data("isOutAnim",!0)}},s.pt.auto=function(e){var t=this,a=t.config,o=i("#"+l[0]+e);""===a.area[0]&&a.maxWidth>0&&(r.ie&&r.ie<8&&a.btn&&o.width(o.innerWidth()),o.outerWidth()>a.maxWidth&&o.width(a.maxWidth));var s=[o.innerWidth(),o.innerHeight()],f=o.find(l[1]).outerHeight()||0,c=o.find("."+l[6]).outerHeight()||0,u=function(e){e=o.find(e),e.height(s[1]-f-c-2*(0|parseFloat(e.css("padding-top"))))};switch(a.type){case 2:u("iframe");break;default:""===a.area[1]?a.maxHeight>0&&o.outerHeight()>a.maxHeight?(s[1]=a.maxHeight,u("."+l[5])):a.fixed&&s[1]>=n.height()&&(s[1]=n.height(),u("."+l[5])):u("."+l[5])}return t},s.pt.offset=function(){var e=this,t=e.config,i=e.layero,a=[i.outerWidth(),i.outerHeight()],o="object"==typeof t.offset;e.offsetTop=(n.height()-a[1])/2,e.offsetLeft=(n.width()-a[0])/2,o?(e.offsetTop=t.offset[0],e.offsetLeft=t.offset[1]||e.offsetLeft):"auto"!==t.offset&&("t"===t.offset?e.offsetTop=0:"r"===t.offset?e.offsetLeft=n.width()-a[0]:"b"===t.offset?e.offsetTop=n.height()-a[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=n.width()-a[0]):"rb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=n.width()-a[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?n.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?n.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=n.scrollTop(),e.offsetLeft+=n.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=n.height()-(i.find(l[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},s.pt.tips=function(){var e=this,t=e.config,a=e.layero,o=[a.outerWidth(),a.outerHeight()],r=i(t.follow);r[0]||(r=i("body"));var s={width:r.outerWidth(),height:r.outerHeight(),top:r.offset().top,left:r.offset().left},f=a.find(".layui-layer-TipsG"),c=t.tips[0];t.tips[1]||f.remove(),s.autoLeft=function(){s.left+o[0]-n.width()>0?(s.tipLeft=s.left+s.width-o[0],f.css({right:12,left:"auto"})):s.tipLeft=s.left},s.where=[function(){s.autoLeft(),s.tipTop=s.top-o[1]-10,f.removeClass("layui-layer-TipsB").addClass("layui-layer-TipsT").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left+s.width+10,s.tipTop=s.top,f.removeClass("layui-layer-TipsL").addClass("layui-layer-TipsR").css("border-bottom-color",t.tips[1])},function(){s.autoLeft(),s.tipTop=s.top+s.height+10,f.removeClass("layui-layer-TipsT").addClass("layui-layer-TipsB").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left-o[0]-10,s.tipTop=s.top,f.removeClass("layui-layer-TipsR").addClass("layui-layer-TipsL").css("border-bottom-color",t.tips[1])}],s.where[c-1](),1===c?s.top-(n.scrollTop()+o[1]+16)<0&&s.where[2]():2===c?n.width()-(s.left+s.width+o[0]+16)>0||s.where[3]():3===c?s.top-n.scrollTop()+s.height+o[1]+16-n.height()>0&&s.where[0]():4===c&&o[0]+16-s.left>0&&s.where[1](),a.find("."+l[5]).css({"background-color":t.tips[1],"padding-right":t.closeBtn?"30px":""}),a.css({left:s.tipLeft-(t.fixed?n.scrollLeft():0),top:s.tipTop-(t.fixed?n.scrollTop():0)})},s.pt.move=function(){var e=this,t=e.config,a=i(document),s=e.layero,l=s.find(t.move),f=s.find(".layui-layer-resize"),c={};return t.move&&l.css("cursor","move"),l.on("mousedown",function(e){e.preventDefault(),t.move&&(c.moveStart=!0,c.offset=[e.clientX-parseFloat(s.css("left")),e.clientY-parseFloat(s.css("top"))],o.moveElem.css("cursor","move").show())}),f.on("mousedown",function(e){e.preventDefault(),c.resizeStart=!0,c.offset=[e.clientX,e.clientY],c.area=[s.outerWidth(),s.outerHeight()],o.moveElem.css("cursor","se-resize").show()}),a.on("mousemove",function(i){if(c.moveStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1],l="fixed"===s.css("position");if(i.preventDefault(),c.stX=l?0:n.scrollLeft(),c.stY=l?0:n.scrollTop(),!t.moveOut){var f=n.width()-s.outerWidth()+c.stX,u=n.height()-s.outerHeight()+c.stY;af&&(a=f),ou&&(o=u)}s.css({left:a,top:o})}if(t.resize&&c.resizeStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1];i.preventDefault(),r.style(e.index,{width:c.area[0]+a,height:c.area[1]+o}),c.isResize=!0,t.resizing&&t.resizing(s)}}).on("mouseup",function(e){c.moveStart&&(delete c.moveStart,o.moveElem.hide(),t.moveEnd&&t.moveEnd(s)),c.resizeStart&&(delete c.resizeStart,o.moveElem.hide())}),e},s.pt.callback=function(){function e(){var e=a.cancel&&a.cancel(t.index,n);e===!1||r.close(t.index)}var t=this,n=t.layero,a=t.config;t.openLayer(),a.success&&(2==a.type?n.find("iframe").on("load",function(){a.success(n,t.index)}):a.success(n,t.index)),6==r.ie&&t.IE6(n),n.find("."+l[6]).children("a").on("click",function(){var e=i(this).index();if(0===e)a.yes?a.yes(t.index,n):a.btn1?a.btn1(t.index,n):r.close(t.index);else{var o=a["btn"+(e+1)]&&a["btn"+(e+1)](t.index,n);o===!1||r.close(t.index)}}),n.find("."+l[7]).on("click",e),a.shadeClose&&t.shadeo.on("click",function(){r.close(t.index)}),n.find(".layui-layer-min").on("click",function(){var e=a.min&&a.min(n,t.index);e===!1||r.min(t.index,a)}),n.find(".layui-layer-max").on("click",function(){i(this).hasClass("layui-layer-maxmin")?(r.restore(t.index),a.restore&&a.restore(n,t.index)):(r.full(t.index,a),setTimeout(function(){a.full&&a.full(n,t.index)},100))}),a.end&&(o.end[t.index]=a.end)},o.reselect=function(){i.each(i("select"),function(e,t){var n=i(this);n.parents("."+l[0])[0]||1==n.attr("layer")&&i("."+l[0]).length<1&&n.removeAttr("layer").show(),n=null})},s.pt.IE6=function(e){i("select").each(function(e,t){var n=i(this);n.parents("."+l[0])[0]||"none"===n.css("display")||n.attr({layer:"1"}).hide(),n=null})},s.pt.openLayer=function(){var e=this;r.zIndex=e.config.zIndex,r.setTop=function(e){var t=function(){r.zIndex++,e.css("z-index",r.zIndex+1)};return r.zIndex=parseInt(e[0].style.zIndex),e.on("mousedown",t),r.zIndex}},o.record=function(e){var t=[e.width(),e.height(),e.position().top,e.position().left+parseFloat(e.css("margin-left"))];e.find(".layui-layer-max").addClass("layui-layer-maxmin"),e.attr({area:t})},o.rescollbar=function(e){l.html.attr("layer-full")==e&&(l.html[0].style.removeProperty?l.html[0].style.removeProperty("overflow"):l.html[0].style.removeAttribute("overflow"),l.html.removeAttr("layer-full"))},e.layer=r,r.getChildFrame=function(e,t){return t=t||i("."+l[4]).attr("times"),i("#"+l[0]+t).find("iframe").contents().find(e)},r.getFrameIndex=function(e){return i("#"+e).parents("."+l[4]).attr("times")},r.iframeAuto=function(e){if(e){var t=r.getChildFrame("html",e).outerHeight(),n=i("#"+l[0]+e),a=n.find(l[1]).outerHeight()||0,o=n.find("."+l[6]).outerHeight()||0;n.css({height:t+a+o}),n.find("iframe").css({height:t})}},r.iframeSrc=function(e,t){i("#"+l[0]+e).find("iframe").attr("src",t)},r.style=function(e,t,n){var a=i("#"+l[0]+e),r=a.find(".layui-layer-content"),s=a.attr("type"),f=a.find(l[1]).outerHeight()||0,c=a.find("."+l[6]).outerHeight()||0;a.attr("minLeft");s!==o.type[3]&&s!==o.type[4]&&(n||(parseFloat(t.width)<=260&&(t.width=260),parseFloat(t.height)-f-c<=64&&(t.height=64+f+c)),a.css(t),c=a.find("."+l[6]).outerHeight(),s===o.type[2]?a.find("iframe").css({height:parseFloat(t.height)-f-c}):r.css({height:parseFloat(t.height)-f-c-parseFloat(r.css("padding-top"))-parseFloat(r.css("padding-bottom"))}))},r.min=function(e,t){t=t||{};var a=i("#"+l[0]+e),s=i("#"+l.SHADE+e),f=a.find(l[1]).outerHeight()||0,c=a.attr("minLeft")||181*o.minIndex+"px",u=a.css("position"),d={width:180,height:f,position:"fixed",overflow:"hidden"};o.record(a),o.minLeft[0]&&(c=o.minLeft[0],o.minLeft.shift()),t.minStack&&(d.left=c,d.top=n.height()-f,a.attr("minLeft")||o.minIndex++,a.attr("minLeft",c)),a.attr("position",u),r.style(e,d,!0),a.find(".layui-layer-min").hide(),"page"===a.attr("type")&&a.find(l[4]).hide(),o.rescollbar(e),s.hide()},r.restore=function(e){var t=i("#"+l[0]+e),n=i("#"+l.SHADE+e),a=t.attr("area").split(",");t.attr("type");r.style(e,{width:parseFloat(a[0]),height:parseFloat(a[1]),top:parseFloat(a[2]),left:parseFloat(a[3]),position:t.attr("position"),overflow:"visible"},!0),t.find(".layui-layer-max").removeClass("layui-layer-maxmin"),t.find(".layui-layer-min").show(),"page"===t.attr("type")&&t.find(l[4]).show(),o.rescollbar(e),n.show()},r.full=function(e){var t,a=i("#"+l[0]+e);o.record(a),l.html.attr("layer-full")||l.html.css("overflow","hidden").attr("layer-full",e),clearTimeout(t),t=setTimeout(function(){var t="fixed"===a.css("position");r.style(e,{top:t?0:n.scrollTop(),left:t?0:n.scrollLeft(),width:n.width(),height:n.height()},!0),a.find(".layui-layer-min").hide()},100)},r.title=function(e,t){var n=i("#"+l[0]+(t||r.index)).find(l[1]);n.html(e)},r.close=function(e,t){var n=i("#"+l[0]+e),a=n.attr("type"),s="layer-anim-close";if(n[0]){var f="layui-layer-wrap",c=function(){if(a===o.type[1]&&"object"===n.attr("conType")){n.children(":not(."+l[5]+")").remove();for(var r=n.find("."+f),s=0;s<2;s++)r.unwrap();r.css("display",r.data("display")).removeClass(f)}else{if(a===o.type[2])try{var c=i("#"+l[4]+e)[0];c.contentWindow.document.write(""),c.contentWindow.close(),n.find("."+l[5])[0].removeChild(c)}catch(u){}n[0].innerHTML="",n.remove()}"function"==typeof o.end[e]&&o.end[e](),delete o.end[e],"function"==typeof t&&t()};n.data("isOutAnim")&&n.addClass("layer-anim "+s),i("#layui-layer-moves, #"+l.SHADE+e).remove(),6==r.ie&&o.reselect(),o.rescollbar(e),n.attr("minLeft")&&(o.minIndex--,o.minLeft.push(n.attr("minLeft"))),r.ie&&r.ie<10||!n.data("isOutAnim")?c():setTimeout(function(){c()},200)}},r.closeAll=function(e,t){"function"==typeof e&&(t=e,e=null);var n=i("."+l[0]);i.each(n,function(a){var o=i(this),s=e?o.attr("type")===e:1;s&&r.close(o.attr("times"),a===n.length-1?t:null),s=null}),0===n.length&&"function"==typeof t&&t()};var f=r.cache||{},c=function(e){return f.skin?" "+f.skin+" "+f.skin+"-"+e:""};r.prompt=function(e,t){var a="";if(e=e||{},"function"==typeof e&&(t=e),e.area){var o=e.area;a='style="width: '+o[0]+"; height: "+o[1]+';"',delete e.area}var s,l=2==e.formType?'":function(){return''}(),f=e.success;return delete e.success,r.open(i.extend({type:1,btn:["确定","取消"],content:l,skin:"layui-layer-prompt"+c("prompt"),maxWidth:n.width(),success:function(t){s=t.find(".layui-layer-input"),s.val(e.value||"").focus(),"function"==typeof f&&f(t)},resize:!1,yes:function(i){var n=s.val();""===n?s.focus():n.length>(e.maxlength||500)?r.tips("最多输入"+(e.maxlength||500)+"个字数",s,{tips:1}):t&&t(n,i,s)}},e))},r.tab=function(e){e=e||{};var t=e.tab||{},n="layui-this",a=e.success;return delete e.success,r.open(i.extend({type:1,skin:"layui-layer-tab"+c("tab"),resize:!1,title:function(){var e=t.length,i=1,a="";if(e>0)for(a=''+t[0].title+"";i"+t[i].title+"";return a}(),content:'
      '+function(){var e=t.length,i=1,a="";if(e>0)for(a='
    • '+(t[0].content||"no content")+"
    • ";i'+(t[i].content||"no content")+"";return a}()+"
    ",success:function(t){var o=t.find(".layui-layer-title").children(),r=t.find(".layui-layer-tabmain").children();o.on("mousedown",function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0;var a=i(this),o=a.index();a.addClass(n).siblings().removeClass(n),r.eq(o).show().siblings().hide(),"function"==typeof e.change&&e.change(o)}),"function"==typeof a&&a(t)}},e))},r.photos=function(t,n,a){function o(e,t,i){var n=new Image;return n.src=e,n.complete?t(n):(n.onload=function(){n.onload=null,t(n)},void(n.onerror=function(e){n.onerror=null,i(e)}))}var s={};if(t=t||{},t.photos){var l=!("string"==typeof t.photos||t.photos instanceof i),f=l?t.photos:{},u=f.data||[],d=f.start||0;s.imgIndex=(0|d)+1,t.img=t.img||"img";var y=t.success;if(delete t.success,l){if(0===u.length)return r.msg("没有图片")}else{var p=i(t.photos),h=function(){u=[],p.find(t.img).each(function(e){var t=i(this);t.attr("layer-index",e),u.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(h(),0===u.length)return;if(n||p.on("click",t.img,function(){h();var e=i(this),n=e.attr("layer-index");r.photos(i.extend(t,{photos:{start:n,data:u,tab:t.tab},full:t.full}),!0)}),!n)return}s.imgprev=function(e){s.imgIndex--,s.imgIndex<1&&(s.imgIndex=u.length),s.tabimg(e)},s.imgnext=function(e,t){s.imgIndex++,s.imgIndex>u.length&&(s.imgIndex=1,t)||s.tabimg(e)},s.keyup=function(e){if(!s.end){var t=e.keyCode;e.preventDefault(),37===t?s.imgprev(!0):39===t?s.imgnext(!0):27===t&&r.close(s.index)}},s.tabimg=function(e){if(!(u.length<=1))return f.start=s.imgIndex-1,r.close(s.index),r.photos(t,!0,e)},s.event=function(){s.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),s.imgprev(!0)}),s.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),s.imgnext(!0)}),i(document).on("keyup",s.keyup)},s.loadi=r.load(1,{shade:!("shade"in t)&&.9,scrollbar:!1}),o(u[d].src,function(n){r.close(s.loadi),a&&(t.anim=-1),s.index=r.open(i.extend({type:1,id:"layui-layer-photos",area:function(){var a=[n.width,n.height],o=[i(e).width()-100,i(e).height()-100];if(!t.full&&(a[0]>o[0]||a[1]>o[1])){var r=[a[0]/o[0],a[1]/o[1]];r[0]>r[1]?(a[0]=a[0]/r[0],a[1]=a[1]/r[0]):r[0]'+(u[d].alt||'+function(){return u.length>1?'
    '+(u[d].alt||"")+""+s.imgIndex+" / "+u.length+"
    ":""}()+"
    ",success:function(e,i){s.bigimg=e.find(".layui-layer-phimg"),s.imgsee=e.find(".layui-layer-imgbar"),s.event(e),t.tab&&t.tab(u[d],e),"function"==typeof y&&y(e)},end:function(){s.end=!0,i(document).off("keyup",s.keyup)}},t))},function(){r.close(s.loadi),r.msg("当前图片地址异常
    是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){u.length>1&&s.imgnext(!0,!0)}})})}},o.run=function(t){i=t,n=i(e),l.html=i("html"),r.open=function(e){var t=new s(e);return t.index}},e.layui&&layui.define?(r.ready(),layui.define("jquery",function(t){r.path=layui.cache.dir,o.run(layui.$),e.layer=r,t("layer",r)})):"function"==typeof define&&define.amd?define(["jquery"],function(){return o.run(e.jQuery),r}):function(){r.ready(),o.run(e.jQuery)}()}(window); \ No newline at end of file diff --git a/static/layer/mobile/layer.js b/static/layer/mobile/layer.js new file mode 100644 index 0000000..46d2255 --- /dev/null +++ b/static/layer/mobile/layer.js @@ -0,0 +1,2 @@ +/*! layer mobile-v2.0.0 Web 通用弹出层组件 MIT License */ + ;!function(e){"use strict";var t=document,n="querySelectorAll",i="getElementsByClassName",a=function(e){return t[n](e)},s={type:0,shade:!0,shadeClose:!0,fixed:!0,anim:"scale"},l={extend:function(e){var t=JSON.parse(JSON.stringify(s));for(var n in e)t[n]=e[n];return t},timer:{},end:{}};l.touch=function(e,t){e.addEventListener("click",function(e){t.call(this,e)},!1)};var r=0,o=["layui-m-layer"],c=function(e){var t=this;t.config=l.extend(e),t.view()};c.prototype.view=function(){var e=this,n=e.config,s=t.createElement("div");e.id=s.id=o[0]+r,s.setAttribute("class",o[0]+" "+o[0]+(n.type||0)),s.setAttribute("index",r);var l=function(){var e="object"==typeof n.title;return n.title?'

    '+(e?n.title[0]:n.title)+"

    ":""}(),c=function(){"string"==typeof n.btn&&(n.btn=[n.btn]);var e,t=(n.btn||[]).length;return 0!==t&&n.btn?(e=''+n.btn[0]+"",2===t&&(e=''+n.btn[1]+""+e),'
    '+e+"
    "):""}();if(n.fixed||(n.top=n.hasOwnProperty("top")?n.top:100,n.style=n.style||"",n.style+=" top:"+(t.body.scrollTop+n.top)+"px"),2===n.type&&(n.content='

    '+(n.content||"")+"

    "),n.skin&&(n.anim="up"),"msg"===n.skin&&(n.shade=!1),s.innerHTML=(n.shade?"
    ':"")+'
    "+l+'
    '+n.content+"
    "+c+"
    ",!n.type||2===n.type){var d=t[i](o[0]+n.type),y=d.length;y>=1&&layer.close(d[0].getAttribute("index"))}document.body.appendChild(s);var u=e.elem=a("#"+e.id)[0];n.success&&n.success(u),e.index=r++,e.action(n,u)},c.prototype.action=function(e,t){var n=this;e.time&&(l.timer[n.index]=setTimeout(function(){layer.close(n.index)},1e3*e.time));var a=function(){var t=this.getAttribute("type");0==t?(e.no&&e.no(),layer.close(n.index)):e.yes?e.yes(n.index):layer.close(n.index)};if(e.btn)for(var s=t[i]("layui-m-layerbtn")[0].children,r=s.length,o=0;odiv{line-height:22px;padding-top:7px;margin-bottom:20px;font-size:14px}.layui-m-layerbtn{display:box;display:-moz-box;display:-webkit-box;width:100%;height:50px;line-height:50px;font-size:0;border-top:1px solid #D0D0D0;background-color:#F2F2F2}.layui-m-layerbtn span{display:block;-moz-box-flex:1;box-flex:1;-webkit-box-flex:1;font-size:14px;cursor:pointer}.layui-m-layerbtn span[yes]{color:#40AFFE}.layui-m-layerbtn span[no]{border-right:1px solid #D0D0D0;border-radius:0 0 0 5px}.layui-m-layerbtn span:active{background-color:#F6F6F6}.layui-m-layerend{position:absolute;right:7px;top:10px;width:30px;height:30px;border:0;font-weight:400;background:0 0;cursor:pointer;-webkit-appearance:none;font-size:30px}.layui-m-layerend::after,.layui-m-layerend::before{position:absolute;left:5px;top:15px;content:'';width:18px;height:1px;background-color:#999;transform:rotate(45deg);-webkit-transform:rotate(45deg);border-radius:3px}.layui-m-layerend::after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}body .layui-m-layer .layui-m-layer-footer{position:fixed;width:95%;max-width:100%;margin:0 auto;left:0;right:0;bottom:10px;background:0 0}.layui-m-layer-footer .layui-m-layercont{padding:20px;border-radius:5px 5px 0 0;background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn{display:block;height:auto;background:0 0;border-top:none}.layui-m-layer-footer .layui-m-layerbtn span{background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn span[no]{color:#FD482C;border-top:1px solid #c2c2c2;border-radius:0 0 5px 5px}.layui-m-layer-footer .layui-m-layerbtn span[yes]{margin-top:10px;border-radius:5px}body .layui-m-layer .layui-m-layer-msg{width:auto;max-width:90%;margin:0 auto;bottom:-150px;background-color:rgba(0,0,0,.7);color:#fff}.layui-m-layer-msg .layui-m-layercont{padding:10px 20px} \ No newline at end of file diff --git a/static/layer/theme/default/icon-ext.png b/static/layer/theme/default/icon-ext.png new file mode 100644 index 0000000..bbbb669 Binary files /dev/null and b/static/layer/theme/default/icon-ext.png differ diff --git a/static/layer/theme/default/icon.png b/static/layer/theme/default/icon.png new file mode 100644 index 0000000..3e17da8 Binary files /dev/null and b/static/layer/theme/default/icon.png differ diff --git a/static/layer/theme/default/layer.css b/static/layer/theme/default/layer.css new file mode 100644 index 0000000..db51f31 --- /dev/null +++ b/static/layer/theme/default/layer.css @@ -0,0 +1 @@ +.layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:ellipsis;white-space:nowrap}html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch;top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;border-radius:2px;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #B2B2B2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) center center no-repeat #eee}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layer-anim{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-00{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:50px;line-height:50px;border-bottom:1px solid #F0F0F0;font-size:14px;color:#333;overflow:hidden;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:17px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2E2D3C;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2D93CA}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;width:30px;height:30px;margin-left:0;background-position:-149px -31px;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{background-position:-180px -31px}.layui-layer-btn{text-align:right;padding:0 15px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:5px 5px 0;padding:0 15px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#1E9FFF;background-color:#1E9FFF;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:300px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8D8D8D;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #D3D4D3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:8px 15px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:5px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476A7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #E9E7E7}.layui-layer-lan .layui-layer-btn a{background:#fff;border-color:#E9E7E7;color:#333}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#C9C5C5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95;border-color:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92B8B1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:260px;height:36px;margin:0 auto;line-height:30px;padding-left:10px;border:1px solid #e6e6e6;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px;padding:6px 10px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:300px;padding:0 20px;text-align:center;overflow:hidden;cursor:pointer}.layui-layer-tab .layui-layer-title span.layui-this{height:51px;border-left:1px solid #eee;border-right:1px solid #eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.layui-this{display:block}.layui-layer-photos{background:0 0;box-shadow:none}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgnext,.layui-layer-imgprev{position:fixed;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:30px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:30px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:fixed;left:0;right:0;bottom:0;width:100%;height:40px;line-height:40px;background-color:#000\9;filter:Alpha(opacity=60);background-color:rgba(2,0,0,.35);color:#fff;overflow:hidden;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;overflow:hidden;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}} \ No newline at end of file diff --git a/static/layer/theme/default/loading-0.gif b/static/layer/theme/default/loading-0.gif new file mode 100644 index 0000000..6f3c953 Binary files /dev/null and b/static/layer/theme/default/loading-0.gif differ diff --git a/static/layer/theme/default/loading-1.gif b/static/layer/theme/default/loading-1.gif new file mode 100644 index 0000000..db3a483 Binary files /dev/null and b/static/layer/theme/default/loading-1.gif differ diff --git a/static/layer/theme/default/loading-2.gif b/static/layer/theme/default/loading-2.gif new file mode 100644 index 0000000..5bb90fd Binary files /dev/null and b/static/layer/theme/default/loading-2.gif differ diff --git a/static/mobile/img/01.jpeg b/static/mobile/img/01.jpeg new file mode 100644 index 0000000..a93fd07 Binary files /dev/null and b/static/mobile/img/01.jpeg differ diff --git a/static/mobile/img/03.gif b/static/mobile/img/03.gif new file mode 100644 index 0000000..be87ff0 Binary files /dev/null and b/static/mobile/img/03.gif differ diff --git a/static/mobile/img/04.gif b/static/mobile/img/04.gif new file mode 100644 index 0000000..f9b5310 Binary files /dev/null and b/static/mobile/img/04.gif differ diff --git a/static/mobile/img/bg.jpg b/static/mobile/img/bg.jpg new file mode 100644 index 0000000..2bb3461 Binary files /dev/null and b/static/mobile/img/bg.jpg differ diff --git a/static/mobile/js/inc.js b/static/mobile/js/inc.js new file mode 100644 index 0000000..ecfca2f --- /dev/null +++ b/static/mobile/js/inc.js @@ -0,0 +1,226 @@ +document.writeln(''); + +function getQueryString(queryStringName) { + var returnValue = ""; + var URLString = new String(document.location); + var serachLocation = -1; + var queryStringLength = queryStringName.length; + do { + serachLocation = URLString.indexOf(queryStringName + "\="); + if (serachLocation != -1) { + if ((URLString.charAt(serachLocation - 1) == '?') || (URLString.charAt(serachLocation - 1) == '&')) { + URLString = URLString.substr(serachLocation); + break + } + URLString = URLString.substr(serachLocation + queryStringLength + 1) + } + } while (serachLocation != -1) + if (serachLocation != -1) { + var seperatorLocation = URLString.indexOf("&"); + if (seperatorLocation == -1) { + returnValue = URLString.substr(queryStringLength + 1) + } else { + returnValue = URLString.substring(queryStringLength + 1, seperatorLocation) + } + } + returnValue = returnValue.replace(/#/g, ''); + return returnValue +} + +function getCookie(cName) { + var search = cName + "="; + var returnvalue = ""; + if (document.cookie.length > 0) { + offset = document.cookie.indexOf(search); + if (offset != -1) { + offset += search.length; + end = document.cookie.indexOf(";", offset); + if (end == -1) { + end = document.cookie.length; + } + returnvalue = unescape(document.cookie.substring(offset, end)); + } + } + return returnvalue; +} + +function setCookie(cName, value, cookie_time, domain) { + var then = new Date(); + then.setTime(then.getTime() + cookie_time * 1000); + document.cookie = cName + '=' + value + ';expires=' + then.toGMTString() + ';path=/' + ((domain) ? ';domain=' + domain : ''); +} + +var agent_id = getQueryString("agent_id"); +var sid = getQueryString("sid"); +var site_id = sid; +var adid = getQueryString("aid"); +var referer = getQueryString("referer"); +var adtype = getQueryString("type"); +var rand = getQueryString("rand"); +var game_id = getQueryString("game_id"); +if (game_id <= 0) { + game_id = 25; +} +var tw_game_id = game_id; +var cplaceid = getQueryString("cplaceid"); +var turn = getQueryString("turn"); +var from_url = getQueryString("from_url"); +var dl = getQueryString("dl"); +var at_dl_time = getQueryString("at_dl_time"); +var app_type = getQueryString('app_type'); +var pushid = getQueryString("pushid"); + +var ref = getQueryString("ref"); +if (ref == "") { + try { + ref = escape(document.referrer) + } catch (e) { + ref = getCookie("tanwan_ref") + } +} +setCookie('tanwan_ref', ref, 86400); + +if (sid < 100000) { + sid = 100000; +} +var byname = ''; + +function loadScript(url, callback) { + var script = document.createElement("script"); + script.type = "text/JavaScript"; + if (script.readyState) { + script.onreadystatechange = function() { + if (script.readyState == "loaded" || script.readyState == "complete") { + script.onreadystatechange = null; + callback() + } + } + } else { + script.onload = function() { + callback() + } + } + script.src = url; + document.getElementsByTagName("head")[0].appendChild(script) +} + +loadScript('/data/jsGameData.php?gid=' + game_id, function() {}); + +function jump(url) { + var delayTime = navigator.userAgent.toLowerCase().match(/chrome/) ? 5000 : 5000; + if (arguments[1] > 0) delayTime = arguments[1]; + //setTimeout(redirect(url), delayTime); + setTimeout(function() { + window.location.href = url; + }, delayTime); +} + +function redirect(url) { + if (url != 'noredirect') { + window.location.href = url; + } +} + +function gourl() { + //if (agent_id == 100267) { + var tjurl = 'http://sycnzz.17tanwan.com/index.html?ref=' + ref + '&referer=' + escape(referer) + '&uid=' + agent_id + '&gid=' + game_id + '&aid=' + adid + '&sid=' + sid + '&rand=' + rand + '&type=' + adtype + '&step=5&cplaceid=' + cplaceid + '&t=' + Math.random() + "&pushid=" + pushid; + var img = new Image(1, 1); + img.src = tjurl; + //} + var apk_url = document.getElementById("apk_url").href; + document.location = apk_url; +} + +function getDownUrlByAppType() { + if (app_type === 'mobile_config') { + return "http://download.361757.com/mobile_config/" + game_id + '_' + agent_id + '_' + site_id + '.mobileconfig'; + } + if (app_type === 'ios_qy') { + if (parseInt(game_id) === 1108) game_id = 'xjzj'; + return "itms-services://?action=download-manifest&url=https://download.tanwan.com/ios/" + game_id + '/manifest.plist'; + } + + return false; +} + +function isIosByAppType() { + if (app_type === 'mobile_config' || app_type === 'ios_qy') { + return true; + } + + return false; +} + +//var url=apk_url; +var downlod = gourl; +var ua = navigator.userAgent; +var ipad = ua.match(/(iPad).*OS\s([\d_]+)/); +var isIphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/); +var isAndroid = ua.match(/(Android)\s+([\d.]+)/); +var isMobile = isIphone || isAndroid; +var isIos = ipad || isIphone; +window.onload = function() { + if (!byname) { + byname = 'jssm'; + } + console.log(sid); + var isios = 0; + if (game_id == 9) { + var apk_url = "http://download.361757.com/andorid/tw_" + byname + "_" + sid + ".apk"; + } + if (byname > 0) { + var apk_url = 'https://itunes.apple.com/cn/app/id' + byname + '?mt=8'; + var isios = 1; + } else if (sid > 2408891) { + var apk_url = "http://download2.tanwan.com/" + byname + "/" + byname + "_" + sid + ".apk"; + } else if (sid >= 1588500) { + var apk_url = "http://download2.aaymx.com/" + byname + "/" + byname + "_" + sid + ".apk"; + } else { + var apk_url = "http://download.361757.com/" + byname + "/" + byname + "_" + sid + ".apk"; + } + + var urlByAppType = getDownUrlByAppType(); + if (typeof urlByAppType === 'string' && urlByAppType.length > 0) { + apk_url = urlByAppType; + } + + if (isIosByAppType() === true) { + isios = 1; + } + + if (isios == 1) { + var iostjurl = 'https://msdk.tanwan.com/click.php?ref=' + referer + '&agent_id=' + agent_id + '&site_id=' + sid + '&appid=' + game_id + '&adid=' + adid + '&turn=1&adtype=' + adtype + '&step=1&cplaceid=' + cplaceid; + var img = new Image(1, 1); + img.src = iostjurl; + } else if (cplaceid != '') { + var iostjurl = 'https://msdk.tanwan.com/android.php?ref=' + referer + '&agent_id=' + agent_id + '&site_id=' + sid + '&appid=' + game_id + '&adid=' + adid + '&turn=1&adtype=' + adtype + '&step=3&cplaceid=' + cplaceid; + var img = new Image(1, 1); + img.src = iostjurl; + } + + if (document.getElementById("apk_url")) { + document.getElementById("apk_url").href = apk_url; + } else { + var o = document.body; + var a = document.createElement("a"); + a.id = 'apk_url'; + a.href = apk_url; + a.innerHTML = ''; + o.appendChild(a); + } + + var tjurl = 'http://sycnzz.17tanwan.com/index.html?ref=' + ref + '&referer=' + escape(referer) + '&uid=' + agent_id + '&gid=' + game_id + '&aid=' + adid + '&sid=' + sid + '&rand=' + rand + '&type=' + adtype + '&step=4&cplaceid=' + cplaceid + '&t=' + Math.random(); + var img = new Image(1, 1); + img.src = tjurl; + + if (dl == '1') { + if (at_dl_time > 0) { + jump(apk_url, at_dl_time); + } else { + jump(apk_url); + } + } +} + +document.writeln(''); +document.writeln(''); \ No newline at end of file