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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
import threading
import time
def run(action, duration=0, music=None, set_wait_id=None, **kwargs):
action.mapping.add_wait(action, wait_id=set_wait_id)
action.sleep_event = threading.Event()
action.sleep_event_timer = threading.Timer(
duration,
action.sleep_event.set)
action.sleep_event_initial_duration = duration
action.sleep_event_paused = False
action.sleep_event_left_time = duration
if music is not None:
music.wait_end()
if duration <= 0 or not action.sleep_event_paused:
action.sleep_event_timer.start()
action.sleep_event_started_time = time.time()
action.sleep_event.wait()
def description(action, duration=0, music=None, set_wait_id=None, **kwargs):
formats = []
message = ""
if music is None:
message += "waiting {}s"
formats.append(duration)
elif duration == 0:
message += "waiting the end of « {} »"
formats.append(music.name)
else:
message += "waiting the end of « {} » + {}s"
formats.append(music.name)
formats.append(duration)
if set_wait_id is not None:
message += " (setting id = {})"
formats.append(set_wait_id)
return _(message).format(*formats)
def pause(action, **kwargs):
if action.sleep_event_paused:
return
action.sleep_event_paused = True
if not action.sleep_event_timer.is_alive():
return
action.sleep_event_timer.cancel()
action.sleep_event_left_time = action.sleep_event_left_time\
- (time.time() - action.sleep_event_started_time)
if action.sleep_event_left_time < 0:
action.sleep_event.set()
def unpause(action, **kwargs):
if not action.sleep_event_paused:
return
action.sleep_event_paused = False
action.sleep_event_timer = threading.Timer(
action.sleep_event_left_time,
action.sleep_event.set)
action.sleep_event_timer.start()
action.sleep_event_started_time = time.time()
def reset(action, **kwargs):
action.sleep_event_timer.cancel()
action.sleep_event_left_time = action.sleep_event_initial_duration
if action.sleep_event_paused:
return
action.sleep_event_timer = threading.Timer(
action.sleep_event_left_time,
action.sleep_event.set)
action.sleep_event_timer.start()
action.sleep_event_started_time = time.time()
def interrupt(action, duration=0, music=None, **kwargs):
if action.sleep_event is not None:
action.sleep_event.set()
action.sleep_event_timer.cancel()
if music is not None:
music.wait_event.set()
|