kingdomino.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import numpy as np
  2. from random import shuffle
  3. lands = {'C': 'Castle', 'F': 'Forrest', 'G': 'Grass', 'L': 'Lake', 'M': 'Mountain', 'S': 'Swamp', 'W': 'Wheat'}
  4. class card:
  5. def __init__(self, tile_a, crown_a, tile_b, crown_b, rotation, inverse=None):
  6. self.tile_a = tile_a
  7. self.crown_a = crown_a
  8. self.tile_b = tile_b
  9. self.crown_b = crown_b
  10. self.rotation = rotation
  11. if inverse is None:
  12. self.inverse = card(self.tile_b, self.crown_b, self.tile_a, self.crown_a, (self.rotation + 2) % 4, self)
  13. else:
  14. self.inverse = inverse
  15. def rotate(self):
  16. self.rotation = (self.rotation + 1) % 4
  17. def offset(self):
  18. rot = [(0, 1), (1, 0), (0, -1), (-1, 0)]
  19. return rot[self.rotation]
  20. def __eq__(self, other):
  21. return self.tile_a == other.tile_a
  22. def __repr__(self):
  23. rot = [(' ', '='), ('.', '.'), ('=', ' '), ('`', '´')]
  24. a, b = rot[self.rotation]
  25. if self.tile_a == 'C':
  26. a, b = ('<', '>')
  27. return a + self.tile_a + str(self.crown_a) + b
  28. class board:
  29. _board = []
  30. def __init__(self):
  31. self._board = np.empty(shape=(13, 13), dtype=card)
  32. # self._board.fill()
  33. self._board[6][6] = card('C', 0, '', 0, 1)
  34. def place(self, new_card, coords):
  35. x1, y1 = coords
  36. dx2, dy2 = new_card.offset()
  37. x2 = x1 + dx2
  38. y2 = y1 + dy2
  39. if self._board[x1][y1] is not None:
  40. print('geht nicht')
  41. return
  42. if self._board[x2][y2] is not None:
  43. print('geht auch nicht')
  44. return
  45. self._board[x1][y1] = new_card
  46. self._board[x2][y2] = new_card.inverse
  47. def available_slots(self, new_card):
  48. b = new_card == self._board
  49. return b
  50. def __repr__(self):
  51. return str(self._board)
  52. deck = list(range(1, 49))
  53. shuffle(deck)
  54. deck = np.reshape(deck, (12, 4))
  55. for row in deck:
  56. row.sort()
  57. if __name__ == '__main__':
  58. b = board()
  59. c1 = card('F', 0, 'W', 0, 0)
  60. b.place(c1, (5, 6))
  61. c2 = card('F', 0, 'S', 0, 0)
  62. print(b.available_slots(c2))
  63. # print(b)
  64. # print(deck)
  65. # print(c)
  66. # print(c.inverse)