mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
* Add a proc for getting the station center * Add a couple of comments to ZTRAIT defines * Remove unused global_map list * Refactor weather to use the trait system * Un-hardcode the transit z-level * Use Z traits to determine Portal Storm event areas * Fix loading away missions containing anything that reads traits
64 lines
1.5 KiB
Plaintext
64 lines
1.5 KiB
Plaintext
// How much "space" we give the edge of the map
|
|
GLOBAL_LIST_INIT(potentialRandomZlevels, generateMapList(filename = "config/awaymissionconfig.txt"))
|
|
|
|
/proc/createRandomZlevel()
|
|
if(GLOB.awaydestinations.len) //crude, but it saves another var!
|
|
return
|
|
|
|
if(GLOB.potentialRandomZlevels && GLOB.potentialRandomZlevels.len)
|
|
to_chat(world, "<span class='boldannounce'>Loading away mission...</span>")
|
|
var/map = pick(GLOB.potentialRandomZlevels)
|
|
load_new_z_level(map, "Away Mission")
|
|
to_chat(world, "<span class='boldannounce'>Away mission loaded.</span>")
|
|
|
|
/proc/reset_gateway_spawns(reset = FALSE)
|
|
for(var/obj/machinery/gateway/G in world)
|
|
if(reset)
|
|
G.randomspawns = GLOB.awaydestinations
|
|
else
|
|
G.randomspawns.Add(GLOB.awaydestinations)
|
|
|
|
/obj/effect/landmark/awaystart
|
|
name = "away mission spawn"
|
|
desc = "Randomly picked away mission spawn points."
|
|
|
|
/obj/effect/landmark/awaystart/New()
|
|
GLOB.awaydestinations += src
|
|
..()
|
|
|
|
/obj/effect/landmark/awaystart/Destroy()
|
|
GLOB.awaydestinations -= src
|
|
return ..()
|
|
|
|
/proc/generateMapList(filename)
|
|
var/list/potentialMaps = list()
|
|
var/list/Lines = world.file2list(filename)
|
|
|
|
if(!Lines.len)
|
|
return
|
|
for (var/t in Lines)
|
|
if (!t)
|
|
continue
|
|
|
|
t = trim(t)
|
|
if (length(t) == 0)
|
|
continue
|
|
else if (copytext(t, 1, 2) == "#")
|
|
continue
|
|
|
|
var/pos = findtext(t, " ")
|
|
var/name = null
|
|
|
|
if (pos)
|
|
name = lowertext(copytext(t, 1, pos))
|
|
|
|
else
|
|
name = lowertext(t)
|
|
|
|
if (!name)
|
|
continue
|
|
|
|
potentialMaps.Add(t)
|
|
|
|
return potentialMaps
|