[C++\C# MSCE] 获得隔离集所有元素

符老师  ,如何获得隔离集里面所有元素(这些元素不一定选中,SelectionSetManager这个不能用)   求符老师指导

Parents
  • 可以调用mdlScanCritera_xxx这套函数来扫描。其中有mdlScanCritera_setDisplaySetTest (pScanCriteria, true)来控制对显示集里面的元素的过滤。



  • 顺便问一下符老师      如何判断view存不存在隔离集?

  • 不行   符老师   当前model隔离也不行   感觉这个mdlScanCritera_setDisplaySetTest  冇 用 ..... 

  • 我测试怎么是正确的呢?本来我的模型中有如下四个Shape元素:

    在我不调用mdlScanCriteria_setDisplaySetTest(scP, true);时,扫描出来的就是这四个元素。

    执行DisplaySet过滤后效果如下,扫描出来的也就是这两个元素。

    测试代码如下:

    int OnScanCallback(ElementRefP elmRef, CallbackArgP callbackArg, ScanCriteriaP scP)
    {
    	WPrintfString wStr(L"id:%d, type:%d\n", elmRef->GetElementId(), elmRef->GetElementType());
    	mdlDialog_dmsgsPrint(wStr);
    	return SUCCESS;
    }
    void userScanFunc()
    {
    	ScanCriteriaP scP = mdlScanCriteria_create();
    	mdlScanCriteria_setModel(scP, ACTIVEMODEL);
    	mdlScanCriteria_setDrawnElements(scP);
    	mdlScanCriteria_setDisplaySetTest(scP, true);
    	mdlScanCriteria_setElementTypeTest(scP, NULL, 0);
    	mdlScanCriteria_addSingleElementTypeTest(scP, SHAPE_ELM);
    	mdlScanCriteria_setReturnType(scP, MSSCANCRIT_ITERATE_ELMREF, 0, 0);
    	mdlScanCriteria_setElemRefCallback(scP, (PFScanElemRefCallback)OnScanCallback, NULL);
    	mdlScanCriteria_scan(scP, NULL, NULL, NULL);
    	mdlScanCriteria_free(scP);
    }

    我推测是否你的DGN文件是ORD操作过的,我发现ORD软件会在一个DGN的字典模型(Dictionary Model)中写入很多图形元素,从而将MS的工作机制打乱。不知是有意为之而是没有深入了解DGN的结果造成的结果。



    Answer Verified By: Andy 

  • DGN是ORD新建的    不是都是在ms基础上做的.....这还能影响么?

  • 是的。这也是我最近发现的问题。ORD软件错误地使用了字典模型,将许多图形元素都放入了字典模型中。在ScanCritiera中无论用setModel设置到哪个具体的图形模型,字典模型中的元素都会被扫描出来的。



  • Andy,你好!

    我又让我们公司专门负责ORD产品的工程师帮我创建了一个ORD的DGN,发现在其字典模型中并没有普通的几何元素。但我手头有其他单位用户提供的ORD的DGN确实发现了这种怪异情况。不知道您的DGN是否正常?

    你可以在你的DGN中执行如下函数,查看列出的结果中是否有平普通的图形元素,比如Type为6的Shape等。

    void fileAnalyze(WCharCP unparsed)
        {
        DgnFileP pDgnFile = ISessionMgr::GetActiveDgnFile();
    
        //Only ControlElements in DictionaryModel
        DgnModelR dictionaryModel = pDgnFile->GetDictionaryModel();
        UInt32 nCntAll = dictionaryModel.GetElementCount(DgnModelSections::All);
        UInt32 nCntDic = dictionaryModel.GetElementCount(DgnModelSections::Dictionary);
        UInt32 nCntMod = dictionaryModel.GetElementCount(DgnModelSections::Model);
        UInt32 nCntCtrl = dictionaryModel.GetElementCount(DgnModelSections::ControlElements);
        UInt32 nCntGrp = dictionaryModel.GetElementCount(DgnModelSections::GraphicElements);
        WString myString, elDescr;
        myString.Sprintf(L"DictionaryModel: nCntAll=%d, nCntDic=%d, nCntMod=%d, nCtrl=%d, nCntGrp=%d", nCntAll, nCntDic, nCntMod, nCntCtrl, nCntGrp);
        mdlDialog_dmsgsPrint(myString.GetWCharCP());
    
    	int cnt = 0;
        PersistentElementRefList *pElemRefList = dictionaryModel.GetControlElementsP();
        for (PersistentElementRefP const& elemRef : *pElemRefList)
            {
            ElementHandle eh(elemRef);
            eh.GetHandler().GetDescription(eh, elDescr, 100);
            myString.Sprintf(L"ElemType = %s(%d), ElementId=%d", 
                elDescr.GetWCharCP(), elemRef->GetElementType(), elemRef->GetElementId());
            mdlDialog_dmsgsPrint(myString.GetWCharCP());
    		if (cnt++ > 300)
    			break;
            }
        }
    



    Answer Verified By: Andy 

Reply
  • Andy,你好!

    我又让我们公司专门负责ORD产品的工程师帮我创建了一个ORD的DGN,发现在其字典模型中并没有普通的几何元素。但我手头有其他单位用户提供的ORD的DGN确实发现了这种怪异情况。不知道您的DGN是否正常?

    你可以在你的DGN中执行如下函数,查看列出的结果中是否有平普通的图形元素,比如Type为6的Shape等。

    void fileAnalyze(WCharCP unparsed)
        {
        DgnFileP pDgnFile = ISessionMgr::GetActiveDgnFile();
    
        //Only ControlElements in DictionaryModel
        DgnModelR dictionaryModel = pDgnFile->GetDictionaryModel();
        UInt32 nCntAll = dictionaryModel.GetElementCount(DgnModelSections::All);
        UInt32 nCntDic = dictionaryModel.GetElementCount(DgnModelSections::Dictionary);
        UInt32 nCntMod = dictionaryModel.GetElementCount(DgnModelSections::Model);
        UInt32 nCntCtrl = dictionaryModel.GetElementCount(DgnModelSections::ControlElements);
        UInt32 nCntGrp = dictionaryModel.GetElementCount(DgnModelSections::GraphicElements);
        WString myString, elDescr;
        myString.Sprintf(L"DictionaryModel: nCntAll=%d, nCntDic=%d, nCntMod=%d, nCtrl=%d, nCntGrp=%d", nCntAll, nCntDic, nCntMod, nCntCtrl, nCntGrp);
        mdlDialog_dmsgsPrint(myString.GetWCharCP());
    
    	int cnt = 0;
        PersistentElementRefList *pElemRefList = dictionaryModel.GetControlElementsP();
        for (PersistentElementRefP const& elemRef : *pElemRefList)
            {
            ElementHandle eh(elemRef);
            eh.GetHandler().GetDescription(eh, elDescr, 100);
            myString.Sprintf(L"ElemType = %s(%d), ElementId=%d", 
                elDescr.GetWCharCP(), elemRef->GetElementType(), elemRef->GetElementId());
            mdlDialog_dmsgsPrint(myString.GetWCharCP());
    		if (cnt++ > 300)
    			break;
            }
        }
    



    Answer Verified By: Andy 

Children