X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=application%2Fship-simu%2Fmain%2Fships%2Fpassenger%2Fclass_PassengerShip.php;h=39f50db78d00aadf707f3b685d5ce79d5bfcb1d7;hb=db61178ebaf96aa11cc16f18af4fedaaf32fe2de;hp=af742b3450c3ac5d18a994ce9ad1b9d952cfa543;hpb=d527a312ec4b2983fc0ecda2179ce335c1a5a1f9;p=shipsimu.git diff --git a/application/ship-simu/main/ships/passenger/class_PassengerShip.php b/application/ship-simu/main/ships/passenger/class_PassengerShip.php index af742b3..39f50db 100644 --- a/application/ship-simu/main/ships/passenger/class_PassengerShip.php +++ b/application/ship-simu/main/ships/passenger/class_PassengerShip.php @@ -43,15 +43,7 @@ class PassengerShip extends BaseShip implements ConstructableShip { // 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.", - __CLASS__, - __LINE__ - )); - } // END - if - - // Set ship's name + // Set ship name $passInstance->setShipName($shipName); // Instanz zurueckgeben @@ -59,7 +51,7 @@ class PassengerShip extends BaseShip implements ConstructableShip { } // Anzahl Betten ermitteln - final function calcTotalBeds () { + public final function calcTotalBeds () { // Struktur-Array holen $struct = $this->getStructuresArray(); @@ -90,34 +82,11 @@ class PassengerShip extends BaseShip implements ConstructableShip { if (!is_null($cab)) { // Kabinenbeschreibung holen $cabType = $cab->getObjectDescription(); - } - - // Debug-Meldung ausgeben - $this->getDebugInstance()->output(sprintf("[%s:%d] Es stehen %d Betten vom Kabinen-Typ %s bereit.", - __CLASS__, - __LINE__, - $total, - $cabType - )); - } - } else { - // Keine Kabine! - if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] %s ist keine Kabine.", - __CLASS__, - __LINE__, - $el->getObjectDescription() - )); - } + } // END - if + } // END - if + } // END - if } // END - for - if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Das %s mit dem Namen %s hat %d Betten.", - __CLASS__, - __LINE__, - $this->getObjectDescription(), - $this->getShipName(), - $numBeds - )); - // Anzahl zurueckliefern return $numBeds; }