Python實現(xiàn)AI的俄羅斯方塊小游戲
前言

代碼效果展示

開發(fā)工具
環(huán)境搭建
原理簡介
(1)游戲制作
(2)AI源碼實現(xiàn)
# 簡單的AI算法
for d_now in current_direction_range:
x_now_min, x_now_max, y_now_min, y_now_max = self.inner_board.current_tetris.getRelativeBoundary(d_now)
for x_now in range(-x_now_min, self.inner_board.width - x_now_max):
board = self.getFinalBoardData(d_now, x_now)
for d_next in next_direction_range:
x_next_min, x_next_max, y_next_min, y_next_max = self.inner_board.next_tetris.getRelativeBoundary(d_next)
distances = self.getDropDistances(board, d_next, range(-x_next_min, self.inner_board.width-x_next_max))
for x_next in range(-x_next_min, self.inner_board.width-x_next_max):
score = self.calcScore(copy.deepcopy(board), d_next, x_next, distances)
if not action or action[2] < score:
action = [d_now, x_now, score]
return action
可消除的行數(shù);
堆積后的俄羅斯方塊內(nèi)的虛洞數(shù)量;
堆積后的俄羅斯方塊內(nèi)的小方塊數(shù)量;
堆積后的俄羅斯方塊的最高點;
堆積后的俄羅斯方塊的高度(每一列都有一個高度)標準差;
堆積后的俄羅斯方塊的高度一階前向差分;
堆積后的俄羅斯方塊的高度一階前向差分的標準差;
堆積后的俄羅斯方塊的最高點和最低點之差。
代碼實現(xiàn)如下:
# 空位統(tǒng)計
hole_statistic_0 = [0] * width
hole_statistic_1 = [0] * width
# 方塊數(shù)量
num_blocks = 0
# 空位數(shù)量
num_holes = 0
# 每個x位置堆積俄羅斯方塊的最高點
roof_y = [0] * width
for y in range(height-1, -1, -1):
# 是否有空位
has_hole = False
# 是否有方塊
has_block = False
for x in range(width):
if board[x + y * width] == tetrisShape().shape_empty:
has_hole = True
hole_statistic_0[x] += 1
else:
has_block = True
roof_y[x] = height - y
if hole_statistic_0[x] > 0:
hole_statistic_1[x] += hole_statistic_0[x]
hole_statistic_0[x] = 0
if hole_statistic_1[x] > 0:
num_blocks += 1
if not has_block:
break
if not has_hole and has_block:
removed_lines += 1
# 數(shù)據(jù)^0.7之和
num_holes = sum([i ** .7 for i in hole_statistic_1])
# 最高點
max_height = max(roof_y) - removed_lines
# roof_y做差分運算
roof_dy = [roof_y[i]-roof_y[i+1] for i in range(len(roof_y)-1)]
# 計算標準差E(x^2) - E(x)^2
if len(roof_y) <= 0:
roof_y_std = 0
else:
roof_y_std = math.sqrt(sum([y**2 for y in roof_y]) / len(roof_y) - (sum(roof_y) / len(roof_y)) ** 2)
if len(roof_dy) <= 0:
roof_dy_std = 0
else:
roof_dy_std = math.sqrt(sum([dy**2 for dy in roof_dy]) / len(roof_dy) - (sum(roof_dy) / len(roof_dy)) ** 2)
# roof_dy絕對值之和
abs_dy = sum([abs(dy) for dy in roof_dy])
# 最大值與最小值之差
max_dy = max(roof_y) - min(roof_y)
# 計算得分
score = removed_lines * 1.8 - num_holes * 1.0 - num_blocks * 0.5 - max_height ** 1.5 * 0.02 - roof_y_std * 1e-5 - roof_dy_std * 0.01 - abs_dy * 0.2 - max_dy * 0.3
return score
搜索下方加老師微信
老師微信號:XTUOL1988【切記備注:學習Python】
領(lǐng)取Python web開發(fā),Python爬蟲,Python數(shù)據(jù)分析,人工智能等精品學習課程。帶你從零基礎(chǔ)系統(tǒng)性的學好Python!
*聲明:本文于網(wǎng)絡(luò)整理,版權(quán)歸原作者所有,如來源信息有誤或侵犯權(quán)益,請聯(lián)系我們刪除或授權(quán)
評論
圖片
表情



