Understanding Sequence of Behaviours: In Search of Speed!
-
@Aidan-Oxley Again, this is a way of thinking about arrays, but it's not actually what they are, nor how they work.
Where do you get this idea from?
What you're describing is the use of a massive string with stored separators that would require some kind of index for the division of each element, or some other kind of separator. Which, again, isn't an array.
That's how CSV works, but they still need a type, too.
-
@Deeeds I got this idea from the fact that I can display it as text, modify the text etc. The formatting uses symbols to separate values. Clearly I think about arrays (at least hyperPad version of arrays?) differently to you.
-
@Aidan-Oxley yes, like I've said before, this can be how an Array is represented to you, and can be thought of, but it's not what it actually is. You're being gifted a slightly abstracted view and experience with them.
-
I'm guessing array values are stored in separate memory addresses in a way that they can quickly be accessed by index, but they can be converted to and from plain text json for use in non-array operations (which I think most languages do). I might be completely wrong.
This would make accessing an array value the same as accessing a box container.
Running a modify array behaviour replacing an existing array should then also be the same as using set input field on a box container, but appending or prepending is probably less efficient.
I don't know how memory allocation would work for attributes, but because they can be accessed on spawned objects I expect they'd be least efficient.
Keep in mind I have no idea what I'm talking about and might be completely wrong, perhaps arrays store a list of memory addresses instead, which means accessing two addresses per reference.
-
@Jack8680 Can you explain what a Value container is, in words different from the docs?
I can't figure out what these are representative of, or... well, anything about them.
I thought I knew, then I tried a few things and couldn't work out what was going on.
Much like my cooking.
-
@Deeeds the value behaviour updates its output when it is run. You can for example get the value of the output of a while touching behaviour once, and then reference it in that state later after the output of the while touching behaviour has changed. It's basically declaring a new variable that takes the value of another variable but not as a pointer.
-
@Jack8680 said in Understanding Sequence of Behaviours: In Search of Speed!:
the value behaviour updates its output when it is run.
Sorry to be pedantic: Do you mean when its branch has completed running? Like a late update or
willSet
in Swift? -
@Jack8680 The rest I don't understand what you're saying.
It's making a new variable? Not overwriting it later?
I'm more confused than before. Sorry!
-
@Deeeds the value behaviour is basically like saying
Var value = input
It's not a pointer, so if you reference the value elsewhere it will have the value of the input when the value behaviour is activated.
It is different to a box container because a box container is a pointer when you drag a behaviour output in, so referencing a box container will reference the value of what is selected in the box container.
You can't use set input field on a box container that has a behaviour output selected as its value, so there's no reason to use them this way as you can just reference the behaviour output directly.
Using set input field on a box container that isn't a reference to another behaviour output acts the same as using a value behaviour, but it can be set from multiple places.
-
@Jack8680 said in Understanding Sequence of Behaviours: In Search of Speed!:
It's not a pointer, so if you reference the value elsewhere it will have the value of the input when the value behaviour is activated.
Reading this I'm doubting I understand how behaviours actually work.
I'm missing something.
Can you give a concrete example of where and when you'd have to use a Value container for its benefits (and ways of being) versus somewhere a Box container could only provide the desired results?
-
@Deeeds I rarely use the value behaviour, but an example:
While Touching: { If(While Touching Y < 0): { Value = Value(While Touching X) } } Stopped Touching: { Set label to Value }
When you stop touching the object it will set a label to the last x position you touched it in where the Y position was less than zero.
And an example of using a box container:
Box container A = 0 Started Touching: { If(While Touching X < 0): { Set input field of Box Container A to 1 } If(While Touching Y < 0): { Set input field of Box Container A to 1 } Set label to Box Container A.
This will set the label to 1 if X or Y is negative. Both of these can also be done using the other behaviour, so I guess there isn't a specific reason to use one over the other. There might be a use case I'm not aware of though.
-
@Jack8680 said in Understanding Sequence of Behaviours: In Search of Speed!:
Both of these can also be done using the other behaviour, so I guess there isn't a specific reason to use one over the other.
This is exactly the cognition problem I'm having.
Although I just accidentally dragged a different source into a box container and it took it, and left the old one there, too.
So maybe Box Containers are abstracted arrays posing as a variable and without the need to append, etc.
-
@Deeeds you can add any number(at least I haven’t found a limit) of outputs to a box container. When any one of them is triggered the box container is set to that output. For example, say you have an add values and a subtract values outputs in the box container. A started touching behavior triggers the add values, which is adding the touchx plus 4. Then you have stopped touching trigger the subtract values, and subtract the box container value minus 3.
What will happen is when you touch with an x of 16, the box container will be set to 20. When you stop touching, the box container will be set to 17.For an example of How I usually use box containers, say you have three ifs. If x=1 and if x=2 and if x=3.
Each if will trigger a “value” behavior, set to say 10, 20, and 30.
You put each value behavior’s output into a box container. Then you can multiply some value Y by the box container. So the value you multiply Y by will be set by the if’s.Hopefully that makes some sense.
-
@iTap-Development said in Understanding Sequence of Behaviours: In Search of Speed!:
For an example of How I usually use box containers, say you have three ifs. If x=1 and if x=2 and if x=3.
Each if will trigger a “value” behavior, set to say 10, 20, and 30.
You put each value behavior’s output into a box container. Then you can multiply some value Y by the box container. So the value you multiply Y by will be set by the if’s.In this example (and thank you for your time and consideration), aren't the Box Containers redundant/unnecessary?
-
@Deeeds how would you set it up?
-
@iTap-Development Not what I'm saying.
In the example I've quoted, why do you need the box containers?
-
@Deeeds well, you have to set the input for the multiply, so I guess you could use an attribute or something,but this is less behaviors.
-
@iTap-Development Perhaps I'm reading you wrongly.
What I see you saying is this:
if x is 1, triggers a value behaviour set to 10, this needs to by multiplied by some value Y, which then needs to be multiplied by some other value... for which there's no demonstrated need for a box container, it could be literal, or a "Value Behaviour"*
The box container part of what you're talking about seems superfluous, at best.
*I think "Box Container" is a pretty bad name, but "Value Behaviour" is a special level of poor lexicon/terminology/naming.
-
@Deeeds that’s not quite what I’m saying.
What I’m saying is that Y is going to be multiplied by either 10, 20, or 30. Based on what x is equal to. -
@iTap-Development Yes, I got that... but where is the need for a Box Container?
Note the question above that both I and @Jack8680 are struggling to answer.
Let me paraphrase:
Where is there a need and use for Value Behaviours where Box Containers can't do it?
Where is the need for Box Containers that explains them by showing that Value Behaviours can't do it?
Caveat.... I'm not looking for a single example... I'm looking for the types of examples that articulate and demonstrate their fundamental differences AND show what it is that they actually are, and how one should think of their capacity and functionality, benefits and cons.
In other words, like many of my posts, I'm trying to use subterfuge to help the founders stop floundering in their complete failure to document, guide and instruct on the matters of their own engine/tool.