Advertisement
Guest User

Untitled

a guest
Jan 13th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.82 KB | None | 0 0
  1. INITIAL_LAYOUT = frozenset([
  2.   (1,2,TOP_LEFT,"orange"),
  3.   (3,2,THREE_BY_ONE,"green"),
  4.   (2,4,BOTTOM_RIGHT,"blue"),
  5.   (0,5,TOP_LEFT_WIDE,"yellow"),
  6.   (5,5,TOP_RIGHT_WIDE,"pink"),
  7.   (2,6,TWO_BY_TWO,"Layton")
  8. ])
  9. GOAL_POINT = (2,0,TWO_BY_TWO,"Layton")
  10. BOUNDS = frozenset([
  11.                (1,-1),(2,-1),(3,-1),(4,-1),
  12.                (1, 0),              (4, 0),
  13. (-1, 1),(0, 1),(1, 1),              (4, 1),(5, 1),(6, 1),
  14. (-1, 2),                                          (6, 2),
  15. (-1, 3),(0, 3),                            (5, 3),(6, 3),
  16. (-1, 4),                                          (6, 4),
  17. (-1, 5),                                          (6, 5),
  18. (-1, 6),                                          (6, 6),
  19. (-1, 7),                                          (6, 7),
  20. (-1, 8),(0, 8),(1, 8),(2, 8),(3, 8),(4, 8),(5, 8),(6, 8)
  21. ])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement