@@ -84,6 +84,21 @@ def init_condition(condition: Callable[[], bool]):
84
84
"""
85
85
)
86
86
87
+ def _add_binding (self , body : Callable [bool , bool , NoneType ]) -> None :
88
+ """
89
+ Adds a binding to the EventLoop.
90
+
91
+ :param body: The body of the binding to add.
92
+ """
93
+
94
+ state = SimpleNamespace (previous = self ._condition ())
95
+
96
+ @self ._loop .bind
97
+ def _ ():
98
+ current = self ._condition ()
99
+ body (state .previous , current )
100
+ state .previous = current
101
+
87
102
def onTrue (self , command : Command ) -> Self :
88
103
"""
89
104
Starts the given command whenever the condition changes from `False` to `True`.
@@ -92,14 +107,10 @@ def onTrue(self, command: Command) -> Self:
92
107
:returns: this trigger, so calls can be chained
93
108
"""
94
109
95
- state = SimpleNamespace (pressed_last = self ._condition ())
96
-
97
- @self ._loop .bind
98
- def _ ():
99
- pressed = self ._condition ()
100
- if not state .pressed_last and pressed :
110
+ @self ._add_binding
111
+ def _ (previous , current ):
112
+ if not previous and current :
101
113
command .schedule ()
102
- state .pressed_last = pressed
103
114
104
115
return self
105
116
@@ -111,14 +122,10 @@ def onFalse(self, command: Command) -> Self:
111
122
:returns: this trigger, so calls can be chained
112
123
"""
113
124
114
- state = SimpleNamespace (pressed_last = self ._condition ())
115
-
116
- @self ._loop .bind
117
- def _ ():
118
- pressed = self ._condition ()
119
- if state .pressed_last and not pressed :
125
+ @self ._add_binding
126
+ def _ (previous , current ):
127
+ if previous and not current :
120
128
command .schedule ()
121
- state .pressed_last = pressed
122
129
123
130
return self
124
131
@@ -130,17 +137,11 @@ def onChange(self, command: Command) -> Self:
130
137
:returns: this trigger, so calls can be chained
131
138
"""
132
139
133
- state = SimpleNamespace (pressed_last = self ._condition ())
134
-
135
- @self ._loop .bind
136
- def _ ():
137
- pressed = self ._condition ()
138
-
139
- if state .pressed_last != pressed :
140
+ @self ._add_binding
141
+ def _ (previous , current ):
142
+ if previous != current :
140
143
command .schedule ()
141
144
142
- state .pressed_last = pressed
143
-
144
145
return self
145
146
146
147
def whileTrue (self , command : Command ) -> Self :
@@ -155,16 +156,12 @@ def whileTrue(self, command: Command) -> Self:
155
156
:returns: this trigger, so calls can be chained
156
157
"""
157
158
158
- state = SimpleNamespace (pressed_last = self ._condition ())
159
-
160
- @self ._loop .bind
161
- def _ ():
162
- pressed = self ._condition ()
163
- if not state .pressed_last and pressed :
159
+ @self ._add_binding
160
+ def _ (previous , current ):
161
+ if not previous and current :
164
162
command .schedule ()
165
- elif state . pressed_last and not pressed :
163
+ elif previous and not current :
166
164
command .cancel ()
167
- state .pressed_last = pressed
168
165
169
166
return self
170
167
@@ -180,16 +177,12 @@ def whileFalse(self, command: Command) -> Self:
180
177
:returns: this trigger, so calls can be chained
181
178
"""
182
179
183
- state = SimpleNamespace (pressed_last = self ._condition ())
184
-
185
- @self ._loop .bind
186
- def _ ():
187
- pressed = self ._condition ()
188
- if state .pressed_last and not pressed :
180
+ @self ._add_binding
181
+ def _ (previous , current ):
182
+ if previous and not current :
189
183
command .schedule ()
190
- elif not state . pressed_last and pressed :
184
+ elif not previous and current :
191
185
command .cancel ()
192
- state .pressed_last = pressed
193
186
194
187
return self
195
188
@@ -201,17 +194,13 @@ def toggleOnTrue(self, command: Command) -> Self:
201
194
:returns: this trigger, so calls can be chained
202
195
"""
203
196
204
- state = SimpleNamespace (pressed_last = self ._condition ())
205
-
206
- @self ._loop .bind
207
- def _ ():
208
- pressed = self ._condition ()
209
- if not state .pressed_last and pressed :
197
+ @self ._add_binding
198
+ def _ (previous , current ):
199
+ if not previous and current :
210
200
if command .isScheduled ():
211
201
command .cancel ()
212
202
else :
213
203
command .schedule ()
214
- state .pressed_last = pressed
215
204
216
205
return self
217
206
@@ -223,17 +212,13 @@ def toggleOnFalse(self, command: Command) -> Self:
223
212
:returns: this trigger, so calls can be chained
224
213
"""
225
214
226
- state = SimpleNamespace (pressed_last = self ._condition ())
227
-
228
- @self ._loop .bind
229
- def _ ():
230
- pressed = self ._condition ()
231
- if state .pressed_last and not pressed :
215
+ @self ._add_binding
216
+ def _ (previous , current ):
217
+ if previous and not current :
232
218
if command .isScheduled ():
233
219
command .cancel ()
234
220
else :
235
221
command .schedule ()
236
- state .pressed_last = pressed
237
222
238
223
return self
239
224
0 commit comments