コード例 #1
0
        public List <MassObject> ExcelToMassData(List <List <string> > excelData)
        {
            List <string> headers = excelData[0];

            bool accurateHeaders = true;

            for (int i = 0; i < headers.Count; i++)
            {
                if (!accurateHeaders)
                {
                    break;
                }

                switch (i)
                {
                case 0:
                    if (headers[i].ToUpper() == "DEPARTMENT" || headers[i].ToUpper() == "DEPT")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 1:
                    if (headers[i].ToUpper() == "ROOM TYPE" || headers[i].ToUpper() == "ROOMTYPE")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 2:
                    if (headers[i].ToUpper() == "ROOM NAME" || headers[i].ToUpper() == "ROOMNAME")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 3:
                    if (headers[i].ToUpper() == "ROOM NUMBER" || headers[i].ToUpper() == "ROOMNUMBER")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 4:
                    if (headers[i].ToUpper() == "PROGRAM AREA" || headers[i].ToUpper() == "PROGRAMAREA")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 5:
                    if (headers[i].ToUpper() == "QTY" || headers[i].ToUpper() == "QUANTITY")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                default:
                    break;
                }
            }

            if (accurateHeaders)
            {
                // Create the mass objects and fill out the datagrid table
                List <MassObject> masses      = new List <MassObject>();
                string            currentDept = null;
                string            currentType = null;
                for (int i = 1; i < excelData.Count; i++)
                {
                    MassObject          mass       = new MassObject();
                    List <ParameterObj> massParams = new List <ParameterObj>();
                    bool valid = true;
                    for (int j = 0; j < excelData[i].Count; j++)
                    {
                        try
                        {
                            if (j == 0)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    currentDept     = excelData[i][j];
                                    mass.Department = excelData[i][j];
                                }
                                else if (currentDept != null)
                                {
                                    mass.Department = currentDept;
                                }
                                else
                                {
                                    mass.Department = "NULL";
                                }
                            }
                            else if (j == 1)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    currentType   = excelData[i][j];
                                    mass.RoomType = excelData[i][j];
                                }
                                else if (currentType != null)
                                {
                                    mass.RoomType = currentType;
                                }
                                else
                                {
                                    mass.RoomType = "NULL";
                                }
                            }
                            else if (j == 2)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    mass.RoomName = excelData[i][j];
                                }
                                else
                                {
                                    valid = false;
                                    break;
                                }
                            }
                            else if (j == 3)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    mass.RoomNumber = excelData[i][j];
                                }
                                else
                                {
                                    valid = false;
                                    break;
                                }
                            }
                            else if (j == 4)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    double area = double.NaN;
                                    double.TryParse(excelData[i][j], out area);
                                    mass.ProgramArea = area;
                                }
                                else
                                {
                                    continue;
                                }
                            }
                            else if (j == 5)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    int qty = 1;
                                    int.TryParse(excelData[i][j], out qty);
                                    mass.Quantity = qty;
                                }
                                else
                                {
                                    continue;
                                }
                            }
                            else if (j > 5)
                            {
                                ParameterObj param = new ParameterObj();
                                param.Name  = headers[j];
                                param.Value = excelData[i][j];
                                massParams.Add(param);
                            }
                        }
                        catch { }
                    }

                    if (valid)
                    {
                        mass.Parameters = massParams;
                        masses.Add(mass);
                    }
                }
                return(masses);
            }
            else
            {
                TaskDialog.Show("Warning", "The selected Excel worksheet is not in a valid format.");
                return(null);
            }
        }
