From 1926b6b6124d3c5fed4cbc8850dc73d63c11a652 Mon Sep 17 00:00:00 2001 From: Magisterium2022 <103293726+Magisterium2022@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:11:34 +0100 Subject: [PATCH] AI misc QOL updates. (#19510) Updated the AI's hardware from basic to higher-grade versions, as they can't typically be upgraded during a round. Added potentially useful software which was not previously available through their downloader. Added drone language for communications and control. Disabled the block on electrifying doors, as law conflicts may permit it in some cases. --- code/modules/mob/living/silicon/ai/ai.dm | 5 +- .../subtypes/dev_silicon_subtypes.dm | 8 +++ .../Magisterium2022-PR-Aurora.3-magi.yml | 59 +++++++++++++++++++ 3 files changed, 70 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/Magisterium2022-PR-Aurora.3-magi.yml diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index 62ad1da5b92..3b743b78a5d 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -158,15 +158,16 @@ var/list/ai_verbs_default = list( add_language(LANGUAGE_ROBOT, TRUE) add_language(LANGUAGE_TCB, TRUE) add_language(LANGUAGE_SOL_COMMON, TRUE) + add_language(LANGUAGE_TRADEBAND, TRUE) + add_language(LANGUAGE_EAL, TRUE) + add_language(LANGUAGE_DRONE, TRUE) add_language(LANGUAGE_ELYRAN_STANDARD, FALSE) add_language(LANGUAGE_UNATHI, FALSE) add_language(LANGUAGE_SIIK_MAAS, FALSE) add_language(LANGUAGE_SKRELLIAN, FALSE) - add_language(LANGUAGE_TRADEBAND, TRUE) add_language(LANGUAGE_GUTTER, FALSE) add_language(LANGUAGE_VAURCA, FALSE) add_language(LANGUAGE_ROOTSONG, FALSE) - add_language(LANGUAGE_EAL, TRUE) add_language(LANGUAGE_YA_SSA, FALSE) add_language(LANGUAGE_DELVAHII, FALSE) diff --git a/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm b/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm index 46280e620f6..a0620ae3102 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_silicon_subtypes.dm @@ -3,6 +3,8 @@ /obj/item/modular_computer/silicon/ai/install_default_hardware() . = ..() + processor_unit = new /obj/item/computer_hardware/processor_unit/photonic(src) + hard_drive = new /obj/item/computer_hardware/hard_drive/cluster(src) network_card = new /obj/item/computer_hardware/network_card/wired(src) /obj/item/modular_computer/silicon/ai/install_default_programs() @@ -11,6 +13,12 @@ hard_drive.store_file(new /datum/computer_file/program/rcon_console(src)) hard_drive.store_file(new /datum/computer_file/program/suit_sensors(src)) hard_drive.store_file(new /datum/computer_file/program/power_monitor(src)) + hard_drive.store_file(new /datum/computer_file/program/teleporter(src)) + hard_drive.store_file(new /datum/computer_file/program/docks(src)) + hard_drive.store_file(new /datum/computer_file/program/implant_tracker(src)) + hard_drive.store_file(new /datum/computer_file/program/guntracker(src)) + hard_drive.store_file(new /datum/computer_file/program/account_db(src)) + hard_drive.store_file(new /datum/computer_file/program/comm(src)) /obj/item/modular_computer/silicon/robot hardware_flag = PROGRAM_SILICON_ROBOT diff --git a/html/changelogs/Magisterium2022-PR-Aurora.3-magi.yml b/html/changelogs/Magisterium2022-PR-Aurora.3-magi.yml new file mode 100644 index 00000000000..bd166ceae9c --- /dev/null +++ b/html/changelogs/Magisterium2022-PR-Aurora.3-magi.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Magisterium2022 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - qol: "Upgraded AI core hardware to permit easier workflow, and avoid issues with too many necessary apps." + - qol: "Added AI core software which is not downloadable via the NT downloader, to avoid the AI having to jump around between consoles to perform various tasks."