ursina_ui.py 7.4 KB
Newer Older
三月三net's avatar
三月三net 已提交
1 2 3 4 5 6 7 8 9 10 11
# -*- coding:utf-8 -*-
# title           :ursina天体运行模拟器UI控制
# description     :ursina天体运行模拟器UI控制
# author          :Python超人
# date            :2023-02-11
# link            :https://gitcode.net/pythoncr/
# python_version  :3.8
# ==============================================================================
from ursina import Ursina, window, Entity, Grid, Mesh, camera, Text, application, color, mouse, Vec2, Vec3, \
    load_texture, held_keys, Button
from ursina.prefabs.first_person_controller import FirstPersonController
三月三net's avatar
三月三net 已提交
12 13

from simulators.ursina.ui_component import UiSlider, SwithButton
三月三net's avatar
三月三net 已提交
14 15 16 17 18 19 20
from simulators.ursina.ursina_config import UrsinaConfig
from simulators.ursina.ursina_event import UrsinaEvent
from ursina import WindowPanel, InputField, Button, Slider, ButtonGroup


class UrsinaUI:

三月三net's avatar
三月三net 已提交
21 22
    def ui_component_init(self):
        Text.default_font = 'simsun.ttc'
三月三net's avatar
三月三net 已提交
23
        application.time_scale = 0.5
三月三net's avatar
三月三net 已提交
24 25 26 27
        self.slider_body_spin_factor = UiSlider(text='自转速度', min=0.01, max=30, default=1)
        self.slider_run_speed_factor = UiSlider(text="运行速度", min=0.01, max=800, default=1)
        self.slider_control_speed_factor = UiSlider(text="控制速度", min=0.01, max=30, default=application.time_scale)
        self.slider_trail_length = UiSlider(text="拖尾长度", min=30, max=500, default=UrsinaConfig.trail_length)
三月三net's avatar
三月三net 已提交
28 29 30 31

        self.slider_body_spin_factor.on_value_changed = self.on_slider_body_spin_changed
        self.slider_run_speed_factor.on_value_changed = self.on_slider_run_speed_changed
        self.slider_control_speed_factor.on_value_changed = self.on_slider_control_speed_changed
三月三net's avatar
三月三net 已提交
32 33
        self.slider_trail_length.on_value_changed = self.on_slider_trail_length_changed

三月三net's avatar
三月三net 已提交
34
        self.on_off_switch = SwithButton(('||', '○'), default='○')
三月三net's avatar
三月三net 已提交
35
        self.on_off_switch.selected_color = color.red
三月三net's avatar
三月三net 已提交
36

三月三net's avatar
三月三net 已提交
37
        self.on_off_trail = SwithButton((' ', '...'), default=' ')
三月三net's avatar
三月三net 已提交
38 39
        self.on_off_trail.on_value_changed = self.on_off_trail_changed

三月三net's avatar
三月三net 已提交
40 41 42 43 44
        self.point_button = Button(text='寻找', origin=(0, 0), y=2,
                                   on_click=self.on_point_button_click, color=color.rgba(0.0, 0.0, 0.0, 0.5))
        self.reset_button = Button(text='重置', origin=(0, 0), y=2,
                                   on_click=self.on_reset_button_click, color=color.rgba(0.0, 0.0, 0.0, 0.5))
        self.on_off_switch.on_value_changed = self.on_off_switch_changed
三月三net's avatar
三月三net 已提交
45

三月三net's avatar
三月三net 已提交
46 47 48 49 50 51 52 53 54
        wp = WindowPanel(
            title='',
            content=(
                Text('方位控制: Q W E A S D + 鼠标右键'),
                # InputField(name='name_field'),
                # Button(text='Submit', color=color.azure),
                self.point_button,
                self.reset_button,
                self.on_off_switch,
三月三net's avatar
三月三net 已提交
55 56
                self.on_off_trail,
                self.slider_trail_length,
三月三net's avatar
三月三net 已提交
57 58 59 60 61 62 63
                self.slider_body_spin_factor,
                self.slider_run_speed_factor,
                self.slider_control_speed_factor

            ), ignore_paused=True, color=color.rgba(0.0, 0.0, 0.0, 0.5)
        )
        wp.y = 0.5  # wp.panel.scale_y / 2 * wp.scale_y  # center the window panel
三月三net's avatar
三月三net 已提交
64 65
        wp.x = 0.6 # wp.scale_x + 0.1
        # wp.x = 0#wp.panel.scale_x / 2 * wp.scale_x
