Fake class names added, insertDataSet() stub added, dataset criteria added
[shipsimu.git] / application / ship-simu / main / constructions / harbors / class_Harbor.php
1 <?php
2 /**
3  * A harbor class suitable for all kind of harbors
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright(c) 2007, 2008 Roland Haeder, this is free software
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class Harbor extends BaseConstruction {
25         // Namen des Hafens (z.B. Hamburger Hafen)
26         private $harborName = "Unbekannter Hafen";
27
28         // Schiffsliste aller gebauten Schiffe
29         private $constructedShips = null;
30
31         // Liegeplatz-Liste
32         private $berthList = null;
33
34         // List of all assigned shipyards
35         private $shipyardList = null;
36
37         // Constructor
38         protected function __construct () {
39                 // Call parent constructor
40                 parent::__construct(__CLASS__);
41
42                 // Set description
43                 $this->setObjectDescription("Hafen");
44
45                 // Generate unique ID number
46                 $this->createUniqueID();
47
48                 // Clean up a little
49                 $this->removeSystemArray();
50                 $this->removePartInstance();
51         }
52
53         // Creates a harbor
54         public final static function createHarbor ($harborName) {
55                 // Hafen-Instanz holen
56                 $harborInstance = new Harbor();
57
58                 // Debug message
59                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $harborInstance->getDebugInstance()->output(sprintf("[Harbor:] Der Hafen <strong>%s</strong> wird konstruiert.<br />\n", $harborName));
60
61                 // Hafenname setzen
62                 $harborInstance->setHarborName($harborName);
63
64                 // Werftliste initialisieren
65                 $harborInstance->createshipyardList();
66
67                 // Debug-Meldung ausgeben
68                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $harborInstance->getDebugInstance()->output(sprintf("[Harbor:] Der Hafen <strong>%s</strong> ist jetzt fertig gebaut.<br />\n", $harborName));
69
70                 // Instanz zurueckliefern
71                 return $harborInstance;
72         }
73
74         // Werft-Liste generieren
75         public function createshipyardList () {
76                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[Harbor:] Werft-Liste wird f&uuml;r den Hafen <strong>%s</strong> erstellt.<br />\n",
77                         $this->getHarborName()
78                 ));
79                 $this->shipyardList = new FrameworkArrayObject("FakedShipyardList");
80         }
81
82         // Setter fuer Hafennamen
83         public final function setHarborName ($harborName) {
84                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[Harbor:] Der Hafen heisst jetzt <strong>%s</strong>.<br />\n", $harborName));
85                 $this->harborName = (string) $harborName;
86         }
87
88         // Getter fuer Hafennamen
89         public final function getHarborName () {
90                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[Harbor:] Hafenname <strong>%s</strong> wurde angefordert.<br />\n", $this->harborName));
91                 return $this->harborName;
92         }
93
94         // Werft in den Hafen einbauen und Werft->Reederei zuweisen
95         public function addNewShipyardNotify ($shipyardName, ShippingCompany $companyInstance) {
96                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[Harbor:] Die Werft <strong>%s</strong> wird im Hafen <strong>%s</strong> gebaut.<br />\n",
97                         $shipyardName, $this->getHarborName()
98                 ));
99
100                 // Werft generieren und in die Werftliste aufnehmen
101                 $this->shipyardList->append(Shipyard::createShipyardNotify($this, $shipyardName, $companyInstance));
102         }
103
104         // Werft in den Hafen einbauen ohne Zuweisung einer Reederei (gehoert der "Stadt" dann)
105         public function addNewShipyard ($shipyardName) {
106                 if ((defined('DEBUG_HARBOR')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[Harbor:] Die Werft <strong>%s</strong> wird im Hafen <strong>%s</strong> gebaut.<br />\n",
107                         $shipyardName, $this->getHarborName()
108                 ));
109
110                 // Werft generieren und in die Werftliste aufnehmen
111                 $this->shipyardList->append(Shipyard::createShipyard($this, $shipyardName));
112         }
113 }
114
115 // [EOF]
116 ?>