-
Notifications
You must be signed in to change notification settings - Fork 0
/
logging.rb
51 lines (46 loc) · 1.1 KB
/
logging.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
module Polyphony
#
# Methods for outputting to console.
#
module Logging
# impure functions
#
# Outputs time information.
#
def activateLogging
puts(-"----------------------------------------------------------------")
puts("start of measure #{((get(-"time/unitsElapsed") / Settings::TIMEKEEPING[:numUnitsPerMeasure]) + 1).to_s}")
puts("units elapsed: #{get(-"time/unitsElapsed").to_s}")
end
#
# Outputs motifs in array format.
#
def diagnoseMotifs
puts(-"motifs:")
get(-"motifs").each do |motif|
puts(-"#{makeArraysFromMotif(motif).to_s}")
end
end
#
# Outputs seed information.
#
def diagnoseSeed
puts(-"random seed: #{Settings::RANDOM[:seed].to_s}")
end
#
# Outputs all diagnoses.
#
def diagnose
diagnoseSeed()
diagnoseMotifs()
end
#
# Outputs message if global message logging is enabled.
#
# @param [String] pMessage message to output
#
def logMessage(pMessage)
puts(pMessage) if Settings::LOGGING[:shouldLogMessages]
end
end
end