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

1274 lines
41 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
# -------------------------------
2024-08-03 19:51:38 +08:00
# ruff: noqa: E241, E261
2021-10-01 23:12:01 +08:00
from __future__ import annotations
2024-07-27 03:23:40 +08:00
import math
from typing import Optional, Tuple, Type, Sequence
2024-07-29 18:54:26 +08:00
from dataclasses import dataclass
2024-07-29 23:06:14 +08:00
from enum import Enum
2023-01-01 17:58:40 +08:00
2021-11-06 19:07:32 +08:00
# from libs import pyglet
2023-08-22 00:31:25 +08:00
import pyglet
from pyglet.gl import GL_ONE_MINUS_SRC_ALPHA, GL_SRC_ALPHA
from pyglet.graphics.shader import ShaderProgram
2023-08-20 21:42:38 +08:00
from pyglet.text import Label
2022-10-29 19:13:00 +08:00
from pyglet.gui import widgets
2023-08-22 00:31:25 +08:00
from pyglet.window import mouse
2023-12-03 16:54:07 +08:00
2024-07-27 03:23:40 +08:00
from pyglet.shapes import Rectangle, BorderedRectangle, ShapeBase, _rotate_point
2024-07-28 08:05:05 +08:00
from pyglet.gui.widgets import WidgetBase
2023-12-03 16:54:07 +08:00
2022-10-29 19:13:00 +08:00
from pyglet.graphics import Batch, Group
2022-12-20 16:31:08 +08:00
from Difficult_Rocket.api.types import Options, FontData
2023-08-20 21:42:38 +08:00
# from Difficult_Rocket import DR_status
RGBA = Tuple[int, int, int, int]
2024-07-27 03:23:40 +08:00
2024-07-29 18:54:26 +08:00
@dataclass
2024-08-03 19:51:38 +08:00
class OreuiShapeColors:
2024-07-29 18:54:26 +08:00
# 这里都是 未按下的颜色
2024-07-29 23:06:14 +08:00
# 外面一圈高光
highlight: RGBA = (255, 255, 255, 255)
2024-07-29 18:54:26 +08:00
# 边框
border: RGBA = (0, 0, 0, 255)
# 下巴
down_pad: RGBA = (49, 50, 51, 255)
# 左下角和右上角的重叠点
corner: RGBA = (124, 124, 125, 255)
# 左上拐角
left_up: RGBA = (109, 109, 110, 255)
# 右下拐角
right_down: RGBA = (90, 91, 92, 255)
# 内部填充
inner: RGBA = (72, 73, 74, 255)
2024-08-03 19:51:38 +08:00
def __eq__(self, other: object) -> bool:
return (
self.__class__ == other.__class__ and
self.highlight == other.highlight and
self.border == other.border and
self.down_pad == other.down_pad and
self.corner == other.corner and
self.left_up == other.left_up and
self.right_down == other.right_down and
self.inner == other.inner
)
2024-07-29 18:54:26 +08:00
2024-08-03 19:51:38 +08:00
class OreuiButtonStyles(Enum):
wiki_normal = OreuiShapeColors()
wiki_press = OreuiShapeColors(
2024-07-31 19:04:55 +08:00
corner=(106, 107, 108, 255),
down_pad=(35, 35, 36, 255),
left_up=(90, 91, 92, 255),
right_down=(70, 71, 71, 255),
inner=(49, 50, 51, 255),
)
2024-08-03 19:51:38 +08:00
game1_normal = OreuiShapeColors(
2024-07-31 19:04:55 +08:00
border=(30, 30, 31, 255),
corner=(253, 253, 254, 255),
down_pad=(88, 88, 90, 255),
left_up=(251, 251, 253, 255),
right_down=(248, 250, 251, 255),
2024-08-01 01:51:45 +08:00
inner=(244, 246, 249, 255),
2024-07-31 19:04:55 +08:00
)
2024-08-03 19:51:38 +08:00
game1_select = OreuiShapeColors(
2024-07-31 19:04:55 +08:00
border=(30, 30, 31, 255),
corner=(244, 244, 245, 255),
down_pad=(88, 88, 90, 255),
left_up=(236, 237, 238, 255),
right_down=(227, 227, 229, 255),
2024-08-01 01:51:45 +08:00
inner=(208, 209, 212, 255),
2024-07-31 19:04:55 +08:00
)
2024-08-03 19:51:38 +08:00
game1_press = OreuiShapeColors(
2024-07-31 19:04:55 +08:00
border=(30, 30, 31, 255),
corner=(236, 236, 237, 255),
2024-07-31 22:51:35 +08:00
down_pad=(110, 111, 114, 255),
2024-07-31 19:04:55 +08:00
left_up=(224, 224, 225, 255),
right_down=(208, 209, 211, 255),
2024-08-01 01:51:45 +08:00
inner=(177, 178, 181, 255),
2024-07-31 19:04:55 +08:00
)
2024-08-03 19:51:38 +08:00
game2_normal = OreuiShapeColors(
2024-07-31 22:51:35 +08:00
border=(30, 30, 31, 255),
corner=(131, 190, 109, 255),
down_pad=(29, 77, 19, 255),
left_up=(1117, 183, 93, 255),
right_down=(99, 174, 73, 255),
2024-08-01 01:51:45 +08:00
inner=(82, 165, 53, 255),
2024-07-31 22:51:35 +08:00
)
2024-08-03 19:51:38 +08:00
game2_select = OreuiShapeColors(
2024-07-31 22:51:35 +08:00
border=(30, 30, 31, 255),
corner=(114, 167, 99, 255),
down_pad=(29, 77, 19, 255),
left_up=(99, 157, 82, 255),
right_down=(79, 145, 60, 255),
2024-08-01 01:51:45 +08:00
inner=(60, 133, 39, 255),
2024-07-31 22:51:35 +08:00
)
2024-08-03 19:51:38 +08:00
game2_press = OreuiShapeColors(
2024-07-31 22:51:35 +08:00
border=(30, 30, 31, 255),
corner=(102, 143, 91, 255),
down_pad=(14, 77, 3, 255),
left_up=(85, 131, 73, 255),
right_down=(63, 115, 50, 255),
2024-08-01 01:51:45 +08:00
inner=(42, 100, 28, 255),
2024-07-31 22:51:35 +08:00
)
2024-07-31 19:04:55 +08:00
2024-07-29 23:06:14 +08:00
2024-07-31 19:04:55 +08:00
@dataclass
2024-08-03 19:51:38 +08:00
class OreuiButtonStatus:
popout: bool = False
highlight: bool = False
pad: float = 2
down_pad: float = 5
2024-08-03 19:51:38 +08:00
colors: OreuiShapeColors = OreuiShapeColors()
def __eq__(self, value: object) -> bool:
return (
self.__class__ == value.__class__
and self.popout == value.popout
and self.highlight == value.highlight
and self.pad == value.pad
and self.down_pad == value.down_pad
and self.colors == value.colors
)
2024-07-29 23:06:14 +08:00
2024-08-01 01:51:45 +08:00
2024-08-03 19:51:38 +08:00
class OreuiButtonShape(ShapeBase):
2024-07-29 18:12:54 +08:00
def __init__(
self,
x: float,
y: float,
width: float,
height: float,
pad: float = 2,
down_pad: float = 5.0,
pop_out: bool = True,
2024-07-29 23:06:14 +08:00
highlight: bool = False,
2024-08-03 19:51:38 +08:00
colors: OreuiShapeColors | None = None,
2024-07-29 18:12:54 +08:00
blend_src: int = GL_SRC_ALPHA,
blend_dest: int = GL_ONE_MINUS_SRC_ALPHA,
batch: Batch | None = None,
group: Group | None = None,
program: ShaderProgram | None = None,
):
self._x = x
self._y = y
self._width = width
self._height = height
self._pad = pad
self._down_pad = down_pad
2024-07-29 18:54:26 +08:00
self._pop_out = pop_out
2024-07-29 23:06:14 +08:00
self._highlight = highlight
2024-08-03 19:51:38 +08:00
self._colors = colors or OreuiButtonStyles.wiki_normal.value
2024-07-29 18:12:54 +08:00
2024-07-29 23:43:00 +08:00
vertex = 32
2024-07-29 23:06:14 +08:00
if pop_out:
vertex += 4
super().__init__(vertex, blend_src, blend_dest, batch, group, program)
2024-07-29 18:12:54 +08:00
2024-07-29 18:54:26 +08:00
@property
def pop_out(self) -> bool:
return self._pop_out
@property
def pad(self) -> float:
return self._pad
@property
def down_pad(self) -> float:
return self._down_pad
@property
2024-08-03 19:51:38 +08:00
def color(self) -> OreuiShapeColors:
return self._colors
2024-07-29 18:54:26 +08:00
@property
2024-08-03 19:51:38 +08:00
def colors(self) -> OreuiShapeColors:
2024-07-29 18:54:26 +08:00
return self._colors
2024-07-29 23:06:14 +08:00
@property
def highlight(self) -> bool:
return self._highlight
2024-07-29 18:54:26 +08:00
@pop_out.setter
def pop_out(self, value: bool) -> None:
self._pop_out = value
self._create_vertex_list()
@pad.setter
def pad(self, value: float) -> None:
self._pad = value
self._update_vertices()
@down_pad.setter
def down_pad(self, value: float) -> None:
self._down_pad = value
self._update_vertices()
@color.setter
2024-08-03 19:51:38 +08:00
def color(self, value: OreuiShapeColors) -> None:
self._colors = value
self._update_color()
2024-07-29 18:54:26 +08:00
@colors.setter
2024-08-03 19:51:38 +08:00
def colors(self, value: OreuiShapeColors) -> None:
2024-07-29 18:54:26 +08:00
self._colors = value
self._update_color()
2024-07-29 23:06:14 +08:00
@highlight.setter
def highlight(self, value: bool) -> None:
self._highlight = value
self._create_vertex_list()
2024-08-03 19:51:38 +08:00
def update_with_status(self, status: OreuiButtonStatus):
assert isinstance(status, OreuiButtonStatus)
update_vertex = False
if status.popout != self._pop_out:
self._pop_out = status.popout
update_vertex = True
if status.highlight != self._highlight:
self._highlight = status.highlight
update_vertex = True
if status.pad != self._pad:
self._pad = status.pad
update_vertex = True
if status.down_pad != self._down_pad:
self._down_pad = status.down_pad
update_vertex = True
if status.colors != self._colors:
2024-08-03 21:11:11 +08:00
self.colors = status.colors
2024-08-03 19:51:38 +08:00
if update_vertex:
self._create_vertex_list()
2024-07-29 18:54:26 +08:00
def _update_color(self) -> None:
if self._pop_out:
2024-07-31 19:04:55 +08:00
colors = (
self._colors.border * 4
+ self._colors.down_pad * 4
+ self._colors.corner * 8
+ self._colors.right_down * 6
+ self._colors.left_up * 6
+ self._colors.inner * 4
+ self._colors.highlight * 4
)
else:
colors = (
self._colors.border * 4
+ self._colors.corner * 8
+ self._colors.right_down * 6
+ self._colors.left_up * 6
+ self._colors.inner * 4
+ self._colors.highlight * 4
)
2024-07-29 23:06:14 +08:00
self._vertex_list.colors[:] = colors
2024-07-29 18:54:26 +08:00
2024-07-29 18:12:54 +08:00
def __contains__(self, point: tuple[float, float]) -> bool:
assert len(point) == 2
point = _rotate_point((self._x, self._y), point, math.radians(self._rotation))
x, y = self._x - self._anchor_x, self._y - self._anchor_y
return x < point[0] < x + self._width and y < point[1] < y + self._height
def _get_vertices(self) -> Sequence[float]:
if not self._visible:
return (0, 0) * self._num_verts
left = -self._anchor_x
right = left + self._width
bottom = -self.anchor_y
top = bottom + self._height
pad = self._pad
down_pad = self._down_pad
in_left = left + pad
i_right = right - pad
in_bottom = bottom + pad
inner_top = top - pad
"""
pop out ( 默认的弹出状态 )
2024-07-29 23:06:14 +08:00
20 顶点 (还有外面一圈高光)
2024-07-29 18:12:54 +08:00
3 2
18 15 14
19 16 17
11 10 13
7 9 6
4 5
0 1
unpop
16 顶点
3 2
7 15 6
13 12 14
10 9 11
4 8 5
0 1
"""
# fmt: off
out_border = [
left, bottom, # 0
right, bottom, # 1
right, top, # 2
left, top, # 3
]
2024-07-31 19:04:55 +08:00
if self._highlight:
highlight = [
left - pad, bottom - pad, # max+1
right + pad, bottom - pad, # max+2
right + pad, top + pad, # max+3
left - pad, top + pad, # max+4
]
else:
highlight = [0, 0, 0, 0, 0, 0, 0, 0]
2024-07-29 18:12:54 +08:00
if self._pop_out:
down_top = in_bottom + down_pad
# 底下那个下巴
down_part = [
in_left, in_bottom, # 4
i_right, in_bottom, # 5
i_right, down_top, # 6
in_left, down_top, # 7
]
# 左下角的小方块
left_down = [
2024-08-01 01:51:45 +08:00
in_left, down_top, # 8
in_left + pad, down_top, # 9
in_left + pad, down_top + pad, # 10
in_left, down_top + pad, # 11
2024-07-29 18:12:54 +08:00
]
# 右上角的小方块
right_up = [
i_right - pad, inner_top - pad, # 12
i_right, inner_top - pad, # 13
i_right, inner_top, # 14
i_right - pad, inner_top, # 15
]
# 左上的拐弯条
# 1 2
# 4 3
# 0 5
left_up = [
in_left, down_top + pad, # 16
in_left, inner_top, # 17
i_right - pad, inner_top, # 18
i_right - pad, inner_top - pad, # 19
in_left + pad, inner_top - pad, # 20
in_left + pad, down_top + pad, # 21
]
# 右下的拐弯条
# 3 2
# 5 4
# 0 1
right_down = [
in_left + pad, down_top, # 22
i_right, down_top, # 23
i_right, inner_top - pad, # 24
i_right - pad, inner_top - pad, # 25
i_right - pad, down_top + pad, # 26
in_left + pad, down_top + pad, # 27
]
# 中间的方块
inner_box = [
in_left + pad, down_top + pad, # 28
i_right - pad, down_top + pad, # 29
i_right - pad, inner_top - pad, # 30
in_left + pad, inner_top - pad, # 31
]
2024-07-29 23:43:00 +08:00
return (out_border +
down_part +
left_down + right_up +
left_up + right_down +
inner_box +
highlight)
2024-07-29 18:12:54 +08:00
else:
# 左下角的小方块
left_down = [
in_left, in_bottom, # 4
in_left + pad, in_bottom, # 5
in_left + pad, in_bottom + pad, # 6
in_left, in_bottom + pad, # 7
]
# 右上角的小方块
right_up = [
i_right - pad, inner_top - pad, # 8
i_right, inner_top - pad, # 9
i_right, inner_top, # 10
i_right - pad, inner_top, # 11
]
# 左上的拐弯条
# 1 2
# 4 3
# 0 5
left_up = [
in_left, in_bottom + pad, # 12
in_left, inner_top, # 13
i_right - pad, inner_top, # 14
i_right - pad, inner_top - pad, # 15
in_left + pad, inner_top - pad, # 16
in_left + pad, in_bottom + pad, # 17
]
# 右下的拐弯条
# 3 2
# 5 4
# 0 1
right_down = [
in_left + pad, in_bottom, # 18
i_right, in_bottom, # 19
i_right, inner_top - pad, # 20
i_right - pad, inner_top - pad, # 21
i_right - pad, in_bottom + pad, # 22
in_left + pad, in_bottom + pad, # 23
]
# 中间的方块
inner_box = [
in_left + pad, in_bottom + pad, # 24
i_right - pad, in_bottom + pad, # 25
i_right - pad, inner_top - pad, # 26
in_left + pad, inner_top - pad, # 27
]
2024-07-29 23:43:00 +08:00
return (out_border +
left_down + right_up +
left_up + right_down +
inner_box +
highlight)
2024-07-29 18:12:54 +08:00
# fmt: on
def _create_vertex_list(self) -> None:
2024-07-31 19:04:55 +08:00
if self._vertex_list:
self._vertex_list.delete()
2024-07-29 18:54:26 +08:00
colors = self._colors.border * 4
2024-07-29 18:12:54 +08:00
# fmt: off
indices = [
0, 1, 2, # 最基本的两个三角形
0, 2, 3, # 用来画黑色边框
]
if self._pop_out:
indices += [4, 5, 6, 4, 6, 7] # 下巴
indices += [8, 9, 10, 8, 10, 11] # 左下角
indices += [12, 13, 14, 12, 14, 15] # 右上角
indices += [16, 17, 20, 16, 20, 21,
18, 19, 20, 18, 17, 20] # 左上拐弯
indices += [22, 23, 26, 22, 26, 27,
23, 24, 26, 24, 25, 26] # 右下拐弯
indices += [28, 29, 30, 28, 30, 31] # 中间的方块
2024-07-31 19:04:55 +08:00
if self._highlight:
indices = [32, 33, 34, 32, 34, 35] + indices # 高光
2024-07-29 18:54:26 +08:00
colors += (
self._colors.down_pad * 4
+ self._colors.corner * 8
+ self._colors.right_down * 6
+ self._colors.left_up * 6
+ self._colors.inner * 4
2024-07-31 19:04:55 +08:00
+ self._colors.highlight * 4
2024-07-29 18:54:26 +08:00
)
2024-07-29 23:43:00 +08:00
self._num_verts = 36
2024-07-29 18:12:54 +08:00
else:
indices += [4, 5, 6, 4, 6, 7] # 左下角
indices += [8, 9, 10, 8, 10, 11] # 右上角
indices += [12, 16, 17, 12, 13, 16,
14, 15, 16, 14, 13, 16] # 左上拐弯
indices += [18, 22, 23, 18, 19, 22,
20, 21, 22, 20, 19, 22] # 右下拐弯
indices += [24, 25, 26, 24, 26, 27]
2024-07-29 23:06:14 +08:00
if self._highlight:
indices = [28, 29, 30, 28, 30, 31] + indices # 高光
2024-07-29 18:54:26 +08:00
colors += (
self._colors.corner * 8
+ self._colors.right_down * 6
+ self._colors.left_up * 6
+ self._colors.inner * 4
2024-07-29 23:43:00 +08:00
+ self._colors.highlight * 4
2024-07-29 18:54:26 +08:00
)
2024-07-29 23:43:00 +08:00
self._num_verts = 32
2024-07-29 18:12:54 +08:00
# fmt: on
self._vertex_list = self._program.vertex_list_indexed(
self._num_verts,
self._draw_mode,
indices,
self._batch,
self._group,
position=("f", self._get_vertices()),
colors=("Bn", colors),
translation=("f", (self._x, self._y) * self._num_verts),
)
def _update_vertices(self) -> None:
self._vertex_list.position[:] = self._get_vertices()
class 拐角(ShapeBase):
2024-07-27 03:23:40 +08:00
def __init__(
self,
x: float,
y: float,
width: float,
height: float,
thick1: float = 1.0,
thick2: float = 1.0,
color: tuple[int, int, int, int] = (255, 255, 255, 255),
clockwise: bool = True,
blend_src: int = GL_SRC_ALPHA,
blend_dest: int = GL_ONE_MINUS_SRC_ALPHA,
batch: Batch | None = None,
group: Group | None = None,
program: ShaderProgram | None = None,
) -> None:
self._x = x
self._y = y
self._width = width
self._height = height
self._thick1 = thick1
self._thick2 = thick2
self._clockwise = clockwise
self._rgba = color
super().__init__(6, blend_src, blend_dest, batch, group, program)
def __contains__(self, point: tuple[float, float]) -> bool:
assert len(point) == 2
# 先大框
point = _rotate_point((self._x, self._y), point, math.radians(self._rotation))
x, y = self._x - self._anchor_x, self._y - self._anchor_y
return (x < point[0] < x + self._width and y < point[1] < y + self._height) and (
(
(point[1] > y + self._height - self._thick2)
or (point[0] < x + self._thick1)
)
if self._clockwise
else (
(point[1] < y + self._thick1)
or (point[0] > x + self._width - self._thick2)
)
)
def _get_vertices(self) -> Sequence[float]:
if not self.visible:
return (0, 0) * self._num_verts
t1, t2 = self._thick1, self._thick2
left = -self._anchor_x
bottom = -self._anchor_y
right = left + self._width
top = bottom + self._height
x1 = left
x2 = left + t1
x3 = right - t1
x4 = right
y1 = bottom
y2 = bottom + t1
y3 = top - t2
y4 = top
# fmt: off
2024-07-29 18:12:54 +08:00
return ([
2024-07-27 03:23:40 +08:00
x1, y1,
x1, y4,
x4, y4,
x4, y3,
x2, y3,
x2, y1
2024-08-03 19:51:38 +08:00
] if self._clockwise else [
2024-07-27 03:23:40 +08:00
x1, y1,
x4, y1,
x4, y4,
x3, y4,
2024-07-28 08:05:05 +08:00
x3, y2,
2024-07-27 03:23:40 +08:00
x1, y2
2024-07-29 18:12:54 +08:00
])
2024-07-27 03:23:40 +08:00
# fmt: on
2024-07-29 18:12:54 +08:00
def _update_color(self) -> None:
self._vertex_list.colors[:] = self._rgba * self._num_verts
2024-07-27 03:35:27 +08:00
def _update_vertices(self) -> None:
self._vertex_list.position[:] = self._get_vertices() # pyright: ignore reportAttributeAccessIssue
2024-07-27 03:23:40 +08:00
def _create_vertex_list(self) -> None:
# 1 2
# 4 3
# 0 5
# or
# 3 2
# 5 4
# 0 1
# fmt: off
groups = [
1, 2, 3,
1, 3, 4,
1, 4, 5,
1, 5, 0,
]
# fmt: on
self._vertex_list = self._program.vertex_list_indexed(
self._num_verts,
self._draw_mode,
groups,
2024-07-27 03:31:54 +08:00
self._batch, # pyright: ignore reportArgumentType
self._group, # pyright: ignore reportArgumentType
2024-07-27 03:23:40 +08:00
position=("f", self._get_vertices()),
colors=("Bn", self._rgba * self._num_verts),
translation=("f", (self._x, self._y) * self._num_verts),
)
@property
def thick1(self) -> float:
return self._thick1
@property
def thick2(self) -> float:
return self.thick2
2024-07-28 08:05:05 +08:00
@property
def thickness(self) -> float:
return self._thick1
@thickness.setter
def thickness(self, value: float):
self._thick1 = value
self._thick2 = value
self._update_vertices()
2024-07-27 03:31:54 +08:00
@property
def width(self) -> float:
return self._width
@property
def height(self) -> float:
return self.height
2024-07-27 03:35:27 +08:00
@property
def clockwise(self) -> bool:
return self._clockwise
2024-07-27 03:31:54 +08:00
@thick1.setter
def thick1(self, value: float):
self._thick1 = value
self._update_vertices()
@thick2.setter
def thick2(self, value: float):
self._thick2 = value
self._update_vertices()
@width.setter
def width(self, value: float):
self._width = value
self._update_vertices()
@height.setter
def height(self, value: float):
self._height = value
self._update_vertices()
2024-07-27 03:35:27 +08:00
@clockwise.setter
def clockwise(self, value: bool):
self._clockwise = bool(value)
self._update_vertices()
2023-08-20 21:42:38 +08:00
2024-08-03 19:51:38 +08:00
class OreuiButton(WidgetBase):
2024-07-28 08:05:05 +08:00
def __init__(
2024-08-03 19:51:38 +08:00
self,
x: int,
y: int,
width: int,
height: int,
normal: OreuiButtonStatus | None = None,
select: OreuiButtonStatus | None = None,
press: OreuiButtonStatus | None = None,
2024-08-03 23:58:16 +08:00
toggle_mode: bool = True,
2024-08-03 21:11:11 +08:00
auto_release: bool = True,
2024-08-03 19:51:38 +08:00
batch: Batch | None = None,
group: Group | None = None,
2024-07-28 08:05:05 +08:00
) -> None:
2024-08-03 23:58:16 +08:00
"""
:param x: x 坐标
:param y: y 坐标
:param width: 宽度
:param height: 高度
:param normal: 正常状态
:param select: 选中状态
:param press: 按下状态
:param toggle_mode: 是否为切换模式
:param auto_release: 是否自动释放(如果你只是用来显示一个状态, 那就改成 False)
:param batch: Batch
:param group: Group
"""
2024-07-28 08:05:05 +08:00
super().__init__(x, y, width, height)
2024-08-03 23:58:16 +08:00
self._pressed = False
self._selected = False
self._auto_release = auto_release
self.toggle_mode = toggle_mode
2024-07-28 08:05:05 +08:00
self.main_batch = batch or Batch()
self.main_group = group or Group()
2024-08-03 19:51:38 +08:00
self._normal_status = normal or OreuiButtonStatus(popout=True)
self._select_status = select or OreuiButtonStatus(highlight=True)
self._press_status = press or OreuiButtonStatus(popout=False, highlight=True)
self._shape = OreuiButtonShape(
x=self._x,
y=self._y,
width=self._width,
height=self._height,
pop_out=self._normal_status.popout,
highlight=self._normal_status.highlight,
colors=self._normal_status.colors,
batch=self.main_batch,
group=self.main_group,
)
2024-07-28 08:05:05 +08:00
def __contains__(self, pos: tuple[float, float]) -> bool:
2024-08-03 19:51:38 +08:00
return self._check_hit(pos[0], pos[1])
def on_mouse_motion(self, x: int, y: int, dx: int, dy: int) -> None:
2024-08-03 23:58:16 +08:00
if not self._enabled or self._pressed:
return
if (x, y) in self and not self._selected:
self._selected = True
self._shape.update_with_status(self._select_status)
self.dispatch_event("on_select", x, y)
elif not self._selected:
self._selected = False
self._shape.update_with_status(self._normal_status)
self.dispatch_event("on_deselect", x, y)
def on_mouse_leave(self, x: int, y: int) -> None:
if not self._enabled or self._pressed:
return
if self._selected:
# 没抬手, 但是鼠标跑了
self._selected = False
if not self.toggle_mode and self._auto_release:
self._shape.update_with_status(self._normal_status)
self.dispatch_event("on_release", x, y)
2024-07-28 08:05:05 +08:00
def on_mouse_press(self, x: int, y: int, buttons: int, modifiers: int) -> None:
2024-08-03 23:58:16 +08:00
if not self._enabled:
return
2024-07-28 10:39:13 +08:00
if (x, y) in self:
2024-08-03 23:58:16 +08:00
if self.toggle_mode:
self._pressed = not self._pressed
self._selected = True # 顺便用来标记有没有抬手
if self._pressed:
self._shape.update_with_status(self._press_status)
self.dispatch_event("on_press", x, y, buttons, modifiers)
else:
self._shape.update_with_status(self._select_status)
self.dispatch_event("on_release", x, y)
self.dispatch_event("on_toggle", x, y, buttons, modifiers)
2024-08-03 21:11:11 +08:00
else:
2024-08-03 23:58:16 +08:00
self._pressed = True
self._selected = True # 顺便用来标记有没有抬手
self._shape.update_with_status(self._press_status)
self.dispatch_event("on_press", x, y, buttons, modifiers)
2024-08-03 21:11:11 +08:00
2024-08-03 23:58:16 +08:00
def on_mouse_release(self, x: int, y: int, buttons: int, modifiers: int) -> None:
if not self._enabled:
return
if self._pressed:
self._selected = False # 抬手了
if not self.toggle_mode and self._auto_release:
# 非切换模式, 自动释放
self._pressed = False
if (x, y) in self:
self._shape.update_with_status(self._select_status)
else:
self._shape.update_with_status(self._normal_status)
self.dispatch_event("on_release", x, y)
2024-08-03 21:11:11 +08:00
OreuiButton.register_event_type("on_press")
OreuiButton.register_event_type("on_release")
2024-08-03 23:58:16 +08:00
OreuiButton.register_event_type("on_toggle")
2024-08-03 21:11:11 +08:00
OreuiButton.register_event_type("on_select")
OreuiButton.register_event_type("on_deselect")
2024-07-28 08:05:05 +08:00
2024-01-20 00:38:32 +08:00
class BaseButtonTheme:
"""
按钮的风格
"""
2024-05-26 14:01:48 +08:00
2024-01-20 00:38:32 +08:00
name = "BaseButtonTheme"
2024-05-26 14:01:48 +08:00
def __init__(
self, x: int, y: int, width: int, height: int, batch: Batch, group: Group
):
2024-01-20 00:38:32 +08:00
self.batch = batch
self.group = group
self.x = x
self.y = y
self.width = width
self.height = height
2024-03-09 17:41:53 +08:00
self.enable = False
2024-01-20 00:38:32 +08:00
2024-03-09 17:41:53 +08:00
def on_enable(self, x: int, y: int, button):
2024-01-20 00:38:32 +08:00
"""
2024-03-09 17:41:53 +08:00
当按钮被启用的时候
:param x:
:param y:
:param button:
2024-01-20 00:38:32 +08:00
:return:
"""
2024-03-09 17:41:53 +08:00
def on_disable(self, button):
2024-01-20 00:38:32 +08:00
"""
2024-03-09 17:41:53 +08:00
当按钮被禁用的时候
:param button:
2024-01-20 00:38:32 +08:00
:return:
"""
2024-01-20 14:28:19 +08:00
def on_update(self, button) -> None:
"""
2024-03-09 17:41:53 +08:00
当按钮被更新的时候
:param button:
2024-01-20 14:28:19 +08:00
:return:
"""
2024-01-20 00:38:32 +08:00
class MinecraftWikiButtonTheme(BaseButtonTheme):
2023-08-20 21:42:38 +08:00
"""
直接绘制按钮的风格
2023-08-20 21:42:38 +08:00
"""
2024-01-20 00:38:32 +08:00
name = "MinecraftWikiButtonTheme"
2023-12-03 16:54:07 +08:00
2024-05-26 14:01:48 +08:00
def __init__(
self,
x: int,
y: int,
width: int,
height: int,
batch: Batch,
group: Group,
2024-07-26 11:41:54 +08:00
theme: Optional[dict] = None,
2024-05-26 14:01:48 +08:00
):
2024-01-20 00:38:32 +08:00
super().__init__(x, y, width, height, batch, group)
2024-07-28 08:05:05 +08:00
self.enable = False
self.batch = batch
self.group = group
2024-01-20 00:38:32 +08:00
a = (72, 73, 74, 255)
b = (109, 109, 110, 255)
c = (88, 91, 92, 255)
d = (124, 124, 125, 255) # 左下和右上两个重叠点的颜色.... 画吗?
e = (49, 50, 51, 255)
touch_a = (49, 50, 51, 255)
touch_b = (90, 91, 92, 255)
touch_c = (71, 72, 72, 255)
touch_d = (106, 107, 108, 255) # 同上
pad = 2 # 边框宽度 2 px
2024-01-20 01:45:22 +08:00
list_pad = 4 # 下巴 4px
2024-03-09 17:41:53 +08:00
if theme is None:
theme = {}
2024-05-26 14:01:48 +08:00
pop_out = theme.get("pop_out", False)
2024-01-20 14:28:19 +08:00
if pop_out:
# 主背景
2024-05-26 14:01:48 +08:00
self.back_ground = Rectangle(
x=x + (pad * 2),
y=y + (pad * 2) + list_pad,
width=width - (pad * 4),
height=height - (pad * 4) - list_pad,
color=a,
batch=batch,
group=Group(order=3, parent=group),
)
2024-01-20 14:28:19 +08:00
# 左上方向的覆盖
2024-05-26 14:01:48 +08:00
self.cover_back = Rectangle(
x=x + pad,
y=y + pad + list_pad,
width=width - (pad * 2),
height=height - (pad * 2) - list_pad,
color=b,
batch=batch,
group=Group(order=1, parent=group),
)
2024-01-20 14:28:19 +08:00
# 右下方向的覆盖
2024-05-26 14:01:48 +08:00
self.cover_back2 = Rectangle(
x=x + (pad * 2),
y=y + pad + list_pad,
width=width - (pad * 3),
height=height - (pad * 3) - list_pad,
color=c,
batch=batch,
group=Group(order=2, parent=group),
)
2024-01-20 14:28:19 +08:00
else:
# 主背景
2024-05-26 14:01:48 +08:00
self.back_ground = Rectangle(
x=x + (pad * 2),
y=y + (pad * 2) + list_pad,
width=width - (pad * 4),
height=height - (pad * 4) - list_pad,
color=c,
batch=batch,
group=Group(order=3, parent=group),
)
2024-01-20 14:28:19 +08:00
# 左上方向的覆盖
2024-05-26 14:01:48 +08:00
self.cover_back = Rectangle(
x=x + pad,
y=y + pad + list_pad,
width=width - (pad * 2),
height=height - (pad * 2) - list_pad,
color=a,
batch=batch,
group=Group(order=2, parent=group),
)
2024-01-20 14:28:19 +08:00
# 右下方向的覆盖
2024-05-26 14:01:48 +08:00
self.cover_back2 = Rectangle(
x=x + pad,
y=y + (pad * 2) + list_pad,
width=width - (pad * 3),
height=height - (pad * 3) - list_pad,
color=b,
batch=batch,
group=Group(order=1, parent=group),
)
2024-01-20 00:38:32 +08:00
# 下巴的框
2024-05-26 14:01:48 +08:00
self.list_back = BorderedRectangle(
x=x,
y=y,
width=width,
height=height,
border=pad,
border_color=(0, 0, 0, 255),
color=e,
batch=batch,
group=Group(order=0, parent=group),
)
2024-01-20 00:38:32 +08:00
self.a = a
self.b = b
self.c = c
self.d = d
self.e = e
self.touch_a = touch_a
self.touch_b = touch_b
self.touch_c = touch_c
self.touch_d = touch_d
self.pad = pad
self.list_pad = list_pad
2024-01-20 14:28:19 +08:00
self.pop_out = pop_out
2024-05-26 14:01:48 +08:00
self.drag_list = theme.get("drag_list", False)
2024-03-09 17:41:53 +08:00
def on_enable(self, x: int, y: int, button):
2024-01-20 14:28:19 +08:00
if self.pop_out:
self.back_ground.color = self.touch_a
self.cover_back.color = self.touch_b
self.cover_back2.color = self.touch_c
else:
self.back_ground.color = self.touch_c
2024-03-09 17:41:53 +08:00
self.cover_back.color = self.touch_a
self.cover_back2.color = self.touch_b
2024-01-20 14:28:19 +08:00
if self.drag_list:
2024-05-26 14:01:48 +08:00
button.text_label.y = (
self.y
+ (self.height - button.font_height) // 2
+ (button.font_height * 0.2)
+ (self.list_pad // 2)
)
2024-01-20 14:28:19 +08:00
self.back_ground.y = self.y + (self.pad * 2)
self.back_ground.height = self.height - (self.pad * 4)
self.cover_back.y = self.y + self.pad
self.cover_back.height = self.height - (self.pad * 2)
self.cover_back2.y = self.y + self.pad
self.cover_back2.height = self.height - (self.pad * 3)
2024-03-09 17:41:53 +08:00
else:
2024-05-26 14:01:48 +08:00
button.text_label.y = (
self.y
+ (self.height - button.font_height) // 2
+ (button.font_height * 0.2)
+ self.list_pad
)
2024-03-09 17:41:53 +08:00
self.enable = True
2024-03-09 17:41:53 +08:00
def on_disable(self, button) -> None:
2024-01-20 14:28:19 +08:00
if self.pop_out:
self.back_ground.color = self.a
self.cover_back.color = self.b
self.cover_back2.color = self.c
else:
self.back_ground.color = self.c
2024-03-09 17:41:53 +08:00
self.cover_back.color = self.a
self.cover_back2.color = self.b
2024-01-20 14:28:19 +08:00
if self.drag_list:
self.back_ground.y = self.y + (self.pad * 2) + self.list_pad
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
self.cover_back.y = self.y + self.pad + self.list_pad
self.cover_back.height = self.height - (self.pad * 2) - self.list_pad
self.cover_back2.y = self.y + self.pad + self.list_pad
self.cover_back2.height = self.height - (self.pad * 3) - self.list_pad
2024-05-26 14:01:48 +08:00
button.text_label.y = (
self.y
+ (self.height - button.font_height) // 2
+ (button.font_height * 0.2)
+ self.list_pad
)
2024-03-09 17:41:53 +08:00
self.enable = False
def on_update(self, button) -> None:
super().on_update(button)
self.list_back.x = self.x
self.list_back.y = self.y
2024-03-09 17:41:53 +08:00
if self.enable and self.drag_list:
2024-05-26 14:01:48 +08:00
button.text_label.y = (
self.y
+ (self.height - button.font_height) // 2
+ (button.font_height * 0.2)
+ self.list_pad // 2
)
2024-06-05 07:42:57 +08:00
2024-05-30 19:18:44 +08:00
self.back_ground.x = self.x + (self.pad * 2)
self.back_ground.y = self.y + (self.pad * 2)
2024-03-09 17:41:53 +08:00
self.back_ground.position = self.x + (self.pad * 2), self.y + (self.pad * 2)
self.back_ground.height = self.height - (self.pad * 4)
2024-05-30 19:18:44 +08:00
self.cover_back.x = self.x + self.pad
self.cover_back.y = self.y + self.pad
2024-03-09 17:41:53 +08:00
self.cover_back.position = self.x + self.pad, self.y + self.pad
self.cover_back.height = self.height - (self.pad * 2)
2024-05-30 19:18:44 +08:00
self.cover_back2.x = self.x + self.pad
self.cover_back2.y = self.y + self.pad
2024-03-09 17:41:53 +08:00
self.cover_back2.position = self.x + self.pad, self.y + self.pad
self.cover_back2.height = self.height - (self.pad * 3)
else:
2024-05-26 14:01:48 +08:00
button.text_label.y = (
self.y
+ (self.height - button.font_height) // 2
+ (button.font_height * 0.2)
+ self.list_pad
)
self.back_ground.position = (
self.x + (self.pad * 2),
self.y + (self.pad * 2) + self.list_pad,
)
2024-03-09 17:41:53 +08:00
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
2024-05-26 14:01:48 +08:00
self.cover_back.position = (
self.x + self.pad,
self.y + self.pad + self.list_pad,
)
2024-03-09 17:41:53 +08:00
self.cover_back.height = self.height - (self.pad * 2) - self.list_pad
2024-05-26 14:01:48 +08:00
self.cover_back2.position = (
self.x + self.pad,
self.y + self.pad + self.list_pad,
)
2024-03-09 17:41:53 +08:00
self.cover_back2.height = self.height - (self.pad * 3) - self.list_pad
2024-05-26 14:01:48 +08:00
self.back_ground.position = (
self.x + (self.pad * 2),
self.y + (self.pad * 2) + self.list_pad,
)
2024-03-09 17:41:53 +08:00
self.back_ground.height = self.height - (self.pad * 4) - self.list_pad
class ButtonThemeOptions(Options):
2023-12-03 16:54:07 +08:00
"""基于 Options 写的 ButtonTheme"""
name = "ButtonTheme"
untouched_color: RGBA = (39, 73, 114, 255)
touched_color: RGBA = (66, 150, 250, 255)
hit_color: RGBA = (15, 135, 250, 255)
font_theme: FontData = FontData()
def __str__(self):
return self.as_markdown()
2023-08-20 21:42:38 +08:00
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
"""
2023-12-03 16:54:07 +08:00
def __init__(
2024-05-26 14:01:48 +08:00
self,
x: int,
y: int,
width: int,
height: int,
text: str,
batch: Optional[Batch] = None,
group: Optional[Group] = None,
theme: Optional[ButtonThemeOptions] = None,
2024-06-09 20:21:27 +08:00
draw_theme: Optional[Type[BaseButtonTheme]] = None,
2024-05-26 14:01:48 +08:00
dict_theme: Optional[dict] = None,
2023-12-03 16:54:07 +08:00
):
2022-12-20 16:31:08 +08:00
super().__init__(x, y, width, height)
self.main_batch = batch or Batch()
self.user_batch = batch is not None
self.front_group = Group(order=10, parent=group)
self.back_ground_group = Group(order=5, parent=group)
2023-08-20 21:42:38 +08:00
self.pressed = False
self.theme = theme or ButtonThemeOptions()
2024-03-09 17:41:53 +08:00
if dict_theme is None:
dict_theme = {}
self.dict_theme = dict_theme
self.untouched_color = self.theme.untouched_color
self.touched_color = self.theme.touched_color
self.hit_color = self.theme.hit_color
2023-08-20 02:01:15 +08:00
# from ImGui
2022-12-20 16:31:08 +08:00
self.text = text
2023-12-03 16:54:07 +08:00
self.text_label = Label(
font_name=self.theme.font_theme.font_name,
font_size=self.theme.font_theme.font_size,
batch=self.main_batch,
group=self.front_group,
x=self._x,
2024-01-20 00:38:32 +08:00
y=self._y + 4,
2023-12-03 16:54:07 +08:00
width=self._width,
height=self._height,
)
self.font = pyglet.font.load(
self.theme.font_theme.font_name,
self.theme.font_theme.font_size,
bold=self.theme.font_theme.bold,
italic=self.theme.font_theme.italic,
stretch=self.theme.font_theme.stretch,
)
2023-08-22 00:31:25 +08:00
self.font_height = self.font.ascent - self.font.descent
2024-01-20 00:38:32 +08:00
if draw_theme is None:
self.back_rec = Rectangle(
x=self._x,
y=self._y,
width=self._width,
height=self._height,
color=self.untouched_color, # ImGui color
batch=self.main_batch,
group=self.back_ground_group,
)
self.draw_theme = False
else:
self.draw_theme = draw_theme(
x=self._x,
y=self._y,
width=self._width,
height=self._height,
batch=self.main_batch,
group=self.back_ground_group,
)
2024-03-09 17:41:53 +08:00
self.draw_theme.on_update(self)
2022-12-20 16:31:08 +08:00
2023-08-22 00:31:25 +08:00
self.value = text # 重新分配一下高度和宽度的位置
2024-06-05 07:42:57 +08:00
2024-05-30 19:18:44 +08:00
@property
def x(self) -> int:
return self._x
@x.setter
def x(self, value: int) -> None:
self._x = value
self.text_label.x = value
2024-06-09 17:13:55 +08:00
if self.draw_theme:
assert isinstance(self.draw_theme, BaseButtonTheme)
self.draw_theme.x = value
self.draw_theme.on_update(self)
2024-05-30 19:18:44 +08:00
@property
def y(self) -> int:
return self._y
@y.setter
def y(self, value: int) -> None:
self._y = value
self.text_label.y = value + 4
2024-06-09 17:13:55 +08:00
if self.draw_theme:
assert isinstance(self.draw_theme, BaseButtonTheme)
self.draw_theme.y = value
self.draw_theme.on_update(self)
2023-08-22 00:31:25 +08:00
2022-12-20 16:31:08 +08:00
@property
def value(self):
return self.text
2023-08-22 00:31:25 +08:00
@value.setter
def value(self, value):
self.text = value
self.text_label.text = value
text_width = self.text_label.content_width
self.text_label.x = self._x + (self.width - text_width) // 2
2023-12-03 16:54:07 +08:00
self.text_label.y = (
2024-05-26 14:01:48 +08:00
self._y + (self.height - self.font_height) // 2 + (self.font_height * 0.2)
2023-12-03 16:54:07 +08:00
) # 修正一下位置
2023-08-22 00:31:25 +08:00
2024-01-20 00:38:32 +08:00
@property
def batch(self) -> Batch:
return self.main_batch
@batch.setter
def batch(self, value: Batch):
assert isinstance(value, Batch), "batch must be a pyglet.graphics.Batch"
self.main_batch = value
self.text_label.batch = value
self.back_rec.batch = value
self.user_batch = True
def __contains__(self, point):
if self.draw_theme:
x, y = self.x, self.y
return x < point[0] < x + self._width and y < point[1] < y + self._height
return point in self.back_rec
2023-08-20 02:01:15 +08:00
def on_draw(self):
if not self.user_batch:
self.main_batch.draw()
2023-08-20 02:01:15 +08:00
def on_mouse_motion(self, x, y, dx, dy):
2024-01-20 00:38:32 +08:00
if (x, y) in self:
if self.draw_theme:
...
else:
self.back_rec.color = self.touched_color
2023-08-20 02:01:15 +08:00
else:
2023-08-20 21:42:38 +08:00
self.pressed = False
2024-01-20 00:38:32 +08:00
if self.draw_theme:
2024-06-09 17:13:55 +08:00
assert isinstance(self.draw_theme, BaseButtonTheme)
2024-03-09 17:41:53 +08:00
self.draw_theme.on_disable(self)
2024-01-20 00:38:32 +08:00
else:
self.back_rec.color = self.untouched_color
2023-08-20 02:01:15 +08:00
2023-08-20 21:42:38 +08:00
def on_mouse_press(self, x, y, buttons, modifiers) -> bool:
2024-01-20 00:38:32 +08:00
if (x, y) in self:
if buttons == mouse.LEFT:
if self.draw_theme:
2024-06-09 17:13:55 +08:00
assert isinstance(self.draw_theme, BaseButtonTheme)
2024-03-09 17:41:53 +08:00
self.draw_theme.on_enable(x, y, self)
2024-01-20 00:38:32 +08:00
else:
self.back_rec.color = self.hit_color
self.dispatch_event("on_press", x, y)
self.pressed = True
return True
else:
self.pressed = False
if self.draw_theme:
2024-06-09 17:13:55 +08:00
assert isinstance(self.draw_theme, BaseButtonTheme)
2024-03-09 17:41:53 +08:00
self.draw_theme.on_disable(self)
2024-01-20 00:38:32 +08:00
else:
self.back_rec.color = self.untouched_color
2023-08-20 02:01:15 +08:00
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:
2024-01-20 00:38:32 +08:00
if self.draw_theme:
2024-06-09 17:13:55 +08:00
assert isinstance(self.draw_theme, BaseButtonTheme)
2024-03-09 17:41:53 +08:00
self.draw_theme.on_disable(self)
2024-01-20 00:38:32 +08:00
else:
self.back_rec.color = self.touched_color
2023-08-20 21:42:38 +08:00
self.pressed = False
2024-06-05 07:42:57 +08:00
self.dispatch_event("on_release", self, x, y)
2023-08-20 21:42:38 +08:00
2022-12-20 16:31:08 +08:00
def _update_position(self):
self.text_label.position = self._x, self._y, 0
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
2023-08-22 00:31:25 +08:00
2023-08-20 02:01:15 +08:00
2023-12-03 16:54:07 +08:00
PressTextButton.register_event_type("on_press")
2024-01-20 00:38:32 +08:00
PressTextButton.register_event_type("on_release")