-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes the crew manifest into TGUI + Sorts the late-join menu (#2662)
* Refactor crew manifest in lobby, ghost and AI actions (#58275) Co-authored-by: celotajstg <[email protected]> * Job re-arranging 1.0, ports department bitflags from #57174 * Prevent negative open positions in crew manifest (#58300) * Resolve open position issues in crew manifest * Use the classes helper for multiple classes Co-authored-by: celotajstg <[email protected]> * fixes, and adds icons to all command jobs on the crew manifest * code for the bad implementation of TGUI linters-- god * removes duplicate entries from the crew manifest * review requests * fixes the fixer global list * the demon core is missing a non-erroring comma * moves rats to the fixer tab * bump * experimental patch to the runtimes --------- Co-authored-by: celotajstg <[email protected]> Co-authored-by: celotajstg <[email protected]>
- Loading branch information
1 parent
32c404a
commit 7a0d5a9
Showing
97 changed files
with
646 additions
and
121 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,106 @@ | ||
#define DEPARTMENT_W_CORP (1<<10) | ||
#define DEPARTMENT_R_CORP (1<<11) | ||
#define DEPARTMENT_HANA (1<<12) | ||
#define DEPARTMENT_ASSOCIATION (1<<13) | ||
#define DEPARTMENT_CITY_ANTAGONIST (1<<13) | ||
#define DEPARTMENT_FIXERS (1<<14) | ||
|
||
GLOBAL_LIST_INIT(w_corp_positions, list( | ||
"W-Corp Representative", | ||
"W-Corp L3 Squad Captain", | ||
"W-Corp L2 Type A Lieutenant", | ||
"W-Corp L2 Type B Support Agent", | ||
"W-Corp L2 Type C Weapon Specialist", | ||
"W-Corp L2 Type D Spear Agent", | ||
"W-Corp L1 Cleanup Agent", | ||
)) | ||
|
||
GLOBAL_LIST_INIT(r_corp_positions, list( | ||
// 4th Pack Command | ||
"Ground Commander", | ||
"Lieutenant Commander", | ||
"Operations Officer", | ||
"Rabbit Squad Captain", | ||
"Reindeer Squad Captain", | ||
"Rhino Squad Captain", | ||
"Raven Squad Captain", | ||
|
||
// 5th Pack Command | ||
"Assault Commander", | ||
"Base Commander", | ||
"Support Officer", | ||
"Rat Squad Leader", | ||
"Rooster Squad Leader", | ||
"Raccoon Squad Leader", | ||
"Roadrunner Squad Leader", | ||
|
||
// 4th Pack troops | ||
"R-Corp Suppressive Rabbit", | ||
"R-Corp Assault Rabbit", | ||
"R-Corp Medical Reindeer", | ||
"R-Corp Berserker Reindeer", | ||
"R-Corp Gunner Rhino", | ||
"R-Corp Hammer Rhino", | ||
"R-Corp Scout Raven", | ||
"R-Corp Support Raven", | ||
|
||
// 5th Pack troops | ||
"R-Corp Rat", | ||
"R-Corp Rooster", | ||
"R-Corp Raccoon Spy", | ||
"R-Corp Raccoon Sniper", | ||
"R-Corp Roadrunner", | ||
)) | ||
|
||
GLOBAL_LIST_INIT(hana_positions, list( | ||
"Hana Administrator", | ||
"Hana Representative", | ||
"Hana Intern", | ||
)) | ||
|
||
GLOBAL_LIST_INIT(fixer_positions, list( | ||
"East Office Director", | ||
"East Office Fixer", | ||
"North Office Director", | ||
"North Office Fixer", | ||
|
||
"Association Section Director", | ||
"Association Veteran", | ||
"Association Fixer", | ||
"Roaming Association Fixer", | ||
|
||
"Medical Fixer Assistant", | ||
"Fixer", | ||
"Rat", // most fitting, somehow | ||
)) | ||
|
||
GLOBAL_LIST_INIT(association_positions, list( | ||
"Association Section Director", | ||
"Association Veteran", | ||
"Association Fixer", | ||
"Roaming Association Fixer", | ||
)) | ||
|
||
GLOBAL_LIST_INIT(city_antagonist_positions, list( | ||
"Index Messenger", | ||
"Index Proxy", | ||
"Index Proselyte", | ||
|
||
"Blade Lineage Cutthroat", | ||
"Blade Lineage Salsu", | ||
"Blade Lineage Ronin", | ||
"Blade Lineage Roaming Salsu", | ||
|
||
"Grand Inquisitor", | ||
"N Corp Grosshammer", | ||
"N Corp Mittlehammer", | ||
"N Corp Kleinhammer", | ||
|
||
"Thumb Sottocapo", | ||
"Thumb Capo", | ||
"Thumb Soldato", | ||
|
||
"Kurokumo Kashira", | ||
"Kurokumo Hosa", | ||
"Kurokumo Wakashu", | ||
)) |
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 @@ | ||
GLOBAL_DATUM(crew_manifest_tgui, /datum/crew_manifest) |
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
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
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
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
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
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
Oops, something went wrong.