1 #define CONSTANT_SPEED_DECAY
4 float bgmscriptbufsize;
5 float bgmscriptbufloaded;
9 .float bgmscriptvolume;
11 .float bgmscriptstate;
12 .float bgmscriptstatetime;
14 float GetAttackDecaySustainAmplitude(float a, float d, float s, float t)
17 // attack: from 0 to 1, in time a for a full length
18 // decay: from 1 to s, in time d
30 return ((t - a) / d) * (s - 1) + 1;
35 float GetReleaseAmplitude(float d, float s, float r, float t)
37 float decayval, releaseval;
45 releaseval = s * (1 - t / r);
53 // value is s at time 0
55 decayval = ((t + d) / d) * (s - 1) + 1;
56 return max(decayval, releaseval);
62 float GetAttackTime(float a, float amp)
67 float GetReleaseTime(float d, float s, float r, float amp)
69 float decaytime, releasetime;
74 // if amp > s, we may be in the attack or in the prolonged decay curve
75 releasetime = (1 - amp / s) * r;
79 if(s == 1) // gracefully handle division by zero here
83 // value is s at time 0
85 decaytime = (amp - 1) / (s - 1) * d - d;
86 return max(decaytime, releasetime);
96 bgmscriptbuf = bgmscriptbufsize = 0;
97 bgmscriptbufloaded = 1;
98 s = strcat("maps/", mi_shortname, ".bgs");
99 fh = fopen(s, FILE_READ);
102 bgmscriptbuf = buf_create();
103 while((s = fgets(fh)))
105 bufstr_set(bgmscriptbuf, bgmscriptbufsize, s);
111 void BGMScript_InitEntity(entity e)
115 if(e.bgmscript != "")
117 if(!bgmscriptbufloaded)
122 m = strcat(e.bgmscript, " ");
125 e.bgmscriptline0 = -1;
126 for(i = 0; i < bgmscriptbufsize; ++i)
128 if(substring(bufstr_get(bgmscriptbuf, i), 0, l) == m)
131 e.bgmscriptline = e.bgmscriptline0 = i;
132 if(i >= bgmscriptbufsize)
134 print("ERROR: bgmscript does not define ", e.bgmscript, "\n");
140 float GetCurrentAmplitude(entity e, float trel)
143 return GetAttackDecaySustainAmplitude(e.bgmscriptattack, e.bgmscriptdecay, e.bgmscriptsustain, trel) * e.bgmscriptvolume;
146 #ifdef CONSTANT_SPEED_DECAY
147 return GetReleaseAmplitude(e.bgmscriptdecay, e.bgmscriptsustain * e.bgmscriptvolume, e.bgmscriptrelease, trel);
149 return GetReleaseAmplitude(e.bgmscriptdecay, e.bgmscriptsustain, e.bgmscriptrelease, trel) * e.bgmscriptvolume;
154 float GetTimeForAmplitude(entity e, float amp)
157 return GetAttackTime(e.bgmscriptattack, amp / e.bgmscriptvolume);
160 #ifdef CONSTANT_SPEED_DECAY
161 return GetReleaseTime(e.bgmscriptdecay, e.bgmscriptsustain * e.bgmscriptvolume, e.bgmscriptrelease, amp);
163 return GetReleaseTime(e.bgmscriptdecay, e.bgmscriptsustain, e.bgmscriptrelease, amp / e.bgmscriptvolume);
168 float BGMScript(entity e)
173 if(e.bgmscript == "")
176 if(cvar("bgmvolume") <= 0)
179 e.just_toggled = FALSE;
181 t = gettime(GETTIME_CDTRACK);
185 if(t < e.bgmscripttime)
187 //print("reset ", e.bgmscript, "\n");
188 amp = GetCurrentAmplitude(e, e.bgmscripttime - e.bgmscriptstatetime + drawframetime);
190 e.bgmscriptline = e.bgmscriptline0;
193 // treat this as a stop event for all notes, to prevent sticking keys
194 e.bgmscriptstate = FALSE;
195 e.bgmscriptvolume = 1;
196 e.bgmscriptstatetime = t - GetTimeForAmplitude(e, amp);
199 // find the CURRENT line
202 tokenize_console(bufstr_get(bgmscriptbuf, e.bgmscriptline));
203 if(stof(argv(1)) >= t || argv(0) != e.bgmscript)
206 return GetCurrentAmplitude(e, t - e.bgmscriptstatetime);
208 else if(t >= stof(argv(1)))
210 e.bgmscriptline += 1;
211 e.bgmscripttime = stof(argv(1));
213 amp = GetCurrentAmplitude(e, e.bgmscripttime - e.bgmscriptstatetime);
215 // time code reached!
219 e.just_toggled = e.bgmscriptstate = TRUE;
220 e.bgmscriptvolume = vel;
223 e.just_toggled = e.bgmscriptstate = FALSE;
225 e.bgmscriptstatetime = e.bgmscripttime - GetTimeForAmplitude(e, amp);