/[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

libgig/trunk/src/gigdump.cpp revision 511 by schoenebeck, Thu May 5 13:49:53 2005 UTC libgig/trunk/src/tools/gigdump.cpp revision 2573 by schoenebeck, Thu May 22 15:17:09 2014 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file loader library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2005 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2014 by Christian Schoenebeck                      *
6   *                              <cuse@users.sourceforge.net>               *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8     *   This program is part of libgig.                                       *
9     *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   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  *   *   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     *   *   the Free Software Foundation; either version 2 of the License, or     *
# Line 27  Line 29 
29    
30  #include <iostream>  #include <iostream>
31  #include <cstdlib>  #include <cstdlib>
32    #include <string>
33    
34  #include "gig.h"  #include "../gig.h"
35    
36  using namespace std;  using namespace std;
37    
38    string Revision();
39    void PrintVersion();
40    void PrintFileInformations(gig::File* gig);
41    void PrintGroups(gig::File* gig);
42  void PrintSamples(gig::File* gig);  void PrintSamples(gig::File* gig);
43  void PrintInstruments(gig::File* gig);  void PrintInstruments(gig::File* gig);
44  void PrintRegions(gig::Instrument* instr);  void PrintRegions(gig::Instrument* instr);
# Line 44  int main(int argc, char *argv[]) Line 51  int main(int argc, char *argv[])
51          PrintUsage();          PrintUsage();
52          return EXIT_FAILURE;          return EXIT_FAILURE;
53      }      }
54        if (argv[1][0] == '-') {
55            switch (argv[1][1]) {
56                case 'v':
57                    PrintVersion();
58                    return EXIT_SUCCESS;
59            }
60        }
61      FILE* hFile = fopen(argv[1], "r");      FILE* hFile = fopen(argv[1], "r");
62      if (!hFile) {      if (!hFile) {
63          cout << "Invalid file argument!" << endl;          cout << "Invalid file argument!" << endl;
# Line 53  int main(int argc, char *argv[]) Line 67  int main(int argc, char *argv[])
67      try {      try {
68          RIFF::File* riff = new RIFF::File(argv[1]);          RIFF::File* riff = new RIFF::File(argv[1]);
69          gig::File*  gig  = new gig::File(riff);          gig::File*  gig  = new gig::File(riff);
70            PrintFileInformations(gig);
71            cout << endl;
72            PrintGroups(gig);
73            cout << endl;
74          PrintSamples(gig);          PrintSamples(gig);
75          cout << endl;          cout << endl;
76          PrintInstruments(gig);          PrintInstruments(gig);
# Line 71  int main(int argc, char *argv[]) Line 89  int main(int argc, char *argv[])
89      return EXIT_SUCCESS;      return EXIT_SUCCESS;
90  }  }
91    
92    void PrintFileInformations(gig::File* gig) {
93        cout << "Global File Informations:" << endl;
94        cout << "    Total instruments: " << gig->Instruments << endl;
95        if (gig->pVersion) {
96           cout << "    Version: " << gig->pVersion->major   << "."
97                               << gig->pVersion->minor   << "."
98                               << gig->pVersion->release << "."
99                               << gig->pVersion->build   << endl;
100        }
101        if (gig->pInfo) {
102            if (gig->pInfo->Name.size())
103                cout << "    Name: '" << gig->pInfo->Name << "'\n";
104            if (gig->pInfo->ArchivalLocation.size())
105                cout << "    ArchivalLocation: '" << gig->pInfo->ArchivalLocation << "'\n";
106            if (gig->pInfo->CreationDate.size())
107                cout << "    CreationDate: '" << gig->pInfo->CreationDate << "'\n";
108            if (gig->pInfo->Comments.size())
109                cout << "    Comments: '" << gig->pInfo->Comments << "'\n";
110            if (gig->pInfo->Product.size())
111                cout << "    Product: '" << gig->pInfo->Product << "'\n";
112            if (gig->pInfo->Copyright.size())
113                cout << "    Copyright: '" << gig->pInfo->Copyright << "'\n";
114            if (gig->pInfo->Artists.size())
115                cout << "    Artists: '" << gig->pInfo->Artists << "'\n";
116            if (gig->pInfo->Genre.size())
117                cout << "    Genre: '" << gig->pInfo->Genre << "'\n";
118            if (gig->pInfo->Keywords.size())
119                cout << "    Keywords: '" << gig->pInfo->Keywords << "'\n";
120            if (gig->pInfo->Engineer.size())
121                cout << "    Engineer: '" << gig->pInfo->Engineer << "'\n";
122            if (gig->pInfo->Technician.size())
123                cout << "    Technician: '" << gig->pInfo->Technician << "'\n";
124            if (gig->pInfo->Software.size())
125                cout << "    Software: '" << gig->pInfo->Software << "'\n";
126            if (gig->pInfo->Medium.size())
127                cout << "    Medium: '" << gig->pInfo->Medium << "'\n";
128            if (gig->pInfo->Source.size())
129                cout << "    Source: '" << gig->pInfo->Source << "'\n";
130            if (gig->pInfo->SourceForm.size())
131                cout << "    SourceForm: '" << gig->pInfo->SourceForm << "'\n";
132            if (gig->pInfo->Commissioned.size())
133                cout << "    Commissioned: '" << gig->pInfo->Commissioned << "'\n";
134        }
135    }
136    
137    void PrintGroups(gig::File* gig) {
138        int groups = 0;
139        cout << "ALL defined Groups:" << endl;
140        for (gig::Group* pGroup = gig->GetFirstGroup(); pGroup; pGroup = gig->GetNextGroup()) {
141            groups++;
142            string name = pGroup->Name;
143            if (name == "") name = "<NO NAME>";
144            else            name = '\"' + name + '\"';
145            cout << "    Group " << groups << ")" << endl;
146            cout << "        Name: " << name << endl;
147        }
148    }
149    
150  void PrintSamples(gig::File* gig) {  void PrintSamples(gig::File* gig) {
151      int samples = 0;      int samples = 0;
152      cout << "ALL Available Samples (as there might be more than referenced by Instruments):" << endl;      cout << "ALL Available Samples (as there might be more than referenced by Instruments):" << endl;
153      gig::Sample* pSample = gig->GetFirstSample();      gig::Sample* pSample = gig->GetFirstSample();
154      while (pSample) {      while (pSample) {
155          samples++;          samples++;
156            // determine sample's name
157          string name = pSample->pInfo->Name;          string name = pSample->pInfo->Name;
158          if (name == "") name = "<NO NAME>";          if (name == "") name = "<NO NAME>";
159          else            name = '\"' + name + '\"';          else            name = '\"' + name + '\"';
160            // determine group this sample belongs to
161            int iGroup = 1;
162            for (gig::Group* pGroup = gig->GetFirstGroup(); pGroup; pGroup = gig->GetNextGroup(), iGroup++) {
163                if (pGroup == pSample->GetGroup()) break;
164            }
165            // print sample info
166          cout << "    Sample " << samples << ") " << name << ", ";          cout << "    Sample " << samples << ") " << name << ", ";
167            cout << "Group " << iGroup << ", ";
168          cout << pSample->SamplesPerSecond << "Hz, " << pSample->Channels << " Channels, " << pSample->Loops << " Loops";          cout << pSample->SamplesPerSecond << "Hz, " << pSample->Channels << " Channels, " << pSample->Loops << " Loops";
169          if (pSample->Loops) {          if (pSample->Loops) {
170              cout << " (Type: ";              cout << " (Type: ";
# Line 168  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 247  void PrintRegions(gig::Instrument* instr Line 337  void PrintRegions(gig::Instrument* instr
337                  case gig::split_type_normal:                  case gig::split_type_normal:
338                      cout << "NORMAL" << endl;                      cout << "NORMAL" << endl;
339                      break;                      break;
                 case gig::split_type_customvelocity:  
                     cout << "CUSTOMVELOCITY" << endl;  
                     break;  
340                  case gig::split_type_bit:                  case gig::split_type_bit:
341                      cout << "BIT" << endl;                      cout << "BIT" << endl;
342                      break;                      break;
# Line 267  void PrintRegions(gig::Instrument* instr Line 354  void PrintRegions(gig::Instrument* instr
354  void PrintDimensionRegions(gig::Region* rgn) {  void PrintDimensionRegions(gig::Region* rgn) {
355      int dimensionRegions = 0;      int dimensionRegions = 0;
356      gig::DimensionRegion* pDimensionRegion;      gig::DimensionRegion* pDimensionRegion;
357      while (dimensionRegions < 32) {      while (dimensionRegions < rgn->DimensionRegions) {
358          pDimensionRegion = rgn->pDimensionRegions[dimensionRegions];          pDimensionRegion = rgn->pDimensionRegions[dimensionRegions];
359          if (!pDimensionRegion) break;          if (!pDimensionRegion) break;
360    
# Line 313  void PrintDimensionRegions(gig::Region* Line 400  void PrintDimensionRegions(gig::Region*
400      }      }
401  }  }
402    
403    string Revision() {
404        string s = "$Revision$";
405        return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
406    }
407    
408    void PrintVersion() {
409        cout << "gigdump revision " << Revision() << endl;
410        cout << "using " << gig::libraryName() << " " << gig::libraryVersion() << endl;
411    }
412    
413  void PrintUsage() {  void PrintUsage() {
414      cout << "gigdump - parses Gigasampler files and prints out the content." << endl;      cout << "gigdump - parses Gigasampler files and prints out the content." << endl;
415      cout << endl;      cout << endl;
416      cout << "Usage: gigdump FILE" << endl;      cout << "Usage: gigdump [-v] FILE" << endl;
417        cout << endl;
418        cout << "   -v  Print version and exit." << endl;
419        cout << endl;
420  }  }

Legend:
Removed from v.511  
changed lines
  Added in v.2573

  ViewVC Help
Powered by ViewVC