EgtExecutor :
- aggiunte funzioni Exe e Lua GetInfoInGroup.
This commit is contained in:
@@ -219,6 +219,25 @@ ExeGetPrevName( int nId, const string& sName)
|
||||
return pGeomDB->GetPrevName( nId, sName) ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
bool
|
||||
ExeGetInfoInGroup( int nGroupId, const string& sKey, INTVECTOR& vIds)
|
||||
{
|
||||
IGeomDB* pGeomDB = GetCurrGeomDB() ;
|
||||
VERIFY_GEOMDB( pGeomDB, GDB_ID_NULL)
|
||||
if ( ! pGeomDB->ExistsObj( nGroupId))
|
||||
return false ;
|
||||
// recupero gli oggetti con l'info desiderata
|
||||
vIds.clear() ;
|
||||
int nId = pGeomDB->GetFirstInGroup( nGroupId) ;
|
||||
while ( nId != GDB_ID_NULL) {
|
||||
if ( pGeomDB->ExistsInfo( nId, sKey))
|
||||
vIds.push_back( nId) ;
|
||||
nId = pGeomDB->GetNext( nId) ;
|
||||
}
|
||||
return true ;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
bool
|
||||
ExeGetBBox( int nId, int nFlag, BBox3d& b3Box)
|
||||
|
||||
Reference in New Issue
Block a user