-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавлена сетка + фикс смерти от избегания закраски изнутри
- Loading branch information
Kislenko Maksim
committed
Jul 25, 2019
1 parent
aaf28c6
commit 7ded1e9
Showing
2 changed files
with
27 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7ded1e9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
что значит "фикс смерти от избегания закраски изнутри "
только что смотрел
e7a05f3
связанный фикс
это видимо фикс на фикс
не пойму - почему
return self.diff_position(self.prev_direction, self.x, self.y, WIDTH)
или
return self.diff_position(self.direction, self.x, self.y, WIDTH)
должно работать?
и то и другое - баг
надо проверять ПРЕДЫДУЩУЮ КЛЕТКУ
т.е если мы идем UP то надо по направлению DOWN проверять
нужно инвертировать self.direction и потом проверить
либо я не понял и тут еще более запутанно
p.s.
def diff_position(self, direction, x, y, val):
if direction == UP:
return x, y - val
вот это вот все - по факту уже делает ИНВЕРСИЮ позиции.. но названо явно неверно
логичней ввести функцию get_position_with_offset(self, dir, x, y, speed) и юзать ее без копипаста - везде где над
invert_direction
вместо 2х копипастов и такого запутывания - ввести нормальные имена и более логично.. сразу? не?