X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fships%2Fpassenger%2Fclass_PassengerShip.php;h=cbe0a2225b5cc20dbd45bbeaaa1e5cde606a5941;hp=de7805078b83ff95e34dc32f90540857b457d085;hb=1cfec479b8c4a745b5b97683d22c8a431f9a3ee7;hpb=ff66822b5fb6a92f5dc8af55290ecb89ec7f1aaf diff --git a/application/ship-simu/main/ships/passenger/class_PassengerShip.php b/application/ship-simu/main/ships/passenger/class_PassengerShip.php index de78050..cbe0a22 100644 --- a/application/ship-simu/main/ships/passenger/class_PassengerShip.php +++ b/application/ship-simu/main/ships/passenger/class_PassengerShip.php @@ -1,32 +1,46 @@ + * @version 0.0.0 + * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @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 . + */ +class PassengerShip extends BaseShip implements ConstructableShip, LimitableObject { // 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__ - )); - } + parent::__construct(__CLASS__); - // Beschreibung setzen - $this->setPartDescr("Passagier-Schiff"); + // Set description + $this->setObjectDescription("Passagier-Schiff"); - // Unique-ID erzeugen - $this->createUniqueID(); + // Generate unique ID number + $this->generateUniqueId(); // Clean up a little $this->removeSystemArray(); } // Passagier-Schiff erstellen - public static function createPassengerShip ($shipName) { - // Instanz holen + public final static function createPassengerShip ($shipName) { + // Get new instance $passInstance = new PassengerShip(); // Debug message @@ -35,7 +49,7 @@ class PassengerShip extends BaseShip implements ConstructableShip { __CLASS__, __LINE__ )); - } + } // END - if // Set ship's name $passInstance->setShipName($shipName); @@ -52,7 +66,7 @@ class PassengerShip extends BaseShip implements ConstructableShip { 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; @@ -70,12 +84,12 @@ class PassengerShip extends BaseShip implements ConstructableShip { // Debug-Meldung ausgeben? if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) { - // Instanz holen + // Get new instance $cabType = "Kabine ohne Namen"; $cab = $el->getPartInstance(); if (!is_null($cab)) { // Kabinenbeschreibung holen - $cabType = $cab->getPartDescr(); + $cabType = $cab->getObjectDescription(); } // Debug-Meldung ausgeben @@ -91,38 +105,35 @@ class PassengerShip extends BaseShip implements ConstructableShip { if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] %s ist keine Kabine.
\n", __CLASS__, __LINE__, - $el->getPartDescr() + $el->getObjectDescription() )); } - } + } // END - for 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->getObjectDescription(), $this->getShipName(), $numBeds )); - + // 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 + * Reduces the volume of a processed object. + * + * @param $limitInstance An instance to ObjectLimits which holds + * attribute names that we want to include in the processing phase. + * Other attributes except $uniqueID and $realClass will be ignored + * and keept out. + * @return void */ - public function limitObject (ObjectLimits $limitInstance) { - ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); + function limitObject (ObjectLimits $limitInstance) { + // Work in progress + $this->partialStub("Unfinished method called."); } }