mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 07:58:57 +01:00
7d058fc613
V2 of [previous music playing PR](https://github.com/Aurorastation/Aurora.3/pull/21466). TLDR no longer uses the connect_range component for implementation because it turned out a bit too inflexible for overlapping music players. Removes a NanoUI template for the [TGUI update](https://github.com/Aurorastation/Aurora.3/pull/21046). New changelog: - refactor: "Ported Jukebox's NanoUI interface to TGUI." - refactor: "Ported Jukebox audio playing functionality to a component." - refactor: "Sound keys refactored from singletons to datums, along with larger breakout of sound.dm to allow for easier SFX updates in future." - code_imp: "Expanded track datums to include track lengths." - code_imp: "Reorganized music file folders for more intuitive access." - rscadd: "Earphone status feedback text now includes track length." - rscadd: "Added autoplay functionality to earphones." - bugfix: "Fixed earphones' 'Previous Song' verb not sending you to the end of the playlist when used while the first track is selected." - bugfix: "Fixed gain adjustment for 'Konyang-1' (-23 dB -> standard -9.8 dB)." - bugfix: "Fixed y-offset of audioconsole-running overlay animation to line up with the actual screen." --------- Co-authored-by: VMSolidus <evilexecutive@gmail.com>
62 lines
2.0 KiB
Plaintext
62 lines
2.0 KiB
Plaintext
/obj/item/computer_hardware/nano_printer
|
|
name = "nano printer"
|
|
desc = "Small integrated printer with paper recycling module."
|
|
power_usage = 50
|
|
origin_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
critical = FALSE
|
|
icon_state = "printer"
|
|
hardware_size = 1
|
|
var/stored_paper = 5
|
|
var/max_paper = 10
|
|
|
|
/obj/item/computer_hardware/nano_printer/diagnostics(var/mob/user)
|
|
..()
|
|
to_chat(user, SPAN_NOTICE("Paper Buffer Level: [stored_paper]/[max_paper]"))
|
|
|
|
/obj/item/computer_hardware/nano_printer/proc/print_text(var/text_to_print, var/paper_title = null, var/paper_color = null)
|
|
if(!stored_paper)
|
|
return FALSE
|
|
if(!enabled)
|
|
return FALSE
|
|
if(!check_functionality())
|
|
return FALSE
|
|
|
|
// Damaged printer causes the resulting paper to be somewhat harder to read.
|
|
if(damage > damage_malfunction)
|
|
text_to_print = stars(text_to_print, 100-malfunction_probability)
|
|
var/obj/item/paper/P = new /obj/item/paper(get_turf(parent_computer), text_to_print, paper_title)
|
|
if(paper_color)
|
|
P.color = paper_color
|
|
|
|
stored_paper--
|
|
|
|
if(ismob(usr))
|
|
usr.put_in_hands(P, TRUE)
|
|
return P
|
|
|
|
/obj/item/computer_hardware/nano_printer/attackby(obj/item/attacking_item, mob/user)
|
|
//We only care about papers here
|
|
if(!istype(attacking_item, /obj/item/paper))
|
|
return ..()
|
|
|
|
var/obj/item/paper/attacking_paper = attacking_item
|
|
|
|
//If the paper is already written onto, we can't add it to the printer
|
|
if(attacking_paper.free_space != initial(attacking_paper.free_space))
|
|
to_chat(user, SPAN_WARNING("You try to add \the [attacking_paper] to the [src], but the paper is written onto already."))
|
|
return
|
|
|
|
if(stored_paper >= max_paper)
|
|
to_chat(user, SPAN_WARNING("You try to add \the [attacking_paper] to the [src], but its paper bin is full."))
|
|
return
|
|
|
|
to_chat(user, SPAN_NOTICE("You insert \the [attacking_paper] into [src]."))
|
|
qdel(attacking_paper)
|
|
stored_paper++
|
|
|
|
/obj/item/computer_hardware/nano_printer/Destroy()
|
|
if(parent_computer?.nano_printer == src)
|
|
parent_computer.nano_printer = null
|
|
parent_computer = null
|
|
return ..()
|