Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Labyrinth: Декоратор для классов, описывающих уникальные объекты #208

Open
lounres opened this issue Jun 15, 2019 · 1 comment
Assignees
Labels
labyrinth-engine Everything that connects with engine in module of Labyritnths.

Comments

@lounres
Copy link
Member

lounres commented Jun 15, 2019

def add_meta(cls, *args, **kwargs):
    if not 'metadate' in cls.__dict__:
        cls.metadate = {}
    for key in args: cls.metadate[key] = True
    cls.metadate.update(kwargs)
    return cls.metadate

def get_meta(cls):
    if not 'metadate' in cls.__dict__:
        return {}
    return cls.metadate

# декоратор для класса описывающего уникальный предмет
def unique(key):
    """
    key - ключ, который будет установлен
          этому уникальному объекту.
    """
    def unique_decorator(cls):
        old_function = cls.set_settings
        def set_settings(self, *args, **kwargs):
            """
            Новая функция дополнительно будет устанавливать
            указанный уникальный ключ.
            """
            data = old_function(self, *args, **kwargs)
            self.labyrinth.set_unique(self, key)
            return data

        # изменяем функцию в классе.
        cls.set_settings = set_settings
        add_meta(cls, 'unique_object')
        return cls
    return unique_decorator

В самом лабиринте можно добавить проверку того, что объектов уникального класса <= 1

@lounres lounres added the labyrinth-engine Everything that connects with engine in module of Labyritnths. label Jun 15, 2019
@lounres lounres self-assigned this Jun 15, 2019
@lounres
Copy link
Member Author

lounres commented Jun 15, 2019

Проверка отправляется в давно забытый (но ещё не созданный почему-то) issue #209.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
labyrinth-engine Everything that connects with engine in module of Labyritnths.
Projects
None yet
Development

No branches or pull requests

1 participant