/[svn]/linuxsampler/trunk/src/engines/gig/EngineChannel.cpp
ViewVC logotype

Contents of /linuxsampler/trunk/src/engines/gig/EngineChannel.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2871 - (show annotations) (download)
Sun Apr 10 18:22:23 2016 UTC (8 years ago) by schoenebeck
File size: 8645 byte(s)
* All engines: Implemented scheduler for delayed MIDI events and for
  suspended real-time instrument scripts.
* Real-Time instrument scripts: Implemented support for built-in "wait()"
  function's "duration-us" argument, thus scripts using this function are
  now correctly resumed after the requested amount of microseconds.
* Real-Time instrument scripts: Implemented support for built-in
  "play_note()" function's "duration-us" argument, thus notes triggered
  with this argument are now correctly released after the requested amount
  of microseconds.
* Real-Time instrument scripts: Fixed crash which happened when trying to
  reference an undeclared script variable.
* Real-Time instrument scripts: Script events were not cleared when
  engine channel was reset, potentially causing undefined behavior.
* All engines: Attempt to partly fix resetting engine channels vs.
  resetting engine, an overall cleanup of the Reset*(),
  ConnectAudioDevice(), DisconnectAudioDevice() API methods would still be
  desirable though, because the current situation is still inconsistent
  and error prone.
