admin管理员组

文章数量:1130349

包含仿真运行所有的工具集,如下图所示:

资源版本如下图所示:

本资源功能:可开展模型装配与扩展,进行军事想定及任务脚本设计,平台交互定义,可开展状态机、行为树等智能化规则定义,可开展基于脚本的调试运行;提供仿真实时运行和人在回路的干预控制,包括多种控制和干预指令,可支持接入手柄直接进行人在环控制和干预。提供模型浏览、录像和截图、任务分配器、开火控制、干扰控制、机动控制、平台控制、通信控制等功能。

#ifndef REVISION_HPP
#define REVISION_HPP
#include <vector>
#include <QDateTime>
#include "ViExport.hpp"

 
/****************************************
* author: 东风吹柳
* telephone:13241113233
* date:2023/11/14
*****************************************/

namespace wizard
{
//! A struct that represents a revision in the Change History database.
//下载链接:https://www.bilibili/read/cv27687928/  
struct VI_EXPORT Revision
{
   Revision(int aRevNo, int aParentRevNo, const std::string& aWorkingDir, int aTimestamp);

   int                      revNo;
   int                      parentRevNo;
   std::string              workingDir;
   std::vector<std::string> startupFiles;
   QDateTime                time;
};

typedef std::vector<Revision> RevisionList;
} // namespace wizard
#endif // REVISION_HPP

提示: 大家请仔细阅读本文相关描述,谢谢!

包含仿真运行所有的工具集,如下图所示:

资源版本如下图所示:

本资源功能:可开展模型装配与扩展,进行军事想定及任务脚本设计,平台交互定义,可开展状态机、行为树等智能化规则定义,可开展基于脚本的调试运行;提供仿真实时运行和人在回路的干预控制,包括多种控制和干预指令,可支持接入手柄直接进行人在环控制和干预。提供模型浏览、录像和截图、任务分配器、开火控制、干扰控制、机动控制、平台控制、通信控制等功能。

#ifndef REVISION_HPP
#define REVISION_HPP
#include <vector>
#include <QDateTime>
#include "ViExport.hpp"

 
/****************************************
* author: 东风吹柳
* telephone:13241113233
* date:2023/11/14
*****************************************/

namespace wizard
{
//! A struct that represents a revision in the Change History database.
//下载链接:https://www.bilibili/read/cv27687928/  
struct VI_EXPORT Revision
{
   Revision(int aRevNo, int aParentRevNo, const std::string& aWorkingDir, int aTimestamp);

   int                      revNo;
   int                      parentRevNo;
   std::string              workingDir;
   std::vector<std::string> startupFiles;
   QDateTime                time;
};

typedef std::vector<Revision> RevisionList;
} // namespace wizard
#endif // REVISION_HPP

提示: 大家请仔细阅读本文相关描述,谢谢!

本文标签: 软件afsim