]> git.pond.sub.org Git - empserver/blobdiff - include/item.h
Update copyright notice
[empserver] / include / item.h
index 7ca1aa62b5d9ad0196e369e73f3ae6c0f854853c..6122fd07c6cdb684de5bc5d52abe9a7c9301a393 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
@@ -31,8 +31,8 @@
  *  
  */
 
-#ifndef _ITEM_H_
-#define _ITEM_H_
+#ifndef ITEM_H
+#define ITEM_H
 
 #include "misc.h"
 
@@ -68,22 +68,23 @@ typedef enum {
 } ATTRIBUTE((packed)) i_type;
 
 struct ichrstr {
-    int i_mnem;                        /* usually the initial letter */
-    i_type i_vtype;            /* var type */
+    char i_mnem;               /* usually the initial letter */
+    i_type i_uid;              /* index in ichr[] */
     int i_value;               /* mortgage value */
     int i_sell;                        /* can this be sold? */
     int i_lbs;                 /* how hard to move */
     int i_pkg[NUMPKG];         /* units for reg, ware, urb, bank */
+    int i_melt_denom;          /* fallout meltdown denominator */
     char *i_name;              /* full name of item */
 };
 
 /* variables using this structure */
 
-extern struct ichrstr ichr[];
+extern struct ichrstr ichr[I_MAX + 2];
 
 /* procedures using/returning this struct */
 
 extern struct ichrstr *whatitem(char *, char *);
 extern struct ichrstr *item_by_name(char *);
 
-#endif /* _ITEM_H_ */
+#endif