Added loads of defines for everything

Added loads of defines for everything
This commit is contained in:
Razharas
2015-10-14 07:07:06 +03:00
parent d9f2f14ac4
commit 63741ea07c
9 changed files with 26 additions and 9 deletions
+3 -1
View File
@@ -17,7 +17,9 @@ Names of z-level do not matter, but order does greatly, for instances such as ch
#define MAP_FILE "DiscStation.dmm"
#define MAP_NAME "DiscStation"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#elif !defined(MAP_OVERRIDE)
+12
View File
@@ -0,0 +1,12 @@
#define CROSSLINKED 2
#define SELFLOOPING 1
#define UNAFFECTED 0
#define MAIN_STATION "Main Station"
#define CENTCOMM "CentComm"
#define ABANDONED_SATELLITE "Abandoned Satellite"
#define DERELICT "Derelicted Station"
#define MINING "Mining Asteroid"
#define EMPTY_AREA_1 "Empty Area 1"
#define EMPTY_AREA_2 "Empty Area 2"
#define AWAY_MISSION "Away Mission"
#define AWAY_MISSION_LIST list(AWAY_MISSION = UNAFFECTED)
+1 -1
View File
@@ -20,8 +20,8 @@ Make sure this is the only ticked file in the .dm folder, then compile as usual.
#define MAP_FILE "BirdStation.dmm"
#define MAP_NAME "BirdboatStation"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#if !defined(MAP_OVERRIDE_FILES)
#define MAP_OVERRIDE_FILES
+2 -1
View File
@@ -26,7 +26,8 @@ z7 = empty space
#define MAP_FILE "dreamstation04.dmm"
#define MAP_NAME "DreamStation"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#elif !defined(MAP_OVERRIDE)
+2 -2
View File
@@ -23,10 +23,10 @@ z7 = empty space
#include "map_files\generic\z6.dmm"
#include "map_files\generic\z7.dmm"
#define MAP_FILE "MetaStation.v41F.dmm"
#define MAP_NAME "MetaStation"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#elif !defined(MAP_OVERRIDE)
+2 -2
View File
@@ -56,10 +56,10 @@ Changes to the uplinks were made to discourage murderboning, the rest is the sam
#include "map_files\generic\z6.dmm"
#include "map_files\generic\z7.dmm"
#define MAP_FILE "MiniStation.dmm"
#define MAP_NAME "MiniStation"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#if !defined(MAP_OVERRIDE_FILES)
#define MAP_OVERRIDE_FILES
+2 -1
View File
@@ -25,7 +25,8 @@ z7 = empty space
#define MAP_FILE "tgstation.2.1.3.dmm"
#define MAP_NAME "Box Station"
#define MAP_TRANSITION_CONFIG list("Main Station" = 2,"CentComm" = 1,"Abandoned_Satellite" = 2,"Derelicted Station" = 2,"Mining Asteroid" = 2,"Empty Area 1" = 2,"Empty Area 2" = 2)
#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)
#elif !defined(MAP_OVERRIDE)
+1 -1
View File
@@ -41,7 +41,7 @@
maploader.load_map(file)
world.log << "away mission loaded: [map]"
map_transition_config.Add(list("Away Mission" = 0))
map_transition_config.Add(AWAY_MISSION_LIST)
for(var/obj/effect/landmark/L in landmarks_list)
if (L.name != "awaystart")
+1
View File
@@ -13,6 +13,7 @@
// END_PREFERENCES
// BEGIN_INCLUDE
#include "_maps\__MAP_DEFINES.dm"
#include "_maps\tgstation2.dm"
#include "code\_compile_options.dm"
#include "code\hub.dm"