-
Notifications
You must be signed in to change notification settings - Fork 19
第一次提交 #429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
第一次提交 #429
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
edd7fd0
Update config.ini
2209040022ll 781c341
Update launch.py
2209040022ll 091b0cb
Update config.ini
2209040022ll 1865593
Create hutbthesis_main.tex
2209040022ll 18df0c7
Create chapter01.tex
2209040022ll b3ee313
Create abstract.tex
2209040022ll bf3447b
Create acknowledgements.tex
2209040022ll 49cef00
Delete vsc/content/content directory
2209040022ll f9f37ec
Create acknowledgements.tex
2209040022ll eda7f94
Delete vsc/content/content directory
2209040022ll be23f32
Create acknowledgements.tex
2209040022ll 57383b6
Create latexmkrc
2209040022ll 65c28bd
Create gitignore
2209040022ll e4e7ccf
Merge branch 'OpenHUTB:master' into master
2209040022ll File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,43 @@ | ||
| [carla] # [mysql] 为section部分 | ||
| # Carla可执行文件的主目录,即CarlaUE4.exe所在目录 | ||
| home = data/CARLA_0.9.15 | ||
| @echo off | ||
| chcp 65001 | ||
| echo ============================================== | ||
| echo 🚀 人车模拟器VSCode插件系统 - 一键打包脚本(机器人工程毕设) | ||
| echo 打包内容:VSCode+插件+Python+HUTB+MCP+模拟器依赖 | ||
| echo ============================================== | ||
|
|
||
| :: 1. 定义打包路径与文件名 | ||
| set ROOT_DIR=%cd%/../ | ||
| set PACK_DIR=%ROOT_DIR%/pack_output/ | ||
| set ZIP_NAME=人车模拟器开发插件_一键启动版_%date:~0,4%%date:~5,2%%date:~8,2%.zip | ||
| set VSCODE_PATH=D:/Software/VSCode-win32-x64-1.80.0 :: 替换为你的VSCode安装路径 | ||
| set PYTHON_PATH=D:/Python39 :: 替换为你的Python路径(已预装HUTB/MCP) | ||
| set PLUGIN_PATH=%ROOT_DIR%/out :: 插件编译后的运行文件 | ||
|
|
||
| :: 2. 创建输出目录 | ||
| if not exist %PACK_DIR% md %PACK_DIR% | ||
| echo ✅ 已创建打包输出目录:%PACK_DIR% | ||
|
|
||
| :: 3. 复制核心文件到打包目录 | ||
| echo ✅ 正在复制VSCode本体... | ||
| xcopy /s /e /y %VSCODE_PATH% %PACK_DIR%/VSCode/ | ||
| echo ✅ 正在复制插件运行文件... | ||
| xcopy /s /e /y %PLUGIN_PATH% %PACK_DIR%/VSCode/extensions/human-vehicle-sim-plugin/ | ||
| echo ✅ 正在复制Python+HUTB+MCP依赖... | ||
| xcopy /s /e /y %PYTHON_PATH% %PACK_DIR%/Python/ | ||
| echo ✅ 正在复制人车模拟器SDK与自测脚本... | ||
| xcopy /s /e /y %ROOT_DIR%/simulator_deps %PACK_DIR%/simulator_deps/ | ||
| xcopy /s /e /y %ROOT_DIR%/test %PACK_DIR%/test/ | ||
|
|
||
| :: 4. 复制一键启动脚本到打包根目录 | ||
| copy %ROOT_DIR%/pack_script/start_vscode.bat %PACK_DIR%/一键启动_VSCode人车模拟器开发环境.bat /y | ||
|
|
||
| :: 5. 打包为ZIP压缩包(使用7z,轻量化压缩,解压即用) | ||
| 7z a -tzip %PACK_DIR%%ZIP_NAME% %PACK_DIR%/* | ||
| echo ============================================== | ||
| echo 🎉 打包完成!ZIP包路径:%PACK_DIR%%ZIP_NAME% | ||
| echo ✨ 解压后双击【一键启动_VSCode人车模拟器开发环境.bat】即可使用,无需任何配置! | ||
| echo ============================================== | ||
| pause | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| % content/abstract.tex - 中英文摘要 | ||
| \chapter*{摘要} % 摘要无章节号 | ||
| \addcontentsline{toc}{chapter}{摘要} % 加入目录 | ||
|
|
||
| 随着智能网联汽车与无人车技术的发展,人车模拟器成为智能车辆研发的核心工具,但当前开发存在环境配置繁、工具不匹配、流程割裂的痛点。本文选题为「面向人车模拟器的快速开发验证VSCode插件系统」,通过文献研究、模块化开发等方法,设计并实现一款专属VSCode插件,整合代码补全、环境打包、联动调试功能,解决人车模拟器开发效率低的问题。本研究填补了人车模拟器专属开发工具的空白,兼具理论创新与教学、研发场景的实践价值。 | ||
|
|
||
| 关键词:人车模拟器;VSCode插件;开发工具;智能车辆 | ||
|
|
||
|
|
||
| \chapter*{Abstract} | ||
| \addcontentsline{toc}{chapter}{Abstract} | ||
|
|
||
| With the development of intelligent connected vehicles and unmanned vehicle technology, the human-vehicle simulator has become a core tool for intelligent vehicle research and development. However, current development faces pain points such as cumbersome environment configuration, mismatched tools, and fragmented processes. This paper selects the topic "VSCode Plugin System for Rapid Development and Verification of Human-Vehicle Simulator". Through methods such as literature research and modular development, a dedicated VSCode plugin is designed and implemented, integrating code completion, environment packaging, and linkage debugging functions to solve the problem of low development efficiency of human-vehicle simulators. This research fills the gap in dedicated development tools for human-vehicle simulators and has both theoretical innovation and practical value in teaching and R&D scenarios. | ||
|
|
||
| Key words: Human-Vehicle Simulator; VSCode Plugin; Development Tool; Intelligent Vehicle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| % content/acknowledgements.tex - 致谢 | ||
| \chapter*{致谢} | ||
| \addcontentsline{toc}{chapter}{致谢} | ||
|
|
||
| 本开题报告的完成,首先感谢我的指导教师王海东老师,在选题方向与研究思路上给予了我清晰的指导,帮助我明确了课题的核心价值与研究路径。同时感谢实验室的学长学姐,为我提供了人车模拟器的技术文档与开发经验支持。后续的毕业设计工作中,我会继续保持严谨的态度,认真完成研究与开发任务。 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
添加是bat脚本内容(插件代码内容添加到另一个仓库:https://github.com/OpenHUTB/vsc),但是这个文件是配置文件