Skip to content

Commit

Permalink
Merge pull request #177 from limbonaut/hide-update-mode
Browse files Browse the repository at this point in the history
Hide `update_mode` property for non-root HSMs
  • Loading branch information
limbonaut authored Jul 31, 2024
2 parents 64df43c + 9e79183 commit 0918521
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions demo/demo/assets/fonts/junction_bold.otf.import
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/junction_bold.otf-4db2200a8b1a6423bafe2a4e7c7
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
Expand Down
1 change: 1 addition & 0 deletions demo/demo/assets/fonts/knewave_regular.ttf.import
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/knewave_regular.ttf-955953b059f713782c7b07e66
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
Expand Down
8 changes: 4 additions & 4 deletions demo/demo/scenes/showcase.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -234,18 +234,18 @@ unique_name_in_owner = true
custom_minimum_size = Vector2(0, 140)
layout_mode = 2
size_flags_vertical = 3
theme_override_font_sizes/normal_font_size = 20
theme_override_font_sizes/bold_font_size = 20
theme_override_font_sizes/italics_font_size = 20
theme_override_font_sizes/bold_italics_font_size = 20
theme_override_font_sizes/italics_font_size = 20
theme_override_font_sizes/mono_font_size = 20
theme_override_font_sizes/normal_font_size = 20
theme_override_font_sizes/bold_font_size = 20
bbcode_enabled = true
text = "[b]Behavior Trees[/b] are composed of tasks that represent specific actions or decision-making rules. Tasks can be broadly categorized into two main types: control tasks and leaf tasks. Control tasks determine the execution flow within the tree. They include Sequence, Selector, and Invert. Leaf tasks represent specific actions to perform, like moving or attacking, or conditions that need to be checked. The BTTask class provides the foundation for various building blocks of the Behavior Trees. BT tasks can share data with the help of the Blackboard."
fit_content = true

[node name="CodePopup" type="PopupPanel" parent="UI Layer/Control"]
unique_name_in_owner = true
position = Vector2i(135, 60)
position = Vector2i(0, 60)
size = Vector2i(1024, 708)
visible = true

Expand Down
7 changes: 7 additions & 0 deletions hsm/limbo_hsm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,13 @@ void LimboHSM::_initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard) {
}
}

void LimboHSM::_validate_property(PropertyInfo &p_property) const {
if (p_property.name == LW_NAME(update_mode) && !is_root()) {
// Hide update_mode for non-root HSMs.
p_property.usage = PROPERTY_USAGE_NONE;
}
}

void LimboHSM::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_POST_ENTER_TREE: {
Expand Down
1 change: 1 addition & 0 deletions hsm/limbo_hsm.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class LimboHSM : public LimboState {
static void _bind_methods();

void _notification(int p_what);
void _validate_property(PropertyInfo &p_property) const;

virtual void _initialize(Node *p_agent, const Ref<Blackboard> &p_blackboard) override;
virtual bool _dispatch(const StringName &p_event, const Variant &p_cargo = Variant()) override;
Expand Down
1 change: 1 addition & 0 deletions util/limbo_string_names.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ LimboStringNames::LimboStringNames() {
Tools = SN("Tools");
Tree = SN("Tree");
TripleBar = SN("TripleBar");
update_mode = SN("update_mode");
update_task = SN("update_task");
update_tree = SN("update_tree");
updated = SN("updated");
Expand Down
1 change: 1 addition & 0 deletions util/limbo_string_names.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ class LimboStringNames {
StringName Tools;
StringName Tree;
StringName TripleBar;
StringName update_mode;
StringName update_task;
StringName update_tree;
StringName updated;
Expand Down

0 comments on commit 0918521

Please sign in to comment.