]> icculus.org git repositories - taylor/freespace2.git/blob - include/missiontraining.h
Initial revision
[taylor/freespace2.git] / include / missiontraining.h
1 /*
2  * $Logfile: /Freespace2/code/Mission/MissionTraining.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Special code for training missions.  Stuff like displaying training messages in
8  * the special training window, listing the training objectives, etc.
9  *
10  * $Log$
11  * Revision 1.1  2002/05/03 03:28:12  root
12  * Initial revision
13  *
14  * 
15  * 2     10/07/98 10:53a Dave
16  * Initial checkin.
17  * 
18  * 1     10/07/98 10:49a Dave
19  * 
20  * 7     4/16/98 4:33p Hoffoss
21  * Added support for detecting instructor terminating training due to
22  * player shooting at him.
23  * 
24  * 6     4/15/98 5:25p Lawrance
25  * extern Training_msg_visible
26  * 
27  * 5     1/05/98 4:04p Hoffoss
28  * Changed training-msg sexp operator to allow it to control the length of
29  * time a message is displayed for.
30  * 
31  * 4     10/17/97 6:39p Hoffoss
32  * Added delayability to key-pressed operator and training-msg operator.
33  * 
34  * 3     10/10/97 6:15p Hoffoss
35  * Implemented a training objective list display.
36  * 
37  * 2     10/09/97 4:44p Hoffoss
38  * Dimmed training window glass and made it less transparent, added flags
39  * to events, set he stage for detecting current events.
40  * 
41  * 1     10/09/97 2:41p Hoffoss
42  *
43  * $NoKeywords: $
44  */
45
46 extern int Training_msg_method;
47 extern int Training_num_lines;
48 extern int Training_msg_visible;
49 extern int Training_failure;
50
51 void training_mission_init();
52 void training_mission_shutdown();
53 void training_check_objectives();
54 void message_training_que(char *text, int timestamp, int length = -1);
55 void message_training_setup(int num, int length = -1);
56 void message_training_display();
57 void message_translate_tokens(char *buf, char *text);
58 void training_fail();
59