mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-20 15:12:19 +00:00
The downloader and the file manager no longer come default on any device. A client enrollment app comes now with every console The user has to select weather the device is a private or company device and select a software preset if its a work console Work devices are locked down to a specific set of programs Private devices get the downloader and the file manager to install programs as usual. Threw out the backup of the old-old camera monitor. Made software presets a generic thing that are not dependant on the form factor of a device. Ported holowarrants from bay Ported wall mounted consoles from bay Ported various computer fixes from bay Vending machines spawn now with the holowarrant "client" Mapping changes: CE and HoS dont get a modular computer with command preset (they did not have that before bay merge, so why should they now) Added a modular computer with command preset to the head of staff briefing room Replaced the camera monitoring console in the Engine Control room with a modular computer Replaced the cam monitor in the CE´s office with a wall mounted console Switched places of the bar sink and console Replaced the consoles with obj/item consoles Mapped in the ERT and Merc Console (Merc Shuttle, ERT Area) Fixed the "border" at the heisters base Also waiting for CCIA on a design for the warrants. But that can be changed with a follow up pull
42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
// CPU that allows the computer to run programs.
|
|
// Better CPUs are obtainable via research and can run more programs on background.
|
|
|
|
/obj/item/weapon/computer_hardware/processor_unit
|
|
name = "standard processor"
|
|
desc = "A standard CPU used in most computers. It can run up to three programs simultaneously."
|
|
icon_state = "cpu_normal"
|
|
hardware_size = 2
|
|
power_usage = 75
|
|
critical = 1
|
|
malfunction_probability = 1
|
|
origin_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 2)
|
|
|
|
var/max_idle_programs = 2 // 2 idle, + 1 active = 3 as said in description.
|
|
|
|
/obj/item/weapon/computer_hardware/processor_unit/small
|
|
name = "standard microprocessor"
|
|
desc = "A standard miniaturised CPU used in portable devices. It can run up to two programs simultaneously."
|
|
icon_state = "cpu_small"
|
|
hardware_size = 1
|
|
power_usage = 25
|
|
max_idle_programs = 1
|
|
origin_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 2)
|
|
|
|
/obj/item/weapon/computer_hardware/processor_unit/photonic
|
|
name = "photonic processor"
|
|
desc = "An advanced experimental CPU that uses photonic core instead of regular circuitry. It can run up to five programs simultaneously, but uses a lot of power."
|
|
icon_state = "cpu_normal_photonic"
|
|
hardware_size = 2
|
|
power_usage = 250
|
|
max_idle_programs = 4
|
|
origin_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 4)
|
|
|
|
/obj/item/weapon/computer_hardware/processor_unit/photonic/small
|
|
name = "photonic microprocessor"
|
|
desc = "An advanced miniaturised CPU for use in portable devices. It uses photonic core instead of regular circuitry. It can run up to three programs simultaneously."
|
|
icon_state = "cpu_small_photonic"
|
|
hardware_size = 1
|
|
power_usage = 100
|
|
max_idle_programs = 2
|
|
origin_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3)
|