2025-06-19 15:06:41 -07:00
|
|
|
/* Copyright (C) 2025 Wildfire Games.
|
2023-12-02 16:30:12 -08:00
|
|
|
* This file is part of 0 A.D.
|
2009-04-18 10:00:33 -07:00
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
2009-04-18 10:00:33 -07:00
|
|
|
* 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.
|
|
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
2009-04-18 10:00:33 -07:00
|
|
|
* 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
|
2023-12-02 16:30:12 -08:00
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
2009-04-18 10:00:33 -07:00
|
|
|
*/
|
|
|
|
|
|
2006-12-05 16:06:05 -08:00
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
2025-06-19 15:06:41 -07:00
|
|
|
#include "DLL.h"
|
|
|
|
|
|
2006-12-26 14:43:09 -08:00
|
|
|
#include "CommonConvert.h"
|
|
|
|
|
#include "PMDConvert.h"
|
|
|
|
|
#include "PSAConvert.h"
|
2007-03-16 11:00:58 -07:00
|
|
|
#include "StdSkeletons.h"
|
2006-12-05 16:06:05 -08:00
|
|
|
|
2025-06-19 15:06:41 -07:00
|
|
|
#include <FCollada.h>
|
2006-12-19 19:22:24 -08:00
|
|
|
#include <cassert>
|
2025-06-19 15:06:41 -07:00
|
|
|
#include <cstdarg>
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstring>
|
|
|
|
|
#include <string>
|
2006-12-05 16:06:05 -08:00
|
|
|
|
2011-05-14 09:43:08 -07:00
|
|
|
void default_logger(void*, int severity, const char* message)
|
2006-12-05 16:06:05 -08:00
|
|
|
{
|
2009-11-06 02:59:10 -08:00
|
|
|
fprintf(stderr, "[%d] %s\n", severity, message);
|
2006-12-05 16:06:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static LogFn g_Logger = &default_logger;
|
2011-05-14 09:43:08 -07:00
|
|
|
static void* g_LoggerCBData = NULL;
|
2006-12-05 16:06:05 -08:00
|
|
|
|
2011-05-14 09:43:08 -07:00
|
|
|
EXPORT void set_logger(LogFn logger, void* cb_data)
|
2006-12-05 16:06:05 -08:00
|
|
|
{
|
2006-12-19 19:22:24 -08:00
|
|
|
if (logger)
|
2011-05-14 09:43:08 -07:00
|
|
|
{
|
2006-12-19 19:22:24 -08:00
|
|
|
g_Logger = logger;
|
2011-05-14 09:43:08 -07:00
|
|
|
g_LoggerCBData = cb_data;
|
|
|
|
|
}
|
2006-12-19 19:22:24 -08:00
|
|
|
else
|
2011-05-14 09:43:08 -07:00
|
|
|
{
|
2006-12-19 19:22:24 -08:00
|
|
|
g_Logger = &default_logger;
|
2011-05-14 09:43:08 -07:00
|
|
|
g_LoggerCBData = NULL;
|
|
|
|
|
}
|
2006-12-05 16:06:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Log(int severity, const char* msg, ...)
|
|
|
|
|
{
|
|
|
|
|
char buffer[1024];
|
|
|
|
|
va_list ap;
|
|
|
|
|
va_start(ap, msg);
|
|
|
|
|
vsnprintf(buffer, sizeof(buffer), msg, ap);
|
|
|
|
|
buffer[sizeof(buffer)-1] = '\0';
|
|
|
|
|
va_end(ap);
|
|
|
|
|
|
2011-05-14 09:43:08 -07:00
|
|
|
g_Logger(g_LoggerCBData, severity, buffer);
|
2006-12-05 16:06:05 -08:00
|
|
|
}
|
|
|
|
|
|
2006-12-19 19:22:24 -08:00
|
|
|
struct BufferedOutputCallback : public OutputCB
|
|
|
|
|
{
|
2009-07-26 03:36:32 -07:00
|
|
|
static const unsigned int bufferSize = 4096;
|
2006-12-19 19:22:24 -08:00
|
|
|
char buffer[bufferSize];
|
2009-07-26 03:36:32 -07:00
|
|
|
unsigned int bufferUsed;
|
2006-12-19 19:22:24 -08:00
|
|
|
|
|
|
|
|
OutputFn fn;
|
|
|
|
|
void* cb_data;
|
|
|
|
|
|
|
|
|
|
BufferedOutputCallback(OutputFn fn, void* cb_data)
|
|
|
|
|
: fn(fn), cb_data(cb_data), bufferUsed(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~BufferedOutputCallback()
|
|
|
|
|
{
|
|
|
|
|
// flush the buffer if it's not empty
|
|
|
|
|
if (bufferUsed > 0)
|
|
|
|
|
fn(cb_data, buffer, bufferUsed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void operator() (const char* data, unsigned int length)
|
|
|
|
|
{
|
|
|
|
|
if (bufferUsed+length > bufferSize)
|
|
|
|
|
{
|
|
|
|
|
// will overflow buffer, so flush the buffer first
|
|
|
|
|
fn(cb_data, buffer, bufferUsed);
|
|
|
|
|
bufferUsed = 0;
|
|
|
|
|
|
|
|
|
|
if (length > bufferSize)
|
|
|
|
|
{
|
|
|
|
|
// new data won't fit in buffer, so send it out unbuffered
|
|
|
|
|
fn(cb_data, data, length);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// append onto buffer
|
|
|
|
|
memcpy(buffer+bufferUsed, data, length);
|
|
|
|
|
bufferUsed += length;
|
|
|
|
|
assert(bufferUsed <= bufferSize);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2006-12-26 14:43:09 -08:00
|
|
|
int convert_dae_to_whatever(const char* dae, OutputFn writer, void* cb_data, void(*conv)(const char*, OutputCB&, std::string&))
|
2006-12-05 16:06:05 -08:00
|
|
|
{
|
|
|
|
|
Log(LOG_INFO, "Starting conversion");
|
|
|
|
|
|
2008-08-24 15:22:25 -07:00
|
|
|
FCollada::Initialize();
|
|
|
|
|
|
2006-12-05 16:06:05 -08:00
|
|
|
std::string xmlErrors;
|
2006-12-26 14:43:09 -08:00
|
|
|
BufferedOutputCallback cb(writer, cb_data);
|
2006-12-05 16:06:05 -08:00
|
|
|
try
|
|
|
|
|
{
|
2006-12-26 14:43:09 -08:00
|
|
|
conv(dae, cb, xmlErrors);
|
2006-12-05 16:06:05 -08:00
|
|
|
}
|
2007-02-28 16:24:34 -08:00
|
|
|
catch (const ColladaException& e)
|
2006-12-05 16:06:05 -08:00
|
|
|
{
|
|
|
|
|
if (! xmlErrors.empty())
|
2009-11-06 02:59:10 -08:00
|
|
|
Log(LOG_ERROR, "%s", xmlErrors.c_str());
|
2006-12-05 16:06:05 -08:00
|
|
|
|
2009-11-06 02:59:10 -08:00
|
|
|
Log(LOG_ERROR, "%s", e.what());
|
2006-12-05 16:06:05 -08:00
|
|
|
|
2008-08-24 15:22:25 -07:00
|
|
|
FCollada::Release();
|
|
|
|
|
|
2006-12-05 16:06:05 -08:00
|
|
|
return -2;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-24 15:22:25 -07:00
|
|
|
FCollada::Release();
|
|
|
|
|
|
2006-12-05 16:06:05 -08:00
|
|
|
if (! xmlErrors.empty())
|
|
|
|
|
{
|
2009-11-06 02:59:10 -08:00
|
|
|
Log(LOG_ERROR, "%s", xmlErrors.c_str());
|
2006-12-05 16:06:05 -08:00
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-12-26 14:43:09 -08:00
|
|
|
|
2007-01-26 10:26:45 -08:00
|
|
|
EXPORT int convert_dae_to_pmd(const char* dae, OutputFn pmd_writer, void* cb_data)
|
2006-12-26 14:43:09 -08:00
|
|
|
{
|
|
|
|
|
return convert_dae_to_whatever(dae, pmd_writer, cb_data, ColladaToPMD);
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-26 10:26:45 -08:00
|
|
|
EXPORT int convert_dae_to_psa(const char* dae, OutputFn psa_writer, void* cb_data)
|
2006-12-26 14:43:09 -08:00
|
|
|
{
|
|
|
|
|
return convert_dae_to_whatever(dae, psa_writer, cb_data, ColladaToPSA);
|
|
|
|
|
}
|
2007-03-16 11:00:58 -07:00
|
|
|
|
2007-03-16 16:32:10 -07:00
|
|
|
EXPORT int set_skeleton_definitions(const char* xml, int length)
|
2007-03-16 11:00:58 -07:00
|
|
|
{
|
2007-03-16 16:32:10 -07:00
|
|
|
std::string xmlErrors;
|
2007-03-16 11:00:58 -07:00
|
|
|
try
|
|
|
|
|
{
|
2007-03-16 16:32:10 -07:00
|
|
|
Skeleton::LoadSkeletonDataFromXml(xml, length, xmlErrors);
|
2007-03-16 11:00:58 -07:00
|
|
|
}
|
|
|
|
|
catch (const ColladaException& e)
|
|
|
|
|
{
|
2007-03-16 16:32:10 -07:00
|
|
|
if (! xmlErrors.empty())
|
2009-11-06 02:59:10 -08:00
|
|
|
Log(LOG_ERROR, "%s", xmlErrors.c_str());
|
2007-03-16 16:32:10 -07:00
|
|
|
|
2009-11-06 02:59:10 -08:00
|
|
|
Log(LOG_ERROR, "%s", e.what());
|
2007-03-16 11:00:58 -07:00
|
|
|
|
2007-03-16 16:32:10 -07:00
|
|
|
return -1;
|
2007-03-16 11:00:58 -07:00
|
|
|
}
|
2007-03-16 16:32:10 -07:00
|
|
|
|
2007-03-16 11:00:58 -07:00
|
|
|
return 0;
|
|
|
|
|
}
|