Esempio n. 1
0
 def calculate(self, stake, odds, place):
     winAmount = 0.00
     if place > 0 and place < 5:
         halfStake = stake / 2
         if place == 1:
             wbcalc = WinBetCalculator()
             winAmount = wbcalc.calculate(halfStake, odds, place)
         else:
             winAmount = halfStake
         winAmount = (winAmount) + ((halfStake) * (odds / 4))
         
     return round(winAmount, 2)
class BettingSlipConsoleView(object):
    '''
    classdocs
    '''
    
    
    def __init__(self):
        '''
        Constructor
        '''
        self.__winBet = WinBetCalculator ()
        self.__ewBet = EachWayBetCalculator ()
        
    def printToConsole(self, selectedHorses):
        print("============================\n")
        print("== Right Bet Betting Slip ==\n")
        print("============================\n")
        totalCost = 0.00
        potentialWin = 0.00
        for horseOdds in selectedHorses:
            if horseOdds.isWinBet():
                currentWin = self.__winBet.calculate(horseOdds.getStake(), horseOdds.getHorseOddsDecimal(), 1)
                print(self.bettingLine(horseOdds, currentWin))
            totalCost = (totalCost) + float((horseOdds.getStake()))
            potentialWin = (potentialWin) + (currentWin)
        
        print("============================\n")
        print("Total Stake is " + str(totalCost))
        print("Maximum potential win is " + str(potentialWin))
        print("Time of bet " + self.dateTime())
        
            
            
             
    def bettingLine(self, horseOdds, potentialWinnings):
        retStr = horseOdds.toString()
        retStr = (retStr) + (" stake ")
        retStr = (retStr) + (horseOdds.getStake())
        retStr = (retStr) + (" winnings: ")
        retStr = (retStr) + ("{:.2f}".format(potentialWinnings))
        
        return (retStr)
        
                
    def dateTime(self):
        timedate = datetime.datetime.now().strftime("%d-%m-%Y %H:%M")
        return (timedate)       
 def __init__(self):
     '''
     Constructor
     '''
     self.__winBet = WinBetCalculator ()
     self.__ewBet = EachWayBetCalculator ()