3e7184c975
Aiming to implement the framework oranges has detailed in https://tgstation13.org/phpBB/viewtopic.php?f=10&t=19102 Moves canmove to a bitflag in a new variable called mobility_flags, that will allow finer grain control of what someone can do codewise, for example, letting them move but not stand up, or stand up but not move. Adds Immobilize()d status effect that freezes movement but does not prevent anything else. Adds Paralyze()d which is oldstun "You can't do anything at all and knock down). Stun() will now prevent any item/UI usage and movement (which is similar to before). Knockdown() will now only knockdown without preventing item usage/movement. People knocked down will be able to crawl at softcrit-speeds Refactors some /mob variables and procs to /mob/living. update_canmove() refactored to update_mobility() and will handle mobility_flags instead of the removed canmove cl rscadd: Crawling is now possible if you are down but not stunned. Obviously, you will be slower. /cl Refactors are done. I'd rather get this merged faster than try to fine tune stuff like slips. The most obvious gameplay effect this pr has will be crawling, and I believe I made tiny tweaks but I can't find it Anything I missed or weird behavior should be reported.
106 lines
3.8 KiB
Plaintext
106 lines
3.8 KiB
Plaintext
/mob
|
|
datum_flags = DF_USE_TAG
|
|
density = TRUE
|
|
layer = MOB_LAYER
|
|
animate_movement = 2
|
|
flags_1 = HEAR_1
|
|
hud_possible = list(ANTAG_HUD)
|
|
pressure_resistance = 8
|
|
mouse_drag_pointer = MOUSE_ACTIVE_POINTER
|
|
throwforce = 10
|
|
|
|
var/lighting_alpha = LIGHTING_PLANE_ALPHA_VISIBLE
|
|
var/datum/mind/mind
|
|
var/static/next_mob_id = 0
|
|
|
|
//MOVEMENT SPEED
|
|
var/list/movespeed_modification //Lazy list, see mob_movespeed.dm
|
|
var/cached_multiplicative_slowdown
|
|
//ACTIONS
|
|
var/list/datum/action/actions = list()
|
|
var/list/datum/action/chameleon_item_actions
|
|
|
|
var/stat = CONSCIOUS //Whether a mob is alive or dead. TODO: Move this to living - Nodrak
|
|
|
|
/*A bunch of this stuff really needs to go under their own defines instead of being globally attached to mob.
|
|
A variable should only be globally attached to turfs/objects/whatever, when it is in fact needed as such.
|
|
The current method unnecessarily clusters up the variable list, especially for humans (although rearranging won't really clean it up a lot but the difference will be noticable for other mobs).
|
|
I'll make some notes on where certain variable defines should probably go.
|
|
Changing this around would probably require a good look-over the pre-existing code.
|
|
*/
|
|
var/zone_selected = null
|
|
|
|
var/computer_id = null
|
|
var/list/logging = list()
|
|
var/obj/machinery/machine = null
|
|
|
|
var/next_move = null
|
|
var/notransform = null //Carbon
|
|
var/eye_blind = 0 //Carbon
|
|
var/eye_blurry = 0 //Carbon
|
|
var/real_name = null
|
|
var/spacewalk = FALSE
|
|
|
|
var/name_archive //For admin things like possession
|
|
|
|
var/bodytemperature = BODYTEMP_NORMAL //310.15K / 98.6F
|
|
var/drowsyness = 0//Carbon
|
|
var/dizziness = 0//Carbon
|
|
var/jitteriness = 0//Carbon
|
|
var/nutrition = NUTRITION_LEVEL_START_MIN // randomised in Initialize
|
|
var/satiety = 0//Carbon
|
|
|
|
var/overeatduration = 0 // How long this guy is overeating //Carbon
|
|
var/a_intent = INTENT_HELP//Living
|
|
var/list/possible_a_intents = null//Living
|
|
var/m_intent = MOVE_INTENT_RUN//Living
|
|
var/lastKnownIP = null
|
|
var/atom/movable/buckled = null//Living
|
|
var/atom/movable/buckling
|
|
|
|
//Hands
|
|
var/active_hand_index = 1
|
|
var/list/held_items = list() //len = number of hands, eg: 2 nulls is 2 empty hands, 1 item and 1 null is 1 full hand and 1 empty hand.
|
|
//held_items[active_hand_index] is the actively held item, but please use get_active_held_item() instead, because OOP
|
|
|
|
//HUD things
|
|
var/datum/component/storage/active_storage
|
|
var/datum/hud/hud_used = null
|
|
var/research_scanner = FALSE
|
|
|
|
var/in_throw_mode = 0
|
|
|
|
var/job = null//Living
|
|
|
|
var/list/faction = list("neutral") //A list of factions that this mob is currently in, for hostile mob targetting, amongst other things
|
|
var/move_on_shuttle = 1 // Can move on the shuttle.
|
|
|
|
//The last mob/living/carbon to push/drag/grab this mob (mostly used by slimes friend recognition)
|
|
var/mob/living/carbon/LAssailant = null
|
|
|
|
var/list/mob_spell_list = list() //construct spells and mime spells. Spells that do not transfer from one mob to another and can not be lost in mindswap.
|
|
|
|
var/status_flags = CANSTUN|CANKNOCKDOWN|CANUNCONSCIOUS|CANPUSH //bitflags defining which status effects can be inflicted (replaces canknockdown, canstun, etc)
|
|
|
|
var/digitalcamo = 0 // Can they be tracked by the AI?
|
|
var/digitalinvis = 0 //Are they ivisible to the AI?
|
|
var/image/digitaldisguise = null //what does the AI see instead of them?
|
|
|
|
var/has_unlimited_silicon_privilege = 0 // Can they interact with station electronics
|
|
|
|
var/obj/control_object //Used by admins to possess objects. All mobs should have this var
|
|
var/atom/movable/remote_control //Calls relaymove() to whatever it is
|
|
|
|
|
|
var/turf/listed_turf = null //the current turf being examined in the stat panel
|
|
|
|
var/list/observers = null //The list of people observing this mob.
|
|
|
|
var/list/progressbars = null //for stacking do_after bars
|
|
|
|
var/list/mousemove_intercept_objects
|
|
|
|
var/datum/click_intercept
|
|
|
|
var/registered_z
|