MobTaxonomy.js
Revision as of 16:10, 21 April 2017 by BrianFreud (talk | contribs)
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
(function () {
/* Create the needed elements to hold the data. */
$('h2:contains("Taxonomy")').after(`
<br>
<br>
<div id="taxonomyContainer">
<canvas id="relatedMobs" width="800" height="600"></canvas>
</div>`).before(`
<br>
<br>
<h2 id="notableNPCs" style="display:none;">
<span id="Notables">Notable Related NPCs</span>
</h2>`);
/* What mob are we dealing with? */
let mobs = stratics.data.mobs,
mobType = $('#mobileName').text(),
thisPage = document.location.search;
if (!mobType) {
mobType = thisPage.split(':')[1].replace(/ \((?:Centaur|creature|monster)\)/, '');
}
let family = mobs[mobType].family;
/* Create the orgchart. */
let o = new orgChart();
o.setColor('#111', '#FFFF99', '#000', '#1E90FF');
o.setNodeStyle(1, 10, 2);
o.setFont('arial', 14, '#000', 'c');
o.setSize(120, 40, 40, 30);
o.setColor('#3388DD', '#DAA520');
/* Populate the orgchart. */
let countMobs = (name, info) => {
if (!mobs[info.parent].kids) {
mobs[info.parent].kids = 0;
}
mobs[info.parent].kids++;
};
let matcher = new RegExp(`(?:,|^)${family}(?:,|$)`),
mobTreeData = stratics.data.mobTreeData = {},
NPCs = stratics.data.NPCs = {};
let addMob = (name, info) => {
if (!mobTreeData[name]) {
mobTreeData[name] = {
name,
parent: info.parent,
page: !!info.page.length ? info.page : name
};
}
if (info.parent.length && name !== info.parent) { // Climb the family tree; stop if we're at the top.
addMob(info.parent, mobs[info.parent]);
}
};
for (let x in mobs) {
if (mobs[x].family.match(matcher)) {
if (parseInt(mobs[x].bluename, 10)) {
if (!NPCs[mobs[x].parent]) {
NPCs[mobs[x].parent] = {};
}
NPCs[mobs[x].parent][x] = mobs[x];
} else {
countMobs(x, mobs[x]);
}
}
}
for (let x in mobs) {
if (mobs[x].family.match(matcher)) {
if (!parseInt(mobs[x].bluename, 10)) {
addMob(x, mobs[x]);
}
}
}
for (let x in mobTreeData) {
if (mobTreeData.hasOwnProperty(x)) {
let y = mobTreeData[x],
dir = 'u';
if (!!mobs[y.parent] && mobs[y.parent].kids > 1) {
if (!mobs[y.parent].counter) {
mobs[y.parent].counter = 0;
}
let counter = (mobs[y.parent].counter++ % 2);
dir = !counter ? 'r' : 'l';
}
// Tweaks to improve the look of the resulting trees.
if (['Red Solen', 'Gray Goblin', 'Gray Goblin Mage', 'Leather Wolf'].includes(x)) dir = 'r';
if (['Drake'].includes(x)) dir = 'l';
if (y.parent == 'Korpre') dir = 'u';
if (mobType === x) { // 'Highlight' if the current mob being handled is the same as the mob for this page
o.setColor('#3388DD', '#1E90FF');
}
if (stratics.data.categoryMobs.includes(x)) { // Grey-out mob entries that only are categories, not actual mobs themselves.
o.setColor('#3388DD', '#D9D9D9');
o.addNode(y.name, y.parent, dir, y.name);
} else {
o.addNode(y.name, y.parent, dir, y.name, 0, `http://community.stratics.com/w/index.php?title=UO:${y.page}`);
}
o.setColor('#3388DD', '#DAA520'); // Reset the colors
}
}
/* Store the width of the taxonomy container *before* adding the canvas. */
let tc = '#taxonomyContainer';
let $tc = $(tc);
let tcwidth = $tc.width();
/* Render the orgchart. */
o.drawChart('relatedMobs', 'c', true);
/* Scale the orgchart to fit the contents. */
let $canvas = $(`${tc} canvas`);
let ratio = tcwidth / $canvas.width();
if (ratio < 1) {
$tc.css({
transform: `scale(${ratio})`,
'image-rendering': '-webkit-optimize-contrast',
'-ms-interpolation-mode': 'nearest-neighbor'
}).css({
'image-rendering': '-moz-crisp-edges'
}).css({
'image-rendering': '-o-crisp-edges'
}).css({
'image-rendering': 'optimize-contrast'
}).css({
'image-rendering': 'crisp-edges',
marginLeft: `${$tc.parent().offset().left - $tc.offset().left}px`
});
}
/* Build the list of notable NPCs. */
if (Object.keys(stratics.data.NPCs).length > 0) {
let $notables = $('<div style="margin-left:3%;">');
for (let x in stratics.data.NPCs) {
if (stratics.data.NPCs.hasOwnProperty(x)) {
let $ul = $('<ul style="list-style-type:none;list-style-image:none;">');
for (let y in stratics.data.NPCs[x]) {
if (stratics.data.NPCs[x].hasOwnProperty(y)) {
let entry = stratics.data.NPCs[x][y];
let page = !!entry.page.length ? entry.page : y;
$ul.append(`<li><a href="${`http://community.stratics.com/w/index.php?title=UO:${page}`}">${y}</a></li>`);
}
}
$notables.append(`<span style="font-size:140%;color:goldenrod;">${x}s:</span>`).append($ul).append('<br>');
}
}
/* Add the list of notable NPCs. */
$('#notableNPCs').after($notables).show();
/* Update the table of contents */
$('.toclevel-2:last span:first').text('1.6');
$('.toclevel-2:last').before(`<li class="toclevel-2"><a href="/w/index.php${thisPage}#Notables"><span class="tocnumber">1.5</span> <span class="toctext">Noteable Related NPCs</span></a></li>`);
$('.toclevel-1').parent().css('margin', '7px');
}
}());