Skip to content

Commit 6191646

Browse files
committed
Add scripts
1 parent de6ce04 commit 6191646

21 files changed

+1244
-0
lines changed

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.vs/
2+
3+
# Prerequisites
4+
*.d
5+
6+
# Compiled Object files
7+
*.slo
8+
*.lo
9+
*.o
10+
*.obj
11+
12+
# Precompiled Headers
13+
*.gch
14+
*.pch
15+
16+
# Compiled Dynamic libraries
17+
*.so
18+
*.dylib
19+
*.dll
20+
21+
# Fortran module files
22+
*.mod
23+
*.smod
24+
25+
# Compiled Static libraries
26+
*.lai
27+
*.la
28+
*.a
29+
*.lib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
36+
# VSCode config stuff
37+
!.vscode/c_cpp_properties.json
38+
!.vscode/tasks.json
39+
40+
# Jetbrains IDEs
41+
.idea/
42+
43+
# NDK stuff
44+
out/
45+
[Ll]ib/
46+
[Ll]ibs/
47+
[Oo]bj/
48+
[Oo]bjs/
49+
ndkpath.txt
50+
*.zip
51+
*.txt
52+
*.log
53+
Android.mk.backup
54+
55+
# QPM stuff
56+
[Ee]xtern/
57+
*.qmod
58+
mod.json
59+
qpm_defines.cmake
60+
![Cc][Mm]ake[Ll]ists.txt
61+
62+
# CMake stuff
63+
[Bb]uild/
64+
cmake-build-*/
65+
extern.cmake
66+
67+
# QMOD Schema
68+
mod.json.schema

.vscode/c_cpp_properties.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"env": {
3+
"ndkPath": "D:/User/Repositories/GitHubQuestModding/android-ndk-r24"
4+
},
5+
"configurations": [
6+
{
7+
"defines": [
8+
"MOD_ID=\"ChatPlexSDKBS\"",
9+
"VERSION=\"x.x.x\"",
10+
"__GNUC__",
11+
"__aarch64__",
12+
"CP_SDK_BMBF"
13+
],
14+
"includePath": [
15+
"${workspaceFolder}/extern/includes/libil2cpp/il2cpp/libil2cpp",
16+
"${workspaceFolder}/extern/includes/codegen/include",
17+
"${workspaceFolder}/extern/includes",
18+
"${workspaceFolder}/include",
19+
"${workspaceFolder}/shared",
20+
"${workspaceFolder}/",
21+
"${ndkPath}/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include",
22+
"${ndkPath}/sources/cxx-stl/llvm-libc++abi/include",
23+
"${ndkPath}/sources/cxx-stl/llvm-libc++/include",
24+
"${ndkPath}/"
25+
],
26+
"name": "Quest",
27+
"cStandard": "c11",
28+
"cppStandard": "c++20",
29+
"intelliSenseMode": "clang-x64",
30+
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
31+
}
32+
],
33+
"version": 4
34+
}
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"env": {
3+
"ndkPath": "D:/User/Repositories/GitHubQuestModding/android-ndk-r24"
4+
},
5+
"configurations": [
6+
{
7+
"defines": [
8+
"MOD_ID=\"ChatPlexSDKBS\"",
9+
"VERSION=\"x.x.x\"",
10+
"__GNUC__",
11+
"__aarch64__",
12+
"CP_SDK_BMBF"
13+
],
14+
"includePath": [
15+
"${workspaceFolder}/extern/includes/libil2cpp/il2cpp/libil2cpp",
16+
"${workspaceFolder}/extern/includes/codegen/include",
17+
"${workspaceFolder}/extern/includes",
18+
"${workspaceFolder}/include",
19+
"${workspaceFolder}/shared",
20+
"${workspaceFolder}/",
21+
"${ndkPath}/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include",
22+
"${ndkPath}/sources/cxx-stl/llvm-libc++abi/include",
23+
"${ndkPath}/sources/cxx-stl/llvm-libc++/include",
24+
"${ndkPath}/"
25+
],
26+
"name": "Quest",
27+
"cStandard": "c11",
28+
"cppStandard": "c++20",
29+
"intelliSenseMode": "clang-x64",
30+
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
31+
}
32+
],
33+
"version": 4
34+
}

.vscode/launch.json

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Beat Saber",
9+
"type": "fb-lldb",
10+
"request": "launch",
11+
"android": {
12+
"application": {
13+
"package": "com.beatgames.beatsaber",
14+
"activity": "com.unity3d.player.UnityPlayerActivity"
15+
},
16+
"lldbConfig": {
17+
"sourceMaps": [],
18+
"librarySearchPaths": [
19+
"${workspaceFolder}/build/debug/",
20+
"${workspaceFolder}/extern/libs/"
21+
]
22+
}
23+
}
24+
},
25+
{
26+
"name": "Attach to running Beat Saber Instance",
27+
"type": "fb-lldb",
28+
"request": "attach",
29+
"android": {
30+
"application": {
31+
"package": "com.beatgames.beatsaber",
32+
"activity": "com.unity3d.player.UnityPlayerActivity"
33+
},
34+
"lldbConfig": {
35+
"sourceMaps": [],
36+
"librarySearchPaths": [
37+
"${workspaceFolder}/build/debug/",
38+
"${workspaceFolder}/extern/libs/",
39+
]
40+
}
41+
}
42+
}
43+
]
44+
}

