mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 01:34:01 +00:00
* basic bot path huds and medbot research (#80277) ## About The Pull Request this pr integrates the bot path huds to ai controllers and move loops to allow basic bots to display their paths in the hud. also closes #80280 and closes #80330 ## Why It's Good For The Game basic bots now can display their path on huds ## Changelog 🆑 add: basic bots can now display their paths on huds fix: medbots can research healing again /🆑 * basic bot path huds and medbot research --------- Co-authored-by: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com>
14 lines
758 B
Plaintext
14 lines
758 B
Plaintext
///from [/datum/move_loop/start_loop] ():
|
|
#define COMSIG_MOVELOOP_START "moveloop_start"
|
|
///from [/datum/move_loop/stop_loop] ():
|
|
#define COMSIG_MOVELOOP_STOP "moveloop_stop"
|
|
///from [/datum/move_loop/process] ():
|
|
#define COMSIG_MOVELOOP_PREPROCESS_CHECK "moveloop_preprocess_check"
|
|
#define MOVELOOP_SKIP_STEP (1<<0)
|
|
///from [/datum/move_loop/process] (result, visual_delay): //Result is an enum value. Enums defined in __DEFINES/movement.dm
|
|
#define COMSIG_MOVELOOP_POSTPROCESS "moveloop_postprocess"
|
|
//from [/datum/move_loop/has_target/jps/recalculate_path] ():
|
|
#define COMSIG_MOVELOOP_JPS_REPATH "moveloop_jps_repath"
|
|
///from [/datum/move_loop/has_target/jps/on_finish_pathing]
|
|
#define COMSIG_MOVELOOP_JPS_FINISHED_PATHING "moveloop_jps_finished_pathing"
|