EgtMachKernel 1.6p4 :
- ampliata Disposizione con gestione movimenti di pezzi con la testa tramite SpecialApply (che richiama script) - modifiche a Simulatore per gestire queste disposizioni e aggiunti richiami script su diversi eventi - modifiche a Generatore per gestire queste disposizioni - varie altre modifiche e migliorie.
This commit is contained in:
@@ -139,7 +139,7 @@ MachMgr::AddMachGroup( const string& sName, const string& sMachineName)
|
||||
ShowRootParts( false) ;
|
||||
// rendo visibile il nuovo gruppo corrente e la relativa macchina
|
||||
m_pGeomDB->SetStatus( m_nCurrMGrpId, GDB_ST_ON) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMGeoId(), GDB_ST_ON) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMachineId(), GDB_ST_ON) ;
|
||||
// restituisco l'identificativo del gruppo
|
||||
return nNewId ;
|
||||
}
|
||||
@@ -278,7 +278,7 @@ MachMgr::SetCurrMachGroup( int nId)
|
||||
ShowRootParts( false) ;
|
||||
// rendo visibile il nuovo gruppo corrente e la relativa macchina
|
||||
m_pGeomDB->SetStatus( m_nCurrMGrpId, GDB_ST_ON) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMGeoId(), GDB_ST_ON) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMachineId(), GDB_ST_ON) ;
|
||||
return true ;
|
||||
}
|
||||
|
||||
@@ -307,7 +307,7 @@ MachMgr::PrepareCurrMachGroup( int nId)
|
||||
SwapParts( false) ;
|
||||
// nascondo precedente gruppo corrente e la relativa macchina
|
||||
m_pGeomDB->SetStatus( m_nCurrMGrpId, GDB_ST_OFF) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMGeoId(),GDB_ST_OFF) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMachineId(),GDB_ST_OFF) ;
|
||||
}
|
||||
// imposto i dati del nuovo gruppo corrente
|
||||
m_nCurrMGrpId = nId ;
|
||||
@@ -340,7 +340,7 @@ MachMgr::ResetCurrMachGroup( void)
|
||||
ShowRootParts( true) ;
|
||||
// nascondo gruppo corrente e la relativa macchina
|
||||
m_pGeomDB->SetStatus( m_nCurrMGrpId, GDB_ST_OFF) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMGeoId(), GDB_ST_OFF) ;
|
||||
m_pGeomDB->SetStatus( GetCurrMachineId(), GDB_ST_OFF) ;
|
||||
// dichiaro nessun gruppo e lavorazione correnti, lascio corrente la macchina
|
||||
m_nCurrMGrpId = GDB_ID_NULL ;
|
||||
m_nCurrMachiningId = GDB_ID_NULL ;
|
||||
|
||||
Reference in New Issue
Block a user