1 | """Guts of snakes.""" |
---|
2 | |
---|
3 | importˆàengine |
---|
4 | |
---|
5 | defˆàpreprocess(line): |
---|
6 | ˆà ˆà """Remove comments and junk spaces from line of snake definition file.""" |
---|
7 | ˆà ˆà ifˆà'//'ˆàinˆàline: |
---|
8 | ˆà ˆà ˆà ˆà line =ˆàline[:line.index('//')] |
---|
9 | ˆà ˆà line =ˆàline.rstrip() |
---|
10 | ˆà ˆà returnˆàline |
---|
11 | |
---|
12 | classˆàSnake(object): |
---|
13 | ˆà ˆà """Snakes. |
---|
14 | |
---|
15 | ˆà ˆà Attributes: |
---|
16 | |
---|
17 | ˆà ˆà - `cells` -- list of cells belonging to the snake The first of these cells |
---|
18 | ˆà ˆà ˆà becomes head, the last one becomes tail, the rest ar body. If snake has |
---|
19 | ˆà ˆà ˆà only one cell, it is tail. |
---|
20 | ˆà ˆà - `color` -- color of snake |
---|
21 | ˆà ˆà - `rules` -- a list of Rule objects |
---|
22 | ˆà ˆà """ |
---|
23 | |
---|
24 | ˆà ˆà defˆà__init__ˆà(self,ˆàcells,ˆàcolor): |
---|
25 | ˆà ˆà ˆà ˆà self.cells =ˆàcells |
---|
26 | ˆà ˆà ˆà ˆà self.color =ˆàcolor |
---|
27 | ˆà ˆà ˆà ˆà self.rules =ˆà[] |
---|
28 | |
---|
29 | ˆà ˆà defˆàloadˆà(self,ˆàfile): |
---|
30 | ˆà ˆà ˆà ˆà """Load snake description from file. |
---|
31 | ˆà ˆà ˆà ˆà |
---|
32 | ˆà ˆà ˆà ˆà See program design docs for file syntax. |
---|
33 | ˆà ˆà ˆà ˆà """ |
---|
34 | ˆà ˆà ˆà ˆà magic,ˆàname =ˆàpreprocess(file.readline()).split(' ',ˆà1) |
---|
35 | ˆà ˆà ˆà ˆà assertˆàmagic ==ˆà"snake",ˆà"This is not snake file" |
---|
36 | ˆà ˆà ˆà ˆà whileˆàTrue: |
---|
37 | ˆà ˆà ˆà ˆà ˆà ˆà line =ˆàpreprocess(file.readline()) |
---|
38 | ˆà ˆà ˆà ˆà ˆà ˆà ifˆàline ==ˆà'end': |
---|
39 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà break |
---|
40 | ˆà ˆà ˆà ˆà ˆà ˆà assertˆàline ==ˆà'',ˆà"Rules must be separated by empty lines" |
---|
41 | ˆà ˆà ˆà ˆà ˆà ˆà self.rules.append(Rule(self).load(file)) |
---|
42 | |
---|
43 | ˆà ˆà defˆàfillˆà(self): |
---|
44 | ˆà ˆà ˆà ˆà """Mark every cell in `self.cells` as belonging to self.""" |
---|
45 | ˆà ˆà ˆà ˆà forˆàcell inˆàself.cells: |
---|
46 | ˆà ˆà ˆà ˆà ˆà ˆà cell.snake =ˆàself |
---|
47 | ˆà ˆà ˆà ˆà snake.cells[0].type =ˆà'head' |
---|
48 | ˆà ˆà ˆà ˆà forˆàcell inˆàself.cells[1:-1]: |
---|
49 | ˆà ˆà ˆà ˆà ˆà ˆà cell.type =ˆà'body' |
---|
50 | ˆà ˆà ˆà ˆà snake.cells[-1].type =ˆà'tail' |
---|
51 | ˆà ˆà ˆà ˆà return |
---|
52 | |
---|
53 | classˆàRule(object): |
---|
54 | ˆà ˆà """Rule defining possible behaviour of snake.""" |
---|
55 | |
---|
56 | ˆà ˆà codes =ˆà{ |
---|
57 | ˆà ˆà ˆà ˆà 'h':ˆà'head', |
---|
58 | ˆà ˆà ˆà ˆà 'b':ˆà'body', |
---|
59 | ˆà ˆà ˆà ˆà 't':ˆà'tail', |
---|
60 | ˆà ˆà ˆà ˆà '#':ˆà'wall', |
---|
61 | ˆà ˆà ˆà ˆà ' ':ˆà'any', |
---|
62 | ˆà ˆà ˆà ˆà '-':ˆà'empty', |
---|
63 | ˆà ˆà } |
---|
64 | |
---|
65 | ˆà ˆà defˆà__init__ˆà(self,ˆàsnake): |
---|
66 | ˆà ˆà ˆà ˆà self.snake =ˆàsnake |
---|
67 | ˆà ˆà ˆà ˆà self.direction =ˆà(1,ˆà0) |
---|
68 | ˆà ˆà ˆà ˆà self.pattern =ˆà{} |
---|
69 | |
---|
70 | ˆà ˆà defˆàloadˆà(self,ˆàfile): |
---|
71 | ˆà ˆà ˆà ˆà """Load rule definition from file. Ignore any leading empty lines.""" |
---|
72 | ˆà ˆà ˆà ˆà y =ˆà0 |
---|
73 | ˆà ˆà ˆà ˆà forˆàline inˆàfile: |
---|
74 | ˆà ˆà ˆà ˆà ˆà ˆà line =ˆàpreprocess(line) |
---|
75 | ˆà ˆà ˆà ˆà ˆà ˆà ifˆày ==ˆà0ˆàandˆàline ==ˆà'': |
---|
76 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà continue |
---|
77 | ˆà ˆà ˆà ˆà ˆà ˆà ifˆày ==ˆà7: |
---|
78 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà break |
---|
79 | ˆà ˆà ˆà ˆà ˆà ˆà assertˆàlen(line)ˆà==ˆà8,ˆà"Rule lines must be exactly 7 chars long" |
---|
80 | ˆà ˆà ˆà ˆà ˆà ˆà assertˆàline[-1]ˆà==ˆà';',ˆà"Rule lines must end with semicolon" |
---|
81 | ˆà ˆà ˆà ˆà ˆà ˆà forˆàx,ˆàchar inˆàenumerate(line[:8]): |
---|
82 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà self.parse_cell(x,ˆày,ˆàchar) |
---|
83 | ˆà ˆà ˆà ˆà ˆà ˆà y +=ˆà1 |
---|
84 | |
---|
85 | ˆà ˆà defˆàparse_cell(self,ˆàx,ˆày,ˆàchar): |
---|
86 | ˆà ˆà ˆà ˆà """Parse definition of cell in rule file. |
---|
87 | |
---|
88 | ˆà ˆà ˆà ˆà Cell is defined by one character. |
---|
89 | ˆà ˆà ˆà ˆà """ |
---|
90 | ˆà ˆà ˆà ˆà assertˆàchar.lower()ˆàinˆàself.codes,ˆà"Illegal symbol in rule: %s"ˆà%ˆàchar |
---|
91 | ˆà ˆà ˆà ˆà cell =ˆàengine.Cell(x,ˆày,ˆàself.snake) |
---|
92 | ˆà ˆà ˆà ˆà ifˆàchar inˆà'htb': |
---|
93 | ˆà ˆà ˆà ˆà ˆà ˆà ifˆàchar.islower(): |
---|
94 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà cell.snake_type =ˆà'my' |
---|
95 | ˆà ˆà ˆà ˆà ˆà ˆà else: |
---|
96 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà cell.snake_type =ˆà'enemy' |
---|
97 | ˆà ˆà ˆà ˆà ifˆàchar ==ˆà'h': |
---|
98 | ˆà ˆà ˆà ˆà ˆà ˆà assertˆà(x,ˆày)ˆà==ˆà(3,ˆà3),ˆà"Own head must in the center of rule" |
---|
99 | ˆà ˆà ˆà ˆà ifˆà(x,ˆày)ˆà==ˆà(3,ˆà3): |
---|
100 | ˆà ˆà ˆà ˆà ˆà ˆà assertˆàchar ==ˆà'h',ˆà"In the center of rule must be own head" |
---|
101 | ˆà ˆà ˆà ˆà cell.type =ˆàself.codes[char.lower()] |
---|
102 | ˆà ˆà ˆà ˆà self.pattern[x,ˆày]ˆà=ˆàcell |
---|
103 | |
---|
104 | ˆà ˆà defˆàappliesˆà(self,ˆàfield,ˆàx,ˆày): |
---|
105 | ˆà ˆà ˆà ˆà """True if the rule applies in the field at position (x,y).""" |
---|
106 | ˆà ˆà ˆà ˆà forˆàpx,ˆàfx inˆàzip(range(7),ˆàrange(x -ˆà3,ˆàx +ˆà4)): |
---|
107 | ˆà ˆà ˆà ˆà ˆà ˆà forˆàpy,ˆàfy inˆàzip(range(7),ˆàrange(y -ˆà3,ˆày +ˆà4)): |
---|
108 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ifˆà(fx,ˆàfy)ˆàinˆàfield: |
---|
109 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ifˆàfield[fx,ˆàfy]ˆà!=ˆàself.pattern[px,ˆàpy]: |
---|
110 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà returnˆàFalse |
---|
111 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà else: |
---|
112 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ifˆàself.pattern[px,ˆàpy].type !=ˆà'any': |
---|
113 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà returnˆàFalse |
---|
114 | ˆà ˆà ˆà ˆà returnˆàTrue |
---|
115 | |
---|
116 | ˆà ˆà defˆàrotateˆà(self,ˆàrot): |
---|
117 | ˆà ˆà ˆà ˆà """Rotate rule pattern `rot` times counterclockwise.""" |
---|
118 | ˆà ˆà ˆà ˆà forˆài inˆàrange(((rot %ˆà4)ˆà+ˆà4)ˆà%ˆà4): |
---|
119 | ˆà ˆà ˆà ˆà ˆà ˆà self.rotate_ccw() |
---|
120 | |
---|
121 | ˆà ˆà defˆàrotate_ccw(self): |
---|
122 | ˆà ˆà ˆà ˆà """Rotate rule pattern one time counterclockwise.""" |
---|
123 | ˆà ˆà ˆà ˆà pattern =ˆà{} |
---|
124 | ˆà ˆà ˆà ˆà forˆàx inˆàrange(7): |
---|
125 | ˆà ˆà ˆà ˆà ˆà ˆà forˆày inˆàrange(7): |
---|
126 | ˆà ˆà ˆà ˆà ˆà ˆà ˆà ˆà pattern[y,ˆà6ˆà-ˆàx]ˆà=ˆàself.pattern[x,ˆày] |
---|
127 | ˆà ˆà ˆà ˆà self.pattern =ˆàpattern |
---|
128 | ˆà ˆà ˆà ˆà x,ˆày =ˆàself.direction |
---|
129 | ˆà ˆà ˆà ˆà self.direction =ˆày,ˆà-x |
---|
130 | |
---|
131 | # vim: set ts=4 sts=4 sw=4 et: |
---|