我正在尝试通过修改测验游戏模板使其成为两个玩家在 Otree(Python 库)中实现一个简单的分数计数器。
最终,我希望这个计数器只在某些条件下更新,但现在,我只是想在每一轮之后添加 10。
在 models.py 中,我定义了一个播放器类,如下所示:
class Player(BasePlayer):
question_id = models.IntegerField()
confidence = models.FloatField(widget=widgets.Slider(attrs={'step': '0.01'}))
question = models.StringField()
solution = models.StringField()
submitted_answer = models.StringField(widget=widgets.RadioSelect)
is_correct = models.BooleanField()
total_score = models.IntegerField(initial = 0)
def other_player(self):
return self.get_others_in_group()[0]
def current_question(self):
return self.session.vars['questions'][self.round_number - 1]
def check_correct(self):
self.is_correct = self.submitted_answer == self.solution
def check_if_awarded_points(self):
self.get_others_in_group()[0].submitted_answer == self.submitted_answer == self.solution
def score_points(self):
self.total_score+=10
self.payoff += c(10)
上面唯一相关的功能是我在 pages.py 模板中调用的“得分点”,如下所示:
class ResultsWaitPage(WaitPage):
def after_all_players_arrive(self):
for p in self.group.get_players():
p.score_points()
然后我创建一个结果页面,在每个问题之后向我显示测验的结果,以测试每个问题的“total_score”或“pay-offs”是否增加了 10。
class IntermediateResults(Page):
def vars_for_template(self):
return {
'total_score': [p.total_score for p in self.group.get_players()],
'total_payoff': [p.payoff for p in self.group.get_players()]
}
如果我使用 Django 公开 total_payoff 和 total_score 的值,我会看到它们的值为 10,并且它永远不会改变。我不知道为什么会这样。有什么想法吗?