-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
150 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* bb_float32_array.h | ||
* ============================================================================= | ||
* Copyright 2021-2024 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. | ||
* ============================================================================= | ||
*/ | ||
|
||
#ifndef BB_FLOAT32_ARRAY_H | ||
#define BB_FLOAT32_ARRAY_H | ||
|
||
#include "bb_param.h" | ||
|
||
class BBFloat32Array : public BBParam { | ||
GDCLASS(BBFloat32Array, BBParam); | ||
|
||
protected: | ||
virtual Variant::Type get_type() const override { return Variant::PACKED_FLOAT32_ARRAY; } | ||
}; | ||
|
||
#endif // BB_FLOAT32_ARRAY_H |
14 changes: 7 additions & 7 deletions
14
blackboard/bb_param/bb_float_array.h → blackboard/bb_param/bb_float64_array.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/** | ||
* bb_float_array.h | ||
* bb_float64_array.h | ||
* ============================================================================= | ||
* Copyright 2021-2023 Serhii Snitsaruk | ||
* Copyright 2021-2024 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. | ||
* ============================================================================= | ||
*/ | ||
|
||
#ifndef BB_FLOAT_ARRAY_H | ||
#define BB_FLOAT_ARRAY_H | ||
#ifndef BB_FLOAT64_ARRAY_H | ||
#define BB_FLOAT64_ARRAY_H | ||
|
||
#include "bb_param.h" | ||
|
||
class BBFloatArray : public BBParam { | ||
GDCLASS(BBFloatArray, BBParam); | ||
class BBFloat64Array : public BBParam { | ||
GDCLASS(BBFloat64Array, BBParam); | ||
|
||
protected: | ||
virtual Variant::Type get_type() const override { return Variant::PACKED_FLOAT64_ARRAY; } | ||
}; | ||
|
||
#endif // BB_FLOAT_ARRAY_H | ||
#endif // BB_FLOAT64_ARRAY_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* bb_int32_array.h | ||
* ============================================================================= | ||
* Copyright 2021-2024 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. | ||
* ============================================================================= | ||
*/ | ||
|
||
#ifndef BB_INT32_ARRAY_H | ||
#define BB_INT32_ARRAY_H | ||
|
||
#include "bb_param.h" | ||
|
||
class BBInt32Array : public BBParam { | ||
GDCLASS(BBInt32Array, BBParam); | ||
|
||
protected: | ||
virtual Variant::Type get_type() const override { return Variant::PACKED_INT32_ARRAY; } | ||
}; | ||
|
||
#endif // BB_INT32_ARRAY_H |
14 changes: 7 additions & 7 deletions
14
blackboard/bb_param/bb_int_array.h → blackboard/bb_param/bb_int64_array.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/** | ||
* bb_int_array.h | ||
* bb_int64_array.h | ||
* ============================================================================= | ||
* Copyright 2021-2023 Serhii Snitsaruk | ||
* Copyright 2021-2024 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. | ||
* ============================================================================= | ||
*/ | ||
|
||
#ifndef BB_INT_ARRAY_H | ||
#define BB_INT_ARRAY_H | ||
#ifndef BB_INT64_ARRAY_H | ||
#define BB_INT64_ARRAY_H | ||
|
||
#include "bb_param.h" | ||
|
||
class BBIntArray : public BBParam { | ||
GDCLASS(BBIntArray, BBParam); | ||
class BBInt64Array : public BBParam { | ||
GDCLASS(BBInt64Array, BBParam); | ||
|
||
protected: | ||
virtual Variant::Type get_type() const override { return Variant::PACKED_INT64_ARRAY; } | ||
}; | ||
|
||
#endif // BB_INT_ARRAY_H | ||
#endif // BB_INT64_ARRAY_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* bb_projection.h | ||
* ============================================================================= | ||
* Copyright 2021-2024 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. | ||
* ============================================================================= | ||
*/ | ||
|
||
#ifndef BB_PROJECTION_H | ||
#define BB_PROJECTION_H | ||
|
||
#include "bb_param.h" | ||
|
||
class BBProjection : public BBParam { | ||
GDCLASS(BBProjection, BBParam); | ||
|
||
protected: | ||
virtual Variant::Type get_type() const override { return Variant::PROJECTION; } | ||
}; | ||
|
||
#endif // BB_PROJECTION_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="BBFloat32Array" inherits="BBParam" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd"> | ||
<brief_description> | ||
PackedFloat32Array-type parameter for [BehaviorTree] tasks. See [BBParam]. | ||
</brief_description> | ||
<description> | ||
</description> | ||
<tutorials> | ||
</tutorials> | ||
</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="BBFloat64Array" inherits="BBParam" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd"> | ||
<brief_description> | ||
PackedFloat64Array-type parameter for [BehaviorTree] tasks. See [BBParam]. | ||
</brief_description> | ||
<description> | ||
</description> | ||
<tutorials> | ||
</tutorials> | ||
</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="BBInt32Array" inherits="BBParam" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd"> | ||
<brief_description> | ||
PackedInt32Array-type parameter for [BehaviorTree] tasks. See [BBParam]. | ||
</brief_description> | ||
<description> | ||
</description> | ||
<tutorials> | ||
</tutorials> | ||
</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="BBInt64Array" inherits="BBParam" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd"> | ||
<brief_description> | ||
PackedInt64Array-type parameter for [BehaviorTree] tasks. See [BBParam]. | ||
</brief_description> | ||
<description> | ||
</description> | ||
<tutorials> | ||
</tutorials> | ||
</class> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters