from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range, ) doc = """ This is a one-period public goods game with 3 players. """ class Constants(BaseConstants): name_in_url = 'public_goods' players_per_group = 3 num_rounds = 2 instructions_template = 'public_goods/instructions.html' # """Amount allocated to each player""" endowment = c(100) multiplier = 2 class Subsession(BaseSubsession): def creating_session(self): self.group_randomly() # self.group_randomly(fixed_id_in_group=True) # self.group_randomly(fixed_id_in_group=True) #""" if self.round_number == 1: # self.group_randomly() #else: # self.group_like_round(1) """ def vars_for_admin_report(self): contributions = [ p.contribution for p in self.get_players() if p.contribution != None ] if contributions: return dict( avg_contribution=sum(contributions) / len(contributions), min_contribution=min(contributions), max_contribution=max(contributions), ) else: return dict( avg_contribution='(no data)', min_contribution='(no data)', max_contribution='(no data)', ) class Group(BaseGroup): total_contribution = models.CurrencyField() individual_share = models.CurrencyField() def set_payoffs(self): self.total_contribution = sum([p.contribution for p in self.get_players()]) self.individual_share = ( self.total_contribution * Constants.multiplier / Constants.players_per_group ) for p in self.get_players(): p.payoff = (Constants.endowment - p.contribution) + self.individual_share p.total_payoff = p.in_round(1).payoff + p.in_round(2).payoff # p.total_payoff = sum(p.in_round(r).payoff for r in range(1, self.round_number + 1)) class Player(BasePlayer): contribution = models.CurrencyField( min=0, max=Constants.endowment, doc="""The amount contributed by the player""" ) total_payoff = models.CurrencyField()