137008Sbostic /* 237008Sbostic * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved. 337008Sbostic * 437008Sbostic * Copy permission is hereby granted provided that this notice is 537008Sbostic * retained on all partial or complete copies. 637008Sbostic * 737008Sbostic * For more info on this and all of my stuff, mail edjames@berkeley.edu. 837008Sbostic */ 937008Sbostic 1037008Sbostic #include "include.h" 1137008Sbostic 12*41165Sbostic char GAMES[] = "Game_List"; 1337008Sbostic 1437008Sbostic int clock, safe_planes, start_time, test_mode; 1537008Sbostic 1637008Sbostic char *file; 1737008Sbostic 1837008Sbostic FILE *filein, *fileout; 1937008Sbostic 2037008Sbostic C_SCREEN screen, *sp = &screen; 2137008Sbostic 2237008Sbostic LIST air, ground; 2337008Sbostic 2437008Sbostic struct sgttyb tty_start, tty_new; 2537008Sbostic 2637008Sbostic DISPLACEMENT displacement[MAXDIR] = { 2737008Sbostic { 0, -1 }, 2837008Sbostic { 1, -1 }, 2937008Sbostic { 1, 0 }, 3037008Sbostic { 1, 1 }, 3137008Sbostic { 0, 1 }, 3237008Sbostic { -1, 1 }, 3337008Sbostic { -1, 0 }, 3437008Sbostic { -1, -1 } 3537008Sbostic }; 36