(plane_flags, plane_ca): Add plane flags table.

(retreat_flags, ship_ca, land_ca, plane_ca): Add retreat flags table.

(nation_flags, nation_relations, nat_ca): Add nation flags and
nation relations tables.

(empfile_ca): Remove flags and file name fields.
They are internal and not needed by the client.
This commit is contained in:
Ron Koenderink 2005-11-09 22:56:43 +00:00
parent fd237f1722
commit 0a44c4893e
4 changed files with 69 additions and 8 deletions

View file

@ -133,7 +133,11 @@ struct empfile {
#define EF_META_TYPE 31
#define EF_META_FLAGS 32
#define EF_MISSION_FLAGS 33
#define EF_MAX 34
#define EF_PLANE_FLAGS 34
#define EF_RETREAT_FLAGS 35
#define EF_NATION_FLAGS 36
#define EF_NATION_RELATIONS 37
#define EF_MAX 38
#define EF_IS_GAME_STATE(type) (EF_SECTOR <= (type) && (type) <= EF_LOST)