mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 06:33:57 +08:00
* fix multilang dialog height * split to file * stash * Revert "stash" This reverts commit deb4239fe69f0260420fad03f2350e622e31542f. * add updater * add files * stuff * try rev * stash * works! * works! * this should be the flow? * cursor wrapping -- it missed entire sections, changed formatting, and didn't use trn properly!!!!!!!!!!!!!!!!! * update translations * learned my lesson * this should be the one thing it's good at * update trans * onroad wrap * spanish * rename * clean up * load all * Revert "load all" This reverts commit 6f2a45861c914ffb9d40a5edd15751afd798d614. * jp translations * try jp * Revert "try jp" This reverts commit d0524b10110104baafcdc1ec385c3d57bc5ef901. * remove languages we can't add rn * tr * pt and fr * ai cannot be trusted * ai cannot be trusted * missing trans * add fonts * Revert "remove languages we can't add rn" This reverts commit 73dc75fae2b9e347d867b6636dab6e2b5fe59da7. * painfully slow to startup * only load what we need * Reapply "remove languages we can't add rn" This reverts commit 52cb48f3b838520a421f9b90e5ea4409c27d4bd0. * stash! * rm * Revert "stash!" This reverts commit 31d7c361079a8e57039a0117c81d59bf84f191c7. * revert this * revert that * make this dynamic! * device * revert * firehose * stuff * revert application * back * full revert * clean up * network * more system * fix dat * fixy
65 lines
2.7 KiB
Python
65 lines
2.7 KiB
Python
import pyray as rl
|
|
from openpilot.common.params import Params
|
|
from openpilot.system.ui.lib.application import gui_app, FontWeight, FONT_SCALE
|
|
from openpilot.system.ui.lib.multilang import tr
|
|
from openpilot.system.ui.widgets import Widget
|
|
|
|
|
|
class ExperimentalModeButton(Widget):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.img_width = 80
|
|
self.horizontal_padding = 25
|
|
self.button_height = 125
|
|
|
|
self.params = Params()
|
|
self.experimental_mode = self.params.get_bool("ExperimentalMode")
|
|
|
|
self.chill_pixmap = gui_app.texture("icons/couch.png", self.img_width, self.img_width)
|
|
self.experimental_pixmap = gui_app.texture("icons/experimental_grey.png", self.img_width, self.img_width)
|
|
|
|
def show_event(self):
|
|
self.experimental_mode = self.params.get_bool("ExperimentalMode")
|
|
|
|
def _get_gradient_colors(self):
|
|
alpha = 0xCC if self.is_pressed else 0xFF
|
|
|
|
if self.experimental_mode:
|
|
return rl.Color(255, 155, 63, alpha), rl.Color(219, 56, 34, alpha)
|
|
else:
|
|
return rl.Color(20, 255, 171, alpha), rl.Color(35, 149, 255, alpha)
|
|
|
|
def _draw_gradient_background(self, rect):
|
|
start_color, end_color = self._get_gradient_colors()
|
|
rl.draw_rectangle_gradient_h(int(rect.x), int(rect.y), int(rect.width), int(rect.height),
|
|
start_color, end_color)
|
|
|
|
def _render(self, rect):
|
|
rl.begin_scissor_mode(int(rect.x), int(rect.y), int(rect.width), int(rect.height))
|
|
self._draw_gradient_background(rect)
|
|
rl.draw_rectangle_rounded_lines_ex(self._rect, 0.19, 10, 5, rl.BLACK)
|
|
rl.end_scissor_mode()
|
|
|
|
# Draw vertical separator line
|
|
line_x = rect.x + rect.width - self.img_width - (2 * self.horizontal_padding)
|
|
separator_color = rl.Color(0, 0, 0, 77) # 0x4d = 77
|
|
rl.draw_line_ex(rl.Vector2(line_x, rect.y), rl.Vector2(line_x, rect.y + rect.height), 3, separator_color)
|
|
|
|
# Draw text label (left aligned)
|
|
text = tr("EXPERIMENTAL MODE ON") if self.experimental_mode else tr("CHILL MODE ON")
|
|
text_x = rect.x + self.horizontal_padding
|
|
text_y = rect.y + rect.height / 2 - 45 * FONT_SCALE // 2 # Center vertically
|
|
|
|
rl.draw_text_ex(gui_app.font(FontWeight.NORMAL), text, rl.Vector2(int(text_x), int(text_y)), 45, 0, rl.BLACK)
|
|
|
|
# Draw icon (right aligned)
|
|
icon_x = rect.x + rect.width - self.horizontal_padding - self.img_width
|
|
icon_y = rect.y + (rect.height - self.img_width) / 2
|
|
icon_rect = rl.Rectangle(icon_x, icon_y, self.img_width, self.img_width)
|
|
|
|
# Draw current mode icon
|
|
current_icon = self.experimental_pixmap if self.experimental_mode else self.chill_pixmap
|
|
source_rect = rl.Rectangle(0, 0, current_icon.width, current_icon.height)
|
|
rl.draw_texture_pro(current_icon, source_rect, icon_rect, rl.Vector2(0, 0), 0, rl.WHITE)
|