コード例 #2
0
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            try
            {
                Document doc = commandData.Application.ActiveUIDocument.Document;

                string fileName = null;
                using (System.Windows.Forms.OpenFileDialog dlg = new System.Windows.Forms.OpenFileDialog())
                {
                    dlg.Title            = "Select an Excel File";
                    dlg.RestoreDirectory = true;
                    dlg.Filter           = "Excel (*.xlsx; *.xls)|*.xlsx;*.xls|All Files (*.*)|*.*";

                    System.Windows.Forms.DialogResult result = dlg.ShowDialog();
                    if (result == System.Windows.Forms.DialogResult.OK)
                    {
                        fileName = dlg.FileName;
                    }
                }

                if (fileName != null)
                {
                    if (fileName.Split(new char[] { '.' }).Last().ToLower() == "xls" || fileName.Split(new char[] { '.' }).Last().ToLower() == "xlsx")
                    {
                        string fileOnly = new System.IO.FileInfo(fileName).Name;
                        // Launch the workset selector
                        System.Diagnostics.Process proc = System.Diagnostics.Process.GetCurrentProcess();
                        IntPtr handle = proc.MainWindowHandle;
                        WorksheetSelectWindow selectWindow = new WorksheetSelectWindow(RevitCommon.Excel.GetWorksheetNames(fileName));

                        System.Windows.Interop.WindowInteropHelper helper = new System.Windows.Interop.WindowInteropHelper(selectWindow);
                        helper.Owner = handle;
                        selectWindow.ShowDialog();

                        if (selectWindow.WorksheetName != null)
                        {
                            Schema schema = Schema.Lookup(Properties.Settings.Default.SchemaIdElement);

                            // Get the masses from the project that mach the file name and worksheet.
                            IList <Element> massElements = new FilteredElementCollector(doc)
                                                           .OfCategory(BuiltInCategory.OST_Mass)
                                                           .WhereElementIsNotElementType()
                                                           .Where(x => x.GetEntity(schema) != null && x.GetEntity(schema).Schema != null)
                                                           .ToList();

                            List <Element> filteredMasses = new List <Element>();
                            List <string>  parameterNames = new List <string>();
                            List <string>  groupingParams = new List <string>();
                            ElementId      symbolId       = null;
                            ElementId      levelId        = null;
                            Level          selectedLevel  = null;
                            FamilySymbol   selectedSymbol = null;
                            string         creationTime   = null;

                            foreach (Element elem in massElements)
                            {
                                Entity entity = elem.GetEntity(schema);
                                if (entity != null && entity.IsValid())
                                {
                                    string elemFile  = entity.Get <string>(schema.GetField("FileName"));
                                    string worksheet = entity.Get <string>(schema.GetField("Worksheet"));
                                    if (fileOnly.ToLower() == elemFile.ToLower() && worksheet.ToLower() == selectWindow.WorksheetName.ToLower())
                                    {
                                        filteredMasses.Add(elem);
                                        if (parameterNames.Count == 0)
                                        {
                                            parameterNames = entity.Get <IList <string> >(schema.GetField("ParameterNames")).ToList();
                                        }
                                        if (groupingParams.Count == 0)
                                        {
                                            groupingParams = entity.Get <IList <string> >(schema.GetField("GroupingParameters")).ToList();
                                        }
                                        if (symbolId == null)
                                        {
                                            selectedSymbol = doc.GetElement(entity.Get <ElementId>(schema.GetField("SymbolId"))) as FamilySymbol;
                                        }
                                        if (levelId == null)
                                        {
                                            selectedLevel = doc.GetElement(entity.Get <ElementId>(schema.GetField("LevelId"))) as Level;
                                        }
                                        if (creationTime == null)
                                        {
                                            creationTime = entity.Get <string>(schema.GetField("CreationTime"));
                                        }
                                    }
                                }
                            }

                            if (filteredMasses.Count > 0)
                            {
                                string headerStream = string.Empty;
                                // Excel data
                                List <List <string> > data   = RevitCommon.Excel.Read(fileName, selectWindow.WorksheetName);
                                List <MassObject>     masses = ExcelToMassData(data);

                                List <string> headers = data[0];
                                List <int>    indices = new List <int>();
                                foreach (string gn in groupingParams)
                                {
                                    for (int i = 0; i < headers.Count; i++)
                                    {
                                        if (headers[i] == gn)
                                        {
                                            indices.Add(i);
                                            break;
                                        }
                                    }
                                }

                                // find all of the unique groupings
                                List <string> uniqueGroups = new List <string>();
                                for (int i = 1; i < masses.Count; i++)
                                {
                                    MassObject mo        = masses[i];
                                    string     groupName = GetGroupID(mo, indices);
                                    if (!uniqueGroups.Contains(groupName))
                                    {
                                        uniqueGroups.Add(groupName);
                                    }
                                }

                                // Organize the masses into groups
                                List <List <MassObject> > organizedMasses = OrganizeMasses(masses, uniqueGroups, indices);

                                // Get the DisplayUnitTypes for length and area.
                                Units           units     = doc.GetUnits();
                                FormatOptions   areaFO    = units.GetFormatOptions(UnitType.UT_Area);
                                FormatOptions   lengthFO  = units.GetFormatOptions(UnitType.UT_Length);
                                DisplayUnitType lengthDUT = lengthFO.DisplayUnits;
                                DisplayUnitType areaDUT   = areaFO.DisplayUnits;

                                double defaultHeight = 10;
                                if (lengthDUT == DisplayUnitType.DUT_CENTIMETERS || lengthDUT == DisplayUnitType.DUT_DECIMETERS || lengthDUT == DisplayUnitType.DUT_METERS ||
                                    lengthDUT == DisplayUnitType.DUT_METERS_CENTIMETERS || lengthDUT == DisplayUnitType.DUT_MILLIMETERS)
                                {
                                    defaultHeight = 9.84252;
                                }

                                Transaction trans = new Transaction(doc, "Update Space Planning Masses");
                                trans.Start();

                                // Iterate through the organized masses and either update an existing one or create a new one.
                                double currentX = 0;
                                foreach (List <MassObject> massGroup in organizedMasses)
                                {
                                    double maxX     = 0;
                                    double currentY = 0;
                                    foreach (MassObject mass in massGroup)
                                    {
                                        string rName     = mass.RoomName;
                                        string rNumber   = mass.RoomNumber;
                                        string groupName = mass.GroupId;

                                        ElementId      matId          = null;
                                        List <Element> massesToupdate = new List <Element>();
                                        foreach (Element elem in massElements)
                                        {
                                            Entity entity = null;
                                            try
                                            {
                                                entity = elem.GetEntity(schema);
                                            }
                                            catch { }
                                            if (entity != null)
                                            {
                                                string        groupId    = entity.Get <string>(schema.GetField("GroupId"));
                                                List <string> paramNames = entity.Get <IList <string> >(schema.GetField("ParameterNames")).ToList();
                                                string        roomname   = elem.LookupParameter(paramNames[2]).AsString();
                                                string        roomnumber = elem.LookupParameter(paramNames[3]).AsString();
                                                if (roomname == rName && roomnumber == rNumber && groupId == groupName)
                                                {
                                                    massesToupdate.Add(elem);
                                                }


                                                if (matId == null && groupName == groupId && paramNames[5] != null)
                                                {
                                                    matId = elem.LookupParameter(paramNames[5]).AsElementId();
                                                }
                                            }
                                        }

                                        // Calculate width and depth
                                        double sideLength = 10;
                                        if (mass.ProgramArea > 0)
                                        {
                                            sideLength = Math.Sqrt(mass.ProgramArea);
                                        }
                                        if (sideLength > maxX)
                                        {
                                            maxX = sideLength;
                                        }
                                        if (massesToupdate.Count > 0)
                                        {
                                            // Update mass element
                                            foreach (Element updateElem in massesToupdate)
                                            {
                                                try
                                                {
                                                    // update the program area and extra parameters only
                                                    FamilyInstance fi = updateElem as FamilyInstance;

                                                    Parameter areaParam = null;
                                                    if (parameterNames[4] != null)
                                                    {
                                                        areaParam = fi.LookupParameter(parameterNames[4]);
                                                    }
                                                    if (areaParam != null)
                                                    {
                                                        areaParam.Set(UnitUtils.ConvertToInternalUnits(mass.ProgramArea, areaDUT));
                                                    }

                                                    for (int k = 9; k < parameterNames.Count; k++)
                                                    {
                                                        ParameterObj po        = mass.Parameters[k - 9];
                                                        Parameter    miscParam = null;
                                                        miscParam = updateElem.LookupParameter(parameterNames[k]);
                                                        if (miscParam != null)
                                                        {
                                                            switch (miscParam.StorageType)
                                                            {
                                                            case StorageType.Double:
                                                                double dbl = 0;
                                                                if (double.TryParse(po.Value, out dbl))
                                                                {
                                                                    if (miscParam.Definition.ParameterType == ParameterType.Area)
                                                                    {
                                                                        miscParam.Set(UnitUtils.ConvertToInternalUnits(dbl, areaDUT));
                                                                    }
                                                                    else if (miscParam.Definition.ParameterType == ParameterType.Length)
                                                                    {
                                                                        miscParam.Set(UnitUtils.ConvertToInternalUnits(dbl, lengthDUT));
                                                                    }
                                                                    else
                                                                    {
                                                                        miscParam.Set(dbl);
                                                                    }
                                                                }
                                                                break;

                                                            case StorageType.Integer:
                                                                int integer = 0;
                                                                if (int.TryParse(po.Value, out integer))
                                                                {
                                                                    miscParam.Set(integer);
                                                                }
                                                                break;

                                                            case StorageType.ElementId:
                                                                int elemIdInt = 0;
                                                                if (int.TryParse(po.Value, out integer))
                                                                {
                                                                    miscParam.Set(new ElementId(elemIdInt));
                                                                }
                                                                break;

                                                            default:
                                                                miscParam.Set(po.Value);
                                                                break;
                                                            }
                                                        }
                                                    }
                                                }
                                                catch (Exception ex)
                                                {
                                                    TaskDialog.Show("error", ex.Message);
                                                }
                                            }
                                        }
                                        if (mass.Quantity - massesToupdate.Count > 0)
                                        {
                                            // Create a new mass element
                                            // need to track X and Y position for creating masses

                                            for (int j = 0; j < mass.Quantity - massesToupdate.Count; j++)
                                            {
                                                // Location
                                                XYZ loc = new XYZ(currentX, currentY, selectedLevel.ProjectElevation);

                                                //FamilyInstance
                                                FamilyInstance fi = doc.Create.NewFamilyInstance(loc, selectedSymbol, Autodesk.Revit.DB.Structure.StructuralType.NonStructural);

                                                // Set the parameters as necessary
                                                if (parameterNames[0] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[0]).Set(mass.Department);
                                                }

                                                if (parameterNames[1] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[1]).Set(mass.RoomType);
                                                }

                                                if (parameterNames[2] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[2]).Set(mass.RoomName);
                                                }

                                                if (parameterNames[3] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[3]).Set(mass.RoomNumber);
                                                }

                                                if (parameterNames[4] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[4]).Set(UnitUtils.ConvertToInternalUnits(mass.ProgramArea, areaDUT));
                                                }

                                                if (parameterNames[5] != null && matId != null)
                                                {
                                                    fi.LookupParameter(parameterNames[5]).Set(matId);
                                                }

                                                if (parameterNames[6] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[6]).Set(UnitUtils.ConvertToInternalUnits(sideLength, lengthDUT));
                                                }

                                                if (parameterNames[7] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[7]).Set(UnitUtils.ConvertToInternalUnits(sideLength, lengthDUT));
                                                }

                                                if (parameterNames[8] != null)
                                                {
                                                    fi.LookupParameter(parameterNames[8]).Set(UnitUtils.ConvertToInternalUnits(defaultHeight, lengthDUT));
                                                }

                                                for (int k = 9; k < parameterNames.Count; k++)
                                                {
                                                    ParameterObj po = mass.Parameters[k - 9];

                                                    if (parameterNames[k] != null)
                                                    {
                                                        try
                                                        {
                                                            Parameter p = fi.LookupParameter(parameterNames[k]);
                                                            switch (p.StorageType)
                                                            {
                                                            case StorageType.Double:
                                                                double dbl = 0;
                                                                if (double.TryParse(po.Value, out dbl))
                                                                {
                                                                    if (p.Definition.ParameterType == ParameterType.Area)
                                                                    {
                                                                        p.Set(UnitUtils.ConvertToInternalUnits(dbl, areaDUT));
                                                                    }
                                                                    else if (p.Definition.ParameterType == ParameterType.Length)
                                                                    {
                                                                        p.Set(UnitUtils.ConvertToInternalUnits(dbl, lengthDUT));
                                                                    }
                                                                    else
                                                                    {
                                                                        p.Set(dbl);
                                                                    }
                                                                }
                                                                break;

                                                            case StorageType.Integer:
                                                                int integer = 0;
                                                                if (int.TryParse(po.Value, out integer))
                                                                {
                                                                    p.Set(integer);
                                                                }
                                                                break;

                                                            case StorageType.ElementId:
                                                                int elemIdInt = 0;
                                                                if (int.TryParse(po.Value, out integer))
                                                                {
                                                                    p.Set(new ElementId(elemIdInt));
                                                                }
                                                                break;

                                                            default:
                                                                p.Set(po.Value);
                                                                break;
                                                            }
                                                        }
                                                        catch { }
                                                    }
                                                }

                                                // Store the local Schema data, ie the creation datetime.
                                                try
                                                {
                                                    StoreElemDateTime(fi, fileOnly, selectWindow.WorksheetName, parameterNames, groupingParams, selectedSymbol, selectedLevel, creationTime, groupName);
                                                }
                                                catch (Exception ex)
                                                {
                                                    TaskDialog.Show("Schema Error", ex.Message);
                                                }
                                                currentY = currentY + sideLength + 5;
                                            }
                                        }
                                    }
                                    // Adjust the X position
                                    currentX = currentX + maxX + 5;
                                }
                                trans.Commit();
                            }
                        }
                    }
                }

                return(Result.Succeeded);
            }
            catch (Exception ex)
            {
                message = ex.Message;
                return(Result.Failed);
            }
        }
