查看: 1405|回复: 2

关于参数读取,增加场景内模型的问题

[复制链接]

该用户从未签到

发表于 2010-6-11 16:41:54 | 显示全部楼层 |阅读模式
我运行了osg自带的例子osgcluster,打算对它进行再开发,运行时要用到命令行参数输入,比如启动主机要用:multihal.exe -m cow.osg来启动一个场景,并显示牛模型,现在我想在加入另一个模型进去,不知道如何写代码,找到本程序arugments部分,示例如下:
  1. osg::ArgumentParser arguments(&argc,argv);

  2. // set up the usage document, in case we need to print out how to use this program.
  3. arguments.getApplicationUsage()->setDescription(arguments.getApplicationName()+" is the example which demonstrates how to approach implementation of clustering.");
  4. arguments.getApplicationUsage()->setCommandLineUsage(arguments.getApplicationName()+" [options] filename ...");
  5. arguments.getApplicationUsage()->addCommandLineOption("-h or --help","Display this information");
  6. arguments.getApplicationUsage()->addCommandLineOption("-m","Set viewer to MASTER mode, sending view via packets.");
  7. arguments.getApplicationUsage()->addCommandLineOption("-s","Set viewer to SLAVE mode, receiving view via packets.");
  8. arguments.getApplicationUsage()->addCommandLineOption("-a ","add another child node to scene"); //add node to scene
复制代码

这是部分实现代码
  1. ViewerMode viewerMode = STAND_ALONE;
  2. while (arguments.read("-m")) viewerMode = MASTER;
  3. while (arguments.read("-s")) viewerMode = SLAVE;
复制代码

不过不知道该如何添加模型函数。这里都是针对viewer的,请问思路应该是什么呢?也要针对viewer添加模型吗?能列出具体函数最好,谢谢

该用户从未签到

发表于 2010-6-12 08:30:00 | 显示全部楼层
您似乎把问题想复杂了?osgcluster使用readNodeFiles来读取模型,因此它本来就可以支持多个模型输入的,例如:
multihal.exe -m cow.osg cessna.osg

该用户从未签到

 楼主| 发表于 2010-6-18 15:25:22 | 显示全部楼层
哦哦,还真是,谢谢老大
您需要登录后才可以回帖 登录 | 注册

本版积分规则

OSG中国官方论坛-有您OSG在中国才更好

网站简介:osgChina是国内首个三维相关技术开源社区,旨在为国内更多的技术开发人员提供最前沿的技术资讯,为更多的三维从业者提供一个学习、交流的技术平台。

联系我们

  • 工作时间:09:00--18:00
  • 反馈邮箱:1315785073@qq.com
快速回复 返回顶部 返回列表