]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php
Copyright notice updated
[hub.git] / application / hub / main / listener / udp / decorators / class_ClientUdpListenerDecorator.php
index d814005082b648eedecfc327604f7ea22c32115c..b501982ca4e4f106c50229538597e0be14d70163 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
- * A decorator for the UdpListener to communicate to clients
+ * A decorator for the UdpListener to communicate to peers
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Client 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
  *
@@ -30,6 +30,9 @@ class ClientUdpListenerDecorator extends BaseListenerDecorator implements Listen
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
+
+               // Set listener type
+               $this->setListenerType('peer');
        }
 
        /**
@@ -38,7 +41,7 @@ class ClientUdpListenerDecorator extends BaseListenerDecorator implements Listen
         * @param       $listenerInstance       A Listener instance
         * @return      $decoratorInstance      An instance a prepared listener decorator class
         */
-       public final static function createClientUdpListenerDecorator (Listenable $listenerInstance) {
+       public static final function createClientUdpListenerDecorator (Listenable $listenerInstance) {
                // Get new instance
                $decoratorInstance = new ClientUdpListenerDecorator();
 
@@ -54,9 +57,39 @@ class ClientUdpListenerDecorator extends BaseListenerDecorator implements Listen
         *
         * @return      void
         */
-       public function initListener() {
+       public function initListener () {
                $this->partialStub('WARNING: This method should not be called.');
        }
+
+       /**
+        * "Listens" for incoming network packages
+        *
+        * @return      void
+        */
+       public function doListen () {
+               // Handle generic UDP packages first
+               $this->getListenerInstance()->doListen();
+
+               // Handle this peer UDP package
+               $this->partialStub('Need to handle peer UDP package.');
+       }
+
+       /**
+        * Checks whether the listener would accept the given package data array
+        *
+        * @param       $packageData    Raw package data
+        * @return      $accepts                Whether this listener does accept
+        */
+       function ifListenerAcceptsPackageData (array $packageData) {
+               // Get a tags instance
+               $tagsInstance = PackageTagsFactory::createPackageTagsInstance();
+
+               // So is the package accepted with this listener?
+               $accepts = $tagsInstance->ifPackageDataIsAcceptedByListener($packageData, $this);
+
+               // Return the result
+               return $accepts;
+       }
 }
 
 // [EOF]