Skip to content

Commit 034326d

Browse files
committed
Initial commit
0 parents  commit 034326d

File tree

2,308 files changed

+324634
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,308 files changed

+324634
-0
lines changed

.clang-format

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
BasedOnStyle: Google
3+
Standard: Cpp11
4+
SortUsingDeclarations: true
5+
SortIncludes: true
6+
DerivePointerAlignment: false
7+
PointerAlignment: Left
8+
...

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# In case one of our team member has core.autocrlf not set, set it to auto so that the line endings
2+
# are appropriately handled across platforms(win, linux) and in the repo
3+
* text=auto
4+
# Preserve LF line endings in Linux shell scripts to make sure they are executable
5+
*.sh text eol=lf
6+
# Preserve CR/LF line endings in Windows batch and cmd scripts to make sure they are executable
7+
*.bat text eol=crlf
8+
*.cmd text eol=crlf
9+
*.sln text eol=crlf
10+
*.uasset filter=lfs diff=lfs merge=lfs -text
11+
unreal/Blocks/Plugins/ProjectAirSim/Content/FireSmokeAnims/Realistic_Starter_VFX_Pack_Vol2/Vectorfields/VectorField_D.uasset filter=lfs diff=lfs merge=lfs -text
12+
unreal/Blocks/Plugins/ProjectAirSim/Content/FireSmokeAnims/Realistic_Starter_VFX_Pack_Vol2/Vectorfields/VectorField_C.uasset filter=lfs diff=lfs merge=lfs -text
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
6+
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
7+
<!-- Please search for existing issues to avoid creating duplicates. -->
8+
<!-- Incomplete reports will lead to closing the issue. -->
9+
<!-- Also, please test using the latest main branch make sure your issue has not already been fixed -->
10+
11+
## Bug report
12+
<!-- If any section does not apply, replace its contents with "N/A". -->
13+
- Project AirSim Version/#commit:
14+
- autopilot version:
15+
- OS Version:
16+
17+
### What's the issue you encountered?
18+
<!-- Describe the issue in detail and what you were doing beforehand. -->
19+
<!-- Attach screenshot if applicable. -->
20+
21+
### Settings
22+
<!-- If not the default, include the settings.json file you are using -->
23+
<!-- If it's too large, you can create a [gist](https://gist.github.com/) and past the link here. -->
24+
25+
### How can the issue be reproduced?
26+
<!-- Include a detailed step by step process for recreating your issue. -->
27+
<!-- If your issue includes code, create a [gist](https://gist.github.com/) and past the link here. -->
28+
29+
1.
30+
2.
31+
32+
### Include full error message in text form
33+
34+
35+
36+
**What's better than filing an issue? Filing a pull request :).**

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ -->
8+
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
9+
<!-- Please search existing issues to avoid creating duplicates. -->
10+
11+
## What feature are you suggesting?
12+
### Overview:
13+
<!-- Describe the feature you'd like. -->
14+
15+
### Smaller Details:
16+
<!-- These may include specific methods of implementation etc. -->
17+
18+
### Nature of Request:
19+
<!-- Remove all that do not apply to your request. -->
20+
- Addition
21+
- Change
22+
- Removal
23+
- <!-- Removal of certain features or implementation due to a specific issue/bug or because of low quality code, etc. -->
24+
25+
## Why would this feature be useful?

.github/ISSUE_TEMPLATE/question.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Support Questions
3+
about: Your question may be moved to https://github.com/microsoft/AirSim/discussions.
4+
---
5+
<!-- ⚠️⚠️ Do Not Delete This! question_template ⚠️⚠️ -->
6+
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
7+
<!-- Please search existing issues to avoid creating duplicates. -->
8+
<!-- Add clear and concise title -->
9+
10+
## Question
11+
### What's your question?
12+
<!-- Describe your question in detail. -->
13+
14+
### Include context on what you are trying to achieve
15+
<!-- If any section does not apply, replace its contents with "N/A". -->
16+
17+
#### Context details
18+
<!-- Add OS, AirSim version, Python version, Unreal version if applicable -->
19+
<!-- If not the default, include the settings.json file you are using -->
20+
<!-- If it's too large, you can create a [gist](https://gist.github.com/) and past the link here. -->
21+
22+
### Include details of what you already did to find answers

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Thank you for submitting a pull request! -->
2+
<!-- ⚠️⚠️ Do Not Delete This! pull_request_template ⚠️⚠️ -->
3+
<!-- Please read our contribution guidelines: https://microsoft.github.io/AirSim/CONTRIBUTING/ -->
4+
5+
Fixes: # <!-- add this line for each issue your PR solves. -->
6+
<!-- Fixes: # -->
7+
<!-- Fixes: # -->
8+
9+
## About
10+
<!-- Describe what your PR is about. -->
11+
12+
## How Has This Been Tested?
13+
<!-- Please, describe how you have tested your changes to help us incorporate them. -->
14+
15+
## Screenshots and videos (if appropriate):

.github/workflows/test_windows.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Windows Build
2+
3+
# Controls when the action will run.
4+
on: [push]
5+
6+
jobs:
7+
build:
8+
permissions:
9+
actions: write
10+
pages: write
11+
contents: write
12+
runs-on: windows-2022
13+
14+
# Steps represent a sequence of tasks that will be executed as part of the job
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Enable Developer Command Prompt
19+
uses: ilammy/msvc-dev-cmd@v1
20+
21+
- name: Build SimLibs
22+
shell: cmd
23+
run: build simlibs_debug

0 commit comments

Comments
 (0)