GLOBAL_VAR(create_object_html) GLOBAL_LIST_INIT(create_object_forms, list(/obj, /obj/structure, /obj/machinery, /obj/effect, /obj/item, /obj/mecha, /obj/item/clothing, /obj/item/stack, /obj/item/reagent_containers, /obj/item/gun)) /datum/admins/proc/create_object(mob/user) if(!GLOB.create_object_html) var/objectjs = null objectjs = jointext(typesof(/obj), ";") GLOB.create_object_html = file2text('html/create_object.html') GLOB.create_object_html = replacetext(GLOB.create_object_html, "$ATOM$", "Object") GLOB.create_object_html = replacetext(GLOB.create_object_html, "null /* object types */", "\"[objectjs]\"") var/datum/browser/popup = new(user, "create_obj", "
Create Object
", 500, 550) var/unique_content = GLOB.create_object_html unique_content = replacetext(unique_content, "/* ref src */", UID()) popup.set_content(unique_content) popup.set_window_options("can_close=1;can_minimize=0;can_maximize=1;can_resize=1") popup.open() onclose(user, "create_obj") /datum/admins/proc/quick_create_object(mob/user) var/path = input("Select the path of the object you wish to create.", "Path", /obj) in GLOB.create_object_forms var/html_form = GLOB.create_object_forms[path] if(!html_form) var/objectjs = jointext(typesof(path), ";") html_form = file2text('html/create_object.html') html_form = replacetext(html_form, "$ATOM$", "Object") html_form = replacetext(html_form, "null /* object types */", "\"[objectjs]\"") GLOB.create_object_forms[path] = html_form var/datum/browser/popup = new(user, "qco[path]", "
Quick Create [path]
", 500, 550) var/unique_content = html_form unique_content = replacetext(unique_content, "/* ref src */", UID()) popup.set_content(unique_content) popup.set_window_options("can_close=1;can_minimize=0;can_maximize=1;can_resize=1") popup.open() onclose(user, "qco[path]")