]> 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 9544e3a5a5a7274646d383233c3724021fa83d41..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,19 +41,32 @@ 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);
 
                // Return the prepared instance
                return $stateInstance;
        }
+
+       /**
+        * State change for if the node got announced to it's upper hubs
+        *
+        * @return      void
+        */
+       public function nodeAnnouncedToUpperHubs () {
+               // Create the new state instance
+               NodeStateFactory::createNodeStateInstanceByName('announced', $this->getNodeInstance());
+       }
 }
 
 // [EOF]