Nebula3 in CLR

有用N3 + CLR做界面的冲动

 

新建一个CLR WinForm工程, 直接引入N3的头文件和库进行编译........

 

编译不过, 找了半天才发现原因

晕死, .Net和N3都有个System命名空间, 没法改Microsoft的东西, 只好把N3的System改成了NSystem

 

然后就是链接不过

 

一是__fastcall不被CLR支持, 改成__cdecl (/Gd)重遍

 

二是Multi-threaded Debug (/MTd)跟/clr冲突, 改成Multi-threaded Debug DLL (/MDd)

 

终于链接过了.............

 

启动程序, Crash掉

 

拿着关键字就去问google, 没想到MSDN论坛上还真有解决方法(感谢我的先驱们, 我成功是了站在你们的"尸体"上)

原因是N3的对象系统在ImplementClass时定义了一些静态对象, 如果直接用CLR会导致不能正解地进行初始化

解决方案(引用原文):

  1. Workaround Steps:
  2. In the project properties:
  3. 1. Set Linker/Advanced/Entry Point to "" (empty string)
  4. 2. Set Linker/System/Subsystem to Not Set
  5. Step 1: Makes sure that the CRT startup code is invoked. This is because, if no entry point is specified, the linker will automatically use mainCRTStartup, which is defined in the CRT libraries. mainCRTStartup will make sure that the global object is initialized correctly.
  6. Step 2: Makes sure that the linker will look for the symbol “main”. The linker looks for “main” because mainCRTStartup calls main() in its body. The default option for a Winforms application is Subsystem:Windows and this makes the linker look for WinMain().
  7. Thanks
  8. Sarita Bafna
  9. Visual C++ team

 

测试程序:

  1. // N3CLR.cpp : main project file.
  2. #include "stdafx.h"
  3. #include "MainForm.h"
  4. #include "stdneb.h"
  5. #include "core/coreserver.h"
  6. #include "io/ioserver.h"
  7. using namespace N3CLR;
  8. [STAThreadAttribute]
  9. int main(array<System::String ^> ^args)
  10. {
  11.     // Enabling Windows XP visual effects before any controls are created
  12.     Application::EnableVisualStyles();
  13.     Application::SetCompatibleTextRenderingDefault(false);
  14.     Ptr<Core::CoreServer> coreServer = Core::CoreServer::Create();
  15.     coreServer->Open();
  16.     n_printf("Hello CLR!");
  17.     coreServer->Close();
  18.     coreServer = NULL;
  19.     // Create the main window and run it
  20.     Application::Run(gcnew MainForm());
  21.     return 0;
  22. }

 

如果想嵌入到WinForm中的话, 需要更改DisplayDevice中的hWnd, 我的做法是把DisplayDevice创建的窗口做为WinForm的子窗口.

注意InputDevice需要最顶层的窗口句柄来创建:

  1.     // set the cooperative level of the device, we're friendly
  2.     // note: use Win32's FindWindow() to find our top level window because 
  3.     // the DisplayDevice may be running in a different thread
  4.     HWND hWnd = FindWindow(NEBULA3_WINDOW_CLASS, NULL);
  5.     if (0 == hWnd)
  6.     {
  7.         hWnd = DisplayDevice::Instance()->GetParentWnd();
  8.     }
  9.     n_assert(0 != hWnd);

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值