mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-23 23:54:45 +00:00
Yeah uhh this'll probably need testmerging even after it's done because yeah it's a bit big. If y'all want me to atomize this into two PRs (pass flags vs projectiles) tell me please. Pass flags would have to go in first though, in that case, as new projectile hit handling will rely on pass_flags_self. Pass flags: Pass flags handling now uses an atom variable named pass_flags_self. If any of these match a pass_flag on a thing trying to pass through, it's allowed through by default. This makes overriding CanAllowThrough unnecessary for the majority of things. I've however not removed overrides for very.. weird cases, like plastic flaps which uses a prob(60) for letting PASSGLASS things through for god knows why. LETPASSTHROW is now on pass_flags_self Projectiles: Not finalized yet, need to do something to make the system I have in mind have less unneeded overhead + snowflake Basically, for piercing/phasing/otherwise projectiles that go through things instead of hitting the first dense object, I have them use pass_flags flags for two new variables, projectile_phasing and projectile_piercing. Anything with pass_flags_self in the former gets phased through entirely. Anything in the latter gets hit, and the projectile then goes through. on_hit will also register a piercing hit vs a normal hit (so things like missiles can only explode on a normal hit or otherwise, instead of exploding multiple times. Not needed as missiles qdel(src) right now but it's nice to have for the future). I still need to decide what to do for hit handling proper, as Bump() is still preferred due to it not being as high-overhead as something like scanning on Moved(). I'm thinking I'll make Moved() only scan for cases where it needs to hit a non-dense object - a prone human the user clicked on, anything special like that. Don't know the exact specifics yet, which is why this is still WIP. Projectiles now use check_pierce() to determine if it goes through something and hits it, doesn't hit it, or doesn't go through something at all (should delete self after hitting). Will likely make an on_pierce proc to be called post-piercing something so you can have !fun! things like projectiles that go down in damage after piercing something. This will likely deprecate the process_hit proc, or at least make it less awful. scan_for_hit() is now used to attempt to hit something and will return whether the projectile got deleted or not. It will delete the projectile if the projectile does hit something and fails to pierce through it. scan_moved_turf() (WIP) will be used for handling moving onto a turf. permutated has been renamed to impacted. Ricocheting projectiles get it reset, allowing projectiles to pierce and potentially hit something again if it goes back around. A new unit test has been added checking for projectiles with movement type of PHASING. This is because PHASING completely causes projectiles to break down as projectiles mainly sense collisions through Bump. The small boost in performance from using PHASING instead of having all pass flags active/overriding check_pierce is in my opinion not worth the extra snowflake in scan_moved_turf() I'd have to do to deal with having to check for hits manually rather than Bump()ing things. Movement types UNSTOPPABLE renamed to PHASING to better describe what it is, going through and crossing everything but not actually bumping. Why It's Good For The Game Better pass flags handling allows for less proc overrides, bitflag checks are far less expensive in general. Fixes penetrating projectiles like sniper penetrators This system also allows for better handling of piercing projectiles (see above) without too much snowflake code, as you'd only need to modify on_pierce() if you needed to do special handling like dampening damage per target pierced, and otherwise you could just use the standardized system and just set pass flags to what's needed. If you really need a projectile that pierces almost everything, override check_pierce(), which is still going to be easier than what was done before (even with snowflake handling of UNSTOPPABLE flag process_hit() was extremely ugly, now we don't rely on movement types at all.)
231 lines
7.8 KiB
Plaintext
231 lines
7.8 KiB
Plaintext
/**
|
|
* The mob, usually meant to be a creature of some type
|
|
*
|
|
* Has a client attached that is a living person (most of the time), although I have to admit
|
|
* sometimes it's hard to tell they're sentient
|
|
*
|
|
* Has a lot of the creature game world logic, such as health etc
|
|
*/
|
|
/mob
|
|
datum_flags = DF_USE_TAG
|
|
density = TRUE
|
|
layer = MOB_LAYER
|
|
animate_movement = SLIDE_STEPS
|
|
flags_1 = HEAR_1
|
|
hud_possible = list(ANTAG_HUD)
|
|
pressure_resistance = 8
|
|
mouse_drag_pointer = MOUSE_ACTIVE_POINTER
|
|
throwforce = 10
|
|
blocks_emissive = EMISSIVE_BLOCK_GENERIC
|
|
pass_flags_self = PASSMOB
|
|
|
|
///when this be added to vis_contents of something it inherit something.plane, important for visualisation of mob in openspace.
|
|
vis_flags = VIS_INHERIT_PLANE
|
|
|
|
var/lighting_alpha = LIGHTING_PLANE_ALPHA_VISIBLE
|
|
var/datum/mind/mind
|
|
var/static/next_mob_id = 0
|
|
|
|
/// List of movement speed modifiers applying to this mob
|
|
var/list/movespeed_modification //Lazy list, see mob_movespeed.dm
|
|
/// List of movement speed modifiers ignored by this mob. List -> List (id) -> List (sources)
|
|
var/list/movespeed_mod_immunities //Lazy list, see mob_movespeed.dm
|
|
/// The calculated mob speed slowdown based on the modifiers list
|
|
var/cached_multiplicative_slowdown
|
|
/// List of action speed modifiers applying to this mob
|
|
var/list/actionspeed_modification //Lazy list, see mob_movespeed.dm
|
|
/// List of action speed modifiers ignored by this mob. List -> List (id) -> List (sources)
|
|
var/list/actionspeed_mod_immunities //Lazy list, see mob_movespeed.dm
|
|
/// The calculated mob action speed slowdown based on the modifiers list
|
|
var/cached_multiplicative_actions_slowdown
|
|
/// List of action hud items the user has
|
|
var/list/datum/action/actions
|
|
/// A special action? No idea why this lives here
|
|
var/list/datum/action/chameleon_item_actions
|
|
///Cursor icon used when holding shift over things
|
|
var/examine_cursor_icon = 'icons/effects/mouse_pointers/examine_pointer.dmi'
|
|
|
|
/// Whether a mob is alive or dead. TODO: Move this to living - Nodrak (2019, still here)
|
|
var/stat = CONSCIOUS
|
|
|
|
/* 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.
|
|
*/
|
|
|
|
/// The zone this mob is currently targeting
|
|
var/zone_selected = BODY_ZONE_CHEST
|
|
|
|
var/computer_id = null
|
|
var/list/logging = list()
|
|
|
|
/// The machine the mob is interacting with (this is very bad old code btw)
|
|
var/obj/machinery/machine = null
|
|
|
|
/// Tick time the mob can next move
|
|
var/next_move = null
|
|
|
|
/**
|
|
* Magic var that stops you moving and interacting with anything
|
|
*
|
|
* Set when you're being turned into something else and also used in a bunch of places
|
|
* it probably shouldn't really be
|
|
*/
|
|
var/notransform = null //Carbon
|
|
|
|
/// Is the mob blind
|
|
var/eye_blind = 0 //Carbon
|
|
/// Does the mob have blurry sight
|
|
var/eye_blurry = 0 //Carbon
|
|
/// What is the mobs real name (name is overridden for disguises etc)
|
|
var/real_name = null
|
|
|
|
/**
|
|
* back up of the real name during admin possession
|
|
*
|
|
* If an admin possesses an object it's real name is set to the admin name and this
|
|
* stores whatever the real name was previously. When possession ends, the real name
|
|
* is reset to this value
|
|
*/
|
|
var/name_archive //For admin things like possession
|
|
|
|
/// Default body temperature
|
|
var/bodytemperature = BODYTEMP_NORMAL //310.15K / 98.6F
|
|
/// Drowsyness level of the mob
|
|
var/drowsyness = 0//Carbon
|
|
/// Dizziness level of the mob
|
|
var/dizziness = 0//Carbon
|
|
/// Jitteryness level of the mob
|
|
var/jitteriness = 0//Carbon
|
|
/// Hunger level of the mob
|
|
var/nutrition = NUTRITION_LEVEL_START_MIN // randomised in Initialize
|
|
/// Satiation level of the mob
|
|
var/satiety = 0//Carbon
|
|
|
|
/// How many ticks this mob has been over reating
|
|
var/overeatduration = 0 // How long this guy is overeating //Carbon
|
|
|
|
/// The current intent of the mob
|
|
var/a_intent = INTENT_HELP//Living
|
|
/// List of possible intents a mob can have
|
|
var/list/possible_a_intents = null//Living
|
|
/// The movement intent of the mob (run/wal)
|
|
var/m_intent = MOVE_INTENT_RUN//Living
|
|
|
|
/// The last known IP of the client who was in this mob
|
|
var/lastKnownIP = null
|
|
|
|
/// movable atom we are buckled to
|
|
var/atom/movable/buckled = null//Living
|
|
|
|
//Hands
|
|
///What hand is the active hand
|
|
var/active_hand_index = 1
|
|
/**
|
|
* list of items held in hands
|
|
*
|
|
* len = number of hands, eg: 2 nulls is 2 empty hands, 1 item and 1 null is 1 full hand
|
|
* and 1 empty hand.
|
|
*
|
|
* NB: contains nulls!
|
|
*
|
|
* `held_items[active_hand_index]` is the actively held item, but please use
|
|
* [get_active_held_item()][/mob/proc/get_active_held_item] instead, because OOP
|
|
*/
|
|
var/list/held_items = list()
|
|
|
|
//HUD things
|
|
|
|
/// Storage component (for mob inventory)
|
|
var/datum/component/storage/active_storage
|
|
/// Active hud
|
|
var/datum/hud/hud_used = null
|
|
/// I have no idea tbh
|
|
var/research_scanner = FALSE
|
|
|
|
/// Is the mob throw intent on
|
|
var/in_throw_mode = FALSE
|
|
|
|
/// What job does this mob have
|
|
var/job = null//Living
|
|
|
|
/// A list of factions that this mob is currently in, for hostile mob targetting, amongst other things
|
|
var/list/faction = list("neutral")
|
|
|
|
/// Can this mob enter shuttles
|
|
var/move_on_shuttle = 1
|
|
|
|
///The last mob/living/carbon to push/drag/grab this mob (exclusively used by slimes friend recognition)
|
|
var/mob/living/carbon/LAssailant = null
|
|
|
|
/**
|
|
* construct spells and mime spells.
|
|
*
|
|
* Spells that do not transfer from one mob to another and can not be lost in mindswap.
|
|
* obviously do not live in the mind
|
|
*/
|
|
var/list/mob_spell_list
|
|
|
|
|
|
/// bitflags defining which status effects can be inflicted (replaces canknockdown, canstun, etc)
|
|
var/status_flags = CANSTUN|CANKNOCKDOWN|CANUNCONSCIOUS|CANPUSH
|
|
|
|
/// Can they interact with station electronics
|
|
var/has_unlimited_silicon_privilege = 0
|
|
|
|
///Used by admins to possess objects. All mobs should have this var
|
|
var/obj/control_object
|
|
|
|
///Calls relay_move() to whatever this is set to when the mob tries to move
|
|
var/atom/movable/remote_control
|
|
|
|
/**
|
|
* The sound made on death
|
|
*
|
|
* leave null for no sound. used for *deathgasp
|
|
*/
|
|
var/deathsound
|
|
|
|
///the current turf being examined in the stat panel
|
|
var/turf/listed_turf = null
|
|
|
|
///The list of people observing this mob.
|
|
var/list/observers = null
|
|
|
|
///List of progress bars this mob is currently seeing for actions
|
|
var/list/progressbars = null //for stacking do_after bars
|
|
|
|
///For storing what do_after's someone has, key = string, value = amount of interactions of that type happening.
|
|
var/list/do_afters
|
|
|
|
///Allows a datum to intercept all click calls this mob is the source of
|
|
var/datum/click_intercept
|
|
|
|
///THe z level this mob is currently registered in
|
|
var/registered_z = null
|
|
|
|
var/memory_throttle_time = 0
|
|
|
|
/// Contains [/atom/movable/screen/alert] only.
|
|
///
|
|
/// On [/mob] so clientless mobs will throw alerts properly.
|
|
var/list/alerts = list()
|
|
var/list/screens = list()
|
|
var/list/client_colours = list()
|
|
var/hud_type = /datum/hud
|
|
|
|
var/datum/h_sandbox/sandbox = null
|
|
|
|
var/datum/focus //What receives our keyboard inputs. src by default
|
|
|
|
/// Used for tracking last uses of emotes for cooldown purposes
|
|
var/list/emotes_used
|
|
|
|
///Whether the mob is updating glide size when movespeed updates or not
|
|
var/updating_glide_size = TRUE
|
|
|
|
///Override for sound_environments. If this is set the user will always hear a specific type of reverb (Instead of the area defined reverb)
|
|
var/sound_environment_override = SOUND_ENVIRONMENT_NONE
|