n | def turtle(start_pos, init_dir): | n | def turtle(position, initial_direction): |
| pos_x, pos_y = start_pos | | pos_x, pos_y = position |
| movement = [(1, 0), (0, 1), (-1, 0), (0, -1)] | | moves = [(1, 0), (0, 1), (-1, 0), (0, -1)] |
| direction = init_dir | | facing = initial_direction |
| while True: | | while True: |
t | action = (yield (pos_x, pos_y)) | t | command = (yield (pos_x, pos_y)) |
| if action == 'f': | | if command == 'f': |
| delta_x, delta_y = movement[direction] | | move_x, move_y = moves[facing] |
| pos_x += delta_x | | pos_x += move_x |
| pos_y += delta_y | | pos_y += move_y |
| elif action == 'l': | | elif command == 'l': |
| direction = (direction + 1) % 4 | | facing = (facing + 1) % 4 |
| elif action == 'r': | | elif command == 'r': |
| direction = (direction - 1) % 4 | | facing = (facing - 1) % 4 |