Removed model converter
parent
670cedd967
commit
2b84da8a77
|
@ -3,10 +3,6 @@ set(CMAKE_CXX_FLAGS ${COLOBOT_CXX_FLAGS})
|
|||
set(CMAKE_CXX_FLAGS_RELEASE ${COLOBOT_CXX_FLAGS_RELEASE})
|
||||
set(CMAKE_CXX_FLAGS_DEBUG ${COLOBOT_CXX_FLAGS_DEBUG})
|
||||
|
||||
if(TOOLS)
|
||||
#add_subdirectory(tools)
|
||||
endif()
|
||||
|
||||
add_subdirectory(graphics/opengl33/shaders)
|
||||
|
||||
if(COLOBOT_OFFICIAL_BUILD)
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
add_executable(convert_model
|
||||
../common/logger.cpp
|
||||
../graphics/model/model.cpp
|
||||
../graphics/model/model_mesh.cpp
|
||||
../graphics/model/model_input.cpp
|
||||
../graphics/model/model_output.cpp
|
||||
convert_model.cpp)
|
||||
target_include_directories(convert_model PRIVATE . ..)
|
|
@ -1,5 +0,0 @@
|
|||
/**
|
||||
* \dir tools
|
||||
* \brief Various tools (separate programs)
|
||||
*/
|
||||
|
|
@ -1,302 +0,0 @@
|
|||
/*
|
||||
* This file is part of the Colobot: Gold Edition source code
|
||||
* Copyright (C) 2001-2023, Daniel Roux, EPSITEC SA & TerranovaTeam
|
||||
* http://epsitec.ch; http://colobot.info; http://github.com/colobot
|
||||
*
|
||||
* This program 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 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see http://gnu.org/licenses
|
||||
*/
|
||||
|
||||
#include "common/logger.h"
|
||||
|
||||
#include "graphics/model/model_input.h"
|
||||
#include "graphics/model/model_io_exception.h"
|
||||
#include "graphics/model/model_output.h"
|
||||
|
||||
#include "math/func.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <map>
|
||||
|
||||
using namespace Gfx;
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
struct Args
|
||||
{
|
||||
bool usage;
|
||||
bool dumpInfo;
|
||||
std::string inputFile;
|
||||
std::string outputFile;
|
||||
std::string inputFormat;
|
||||
std::string outputFormat;
|
||||
|
||||
Args()
|
||||
{
|
||||
usage = false;
|
||||
dumpInfo = false;
|
||||
}
|
||||
};
|
||||
|
||||
Args ARGS;
|
||||
|
||||
void PrintUsage(const std::string& program)
|
||||
{
|
||||
std::cerr << "Colobot model converter" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "Usage:" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << " Convert files:" << std::endl;
|
||||
std::cerr << " " << program << " -i input_file -if input_format -o output_file -of output_format" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << " Dump info:" << std::endl;
|
||||
std::cerr << " " << program << " -d -i input_file -if input_format" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << " Help:" << std::endl;
|
||||
std::cerr << " " << program << " -h" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
|
||||
std::cerr << "Model formats:" << std::endl;
|
||||
std::cerr << " old => old binary format" << std::endl;
|
||||
std::cerr << " new_bin => new binary format" << std::endl;
|
||||
std::cerr << " new_txt => new text format" << std::endl;
|
||||
}
|
||||
|
||||
bool ParseArgs(int argc, char *argv[])
|
||||
{
|
||||
bool waitI = false, waitO = false;
|
||||
bool waitIf = false, waitOf = false;
|
||||
for (int i = 1; i < argc; ++i)
|
||||
{
|
||||
std::string arg = std::string(argv[i]);
|
||||
|
||||
if (arg == "-i")
|
||||
{
|
||||
waitI = true;
|
||||
continue;
|
||||
}
|
||||
if (arg == "-o")
|
||||
{
|
||||
waitO = true;
|
||||
continue;
|
||||
}
|
||||
if (arg == "-if")
|
||||
{
|
||||
waitIf = true;
|
||||
continue;
|
||||
}
|
||||
if (arg == "-of")
|
||||
{
|
||||
waitOf = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (waitI)
|
||||
{
|
||||
waitI = false;
|
||||
ARGS.inputFile = arg;
|
||||
}
|
||||
else if (waitO)
|
||||
{
|
||||
waitO = false;
|
||||
ARGS.outputFile = arg;
|
||||
}
|
||||
else if (waitIf)
|
||||
{
|
||||
waitIf = false;
|
||||
ARGS.inputFormat = arg;
|
||||
}
|
||||
else if (waitOf)
|
||||
{
|
||||
waitOf = false;
|
||||
ARGS.outputFormat = arg;
|
||||
}
|
||||
else if (arg == "-h")
|
||||
{
|
||||
PrintUsage(argv[0]);
|
||||
ARGS.usage = true;
|
||||
}
|
||||
else if (arg == "-d")
|
||||
{
|
||||
ARGS.dumpInfo = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (waitI || waitO || waitIf || waitOf)
|
||||
return false;
|
||||
|
||||
if (ARGS.usage)
|
||||
return true;
|
||||
|
||||
if (ARGS.inputFile.empty() || (!ARGS.dumpInfo && ARGS.outputFile.empty() ))
|
||||
return false;
|
||||
|
||||
if (ARGS.inputFormat.empty() || (!ARGS.dumpInfo && ARGS.outputFormat.empty() ))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
void PrintStats(const std::map<T, int>& stats, int total)
|
||||
{
|
||||
for (auto it = stats.begin(); it != stats.end(); ++it)
|
||||
{
|
||||
std::cerr << " " << (*it).first << " : " << (*it).second << " / " << total << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
void DumpInfo(const CModel& model)
|
||||
{
|
||||
const CModelMesh* mesh = model.GetMesh("main");
|
||||
if (mesh == nullptr)
|
||||
{
|
||||
std::cerr << "Main mesh not found!" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
glm::vec3 bboxMin( Math::HUGE_NUM, Math::HUGE_NUM, Math::HUGE_NUM);
|
||||
glm::vec3 bboxMax(-Math::HUGE_NUM, -Math::HUGE_NUM, -Math::HUGE_NUM);
|
||||
|
||||
std::map<std::string, int> texs1, texs2;
|
||||
std::map<int, int> states;
|
||||
int variableTexs2 = 0;
|
||||
|
||||
for (const ModelTriangle& t : mesh->GetTriangles())
|
||||
{
|
||||
bboxMin.x = Math::Min(t.p1.position.x, t.p2.position.x, t.p3.position.x, bboxMin.x);
|
||||
bboxMin.y = Math::Min(t.p1.position.y, t.p2.position.y, t.p3.position.y, bboxMin.y);
|
||||
bboxMin.z = Math::Min(t.p1.position.z, t.p2.position.z, t.p3.position.z, bboxMin.z);
|
||||
|
||||
bboxMax.x = Math::Max(t.p1.position.x, t.p2.position.x, t.p3.position.x, bboxMax.x);
|
||||
bboxMax.y = Math::Max(t.p1.position.y, t.p2.position.y, t.p3.position.y, bboxMax.y);
|
||||
bboxMax.z = Math::Max(t.p1.position.z, t.p2.position.z, t.p3.position.z, bboxMax.z);
|
||||
|
||||
texs1[t.material.albedoTexture] += 1;
|
||||
if (! t.material.detailTexture.empty())
|
||||
texs2[t.material.detailTexture] += 1;
|
||||
if (t.material.variableDetail)
|
||||
variableTexs2 += 1;
|
||||
}
|
||||
|
||||
int total = mesh->GetTriangleCount();
|
||||
|
||||
std::cerr << "---- Info ----" << std::endl;
|
||||
std::cerr << "Total triangles: " << total;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "Bounding box:" << std::endl;
|
||||
std::cerr << " bboxMin: [" << bboxMin.x << ", " << bboxMin.y << ", " << bboxMin.z << "]" << std::endl;
|
||||
std::cerr << " bboxMax: [" << bboxMax.x << ", " << bboxMax.y << ", " << bboxMax.z << "]" << std::endl;
|
||||
std::cerr << std::endl;
|
||||
std::cerr << "Textures:" << std::endl;
|
||||
std::cerr << " tex1:" << std::endl;
|
||||
PrintStats(texs1, total);
|
||||
std::cerr << " tex2:" << std::endl;
|
||||
PrintStats(texs2, total);
|
||||
std::cerr << " variable tex2: " << variableTexs2 << " / " << total << std::endl;
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
CLogger logger;
|
||||
logger.SetLogLevel(LOG_ERROR);
|
||||
|
||||
if (!ParseArgs(argc, argv))
|
||||
{
|
||||
std::cerr << "Invalid arguments! Run with -h for usage info." << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (ARGS.usage)
|
||||
return 0;
|
||||
|
||||
ModelFormat inputFormat = ModelFormat::Old;
|
||||
|
||||
if (ARGS.inputFormat == "old")
|
||||
inputFormat = ModelFormat::Old;
|
||||
else if (ARGS.inputFormat == "new_bin")
|
||||
inputFormat = ModelFormat::Binary;
|
||||
else if (ARGS.inputFormat == "new_txt")
|
||||
inputFormat = ModelFormat::Text;
|
||||
else
|
||||
{
|
||||
std::cerr << "Invalid input format: " << ARGS.inputFormat << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
CModel model;
|
||||
|
||||
try
|
||||
{
|
||||
std::ifstream stream;
|
||||
stream.open(ARGS.inputFile, std::ios_base::in | std::ios_base::binary);
|
||||
if (!stream.good())
|
||||
throw CModelIOException(std::string("Could not open file: ") + ARGS.inputFile);
|
||||
|
||||
model = ModelInput::Read(stream, inputFormat);
|
||||
}
|
||||
catch (const CModelIOException& e)
|
||||
{
|
||||
std::cerr << "Reading input model failed with error:" << std::endl;
|
||||
std::cerr << e.what() << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (ARGS.dumpInfo)
|
||||
{
|
||||
DumpInfo(model);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
ModelFormat outputFormat = ModelFormat::Old;
|
||||
|
||||
if (ARGS.outputFormat == "old")
|
||||
outputFormat = ModelFormat::Old;
|
||||
else if (ARGS.outputFormat == "new_bin")
|
||||
outputFormat = ModelFormat::Binary;
|
||||
else if (ARGS.outputFormat == "new_txt")
|
||||
outputFormat = ModelFormat::Text;
|
||||
else
|
||||
{
|
||||
std::cerr << "Invalid output format: " << ARGS.outputFormat << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
std::ofstream stream;
|
||||
stream.open(ARGS.outputFile, std::ios_base::out | std::ios_base::binary);
|
||||
if (!stream.good())
|
||||
throw CModelIOException(std::string("Could not open file: ") + ARGS.inputFile);
|
||||
ModelOutput::Write(model, stream, outputFormat);
|
||||
}
|
||||
catch (const CModelIOException& e)
|
||||
{
|
||||
std::cerr << "Writing output model failed with error:" << std::endl;
|
||||
std::cerr << e.what() << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue