Пример #1
0
    def set_cell_num(self, num):
        """设置网格的生成边长,并将参数传递给cell_list构造2维数组.

        @param num: 生成网格的边长
        @return: None
        """
        self.cell_list = CellList(int(num))
        self.cell_list.set_example()
Пример #2
0
    def setUp(self):
        """创建一个测试用例.

        此处给定其边长为10
        @return: None
        """
        self.cell_list_case = CellList(10)
        print(len(self.cell_list_case.cell_list))
Пример #3
0
class TestCellList(TestCase):
    """CellList测试类.

    主要测试了CellList中的边长检查和更新算法.
    """

    def setUp(self):
        """创建一个测试用例.

        此处给定其边长为10
        @return: None
        """
        self.cell_list_case = CellList(10)
        print(len(self.cell_list_case.cell_list))

    def test_get_cell_width(self):
        """测试边长是否正确生成.

        @return: None
        """
        print(len(self.cell_list_case.cell_list))
        print("len=", self.cell_list_case.get_cell_list())
        self.assertEqual(self.cell_list_case.get_cell_width(), 10)

    def test_change_life(self):
        """测试changeLife函数.

        @return: None
        """
        self.cell_list_case.set_example()
        self.cell_list_case.cellList = self.cell_list_case.change_life()
        print()
        res = []
        for i in range(12):
            res.append([])
            for j in range(12):
                res[i].append(0)
                print(res[i][j], end=' ')
            print()
        # print(res)

        res[1][3] = 1
        res[2][1] = 1
        res[2][3] = 1
        res[3][2] = 1
        res[3][3] = 1
        print()
        for i in range(12):
            for j in range(12):
                print(self.cell_list_case.cellList[i][j], end=' ')
            print()
        print()
        self.assertEqual(res, self.cell_list_case.cellList)
Пример #4
0
 def testCellAppend(self):
     self.cell11 = Cell()
     self.cell11.set_coordinates(1,1)
     self.cell_list = CellList()
     self.cell_list.append(self.cell11)
     result = self.cell_list.exist(1,1)
     assert result == True, 'Gol01.get_size() does not provide the right return value'
     pass
Пример #5
0
class Gol01Test(unittest.TestCase):

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def testCellAppend(self):
        self.cell11 = Cell()
        self.cell11.set_coordinates(1,1)
        self.cell_list = CellList()
        self.cell_list.append(self.cell11)
        result = self.cell_list.exist(1,1)
        assert result == True, 'Gol01.get_size() does not provide the right return value'
        pass

    def testCellRemove(self):
        pass