コード例 #3
0
        public void ResetMaterialControls()
        {
            // Identify the indices of the
            columnIndecies = new List <int>();
            foreach (string groupParam in massGroupingParams)
            {
                for (int i = 0; i < headers.Count; i++)
                {
                    string val = headers[i];
                    if (val == groupParam)
                    {
                        columnIndecies.Add(i);
                        break;
                    }
                }
            }

            // Group figure out how many groupings we need
            groupingNames = new List <string>();
            foreach (object obj in importDataGrid.Items)
            {
                try
                {
                    DataRowView drv   = obj as DataRowView;
                    string      gName = string.Empty;
                    foreach (int i in columnIndecies)
                    {
                        if (gName == string.Empty)
                        {
                            gName = drv.Row.ItemArray[i].ToString();
                        }
                        else
                        {
                            gName += " - " + drv.Row.ItemArray[i].ToString();
                        }
                    }
                    if (!groupingNames.Contains(gName))
                    {
                        groupingNames.Add(gName);
                    }
                }
                catch (Exception ex)
                {
                    TaskDialog.Show("Error: ", ex.Message);
                }
            }

            // instantiate the controls onto the material control area
            controlPanel.Children.Clear();
            organizedMasses = new List <List <MassObject> >();
            foreach (string gName in groupingNames)
            {
                MaterialSelectorControl ctrl = new MaterialSelectorControl(gName, projMaterials);
                ctrl.Margin = new Thickness(0, 0, 0, 0);
                controlPanel.Children.Add(ctrl);
                organizedMasses.Add(new List <MassObject>());
            }

            foreach (object obj in importDataGrid.Items)
            {
                try
                {
                    DataRowView drv     = obj as DataRowView;
                    string      curName = string.Empty;
                    foreach (int i in columnIndecies)
                    {
                        if (curName == string.Empty)
                        {
                            curName = drv.Row.ItemArray[i].ToString();
                        }
                        else
                        {
                            curName += " - " + drv.Row.ItemArray[i].ToString();
                        }
                    }
                    int index = groupingNames.IndexOf(curName);


                    string rName = drv.Row.ItemArray[2].ToString();
                    string rNumb = drv.Row.ItemArray[3].ToString();
                    if (rName == string.Empty && rName == null && rNumb == string.Empty && rNumb == null)
                    {
                        continue;
                    }
                    string dept                   = drv.Row.ItemArray[0].ToString();
                    string rType                  = drv.Row.ItemArray[1].ToString();
                    string progAreaStr            = drv.Row.ItemArray[4].ToString();
                    string qtyStr                 = drv.Row.ItemArray[5].ToString();
                    List <ParameterObj> paramObjs = new List <ParameterObj>();
                    for (int i = 6; i < drv.Row.ItemArray.Length; i++)
                    {
                        ParameterObj po = new ParameterObj();
                        po.Name  = "#" + headers[i] + "#";
                        po.Value = drv.Row.ItemArray[i].ToString();
                        paramObjs.Add(po);
                    }
                    MassObject mo = new MassObject();
                    mo.RoomName   = rName;
                    mo.RoomNumber = rNumb;

                    if (dept != null && dept != string.Empty)
                    {
                        mo.Department = dept;
                    }
                    else
                    {
                        mo.Department = string.Empty;
                    }

                    if (rType != null && rType != string.Empty)
                    {
                        mo.RoomType = rType;
                    }
                    else
                    {
                        mo.RoomType = string.Empty;
                    }

                    double area = 0;
                    if (double.TryParse(progAreaStr, out area))
                    {
                        mo.ProgramArea = area;
                    }
                    else
                    {
                        mo.ProgramArea = 0;
                    }

                    int qty = 1;
                    if (int.TryParse(qtyStr, out qty))
                    {
                        mo.Quantity = qty;
                    }
                    else
                    {
                        mo.Quantity = 1;
                    }

                    //if (paramObjs != null && paramObjs.Count > 0)
                    mo.Parameters = paramObjs;
                    organizedMasses[index].Add(mo);
                }
                catch { }
            }
        }
