Last active
October 13, 2023 18:27
-
-
Save ymkjp/84820b75ad015edbd936842546540bb1 to your computer and use it in GitHub Desktop.
Annotating bad moves based on Motal's scores
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://mjai.ekyu.moe/report/888288d74f7ed24c.html#kyoku-6-0 | |
*/ | |
(async ()=>{ | |
const THRESHOLD = 5.0 | |
const createSpan = (text) => { | |
const suggestion = document.createElement("span") | |
suggestion.innerText = text | |
suggestion.style.background = `#ffd5d5` | |
suggestion.style.margin = `auto .5rem` | |
suggestion.style.fontWeight = `bold` | |
return suggestion | |
} | |
const scores = [...document.querySelectorAll(`body section details.entry`)].map((element)=> { | |
const tile = element.querySelector(`span svg.tile use`) | |
if (tile === null) { | |
return null | |
} | |
// '#pai-9s' | |
const score = element | |
.querySelector(`table [href*="${tile.href.baseVal}"]`) | |
.closest(`tr`) | |
.querySelector(`td:nth-child(3)`) | |
if (parseFloat(score.textContent) < THRESHOLD) { | |
const suggestion = createSpan(score.textContent) | |
element.querySelector(`:scope > span`).appendChild(suggestion) | |
} else { | |
element.removeAttribute(`open`) | |
} | |
return score.textContent | |
}).filter(score => score !== null) | |
const badMoves = scores.filter(score => score < THRESHOLD).length | |
const totalMoves = scores.length | |
const metrics = createSpan( | |
`${badMoves}/${totalMoves} (${Math.round((badMoves / totalMoves) * 100)}%)` | |
) | |
document.querySelector("body > details.collapse:nth-child(6) > summary").appendChild(metrics) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment