当前位置: 首页>>代码示例>>Python>>正文


Python Simulator.requirements方法代码示例

本文整理汇总了Python中simulator.Simulator.requirements方法的典型用法代码示例。如果您正苦于以下问题:Python Simulator.requirements方法的具体用法?Python Simulator.requirements怎么用?Python Simulator.requirements使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在simulator.Simulator的用法示例。


在下文中一共展示了Simulator.requirements方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: print_message

# 需要导入模块: from simulator import Simulator [as 别名]
# 或者: from simulator.Simulator import requirements [as 别名]
            pos = pygame.mouse.get_pos()

            if active_screen == home:
                for button in home_men.elements:
                    if button.clicked(pos):
                        if  button.id == 1:
                            print_message(message_input_random,help_msg_rect,home)
                            param_lst = button.executeAction()
                            if param_lst[0]<0 or param_lst[1]<0:
                                print_message(["parametros incorrectos"], error_msg_rect, active_screen,(255,0,0))
                                break
                            sim.random_list(param_lst[0])
                            sim.add_random_pf(param_lst[1]+2)
                        elif button.id == 2:
                            print_message(message_input_hand,help_msg_rect,home)
                            sim.requirements = button.executeAction()
                        elif button.id == 3:
                            print_message(message_input_file,help_msg_rect,home)
                            file_name = active_screen.get_element('InputBox').ask(False)
                            sim.requirements = load_file(file_name)
                            if (sim.requirements == None):
                                print_message(["No se pudo abrir el archivo. Revise permisos y/o ubicacion"],error_msg_rect,active_screen,(255,0,0))
                                break
                        elif button.id == 4:
                            print_message(message_input_pos,help_msg_rect,active_screen)
                            num = active_screen.get_element('InputBox').ask(False)
                            sim.init_pos = int(num)
                            if sim.init_pos<0 or sim.init_pos>511:
                                print_message(["parametros incorrectos"], error_msg_rect,active_screen,(255,0,0))
                                break
                        elif button.id == 5:
开发者ID:farfanoide,项目名称:simuladorHDD,代码行数:33,代码来源:Pysimulator.py


注:本文中的simulator.Simulator.requirements方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。