File: history.def

package info (click to toggle)
xconq 7.2.2-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 8,296 kB
  • ctags: 9,199
  • sloc: ansic: 107,849; sh: 2,108; perl: 2,057; makefile: 1,177; sed: 161; csh: 50; awk: 49; lisp: 39
file content (107 lines) | stat: -rw-r--r-- 2,855 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* Definitions of all the historical event types in Xconq.
   Copyright (C) 1993, 1994, 1995 Stanley T. Shebs.

Xconq 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 2, or (at your option)
any later version.  See the file COPYING.  */

DEF_HEVT("zz-log-head", H_LOG_HEAD, "")

DEF_HEVT("log-started", H_LOG_STARTED, "")

DEF_HEVT("log-ended", H_LOG_ENDED, "")

DEF_HEVT("game-started", H_GAME_STARTED, "")

DEF_HEVT("game-saved", H_GAME_SAVED, "")

DEF_HEVT("game-restarted", H_GAME_RESTARTED, "")

DEF_HEVT("game-ended", H_GAME_ENDED, "")

DEF_HEVT("side-joined", H_SIDE_JOINED, "S")

DEF_HEVT("side-lost", H_SIDE_LOST, "Ss")

DEF_HEVT("side-withdrew", H_SIDE_WITHDREW, "S")

DEF_HEVT("side-won", H_SIDE_WON, "Ss")

DEF_HEVT("unit-created", H_UNIT_CREATED, "SU")

DEF_HEVT("unit-completed", H_UNIT_COMPLETED, "SU")

DEF_HEVT("unit-moved", H_UNIT_MOVED, "Uxy")

DEF_HEVT("unit-assaulted", H_UNIT_ASSAULTED, "UUxy")

DEF_HEVT("unit-damaged", H_UNIT_DAMAGED, "Unn")

DEF_HEVT("unit-captured", H_UNIT_CAPTURED, "UUS")

DEF_HEVT("unit-acquired", H_UNIT_ACQUIRED, "US")

DEF_HEVT("unit-revolted", H_UNIT_REVOLTED, "US")

DEF_HEVT("unit-surrendered", H_UNIT_SURRENDERED, "UUS")

DEF_HEVT("unit-killed", H_UNIT_KILLED, "Uu")

DEF_HEVT("unit-wrecked", H_UNIT_WRECKED, "Uu")

DEF_HEVT("unit-died-in-accident", H_UNIT_DIED_IN_ACCIDENT, "U")

DEF_HEVT("unit-wrecked-in-accident", H_UNIT_WRECKED_IN_ACCIDENT, "U")

DEF_HEVT("unit-vanished", H_UNIT_VANISHED, "U")

DEF_HEVT("unit-garrisoned", H_UNIT_GARRISONED, "UU")

DEF_HEVT("unit-disbanded", H_UNIT_DISBANDED, "U")

DEF_HEVT("unit-starved", H_UNIT_STARVED, "Um")

DEF_HEVT("unit-died-from-temperature", H_UNIT_DIED_FROM_TEMPERATURE, "U")

DEF_HEVT("unit-merged", H_UNIT_MERGED, "U")

DEF_HEVT("unit-left-world", H_UNIT_LEFT_WORLD, "U")

DEF_HEVT("unit-type-changed", H_UNIT_TYPE_CHANGED, "UU")

DEF_HEVT("unit-name-changed", H_UNIT_NAME_CHANGED, "UU")

DEF_HEVT("action-ok", A_ANY_OK, "")

DEF_HEVT("action-error", A_ANY_ERROR, "")

DEF_HEVT("cannot-do", A_ANY_CANNOT_DO, "")

DEF_HEVT("insufficient-acp", A_ANY_NO_ACP, "")

DEF_HEVT("insufficient-material", A_ANY_NO_MATERIAL, "")

DEF_HEVT("too-far", A_ANY_TOO_FAR, "")

DEF_HEVT("too-near", A_ANY_TOO_NEAR, "")

DEF_HEVT("action-done", A_ANY_DONE, "")

DEF_HEVT("insufficient-mp", A_MOVE_NO_MP, "")

DEF_HEVT("cannot-leave-world", A_MOVE_CANNOT_LEAVE_WORLD, "")

DEF_HEVT("destination-full", A_MOVE_DEST_FULL, "")

DEF_HEVT("unit-gone", A_MOVE_UNIT_GONE, "")

DEF_HEVT("overrun-failed", A_OVERRUN_FAILED, "")

DEF_HEVT("overrun-succeeded", A_OVERRUN_SUCCEEDED, "")

DEF_HEVT("fire-into-outside-world", A_FIRE_INTO_OUTSIDE_WORLD, "")

DEF_HEVT("capture-failed", A_CAPTURE_FAILED, "")

DEF_HEVT("capture-succeeded", A_CAPTURE_SUCCEEDED, "")