]> git.mxchange.org Git - shipsimu.git/blobdiff - ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_EconomyCabin.php
(no commit message)
[shipsimu.git] / ship-simu / application / ship-simu / main / structures / extended / cabines / ship / class_EconomyCabin.php
diff --git a/ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_EconomyCabin.php b/ship-simu/application/ship-simu/main/structures/extended/cabines/ship/class_EconomyCabin.php
deleted file mode 100644 (file)
index bc1bde2..0000000
+++ /dev/null
@@ -1,97 +0,0 @@
-<?php
-// Economy-Class-Kabinen
-class EconomyCabin extends BaseCabin implements ItemIsTradeable, ConstructableShipPart {
-       // Konstruktor
-       private function __construct () {
-               // Eltern-Konstruktor aufrufen
-               parent::constructor(__CLASS__);
-
-               // Debug message
-               if (((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
-                       $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
-                               __CLASS__,
-                               __LINE__
-                       ));
-               }
-
-               // Beschreibung setzen
-               $this->setPartDescr("Economy-Class-Kabine");
-
-               // Unique-ID erzeugen
-               $this->createUniqueID();
-
-               // Clean up a little
-               $this->removeSystemArray();
-       }
-
-       // Economy-Kabine erstellen
-       public static function createEconomyCabin ($numLuxury, $numRooms, $numBeds, $dim) {
-               // Instanz holen
-               $ecoInstance = new EconomyCabin();
-
-               // Debug message
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $ecoInstance->getDebugInstance()->output(sprintf("[%s:%d] Eine Economy-Class-Kabine wird konstruiert...<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-
-               // Abmasse extrahieren
-               $ecoInstance->extractDimensions($dim);
-
-               // Den Rest auch setzen
-               $ecoInstance->setNumCabin($numLuxury);
-               $ecoInstance->setNumRooms($numRooms);
-               $ecoInstance->setNumBeds($numBeds);
-
-               // Nicht noetig!
-               $ecoInstance->removePartInstance();
-
-               // Instanz zurueckgeben
-               return $ecoInstance;
-       }
-
-       // Loesch-Methode fuer Anzahl Betten
-       public function removeNumBeds() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Betten gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numBeds);
-               parent::removeNumBeds();
-       }
-
-       // Loesch-Methode fuer Anzahl Kabinen
-       public function removeNumCabin() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl Kabinen gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numCabin);
-               parent::removeNumCabin();
-       }
-
-       // Loesch-Methode fuer Anzahl Raeume
-       public function removeNumRooms() {
-               if ((defined('DEBUG_CABIN')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Anzahl R&auml;ume gel&ouml;scht.<br />\n",
-                       __CLASS__,
-                       __LINE__
-               ));
-               unset($this->numRooms);
-               parent::removeNumRooms();
-       }
-
-       // Overwritten method for tradeable items
-       public function isTradeable () {
-               return true;
-       }
-
-       /**
-        * Limits this object with an ObjectLimits instance
-        */
-       public function limitObject (ObjectLimits $limitInstance) {
-               ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!");
-       }
-}
-
-// [EOF]
-?>