/tg/ Station 13 - Modules - TypesVar Details - Proc Details

big_manipulator

The Big Manipulator's core. Main part of the mechanism that carries out the entire process.

Vars

allowed_priority_settingsWhat priority settings are available to use at the moment. We also use this list to sort priorities from ascending to descending.
allowed_types_to_pick_upList where we can set selected type. Taking items by Initialize.
containment_objThe object inside the manipulator.
drop_hereThe direction the manipulator arm will drop items to.
drop_turfThe turf where the manipulator arm will drop items to.
filter_objThe object used as a filter.
id_lockedIs manipulator locked by identity id.
interaction_delayThe time it takes for the manipulator to complete the action cycle.
interaction_modeHow should the manipulator interact with the object?
locked_by_this_idweakref to id that locked this manipualtor.
manipulator_armThe manipulator's arm.
manipulator_throw_rangeThe distance the thrown object should travel when thrown.
minimal_delayMin time manipulator can have in delay. Changing on upgrade.
monkey_workerThe poor monkey that needs to use mode works.
onIs the manipulator turned on?
override_priorityOverrides the priority selection, only accessing the top priority list element.
power_access_wire_cutIs the power access wire cut? Disables the power button if TRUE.
power_use_lvlUsing high tier manipulators speeds up big manipulator and requires more energy.
priority_settings_for_dropPriority settings depending on the manipulator drop mode that are available to this manipulator. Filled during Initialize.
priority_settings_for_usePriority settings depending on the manipulator use mode that are available to this manipulator. Filled during Initialize.
selected_typeThe type the manipulator will interact with only.
statusThe status of the manipulator - IDLE or BUSY.
take_hereThe direction the manipulator arm will take items from.
take_turfThe turf where the manipulator arm will take items from.
worker_interactionHow should the worker interact with the object?

Procs

change_delayChanges manipulator working speed time.
change_modeProc called when we changing item interaction mode.
check_end_of_useCheck what we gonna do next with our item. Drop it or use again.
check_next_move2.5 take and drop proc from [take and drop procs loop]: Choose what we will do with our item by checking the interaction_mode.
check_similaritiesUsing on change_priority: looks for a setting with the same number that we set earlier and reduce it.
create_manipulator_armCreat manipulator hand effect on manipulator core.
cycle_valueCycles the given value in the given list. Retuns the next value in the list, or the first one if the list isn't long enough.
do_rotate_animationRotates manipulator hand 90 degrees.
drop_held_objectDrop item that manipulator is manipulating.
drop_thing3.1 take and drop proc from [take and drop procs loop]: Drop our item. Checks the priority to drop item not only ground but also in the storage.
end_workFourth and last take and drop proc from [take and drop procs loop]: Finishes work and begins to look for a new item for [take and drop procs loop].
finish_manipulationEnd of thirds take and drop proc from [take and drop procs loop]: Starts manipulator hand backward animation.
finish_rotate_animationRotates manipulator hand from 90 degrees to 180 or 0 if backward.
is_ready_to_workPre take and drop proc from [take and drop procs loop]: Can we begin the take-and-drop loop?
manipulator_lvlCheck servo tier and change manipulator speed, power_use and colour.
on_hand_qdelDeliting hand will destroy our manipulator core.
press_onProc call when we press on/off button
rotate_big_handChanging take and drop turf dirs and also changing manipulator hand sprite dir.
search_type_by_priority_in_drop_turfProc that return item by type in priority list. Selects item and increasing priority number if don't found req type.
set_up_priority_settingsInit priority settings list for all modes.
start_workSecond take and drop proc from [take and drop procs loop]: Taking our item and start manipulator hand rotate animation.
take_and_drop_turfs_checkChanging take and drop turf tiles when we anchore manipulator or if manipulator not in turf.
throw_thing3.3 take and drop proc from [take and drop procs loop]: Throw item away!!!
try_press_onProc that check if button not cutted when we press on button.
try_take_thingFirst take and drop proc from [take and drop procs loop]: Check if we can take item from take_turf to work with him. This proc also calling from ATOM_ENTERED signal.
update_priority_listUpdate priority list in ui. Creating new list and sort it by priority number.
use_thing3.2 take and drop proc from [take and drop procs loop]: Use our item on random atom in drop turf contents then Starts manipulator hand backward animation by defualt, but You can also set the setting in ui so that it does not return to its privious position and continues to use object in its hand. Checks the priority so that you can configure which object it will select: mob/obj/turf. Also can use filter to interact only with obj in filter.

