mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 07:02:30 +00:00
* Addsd sheet storage smartfridge Implements persistent item storage * Adds persistent produce smartfridge Repaths smartfridge base type to /produce subtype * Raises produce cap to 50, per staff meeting
81 lines
2.4 KiB
Plaintext
81 lines
2.4 KiB
Plaintext
/datum/persistent/storage/smartfridge/get_storage_list(var/obj/machinery/smartfridge/entry)
|
|
if(!istype(entry))
|
|
return ..()
|
|
|
|
. = list()
|
|
for(var/datum/stored_item/I in entry.item_records)
|
|
.[I.item_path] = I.get_amount()
|
|
|
|
/datum/persistent/storage/smartfridge/CreateEntryInstance(var/turf/creating, var/list/tokens)
|
|
var/obj/machinery/smartfridge/S = find_specific_instance(creating)
|
|
var/list/L = generate_items(tokens["items"])
|
|
for(var/atom/A in L)
|
|
if(S.accept_check(A))
|
|
S.stock(A)
|
|
else
|
|
qdel(A) // Should clean this up here, it couldn't be stocked
|
|
|
|
|
|
|
|
|
|
|
|
/datum/persistent/storage/smartfridge/sheet_storage
|
|
name = "sheet_storage"
|
|
max_storage = 50
|
|
store_per_type = TRUE
|
|
target_type = /obj/machinery/smartfridge/sheets
|
|
|
|
/datum/persistent/storage/smartfridge/sheet_storage/generate_items(var/list/L)
|
|
. = list()
|
|
for(var/obj/item/stack/material/S as anything in L)
|
|
if(!ispath(S, /obj/item/stack/material))
|
|
log_debug("Warning: Sheet_storage persistent datum tried to create [S]")
|
|
continue
|
|
|
|
var/count = L[S]
|
|
while(count > 0)
|
|
S = new S
|
|
S.amount = min(count, S.get_max_amount())
|
|
count -= S.get_amount()
|
|
. += S
|
|
|
|
|
|
|
|
/datum/persistent/storage/smartfridge/produce
|
|
name = "fruit_storage"
|
|
max_storage = 50
|
|
store_per_type = FALSE
|
|
target_type = /obj/machinery/smartfridge/produce
|
|
|
|
/datum/persistent/storage/smartfridge/produce/assemble_token(var/T)
|
|
var/list/subtok = splittext(T, " ")
|
|
if(subtok.len != 2)
|
|
return null
|
|
|
|
if(!istype(plant_controller)) // No seed controller means the fruit will come out all wonky if at all
|
|
return null
|
|
|
|
subtok[2] = text2num(subtok[2])
|
|
|
|
// Ensure we've found a token describing the quantity of a path
|
|
if(subtok.len != 2 || \
|
|
!istype(plant_controller.seeds[subtok[1]], /datum/seed) || \
|
|
!isnum(subtok[2]))
|
|
return null
|
|
|
|
return subtok
|
|
|
|
/datum/persistent/storage/smartfridge/produce/create_item(var/seedtype)
|
|
return new /obj/item/weapon/reagent_containers/food/snacks/grown(null, seedtype) // Smartfridge will be stock()ed with it, loc is unimportant
|
|
|
|
/datum/persistent/storage/smartfridge/produce/get_storage_list(var/obj/machinery/smartfridge/produce/entry)
|
|
if(!istype(entry))
|
|
return ..()
|
|
|
|
. = list()
|
|
for(var/datum/stored_item/I in entry.item_records)
|
|
if(LAZYLEN(I.instances))
|
|
var/obj/item/weapon/reagent_containers/food/snacks/grown/G = I.instances[1]
|
|
if(!istype(G))
|
|
continue
|
|
.[G.plantname] = I.get_amount() // Store the seed type, because that's what's used to generate the fruit |