2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2021-02-13 17:46:34 +00:00
|
|
|
Copyright (C) 2015-2021 Robert Beckebans
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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 Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
#pragma hdrstop
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
FloatCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
ID_INLINE unsigned int FloatCRC( float f )
|
|
|
|
{
|
|
|
|
return *( unsigned int* )&f;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
StringCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
ID_INLINE unsigned int StringCRC( const char* str )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
unsigned int i, crc;
|
2012-11-28 15:47:07 +00:00
|
|
|
const unsigned char* ptr;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
crc = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
ptr = reinterpret_cast<const unsigned char*>( str );
|
|
|
|
for( i = 0; str[i]; i++ )
|
|
|
|
{
|
|
|
|
crc ^= str[i] << ( i & 3 );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
ComputeAxisBase
|
|
|
|
|
|
|
|
WARNING : special case behaviour of atan2(y,x) <-> atan(y/x) might not be the same everywhere when x == 0
|
|
|
|
rotation by (0,RotY,RotZ) assigns X to normal
|
|
|
|
=================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
static void ComputeAxisBase( const idVec3& normal, idVec3& texS, idVec3& texT )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
float RotY, RotZ;
|
|
|
|
idVec3 n;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// do some cleaning
|
|
|
|
n[0] = ( idMath::Fabs( normal[0] ) < 1e-6f ) ? 0.0f : normal[0];
|
|
|
|
n[1] = ( idMath::Fabs( normal[1] ) < 1e-6f ) ? 0.0f : normal[1];
|
|
|
|
n[2] = ( idMath::Fabs( normal[2] ) < 1e-6f ) ? 0.0f : normal[2];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
RotY = -atan2( n[2], idMath::Sqrt( n[1] * n[1] + n[0] * n[0] ) );
|
2012-11-26 18:58:24 +00:00
|
|
|
RotZ = atan2( n[1], n[0] );
|
|
|
|
// rotate (0,1,0) and (0,0,1) to compute texS and texT
|
2012-11-28 15:47:07 +00:00
|
|
|
texS[0] = -sin( RotZ );
|
|
|
|
texS[1] = cos( RotZ );
|
2012-11-26 18:58:24 +00:00
|
|
|
texS[2] = 0;
|
|
|
|
// the texT vector is along -Z ( T texture coorinates axis )
|
2012-11-28 15:47:07 +00:00
|
|
|
texT[0] = -sin( RotY ) * cos( RotZ );
|
|
|
|
texT[1] = -sin( RotY ) * sin( RotZ );
|
|
|
|
texT[2] = -cos( RotY );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
idMapBrushSide::GetTextureVectors
|
|
|
|
=================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapBrushSide::GetTextureVectors( idVec4 v[2] ) const
|
|
|
|
{
|
2021-02-13 17:46:34 +00:00
|
|
|
if( projection == PROJECTION_VALVE220 )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2021-03-12 17:13:33 +00:00
|
|
|
v[0][0] = texValve[0][0] * ( 1.0f / texScale[0] );
|
|
|
|
v[0][1] = texValve[0][1] * ( 1.0f / texScale[0] );
|
|
|
|
v[0][2] = texValve[0][2] * ( 1.0f / texScale[0] );
|
|
|
|
v[0][3] = texValve[0][3];
|
|
|
|
|
|
|
|
v[1][0] = texValve[1][0] * ( 1.0f / texScale[1] );
|
|
|
|
v[1][1] = texValve[1][1] * ( 1.0f / texScale[1] );
|
|
|
|
v[1][2] = texValve[1][2] * ( 1.0f / texScale[1] );
|
|
|
|
v[1][3] = texValve[1][3];
|
2021-02-13 17:46:34 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
idVec3 texX, texY;
|
|
|
|
|
|
|
|
ComputeAxisBase( plane.Normal(), texX, texY );
|
|
|
|
for( int i = 0; i < 2; i++ )
|
|
|
|
{
|
|
|
|
v[i][0] = texX[0] * texMat[i][0] + texY[0] * texMat[i][1];
|
|
|
|
v[i][1] = texX[1] * texMat[i][0] + texY[1] * texMat[i][1];
|
|
|
|
v[i][2] = texX[2] * texMat[i][0] + texY[2] * texMat[i][1];
|
|
|
|
v[i][3] = texMat[i][2] + ( origin * v[i].ToVec3() );
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
idMapPatch::Parse
|
|
|
|
=================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapPatch* idMapPatch::Parse( idLexer& src, const idVec3& origin, bool patchDef3, float version )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
float info[7];
|
2012-11-28 15:47:07 +00:00
|
|
|
idDrawVert* vert;
|
2012-11-26 18:58:24 +00:00
|
|
|
idToken token;
|
|
|
|
int i, j;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( "{" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the material (we had an implicit 'textures/' in the old format...)
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: unexpected EOF" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Parse it
|
2012-11-28 15:47:07 +00:00
|
|
|
if( patchDef3 )
|
|
|
|
{
|
|
|
|
if( !src.Parse1DMatrix( 7, info ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: unable to Parse patchDef3 info" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( !src.Parse1DMatrix( 5, info ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: unable to parse patchDef2 info" );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapPatch* patch = new( TAG_IDLIB ) idMapPatch( info[0], info[1] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
patch->SetSize( info[0], info[1] );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( version < 2.0f )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
patch->SetMaterial( "textures/" + token );
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
patch->SetMaterial( token );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( patchDef3 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
patch->SetHorzSubdivisions( info[2] );
|
|
|
|
patch->SetVertSubdivisions( info[3] );
|
|
|
|
patch->SetExplicitlySubdivided( true );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( patch->GetWidth() < 0 || patch->GetHeight() < 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: bad size" );
|
|
|
|
delete patch;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// these were written out in the wrong order, IMHO
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( "(" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: bad patch vertex data" );
|
|
|
|
delete patch;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
for( j = 0; j < patch->GetWidth(); j++ )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( "(" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: bad vertex row data" );
|
|
|
|
delete patch;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < patch->GetHeight(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
float v[5];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.Parse1DMatrix( 5, v ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: bad vertex column data" );
|
|
|
|
delete patch;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
vert = &( ( *patch )[i * patch->GetWidth() + j] );
|
2012-11-26 18:58:24 +00:00
|
|
|
vert->xyz[0] = v[0] - origin[0];
|
|
|
|
vert->xyz[1] = v[1] - origin[1];
|
|
|
|
vert->xyz[2] = v[2] - origin[2];
|
|
|
|
vert->SetTexCoord( v[3], v[4] );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( ")" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
delete patch;
|
|
|
|
src.Error( "idMapPatch::Parse: unable to parse patch control points" );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( ")" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapPatch::Parse: unable to parse patch control points, no closure" );
|
|
|
|
delete patch;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read any key/value pairs
|
2012-11-28 15:47:07 +00:00
|
|
|
while( src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
if( token == "}" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.ExpectTokenString( "}" );
|
|
|
|
break;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token.type == TT_STRING )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr key = token;
|
|
|
|
src.ExpectTokenType( TT_STRING, 0, &token );
|
|
|
|
patch->epairs.Set( key, token );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return patch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
============
|
|
|
|
idMapPatch::Write
|
|
|
|
============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idMapPatch::Write( idFile* fp, int primitiveNum, const idVec3& origin ) const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, j;
|
2012-11-28 15:47:07 +00:00
|
|
|
const idDrawVert* v;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( GetExplicitlySubdivided() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( "// primitive %d\n{\n patchDef3\n {\n", primitiveNum );
|
2012-11-28 15:47:07 +00:00
|
|
|
fp->WriteFloatString( " \"%s\"\n ( %d %d %d %d 0 0 0 )\n", GetMaterial(), GetWidth(), GetHeight(), GetHorzSubdivisions(), GetVertSubdivisions() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( "// primitive %d\n{\n patchDef2\n {\n", primitiveNum );
|
2012-11-28 15:47:07 +00:00
|
|
|
fp->WriteFloatString( " \"%s\"\n ( %d %d 0 0 0 )\n", GetMaterial(), GetWidth(), GetHeight() );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( " (\n" );
|
|
|
|
idVec2 st;
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetWidth(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( " ( " );
|
2012-11-28 15:47:07 +00:00
|
|
|
for( j = 0; j < GetHeight(); j++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
v = &verts[ j * GetWidth() + i ];
|
|
|
|
st = v->GetTexCoord();
|
|
|
|
fp->WriteFloatString( " ( %f %f %f %f %f )", v->xyz[0] + origin[0],
|
2012-11-28 15:47:07 +00:00
|
|
|
v->xyz[1] + origin[1], v->xyz[2] + origin[2], st[0], st[1] );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
fp->WriteFloatString( " )\n" );
|
|
|
|
}
|
|
|
|
fp->WriteFloatString( " )\n }\n}\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapPatch::GetGeometryCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
unsigned int idMapPatch::GetGeometryCRC() const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, j;
|
|
|
|
unsigned int crc;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
crc = GetHorzSubdivisions() ^ GetVertSubdivisions();
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetWidth(); i++ )
|
|
|
|
{
|
|
|
|
for( j = 0; j < GetHeight(); j++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
crc ^= FloatCRC( verts[j * GetWidth() + i].xyz.x );
|
|
|
|
crc ^= FloatCRC( verts[j * GetWidth() + i].xyz.y );
|
|
|
|
crc ^= FloatCRC( verts[j * GetWidth() + i].xyz.z );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
crc ^= StringCRC( GetMaterial() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
idMapBrush::Parse
|
|
|
|
=================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrush* idMapBrush::Parse( idLexer& src, const idVec3& origin, bool newFormat, float version )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
|
|
|
idVec3 planepts[3];
|
|
|
|
idToken token;
|
|
|
|
idList<idMapBrushSide*> sides;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrushSide* side;
|
2012-11-26 18:58:24 +00:00
|
|
|
idDict epairs;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( "{" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unexpected EOF" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token == "}" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// here we may have to jump over brush epairs ( only used in editor )
|
2012-11-28 15:47:07 +00:00
|
|
|
do
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// if token is a brace
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token == "(" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// the token should be a key string for a key/value pair
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token.type != TT_STRING )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unexpected %s, expected ( or epair key string", token.c_str() );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr key = token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadTokenOnLine( &token ) || token.type != TT_STRING )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: expected epair value string not found" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
epairs.Set( key, token );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// try to read the next key
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unexpected EOF" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
while( 1 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
src.UnreadToken( &token );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
side = new( TAG_IDLIB ) idMapBrushSide();
|
|
|
|
sides.Append( side );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( newFormat )
|
|
|
|
{
|
|
|
|
if( !src.Parse1DMatrix( 4, side->plane.ToFloatPtr() ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unable to read brush side plane definition" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the three point plane definition
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.Parse1DMatrix( 3, planepts[0].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[1].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[2].ToFloatPtr() ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unable to read brush side plane definition" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
planepts[0] -= origin;
|
|
|
|
planepts[1] -= origin;
|
|
|
|
planepts[2] -= origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
side->plane.FromPoints( planepts[0], planepts[1], planepts[2] );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the texture matrix
|
|
|
|
// this is odd, because the texmat is 2D relative to default planar texture axis
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.Parse2DMatrix( 2, 3, side->texMat[0].ToFloatPtr() ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unable to read brush side texture matrix" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
side->origin = origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the material
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::Parse: unable to read brush side material" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// we had an implicit 'textures/' in the old format...
|
2012-11-28 15:47:07 +00:00
|
|
|
if( version < 2.0f )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
side->material = "textures/" + token;
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
side->material = token;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Q2 allowed override of default flags and values, but we don't any more
|
2012-11-28 15:47:07 +00:00
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
while( 1 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ExpectTokenString( "}" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrush* brush = new( TAG_IDLIB ) idMapBrush();
|
|
|
|
for( i = 0; i < sides.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
brush->AddSide( sides[i] );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
brush->epairs = epairs;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return brush;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
=================
|
|
|
|
idMapBrush::ParseQ3
|
|
|
|
=================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrush* idMapBrush::ParseQ3( idLexer& src, const idVec3& origin )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, shift[2], rotate;
|
|
|
|
float scale[2];
|
|
|
|
idVec3 planepts[3];
|
|
|
|
idToken token;
|
|
|
|
idList<idMapBrushSide*> sides;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrushSide* side;
|
2012-11-26 18:58:24 +00:00
|
|
|
idDict epairs;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if( src.CheckTokenString( "}" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
side = new( TAG_IDLIB ) idMapBrushSide();
|
2012-11-26 18:58:24 +00:00
|
|
|
sides.Append( side );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the three point plane definition
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.Parse1DMatrix( 3, planepts[0].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[1].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[2].ToFloatPtr() ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::ParseQ3: unable to read brush side plane definition" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
planepts[0] -= origin;
|
|
|
|
planepts[1] -= origin;
|
|
|
|
planepts[2] -= origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
side->plane.FromPoints( planepts[0], planepts[1], planepts[2] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the material
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapBrush::ParseQ3: unable to read brush side material" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// we have an implicit 'textures/' in the old format
|
|
|
|
side->material = "textures/" + token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// read the texture shift, rotate and scale
|
|
|
|
shift[0] = src.ParseInt();
|
|
|
|
shift[1] = src.ParseInt();
|
|
|
|
rotate = src.ParseInt();
|
|
|
|
scale[0] = src.ParseFloat();
|
|
|
|
scale[1] = src.ParseFloat();
|
|
|
|
side->texMat[0] = idVec3( 0.03125f, 0.0f, 0.0f );
|
|
|
|
side->texMat[1] = idVec3( 0.0f, 0.03125f, 0.0f );
|
|
|
|
side->origin = origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// Q2 allowed override of default flags and values, but we don't any more
|
2012-11-28 15:47:07 +00:00
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
while( 1 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrush* brush = new( TAG_IDLIB ) idMapBrush();
|
|
|
|
for( i = 0; i < sides.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
brush->AddSide( sides[i] );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
brush->epairs = epairs;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return brush;
|
|
|
|
}
|
|
|
|
|
2021-02-13 17:46:34 +00:00
|
|
|
/*
|
|
|
|
=================
|
|
|
|
idMapBrush::ParseValve220
|
|
|
|
=================
|
|
|
|
*/
|
|
|
|
idMapBrush* idMapBrush::ParseValve220( idLexer& src, const idVec3& origin )
|
|
|
|
{
|
|
|
|
float scale[2], rotate;
|
|
|
|
idVec3 planepts[3];
|
|
|
|
idToken token;
|
|
|
|
idList<idMapBrushSide*> sides;
|
|
|
|
idMapBrushSide* side;
|
|
|
|
idDict epairs;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if( src.CheckTokenString( "}" ) )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
side = new( TAG_IDLIB ) idMapBrushSide();
|
|
|
|
sides.Append( side );
|
|
|
|
|
|
|
|
// read the three point plane definition
|
|
|
|
if( !src.Parse1DMatrix( 3, planepts[0].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[1].ToFloatPtr() ) ||
|
|
|
|
!src.Parse1DMatrix( 3, planepts[2].ToFloatPtr() ) )
|
|
|
|
{
|
|
|
|
src.Error( "idMapBrush::ParseQ3: unable to read brush side plane definition" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:13:33 +00:00
|
|
|
// backup source points
|
|
|
|
side->planepts[0] = planepts[0];
|
|
|
|
side->planepts[1] = planepts[1];
|
|
|
|
side->planepts[2] = planepts[2];
|
|
|
|
|
2021-02-13 17:46:34 +00:00
|
|
|
planepts[0] -= origin;
|
|
|
|
planepts[1] -= origin;
|
|
|
|
planepts[2] -= origin;
|
|
|
|
|
|
|
|
side->plane.FromPoints( planepts[0], planepts[1], planepts[2] );
|
|
|
|
|
|
|
|
// read the material
|
|
|
|
if( !src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "idMapBrush::ParseQ3: unable to read brush side material" );
|
|
|
|
sides.DeleteContents( true );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have an implicit 'textures/' in the old format
|
|
|
|
side->material = "textures/" + token;
|
|
|
|
side->projection = idMapBrushSide::PROJECTION_VALVE220;
|
|
|
|
|
|
|
|
for( int axis = 0; axis < 2; axis++ )
|
|
|
|
{
|
|
|
|
src.ExpectTokenString( "[" );
|
|
|
|
|
|
|
|
for( int comp = 0; comp < 4; comp++ )
|
|
|
|
{
|
|
|
|
side->texValve[axis][comp] = src.ParseFloat();
|
|
|
|
}
|
|
|
|
|
|
|
|
src.ExpectTokenString( "]" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// read the texture rotate and scale
|
|
|
|
rotate = src.ParseFloat();
|
|
|
|
|
|
|
|
scale[0] = src.ParseFloat();
|
|
|
|
scale[1] = src.ParseFloat();
|
|
|
|
|
2021-07-26 06:51:44 +00:00
|
|
|
if( scale[0] < idMath::FLOAT_EPSILON )
|
2021-02-13 17:46:34 +00:00
|
|
|
{
|
|
|
|
scale[0] = 1.0f;
|
|
|
|
}
|
2021-07-26 06:51:44 +00:00
|
|
|
if( scale[1] < idMath::FLOAT_EPSILON )
|
2021-02-13 17:46:34 +00:00
|
|
|
{
|
|
|
|
scale[1] = 1.0f;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:13:33 +00:00
|
|
|
side->texScale[0] = scale[0];
|
|
|
|
side->texScale[1] = scale[1];
|
2021-02-13 17:46:34 +00:00
|
|
|
|
|
|
|
side->texMat[0] = idVec3( 0.03125f, 0.0f, 0.0f );
|
|
|
|
side->texMat[1] = idVec3( 0.0f, 0.03125f, 0.0f );
|
|
|
|
side->origin = origin;
|
|
|
|
|
|
|
|
// Q2 allowed override of default flags and values, but we don't any more
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
if( src.ReadTokenOnLine( &token ) )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while( 1 );
|
|
|
|
|
|
|
|
idMapBrush* brush = new( TAG_IDLIB ) idMapBrush();
|
|
|
|
for( int i = 0; i < sides.Num(); i++ )
|
|
|
|
{
|
|
|
|
brush->AddSide( sides[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
brush->epairs = epairs;
|
|
|
|
|
|
|
|
return brush;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
============
|
|
|
|
idMapBrush::Write
|
|
|
|
============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idMapBrush::Write( idFile* fp, int primitiveNum, const idVec3& origin ) const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrushSide* side;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( "// primitive %d\n{\n brushDef3\n {\n", primitiveNum );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// write brush epairs
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < epairs.GetNumKeyVals(); i++ )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( " \"%s\" \"%s\"\n", epairs.GetKeyVal( i )->GetKey().c_str(), epairs.GetKeyVal( i )->GetValue().c_str() );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// write brush sides
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetNumSides(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
side = GetSide( i );
|
|
|
|
fp->WriteFloatString( " ( %f %f %f %f ) ", side->plane[0], side->plane[1], side->plane[2], side->plane[3] );
|
|
|
|
fp->WriteFloatString( "( ( %f %f %f ) ( %f %f %f ) ) \"%s\" 0 0 0\n",
|
2012-11-28 15:47:07 +00:00
|
|
|
side->texMat[0][0], side->texMat[0][1], side->texMat[0][2],
|
|
|
|
side->texMat[1][0], side->texMat[1][1], side->texMat[1][2],
|
|
|
|
side->material.c_str() );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( " }\n}\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:13:33 +00:00
|
|
|
/*
|
|
|
|
============
|
|
|
|
RB idMapBrush::WriteValve220
|
|
|
|
============
|
|
|
|
*/
|
|
|
|
bool idMapBrush::WriteValve220( idFile* fp, int primitiveNum, const idVec3& origin ) const
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
idMapBrushSide* side;
|
|
|
|
|
|
|
|
fp->WriteFloatString( "// brush %d\n{\n", primitiveNum );
|
|
|
|
|
|
|
|
// write brush epairs
|
|
|
|
for( i = 0; i < epairs.GetNumKeyVals(); i++ )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( " \"%s\" \"%s\"\n", epairs.GetKeyVal( i )->GetKey().c_str(), epairs.GetKeyVal( i )->GetValue().c_str() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// write brush sides
|
|
|
|
for( i = 0; i < GetNumSides(); i++ )
|
|
|
|
{
|
|
|
|
side = GetSide( i );
|
|
|
|
fp->WriteFloatString( "( %f %f %f ) ( %f %f %f ) ( %f %f %f )",
|
|
|
|
side->planepts[0][0], side->planepts[0][1], side->planepts[0][2],
|
|
|
|
side->planepts[1][0], side->planepts[1][1], side->planepts[1][2],
|
|
|
|
side->planepts[2][0], side->planepts[2][1], side->planepts[2][2] );
|
|
|
|
|
|
|
|
// strip off textures/
|
|
|
|
if( idStr::Icmpn( side->material.c_str(), "textures/", 9 ) == 0 )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( " %s ", side->material.c_str() + 9 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( " %s ", side->material.c_str() );
|
|
|
|
}
|
|
|
|
|
|
|
|
fp->WriteFloatString( "[ %f %f %f %f ] [ %f %f %f %f ] 0 %f %f 0 0 0\n",
|
|
|
|
side->texValve[0][0], side->texValve[0][1], side->texValve[0][2], side->texValve[0][3],
|
|
|
|
side->texValve[1][0], side->texValve[1][1], side->texValve[1][2], side->texValve[1][3],
|
|
|
|
side->texScale[0], side->texScale[1] );
|
|
|
|
}
|
|
|
|
|
|
|
|
fp->WriteFloatString( "}\n" );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapBrush::GetGeometryCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
unsigned int idMapBrush::GetGeometryCRC() const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, j;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapBrushSide* mapSide;
|
2012-11-26 18:58:24 +00:00
|
|
|
unsigned int crc;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
crc = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetNumSides(); i++ )
|
|
|
|
{
|
|
|
|
mapSide = GetSide( i );
|
|
|
|
for( j = 0; j < 4; j++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
crc ^= FloatCRC( mapSide->GetPlane()[j] );
|
|
|
|
}
|
|
|
|
crc ^= StringCRC( mapSide->GetMaterial() );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
2021-09-04 18:36:27 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapBrush::IsOriginBrush
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
bool idMapBrush::IsOriginBrush() const
|
|
|
|
{
|
2021-09-11 16:02:16 +00:00
|
|
|
for( int i = 0; i < GetNumSides(); i++ )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
const idMaterial* material = declManager->FindMaterial( sides[i]->GetMaterial() );
|
2021-09-11 16:02:16 +00:00
|
|
|
if( material && material->GetContentFlags() & CONTENTS_ORIGIN )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
================
|
|
|
|
idMapEntity::Parse
|
|
|
|
================
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapEntity* idMapEntity::Parse( idLexer& src, bool worldSpawn, float version )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idToken token;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapEntity* mapEnt;
|
|
|
|
idMapPatch* mapPatch;
|
|
|
|
idMapBrush* mapBrush;
|
2015-04-12 09:53:05 +00:00
|
|
|
// RB begin
|
|
|
|
MapPolygonMesh* mapMesh;
|
|
|
|
// RB end
|
2012-11-26 18:58:24 +00:00
|
|
|
bool worldent;
|
|
|
|
idVec3 origin;
|
|
|
|
double v1, v2, v3;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token != "{" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapEntity::Parse: { not found, found %s", token.c_str() );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
mapEnt = new( TAG_IDLIB ) idMapEntity();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( worldSpawn )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt->primitives.Resize( 1024, 256 );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
origin.Zero();
|
|
|
|
worldent = false;
|
2012-11-28 15:47:07 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapEntity::Parse: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token == "}" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token == "{" )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// parse a brush or patch
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.Error( "idMapEntity::Parse: unexpected EOF" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( worldent )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
origin.Zero();
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// if is it a brush: brush, brushDef, brushDef2, brushDef3
|
2012-11-28 15:47:07 +00:00
|
|
|
if( token.Icmpn( "brush", 5 ) == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapBrush = idMapBrush::Parse( src, origin, ( !token.Icmp( "brushDef2" ) || !token.Icmp( "brushDef3" ) ), version );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !mapBrush )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
mapEnt->AddPrimitive( mapBrush );
|
|
|
|
}
|
|
|
|
// if is it a patch: patchDef2, patchDef3
|
2012-11-28 15:47:07 +00:00
|
|
|
else if( token.Icmpn( "patch", 5 ) == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapPatch = idMapPatch::Parse( src, origin, !token.Icmp( "patchDef3" ), version );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !mapPatch )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
mapEnt->AddPrimitive( mapPatch );
|
|
|
|
}
|
2015-04-12 09:53:05 +00:00
|
|
|
// RB: new mesh primitive with ngons
|
|
|
|
else if( token.Icmpn( "mesh", 4 ) == 0 )
|
|
|
|
{
|
|
|
|
mapMesh = MapPolygonMesh::Parse( src, origin, version );
|
|
|
|
if( !mapMesh )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
mapEnt->AddPrimitive( mapMesh );
|
|
|
|
}
|
|
|
|
// RB end
|
2021-02-13 17:46:34 +00:00
|
|
|
// assume it's a brush in Valve 220 style from TrenchBroom
|
2012-11-28 15:47:07 +00:00
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
src.UnreadToken( &token );
|
2021-02-13 17:46:34 +00:00
|
|
|
mapBrush = idMapBrush::ParseValve220( src, origin );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !mapBrush )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
mapEnt->AddPrimitive( mapBrush );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idStr key, value;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// parse a key / value pair
|
|
|
|
key = token;
|
|
|
|
src.ReadTokenOnLine( &token );
|
|
|
|
value = token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// strip trailing spaces that sometimes get accidentally
|
|
|
|
// added in the editor
|
|
|
|
value.StripTrailingWhitespace();
|
|
|
|
key.StripTrailingWhitespace();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt->epairs.Set( key, value );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !idStr::Icmp( key, "origin" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// scanf into doubles, then assign, so it is idVec size independent
|
|
|
|
v1 = v2 = v3 = 0;
|
|
|
|
sscanf( value, "%lf %lf %lf", &v1, &v2, &v3 );
|
|
|
|
origin.x = v1;
|
|
|
|
origin.y = v2;
|
|
|
|
origin.z = v3;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else if( !idStr::Icmp( key, "classname" ) && !idStr::Icmp( value, "worldspawn" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
worldent = true;
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
}
|
|
|
|
while( 1 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2021-09-04 18:36:27 +00:00
|
|
|
mapEnt->CalculateBrushOrigin();
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return mapEnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
============
|
|
|
|
idMapEntity::Write
|
|
|
|
============
|
|
|
|
*/
|
2021-03-12 17:13:33 +00:00
|
|
|
bool idMapEntity::Write( idFile* fp, int entityNum, bool valve220 ) const
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapPrimitive* mapPrim;
|
2012-11-26 18:58:24 +00:00
|
|
|
idVec3 origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( "// entity %d\n{\n", entityNum );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// write entity epairs
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < epairs.GetNumKeyVals(); i++ )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\"%s\" \"%s\"\n", epairs.GetKeyVal( i )->GetKey().c_str(), epairs.GetKeyVal( i )->GetValue().c_str() );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
epairs.GetVector( "origin", "0 0 0", origin );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// write pritimives
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetNumPrimitives(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapPrim = GetPrimitive( i );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
switch( mapPrim->GetType() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
case idMapPrimitive::TYPE_BRUSH:
|
2021-03-12 17:13:33 +00:00
|
|
|
if( valve220 )
|
|
|
|
{
|
|
|
|
static_cast<idMapBrush*>( mapPrim )->WriteValve220( fp, i, origin );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
static_cast<idMapBrush*>( mapPrim )->Write( fp, i, origin );
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
case idMapPrimitive::TYPE_PATCH:
|
2012-11-28 15:47:07 +00:00
|
|
|
static_cast<idMapPatch*>( mapPrim )->Write( fp, i, origin );
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
2015-04-12 09:53:05 +00:00
|
|
|
// RB begin
|
|
|
|
case idMapPrimitive::TYPE_MESH:
|
|
|
|
static_cast<MapPolygonMesh*>( mapPrim )->Write( fp, i, origin );
|
|
|
|
break;
|
|
|
|
// RB end
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
fp->WriteFloatString( "}\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// RB begin
|
|
|
|
bool idMapEntity::WriteJSON( idFile* fp, int entityNum, int numEntities ) const
|
|
|
|
{
|
|
|
|
idVec3 origin;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t{\n\t\t\t\"entity\": \"%d\",\n", entityNum );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
idStr key;
|
|
|
|
idStr value;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
for( int i = 0; i < epairs.GetNumKeyVals(); i++ )
|
|
|
|
{
|
|
|
|
key = epairs.GetKeyVal( i )->GetKey();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
key.ReplaceChar( '\t', ' ' );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
value = epairs.GetKeyVal( i )->GetValue();
|
|
|
|
value.BackSlashesToSlashes();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t\t\"%s\": \"%s\"%s\n", key.c_str(), value.c_str(), ( ( i == ( epairs.GetNumKeyVals() - 1 ) ) && !GetNumPrimitives() ) ? "" : "," );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
epairs.GetVector( "origin", "0 0 0", origin );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// write pritimives
|
|
|
|
if( GetNumPrimitives() )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\t\t\t\"primitives\":\n\t\t\t[\n" );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
int numPrimitives = GetNumPrimitives();
|
|
|
|
for( int i = 0; i < numPrimitives; i++ )
|
|
|
|
{
|
|
|
|
idMapPrimitive* mapPrim = GetPrimitive( i );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
switch( mapPrim->GetType() )
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
case idMapPrimitive::TYPE_BRUSH:
|
|
|
|
static_cast<idMapBrush*>( mapPrim )->Write( fp, i, origin );
|
|
|
|
break;
|
|
|
|
case idMapPrimitive::TYPE_PATCH:
|
|
|
|
static_cast<idMapPatch*>( mapPrim )->Write( fp, i, origin );
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case idMapPrimitive::TYPE_MESH:
|
|
|
|
static_cast<MapPolygonMesh*>( mapPrim )->WriteJSON( fp, i, origin );
|
|
|
|
break;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// find next mesh primitive
|
|
|
|
idMapPrimitive* nextPrim = NULL;
|
|
|
|
for( int j = i + 1; j < numPrimitives; j++ )
|
|
|
|
{
|
|
|
|
nextPrim = GetPrimitive( j );
|
|
|
|
if( nextPrim->GetType() == idMapPrimitive::TYPE_MESH )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( nextPrim && ( nextPrim->GetType() == idMapPrimitive::TYPE_MESH ) )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( ",\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\n" );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( GetNumPrimitives() )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\t\t\t]\n" );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t}%s\n", ( entityNum == ( numEntities - 1 ) ) ? "" : "," );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
idMapEntity* idMapEntity::ParseJSON( idLexer& src )
|
|
|
|
{
|
|
|
|
idToken token;
|
|
|
|
idMapEntity* mapEnt;
|
|
|
|
//idMapPatch* mapPatch;
|
|
|
|
//idMapBrush* mapBrush;
|
|
|
|
// RB begin
|
|
|
|
MapPolygonMesh* mapMesh;
|
|
|
|
// RB end
|
|
|
|
bool worldent;
|
|
|
|
idVec3 origin;
|
|
|
|
double v1, v2, v3;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "]" )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token != "{" )
|
|
|
|
{
|
|
|
|
src.Error( "idMapEntity::ParseJSON: { not found, found %s", token.c_str() );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
mapEnt = new idMapEntity();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
/*
|
|
|
|
if( worldSpawn )
|
|
|
|
{
|
|
|
|
mapEnt->primitives.Resize( 1024, 256 );
|
|
|
|
}
|
|
|
|
*/
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
origin.Zero();
|
|
|
|
worldent = false;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "idMapEntity::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "}" )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// RB: new mesh primitive with ngons
|
|
|
|
if( token == "primitives" )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( ":" ) )
|
|
|
|
{
|
|
|
|
delete mapEnt;
|
|
|
|
src.Error( "idMapEntity::ParseJSON: expected : for primitives" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ExpectTokenString( "[" ) )
|
|
|
|
{
|
|
|
|
delete mapEnt;
|
|
|
|
src.Error( "idMapEntity::ParseJSON: expected [ for primitives" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "idMapEntity::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "]" )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "{" )
|
|
|
|
{
|
|
|
|
mapMesh = MapPolygonMesh::ParseJSON( src );
|
|
|
|
if( !mapMesh )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
mapEnt->AddPrimitive( mapMesh );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
idStr key, value;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// parse a key / value pair
|
|
|
|
key = token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "idMapEntity::ParseJSON: EOF without closing brace" );
|
|
|
|
delete mapEnt;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token != ":" )
|
|
|
|
{
|
|
|
|
delete mapEnt;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
src.ReadTokenOnLine( &token );
|
|
|
|
value = token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// strip trailing spaces that sometimes get accidentally
|
|
|
|
// added in the editor
|
|
|
|
value.StripTrailingWhitespace();
|
|
|
|
key.StripTrailingWhitespace();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
mapEnt->epairs.Set( key, value );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !idStr::Icmp( key, "origin" ) )
|
|
|
|
{
|
|
|
|
// scanf into doubles, then assign, so it is idVec size independent
|
|
|
|
v1 = v2 = v3 = 0;
|
|
|
|
sscanf( value, "%lf %lf %lf", &v1, &v2, &v3 );
|
|
|
|
origin.x = v1;
|
|
|
|
origin.y = v2;
|
|
|
|
origin.z = v3;
|
|
|
|
}
|
|
|
|
else if( !idStr::Icmp( key, "classname" ) && !idStr::Icmp( value, "worldspawn" ) )
|
|
|
|
{
|
|
|
|
worldent = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while( 1 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return mapEnt;
|
|
|
|
}
|
|
|
|
// RB end
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapEntity::RemovePrimitiveData
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapEntity::RemovePrimitiveData()
|
|
|
|
{
|
|
|
|
primitives.DeleteContents( true );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapEntity::GetGeometryCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
unsigned int idMapEntity::GetGeometryCRC() const
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
|
|
|
unsigned int crc;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapPrimitive* mapPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
crc = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < GetNumPrimitives(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapPrim = GetPrimitive( i );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
switch( mapPrim->GetType() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
case idMapPrimitive::TYPE_BRUSH:
|
2012-11-28 15:47:07 +00:00
|
|
|
crc ^= static_cast<idMapBrush*>( mapPrim )->GetGeometryCRC();
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
case idMapPrimitive::TYPE_PATCH:
|
2012-11-28 15:47:07 +00:00
|
|
|
crc ^= static_cast<idMapPatch*>( mapPrim )->GetGeometryCRC();
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// RB begin
|
|
|
|
case idMapPrimitive::TYPE_MESH:
|
|
|
|
crc ^= static_cast<MapPolygonMesh*>( mapPrim )->GetGeometryCRC();
|
|
|
|
break;
|
|
|
|
// RB end
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
2021-09-04 18:36:27 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapEntity::CalculateBrushOrigin
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
void idMapEntity::CalculateBrushOrigin()
|
|
|
|
{
|
|
|
|
// Collect the origin brushes
|
|
|
|
idList<idMapBrush*> originBrushes;
|
2021-09-11 16:02:16 +00:00
|
|
|
for( int i = 0; i < primitives.Num(); i++ )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
2021-09-11 16:02:16 +00:00
|
|
|
if( primitives[i]->GetType() == idMapPrimitive::TYPE_BRUSH )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
idMapBrush* brush = static_cast<idMapBrush*>( primitives[i] );
|
2021-09-11 16:02:16 +00:00
|
|
|
if( brush->IsOriginBrush() )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
originBrushes.Append( brush );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-11 16:02:16 +00:00
|
|
|
if( !originBrushes.Num() )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate and average the origin brushes centres
|
2021-09-11 16:02:16 +00:00
|
|
|
for( int i = 0; i < originBrushes.Num(); i++ )
|
2021-09-04 18:36:27 +00:00
|
|
|
{
|
|
|
|
MapPolygonMesh mesh;
|
|
|
|
idBounds bounds;
|
|
|
|
|
|
|
|
mesh.ConvertFromBrush( originBrushes[i], 0, 0 );
|
|
|
|
mesh.GetBounds( bounds );
|
|
|
|
|
|
|
|
originOffset += bounds.GetCenter();
|
|
|
|
}
|
|
|
|
|
|
|
|
originOffset /= static_cast<float>( originBrushes.Num() );
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
class idSort_CompareMapEntity : public idSort_Quick< idMapEntity*, idSort_CompareMapEntity >
|
|
|
|
{
|
|
|
|
public:
|
2016-06-19 15:19:24 +00:00
|
|
|
int Compare( idMapEntity* const& a, idMapEntity* const& b ) const
|
2016-03-05 19:52:09 +00:00
|
|
|
{
|
|
|
|
if( idStr::Icmp( a->epairs.GetString( "name" ), "worldspawn" ) == 0 )
|
|
|
|
{
|
2016-06-19 15:19:24 +00:00
|
|
|
return 1;
|
2016-03-05 19:52:09 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( idStr::Icmp( b->epairs.GetString( "name" ), "worldspawn" ) == 0 )
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return idStr::Icmp( a->epairs.GetString( "name" ), b->epairs.GetString( "name" ) );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::Parse
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idMapFile::Parse( const char* filename, bool ignoreRegion, bool osPath )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// no string concatenation for epairs and allow path names for materials
|
|
|
|
idLexer src( LEXFL_NOSTRINGCONCAT | LEXFL_NOSTRINGESCAPECHARS | LEXFL_ALLOWPATHNAMES );
|
|
|
|
idToken token;
|
|
|
|
idStr fullName;
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapEntity* mapEnt;
|
2012-11-26 18:58:24 +00:00
|
|
|
int i, j, k;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
name = filename;
|
|
|
|
name.StripFileExtension();
|
2021-10-10 15:47:24 +00:00
|
|
|
name.StripFileExtension(); // RB: there might be .map.map
|
2012-11-26 18:58:24 +00:00
|
|
|
fullName = name;
|
|
|
|
hasPrimitiveData = false;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
bool isJSON = false;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !ignoreRegion )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
// RB: try loading a .json file first
|
|
|
|
fullName.SetFileExtension( "json" );
|
2012-11-26 18:58:24 +00:00
|
|
|
src.LoadFile( fullName, osPath );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( src.IsLoaded() )
|
|
|
|
{
|
|
|
|
isJSON = true;
|
|
|
|
}
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.IsLoaded() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// now try a .map file
|
|
|
|
fullName.SetFileExtension( "map" );
|
|
|
|
src.LoadFile( fullName, osPath );
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !src.IsLoaded() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
// didn't get anything at all
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
version = OLD_MAP_VERSION;
|
|
|
|
fileTime = src.GetFileTime();
|
|
|
|
entities.DeleteContents( true );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
return false;
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2021-02-13 17:46:34 +00:00
|
|
|
// RB: TODO check for JSON in another way
|
|
|
|
//if( token == "{" )
|
|
|
|
//{
|
|
|
|
// isJSON = true;
|
|
|
|
//}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( isJSON )
|
|
|
|
{
|
|
|
|
while( true )
|
2012-11-28 15:47:07 +00:00
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "entities" )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token != ":" )
|
|
|
|
{
|
|
|
|
src.Error( "idMapFile::Parse: : not found, found %s", token.c_str() );
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token != "[" )
|
|
|
|
{
|
|
|
|
src.Error( "idMapFile::Parse: [ not found, found %s", token.c_str() );
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
mapEnt = idMapEntity::ParseJSON( src );
|
|
|
|
if( !mapEnt )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
entities.Append( mapEnt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-06-19 15:19:24 +00:00
|
|
|
//entities.SortWithTemplate( idSort_CompareMapEntity() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-06-19 15:19:24 +00:00
|
|
|
if( entities.Num() > 0 && ( idStr::Icmp( entities[0]->epairs.GetString( "name" ), "worldspawn" ) != 0 ) )
|
|
|
|
{
|
|
|
|
// move world spawn to first place
|
|
|
|
for( int i = 1; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
if( idStr::Icmp( entities[i]->epairs.GetString( "name" ), "worldspawn" ) == 0 )
|
|
|
|
{
|
|
|
|
idMapEntity* tmp = entities[0];
|
|
|
|
entities[0] = entities[i];
|
|
|
|
entities[i] = tmp;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 19:52:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( token == "Version" )
|
|
|
|
{
|
|
|
|
src.ReadTokenOnLine( &token );
|
|
|
|
version = token.GetFloatValue();
|
|
|
|
}
|
2021-02-13 17:46:34 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Valve 220 format and idMapEntity::Parse will expect {
|
|
|
|
src.UnreadToken( &token );
|
2021-03-12 17:13:33 +00:00
|
|
|
valve220Format = true;
|
2021-02-13 17:46:34 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( 1 )
|
|
|
|
{
|
|
|
|
mapEnt = idMapEntity::Parse( src, ( entities.Num() == 0 ), version );
|
|
|
|
if( !mapEnt )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
entities.Append( mapEnt );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
SetGeometryCRC();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// if the map has a worldspawn
|
2012-11-28 15:47:07 +00:00
|
|
|
if( entities.Num() )
|
|
|
|
{
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// "removeEntities" "classname" can be set in the worldspawn to remove all entities with the given classname
|
2012-11-28 15:47:07 +00:00
|
|
|
const idKeyValue* removeEntities = entities[0]->epairs.MatchPrefix( "removeEntities", NULL );
|
|
|
|
while( removeEntities )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
RemoveEntities( removeEntities->GetValue() );
|
|
|
|
removeEntities = entities[0]->epairs.MatchPrefix( "removeEntities", removeEntities );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// "overrideMaterial" "material" can be set in the worldspawn to reset all materials
|
|
|
|
idStr material;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( entities[0]->epairs.GetString( "overrideMaterial", "", material ) )
|
|
|
|
{
|
|
|
|
for( i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt = entities[i];
|
2012-11-28 15:47:07 +00:00
|
|
|
for( j = 0; j < mapEnt->GetNumPrimitives(); j++ )
|
|
|
|
{
|
|
|
|
idMapPrimitive* mapPrimitive = mapEnt->GetPrimitive( j );
|
|
|
|
switch( mapPrimitive->GetType() )
|
|
|
|
{
|
|
|
|
case idMapPrimitive::TYPE_BRUSH:
|
|
|
|
{
|
|
|
|
idMapBrush* mapBrush = static_cast<idMapBrush*>( mapPrimitive );
|
|
|
|
for( k = 0; k < mapBrush->GetNumSides(); k++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapBrush->GetSide( k )->SetMaterial( material );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
case idMapPrimitive::TYPE_PATCH:
|
|
|
|
{
|
|
|
|
static_cast<idMapPatch*>( mapPrimitive )->SetMaterial( material );
|
2012-11-26 18:58:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// force all entities to have a name key/value pair
|
2012-11-28 15:47:07 +00:00
|
|
|
if( entities[0]->epairs.GetBool( "forceEntityNames" ) )
|
|
|
|
{
|
|
|
|
for( i = 1; i < entities.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt = entities[i];
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !mapEnt->epairs.FindKey( "name" ) )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt->epairs.Set( "name", va( "%s%d", mapEnt->epairs.GetString( "classname", "forcedName" ), i ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
// move the primitives of any func_group entities to the worldspawn
|
2012-11-28 15:47:07 +00:00
|
|
|
if( entities[0]->epairs.GetBool( "moveFuncGroups" ) )
|
|
|
|
{
|
|
|
|
for( i = 1; i < entities.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
mapEnt = entities[i];
|
2012-11-28 15:47:07 +00:00
|
|
|
if( idStr::Icmp( mapEnt->epairs.GetString( "classname" ), "func_group" ) == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
entities[0]->primitives.Append( mapEnt->primitives );
|
|
|
|
mapEnt->primitives.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2021-10-10 15:47:24 +00:00
|
|
|
// RB: <name>_extraents.map allows to add and override existing entities
|
|
|
|
idMapFile extrasMap;
|
|
|
|
fullName = name;
|
|
|
|
//fullName.StripFileExtension();
|
|
|
|
fullName += "_extra_ents.map";
|
|
|
|
|
|
|
|
if( extrasMap.Parse( fullName, ignoreRegion, osPath ) )
|
|
|
|
{
|
|
|
|
for( i = 0; i < extrasMap.entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
idMapEntity* extraEnt = extrasMap.entities[i];
|
|
|
|
|
|
|
|
const idKeyValue* kv = extraEnt->epairs.FindKey( "name" );
|
|
|
|
if( kv && kv->GetValue().Length() )
|
|
|
|
{
|
|
|
|
mapEnt = FindEntity( kv->GetValue().c_str() );
|
|
|
|
if( mapEnt )
|
|
|
|
{
|
|
|
|
// TODO override settings
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
mapEnt = new( TAG_SYSTEM ) idMapEntity();
|
|
|
|
entities.Append( mapEnt );
|
|
|
|
|
|
|
|
// don't grab brushes or polys
|
|
|
|
mapEnt->epairs.Copy( extraEnt->epairs );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
fullName = name;
|
|
|
|
fullName += "_extra_debug.map";
|
|
|
|
|
|
|
|
Write( fullName, ".map" );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
hasPrimitiveData = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
============
|
|
|
|
idMapFile::Write
|
|
|
|
============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idMapFile::Write( const char* fileName, const char* ext, bool fromBasePath )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
|
|
|
idStr qpath;
|
2012-11-28 15:47:07 +00:00
|
|
|
idFile* fp;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
qpath = fileName;
|
|
|
|
qpath.SetFileExtension( ext );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idLib::common->Printf( "writing %s...\n", qpath.c_str() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( fromBasePath )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fp = idLib::fileSystem->OpenFileWrite( qpath, "fs_basepath" );
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
else
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
fp = idLib::fileSystem->OpenExplicitFileWrite( qpath );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
if( !fp )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idLib::common->Warning( "Couldn't open %s\n", qpath.c_str() );
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2021-03-12 17:13:33 +00:00
|
|
|
if( valve220Format )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "// Game: Doom 3 BFG\n// Format: Doom3 (Valve)\n" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "Version %f\n", ( float ) CURRENT_MAP_VERSION );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
2021-03-12 17:13:33 +00:00
|
|
|
entities[i]->Write( fp, i, valve220Format );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
idLib::fileSystem->CloseFile( fp );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// RB begin
|
|
|
|
bool idMapFile::WriteJSON( const char* fileName, const char* ext, bool fromBasePath )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
idStr qpath;
|
|
|
|
idFile* fp;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
qpath = fileName;
|
|
|
|
qpath.SetFileExtension( ext );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
idLib::common->Printf( "writing %s...\n", qpath.c_str() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( fromBasePath )
|
|
|
|
{
|
|
|
|
fp = idLib::fileSystem->OpenFileWrite( qpath, "fs_basepath" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fp = idLib::fileSystem->OpenExplicitFileWrite( qpath );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !fp )
|
|
|
|
{
|
|
|
|
idLib::common->Warning( "Couldn't open %s\n", qpath.c_str() );
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->Printf( "{\n" );
|
|
|
|
fp->WriteFloatString( "\t\"version\": \"%f\",\n", ( float ) CURRENT_MAP_VERSION );
|
|
|
|
fp->Printf( "\t\"entities\": \n\t[\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
for( i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
entities[i]->WriteJSON( fp, i, entities.Num() );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->Printf( "\t]\n" );
|
|
|
|
fp->Printf( "}\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
idLib::fileSystem->CloseFile( fp );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// RB end
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::SetGeometryCRC
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapFile::SetGeometryCRC()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int i;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
geometryCRC = 0;
|
2012-11-28 15:47:07 +00:00
|
|
|
for( i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
geometryCRC ^= entities[i]->GetGeometryCRC();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::AddEntity
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
int idMapFile::AddEntity( idMapEntity* mapEnt )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
int ret = entities.Append( mapEnt );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::FindEntity
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
idMapEntity* idMapFile::FindEntity( const char* name )
|
|
|
|
{
|
|
|
|
for( int i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
idMapEntity* ent = entities[i];
|
|
|
|
if( idStr::Icmp( ent->epairs.GetString( "name" ), name ) == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-02-20 18:07:08 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
RB idMapFile::FindEntityAtOrigin
|
|
|
|
===============
|
|
|
|
*/
|
|
|
|
idMapEntity* idMapFile::FindEntityAtOrigin( const idVec3& org )
|
|
|
|
{
|
|
|
|
idBounds bo( org );
|
|
|
|
bo.ExpandSelf( 0.125f );
|
|
|
|
|
|
|
|
for( int i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
idMapEntity* ent = entities[i];
|
|
|
|
|
|
|
|
idVec3 entPos;
|
|
|
|
ent->epairs.GetVector( "origin", "", entPos );
|
|
|
|
|
|
|
|
if( bo.ContainsPoint( entPos ) )
|
|
|
|
{
|
|
|
|
return ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::RemoveEntity
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapFile::RemoveEntity( idMapEntity* mapEnt )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
entities.Remove( mapEnt );
|
|
|
|
delete mapEnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::RemoveEntity
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapFile::RemoveEntities( const char* classname )
|
|
|
|
{
|
|
|
|
for( int i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
idMapEntity* ent = entities[i];
|
|
|
|
if( idStr::Icmp( ent->epairs.GetString( "classname" ), classname ) == 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
delete entities[i];
|
|
|
|
entities.RemoveIndex( i );
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::RemoveAllEntities
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapFile::RemoveAllEntities()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
entities.DeleteContents( true );
|
|
|
|
hasPrimitiveData = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::RemovePrimitiveData
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
void idMapFile::RemovePrimitiveData()
|
|
|
|
{
|
|
|
|
for( int i = 0; i < entities.Num(); i++ )
|
|
|
|
{
|
|
|
|
idMapEntity* ent = entities[i];
|
2012-11-26 18:58:24 +00:00
|
|
|
ent->RemovePrimitiveData();
|
|
|
|
}
|
|
|
|
hasPrimitiveData = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
idMapFile::NeedsReload
|
|
|
|
===============
|
|
|
|
*/
|
2012-11-28 15:47:07 +00:00
|
|
|
bool idMapFile::NeedsReload()
|
|
|
|
{
|
|
|
|
if( name.Length() )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
ID_TIME_T time = FILE_NOT_FOUND_TIMESTAMP;
|
2012-11-28 15:47:07 +00:00
|
|
|
if( idLib::fileSystem->ReadFile( name, NULL, &time ) > 0 )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
return ( time > fileTime );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-12 09:53:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
// RB begin
|
|
|
|
MapPolygonMesh::MapPolygonMesh()
|
|
|
|
{
|
|
|
|
type = TYPE_MESH;
|
2016-03-05 19:52:09 +00:00
|
|
|
originalType = TYPE_MESH;
|
2015-04-12 09:53:05 +00:00
|
|
|
polygons.Resize( 8, 4 );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
contents = CONTENTS_SOLID;
|
|
|
|
opaque = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapPolygonMesh::ConvertFromBrush( const idMapBrush* mapBrush, int entityNum, int primitiveNum )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
originalType = TYPE_BRUSH;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// fix degenerate planes
|
|
|
|
idPlane* planes = ( idPlane* ) _alloca16( mapBrush->GetNumSides() * sizeof( planes[0] ) );
|
|
|
|
for( int i = 0; i < mapBrush->GetNumSides(); i++ )
|
|
|
|
{
|
|
|
|
planes[i] = mapBrush->GetSide( i )->GetPlane();
|
|
|
|
planes[i].FixDegeneracies( DEGENERATE_DIST_EPSILON );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idList<idFixedWinding> planeWindings;
|
|
|
|
idBounds bounds;
|
|
|
|
bounds.Clear();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
int numVerts = 0;
|
|
|
|
int numIndexes = 0;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
bool badBrush = false;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( int i = 0; i < mapBrush->GetNumSides(); i++ )
|
|
|
|
{
|
|
|
|
idMapBrushSide* mapSide = mapBrush->GetSide( i );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
const idMaterial* material = declManager->FindMaterial( mapSide->GetMaterial() );
|
|
|
|
//contents |= ( material->GetContentFlags() & CONTENTS_REMOVE_UTIL );
|
|
|
|
//materials.AddUnique( material );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// chop base plane by other brush sides
|
|
|
|
idFixedWinding& w = planeWindings.Alloc();
|
|
|
|
w.BaseForPlane( -planes[i] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !w.GetNumPoints() )
|
|
|
|
{
|
|
|
|
common->Printf( "Entity %i, Brush %i: base winding has no points\n", entityNum, primitiveNum );
|
|
|
|
badBrush = true;
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( int j = 0; j < mapBrush->GetNumSides() && w.GetNumPoints(); j++ )
|
|
|
|
{
|
|
|
|
if( i == j )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !w.ClipInPlace( -planes[j], 0 ) )
|
|
|
|
{
|
|
|
|
// no intersection
|
|
|
|
//badBrush = true;
|
|
|
|
common->Printf( "Entity %i, Brush %i: no intersection with other brush plane\n", entityNum, primitiveNum );
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( w.GetNumPoints() <= 2 )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// only used for debugging
|
|
|
|
for( int j = 0; j < w.GetNumPoints(); j++ )
|
|
|
|
{
|
|
|
|
const idVec3& v = w[j].ToVec3();
|
|
|
|
bounds.AddPoint( v );
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( badBrush )
|
|
|
|
{
|
|
|
|
//common->Error( "" )
|
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// copy the data from the windings and build polygons
|
|
|
|
for( int i = 0; i < mapBrush->GetNumSides(); i++ )
|
|
|
|
{
|
|
|
|
idMapBrushSide* mapSide = mapBrush->GetSide( i );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idFixedWinding& w = planeWindings[i];
|
|
|
|
if( !w.GetNumPoints() )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
MapPolygon& polygon = polygons.Alloc();
|
|
|
|
polygon.SetMaterial( mapSide->GetMaterial() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//for( int j = 0; j < w.GetNumPoints(); j++ )
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// reverse order, so normal does not point inwards
|
|
|
|
for( int j = w.GetNumPoints() - 1; j >= 0; j-- )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
polygon.AddIndex( verts.Num() + j );
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( int j = 0; j < w.GetNumPoints(); j++ )
|
|
|
|
{
|
|
|
|
idDrawVert& dv = verts.Alloc();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
const idVec3& xyz = w[j].ToVec3();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
dv.xyz = xyz;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// calculate texture s/t from brush primitive texture matrix
|
|
|
|
idVec4 texVec[2];
|
|
|
|
mapSide->GetTextureVectors( texVec );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idVec2 st;
|
|
|
|
st.x = ( xyz * texVec[0].ToVec3() ) + texVec[0][3];
|
|
|
|
st.y = ( xyz * texVec[1].ToVec3() ) + texVec[1][3];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// flip y
|
|
|
|
//st.y = 1.0f - st.y;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
dv.SetTexCoord( st );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// copy normal
|
|
|
|
dv.SetNormal( mapSide->GetPlane().Normal() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//if( dv->GetNormal().Length() < 0.9 || dv->GetNormal().Length() > 1.1 )
|
|
|
|
//{
|
|
|
|
// common->Error( "Bad normal in TriListForSide" );
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
SetContents();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapPolygonMesh::ConvertFromPatch( const idMapPatch* patch, int entityNum, int primitiveNum )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
originalType = TYPE_PATCH;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idSurface_Patch* cp = new idSurface_Patch( *patch );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( patch->GetExplicitlySubdivided() )
|
|
|
|
{
|
|
|
|
cp->SubdivideExplicit( patch->GetHorzSubdivisions(), patch->GetVertSubdivisions(), true );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cp->Subdivide( DEFAULT_CURVE_MAX_ERROR, DEFAULT_CURVE_MAX_ERROR, DEFAULT_CURVE_MAX_LENGTH, true );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( int i = 0; i < cp->GetNumIndexes(); i += 3 )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
verts.Append( ( *cp )[cp->GetIndexes()[i + 1]] );
|
|
|
|
verts.Append( ( *cp )[cp->GetIndexes()[i + 2]] );
|
|
|
|
verts.Append( ( *cp )[cp->GetIndexes()[i + 0]] );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
for( int i = 0; i < cp->GetNumIndexes(); i += 3 )
|
|
|
|
{
|
|
|
|
MapPolygon& polygon = polygons.Alloc();
|
|
|
|
polygon.SetMaterial( patch->GetMaterial() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
polygon.AddIndex( i + 0 );
|
|
|
|
polygon.AddIndex( i + 1 );
|
|
|
|
polygon.AddIndex( i + 2 );
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
delete cp;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
SetContents();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapPolygonMesh::Write( idFile* fp, int primitiveNum, const idVec3& origin ) const
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "// primitive %d\n{\n meshDef\n {\n", primitiveNum );
|
|
|
|
//fp->WriteFloatString( " \"%s\"\n ( %d %d 0 0 0 )\n", GetMaterial(), GetWidth(), GetHeight() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
fp->WriteFloatString( " ( %d %d 0 0 0 )\n", verts.Num(), polygons.Num() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
fp->WriteFloatString( " (\n" );
|
|
|
|
idVec2 st;
|
|
|
|
idVec3 n;
|
|
|
|
for( int i = 0; i < verts.Num(); i++ )
|
|
|
|
{
|
|
|
|
const idDrawVert* v = &verts[ i ];
|
|
|
|
st = v->GetTexCoord();
|
|
|
|
n = v->GetNormalRaw();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//fp->WriteFloatString( " ( %f %f %f %f %f %f %f %f )\n", v->xyz[0] + origin[0], v->xyz[1] + origin[1], v->xyz[2] + origin[2], st[0], st[1], n[0], n[1], n[2] );
|
|
|
|
fp->WriteFloatString( " ( %f %f %f %f %f %f %f %f )\n", v->xyz[0], v->xyz[1], v->xyz[2], st[0], st[1], n[0], n[1], n[2] );
|
|
|
|
}
|
|
|
|
fp->WriteFloatString( " )\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
fp->WriteFloatString( " (\n" );
|
|
|
|
for( int i = 0; i < polygons.Num(); i++ )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
const MapPolygon& poly = polygons[ i ];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( " \"%s\" %d = ", poly.GetMaterial(), poly.indexes.Num() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
for( int j = 0; j < poly.indexes.Num(); j++ )
|
2015-04-12 09:53:05 +00:00
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "%d ", poly.indexes[j] );
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
|
|
|
fp->WriteFloatString( "\n" );
|
|
|
|
}
|
|
|
|
fp->WriteFloatString( " )\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
fp->WriteFloatString( " }\n}\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
bool MapPolygonMesh::WriteJSON( idFile* fp, int primitiveNum, const idVec3& origin ) const
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\t\t\t\t{\n\t\t\t\t\t\"primitive\": \"%d\",\n", primitiveNum );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( originalType == TYPE_BRUSH )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\"original\": \"brush\",\n" );
|
|
|
|
}
|
|
|
|
else if( originalType == TYPE_PATCH )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\"original\": \"curve\",\n" );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\"verts\":\n\t\t\t\t\t[\n" );
|
|
|
|
idVec2 st;
|
|
|
|
idVec3 n;
|
|
|
|
for( int i = 0; i < verts.Num(); i++ )
|
|
|
|
{
|
|
|
|
const idDrawVert& v = verts[ i ];
|
|
|
|
st = v.GetTexCoord();
|
|
|
|
n = v.GetNormalRaw();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
//if( IsNAN( v.xyz ) )
|
|
|
|
//{
|
|
|
|
// continue;
|
|
|
|
//}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
//idVec3 xyz = v.xyz - origin;
|
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\t{ \"xyz\": [%f, %f, %f], \"st\": [%f, %f], \"normal\": [%f, %f, %f] }%s\n", v.xyz[0], v.xyz[1], v.xyz[2], st[0], st[1], n[0], n[1], n[2], ( i == ( verts.Num() - 1 ) ) ? "" : "," );
|
|
|
|
}
|
|
|
|
fp->WriteFloatString( "\t\t\t\t\t],\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\"polygons\":\n\t\t\t\t\t[\n" );
|
|
|
|
for( int i = 0; i < polygons.Num(); i++ )
|
|
|
|
{
|
|
|
|
const MapPolygon& poly = polygons[ i ];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t\t\t\t\t{ \"material\": \"%s\", \"indices\": [", poly.GetMaterial() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
#if 0
|
|
|
|
for( int j = 0; j < poly.indexes.Num(); j++ )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "%d%s", poly.indexes[j], ( j == poly.indexes.Num() - 1 ) ? "" : ", " );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for( int j = poly.indexes.Num() - 1 ; j >= 0; j-- )
|
|
|
|
{
|
|
|
|
fp->WriteFloatString( "%d%s", poly.indexes[j], ( j == 0 ) ? "" : ", " );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
fp->WriteFloatString( "] }%s\n", ( i == ( polygons.Num() - 1 ) ) ? "" : "," );
|
|
|
|
}
|
|
|
|
fp->WriteFloatString( "\t\t\t\t\t]\n" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
fp->WriteFloatString( "\t\t\t\t}" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
MapPolygonMesh* MapPolygonMesh::Parse( idLexer& src, const idVec3& origin, float version )
|
|
|
|
{
|
|
|
|
float info[7];
|
|
|
|
idToken token;
|
|
|
|
int i;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( "{" ) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// Parse it
|
|
|
|
if( !src.Parse1DMatrix( 5, info ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: unable to parse meshDef info" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
const int numVertices = ( int ) info[0];
|
|
|
|
const int numPolygons = ( int ) info[1];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
MapPolygonMesh* mesh = new MapPolygonMesh();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// parse vertices
|
|
|
|
if( !src.ExpectTokenString( "(" ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: bad mesh vertex data" );
|
|
|
|
delete mesh;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( i = 0; i < numVertices; i++ )
|
|
|
|
{
|
|
|
|
float v[8];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.Parse1DMatrix( 8, v ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: bad vertex column data" );
|
|
|
|
delete mesh;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// TODO optimize: preallocate vertices
|
|
|
|
//vert = &( ( *patch )[i * patch->GetWidth() + j] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idDrawVert vert;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
vert.xyz[0] = v[0];// - origin[0];
|
|
|
|
vert.xyz[1] = v[1];// - origin[1];
|
|
|
|
vert.xyz[2] = v[2];// - origin[2];
|
|
|
|
vert.SetTexCoord( v[3], v[4] );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
idVec3 n( v[5], v[6], v[7] );
|
|
|
|
vert.SetNormal( n );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
mesh->AddVertex( vert );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( ")" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::Parse: unable to parse vertices" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// parse polygons
|
|
|
|
if( !src.ExpectTokenString( "(" ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: bad mesh polygon data" );
|
|
|
|
delete mesh;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( i = 0; i < numPolygons; i++ )
|
|
|
|
{
|
|
|
|
// get material name
|
2016-03-05 19:52:09 +00:00
|
|
|
MapPolygon& polygon = mesh->polygons.Alloc();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
src.ReadToken( &token );
|
|
|
|
if( token.type == TT_STRING )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
polygon.SetMaterial( token );;
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: bad mesh polygon data" );
|
|
|
|
delete mesh;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
int numIndexes = src.ParseInt();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( "=" ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::Parse: bad mesh polygon data" );
|
|
|
|
delete mesh;
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//idTempArray<int> indexes( numIndexes );
|
|
|
|
for( int j = 0; j < numIndexes; j++ )
|
|
|
|
{
|
|
|
|
//indexes[j] = src.ParseInt();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
int index = src.ParseInt();
|
2016-03-05 19:52:09 +00:00
|
|
|
polygon.AddIndex( index );
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//polygon->SetIndexes( indexes );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( ")" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::Parse: unable to parse polygons" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( "}" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::Parse: unable to parse mesh primitive end" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( !src.ExpectTokenString( "}" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::Parse: unable to parse mesh primitive end" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
mesh->SetContents();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
MapPolygonMesh* MapPolygonMesh::ParseJSON( idLexer& src )
|
|
|
|
{
|
|
|
|
idToken token;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
MapPolygonMesh* mesh = new MapPolygonMesh();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "}" )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "verts" )
|
|
|
|
{
|
|
|
|
idDrawVert vert;
|
|
|
|
float v[8];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "}" )
|
|
|
|
{
|
|
|
|
mesh->AddVertex( vert );
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "]" )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "xyz" )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( ":" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.Parse1DMatrixJSON( 3, v ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: bad vertex column data" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
vert.xyz[0] = v[0];
|
|
|
|
vert.xyz[1] = v[1];
|
|
|
|
vert.xyz[2] = v[2];
|
|
|
|
}
|
|
|
|
else if( token == "st" )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( ":" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.Parse1DMatrixJSON( 2, v ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: bad vertex column data" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
vert.SetTexCoord( v[0], v[1] );
|
|
|
|
}
|
|
|
|
else if( token == "normal" )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( ":" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( !src.Parse1DMatrixJSON( 3, v ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: bad vertex column data" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
idVec3 n( v[0], v[1], v[2] );
|
|
|
|
vert.SetNormal( n );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "polygons" )
|
|
|
|
{
|
|
|
|
MapPolygon* polygon = NULL;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "{" )
|
|
|
|
{
|
|
|
|
polygon = &mesh->polygons.Alloc();
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "]" )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "material" )
|
|
|
|
{
|
|
|
|
if( !src.ExpectTokenString( ":" ) )
|
|
|
|
{
|
|
|
|
delete mesh;
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
src.ReadToken( &token );
|
|
|
|
if( token.type == TT_STRING )
|
|
|
|
{
|
|
|
|
polygon->SetMaterial( token );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( token == "indices" )
|
|
|
|
{
|
|
|
|
idList<int> indices;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( !src.ReadToken( &token ) )
|
|
|
|
{
|
|
|
|
src.Error( "MapPolygonMesh::ParseJSON: EOF without closing brace" );
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
if( token == "]" )
|
|
|
|
{
|
|
|
|
// reverse order from Blender
|
|
|
|
for( int i = indices.Num() - 1; i >= 0; i-- )
|
|
|
|
{
|
|
|
|
polygon->AddIndex( indices[i] );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if( token.type == TT_NUMBER )
|
|
|
|
{
|
|
|
|
int index = token.GetIntValue();
|
|
|
|
indices.Append( index );
|
|
|
|
}
|
|
|
|
else if( token == "," )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
mesh->SetContents();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
void MapPolygonMesh::SetContents()
|
|
|
|
{
|
|
|
|
if( polygons.Num() < 1 )
|
|
|
|
{
|
|
|
|
contents = CONTENTS_SOLID;
|
|
|
|
opaque = true;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
int c2;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
MapPolygon* poly = &polygons[0];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
const idMaterial* mat = declManager->FindMaterial( poly->GetMaterial() );
|
|
|
|
contents = mat->GetContentFlags();
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//b->contentShader = s->material;
|
|
|
|
bool mixed = false;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
// a brush is only opaque if all sides are opaque
|
|
|
|
opaque = true;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( int i = 1 ; i < polygons.Num() ; i++ )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
poly = &polygons[i];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
const idMaterial* mat2 = declManager->FindMaterial( poly->GetMaterial() );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
c2 = mat2->GetContentFlags();
|
|
|
|
if( c2 != contents )
|
|
|
|
{
|
|
|
|
mixed = true;
|
|
|
|
contents |= c2;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( mat2->Coverage() != MC_OPAQUE )
|
|
|
|
{
|
|
|
|
opaque = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int MapPolygonMesh::GetGeometryCRC() const
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned int crc;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
crc = 0;
|
|
|
|
for( i = 0; i < verts.Num(); i++ )
|
|
|
|
{
|
|
|
|
crc ^= FloatCRC( verts[i].xyz.x );
|
|
|
|
crc ^= FloatCRC( verts[i].xyz.y );
|
|
|
|
crc ^= FloatCRC( verts[i].xyz.z );
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
for( i = 0; i < polygons.Num(); i++ )
|
|
|
|
{
|
2016-03-05 19:52:09 +00:00
|
|
|
const MapPolygon& poly = polygons[i];
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
crc ^= StringCRC( poly.GetMaterial() );
|
2015-04-12 09:53:05 +00:00
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
return crc;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MapPolygonMesh::IsAreaportal() const
|
|
|
|
{
|
|
|
|
return ( ( contents & CONTENTS_AREAPORTAL ) != 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MapPolygonMesh::GetBounds( idBounds& bounds ) const
|
|
|
|
{
|
|
|
|
if( !verts.Num() )
|
|
|
|
{
|
|
|
|
bounds.Clear();
|
|
|
|
return;
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
bounds[0] = bounds[1] = verts[0].xyz;
|
|
|
|
for( int i = 1; i < verts.Num(); i++ )
|
|
|
|
{
|
|
|
|
const idVec3& p = verts[i].xyz;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
if( p.x < bounds[0].x )
|
|
|
|
{
|
|
|
|
bounds[0].x = p.x;
|
|
|
|
}
|
|
|
|
else if( p.x > bounds[1].x )
|
|
|
|
{
|
|
|
|
bounds[1].x = p.x;
|
|
|
|
}
|
|
|
|
if( p.y < bounds[0].y )
|
|
|
|
{
|
|
|
|
bounds[0].y = p.y;
|
|
|
|
}
|
|
|
|
else if( p.y > bounds[1].y )
|
|
|
|
{
|
|
|
|
bounds[1].y = p.y;
|
|
|
|
}
|
|
|
|
if( p.z < bounds[0].z )
|
|
|
|
{
|
|
|
|
bounds[0].z = p.z;
|
|
|
|
}
|
|
|
|
else if( p.z > bounds[1].z )
|
|
|
|
{
|
|
|
|
bounds[1].z = p.z;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool idMapFile::ConvertToPolygonMeshFormat()
|
|
|
|
{
|
|
|
|
int count = GetNumEntities();
|
|
|
|
for( int j = 0; j < count; j++ )
|
|
|
|
{
|
|
|
|
idMapEntity* ent = GetEntity( j );
|
|
|
|
if( ent )
|
|
|
|
{
|
|
|
|
idStr classname = ent->epairs.GetString( "classname" );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
//if( classname == "worldspawn" )
|
|
|
|
{
|
|
|
|
for( int i = 0; i < ent->GetNumPrimitives(); i++ )
|
|
|
|
{
|
|
|
|
idMapPrimitive* mapPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
mapPrim = ent->GetPrimitive( i );
|
|
|
|
if( mapPrim->GetType() == idMapPrimitive::TYPE_BRUSH )
|
|
|
|
{
|
|
|
|
MapPolygonMesh* meshPrim = new MapPolygonMesh();
|
|
|
|
meshPrim->epairs.Copy( mapPrim->epairs );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
meshPrim->ConvertFromBrush( static_cast<idMapBrush*>( mapPrim ), j, i );
|
|
|
|
ent->primitives[ i ] = meshPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
delete mapPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if( mapPrim->GetType() == idMapPrimitive::TYPE_PATCH )
|
|
|
|
{
|
|
|
|
MapPolygonMesh* meshPrim = new MapPolygonMesh();
|
|
|
|
meshPrim->epairs.Copy( mapPrim->epairs );
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
meshPrim->ConvertFromPatch( static_cast<idMapPatch*>( mapPrim ), j, i );
|
|
|
|
ent->primitives[ i ] = meshPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
delete mapPrim;
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 19:27:44 +00:00
|
|
|
|
2015-04-12 09:53:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-05 19:52:09 +00:00
|
|
|
// RB end
|