00001 00006 /* 00007 Copyright (C) 2002-2010 UFO: Alien Invasion. 00008 00009 This program is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU General Public License 00011 as published by the Free Software Foundation; either version 2 00012 of the License, or (at your option) any later version. 00013 00014 This program is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00017 00018 See the GNU General Public License for more details. 00019 00020 You should have received a copy of the GNU General Public License 00021 along with this program; if not, write to the Free Software 00022 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00023 */ 00024 00025 #ifndef SAVE_PRODUCE_H 00026 #define SAVE_PRODUCE_H 00027 00028 #define SAVE_PRODUCE_PRODUCTION "production" 00029 00030 #define SAVE_PRODUCE_QUEUE "queue" 00031 #define SAVE_PRODUCE_QUEUEIDX "IDX" 00032 00033 #define SAVE_PRODUCE_ITEM "item" 00034 #define SAVE_PRODUCE_ITEMID "itemid" 00035 #define SAVE_PRODUCE_AIRCRAFTID "aircraftid" 00036 #define SAVE_PRODUCE_UFOIDX "UFOIDX" 00037 #define SAVE_PRODUCE_AMOUNT "amount" 00038 #define SAVE_PRODUCE_PERCENTDONE "percentDone" 00039 00040 #endif 00041 00042 /* 00043 DTD: 00044 00045 <!ELEMENT production queue*> 00046 00047 <!ELEMENT queue item*> 00048 <!ATTLIST queue 00049 IDX CDATA #REQUIRED 00050 > 00051 00052 <!ELEMENT item EMPTY> 00053 <!ATTLIST item 00054 itemid CDATA #IMPLIED 00055 aircraftid CDATA #IMPLIED 00056 UFOIDX CDATA #IMPLIED 00057 amount CDATA #REQUIRED 00058 percentDone CDATA '0.0' 00059 itemsCached CDATA 'false' 00060 > 00061 00062 *Note: One of itemid, aircraftid, UFOIDX is required 00063 *Note: itemsCached is not fully implemented 00064 *Note: amount must be greater than zero 00065 */ 00066