Vanity_Blade
User since Oct 28, 2022
1 Posts
HTML
Post Statistics
Recent Posts
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Fallout Terminal Solver</title><script>'use strict';var wordList = [];var wordLength;function populateList() {let wordStr = document.getElementById("words").value.toLowerCase() + " "; //Gets the word list, converts it to lowercase, and adds a trailing space for laterlet curWord = "";let compLtr = "";for(let i = 0; i < wordStr.length; i++){compLtr = wordStr.charAt(i);if(compLtr.toLowerCase() != compLtr.toUpperCase()){ //Handy comparison to tell if a character is a letter or notcurWord += compLtr;} else {if(curWord){ //If the program hits a space/comma and there IS a word to push to the list, push itwordList.push({word: curWord, variance: 0});curWord = "";} //Otherwise, there are multiple non-words next to each other (like two spaces) and these can be ignored}}if(wordList.length == 0) return;wordLength = wordList[0].word.length;return;}//Calculates the similSrity between two wordsfunction calculateSimilarity(w1, w2) {var ans = 0;for (let i = 0; i < w1.length; i++) {if (w1[i] == w2[i]) {ans += 1;}}return ans;}//Determines the variance in a set of numbersfunction calculateVariance(numarr) {let variance = 0;//Get the mean of numarrnumarr.forEach(val => {variance += val;});variance /= numarr.length;//Store each value minus the mean into numarr, then square each valuefor (let i = 0; i < numarr.length; i++) {numarr[i] -= variance;numarr[i] *= numarr[i];}//Get the sum of the squaresvariance = 0;numarr.forEach(val => {variance += val;});//Normally, you would divide the sum of squares by numarr.length, but that can be omitted in this case because we only care about which word has the smallest variance (which wouldn't change)return variance;}//Mathematically determines the best word to pick to narrow down the list quicklyfunction pickBestWord() {//Generates a list of match numbers starting at 0 for each possible number of matchesvar matchNumbers = [];for (let i = 0; i < wordLength; i++) {matchNumbers.push(0);}for (var i = 0; i < wordList.length; i++) {matchNumbers = matchNumbers.map((a) => {return 0;});//This block generates the match numbers for the ith word in the listfor (var k = 0; k < wordList.length; k++) {if (i == k) continue; //No need to compare a word against itselflet similarity = calculateSimilarity(wordList[i].word, wordList[k].word);matchNumbers[similarity] += 1;}//Then we calculate the variance in those numbers and save that to the object in wordlistwordList[i].variance = calculateVariance(matchNumbers);}//Figure out the best word and return its indexlet lowestVariance = wordList[0].variance;let bestWordIndex = 0;wordList.forEach((val, index) => {if (val.variance < lowestVariance) {bestWordIndex = index;lowestVariance = val.variance;}});return bestWordIndex;}//Removes a set of words from the list using a set similarityfunction reevaluateList(indexChosen, similarity) {var wordToCheck = wordList[indexChosen].word;//Every word that doesn't have the correct similarity to the chosen word is removed from the list (including the chosen word)for (let i = 0; i < wordList.length; i++) {if (calculateSimilarity(wordToCheck, wordList[i].word) != similarity) {wordList.splice(i, 1);i--;}}return;}//----------------------------//// runtime ////----------------------------//function beginSolve(){if(wordList.length == 0) { //wordList has not been populated yetpopulateList();if(wordList.length != 0){let bes = pickBestWord();document.getElementById("resultsPane").innerHTML = 'Try the word "' + wordList[bes].word + '" then enter its similarity in the box above and hit "solve"';} else {//In the event that the user pressed solve before inputting any wordsdocument.getElementById("resultsPane").innerHTML = 'Please input a list of words in the word list before pressing "solve"';}} else if(!document.getElementById("sim").value){ //Should be the first things that happens after pressing solvelet bes = pickBestWord();document.getElementById("resultsPane").innerHTML += 'Try the word "' + wordList[bes].word + '" then enter its similarity in the box above and hit "solve"';} else { //We can start eliminating words and getting a resultlet bes = pickBestWord();let input = document.getElementById("sim").value;reevaluateList(bes, input);if (wordList.length == 1) {document.getElementById("resultsPane").innerHTML = 'Done! The correct word is ' + wordList[0].word + '\n';} else {document.getElementById("resultsPane").innerHTML = "List of remaining possible words: ";wordList.forEach(entry => {document.getElementById("resultsPane").innerHTML += entry.word + " ";})bes = pickBestWord();document.getElementById("resultsPane").innerHTML += '\n\n';document.getElementById("resultsPane").innerHTML += 'Try the word "' + wordList[bes].word + '" then enter its similarity in the box above and hit "solve"';}}}</script></head><body><header><p style="font-variant: small-caps">The Fallout Terminal Solver</p></header><form><input placeholder="Initial word list" id="words" type="text" size="98"><br><input placeholder="Similarity (given in-game)" id="sim" type="number"><br></form><button type="button" onclick="beginSolve()">Solve</button><br><textarea id="resultsPane" readonly rows="20" cols="100">The initial word list should be all of the words that appear on the terminal, separated by spaces or any other non-letter character</textarea></body></html>
Posts
No Posts Found
It looks like Vanity_Blade hasn't uploaded a post yet
Likes
Please Log In
You must be authenticated to view a user's likes
Profile Privacy
Change Password
Multi-Factor Authentication
Multi-Factor Authentication (MFA) is an authentication method that requires you to provide two or more verification factors to gain access to your account. In addition to username and password, MFA requires you to verify your email on every login, which decreases the likelihood of someone stealing your account.
Delete Account
Deleting your account is permanent. All data associated with your account will be lost.