choiced
A preference that is a choice of one option among a fixed set. Used for preferences such as clothing.
Vars | |
cyclable | Defines whether get_button() should include cycle arrows |
---|---|
should_generate_icons | If this is TRUE, icons will be generated.
This is necessary for if your init_possible_values() override
returns an assoc list of names to atoms/icons. |
Procs | |
get_choices | Returns a list of every possible value.
The first time this is called, will run init_values() .
Return value can be in the form of: |
get_choices_serialized | Returns a list of every possible value, serialized. Return value can be in the form of: |
init_possible_values | Returns a list of every possible value.
This must be overriden by /datum/preference/choiced subtypes.
Return value can be in the form of: |
Var Details
cyclable
Defines whether get_button() should include cycle arrows
should_generate_icons
If this is TRUE, icons will be generated.
This is necessary for if your init_possible_values()
override
returns an assoc list of names to atoms/icons.
Proc Details
get_choices
Returns a list of every possible value.
The first time this is called, will run init_values()
.
Return value can be in the form of:
- A flat list of raw values, such as list(MALE, FEMALE, PLURAL).
- An assoc list of raw values to atoms/icons.
get_choices_serialized
Returns a list of every possible value, serialized. Return value can be in the form of:
- A flat list of serialized values, such as list(MALE, FEMALE, PLURAL).
- An assoc list of serialized values to atoms/icons.
init_possible_values
Returns a list of every possible value.
This must be overriden by /datum/preference/choiced
subtypes.
Return value can be in the form of:
- A flat list of raw values, such as list(MALE, FEMALE, PLURAL).
- An assoc list of raw values to atoms/icons, in which case icons will be generated.