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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
/*
dx72faust.c
VERSION: 0.0, May 2017
AUTHOR: Romain Michon - CCRMA, Stanford University / GRAME, Lyon
DESCRIPTION: A simple program to convert DX7 preset files into Faust
libraries. It was greatly inspired by dx72csound.c from
<http://www.parnasse.com/dx72csnd.shtml>
COMPILATION: typically: `gcc -o dx72faust dx72faust.c`
A makefile is also available: `make` to build and `make install` to install
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
using namespace std;
// Table from d72csound
float FreqTableCoarse[2][32] =
{
{0.5,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},
{1,10,100,1000,1,10,100,1000,1,10,
100,1000,1,10,100,1000,1,10,100,
1000,1,10,100,1000,1,10,100,1000,
1,10,100,1000}
};
// Table from d72csound
float FreqTableFine[2][100] =
{
{1.00,1.01,1.02,1.03,1.04,1.05,1.06,
1.07,1.08,1.09,1.10,1.11,1.12,1.13,
1.14,1.15,1.16,1.17,1.18,1.19,1.20,
1.21,1.22,1.23,1.24,1.25,1.26,1.27,
1.28,1.29,1.30,1.31,1.32,1.33,1.34,
1.35,1.36,1.37,1.38,1.39,1.40,1.41,
1.42,1.43,1.44,1.45,1.46,1.47,1.48,
1.49,1.50,1.51,1.52,1.53,1.54,1.55,
1.56,1.57,1.58,1.59,1.60,1.61,1.62,
1.63,1.64,1.65,1.66,1.67,1.68,1.69,
1.70,1.71,1.72,1.73,1.74,1.75,1.76,
1.77,1.78,1.79,1.80,1.81,1.82,1.83,
1.84,1.85,1.86,1.87,1.88,1.89,1.90,
1.91,1.92,1.93,1.94,1.95,1.96,1.97,
1.98,1.99},
{1.000,1.023,1.047,1.072,1.096,1.122,
1.148,1.175,1.202,1.230,1.259,1.288,
1.318,1.349,1.380,1.413,1.445,1.479,
1.514,1.549,1.585,1.622,1.660,1.698,
1.738,1.778,1.820,1.862,1.905,1.950,
1.995,2.042,2.089,2.138,2.188,2.239,
2.291,2.344,2.399,2.455,2.512,2.570,
2.630,2.692,2.716,2.818,2.884,2.951,
3.020,3.090,3.162,3.236,3.311,3.388,
3.467,3.548,3.631,3.715,3.802,3.890,
3.981,4.074,4.169,4.266,4.365,4.467,
4.571,4.677,4.786,4.898,5.012,5.129,
5.248,5.370,5.495,5.623,5.754,5.888,
6.026,6.166,6.310,6.457,6.607,6.761,
6.918,7.079,7.244,7.413,7.586,7.762,
7.943,8.128,8.318,8.511,8.718,8.913,
9.120,9.333,9.550,9.772}
};
// Structure to store operator-specific parameters
struct dx7_operator {
unsigned char OP_EG_R1;
unsigned char OP_EG_R2;
unsigned char OP_EG_R3;
unsigned char OP_EG_R4;
unsigned char OP_EG_L1;
unsigned char OP_EG_L2;
unsigned char OP_EG_L3;
unsigned char OP_EG_L4;
unsigned char LEV_SCL_BRK_PT;
unsigned char SCL_LEFT_DEPTH;
unsigned char SCL_RGHT_DEPTH;
unsigned char SCL_LEFT_CURVE:2;
unsigned char SCL_RIGHT_CURVE:6;
unsigned char OSC_RATE_SCALE:3;
unsigned char OSC_DETUNE:5;
unsigned char AMP_MOD_SENS:2;
unsigned char KEY_VEL_SENS:6;
unsigned char OUTPUT_LEV;
unsigned char OSC_MODE:1;
unsigned char FREQ_COARSE:7;
unsigned char FREQ_FINE;
} d_operator[6];
// Structure to store global parameters
struct dx7_global {
unsigned char PITCH_EG_R1;
unsigned char PITCH_EG_R2;
unsigned char PITCH_EG_R3;
unsigned char PITCH_EG_R4;
unsigned char PITCH_EG_L1;
unsigned char PITCH_EG_L2;
unsigned char PITCH_EG_L3;
unsigned char PITCH_EG_L4;
unsigned char ALGORITHM;
unsigned char FEEDBACK:3;
unsigned char OSC_KEY_SYNC:5;
unsigned char LFO_SPEED;
unsigned char LFO_DELAY;
unsigned char LF_PT_MOD_DEP;
unsigned char LF_AM_MOD_DEP;
unsigned char SYNC:1;
unsigned char WAVE:3;
unsigned char LF_PT_MOD_SNS:4;
unsigned char TRANSPOSE;
char NAME[10];
} d_global;
// Function to get rid of problematic characters in a string
static void format(char* input)
{
int i,j;
char* output = input;
for (i = 0, j = 0; i < strlen(input); i++,j++) {
if ((input[i] >= 'a' && input[i] <= 'z')
|| (input[i] >= 'A' && input[i] <= 'Z')
|| (input[i] >= '0' && input[i] <= '9')) {
output[j] = input[i];
} else{
j--;
}
}
output[j] = 0;
}
// Convert a DX7 patch in the Faust library in a string and a vector of instruments names
static bool convertPatch(const char* filename, string& library, vector<string>& instruments)
{
FILE* fpin;
stringstream fout;
char header[6];
char instrument[11]; // preset name
int nVoices = 32; // preset file always contain 32 voices
// Loading preset file
if ((fpin = fopen(filename, "rb")) == 0) {
cerr << "Cannot open file " << filename << "\n";
return false;
}
fread(&header, 6L, 1, fpin);
// Writing library header
fout << "// Faust DX7 presets library created from " << filename << "\n\n";
fout << "import(\"stdfaust.lib\");\n\n";
// Parsing presets and converting them into Faust functions
for (int count = 0; count < nVoices; count++) {
int op = 0;
fread((&(d_operator[op])), 17L, 6, fpin);
fread(&d_global, 16L, 1, fpin);
fread(&instrument, 10, 1, fpin);
instrument[10] = '\0';
format(instrument);
fout << "// NAME: " << instrument << "\n";
fout << "// ALGORITHM: " << int(d_global.ALGORITHM) + 1 << "\n";
string name = "dx7_" + string(instrument);
instruments.push_back(name);
fout << name << "(freq,gain,gate) = \n";
fout << "dx.dx7_algo(" << int(d_global.ALGORITHM);
fout << ",egR1,egR2,egR3,egR4,egL1,egL2,egL3,egL4,outLevel,keyVelSens,ampModSens,opMode,opFreq";
fout << ",opDetune,opRateScale,feedback,lfoDelay,lfoDepth,lfoSpeed,freq,gain,gate)\nwith{\n";
fout << "\tegR1(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_R1);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegR2(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_R2);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegR3(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_R3);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegR4(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_R4);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegL1(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_L1);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegL2(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_L2);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegL3(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_L3);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tegL4(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OP_EG_L4);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\toutLevel(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OUTPUT_LEV);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tkeyVelSens(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].KEY_VEL_SENS);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tampModSens(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].AMP_MOD_SENS);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\topMode(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OSC_MODE);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\topFreq(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
// computed frequency
float frequency = FreqTableCoarse[d_operator[op].OSC_MODE][d_operator[op].FREQ_COARSE] * FreqTableFine[d_operator[op].OSC_MODE][d_operator[op].FREQ_FINE];
fout << frequency;
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\topDetune(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << (int(d_operator[op].OSC_DETUNE)-7);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\topRateScale(n) = ba.take(n+1,(";
for (op = 5; op >= 0; op--) {
fout << int(d_operator[op].OSC_RATE_SCALE);
if (op != 0) fout << ",";
}
fout << "));\n";
fout << "\tfeedback = " << int(d_global.FEEDBACK) << " : dx.dx7_fdbkscalef/(2*ma.PI);\n";
fout << "\tlfoDelay = " << int(d_global.LFO_DELAY) << ";\n";
fout << "\tlfoDepth = " << int(d_global.LF_PT_MOD_DEP) << ";\n";
fout << "\tlfoSpeed = " << int(d_global.LFO_SPEED) << ";\n";
fout << "};\n\n";
}
fclose(fpin);
library = fout.str();
return true;
}
int main(int argc, char *argv[])
{
if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0){
cout << "dx72faust: simple program to convert a dx7 .syx preset file into a Faust library.\n";
cout << "Usage: dx72faust presetFile.syx\n";
exit(0);
}
// Creating output file (Faust .lib)
vector<string> instruments;
string library;
bool res = convertPatch(argv[1], library, instruments);
if (res) {
ofstream dst("dx7_" + string(argv[1]) + ".lib");
dst << library;
dst.close();
}
return 0;
}
|