More renamed
[shipsimu.git] / application / ship-simu / main / drives / motor / class_Motor.php
index b8f537701a39211ca80306c47d03d82d4583e07f..2f3479edf6db816e44022ecd7fd4d44bb2f0a3af 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A motorized drive for bigger ships
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @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
@@ -26,31 +26,14 @@ class Motor extends BaseDrive implements TradeableItem, ConstructableShipPart {
        protected function __construct() {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set description
-               $this->setObjectDescription("Namenloser Motor");
-
-               // Generate unique ID number
-               $this->createUniqueID();
-
-               // Clean up a little
-               $this->removeSystemArray();
        }
 
        // Einen Motor erstellen
-       public final static function createMotor ($descr, $hp, $cams, $w, $h, $l) {
+       public static final function createMotor ($descr, $hp, $cams, $w, $h, $l) {
                // Get new instance
                $motorInstance = new Motor();
 
-               // Debug message
-               if ((defined('DEBUG_DRIVE')) || (defined('DEBUG_ALL'))) $motorInstance->getDebugInstance()->output(sprintf("[%s:%d] Motor <strong>%s</strong> wird gebaut...<br />\n",
-                       __CLASS__,
-                       __LINE__,
-                       $descr
-               ));
-
                // Beschreibung und Abmasse setzen
-               $motorInstance->setObjectDescription($descr);
                $motorInstance->setWidth($w);
                $motorInstance->setHeight($h);
                $motorInstance->setLength($l);