]> icculus.org git repositories - btb/d2x.git/blob - main/scores.h
use the orientation parameter of g3_draw_bitmap
[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  * Scores header.
17  *
18  */
19
20
21 #ifndef _SCORES_H
22 #define _SCORES_H
23
24 #define ROBOT_SCORE             1000
25 #define HOSTAGE_SCORE           1000
26 #define CONTROL_CEN_SCORE       5000
27 #define ENERGY_SCORE            0
28 #define SHIELD_SCORE            0
29 #define LASER_SCORE             0
30 #define DEBRIS_SCORE            0
31 #define CLUTTER_SCORE           0
32 #define MISSILE1_SCORE          0
33 #define MISSILE4_SCORE          0
34 #define KEY_SCORE               0
35 #define QUAD_FIRE_SCORE         0
36
37 #define VULCAN_AMMO_SCORE       0
38 #define CLOAK_SCORE             0
39 #define TURBO_SCORE             0
40 #define INVULNERABILITY_SCORE   0
41 #define HEADLIGHT_SCORE         0
42
43 extern void scores_view(int citem);
44
45 // If player has a high score, adds you to file and returns.
46 // If abort_flag set, only show if player has gotten a high score.
47 extern void scores_maybe_add_player(int abort_flag);
48
49 #endif /* _SCORES_H */