Removed the Init function

This commit is contained in:
FlightControl 2016-11-30 15:22:24 +01:00
parent 9c4b147b6b
commit 62b476144a
2 changed files with 14 additions and 26 deletions

View File

@ -107,20 +107,6 @@ do -- PROCESS_ACCOUNT
return self
end
--- Creates a new DESTROY process.
-- @param #PROCESS_ACCOUNT self
-- @return #PROCESS_ACCOUNT
function PROCESS_ACCOUNT:Init()
self.DisplayInterval = 30
self.DisplayCount = 30
self.DisplayMessage = true
self.DisplayTime = 10 -- 10 seconds is the default
self.DisplayCategory = "HQ" -- Targets is the default display category
return self
end
--- Process Events
--- StateMachine callback function
@ -130,7 +116,14 @@ do -- PROCESS_ACCOUNT
-- @param #string From
-- @param #string To
function PROCESS_ACCOUNT:onafterStart( ProcessUnit, Event, From, To )
-- TODO: need to generalize the timing.
self.DisplayInterval = 30
self.DisplayCount = 30
self.DisplayMessage = true
self.DisplayTime = 10 -- 10 seconds is the default
self.DisplayCategory = "HQ" -- Targets is the default display category
self:EventOnDead( self.EventDead )
self:__Wait( 1 )

View File

@ -115,17 +115,6 @@ do -- PROCESS_ROUTE
return self
end
function PROCESS_ROUTE:Init()
self.DisplayInterval = 30
self.DisplayCount = 30
self.DisplayMessage = true
self.DisplayTime = 10 -- 10 seconds is the default
self.DisplayCategory = "HQ" -- Route is the default display category
return self
end
--- Task Events
--- StateMachine callback function
@ -136,6 +125,12 @@ do -- PROCESS_ROUTE
-- @param #string To
function PROCESS_ROUTE:onafterStart( ProcessUnit, Event, From, To )
self.DisplayInterval = 30
self.DisplayCount = 30
self.DisplayMessage = true
self.DisplayTime = 10 -- 10 seconds is the default
self.DisplayCategory = "HQ" -- Route is the default display category
self:__Route( 1 )
end