librw/dffwrite.cpp

88 lines
1.7 KiB
C++
Raw Normal View History

2014-12-18 16:26:57 +00:00
#include <cstdio>
#include <cstdlib>
#include <cstring>
2014-12-25 18:37:36 +00:00
#include <cassert>
2014-12-18 16:26:57 +00:00
#include <new>
2014-12-18 16:26:57 +00:00
#include "rw.h"
#include "src/gtaplg.h"
2014-12-18 16:26:57 +00:00
using namespace std;
int
main(int argc, char *argv[])
{
// Rw::Version = 0x31000;
// Rw::Build = 0;
// Rw::Version = 0x33002;
2015-01-19 12:32:12 +00:00
Rw::RegisterEnvSpecPlugin();
2015-01-09 19:17:32 +00:00
Rw::RegisterMatFXPlugin();
2015-01-19 12:32:12 +00:00
Rw::RegisterMaterialRightsPlugin();
2015-01-09 19:17:32 +00:00
Rw::RegisterAtomicRightsPlugin();
2015-01-17 14:15:03 +00:00
Rw::RegisterHAnimPlugin();
Rw::RegisterNodeNamePlugin();
Rw::RegisterBreakableModelPlugin();
Rw::RegisterExtraVertColorPlugin();
Rw::Ps2::RegisterADCPlugin();
Rw::RegisterSkinPlugin();
Rw::RegisterNativeDataPlugin();
// Rw::Ps2::RegisterNativeDataPlugin();
Rw::RegisterMeshPlugin();
2015-01-09 19:17:32 +00:00
2014-12-18 16:26:57 +00:00
Rw::Clump *c;
// ifstream in(argv[1], ios::binary);
2014-12-30 16:39:39 +00:00
// Rw::StreamFile in;
// in.open(argv[1], "rb");
FILE *cf = fopen(argv[1], "rb");
assert(cf != NULL);
fseek(cf, 0, SEEK_END);
Rw::uint32 len = ftell(cf);
fseek(cf, 0, SEEK_SET);
Rw::uint8 *data = new Rw::uint8[len];
fread(data, len, 1, cf);
fclose(cf);
Rw::StreamMemory in;
in.open(data, len);
Rw::FindChunk(&in, Rw::ID_CLUMP, NULL, NULL);
2015-01-09 19:17:32 +00:00
Rw::DebugFile = argv[1];
c = Rw::Clump::streamRead(&in);
2014-12-25 18:37:36 +00:00
assert(c != NULL);
2014-12-30 16:39:39 +00:00
2014-12-18 16:26:57 +00:00
in.close();
2014-12-30 16:39:39 +00:00
delete[] data;
2014-12-18 16:26:57 +00:00
2014-12-28 11:06:19 +00:00
// Rw::Image *tga = Rw::readTGA("b.tga");
// assert(tga != NULL);
// Rw::writeTGA(tga, "out.tga");
2014-12-25 18:37:36 +00:00
// for(Rw::int32 i = 0; i < c->numAtomics; i++)
// Rw::Gl::Instance(c->atomicList[i]);
// ofstream out(argv[2], ios::binary);
2014-12-30 16:39:39 +00:00
// Rw::StreamFile out;
// out.open(argv[2], "wb");
data = new Rw::uint8[256*1024];
Rw::StreamMemory out;
out.open(data, 0, 256*1024);
c->streamWrite(&out);
2014-12-30 16:39:39 +00:00
cf = fopen(argv[2], "wb");
assert(cf != NULL);
fwrite(data, out.getLength(), 1, cf);
fclose(cf);
2014-12-18 16:26:57 +00:00
out.close();
2014-12-30 16:39:39 +00:00
delete[] data;
2014-12-18 16:26:57 +00:00
delete c;
return 0;
}