三月三net's avatar
三月三net 已提交
66 67
        self.wp = wp

三月三net's avatar
三月三net 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    def __init__(self):
        self.ui_component_init()

        # self.pause_handler = Entity(ignore_paused=True)
        # 加载中文字体文件

        # text_time_scale = "1"
        # self.text_time_scale_info = None
        # self.pause_handler.input = self.pause_handler_input
        # self.show_text_time_scale_info()
        # key_info_str = "退出[按2次ESC] 方位控制[鼠标QWEASD] 开始暂停[空格] 控制倍率[Tab - +]"
        # key_info = Text(text=key_info_str, position=(-0.8, 0.5), origin=(-1, 1), background=True)
        # # self.show_button()
        # slider_text = Text(text='自转速度', scale=1, position=(-0.6, 0.3))
        # slider = Slider(scale=0.5, position=(-0.6, 0), min=0, max=10, step=1, text=slider_text)



三月三net's avatar
三月三net 已提交
86 87 88 89 90 91
    def on_off_trail_changed(self):
        if self.on_off_trail.value == "...":
            UrsinaConfig.show_trail = True
        else:
            UrsinaConfig.show_trail = False

三月三net's avatar
三月三net 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105
    def on_point_button_click(self):
        pass

    def on_reset_button_click(self):
        UrsinaEvent.on_reset()

    def on_off_switch_changed(self):
        if self.on_off_switch.value == "||":
            self.on_off_switch.selected_color = color.green
            application.paused = True
        else:
            self.on_off_switch.selected_color = color.red
            application.paused = False

三月三net's avatar
三月三net 已提交
106 107 108
    def on_slider_trail_length_changed(self):
        UrsinaConfig.trail_length = int(self.slider_trail_length.value)

三月三net's avatar
三月三net 已提交
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
    def on_slider_control_speed_changed(self):
        application.time_scale = self.slider_control_speed_factor.value

    def on_slider_body_spin_changed(self):
        UrsinaConfig.body_spin_factor = self.slider_body_spin_factor.value

    def on_slider_run_speed_changed(self):
        UrsinaConfig.run_speed_factor = self.slider_run_speed_factor.value

    def show_text_time_scale_info(self):
        if self.text_time_scale_info is not None:
            self.text_time_scale_info.disable()
        text_time_scale = "控制倍率:" + str(application.time_scale).ljust(4, " ")
        text_time_scale_info = Text(text=text_time_scale, position=(-0.8, 0.5), origin=(-1, 1), background=True)

    def show_button(self):
        b = Button(scale=(0, .25), text='zzz')

    #  if key == "escape":
    #             if mouse.locked:
    #                 self.on_disable()
    #             else:
    #                 sys.exit()

    # 按空格键则暂停
    def pause_handler_input(self, key):
        import sys
        time_scales = [0.05, 0.1, 0.2, 0.5, 1, 5, 10, 20, 30]
        if key == "escape":
            sys.exit()
        # print(key)
        elif key == 'space':
            application.paused = not application.paused  # Pause/unpause the game.
        elif key == 'tab':
            # application.time_scale 属性控制游戏时间流逝的速度。
            # 具体来说,它是一个浮点数,用于调整游戏时间流逝速度的比例,其默认值为 1.0,表示正常速度。
            # 当你将它设置为小于 1.0 的值时,游戏时间会变慢,而设置为大于 1.0 的值时,游戏时间则会变快。
            for idx, time_scale in enumerate(time_scales):
                if float(application.time_scale) == time_scale:
                    if idx < len(time_scales) - 1:
                        application.time_scale = time_scales[idx + 1]
                        break
                    else:
                        application.time_scale = time_scales[0]
        elif key == '+':
            UrsinaConfig.run_speed_factor *= 2
        elif key == "= up":
            UrsinaConfig.body_spin_factor *= 2
            # if application.time_scale in time_scales:
            #     idx = time_scales.index(application.time_scale)
            #     if idx < len(time_scales) - 1:
            #         application.time_scale = time_scales[idx + 1]
        elif key == '-':
            UrsinaConfig.run_speed_factor *= 0.5
        elif key == "- up":
            UrsinaConfig.body_spin_factor *= 0.5
            # if application.time_scale in time_scales:
            #     idx = time_scales.index(application.time_scale)
            #     if idx > 0:
            #         application.time_scale = time_scales[idx - 1]

        self.show_text_time_scale_info()