* Bumped version (2.0.0.svn2).

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005-2008 Christian Schoenebeck *
7 * Copyright (C) 2009 - 2012 Christian Schoenebeck and Grigor Iliev *
8 * Copyright (C) 2012 - 2016 Christian Schoenebeck and Andreas Persson *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the Free Software *
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
23 * MA 02111-1307 USA *
24 ***************************************************************************/
25
26 #include "EngineChannel.h"
27 #include "Engine.h"
28
29 namespace LinuxSampler { namespace gig {
30 EngineChannel::EngineChannel() {
31
32 }
33
34 EngineChannel::~EngineChannel() {
35 DisconnectAudioOutputDevice();
36 // In case the channel was removed before the instrument was
37 // fully loaded, try to give back instrument again (see bug #113)
38 InstrumentChangeCmd< ::gig::DimensionRegion, ::gig::Instrument>& cmd = ChangeInstrument(NULL);
39 if (cmd.pInstrument) {
40 Engine::instruments.HandBack(cmd.pInstrument, this);
41 }
42 ///////
43 }
44
45 AbstractEngine::Format EngineChannel::GetEngineFormat() { return AbstractEngine::GIG; }
46
47 /** This method is not thread safe! */
48 void EngineChannel::ResetInternal(bool bResetEngine) {
49 CurrentKeyDimension = 0;
50 EngineChannelBase<Voice, ::gig::DimensionRegion, ::gig::Instrument>::ResetInternal(bResetEngine);
51 }
52
53 /**
54 * Will be called by the MIDIIn Thread to signal that a program
55 * change should be performed. As a program change isn't
56 * real-time safe, the actual change is performed by the disk
57 * thread.
58 *
59 * @param Program - MIDI program change number
60 */
61 void EngineChannel::SendProgramChange(uint8_t Program) {
62 SetMidiProgram(Program);
63 Engine* engine = dynamic_cast<Engine*>(pEngine);
64 if(engine == NULL) return;
65
66 if(engine->GetDiskThread()) {
67 uint32_t merged = (GetMidiBankMsb() << 16) | (GetMidiBankLsb() << 8) | Program;
68 engine->GetDiskThread()->OrderProgramChange(merged, this);
69 } else {
70 // TODO:
71 }
72 }
73
74 /**
75 * Load an instrument from a .gig file. PrepareLoadInstrument() has to
76 * be called first to provide the information which instrument to load.
77 * This method will then actually start to load the instrument and block
78 * the calling thread until loading was completed.
79 *
80 * @see PrepareLoadInstrument()
81 */
82 void EngineChannel::LoadInstrument() {
83 InstrumentResourceManager* pInstrumentManager = dynamic_cast<InstrumentResourceManager*>(pEngine->GetInstrumentManager());
84
85 // make sure we don't trigger any new notes with an old
86 // instrument
87 InstrumentChangeCmd< ::gig::DimensionRegion, ::gig::Instrument>& cmd = ChangeInstrument(0);
88 if (cmd.pInstrument) {
89 // give old instrument back to instrument manager, but
90 // keep the dimension regions and samples that are in use
91 pInstrumentManager->HandBackInstrument(cmd.pInstrument, this, cmd.pRegionsInUse);
92 }
93 if (cmd.pScript) {
94 // give old instrument script back to instrument resource manager
95 cmd.pScript->resetAll();
96 }
97 cmd.pRegionsInUse->clear();
98
99 // delete all key groups
100 DeleteGroupEventLists();
101
102 // request gig instrument from instrument manager
103 ::gig::Instrument* newInstrument;
104 try {
105 InstrumentManager::instrument_id_t instrid;
106 instrid.FileName = InstrumentFile;
107 instrid.Index = InstrumentIdx;
108
109 newInstrument = pInstrumentManager->Borrow(instrid, this);
110 if (!newInstrument) {
111 throw InstrumentManagerException("resource was not created");
112 }
113
114 if (newInstrument->ScriptSlotCount() > 1) {
115 std::cerr << "WARNING: Executing more than one real-time instrument script slot is not implemented yet!\n";
116 }
117 ::gig::Script* script = newInstrument->GetScriptOfSlot(0);
118 if (script) {
119 String sourceCode = script->GetScriptAsText();
120 LoadInstrumentScript(sourceCode);
121 }
122 }
123 catch (RIFF::Exception e) {
124 InstrumentStat = -2;
125 StatusChanged(true);
126 String msg = "gig::Engine error: Failed to load instrument, cause: " + e.Message;
127 throw Exception(msg);
128 }
129 catch (InstrumentManagerException e) {
130 InstrumentStat = -3;
131 StatusChanged(true);
132 String msg = "gig::Engine error: Failed to load instrument, cause: " + e.Message();
133 throw Exception(msg);
134 }
135 catch (...) {
136 InstrumentStat = -4;
137 StatusChanged(true);
138 throw Exception("gig::Engine error: Failed to load instrument, cause: Unknown exception while trying to parse gig file.");
139 }
140
141 RoundRobinIndex = 0;
142 for (int i = 0 ; i < 128 ; i++) pMIDIKeyInfo[i].pRoundRobinIndex = NULL;
143
144 // rebuild ActiveKeyGroups map with key groups of current
145 // instrument and set the round robin pointers to use one
146 // counter for each region
147 int region = 0;
148 for (::gig::Region* pRegion = newInstrument->GetFirstRegion(); pRegion; pRegion = newInstrument->GetNextRegion()) {
149 AddGroup(pRegion->KeyGroup);
150
151 RoundRobinIndexes[region] = 0;
152 for (int iKey = pRegion->KeyRange.low; iKey <= pRegion->KeyRange.high; iKey++) {
153 pMIDIKeyInfo[iKey].pRoundRobinIndex = &RoundRobinIndexes[region];
154 }
155 region++;
156 }
157
158 InstrumentIdxName = newInstrument->pInfo->Name;
159 InstrumentStat = 100;
160
161 {
162 InstrumentChangeCmd< ::gig::DimensionRegion, ::gig::Instrument>& cmd =
163 ChangeInstrument(newInstrument);
164 if (cmd.pScript) {
165 // give old instrument script back to instrument resource manager
166 cmd.pScript->resetAll();
167 }
168 }
169
170 StatusChanged(true);
171 }
172
173 void EngineChannel::ProcessKeySwitchChange(int key) {
174 // Change key dimension value if key is in keyswitching area
175 {
176 if (key >= pInstrument->DimensionKeyRange.low && key <= pInstrument->DimensionKeyRange.high)
177 CurrentKeyDimension = float(key - pInstrument->DimensionKeyRange.low) /
178 (pInstrument->DimensionKeyRange.high - pInstrument->DimensionKeyRange.low + 1);
179 }
180 }
181
182 String EngineChannel::InstrumentFileName() {
183 return EngineChannelBase<Voice, ::gig::DimensionRegion, ::gig::Instrument>::InstrumentFileName();
184 }
185
186 String EngineChannel::InstrumentFileName(int index) {
187 if (index == 0) return InstrumentFileName();
188 if (!pInstrument || !pInstrument->GetParent()) return "";
189 DLS::File* pMainFile = dynamic_cast<DLS::File*>(pInstrument->GetParent());
190 if (!pMainFile) return "";
191 RIFF::File* pExtensionFile = pMainFile->GetExtensionFile(index);
192 return (pExtensionFile) ? pExtensionFile->GetFileName() : "";
193 }
194
195 }} // namespace LinuxSampler::gig

  ViewVC Help
Powered by ViewVC