mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Remove reagent ids and use typepaths where applicable * Remove reagent ids and use typepaths where applicable * Resolves some easier conflicts * Resolves medical_tools.dm * Resolves robots.dm * Handles cinnamon Wow, I cannot do this manually. Fuckin' regex time. * Removes 27 merge conflicts (!!!!!) * Makes it actually half-attempt to compile * I just -- I give up, it's over * mk * mk * mk * hm * ok * what a bloody chain reaction jesus * ok * and done * went threw and changed the ones I missed * ok * dangit altoids hurry the fek up * Fixes whatever I found find thru this regex: reagents[\s\w]*=[\s\w]*list\([^\/]+\)
252 lines
8.3 KiB
Plaintext
252 lines
8.3 KiB
Plaintext
// simple is_type and similar inline helpers
|
|
|
|
#define islist(L) (istype(L, /list))
|
|
|
|
#define in_range(source, user) (get_dist(source, user) <= 1 && (get_step(source, 0)?:z) == (get_step(user, 0)?:z))
|
|
|
|
#define ismovableatom(A) (istype(A, /atom/movable))
|
|
|
|
#define isatom(A) (isloc(A))
|
|
|
|
#define isweakref(D) (istype(D, /datum/weakref))
|
|
|
|
//Turfs
|
|
//#define isturf(A) (istype(A, /turf)) This is actually a byond built-in. Added here for completeness sake.
|
|
|
|
GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list(
|
|
/turf/open/space,
|
|
/turf/open/chasm,
|
|
/turf/open/lava,
|
|
/turf/open/water
|
|
)))
|
|
|
|
#define isgroundlessturf(A) (is_type_in_typecache(A, GLOB.turfs_without_ground))
|
|
|
|
#define isopenturf(A) (istype(A, /turf/open))
|
|
|
|
#define isindestructiblefloor(A) (istype(A, /turf/open/indestructible))
|
|
|
|
#define isspaceturf(A) (istype(A, /turf/open/space))
|
|
|
|
#define isfloorturf(A) (istype(A, /turf/open/floor))
|
|
|
|
#define isclosedturf(A) (istype(A, /turf/closed))
|
|
|
|
#define isindestructiblewall(A) (istype(A, /turf/closed/indestructible))
|
|
|
|
#define iswallturf(A) (istype(A, /turf/closed/wall))
|
|
|
|
#define ismineralturf(A) (istype(A, /turf/closed/mineral))
|
|
|
|
#define islava(A) (istype(A, /turf/open/lava))
|
|
|
|
#define ischasm(A) (istype(A, /turf/open/chasm))
|
|
|
|
#define isplatingturf(A) (istype(A, /turf/open/floor/plating))
|
|
|
|
//Mobs
|
|
#define isliving(A) (istype(A, /mob/living))
|
|
|
|
#define isbrain(A) (istype(A, /mob/living/brain))
|
|
|
|
//Carbon mobs
|
|
#define iscarbon(A) (istype(A, /mob/living/carbon))
|
|
|
|
#define ishuman(A) (istype(A, /mob/living/carbon/human))
|
|
|
|
//Human sub-species
|
|
#define isabductor(A) (is_species(A, /datum/species/abductor))
|
|
#define isgolem(A) (is_species(A, /datum/species/golem))
|
|
#define islizard(A) (is_species(A, /datum/species/lizard))
|
|
#define isplasmaman(A) (is_species(A, /datum/species/plasmaman))
|
|
#define ispodperson(A) (is_species(A, /datum/species/pod))
|
|
#define isflyperson(A) (is_species(A, /datum/species/fly))
|
|
#define isjellyperson(A) (is_species(A, /datum/species/jelly))
|
|
#define isslimeperson(A) (is_species(A, /datum/species/jelly/slime))
|
|
#define isluminescent(A) (is_species(A, /datum/species/jelly/luminescent))
|
|
#define iszombie(A) (is_species(A, /datum/species/zombie))
|
|
#define isskeleton(A) (is_species(A, /datum/species/skeleton))
|
|
#define ismoth(A) (is_species(A, /datum/species/moth))
|
|
#define ishumanbasic(A) (is_species(A, /datum/species/human))
|
|
#define iscatperson(A) (ishumanbasic(A) && istype(A.dna.species, /datum/species/human/felinid) )
|
|
#define isethereal(A) (is_species(A, /datum/species/ethereal))
|
|
#define isvampire(A) (is_species(A,/datum/species/vampire))
|
|
|
|
//more carbon mobs
|
|
#define ismonkey(A) (istype(A, /mob/living/carbon/monkey))
|
|
|
|
#define isalien(A) (istype(A, /mob/living/carbon/alien))
|
|
|
|
#define islarva(A) (istype(A, /mob/living/carbon/alien/larva))
|
|
|
|
#define isalienadult(A) (istype(A, /mob/living/carbon/alien/humanoid) || istype(A, /mob/living/simple_animal/hostile/alien))
|
|
|
|
#define isalienhunter(A) (istype(A, /mob/living/carbon/alien/humanoid/hunter))
|
|
|
|
#define isaliensentinel(A) (istype(A, /mob/living/carbon/alien/humanoid/sentinel))
|
|
|
|
#define isalienroyal(A) (istype(A, /mob/living/carbon/alien/humanoid/royal))
|
|
|
|
#define isalienqueen(A) (istype(A, /mob/living/carbon/alien/humanoid/royal/queen))
|
|
|
|
#define isdevil(A) (istype(A, /mob/living/carbon/true_devil))
|
|
|
|
//Silicon mobs
|
|
#define issilicon(A) (istype(A, /mob/living/silicon))
|
|
|
|
#define issiliconoradminghost(A) (istype(A, /mob/living/silicon) || IsAdminGhost(A))
|
|
|
|
#define iscyborg(A) (istype(A, /mob/living/silicon/robot))
|
|
|
|
#define isAI(A) (istype(A, /mob/living/silicon/ai))
|
|
|
|
#define ispAI(A) (istype(A, /mob/living/silicon/pai))
|
|
|
|
//Simple animals
|
|
#define isanimal(A) (istype(A, /mob/living/simple_animal))
|
|
|
|
#define isrevenant(A) (istype(A, /mob/living/simple_animal/revenant))
|
|
|
|
#define isbot(A) (istype(A, /mob/living/simple_animal/bot))
|
|
|
|
#define isshade(A) (istype(A, /mob/living/simple_animal/shade))
|
|
|
|
#define ismouse(A) (istype(A, /mob/living/simple_animal/mouse))
|
|
|
|
#define isslime(A) (istype(A, /mob/living/simple_animal/slime))
|
|
|
|
#define isdrone(A) (istype(A, /mob/living/simple_animal/drone))
|
|
|
|
#define iscat(A) (istype(A, /mob/living/simple_animal/pet/cat))
|
|
|
|
#define iscorgi(A) (istype(A, /mob/living/simple_animal/pet/dog/corgi))
|
|
|
|
#define ishostile(A) (istype(A, /mob/living/simple_animal/hostile))
|
|
|
|
#define isswarmer(A) (istype(A, /mob/living/simple_animal/hostile/swarmer))
|
|
|
|
#define isguardian(A) (istype(A, /mob/living/simple_animal/hostile/guardian))
|
|
|
|
#define isclockmob(A) (istype(A, /mob/living/simple_animal/hostile/clockwork))
|
|
|
|
#define isconstruct(A) (istype(A, /mob/living/simple_animal/hostile/construct))
|
|
|
|
#define ismegafauna(A) (istype(A, /mob/living/simple_animal/hostile/megafauna))
|
|
|
|
#define isclown(A) (istype(A, /mob/living/simple_animal/hostile/retaliate/clown))
|
|
|
|
GLOBAL_LIST_INIT(shoefootmob, typecacheof(list(
|
|
/mob/living/carbon/human/,
|
|
/mob/living/simple_animal/cow,
|
|
/mob/living/simple_animal/hostile/cat_butcherer,
|
|
/mob/living/simple_animal/hostile/faithless,
|
|
/mob/living/simple_animal/hostile/nanotrasen,
|
|
/mob/living/simple_animal/hostile/pirate,
|
|
/mob/living/simple_animal/hostile/russian,
|
|
/mob/living/simple_animal/hostile/syndicate,
|
|
/mob/living/simple_animal/hostile/wizard,
|
|
/mob/living/simple_animal/hostile/zombie,
|
|
/mob/living/simple_animal/hostile/retaliate/clown,
|
|
/mob/living/simple_animal/hostile/retaliate/spaceman,
|
|
/mob/living/simple_animal/hostile/retaliate/nanotrasenpeace,
|
|
/mob/living/simple_animal/hostile/retaliate/goat,
|
|
/mob/living/carbon/true_devil,
|
|
)))
|
|
|
|
GLOBAL_LIST_INIT(clawfootmob, typecacheof(list(
|
|
/mob/living/carbon/alien/humanoid,
|
|
/mob/living/simple_animal/hostile/alien,
|
|
/mob/living/simple_animal/pet/cat,
|
|
/mob/living/simple_animal/pet/dog,
|
|
/mob/living/simple_animal/pet/fox,
|
|
/mob/living/simple_animal/chicken,
|
|
/mob/living/simple_animal/hostile/bear,
|
|
/mob/living/simple_animal/hostile/jungle/mega_arachnid
|
|
)))
|
|
|
|
GLOBAL_LIST_INIT(barefootmob, typecacheof(list(
|
|
/mob/living/carbon/monkey,
|
|
/mob/living/simple_animal/pet/penguin,
|
|
/mob/living/simple_animal/hostile/gorilla,
|
|
/mob/living/simple_animal/hostile/jungle/mook
|
|
)))
|
|
|
|
GLOBAL_LIST_INIT(heavyfootmob, typecacheof(list(
|
|
/mob/living/simple_animal/hostile/megafauna,
|
|
/mob/living/simple_animal/hostile/jungle/leaper
|
|
)))
|
|
|
|
//Misc mobs
|
|
#define isobserver(A) (istype(A, /mob/dead/observer))
|
|
|
|
#define isdead(A) (istype(A, /mob/dead))
|
|
|
|
#define isnewplayer(A) (istype(A, /mob/dead/new_player))
|
|
|
|
#define isovermind(A) (istype(A, /mob/camera/blob))
|
|
|
|
#define iscameramob(A) (istype(A, /mob/camera))
|
|
|
|
#define isaicamera(A) (istype(A, /mob/camera/aiEye))
|
|
|
|
#define iseminence(A) (istype(A, /mob/camera/eminence))
|
|
|
|
//Footstep helpers
|
|
#define isshoefoot(A) (is_type_in_typecache(A, GLOB.shoefootmob))
|
|
|
|
#define isclawfoot(A) (is_type_in_typecache(A, GLOB.clawfootmob))
|
|
|
|
#define isbarefoot(A) (is_type_in_typecache(A, GLOB.barefootmob))
|
|
|
|
#define isheavyfoot(A) (is_type_in_typecache(A, GLOB.heavyfootmob))
|
|
|
|
//Objects
|
|
#define isobj(A) istype(A, /obj) //override the byond proc because it returns true on children of /atom/movable that aren't objs
|
|
|
|
#define isitem(A) (istype(A, /obj/item))
|
|
|
|
#define isstructure(A) (istype(A, /obj/structure))
|
|
|
|
#define ismachinery(A) (istype(A, /obj/machinery))
|
|
|
|
#define ismecha(A) (istype(A, /obj/mecha))
|
|
|
|
#define is_cleanable(A) (istype(A, /obj/effect/decal/cleanable) || istype(A, /obj/effect/rune)) //if something is cleanable
|
|
|
|
#define isorgan(A) (istype(A, /obj/item/organ))
|
|
|
|
GLOBAL_LIST_INIT(pointed_types, typecacheof(list(
|
|
/obj/item/pen,
|
|
/obj/item/screwdriver,
|
|
/obj/item/reagent_containers/syringe,
|
|
/obj/item/kitchen/fork)))
|
|
|
|
#define is_pointed(W) (is_type_in_typecache(W, GLOB.pointed_types))
|
|
|
|
#define isbodypart(A) (istype(A, /obj/item/bodypart))
|
|
|
|
//Assemblies
|
|
#define isassembly(O) (istype(O, /obj/item/assembly))
|
|
|
|
#define isigniter(O) (istype(O, /obj/item/assembly/igniter))
|
|
|
|
#define isprox(O) (istype(O, /obj/item/assembly/prox_sensor))
|
|
|
|
#define issignaler(O) (istype(O, /obj/item/assembly/signaler))
|
|
|
|
GLOBAL_LIST_INIT(glass_sheet_types, typecacheof(list(
|
|
/obj/item/stack/sheet/glass,
|
|
/obj/item/stack/sheet/rglass,
|
|
/obj/item/stack/sheet/plasmaglass,
|
|
/obj/item/stack/sheet/plasmarglass,
|
|
/obj/item/stack/sheet/titaniumglass,
|
|
/obj/item/stack/sheet/plastitaniumglass)))
|
|
|
|
#define is_glass_sheet(O) (is_type_in_typecache(O, GLOB.glass_sheet_types))
|
|
|
|
#define iseffect(O) (istype(O, /obj/effect))
|
|
|
|
#define isblobmonster(O) (istype(O, /mob/living/simple_animal/hostile/blob))
|
|
|
|
#define isshuttleturf(T) (length(T.baseturfs) && (/turf/baseturf_skipover/shuttle in T.baseturfs))
|