/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* The model instrument class.
*
* <p>The main methods to override are:<br>
* getPerformer, getDirector, getChannelMixer.
*
* <p>Performers are used to define what voices which will
* playback when using the instrument.<br>
*
* ChannelMixer is used to add channel-wide processing
* on voices output or to define non-voice oriented instruments.<br>
*
* Director is used to change how the synthesizer
* chooses what performers to play on midi events.
*
* @author Karl Helgason
*/
}
}
return new ModelPerformer[0];
}
return null;
}
// Get General MIDI 2 Alias patch for this instrument.
if (bank != 0)
return patch;
boolean percussion = false;
if (getPatch() instanceof ModelPatch)
if (percussion)
else
}
// Return name of all the keys.
// This information is generated from ModelPerformer.getName()
// returned from getPerformers().
name = "untitled";
}
}
}
return keys;
}
// Return what channels this instrument will probably response
// on General MIDI synthesizer.
public final boolean[] getChannels() {
boolean percussion = false;
if (getPatch() instanceof ModelPatch)
// Check if instrument is percussion.
if (percussion) {
boolean[] ch = new boolean[16];
ch[i] = false;
ch[9] = true;
return ch;
}
// Check if instrument uses General MIDI 2 default banks.
boolean[] ch = new boolean[16];
ch[i] = true;
return ch;
}
boolean[] ch = new boolean[16];
ch[i] = true;
ch[9] = false;
return ch;
}
}