]> icculus.org git repositories - btb/d2x.git/blob - main/scores.h
RCS headers added
[btb/d2x.git] / main / scores.h
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.  
11 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14
15
16 #ifndef _SCORES_H
17 #define _SCORES_H
18
19 #define ROBOT_SCORE                             1000
20 #define HOSTAGE_SCORE                   1000
21 #define CONTROL_CEN_SCORE               5000
22 #define ENERGY_SCORE                    0
23 #define SHIELD_SCORE                    0
24 #define LASER_SCORE                             0
25 #define DEBRIS_SCORE                    0
26 #define CLUTTER_SCORE                   0
27 #define MISSILE1_SCORE                  0
28 #define MISSILE4_SCORE                  0
29 #define KEY_SCORE                               0
30 #define QUAD_FIRE_SCORE         0
31
32 #define VULCAN_AMMO_SCORE                               0
33 #define CLOAK_SCORE                                             0
34 #define TURBO_SCORE                                             0
35 #define INVULNERABILITY_SCORE           0
36 #define HEADLIGHT_SCORE                         0
37
38 extern void scores_view(int citem);
39
40 // If player has a high score, adds you to file and returns.
41 //      If abort_flag set, only show if player has gotten a high score.
42 extern void scores_maybe_add_player(int abort_flag);
43
44 #endif