Var Details

allowed_priority_settings

What priority settings are available to use at the moment. We also use this list to sort priorities from ascending to descending.

allowed_types_to_pick_up

List where we can set selected type. Taking items by Initialize.

containment_obj

The object inside the manipulator.

drop_here

The direction the manipulator arm will drop items to.

drop_turf

The turf where the manipulator arm will drop items to.

filter_obj

The object used as a filter.

id_locked

Is manipulator locked by identity id.

interaction_delay

The time it takes for the manipulator to complete the action cycle.

interaction_mode

How should the manipulator interact with the object?

locked_by_this_id

weakref to id that locked this manipualtor.

manipulator_arm

The manipulator's arm.

manipulator_throw_range

The distance the thrown object should travel when thrown.

minimal_delay

Min time manipulator can have in delay. Changing on upgrade.

monkey_worker

The poor monkey that needs to use mode works.

on

Is the manipulator turned on?

override_priority

Overrides the priority selection, only accessing the top priority list element.

power_access_wire_cut

Is the power access wire cut? Disables the power button if TRUE.

power_use_lvl

Using high tier manipulators speeds up big manipulator and requires more energy.

priority_settings_for_drop

Priority settings depending on the manipulator drop mode that are available to this manipulator. Filled during Initialize.

priority_settings_for_use

Priority settings depending on the manipulator use mode that are available to this manipulator. Filled during Initialize.

selected_type

The type the manipulator will interact with only.

status

The status of the manipulator - IDLE or BUSY.

take_here

The direction the manipulator arm will take items from.

take_turf

The turf where the manipulator arm will take items from.

worker_interaction

How should the worker interact with the object?

Proc Details

change_delay

Changes manipulator working speed time.

change_mode

Proc called when we changing item interaction mode.

check_end_of_use

Check what we gonna do next with our item. Drop it or use again.

check_next_move

2.5 take and drop proc from [take and drop procs loop]: Choose what we will do with our item by checking the interaction_mode.

check_similarities

Using on change_priority: looks for a setting with the same number that we set earlier and reduce it.

create_manipulator_arm

Creat manipulator hand effect on manipulator core.

cycle_value

Cycles the given value in the given list. Retuns the next value in the list, or the first one if the list isn't long enough.

do_rotate_animation

Rotates manipulator hand 90 degrees.

drop_held_object

Drop item that manipulator is manipulating.

drop_thing

3.1 take and drop proc from [take and drop procs loop]: Drop our item. Checks the priority to drop item not only ground but also in the storage.

end_work

Fourth and last take and drop proc from [take and drop procs loop]: Finishes work and begins to look for a new item for [take and drop procs loop].

finish_manipulation

End of thirds take and drop proc from [take and drop procs loop]: Starts manipulator hand backward animation.

finish_rotate_animation

Rotates manipulator hand from 90 degrees to 180 or 0 if backward.

is_ready_to_work

Pre take and drop proc from [take and drop procs loop]: Can we begin the take-and-drop loop?

manipulator_lvl

Check servo tier and change manipulator speed, power_use and colour.

on_hand_qdel

Deliting hand will destroy our manipulator core.

press_on

Proc call when we press on/off button

rotate_big_hand

Changing take and drop turf dirs and also changing manipulator hand sprite dir.

search_type_by_priority_in_drop_turf

Proc that return item by type in priority list. Selects item and increasing priority number if don't found req type.

set_up_priority_settings

Init priority settings list for all modes.

start_work

Second take and drop proc from [take and drop procs loop]: Taking our item and start manipulator hand rotate animation.

take_and_drop_turfs_check

Changing take and drop turf tiles when we anchore manipulator or if manipulator not in turf.

throw_thing

3.3 take and drop proc from [take and drop procs loop]: Throw item away!!!

try_press_on

Proc that check if button not cutted when we press on button.

try_take_thing

First take and drop proc from [take and drop procs loop]: Check if we can take item from take_turf to work with him. This proc also calling from ATOM_ENTERED signal.

update_priority_list

Update priority list in ui. Creating new list and sort it by priority number.

use_thing

3.2 take and drop proc from [take and drop procs loop]: Use our item on random atom in drop turf contents then Starts manipulator hand backward animation by defualt, but You can also set the setting in ui so that it does not return to its privious position and continues to use object in its hand. Checks the priority so that you can configure which object it will select: mob/obj/turf. Also can use filter to interact only with obj in filter.