application/ship-simu/templates/de/game/.htaccess -text
application/ship-simu/templates/de/game/building/.htaccess -text
application/ship-simu/templates/de/game/building/base_building.xml -text
+application/ship-simu/templates/de/game/building/research_lab.xml -text
application/ship-simu/templates/de/game/company/.htaccess -text
application/ship-simu/templates/de/game/container/.htaccess -text
application/ship-simu/templates/de/game/container/base_container.xml -text
application/ship-simu/templates/de/game/ship/.htaccess -text
application/ship-simu/templates/de/game/ship/base_ship.xml -text
application/ship-simu/templates/de/game/technology/.htaccess -text
+application/ship-simu/templates/de/game/technology/architecture.xml -text
application/ship-simu/templates/de/game/technology/base_technology.xml -text
application/ship-simu/templates/de/game/types/.htaccess -text
+application/ship-simu/templates/de/game/types/building_types.xml -text
application/ship-simu/templates/de/game/types/container_types.xml -text
application/ship-simu/templates/de/game/types/content_types.xml -text
application/ship-simu/templates/de/game/types/contract_types.xml -text
<!-- Length of the building. //-->
<length>{?length?}</length>
</dimension>
+ <!--A summary for this building. //-->
+ <summary>
+ <![CDATA[{?summary?}]]>
+ </summary>
<!-- A full description of this building. //-->
<description>
<![CDATA[{?description?}]]>
shipping company to construct this building. //-->
<depencies>
<!-- A list of required technology to construct this building. //-->
- <technology-depency-list>
+ <technology-dependency-list>
<!-- A single required technology to construct this building. //-->
- <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
- </technology-depency-list>
+ <technology-dependency>
+ <id>{?technology_id?}</id>
+ <type>{?technology_type?}</type>
+ <level>{?technology_level?}</level>
+ </technology-dependency>
+ </technology-dependency-list>
</depencies>
</building>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+A general research lab for conducting simple experiments.
+
+@author Roland Haeder <webmaster@ship-simu.org>
+@version 0.0.0
+@copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
+@license GNU GPL 3.0 or any newer version
+@link http://www.ship-simu.org
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>
+//-->
+<building extends="base_building">
+ <!-- General building data //-->
+ <building-data>
+ <!-- General data, like short name, type, level and many more. //-->
+ <general-data>
+ <name>research_lab</name>
+ <type>research</type>
+ </general-data>
+ </building-data>
+ <!-- We also have technology denpencies for a building. These must be
+ understand by construction companies who made contracts with the
+ shipping company to construct this building. //-->
+ <depencies>
+ <!-- A list of required technology to construct this building. //-->
+ <technology-dependency-list>
+ <!-- Arcgictecture is required. //-->
+ <technology-dependency>
+ <type>architecture</type>
+ <level>5</level>
+ </technology-dependency>
+ <!-- Labory equipment is required. //-->
+ <technology-dependency>
+ <type>labory_equpment</type>
+ <level>1</level>
+ </technology-dependency>
+ </technology-dependency-list>
+ </depencies>
+</building>
</general-data>
<!-- To mine some minerals some knowledge in one or two technologies is
required. Here you can list each technology with its required level. //-->
- <technology-depency-list>
+ <technology-dependency-list>
<!-- A single technology required to mine this mineral. //-->
- <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
- </technology-depency-list>
+ <technology-dependency id="{?technology_id?}" level="{?technology_level?}" />
+ </technology-dependency-list>
</mineral>
<![CDATA[{?level_description?}]]>
</level-description>
<!-- A research level may depend on none, some or all of these
- 'depency types'. We are doing this this way to keep this XML
+ 'dependency types'. We are doing this this way to keep this XML
simple but still flexible enougth to fit all proposal needs. //-->
- <technology-depency-list>
- <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
- </technology-depency-list>
- <research-depency-list>
- <research-depency id="{?research_id?}" level="{?research_level?}" />
- </research-depency-list>
- <building-depency-list>
- <building-depency id="{?building_id?}" level="{?building_level?}" />
- </building-depency-list>
+ <technology-dependency-list>
+ <technology-dependency id="{?technology_id?}" level="{?technology_level?}" />
+ </technology-dependency-list>
+ <research-dependency-list>
+ <research-dependency id="{?research_id?}" level="{?research_level?}" />
+ </research-dependency-list>
+ <building-dependency-list>
+ <building-dependency id="{?building_id?}" level="{?building_level?}" />
+ </building-dependency-list>
</research-level>
</research-level-list>
</research-proposal>
</general-data>
<!-- To harvest some resource some knowledge in one or two technologies is
required. Here you can list each technology with its required level. //-->
- <technology-depency-list>
- <!-- A single technology depency to harvest this resource. //-->
- <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
- </technology-depency-list>
+ <technology-dependency-list>
+ <!-- A single technology dependency to harvest this resource. //-->
+ <technology-dependency id="{?technology_id?}" level="{?technology_level?}" />
+ </technology-dependency-list>
</resource>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+A architecture technology template.
+
+@author Roland Haeder <webmaster@ship-simu.org>
+@version 0.0.0
+@copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
+@license GNU GPL 3.0 or any newer version
+@link http://www.ship-simu.org
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>
+//-->
+<technology extends="base_technology">
+ <!-- General technology data like type, level, summary or description. //-->
+ <general-data>
+ <name>architecture</name>
+ <type>building</type>
+ </general-data>
+ <!-- A technology may depend on some other technologies or research
+ proposals. //-->
+ <depencies>
+ <!-- All technology depencies for this technology. //-->
+ <technology-dependency-list>
+ <!-- A technology dependency for this technology. //-->
+ <technology-dependency>
+ <name>{?technology_name?}</name>
+ <level>{?technology_level?}</level>
+ </technology-dependency>
+ </technology-dependency-list>
+ <!-- All research depencies for this technology. //-->
+ <research-dependency-list>
+ <!-- A research dependency for this technology. //-->
+ <research-dependency>
+ <name>{?research_name?}</name>
+ <level>{?research_level?}</level>
+ </research-dependency>
+ </research-dependency-list>
+ </depencies>
+</technology>
<!-- General technology data like type, level, summary or description. //-->
<general-data>
<id>{?id?}</id>
+ <name>{?name?}</name>
<type>{?type?}</type>
- <level>{?level?}</level>
<!-- The date/time when this technology was gained, e.g. by research. //-->
<technology-gained timestamp="{?gained?}" />
<!-- A summary of this technology. //-->
proposals. //-->
<depencies>
<!-- All technology depencies for this technology. //-->
- <technology-depency-list>
- <!-- A technology depency for this technology. //-->
- <technology-depency id="{?technology_id?}" level="{?technology_level?}" />
- </technology-depency-list>
+ <technology-dependency-list>
+ <!-- A technology dependency for this technology. //-->
+ <technology-dependency>
+ <id>{?technology_id?}</id>
+ <name>{?technology_name?}</name>
+ <level>{?technology_level?}</level>
+ </technology-dependency>
+ </technology-dependency-list>
<!-- All research depencies for this technology. //-->
- <research-depency-list>
- <!-- A research depency for this technology. //-->
- <research-depency id="{?research_id?}" level="{?research_level?}" />
- </research-depency-list>
+ <research-dependency-list>
+ <!-- A research dependency for this technology. //-->
+ <research-dependency>
+ <id>{?research_id?}</id>
+ <name>{?research_name?}</name>
+ <level>{?research_level?}</level>
+ </research-dependency>
+ </research-dependency-list>
</depencies>
</technology>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+All valid types of buildings.
+
+@author Roland Haeder <webmaster@ship-simu.org>
+@version 0.0.0
+@copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
+@license GNU GPL 3.0 or any newer version
+@link http://www.ship-simu.org
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>
+//-->
+<building-type-list>
+ <!-- Research buildings. //-->
+ <building type type="research" />
+</building-type-list>
along with this program. If not, see <http://www.gnu.org/licenses/>
//-->
<technology-type-list>
+ <!-- Technology required for construction of buildings. ///-->
+ <technology-type type="building" />
</technology-type-list>