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
|
/*
* Code created by Thomas Whittaker (RT) for a FreeSpace 2 source code project
*
* You may not sell or otherwise commercially exploit the source or things you
* created based on the source.
*
*/
#ifndef _FSSPEECH_H_
#define _FSSPEECH_H_
enum
{
FSSPEECH_FROM_TECHROOM,
FSSPEECH_FROM_BRIEFING,
FSSPEECH_FROM_INGAME,
FSSPEECH_FROM_MULTI,
FSSPEECH_FROM_MAX
};
bool fsspeech_init();
void fsspeech_deinit();
void fsspeech_play(int type, const char *text);
void fsspeech_stop();
void fsspeech_pause(bool playing);
void fsspeech_start_buffer();
void fsspeech_stuff_buffer(const char *text);
void fsspeech_play_buffer(int type);
bool fsspeech_play_from(int type);
bool fsspeech_playing();
#endif // header define
|