value = "out1to2";
putDontOverwrite( childPrefs, KEY_OUTPUTCONFIG, value );
try {
if( !childPrefs.nodeExists( NODE_OUTPUTCONFIGS )) {
childPrefs2 = childPrefs.node( NODE_OUTPUTCONFIGS );
new RoutingConfig( value, "Out 1-2", new int[] { 0, 1 }, -90f ).toPrefs(
childPrefs2.node( value ));
value = "out1to8";
new RoutingConfig( value, "Out 1-8", new int[] { 0, 1, 2, 3, 4, 5, 6, 7 }, -45f ).toPrefs(
childPrefs2.node( value ));
// // ok dis wan is rather for demonstration purpose
// new RoutingConfig( value, 2, new int[] { 1, 0 }, -90f ).toPrefs(
// childPrefs2.node( "Reversed Stereo" ));
}
}
catch( BackingStoreException e1 ) {
warnings.add( e1.toString() );
}
// inputconfigs
try {
if( !childPrefs.nodeExists( NODE_INPUTCONFIGS )) {
childPrefs2 = childPrefs.node( NODE_INPUTCONFIGS );
value = "in1";
new RoutingConfig( value, "In 1", new int[] { 0 }, 0f ).toPrefs(
childPrefs2.node( value ));
value = "in1to2";
new RoutingConfig( value, "In 1-2", new int[] { 0, 1 }, 0f ).toPrefs(
childPrefs2.node( value ));
value = "in1to8";
new RoutingConfig( value, "In 1-8", new int[] { 0, 1, 2, 3, 4, 5, 6, 7 }, 0f ).toPrefs(
childPrefs2.node( value ));
// // ok dis wan is rather for demonstration purpose
// new RoutingConfig( value, 2, new int[] { 1, 0 }, -90f ).toPrefs(
// childPrefs2.node( "Reversed Stereo" ));
}