#!/usr/local/bin/perl

# converts real-time ti disk-based cmix scores
# by luke

while(<>) {
	s/rtinput/input/;
	s/rtoutput/output/;
	s/AM\(/am\(/;
	s/AM \(/am \(/;
	s/AMINST/aminst/;
	s/CLAR/clar/;
	s/COMBIT/combit/;
	s/FIR/fir/;
	s/FMINST/fminst/;
	s/INPUTSIG/inputsig/;
	s/NOISE/noise/;
	s/PULSE/pulse/;
	s/BUZZ/buzz/;
	s/SFLUTE/sflute/;
	s/BSFLUTE/bsflute/;
	s/VSFLUTE/vsflute/;
	s/MIX/mix/;
	s/MULTICOMB/multicomb/;
	s/SCULPT/sculpt/;
	s/STEREO/stereo/;
	s/START/start/;
	s/BEND/bend/;
	s/FRET/fret/;
	s/VSTART/vstart/;
	s/TRANS/trans/;
	s/WAVETABLE/wavetable/;
	s/WSHAPE/wshape/;
	s/DEL1/del1/;
	s/DELAY/delay/;
	s/PANECHO/panecho/;
	print $_;
}