コード例 #4
0
        private void BuildTable(List <List <string> > excelData)
        {
            DataTable table = new DataTable();

            headers = excelData[0];

            bool accurateHeaders = true;

            for (int i = 0; i < headers.Count; i++)
            {
                if (!accurateHeaders)
                {
                    break;
                }

                switch (i)
                {
                case 0:
                    if (headers[i].ToUpper() == "DEPARTMENT" || headers[i].ToUpper() == "DEPT")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 1:
                    if (headers[i].ToUpper() == "ROOM TYPE" || headers[i].ToUpper() == "ROOMTYPE")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 2:
                    if (headers[i].ToUpper() == "ROOM NAME" || headers[i].ToUpper() == "ROOMNAME")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 3:
                    if (headers[i].ToUpper() == "ROOM NUMBER" || headers[i].ToUpper() == "ROOMNUMBER")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 4:
                    if (headers[i].ToUpper() == "PROGRAM AREA" || headers[i].ToUpper() == "PROGRAMAREA")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                case 5:
                    if (headers[i].ToUpper() == "QTY" || headers[i].ToUpper() == "QUANTITY")
                    {
                        accurateHeaders = true;
                    }
                    else
                    {
                        accurateHeaders = false;
                    }
                    break;

                default:
                    break;
                }
                DataColumn dc = new DataColumn();
                dc.ColumnName = headers[i];
                table.Columns.Add(dc);
            }

            if (accurateHeaders)
            {
                // Create the mass objects and fill out the datagrid table
                masses = new List <MassObject>();
                string currentDept = null;
                string currentType = null;
                for (int i = 1; i < excelData.Count; i++)
                {
                    MassObject          mass       = new MassObject();
                    List <ParameterObj> massParams = new List <ParameterObj>();
                    bool valid = true;
                    for (int j = 0; j < excelData[i].Count; j++)
                    {
                        try
                        {
                            if (j == 0)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    currentDept     = excelData[i][j];
                                    mass.Department = excelData[i][j];
                                }
                                else if (currentDept != null)
                                {
                                    mass.Department = currentDept;
                                }
                                else
                                {
                                    mass.Department = "NULL";
                                }
                            }
                            else if (j == 1)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    currentType   = excelData[i][j];
                                    mass.RoomType = excelData[i][j];
                                }
                                else if (currentType != null)
                                {
                                    mass.RoomType = currentType;
                                }
                                else
                                {
                                    mass.RoomType = "NULL";
                                }
                            }
                            else if (j == 2)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    mass.RoomName = excelData[i][j];
                                }
                                else
                                {
                                    valid = false;
                                    break;
                                }
                            }
                            else if (j == 3)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    mass.RoomNumber = excelData[i][j];
                                }
                                else
                                {
                                    valid = false;
                                    break;
                                }
                            }
                            else if (j == 4)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    double area = double.NaN;
                                    double.TryParse(excelData[i][j], out area);
                                    mass.ProgramArea = area;
                                }
                                else
                                {
                                    continue;
                                }
                            }
                            else if (j == 5)
                            {
                                if (excelData[i][j] != string.Empty && excelData[i][j] != null && excelData[i][j].Length > 0)
                                {
                                    int qty = 1;
                                    int.TryParse(excelData[i][j], out qty);
                                    mass.Quantity = qty;
                                }
                                else
                                {
                                    continue;
                                }
                            }
                            else if (j > 5)
                            {
                                ParameterObj param = new ParameterObj();
                                param.Name  = headers[j];
                                param.Value = excelData[i][j];
                                massParams.Add(param);
                            }
                        }
                        catch { }
                    }

                    if (valid)
                    {
                        DataRow dr = table.NewRow();
                        dr[0] = mass.Department;
                        dr[1] = mass.RoomType;
                        dr[2] = mass.RoomName;
                        dr[3] = mass.RoomNumber;
                        dr[4] = mass.ProgramArea.ToString();
                        dr[5] = mass.Quantity.ToString();
                        try
                        {
                            for (int j = 0; j < excelData[0].Count - 6; j++)
                            {
                                dr[j + 6] = massParams[j].Value;
                            }
                            mass.Parameters = massParams;
                        }
                        catch { }
                        masses.Add(mass);
                        table.Rows.Add(dr);
                    }
                }
                DataView view = new DataView(table);
                importDataGrid.ItemsSource   = view;
                importDataGrid.RowBackground = new SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 255, 255));
            }
            else
            {
                table = new DataTable();
                DataColumn col = new DataColumn();
                col.ColumnName = "WARNING";
                table.Columns.Add(col);
                DataRow row = table.NewRow();
                row[0] = "Excel worksheet is not in the expected format.  The first six column headers should be formatted as:\n\nDEPARTMENT | ROOM TYPE | ROOM NAME | ROOM NUMBER | PROGRAM AREA | QUANTITY\n\nAdditional data can be appended as columns after these first six";
                table.Rows.Add(row);

                DataView view = new DataView(table);
                importDataGrid.ItemsSource   = view;
                importDataGrid.RowBackground = new SolidColorBrush(System.Windows.Media.Color.FromArgb(255, 255, 203, 153));
            }

            // Size the columns and set them to be read only
            double columnSize = 1.0 / importDataGrid.Columns.Count;

            for (int i = 0; i < importDataGrid.Columns.Count; i++)
            {
                importDataGrid.Columns[i].Width      = new DataGridLength(columnSize, DataGridLengthUnitType.Star);
                importDataGrid.Columns[i].IsReadOnly = true;
            }
        }
