/[svn]/jsampler/trunk/src/org/jsampler/task/UpdateChannels.java
ViewVC logotype

Contents of /jsampler/trunk/src/org/jsampler/task/UpdateChannels.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1818 - (show annotations) (download)
Wed Dec 24 17:29:47 2008 UTC (15 years, 3 months ago) by iliev
File size: 3790 byte(s)
* Added support for controlling the global sampler-wide limit of
  maximum voices and disk streams
  (choose Edit/Preferences, then click the `General' tab)
* Fantasia: store the view configuration of audio/MIDI devices and sampler
  channels in the LSCP script when exporting sampler configuration
* Fantasia: Implemented multiple sampler channels' selection
* Fantasia: Added option to move sampler channels up and down
  in the channels list
* Fantasia: Added option to move sampler channels
  to another channels panels

1 /*
2 * JSampler - a java front-end for LinuxSampler
3 *
4 * Copyright (C) 2005-2008 Grigor Iliev <grigor@grigoriliev.com>
5 *
6 * This file is part of JSampler.
7 *
8 * JSampler is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * JSampler is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with JSampler; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23 package org.jsampler.task;
24
25 import java.util.Vector;
26 import java.util.logging.Level;
27
28 import org.jsampler.CC;
29 import org.jsampler.HF;
30 import org.jsampler.SamplerChannelModel;
31 import org.jsampler.SamplerModel;
32
33 import org.linuxsampler.lscp.SamplerChannel;
34
35 import net.sf.juife.Task;
36
37 import static org.jsampler.JSI18n.i18n;
38
39
40 /**
41 * This task updates the sampler channel list.
42 * @author Grigor Iliev
43 */
44 public class UpdateChannels extends EnhancedTask {
45 /** Creates a new instance of <code>UpdateChannels</code>. */
46 public
47 UpdateChannels() {
48 setTitle("UpdateChannels_task");
49 setDescription(i18n.getMessage("UpdateChannels.description"));
50 }
51
52 /** The entry point of the task. */
53 public void
54 run() {
55 try {
56 SamplerModel sm = CC.getSamplerModel();
57 Integer[] chnIDs = CC.getClient().getSamplerChannelIDs();
58
59 boolean found = false;
60
61 boolean oldValue = CC.getSamplerModel().getChannelListIsAdjusting();
62
63 javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
64 public void
65 run() {
66 CC.getSamplerModel().setChannelListIsAdjusting(true);
67 CC.getMainFrame().setAutoUpdateChannelListUI(false);
68 }
69 });
70
71 for(SamplerChannelModel m : sm.getChannels()) {
72 for(int i = 0; i < chnIDs.length; i++) {
73 if(m.getChannelId() == chnIDs[i]) {
74 chnIDs[i] = -1;
75 found = true;
76 }
77 }
78
79 if(!found) sm.removeChannelById(m.getChannelId());
80 found = false;
81 }
82
83 Vector<SamplerChannel> v = new Vector<SamplerChannel>();
84 for(int id : chnIDs) {
85 if(id >= 0) v.add(CC.getClient().getSamplerChannelInfo(id));
86 }
87
88 for(int i = 0; i < v.size() - 1; i++) sm.addChannel(v.elementAt(i));
89
90 manageAutoUpdate(false);
91
92 if(v.size() > 0) sm.addChannel(v.elementAt(v.size() - 1));
93 else if(!CC.getSamplerModel().getChannelListIsAdjusting()) {
94 // FIXME: no change after
95 // CC.getSamplerModel().setChannelListIsAdjusting(false);
96 }
97 } catch(Exception x) {
98 setErrorMessage(getDescription() + ": " + HF.getErrorMessage(x));
99 CC.getLogger().log(Level.FINE, getErrorMessage(), x);
100 manageAutoUpdate(true);
101 }
102 }
103
104 private void
105 manageAutoUpdate(boolean force) {
106 if(!force) {
107 Task[] tasks = CC.getTaskQueue().getPendingTasks();
108 for(Task t : tasks) if(t.equals(this)) return;
109 }
110
111 try {
112 javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
113 public void
114 run() {
115 CC.getSamplerModel().setChannelListIsAdjusting(false);
116 CC.getMainFrame().setAutoUpdateChannelListUI(true);
117 CC.getMainFrame().updateChannelListUI();
118 }
119 });
120 } catch(Exception x) {
121 x.printStackTrace();
122 }
123 }
124
125 /**
126 * Used to decrease the traffic. All task in the queue
127 * equal to this are removed if added using {@link org.jsampler.CC#scheduleTask}.
128 * @see org.jsampler.CC#addTask
129 */
130 @Override
131 public boolean
132 equals(Object obj) {
133 if(obj == null) return false;
134 if(!(obj instanceof UpdateChannels)) return false;
135
136 return true;
137 }
138 }

  ViewVC Help
Powered by ViewVC