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
* okay * ok * ok * ok * ok * why am i doing this * WHY DID I DO THIS * mirror doesn't work * compile * shuttles should work * fix engine * fix engine * off by 1 * ok * adds proccall to write next map * haha post processing funny * fixes * Update code/modules/mapping/map_template.dm Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> * Update code/modules/mapping/map_template.dm Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> * Update code/modules/mapping/map_template.dm Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> * Update code/modules/mapping/map_template.dm Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
71 lines
2.9 KiB
Plaintext
71 lines
2.9 KiB
Plaintext
/client/proc/map_template_load()
|
|
set category = "Debug"
|
|
set name = "Map template - Place"
|
|
|
|
var/datum/map_template/template
|
|
|
|
var/map = input(src, "Choose a Map Template to place at your CURRENT LOCATION","Place Map Template") as null|anything in SSmapping.map_templates
|
|
if(!map)
|
|
return
|
|
template = SSmapping.map_templates[map]
|
|
|
|
var/turf/T = get_turf(mob)
|
|
if(!T)
|
|
return
|
|
|
|
var/list/preview = list()
|
|
for(var/S in template.get_affected_turfs(T,centered = TRUE))
|
|
var/image/item = image('icons/turf/overlays.dmi',S,"greenOverlay")
|
|
item.plane = ABOVE_LIGHTING_PLANE
|
|
preview += item
|
|
var/list/orientations = list("South" = SOUTH, "North" = NORTH, "East" = EAST, "West" = WEST)
|
|
var/choice = input(src, "Which orientation? Maps are normally facing SOUTH.", "Template Orientation", "South") as null|anything in orientations
|
|
var/orientation = orientations[choice]
|
|
images += preview
|
|
if(alert(src,"Confirm location.","Template Confirm","Yes","No") == "Yes")
|
|
if(template.load(T, centered = TRUE, orientation = orientation))
|
|
message_admins("<span class='adminnotice'>[key_name_admin(src)] has placed a map template ([template.name]) at [ADMIN_COORDJMP(T)]</span>")
|
|
else
|
|
to_chat(src, "Failed to place map")
|
|
images -= preview
|
|
|
|
/client/proc/map_template_upload()
|
|
set category = "Debug"
|
|
set name = "Map Template - Upload"
|
|
|
|
var/map = input(src, "Choose a Map Template to upload to template storage","Upload Map Template") as null|file
|
|
if(!map)
|
|
return
|
|
if(copytext("[map]", -4) != ".dmm")//4 == length(".dmm")
|
|
to_chat(src, "<span class='warning'>Filename must end in '.dmm': [map]</span>")
|
|
return
|
|
var/datum/map_template/M
|
|
switch(alert(src, "What kind of map is this?", "Map type", "Normal", "Shuttle", "Cancel"))
|
|
if("Normal")
|
|
M = new /datum/map_template(map, "[map]", TRUE)
|
|
if("Shuttle")
|
|
M = new /datum/map_template/shuttle(map, "[map]", TRUE)
|
|
else
|
|
return
|
|
if(!M.cached_map)
|
|
to_chat(src, "<span class='warning'>Map template '[map]' failed to parse properly.</span>")
|
|
return
|
|
|
|
var/datum/map_report/report = M.cached_map.check_for_errors()
|
|
var/report_link
|
|
if(report)
|
|
report.show_to(src)
|
|
report_link = " - <a href='?src=[REF(report)];[HrefToken(TRUE)];show=1'>validation report</a>"
|
|
to_chat(src, "<span class='warning'>Map template '[map]' <a href='?src=[REF(report)];[HrefToken()];show=1'>failed validation</a>.</span>")
|
|
if(report.loadable)
|
|
var/response = alert(src, "The map failed validation, would you like to load it anyways?", "Map Errors", "Cancel", "Upload Anyways")
|
|
if(response != "Upload Anyways")
|
|
return
|
|
else
|
|
alert(src, "The map failed validation and cannot be loaded.", "Map Errors", "Oh Darn")
|
|
return
|
|
|
|
SSmapping.map_templates[M.name] = M
|
|
message_admins("<span class='adminnotice'>[key_name_admin(src)] has uploaded a map template '[map]' ([M.width]x[M.height])[report_link].</span>")
|
|
to_chat(src, "<span class='notice'>Map template '[map]' ready to place ([M.width]x[M.height])</span>")
|