EgtMachKernel 2.2c1 :

- in Milling modificato riconoscimento percorso chiuso per cambio inizio (per evitare percorsi sovrapposti di pulizia spigoli)
- in Milling, Pocketing, Mortising e Chiseling corretto cambio affondamento che supera l'elevazione
- in gestione utensili aggiunte funzioni SetCurrToolValInNotes, RemoveCurrToolValInNotes e GetCurrToolValInNotes.
This commit is contained in:
Dario Sassi
2020-03-07 08:59:15 +00:00
parent c5f0bc1034
commit 82f3d1a5d8
9 changed files with 235 additions and 84 deletions
+108
View File
@@ -198,6 +198,66 @@ MachMgr::TdbSetCurrToolParam( int nType, const string& sVal)
return pTsMgr->SetCurrToolParam( nType, sVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbSetCurrToolValInNotes( int nType, const string& sKey, bool bVal)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// assegno il parametro
return pTsMgr->SetCurrToolValInNotes( nType, sKey, bVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbSetCurrToolValInNotes( int nType, const string& sKey, int nVal)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// assegno il parametro
return pTsMgr->SetCurrToolValInNotes( nType, sKey, nVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbSetCurrToolValInNotes( int nType, const string& sKey, double dVal)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// assegno il parametro
return pTsMgr->SetCurrToolValInNotes( nType, sKey, dVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbSetCurrToolValInNotes( int nType, const string& sKey, const std::string& sVal)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// assegno il parametro
return pTsMgr->SetCurrToolValInNotes( nType, sKey, sVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbRemoveCurrToolValInNotes( int nType, const string& sKey)
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// leggo il parametro
return pTsMgr->RemoveCurrToolValInNotes( nType, sKey) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolParam( int nType, bool& bVal) const
@@ -246,6 +306,54 @@ MachMgr::TdbGetCurrToolParam( int nType, string& sVal) const
return pTsMgr->GetCurrToolParam( nType, sVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolValInNotes( int nType, const string& sKey, bool& bVal) const
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// leggo il parametro
return pTsMgr->GetCurrToolValInNotes( nType, sKey, bVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolValInNotes( int nType, const string& sKey, int& nVal) const
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// leggo il parametro
return pTsMgr->GetCurrToolValInNotes( nType, sKey, nVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolValInNotes( int nType, const string& sKey, double& dVal) const
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// leggo il parametro
return pTsMgr->GetCurrToolValInNotes( nType, sKey, dVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolValInNotes( int nType, const string& sKey, string& sVal) const
{
// recupero il gestore di utensili della macchina corrente
ToolsMgr* pTsMgr = GetCurrToolsMgr() ;
if ( pTsMgr == nullptr)
return false ;
// leggo il parametro
return pTsMgr->GetCurrToolValInNotes( nType, sKey, sVal) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::TdbGetCurrToolMaxDepth( double& dMaxDepth) const