]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/active/class_NodeActiveState.php
Cruncher continued and rewritten to use states:
[hub.git] / application / hub / main / states / node / active / class_NodeActiveState.php
index c6c58771c4e055c19502ed24822296e75c0b7ab1..9822dfaa855decf2f0da6073f0577d504f194f60 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -41,13 +41,16 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         * @param       $nodeInstance   An instance of a NodeHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public final static function createNodeActiveState (NodeHelper $nodeInstance) {
+       public static final function createNodeActiveState (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new NodeActiveState();
 
                // Debug message
                $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
 
+               // Enable isActive flag in node instance
+               $nodeInstance->enableIsActive();
+
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);
 
@@ -62,7 +65,7 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         */
        public function nodeAnnouncedToUpperHubs () {
                // Create the new state instance
-               StateFactory::createStateInstanceByName('announced', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('announced', $this->getNodeInstance());
        }
 }