/[svn]/linuxsampler/trunk/src/engines/gig/EngineGlobals.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/engines/gig/EngineGlobals.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 554 - (hide annotations) (download) (as text)
Thu May 19 19:25:14 2005 UTC (19 years ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 3020 byte(s)
* All compile time options are now centrally alterable as arguments to the
  ./configure script. All options are C Macros beginning with CONFIG_
  prefix and will be placed into auto generated config.h file.

1 schoenebeck 411 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5     * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6     * Copyright (C) 2005 Christian Schoenebeck *
7     * *
8     * This program is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #ifndef __LS_GIG_ENGINEGLOBALS_H__
25     #define __LS_GIG_ENGINEGLOBALS_H__
26    
27     #include "Voice.h"
28     #include "../common/Event.h"
29    
30     namespace LinuxSampler { namespace gig {
31    
32     class Voice;
33    
34     enum voice_steal_algo_t {
35     voice_steal_algo_none,
36 schoenebeck 461 voice_steal_algo_oldestvoiceonkey,
37 schoenebeck 411 voice_steal_algo_oldestkey
38     };
39    
40     struct midi_key_info_t {
41     RTList<Voice>* pActiveVoices; ///< Contains the active voices associated with the MIDI key.
42     bool KeyPressed; ///< Is true if the respective MIDI key is currently pressed.
43     bool Active; ///< If the key contains active voices.
44     bool ReleaseTrigger; ///< If we have to launch release triggered voice(s) when the key is released
45     Pool<uint>::Iterator itSelf; ///< hack to allow fast deallocation of the key from the list of active keys
46     RTList<Event>* pEvents; ///< Key specific events (only Note-on, Note-off and sustain pedal currently)
47 schoenebeck 474 int VoiceTheftsQueued; ///< Amount of voices postponed due to shortage of voices.
48 persson 438 uint8_t RoundRobinIndex; ///< For the round robin dimension: current articulation for this key, will be incremented for each note on
49 schoenebeck 411 };
50    
51     }} // namespace LinuxSampler::gig
52    
53     #endif // __LS_GIG_ENGINEGLOBALS_H__

  ViewVC Help
Powered by ViewVC