-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.go
executable file
·205 lines (172 loc) · 4.39 KB
/
model.go
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package main
import (
"fmt"
"io"
"io/ioutil"
"gopkg.in/v1/yaml"
"encoding/gob"
"os"
)
const Workspace = "workspace/"
const UserFile = Workspace + "user.dat"
const ProblemFile = "probs.yml"
const HintCost = 0
// Saves all user data
func Save() error {
if f, err := os.Create(UserFile); err != nil {
return err
} else {
defer f.Close()
enc := gob.NewEncoder(f)
if err = enc.Encode(U); err != nil {
panic(err)
return err
}
return nil
}
}
// Loads all user data
func Load() error {
var ret error
if f, err := os.Open(UserFile); err == nil {
dec := gob.NewDecoder(f)
ret = dec.Decode(&U)
f.Close()
} else {
ret = err
}
if ret != nil {
// Initialize a blank copy of stuff
U.Probs = make(map[int]ProblemStatus)
}
return nil
}
func init() {
Load() // Ignore if it fails
}
type TestCase struct {
Input []string
Output []string
}
func (t TestCase) Write(o Out) {
invals := SepList{Sep: ","}
for _,v := range t.Input {
invals.Append(v)
}
outvars := SepList{Sep: ","}
outvals := SepList{Sep: ","}
test := SepList{Sep: "||"}
for i,v := range t.Output {
n := fmt.Sprint("o", i)
outvars.Append(n)
test.Append("(" + n + ")!=(" + v + ")")
outvals.Append(v)
}
o("{")
o(outvars, ":=solve(", invals, ")")
// Note: We'll always have at least one outvar, or else it's not really a test case
o("if ", test, ` {
fmt.Println("Error in test case:")
fmt.Println(" inputs : `, invals, `")
fmt.Println(" expected : ",`, outvals, `)
fmt.Println(" actual : ", `, outvars, `)
}`)
o("}")
}
type ProblemStatus uint
const (
Solved ProblemStatus = 1 << iota
HintUnlocked
)
type User struct {
Probs map[int]ProblemStatus
Points int
DoneTutorial bool
}
// Single user for now
var U User
func (u User) IsHintUnlocked(pid int) bool {
return u.Probs[pid] & HintUnlocked != 0
}
func (u*User) UnlockHint(pid int) error {
if u.IsHintUnlocked(pid) {
panic("Tried to unlock already unlocked hint")
}
if u.Points < HintCost {
return fmt.Errorf("Hints cost %v points, but you only have %v", HintCost, u.Points)
}
u.Points -= HintCost
u.Probs[pid] = u.Probs[pid] | HintUnlocked
if err := Save(); err != nil {
fmt.Println("Error saving:", err)
}
return nil
}
func (u User) IsSolved(pid int) bool {
return u.Probs[pid] & Solved != 0
}
func (u*User) MarkSolved(pid int) {
if u.IsSolved(pid) { // double check that they don't just farm for points here
return
}
u.Probs[pid] = u.Probs[pid] | Solved
p := Probs[pid]
u.Points += p.Difficulty*2 + 5
if err := Save(); err != nil {
fmt.Println("Error saving:", err)
}
}
type Problem struct {
Name string
Difficulty int
Help, Hint string
Parts []string
Tests []TestCase
}
func WriteDefault(pid int, dest io.Writer) {
o := func(v...interface{}) {
fmt.Fprintln(dest, v...)
}
p := Probs[pid]
for _,v := range p.Parts {
o(v)
}
if len(p.Hint) > 0 {
o("//Stuck? A hint is available! Check the command prompt or terminal on how to access it")
o("// (the usually black-backgrounded box which you used to talk to this program")
}
if len(p.Help) > 0 {
o("//Stuck? A help site is available! Check the command prompt or terminal on how to access it")
o("// (the usually black-backgrounded box which you used to talk to this program")
}
o("\n\n//////////////////////////////////////////////////////////////////////")
o("// NOTE: Ignore everything below this notice*, you're supposed to fill")
o(`// out the "solve" function above`)
o("//////////////////////////////////////////////////////////////////////")
o("func main() {")
for _,v := range p.Tests {
v.Write(o)
}
o("}")
o("// *If you're interested, the code in func main contains the test cases")
o("// for testing your code. If you modify it it will likely mess things up")
o("// if you aren't careful. But looking at it to understand it won't hurt!")
}
func GetFile(pid int) string {
return fmt.Sprint(Workspace, pid, ".go")
}
func sl(s...string) []string {return s}
var Probs = LoadProblems()
func LoadProblems() []Problem {
f, err := os.Open(ProblemFile)
if err == nil {
var ret []Problem
var all []byte
all, err = ioutil.ReadAll(f)
if err = yaml.Unmarshal(all, &ret); err == nil {
// Success!
return ret
}
}
panic(err)
}