资源简介

用VS2005编写的ObjectArx永久反应器例子,将反应器加入到模型空间,程序中有五条直线,拖动一根直线,其他直线也相应的变化。保存DWG图后,再次打开后可继续使用反应器。

资源截图

代码片段和文件信息

// (C) Copyright 2002-2005 by Autodesk Inc. 
//
// Permission to use copy modify and distribute this software in
// object code form for any purpose and without fee is hereby granted 
// provided that the above copyright notice appears in all copies and 
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting 
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM “AS IS“ AND WITH ALL FAULTS. 
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK INC. 
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use duplication or disclosure by the U.S. Government is subject to 
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software) as applicable.
//

//-----------------------------------------------------------------------------
//----- acrxEntryPoint.h
//-----------------------------------------------------------------------------
#include “StdAfx.h“
#include “resource.h“
#include “MyEntReator.h“
#include “ReactorManager.h“

//-----------------------------------------------------------------------------
#define szRDS _RXST(“HP“)

//-----------------------------------------------------------------------------
//----- objectARX EntryPoint
class CEntReactorApp : public AcRxArxApp {

public:
CEntReactorApp () : AcRxArxApp () {}

virtual AcRx::AppRetCode On_kInitAppMsg (void *pkt) {
// TODO: Load dependencies here

// You *must* call On_kInitAppMsg here
AcRx::AppRetCode retCode =AcRxArxApp::On_kInitAppMsg (pkt) ;

// TODO: Add your initialization code here

return (retCode) ;
}

virtual AcRx::AppRetCode On_kUnloadAppMsg (void *pkt) {
// TODO: Add your code here

// You *must* call On_kUnloadAppMsg here
AcRx::AppRetCode retCode =AcRxArxApp::On_kUnloadAppMsg (pkt) ;

// TODO: Unload dependencies here

return (retCode) ;
}

virtual void RegisterServerComponents () {
}

public:

// - HPEntReactor.test command (do not rename)
static void HPEntReactortest(void)
{
//  AcDbobjectId idReactor;
//  MyEntReator* pReactor = new MyEntReator;
//  CReactorManager::AppendtoDatabaseAndClose(pReactor idReactor);

AcDbobjectIdArray idArr;
for (int i = 0; i <5; i++)
{
AcDbLine* pGroupLine = new AcDbLine(AcGePoint3d(05 + i0) AcGePoint3d(10 5 + i 0));
AcDbobjectId idGroupLine;
CReactorManager::AppendtoDatabaseAndClose(pGroupLine idGroupLine);
idArr.append(idGroupLine);
CReactorManager::attachTo(idGroupLine);
}



}
} ;

//-----------------------------------------------------------------------------
IMPLEMENT_ARX_ENTRYPOINT(CEntReactorApp)

ACED_ARXCOMMAND_ENTRY_AUTO(CEntReactorApp HPEntReactor test test ACR

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3026  2012-12-12 10:06  EntReactor\EntReactor\acrxEntryPoint.cpp

     文件       1895  2012-12-12 09:36  EntReactor\EntReactor\DocData.cpp

     文件       1692  2012-12-12 09:36  EntReactor\EntReactor\DocData.h

     文件       1673  2012-12-12 09:36  EntReactor\EntReactor\EntReactor.cpp

     文件       2165  2012-12-12 09:36  EntReactor\EntReactor\EntReactor.rc

     文件      10537  2012-12-12 10:03  EntReactor\EntReactor\EntReactor.vcproj

     文件       2727  2012-12-12 10:28  EntReactor\EntReactor\EntReactor.vcproj.ZOUXIN-PC.ZOUXIN.user

     文件       7903  2012-12-12 09:51  EntReactor\EntReactor\MyEntReator.cpp

     文件       4093  2012-12-12 09:48  EntReactor\EntReactor\MyEntReator.h

     文件       1999  2012-12-12 10:18  EntReactor\EntReactor\ReactorManager.cpp

     文件        420  2012-12-12 10:05  EntReactor\EntReactor\ReactorManager.h

     文件        433  2012-12-12 09:36  EntReactor\EntReactor\Resource.h

     文件       1371  2012-12-12 09:36  EntReactor\EntReactor\StdAfx.cpp

     文件       2612  2012-12-12 09:36  EntReactor\EntReactor\StdAfx.h

     文件       1249  2012-12-12 09:36  EntReactor\EntReactor.sln

    ..A..H.     19456  2012-12-12 10:28  EntReactor\EntReactor.suo

     目录          0  2012-12-12 10:29  EntReactor\EntReactor

     目录          0  2012-12-12 10:29  EntReactor

----------- ---------  ---------- -----  ----

                63251                    18


评论

共有 条评论