// ==UserScript==
// @name TinyGrail Helper Next
// @description 为小圣杯增加一些小功能, 讨论/反馈:https://bgm.tv/group/topic/353368
// @namespace https://gitee.com/Yinr/TinyGrail-Helper-Next
// @include http*://bgm.tv/*
// @include http*://bangumi.tv/*
// @include http*://chii.in/*
// @version 3.1.14
// @author Liaune, Cedar, no1xsyzy(InQβ), Yinr
// @homepage https://github.com/Yinr/TinyGrail-Helper-Next
// @license MIT
// @grant GM_addStyle
// ==/UserScript==
(function () {
'use strict';
var css_248z = "@charset \"UTF-8\";\nul.timelineTabs li a {\n margin: 2px 0 0 0;\n padding: 5px 10px 5px 10px; }\n\nimg.cover {\n background-color: transparent; }\n\n.assets .my_temple.item .card {\n box-shadow: 3px 3px 5px #FFEB3B;\n border: 1px solid #FFC107; }\n\n.assets .my_temple.item .name a {\n font-weight: bold;\n color: #0084b4; }\n\n.assets_box .item {\n margin: 5px 5px 5px 0;\n width: 90px; }\n .assets_box .item .card {\n width: 90px;\n height: 120px; }\n\n#lastTemples .assets .item {\n margin: 5px 5px 5px 0;\n width: 107px; }\n\n.item .card {\n width: 105px;\n height: 140px; }\n\n#grailBox .my_auction, #TB_window .my_auction {\n color: #ffa7cc;\n margin-right: 5px; }\n\n#grailBox .user_auction, #TB_window .user_auction {\n color: #a7e3ff;\n margin-right: 5px; }\n\n#grailBox .trade_box button {\n min-width: 50px;\n padding: 0 9px; }\n\n#grailBox .hide_grail_block_title:after {\n font-size: 40%;\n content: ' (点击显示)'; }\n\n#grailBox .hide_grail_block {\n display: none !important; }\n\n.link.swapped .swapPos {\n text-decoration: underline; }\n\n.link .swapPos {\n margin-left: 0.5em;\n cursor: pointer; }\n\n#grail li.title.hide_grail_title h2:after {\n font-size: 40%;\n content: '(点击显示)'; }\n\n#grail .temple_list .item {\n margin: 5px 5px 5px 0;\n width: 107px; }\n\n.hide_grail {\n display: none !important; }\n\n#TB_overlay {\n z-index: 102; }\n\n#TB_window[data-name] {\n z-index: 102;\n padding: 7px;\n box-shadow: 0px 0px 4px 1px #56bce0; }\n\n#TB_window.temple .container {\n text-align: center; }\n #TB_window.temple .container .line {\n text-align: left; }\n\n#TB_window .action .text_button {\n margin: 0 8px 0 0;\n padding: 0;\n width: fit-content;\n height: fit-content;\n min-width: fit-content; }\n\n#TB_window .setting-tab-titlebar {\n display: flex;\n margin-top: 8px;\n border-bottom: solid 2px;\n padding: 0 8px; }\n #TB_window .setting-tab-titlebar .setting-tab-title {\n cursor: pointer;\n padding: 2px 8px;\n opacity: 0.8;\n border: solid 1px;\n border-bottom: none;\n border-radius: 5px 5px 0 0; }\n #TB_window .setting-tab-titlebar .setting-tab-title.open {\n font-weight: bold;\n opacity: 1;\n border-width: 2px; }\n\n#TB_window .setting-tab table {\n width: 98%;\n text-align: center;\n border-spacing: 0; }\n #TB_window .setting-tab table tr {\n border-top: dotted 1px; }\n #TB_window .setting-tab table tr td {\n text-align: left;\n vertical-align: middle;\n padding: 5px; }\n #TB_window .setting-tab table tr td:first-child {\n width: 60%; }\n #TB_window .setting-tab table input[type=number] {\n width: 7em; }\n #TB_window .setting-tab table input[type=number].chara-id {\n width: 5em; }\n #TB_window .setting-tab table .setting-row-btn td {\n vertical-align: baseline; }\n #TB_window .setting-tab table .txtBtn {\n font-size: smaller;\n text-decoration: underline;\n cursor: pointer; }\n\nhtml[data-theme='dark'] #grailBox .title {\n background-color: transparent; }\n\nhtml[data-theme='dark'] .assets .my_temple.item .card {\n box-shadow: 0px 0px 15px #FFEB3B;\n border: 1px solid #FFC107; }\n";
GM_addStyle(css_248z);
const configGenerator = (name, defaultValue, config = {
postGet: (value) => value,
preSet: (value) => value
}) => {
const storageName = `TinyGrail_${name}`;
return {
name,
storageName,
getRaw () {
return localStorage.getItem(storageName)
},
get () {
let value = null;
try {
value = JSON.parse(this.getRaw());
if (config.postGet) {
value = config.postGet(value);
}
} catch (err) {
console.error(`Fail to get config of ${storageName}`, { valueString: this.getRaw(), value, err });
}
return value || defaultValue
},
setRaw (valueString, raiseError = false) {
try {
localStorage.setItem(storageName, valueString);
} catch (err) {
console.error(`Fail to set config of ${storageName}`, { valueString, err });
if (raiseError) throw err
}
},
set (value) {
if (config.preSet) {
try {
value = config.preSet(value);
} catch (err) {
console.warn(`Fail to preparse config of ${storageName}`, { value, err });
}
}
this.setRaw(JSON.stringify(value));
return value
}
}
};
const formatDate = (date) => {
date = new Date(date);
return date.format('yyyy-MM-dd hh:mm:ss')
};
const formatTime = (timeStr) => {
const now = new Date();
const time = new Date(timeStr) - (new Date().getTimezoneOffset() + 8 * 60) * 60 * 1000;
let times = (time - now) / 1000;
let day = 0;
let hour = 0;
let minute = 0;
let second = 0;
if (times > 0) {
day = Math.floor(times / (60 * 60 * 24));
hour = Math.floor(times / (60 * 60)) - Math.floor(times / (60 * 60 * 24)) * 24;
minute = Math.floor(times / 60) - Math.floor(times / (60 * 60)) * 60;
if (day > 0) return `剩余${day}天${hour}小时`
else if (hour > 0) return `剩余${hour}小时${minute}分钟`
else return `即将结束 剩余${minute}分钟`
} else {
times = Math.abs(times);
day = Math.floor(times / (60 * 60 * 24));
hour = Math.floor(times / (60 * 60));
minute = Math.floor(times / 60);
second = Math.floor(times);
if (minute < 1) {
return `${second}s ago`
} else if (minute < 60) {
return `${minute}m ago`
} else if (hour < 24) {
return `${hour}h ago`
}
if (day > 1000) { return 'never' }
return `[${new Date(timeStr).format('yyyy-MM-dd')}] ${day}d ago`
}
};
const formatNumber = (number, decimals, dec_point, thousands_sep) => {
number = (number + '').replace(/[^0-9+-Ee.]/g, '');
const n = !isFinite(+number) ? 0 : +number;
const prec = !isFinite(+decimals) ? 2 : Math.abs(decimals);
const sep = (typeof thousands_sep === 'undefined') ? ',' : thousands_sep;
const dec = (typeof dec_point === 'undefined') ? '.' : dec_point;
let s = '';
s = (prec ? n.toFixed(prec) : '' + Math.round(n)).split('.');
const re = /(-?\d+)(\d{3})/;
while (re.test(s[0])) {
s[0] = s[0].replace(re, '$1' + sep + '$2');
}
if ((s[1] || '').length < prec) {
s[1] = s[1] || '';
s[1] += new Array(prec - s[1].length + 1).join('0');
}
return s.join(dec)
};
const formatAskPrice = (price) => {
if (Number.isInteger(parseFloat(price))) return price
else return (price - Math.floor(price)) > 0.5 ? Math.ceil(price) : Math.floor(price) + 0.5
};
const parseIntArray = (arr) => arr.map(item => parseInt(item));
const removeEmpty = (array) => {
const arr = [];
for (let i = 0; i < array.length; i++) {
if (array[i]) arr.push(array[i]);
}
return arr
};
const processor = (value) => ({
...value,
charas: parseIntArray(value.charas),
auctions: parseIntArray(value.auctions)
});
const FollowList = configGenerator('followList', {
user: '',
charas: [],
auctions: []
}, {
postGet: processor,
preSet: processor
});
const getMe = () => {
const followList = FollowList.get();
let me = followList.user;
if (!me) {
if (location.pathname.startsWith('/rakuen/topic/crt') || location.pathname.startsWith('/character')) {
me = $('#new_comment .reply_author a')[0].href.split('/').pop();
} else
if (location.pathname.startsWith('/rakuen/home')) {
me = $('#grailBox2').data('name');
} else
if (location.pathname.startsWith('/rakuen/topiclist')) ; else
if (location.pathname.startsWith('/user')) {
me = $('.idBadgerNeue a.avatar').attr('href').split('/').pop();
}
followList.user = me;
FollowList.set(followList);
}
return me
};
const normalizeAvatar = (avatar) => {
if (!avatar) return '//lain.bgm.tv/pic/user/l/icon.jpg'
if (avatar.startsWith('https://tinygrail.oss-cn-hangzhou.aliyuncs.com/')) { return avatar + '!w120' }
const a = avatar.replace('http://', '//');
return a
};
const launchObserver = ({
parentNode,
selector,
failCallback = null,
successCallback = null,
stopWhenSuccess = true,
config = { childList: true, subtree: true }
}) => {
if (!parentNode) return
const observeFunc = mutationList => {
if (!document.querySelector(selector)) {
if (failCallback) failCallback();
return
}
if (stopWhenSuccess) observer.disconnect();
if (successCallback) successCallback(mutationList);
};
const observer = new MutationObserver(observeFunc);
observer.observe(parentNode, config);
};
const api = 'https://tinygrail.com/api/';
const getData = (url) => {
if (!url.startsWith('http') && !url.startsWith('/')) url = api + url;
return new Promise((resolve, reject) => {
$.ajax({
url: url,
type: 'GET',
xhrFields: { withCredentials: true },
success: res => { resolve(res); },
error: err => { reject(err); }
});
})
};
const postData = (url, data) => {
const d = JSON.stringify(data);
if (!url.startsWith('http') && !url.startsWith('/')) url = api + url;
return new Promise((resolve, reject) => {
$.ajax({
url: url,
type: 'POST',
contentType: 'application/json',
data: d,
xhrFields: { withCredentials: true },
success: res => { resolve(res); },
error: err => { reject(err); }
});
})
};
const getDataOrNull = (url) => {
return new Promise((resolve) => {
getData(url).then(resolve).catch(() => resolve(null));
})
};
const ItemsSetting = configGenerator('ItemsSetting', {});
const autoFillTemple = () => {
if (ItemsSetting.get().autoFill === false) return
const autoFillCosts = async (autoFillCostList) => {
for (let i = 0; i < autoFillCostList.length; i++) {
const id = autoFillCostList[i].id;
const supplyId = autoFillCostList[i].supplyId;
const cost = autoFillCostList[i].cost;
await postData(`magic/stardust/${supplyId}/${id}/${cost}/true`, null).then((d) => {
if (d.State === 0) console.log(`自动补塔 #${id} ${d.Value}`);
else console.log(`自动补塔 #${id} ${d.Message}`);
});
}
};
const checkLostTemple = (currentPage) => {
const autoFillCostList = [];
getData(`chara/user/temple/0/${currentPage}/500`).then((d) => {
if (d.State === 0) {
for (let i = 0; i < d.Value.Items.length; i++) {
const info = {};
const lv = d.Value.Items[i].CharacterLevel;
const itemsSetting = ItemsSetting.get();
info.id = d.Value.Items[i].CharacterId;
info.supplyId = itemsSetting.stardust ? parseInt(itemsSetting.stardust[lv]) : null;
info.cost = d.Value.Items[i].Sacrifices - d.Value.Items[i].Assets;
if (info.cost >= 100 && info.cost <= 250 && info.id !== info.supplyId && info.supplyId) {
autoFillCostList.push(info);
}
}
autoFillCosts(autoFillCostList);
if (currentPage < d.Value.TotalPages) {
currentPage++;
checkLostTemple(currentPage);
}
}
});
};
checkLostTemple(1);
};
const AutoTempleList = configGenerator('autoTempleList', [], {
postGet: value => value.map(item => ({
...item,
charaId: parseInt(item.charaId),
target: parseInt(item.target),
bidPrice: parseFloat(item.bidPrice)
}))
});
const removeBuildTemple = (charaId) => {
const autoTempleList = AutoTempleList.get();
for (let i = 0; i < autoTempleList.length; i++) {
if (parseInt(autoTempleList[i].charaId) === parseInt(charaId)) {
autoTempleList.splice(i, 1);
break
}
}
$(`#grailBox.chara${charaId} #autobuildButton`).text('[自动建塔]');
AutoTempleList.set(autoTempleList);
};
const autoBuildTemple = async (charas = undefined) => {
const buildTemple = (chara, amount) => {
postData(`chara/sacrifice/${chara.charaId}/${amount}/false`, null).then((d) => {
if (d.State === 0) {
console.log(`#${chara.charaId} ${chara.name} 献祭${amount} 获得金额 ₵${d.Value.Balance.toFixed(2)}`);
$(`#grailBox.chara${chara.charaId} #autobuildButton`).text('[自动建塔]');
removeBuildTemple(chara.charaId);
} else {
console.log(`${d.Message}`);
}
});
};
const postBid = (chara, price, amount, Amount, Sacrifices) => {
postData(`chara/bid/${chara.charaId}/${price}/${amount}`, null).then((d) => {
if (d.Message) console.log(`#${chara.charaId} ${chara.name} ${d.Message}`);
else {
console.log(`买入成交 #${chara.charaId} ${chara.name} ${price}*${amount}`);
if ((Amount + Sacrifices + amount) >= chara.target) {
buildTemple(chara, chara.target - Sacrifices);
}
}
});
};
const getAskin = (Asks, low_price) => {
let [price, amount] = [0, 0];
for (let i = 0; i < Asks.length; i++) {
if (Asks[i].Price > 0 && Asks[i].Price <= low_price) {
amount += Asks[i].Amount;
price = Asks[i].Price;
}
}
return [price, amount]
};
const remove_myAsks = (Asks, myAsks) => {
for (let i = 0; i < Asks.length; i++) {
for (let j = 0; j < myAsks.length; j++) {
if (formatAskPrice(Asks[i].Price) === formatAskPrice(myAsks[j].Price)) Asks[i].Amount -= myAsks[j].Amount;
}
if (Asks[i].Amount === 0) delete Asks[i];
}
Asks = removeEmpty(Asks);
return Asks
};
if (charas === undefined) {
charas = AutoTempleList.get();
}
for (let i = 0; i < charas.length; i++) {
const chara = charas[i];
console.log(`自动建塔 check #${chara.charaId} ${chara.name}`);
await getData(`chara/user/${chara.charaId}`).then((d) => {
const myAsks = d.Value.Asks;
const Amount = d.Value.Amount;
const Sacrifices = d.Value.Sacrifices;
if (Sacrifices >= chara.target) {
removeBuildTemple(chara.charaId);
} else if ((Amount + Sacrifices) >= chara.target) {
buildTemple(chara, chara.target - Sacrifices);
} else {
getData(`chara/depth/${chara.charaId}`).then((d) => {
let Asks = d.Value.Asks;
Asks = remove_myAsks(Asks, myAsks);
const AskPrice = Asks[0] ? Asks[0].Price : 0;
if (AskPrice && AskPrice <= chara.bidPrice) {
const [price, amount] = getAskin(Asks, chara.bidPrice);
postBid(chara, price, Math.min(amount, chara.target - Amount - Sacrifices), Amount, Sacrifices);
}
});
}
});
}
};
const closeDialog = (name = 'main') => {
if (name === 'main') {
$('#TB_overlay').remove();
$('#TB_window').remove();
} else {
$(`#TB_overlay[data-name=${name}]`).remove();
$(`#TB_window[data-name=${name}]`).remove();
}
};
const showDialog = (innerHTML, name = 'main', maxWidth = '', minWidth = '') => {
const dialog = `
<div id="TB_overlay" data-name="${name}" class="TB_overlayBG TB_overlayActive"></div>
<div id="TB_window" data-name="${name}" class="dialog" style="display:block;max-width:${maxWidth || '640px'};min-width:${minWidth || '400px'};">
${innerHTML}
<a id="TB_closeWindowButton" data-name="${name}" title="Close">X关闭</a>
</div>
`;
$('body').append(dialog);
$(`#TB_closeWindowButton[data-name=${name}]`).on('click', () => closeDialog(name));
$(`#TB_overlay[data-name=${name}]`).on('click', () => closeDialog(name));
};
const FillICOList = configGenerator('fillicoList', [], {
postGet: value => value.map(item => ({
...item,
Id: parseInt(item.Id),
charaId: parseInt(item.charaId),
target: parseInt(item.target),
end: item.end
}))
});
const calculateICO = (ico) => {
let level = 0;
let price = 0;
let amount = 0;
let next = 100000;
let nextUser = 15;
const heads = ico.Users;
let headLevel = Math.floor((heads - 10) / 5);
if (headLevel < 0) headLevel = 0;
while (ico.Total >= next && level < headLevel) {
level += 1;
next += Math.pow(level + 1, 2) * 100000;
}
if (level) {
amount = 10000 + (level - 1) * 7500;
price = ico.Total / amount;
}
nextUser = (level + 1) * 5 + 10;
return { Level: level, Next: next, Price: price, Amount: amount, Users: nextUser - ico.Users }
};
const ICOStandard = (lv) => {
const users = lv * 5 + 10;
let total = 100000;
let level = 1;
while (lv > level) {
level++;
total += Math.pow(level, 2) * 100000;
}
return { Users: users, Total: total }
};
const fullfillICO = async (icoList) => {
const dialog = `<div class="info_box">
<div class="title">自动补款检测中</div>
<div class="result" style="max-height:500px;overflow:auto;"></div>
</div>`;
if (!$('#TB_window').length) showDialog(dialog);
for (let i = 0; i < icoList.length; i++) {
const Id = icoList[i].Id;
const charaId = icoList[i].charaId;
const targetlv = icoList[i].target;
const target = ICOStandard(targetlv);
await Promise.all([getData(`chara/${charaId}`), getDataOrNull(`chara/initial/${Id}`)]).then(([d, initial]) => {
if (d.State === 0) {
const predicted = calculateICO(d.Value);
if (!(initial && initial.State === 0 && initial.Value && initial.Value.Amount > 0)) {
predicted.Users -= 1;
}
if (predicted.Level >= targetlv) {
console.log(charaId + '总额:' + d.Value.Total + ',已达标,无需补款');
$('.info_box .result').prepend(`<div class="row">#${charaId} 目标: lv${targetlv} 总额: ${d.Value.Total} ,已达标,无需补款</div>`);
} else if (predicted.Users <= 0) {
let offer = predicted.Next - d.Value.Total;
if (d.Value.Users >= target.Users) {
offer = target.Total - d.Value.Total;
}
offer = Math.max(offer, 5000);
postData(`chara/join/${Id}/${offer}`, null).then((d) => {
if (d.State === 0) {
$('.info_box .result').prepend(`<div class="row">#${charaId} 目标: lv${targetlv} 补款: ${offer}</div>`);
console.log(charaId + '补款:' + offer);
} else {
$('.info_box .result').prepend(`<div class="row">#${charaId} ${d.Message}</div>`);
console.log(d.Message);
}
});
} else {
$('.info_box .result').prepend(`<div class="row">#${charaId} 目标: lv${targetlv} 人数: ${d.Value.Users}, 人数不足,未补款</div>`);
console.log(charaId + '人数:' + d.Value.Users + ',人数不足,未补款');
}
}
});
}
};
const autoFillICO = () => {
const fillICOList = FillICOList.get();
const icoList = [];
for (let i = 0; i < fillICOList.length; i++) {
const endTime = new Date(new Date(fillICOList[i].end) - (new Date().getTimezoneOffset() + 8 * 60) * 60 * 1000);
const leftTime = (new Date(endTime).getTime() - new Date().getTime()) / 1000;
if (leftTime < 60) {
console.log(`ico check#${fillICOList[i].charaId} -「${fillICOList[i].name}」 目标等级:lv${fillICOList[i].target} ${leftTime}s left`);
icoList.push(fillICOList[i]);
delete fillICOList[i];
}
}
FillICOList.set(removeEmpty(fillICOList));
if (icoList.length) fullfillICO(icoList);
};
const openICODialog = (chara) => {
const fillICOList = FillICOList.get();
let target = 1;
const item = fillICOList.find(item => parseInt(item.Id) === chara.Id);
if (item) {
target = item.target;
}
const dialog = `<div class="title">自动补款 - #${chara.CharacterId} 「${chara.Name}」 lv${target}</div>
<div class="desc">目标等级:<input type="number" class="target" min="1" max="10" step="1" value="${target}" style="width:50px"></div>
<div class="label"><div class="trade ico">
<button id="startfillICOButton" class="active">自动补款</button>
<button id="fillICOButton" style="background-color: #5fda15;">立即补款</button>
<button id="cancelfillICOButton">取消补款</button></div></div>
<div class="loading" style="display:none"></div>`;
showDialog(dialog);
$('#cancelfillICOButton').on('click', function () {
const fillICOList = FillICOList.get();
const index = fillICOList.findIndex(item => parseInt(item.Id) === chara.Id);
if (index >= 0) {
alert(`取消自动补款${chara.Name}`);
$(`#grailBox.chara${chara.CharacterId} #followICOButton`).text('[自动补款]');
fillICOList.splice(index, 1);
FillICOList.set(fillICOList);
}
closeDialog();
console.log(fillICOList);
});
$('#startfillICOButton').on('click', function () {
const target = parseFloat($('.desc .target').val());
if (target <= 0 || !Number.isInteger(target)) {
alert('请输入正整数!');
return
}
const info = {};
info.Id = parseInt(chara.Id);
info.charaId = parseInt(chara.CharacterId);
info.name = chara.Name;
info.target = target;
info.end = chara.End;
const fillICOList = FillICOList.get();
const index = fillICOList.findIndex(item => parseInt(item.Id) === chara.Id);
if (index >= 0) {
fillICOList[index] = info;
} else fillICOList.push(info);
FillICOList.set(fillICOList);
alert(`启动自动补款#${chara.Id} ${chara.Name}`);
$(`#grailBox.chara${chara.CharacterId} #followICOButton`).text('[自动补款中]');
closeDialog();
console.log(fillICOList);
});
$('#fillICOButton').on('click', function () {
const target = parseFloat($('.desc .target').val());
if (target <= 0 || !Number.isInteger(target)) {
alert('请输入正整数!');
return
}
const info = {};
info.Id = chara.Id;
info.charaId = chara.CharacterId;
info.name = chara.Name;
info.target = target;
info.end = chara.End;
closeDialog();
if (confirm(`立即补款#${chara.Id} ${chara.Name} 至 lv${target}`)) {
fullfillICO([info]);
}
});
};
const setFullFillICO = (chara) => {
let button = '<button id="followICOButton" class="text_button">[自动补款]</button>';
if (FillICOList.get().some(item => parseInt(item.charaId) === chara.CharacterId)) {
button = '<button id="followICOButton" class="text_button">[自动补款中]</button>';
}
$(`#grailBox.chara${chara.CharacterId} .title .text`).after(button);
$(`#grailBox.chara${chara.CharacterId} #followICOButton`).on('click', () => {
openICODialog(chara);
});
};
const autoJoinICO = async (icoList) => {
for (let i = 0; i < icoList.length; i++) {
const charaId = icoList[i].CharacterId;
await getData(`chara/${charaId}`).then((d) => {
if (d.State === 0) {
const offer = 5000;
const Id = d.Value.Id;
if (d.Value.Total < 100000 && d.Value.Users < 15) {
getData(`chara/initial/${Id}`).then((d) => {
if (d.State === 1 && d.Message === '尚未参加ICO。') {
postData(`chara/join/${Id}/${offer}`, null).then((d) => {
if (d.State === 0) {
console.log(`#${charaId} 追加注资成功。`);
$(`#eden_tpc_list li[data-id=${charaId}] .row`).append(`<small class="raise">+${offer}</small>`);
}
});
}
});
}
}
});
}
};
const autoBeginICO = async (icoList) => {
for (let i = 0; i < icoList.length; i++) {
const charaId = icoList[i];
await getData(`chara/${charaId}`).then(async (d) => {
if (d.State === 1 && d.Message === '找不到人物信息。') {
const offer = 10000;
await postData(`chara/init/${charaId}/${offer}`, null).then((d) => {
if (d.State === 0) {
console.log(`#${charaId} ICO 启动成功。`);
$(`#eden_tpc_list li[data-id=${charaId}] .row`).append(`<small class="raise">+${offer}</small>`);
} else {
console.log(d.Message);
}
});
}
});
}
};
const getWeeklyShareBonus = (callback) => {
if (!confirm('已经周六了,赶紧领取股息吧?')) return
getData('event/share/bonus');
};
const getShareBonus = () => {
let asiaTime = new Date().toLocaleString('en-US', { timeZone: 'Asia/Shanghai' });
asiaTime = new Date(asiaTime);
const Day = asiaTime.getDay();
if (Day === 6) {
getData('event/share/bonus/check').then((d) => {
if (d.State === 0) {
getWeeklyShareBonus();
}
});
}
};
const hideBonusButton = () => {
if (!$('#bonusButton').length) return
getData('event/share/bonus/test').then((d) => {
const x = d.Value.Share / 10000;
const allowance = Math.log10(x + 1) * 30 - x;
if (d.State === 0 && allowance < 0) $('#bonusButton').remove();
});
};
const loadUserAuctions = (d) => {
d.Value.forEach((a) => {
$(`.item_list[data-id=${a.CharacterId}] .user_auction`).remove();
$(`.item_list[data-id=${a.CharacterId}] .my_auction`).remove();
if (a.State !== 0) {
const userAuction = `<span class="user_auction auction_tip" title="竞拍人数 / 竞拍数量">${formatNumber(a.State, 0)} / ${formatNumber(a.Type, 0)}</span>`;
$(`.item_list[data-id=${a.CharacterId}] .time`).after(userAuction);
$(`#grailBox.chara${a.CharacterId} #auctionHistoryButton`).before(userAuction);
$('#TB_window.dialog .desc').append(userAuction);
}
if (a.Price !== 0) {
const myAuction = `<span class="my_auction auction_tip" title="出价 / 数量">₵${formatNumber(a.Price, 2)} / ${formatNumber(a.Amount, 0)}</span>`;
$(`.item_list[data-id=${a.CharacterId}] .time`).after(myAuction);
$(`#grailBox.chara${a.CharacterId} #auctionHistoryButton`).before(myAuction);
$('#TB_window.dialog .desc').append(myAuction);
}
});
};
const loadValhalla = async (ids) => {
for (let i = 0; i < ids.length; i++) {
const Id = ids[i];
await getData(`chara/user/${Id}/tinygrail/false`).then((d) => {
$(`.item_list[data-id=${Id}] .valhalla`).remove();
const valhalla = `<small class="even valhalla" title="拍卖底价 / 拍卖数量">₵${formatNumber(d.Value.Price, 2)} / ${d.Value.Amount}</small>`;
$(`.fill_auction[data-id=${Id}]`).before(valhalla);
if (d.Value.Amount > d.Value.AuctionTotal) {
const $fillAuc = $(`.fill_auction[data-id=${Id}]`);
$fillAuc.show();
$fillAuc.attr('title', $fillAuc.attr('title').replace(/(\(₵\d+\))?$/, `(₵${formatNumber(d.Value.Price * (d.Value.Amount - d.Value.AuctionTotal))})`));
}
});
}
};
const bidAuction = (chara) => {
$('#TB_window .loading').show();
$('#TB_window .label').hide();
$('#TB_window .desc').hide();
$('#TB_window .trade').hide();
const price = $('.trade.auction .price').val();
const amount = $('.trade.auction .amount').val();
postData(`chara/auction/${chara.Id}/${price}/${amount}`, null).then((d) => {
$('#TB_window .loading').hide();
$('#TB_window .label').show();
$('#TB_window .desc').show();
$('#TB_window .trade').show();
if (d.State === 0) {
const message = d.Value;
$('#TB_window .trade').hide();
$('#TB_window .label').hide();
$('#TB_window .desc').text(message);
} else {
alert(d.Message);
}
});
};
const cancelAuction = (chara) => {
let message = '确定取消竞拍?';
const Day = new Date().getDay();
if (Day === 6) message = '周六取消竞拍将收取20%税,确定取消竞拍?';
if (!confirm(message)) return
$('#TB_window .loading').show();
$('#TB_window .label').hide();
$('#TB_window .desc').hide();
$('#TB_window .trade').hide();
getData('chara/user/auction/1/100').then((d) => {
let id = 0;
for (let i = 0; i < d.Value.Items.length; i++) {
if (chara.Id === d.Value.Items[i].CharacterId) {
id = d.Value.Items[i].Id;
break
}
}
if (id) {
postData(`chara/auction/cancel/${id}`, null).then((d) => {
$('#TB_window .loading').hide();
$('#TB_window .label').show();
$('#TB_window .desc').show();
$('#TB_window .trade').show();
if (d.State === 0) {
$('#TB_window .trade').hide();
$('#TB_window .label').hide();
$('#TB_window .desc').text('取消竞拍成功');
} else alert(d.Message);
});
} else {
$('#TB_window .loading').hide();
$('#TB_window .desc').text('未找到竞拍角色');
}
});
};
const Settings = configGenerator('settings', {
pre_temple: 'on',
hide_grail: 'off',
hide_link: 'off',
hide_temple: 'off',
hide_board: 'off',
auction_num: 'one',
merge_order: 'off',
get_bonus: 'on',
gallery: 'off'
});
const openAuctionDialog = (chara, auction) => {
let auction_num = chara.State;
if (Settings.get().auction_num === 'one') auction_num = 1;
const charaId = chara.CharacterId || chara.Id;
const price = Math.ceil(chara.Price * 100) / 100;
const total = formatNumber(price * chara.State, 2);
const dialog = `<div class="title" title="拍卖底价 / 竞拍数量 / 流通股份">股权拍卖 - #${chara.Id} 「${chara.Name}」 ₵${formatNumber(chara.Price, 2)} / ${chara.State} / ${chara.Total}</div>
<div class="desc">
<button id="fullfill_auction" class="text_button" title="当竞拍数量未满时补满数量">[补满]</button>
<button id="change_amount" class="text_button" title="按修改后的价格确定数量,保持总价不变">[改量]</button>
<button id="change_price" class="text_button" title="按修改后的数量确定价格,保持总价不变">[改价]</button>
</div><div class="label">
<span class="input">价格</span><span class="input">数量</span><span class="total">合计 -₵${total}</span>
</div><div class="trade auction">
<input class="price" type="number" style="width: 100px" min="${price}" value="${price}">
<input class="amount" type="number" style="width: 100px" min="1" max="${chara.State}" value="${auction_num}">
<button id="bidAuctionButton" class="active">确定</button><button id="cancelAuctionButton" style="display: none">取消竞拍</button></div>
<div class="loading" style="display:none"></div>`;
showDialog(dialog);
$(`#grailBox.chara${charaId} .assets_box .auction_tip`).remove();
loadUserAuctions(auction);
$('#cancelAuctionButton').on('click', function () {
cancelAuction(chara);
});
$('#bidAuctionButton').on('click', function () {
bidAuction(chara);
});
if (!auction.Value.length) {
auction.Value = [{ Price: 0, Amount: 0, Type: 0, State: 0 }];
}
if (auction.Value[0].Price) {
$('.trade.auction .price').val(auction.Value[0].Price);
$('.trade.auction .amount').val(auction.Value[0].Amount);
const total = formatNumber(auction.Value[0].Price * auction.Value[0].Amount, 2);
$('#TB_window .label .total').text(`合计 -₵${total}`);
$('#cancelAuctionButton').show();
}
$('#TB_window .auction input').on('keyup', () => {
const price = $('.trade.auction .price').val();
const amount = $('.trade.auction .amount').val();
const total = formatNumber(price * amount, 2);
$('#TB_window .label .total').text(`合计 -₵${total}`);
});
$('#fullfill_auction').on('click', function () {
const total_auction = chara.State;
const amount = total_auction - auction.Value[0].Type + auction.Value[0].Amount;
const price = Math.ceil(chara.Price * 100) / 100;
$('.trade.auction .price').val(price);
$('.trade.auction .amount').val(amount);
$('#TB_window .label .total').text(`合计 -₵${formatNumber(price * amount, 2)}`);
});
$('#change_amount').on('click', function () {
const price = parseFloat($('.trade.auction .price').val());
const total = auction.Value[0].Price * auction.Value[0].Amount;
const amount = Math.ceil(total / price);
$('.trade.auction .amount').val(amount);
$('#TB_window .label .total').text(`合计 -₵${formatNumber(price * amount, 2)}`);
});
$('#change_price').on('click', function () {
const amount = parseInt($('.trade.auction .amount').val());
const total = auction.Value[0].Price * auction.Value[0].Amount;
const price = Math.ceil(total / amount * 100) / 100;
$('.trade.auction .price').val(price);
$('#TB_window .label .total').text(`合计 -₵${formatNumber(price * amount, 2)}`);
});
};
const openAuctionDialogSimple = (chara) => {
postData('chara/auction/list', [chara.CharacterId || chara.Id]).then((d) => {
openAuctionDialog(chara, d);
});
};
const showTopWeek = () => {
getData('chara/topweek').then((d) => {
let totalExtra = 0; let totalPeople = 0;
for (let i = 0; i < d.Value.length; i++) {
totalExtra += d.Value[i].Extra;
totalPeople += d.Value[i].Type;
}
console.log(totalExtra + '/' + totalPeople + '=' + totalExtra / totalPeople);
$('#topWeek .auction_button').hide();
for (let i = 0; i < d.Value.length; i++) {
const score = d.Value[i].Extra + d.Value[i].Type * totalExtra / totalPeople;
const tag = $('#topWeek .assets .item')[i].querySelector('.tag');
$(tag).attr('title', '综合得分:' + formatNumber(score, 2));
const average = (d.Value[i].Extra + d.Value[i].Price * d.Value[i].Sacrifices) / d.Value[i].Assets;
const buff = $('#topWeek .assets .item')[i].querySelector('.buff');
$(buff).attr('title', '平均拍价:' + formatNumber(average, 2));
const charaId = d.Value[i].CharacterId;
const auction_button = $(`<div class="name auction" data-id="${charaId}">
<span title="竞拍人数 / 竞拍数量 / 拍卖总数">${d.Value[i].Type} / ${d.Value[i].Assets} / ${d.Value[i].Sacrifices}</span></div>`);
$($('#topWeek .assets .item')[i]).append(auction_button);
const chara = { Id: d.Value[i].CharacterId, Name: d.Value[i].CharacterName, Price: d.Value[i].Price, State: d.Value[i].Sacrifices, Total: 0 };
auction_button.css('cursor', 'pointer').on('click', () => {
postData('chara/auction/list', [charaId]).then((d) => {
openAuctionDialog(chara, d);
});
});
}
});
};
let lastEven = false;
const renderBalanceLog = (item, even) => {
const line = even ? 'line_even' : 'line_odd';
let change = '';
if (item.Change > 0) {
change = `<span class="tag raise large">+₵${formatNumber(item.Change, 2)}</span>`;
} else if (item.Change < 0) {
change = `<span class="tag fall large">-₵${formatNumber(Math.abs(item.Change), 2)}</span>`;
}
let amount = '';
if (item.Amount > 0) {
amount = `<span class="tag new large">+${formatNumber(item.Amount, 0)}</span>`;
} else if (item.Amount < 0) {
amount = `<span class="tag even large">${formatNumber(item.Amount, 0)}</span>`;
}
let id = '';
if (item.Type >= 2 && item.Type <= 13) {
id = `data-id="${item.RelatedId}"`;
}
return `<li class="${line} item_list item_log" ${id}>
<div class="inner">₵${formatNumber(item.Balance, 2)}
<small class="grey">${formatTime(item.LogTime)}</small>
<span class="row"><small class="time">${item.Description}</small></span>
</div>
<span class="tags">
${change}
${amount}
</span>
</li>`
};
const renderCharacterDepth = (chara) => {
const depth = `<small class="raise">+${formatNumber(chara.Bids, 0)}</small><small class="fall">-${formatNumber(chara.Asks, 0)}</small><small class="even">${formatNumber(chara.Change, 0)}</small>`;
return depth
};
const renderCharacterTag = (chara, item) => {
let flu = '--';
let tclass = 'even';
if (chara.Fluctuation > 0) {
tclass = 'raise';
flu = `+${formatNumber(chara.Fluctuation * 100, 2)}%`;
} else if (chara.Fluctuation < 0) {
tclass = 'fall';
flu = `${formatNumber(chara.Fluctuation * 100, 2)}%`;
}
const tag = `<div class="tag ${tclass}" title="₵${formatNumber(chara.MarketValue, 0)} / ${formatNumber(chara.Total, 0)}">₵${formatNumber(chara.Current, 2)} ${flu}</div>`;
return tag
};
const renderBadge = (item, withCrown, withNew, withLevel) => {
let badge = '';
if (withLevel) {
badge = `<span class="badge level lv${item.Level}">lv${item.Level}</span>`;
}
if (item.Type === 1 && withNew) {
badge += `<span class="badge new" title="+${formatNumber(item.Rate, 1)}新番加成剩余${item.Bonus}期">×${item.Bonus}</span>`;
}
if (item.State > 0 && withCrown) {
badge += `<span class="badge crown" title="获得${item.State}次萌王">×${item.State}</span>`;
}
return badge
};
const renderCharacter = (item, type, even, showCancel) => {
const line = even ? 'line_even' : 'line_odd';
const amount = `<small title="固定资产">${formatNumber(item.Sacrifices, 0)}</small>`;
const tag = renderCharacterTag(item);
const depth = renderCharacterDepth(item);
let id = item.Id;
if (item.CharacterId && item.Id !== item.CharacterId) {
id = item.CharacterId;
if (type === 'auction') type += '-ico';
}
const time = item.LastOrder;
let avatar = `<a href="/rakuen/topic/crt/${id}?trade=true" class="avatar l" target="right"><span class="avatarNeue avatarReSize32 ll" style="background-image:url('${normalizeAvatar(item.Icon)}')"></span></a>`;
let cancel = '';
if (showCancel) {
cancel = type.startsWith('auction')
? `<small data-id="${id}" class="cancel_auction" title="取消关注竞拍">[取关]</small>`
: `<span><small data-id="${id}" class="cancel_auction">[取消]</small></span>`;
}
let badge = renderBadge(item, true, true, true);
let chara;
if (item.NotExist) {
chara = `<li class="${line} item_list" data-id="${id}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}</a> <small class="grey"></small>
<div class="row"><small class="time"></small>
<span><small data-id="${id}" class="reload_chara" title="刷新角色信息" style="display: none;">[重新加载]</small>
<small data-id="${id}" data-name="${item.Name}" class="begin_ico" title="开启 ICO">[开启 ICO]</small></span>
</div></div></li>`;
} else if (type === 'auction') {
chara = `<li class="${line} item_list" data-id="${id}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}${badge}</a> <small class="grey">(+${item.Rate.toFixed(2)})</small>
<div class="row"><small class="time">${formatTime(time)}</small>
<span><small data-id="${id}" class="fill_auction" title="当竞拍数量未满时补满数量" style="display: none;">[补满]</small>${cancel}</span>
</div></div>${tag}</li>`;
} else if (type === 'ico') {
badge = renderBadge(item, false, false, false);
chara = `<li class="${line} item_list" data-id="${id}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}${badge}</a>
<div class="row"><small class="time">${formatTime(item.End)}</small><span><small>${formatNumber(item.State, 0)} / ${formatNumber(item.Total, 1)}</small></span>
</div></div><div class="tags tag lv1">ICO进行中</div></li>`;
} else if (type === 'temple') {
let costs = '';
if (item.Assets - item.Sacrifices < 0) {
costs = `<small class="fall" title="损耗">${item.Assets - item.Sacrifices}</small>
<span><small data-id="${id}" data-lv="${item.CharacterLevel}" data-cost="${item.Sacrifices - item.Assets}" class="fill_costs">[补充]</small></span>`;
}
avatar = `<a href="/rakuen/topic/crt/${id}?trade=true" class="avatar l" target="right"><span class="avatarNeue avatarReSize32 ll" style="background-image:url('${normalizeAvatar(item.Cover)}')"></span></a>`;
chara = `<li class="${line} item_list" data-id="${id}" data-lv="${item.CharacterLevel}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}<span class="badge lv${item.CharacterLevel}">lv${item.CharacterLevel}</span></a> <small class="grey">(+${item.Rate.toFixed(2)})</small>
<div class="row"><small class="time" title="创建时间">${formatTime(item.Create)}</small><small title="固有资产 / 献祭值">${item.Assets} / ${item.Sacrifices}</small>${costs}</div></div>
<div class="tag lv${item.Level}">${item.Level}级圣殿</div></li>`;
} else if (item.Id !== item.CharacterId) {
const pre = calculateICO(item);
badge = renderBadge(item, false, false, false);
chara = `<li class="${line} item_list" data-id="${id}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}${badge}</a> <small class="grey">(ICO进行中: lv${pre.Level})</small>
<div class="row"><small class="time">${formatTime(item.End)}</small><span><small>${formatNumber(item.Users, 0)}人 / ${formatNumber(item.Total, 1)} / ₵${formatNumber(pre.Price, 2)}</small></span>
${cancel}</div></div><div class="tags tag lv${pre.Level}">ICO进行中</div></li>`;
} else {
chara = `<li class="${line} item_list" data-id="${id}">${avatar}<div class="inner">
<a href="/rakuen/topic/crt/${id}?trade=true" class="title avatar l" target="right">${item.Name}${badge}</a> <small class="grey">(+${item.Rate.toFixed(2)} / ${formatNumber(item.Total, 0)} / ₵${formatNumber(item.MarketValue, 0)})</small>
<div class="row"><small class="time">${formatTime(item.LastOrder)}</small>${amount}<span title="买入 / 卖出 / 成交">${depth}</span>
${cancel}</div></div>${tag}</li>`;
}
return chara
};
const listItemClicked = function () {
const link = $(this).find('a.avatar').attr('href');
if (link) {
if (parent.window.innerWidth < 1200) {
$(parent.document.body).find('#split #listFrameWrapper').animate({ left: '-450px' });
}
window.open(link, 'right');
}
};
const fillCosts = (id, lv, cost) => {
closeDialog();
let itemsSetting = ItemsSetting.get();
const supplyId = itemsSetting.stardust ? itemsSetting.stardust[lv] : '';
const dialog = `<div class="title" title="用一个角色的活股或固定资产,给另一个角色的圣殿消耗进行补充,目标人物的等级要小于或等于发动攻击圣殿的人物等级">星光碎片</div>
<div class="desc" style="display:none"></div>
<table align="center" width="98%" cellspacing="0" cellpadding="5" class="settings">
<tr><td>能源:<input id="supplyId" type="number" style="width:60px" value="${supplyId}"></td>
<td>目标:<input id="toSupplyId" type="number" style="width:60px" value="${id}"></td></tr>
<td>类型:<select id="isTemple" style="width:60px"><option value="false">活股</option><option value="true" selected="selected">塔股</option></select></td>
<td>数量:<input id="amount" type="number" style="width:60px" value="${cost}"></td></tr>
<tr><td><input class="inputBtn" value="充能" id="submit_stardust" type="submit"></td></tr>
</tbody></table>`;
showDialog(dialog);
if (!supplyId) {
$('#TB_window .desc').text('当前等级的能源角色id未设定,补充过一次之后会记住此等级的能源角色id');
$('#TB_window .desc').show();
}
$('#submit_stardust').on('click', () => {
const supplyId = parseInt($('#supplyId').val());
const toSupplyId = parseInt($('#toSupplyId').val());
const isTemple = $('#isTemple').val();
const amount = parseInt($('#amount').val());
if (supplyId) {
itemsSetting = ItemsSetting.get();
if (!itemsSetting.stardust) itemsSetting.stardust = {};
itemsSetting.stardust[lv] = supplyId;
ItemsSetting.set(itemsSetting);
postData(`magic/stardust/${supplyId}/${toSupplyId}/${amount}/${isTemple}`, null).then((d) => {
closeDialog();
if (d.State === 0) alert(d.Value);
else alert(d.Message);
});
} else alert('角色id不能为空');
});
};
const loadCharacterList = (list, page, total, more, type, showCancel) => {
$('#eden_tpc_list ul .load_more').remove();
if (page === 1) $('#eden_tpc_list ul').html('');
for (let i = 0; i < list.length; i++) {
const item = list[i];
if (type === 'balance') {
const log = renderBalanceLog(item, lastEven);
$('#eden_tpc_list ul').append(log);
} else {
const chara = renderCharacter(item, type, lastEven, showCancel);
$('#eden_tpc_list ul').append(chara);
}
lastEven = !lastEven;
}
$('.cancel_auction').off('click');
$('.cancel_auction').on('click', (e) => {
const id = $(e.target).data('id');
const followList = FollowList.get();
if (type === 'chara') followList.charas.splice(followList.charas.indexOf(id), 1);
else if (type === 'auction') followList.auctions.splice(followList.auctions.indexOf(id), 1);
FollowList.set(followList);
$(`#eden_tpc_list li[data-id=${id}]`).remove();
});
$('.fill_costs').off('click');
$('.fill_costs').on('click', (e) => {
const id = $(e.target).data('id');
const lv = $(e.target).data('lv');
const cost = $(e.target).data('cost');
fillCosts(id, lv, cost);
$(e.target).remove();
});
$('.fill_auction').off('click');
$('.fill_auction').on('click', (e) => {
e.stopPropagation();
const id = $(e.target).data('id');
const isAucDay = (new Date(new Date().toLocaleString('en-US', { timeZone: 'Asia/Shanghai' }))).getDay() === 6;
getData(`chara/user/${id}/tinygrail/false`).then(d => {
const aucInfo = {
basePrice: d.Value.Price,
totalAmount: d.Value.Amount,
userCount: d.Value.AuctionUsers,
userAmount: d.Value.AuctionTotal,
myPrice: 0,
myAmount: 0
};
postData('chara/auction/list', [id]).then(d => {
if (d.Value[0]) {
aucInfo.myPrice = d.Value[0].Price;
aucInfo.myAmount = d.Value[0].Amount;
}
const remains = aucInfo.totalAmount - aucInfo.userAmount;
if (remains > 0) {
let price = Math.ceil(aucInfo.basePrice * 100) / 100;
const amount = remains + aucInfo.myAmount;
if (isAucDay && price * amount < aucInfo.myPrice * aucInfo.myAmount) {
price = Math.ceil(aucInfo.myPrice * aucInfo.myAmount / amount * 100) / 100;
}
postData(`chara/auction/${id}/${price}/${amount}`, null).then(d => {
if (d.State === 0) {
console.log(`自动补满拍卖 #${id} 耗资 ₵${price * amount}(₵${price} x ${amount})`);
postData('chara/auction/list', [id]).then(d => {
loadUserAuctions(d);
});
} else alert(d.Message);
});
} else { console.log(`#${id} 已拍满`); }
});
});
});
$('.begin_ico').off('click');
$('.begin_ico').on('click', (e) => {
e.stopPropagation();
const id = $(e.target).data('id');
const name = $(e.target).data('name');
if (confirm(`确定为 #${id}「${name}」开启 ICO?`)) {
autoBeginICO([id]);
}
});
$('.reload_chara').off('click');
$('.reload_chara').on('click', (e) => {
e.stopPropagation();
const id = $(e.target).data('id');
getNonCharacter(id);
});
$('#eden_tpc_list .item_list').on('click', listItemClicked);
if (page !== total && total > 0) {
const loadMore = `<li class="load_more"><button id="loadMoreButton" class="load_more_button" data-page="${page + 1}">[加载更多]</button></li>`;
$('#eden_tpc_list ul').append(loadMore);
$('#loadMoreButton').on('click', function () {
const page = $(this).data('page');
if (more) more(page);
});
} else {
let noMore = '暂无数据';
if (total > 0) { noMore = '加载完成'; }
$('#eden_tpc_list ul').append(`<li class="load_more sub">[${noMore}]</li>`);
}
};
const updateNonCharacter = chara => {
const $item = $(`.item_list[data-id=${chara.CharacterId}]`);
if (chara.Icon) $item.find('span.avatarNeue').css('background-image', `url('${normalizeAvatar(chara.Icon)}')`);
$item.find('.title.avatar.l').text(chara.Name);
$item.find('.row .begin_ico').attr('data-name', chara.Name).data('name', chara.Name);
if (chara.Reload) {
$item.find('.row .reload_chara').show();
} else {
$item.find('.row .reload_chara').hide();
}
};
const getNonCharacter = id => {
getData(`/rakuen/topic/crt/${id}`).then(bgmPage => {
const bgmInfo = bgmPage.match(/class="avatar"><img\s+src="([^"]+)"\s+class="avatar\s+ll"><\/a>\s+<a href=".*"\s+target="_parent">.*<\/a><\/span><br\s*\/>(.+)<\/h1>/);
updateNonCharacter({
Id: id,
CharacterId: id,
Icon: bgmInfo[1],
Name: bgmInfo[2],
NotExist: true
});
}).catch(e => {
console.log(`未开启 ICO 角色 #${id} 信息加载失败`, e);
updateNonCharacter({
Id: id,
CharacterId: id,
Name: `未知角色 #${id}`,
Reload: true,
NotExist: true
});
});
return {
Id: id,
CharacterId: id,
Name: `角色 #${id} 信息加载中...`,
NotExist: true
}
};
const generateCharacterList = async ids => {
const charas = await postData('chara/list', ids);
const charasInfo = [];
if (charas.State === 0) {
for (let i = 0; i < ids.length; i++) {
let item = charas.Value.find(chara => chara.CharacterId === parseInt(ids[i]));
if (!item) item = getNonCharacter(ids[i]);
charasInfo.push(item);
}
return charasInfo
} else {
console.log(charas);
}
};
const loadFollowChara = (page) => {
const followList = FollowList.get();
const start = 50 * (page - 1);
const ids = followList.charas.slice(start, start + 50);
const totalPages = Math.ceil(followList.charas.length / 50);
generateCharacterList(ids).then(list => {
loadCharacterList(list, page, totalPages, loadFollowChara, 'chara', true);
});
};
const loadFollowAuction = (page) => {
const followList = FollowList.get();
const start = 20 * (page - 1);
const ids = followList.auctions.slice(start, start + 20);
const totalPages = Math.ceil(followList.auctions.length / 20);
postData('chara/list', ids).then((d) => {
if (d.State === 0) {
loadCharacterList(d.Value, page, totalPages, loadFollowAuction, 'auction', true);
postData('chara/auction/list', ids).then((d) => {
loadUserAuctions(d);
});
loadValhalla(ids);
}
});
};
const loadMyICO = (page) => {
getData(`chara/user/initial/0/${page}/50`).then((d) => {
if (d.State === 0) {
loadCharacterList(d.Value.Items.sort((a, b) => (new Date(a.End)) - (new Date(b.End))), d.Value.CurrentPage, d.Value.TotalPages, loadMyICO, 'ico', false);
if (d.Value.TotalItems > 0 && page === 1) {
$('#eden_tpc_list ul').prepend('<li id="copyICO" class="line_odd item_list item_function" style="text-align: center;">[复制我的 ICO]</li>');
$('#copyICO').on('click', function () {
getData('chara/user/initial/0/1/1000').then(async d => {
if (d.Value.TotalItems > 1000) {
try {
d = getData(`chara/user/initial/0/1/${d.Value.TotalItems}`);
} catch (e) { console.log(`获取全部 ${d.Value.TotalItems} 个 ICO 列表出错`, e); }
}
const list_text = d.Value.Items.map(i => `https://bgm.tv/character/${i.CharacterId} ${i.Name}`).join('\n');
closeDialog();
const dialog = `<div class="bibeBox" style="padding:10px">
<label>我的 ICO 列表(若复制按钮无效,请手动复制)</label>
<textarea rows="10" class="quick" name="myICO"></textarea>
<input class="inputBtn" value="复制" id="copy_list" type="submit" style="padding: 3px 5px;">
</div>`;
showDialog(dialog);
$('.bibeBox textarea').val(list_text);
$('#copy_list').on('click', () => {
$('.bibeBox label').children().remove();
let res_info = '复制 ICO 列表出错,请手动复制';
$('.bibeBox textarea').select();
try {
if (document.execCommand('copy')) { res_info = `已复制 ${list_text.split('\n').length} 个 ICO`; }
} catch (e) { console.log('复制 ICO 列表出错', e); }
$('.bibeBox label').append(`<br><span>${res_info}</span>`);
});
});
});
}
}
});
};
const loadLostTemple = (page) => {
const lostTemples = [];
getData(`chara/user/temple/0/${page}/500`).then((d) => {
if (d.State === 0) {
for (let i = 0; i < d.Value.Items.length; i++) {
if (d.Value.Items[i].Assets - d.Value.Items[i].Sacrifices < 0) lostTemples.push(d.Value.Items[i]);
}
loadCharacterList(lostTemples, 2, 2, loadLostTemple, 'temple', false);
}
if (page < d.Value.TotalPages) {
page++;
loadLostTemple(page);
}
});
};
const loadMyTemple = (page) => {
getData(`chara/user/temple/0/${page}/50`).then((d) => {
if (d.State === 0) {
loadCharacterList(d.Value.Items, d.Value.CurrentPage, d.Value.TotalPages, loadMyTemple, 'temple', false);
if (page === 1) {
$('#eden_tpc_list ul').prepend('<li id="lostTemple" class="line_odd item_list item_function" style="text-align: center;">[查看受损圣殿]</li>');
$('#lostTemple').on('click', function () {
$('#eden_tpc_list ul').html('');
loadLostTemple(1);
});
}
}
});
};
const loadBalance = () => {
closeDialog();
const dialog = `<table align="center" width="98%" cellspacing="0" cellpadding="5" class="settings">
<tr><td>类型:<select id="balanceType" style="width:100px">
<option value="0" selected="selected">全部</option>
<option value="18">魔法道具</option>
<option value="1">彩票刮刮乐</option>
<option value="2">参与ICO</option>
<option value="3">ICO退款</option>
<option value="13">ICO结果</option>
<option value="4">买入委托</option>
<option value="5">取消买入</option>
<option value="6">卖出委托</option>
<option value="8">取消卖出</option>
<option value="7">交易印花税</option>
<option value="9">资产重组</option>
<option value="10">参与竞拍</option>
<option value="11">修改竞拍</option>
<option value="12">竞拍结果</option>
<option value="14">个人所得税</option>
<option value="16">发出红包</option>
<option value="17">收到红包</option>
<option value="15">系统修复</option>
</select></td>
<td>第<input id="page" type="number" style="width:30px" value="1">页</td>
<td>每页<input id="amount" type="number" style="width:50px" value="1000">条</td>
<td><input class="inputBtn" value="查询" id="submit_search" type="submit"></td></tr>
</tbody></table>`;
showDialog(dialog);
$('#submit_search').on('click', () => {
const Type = parseInt($('#balanceType').val());
const page = parseInt($('#page').val());
const amount = parseInt($('#amount').val());
const Logs = [];
getData(`chara/user/balance/${page}/${amount}`).then((d) => {
closeDialog();
if (d.State === 0) {
for (let i = 0; i < d.Value.Items.length; i++) {
if (d.Value.Items[i].Type === Type || Type === 0) Logs.push(d.Value.Items[i]);
}
loadCharacterList(Logs, 1, 1, loadBalance, 'balance', false);
$('#eden_tpc_list ul li').on('click', function (e) {
let id = $(e.target).data('id');
if (id == null) {
const result = $(e.target).find('small.time').text().match(/#(\d+)/);
if (result && result.length > 0) { id = result[1]; }
}
if (id != null && id.length > 0) {
if (parent.window.innerWidth < 1200) {
$(parent.document.body).find('#split #listFrameWrapper').animate({ left: '-450px' });
}
window.open(`/rakuen/topic/crt/${id}?trade=true`, 'right');
}
});
}
});
});
};
const loadAutoBuild = (page) => {
const autoTempleList = AutoTempleList.get();
autoBuildTemple(autoTempleList);
const charas = [];
for (let i = 0; i < autoTempleList.length; i++) charas.push(autoTempleList[i].charaId);
const start = 50 * (page - 1);
const ids = charas.slice(start, start + 50);
const totalPages = Math.ceil(charas.length / 50);
postData('chara/list', ids).then((d) => {
if (d.State === 0) {
loadCharacterList(d.Value, page, totalPages, loadAutoBuild, 'chara', false);
}
});
};
const loadAutoFillICO = (page) => {
const list = FillICOList.get();
const charas = [];
for (let i = 0; i < list.length; i++) charas.push(list[i].charaId);
const start = 50 * (page - 1);
const ids = charas.slice(start, start + 50);
const totalPages = Math.ceil(charas.length / 50);
generateCharacterList(ids).then(list => {
loadCharacterList(list, page, totalPages, loadAutoBuild, 'chara_ico', false);
});
};
const joinAuctions = async (ids) => {
for (let i = 0; i < ids.length; i++) {
const Id = ids[i];
await postData('chara/auction/list', [Id]).then((d) => {
let myAuctionAmount = 0;
if (d.Value.length) myAuctionAmount = d.Value[0].Amount;
if (myAuctionAmount) {
const myAuction = `<span class="my_auction auction_tip" title="出价 / 数量">₵${formatNumber(d.Value[0].Price, 2)} / ${myAuctionAmount}</span>`;
$(`.item_list[data-id=${Id}] .time`).after(myAuction);
} else {
getData(`chara/user/${Id}/tinygrail/false`).then((d) => {
const price = Math.ceil(d.Value.Price * 100) / 100;
const amount = 1;
postData(`chara/auction/${Id}/${price}/${amount}`, null).then((d) => {
if (d.State === 0) {
const myAuction = `<span class="my_auction auction_tip" title="出价 / 数量">₵${price} / ${amount}</span>`;
$(`.item_list[data-id=${Id}] .time`).after(myAuction);
} else {
console.log(d.Message);
}
});
});
}
});
}
};
let charasList = [];
const getCharasList = () => {
const charas = $('.bibeBox textarea').val().split('\n');
for (let i = 0; i < charas.length; i++) {
try {
const charaId = parseInt(charas[i].match(/(character\/|crt\/)?(\d+)/)[2]);
charasList.push(charaId);
} catch (e) {}
}
return charasList
};
const loadTemperaryList = (page) => {
const start = 50 * (page - 1);
const ids = charasList.slice(start, start + 50);
console.log(ids);
const totalPages = Math.ceil(charasList.length / 50);
generateCharacterList(ids).then(list => {
loadCharacterList(list, page, totalPages, loadTemperaryList, 'chara', false);
});
};
const createTemporaryList = (page) => {
charasList = [];
closeDialog();
const dialog = `<div class="bibeBox" style="padding:10px">
<label>在超展开左边创建角色列表 请输入角色url或id,如 https://bgm.tv/character/29282 或 29282,一行一个</label>
<textarea rows="10" class="quick" name="urls"></textarea>
<input class="inputBtn" value="创建列表" id="submit_list" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="关注角色" id="add_follow" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="关注竞拍" id="add_auction" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="显示一键操作▼" id="one_key_actions" type="submit" style="padding: 3px 5px;">
<div id="one_keys" style="display: none;">
<input class="inputBtn" value="参与竞拍" id="join_auction" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="参与 ICO" id="join_ico" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="启动 ICO" id="begin_ico" type="submit" style="padding: 3px 5px;">
</div>
</div>`;
showDialog(dialog);
$('#submit_list').on('click', () => {
getCharasList();
loadTemperaryList(1);
closeDialog();
});
$('#add_follow').on('click', () => {
getCharasList();
const followList = FollowList.get();
for (let i = 0; i < charasList.length; i++) {
const charaId = charasList[i];
if (followList.charas.includes(charaId)) {
followList.charas.splice(followList.charas.indexOf(charaId), 1);
followList.charas.unshift(charaId);
} else {
followList.charas.unshift(charaId);
}
FollowList.set(followList);
}
loadFollowChara(1);
closeDialog();
});
$('#add_auction').on('click', () => {
getCharasList();
const followList = FollowList.get();
for (let i = 0; i < charasList.length; i++) {
const charaId = charasList[i];
if (followList.auctions.includes(charaId)) {
followList.auctions.splice(followList.auctions.indexOf(charaId), 1);
followList.auctions.unshift(charaId);
} else {
followList.auctions.unshift(charaId);
}
FollowList.set(followList);
}
loadFollowAuction(1);
closeDialog();
});
$('#one_key_actions').on('click', () => {
if ($('#one_keys').toggle().is(':visible')) {
$('#one_key_actions').attr('value', '隐藏一键操作▲');
} else {
$('#one_key_actions').attr('value', '显示一键操作▼');
}
});
$('#join_auction').on('click', () => {
getCharasList();
$('#eden_tpc_list ul').html('');
loadTemperaryList(1);
joinAuctions(charasList);
closeDialog();
});
$('#join_ico').on('click', () => {
getCharasList();
postData('chara/list', charasList).then((d) => {
autoJoinICO(d.Value);
loadTemperaryList(1);
closeDialog();
});
});
$('#begin_ico').on('click', () => {
getCharasList();
$('#begin_ico').attr('value', '正在开启 ICO...').closest('.bibeBox').find('.inputBtn').attr('disabled', true);
autoBeginICO(charasList).then(() => {
loadTemperaryList(1);
closeDialog();
});
});
};
const loadScratch = () => {
$('#eden_tpc_list ul').html('');
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;">[刮刮乐]</li>');
const scratch_results = [];
const scratch_ids = [];
const chaosCube_results = [];
const chaosCube_ids = [];
const lotusland_results = [];
const lotusland_ids = [];
const scratch = () => {
getData('event/scratch/bonus2').then((d) => {
if (d.State === 0) {
for (let i = 0; i < d.Value.length; i++) {
scratch_results.push(d.Value[i]);
scratch_ids.push(d.Value[i].Id);
}
if (!d.Value.length) {
scratch_results.push(d.Value);
scratch_ids.push(d.Value.Id);
}
scratch();
} else {
postData('chara/list', scratch_ids).then((d) => {
for (let i = 0; i < d.Value.length; i++) {
d.Value[i].Sacrifices = scratch_results[i].Amount;
d.Value[i].Current = scratch_results[i].SellPrice;
}
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
startChaosCube();
});
}
});
};
const chaosCubeTempleId = ItemsSetting.get().chaosCube;
const startChaosCube = () => {
if (chaosCubeTempleId) {
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;">[混沌魔方]</li>');
chaosCube();
} else {
alert('未设置施放混沌魔方的圣殿,请先在角色圣殿施放一次混沌魔方即可完成预设');
startLotusland();
}
};
const chaosCube = () => {
postData(`magic/chaos/${chaosCubeTempleId}`, null).then((d) => {
console.log(d);
if (d.State === 0) {
for (let i = 0; i < d.Value.length; i++) {
chaosCube_results.push(d.Value[i]);
chaosCube_ids.push(d.Value[i].Id);
}
if (!d.Value.length) {
chaosCube_results.push(d.Value);
chaosCube_ids.push(d.Value.Id);
}
chaosCube();
} else {
if (d.Message !== '今日已超过使用次数限制或资产不足。') {
alert(d.Message);
chaosCube();
} else {
postData('chara/list', chaosCube_ids).then((d) => {
for (let i = 0; i < d.Value.length; i++) {
d.Value[i].Sacrifices = chaosCube_results[i].Amount;
d.Value[i].Current = chaosCube_results[i].SellPrice;
}
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
startLotusland();
});
}
}
});
};
const lotuslandPrice = ItemsSetting.get().lotusland;
const startLotusland = () => {
if (lotuslandPrice !== undefined) {
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;" title="可在设置界面设置抽奖金额上限">[幻想乡]</li>');
lotusland();
} else {
alert('未设置幻想乡自动抽奖金额上限,请在助手设置界面进行设置(设为 0 可不自动抽幻想乡)');
}
};
const lotusland = () => {
getData('event/daily/count/10').then((d) => {
if (d.State === 0) {
const count = d.Value * 1;
const price = Math.pow(2, count) * 2000;
if (price <= lotuslandPrice) {
getData('event/scratch/bonus2/true').then((d) => {
console.log(d);
if (d.State === 0) {
for (let i = 0; i < d.Value.length; i++) {
lotusland_results.push(d.Value[i]);
lotusland_ids.push(d.Value[i].Id);
}
if (!d.Value.length) {
lotusland_results.push(d.Value);
lotusland_ids.push(d.Value.Id);
}
lotusland();
} else {
endLotusland();
console.warn('小圣杯助手自动抽幻想乡未知回应', d);
}
});
} else {
endLotusland();
}
} else {
endLotusland();
console.warn('小圣杯助手获取幻想乡价格未知回应', d);
}
});
};
const endLotusland = () => {
postData('chara/list', lotusland_ids).then((d) => {
for (let i = 0; i < d.Value.length; i++) {
d.Value[i].Sacrifices = lotusland_results[i].Amount;
d.Value[i].Current = lotusland_results[i].SellPrice;
}
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
});
};
scratch();
};
const loadMagic = () => {
closeDialog();
const itemsSetting = ItemsSetting.get();
const templeId = itemsSetting.chaosCube || '';
const monoId = itemsSetting.guidepost ? itemsSetting.guidepost.monoId : '';
const toMonoId = itemsSetting.guidepost ? itemsSetting.guidepost.toMonoId : '';
const dialog = `<table align="center" width="98%" cellspacing="0" cellpadding="5" class="settings">
<tr><td title="消耗圣殿10点固定资产,获取随机角色10-100股随机数量">混沌魔方</td>
<td>炮塔:<input id="chaosCube" type="number" style="width:60px" value="${templeId}"></td><td></td>
<td><input class="inputBtn" value="发射" id="submit_chaosCube" type="submit"></td></tr>
<tr><td title="消耗圣殿100点固定资产,获取指定股票10-100股随机数量,目标人物的等级要小于或等于发动攻击圣殿的人物等级">虚空道标</td>
<td>炮塔:<input id="monoId" type="number" style="width:60px" value="${monoId}"></td>
<td>目标:<input id="toMonoId" type="number" style="width:60px" value="${toMonoId}"></td>
<td><input class="inputBtn" value="发射" id="submit_guidepost" type="submit"></td></tr>
<tr><td title="用一个角色的活股或固定资产,给另一个角色的圣殿消耗进行补充,目标人物的等级要小于或等于发动攻击圣殿的人物等级">星光碎片</td>
<td>能源:<input id="supplyId" type="number" style="width:60px"></td>
<td>目标:<input id="toSupplyId" type="number" style="width:60px"></td></tr>
<td></td><td>类型:<select id="isTemple" style="width:60px"><option value="false">活股</option><option value="true" selected="selected">塔股</option></select></td>
<td>数量:<input id="amount" type="number" style="width:60px" value="100"></td>
<td><input class="inputBtn" value="充能" id="submit_stardust" type="submit"></td></tr>
</tbody></table>`;
showDialog(dialog);
$('#submit_chaosCube').on('click', () => {
const templeId = parseInt($('#chaosCube').val());
ItemsSetting.set({ ...ItemsSetting.get(), chaosCube: templeId });
if (templeId === 0) return
postData(`magic/chaos/${templeId}`, null).then((d) => {
closeDialog();
console.log(d);
if (d.State === 0) {
$('#eden_tpc_list ul').html('');
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;">[混沌魔方]</li>');
const Id = d.Value.Id;
const Amount = d.Value.Amount;
const SellPrice = d.Value.SellPrice;
postData('chara/list', [Id]).then((d) => {
for (let i = 0; i < d.Value.length; i++) {
d.Value[i].Sacrifices = Amount;
d.Value[i].Current = SellPrice;
}
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
});
} else alert(d.Message);
});
});
$('#submit_guidepost').on('click', () => {
const monoId = parseInt($('#monoId').val());
const toMonoId = parseInt($('#toMonoId').val());
ItemsSetting.set({ ...ItemsSetting.get(), guidepost: { monoId: monoId, toMonoId: toMonoId } });
if (monoId === 0 || toMonoId === 0) return
postData(`magic/guidepost/${monoId}/${toMonoId}`, null).then((d) => {
closeDialog();
console.log(d);
if (d.State === 0) {
$('#eden_tpc_list ul').html('');
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;">[虚空道标]</li>');
const Id = d.Value.Id;
const Amount = d.Value.Amount;
const SellPrice = d.Value.SellPrice;
postData('chara/list', [Id]).then((d) => {
for (let i = 0; i < d.Value.length; i++) {
d.Value[i].Sacrifices = Amount;
d.Value[i].Current = SellPrice;
}
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
});
} else alert(d.Message);
});
});
$('#submit_stardust').on('click', () => {
const supplyId = $('#supplyId').val();
const toSupplyId = $('#toSupplyId').val();
const isTemple = $('#isTemple').val();
const amount = $('#amount').val();
if (supplyId === 0 || toSupplyId === 0 || amount === 0) return
postData(`magic/stardust/${supplyId}/${toSupplyId}/${amount}/${isTemple}`, null).then((d) => {
closeDialog();
console.log(d);
if (d.State === 0) {
alert(d.Value);
$('#eden_tpc_list ul').html('');
$('#eden_tpc_list ul').append('<li class="line_odd item_list" style="text-align: center;">[星光碎片]</li>');
postData('chara/list', [supplyId, toSupplyId]).then((d) => {
loadCharacterList(d.Value, 2, 2, loadScratch, 'chara', false);
});
} else alert(d.Message);
});
});
};
const CharaInitPrice = configGenerator('chara_initPrice', {});
const sellOut = () => {
$('#eden_tpc_list .item_list').removeAttr('onclick');
$('#eden_tpc_list .item_list').each((i, e) => {
const id = $(e).data('id');
const sell_btn = `<span><small data-id="${id}" class="sell_btn">[卖出]</small></span>`;
if (!$(e).find('.sell_btn').length) {
$(`#eden_tpc_list li[data-id=${id}] .row`).append(sell_btn);
}
});
$('.sell_btn').on('click', (e) => {
const id = $(e.target).data('id');
const charaInitPrice = CharaInitPrice.get();
if (id) {
const price_tag = $(`#eden_tpc_list li[data-id=${id}]`).find('div.tag')[0].innerText.match(/₵([0-9]*(\.[0-9]{1,2})?)/);
const price_now = price_tag ? price_tag[1] : 0;
getData(`chara/${id}`).then((d) => {
const initPrice = charaInitPrice[id] ? charaInitPrice[id].init_price : d.Value.Price;
const price = Math.max(parseFloat(price_now), parseFloat(initPrice).toFixed(2), d.Value.Current.toFixed(2));
getData(`chara/user/${id}`).then((d) => {
const amount = d.Value.Amount;
if (amount) {
postData(`chara/ask/${id}/${price}/${amount}`, null).then((d) => {
if (d.Message) console.log(`#${id}: ${d.Message}`);
else console.log(`卖出委托#${id} ${price}*${amount}`);
});
}
});
});
}
$(`#eden_tpc_list li[data-id=${id}]`).remove();
});
};
const cancelAllBids = async (charas, Balance) => {
for (let i = 0; i < charas.length; i++) {
const id = charas[i].Id;
const name = charas[i].Name;
const avatar = `<a href="/rakuen/topic/crt/${id}?trade=true" class="avatar l" target="right"><span class="avatarNeue avatarReSize32 ll" style="background-image:url('${normalizeAvatar(charas[i].Icon)}')"></span></a>`;
await getData(`chara/user/${id}`).then((d) => {
let line = 'line_even';
if (i % 2 === 0) line = 'line_odd';
const tid = d.Value.Bids[0].Id;
const price = d.Value.Bids[0].Price;
const amount = d.Value.Bids[0].Amount;
Balance += price * amount;
postData(`chara/bid/cancel/${tid}`, null).then((d) => {
const message = `<li class="${line} item_list item_log" data-id="${id}">${avatar}<span class="tag raise">+${formatNumber(price * amount, 2)}</span>
₵${formatNumber(Balance, 2)}<span class="row"><small class="time">取消买单(${tid}) #${id} 「${name}」 ${price}*${amount}</small></span></li>`;
$('#eden_tpc_list ul').prepend(message);
});
});
}
};
const cancelBids = () => {
if (!confirm('此操作将无法恢复,确定取消全部买单?')) return
$('#eden_tpc_list ul').html('');
getData('chara/user/assets').then((d) => {
const Balance = d.Value.Balance;
getData('chara/bids/0/1/1000').then((d) => {
if (d.Value.TotalItems > 1000) {
try {
d = getData(`chara/user/initial/0/1/${d.Value.TotalItems}`);
} catch (e) { console.log(`获取全部 ${d.Value.TotalItems} 条买单数据出错`, e); }
}
cancelAllBids(d.Value.Items, Balance);
});
});
};
const LinkPosList = configGenerator('LinkPosList', []);
const configVersion = 3;
const configList = [
Settings,
FollowList,
FillICOList,
AutoTempleList,
ItemsSetting,
LinkPosList
];
const exportConfig = () => JSON.stringify({
meta: {
project: 'TinyGrail_Helper_Next',
confver: configVersion,
exportTime: (new Date()).toISOString()
},
config: configList.reduce((config, configItem) => {
const configValue = configItem.getRaw();
return configValue
? { ...config, [configItem.name]: configValue }
: config
}, {})
});
const importSingleConfig = (configStorage, configToImport) => {
if (configStorage.name in configToImport) {
console.log(`importing ${configStorage.name}`);
configStorage.setRaw(configToImport[configStorage.name], true);
}
};
const importConfig = (configString) => {
try {
const errors = [];
const { meta, config } = JSON.parse(configString);
console.log(`import config version: ${meta.confver}`);
configList.forEach(configItem => {
try {
importSingleConfig(configItem, config);
} catch (err) {
errors.push(configItem.name);
}
});
return errors
} catch (err) {
console.error('设置导入出错:', { configString, err });
}
};
const openSettings = () => {
closeDialog();
const dialog = `
<div class="setting-tab-titlebar">
<div data-settingid="setting-tab-feat" class="setting-tab-title open">功能</div>
<div data-settingid="setting-tab-ui" class="setting-tab-title">界面</div>
<div data-settingid="setting-tab-magic" class="setting-tab-title">魔法</div>
</div>
<div class="setting-tab-content">
<div id="setting-tab-feat" class="setting-tab">
<table class="settings-tab-table"><tbody>
<tr><td>默认拍卖数量</td>
<td><select id="set_auction_num"><option value="one" selected="selected">1</option><option value="all">全部</option></td></tr>
<tr><td>周六自动提醒领取股息</td>
<td><select id="set_get_bonus"><option value="on" selected="selected">是</option><option value="off">否</option></td></tr>
<tr><td title="小圣杯界面左右键切换查看圣殿图">圣殿画廊</td>
<td><select id="set_gallery"><option value="off" selected="selected">关</option><option value="on">开</option></td></tr>
<tr><td>合并历史订单</td>
<td><select id="set_merge_order"><option value="on" selected="selected">是</option><option value="off">否</option></td></tr>
<tr><td>幻想乡自动抽奖金额上限</td>
<td><input id="item_set_lotus" type="number" min="0" step="1000" value="0"> cc</td></tr>
<tr class="setting-row-btn">
<td><span class="txtBtn setting-btn-export">[导入导出设置]</span></td>
<td><input class="inputBtn setting-btn-submit" value="保存" type="submit"></td>
</tr>
</tbody></table>
</div>
<div id="setting-tab-ui" class="setting-tab" style="display: none;">
<table class="settings-tab-table"><tbody>
<tr><td>用户主页小圣杯默认显示状态</td>
<td><select id="set_hide_grail"><option value="off" selected="selected">显示</option><option value="on">隐藏</option></select></td></tr>
<tr><td>[连接] 默认显示状态</td>
<td><select id="set_hide_link"><option value="off" selected="selected">显示</option><option value="on">隐藏</option></select></td></tr>
<tr><td>[圣殿] 默认显示状态</td>
<td><select id="set_hide_temple"><option value="off" selected="selected">显示</option><option value="on">隐藏</option></select></td></tr>
<tr><td>[董事会] 默认显示状态</td>
<td><select id="set_hide_board"><option value="off" selected="selected">显示</option><option value="on">隐藏</option></select></td></tr>
<tr><td>将自己圣殿或连接排到第一个显示</td>
<td><select id="set_pre_temple"><option value="on" selected="selected">是</option><option value="off">否</option></td></tr>
<tr class="setting-row-btn">
<td><span class="txtBtn setting-btn-export">[导入导出设置]</span></td>
<td><input class="inputBtn setting-btn-submit" value="保存" type="submit"></td>
</tr>
</tbody></table>
</div>
<div id="setting-tab-magic" class="setting-tab" style="display: none;">
<table class="settings-tab-table"><tbody>
<tr><td>混沌魔方 - 炮塔角色ID</td>
<td><input id="item_set_chaos" class="chara-id" type="number" min="0" step="1" value="0"></td></tr>
<tr><td>虚空道标 - 炮塔角色ID</td>
<td><input id="item_set_guidepost" class="chara-id" type="number" min="0" step="1" value="0"></td></tr>
<tr><td>虚空道标 - 目标角色ID</td>
<td><input id="item_set_guidepost_to" class="chara-id" type="number" min="0" step="1" value="0"></td></tr>
<tr><td title="根据设置自动使用星光碎片为受损 100 股以上的塔进行充能">自动补塔</td>
<td><select id="item_set_autofill"><option value="on" selected="selected">开</option><option value="off">关</option></td></tr>
<tr class="setting-row-btn">
<td><span class="txtBtn setting-btn-export">[导入导出设置]</span></td>
<td><input class="inputBtn setting-btn-submit" value="保存" type="submit"></td>
</tr>
</tbody></table>
</div>
</div>
`;
showDialog(dialog);
$('.setting-tab-title').on('click', e => {
$('.setting-tab').hide();
$(`#${e.target.dataset.settingid}`).show();
$('.setting-tab-title').removeClass('open');
$(e.target).addClass('open');
});
const settings = Settings.get();
const itemSetting = ItemsSetting.get();
$('#set_hide_grail').val(settings.hide_grail);
$('#set_hide_link').val(settings.hide_link);
$('#set_hide_temple').val(settings.hide_temple);
$('#set_hide_board').val(settings.hide_board);
$('#set_pre_temple').val(settings.pre_temple);
$('#set_auction_num').val(settings.auction_num);
$('#set_merge_order').val(settings.merge_order);
$('#set_get_bonus').val(settings.get_bonus);
$('#set_gallery').val(settings.gallery);
$('#item_set_lotus').val(itemSetting.lotusland || 0);
$('#item_set_chaos').val(itemSetting.chaosCube || 0);
$('#item_set_autofill').val(itemSetting.autoFill === false ? 'off' : 'on');
if (itemSetting.guidepost) {
$('#item_set_guidepost').val(itemSetting.guidepost.monoId || 0);
$('#item_set_guidepost_to').val(itemSetting.guidepost.toMonoId || 0);
}
$('#item_set_lotus').on('change', (e) => {
const el = e.target;
if (parseInt(el.value) > 3000) {
el.style.color = 'red';
el.style.fontWeight = 'bold';
} else {
el.style.color = '';
el.style.fontWeight = '';
}
});
$('.setting-btn-submit').on('click', () => {
settings.hide_grail = $('#set_hide_grail').val();
settings.hide_link = $('#set_hide_link').val();
settings.hide_temple = $('#set_hide_temple').val();
settings.hide_board = $('#set_hide_board').val();
settings.pre_temple = $('#set_pre_temple').val();
settings.auction_num = $('#set_auction_num').val();
settings.merge_order = $('#set_merge_order').val();
settings.get_bonus = $('#set_get_bonus').val();
settings.gallery = $('#set_gallery').val();
Settings.set(settings);
ItemsSetting.set({
...ItemsSetting.get(),
lotusland: parseInt($('#item_set_lotus').val()),
autoFill: $('#item_set_autofill').val() !== 'off',
chaosCube: parseInt($('#item_set_chaos').val()),
guidepost: {
monoId: parseInt($('#item_set_guidepost').val()),
toMonoId: parseInt($('#item_set_guidepost_to').val())
}
});
$('#submit_setting').val('已保存');
setTimeout(() => { closeDialog(); }, 500);
});
$('.setting-btn-export').on('click', () => {
const dialog = `<div class="bibeBox" style="padding:10px">
<label>设置导入/导出</label>
<p><b>导入方式:</b>将之前导出的设置文本粘贴到下方输入框后点击导入按钮</p>
<p><b>导出方式:</b>复制下方输入框中内容并妥善保存(若复制按钮无效,请手动复制)</p>
<textarea rows="10" class="quick" name="setting_value"></textarea>
<label id="info"></label>
<input class="inputBtn" value="导入" id="import_setting" type="submit" style="padding: 3px 5px;">
<input class="inputBtn" value="复制" id="copy_setting" type="submit" style="padding: 3px 5px;">
</div>`;
closeDialog();
showDialog(dialog);
const configValue = exportConfig();
$('.bibeBox textarea').val(configValue);
$('#copy_setting').on('click', () => {
$('.bibeBox label#info').children().remove();
let resInfo = '复制设置出错,请手动复制';
$('.bibeBox textarea').select();
try {
if (document.execCommand('copy')) { resInfo = '设置已复制,请自行保存以便后续导入'; }
} catch (e) { console.log('复制设置出错', e); }
$('.bibeBox label#info').append(`<span>${resInfo}</span><br>`);
});
$('#import_setting').on('click', () => {
if (!confirm('导入设置将会覆盖原有设置,确定操作后将无法恢复,是否确定继续?')) return
$('.bibeBox label#info').children().remove();
let resInfo = '导入设置出错,请重新检查导入文本';
const importString = $('.bibeBox textarea').val();
try {
const importErrors = importConfig(importString);
if (importErrors.length === 0) {
resInfo = '导入成功';
} else {
resInfo = `以下设置导入出错,请重新检查导入文本:\n${importErrors.join(', ')}`;
console.warn(resInfo);
}
$('.bibeBox label#info').append(`<span>${resInfo}</span><br>`);
} catch (e) { console.log('导入设置出错', e); }
});
});
};
const menuItemClicked = (callback) => {
$('.timelineTabs a').removeClass('focus');
$('.timelineTabs a').removeClass('top_focus');
$('#helperMenu').addClass('focus');
if (callback) callback(1);
};
const loadHelperMenu = () => {
const item = `<li><a href="#" id="helperMenu" class="top">助手</a><ul>
<li><a href="#" id="temporaryList">临时列表</a></li>
<li><a href="#" id="followChara">关注角色</a></li>
<li><a href="#" id="followAuction">关注竞拍</a></li>
<li><a href="#" id="scratch">抽奖</a></li>
<li><a href="#" id="magic">魔法道具</a></li>
<li><a href="#" id="balance">资金日志分类</a></li>
<li><a href="#" id="sell" title="为当前列表角色增加一键卖出按钮">卖出</a></li>
<li><a href="#" id="autoBuild">自动建塔</a></li>
<li><a href="#" id="autoICO">自动补款</a></li>
<li><a href="#" id="cancelBids">取消买单</a></li>
<li><a href="#" id="settings">设置</a></li>
</ul></li>`;
$('.timelineTabs').append(item);
$('#logMenu').closest('li').before(`
<li><a href="#" id="myICO">我的 ICO</a></li>
<li><a href="#" id="myTemple">我的圣殿</a></li>
`);
$('#followChara').on('click', () => menuItemClicked(loadFollowChara));
$('#followAuction').on('click', () => menuItemClicked(loadFollowAuction));
$('#myICO').on('click', () => menuItemClicked(loadMyICO));
$('#myTemple').on('click', () => menuItemClicked(loadMyTemple));
$('#balance').on('click', () => menuItemClicked(loadBalance));
$('#autoBuild').on('click', () => menuItemClicked(loadAutoBuild));
$('#autoICO').on('click', () => menuItemClicked(loadAutoFillICO));
$('#temporaryList').on('click', () => menuItemClicked(createTemporaryList));
$('#scratch').on('click', () => menuItemClicked(loadScratch));
$('#magic').on('click', () => menuItemClicked(loadMagic));
$('#sell').on('click', () => menuItemClicked(sellOut));
$('#cancelBids').on('click', () => menuItemClicked(cancelBids));
$('#settings').on('click', () => menuItemClicked(openSettings));
};
const changeLinkPos = (parentNode) => {
const me = getMe();
let user;
if (location.pathname.startsWith('/user')) {
user = location.pathname.split('/').pop();
}
const swapLink = (linkEl) => {
const $link = $(linkEl).closest('.link');
const $left = $link.find('.left');
const $right = $link.find('.right');
const $content = $link.find('.content');
$left.toggleClass('left').toggleClass('right');
$right.toggleClass('left').toggleClass('right');
const $names = $content.find('span');
$($names[0]).replaceWith($names[1]);
$content.append($names[0]);
$link.toggleClass('swapped');
const thisUser = user || $link.find('.name a').attr('href').split('/').pop();
const thisLinkPos = [$right, $left].map((el) => $(el).find('.card').data('temple').CharacterId).join('#');
const thisConfig = `${thisUser}#${thisLinkPos}`;
console.log(thisConfig);
if (thisUser === me) {
const reverseConfig = thisConfig.replace(/^(.+)#(\d+)#(\d+)$/, '$1#$3#$2');
let linkPosList = LinkPosList.get();
linkPosList = linkPosList.filter((i) => ![thisConfig, reverseConfig].includes(i));
if ($link.hasClass('swapped')) {
linkPosList.push(thisConfig);
console.log('saved link pos: ' + thisConfig);
}
LinkPosList.set(linkPosList);
}
};
const linkPosList = LinkPosList.get();
$(parentNode).find('.link .name').each((i, el) => {
if ($(el).find('.swapPos').length > 0) return
$(el).append('<span class="swapPos" title="交换连接两塔的顺序">[换序]</span>');
let thisUser = user;
if (!thisUser) thisUser = $(el).find('a').attr('href').split('/').pop();
if (thisUser === me) {
const $link = $(el).closest('.link');
const leftId = $link.find('.left .card').data('temple').CharacterId;
const rightId = $link.find('.right .card').data('temple').CharacterId;
const reverseConfig = `${thisUser}#${rightId}#${leftId}`;
if (linkPosList.includes(reverseConfig)) swapLink($link);
}
});
$(parentNode).on('click', '.swapPos', (e) => {
swapLink($(e.currentTarget).closest('.link'));
});
};
const showGallery = () => {
if (Settings.get().gallery === 'on') {
let index = 0;
$('body').on('keydown', function (event) {
switch (event.key || event.keyCode) {
case 'ArrowLeft':
case 37:
closeDialog();
$('.item .card')[index - 1].click();
break
case 'ArrowRight':
case 39:
closeDialog();
$('.item .card')[index + 1].click();
break
}
});
$('body').on('touchstart', '#TB_window.temple', function (e) {
let touch = e.originalEvent;
const startX = touch.changedTouches[0].pageX;
$(this).on('touchmove', function (e) {
e.preventDefault();
touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0];
if (touch.pageX - startX > 20) {
closeDialog();
$('.item .card')[index - 1].click();
$(this).off('touchmove');
} else if (touch.pageX - startX < -20) {
closeDialog();
$('.item .card')[index + 1].click();
$(this).off('touchmove');
}
});
}).on('touchend', function () {
$(this).off('touchmove');
});
setInterval(function () {
$('.item .card').on('click', (e) => {
index = $('.item .card').index(e.currentTarget);
});
}, 1000);
}
};
const followChara = (charaId) => {
let button = '<button id="followCharaButton" class="text_button">[关注角色]</button>';
if (FollowList.get().charas.includes(charaId)) {
button = '<button id="followCharaButton" class="text_button">[取消关注]</button>';
}
if ($(`#grailBox.chara${charaId} #kChartButton`).length) $(`#grailBox.chara${charaId} #kChartButton`).before(button);
else $(`#grailBox.chara${charaId} .title .text`).after(button);
$(`#grailBox.chara${charaId} #followCharaButton`).on('click', () => {
const followList = FollowList.get();
if (followList.charas.includes(charaId)) {
followList.charas.splice(followList.charas.indexOf(charaId), 1);
$(`#grailBox.chara${charaId} #followCharaButton`).text('[关注角色]');
} else {
followList.charas.unshift(charaId);
$(`#grailBox.chara${charaId} #followCharaButton`).text('[取消关注]');
}
FollowList.set(followList);
});
};
const followAuctions = (charaId) => {
getData(`chara/user/${charaId}/tinygrail/false`).then((d) => {
if (d.State === 0) {
let button;
if (FollowList.get().auctions.includes(charaId)) {
button = '<button id="followAuctionButton" class="text_button">[取消关注]</button>';
} else {
button = '<button id="followAuctionButton" class="text_button">[关注竞拍]</button>';
}
$(`#grailBox.chara${charaId} #buildButton`).before(button);
$(`#grailBox.chara${charaId} #followAuctionButton`).on('click', () => {
const followList = FollowList.get();
if (followList.auctions.includes(charaId)) {
followList.auctions.splice(followList.auctions.indexOf(charaId), 1);
$(`#grailBox.chara${charaId} #followAuctionButton`).text('[关注竞拍]');
} else {
followList.auctions.unshift(charaId);
$(`#grailBox.chara${charaId} #followAuctionButton`).text('[取消关注]');
}
FollowList.set(followList);
});
}
});
};
const sell_out = (charaId, init_price) => {
$($(`#grailBox.chara${charaId} .info .text`)[1]).append('<button id="sell_out" class="text_button" title="以发行价全部卖出">[全部卖出]</button>');
$(`#grailBox.chara${charaId} #sell_out`).on('click', function () {
getData(`chara/user/${charaId}`).then((d) => {
$(`#grailBox.chara${charaId} .ask .price`).val(init_price);
$(`#grailBox.chara${charaId} .ask .amount`).val(d.Value.Amount);
});
});
};
const showInitialPrice = (charaId) => {
const charaInitPrice = CharaInitPrice.get();
if (charaInitPrice[charaId]) {
const init_price = charaInitPrice[charaId].init_price;
const time = charaInitPrice[charaId].time;
$($(`#grailBox.chara${charaId} .info .text`)[1]).append(`<span title="上市时间:${time}">发行价:${init_price}</span>`);
sell_out(charaId, init_price);
} else {
getData(`chara/charts/${charaId}/2019-08-08`).then((d) => {
if (d.Value[0]) {
const init_price = d.Value[0].Begin.toFixed(2);
const time = d.Value[0].Time.replace('T', ' ');
const charaInitPrice = CharaInitPrice.get();
charaInitPrice[charaId] = { init_price: init_price, time: time };
CharaInitPrice.set(charaInitPrice);
$($(`#grailBox.chara${charaId} .info .text`)[1]).append(`<span title="上市时间:${time}">发行价:${init_price}</span>`);
sell_out(charaId, init_price);
}
});
}
};
const priceWarning = (charaId) => {
const price = $(`#grailBox.chara${charaId} .bid .price`).val();
$(`#grailBox.chara${charaId} #bidButton`).after('<button style="display:none" id="confirm_bidButton" class="active bid">买入</button>');
$(`#grailBox.chara${charaId} .bid .price`).on('input', function () {
const price_now = $(`#grailBox.chara${charaId} .bid .price`).val();
if (price_now > Math.max(price * 3, 100)) {
$(`#grailBox.chara${charaId} .bid .price`).css({ color: 'red' });
$(`#grailBox.chara${charaId} #confirm_bidButton`).show();
$(`#grailBox.chara${charaId} #bidButton`).hide();
} else {
$(`#grailBox.chara${charaId} #confirm_bidButton`).hide();
$(`#grailBox.chara${charaId} #bidButton`).show();
$(`#grailBox.chara${charaId} .bid .price`).css({ color: 'inherit' });
}
});
$(`#grailBox.chara${charaId} #confirm_bidButton`).on('click', function () {
const price = $(`#grailBox.chara${charaId} .bid .price`).val();
const amount = $(`#grailBox.chara${charaId} .bid .amount`).val();
if (!confirm(`买入价格过高提醒!\n确定以${price}的价格买入${amount}股?`)) {
return
}
$(`#grailBox.chara${charaId} #bidButton`).click();
});
};
const mergeorderList = (orderListHistory) => {
const mergedorderList = []; let i = 0;
mergedorderList.push(orderListHistory[0]);
for (let j = 1; j < orderListHistory.length; j++) {
if ((orderListHistory[j].Price === mergedorderList[i].Price) && Math.abs(new Date(orderListHistory[j].TradeTime) - new Date(mergedorderList[i].TradeTime)) < 10 * 1000) {
mergedorderList[i].Amount += orderListHistory[j].Amount;
} else {
mergedorderList.push(orderListHistory[j]);
i++;
}
}
return mergedorderList
};
const mergeorderListHistory = (charaId) => {
if (Settings.get().merge_order === 'on') {
getData(`chara/user/${charaId}`).then((d) => {
if (d.State === 0 && d.Value) {
$(`.chara${charaId} .ask .ask_list li[class!=ask]`).hide();
const askHistory = mergeorderList(d.Value.AskHistory);
for (let i = 0; i < askHistory.length; i++) {
const ask = askHistory[i];
if (ask) $(`.chara${charaId} .ask .ask_list`).prepend(`<li title="${formatDate(ask.TradeTime)}">₵${formatNumber(ask.Price, 2)} / ${formatNumber(ask.Amount, 0)} / +${formatNumber(ask.Amount * ask.Price, 2)}<span class="cancel">[成交]</span></li>`);
}
$(`.chara${charaId} .bid .bid_list li[class!=bid]`).hide();
const bidHistory = mergeorderList(d.Value.BidHistory);
for (let i = 0; i < bidHistory.length; i++) {
const bid = bidHistory[i];
if (bid) $(`.chara${charaId} .bid .bid_list`).prepend(`<li title="${formatDate(bid.TradeTime)}">₵${formatNumber(bid.Price, 2)} / ${formatNumber(bid.Amount, 0)} / -${formatNumber(bid.Amount * bid.Price, 2)}<span class="cancel">[成交]</span></li>`);
}
}
});
}
};
const showOwnTemple = (charaId) => {
const pre_temple = Settings.get().pre_temple;
const temples = $(`#grailBox.chara${charaId} .assets_box #lastTemples.assets .item`);
const me = getMe();
for (let i = 0; i < temples.length; i++) {
const user = temples[i].querySelector('.name a').href.split('/').pop();
if (user === me) {
temples[i].classList.add('my_temple');
temples[i].classList.remove('replicated');
if (pre_temple === 'on') $(`#grailBox.chara${charaId} .assets_box #lastTemples.assets`).prepend(temples[i]);
break
}
}
$(`#grailBox.chara${charaId} #expandButton`).on('click', () => { showOwnTemple(charaId); });
};
const changeTempleCover = (charaId) => {
const setChaosCube = (temple) => {
$('#chaosCubeButton').on('click', () => {
const templeId = temple.CharacterId;
const itemsSetting = ItemsSetting.get();
itemsSetting.chaosCube = templeId;
ItemsSetting.set(itemsSetting);
});
};
const addButton = (temple, user) => {
$('#TB_window .action').append(`<button id="changeCoverButton2" class="text_button" title="修改圣殿封面">[修改]</button>
<button id="copyCoverButton" class="text_button" title="复制圣殿图片为自己圣殿的封面">[复制]</button>`);
$('#changeCoverButton2').on('click', () => {
const cover = prompt('图片url(你可以复制已有圣殿图片的url):');
const url = 'https://tinygrail.oss-cn-hangzhou.aliyuncs.com/' + cover.match(/cover\/\S+\.jpg/)[0];
postData(`chara/temple/cover/${charaId}/${temple.UserId}`, url).then((d) => {
if (d.State === 0) {
alert('更换封面成功。');
$('#TB_window img.cover').attr('src', cover);
$(`#grailBox.chara${charaId} .assets_box .assets .item`).each(function () {
if (user === this.querySelector('.name a').href.split('/').pop()) { $(this).find('div.card').css({ 'background-image': 'url(https://tinygrail.mange.cn/' + cover.match(/cover\/\S+\.jpg/)[0] + '!w150)' }); }
});
} else {
alert(d.Message);
}
});
});
$('#copyCoverButton').on('click', () => {
const cover = $('#TB_window .container .cover').attr('src');
const url = 'https://tinygrail.oss-cn-hangzhou.aliyuncs.com/' + cover.match(/cover\/\S+\.jpg/)[0];
postData(`chara/temple/cover/${charaId}`, url).then((d) => {
if (d.State === 0) {
alert('更换封面成功。');
location.reload();
} else {
alert(d.Message);
}
});
});
};
$(`#grailBox.chara${charaId} .assets .item`).on('click', (e) => {
const me = getMe();
const $el = $(e.currentTarget);
let temple = $el.data('temple');
let isLink = false;
if (temple === undefined && ($el.hasClass('left') || $el.hasClass('right'))) {
temple = $el.find('.card').data('temple');
isLink = true;
}
if (temple === undefined) return
let user = temple.Name;
if (temple.LinkId === parseInt(charaId)) {
user = $el.siblings('.item').find('.card').data('temple').Name;
}
if (user !== me && temple.CharacterId !== parseInt(charaId)) return
if (isLink) {
if (user === me) setChaosCube(temple);
else addButton(temple, user);
} else {
launchObserver({
parentNode: document.body,
selector: '#TB_window .action',
successCallback: () => {
if (user === me) setChaosCube(temple);
else addButton(temple, user);
}
});
}
});
};
const showOwnLink = (charaId) => {
const pre_link = Settings.get().pre_temple;
const links = $(`#grailBox.chara${charaId} .assets_box #lastLinks.assets .link.item`);
const me = getMe();
for (let i = 0; i < links.length; i++) {
const user = links[i].querySelector('.name a').href.split('/').pop();
if (user === me) {
links[i].classList.add('my_link');
if (pre_link === 'on') $(links[i]).siblings('.rank.item').after(links[i]);
break
}
}
};
const openHistoryDialog = (chara, page) => {
const dialog = `<div class="title">上${page}周拍卖结果 - #${chara.Id} 「${chara.Name}」 ₵${formatNumber(chara.Current, 2)} / ${formatNumber(chara.Total, 0)}</div>
<div class="desc" style="display:none"></div>
<div class="result" style="display:none; max-height: 500px; overflow: auto;"></div>
<div class="page_inner">
<a id="nextweek" class="p" style="display:none; float: left;margin-bottom: 5px;margin-left: 50px;">后一周</a>
<a id="lastweek" class="p" style="display:none; float: right;margin-bottom: 5px;margin-right: 50px;">前一周</a>
</div>
<div class="loading"></div>`;
showDialog(dialog);
const charaInitPrice = CharaInitPrice.get();
const week_ms = 7 * 24 * 3600 * 1000;
const templeWeek = Math.floor((new Date() - new Date('2019/10/05')) / week_ms + 1);
const icoWeek = Math.floor((new Date() - new Date(charaInitPrice[chara.Id].time)) / week_ms + 1);
const week = Math.min(templeWeek, icoWeek);
getData(`chara/auction/list/${chara.Id}/${page}`).then((d) => {
$('#TB_window .loading').hide();
if (d.State === 0 && d.Value.length > 0) {
let success = 0;
let total = 0;
d.Value.forEach((a) => {
let state = 'even';
let name = '失败';
if (a.State === 1) {
success++;
total += a.Amount;
state = 'raise';
name = '成功';
}
const record = `<div class="row"><span class="time">${formatDate(a.Bid)}</span>
<span class="user"><a target="_blank" href="/user/${a.Username}">${a.Nickname}</a></span>
<span class="price">₵${formatNumber(a.Price, 2)} / ${formatNumber(a.Amount, 0)}</span>
<span class="tag ${state}">${name}</span></div>`;
$('#TB_window .result').append(record);
});
$('#TB_window .desc').text(`共有${d.Value.length}人参与拍卖,成功${success}人 / ${total}股`);
$('#TB_window .result').show();
} else {
$('#TB_window .desc').text('暂无拍卖数据');
}
$('#TB_window .desc').show();
if (page > 1) $('#nextweek').show();
if (page < week) $('#lastweek').show();
$('#nextweek').on('click', () => {
page--;
closeDialog();
openHistoryDialog(chara, page);
});
$('#lastweek').on('click', () => {
page++;
closeDialog();
openHistoryDialog(chara, page);
});
});
};
const showAuctionHistory = (chara) => {
const charaId = chara.CharacterId || chara.Id;
const button = '<button id="auctionHistorys" class="text_button">[往期拍卖]</button>';
$(`#grailBox.chara${charaId} #auctionHistoryButton`).after(button);
$(`#grailBox.chara${charaId} #auctionHistoryButton`).hide();
$(`#grailBox.chara${charaId} #auctionHistorys`).on('click', () => {
openHistoryDialog(chara, 1);
});
};
const openTradeHistoryDialog = (chara) => {
const dialog = `<div class="title">交易历史记录 - #${chara.Id} 「${chara.Name}」 ₵${formatNumber(chara.Current, 2)} / ${formatNumber(chara.Total, 0)}</div>
<div class="result" style="display:none; max-height: 500px; overflow: auto;"></div>
<div class="desc" style="display:none"></div>
<div class="loading"></div>`;
showDialog(dialog);
const loadTradeHistory = (page) => {
$('#TB_window .loading').hide();
$('#TB_window .result').show();
$('#TB_window .result').html('');
const records = tradeHistory.slice(50 * (page - 1), 50 * page);
if (records.length) {
for (let i = 0; i < records.length; i++) {
const record = `<div class="row">
<span class="time" title="交易时间">${formatDate(records[i].Time)}</span>
<span class="price" title="价格">₵${formatNumber((records[i].Price / records[i].Amount), 2)}</span>
<span class="amount" title="数量">${formatNumber(records[i].Amount, 0)}</span>
<span class="price" title="交易额">₵${formatNumber(records[i].Price, 2)}</span>
</div>`;
$('#TB_window .result').append(record);
}
$('#TB_window .desc').html('');
$('#TB_window .desc').text(`共有${tradeHistory.length}条记录,当前 ${page} / ${totalPages} 页`);
for (let i = 1; i <= totalPages; i++) {
const pager = `<span class="page" data-page="${i}">[${i}]</span>`;
$('#TB_window .desc').append(pager);
}
$('#TB_window .desc .page').on('click', (e) => {
const page = $(e.target).data('page');
loadTradeHistory(page);
});
$('#TB_window .result').show();
} else {
$('#TB_window .desc').text('暂无交易记录');
}
$('#TB_window .desc').show();
};
let tradeHistory, totalPages;
getData(`chara/charts/${chara.Id}/2019-08-08`).then((d) => {
if (d.State === 0) {
tradeHistory = d.Value.reverse();
totalPages = Math.ceil(d.Value.length / 50);
loadTradeHistory(1);
}
});
};
const showTradeHistory = (chara) => {
const charaId = chara.CharacterId || chara.Id;
$(`#grailBox.chara${charaId} #kChartButton`).after('<button id="tradeHistoryButton" class="text_button">[交易记录]</button>');
$(`#grailBox.chara${charaId} #tradeHistoryButton`).on('click', () => {
openTradeHistoryDialog(chara);
});
};
const showPrice = (chara) => {
const charaId = chara.CharacterId || chara.Id;
const price = chara.Price.toFixed(2);
$($(`#grailBox.chara${charaId} .info .text`)[1]).append(`<span>评估价:${price}</span>`);
};
const showTempleRate = (chara) => {
const charaId = chara.CharacterId || chara.Id;
const rate = chara.Rate;
const level = chara.Level;
getData(`chara/temple/${chara.Id}`).then((d) => {
const templeAll = { 1: 0, 2: 0, 3: 0 };
for (let i = 0; i < d.Value.length; i++) {
templeAll[d.Value[i].Level]++;
}
const templeRate = rate * (level + 1) * 0.3;
$(`#grailBox.chara${charaId} .assets_box .bold .sub`).attr('title', '活股股息:' + formatNumber(rate, 2));
$(`#grailBox.chara${charaId} .assets_box .bold .sub`).before(`<span class="sub"> (${templeAll[3]} + ${templeAll[2]} + ${templeAll[1]})</span>`);
if ($(`#grailBox.chara${charaId} #expandButton`).length) {
$(`#grailBox.chara${charaId} #expandButton`).before(`<span class="sub" title="圣殿股息:${formatNumber(templeRate, 2)}"> (${formatNumber(templeRate, 2)})</span>`);
} else {
launchObserver({
parentNode: document.querySelector(`#grailBox.chara${charaId}`),
selector: `#grailBox.chara${charaId} #expandButton`,
successCallback: () => {
$(`#grailBox.chara${charaId} #expandButton`).before(`<span class="sub" title="圣殿股息:${formatNumber(templeRate, 2)}"> (${formatNumber(templeRate, 2)})</span>`);
}
});
}
});
};
const openBuildDialog = (chara) => {
const autoTempleList = AutoTempleList.get();
const charaId = chara.CharacterId || chara.Id;
let target = 500; let bidPrice = 10;
const temple = autoTempleList.find(temple => parseInt(temple.charaId) === charaId);
if (temple !== undefined) {
target = parseInt(temple.target);
bidPrice = parseFloat(temple.bidPrice);
}
const dialog = `<div class="title" title="目标数量 / 买入价格">
自动建塔 - #${charaId} 「${chara.Name}」 ${target} / ₵${bidPrice}</div>
<div class="desc"><p>当已献祭股数+持有股数达到目标数量时将自动建塔</p>
输入 目标数量 / 买入价格(不超过此价格的卖单将自动买入)</div>
<div class="label"><div class="trade build">
<input class="target" type="number" style="width:150px" title="目标数量" min="0" step="1" value="${target}">
<input class="bidPrice" type="number" style="width:100px" title="卖出下限" min="0" value="${bidPrice}">
<button id="startBuildButton" class="active">自动建塔</button><button id="cancelBuildButton">取消建塔</button></div></div>
<div class="loading" style="display:none"></div>`;
showDialog(dialog);
$('#cancelBuildButton').on('click', function () {
const autoTempleList = AutoTempleList.get();
const index = autoTempleList.findIndex(temple => parseInt(temple.charaId) === charaId);
if (index >= 0) {
autoTempleList.splice(index, 1);
AutoTempleList.set(autoTempleList);
alert(`取消自动建塔${chara.Name}`);
}
$(`#grailBox.chara${charaId} #autobuildButton`).text('[自动建塔]');
closeDialog();
});
$('#startBuildButton').on('click', function () {
const info = {
charaId: parseInt(charaId),
name: chara.Name,
target: parseInt($('.trade.build .target').val()),
bidPrice: parseFloat($('.trade.build .bidPrice').val())
};
const autoTempleList = AutoTempleList.get();
const index = autoTempleList.findIndex(temple => parseInt(temple.charaId) === charaId);
if (index >= 0) {
autoTempleList.splice(index, 1);
autoTempleList.unshift(info);
} else autoTempleList.unshift(info);
AutoTempleList.set(autoTempleList);
alert(`启动自动建塔#${info.charaId} ${info.name}`);
closeDialog();
$(`#grailBox.chara${charaId} #autobuildButton`).text('[自动建塔中]');
autoBuildTemple([info]);
});
};
const setBuildTemple = (chara) => {
const charaId = chara.CharacterId || chara.Id;
let button = '<button id="autobuildButton" class="text_button">[自动建塔]</button>';
if (AutoTempleList.get().some(item => parseInt(item.charaId) === parseInt(charaId))) {
button = '<button id="autobuildButton" class="text_button">[自动建塔中]</button>';
}
if ($(`#grailBox.chara${charaId} #buildButton`).length) $(`#grailBox.chara${charaId} #buildButton`).after(button);
else $(`#grailBox.chara${charaId} .title .text`).after(button);
$(`#grailBox.chara${charaId} #autobuildButton`).on('click', () => {
openBuildDialog(chara);
});
};
const fixAuctions = (chara) => {
const charaId = chara.CharacterId || chara.Id;
getData(`chara/user/${chara.Id}/tinygrail/false`).then((d) => {
chara.Price = d.Value.Price;
chara.State = d.Value.Amount;
let button = '<button id="auctionButton2" class="text_button">[萌王投票]</button>';
if (d.State === 0 && d.Value.Amount > 0) button = '<button id="auctionButton2" class="text_button">[参与竞拍]</button>';
$(`#grailBox.chara${charaId} #buildButton`).before(button);
$(`#grailBox.chara${charaId} #auctionButton`).hide();
launchObserver({
parentNode: document.body,
selector: `#grailBox.chara${charaId} #auctionButton`,
successCallback: () => {
$(`#grailBox.chara${charaId} #auctionButton`).hide();
}
});
postData('chara/auction/list', [chara.Id]).then((d) => {
loadUserAuctions(d);
$(`#grailBox.chara${charaId} #auctionButton2`).on('click', () => {
openAuctionDialog(chara, d);
});
});
});
};
const showEndTime = (chara) => {
const charaId = chara.CharacterId || chara.Id;
const endTime = (chara.End).slice(0, 19);
$(`#grailBox.chara${charaId} .title .text`).append(`<div class="sub" style="margin-left: 20px">结束时间: ${endTime}</div>`);
};
const showHideBlock = (titleSelector, blockSelector, settings) => {
const toggleBlock = () => {
const $linkTitle = $(titleSelector);
const $linkBlock = $(blockSelector);
if ($linkTitle.hasClass('hide_grail_block_title')) {
$linkTitle.removeClass('hide_grail_block_title');
$linkBlock.removeClass('hide_grail_block');
} else {
$linkTitle.addClass('hide_grail_block_title');
$linkBlock.addClass('hide_grail_block');
}
};
if (settings === 'on') toggleBlock();
$(titleSelector).css('cursor', 'pointer').attr('title', '显示/隐藏').off('click').on('click', toggleBlock);
};
const showHideLink = (charaId) => {
const titleSelector = `#grailBox.chara${charaId} .link_desc .link_count`;
const blockSelector = `#grailBox.chara${charaId} #lastLinks`;
const config = Settings.get().hide_link;
showHideBlock(titleSelector, blockSelector, config);
};
const showHideTemple = (charaId) => {
const titleSelector = `#grailBox.chara${charaId} .temple_desc .temple_count`;
const blockSelector = `#grailBox.chara${charaId} #lastTemples`;
const config = Settings.get().hide_temple;
showHideBlock(titleSelector, blockSelector, config);
};
const showHideBoard = (charaId) => {
const titleSelector = `#grailBox.chara${charaId} .board_box .desc .bold`;
const blockSelector = `#grailBox.chara${charaId} .board_box .users, #grailBox.chara${charaId} #loadBoardMemeberButton`;
const config = Settings.get().hide_board;
showHideBlock(titleSelector, blockSelector, config);
};
const addCharaInfo = (cid) => {
try {
const charaId = cid || parseInt($('#grailBox .title .name a')[0].href.split('/').pop());
$(`#grailBox.chara${charaId}`).addClass('tinygrail-helped');
followChara(charaId);
followAuctions(charaId);
showInitialPrice(charaId);
priceWarning(charaId);
mergeorderListHistory(charaId);
launchObserver({
parentNode: document.body,
selector: `#grailBox.chara${charaId} #lastTemples .item`,
successCallback: () => {
showOwnTemple(charaId);
changeTempleCover(charaId);
}
});
launchObserver({
parentNode: document.body,
selector: `#grailBox.chara${charaId} #lastLinks .link.item`,
successCallback: () => {
showOwnLink(charaId);
changeLinkPos(`#grailBox.chara${charaId} #lastLinks`);
}
});
launchObserver({
parentNode: document.body,
selector: `#grailBox.chara${charaId} .board_box .users .user`,
successCallback: () => {
showHideLink(charaId);
showHideTemple(charaId);
showHideBoard(charaId);
}
});
showGallery();
getData(`chara/${charaId}`).then((d) => {
const chara = d.Value;
showAuctionHistory(chara);
showTradeHistory(chara);
showPrice(chara);
showTempleRate(chara);
setBuildTemple(chara);
fixAuctions(chara);
});
} catch (e) { console.log(e); }
};
const addICOInfo = (cid) => {
const charaId = cid || parseInt(location.pathname.split('/').pop());
$(`#grailBox.chara${charaId}`).addClass('tinygrail-helped');
followChara(charaId);
getData(`chara/${charaId}`).then((d) => {
const chara = d.Value;
showEndTime(chara);
setBuildTemple(chara);
setFullFillICO(chara);
});
};
const toggleGrailBox = () => {
const $title = $('#grail li.title');
if ($title.hasClass('hide_grail_title')) {
$title.closest('div.horizontalOptions').next().removeClass('hide_grail');
$('div.grail.page_inner').removeClass('hide_grail');
$title.removeClass('hide_grail_title');
} else {
$title.closest('div.horizontalOptions').next().addClass('hide_grail');
$('div.grail.page_inner').addClass('hide_grail');
$title.addClass('hide_grail_title');
}
};
const showHideGrailBox = () => {
const hide = Settings.get().hide_grail;
if (hide === 'on') {
toggleGrailBox();
}
$('#grail li.title').attr('title', '显示/隐藏小圣杯').on('click', toggleGrailBox);
launchObserver({
parentNode: document.querySelector('#user_home'),
selector: '.grail.page_inner',
successCallback: () => {
console.log('modify page inner');
if ($('#grail li.title').hasClass('hide_grail_title')) {
$('div.grail.page_inner').addClass('hide_grail');
}
},
config: { childList: true },
stopWhenSuccess: false
});
};
setInterval(autoFillTemple, 60 * 60 * 1000);
setInterval(autoBuildTemple, 60 * 60 * 1000);
setInterval(autoFillICO, 30 * 1000);
const listenToGrailBox = (parentNode = document.body, listenIco = true) => {
launchObserver({
parentNode: parentNode,
selector: '#grailBox:not(.tinygrail-helped) .assets_box',
successCallback: () => {
addCharaInfo(parseInt($('#grailBox:not(.tinygrail-helped)').attr('class').match(/chara(\d+)/)[1]));
},
stopWhenSuccess: false
});
if (listenIco) {
launchObserver({
parentNode: parentNode,
selector: '#grailBox:not(.tinygrail-helped) .trade .money',
successCallback: () => {
addICOInfo(parseInt($('#grailBox:not(.tinygrail-helped)').attr('class').match(/chara(\d+)/)[1]));
},
stopWhenSuccess: false
});
}
};
if (location.pathname.startsWith('/rakuen/topic/crt') || location.pathname.startsWith('/character')) {
const parentNode = document.getElementById('subject_info') || document.getElementById('columnCrtB');
listenToGrailBox(parentNode);
} else
if (location.pathname.startsWith('/rakuen/home')) {
if (Settings.get().get_bonus === 'on') getShareBonus();
launchObserver({
parentNode: document.body,
selector: '#topWeek',
successCallback: () => {
hideBonusButton();
showTopWeek();
showGallery();
}
});
launchObserver({
parentNode: document.body,
selector: '#lastLinks.tab_page_item .assets .link.item:not(.swap-checked)',
successCallback: () => {
changeLinkPos('#lastLinks');
$('#lastLinks.tab_page_item .assets .link.item:not(.swap-checked)').addClass('swap-checked');
},
stopWhenSuccess: false
});
listenToGrailBox(document.body);
launchObserver({
parentNode: document.body,
selector: '.grail_index .auction_button',
successCallback: () => {
$(document).off('click', '.grail_index .auction_button');
$(document).on('click', '.grail_index .auction_button', (e) => {
openAuctionDialogSimple($(e.currentTarget).data('chara'));
});
},
stopWhenSuccess: false
});
} else
if (location.pathname.startsWith('/rakuen/topiclist')) {
if ($('.timelineTabs #recentMenu').length > 0) {
loadHelperMenu();
} else {
launchObserver({
parentNode: document.querySelector('.timelineTabs'),
selector: '#recentMenu',
successCallback: () => {
loadHelperMenu();
}
});
}
} else
if (location.pathname.startsWith('/user')) {
launchObserver({
parentNode: document.body,
selector: '#grail',
successCallback: () => {
showHideGrailBox();
showGallery();
}
});
launchObserver({
parentNode: document.body,
selector: '.link_list .grail_list:not([style]) .link .item',
successCallback: () => {
if ($('.link_list .grail_list:not([style]) .link .swapPos').length > 0) return
changeLinkPos('.link_list .grail_list:not([style])');
},
stopWhenSuccess: false
});
listenToGrailBox(document.body);
}
}());