Modifica nomi variabili secondo nuovo standard

This commit is contained in:
andrea.villa
2024-05-14 11:47:53 +02:00
parent 59bbf159e4
commit 30fa7c8cbd
11 changed files with 499 additions and 389 deletions
+12 -12
View File
@@ -25,12 +25,12 @@ local function GetStrategies_Egalware( Proc)
---------------------------------------------------------------------
-- Feature : Cut
if ID.IsHeadCut( Proc) then -- TODO TOGLIERE IL true PER FORZARE IF!!! PROVVISORIO PER PROVARE STRATEGIE
if Proc.Topology.Name == 'FEATURE' then
if Proc.Topology.sName == 'FEATURE' then
Strategy_Egalware = {
StrategyId = 'STR0001',
sStrategyId = 'STR0001',
Parameters = {
{ Name = 'Step', Value = '15', Type = 'd'},
{ Name = 'AntiSplint', Value = 'false', Type = 'b'}
{ sName = 'Step', sValue = '15', sType = 'd'},
{ sName = 'AntiSplint', sValue = 'false', sType = 'b'}
}
}
table.insert( Strategies_Egalware, Strategy_Egalware)
@@ -57,8 +57,8 @@ local function GetStrategies_Egalware( Proc)
---------------------------------------------------------------------
-- Feature : Slot
elseif ID.IsSlot( Proc) then
if Proc.Topology.Name == 'Pocket-5-Blind' then
Strategy_Egalware = { StrategyId = 'STR0002'}
if Proc.Topology.sName == 'Pocket-5-Blind' then
Strategy_Egalware = { sStrategyId = 'STR0002'}
table.insert( Strategies_Egalware, Strategy_Egalware)
Strategy_Egalware = {}
end
@@ -101,8 +101,8 @@ local function GetStrategies_Egalware( Proc)
---------------------------------------------------------------------
-- Feature : Pocket
elseif ID.IsPocket( Proc) then
if Proc.Topology.Name == 'Pocket-5-Blind' then
Strategy_Egalware = { StrategyId = 'STR0002'}
if Proc.Topology.sName == 'Pocket-5-Blind' then
Strategy_Egalware = { sStrategyId = 'STR0002'}
table.insert( Strategies_Egalware, Strategy_Egalware)
Strategy_Egalware = {}
end
@@ -235,8 +235,8 @@ local function GetStrategies_Essetre( Proc)
---------------------------------------------------------------------
-- Feature : Slot
elseif ID.IsSlot( Proc) then
if Proc.Topology.Name == 'Pocket-5-Blind' then
Strategy_Essetre = { StrategyId = 'STR0002'}
if Proc.Topology.sName == 'Pocket-5-Blind' then
Strategy_Essetre = { sStrategyId = 'STR0002'}
table.insert( Strategies_Essetre, Strategy_Essetre)
Strategy_Essetre = {}
end
@@ -279,8 +279,8 @@ local function GetStrategies_Essetre( Proc)
---------------------------------------------------------------------
-- Feature : Pocket
elseif ID.IsPocket( Proc) then
if Proc.Topology.Name == 'Pocket-5-Blind' then
Strategy_Essetre = { StrategyId = 'STR0002'}
if Proc.Topology.sName == 'Pocket-5-Blind' then
Strategy_Essetre = { sStrategyId = 'STR0002'}
table.insert( Strategies_Essetre, Strategy_Essetre)
Strategy_Essetre = {}
end