/client/proc/admin_serialize() set name = "Serialize Marked Datum" set desc = "Turns your marked object into a JSON string you can later use to re-create the object" set category = "Debug" if(!check_rights(R_ADMIN|R_DEBUG)) return if(!istype(holder.marked_datum, /atom/movable)) to_chat(src, "The marked datum is not an atom/movable!") return var/atom/movable/AM = holder.marked_datum var/json_data = json_encode(AM.serialize()) var/choice = alert(usr, "Would you like to store this on your PC or server side?", "Storage Location", "PC", "Server", "Cancel") if(!choice || choice == "Cancel") return if(choice == "PC") to_chat(src, json_data) if(choice == "Server") // Right, get their slot names var/list/slots = list("--NEW--") var/datum/db_query/dbq = SSdbcore.NewQuery("SELECT slotname FROM json_datum_saves WHERE ckey=:ckey", list("ckey" = usr.ckey)) if(!dbq.warn_execute()) qdel(dbq) return while(dbq.NextRow()) slots += dbq.item[1] qdel(dbq) var/slot_choice = input(usr, "Select a slot to update, or create a new one.", "Slot Selection") as null|anything in slots if(!slot_choice) return if(slot_choice == "--NEW--") // New slot, save to DB var/chosen_slot_name = input(usr, "Name your slot", "Slot name") as null|text if(!chosen_slot_name || length(chosen_slot_name) == 0) return // Sanitize the name var/clean_name = sanitize(copytext(chosen_slot_name, 1, 32)) // 32 chars is your max // And save var/datum/db_query/dbq2 = SSdbcore.NewQuery("INSERT INTO json_datum_saves (ckey, slotname, slotjson) VALUES(:ckey, :slotname, :slotjson)", list( "ckey" = usr.ckey, "slotname" = clean_name, "slotjson" = json_data )) if(!dbq2.warn_execute()) qdel(dbq2) return qdel(dbq2) to_chat(usr, "Successfully saved [clean_name]. You can spawn it from Debug > Spawn Saved JSON Datum.") else // Existing slot, warn first var/confirmation = alert(usr, "Are you sure you want to update '[slot_choice]'? This cannot be undone!", "You sure?", "Yes", "No") if(confirmation != "Yes") return // Now update var/datum/db_query/dbq2 = SSdbcore.NewQuery("UPDATE json_datum_saves SET slotjson=:slotjson WHERE slotname=:slotname AND ckey=:ckey", list( "slotjson" = json_data, "ckey" = usr.ckey, "slotname" = slot_choice )) if(!dbq2.warn_execute()) qdel(dbq2) return qdel(dbq2) to_chat(usr, "Successfully updated [slot_choice]. You can spawn it from Debug > Spawn Saved JSON Datum.") /client/proc/admin_deserialize() set name = "Deserialize JSON datum" set desc = "Creates an object from a JSON string" set category = "Debug" if(!check_rights(R_SPAWN)) // this involves spawning things return var/json_text = input("Enter the JSON code:","Text") as message|null if(json_text) json_to_object(json_text, get_turf(usr)) message_admins("[key_name_admin(usr)] spawned an atom from a custom JSON object.") log_admin("[key_name(usr)] spawned an atom from a custom JSON object, JSON Text: [json_text]") /client/proc/json_spawn_menu() set name = "Spawn Saved JSON Datum" set desc = "Spawns a JSON datums saved server side" set category = "Debug" // This needs a holder to function if(!check_rights(R_SPAWN) || !holder) return // Right, get their slot names var/list/slots = list() var/datum/db_query/dbq = SSdbcore.NewQuery("SELECT slotname, id FROM json_datum_saves WHERE ckey=:ckey", list("ckey" = usr.ckey)) if(!dbq.warn_execute()) qdel(dbq) return while(dbq.NextRow()) slots[dbq.item[1]] += dbq.item[2] qdel(dbq) var/datum/browser/popup = new(usr, "jsonspawnmenu", "JSON Spawn Menu", 400, 300) // Cache this to reduce proc jumps var/holder_uid = holder.UID() var/list/rows = list() rows += "" for(var/slotname in slots) rows += "" rows += "
SlotActions
[slotname]Spawn  Delete
" popup.set_content(rows.Join("")) popup.open(FALSE)