// ==UserScript==
// @name TW Friends
// @name:el TW Friends
// @version 0.16
// @description Friend Management for The West Events
// @description:el Διαχείριση Φίλων για τις Εκδηλώσεις του The West
// @author hiroaki
// @include http://*.the-west.*/game.php*
// @include https://*.the-west.*/game.php*
// @grant none
// @namespace https://greasyfork.org/users/3197
// ==/UserScript==
function hiroFriendsScript(fn) {
var script = document.createElement('script');
script.setAttribute("type", "application/javascript");
script.textContent = '(' + fn + ')();';
document.body.appendChild(script);
document.body.removeChild(script);
}
hiroFriendsScript (function() {
var VERSION = 0.16;
var installURL = "https://greasyfork.org/scripts/2992-tw-friends";
var refreshMs = 2 * 60 * 1000; // 2 minutes
HiroFriends = {
version: VERSION,
storageItem: "HiroFriends.version",
cdnBase: '',
eventName : '',
eventInfo : {},
eventEndStamp : 0,
friends : [],
interval: false,
timeLeft : 0,
total : 0,
avail: 0,
log: { lastLog: 0, friendLog: {}, count_friends: 0, count_job: 0, count_duel: 0, count_npc: 0, count_fort: 0, count_mpi: 0, count_build: 0, count_other: 0, count_reset: 0, count_bribe: 0, times_reset: 0, times_bribe: 0, received: 0, used: 0 },
spanCounter: $("<span />", { id: "hiro_friends_counter", style: "position: absolute; right: 5px; color: #f8c57c; font-size: 13pt; height: 25px; line-height: 25px; bottom: 0px" }),
spanTimeLeft: $("<span />", { id: "hiro_event_timeleft", style: "position: absolute; left: 5px; color: #d3d3d3; font-size: 11px; height: 25px; line-height: 25px" })
};
HiroFriends.init = function(eventName) {
if (undefined === Game.sesData[eventName] || undefined === Game.sesData[eventName].friendsbar) return false;
HiroFriends.eventName = eventName;
HiroFriends.eventInfo = Game.sesData[eventName].friendsbar;
if (undefined === Game.sesData[HiroFriends.eventName].meta.end) return false;
HiroFriends.eventEndStamp = (buildTimestamp(Game.sesData[HiroFriends.eventName].meta.end) - Game.serverTimeDifference) / 1000;
HiroFriends.timeLeft = HiroFriends.eventEndStamp - Game.getServerTime();
if (HiroFriends.timeLeft < 0) return false;
HiroFriends.cdnBase = (undefined === Game.cdnURL) ? "https://westzzs.innogamescdn.com" : Game.cdnURL;
HiroFriends.getLog();
var eventImage = HiroFriends.cdnBase + "/images/interface/friendsbar/events/" + HiroFriends.eventName + ".png"; // event based
var divContainer = $("<div />", { id: "hiro_friends_container", style: "position: absolute; top: 32px; right: 50%; margin-right: 120px; z-index: 16; width: 180px; height: 36px; text-align: left; text-shadow: 1px 1px 1px #000; background: url('"+HiroFriends.cdnBase+"/images/interface/custom_unit_counter_sprite.png?2') no-repeat scroll 50% 0px transparent;" })
var divCounter = $("<div />", { id: "hiro_friends", style: "background: url('"+HiroFriends.cdnBase+"/images/interface/custom_unit_counter_sprite.png?2') no-repeat scroll 0 -36px rgba(0, 0, 0, 0); height: 25px; left: 32px; line-height: 25px; padding: 0 5px; position: absolute; top: 3px; width: 105px; z-index: 1; text-shadow: 1px 1px 1px #000;" });
var divRefresh = $("<div />", { style: "width: 24px; height: 24px; position: absolute; left: 8px; top: 3px; z-index: 3; padding: 4px 0px 0px 4px;" });
var spanRefresh = $("<span >", { style: "display: inline-block; width: 20px; height: 20px; cursor: pointer; background: url('"+HiroFriends.cdnBase+"/images/tw2gui/window/window2_buttons.png?5') repeat scroll 0px -20px transparent;" });
var spanSend = $("<span />", { style: "width: 26px; height: 26px; left: auto; position: absolute; right: 7px; top: 2px; z-index: 3;" });
var imageSend = $("<img />", { src: eventImage, title: HiroFriends.eventInfo.label, style: "width: 26px; height: 26px; cursor: pointer" });
divContainer.append(divRefresh.append(spanRefresh), spanSend.append(imageSend), divCounter.append(HiroFriends.spanTimeLeft, HiroFriends.spanCounter)).appendTo("#user-interface");;
spanRefresh.hover(function() { $(this).css("background-position", ""); }, function() { $(this).css("background-position", "0px -20px"); });
spanRefresh.click(function() { HiroFriends.spanCounter.slideUp(500, function() { HiroFriends.fetch(); }).slideDown(1500); });
imageSend.click(function() { HiroFriends.open(); });
HiroFriends.updateTimer();
if(typeof(Storage) !== "undefined") {
var previousVersion = (localStorage.getItem(HiroFriends.storageItem) === null) ? 0 : parseFloat(localStorage.getItem(HiroFriends.storageItem));
localStorage.setItem(HiroFriends.storageItem, HiroFriends.version);
// if (previousVersion && HiroFriends.version > previousVersion) var msg=new west.gui.Dialog("TW Friends", "Script upgraded to version "+HiroFriends.version, west.gui.Dialog.SYS_WARNING).addButton("OK").show();
}
$("<style>.hf_idx { width: 40px; text-align: right; padding-right: 8px; } .hf_player { width: 250px; } .hf_action { width: 200px; } .hf_log { width: 100px; text-align: right; padding-right: 8px; } .hf_delete { width: 40px; text-align: center; } div.tbody .hf_idx, div.tbody .hf_delete { background-image: url('"+HiroFriends.cdnBase+"/images/tw2gui/table/cell_shadow_y.png'); }</style>").appendTo("head");
return true;
}
HiroFriends.fetch = function() {
if (HiroFriends.interval !== false) clearInterval (HiroFriends.interval);
var event_times = {};
var friends = [], total = 0, avail = 0;
var server_time = Game.getServerTime(), activation_time, friend_time;
if (HiroFriends.timeLeft < 0) {
$("#hiro_friends_container").slideUp(5000);
throw "Event is over";
}
return $.post( "/game.php?window=friendsbar&mode=search", { search_type: "friends" } , function (data) {
$.each(data.eventActivations, function (key, val) {
if (val.event_name == HiroFriends.eventName) event_times[val.friend_id] = val.activation_time;
});
$.each(data.players, function (key, val) {
if (val.name !== Character.name) {
activation_time = (event_times[val.player_id] !== undefined) ? event_times[val.player_id]: 0;
friend_time = activation_time + HiroFriends.eventInfo.cooldown - server_time;
friends.push ({ id: val.player_id, name: val.name, time: friend_time });
++ total;
if (friend_time <= 0) ++ avail;
}
});
if (total) friends.sort(HiroFriends.timeCompare);
HiroFriends.friends = friends;
HiroFriends.avail = avail;
HiroFriends.total = total;
HiroFriends.interval = setInterval(function() { HiroFriends.fetch(); }, refreshMs);
HiroFriends.update();
});
}
HiroFriends.getLog = function() {
var hasNext = true;
var limit = 100;
var page = 1;
var count = 0;
var details;
var maxDate = HiroFriends.log.lastLog;
while (hasNext) {
$.ajax({ type: "POST", url: "/game.php?window=ses&mode=log", data: { ses_id: HiroFriends.eventName, page: page, limit: limit }, async: false, success: function(data) {
hasNext = data.hasNext;
limit = data.limit;
page = data.page + 1;
$.each(data.entries, function (key, val) {
count = parseInt(val.value);
if (val.date <= HiroFriends.log.lastLog) {
hasNext = false;
return false;
}
if (val.date > maxDate) maxDate = val.date;
switch (val.type) {
case "friendDrop":
details = JSON.parse(val.details);
if (undefined === HiroFriends.log.friendLog[details.player_id]) HiroFriends.log.friendLog[details.player_id] = count;
else HiroFriends.log.friendLog[details.player_id] += count;
HiroFriends.log.count_friends += count;
HiroFriends.log.received += count;
break;
case "jobDrop": HiroFriends.log.count_job += count; HiroFriends.log.received += count; break;
case "buildDrop": HiroFriends.log.count_build += count; HiroFriends.log.received += count; break;
case "duelDrop": HiroFriends.log.count_duel += count; HiroFriends.log.received += count; break;
case "duelNPCDrop": HiroFriends.log.count_npc += count; HiroFriends.log.received += count; break;
case "battleDrop": HiroFriends.log.count_fort += count; HiroFriends.log.received += count; break;
case "adventureDrop": HiroFriends.log.count_mpi += count; HiroFriends.log.received += count; break;
case "wofPay":
HiroFriends.log.used += count;
if (val.details == "timerreset") {
HiroFriends.log.count_reset += count;
++ HiroFriends.log.times_reset;
}
else if (val.details == "sneakyshot") {
HiroFriends.log.count_bribe += count;
++ HiroFriends.log.times_bribe;
}
break;
default:
HiroFriends.log.count_other += count;
HiroFriends.log.received += count;
}
});
}});
}
HiroFriends.log.lastLog = maxDate;
}
HiroFriends.open = function() {
if (!WestUi.FriendsBar.hidden) WestUi.FriendsBar.toggle();
HiroFriends.getLog();
return HiroFriends.fetch().done(function() {
var maindiv = $('<div class="hiro_friends_maindiv"></div>');
var hiroTable = new west.gui.Table().appendTo(maindiv).addColumn("hf_idx").addColumn("hf_player").addColumn("hf_action").addColumn("hf_log").addColumn("hf_delete").appendToCell("head", "hf_idx", ' ').appendToCell("head", "hf_player", '<img src="'+HiroFriends.cdnBase+'/images/icons/user.png" alt="" />').appendToCell("head", "hf_action", HiroFriends.eventInfo.label).appendToCell("head","hf_log",'<img src="'+HiroFriends.cdnBase+'/images/icons/watch.png" alt="" />').appendToCell("head", "hf_delete", ' ');
var idx = 1;
$.each(HiroFriends.friends, function (key, val) {
var rcv = 0, actionCell;
rcv = (undefined === HiroFriends.log.friendLog[val.id]) ? 0 : HiroFriends.log.friendLog[val.id];
if (val.time > HiroFriends.timeLeft) actionCell = '(Next Year)';
else if (val.time > 0) actionCell = '('+val.time.formatDurationBuffWay()+')';
else {
actionCell = $('<a href="javascript:void();">'+HiroFriends.eventInfo.label+'</a>').click({ id: val.id, ev: HiroFriends.eventName }, function (e) {
$(this).parent().parent().remove();
Ajax.remoteCall("friendsbar", "event", { player_id: val.id, event: HiroFriends.eventName }, function (response) {
if (response.error) return MessageError(response.msg).show();
MessageSuccess(response.msg).show();
if (HiroFriends.avail) -- HiroFriends.avail;
HiroFriends.update();
if (WestUi.FriendsBar.friendsBarUi !== null)
WestUi.FriendsBar.friendsBarUi.friendsBar.eventActivations[val.id][HiroFriends.eventName] = response.activationTime;
});
});
}
hiroTable.appendRow(null, 'hiroFriendRow_'+val.id)
.appendToCell(-1, "hf_idx", idx)
.appendToCell(-1, "hf_player", '<a href="javascript:void(PlayerProfileWindow.open('+val.id+'));">' + val.name + '</a>')
.appendToCell(-1, "hf_action", actionCell)
.appendToCell(-1, "hf_log", rcv)
.appendToCell(-1, "hf_delete", '<a href="javascript:void(FriendslistWindow.deleteFromFriendList('+val.id+'));"><img style="width:16px; height: 16px;" title="Remove Friend" src="'+HiroFriends.cdnBase+'/images/icons/delete.png" alt="delete" /></a>');
++ idx;
});
hiroTable.appendToCell('foot', 'hf_player', '<a target="_blank" href="'+installURL+'">TW Friends</a> version <b>' + HiroFriends.version.toFixed(2) + '</b>');
var statsTable = $('<table style="margin: auto;"><tr style="vertical-align: top;"><td>Received:</td><td style="color: #006600; font-weight: bold; text-align: right; padding-right: 8pt;">'+HiroFriends.log.received+'</td><td>Friends: <b>'+HiroFriends.log.count_friends+'</b>, Jobs: <b>'+HiroFriends.log.count_job+'</b>, Fort Battles: <b>'+HiroFriends.log.count_fort+'</b>, Adventures: <b>'+HiroFriends.log.count_mpi+'</b>,<br />Duels: <b>'+HiroFriends.log.count_duel+'</b>, NPC Duels: <b>'+HiroFriends.log.count_npc+'</b>, Construction: <b>'+HiroFriends.log.count_build+'</b>, Other: <b>'+HiroFriends.log.count_other+'</b></td></tr><tr><td>Used:</td><td style="color: #660000; font-weight: bold; text-align: right; padding-right: 8pt;">'+HiroFriends.log.used+'</td><td>Reset Timer: <b>'+HiroFriends.log.count_reset+'</b> (#'+HiroFriends.log.times_reset+'), Bribe: <b>'+HiroFriends.log.count_bribe+'</b> (#'+HiroFriends.log.times_bribe+')</td></tr></table>');
statsTable.appendTo(maindiv);
var hiroWindow = wman.open("HiroFriends_"+HiroFriends.eventName, null, "noreload").setMiniTitle(HiroFriends.eventInfo.label).setTitle(HiroFriends.eventInfo.label);
hiroWindow.appendToContentPane(maindiv);
});
}
HiroFriends.timeCompare = function(a, b) {
if (a.time < b.time) return -1;
if (a.time > b.time) return 1;
return 0;
}
HiroFriends.updateTimer = function() {
HiroFriends.timeLeft = HiroFriends.eventEndStamp - Game.getServerTime();
if (HiroFriends.timeLeft <= 0) {
HiroFriends.spanTimeLeft.html('Finito');
HiroFriends.fetch();
return;
}
HiroFriends.spanTimeLeft.html(HiroFriends.timeLeft.formatDurationBuffWay());
var seconds = 0;
if (HiroFriends.timeLeft < 70) seconds = 1;
else if (HiroFriends.timeLeft < 3660) seconds = 10;
else if (HiroFriends.timeLeft < 86520) seconds = 60;
else seconds = 120;
setTimeout (function() { HiroFriends.updateTimer(); }, seconds * 1000);
}
HiroFriends.update = function() {
HiroFriends.spanCounter.html(HiroFriends.avail+' <span style="color: #d3d3d3; font-size: 11px;">/ '+HiroFriends.total+'</span>');
}
HiroFriends.scriptInit = function(tries, maxTries) {
if (tries >= maxTries) return false;
if (Game && Game.loaded && undefined !== west.events && undefined != west.events.Manager) {
var westEvents = west.events.Manager.getRunningEvents();
var eventName;
if ("object" == typeof westEvents) $.each (westEvents, function (key, val) {
if (undefined !== val['id']) {
eventName = val['id'];
if ('SES Easter event' == eventName) eventName = 'Easter';
else if ('SES: ' == eventName.substr(0,5)) eventName = eventName.substr(5);
if ('Hearts' == eventName || 'Easter' == eventName || 'Independence' == eventName || 'DayOfDead' == eventName) {
if (HiroFriends.init(eventName)) HiroFriends.fetch();
return false;
}
}
});
return true;
}
++ tries;
setTimeout(function() { HiroFriends.scriptInit(tries, maxTries); }, tries * 1000);
}
HiroFriends.scriptInit(0, 100);
});