-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rb
executable file
·107 lines (86 loc) · 1.84 KB
/
main.rb
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
#!/bin/ruby
require_relative './speicher.rb'
require_relative './stapel.rb'
require_relative './karte.rb'
require_relative './pruefung.rb'
stapel = nil
frage = nil
antwort = nil
id = nil
z = false
if ARGV.empty?
puts "./main -s <stapelname> - Karteikarten in Stapel anzeigen."
puts "./main -z - Stapel anzeigen."
puts "./main -dS <stapelname> - Stapel löschen."
puts "-s Stapelname"
puts "-f Frage"
puts "-a Antwort"
puts "-d Löschen"
end
ARGV.each_with_index do |a,i|
if a == "-s"
if !ARGV[i+1].to_s.match(/-/)
stapel = ARGV[i+1]
end
end
if a == "-d"
if !ARGV[i+1].to_s.match(/-/)
id = ARGV[i+1]
end
end
if a == "-f"
if !ARGV[i+1].to_s.match(/-/)
frage = ARGV[i+1]
end
end
if a == "-a"
if !ARGV[i+1].to_s.match(/-/)
antwort = ARGV[i+1]
end
end
if a == "-z"
if !ARGV[i+1].to_s.match(/-/)
z = true
Speicher.init
daten = Speicher.stapel
if daten.size > 0
puts "Stapelübersicht:"
daten.each_with_index do |x,i|
puts "#{i+1}: #{x}"
end
end
break
end
end
if a == "-exam"
if !ARGV[i+1].to_s.match(/-/)
pfragen = ARGV[i+1]
pruefung = Stapel.new(pfragen)
Speicher.init
Speicher.load(pruefung, pfragen)
p = Prüfung.new(pruefung)
p.start
end
end
if a == "-dS"
if !ARGV[i+1].to_s.match(/-/)
stapelname = ARGV[i+1]
Speicher.init
Speicher.deleteStapel(stapelname)
end
end
end
if stapel && !id && !frage && !antwort
Speicher.init
Speicher.zeigeStapelInhalt(stapel)
end
if stapel && id && !frage && !antwort
Speicher.init
Speicher.deleteKarte(stapel,id)
end
if stapel && frage && antwort
s = Stapel.new(stapel)
s.neueFrageAntwort(frage,antwort)
Speicher.init
Speicher.store(s.getObj, stapel)
end