-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
1,856 additions
and
492 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
.vscode/ | ||
.vs/ | ||
out/ | ||
build/ | ||
/out/ | ||
/build/ | ||
*.code-workspace | ||
/.cache/ | ||
compile_commands.json | ||
compile_commands.json | ||
version.aps | ||
*.vars |
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
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 |
---|---|---|
@@ -1,27 +1,35 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "x64-Debug", | ||
"generator": "Ninja", | ||
"configurationType": "Debug", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "" | ||
}, | ||
{ | ||
"name": "x64-Release", | ||
"generator": "Ninja", | ||
"configurationType": "RelWithDebInfo", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"variables": [] | ||
} | ||
] | ||
"configurations": [ | ||
{ | ||
"name": "x64-Debug", | ||
"generator": "Ninja", | ||
"configurationType": "Debug", | ||
"inheritEnvironments": [ "msvc_x64_x64" ], | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"ctestCommandArgs": "" | ||
}, | ||
{ | ||
"name": "x64-Release", | ||
"generator": "Ninja", | ||
"configurationType": "Release", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ] | ||
}, | ||
{ | ||
"name": "x64-ReleaseWithDebug", | ||
"generator": "Ninja", | ||
"configurationType": "RelWithDebInfo", | ||
"buildRoot": "${projectDir}\\out\\build\\${name}", | ||
"installRoot": "${projectDir}\\out\\install\\${name}", | ||
"cmakeCommandArgs": "", | ||
"buildCommandArgs": "", | ||
"inheritEnvironments": [ "msvc_x64_x64" ] | ||
} | ||
] | ||
} |
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,84 @@ | ||
# Star Trek Fleet Command - Community Patch | ||
|
||
<p align="center"> | ||
<img src="https://img.shields.io/badge/License-GPLv3-blue.svg" alt="License: GPLv3"> | ||
</p> | ||
|
||
<p align="center"> | ||
A community patch that adds a couple of tweaks to the mobile game <b>Star Trek Fleet Command™</b> | ||
</p> | ||
|
||
> [!NOTE] | ||
> The code here is a bit of a mess right now, I will be gradually going through and cleaning it up over the next couple of weeks. | ||
## Valid shortcut key strings | ||
|
||
Each game function can be assigned a shortcut KEY (with the exception of escape that is fixed). | ||
|
||
To use a Modifier, combine it with a single KEY (and optionally other modifiers) separated by a minus symbol: | ||
|
||
Value | Keys Required | ||
--: | :-- | ||
"SHIFT-Q" | (Left Or Right) Shift + Q | ||
"ALT-LSHIFT-T" | (Left Or Right) Alt + Left Shift + T | ||
"Q" | Q (no Shift, Ctrl, etc) | ||
|
||
### Modifiers | ||
|
||
Modifiers are not required, any specified must be used together: | ||
|
||
Value | Key | Value | Key | Value | Key | ||
--: | :-- | --: | :-- | --: | :-- | ||
"SHIFT" | LeftShirt or RightShift | "LSHIFT" | LeftShift | "RSHIFT" | RightShift | ||
"CTRL" | LeftControl or RightControl | "LCTRL" | LeftControl | "RCTRL" | RightControl | ||
"ALT" | LeftAlt or RightAlt | "LALT" | LeftAlt | "RALT" | RightAlt | ||
"WIN" | LeftWindows or RightWindows | "LWIN" | LeftWindows | "RWIN" | RightWindows | ||
"ALTGR" | AltGr | ||
|
||
### Keys | ||
|
||
Only key can be set at one time: | ||
|
||
Value | Key | Value | Key | Value | Key | Value | Key | ||
--: | :-- | --: | :-- | --: | :-- | --: | :-- | ||
"HOME" | Home | "END" | End | "PGUP" | PageUp | "PGDOWN" | PageDown | ||
"LEFT" | LeftArrow | "RIGHT" | RightArrow | "UP" | UpArrow | "DOWN" | DownArrow | ||
"BACKSPACE" | Backspace | "CLEAR" | Clear | "CAPS" | CapsLock | "BREAK" | Break | ||
"INSERT" | Insert | "DELETE" | Delete | "HELP" | Help | "MENU" | Menu | ||
"PAUSE" | Pause | "PRINT" | Print | "SPACE" | Space | "RETURN" | Return | ||
"SCROLL" | ScrollLock | "SYSREQ" | SysReq | "TAB" | Tab | "SPACE" | Space | ||
"MOUSE0" | Mouse0 | "MOUSE1" | Mouse1 | "MOUSE2" | Mouse2 | "MOUSE3" | Mouse3 | ||
"MOUSE4" | Mouse4 | "MOUSE5" | Mouse5 | "MOUSE6" | Mouse6 | "MINUS" | Minus | | ||
"'" | Quote | "_" | Underscore | "," | Comma | "." | Period | ||
";" | Semicolon | ":" | Colon | "!" | Exclaim | "?" | Question | ||
"(" | LeftParen | ")" | RightParen | "[" | LeftBracket | "]" | RightBracket | ||
"{" | LeftCurlyBracket | "}" | RightCurlyBracket | "@" | At | "*" | Asterisk | ||
"/" | Slash | "\" | Backslash | "\"" | DoubleQuote | "&" | Ampersand | ||
"#" | Hash | "%" | Percent | "`" | BackQuote | "^" | Caret | ||
"+" | Plus | "<" | Less | "=" | Equals | ">" | Greater | ||
"|" | Pipe | "~" | Tilde | "$" | Dollar | - | - | ||
"F1" | F1 | "F2" | F2 | "F3" | F3 | "F4" | F4 | ||
"F5" | F5 | "F6" | F6 | "F7" | F7 | "F8" | F8 | ||
"F9" | F9 | "F10" | F10 | "F11" | F11 | "F12" | F12 | ||
"F13" | F13 | "F14" | F14 | "F15" | F15 | ||
"0" | Alpha0 | "1" | Alpha1 | "2" | Alpha2 | "3" | Alpha3 | ||
"4" | Alpha4 | "5" | Alpha5 | "6" | Alpha6 | "7" | Alpha7 | ||
"8" | Alpha8 | "9" | Alpha9 | ||
"A" | A | "B" | B | "C" | C | "D" | D | ||
"E" | E | "F" | F | "G" | G | "H" | H | ||
"I" | I | "J" | J | "K" | K | "L" | L | ||
"M" | M | "N" | N | "O" | O | "P" | P | ||
"Q" | Q | "R" | R | "S" | S | "T" | T | ||
"U" | U | "V" | V | "W" | W | "X" | X | ||
"Y" | Y | "Z" | Z | ||
"KEY0" | Keypad0 | "KEY1" | Keypad1 | "KEY2" | Keypad2 | "KEY3" | Keypad3 | ||
"KEY4" | Keypad4 | "KEY5" | Keypad5 | "KEY6" | Keypad6 | "KEY7" | Keypad7 | ||
"KEY8" | Keypad8 | "KEY9" | Keypad9 | "KEYDIVIDE" | KeypadDivide | "KEYENTER" | KeypadEnter | ||
"KEYEQUAL" | KeypadEquals | "KEYMINUS" | KeypadMinus | "KEYMULTI" | KeypadMultiply | "KEYPERIOD" | KeypadPeriod | ||
"KEYPLUS" | KeypadPlus | "NUMLOCK" | Numlock | ||
|
||
**NOTE**: Default shortcuts are shown in the [README.md](README.md) | ||
|
||
## License | ||
|
||
- GPLv3 |
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
Oops, something went wrong.