From: <ge...@us...> - 2003-03-13 17:00:37
|
Update of /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II In directory sc8-pr-cvs1:/tmp/cvs-serv10592/YamahaDX7II Modified Files: YamahaDX7IIAdditionalVoiceBankDriver.java YamahaDX7IIFractionalScalingBankDriver.java YamahaDX7IIMicroTuningBankDriver.java YamahaDX7IIPerformanceBankDriver.java YamahaDX7IIVoiceBankDriver.java Log Message: Torstens changes from March 6. 2003 Index: YamahaDX7IIAdditionalVoiceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II/YamahaDX7IIAdditionalVoiceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaDX7IIAdditionalVoiceBankDriver.java 2 Mar 2003 22:00:16 -0000 1.1 --- YamahaDX7IIAdditionalVoiceBankDriver.java 13 Mar 2003 17:00:10 -0000 1.2 *************** *** 254,258 **** ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 254,258 ---- ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 273,278 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(DX7IIConstants.INIT_ADDITIONAL_VOICE); ! Patch p = new Patch(sysex, getDeviceNum(), getDriverNum()); for (int i=0;i<numPatches;i++) --- 273,278 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),DX7IIConstants.INIT_ADDITIONAL_VOICE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) Index: YamahaDX7IIFractionalScalingBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II/YamahaDX7IIFractionalScalingBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaDX7IIFractionalScalingBankDriver.java 2 Mar 2003 22:00:16 -0000 1.1 --- YamahaDX7IIFractionalScalingBankDriver.java 13 Mar 2003 17:00:12 -0000 1.2 *************** *** 188,192 **** } ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 188,192 ---- } ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 205,210 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(DX7IIConstants.INIT_FRACTIONAL_SCALING); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 205,210 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),DX7IIConstants.INIT_FRACTIONAL_SCALING); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) Index: YamahaDX7IIMicroTuningBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II/YamahaDX7IIMicroTuningBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaDX7IIMicroTuningBankDriver.java 2 Mar 2003 22:00:17 -0000 1.1 --- YamahaDX7IIMicroTuningBankDriver.java 13 Mar 2003 17:00:14 -0000 1.2 *************** *** 184,188 **** } ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 184,188 ---- } ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 201,206 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(DX7IIConstants.INIT_MICRO_TUNING); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 201,206 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),DX7IIConstants.INIT_MICRO_TUNING); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) Index: YamahaDX7IIPerformanceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II/YamahaDX7IIPerformanceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaDX7IIPerformanceBankDriver.java 2 Mar 2003 22:00:17 -0000 1.1 --- YamahaDX7IIPerformanceBankDriver.java 13 Mar 2003 17:00:17 -0000 1.2 *************** *** 184,188 **** } ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; --- 184,188 ---- } ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; *************** *** 213,218 **** ! Patch v = new Patch(DX7IIConstants.INIT_PERFORMANCE); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) putPatch(p,v,i); --- 213,218 ---- ! Patch v = new Patch(getDeviceNum(),DX7IIConstants.INIT_PERFORMANCE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) putPatch(p,v,i); Index: YamahaDX7IIVoiceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaDX7II/YamahaDX7IIVoiceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaDX7IIVoiceBankDriver.java 2 Mar 2003 22:00:18 -0000 1.1 --- YamahaDX7IIVoiceBankDriver.java 13 Mar 2003 17:00:18 -0000 1.2 *************** *** 475,479 **** ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 475,479 ---- ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 494,499 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(DX7IIConstants.INIT_VOICE); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 494,499 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),DX7IIConstants.INIT_VOICE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) |