Spaces:
Runtime error
Runtime error
File size: 15,857 Bytes
d82cf6a |
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
"""Display different types of interactive widgets.
"""
import pyglet
from pyglet.event import EventDispatcher
from pyglet.graphics import Group
from pyglet.text.caret import Caret
from pyglet.text.layout import IncrementalTextLayout
class WidgetBase(EventDispatcher):
def __init__(self, x, y, width, height):
self._x = x
self._y = y
self._width = width
self._height = height
self._bg_group = None
self._fg_group = None
self.enabled = True
def update_groups(self, order):
pass
@property
def x(self):
"""X coordinate of the widget.
:type: int
"""
return self._x
@x.setter
def x(self, value):
self._x = value
self._update_position()
@property
def y(self):
"""Y coordinate of the widget.
:type: int
"""
return self._y
@y.setter
def y(self, value):
self._y = value
self._update_position()
@property
def position(self):
"""The x, y coordinate of the widget as a tuple.
:type: tuple(int, int)
"""
return self._x, self._y
@position.setter
def position(self, values):
self._x, self._y = values
self._update_position()
@property
def width(self):
"""Width of the widget.
:type: int
"""
return self._width
@property
def height(self):
"""Height of the widget.
:type: int
"""
return self._height
@property
def aabb(self):
"""Bounding box of the widget.
Expressed as (x, y, x + width, y + height)
:type: (int, int, int, int)
"""
return self._x, self._y, self._x + self._width, self._y + self._height
@property
def value(self):
"""Query or set the Widget's value.
This property allows you to set the value of a Widget directly, without any
user input. This could be used, for example, to restore Widgets to a
previous state, or if some event in your program is meant to naturally
change the same value that the Widget controls. Note that events are not
dispatched when changing this property.
"""
raise NotImplementedError("Value depends on control type!")
@value.setter
def value(self, value):
raise NotImplementedError("Value depends on control type!")
def _check_hit(self, x, y):
return self._x < x < self._x + self._width and self._y < y < self._y + self._height
def _update_position(self):
raise NotImplementedError("Unable to reposition this Widget")
def on_mouse_press(self, x, y, buttons, modifiers):
pass
def on_mouse_release(self, x, y, buttons, modifiers):
pass
def on_mouse_drag(self, x, y, dx, dy, buttons, modifiers):
pass
def on_mouse_motion(self, x, y, dx, dy):
pass
def on_mouse_scroll(self, x, y, mouse, direction):
pass
def on_text(self, text):
pass
def on_text_motion(self, motion):
pass
def on_text_motion_select(self, motion):
pass
class PushButton(WidgetBase):
"""Instance of a push button.
Triggers the event 'on_press' when it is clicked by the mouse.
Triggers the event 'on_release' when the mouse is released.
"""
def __init__(self, x, y, pressed, depressed, hover=None, batch=None, group=None):
"""Create a push button.
:Parameters:
`x` : int
X coordinate of the push button.
`y` : int
Y coordinate of the push button.
`pressed` : `~pyglet.image.AbstractImage`
Image to display when the button is pressed.
`depresseed` : `~pyglet.image.AbstractImage`
Image to display when the button isn't pressed.
`hover` : `~pyglet.image.AbstractImage`
Image to display when the button is being hovered over.
`batch` : `~pyglet.graphics.Batch`
Optional batch to add the push button to.
`group` : `~pyglet.graphics.Group`
Optional parent group of the push button.
"""
super().__init__(x, y, depressed.width, depressed.height)
self._pressed_img = pressed
self._depressed_img = depressed
self._hover_img = hover or depressed
# TODO: add `draw` method or make Batch required.
self._batch = batch or pyglet.graphics.Batch()
self._user_group = group
bg_group = Group(order=0, parent=group)
self._sprite = pyglet.sprite.Sprite(self._depressed_img, x, y, batch=batch, group=bg_group)
self._pressed = False
def _update_position(self):
self._sprite.position = self._x, self._y, 0
@property
def value(self):
return self._pressed
@value.setter
def value(self, value):
assert type(value) is bool, "This Widget's value must be True or False."
self._pressed = value
self._sprite.image = self._pressed_img if self._pressed else self._depressed_img
def update_groups(self, order):
self._sprite.group = Group(order=order + 1, parent=self._user_group)
def on_mouse_press(self, x, y, buttons, modifiers):
if not self.enabled or not self._check_hit(x, y):
return
self._sprite.image = self._pressed_img
self._pressed = True
self.dispatch_event('on_press')
def on_mouse_release(self, x, y, buttons, modifiers):
if not self.enabled or not self._pressed:
return
self._sprite.image = self._hover_img if self._check_hit(x, y) else self._depressed_img
self._pressed = False
self.dispatch_event('on_release')
def on_mouse_motion(self, x, y, dx, dy):
if not self.enabled or self._pressed:
return
self._sprite.image = self._hover_img if self._check_hit(x, y) else self._depressed_img
def on_mouse_drag(self, x, y, dx, dy, buttons, modifiers):
if not self.enabled or self._pressed:
return
self._sprite.image = self._hover_img if self._check_hit(x, y) else self._depressed_img
PushButton.register_event_type('on_press')
PushButton.register_event_type('on_release')
class ToggleButton(PushButton):
"""Instance of a toggle button.
Triggers the event 'on_toggle' when the mouse is pressed or released.
"""
def _get_release_image(self, x, y):
return self._hover_img if self._check_hit(x, y) else self._depressed_img
def on_mouse_press(self, x, y, buttons, modifiers):
if not self.enabled or not self._check_hit(x, y):
return
self._pressed = not self._pressed
self._sprite.image = self._pressed_img if self._pressed else self._get_release_image(x, y)
self.dispatch_event('on_toggle', self._pressed)
def on_mouse_release(self, x, y, buttons, modifiers):
if not self.enabled or self._pressed:
return
self._sprite.image = self._get_release_image(x, y)
ToggleButton.register_event_type('on_toggle')
class Slider(WidgetBase):
"""Instance of a slider made of a base and a knob image.
Triggers the event 'on_change' when the knob position is changed.
The knob position can be changed by dragging with the mouse, or
scrolling the mouse wheel.
"""
def __init__(self, x, y, base, knob, edge=0, batch=None, group=None):
"""Create a slider.
:Parameters:
`x` : int
X coordinate of the slider.
`y` : int
Y coordinate of the slider.
`base` : `~pyglet.image.AbstractImage`
Image to display as the background to the slider.
`knob` : `~pyglet.image.AbstractImage`
Knob that moves to show the position of the slider.
`edge` : int
Pixels from the maximum and minimum position of the slider,
to the edge of the base image.
`batch` : `~pyglet.graphics.Batch`
Optional batch to add the slider to.
`group` : `~pyglet.graphics.Group`
Optional parent group of the slider.
"""
super().__init__(x, y, base.width, knob.height)
self._edge = edge
self._base_img = base
self._knob_img = knob
self._half_knob_width = knob.width / 2
self._half_knob_height = knob.height / 2
self._knob_img.anchor_y = knob.height / 2
self._min_knob_x = x + edge
self._max_knob_x = x + base.width - knob.width - edge
self._user_group = group
bg_group = Group(order=0, parent=group)
fg_group = Group(order=1, parent=group)
self._base_spr = pyglet.sprite.Sprite(self._base_img, x, y, batch=batch, group=bg_group)
self._knob_spr = pyglet.sprite.Sprite(self._knob_img, x+edge, y+base.height/2, batch=batch, group=fg_group)
self._value = 0
self._in_update = False
def _update_position(self):
self._base_spr.position = self._x, self._y, 0
self._knob_spr.position = self._x + self._edge, self._y + self._base_img.height / 2, 0
@property
def value(self):
return self._value
@value.setter
def value(self, value):
assert type(value) in (int, float), "This Widget's value must be an int or float."
self._value = value
x = (self._max_knob_x - self._min_knob_x) * value / 100 + self._min_knob_x + self._half_knob_width
self._knob_spr.x = max(self._min_knob_x, min(x - self._half_knob_width, self._max_knob_x))
def update_groups(self, order):
self._base_spr.group = Group(order=order + 1, parent=self._user_group)
self._knob_spr.group = Group(order=order + 2, parent=self._user_group)
@property
def _min_x(self):
return self._x + self._edge
@property
def _max_x(self):
return self._x + self._width - self._edge
@property
def _min_y(self):
return self._y - self._half_knob_height
@property
def _max_y(self):
return self._y + self._half_knob_height + self._base_img.height / 2
def _check_hit(self, x, y):
return self._min_x < x < self._max_x and self._min_y < y < self._max_y
def _update_knob(self, x):
self._knob_spr.x = max(self._min_knob_x, min(x - self._half_knob_width, self._max_knob_x))
self._value = abs(((self._knob_spr.x - self._min_knob_x) * 100) / (self._min_knob_x - self._max_knob_x))
self.dispatch_event('on_change', self._value)
def on_mouse_press(self, x, y, buttons, modifiers):
if not self.enabled:
return
if self._check_hit(x, y):
self._in_update = True
self._update_knob(x)
def on_mouse_drag(self, x, y, dx, dy, buttons, modifiers):
if not self.enabled:
return
if self._in_update:
self._update_knob(x)
def on_mouse_scroll(self, x, y, mouse, direction):
if not self.enabled:
return
if self._check_hit(x, y):
self._update_knob(self._knob_spr.x + self._half_knob_width + direction)
def on_mouse_release(self, x, y, buttons, modifiers):
if not self.enabled:
return
self._in_update = False
Slider.register_event_type('on_change')
class TextEntry(WidgetBase):
"""Instance of a text entry widget.
Allows the user to enter and submit text.
"""
def __init__(self, text, x, y, width,
color=(255, 255, 255, 255), text_color=(0, 0, 0, 255), caret_color=(0, 0, 0),
batch=None, group=None):
"""Create a text entry widget.
:Parameters:
`text` : str
Initial text to display.
`x` : int
X coordinate of the text entry widget.
`y` : int
Y coordinate of the text entry widget.
`width` : int
The width of the text entry widget.
`color` : (int, int, int, int)
The color of the outline box in RGBA format.
`text_color` : (int, int, int, int)
The color of the text in RGBA format.
`caret_color` : (int, int, int)
The color of the caret in RGB format.
`batch` : `~pyglet.graphics.Batch`
Optional batch to add the text entry widget to.
`group` : `~pyglet.graphics.Group`
Optional parent group of text entry widget.
"""
self._doc = pyglet.text.document.UnformattedDocument(text)
self._doc.set_style(0, len(self._doc.text), dict(color=text_color))
font = self._doc.get_font()
height = font.ascent - font.descent
self._user_group = group
bg_group = Group(order=0, parent=group)
fg_group = Group(order=1, parent=group)
# Rectangular outline with 2-pixel pad:
self._pad = p = 2
self._outline = pyglet.shapes.Rectangle(x-p, y-p, width+p+p, height+p+p, color[:3], batch, bg_group)
self._outline.opacity = color[3]
# Text and Caret:
self._layout = IncrementalTextLayout(self._doc, width, height, multiline=False, batch=batch, group=fg_group)
self._layout.x = x
self._layout.y = y
self._caret = Caret(self._layout, color=caret_color)
self._caret.visible = False
self._focus = False
super().__init__(x, y, width, height)
def _update_position(self):
self._layout.position = self._x, self._y, 0
self._outline.position = self._x - self._pad, self._y - self._pad
@property
def value(self):
return self._doc.text
@value.setter
def value(self, value):
assert type(value) is str, "This Widget's value must be a string."
self._doc.text = value
def _check_hit(self, x, y):
return self._x < x < self._x + self._width and self._y < y < self._y + self._height
def _set_focus(self, value):
self._focus = value
self._caret.visible = value
def update_groups(self, order):
self._outline.group = Group(order=order + 1, parent=self._user_group)
self._layout.group = Group(order=order + 2, parent=self._user_group)
def on_mouse_motion(self, x, y, dx, dy):
if not self.enabled:
return
def on_mouse_drag(self, x, y, dx, dy, buttons, modifiers):
if not self.enabled:
return
if self._focus:
self._caret.on_mouse_drag(x, y, dx, dy, buttons, modifiers)
def on_mouse_press(self, x, y, buttons, modifiers):
if not self.enabled:
return
if self._check_hit(x, y):
self._set_focus(True)
self._caret.on_mouse_press(x, y, buttons, modifiers)
else:
self._set_focus(False)
def on_text(self, text):
if not self.enabled:
return
if self._focus:
# Commit on Enter/Return:
if text in ('\r', '\n'):
self.dispatch_event('on_commit', self._layout.document.text)
self._set_focus(False)
return
self._caret.on_text(text)
def on_text_motion(self, motion):
if not self.enabled:
return
if self._focus:
self._caret.on_text_motion(motion)
def on_text_motion_select(self, motion):
if not self.enabled:
return
if self._focus:
self._caret.on_text_motion_select(motion)
def on_commit(self, text):
if not self.enabled:
return
"""Text has been commited via Enter/Return key."""
TextEntry.register_event_type('on_commit')
|