mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-22 17:47:11 +03:00
40 lines
927 B
Python
40 lines
927 B
Python
from asgiref.sync import sync_to_async
|
|
from random import randint
|
|
|
|
from common.generators import generate_charset
|
|
from game.models import Player
|
|
from room.models import Room, PlayerInRoom
|
|
|
|
|
|
@sync_to_async
|
|
def create_room(
|
|
deck_id_1: int,
|
|
player_id_1: int,
|
|
player_score_1: int,
|
|
deck_id_2: int,
|
|
player_id_2: int,
|
|
player_score_2: int,
|
|
) -> str:
|
|
room = Room.objects.create(slug=generate_charset(16))
|
|
player_1 = Player.objects.get(id=player_id_1)
|
|
player_2 = Player.objects.get(id=player_id_2)
|
|
|
|
first_player = randint(1, 2)
|
|
|
|
PlayerInRoom.objects.create(
|
|
player=player_1,
|
|
room=room,
|
|
score=player_score_1,
|
|
deck_id=deck_id_1,
|
|
first=first_player == 1,
|
|
)
|
|
|
|
PlayerInRoom.objects.create(
|
|
player=player_2,
|
|
room=room,
|
|
score=player_score_2,
|
|
deck_id=deck_id_2,
|
|
first=first_player == 2,
|
|
)
|
|
return room.slug
|