forked from ianmiell/shutit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shutit_exam.py
188 lines (163 loc) · 5.98 KB
/
shutit_exam.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import sys
import time
import signal
PY3 = (sys.version_info[0] >= 3)
class ShutItExamSessionStage(object):
# difficulty - a proportion of the default difficulty=1
# reduction_per_minute - the degree to which success value decreases every minute
# reduction_per_reset - the degree to which a reset affects the final score
# reduction_per_hint - the degree to which a hint affects the final score
# grace_period - the time under which a success scores full points
#
# A difficulty of zero means the challenge has no significance to the overall score.
def __init__(self,
shutit,
difficulty=1.0,
reduction_per_minute=0.2,
reduction_per_reset=0,
reduction_per_hint=0.5,
grace_period=30):
self.shutit = shutit
self.difficulty = difficulty
self.reduction_per_minute = reduction_per_minute
self.reduction_per_reset = reduction_per_reset
self.reduction_per_hint = reduction_per_hint
self.grace_period = grace_period
self.result = ''
self.num_resets = 0
self.num_hints = 0
self.start_time = None
self.end_time = None
self.total_time = None
self.score = -1
def __str__(self):
string = ''
string += '\nnum_resets = ' + str(self.num_resets)
string += '\nnum_hints = ' + str(self.num_hints)
string += '\nresult = ' + str(self.result)
string += '\nstart_time = ' + str(self.start_time)
string += '\nend_time = ' + str(self.end_time)
string += '\nscore = ' + str(self.score)
return string
def start_timer(self):
if self.start_time != None:
self.shutit.fail('start_timer called with start_time already set') # pragma: no cover
self.start_time = time.time()
def end_timer(self):
if self.start_time is None:
self.shutit.fail('end_timer called with no start_time set') # pragma: no cover
if self.end_time is not None:
self.shutit.fail('end_time already set') # pragma: no cover
self.end_time = time.time()
self.total_time = self.end_time - self.start_time
def is_complete(self):
if self.result == '':
return False
else:
return True
class ShutItExamSession(object):
def __init__(self, shutit, num_stages=0):
self.shutit = shutit
self.stages = []
self.num_stages = num_stages
self.final_score = 0.0
self.curr_stage = len(self.stages)+1
# Switch off CTRL-C etc
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGQUIT, signal.SIG_IGN)
signal.signal(signal.SIGPIPE, signal.SIG_IGN)
signal.signal(signal.SIGTSTP, signal.SIG_IGN)
def __str__(self):
string = ''
n=0
for stage in self.stages:
n+=1
stage_desc = 'Stage ' + str(n) + ' of ' + str(len(self.stages))
string += '\n' + stage_desc
string += '\n' + str(stage)
string += '\n\nFinal score: ' + str(self.final_score) + '%\n'
return string
def new_stage(self,
difficulty,
reduction_per_minute=0.2,
reduction_per_reset=0,
reduction_per_hint=0.5,
grace_period=30):
difficulty = float(difficulty)
stage = ShutItExamSessionStage(self.shutit, difficulty,reduction_per_minute,reduction_per_reset,reduction_per_hint,grace_period)
self.stages.append(stage)
self.curr_stage = len(self.stages)+1
return stage
def add_reset(self):
if self.stages == []:
self.shutit.fail('add_reset: no stages to reset') # pragma: no cover
stage = self.stages[-1]
stage.num_resets += 1
def add_skip(self):
if self.stages == []:
self.shutit.fail('add_skip: no stages to skip') # pragma: no cover
stage = self.stages[-1]
if stage.result != '':
self.shutit.fail('add_skip: result already determined') # pragma: no cover
else:
stage.result = 'SKIP'
def add_fail(self):
if self.stages == []:
self.shutit.fail('add_fail: no stages to fail') # pragma: no cover
stage = self.stages[-1]
if stage.result != '':
self.shutit.fail('add_fail: result already determined') # pragma: no cover
else:
stage.result = 'FAIL'
def add_ok(self):
if self.stages == []:
self.shutit.fail('add_ok: no stages to ok') # pragma: no cover
stage = self.stages[-1]
if stage.result != '':
self.shutit.fail('add_ok: result already determined') # pragma: no cover
else:
stage.result = 'OK'
def add_hint(self):
if self.stages == []:
self.shutit.fail('add_hint: no stages to add hint for') # pragma: no cover
stage = self.stages[-1]
stage.num_hints += 1
def start_timer(self):
if self.stages == []:
self.shutit.fail('start_timer: no stages to time') # pragma: no cover
stage = self.stages[-1]
stage.start_timer()
def end_timer(self):
if self.stages == []:
self.shutit.fail('end_timer: no stages to time') # pragma: no cover
stage = self.stages[-1]
stage.end_timer()
def calculate_score(self):
max_score = 0.0
total_score = 0.0
for stage in self.stages:
max_score += stage.difficulty
# If they succeeded, start with the diffulty score (100%)
if stage.result == 'OK':
stage.score = stage.difficulty
for item in range(0,stage.num_resets):
item = item # pylint
stage.score = stage.score - (stage.score * stage.reduction_per_reset)
for item in range(0,stage.num_hints):
stage.score = stage.score - (stage.score * stage.reduction_per_hint)
total_time = stage.end_time - stage.start_time
total_time -= stage.grace_period
if total_time > 0:
num_minutes = total_time / 60
num_seconds = total_time % 60
num_minutes = num_minutes + (num_seconds / 60)
while num_minutes > 1:
num_minutes -= 1
stage.score = stage.score - (stage.score * stage.reduction_per_minute)
if num_minutes > 0:
stage.score = stage.score - (stage.score * stage.reduction_per_minute * num_minutes)
total_score = total_score + stage.score
else:
stage.score = 0
self.final_score = total_score / max_score * 100.00
return self.final_score