mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Fix string usage that was broken from enabling the Max plugin build
This commit is contained in:
@ -386,7 +386,7 @@ static void ILogSpan(plStatusLog* statusLog, plGeometrySpan* geo, plVertexSpan*
|
||||
uint32_t ptr = cell->fVtxStart + span->fCellOffset * stride;
|
||||
|
||||
statusLog->AddLineF("From obj <%s> mat <%s> size %d bytes grp=%d (%d offset)",
|
||||
geo->fMaxOwner ? geo->fMaxOwner : "<unknown>",
|
||||
geo->fMaxOwner.s_str("<unknown>"),
|
||||
geo->fMaterial ? geo->fMaterial->GetKey()->GetName().c_str() : "<unknown>",
|
||||
geo->GetVertexSize(geo->fFormat) * geo->fNumVerts + sizeof(uint16_t) * geo->fNumIndices,
|
||||
span->fGroupIdx,
|
||||
@ -404,7 +404,7 @@ static void ILogSpan(plStatusLog* statusLog, plGeometrySpan* geo, plVertexSpan*
|
||||
else
|
||||
{
|
||||
statusLog->AddLineF("Instanced obj <%s> mat <%s> grp=%d (%d/%d/%d/%d/%d/%d/%d/%d)",
|
||||
geo->fMaxOwner ? geo->fMaxOwner : "<unknown>",
|
||||
geo->fMaxOwner.s_str("<unknown>"),
|
||||
geo->fMaterial ? geo->fMaterial->GetKey()->GetName().c_str() : "<unknown>",
|
||||
span->fGroupIdx,
|
||||
span->fVBufferIdx,
|
||||
@ -423,7 +423,7 @@ static void ILogSpan(plStatusLog* statusLog, plGeometrySpan* geo, plVertexSpan*
|
||||
if( geo->fProps & plGeometrySpan::kFirstInstance )
|
||||
{
|
||||
statusLog->AddLineF("From obj <%s> mat <%s> size %d bytes grp=%d (%d/%d/%d/%d/%d)",
|
||||
geo->fMaxOwner ? geo->fMaxOwner : "<unknown>",
|
||||
geo->fMaxOwner.s_str("<unknown>"),
|
||||
geo->fMaterial ? geo->fMaterial->GetKey()->GetName().c_str() : "<unknown>",
|
||||
geo->GetVertexSize(geo->fFormat) * geo->fNumVerts + sizeof(uint16_t) * geo->fNumIndices,
|
||||
span->fGroupIdx,
|
||||
@ -437,7 +437,7 @@ static void ILogSpan(plStatusLog* statusLog, plGeometrySpan* geo, plVertexSpan*
|
||||
else
|
||||
{
|
||||
statusLog->AddLineF("Instanced obj <%s> mat <%s> grp=%d (%d/%d/%d/%d/%d)",
|
||||
geo->fMaxOwner ? geo->fMaxOwner : "<unknown>",
|
||||
geo->fMaxOwner.s_str("<unknown>"),
|
||||
geo->fMaterial ? geo->fMaterial->GetKey()->GetName().c_str() : "<unknown>",
|
||||
span->fGroupIdx,
|
||||
span->fVBufferIdx,
|
||||
|
@ -115,7 +115,7 @@ void plGeometrySpan::IClearMembers( void )
|
||||
|
||||
fDecalLevel = 0;
|
||||
|
||||
fMaxOwner = nil;
|
||||
fMaxOwner = plString::Null;
|
||||
}
|
||||
|
||||
//// ClearBuffers ////////////////////////////////////////////////////////////
|
||||
|
@ -136,20 +136,20 @@ class plGeometrySpan
|
||||
hsBounds3Ext fWorldBounds;
|
||||
plFogEnvironment *fFogEnviron;
|
||||
|
||||
uint32_t fBaseMatrix;
|
||||
uint8_t fNumMatrices;
|
||||
uint16_t fLocalUVWChans;
|
||||
uint16_t fMaxBoneIdx;
|
||||
uint32_t fPenBoneIdx;
|
||||
uint32_t fBaseMatrix;
|
||||
uint8_t fNumMatrices;
|
||||
uint16_t fLocalUVWChans;
|
||||
uint16_t fMaxBoneIdx;
|
||||
uint32_t fPenBoneIdx;
|
||||
|
||||
float fMinDist;
|
||||
float fMaxDist;
|
||||
float fMinDist;
|
||||
float fMaxDist;
|
||||
|
||||
float fWaterHeight;
|
||||
float fWaterHeight;
|
||||
|
||||
uint8_t fFormat;
|
||||
uint32_t fProps;
|
||||
uint32_t fNumVerts, fNumIndices;
|
||||
uint8_t fFormat;
|
||||
uint32_t fProps;
|
||||
uint32_t fNumVerts, fNumIndices;
|
||||
|
||||
/// Current vertex format:
|
||||
/// float position[ 3 ];
|
||||
@ -158,22 +158,22 @@ class plGeometrySpan
|
||||
/// float weights[]; // 0-3 blending weights
|
||||
/// uint32_t weightIndices; // Only if there are >= 1 blending weights
|
||||
|
||||
uint8_t* fVertexData;
|
||||
uint16_t* fIndexData;
|
||||
uint32_t fDecalLevel;
|
||||
uint8_t* fVertexData;
|
||||
uint16_t* fIndexData;
|
||||
uint32_t fDecalLevel;
|
||||
|
||||
hsColorRGBA* fMultColor;
|
||||
hsColorRGBA* fAddColor;
|
||||
|
||||
uint32_t* fDiffuseRGBA;
|
||||
uint32_t* fSpecularRGBA;
|
||||
uint32_t* fDiffuseRGBA;
|
||||
uint32_t* fSpecularRGBA;
|
||||
|
||||
mutable hsTArray<plGeometrySpan *>* fInstanceRefs;
|
||||
mutable uint32_t fInstanceGroupID; // For writing out/reading in instance refs
|
||||
mutable uint32_t fInstanceGroupID; // For writing out/reading in instance refs
|
||||
|
||||
// The following is only used for logging during export. It is never set
|
||||
// at runtime. Don't even think about using it for anything.
|
||||
const char* fMaxOwner;
|
||||
plString fMaxOwner;
|
||||
|
||||
// The following is ONLY used during pack; it's so we can do a reverse lookup
|
||||
// from the instanceRefs list to the correct span in the drawable
|
||||
|
Reference in New Issue
Block a user