cowiz20/views/player.py

29 lines
876 B
Python
Raw Normal View History

2020-04-05 16:00:48 +02:00
from app_instance import api
from wiz_game import the_game
@api.route("/player/{player}")
2020-04-12 15:27:05 +02:00
def show(req, resp, player: str):
2020-04-05 16:00:48 +02:00
p = int(player)
2020-04-12 15:27:05 +02:00
name = the_game.players[p].name
2020-04-05 23:27:33 +02:00
tcard = the_game.trump_card
tcolor = the_game.get_trump_color()
2020-04-06 22:42:31 +02:00
table = the_game.table
2020-04-12 15:27:05 +02:00
isActive = the_game.is_players_turn(p)
resp.content = api.template('home/player.html', playerActive=isActive, player=p, cards=the_game.players[p].cards,
2020-04-06 22:42:31 +02:00
trump_card=tcard, trump_color=tcolor, played_cards=table.played_cards)
@api.route("/player/{player}/play/{card}")
def play(req, resp, player: str, card: str):
p = int(player)
2020-04-12 15:27:05 +02:00
c = int(card)
#pl = the_game.players[p]
#c = pl.play_card(int(card))
#the_game.table.play_card(p, c)
the_game.play_card(p, c)
2020-04-07 21:13:23 +02:00
url = '/player/'+player
api.redirect(resp, url, status_code=303)
2020-04-06 22:42:31 +02:00