Example #1
0
        public TruckStatus()
        {
            StatusTimer logOn       = new StatusTimer("LogOn");
            StatusTimer rollOut     = new StatusTimer("RollOut");
            StatusTimer onPatrol    = new StatusTimer("OnPatrol");
            StatusTimer rollIn      = new StatusTimer("RollIn");
            StatusTimer onIncident  = new StatusTimer("OnIncident");
            StatusTimer onTow       = new StatusTimer("OnTow");
            StatusTimer logOff      = new StatusTimer("LogOff");
            StatusTimer onBreak     = new StatusTimer("OnBreak");
            StatusTimer onLunch     = new StatusTimer("OnLunch");
            StatusTimer enRoute     = new StatusTimer("EnRoute");
            StatusTimer forcedBreak = new StatusTimer("ForcedBreak");
            StatusTimer busy        = new StatusTimer("Busy");

            statusTimers.Add(logOn);
            statusTimers.Add(rollOut);
            statusTimers.Add(onPatrol);
            statusTimers.Add(rollIn);
            statusTimers.Add(onIncident);
            statusTimers.Add(onTow);
            statusTimers.Add(logOff);
            statusTimers.Add(onBreak);
            statusTimers.Add(onLunch);
            statusTimers.Add(enRoute);
            statusTimers.Add(forcedBreak);
            statusTimers.Add(busy);
            statusStarted = Convert.ToDateTime("01/01/2001 00:00:00");
        }
Example #2
0
        public void stopStatus(string _statusName, string truckNumber, string driverName, string contractorCompany, string Beat, double lat, double lon, Guid runID,
                               string location, double speed, int heading, Guid ScheduleID)
        {
            StatusTimer st = statusTimers.Find(delegate(StatusTimer find) {
                return(find.statusName == _statusName);
            });

            if (st != null)
            {
                if (st.isRunning() == true)
                {
                    st.StopTimer(statusID, _statusName, truckNumber, driverName, contractorCompany, Beat, lat, lon, runID, location, speed, heading, ScheduleID);
                }
            }
        }
Example #3
0
        public void startStatus(string _statusName, string truckNumber, string driverName, string contractorCompany, string Beat, double lat, double lon, Guid runID,
                                string location, double speed, int heading, Guid ScheduleID)
        {
            string statusMod = lookupStatusName(_statusName);

            statusStarted = DateTime.Now;
            if (!string.IsNullOrEmpty(statusMod))
            {
                if (statusMod != currentStatus) //we've got a status shift somewhere, shut down the old timer and start the new one
                {
                    stopStatus(currentStatus, truckNumber, driverName, contractorCompany, Beat, lat, lon, runID, location, speed, heading, ScheduleID);
                }

                StatusTimer st = statusTimers.Find(delegate(StatusTimer find) {
                    return(find.statusName == statusMod);
                });

                if (st != null)
                {
                    statusID = st.StartTimer(statusMod, truckNumber, driverName, contractorCompany, Beat, lat, lon, runID, location, speed, heading, ScheduleID);
                }
                currentStatus = statusMod;

                if (statusMod == "LogOn")
                {
                    stopStatus(statusMod, truckNumber, driverName, contractorCompany, Beat, lat, lon, runID, location, speed, heading, ScheduleID);
                    currentStatus = "LOGGED ON";
                }

                if (statusMod == "LogOff")
                {
                    stopStatus(statusMod, truckNumber, driverName, contractorCompany, Beat, lat, lon, runID, location, speed, heading, ScheduleID);
                    currentStatus = "Waiting for Driver Login";
                }
            }
        }