~ubuntu-branches/ubuntu/vivid/imaze/vivid

« back to all changes in this revision

Viewing changes to source/ereignisse.h

  • Committer: Bazaar Package Importer
  • Author(s): Hans Freitag
  • Date: 2002-11-28 13:24:12 UTC
  • Revision ID: james.westby@ubuntu.com-20021128132412-lw82xl9oq1j36g8b
Tags: upstream-1.4
ImportĀ upstreamĀ versionĀ 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
** - - -  iMaze  - - -
 
3
**
 
4
** Copyright (c) 1993-2001 by Hans-Ulrich Kiel & Joerg Czeranski
 
5
** All rights reserved.
 
6
**
 
7
** Redistribution and use in source and binary forms, with or without
 
8
** modification, are permitted provided that the following conditions are
 
9
** met:
 
10
**
 
11
** 1. Redistributions of source code must retain the above copyright
 
12
**    notice, this list of conditions and the following disclaimer.
 
13
** 2. Redistributions in binary form must reproduce the above copyright
 
14
**    notice, this list of conditions and the following disclaimer in the
 
15
**    documentation and/or other materials provided with the distribution.
 
16
** 3. The name of the authors may not be used to endorse or promote
 
17
**    products derived from this software without specific prior written
 
18
**    permission.
 
19
** 4. The name ``iMaze'' may not be used for products derived from this
 
20
**    software unless a prefix or a suffix is added to the name.
 
21
**
 
22
** THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
 
23
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
24
** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
25
** DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT,
 
26
** INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
27
** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
28
** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
29
** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
30
** STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 
31
** IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
32
** POSSIBILITY OF SUCH DAMAGE.
 
33
**
 
34
**
 
35
** Datei: ereignisse.h
 
36
**
 
37
** Kommentar:
 
38
**  Definiert moegliche Ausgabe-Signale (Ereignisse, die mit
 
39
**  Sounds/Grafikeffekten o.ae. versehen werden koennen)
 
40
*/
 
41
 
 
42
 
 
43
static char sccsid_ereignisse[] = "@(#)ereignisse.h     3.2 12/3/01";
 
44
 
 
45
 
 
46
#define AKTION_FEHLER_ERG 0  /* Kaufaktion o.ae. nicht moeglich */
 
47
#define AKTION_OK_ERG     1  /* Kaufaktion o.ae. war erfolgreich */
 
48
#define SCHUSS_LOS_ERG    2  /* Spieler hat Schuss abgefeuert */
 
49
#define SCHUSS_WEG_ERG    3  /* Schuss hat Wand getroffen und ist weg */
 
50
#define GETROFFEN_ERG     4  /* Spieler wurde getroffen */
 
51
#define ABGESCHOSSEN_ERG  5  /* Spieler wurde getoetet */
 
52
#define TREFFER_ERG       6  /* Spieler hat Gegner getroffen */
 
53
#define ABSCHUSS_ERG      7  /* Spieler hat Gegner getoetet */
 
54
#define PAUSE_ERG         8  /* Spieler legt eine Pause ein */
 
55
#define SUSPENDIERT_ERG   9  /* Spieler wurde aus dem Spiel genommen */
 
56
#define ERWACHT_ERG       10 /* Spieler ist wieder im Spiel */
 
57
#define SCHUSS_PRALL_ERG  11 /* Schuss ist an der Wand abgeprallt */
 
58
 
 
59
#define ERG_ANZ           12 /* Anzahl der Ereignisse */