public function watchMovie($movie)
 {
     println("Get ready to watch a movie...");
     $this->popper->on();
     $this->popper->pop();
     $this->lights->dim(10);
     $this->screen->down();
     $this->projector->on();
     $this->projector->wideScreenMode();
     $this->amp->on();
     $this->amp->setDvd($this->dvd);
     $this->amp->setSurroundSound();
     $this->amp->setVolume(5);
     $this->dvd->on();
     $this->dvd->play($movie);
 }