< prev index next >

src/java.desktop/share/classes/com/sun/media/sound/RealTimeSequencer.java

Print this page


   1 /*
   2  * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  89 
  90 
  91     /**
  92      * cache value for tempo factor until sequence is set
  93      * -1 means not set.
  94      */
  95     private float cacheTempoFactor = -1;
  96 
  97 
  98     /** if a particular track is muted */
  99     private boolean[] trackMuted = null;
 100     /** if a particular track is solo */
 101     private boolean[] trackSolo = null;
 102 
 103     /** tempo cache for getMicrosecondPosition */
 104     private final MidiUtils.TempoCache tempoCache = new MidiUtils.TempoCache();
 105 
 106     /**
 107      * True if the sequence is running.
 108      */
 109     private boolean running = false;
 110 
 111 
 112     /** the thread for pushing out the MIDI messages */
 113     private PlayThread playThread;
 114 
 115 
 116     /**
 117      * True if we are recording
 118      */
 119     private boolean recording = false;
 120 
 121 
 122     /**
 123      * List of tracks to which we're recording
 124      */
 125     private final List<RecordingTrack> recordingTracks = new ArrayList<>();
 126 
 127 
 128     private long loopStart = 0;
 129     private long loopEnd = -1;
 130     private int loopCount = 0;
 131 
 132 
 133     /**
 134      * Meta event listeners
 135      */
 136     private final ArrayList<Object> metaEventListeners = new ArrayList<>();
 137 
 138 
 139     /**


   1 /*
   2  * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  89 
  90 
  91     /**
  92      * cache value for tempo factor until sequence is set
  93      * -1 means not set.
  94      */
  95     private float cacheTempoFactor = -1;
  96 
  97 
  98     /** if a particular track is muted */
  99     private boolean[] trackMuted = null;
 100     /** if a particular track is solo */
 101     private boolean[] trackSolo = null;
 102 
 103     /** tempo cache for getMicrosecondPosition */
 104     private final MidiUtils.TempoCache tempoCache = new MidiUtils.TempoCache();
 105 
 106     /**
 107      * True if the sequence is running.
 108      */
 109     private volatile boolean running;
 110 
 111 
 112     /** the thread for pushing out the MIDI messages */
 113     private PlayThread playThread;
 114 
 115 
 116     /**
 117      * True if we are recording
 118      */
 119     private volatile boolean recording;
 120 
 121 
 122     /**
 123      * List of tracks to which we're recording
 124      */
 125     private final List<RecordingTrack> recordingTracks = new ArrayList<>();
 126 
 127 
 128     private long loopStart = 0;
 129     private long loopEnd = -1;
 130     private int loopCount = 0;
 131 
 132 
 133     /**
 134      * Meta event listeners
 135      */
 136     private final ArrayList<Object> metaEventListeners = new ArrayList<>();
 137 
 138 
 139     /**


< prev index next >