Ingame Atmos Reaction Guide (#65271)

About The Pull Request

https://imgur.com/a/pMMEi4i
https://imgur.com/a/xCrIcz4

Title, really.
Adds an ingame guide to atmos. Currently hooked to the atmos monitors, analyzer, and the tablet app.

Lots of reaction data not implemented yet, banking on the cleanup to get merged first, so drafting.
Done, all reactions in. Haven't double checked them though.

Code is pretty much finished, feel free to take a look. Ill probably retidy them while adding stuffs so no rush.

Might add a reaction handbook obj later Implemented in analyzer.

Dotted tooltip idea shamelessly stolen from preferences.

Lots of the diffs are from breaking the sensor file up, dont worry about it.
Why It's Good For The Game

Less need to open the wiki in another page I guess.
Changelog

cl
add: Added an ic atmos reaction guide. Available in your atmos control consoles/monitors, ntosatmos app, and analyzer.
code: Some changes to how gas canister descriptions are generated.
/cl
This commit is contained in:
vincentiusvin
2022-04-01 03:58:03 +07:00
committed by GitHub
parent 266e8df15b
commit 204cbbb736
27 changed files with 1159 additions and 616 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
var/turf/T = get_turf(mob)
if(!isturf(T))
return
atmosanalyzer_scan(usr, T, TRUE)
atmos_scan(user=usr, target=T, tool=null, silent=TRUE)
SSblackbox.record_feedback("tally", "admin_verb", 1, "Air Status In Location") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/cmd_admin_robotize(mob/M in GLOB.mob_list)
+1 -1
View File
@@ -4,7 +4,7 @@
if(!isturf(target))
return
atmosanalyzer_scan(usr, target, TRUE)
atmos_scan(user=usr, target=target, tool=null, silent=TRUE)
SSblackbox.record_feedback("tally", "admin_verb", 1, "Show Air Status") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/fix_next_move()