1: /* 2: * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved. 3: * 4: * Copy permission is hereby granted provided that this notice is 5: * retained on all partial or complete copies. 6: * 7: * For more info on this and all of my stuff, mail edjames@berkeley.edu. 8: */ 9: 10: #include "include.h" 11: 12: char GAMES[] = "Game_List", 13: LOG[] = "ATC_scores"; 14: 15: int clock, safe_planes, start_time, test_mode; 16: 17: char *file; 18: 19: FILE *filein, *fileout; 20: 21: C_SCREEN screen, *sp = &screen; 22: 23: LIST air, ground; 24: 25: struct sgttyb tty_start, tty_new; 26: 27: DISPLACEMENT displacement[MAXDIR] = { 28: { 0, -1 }, 29: { 1, -1 }, 30: { 1, 0 }, 31: { 1, 1 }, 32: { 0, 1 }, 33: { -1, 1 }, 34: { -1, 0 }, 35: { -1, -1 } 36: };