DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T s

⟦224d4f44c⟧ TextFile

    Length: 637 (0x27d)
    Types: TextFile
    Names: »sys.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Spacewar/sys.h« 

TextFile

/*
 * Spacewar - include file that defines a craft's systems
 *
 * Copyright 1984 obo Systems, Inc.
 * Copyright 1984 Dan Rosenblatt
 */

#define SUBSYS	'S'	/* prefix for dbm(3) key */

struct syskey {
	char	s_syskey;	/* prefix for dbm(3) key */
	char	s_plyr[8+1];	/* player(owner) name */
	char	s_crft[12+1];	/* craft name */
	char	s_type;		/* system type */
};

struct sys {
	char	s_pct;		/* system percent */
	char	s_edmg;		/* system ease of damage */
	char	s_dmg;		/* system current damage */
	short	s_lvl;		/* system current level */
	short	s_cap;		/* system capacity */
};

#define MSYS	16	/* maximum possible number of systems */