Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris/bonus.h
blob: daff13be93a0df7c1b7126bf3c712173a2e49f0e (plain)
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
/* gcompris - bonus.h
 *
 * Copyright (C) 2001 Pascal Georges
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef BONUS_H
#define BONUS_H

/* The time, in ms, between the click of the player, making a choice
 * and the moment the bonus appears. Only used when there is no thumb
 * in the board */
#define TIME_CLICK_TO_BONUS 800

/* BONUS_LAST is equals to the last available bonus type */

typedef enum
{
  GC_BONUS_RANDOM,
  GC_BONUS_SMILEY,
  GC_BONUS_FLOWER,
  GC_BONUS_TUX,
  GC_BONUS_GNU,
  GC_BONUS_LION,
  GC_BONUS_LAST
} GCBonusList;

typedef enum
{
  GC_BOARD_FINISHED_RANDOM,
  GC_BOARD_FINISHED_TUXPLANE,
  GC_BOARD_FINISHED_TUXLOCO,
  GC_BOARD_FINISHED_TOOMANYERRORS,
  GC_BOARD_FINISHED_LAST
} GCBoardFinishedList;

typedef enum
{
  GC_BOARD_LOOSE,
  GC_BOARD_WIN,
  GC_BOARD_DRAW,
  GC_BOARD_COMPLETED,
} GCBonusStatusList;

/*
 * Public BONUS API Entry
 * ----------------------
 */
void	 gc_bonus_display(GCBonusStatusList, GCBonusList);
void	 gc_bonus_end_display(GCBoardFinishedList);

#endif