Difficult-Rocket/Difficult_Rocket/gui/widget/button.py

126 lines
3.8 KiB
Python
Raw Normal View History

2021-10-01 23:12:01 +08:00
# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
2021-10-01 23:12:01 +08:00
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
2023-01-01 17:58:40 +08:00
from typing import Optional, Union, Tuple
2021-11-06 19:07:32 +08:00
# from libs import pyglet
2023-02-25 09:18:41 +08:00
# from pyglet import font
2023-08-20 21:42:38 +08:00
from pyglet.text import Label
from pyglet.window import mouse
2022-10-29 19:13:00 +08:00
from pyglet.gui import widgets
2023-01-01 17:58:40 +08:00
# from pyglet.sprite import Sprite
2022-10-29 19:13:00 +08:00
from pyglet.shapes import Rectangle
2023-01-01 17:58:40 +08:00
# from pyglet.image import AbstractImage
2022-10-29 19:13:00 +08:00
from pyglet.graphics import Batch, Group
2022-12-20 16:31:08 +08:00
2023-08-12 00:28:31 +08:00
from Difficult_Rocket.api.types import Fonts
2023-08-20 21:42:38 +08:00
# from Difficult_Rocket import DR_status
RGBA = Tuple[int, int, int, int]
class BaseTheme:
"""
用于定义主题的类
"""
def __init__(self,
main_color: RGBA = (39, 73, 114, 256),
secondary_color: RGBA = (66, 150, 250, 256),
main_font: str = Fonts.鸿蒙简体,
):
self.main_color = main_color
self.secondary_color = secondary_color
self.main_font = main_font
2022-12-20 16:31:08 +08:00
2023-08-20 02:01:15 +08:00
class PressTextButton(widgets.WidgetBase):
2022-12-20 16:31:08 +08:00
"""
2023-08-12 00:28:31 +08:00
自带 字符 + 材质 的按钮就不用单独做材质了
2022-12-20 16:31:08 +08:00
"""
def __init__(self,
2023-08-12 00:28:31 +08:00
x: int,
y: int,
width: int,
height: int,
2022-12-20 16:31:08 +08:00
text: str,
2023-08-20 01:52:22 +08:00
font: str = Fonts.鸿蒙简体,
font_size: int = 13,
batch: Optional[Batch] = None,
group: Optional[Group] = None,
):
2022-12-20 16:31:08 +08:00
super().__init__(x, y, width, height)
2023-08-20 21:42:38 +08:00
self.back_ground_batch = batch or Batch()
2023-08-20 01:52:22 +08:00
self.front_batch = batch or Batch()
if group:
2023-08-20 21:42:38 +08:00
self.front_group = Group(order=10, parent=group)
self.back_ground_group = Group(order=5, parent=group)
2023-08-20 01:52:22 +08:00
else:
self.front_group = Group(order=5)
self.back_ground_group = Group(order=10)
2023-08-20 21:42:38 +08:00
self.pressed = False
2023-08-20 02:01:15 +08:00
self.untouched_color = (39, 73, 114, 255)
self.touched_color = (66, 150, 250, 255)
self.hit_color = (15, 135, 250, 255)
# from ImGui
2022-12-20 16:31:08 +08:00
self.text = text
2023-08-20 01:52:22 +08:00
self.text_label = Label(font_name=font, font_size=font_size,
2023-08-20 21:42:38 +08:00
batch=self.front_batch, group=self.front_group,
x=self._x, y=self._y, text=self.text)
2023-08-20 01:52:22 +08:00
self.back_rec = Rectangle(x=self._x, y=self._y, width=self._width, height=self._height,
2023-08-20 02:01:15 +08:00
color=self.untouched_color, # ImGui color
2023-08-20 01:52:22 +08:00
batch=self.back_ground_batch, group=self.back_ground_group)
2022-12-20 16:31:08 +08:00
@property
def value(self):
return self.text
2023-08-20 02:01:15 +08:00
def __contains__(self, item):
return item in self.back_rec
def on_mouse_motion(self, x, y, dx, dy):
2023-08-20 21:42:38 +08:00
if (x, y) in self.back_rec:
2023-08-20 02:01:15 +08:00
self.back_rec.color = self.touched_color
else:
2023-08-20 21:42:38 +08:00
self.pressed = False
2023-08-20 02:01:15 +08:00
self.back_rec.color = self.untouched_color
2023-08-20 21:42:38 +08:00
def on_mouse_press(self, x, y, buttons, modifiers) -> bool:
if (x, y) in self and buttons == mouse.LEFT:
2023-08-20 02:01:15 +08:00
self.back_rec.color = self.hit_color
self.dispatch_event('on_press', x, y)
2023-08-20 21:42:38 +08:00
self.pressed = True
2023-08-20 02:01:15 +08:00
return True
return False
2023-08-20 21:42:38 +08:00
def on_mouse_release(self, x, y, buttons, modifiers):
if self.pressed and (x, y) in self:
self.back_rec.color = self.touched_color
self.pressed = False
2022-12-20 16:31:08 +08:00
def _update_position(self):
self.text_label.position = self._x, self._y
2023-08-20 02:01:15 +08:00
self.back_rec.position = self._x, self._y
self.back_rec.width = self._width
self.back_rec.height = self._height
2022-12-20 16:31:08 +08:00
...
2023-08-20 02:01:15 +08:00
PressTextButton.register_event_type('on_press')