netradiant-custom/tools/quake3/q3map2/convert_ase.cpp
2021-09-26 22:10:46 +03:00

398 lines
12 KiB
C++

/* -------------------------------------------------------------------------------
Copyright (C) 1999-2007 id Software, Inc. and contributors.
For a list of contributors, see the accompanying CONTRIBUTORS file.
This file is part of GtkRadiant.
GtkRadiant 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 2 of the License, or
(at your option) any later version.
GtkRadiant 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 GtkRadiant; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
----------------------------------------------------------------------------------
This code has been altered significantly from its original form, to support
several games based on the Quake III Arena engine, in the form of "Q3Map2."
------------------------------------------------------------------------------- */
/* dependencies */
#include "q3map2.h"
#include "convert_obj.h"
/*
ConvertSurface()
converts a bsp drawsurface to an ase chunk
*/
int numLightmapsASE = 0;
static void ConvertSurface( FILE *f, int modelNum, bspDrawSurface_t *ds, int surfaceNum, const Vector3& origin, const std::vector<int>& lmIndices ){
char name[ 1024 ];
/* ignore patches for now */
if ( ds->surfaceType != MST_PLANAR && ds->surfaceType != MST_TRIANGLE_SOUP ) {
return;
}
/* print object header for each dsurf */
sprintf( name, "mat%dmodel%dsurf%d", ds->shaderNum, modelNum, surfaceNum );
fprintf( f, "*GEOMOBJECT\t{\r\n" );
fprintf( f, "\t*NODE_NAME\t\"%s\"\r\n", name );
fprintf( f, "\t*NODE_TM\t{\r\n" );
fprintf( f, "\t\t*NODE_NAME\t\"%s\"\r\n", name );
fprintf( f, "\t\t*INHERIT_POS\t0\t0\t0\r\n" );
fprintf( f, "\t\t*INHERIT_ROT\t0\t0\t0\r\n" );
fprintf( f, "\t\t*INHERIT_SCL\t0\t0\t0\r\n" );
fprintf( f, "\t\t*TM_ROW0\t1.0\t0\t0\r\n" );
fprintf( f, "\t\t*TM_ROW1\t0\t1.0\t0\r\n" );
fprintf( f, "\t\t*TM_ROW2\t0\t0\t1.0\r\n" );
fprintf( f, "\t\t*TM_ROW3\t0\t0\t0\r\n" );
fprintf( f, "\t\t*TM_POS\t%f\t%f\t%f\r\n", origin[ 0 ], origin[ 1 ], origin[ 2 ] );
fprintf( f, "\t}\r\n" );
/* print mesh header */
fprintf( f, "\t*MESH\t{\r\n" );
fprintf( f, "\t\t*TIMEVALUE\t0\r\n" );
fprintf( f, "\t\t*MESH_NUMVERTEX\t%d\r\n", ds->numVerts );
fprintf( f, "\t\t*MESH_NUMFACES\t%d\r\n", ds->numIndexes / 3 );
switch ( ds->surfaceType )
{
case MST_PLANAR:
fprintf( f, "\t\t*COMMENT\t\"SURFACETYPE\tMST_PLANAR\"\r\n" );
break;
case MST_TRIANGLE_SOUP:
fprintf( f, "\t\t*COMMENT\t\"SURFACETYPE\tMST_TRIANGLE_SOUP\"\r\n" );
break;
}
/* export vertex xyz */
fprintf( f, "\t\t*MESH_VERTEX_LIST\t{\r\n" );
for ( int i = 0; i < ds->numVerts; i++ )
{
const bspDrawVert_t& dv = bspDrawVerts[ ds->firstVert + i ];
fprintf( f, "\t\t\t*MESH_VERTEX\t%d\t%f\t%f\t%f\r\n", i, dv.xyz[ 0 ], dv.xyz[ 1 ], dv.xyz[ 2 ] );
}
fprintf( f, "\t\t}\r\n" );
/* export faces */
fprintf( f, "\t\t*MESH_FACE_LIST\t{\r\n" );
for ( int i = 0; i < ds->numIndexes; i += 3 )
{
const int face = ( i / 3 );
const int a = bspDrawIndexes[ i + ds->firstIndex ];
const int c = bspDrawIndexes[ i + ds->firstIndex + 1 ];
const int b = bspDrawIndexes[ i + ds->firstIndex + 2 ];
fprintf( f, "\t\t\t*MESH_FACE\t%d\tA:\t%d\tB:\t%d\tC:\t%d\tAB:\t1\tBC:\t1\tCA:\t1\t*MESH_SMOOTHING\t0\t*MESH_MTLID\t0\r\n",
face, a, b, c );
}
fprintf( f, "\t\t}\r\n" );
/* export vertex st */
fprintf( f, "\t\t*MESH_NUMTVERTEX\t%d\r\n", ds->numVerts );
fprintf( f, "\t\t*MESH_TVERTLIST\t{\r\n" );
for ( int i = 0; i < ds->numVerts; i++ )
{
const bspDrawVert_t& dv = bspDrawVerts[ ds->firstVert + i ];
if ( lightmapsAsTexcoord ) {
fprintf( f, "\t\t\t*MESH_TVERT\t%d\t%f\t%f\t%f\r\n", i, dv.lightmap[0][0], ( 1.0 - dv.lightmap[0][1] ), 1.0f ); // dv.lightmap[0][1] internal, ( 1.0 - dv.lightmap[0][1] ) external
}
else{
fprintf( f, "\t\t\t*MESH_TVERT\t%d\t%f\t%f\t%f\r\n", i, dv.st[ 0 ], ( 1.0 - dv.st[ 1 ] ), 1.0f );
}
}
fprintf( f, "\t\t}\r\n" );
/* export texture faces */
fprintf( f, "\t\t*MESH_NUMTVFACES\t%d\r\n", ds->numIndexes / 3 );
fprintf( f, "\t\t*MESH_TFACELIST\t{\r\n" );
for ( int i = 0; i < ds->numIndexes; i += 3 )
{
const int face = ( i / 3 );
const int a = bspDrawIndexes[ i + ds->firstIndex ];
const int c = bspDrawIndexes[ i + ds->firstIndex + 1 ];
const int b = bspDrawIndexes[ i + ds->firstIndex + 2 ];
fprintf( f, "\t\t\t*MESH_TFACE\t%d\t%d\t%d\t%d\r\n", face, a, b, c );
}
fprintf( f, "\t\t}\r\n" );
/* export vertex normals */
fprintf( f, "\t\t*MESH_NORMALS\t{\r\n" );
for ( int i = 0; i < ds->numIndexes; i += 3 )
{
const int face = ( i / 3 );
const int a = bspDrawIndexes[ i + ds->firstIndex ];
const int b = bspDrawIndexes[ i + ds->firstIndex + 1 ];
const int c = bspDrawIndexes[ i + ds->firstIndex + 2 ];
const Vector3 normal = VectorNormalized( bspDrawVerts[ a ].normal + bspDrawVerts[ b ].normal + bspDrawVerts[ c ].normal );
fprintf( f, "\t\t\t*MESH_FACENORMAL\t%d\t%f\t%f\t%f\r\n", face, normal[ 0 ], normal[ 1 ], normal[ 2 ] );
for( const auto idx : { a, b, c } ){
const bspDrawVert_t& dv = bspDrawVerts[ idx ];
fprintf( f, "\t\t\t\t*MESH_VERTEXNORMAL\t%d\t%f\t%f\t%f\r\n", idx, dv.normal[ 0 ], dv.normal[ 1 ], dv.normal[ 2 ] );
}
}
fprintf( f, "\t\t}\r\n" );
/* print mesh footer */
fprintf( f, "\t}\r\n" );
/* print object footer */
fprintf( f, "\t*PROP_MOTIONBLUR\t0\r\n" );
fprintf( f, "\t*PROP_CASTSHADOW\t1\r\n" );
fprintf( f, "\t*PROP_RECVSHADOW\t1\r\n" );
if ( lightmapsAsTexcoord ) {
const int lmNum = ds->lightmapNum[0] >= 0? ds->lightmapNum[0]: lmIndices[ds->shaderNum] >= 0? lmIndices[ds->shaderNum] : ds->lightmapNum[0];
if ( lmNum >= 0 && lmNum + (int)deluxemap < numLightmapsASE ) {
fprintf( f, "\t*MATERIAL_REF\t%d\r\n", lmNum + deluxemap );
}
else{
Sys_Warning( "lightmap %d out of range, not exporting\n", lmNum + deluxemap );
}
}
else{
fprintf( f, "\t*MATERIAL_REF\t%d\r\n", ds->shaderNum );
}
fprintf( f, "}\r\n" );
}
/*
ConvertModel()
exports a bsp model to an ase chunk
*/
static void ConvertModel( FILE *f, int modelNum, const Vector3& origin, const std::vector<int>& lmIndices ){
const bspModel_t& model = bspModels[ modelNum ];
/* go through each drawsurf in the model */
for ( int i = 0; i < model.numBSPSurfaces; i++ )
{
const int s = model.firstBSPSurface + i;
ConvertSurface( f, modelNum, &bspDrawSurfaces[ s ], s, origin, lmIndices );
}
}
/*
ConvertShader()
exports a bsp shader to an ase chunk
*/
/*
*MATERIAL 0 {
*MATERIAL_NAME "models/test/rock16l"
*MATERIAL_CLASS "Standard"
*MATERIAL_AMBIENT 0.5882 0.5882 0.5882
*MATERIAL_DIFFUSE 0.5882 0.5882 0.5882
*MATERIAL_SPECULAR 0.5882 0.5882 0.5882
*MATERIAL_SHINE 0.0000
*MATERIAL_SHINESTRENGTH 0.0000
*MATERIAL_TRANSPARENCY 0.0000
*MATERIAL_WIRESIZE 1.0000
*MATERIAL_SHADING Phong
*MATERIAL_XP_FALLOFF 0.0000
*MATERIAL_SELFILLUM 0.0000
*MATERIAL_FALLOFF In
*MATERIAL_XP_TYPE Filter
*MAP_DIFFUSE {
*MAP_NAME "Map #2"
*MAP_CLASS "Bitmap"
*MAP_SUBNO 1
*MAP_AMOUNT 1.0000
*BITMAP "models/test/rock16l"
*MAP_TYPE Screen
*UVW_U_OFFSET 0.0000
*UVW_V_OFFSET 0.0000
*UVW_U_TILING 1.0000
*UVW_V_TILING 1.0000
*UVW_ANGLE 0.0000
*UVW_BLUR 1.0000
*UVW_BLUR_OFFSET 0.0000
*UVW_NOUSE_AMT 1.0000
*UVW_NOISE_SIZE 1.0000
*UVW_NOISE_LEVEL 1
*UVW_NOISE_PHASE 0.0000
*BITMAP_FILTER Pyramidal
}
}
*/
static void ConvertShader( FILE *f, const bspShader_t& shader ){
shaderInfo_t *si;
char *c, filename[ 1024 ];
/* get shader */
si = ShaderInfoForShader( shader.shader );
if ( si == NULL ) {
Sys_Warning( "NULL shader in BSP\n" );
return;
}
/* set bitmap filename */
if ( si->shaderImage->filename[ 0 ] != '*' ) {
strcpy( filename, si->shaderImage->filename );
}
else{
sprintf( filename, "%s.tga", si->shader.c_str() );
}
for ( c = filename; *c; c++ )
if ( *c == '/' ) {
*c = '\\';
}
/* print shader info */
fprintf( f, "\t*MATERIAL\t%d\t{\r\n", int( &shader - bspShaders.data() ) );
fprintf( f, "\t\t*MATERIAL_NAME\t\"%s\"\r\n", shader.shader );
fprintf( f, "\t\t*MATERIAL_CLASS\t\"Standard\"\r\n" );
fprintf( f, "\t\t*MATERIAL_DIFFUSE\t%f\t%f\t%f\r\n", si->color[ 0 ], si->color[ 1 ], si->color[ 2 ] );
fprintf( f, "\t\t*MATERIAL_SHADING Phong\r\n" );
/* print map info */
fprintf( f, "\t\t*MAP_DIFFUSE\t{\r\n" );
fprintf( f, "\t\t\t*MAP_NAME\t\"%s\"\r\n", shader.shader );
fprintf( f, "\t\t\t*MAP_CLASS\t\"Bitmap\"\r\n" );
fprintf( f, "\t\t\t*MAP_SUBNO\t1\r\n" );
fprintf( f, "\t\t\t*MAP_AMOUNT\t1.0\r\n" );
fprintf( f, "\t\t\t*MAP_TYPE\tScreen\r\n" );
if ( shadersAsBitmap ) {
fprintf( f, "\t\t\t*BITMAP\t\"%s\"\r\n", shader.shader );
}
else{
fprintf( f, "\t\t\t*BITMAP\t\"..\\%s\"\r\n", filename );
}
fprintf( f, "\t\t\t*BITMAP_FILTER\tPyramidal\r\n" );
fprintf( f, "\t\t}\r\n" );
fprintf( f, "\t}\r\n" );
}
static void ConvertLightmap( FILE *f, const char *base, int lightmapNum ){
/* print shader info */
fprintf( f, "\t*MATERIAL\t%d\t{\r\n", lightmapNum );
fprintf( f, "\t\t*MATERIAL_NAME\t\"lm_%04d\"\r\n", lightmapNum );
fprintf( f, "\t\t*MATERIAL_CLASS\t\"Standard\"\r\n" );
fprintf( f, "\t\t*MATERIAL_DIFFUSE\t1\t1\t1\r\n" );
fprintf( f, "\t\t*MATERIAL_SHADING Phong\r\n" );
/* print map info */
if ( lightmapNum >= 0 ) {
fprintf( f, "\t\t*MAP_DIFFUSE\t{\r\n" );
fprintf( f, "\t\t\t*MAP_NAME\t\"lm_%04d\"\r\n", lightmapNum );
fprintf( f, "\t\t\t*MAP_CLASS\t\"Bitmap\"\r\n" );
fprintf( f, "\t\t\t*MAP_SUBNO\t1\r\n" );
fprintf( f, "\t\t\t*MAP_AMOUNT\t1.0\r\n" );
fprintf( f, "\t\t\t*MAP_TYPE\tScreen\r\n" );
if( shadersAsBitmap )
fprintf( f, "\t\t\t*BITMAP\t\"maps\\%s\\" EXTERNAL_LIGHTMAP "\"\r\n", base, lightmapNum );
else
fprintf( f, "\t\t\t*BITMAP\t\"%s\\" EXTERNAL_LIGHTMAP "\"\r\n", base, lightmapNum );
fprintf( f, "\t\t\t*BITMAP_FILTER\tPyramidal\r\n" );
fprintf( f, "\t\t}\r\n" );
}
fprintf( f, "\t}\r\n" );
}
/*
ConvertBSPToASE()
exports an 3d studio ase file from the bsp
*/
int ConvertBSPToASE( char *bspName ){
int modelNum;
FILE *f;
entity_t *e;
std::vector<int> lmIndices( bspShaders.size(), -1 );
/* note it */
Sys_Printf( "--- Convert BSP to ASE ---\n" );
/* create the ase filename from the bsp name */
auto dirname = StringOutputStream( 256 )( PathExtensionless( bspName ) );
auto name = StringOutputStream( 256 )( dirname, ".ase" );
Sys_Printf( "writing %s\n", name.c_str() );
auto base = StringOutputStream( 64 )( PathFilename( bspName ) );
/* open it */
f = SafeOpenWrite( name );
/* print header */
fprintf( f, "*3DSMAX_ASCIIEXPORT\t200\r\n" );
fprintf( f, "*COMMENT\t\"Generated by Q3Map2 (ydnar) -convert -format ase\"\r\n" );
fprintf( f, "*SCENE\t{\r\n" );
fprintf( f, "\t*SCENE_FILENAME\t\"%s.bsp\"\r\n", base.c_str() );
fprintf( f, "\t*SCENE_FIRSTFRAME\t0\r\n" );
fprintf( f, "\t*SCENE_LASTFRAME\t100\r\n" );
fprintf( f, "\t*SCENE_FRAMESPEED\t30\r\n" );
fprintf( f, "\t*SCENE_TICKSPERFRAME\t160\r\n" );
fprintf( f, "\t*SCENE_BACKGROUND_STATIC\t0.0000\t0.0000\t0.0000\r\n" );
fprintf( f, "\t*SCENE_AMBIENT_STATIC\t0.0000\t0.0000\t0.0000\r\n" );
fprintf( f, "}\r\n" );
/* print materials */
fprintf( f, "*MATERIAL_LIST\t{\r\n" );
if ( lightmapsAsTexcoord ) {
numLightmapsASE = Convert_CountLightmaps( dirname );
fprintf( f, "\t*MATERIAL_COUNT\t%d\r\n", numLightmapsASE );
for ( int i = 0; i < numLightmapsASE; i++ )
ConvertLightmap( f, base, i );
Convert_ReferenceLightmaps( base, lmIndices );
}
else
{
fprintf( f, "\t*MATERIAL_COUNT\t%zu\r\n", bspShaders.size() );
for ( const bspShader_t& shader : bspShaders )
{
ConvertShader( f, shader );
}
}
fprintf( f, "}\r\n" );
/* walk entity list */
for ( std::size_t i = 0; i < entities.size(); ++i )
{
/* get entity and model */
e = &entities[ i ];
if ( i == 0 ) {
modelNum = 0;
}
else
{
const char *key = e->valueForKey( "model" );
if ( key[ 0 ] != '*' ) {
continue;
}
modelNum = atoi( key + 1 );
}
/* convert model */
ConvertModel( f, modelNum, e->vectorForKey( "origin" ), lmIndices );
}
/* close the file and return */
fclose( f );
/* return to sender */
return 0;
}