Ejemplo n.º 1
0
        public List <ProminObject> SplitByUnits(string iniFile)
        {
            List <ProminObject> units = new List <ProminObject>();
            int prominObjectNumber    = 0;

            string[] parsedByGatesIniFile = iniFile.Split(Consts.gatesDivider, StringSplitOptions.RemoveEmptyEntries);

            for (int gateIterator = 1; gateIterator < parsedByGatesIniFile.Length; gateIterator++)
            {
                ProminObject prominObjectModel = new ProminObject();

                string[] gateSplittedIntoProminObjects = splitByProminObjects(parsedByGatesIniFile[gateIterator]);
                int      gateNumber = getGateNumber(gateSplittedIntoProminObjects);

                for (int prominObjectIterator = 0; prominObjectIterator <= gateSplittedIntoProminObjects.Length;
                     prominObjectIterator++)
                {
                    prominObjectNumber++;

                    ProminObject gate = new ProminObject();

                    if (parsedByGatesIniFile[1] == "ПСО")
                    {
                    }
                    else if (parsedByGatesIniFile[1] == "Щит інженерний" || parsedByGatesIniFile[1] == "Щит ліфта")
                    {
                        gate = CreateProminObjectModel(gate, prominObjectIterator, prominObjectNumber, gateNumber);
                    }

                    units.Add(gate);
                }
            }

            return(units);
        }
Ejemplo n.º 2
0
        public ProminObject CreateProminObjectModel(ProminObject prominObjectModel, int bitNumber, int buildingObjectNubmer, int gateNumber)
        {
            prominObjectModel.sector           = 234; //TODO: add logic for getting sector number
            prominObjectModel.buildingNo       = 1;   //TODO: add logic for getting building number
            prominObjectModel.buildingObjectNo = buildingObjectNubmer;
            prominObjectModel.gateNo           = gateNumber;
            prominObjectModel.bit                = bitNumber;
            prominObjectModel.code               = 16;           //TODO: addlogic for getting code number
            prominObjectModel.isInverted         = true;
            prominObjectModel.type               = "Additional"; //TODO: addlogic for getting type
            prominObjectModel.ignoreNotification = false;

            return(prominObjectModel);
        }