Lines Matching defs:xx
178 eat(int xx, int yy)
186 if (xx <= 2)
188 if ((item[xx - 1][yy] != OWALL) || (item[xx - 2][yy] != OWALL))
190 item[xx - 1][yy] = item[xx - 2][yy] = 0;
191 eat(xx - 2, yy);
195 if (xx >= MAXX - 3)
197 if ((item[xx + 1][yy] != OWALL) || (item[xx + 2][yy] != OWALL))
199 item[xx + 1][yy] = item[xx + 2][yy] = 0;
200 eat(xx + 2, yy);
206 if ((item[xx][yy - 1] != OWALL) || (item[xx][yy - 2] != OWALL))
208 item[xx][yy - 1] = item[xx][yy - 2] = 0;
209 eat(xx, yy - 2);
215 if ((item[xx][yy + 1] != OWALL) || (item[xx][yy + 2] != OWALL))
217 item[xx][yy + 1] = item[xx][yy + 2] = 0;
218 eat(xx, yy + 2);