This commit is contained in:
parent
be528e6f01
commit
72c785dc92
7
Graphics/characters/clam/AnimList.txt
Normal file
7
Graphics/characters/clam/AnimList.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Comment
|
||||||
|
clamshut
|
||||||
|
clamsidesnap
|
||||||
|
clamsnapup
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -15,16 +15,19 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
CMkActor3d ThisActor;
|
vector<CMkActor3d> ActorList;
|
||||||
|
int TPBase=-1,TPWidth=-1,TPHeight=-1;
|
||||||
|
GString TPOutStr;
|
||||||
//std::vector<GString> ExtraTex;
|
//std::vector<GString> ExtraTex;
|
||||||
|
|
||||||
|
CTexGrab CMkActor3d::TexGrab;
|
||||||
|
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
|
|
||||||
char * CycleCommands(char *String,int Num)
|
char * CycleCommands(char *String,int Num)
|
||||||
{
|
{
|
||||||
int TPBase=-1,TPWidth=-1,TPHeight=-1;
|
|
||||||
char Text[2048],*TextPtr;
|
char Text[2048],*TextPtr;
|
||||||
int Count,i;
|
int Count;
|
||||||
|
|
||||||
if (String[0]=='-' || String[0]=='/')
|
if (String[0]=='-' || String[0]=='/')
|
||||||
{
|
{
|
||||||
@ -34,9 +37,13 @@ int Count,i;
|
|||||||
// Switches
|
// Switches
|
||||||
case 'o':
|
case 'o':
|
||||||
OutStr = CheckFileString(String);
|
OutStr = CheckFileString(String);
|
||||||
|
OutStr.Upper();
|
||||||
|
OutStr.Append('\\');
|
||||||
break;
|
break;
|
||||||
case 'i':
|
case 'i':
|
||||||
IncludeFile = CheckFileString(String);
|
IncludeFile = CheckFileString(String);
|
||||||
|
IncludeFile.Upper();
|
||||||
|
IncludeFile.Append('\\');
|
||||||
break;
|
break;
|
||||||
case 'd':
|
case 'd':
|
||||||
DebugOn =true;
|
DebugOn =true;
|
||||||
@ -45,6 +52,9 @@ int Count,i;
|
|||||||
TpStr= CheckFileString(String);
|
TpStr= CheckFileString(String);
|
||||||
Scale=atof(TpStr);
|
Scale=atof(TpStr);
|
||||||
break;
|
break;
|
||||||
|
case 'g':
|
||||||
|
TPOutStr= CheckFileString(String);
|
||||||
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
TpStr= CheckFileString(String);
|
TpStr= CheckFileString(String);
|
||||||
TextPtr=Text;
|
TextPtr=Text;
|
||||||
@ -56,29 +66,6 @@ int Count,i;
|
|||||||
TPWidth=atol(TextPtr);
|
TPWidth=atol(TextPtr);
|
||||||
TextPtr+=strlen(TextPtr)+1;
|
TextPtr+=strlen(TextPtr)+1;
|
||||||
TPHeight=atol(TextPtr);
|
TPHeight=atol(TextPtr);
|
||||||
ThisActor.SetTPData(TPBase,TPWidth,TPHeight);
|
|
||||||
break;
|
|
||||||
case 'x':
|
|
||||||
TpStr= CheckFileString(String);
|
|
||||||
TextPtr=Text;
|
|
||||||
strcpy(TextPtr,TpStr);
|
|
||||||
Count=ZeroAndCountCommas(TextPtr);
|
|
||||||
for (i=0; i<Count+1; i++)
|
|
||||||
{
|
|
||||||
ThisActor.AddTex(TextPtr);
|
|
||||||
TextPtr+=strlen(TextPtr)+1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'a':
|
|
||||||
TpStr= CheckFileString(String);
|
|
||||||
TextPtr=Text;
|
|
||||||
strcpy(TextPtr,TpStr);
|
|
||||||
Count=ZeroAndCountCommas(TextPtr);
|
|
||||||
for (i=0; i<Count+1; i++)
|
|
||||||
{
|
|
||||||
ThisActor.AddAnim(TextPtr);
|
|
||||||
TextPtr+=strlen(TextPtr)+1;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'q':
|
case 'q':
|
||||||
StripLength=4;
|
StripLength=4;
|
||||||
@ -90,7 +77,9 @@ int Count,i;
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ThisActor.SetInName(String);
|
GString UpperName(String);
|
||||||
|
UpperName.Upper();
|
||||||
|
MyFiles.AddFile(UpperName);
|
||||||
}
|
}
|
||||||
|
|
||||||
return(String);
|
return(String);
|
||||||
@ -100,15 +89,13 @@ int Count,i;
|
|||||||
|
|
||||||
void Usage(char *ErrStr)
|
void Usage(char *ErrStr)
|
||||||
{
|
{
|
||||||
printf("\nMkActor3d: by Dave\n");
|
printf("\nMkActor3d (usese scripts): by Dave\n");
|
||||||
printf("Usage: MkActor3d <file> [ <file>.. ] [ switches.. ]\n");
|
printf("Usage: MkActor3d <file> [ <file>.. ] [ switches.. ]\n");
|
||||||
printf("Switches:\n");
|
printf("Switches:\n");
|
||||||
printf(" -o:[FILE] Set output Dir\n");
|
printf(" -o:[FILE] Set output Dir\n");
|
||||||
printf(" -s:nn Set Scaling value\n");
|
printf(" -s:nn Set Scaling value\n");
|
||||||
printf(" -t:p,w,h Set TPage No,Width,Height\n");
|
printf(" -t:p,w,h Set TPage No,Width,Height\n");
|
||||||
printf(" -d: Enable Debug output\n");
|
printf(" -d: Enable Debug output\n");
|
||||||
printf(" -x: Add Texture\n");
|
|
||||||
printf(" -d: Add Anim\n");
|
|
||||||
printf(" -q: Enable Quadding\n");
|
printf(" -q: Enable Quadding\n");
|
||||||
GObject::Error(ERR_FATAL,ErrStr);
|
GObject::Error(ERR_FATAL,ErrStr);
|
||||||
}
|
}
|
||||||
@ -116,11 +103,34 @@ void Usage(char *ErrStr)
|
|||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
int main (int argc, char *argv[])
|
int main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
int i,ListSize;
|
||||||
|
|
||||||
CommandLine(argc,argv,CycleCommands);
|
CommandLine(argc,argv,CycleCommands);
|
||||||
if (OutStr.Empty()) Usage("No Output File Set\n");
|
if (OutStr.Empty()) Usage("No Output File Set\n");
|
||||||
|
vector<GString> const &Files = MyFiles.GetFileInfoVector();
|
||||||
|
|
||||||
ThisActor.ProcessActor();
|
|
||||||
ThisActor.ProcessAnim();
|
for (i=0; i<Files.size(); i++)
|
||||||
|
{
|
||||||
|
ActorList.push_back(CMkActor3d(Files[i]));
|
||||||
|
}
|
||||||
|
|
||||||
|
CMkActor3d::SetTPData(TPOutStr,TPBase,TPWidth,TPHeight);
|
||||||
|
|
||||||
|
ListSize=ActorList.size();
|
||||||
|
for (i=0; i<ListSize; i++)
|
||||||
|
{
|
||||||
|
ActorList[i].ActorLoad();
|
||||||
|
ActorList[i].ActorProcess();
|
||||||
|
ActorList[i].AnimLoad();
|
||||||
|
}
|
||||||
|
CMkActor3d::TexProcess();
|
||||||
|
|
||||||
|
for (i=0; i<ListSize; i++)
|
||||||
|
{
|
||||||
|
ActorList[i].ActorWrite();
|
||||||
|
ActorList[i].AnimWrite();
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -128,7 +138,7 @@ int main (int argc, char *argv[])
|
|||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
void CMkActor3d::SetInName(GString const &String)
|
CMkActor3d::CMkActor3d(GString const &String)
|
||||||
{
|
{
|
||||||
GString UpperName(String);
|
GString UpperName(String);
|
||||||
UpperName.Upper();
|
UpperName.Upper();
|
||||||
@ -138,57 +148,80 @@ GFName File=UpperName;
|
|||||||
InPath=File.Drive();
|
InPath=File.Drive();
|
||||||
InPath+=File.Dir();
|
InPath+=File.Dir();
|
||||||
Name=File.File();
|
Name=File.File();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
void CMkActor3d::SetTPData(int TPBase,int TPW,int TPH)
|
void CMkActor3d::SetTPData(const char *Name,int TPBase,int TPW,int TPH)
|
||||||
{
|
{
|
||||||
TPageBase=TPBase;
|
GString Filename=OutStr+Name;
|
||||||
TPageWidth=TPW ;
|
GString IncName;
|
||||||
TPageHeight=TPH;
|
|
||||||
}
|
|
||||||
|
|
||||||
//***************************************************************************
|
IncName=IncludeFile;
|
||||||
void CMkActor3d::AddAnim(const char *Name)
|
IncName+=Name;
|
||||||
{
|
|
||||||
InAnimList.push_back(Name);
|
|
||||||
}
|
|
||||||
|
|
||||||
//***************************************************************************
|
TexGrab.SetTPage(TPBase,TPW,TPH);
|
||||||
void CMkActor3d::AddTex(const char *Name)
|
TexGrab.SetOutFile(Filename+".Tex");
|
||||||
{
|
TexGrab.SetDebugOut(Filename+".Lbm");
|
||||||
InTexList.push_back(Name);
|
TexGrab.SetIncFile(IncName+".h");
|
||||||
}
|
TexGrab.NoSort();
|
||||||
|
TexGrab.AnimatedHeadersOnly(true);
|
||||||
//***************************************************************************
|
TexGrab.DontOutputBoxes(true);
|
||||||
void CMkActor3d::ProcessActor()
|
TexGrab.AllowRotate(true);
|
||||||
{
|
|
||||||
ThisActor.ActorLoad();
|
|
||||||
ThisActor.ActorProcess();
|
|
||||||
ThisActor.ActorWrite();
|
|
||||||
}
|
|
||||||
|
|
||||||
//***************************************************************************
|
|
||||||
void CMkActor3d::ProcessAnim()
|
|
||||||
{
|
|
||||||
ThisActor.AnimLoad();
|
|
||||||
ThisActor.AnimWrite();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
void CMkActor3d::ActorLoad()
|
void CMkActor3d::ActorLoad()
|
||||||
{
|
{
|
||||||
OutStr.Upper();
|
|
||||||
OutStr.Append('\\');
|
|
||||||
OutFile=OutStr+Name;
|
OutFile=OutStr+Name;
|
||||||
IncludeFile.Upper();
|
|
||||||
IncludeFile.Append('\\');
|
|
||||||
IncFile=IncludeFile;
|
IncFile=IncludeFile;
|
||||||
IncFile+="ACTOR_";
|
IncFile+="ACTOR_";
|
||||||
IncFile+=Name;
|
IncFile+=Name;
|
||||||
|
|
||||||
Scene.Load(InFilename);
|
Scene.Load(InFilename);
|
||||||
|
ReadScript(InPath+"TexList.Txt",InTexList);
|
||||||
|
ReadScript(InPath+"AnimList.Txt",InAnimList);
|
||||||
|
}
|
||||||
|
|
||||||
|
//***************************************************************************
|
||||||
|
void CMkActor3d::ReadScript(const char *Filename,vector<GString> &List)
|
||||||
|
{
|
||||||
|
char *Script,*Ptr;
|
||||||
|
int Size;
|
||||||
|
File=fopen(Filename,"rb");
|
||||||
|
if (!File) return;
|
||||||
|
fseek(File,0,SEEK_END);
|
||||||
|
Size=ftell(File);
|
||||||
|
fseek(File,0,SEEK_SET);
|
||||||
|
Script=(char*)malloc(Size+1);
|
||||||
|
// Load It
|
||||||
|
fread(Script,Size,1,File);
|
||||||
|
fclose(File);
|
||||||
|
|
||||||
|
// Extract Names
|
||||||
|
Ptr=Script;
|
||||||
|
Script[Size]=0;
|
||||||
|
while (*Ptr)
|
||||||
|
{
|
||||||
|
GString Str;
|
||||||
|
|
||||||
|
while (*Ptr=='\n' || *Ptr=='\r'|| *Ptr==' ') *Ptr++; // Skip gaff
|
||||||
|
if (*Ptr)
|
||||||
|
{
|
||||||
|
if (*Ptr=='#')
|
||||||
|
{ // Skip commented lines
|
||||||
|
while (*Ptr!='\n' && *Ptr) Ptr++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{ // Read data
|
||||||
|
while (*Ptr!=' ' && *Ptr!='\n' && *Ptr!='\r' && *Ptr)
|
||||||
|
{
|
||||||
|
Str.Append(*Ptr++);
|
||||||
|
}
|
||||||
|
List.push_back(Str);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
free(Script);
|
||||||
}
|
}
|
||||||
|
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
@ -311,12 +344,8 @@ int ListSize=Skel.size();
|
|||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
void CMkActor3d::ActorProcess()
|
void CMkActor3d::ActorProcess()
|
||||||
{
|
{
|
||||||
GString IncName=IncFile+".h";
|
FaceList.SetTexGrab(TexGrab);
|
||||||
|
|
||||||
FaceList.SetTexBasePath(InPath);
|
FaceList.SetTexBasePath(InPath);
|
||||||
FaceList.SetTexOut(OutFile+".Tex",TPageBase,TPageWidth,TPageHeight);
|
|
||||||
FaceList.SetTexDebugOut(OutFile+".Lbm");
|
|
||||||
if (!IncludeFile.Empty()) FaceList.SetTexInclude(IncName);
|
|
||||||
|
|
||||||
ProcessSkel(1,-1);
|
ProcessSkel(1,-1);
|
||||||
BuildSkelOut();
|
BuildSkelOut();
|
||||||
@ -325,11 +354,11 @@ GString IncName=IncFile+".h";
|
|||||||
int ListSize=InTexList.size();
|
int ListSize=InTexList.size();
|
||||||
for (int i=0; i<ListSize; i++)
|
for (int i=0; i<ListSize; i++)
|
||||||
{
|
{
|
||||||
FaceList.AddTex(InTexList[i]);
|
GString Filename;
|
||||||
|
Filename="Textures/";
|
||||||
|
Filename+=InTexList[i]+".Bmp";
|
||||||
|
FaceList.AddTex(Filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
FaceList.ProcessTextures();
|
|
||||||
FaceList.Process();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -338,6 +367,9 @@ void CMkActor3d::ActorWrite()
|
|||||||
{
|
{
|
||||||
GString OutName=OutFile+".A3d";
|
GString OutName=OutFile+".A3d";
|
||||||
|
|
||||||
|
FaceList.Process();
|
||||||
|
|
||||||
|
printf("Write %s:\t",Name);
|
||||||
File=fopen(OutName,"wb");
|
File=fopen(OutName,"wb");
|
||||||
|
|
||||||
// Write Dummy Hdr
|
// Write Dummy Hdr
|
||||||
@ -351,20 +383,20 @@ GString OutName=OutFile+".A3d";
|
|||||||
// Write Tris
|
// Write Tris
|
||||||
FileHdr.TriCount=FaceList.GetTriFaceCount();
|
FileHdr.TriCount=FaceList.GetTriFaceCount();
|
||||||
FileHdr.TriList=(sTri*)FaceList.WriteTriList(File);
|
FileHdr.TriList=(sTri*)FaceList.WriteTriList(File);
|
||||||
printf("%i Tris\n",FileHdr.TriCount);
|
printf("T:%i\t",FileHdr.TriCount);
|
||||||
// Write Quads
|
// Write Quads
|
||||||
FileHdr.QuadCount=FaceList.GetQuadFaceCount();
|
FileHdr.QuadCount=FaceList.GetQuadFaceCount();
|
||||||
FileHdr.QuadList=(sQuad*)FaceList.WriteQuadList(File);
|
FileHdr.QuadList=(sQuad*)FaceList.WriteQuadList(File);
|
||||||
printf("%i Quads\n",FileHdr.QuadCount);
|
printf("Q:%i\t",FileHdr.QuadCount);
|
||||||
// Write VtxList
|
// Write VtxList
|
||||||
FileHdr.VtxCount=FaceList.GetVtxCount();
|
FileHdr.VtxCount=FaceList.GetVtxCount();
|
||||||
FileHdr.VtxList=(sVtx*)FaceList.WriteVtxList(File);
|
FileHdr.VtxList=(sVtx*)FaceList.WriteVtxList(File);
|
||||||
printf("%i Vtx\n",FileHdr.VtxCount);
|
printf("V:%i\t",FileHdr.VtxCount);
|
||||||
|
|
||||||
// Write TexList
|
// Write TexList
|
||||||
FileHdr.TexInfo=(sTexInfo*)WriteTexInfoList();
|
FileHdr.TexInfo=(sTexInfo*)WriteTexInfoList();
|
||||||
|
|
||||||
printf("Size=%i\n",ftell(File));
|
printf("S:%i\n",ftell(File));
|
||||||
|
|
||||||
// Rewrite Header
|
// Rewrite Header
|
||||||
fseek(File, 0, SEEK_SET);
|
fseek(File, 0, SEEK_SET);
|
||||||
@ -443,10 +475,12 @@ int ListSize=InAnimList.size();
|
|||||||
{
|
{
|
||||||
CScene Scene;
|
CScene Scene;
|
||||||
int ThisBoneCount;
|
int ThisBoneCount;
|
||||||
GFName Name=InAnimList[i];
|
GString Filename=InPath+InAnimList[i]+".Gin";
|
||||||
|
GFName Name=Filename;
|
||||||
|
|
||||||
printf("%s\t",Name.File());
|
printf("%s\t",Name.File());
|
||||||
Scene.Load(InAnimList[i]);
|
|
||||||
|
Scene.Load(Filename);
|
||||||
|
|
||||||
// Process Anim
|
// Process Anim
|
||||||
sAnim ThisAnim;
|
sAnim ThisAnim;
|
||||||
@ -464,6 +498,7 @@ int ListSize=InAnimList.size();
|
|||||||
{
|
{
|
||||||
GObject::Error(ERR_FATAL,"Invalid skeleton\n");
|
GObject::Error(ERR_FATAL,"Invalid skeleton\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -526,6 +561,7 @@ int Anim,AnimCount=AnimList.size();
|
|||||||
sAnimFileHdr FileHdr;
|
sAnimFileHdr FileHdr;
|
||||||
sAnimHdr Hdr;
|
sAnimHdr Hdr;
|
||||||
|
|
||||||
|
if (!AnimCount) return; // No anims, dont bother
|
||||||
File=fopen(OutName,"wb");
|
File=fopen(OutName,"wb");
|
||||||
|
|
||||||
// Write Dummy FileHdr
|
// Write Dummy FileHdr
|
||||||
|
@ -36,19 +36,21 @@ struct sAnim
|
|||||||
class CMkActor3d
|
class CMkActor3d
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void SetInName(GString const &In);
|
CMkActor3d(GString const &In);
|
||||||
void SetTPData(int TPBase,int TPW,int TPH);
|
|
||||||
|
|
||||||
void AddAnim(const char *Name);
|
static void SetTPData(const char *Name,int TPBase,int TPW,int TPH);
|
||||||
void AddTex(const char *Name);
|
static void TexProcess() {TexGrab.Process();}
|
||||||
|
|
||||||
void ProcessActor();
|
|
||||||
void ProcessAnim();
|
|
||||||
private:
|
|
||||||
void ActorLoad();
|
void ActorLoad();
|
||||||
void ActorProcess();
|
void ActorProcess();
|
||||||
void ActorWrite();
|
void ActorWrite();
|
||||||
|
|
||||||
|
void AnimLoad();
|
||||||
|
void AnimWrite();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void ReadScript(const char *Filename,vector<GString> &List);
|
||||||
|
|
||||||
void ProcessSkel(int Idx,int Parent);
|
void ProcessSkel(int Idx,int Parent);
|
||||||
void WriteSkel();
|
void WriteSkel();
|
||||||
|
|
||||||
@ -68,13 +70,9 @@ private:
|
|||||||
|
|
||||||
std::vector<GString> InTexList;
|
std::vector<GString> InTexList;
|
||||||
std::vector<GString> InAnimList;
|
std::vector<GString> InAnimList;
|
||||||
|
static CTexGrab TexGrab;
|
||||||
int TPageBase;
|
|
||||||
int TPageWidth,TPageHeight;
|
|
||||||
|
|
||||||
/*Anim*/
|
/*Anim*/
|
||||||
void AnimLoad();
|
|
||||||
void AnimWrite();
|
|
||||||
void AnimWriteInclude();
|
void AnimWriteInclude();
|
||||||
int AnimProcessSkelMove(CScene &Scene,sAnim &ThisAnim,int Idx);
|
int AnimProcessSkelMove(CScene &Scene,sAnim &ThisAnim,int Idx);
|
||||||
void AnimProcessSkelAnim(CScene &Scene,sAnim &ThisAnim,int Idx);
|
void AnimProcessSkelAnim(CScene &Scene,sAnim &ThisAnim,int Idx);
|
||||||
|
@ -177,7 +177,7 @@ void CPlayer::init()
|
|||||||
|
|
||||||
sActorHdr *Hdr=m_skel.Load(ACTORS_SPONGEBOB_A3D);
|
sActorHdr *Hdr=m_skel.Load(ACTORS_SPONGEBOB_A3D);
|
||||||
m_skel.Init(Hdr);
|
m_skel.Init(Hdr);
|
||||||
TPLoadTex(ACTORS_SPONGEBOB_TEX);
|
TPLoadTex(ACTORS_ACTOR_SPONGEBOB_TEX);
|
||||||
m_skel.setAnimDatabase(CAnimDB::Load(ACTORS_SPONGEBOB_ABK));
|
m_skel.setAnimDatabase(CAnimDB::Load(ACTORS_SPONGEBOB_ABK));
|
||||||
|
|
||||||
|
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user