コード例 #5
0
        private void familyComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            selectedSymbol = massFamilies[familyComboBox.SelectedIndex];

            if (selectedLevel != null && selectedSymbol != null)
            {
                try
                {
                    // Get the instance parameters
                    using (Transaction t = new Transaction(uiDoc.Document, "Temporarily Create Mass"))
                    {
                        t.Start();

                        // Make sure the Symbol is active
                        if (!selectedSymbol.IsActive)
                        {
                            selectedSymbol.Activate();
                            uiDoc.Document.Regenerate();
                        }

                        instanceParameters = new List <ParameterObj>();
                        paramsOut          = new List <Parameter>();
                        FamilyInstance tempFI = uiDoc.Document.Create.NewFamilyInstance(XYZ.Zero, selectedSymbol, selectedLevel, Autodesk.Revit.DB.Structure.StructuralType.NonStructural);
                        //TaskDialog.Show("Test", "FamilySymbol: " + selectedSymbol.Id.IntegerValue.ToString());
                        foreach (Parameter p in tempFI.Parameters)
                        {
                            if (!p.IsReadOnly)
                            {
                                paramsOut.Add(p);
                                ParameterObj po = new ParameterObj();
                                po.IsInstance    = true;
                                po.Name          = p.Definition.Name;
                                po.ParameterType = p.Definition.ParameterType;
                                po.Value         = null;
                                instanceParameters.Add(po);
                            }
                        }
                        // Rollback the family creation
                        t.RollBack();
                    }

                    // Get the type parameters
                    typeParameters = new List <ParameterObj>();
                    foreach (Parameter p in selectedSymbol.Parameters)
                    {
                        if (!p.IsReadOnly)
                        {
                            ParameterObj po = new ParameterObj();
                            po.IsInstance    = false;
                            po.Name          = p.Definition.Name;
                            po.ParameterType = p.Definition.ParameterType;
                            po.Value         = null;
                            typeParameters.Add(po);
                        }
                    }

                    // sort the parameters
                    instanceParameters.Sort((x, y) => x.Name.CompareTo(y.Name));
                    typeParameters.Sort((x, y) => x.Name.CompareTo(y.Name));
                }
                catch (Exception ex)
                {
                    TaskDialog.Show("Error", ex.Message);
                }
            }
        }
