Last active
February 20, 2019 20:40
-
-
Save wbars/88df9704306629c40c7929e691b48b98 to your computer and use it in GitHub Desktop.
2048 python numpy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding=utf-8 | |
import sys | |
import numpy as np | |
from numpy.random import choice | |
class Action: | |
UP = 0 | |
RIGHT = 1 | |
DOWN = 2 | |
LEFT = 3 | |
@classmethod | |
def get_action(cls, keyboard_key): | |
# wtf python, static references? | |
moves = {'w': Action.UP, 'd': Action.RIGHT, 's': Action.DOWN, 'a': Action.LEFT} | |
if keyboard_key not in moves: | |
raise Exception | |
return moves[keyboard_key] | |
def stack(board): | |
for i in range(0, len(board)): | |
for j in range(0, len(board)): | |
k = i | |
while board[k][j] == 0: | |
if k == len(board) - 1: | |
break | |
k += 1 | |
if k != i: | |
board[i][j], board[k][j] = board[k][j], 0 | |
def sum_up(board): | |
for i in range(0, len(board) - 1): | |
for j in range(0, len(board)): | |
if board[i][j] != 0 and board[i][j] == board[i + 1][j]: | |
board[i][j] += board[i + 1][j] | |
board[i + 1][j] = 0 | |
class Board: | |
def __init__(self, size): | |
self.__board = np.zeros((size, size)) | |
self.__score = 0 | |
def completed(self): | |
return len(np.where(self.__board == 0)[0]) == 0 | |
def move(self, action): | |
self.drop_elem() | |
self.paint() | |
rotated_board = np.rot90(self.__board, action) | |
stack(rotated_board) | |
sum_up(rotated_board) | |
stack(rotated_board) | |
self.__board = np.rot90(rotated_board, len(self.__board) - action) | |
self.calculate_score() | |
def calculate_score(self): | |
self.__score = np.max(self.__board) | |
def paint(self): | |
print np.array_str(self.__board) | |
def score(self): | |
return self.__score | |
def drop_elem(self): | |
elem = choice([2, len(self.__board)], 1, False, [0.9, 0.1])[0] | |
zeroes_flatten = np.where(self.__board == 0) | |
zeroes_indices = [(x, y) for x, y in zip(zeroes_flatten[0], zeroes_flatten[1])] | |
random_index = zeroes_indices[choice(len(zeroes_indices), 1)[0]] | |
self.__board[random_index] = elem | |
def run(): | |
board = Board(4) | |
while True: | |
board.move(Action.get_action(raw_input("Next move?\n"))) | |
board.paint() | |
if board.completed(): | |
break | |
print "Score: " + str(board.score()) | |
if __name__ == '__main__': | |
sys.exit(run()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment