|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T d ┃
Length: 871 (0x367) Types: TextFile Names: »data.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« └─⟦2109abc41⟧ └─ ⟦this⟧ »./X.V10R4/xtrek/data.c«
#ifndef lint static char *rcsid_data_c = "$Header: data.c,v 10.1 86/11/30 15:23:46 jg Rel $"; #endif lint /* Copyright (c) 1986 Chris Guthrie */ #include <X/Xlib.h> #include "defs.h" #include "struct.h" #include "data.h" struct player *players; struct player *me; struct torp *torps; struct status *status; struct ship *myship; struct stats *mystats; struct planet *planets; struct phaser *phasers; struct message *messages; struct mctl *mctl; int mapmode = 1; int statmode = 1; int showStats; int showShields; Pixmap foreTile, backTile, rTile, yTile, gTile; int borderColor, backColor, textColor, myColor, warningColor, shipCol[4], rColor, yColor, gColor, unColor; char teamlet[] = {'X', 'F', 'R', 'X', 'K', 'X', 'X', 'X', 'O'}; char *teamshort[9] = {"X", "FED", "ROM", "X", "KLI", "X", "X", "X", "ORI"}; Font dfont, bfont; FontInfo *dfontinfo, *bfontinfo;