X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=application%2Fship-simu%2Fmain%2Fstructures%2Fextended%2Fclass_BaseDeckStructure.php;h=371a004d7bc5a06317c3fe28a9c4bfd58302463b;hb=efba981c9bf18c733dfde945b09111ff4b6007ce;hp=5c218cce55f78ea31808e71b8a995f11f9c601e9;hpb=a76d51b4096b47436e269156547f02713d95af5b;p=shipsimu.git diff --git a/application/ship-simu/main/structures/extended/class_BaseDeckStructure.php b/application/ship-simu/main/structures/extended/class_BaseDeckStructure.php index 5c218cc..371a004 100644 --- a/application/ship-simu/main/structures/extended/class_BaseDeckStructure.php +++ b/application/ship-simu/main/structures/extended/class_BaseDeckStructure.php @@ -1,42 +1,45 @@ + * @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 BaseDeckStructure extends BaseStructure { // Anzahl Decks private $numDecks = 0; // Konstruktor - private function __construct ($class) { + protected function __construct ($className) { // Call parent constructor - parent::constructor($class); - - // Debug message - if (((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) { - $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", - __CLASS__, - __LINE__ - )); - } + parent::__construct($className); // Set description - $this->setPartDescr("Deckstruktur"); - } - - /** - * Calls the private constructor - * - * @param $class The class' name - * @return void - */ - public function constructor ($class) { - $this->__construct($class); + $this->setObjectDescription("Deckstruktur"); } // Deckstruktur dem Schiff hinzufuegen public function addShipPartToShip (ConstructableShip $shipInstance, ConstructableShipPart $deckInstance) { - if ((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Das Deck %s wird für das Schiff %s konstruiert.
\n", + if ((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) $this->debugOutput(sprintf("[%s:%d] Das Deck %s wird für das Schiff %s konstruiert.", __CLASS__, __LINE__, - $deckInstance->getPartDescr(), + $deckInstance->getObjectDescription(), $shipInstance->getShipName() )); @@ -47,20 +50,16 @@ class BaseDeckStructure extends BaseStructure { $this->setNumDecks($deckInstance->getNumDecks()); $deckInstance->removeNumDecks(); - if ((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Das Deck %s wurde in das Schiff %s eingebaut.
\n", + if ((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) $this->debugOutput(sprintf("[%s:%d] Das Deck %s wurde in das Schiff %s eingebaut.", __CLASS__, __LINE__, - $deckInstance->getPartDescr(), + $deckInstance->getObjectDescription(), $shipInstance->getShipName() )); } // Deckanzahl entfernen - public function removeNumDecks() { - if ((defined('DEBUG_STRUCTURE')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Decks wurde gelöscht.
\n", - __CLASS__, - __LINE__ - )); + public final function removeNumDecks() { unset($this->numDecks); }