.vscode/settings.json

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
{
2+
"files.associations": {
3+
"*.bsml": "xml",
4+
"*.qmod": "zip",
5+
"iosfwd": "cpp",
6+
"__config": "cpp",
7+
"__nullptr": "cpp",
8+
"thread": "cpp",
9+
"any": "cpp",
10+
"deque": "cpp",
11+
"list": "cpp",
12+
"map": "cpp",
13+
"optional": "cpp",
14+
"queue": "cpp",
15+
"set": "cpp",
16+
"stack": "cpp",
17+
"unordered_map": "cpp",
18+
"unordered_set": "cpp",
19+
"variant": "cpp",
20+
"vector": "cpp",
21+
"__bit_reference": "cpp",
22+
"__debug": "cpp",
23+
"__errc": "cpp",
24+
"__functional_base": "cpp",
25+
"__hash_table": "cpp",
26+
"__locale": "cpp",
27+
"__mutex_base": "cpp",
28+
"__node_handle": "cpp",
29+
"__split_buffer": "cpp",
30+
"__string": "cpp",
31+
"__threading_support": "cpp",
32+
"__tree": "cpp",
33+
"__tuple": "cpp",
34+
"algorithm": "cpp",
35+
"array": "cpp",
36+
"atomic": "cpp",
37+
"bit": "cpp",
38+
"bitset": "cpp",
39+
"cctype": "cpp",
40+
"cfenv": "cpp",
41+
"charconv": "cpp",
42+
"chrono": "cpp",
43+
"cinttypes": "cpp",
44+
"clocale": "cpp",
45+
"cmath": "cpp",
46+
"codecvt": "cpp",
47+
"compare": "cpp",
48+
"complex": "cpp",
49+
"condition_variable": "cpp",
50+
"csetjmp": "cpp",
51+
"csignal": "cpp",
52+
"cstdarg": "cpp",
53+
"cstddef": "cpp",
54+
"cstdint": "cpp",
55+
"cstdio": "cpp",
56+
"cstdlib": "cpp",
57+
"cstring": "cpp",
58+
"ctime": "cpp",
59+
"cwchar": "cpp",
60+
"cwctype": "cpp",
61+
"exception": "cpp",
62+
"coroutine": "cpp",
63+
"propagate_const": "cpp",
64+
"forward_list": "cpp",
65+
"fstream": "cpp",
66+
"functional": "cpp",
67+
"future": "cpp",
68+
"initializer_list": "cpp",
69+
"iomanip": "cpp",
70+
"ios": "cpp",
71+
"iostream": "cpp",
72+
"istream": "cpp",
73+
"iterator": "cpp",
74+
"limits": "cpp",
75+
"locale": "cpp",
76+
"memory": "cpp",
77+
"mutex": "cpp",
78+
"new": "cpp",
79+
"numeric": "cpp",
80+
"ostream": "cpp",
81+
"random": "cpp",
82+
"ratio": "cpp",
83+
"regex": "cpp",
84+
"scoped_allocator": "cpp",
85+
"span": "cpp",
86+
"sstream": "cpp",
87+
"stdexcept": "cpp",
88+
"streambuf": "cpp",
89+
"string": "cpp",
90+
"string_view": "cpp",
91+
"strstream": "cpp",
92+
"system_error": "cpp",
93+
"tuple": "cpp",
94+
"type_traits": "cpp",
95+
"typeindex": "cpp",
96+
"typeinfo": "cpp",
97+
"utility": "cpp",
98+
"valarray": "cpp",
99+
"xstring": "cpp",
100+
"xlocale": "cpp",
101+
"xlocbuf": "cpp",
102+
"concepts": "cpp",
103+
"filesystem": "cpp",
104+
"shared_mutex": "cpp",
105+
"xfacet": "cpp",
106+
"xhash": "cpp",
107+
"xiosbase": "cpp",
108+
"xlocinfo": "cpp",
109+
"xlocmes": "cpp",
110+
"xlocmon": "cpp",
111+
"xlocnum": "cpp",
112+
"xloctime": "cpp",
113+
"xmemory": "cpp",
114+
"xstddef": "cpp",
115+
"xtr1common": "cpp",
116+
"xtree": "cpp",
117+
"xutility": "cpp",
118+
"__functional_03": "cpp",
119+
"__functional_base_03": "cpp",
120+
"__memory": "cpp",
121+
"format": "cpp",
122+
"source_location": "cpp",
123+
"stop_token": "cpp",
124+
"__std_stream": "cpp",
125+
"memory_resource": "cpp",
126+
"ranges": "cpp"
127+
},
128+
"editor.formatOnSave": false,
129+
"editor.trimAutoWhitespace": true,
130+
"cmake.configureOnOpen": false,
131+
"cmake.automaticReconfigure": true
132+
}

0 commit comments

Comments
 (0)