File: sound.h

package info (click to toggle)
gnubg 1.05.002-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,412 kB
  • ctags: 9,788
  • sloc: ansic: 95,352; xml: 15,021; sh: 12,502; yacc: 700; makefile: 587; python: 567; lex: 297; sql: 238; awk: 26
file content (70 lines) | stat: -rw-r--r-- 1,964 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * sound.h
 *
 * by Joern Thyssen <jthyssen@dk.ibm.com>, 2002
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of version 3 or later of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id: sound.h,v 1.23 2013/06/16 02:16:21 mdpetch Exp $
 */

#ifndef SOUND_H
#define SOUND_H


typedef enum _gnubgsound {
    /* start & exit of gnubg */
    SOUND_START = 0,
    SOUND_EXIT,
    /* commands */
    SOUND_AGREE,
    SOUND_DOUBLE,
    SOUND_DROP,
    SOUND_CHEQUER,
    SOUND_MOVE,
    SOUND_REDOUBLE,
    SOUND_RESIGN,
    SOUND_ROLL,
    SOUND_TAKE,
    /* events */
    SOUND_HUMAN_DANCE,
    SOUND_HUMAN_WIN_GAME,
    SOUND_HUMAN_WIN_MATCH,
    SOUND_BOT_DANCE,
    SOUND_BOT_WIN_GAME,
    SOUND_BOT_WIN_MATCH,
    SOUND_ANALYSIS_FINISHED,
    /* number of sounds */
    NUM_SOUNDS
} gnubgsound;

extern const char *sound_description[NUM_SOUNDS];
extern const char *sound_command[NUM_SOUNDS];

extern int fSound;
extern int fQuiet;

extern void playSound(const gnubgsound gs);
extern void SoundFlushCache(const gnubgsound gs);
extern void SoundWait(void);

extern char *GetDefaultSoundFile(gnubgsound sound);
extern void playSoundFile(char *file, gboolean sync);
extern void SetSoundFile(const gnubgsound gs, const char *szFilename);
extern char *GetSoundFile(gnubgsound sound);
extern const char *sound_get_command(void);
extern char *sound_set_command(const char *sz);
extern void SetExitSoundOff(void);

#endif