2022-05-29 03:33:44 +00:00
import time
2022-05-29 04:23:20 +00:00
from random import choice
2022-05-29 03:33:44 +00:00
from sqlalchemy import *
2022-05-29 04:23:20 +00:00
from files . helpers . alerts import *
2022-05-29 03:33:44 +00:00
from files . helpers . wrappers import *
LOTTERY_TICKET_COST = 12
# The amount of dramacoins permanently removed from the economy to reduce expected value
SINK_RATE = 3
# The amount of dramacoins the lottery founders receive
2022-05-29 04:23:20 +00:00
ROYALTY_RATE = 1
2022-05-29 03:33:44 +00:00
# The account in which royalties are to be deposited
2022-05-29 04:23:20 +00:00
ROYALTY_ACCOUNT_ID = 9
2022-05-29 03:33:44 +00:00
# The account in which the prize is held to be accessed by anyone
MANAGER_ACCOUNT_ID = 3
2022-05-29 04:23:20 +00:00
def get_active_lottery ( g ) :
return g . db . query ( Lottery ) . order_by ( Lottery . id . desc ( ) ) . filter ( Lottery . is_active ) . one_or_none ( )
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
def get_active_lottery_stats ( g ) :
active_lottery = get_active_lottery ( g )
return None if active_lottery is None else active_lottery . stats
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
def end_lottery_session ( g ) :
active_lottery = get_active_lottery ( g )
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
if ( active_lottery is None ) :
return False , " There is no active lottery. "
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
participating_users = g . db . query ( User ) . filter (
User . currently_held_lottery_tickets > 0 ) . all ( )
raffle = [ ]
for user in participating_users :
for _ in range ( user . currently_held_lottery_tickets ) :
raffle . append ( user . id )
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
winner = choice ( raffle )
winning_user = next ( filter ( lambda x : x . id == winner , participating_users ) )
winning_user . coins + = active_lottery . prize
winning_user . total_lottery_winnings + = active_lottery . prize
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
for user in participating_users :
chance_to_win = user . currently_held_lottery_tickets / raffle . count
notification_text = f ' You won { active_lottery . prize } the lottery! Congratulations! \n Odds of winning: { chance_to_win } % ' if user . id == winner else " You did not win the lottery. Better luck next time! \n Odds of winning: {chance_to_win} % "
send_notification ( user . id , notification_text )
user . currently_held_lottery_tickets = 0
2022-05-29 03:33:44 +00:00
2022-05-29 04:23:20 +00:00
active_lottery . is_active = False
manager = g . db . query ( User ) . get ( MANAGER_ACCOUNT_ID )
manager . coins - = active_lottery . prize
2022-05-29 03:33:44 +00:00
g . db . commit ( )
2022-05-29 04:23:20 +00:00
return True , f ' { winning_user . username } won { active_lottery . prize } dramacoins! '
2022-05-29 03:33:44 +00:00
def start_new_lottery_session ( g ) :
end_lottery_session ( g )
lottery = Lottery ( )
epoch_time = int ( time . time ( ) )
one_week_from_now = epoch_time + 60 * 60 * 24 * 7
lottery . ends_at = one_week_from_now
lottery . is_active = True
g . db . add ( lottery )
g . db . commit ( )
def purchase_lottery_ticket ( g , v ) :
if ( v . coins < LOTTERY_TICKET_COST ) :
return False , f ' Lottery tickets cost { LOTTERY_TICKET_COST } dramacoins each. ' , None
2022-05-29 04:23:20 +00:00
most_recent_lottery = get_active_lottery ( g )
if ( most_recent_lottery is None ) :
2022-05-29 03:33:44 +00:00
return False , " There is no active lottery. " , None
v . coins - = LOTTERY_TICKET_COST
v . currently_held_lottery_tickets + = 1
v . total_held_lottery_tickets + = 1
net_ticket_value = LOTTERY_TICKET_COST - SINK_RATE - ROYALTY_RATE
most_recent_lottery . prize + = net_ticket_value
most_recent_lottery . tickets_sold + = 1
manager = g . db . query ( User ) . get ( MANAGER_ACCOUNT_ID )
manager . coins + = net_ticket_value
beneficiary = g . db . query ( User ) . get ( ROYALTY_ACCOUNT_ID )
beneficiary . coins + = ROYALTY_RATE
g . db . commit ( )
return True , ' Successfully purchased a lottery ticket! ' , most_recent_lottery . stats