/[svn]/libgig/trunk/src/tools/gigdump.cpp
ViewVC logotype

Diff of /libgig/trunk/src/tools/gigdump.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 933 by schoenebeck, Fri Nov 24 12:50:05 2006 UTC revision 1264 by persson, Sun Jul 29 10:51:09 2007 UTC
# Line 252  void PrintRegions(gig::Instrument* instr Line 252  void PrintRegions(gig::Instrument* instr
252                  case gig::dimension_random: // Different samples triggered each time a note is played, random order                  case gig::dimension_random: // Different samples triggered each time a note is played, random order
253                      cout << "RANDOM";                      cout << "RANDOM";
254                      break;                      break;
255                    case gig::dimension_smartmidi: // For MIDI tools like legato and repetition mode
256                        cout << "SMARTMIDI";
257                        break;
258                    case gig::dimension_roundrobinkeyboard: // Different samples triggered each time a note is played, any key advances the counter
259                        cout << "ROUNDROBINKEYBOARD";
260                        break;
261                  case gig::dimension_modwheel: // Modulation Wheel (MIDI Controller 1)                  case gig::dimension_modwheel: // Modulation Wheel (MIDI Controller 1)
262                      cout << "MODWHEEL";                      cout << "MODWHEEL";
263                      break;                      break;
# Line 395  void PrintDimensionRegions(gig::Region* Line 401  void PrintDimensionRegions(gig::Region*
401  }  }
402    
403  string Revision() {  string Revision() {
404      string s = "$Revision: 1.22 $";      string s = "$Revision: 1.23 $";
405      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword      return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
406  }  }
407    

Legend:
Removed from v.933  
changed lines
  Added in v.1264

  ViewVC Help
Powered by ViewVC