librw/tools/dffwrite/dffwrite.cpp

365 lines
8.4 KiB
C++
Raw Normal View History

2014-12-18 17:26:57 +01:00
#include <cstdio>
#include <cstdlib>
#include <cstring>
2014-12-25 19:37:36 +01:00
#include <cassert>
#include <ctype.h>
#include <new>
2014-12-18 17:26:57 +01:00
#include <rw.h>
#include <src/gtaplg.h>
2014-12-18 17:26:57 +01:00
using namespace std;
2015-12-14 18:52:50 +01:00
using namespace rw;
2014-12-18 17:26:57 +01:00
struct bone {
int32 id;
char *name;
2015-12-20 10:38:27 +01:00
char *newName;
};
bone idMapVC[] = {
2015-12-20 10:38:27 +01:00
{ 0, "Root", NULL },
{ 1, "Pelvis", NULL },
{ 2, "Spine", NULL },
{ 3, "Spine1", NULL },
{ 4, "Neck", NULL },
{ 5, "Head", NULL },
{ 31, "Bip01 L Clavicle", NULL },
{ 32, "L UpperArm", NULL },
{ 33, "L Forearm", NULL },
{ 34, "L Hand", NULL },
{ 35, "L Finger", NULL },
{ 21, "Bip01 R Clavicle", NULL },
{ 22, "R UpperArm", NULL },
{ 23, "R Forearm", NULL },
{ 24, "R Hand", NULL },
{ 25, "R Finger", NULL },
{ 41, "L Thigh", NULL },
{ 42, "L Calf", NULL },
{ 43, "L Foot", NULL },
{ 2000, "L Toe0", NULL },
{ 51, "R Thigh", NULL },
{ 52, "R Calf", NULL },
{ 53, "R Foot", NULL },
{ 2001, "R Toe0", NULL },
};
bone csIdMapVC[] = {
2015-12-20 10:38:27 +01:00
{ 0, "Root", NULL },
{ 1, "Pelvis", NULL },
{ 2, "Spine", NULL },
{ 3, "Spine1", NULL },
{ 4, "Neck", NULL },
{ 5, "Head", NULL },
{ 2000, "HeadNub", "Bip01 HeadNub" },
{ 5006, "llid", NULL },
{ 5005, "rlid", NULL },
{ 5001, "rbrow1", NULL },
{ 5002, "rbrow2", NULL },
{ 5004, "lbrow1", NULL },
{ 5003, "lbrow2", NULL },
{ 5008, "lcheek", NULL },
{ 5015, "rcorner", NULL },
{ 5016, "lcorner", NULL },
{ 5017, "jaw1", NULL },
{ 5018, "jaw2", NULL },
{ 5019, "llip", NULL },
{ 5020, "llip01", NULL },
{ 5012, "ltlip1", NULL },
{ 5013, "ltlip2", NULL },
{ 5014, "ltlip3", NULL },
{ 5009, "rtlip1", NULL },
{ 5010, "rtlip2", NULL },
{ 5011, "rtlip3", NULL },
{ 5007, "rcheek", NULL },
{ 5021, "reye", NULL },
{ 5022, "leye", NULL },
{ 31, "L Clavicle", "Bip01 L Clavicle" },
{ 32, "L UpperArm", NULL },
{ 33, "L Forearm", NULL },
{ 34, "L Hand", NULL },
{ 35, "L Finger0", "L Finger" },
{ 36, "L Finger01", "Root L Finger01" },
{ 2001, "L Finger0Nub", "Bip01 L Finger0Nub" },
{ 21, "R Clavicle", "Bip01 R Clavicle" },
{ 22, "R UpperArm", NULL },
{ 23, "R Forearm", NULL },
{ 24, "R Hand", NULL },
{ 25, "R Finger0", "R Finger" },
{ 26, "R Finger01", "Root R Finger01" },
{ 2002, "R Finger0Nub", "Bip01 R Finger0Nub" },
{ 41, "L Thigh", NULL },
{ 42, "L Calf", NULL },
{ 43, "L Foot", NULL },
{ 2003, "L Toe0", NULL },
{ 2004, "L Toe0Nub", "Bip01 L Toe0Nub" },
{ 51, "R Thigh", NULL },
{ 52, "R Calf", NULL },
{ 53, "R Foot", NULL },
{ 2005, "R Toe0", NULL },
{ 2006, "R Toe0Nub", "Bip01 R Toe0Nub" },
};
2015-12-20 10:38:27 +01:00
//int
//strcmpci(const char *s, const char *t)
//{
// while(*s && *t && tolower(*s) == tolower(*t)){
// s++;
// t++;
// }
// return *s-*t;
//}
//Frame*
//assignIdCB(Frame *f, void *p)
//{
// HAnimData *hanim = PLUGINOFFSET(HAnimData, f, hAnimOffset);
// char *name = PLUGINOFFSET(char, f, gta::nodeNameOffset);
// HAnimHierarchy *hier = (HAnimHierarchy*)p;
// bone *map = hier->numNodes == 24 ? idMapVC : csIdMapVC;
// for(int32 i = 0; i < hier->numNodes; i++){
// if(strcmpci(name, map[i].name) == 0){
// if(map[i].newName)
// strncpy(name, map[i].newName, 24);
// //printf("%x %d %s\n", hanim->id, hanim->id, name);
// //hanim->id = map[i].id;
// break;
// }
// }
// f->forAllChildren(assignIdCB, hier);
// return f;
//}
Frame*
findHierCB(Frame *f, void *p)
{
HAnimData *hanim = PLUGINOFFSET(HAnimData, f, hAnimOffset);
if(hanim->hierarchy){
*(HAnimHierarchy**)p = hanim->hierarchy;
return NULL;
}
f->forAllChildren(findHierCB, p);
return f;
}
HAnimHierarchy*
getHierarchy(Clump *c)
{
HAnimHierarchy *hier = NULL;
findHierCB((Frame*)c->parent, &hier);
return hier;
}
void
assignNodeIDs(Clump *c)
{
HAnimHierarchy *hier = getHierarchy(c);
2015-12-20 10:38:27 +01:00
if(hier == NULL)
return;
2015-12-20 10:38:27 +01:00
// if(hier == NULL || (hier->numNodes != 24 && hier->numNodes != 53))
// return;
// bone *map = hier->numNodes == 24 ? idMapVC : csIdMapVC;
for(int32 i = 0; i < hier->numNodes; i++){
// printf("%x %x %d\n", hier->nodeInfo[i].index, hier->nodeInfo[i].id, hier->nodeInfo[i].id);
int32 id = hier->nodeInfo[i].id;
if(id == 255) hier->nodeInfo[i].id = -1;
else if(id > 0x80) hier->nodeInfo[i].id |= 0x1300;
// hier->nodeInfo[i].id = map[hier->nodeInfo[i].index].id;
}
2015-12-20 10:38:27 +01:00
// assignIdCB((Frame*)c->parent, hier);
}
2015-12-20 10:38:27 +01:00
//void
//mirrorFrameHier(Frame *f)
//{
// if(f->next){
// Frame *n = f->next;
// Frame *p = (Frame*)f->parent;
// f->removeChild();
// mirrorFrameHier(n);
// p->addChild(f);
// }
// if(f->child)
// mirrorFrameHier(f->child);
//}
//void
//generateInvBoneMats(Atomic *a)
//{
// float32 rootInv[16], tmp[16];
// HAnimHierarchy *h = getHierarchy(a->clump);
// Frame *root = h->parentFrame;
// root->updateLTM();
// matrixInvert(rootInv, root->ltm);
// Skin *skin = *PLUGINOFFSET(Skin*, a->geometry, skinGlobals.offset);
// assert(skin->numBones == h->numNodes);
// for(int32 i = 0; i < h->numNodes; i++){
// //assert(h->nodeInfo[i].frame);
// if(h->nodeInfo[i].frame == NULL){
// printf("warning: no node for node %d/%d\n", i, h->nodeInfo[i].id);
// continue;
// }
// h->nodeInfo[i].frame->updateLTM();
// float32 *m = &skin->inverseMatrices[i*16];
// matrixMult(tmp, rootInv, h->nodeInfo[i].frame->ltm);
// matrixInvert(m, tmp);
// }
//}
//Frame*
//findFrameById(Frame *f, int32 id)
//{
// if(f == NULL)
// return NULL;
// HAnimData *hanim = PLUGINOFFSET(HAnimData, f, hAnimOffset);
// if(hanim->id == id)
// return f;
// Frame *ff = findFrameById(f->next, id);
// if(ff) return ff;
// return findFrameById(f->child, id);
//}
//void
//attachFrames(Clump *c)
//{
// HAnimHierarchy *h = getHierarchy(c);
// for(int32 i = 0; i < h->numNodes; i++)
// h->nodeInfo[i].frame = findFrameById(h->parentFrame, h->nodeInfo[i].id);
//}
2014-12-18 17:26:57 +01:00
int
main(int argc, char *argv[])
{
// rw::version = 0x31000;
// rw::build = 0;
// rw::version = 0;
// rw::version = 0x32000;
rw::version = 0x33002;
2015-12-14 18:52:50 +01:00
rw::platform = PLATFORM_D3D8;
2015-08-16 23:23:41 +02:00
// rw::version = 0x30200;
2015-12-18 01:10:42 +01:00
int lcs = 1;
matFXGlobals.hack = lcs;
2015-12-20 10:38:27 +01:00
skinGlobals.forceSkipUsedBones = lcs;
2015-12-18 01:10:42 +01:00
gta::attachPlugins();
rw::Clump *c;
2014-12-18 17:26:57 +01:00
if(argc < 2){
printf("usage: %s input.dff [output.dff]\n", argv[0]);
return 0;
}
// rw::StreamFile in;
2014-12-30 17:39:39 +01:00
// in.open(argv[1], "rb");
2015-12-19 15:40:34 +01:00
ChunkHeaderInfo header;
2015-12-14 18:52:50 +01:00
if(0){
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);
rw::debugFile = argv[1];
c = rw::Clump::streamRead(&in);
assert(c != NULL);
in.close();
delete[] data;
}else{
rw::StreamFile in;
if(in.open(argv[1], "rb") == NULL){
printf("couldn't open file\n");
return 1;
}
debugFile = argv[1];
readChunkHeaderInfo(&in, &header);
if(header.type == ID_UVANIMDICT){
UVAnimDictionary *dict = UVAnimDictionary::streamRead(&in);
currentUVAnimDictionary = dict;
readChunkHeaderInfo(&in, &header);
}
assert(header.type == ID_CLUMP);
2015-12-18 01:10:42 +01:00
if(lcs)
c = clumpStreamReadRsl(&in);
else
c = Clump::streamRead(&in);
2015-12-14 18:52:50 +01:00
assert(c != NULL);
}
if(lcs){
HAnimHierarchy *hier = getHierarchy(c);
2015-12-20 10:38:27 +01:00
if(hier){
hier->maxInterpKeyFrameSize = findAnimInterpolatorInfo(1)->keyFrameSize;
2015-12-20 10:38:27 +01:00
//mirrorFrameHier((Frame*)c->parent);
assignNodeIDs(c);
}
//attachFrames(c);
for(int32 i = 0; i < c->numAtomics; i++){
Skin *skin = *PLUGINOFFSET(Skin*, c->atomicList[i]->geometry, skinGlobals.offset);
2015-12-18 01:10:42 +01:00
convertRslGeometry(c->atomicList[i]->geometry);
if(skin){
c->atomicList[i]->pipeline = skinGlobals.pipelines[rw::platform];
2015-12-20 10:38:27 +01:00
//generateInvBoneMats(c->atomicList[i]);
}
}
}
2015-12-14 18:52:50 +01:00
2015-12-19 15:40:34 +01:00
if(rw::version == 0){
rw::version = header.version;
rw::build = header.build;
}
2015-12-14 18:52:50 +01:00
// rw::Image::setSearchPath("./;/home/aap/gamedata/ps2/gtavc/MODELS/gta3_archive/txd_extracted/");
2015-06-17 21:51:33 +02:00
/*
// rw::Image *tga = rw::readTGA("b.tga");
rw::Image *tga = rw::readTGA("player.tga");
assert(tga != NULL);
rw::writeTGA(tga, "out.tga");
2015-06-17 21:51:33 +02:00
*/
2014-12-25 19:37:36 +01:00
// for(rw::int32 i = 0; i < c->numAtomics; i++)
// rw::Gl::Instance(c->atomicList[i]);
2015-12-14 18:52:50 +01:00
if(0){
uint8 *data = new rw::uint8[1024*1024];
rw::StreamMemory out;
out.open(data, 0, 1024*1024);
c->streamWrite(&out);
FILE *cf = fopen(argv[2], "wb");
assert(cf != NULL);
fwrite(data, out.getLength(), 1, cf);
fclose(cf);
out.close();
delete[] data;
}else{
rw::StreamFile out;
if(argc > 2)
out.open(argv[2], "wb");
else
out.open("out.dff", "wb");
2015-12-18 17:34:12 +01:00
// if(lcs)
// clumpStreamWriteRsl(&out, c);
// else
2015-12-18 01:10:42 +01:00
c->streamWrite(&out);
2015-12-14 18:52:50 +01:00
out.close();
}
2014-12-18 17:26:57 +01:00
delete c;
return 0;
}