Proper Subversion configuration.
[newkind] / docked.h
1 /*
2 * Elite - The New Kind.
3 *
4 * Reverse engineered from the BBC disk version of Elite.
5 * Additional material by C.J.Pinder.
6 *
7 * The original Elite code is (C) I.Bell & D.Braben 1984.
8 * This version re-engineered in C by C.J.Pinder 1999-2001.
9 *
10 * email: <christian@newkind.co.uk>
11 *
12 *
13 */
14
15 #ifndef DOCKED_H
16 #define DOCKED_H
17
18 void display_short_range_chart (void);
19 void display_galactic_chart (void);
20 void display_data_on_planet (void);
21 void show_distance_to_planet (void);
22 void move_cursor_to_origin (void);
23 void find_planet_by_name (char *find_name);
24 void display_market_prices (void);
25 void display_commander_status (void);
26 int calc_distance_to_planet (struct galaxy_seed from_planet, struct galaxy_seed to_planet);
27 void highlight_stock (int i);
28 void select_previous_stock (void);
29 void select_next_stock (void);
30 void buy_stock (void);
31 void sell_stock (void);
32 void display_inventory (void);
33 void equip_ship (void);
34 void select_next_equip (void);
35 void select_previous_equip (void);
36 void buy_equip (void);
37
38
39 extern int cross_x;
40 extern int cross_y;
41
42 #endif
43