]> git.mxchange.org Git - shipsimu.git/blob - application/ship-simu/templates/de/game/research/base_research.xml
XMLs amoved, research XML added, building XML updated:
[shipsimu.git] / application / ship-simu / templates / de / game / research / base_research.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3 This is a general research proposal template. A research is the theoretical
4 requirement to gain a specific technology or to be able to construct special
5 buildings, ships et cetera. A research may not be gainable but conductable e.g.
6 in a research lab.
7
8 @author         Roland Haeder <webmaster@ship-simu.org>
9 @version        0.0.0
10 @copyright      Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
11 @license        GNU GPL 3.0 or any newer version
12 @link           http://www.ship-simu.org
13
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>
26 //-->
27 <research-proposal>
28         <!-- General data of this research like id, summar or description. //-->
29         <research-data id="{?id?}" type="{?type?}">
30                 <!-- @TODO We need to add something that allows the simulation to e.g.
31                      @TODO decrease building time or higher efficience of certain
32                      @TODO facilities. Currently, a research proposal is only used as a
33                      @TODO depency. //-->
34                 <!-- A brief summary for this research proposal. //-->
35                 <research-summary>
36                         <![CDATA[{?summary?}]]>
37                 </research-summary>
38                 <!-- A full description for this research proposal. //-->
39                 <research-description>
40                         <![CDATA[{?description?}]]>
41                 </research-description>
42         </research-data>
43         <!-- This is somewhat a "research history". //-->
44         <research-level-list>
45                 <!-- A research level X has its own brief summary and a full description.
46                      It also can have depencies which makes it possible to add different
47                      depencies for higher research levels. //-->
48                 <research-level level="{?level?}">
49                         <!-- When the research of this level has been started ... //-->
50                         <research-started timestamp="{?started?}" />
51                         <!-- ... and when it has ended so when the research results are
52                              available. //-->
53                         <research-finished timestamp="{?finished?}" />
54                         <!-- A brief summary for this research level. //-->
55                         <level-summary>
56                                 <![CDATA[{?level_summary?}]]>
57                         </level-summary>
58                         <!-- A full description for this research level. //-->
59                         <level-description>
60                                 <![CDATA[{?level_description?}]]>
61                         </level-description>
62                         <!-- A research level may depend on none, some or all of these
63                              'depency types'. We are doing this this way to keep this XML
64                              simple but still flexible enougth to fit all proposal needs. //-->
65                         <technology-depency-list>
66                                 <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
67                         </technology-depency-list>
68                         <research-depency-list>
69                                 <research-depency id="{?research_id?}" level="{?research_level?}" />
70                         </research-depency-list>
71                         <building-depency-list>
72                                 <building-depency type="{?building_type?}" />
73                         </building-depency-list>
74                 </research-level>
75         </research-level-list>
76 </research-proposal>