summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/transition/TransitionCallbackThread.java
blob: 58ea0b5db8070e9fd32bf03ee400a240ffc69cba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.fourpuzzle.transition;

import com.fourisland.fourpuzzle.Display;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 *
 * @author hatkirby
 */
public class TransitionCallbackThread implements Runnable {
    
    private Runnable callback;
    public TransitionCallbackThread(Runnable callback)
    {
        this.callback = callback;
    }

    public void run()
    {
        while (Display.getTransition().isRunning())
        {
            try {
                Thread.sleep(300);
            } catch (InterruptedException ex) {
                Logger.getLogger(TransitionCallbackThread.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
        
        //Display.setEnabled(false);

        callback.run();
    }

}