From: Roland Häder <roland@mxchange.org> Date: Fri, 2 Oct 2009 00:35:21 +0000 (+0000) Subject: More technology added (commercial and electronical), TODOs.txt updated X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d1c681f20a57be6091d3370131df117b0a2b4c22;p=shipsimu.git More technology added (commercial and electronical), TODOs.txt updated - Transistor technology added which is an eletronical semiconductor device - Radio receiving research added - Simple radio receiver added - Sound equalizer technology added - Intergrated current technology added (so called "ICs") - TODOs.txt updated --- diff --git a/.gitattributes b/.gitattributes index 3617df0..3839fec 100644 --- a/.gitattributes +++ b/.gitattributes @@ -287,6 +287,8 @@ application/ship-simu/templates/de/game/contract/base_contract.xml -text application/ship-simu/templates/de/game/electronic/.htaccess -text application/ship-simu/templates/de/game/electronic/base_electronic.xml -text application/ship-simu/templates/de/game/electronic/cellphone.xml -text +application/ship-simu/templates/de/game/electronic/hifi_system.xml -text +application/ship-simu/templates/de/game/electronic/radio_receiver.xml -text application/ship-simu/templates/de/game/engine/.htaccess -text application/ship-simu/templates/de/game/engine/base_engine.xml -text application/ship-simu/templates/de/game/farmer/.htaccess -text @@ -300,6 +302,7 @@ application/ship-simu/templates/de/game/mineral/base_mineral.xml -text application/ship-simu/templates/de/game/research/.htaccess -text application/ship-simu/templates/de/game/research/base_research.xml -text application/ship-simu/templates/de/game/research/mathematics.xml -text +application/ship-simu/templates/de/game/research/radio_receiving.xml -text application/ship-simu/templates/de/game/research/statics.xml -text application/ship-simu/templates/de/game/resource/.htaccess -text application/ship-simu/templates/de/game/resource/base_resource.xml -text @@ -313,9 +316,12 @@ application/ship-simu/templates/de/game/technology/base_technology.xml -text application/ship-simu/templates/de/game/technology/cellular_network.xml -text application/ship-simu/templates/de/game/technology/drawings.xml -text application/ship-simu/templates/de/game/technology/glass_making.xml -text +application/ship-simu/templates/de/game/technology/intergrated_currents.xml -text application/ship-simu/templates/de/game/technology/laboratory_equipment.xml -text application/ship-simu/templates/de/game/technology/naval_architecture.xml -text application/ship-simu/templates/de/game/technology/plastics.xml -text +application/ship-simu/templates/de/game/technology/sound_equalizer.xml -text +application/ship-simu/templates/de/game/technology/transistor.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 diff --git a/application/ship-simu/templates/de/game/electronic/cellphone.xml b/application/ship-simu/templates/de/game/electronic/cellphone.xml index a66cc3f..2baf75e 100644 --- a/application/ship-simu/templates/de/game/electronic/cellphone.xml +++ b/application/ship-simu/templates/de/game/electronic/cellphone.xml @@ -52,6 +52,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <!-- A list research dependencies for this electronical device. //--> <research-dependency-list> <!-- A single technollogical dependency. //--> + <!-- @TODO Do we need research dependency here? //--> <research-dependency> <id>{?research_id?}</id> <name>{?research_name?}</name> diff --git a/application/ship-simu/templates/de/game/electronic/hifi_system.xml b/application/ship-simu/templates/de/game/electronic/hifi_system.xml new file mode 100644 index 0000000..302ad25 --- /dev/null +++ b/application/ship-simu/templates/de/game/electronic/hifi_system.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A commercial, compact Hi-Fi (High Fidelity) sound system. + +For simplification we have only width, length, height and total weight. This is +in reality mostly the case because the electronics will be placed into a small +box for transportation. + +@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/> +//--> +<electronic extends="{?base_electronic?}"> + <!-- General data of the electronics. //--> + <general-data> + <name>hifi_system</name> + <type>entertainment</type> + <!-- Simplified dimensions of the electronics because it will be placed + into a small box for transportation. //--> + <dimensions> + <width>70</width> + <height>70</height> + <length>80</length> + </dimensions> + </general-data> + <!-- An electronical device may depend on one or more technologies, at least + 'electronics'. //--> + <dependencies> + <!-- A list technology dependencies for this electronical device. //--> + <technology-dependency-list> + <!-- A single technollogical dependency. //--> + <technology-dependency> + <name>intergrated_currents</name> + <level>6</level> + </technology-dependency> + <technology-dependency> + <name>sound_equalizer</name> + <level>3</level> + </technology-dependency> + <technology-dependency> + <name>radio_receiving</name> + <level>4</level> + </technology-dependency> + </technology-dependency-list> + </dependencies> +</electronic> diff --git a/application/ship-simu/templates/de/game/electronic/radio_receiver.xml b/application/ship-simu/templates/de/game/electronic/radio_receiver.xml new file mode 100644 index 0000000..53f40df --- /dev/null +++ b/application/ship-simu/templates/de/game/electronic/radio_receiver.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A commercial, simple radio receiver. + +For simplification we have only width, length, height and total weight. This is +in reality mostly the case because the electronics will be placed into a small +box for transportation. + +@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/> +//--> +<electronic extends="{?base_electronic?}"> + <!-- General data of the electronics. //--> + <general-data> + <name>radio_receiver</name> + <type>entertainment</type> + <!-- Simplified dimensions of the electronics because it will be placed + into a small box for transportation. //--> + <dimensions> + <width>30</width> + <height>40</height> + <length>20</length> + </dimensions> + </general-data> + <!-- An electronical device may depend on one or more technologies, at least + 'electronics'. //--> + <dependencies> + <!-- A list technology dependencies for this electronical device. //--> + <technology-dependency-list> + <!-- A single technollogical dependency. //--> + <technology-dependency> + <name>intergrated_currents</name> + <level>3</level> + </technology-dependency> + <technology-dependency> + <name>radio_receiving</name> + <level>1</level> + </technology-dependency> + </technology-dependency-list> + </dependencies> +</electronic> diff --git a/application/ship-simu/templates/de/game/research/radio_receiving.xml b/application/ship-simu/templates/de/game/research/radio_receiving.xml new file mode 100644 index 0000000..1988b27 --- /dev/null +++ b/application/ship-simu/templates/de/game/research/radio_receiving.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A radio-receiving research proposal 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/> +//--> +<research-proposal extends="base_research"> + <!-- General data of this research like id, summar or description. //--> + <research-data> + <name>radio_receiving</name> + <type>electronics</type> + <max-level>10</max-level> + </research-data> + <dependencies> + <!-- All research proposal dependencies for this research proposal. //--> + <technology-dependency-list> + <!-- A research proposal dependency for this research proposal. //--> + <!-- @TODO Find some technology dependencies. //--> + <technology-dependency> + <name>{?technology_name?}</name> + <level>{?technology_level?}</level> + </technology-dependency> + </technology-dependency-list> + <!-- All research dependencies for this research proposal. //--> + <research-dependency-list> + <!-- A research dependency for this research proposal. //--> + <!-- @TODO Find some research dependencies. //--> + <research-dependency> + <name>{?research_name?}</name> + <level>{?research_level?}</level> + </research-dependency> + </research-dependency-list> + </dependencies> +</research-proposal> diff --git a/application/ship-simu/templates/de/game/technology/cellular_network.xml b/application/ship-simu/templates/de/game/technology/cellular_network.xml index adab217..3be2b24 100644 --- a/application/ship-simu/templates/de/game/technology/cellular_network.xml +++ b/application/ship-simu/templates/de/game/technology/cellular_network.xml @@ -32,18 +32,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <dependencies> <!-- All technology dependencies for this technology. //--> <technology-dependency-list> + <!-- @TODO Find some technology dependencies. //--> <technology-dependency> - <name>electronics</name> - <level>5</level> + <name></name> + <level></level> </technology-dependency> </technology-dependency-list> <!-- All research dependencies for this technology. //--> <research-dependency-list> <!-- A research dependency for this technology. //--> - <!-- @TODO Do we need research dependencies? //--> <research-dependency> - <name>{?research_name?}</name> - <level>{?research_level?}</level> + <name>electronics</name> + <level>5</level> </research-dependency> </research-dependency-list> </dependencies> diff --git a/application/ship-simu/templates/de/game/technology/intergrated_currents.xml b/application/ship-simu/templates/de/game/technology/intergrated_currents.xml new file mode 100644 index 0000000..247d8f2 --- /dev/null +++ b/application/ship-simu/templates/de/game/technology/intergrated_currents.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A intergrated-current (IC) 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>intergrated_currents</name> + <type>eletronics</type> + </general-data> + <!-- A technology may depend on some other technologies or research + proposals to gain the first level of this technology. //--> + <dependencies> + <!-- All technology dependencies for this technology. //--> + <technology-dependency-list> + <!-- A technology dependency for this technology. //--> + <technology-dependency> + <name>transistor</name> + <level>10</level> + </technology-dependency> + </technology-dependency-list> + <!-- All research dependencies for this technology. //--> + <research-dependency-list> + <!-- A research dependency for this technology. //--> + <research-dependency> + <name>silicium_mining</name> + <level>1</level> + </research-dependency> + </research-dependency-list> + </dependencies> +</technology> diff --git a/application/ship-simu/templates/de/game/technology/plastics.xml b/application/ship-simu/templates/de/game/technology/plastics.xml index f363949..6eb2fac 100644 --- a/application/ship-simu/templates/de/game/technology/plastics.xml +++ b/application/ship-simu/templates/de/game/technology/plastics.xml @@ -27,46 +27,21 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <name>plastics</name> <type>production</type> </general-data> - <!-- All levels of this technology are held in this tag. //--> - <technology-level-list> - <!-- A single technology level with its basic data, own summary and - description. //--> - <technology-level> - <level>{?list_level?}</level> - <!-- A specific technology level may depend on some further technologies or research - proposals. //--> - <level-dependencies> - <!-- All technology dependencies for this technology. //--> - <technology-level-dependency-list> - <!-- A technology dependency for this technology. //--> - <technology-level-dependency> - <name>{?technology_level_name?}</name> - <level>{?technology_level_level?}</level> - </technology-level-dependency> - </technology-level-dependency-list> - <!-- All research dependencies for this technology. //--> - <research-level-dependency-list> - <!-- A research dependency for this technology. //--> - <research-level-dependency> - <name>{?research_level_name?}</name> - <level>{?research_level_level?}</level> - </research-level-dependency> - </research-dependency-list> - </level-dependencies> - </technology-level> - </technology-level-list> <!-- A technology may depend on some other technologies or research proposals to gain the first level of this technology. //--> <dependencies> <!-- All technology dependencies for this technology. //--> <technology-dependency-list> + <!-- A technology dependency for this technology. //--> <technology-dependency> + <!-- @TODO Find a chemical name for this technology. //--> <name>{?technology_name?}</name> <level>chemicals</level> </technology-dependency> </technology-dependency-list> <!-- All research dependencies for this technology. //--> <research-dependency-list> + <!-- A research dependency for this technology. //--> <research-dependency> <name>chemistry</name> <level>3</level> diff --git a/application/ship-simu/templates/de/game/technology/sound_equalizer.xml b/application/ship-simu/templates/de/game/technology/sound_equalizer.xml new file mode 100644 index 0000000..2f52c5e --- /dev/null +++ b/application/ship-simu/templates/de/game/technology/sound_equalizer.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A sound-processing 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>sound_equalizer</name> + <type>electronic</type> + </general-data> + <!-- A technology may depend on some other technologies or research + proposals to gain the first level of this technology. //--> + <dependencies> + <!-- All technology dependencies for this technology. //--> + <technology-dependency-list> + <!-- A technology dependency for this technology. //--> + <technology-dependency> + <name>transistor</name> + <level>5</level> + </technology-dependency> + </technology-dependency-list> + <!-- All research dependencies for this technology. //--> + <!-- @TODO Should we find some theory behind equalizing? //--> + <research-dependency-list> + <!-- A research dependency for this technology. //--> + <research-dependency> + <name>{?research_name?}</name> + <level>{?research_level?}</level> + </research-dependency> + </research-dependency-list> + </dependencies> +</technology> diff --git a/application/ship-simu/templates/de/game/technology/transistor.xml b/application/ship-simu/templates/de/game/technology/transistor.xml new file mode 100644 index 0000000..4253aa2 --- /dev/null +++ b/application/ship-simu/templates/de/game/technology/transistor.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- +A transistor 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>transistor</name> + <type>eletronics</type> + </general-data> + <!-- A technology may depend on some other technologies or research + proposals to gain the first level of this technology. //--> + <dependencies> + <!-- All technology dependencies for this technology. //--> + <technology-dependency-list> + <!-- A technology dependency for this technology. //--> + <technology-dependency> + <name>semiconductor</name> + <level>1</level> + </technology-dependency> + <technology-dependency> + <name>plastics</name> + <level>5</level> + </technology-dependency> + </technology-dependency-list> + <!-- All research dependencies for this technology. //--> + <research-dependency-list> + <!-- A research dependency for this technology. //--> + <research-dependency> + <name>silicium_mining</name> + <level>1</level> + </research-dependency> + </research-dependency-list> + </dependencies> +</technology> diff --git a/application/ship-simu/templates/de/game/types/electronic_types.xml b/application/ship-simu/templates/de/game/types/electronic_types.xml index 6ff53e9..dcbc208 100644 --- a/application/ship-simu/templates/de/game/types/electronic_types.xml +++ b/application/ship-simu/templates/de/game/types/electronic_types.xml @@ -25,5 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <electronic-type-list> <!-- All common communication devices. //--> <electronic-type type="communication" /> + <!-- All commercial systems for entertainment. //--> + <electronic-type type="entertainment" /> <!-- @TODO Add more types. //--> </electronic-type-list> diff --git a/application/ship-simu/templates/de/game/types/research_types.xml b/application/ship-simu/templates/de/game/types/research_types.xml index 7f7c247..f3a6b47 100644 --- a/application/ship-simu/templates/de/game/types/research_types.xml +++ b/application/ship-simu/templates/de/game/types/research_types.xml @@ -22,7 +22,11 @@ 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-type-list> +<research-type-list> <!-- A base research proposal which all others depend on. //--> - <technology-type type="base" /> + <research-type type="base" /> + <!-- An electronics research proposal. This type may conflict with the + same technology. This is also why it is hard to devide between + technology and theory in this type. //--> + <research-type type="electronics" /> </technology-type-list> diff --git a/application/ship-simu/templates/de/game/types/technology_types.xml b/application/ship-simu/templates/de/game/types/technology_types.xml index 1d96811..4666d86 100644 --- a/application/ship-simu/templates/de/game/types/technology_types.xml +++ b/application/ship-simu/templates/de/game/types/technology_types.xml @@ -33,6 +33,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/> <technology-type type="communication" /> <!-- Technologies for different constructions. //--> <technology-type type="construction" /> + <!-- Different electronics technologies. //--> + <technology-type type="electronics" /> <!-- Different equipment technologies. //--> <technology-type type="equipment" /> <!-- Different production technologies. //--> diff --git a/docs/TODOs.txt b/docs/TODOs.txt index 0d0ffc3..f8ee474 100644 --- a/docs/TODOs.txt +++ b/docs/TODOs.txt @@ -171,18 +171,24 @@ ./inc/language.php:31:// @TODO Rewrite this ./inc/loader/class_ClassLoader.php:262: /* @todo: Do not die here. */ ./application/ship-simu/templates/de/game/contract/base_contract.xml:51: <!-- @TODO We need to make this more XML than free text. //--> +./application/ship-simu/templates/de/game/electronic/cellphone.xml:55: <!-- @TODO Do we need research dependency here? //--> ./application/ship-simu/templates/de/game/farmer/base_farmer.xml:10:@todo Unfinished template +./application/ship-simu/templates/de/game/farmer/base_farmer.xml:50: product. @TODO Find some better typo here. //--> +./application/ship-simu/templates/de/game/research/radio_receiving.xml:35: <!-- @TODO Find some technology dependencies. //--> +./application/ship-simu/templates/de/game/research/radio_receiving.xml:44: <!-- @TODO Find some research dependencies. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:100: <!-- @TODO This section is not complete. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:104: <!-- @TODO This section is not complete. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:108: <!-- @TODO This section is not complete. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:79: <!-- @TODO This section is not complete. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:89: <!-- @TODO This section is not complete. //--> ./application/ship-simu/templates/de/game/ship/base_ship.xml:96: <!-- @TODO This section is not complete. //--> -./application/ship-simu/templates/de/game/technology/cellular_network.xml:43: <!-- @TODO Do we need research dependencies? //--> +./application/ship-simu/templates/de/game/technology/cellular_network.xml:35: <!-- @TODO Find some technology dependencies. //--> +./application/ship-simu/templates/de/game/technology/plastics.xml:37: <!-- @TODO Find a chemical name for this technology. //--> +./application/ship-simu/templates/de/game/technology/sound_equalizer.xml:42: <!-- @TODO Should we find some theory behind equalizing? //--> ./application/ship-simu/templates/de/game/types/container_types.xml:33: <!-- @TODO Add more containers. //--> ./application/ship-simu/templates/de/game/types/content_types.xml:31: <!-- @TODO Add more container content types. //--> ./application/ship-simu/templates/de/game/types/contract_types.xml:40: <!-- @TODO Add more contract types. //--> -./application/ship-simu/templates/de/game/types/electronic_types.xml:28: <!-- @TODO Add more types. //--> +./application/ship-simu/templates/de/game/types/electronic_types.xml:30: <!-- @TODO Add more types. //--> ./application/ship-simu/templates/de/game/types/farmer_types.xml:10:@todo Unfinished template ./application/ship-simu/templates/de/game/types/merchant_types.xml:10:@todo Unfinished template ./application/ship-simu/templates/de/game/types/owner_occupants.xml:10:@todo Unfinished definition