-
-
Notifications
You must be signed in to change notification settings - Fork 280
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
328 changed files
with
10,411 additions
and
2,805 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2023 Citadel Station developers. *// | ||
|
||
//* coloration_mode | ||
|
||
/// no recoloring | ||
#define COLORATION_MODE_NONE (1<<0) | ||
/// free normal multiply color | ||
#define COLORATION_MODE_MULTIPLY (1<<1) | ||
/// free matrix or normal multiply color | ||
#define COLORATION_MODE_MATRIX (1<<2) | ||
/// red-green matrix for parts 1, 2. | ||
#define COLORATION_MODE_RG_MATRIX (1<<3) | ||
/// red-blue matrix for parts 1, 2 | ||
#define COLORATION_MODE_RB_MATRIX (1<<4) | ||
/// green-blue matrix for parts 1, 2 | ||
#define COLORATION_MODE_GB_MATRIX (1<<5) | ||
/// red-green-blue matrix for parts 1, 2, 3 | ||
#define COLORATION_MODE_RGB_MATRIX (1<<6) | ||
/// overlays - dynamic amount | ||
// todo: implement | ||
#define COLORATION_MODE_OVERLAYS (1<<7) | ||
|
||
#define COLORATION_MODES_COMPLEX (COLORATION_MODE_RG_MATRIX | COLORATION_MODE_RB_MATRIX | COLORATION_MODE_GB_MATRIX \ | ||
| COLORATION_MODE_RGB_MATRIX | COLORATION_MODE_OVERLAYS ) |
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,7 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2023 Citadel Station developers. *// | ||
|
||
/// use single, transform matrix'd line | ||
#define BEAM_VISUAL_STRETCH "stretch" | ||
/// use segments | ||
#define BEAM_VISUAL_SEGMENTS "segments" |
2 changes: 2 additions & 0 deletions
2
code/__DEFINES/event_args.dm → code/__DEFINES/datums/event_args.dm
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.