]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/announced/class_NodeAnnouncedState.php
Continued:
[hub.git] / application / hub / main / states / node / announced / class_NodeAnnouncedState.php
index 0e2c10a91c3d944299434d495a762786a6c96feb..89e8e0c9d0b839e3e85f9003c8b333fd84680a5f 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A Announced node state class
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.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 - 2012 Hub 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
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-class NodeAnnouncedState extends BaseState implements Stateable {
+class NodeAnnouncedState extends BaseNodeState implements Stateable {
        /**
         * Protected constructor
         *
@@ -41,19 +41,27 @@ class NodeAnnouncedState extends BaseState implements Stateable {
         * @param       $nodeInstance   An instance of a NodeHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public final static function createNodeAnnouncedState (NodeHelper $nodeInstance) {
+       public static final function createNodeAnnouncedState (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new NodeAnnouncedState();
 
-               // Debug message
-               $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
-
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);
 
                // Return the prepared instance
                return $stateInstance;
        }
+
+       /**
+        * Changes the state if the announcement (to bootstrap node) was
+        * successful.
+        *
+        * @return      void
+        */
+       public function nodeAnnouncementSuccessful () {
+               // The node's announcement was successful
+               NodeStateFactory::createNodeStateInstanceByName('announcement_completed', $this->getNodeInstance());
+       }
 }
 
 // [EOF]