2021-04-24 07:13:33 +00:00
// ['Title', ["type of paper","file name"]]
const pdfs = new Map ( [
2021-06-17 05:53:23 +00:00
[ "Wynncraft Damage Calculation" ,
[ "Mechanics" , "Damage_calculation" , "hppeng, ferricles, et al." , "A complete guide to Wynncraft's damage calculations. Includes formulas, tested game values, and worked examples."
] ] ,
[ "Crafted Weapon Powder Mechanics" ,
[ "Mechanics" , "Crafted_Weapon_Powder_Mechanics" , "ferricles" , "A short guide to the mechanics of powder application on crafted weapons. Includes formulas and a worked example."
] ] ,
[ "Spell Costs" ,
[ "Mechanics" , "Spell_Costs" , "Bart MC, ferricles" , "A documentation of spell costs and the mechanics of spell cost reduction."
] ] ,
2021-04-24 07:13:33 +00:00
//[title ,[genre, filename, author(s), abstract/desc]]
] ) ;
2021-06-17 05:53:23 +00:00
const changelog = new Map ( [
2022-05-21 04:34:24 +00:00
[ "Build Version 6 (20 May 2022)" ,
[
" + Added Tomes" ,
" + Changed Build encode and decode schemes to account for tomes" ,
]
] ,
2022-05-13 23:39:00 +00:00
[ "WynnBuilder^2 (12 May 2022)" ,
[
" + Switched most of Wynnbuilder over to Bootstrap" ,
" - Old UI" ,
]
] ,
2021-06-17 05:53:23 +00:00
//[title ,[genre, filename, author(s), abstract/desc]]
] ) ;
2022-05-23 06:47:08 +00:00
2021-06-17 05:53:23 +00:00
const sections = [ "Changelog" , "Mechanics" , "History" ]
2021-04-24 07:13:33 +00:00
function init ( ) {
initSections ( ) ;
for ( [ title , pdf ] of pdfs ) {
let sec = document . getElementById ( pdf [ 0 ] + "-section" ) ;
if ( sec ) {
let pre = document . createElement ( "pre" ) ;
let firstline = document . createElement ( "div" ) ;
firstline . style . display = "flex" ;
firstline . style . justifyContent = "space-between" ;
let titleElem = document . createElement ( "p" ) ;
titleElem . textContent = title ;
let a = document . createElement ( "a" ) ;
a . href = "./pdfs/" + pdf [ 1 ] + ".pdf" ;
a . target = "_blank" ;
a . textContent = pdf [ 1 ] + ".pdf" ;
a . classList . add ( "link" ) ;
a . style . display = "flex-end" ;
let secondline = document . createElement ( "div" ) ;
2021-05-06 03:12:23 +00:00
secondline . style . display = "flex" ;
2021-04-24 07:13:33 +00:00
let ul = document . createElement ( "ul" ) ;
ul . style . wordBreak = "break-word" ;
let li = document . createElement ( "li" ) ;
let div = document . createElement ( "div" ) ;
if ( pdf [ 2 ] ) {
li . textContent = "Author(s): " + pdf [ 2 ] ;
} else {
li . textContent = "Author(s): Unknown" ;
}
ul . appendChild ( li ) ;
li = document . createElement ( "li" ) ;
div = document . createElement ( "div" ) ;
if ( pdf [ 3 ] ) {
div . textContent = "Description: " + pdf [ 3 ] ;
} else {
div . textContent = "Description: None" ;
}
ul . appendChild ( li ) ;
li . appendChild ( div ) ;
pre . appendChild ( firstline ) ;
firstline . appendChild ( titleElem ) ;
firstline . appendChild ( a ) ;
pre . appendChild ( secondline ) ;
secondline . appendChild ( ul ) ;
sec . appendChild ( document . createElement ( "br" ) ) ;
sec . appendChild ( pre ) ;
} else {
console . log ( "Invalid paper type for " + title + ": " + pdf [ 0 ] ) ;
}
}
2021-06-17 05:53:23 +00:00
let sec = document . getElementById ( "Changelog-section" ) ;
for ( [ version , changes ] of changelog ) {
let pre = document . createElement ( "pre" ) ;
let firstline = document . createElement ( "div" ) ;
firstline . style . display = "flex" ;
firstline . style . justifyContent = "space-between" ;
let titleElem = document . createElement ( "p" ) ;
titleElem . textContent = "Version " + version ;
pre . appendChild ( firstline ) ;
firstline . appendChild ( titleElem ) ;
sec . appendChild ( document . createElement ( "br" ) ) ;
sec . appendChild ( pre ) ;
let ul = document . createElement ( "ul" ) ;
ul . style . listStyle = "none" ;
for ( change of changes ) {
let li = document . createElement ( "li" ) ;
li . textContent = change ;
if ( change . substring ( 0 , 3 ) === " + " ) {
li . classList . add ( "positive" ) ;
} else if ( change . substring ( 0 , 3 ) === " - " ) {
li . classList . add ( "negative" ) ;
} else {
}
ul . appendChild ( li ) ;
}
pre . appendChild ( ul ) ;
}
2021-04-24 07:13:33 +00:00
}
function initSections ( ) {
let main = document . getElementById ( "main" ) ;
for ( const sec of sections ) {
let div = document . createElement ( "div" ) ;
2022-05-13 23:39:00 +00:00
div . classList . add ( "row" , "my-2" ) ;
2021-04-24 07:13:33 +00:00
div . id = sec ;
let secspan = document . createElement ( "span" ) ;
2022-05-23 06:47:08 +00:00
secspan . classList . add ( "row" , "up" , "clickable" ) ;
2021-04-24 07:13:33 +00:00
div . appendChild ( secspan ) ;
2022-05-13 23:39:00 +00:00
let title = document . createElement ( "div" ) ;
title . classList . add ( "col-10" , "item-title" , "text-start" )
2021-04-24 07:13:33 +00:00
title . style . margin = "0 0 0" ;
title . textContent = "Section: " + sec ;
2022-05-13 23:39:00 +00:00
let indicator = document . createElement ( "div" ) ;
indicator . classList . add ( "col-auto" , "fw-bold" , "box-title" ) ;
indicator . textContent = "V" ;
2021-04-24 07:13:33 +00:00
secspan . appendChild ( title ) ;
secspan . appendChild ( indicator ) ;
let section = document . createElement ( "section" ) ;
2022-05-13 23:39:00 +00:00
section . classList . add ( "toggle-section" ) ;
2021-04-24 07:13:33 +00:00
section . id = sec + "-section" ;
section . style . display = "none" ;
div . appendChild ( section ) ;
main . appendChild ( div ) ;
secspan . addEventListener ( "click" , function ( ) {
if ( secspan . classList . contains ( "up" ) ) {
secspan . classList . remove ( "up" ) ;
secspan . classList . add ( "down" ) ;
2022-05-13 23:39:00 +00:00
indicator . style . transform = 'rotate(180deg)' ;
2021-04-24 07:13:33 +00:00
section . style . display = "" ;
} else {
secspan . classList . remove ( "down" ) ;
secspan . classList . add ( "up" ) ;
2022-05-13 23:39:00 +00:00
indicator . style . transform = 'rotate(0deg)' ;
2021-04-24 07:13:33 +00:00
section . style . display = "none" ;
}
} ) ;
}
}
init ( ) ;