wordle-clone/site/assets/scripts/models/words.js

64 lines
1.4 KiB
JavaScript
Raw Normal View History

2025-01-24 22:45:55 +00:00
function binSearch(list, word) {
let first = 0;
let last = list.length;
for (;;) {
let ptr = (first + (last - first) / 2) | 0;
if (list[ptr] === word) {
return true;
} else if (last - first <= 1) {
return false;
} else if (list[ptr] > word) {
last = ptr;
} else if (list[ptr] < word) {
first = ptr;
}
}
}
export class WordSource {
constructor() {
this._wordData = null;
this._currentWord = null;
}
isWord(word) {
let list = this._wordData.words[word.length.toString()];
if (!list) {
return false;
}
return binSearch(list, word);
}
async getCurrentWord() {
if (this._currentWord) {
return this._currentWord;
}
let words = await this._fetchAllWordsIfNecessary();
this._currentWord = words.words["4"][7];
return this._currentWord;
}
async nextWord() {
if (this._currentWord >= this._words.length - 1) {
return false;
}
this._currentWord += 1;
return true;
}
async _fetchAllWordsIfNecessary() {
if (this._wordData) {
return this._wordData;
}
let res = await fetch("/assets/data/words.json");
this._wordData = await res.json();
return this._wordData;
}
}