/** * Build Samplebank * $Id: build_samplebank.cpp 2320 2010-03-06 23:04:11Z kaetemi $ * \file build_samplebank.cpp * \brief Build Samplebank * \date 2010-03-06 21:36GMT * \author Jan Boon (Kaetemi) */ /* * Copyright (C) 2010 by authors * * This file is part of NEVRAX NEL. * NEVRAX NEL is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 2 of the License, * or (at your option) any later version. * * NEVRAX NEL is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NEVRAX NEL; see the file COPYING. If not, see * . */ #include // STL includes #include #include #include #include #include // NeL includes #include #include #include #include #include // Project includes // ... using namespace std; using namespace NLMISC; using namespace NLSOUND; namespace { } /* anonymous namespace */ int main(int nNbArg, char **ppArgs) { // create debug stuff createDebug(); // verify all params if (nNbArg < 3) { nlinfo("ERROR : Wrong number of arguments\n"); nlinfo("USAGE : build_samplebank \n"); return EXIT_FAILURE; } string samplebanksDir = string(ppArgs[1]); if (!CFile::isDirectory(samplebanksDir)) { nlerrornoex("Directory source_samplebank '%s' does not exist", samplebanksDir.c_str()); return EXIT_FAILURE; } string buildSampleBanksDir = string(ppArgs[2]); if (!CFile::isDirectory(buildSampleBanksDir)) { nlerrornoex("Directory build_samplebank '%s' does not exist", buildSampleBanksDir.c_str()); return EXIT_FAILURE; } string sampleBankName = string(ppArgs[3]); // build the sample bank UAudioMixer::buildSampleBank(samplebanksDir, buildSampleBanksDir, sampleBankName); // and that's all folks return EXIT_SUCCESS; } /* end of file */