blob: 011ae51c07dda2d42ae895b544ebf668eb984011 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 | import asyncio
import json
from typing import Any
class Player:
    def __init__(self):
        self.cards = {}
        self.next_idx = 0
        self.score = 0
        self.has_played = False
        self.name = 'default'
        self.notifications: asyncio.Queue = asyncio.Queue()
    def pop_card(self, card_id):
        return self.cards.pop(card_id)
    def inc_score(self):
        self.score += 1
        self.register_notification({
            'op': 'updated_score',
            'content': self.score,
            })
    def receive_card(self, card):
        self.cards[self.next_idx] = card
        self.next_idx += 1
        return self.next_idx - 1
    def register_notification(self, obj: Any):
        message = json.dumps({'type': 'notification', 'content': obj})
        self.notifications.put_nowait(message)
 |