voyageur-review/game/begin.coffee

44 lines
1.4 KiB
CoffeeScript
Raw Normal View History

2016-01-15 03:06:03 +02:00
markdown = require('../../lib/markdown.coffee')
room = require("../../lib/room.coffee")
obj = require('../../lib/obj.coffee')
dialogue = require('../../lib/dialogue.coffee')
oneOf = require('../../lib/oneOf.coffee')
require('../../lib/interface.coffee')
undum = require('../../lib/undum.js')
2016-01-07 13:27:57 +02:00
2016-01-15 03:06:03 +02:00
undum.game.id = "your-game-id-here"
2016-01-07 13:27:57 +02:00
undum.game.version = "1.0"
2016-01-15 03:06:03 +02:00
###
Element helpers. There is no real need to build monsters like a().id("hello")
because you won't use them as is. It does not make sense in context, the
author has Markdown and all utilities to *forget* about the markup.
###
way_to = (content, ref) ->
return "<a href='#{ref}' class='way'>#{content}</a>"
textlink = (content, ref) ->
return "<a href='./_writer_#{ref}' class='once'>#{content}</a>"
actlink = (content, ref) ->
return "<a href='./#{ref}' class='once'>#{content}</a>"
textcycle = (content, ref) ->
return "<a href='./_replacer_#{ref}' class='cycle' id='#{ref}'>#{content}</a>"
2016-01-07 13:27:57 +02:00
# usage: writemd( system, "Text to write")
writemd = (system, text) ->
2016-01-15 03:06:03 +02:00
text = markdown(text)
2016-01-07 13:27:57 +02:00
system.write(text)
2016-01-15 03:06:03 +02:00
# The first room of the game.
# For accessibility reasons the text is provided in HTML, not here.
room "start",
2016-01-07 13:27:57 +02:00
content: """
2016-01-15 03:06:03 +02:00
""",
choices: "#start"
2016-01-07 13:27:57 +02:00
2016-01-15 03:06:03 +02:00
# This function needs to go after the start room.
2016-01-07 13:27:57 +02:00
is_visited = (situation) ->
2016-01-15 03:06:03 +02:00
place = undum.game.situations[situation]
if place
return Boolean place.visited
2016-01-07 13:27:57 +02:00
return 0