Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,119 @@
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map)",
"preLaunchTask": "Build All (runtime map)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (quickstart)",
"preLaunchTask": "Build All (quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (testing)",
"preLaunchTask": "Build All (testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + quickstart)",
"preLaunchTask": "Build All (runtime map + quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + testing)",
"preLaunchTask": "Build All (runtime map + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (quickstart + testing)",
"preLaunchTask": "Build All (quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker (runtime map + quickstart + testing)",
"preLaunchTask": "Build All (runtime map + quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon",
"preLaunchTask": "Build All",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map)",
"preLaunchTask": "Build All (runtime map)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (quickstart)",
"preLaunchTask": "Build All (quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true

},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (testing)",
"preLaunchTask": "Build All (testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + quickstart)",
"preLaunchTask": "Build All (runtime map + quickstart)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + testing)",
"preLaunchTask": "Build All (runtime map + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (quickstart + testing)",
"preLaunchTask": "Build All (quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
},
{
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon (runtime map + quickstart + testing)",
"preLaunchTask": "Build All (runtime map + quickstart + testing)",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
}
]
}
190 changes: 166 additions & 24 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tasks": [
{
"type": "process",
"command": "tools/build/build",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat"
},
Expand All @@ -25,70 +25,212 @@
"label": "Build All"
},
{
"type": "dreammaker",
"dme": "colonialmarines.dme",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker"
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "dm: build - colonialmarines.dme"
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map)"
},
{
"command": "${command:dreammaker.reparse}",
"group": "build",
"label": "dm: reparse"
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (quickstart)"
},
{
"type": "shell",
"command": "bin/tgui-build",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\bin\\tgui-build.cmd"
"command": ".\\tools\\build\\build.bat",
"args": ["-DTESTING"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: build"
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (testing)"
},
{
"type": "shell",
"command": "bin/tgui-dev",
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\bin\\tgui-dev.cmd"
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + quickstart)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DTESTING", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (quickstart + quickstart)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DTESTING"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + testing)"
},
{
"type": "process",
"command": "tools/build/build.sh",
"windows": {
"command": ".\\tools\\build\\build.bat",
"args": ["-DRUNTIME_MAP", "-DTESTING", "-DQUICK_START"]
},
"options": {
"env": {
"DM_EXE": "${config:dreammaker.byondPath}"
}
},
"problemMatcher": [
"$dreammaker",
"$tsc",
"$eslint-stylish"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "dm: reparse",
"label": "Build All (runtime map + quickstart + testing)"
},
{
"type": "dreammaker",
"dme": "colonialmarines.dme",
"problemMatcher": [
"$dreammaker"
],
"group": "build",
"label": "tgui: dev server"
"label": "dm: build - colonialmarines.dme"
},
{
"command": "${command:dreammaker.reparse}",
"group": "build",
"label": "dm: reparse"
},
{
"type": "shell",
"command": "bin/tgui-bench",
"command": "bin/tgui-build",
"windows": {
"command": ".\\bin\\tgui-bench.cmd"
"command": ".\\bin\\tgui-build.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: bench"
"label": "tgui: build"
},
{
"type": "shell",
"command": "bin/tgui-sonar",
"command": "bin/tgui-dev",
"windows": {
"command": ".\\bin\\tgui-sonar.cmd"
"command": ".\\bin\\tgui-dev.cmd"
},
"problemMatcher": [
"$tsc",
"$eslint-stylish"
],
"group": "build",
"label": "tgui: sonar"
"label": "tgui: dev server"
},
{
"type": "shell",
Expand Down
Loading