aboutsummaryrefslogtreecommitdiff
path: root/BUG3/BUG3.csd
blob: 2f5467f58bffc8f791764554fa2745c807d7bdfe (plain)
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<CsoundSynthesizer>
<CsOptions>
-g -odac 
-m0
</CsOptions>
<CsInstruments>
/*
	Debugger - Unfixed Bugs : BUG #3

	By Richard Knight 2021

	See README.md for more details

*/

sr = 44100
ksmps = 100
nchnls = 2
0dbfs = 1
seed 0

#define NOFILEIO ## 		; file IO with readfi not supported on all platforms: disables bid_loadfile
;#define CPUSAVER ## 		; improve CPU performance by degrading aesthetic performance

gkmastergain init 1		; master gain
gkpump = 0			; kick ducking control
gkreverse init 0		; global reverse

#include "wavetables.udo"	; general waveforms
#include "bussing.udo"		; global audio bussing
#include "src_hat909.udo"	; synthesised hi-hat for oprepare
#include "bid.udo"		; Bug Infested Directive tools and parsing
#include "oprepare.udo"		; offline preparation system
#include "effects.udo"		; audio effects
#include "instruments.udo"	; sound generators
#include "txt_tools.udo"	; text tools


/*
	Initialise the performance: run offline preparation and then call parseandrun
*/
instr bootstrap
	Sprepare[] fillarray "hat909"
	oprepare(Sprepare, "parseandrun")
	turnoff
endin


/*
	Parse BID file and run the sequencer
*/
instr parseandrun
	tt_notify("Parsing events")

	;bid_loadfile("bid_source.txt") ; file IO with readfi not supported in web IDE

	#include "bid_source.udo"
	bid_loadtext(SBID)

	tt_notify("Running sequencer")
	event_i "i", "sequencer", 0, 3600
	turnoff
endin


/*
	Initiate ending: fade out master and call complete notifier 
*/
instr endfade
	igain = i(gkmastergain)
	gkmastergain line igain, p3, 0
	event_i "i", "notify_change", p3, 1, -1
endin


/*
	Print notification of performance time since last notification
		or if isection is -1, print completion notification
*/
gitimetrack times
instr notify_change
	isection = p4
	itime times
	if (isection == -1) then
		tt_notify(sprintf"Complete, runtime: %s", tt_parsetime(itime)))
		exitnow
	else
		isectiontime = itime - gitimetrack
		tt_notify(sprintf("%s : section %d complete in %s", tt_parsetime(itime), isection, tt_parsetime(isectiontime)))
		gitimetrack = itime
	endif
	turnoff
endin


/*
	Global send effects: reverb
*/
instr global_reverb
#ifndef CPUSAVER
	aL, aR bus_read "reverb"
	aL, aR freeverb aL, aR, 0.4, 0.3
	bus_mix("master", aL, aR)
#endif
endin


/*
	Global send effects: multitap delay
*/
instr global_mdelay 
	ibase1 = gibid_beattime
	ibase2 = ibase1 / 4
	aL, aR bus_read "mdelay"
	aLf init 0
	aRf init 0
	aL multitap aL+aLf, ibase1*3, 1, ibase1*6, 0.9
	aR multitap aR+aRf, ibase1*2, 1, ibase1*4, 0.9
	aLf = butterhp(aL, 400) * 0.4
	aRf = butterhp(aR, 400) * 0.4
	bus_mix("master", aL, aR)
endin


/*
	Master audio output
*/
instr global_master
	igain = 0.5
	aL, aR bus_read "master" 
	ilooptime = (60 / gibid_tempo) * 4

	if (gkreverse == 1) then
		aL butterhp aL, 150
		aR butterhp aR, 150
		if (changed:k(gkreverse) == 1 && random:k(0, 5) > 0.5) then
			aL, krecL sndloop aL, -1, gkreverse, ilooptime, 0
			aR, krecR sndloop aR, -1, gkreverse, ilooptime, 0
		endif
	endif
	aL limit aL*gkmastergain*igain, -1, 1
	aR limit aR*gkmastergain*igain, -1, 1
	outs aL, aR
endin


/*
	Core sequencer
*/
instr sequencer
	isection = 1
	event_i "i", "bid_setcurrentchord", 0, 1, isection, 0
	event_i "i", "global_reverb", 0, p3
	event_i "i", "global_mdelay", 0, p3
	event_i "i", "global_master", 0, p3
	kmetro metro (gibid_tempo / 60) * 4
	kposabs init 0
	kposchord init 0
	kpos init 0
	ksection init isection
	if (kmetro == 1) then
		if (ksection > gibid_maxsection) then
			event "i", "endfade", 0, gibid_beattime*8
			turnoff
		endif

		; sequence BID elements accordingly
		;bid_seq "chord1", kpos, ksection
		bid_seq "chord2", kpos, ksection
		bid_seq "chord3", kpos, ksection
		bid_seq "bass", kpos, ksection
		bid_seq "hat909", kpos, ksection
		bid_seq "hat909c", kpos, ksection
		bid_seq "clap909", kpos, ksection
		bid_seq "kick", kpos, ksection
		bid_seq "rim", kpos, ksection  
		bid_seq "mel1", kpos, ksection
		bid_seq "303", kpos, ksection

		if (kpos < 31) then
			kpos += 1
		else
			kpos = 0
		endif
		
		ksection16ths = bid_getsectionlength(ksection) * 4

		if (ksection != 7 && kposabs+16 > ksection16ths) then
			gkreverse = 1
		endif
		
		if (kposabs+1 < ksection16ths) then
			kposabs += 1
		else
			event "i", "notify_change", 0, 1, ksection
			event "i", "play_crash", 0, random:k(0.5, 2)
			gkreverse = 0
			ksection += 1
			kposabs = 0
			kposchord = 0
			event "i", "bid_setcurrentchord", 0, 1, ksection, 0  ; is 0 correct here?
		endif
		
		if (kposchord+1 < gkbid_chordlength*4) then
			kposchord += 1
		else
			kposchord = 0
			event "i", "bid_setcurrentchord", 0, 1, ksection, 1
		endif
		
	endif
endin	


</CsInstruments>
<CsScore>
i"bootstrap" 0 1
</CsScore> 
</CsoundSynthesizer>