start(
	module = "initial",
	intro = "intro",
	first_room = "addition1",
	timeout = "timeout",
	time = 90000,
	room_guards = ["data_control"],
        time_guards = ["one_minute"],
	start_timer = "later",
	theme = "moon_theme"
    ).

data_control(
	data_labels = []
    ).

one_minute(
	module = "tgdialogue",
	minutes = 1,
	title = "Only one minute to go!",
	title_sv = "Bara en minut kvar!",
	text = "The meteor is comming! You should be out by now.",
	text_sv = "Meteoren kommer! Du borde vara ute vid det här laget."
    ).

geometric1(
	module = "chooseone",
	html_file = "geometric1.en.html",
	html_file_sv = "geometric1.sv.html",
	button_text = "To the geometric figures",
	button_text_sv = "Till de geometriska figurerna",
	button_help = "Start identifying geometric shapes and figures",
	button_help_sv = "Börja identifiera de geometriska figurerna",
	control_file = "geometric_en.txt",
	control_file_sv = "geometric_sv.txt",
	theme = "black_theme",
	failure = "addition1",
	success = "multiplication1"
    ).

intro(
	module = "intro",
	first_room = "addition1",
	start_timer = "later",
	html_file = "intro.en.html",
	html_file_sv = "intro.sv.html",
	button_text = "First room in the maze",
	button_text_sv = "Första rummet i hinderbanan",
	button_help = "Start playing the game",
	button_help_sv = "Börja spela spelet"
    ).

addition1(
	module = "multsim",
	columns = 2,
	rows = 4,
	data_file = "addition1.txt",
	success = "geometric1",
	theme = "moon_theme",
	html_file = "addition1.en.html",
	html_file_sv = "addition1.sv.html",
	button_text = "Enter the room",
	button_text_sv = "Gå in i rummet",
	button_help = "Start solving the problems",
	button_help_sv = "Börja lösa uppgifterna"
    ).

multiplication1(
	module = "multsim",
	columns = 3,
	rows = 4,
	data_file = "multiplication1.txt",
	data_file44 = "multiplication1.ascii",
	success = "final",
	theme = "moon_theme",
	html_file = "multiplication1.en.html",
	html_file_sv = "multiplication1.sv.html",
	button_text = "Enter the room",
	button_text_sv = "Gå in i rummet",
	button_help = "Start solving the problems",
	button_help_sv = "Börja lösa uppgifterna"
    ).

final(
	module = "final",
	message = "success",
	stop_timer = "yes",
	html_file = "final_success.en.html",
	html_file_sv = "final_success.sv.html",
	button_text = "Exit the game",
	button_text_sv = "Avsluta spelet",
	button_help = "Quit this application",
	button_help_sv = "Avsluta programmet"
    ).

timeout(
	module = "final",
	message = "timeout",
	stop_timer = "yes",
	html_file = "final_timeout.en.html",
	html_file_sv = "final_timeout.sv.html",
	button_text = "Exit the game",
	button_text_sv = "Avsluta spelet",
	button_help = "Quit this application",
	button_help_sv = "Avsluta programmet"
    ).

moon_theme(
        placement = "centered",
        background = [ 0, 0, 0 ],
	text_background = [ 176, 159, 139 ],
	text_foreground = [ 0, 0, 0 ],
	image = "Moon-galileo-color-400x395.jpg",
	big_image = "Moon-galileo-color-800x789.jpg",
    ).

black_theme(
        background = [ 0, 0, 0 ]
    ).
