rDrama/files/classes/casino_game.py

34 lines
822 B
Python
Raw Normal View History

from sqlalchemy import *
from files.__main__ import Base
import time
2022-10-30 00:32:40 +00:00
from files.helpers.lazy import lazy
import json
CASINO_GAME_KINDS = ['blackjack', 'slots', 'roulette']
class Casino_Game(Base):
2022-09-04 23:15:37 +00:00
__tablename__ = "casino_games"
2022-09-04 23:15:37 +00:00
id = Column(Integer, primary_key=True)
user_id = Column(Integer, ForeignKey("users.id"))
created_utc = Column(Integer)
2022-09-04 23:15:37 +00:00
active = Column(Boolean, default=True)
currency = Column(String)
wager = Column(Integer)
winnings = Column(Integer)
kind = Column(String)
game_state = Column(JSON)
def __init__(self, *args, **kwargs):
if "created_utc" not in kwargs:
kwargs["created_utc"] = int(time.time())
super().__init__(*args, **kwargs)
2022-09-04 23:15:37 +00:00
def __repr__(self):
return f"<CasinoGame(id={self.id})>"
2022-10-30 00:32:40 +00:00
@property
@lazy
def game_state_json(self):
return json.loads(self.game_state)