Changeset 88 for abuse/trunk
- Timestamp:
- Mar 6, 2008, 3:00:35 PM (14 years ago)
- Location:
- abuse/trunk/src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/config.cpp
r66 r88 13 13 14 14 #include "sdlport/joy.hpp" 15 #include "game.hpp" 15 16 16 17 #include "keys.hpp" … … 18 19 #include "jwindow.hpp" 19 20 #include "config.hpp" 20 #include "game.hpp"21 21 22 22 extern int get_key_binding(char const *dir, int i); 23 23 24 extern window_manager *eh;25 24 int key_players = 0; 26 25 int morph_detail = MEDIUM_DETAIL; -
abuse/trunk/src/console.cpp
r56 r88 13 13 #include <stdarg.h> 14 14 15 #include "game.hpp" 16 15 17 #include "linked.hpp" 16 18 #include "console.hpp" 17 19 #include "jmalloc.hpp" 18 19 extern window_manager *eh;20 20 21 21 void console::put_string(char const *st) -
abuse/trunk/src/demo.cpp
r56 r88 10 10 #include "config.h" 11 11 12 #include "game.hpp" 13 12 14 #include "demo.hpp" 13 15 #include "specs.hpp" 14 16 #include "macs.hpp" 15 17 #include "jwindow.hpp" 16 #include "game.hpp"17 18 #include "jmalloc.hpp" 18 19 #include "dprint.hpp" … … 25 26 26 27 demo_manager demo_man; 27 extern window_manager *eh;28 28 int last_demo_mx,last_demo_my,last_demo_mbut; 29 29 extern base_memory_struct *base; // points to shm_addr -
abuse/trunk/src/dev.hpp
r57 r88 15 15 #include "console.hpp" 16 16 #include "timing.hpp" 17 18 /* Cleaned-up externs */ 19 extern int confirm_quit(); 17 20 18 21 -
abuse/trunk/src/game.cpp
r87 r88 20 20 #include "sdlport/joy.hpp" 21 21 22 #include "dev.hpp" 22 23 #include "game.hpp" 23 #include "dev.hpp" 24 24 25 #include "id.hpp" 25 26 #include "timing.hpp" … … 57 58 #define SHIFT_DOWN_DEFAULT 30 58 59 59 class game;60 60 extern crc_manager *net_crcs; 61 61 game *the_game; … … 77 77 78 78 extern uint8_t chatting_enabled; 79 80 extern int confirm_quit();81 79 82 80 // Enabled TCPIP driver -
abuse/trunk/src/game.hpp
r66 r88 45 45 #define BLACK 0 46 46 47 /* Cleaned-up externs */ 48 extern window_manager *eh; 49 50 47 51 #define tile_type unsigned short 48 52 class game; 49 53 extern game *the_game; 50 extern window_manager *eh;51 54 extern int dev; 52 55 extern int morph_sel_frame_color; -
abuse/trunk/src/gamma.cpp
r56 r88 12 12 #include <math.h> 13 13 14 #include "game.hpp" 15 14 16 #include "jwindow.hpp" 15 17 #include "lisp.hpp" 16 #include "game.hpp"17 18 #include "scroller.hpp" 18 19 #include "id.hpp" … … 22 23 #include "loader2.hpp" 23 24 24 extern window_manager *eh;25 25 extern int dev_ok; 26 26 palette *old_pal=NULL; -
abuse/trunk/src/loadgame.cpp
r56 r88 11 11 12 12 #include <string.h> 13 14 #include "game.hpp" 13 15 14 16 #include "specs.hpp" … … 24 26 #include "id.hpp" 25 27 #include "demo.hpp" 26 #include "game.hpp"27 28 28 29 extern void *save_order; // load from "saveordr.lsp", contains a list ordering the save games 29 30 30 31 extern JCFont *console_font; 31 32 extern window_manager *eh;33 32 34 33 #define MAX_SAVE_GAMES 5 -
abuse/trunk/src/menu.cpp
r61 r88 11 11 12 12 #include <math.h> 13 14 #include "dev.hpp" 13 15 14 16 #include "menu.hpp" … … 21 23 #include "gui.hpp" 22 24 #include "property.hpp" 23 #include "dev.hpp"24 25 #include "clisp.hpp" 25 26 #include "gamma.hpp" … … 33 34 extern net_protocol *prot; 34 35 jwindow *volume_window=NULL; 35 extern int confirm_quit();36 36 37 37 //percent is 0..256 -
abuse/trunk/src/netcfg.cpp
r56 r88 10 10 #include "config.h" 11 11 12 #include "game.hpp" 13 14 12 15 #include "netcfg.hpp" 13 16 #include "input.hpp" … … 20 23 21 24 extern char *get_login(); 22 extern window_manager *eh;23 25 net_configuration *main_net_cfg=NULL; 24 26 extern char lsf[256]; -
abuse/trunk/src/profile.cpp
r56 r88 10 10 #include "config.h" 11 11 12 #include "game.hpp" 13 14 12 15 #include "profile.hpp" 13 16 #include "jwindow.hpp" 14 17 #include "property.hpp" 15 18 #include "objects.hpp" 16 17 extern window_manager *eh;18 19 19 20 -
abuse/trunk/src/sdlport/event.cpp
r56 r88 33 33 #include "game.hpp" 34 34 35 extern int confirm_quit();36 35 extern int get_key_binding( char const *dir, int i ); 37 36 extern int mouse_xscale, mouse_yscale; -
abuse/trunk/src/setup.cpp
r56 r88 11 11 12 12 #ifdef __WATCOMC__ 13 14 #include "game.hpp" 13 15 14 16 #include "specs.hpp" … … 29 31 extern int sosEZGetConfig(char *szName); 30 32 31 extern window_manager *eh;32 33 extern palette *lastl; 33 34 -
abuse/trunk/src/view.cpp
r56 r88 9 9 10 10 #include "config.h" 11 12 #include "game.hpp" 13 11 14 12 15 #include "system.h" … … 31 34 32 35 extern int get_key_binding( char const *dir, int i ); 33 extern window_manager *eh;34 36 view *player_list=NULL; 35 37 int morph_sel_frame_color;
Note: See TracChangeset
for help on using the changeset viewer.