limboai/bt/tasks/utility/bt_console_print.h

47 lines
1.2 KiB
C
Raw Normal View History

/**
* bt_console_print.h
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
2022-09-06 11:08:52 +00:00
#ifndef BT_CONSOLE_PRINT_H
#define BT_CONSOLE_PRINT_H
2023-08-15 15:49:13 +00:00
#include "../bt_action.h"
2023-07-20 16:35:36 +00:00
2022-09-06 11:08:52 +00:00
class BTConsolePrint : public BTAction {
GDCLASS(BTConsolePrint, BTAction);
2023-08-28 11:22:23 +00:00
TASK_CATEGORY(Utility);
2022-09-06 11:08:52 +00:00
private:
String text;
2022-12-17 10:26:48 +00:00
PackedStringArray bb_format_parameters;
2022-09-06 11:08:52 +00:00
protected:
static void _bind_methods();
virtual String _generate_name() override;
virtual Status _tick(double p_delta) override;
2022-09-06 11:08:52 +00:00
public:
void set_text(String p_value) {
text = p_value;
emit_changed();
}
String get_text() const { return text; }
2022-12-17 10:26:48 +00:00
void set_bb_format_parameters(const PackedStringArray &p_value) {
bb_format_parameters = p_value;
2022-09-06 11:08:52 +00:00
emit_changed();
}
2022-12-17 10:26:48 +00:00
PackedStringArray get_bb_format_parameters() const { return bb_format_parameters; }
2022-09-06 11:08:52 +00:00
virtual PackedStringArray get_configuration_warnings() override;
2022-09-06 11:08:52 +00:00
};
#endif // BT_CONSOLE_PRINT_H