package lectures.animation.threads.ui;
import util.annotations.WebDocuments;

import lectures.animation.threads_commands.AShuttleAnimationCommand;
import lectures.composite.objects_shapes.PlottedShuttle;
import lectures.mvc.properties.AnObservablePlottedShuttle;
import bus.uigen.OEFrame;
import bus.uigen.ObjectEditor;

@WebDocuments({"Lectures/AnimationThreadsUi.pptx", "Lectures/AnimationThreadsUi.pdf", "Videos/AnimationThreadsUi.avi"})
public class AConcurrentShuttleAnimator extends AFancyShuttleAnimator  {    
    public AConcurrentShuttleAnimator(PlottedShuttle theShuttle) {
        super(theShuttle);
    }
    public void animateShuttle() {      
        Thread thread = new Thread(
            (new AShuttleAnimationCommand(
                this, shuttle,animationStep, animationPauseTime)));
        thread.start();
    }
    
    public static void main (String[] args) {
        PlottedShuttle shuttle = new AnObservablePlottedShuttle(50, 100);
        OEFrame oeFrame = ObjectEditor.edit(shuttle);
        oeFrame.hideMainPanel();
        oeFrame.setSize (450, 450);
        FancyShuttleAnimator shuttleAnimator = new AConcurrentShuttleAnimator(shuttle);
        ObjectEditor.edit(shuttleAnimator);
    }

}