X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fships%2Fpassenger%2Fclass_PassengerShip.php;h=70fa5ed56b79e7e333d934a8e81f19d2e8bb2c51;hp=c5dfc01891b20a0dcd75c6d7cdea783abfecabbb;hb=4f70843ae8428f051d70ccff5bb43fc4c03dda8d;hpb=a76d51b4096b47436e269156547f02713d95af5b diff --git a/application/ship-simu/main/ships/passenger/class_PassengerShip.php b/application/ship-simu/main/ships/passenger/class_PassengerShip.php index c5dfc01..70fa5ed 100644 --- a/application/ship-simu/main/ships/passenger/class_PassengerShip.php +++ b/application/ship-simu/main/ships/passenger/class_PassengerShip.php @@ -1,43 +1,40 @@ + * @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.shipsimu.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 . + */ +class PassengerShip extends BaseShip implements ConstructableShip { // Konstruktor - private function __construct () { + protected function __construct () { // Eltern-Kontruktor aufrufen - parent::constructor(__CLASS__); - - // Debug message - if (((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) { - $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", - __CLASS__, - __LINE__ - )); - } - - // Set description - $this->setPartDescr("Passagier-Schiff"); - - // Generate unique ID number - $this->createUniqueID(); - - // Clean up a little - $this->removeSystemArray(); + parent::__construct(__CLASS__); } // Passagier-Schiff erstellen - public static function createPassengerShip ($shipName) { + public static final function createPassengerShip ($shipName) { // Get new instance $passInstance = new PassengerShip(); - // Debug message - if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) { - $passInstance->getDebugInstance()->output(sprintf("[%s:%d] Ein Passagier-Schiff wird erstellt.
\n", - __CLASS__, - __LINE__ - )); - } - - // Set ship's name + // Set ship name $passInstance->setShipName($shipName); // Instanz zurueckgeben @@ -45,14 +42,14 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje } // Anzahl Betten ermitteln - final function calcTotalBeds () { + public final function calcTotalBeds () { // Struktur-Array holen $struct = $this->getStructuresArray(); if (is_null($struct)) { // Empty structures list! throw new EmptyStructuresListException($this, self::EXCEPTION_EMPTY_STRUCTURES_ARRAY); - } + } // END - if // Anzahl Betten auf 0 setzen $numBeds = 0; @@ -75,55 +72,15 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje $cab = $el->getPartInstance(); if (!is_null($cab)) { // Kabinenbeschreibung holen - $cabType = $cab->getPartDescr(); - } - - // Debug-Meldung ausgeben - $this->getDebugInstance()->output(sprintf("[%s:%d] Es stehen %d Betten vom Kabinen-Typ %s bereit.
\n", - __CLASS__, - __LINE__, - $total, - $cabType - )); - } - } else { - // Keine Kabine! - if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] %s ist keine Kabine.
\n", - __CLASS__, - __LINE__, - $el->getPartDescr() - )); - } - } - - if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Das %s mit dem Namen %s hat %d Betten.
\n", - __CLASS__, - __LINE__, - $this->getPartDescr(), - $this->getShipName(), - $numBeds - )); + $cabType = $cab->getObjectDescription(); + } // END - if + } // END - if + } // END - if + } // END - for // Anzahl zurueckliefern return $numBeds; } - - /** - * Stub! - */ - public function saveObjectToDatabase () { - $this->getDebugInstance()->output(sprintf("[%s:] Stub %s erreicht.", - $this->__toString(), - __FUNCTION__ - )); - } - - /** - * Limits this object with an ObjectLimits instance - */ - public function limitObject (ObjectLimits $limitInstance) { - ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); - } } // [EOF]