Beispiel #1
0
 function Imperio($arrayPlanetas)
 {
     foreach ($arrayPlanetas as $datosPlaneta) {
         if ($datosPlaneta["esPrincipal"]) {
             $idPrincipal = $datosPlaneta["id"];
             $planeta = new Planeta($datosPlaneta["id"], $datosPlaneta["nombre"], $datosPlaneta["coordenadas"]);
         } else {
             $planeta = new Colonia($datosPlaneta["id"], $datosPlaneta["nombre"], $datosPlaneta["coordenadas"], $idPrincipal);
         }
         $planeta->inicializar();
         $this->planetas = insertarLista($this->planetas, null, $planeta);
     }
     $this->finCola = null;
     $this->logger = new Logger();
 }