2022-11-15 09:19:08 +00:00
|
|
|
import json
|
2022-09-04 20:53:34 +00:00
|
|
|
import time
|
2022-11-15 09:19:08 +00:00
|
|
|
|
|
|
|
from sqlalchemy import Column, ForeignKey
|
|
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
|
|
|
|
from files.classes import Base
|
2022-10-30 00:32:40 +00:00
|
|
|
from files.helpers.lazy import lazy
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-10-03 20:40:33 +00:00
|
|
|
CASINO_GAME_KINDS = ['blackjack', 'slots', 'roulette']
|
2022-09-04 20:53:34 +00:00
|
|
|
|
|
|
|
class Casino_Game(Base):
|
2022-09-04 23:15:37 +00:00
|
|
|
__tablename__ = "casino_games"
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-04 23:15:37 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"))
|
2022-09-19 20:40:33 +00:00
|
|
|
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)
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-19 20:40:33 +00:00
|
|
|
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):
|
2022-11-29 21:02:38 +00:00
|
|
|
return f"<{self.__class__.__name__}(id={self.id})>"
|
2022-10-30 00:32:40 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
@lazy
|
|
|
|
def game_state_json(self):
|
|
|
|
return json.loads(self.game_state)
|