summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.h
blob: 78cac8961284090fd7f075810c1df780912e9143 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 *  File:       tutorial.h
 *  Summary:    Stuff needed for tutorial
 *  Written by: JPEG
 *
 *  Created on 2007-01-11.
 */

#ifndef TUTORIAL_H
#define TUTORIAL_H

// for formatted_string
#include "menu.h"

#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>

void save_tutorial( FILE* fp );
void load_tutorial( FILE* fp );
void init_tutorial_options(void);

bool pick_tutorial(void);
void print_tutorial_menu(unsigned int type);

formatted_string tut_starting_info2();
void tut_starting_screen();
void tutorial_death_screen(void);
void tutorial_finished(void);

void tutorial_prayer_reminder(void);
void tutorial_healing_reminder(void);

void taken_new_item(unsigned char item_type);
void tutorial_first_monster(const monsters& mon);
void tutorial_first_item(const item_def& item);
void learned_something_new(tutorial_event_type seen_what, int x=0, int y=0);

#endif