forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazy_template.dm
79 lines (64 loc) · 2.58 KB
/
lazy_template.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Datum used to designate certain areas that do not need to exist nor be loaded at world start
* but do want to be loaded under certain circumstances. Use this for stuff like the nukie base or wizden, aka stuff that only matters when their antag is rolled.
*/
/datum/lazy_template
/// If this is true each load will increment an index keyed to the type and it will load [map_name]_[index]
var/list/datum/turf_reservation/reservations = list()
var/uses_multiple_allocations = FALSE
var/key
var/map_dir = "_maps/templates/lazy_templates"
var/map_name
var/map_width
var/map_height
/datum/lazy_template/New()
reservations = list()
..()
/datum/lazy_template/Destroy(force, ...)
if(!force)
stack_trace("Something is trying to delete [type]")
return QDEL_HINT_LETMELIVE
QDEL_LIST(reservations)
GLOB.lazy_templates -= key
return ..()
/**
* Does the grunt work of loading the template.
*/
/datum/lazy_template/proc/lazy_load()
RETURN_TYPE(/turf)
// This is a static assosciative list that is used to ensure maps that have variations are correctly varied when spawned
// I want to make it to where you can make a range and it'll randomly pick'n'take from the available versions at random
// But that can be done later when I have the time
var/static/list/multiple_allocation_hash = list()
var/load_path = "[map_dir]/[map_name].dmm"
if(uses_multiple_allocations)
var/times = multiple_allocation_hash[key] || 0
times += 1
multiple_allocation_hash[key] = times
load_path = "[map_dir]/[map_name]_[times].dmm"
if(!load_path || !fexists(load_path))
CRASH("lazy template [type] has an invalid load_path: '[load_path]', check directory and map name!")
var/datum/map_template/loading = new(path = load_path, cache = TRUE)
if(!loading.cached_map)
CRASH("Failed to cache lazy template for loading: '[key]'")
var/datum/turf_reservation/reservation = SSmapping.RequestBlockReservation(loading.width, loading.height)
if(!reservation)
CRASH("Failed to reserve a block for lazy template: '[key]'")
if(!loading.load(coords2turf(reservation.bottom_left_coords)))
CRASH("Failed to load lazy template: '[key]'")
reservations += reservation
return reservation
/datum/lazy_template/nukie_base
key = LAZY_TEMPLATE_KEY_NUKIEBASE
map_name = "nukie_base"
map_width = 89
map_height = 100
/datum/lazy_template/wizard_dem
key = LAZY_TEMPLATE_KEY_WIZARDDEN
map_name = "wizard_den"
/datum/lazy_template/ninja_holding_facility
key = LAZY_TEMPLATE_KEY_NINJA_HOLDING_FACILITY
map_name = "ninja_den"
/datum/lazy_template/abductor_ship
key = LAZY_TEMPLATE_KEY_ABDUCTOR_SHIPS
map_name = "abductor_ships"