-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from zardoru/future
Future
- Loading branch information
Showing
455 changed files
with
5,314 additions
and
14,402 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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,6 @@ | ||
[submodule "arcadedata"] | ||
path = arcadedata | ||
url = git@gitlab.com:agka/raindrop-arcade-data.git | ||
[submodule "GameData"] | ||
path = GameData | ||
url = git@github.com:zardoru/raindrop-data.git |
This file contains 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,90 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Mac", | ||
"includePath": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"defines": [], | ||
"intelliSenseMode": "clang-x64", | ||
"browse": { | ||
"path": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "" | ||
}, | ||
"macFrameworkPath": [ | ||
"/System/Library/Frameworks", | ||
"/Library/Frameworks" | ||
] | ||
}, | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"defines": [], | ||
"intelliSenseMode": "clang-x64", | ||
"browse": { | ||
"path": [ | ||
"/usr/include", | ||
"/usr/local/include", | ||
"${workspaceRoot}" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "" | ||
} | ||
}, | ||
{ | ||
"name": "Win32", | ||
"includePath": [ | ||
"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.10.25017/include/*", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/um", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/ucrt", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/shared", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/winrt", | ||
"${workspaceRoot}/src/", | ||
"${workspaceRoot}/lib/include/", | ||
"${workspaceRoot}/lib/include/portaudio", | ||
"${workspaceRoot}/lib/include/libmpg123", | ||
"${workspaceRoot}/lib/include/libpng", | ||
"${workspaceRoot}/lib/include/libjpeg-turbo", | ||
"${workspaceRoot}/lib/include/zlib", | ||
"${workspaceRoot}/lib/include/libsndfile", | ||
"${workspaceRoot}/lib/include/stb", | ||
"${workspaceRoot}/lib/include/sqlite3", | ||
"${workspaceRoot}/lib/include/soxr", | ||
"${workspaceRoot}/lib/include/LuaBridge", | ||
"${workspaceRoot}/lib/include/lua", | ||
"${workspaceRoot}/lib/include/stdex", | ||
"${workspaceRoot}/msvc/packages/boost.1.64.0.0/lib/native/include" | ||
], | ||
"defines": [ | ||
"_DEBUG", | ||
"UNICODE", | ||
"WIN32" | ||
], | ||
"intelliSenseMode": "msvc-x64", | ||
"browse": { | ||
"path": [ | ||
"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.10.25017/include/*", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/um", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/ucrt", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/shared", | ||
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.15063.0/winrt", | ||
"${workspaceRoot}/src/" | ||
], | ||
"limitSymbolsToIncludedHeaders": true, | ||
"databaseFilename": "${workspaceRoot}/.vscode/browse.db" | ||
} | ||
} | ||
], | ||
"version": 3 | ||
} |
This file contains 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,66 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "(Windows) Attach", | ||
"type": "cppvsdbg", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
}, | ||
{ | ||
"name": "(Windows) Run Test osu file - Autoplay (debug/test.osu)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/msvc/Debug/raindrop.exe", | ||
"args": ["-p", "-i", "s3a/test.osu", "--config", "config-debug.ini"], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceRoot}/debug", | ||
"environment": [], | ||
"externalConsole": true | ||
}, | ||
{ | ||
"name": "(Windows) Run Test BMS file - Autoplay (debug/test.bms)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/msvc/Debug/raindrop.exe", | ||
"args": ["-p", "-i", "test.bms", "--config", "config-debug.ini"], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceRoot}/debug", | ||
"environment": [], | ||
"externalConsole": true | ||
}, | ||
{ | ||
"name": "(Windows) Run Test BMS file (debug/test.bms)", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/msvc/Debug/raindrop.exe", | ||
"args": ["-p", "-i", "test.bms", "--config", "config-debug.ini"], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceRoot}/debug", | ||
"environment": [], | ||
"externalConsole": true | ||
}, | ||
{ | ||
"name": "(Windows) Run Tests", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/msvc/Debug/raindrop.exe", | ||
"args": ["--test"], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceRoot}/debug", | ||
"environment": [], | ||
"externalConsole": true | ||
}, | ||
{ | ||
"name": "(Windows) Debug Launch", | ||
"type": "cppvsdbg", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/msvc/Debug/raindrop.exe", | ||
"args": ["--config", "config-debug.ini"], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceRoot}/debug", | ||
"environment": [], | ||
"externalConsole": true | ||
} | ||
] | ||
} |
This file contains 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,18 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**.dll": true, | ||
"**.db": true, | ||
"**/xcode":true, | ||
"**/release":true, | ||
"**/songs":true, | ||
"**/debug":true, | ||
"**/msvc":true, | ||
"**/lib":true, | ||
"**/src/ext":true | ||
} | ||
} |
This file contains 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,58 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"taskName": "Build Debug", | ||
"type": "process", | ||
"command": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\msbuild.exe", | ||
"args": [ | ||
"msvc/raindrop.vcxproj", | ||
"/property:GenerateFullPaths=true", | ||
"/t:build", | ||
"/p:Configuration=Debug" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"presentation": { | ||
"reveal": "always" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"taskName": "Build Release", | ||
"type": "process", | ||
"command": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\msbuild.exe", | ||
"args": [ | ||
"msvc/raindrop.vcxproj", | ||
"/property:GenerateFullPaths=true", | ||
"/t:build", | ||
"/p:Configuration=Release" | ||
], | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"taskName": "Rebuild Release", | ||
"type": "process", | ||
"command": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\msbuild.exe", | ||
"args": [ | ||
"msvc/raindrop.vcxproj", | ||
"/property:GenerateFullPaths=true", | ||
"/t:Clean;Build", | ||
"/p:Configuration=Release" | ||
], | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.