コード例 #6
0
        private void createButton_Click(object sender, RoutedEventArgs e)
        {
            // Get the currently set materials
            List <Material> mats = new List <Material>();

            foreach (UIElement uiElem in controlPanel.Children)
            {
                MaterialSelectorControl matCtrl = uiElem as MaterialSelectorControl;
                mats.Add(matCtrl.Material);
            }

            System.Diagnostics.Process proc = System.Diagnostics.Process.GetCurrentProcess();
            IntPtr       handle             = proc.MainWindowHandle;
            SettingsForm form = new SettingsForm(organizedMasses, mats, paramsOut, uiDoc);

            System.Windows.Interop.WindowInteropHelper helper = new System.Windows.Interop.WindowInteropHelper(form);
            helper.Owner = handle;
            Hide();
            form.ShowDialog();
            List <Parameter> selectedParameters = form.SelectedParameters;

            // Get the DisplayUnitTypes for length and area.
            Units           units     = uiDoc.Document.GetUnits();
            FormatOptions   areaFO    = units.GetFormatOptions(UnitType.UT_Area);
            FormatOptions   lengthFO  = units.GetFormatOptions(UnitType.UT_Length);
            DisplayUnitType lengthDUT = lengthFO.DisplayUnits;
            DisplayUnitType areaDUT   = areaFO.DisplayUnits;

            double defaultHeight = 10;

            if (lengthDUT == DisplayUnitType.DUT_CENTIMETERS || lengthDUT == DisplayUnitType.DUT_DECIMETERS || lengthDUT == DisplayUnitType.DUT_METERS ||
                lengthDUT == DisplayUnitType.DUT_METERS_CENTIMETERS || lengthDUT == DisplayUnitType.DUT_MILLIMETERS)
            {
                defaultHeight = 9.84252;
            }
            string temp = "start";

            try
            {
                // Time to start creating masses, gather information for the schema
                excelFileName      = new System.IO.FileInfo(excelFilePath).Name;
                temp               = "excel file";
                excelWorksheetName = worksheetComboBox.SelectedItem.ToString();
                temp               = "worksheet";
                paramNames         = new List <string>();
                foreach (Parameter p in selectedParameters)
                {
                    if (p != null)
                    {
                        paramNames.Add(p.Definition.Name);
                    }
                    else
                    {
                        paramNames.Add(string.Empty);
                    }
                }
                temp             = "params";
                creationDateTime = DateTime.Now.ToString("yyyymmdd HH:mm:ss", System.Globalization.CultureInfo.InvariantCulture);
                temp             = "creation date";
                // Other data, massGroupingParams, symbolId, and levelId are already defined.
            }
            catch (Exception ex)
            {
                TaskDialog.Show(temp, ex.Message);
            }
            // Create the masses
            using (Transaction t = new Transaction(uiDoc.Document, "Create Masses"))
            {
                t.Start();

                // Make sure the Symbol is active
                if (!selectedSymbol.IsActive)
                {
                    selectedSymbol.Activate();
                    uiDoc.Document.Regenerate();
                }

                // Iterate through the masses
                double currentX = 0;

                for (int i = 0; i < organizedMasses.Count; i++)
                {
                    try
                    {
                        List <MassObject> massGrp = organizedMasses[i];

                        double maxX     = 0;
                        double currentY = 0;
                        string groupId  = groupingNames[i];
                        foreach (MassObject mass in massGrp)
                        {
                            for (int j = 0; j < mass.Quantity; j++)
                            {
                                // Location
                                XYZ loc = new XYZ(currentX, currentY, selectedLevel.ProjectElevation);

                                //FamilyInstance
                                FamilyInstance fi = uiDoc.Document.Create.NewFamilyInstance(loc, selectedSymbol, Autodesk.Revit.DB.Structure.StructuralType.NonStructural);

                                // Calculate width and depth
                                double sideLength = 10;
                                if (mass.ProgramArea > 0)
                                {
                                    sideLength = Math.Sqrt(mass.ProgramArea);
                                }
                                if (sideLength > maxX)
                                {
                                    maxX = sideLength;
                                }

                                // Set the parameters as necessary
                                if (selectedParameters[0] != null && selectedParameters[0].Definition.ParameterType == ParameterType.Text)
                                {
                                    fi.get_Parameter(selectedParameters[0].Definition).Set(mass.Department);
                                }

                                if (selectedParameters[1] != null && selectedParameters[1].Definition.ParameterType == ParameterType.Text)
                                {
                                    fi.get_Parameter(selectedParameters[1].Definition).Set(mass.RoomType);
                                }

                                if (selectedParameters[2] != null && selectedParameters[2].Definition.ParameterType == ParameterType.Text)
                                {
                                    fi.get_Parameter(selectedParameters[2].Definition).Set(mass.RoomName);
                                }

                                if (selectedParameters[3] != null && selectedParameters[3].Definition.ParameterType == ParameterType.Text)
                                {
                                    fi.get_Parameter(selectedParameters[3].Definition).Set(mass.RoomNumber);
                                }

                                if (selectedParameters[4] != null && selectedParameters[4].Definition.ParameterType == ParameterType.Area)
                                {
                                    fi.get_Parameter(selectedParameters[4].Definition).Set(UnitUtils.ConvertToInternalUnits(mass.ProgramArea, areaDUT));
                                }

                                if (selectedParameters[5] != null && selectedParameters[5].Definition.ParameterType == ParameterType.Material)
                                {
                                    fi.get_Parameter(selectedParameters[5].Definition).Set(mats[i].Id);
                                }

                                if (selectedParameters[6] != null && selectedParameters[6].Definition.ParameterType == ParameterType.Length)
                                {
                                    fi.get_Parameter(selectedParameters[6].Definition).Set(UnitUtils.ConvertToInternalUnits(sideLength, lengthDUT));
                                }

                                if (selectedParameters[7] != null && selectedParameters[7].Definition.ParameterType == ParameterType.Length)
                                {
                                    fi.get_Parameter(selectedParameters[7].Definition).Set(UnitUtils.ConvertToInternalUnits(sideLength, lengthDUT));
                                }

                                if (selectedParameters[8] != null && selectedParameters[8].Definition.ParameterType == ParameterType.Length)
                                {
                                    fi.get_Parameter(selectedParameters[8].Definition).Set(UnitUtils.ConvertToInternalUnits(defaultHeight, lengthDUT));
                                }

                                for (int k = 9; k < mass.Parameters.Count + 9; k++)
                                {
                                    if (k - 9 < mass.Parameters.Count)
                                    {
                                        ParameterObj po = mass.Parameters[k - 9];
                                        if (selectedParameters[k] != null)
                                        {
                                            try
                                            {
                                                switch (selectedParameters[k].StorageType)
                                                {
                                                case StorageType.Double:
                                                    double dbl = 0;
                                                    if (double.TryParse(po.Value, out dbl))
                                                    {
                                                        Parameter p = fi.get_Parameter(selectedParameters[k].Definition);
                                                        if (p.Definition.ParameterType == ParameterType.Area)
                                                        {
                                                            p.Set(UnitUtils.ConvertToInternalUnits(dbl, areaDUT));
                                                        }
                                                        else if (p.Definition.ParameterType == ParameterType.Length)
                                                        {
                                                            p.Set(UnitUtils.ConvertToInternalUnits(dbl, lengthDUT));
                                                        }
                                                        else
                                                        {
                                                            p.Set(dbl);
                                                        }
                                                    }
                                                    break;

                                                case StorageType.Integer:
                                                    int integer = 0;
                                                    if (int.TryParse(po.Value, out integer))
                                                    {
                                                        fi.get_Parameter(selectedParameters[k].Definition).Set(integer);
                                                    }
                                                    break;

                                                case StorageType.ElementId:
                                                    int elemIdInt = 0;
                                                    if (int.TryParse(po.Value, out integer))
                                                    {
                                                        fi.get_Parameter(selectedParameters[k].Definition).Set(new ElementId(elemIdInt));
                                                    }
                                                    break;

                                                default:
                                                    fi.get_Parameter(selectedParameters[k].Definition).Set(po.Value);
                                                    break;
                                                }
                                            }
                                            catch { }
                                        }
                                    }
                                }

                                // Store the local Schema data, ie the creation datetime.
                                try
                                {
                                    StoreElemDateTime(fi, groupId);
                                }
                                catch (Exception ex)
                                {
                                    TaskDialog.Show("Schema Error", ex.Message);
                                }

                                // Adjust the y Position
                                currentY = currentY + sideLength + 5;
                            }
                        }
                        // Adjust the X position
                        currentX = currentX + maxX + 5;
                    }
                    catch (Exception ex)
                    {
                        TaskDialog.Show("Error", ex.Message);
                    }
                }

                // Store the schema data for the entire creation set.
                //try
                //{
                //    if (StoreImportData())
                //        TaskDialog.Show("Success", "Should have successfully created the collection schema.");
                //    else
                //        TaskDialog.Show("Failure", "Failed to create the collection schema.");

                //}
                //catch (Exception ex)
                //{
                //    TaskDialog.Show("Schema Error", ex.Message);
                //}
                t.Commit();
            }
            Close();
        }