Пример #6
0
class Game:
    """Game.

    游戏界面设计类
    """

    screen = None

    def __init__(self, width, height):
        """构造函数.

        @param width: screen宽度
        @param height: screen高度
        """
        self.screen = None
        self.num = 0
        # 屏幕宽高
        self.width = width
        self.height = height
        #  设置屏幕
        self.set_height_width(width, height)
        self.str_start = True
        self.set_screen_color(BLACK)
        # 时钟
        self.clock = pygame.time.Clock()
        # 平衡代数
        self.balance = 1

    def set_height_width(self, width, height):
        """设置界面的窗体大小.

        @param width: screen宽度
        @param height: screen高度
        @return: None
        """
        self.screen = pygame.display.set_mode([width, height])

    def set_screen_color(self, color):
        """设置背景颜色.
        
        @param color: rgb格式的颜色表示color
        @return: None
        """
        self.screen.fill(color)

    def set_time(self, times):
        """设置界面刷新时间.

        @param times: 时间间隔
        @return: None
        """
        self.clock.tick(times)  # 每秒循环1次


    def set_cell_num(self, num):
        """设置网格的生成边长,并将参数传递给cell_list构造2维数组.

        @param num: 生成网格的边长
        @return: None
        """
        self.cell_list = CellList(int(num))
        self.cell_list.set_example()

    def draw_cell(self):
        """绘制当前状态下区域内的细胞,0-死亡,1-存活.

        @return: None
        """
        # x y  长 宽
        cell_list = self.cell_list.get_cell_list()
        length = int(600 / self.num+1)
        for i in range(1, self.num+1):
            for j in range(1, self.num+1):
                if cell_list[i][j] == 1:
                    pygame.draw.rect(self.screen, BLUE,
                                     [i*(length+1)+10, j*(length+1)+10, length, length])
                else:
                    pygame.draw.rect(self.screen, WHITE,
                                     [i*(length+1)+10, j*(length+1)+10, length, length])

    def draw_text(self, dd_num, flag=False):
        """绘制界面上的相关文字信息.

        @param dd_num: 迭代次数
        @param flag: 是否达到平衡状态,默认为False
        @return: 返回当前状态flag
        """
        # 加载字体
        text_font = pygame.font.Font(r"C:\Windows\Fonts\STHUPO.TTF", 30)
        # True = 抗锯齿
        # (255,255,255) = 使用白色绘制
        # 返回值text_surface = 返回要绘制的文字表面
        text_surface = text_font.render("当前迭代次数: "+str(dd_num), True, (255, 255, 255))
        str_balance = "" if not flag else str(self.balance)
        text_surface3 = text_font.render("平衡代数: " + str_balance, True, (255, 255, 255))
        self.screen.blit(text_surface3, (1000, 250))

        str_flag = "是" if flag else "否"
        text_surface2 = text_font.render("平衡状态: " + str_flag, True, (255, 255, 255))

        # 绘制文字在(900,200)位置
        self.screen.blit(text_surface, (1000, 200))
        self.screen.blit(text_surface2, (1000, 300))

        pygame.draw.rect(self.screen, BLUE, [1140, 100, 150, 80])
        self.screen.blit(text_font.render("输入边长:"+str(self.num), True,
                                          (255, 255, 255)), (1000, 125))
        pygame.draw.rect(self.screen, BLUE, [1070, 400, 150, 80])
        start = "开始" if self.str_start else "暂停"
        self.screen.blit(text_font.render(start, True, (255, 255, 255)), (1110, 425))

        pygame.draw.rect(self.screen, BLUE, [1070, 500, 150, 80])
        self.screen.blit(text_font.render("重新开始", True, (255, 255, 255)), (1080, 525))

        return flag

    @staticmethod
    def get_mouse():
        """获得鼠标点击的坐标.

        @return: 返回鼠标点击位置的坐标
        """
        location_x, location_y = pygame.mouse.get_pos()
        return location_x, location_y

    def pre_start(self):
        """初始化界面,并监听操作.

        @return: None
        """
        num = "0"
        location_x = 0
        location_y = 0
        while True:
            self.screen.fill(BLACK)
            self.draw_text(0, False)
            for event in pygame.event.get():
                if event.type == pygame.MOUSEBUTTONDOWN:
                    location_x, location_y = self.get_mouse()
                #  关闭窗口
                if event.type == pygame.QUIT:
                    sys.exit()
                # 监听输入
                elif event.type == pygame.KEYDOWN and \
                        (1070 <= location_x <= 1290) and (100 <= location_y <= 180):
                    key_num = int(event.key) - 48
                    print(key_num)
                    if 0 <= key_num <= 9:
                        num = num + str(key_num)
                        print(num)
                    elif key_num == -40 and len(num) > 0:
                        num = num[0:-1]
                    self.num = num
            if 1070 <= location_x <= 1220 and 400 <= location_y <= 480:
                self.num = int(num)
                if self.num >= 980 or self.num <= 0:
                    continue
                self.set_cell_num(num)
                self.str_start = False
                break

            pygame.display.flip()

    def start(self, time):
        """开始游戏,同时监听操作.

        @param time: 设置刷新时间
        @return: None
        """
        self.pre_start()
        round_times = 1
        self.balance = 1
        pre_list = None
        after_list = None
        while True:
            for event in pygame.event.get():
                #  关闭窗口
                if event.type == pygame.QUIT:
                    sys.exit()
                if event.type == pygame.MOUSEBUTTONDOWN:
                    location_x, location_y = self.get_mouse()
                    if (1070 <= location_x <= 1220) and (400 <= location_y <= 480):
                        self.str_start = not self.str_start
                    if (1070 <= location_x <= 1220) and (500 <= location_y <= 580):
                        self.screen.fill(BLACK)
                        pygame.display.flip()
                        round_times = 1
                        self.balance = 0
                        self.str_start = True
                        self.pre_start()
                        break
            # print(self.str_start)
            self.screen.fill(BLACK)
            # 设置刷新时间
            self.set_time(time)
            # 1.获取细胞状态
            self.draw_cell()
            if not self.str_start:
                pre_list = self.cell_list.get_cell_list()
                # 2.绘制细胞
                self.cell_list.change_life()
                after_list = self.cell_list.get_cell_list()
            # 判断是否到达平衡状态
            if pre_list == after_list:
                flag = True
            else:
                flag = False
            self.balance = self.balance if flag else  self.balance + 1
            print("balance:"+str(self.balance))
            # 绘制迭代次数
            if self.draw_text(round_times, flag):
                pygame.display.flip()
                self.str_start = True

            round_times = round_times if self.str_start else round_times+1
            print("round_times:" + str(round_times))
            # 更新屏幕
            pygame.display.flip()