1
0
Fork 0
mirror of https://gitlab.com/Oreolek/salet.git synced 2024-07-07 01:04:25 +03:00
salet/lib/cycle.coffee

20 lines
670 B
CoffeeScript

# Cycling interface.
# Rooms: cycle through this.cycle_gallery
# Objects: cycle through this.cycle_gallery
cyclelink = (content) ->
return "<a href='./_replacer_cyclewriter' class='cycle' id='cyclewriter'>#{content}</a>"
cycle = (responses, name, character) ->
if typeof responses == "function"
responses = responses()
character.cycle_index ?= [] # initialize with empty array
character.cycle_index[name] ?= 0 # initialize with 0
response = responses[character.cycle_index[name]]
character.cycle_index[name]++
if character.cycle_index[name] == responses.length
character.cycle_index[name] = 0
return cyclelink(response)
module.exports = cycle