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