mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
100 lines
2.4 KiB
C++
100 lines
2.4 KiB
C++
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program 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 Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "nel/misc/types_nl.h"
|
|
#ifdef NL_OS_WINDOWS
|
|
#include <conio.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
|
|
/// This is our Unix-variant to the Windows _getch function.
|
|
int _getch()
|
|
{
|
|
struct termios oldt, newt;
|
|
int ch;
|
|
tcgetattr(STDIN_FILENO, &oldt);
|
|
newt=oldt;
|
|
newt.c_lflag &= ~(ICANON | ECHO);
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
|
|
ch = getchar();
|
|
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
|
|
return ch;
|
|
}
|
|
|
|
#endif
|
|
|
|
#include "nel/misc/path.h"
|
|
#include "nel/misc/sheet_id.h"
|
|
#include <vector>
|
|
|
|
|
|
using namespace std;
|
|
using namespace NLMISC;
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
class CPred
|
|
{
|
|
public:
|
|
bool operator()(const CSheetId &a, const CSheetId &b)
|
|
{
|
|
return a.toString()<b.toString();
|
|
}
|
|
};
|
|
|
|
// ***************************************************************************
|
|
/// Dispaly info cmd line
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
if(argc<2)
|
|
{
|
|
puts("Usage: disp_sheet_id path");
|
|
puts(" display a raw list of file names sorted by name with their sheet_id associated");
|
|
puts(" output in sheetid.txt");
|
|
puts("Press any key");
|
|
_getch();
|
|
return -1;
|
|
}
|
|
|
|
NLMISC::CApplicationContext appContext;
|
|
|
|
CPath::addSearchPath(argv[1]);
|
|
|
|
CSheetId::init(false);
|
|
|
|
std::vector<CSheetId> sheets;
|
|
CSheetId::buildIdVector(sheets);
|
|
|
|
// sort by name
|
|
CPred Pred;
|
|
sort(sheets.begin(), sheets.end(), Pred);
|
|
|
|
// display.
|
|
FILE *out= fopen("sheetid.txt", "wb");
|
|
if(out)
|
|
{
|
|
for(uint i=0;i<sheets.size();i++)
|
|
{
|
|
fprintf(out, "%s : %d\n", sheets[i].toString().c_str(), sheets[i].asInt());
|
|
}
|
|
fclose(out);
|
|
}
|
|
|
|
return 0;
|
|
}
|