Example #1
0
 public LAPWriter()
 {
     lapFile = "";
     done = false;
     lapDC = null;
     lapSDC = null;
 }
Example #2
0
 public void Reset()
 {
     done = false;
     lapFile = null;
     lapDC = null;
     lapSDC = null;
 }
Example #3
0
 public void Reset()
 {
     done    = false;
     lapFile = null;
     lapDC   = null;
     lapSDC  = null;
 }
Example #4
0
 public LAPWriter()
 {
     lapFile = "";
     done    = false;
     lapDC   = null;
     lapSDC  = null;
 }
Example #5
0
 public void PrepareStrictLAP(AgentBase agent)
 {
     done = false;
     if (agent is Agent)
     {
         lapSDC = (agent as Agent).dc;
         DismantleSDC();
     }
 }
Example #6
0
 public void PrepareStrictLAP(AgentBase agent)
 {
     done = false;
     if (agent is Agent)
     {
         lapSDC = (agent as Agent).dc;
         DismantleSDC();
     }
 }
Example #7
0
        /// <summary>
        /// Loads the plan and creates the drive collection tree.
        ///
        /// The method parses the plan file, and then uses the plan builder to
        /// build the drive collection tree.
        /// </summary>
        /// <param name="planFile">Filename of the plan file that is loaded.</param>
        /// <returns></returns>
        internal override void LoadPlan(string planName)
        {
            // if setTimer() is not called, then the first use of
            // the timer will fail. setTimer() is called when the drive
            // collection is built.
            timer = null;
            // read plan, parse it and build drive collection
            PlanBuilder builder = new LAPParser().Parse(AssemblyControl.GetControl().GetPlanFile(library, planName));

            dc = builder.build(this);
        }