-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Monkestation:master' into Hardsuit-bugfixes
- Loading branch information
Showing
309 changed files
with
13,503 additions
and
9,455 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
12,652 changes: 6,384 additions & 6,268 deletions
12,652
_maps/map_files/Deltastation/DeltaStation2.dmm
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Constants and standard colors for the holomap | ||
|
||
/// Icon file to start with when drawing holomaps (to get a 480x480 canvas). | ||
#define HOLOMAP_ICON 'monkestation/code/modules/holomaps/icons/480x480.dmi' | ||
/// Pixel width & height of the holomap icon. Used for auto-centering etc. | ||
#define HOLOMAP_ICON_SIZE 480 | ||
#define ui_holomap "CENTER-7,CENTER-7" // Screen location of the holomap "hud" | ||
|
||
#define HOLOMAP_EXTRA_STATIONMAP "stationmapformatted" | ||
#define HOLOMAP_EXTRA_STATIONMAPAREAS "stationareas" | ||
#define HOLOMAP_EXTRA_STATIONMAPSMALL "stationmapsmall" | ||
|
||
// Holomap colors | ||
#define HOLOMAP_OBSTACLE "#FFFFFFDD" // Color of walls and barriers | ||
#define HOLOMAP_SOFT_OBSTACLE "#ffffff54" // Color of weak, climbable, or see-through barriers that aren't fulltile windows. | ||
#define HOLOMAP_PATH "#66666699" // Color of floors | ||
#define HOLOMAP_ROCK "#66666644" // Color of mineral walls | ||
#define HOLOMAP_HOLOFIER "#0096bb" // Whole map is multiplied by this to give it a green holoish look | ||
|
||
#define HOLOMAP_AREACOLOR_COMMAND "#3434d499" | ||
#define HOLOMAP_AREACOLOR_SECURITY "#AE121299" | ||
#define HOLOMAP_AREACOLOR_MEDICAL "#447bc299" | ||
#define HOLOMAP_AREACOLOR_SCIENCE "#A154A699" | ||
#define HOLOMAP_AREACOLOR_ENGINEERING "#F1C23199" | ||
#define HOLOMAP_AREACOLOR_CARGO "#e06f0099" | ||
#define HOLOMAP_AREACOLOR_HALLWAYS "#b9b9b999" | ||
#define HOLOMAP_AREACOLOR_MAINTENANCE "#5e5e5e99" | ||
#define HOLOMAP_AREACOLOR_ARRIVALS "#6464ff99" | ||
#define HOLOMAP_AREACOLOR_ESCAPE "#ff585899" | ||
#define HOLOMAP_AREACOLOR_DORMS "#bfff8399" | ||
#define HOLOMAP_AREACOLOR_SERVICE "#3ab33699" | ||
#define HOLOMAP_AREACOLOR_HANGAR "#2681a599" | ||
//#define HOLOMAP_AREACOLOR_MUNITION "#CC889999" | ||
|
||
#define HOLOMAP_LEGEND_X 64 | ||
#define HOLOMAP_LEGEND_Y 96 | ||
|
||
#define HOLOMAP_LEGEND_WIDTH 64 | ||
|
||
#define HOLOMAP_CENTER_X round((HOLOMAP_ICON_SIZE - world.maxx) / 2) | ||
#define HOLOMAP_CENTER_Y round((HOLOMAP_ICON_SIZE - world.maxy) / 2) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/// A list of fire alarms on the station, separated by Z. Used cause there are a lot of fire alarms on any given station Z. | ||
GLOBAL_LIST_EMPTY(station_fire_alarms) | ||
|
||
GLOBAL_LIST_EMPTY(holomap_default_legend) | ||
|
||
/// Used in generating area preview icons. | ||
GLOBAL_LIST_INIT(holomap_color_to_name, list( | ||
HOLOMAP_AREACOLOR_COMMAND = "Command", | ||
HOLOMAP_AREACOLOR_SECURITY = "Security", | ||
HOLOMAP_AREACOLOR_MEDICAL = "Medical", | ||
HOLOMAP_AREACOLOR_SCIENCE = "Science", | ||
HOLOMAP_AREACOLOR_ENGINEERING = "Engineering", | ||
HOLOMAP_AREACOLOR_CARGO = "Cargo", | ||
HOLOMAP_AREACOLOR_HALLWAYS = "Hallways", | ||
HOLOMAP_AREACOLOR_MAINTENANCE = "Maintenance", | ||
HOLOMAP_AREACOLOR_ARRIVALS = "Arrivals", | ||
HOLOMAP_AREACOLOR_ESCAPE = "Departures", | ||
HOLOMAP_AREACOLOR_DORMS = "Recreation", | ||
HOLOMAP_AREACOLOR_SERVICE = "Service", | ||
HOLOMAP_AREACOLOR_HANGAR = "Hangar", | ||
)) |
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.