Lines Matching refs:Maze
91 Maze[y][x] = bp->b_over; in moveshots()
156 Maze[pp->p_y][pp->p_x] = pp->p_face; in moveshots()
213 switch (Maze[y][x]) { in move_normal_shot()
242 Maze[y][x] = WALL5; in move_normal_shot()
263 Maze[y][x] = WALL4; in move_normal_shot()
304 if (opposite(bp->b_face, Maze[y][x])) { in move_normal_shot()
383 if (isplayer(Maze[bp->b_y][bp->b_x - 1])) { in move_drone()
387 if (isplayer(Maze[bp->b_y - 1][bp->b_x])) { in move_drone()
391 if (isplayer(Maze[bp->b_y + 1][bp->b_x])) { in move_drone()
395 if (isplayer(Maze[bp->b_y][bp->b_x + 1])) { in move_drone()
485 switch (Maze[bp->b_y][bp->b_x]) { in move_drone()
495 opposite(bp->b_face, Maze[bp->b_y][bp->b_x])) { in move_drone()
519 bp->b_over = Maze[bp->b_y][bp->b_x]; in save_bullet()
556 Maze[bp->b_y][bp->b_x] = bp->b_type; in save_bullet()
577 Maze[pp->p_y][pp->p_x] = pp->p_over; in move_flyer()
597 switch (Maze[y][x]) { in move_flyer()
643 if (Maze[y][x] == BOOT) in move_flyer()
645 Maze[y][x] = SPACE; in move_flyer()
649 pp->p_over = Maze[y][x]; in move_flyer()
650 Maze[y][x] = pp->p_face; in move_flyer()
712 switch (Maze[y][x]) { in chkshot()
732 add_shot((Maze[y][x] == GMINE) ? in chkshot()
735 (Maze[y][x] == GMINE) ? in chkshot()
738 Maze[y][x] = SPACE; in chkshot()
755 switch (Maze[bp->b_y][bp->b_x]) { in chkslime()
816 switch (Maze[bp->b_y][bp->b_x]) { in move_slime()
958 switch (Maze[y][x]) { in iswall()