Skip to content

Instantly share code, notes, and snippets.

@jacobmakarsky
Created April 29, 2020 23:16
Show Gist options
  • Save jacobmakarsky/fc1098be194a0727a870083442623538 to your computer and use it in GitHub Desktop.
Save jacobmakarsky/fc1098be194a0727a870083442623538 to your computer and use it in GitHub Desktop.
function showTextNode(textNodeIndex) {
const textNode = textNodes.find(textNode => textNode.id === textNodeIndex)
textElement.innerText = textNode.text
while (optionButtonsElement.firstChild) {
optionButtonsElement.removeChild(optionButtonsElement.firstChild)
}
textNode.options.forEach(option => {
if (showOption(option)) {
const button = document.createElement('button')
button.innerText = option.text
button.classList.add('btn')
button.addEventListener('click', () => selectOption(option))
optionButtonsElement.appendChild(button)
}
})
}
function showOption(option) {
return option.requiredState == null || option.requiredState(state)
}
function selectOption(option) {
const nextTextNodeId = option.nextText
if (nextTextNodeId <= 0) {
return startGame()
}
state = Object.assign(state, option.setState)
showTextNode(nextTextNodeId)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment