[L2Ork-dev] [t a] speedup

Jonathan Wilkes jon.w.wilkes at gmail.com
Thu Apr 5 14:36:06 EDT 2018


Hi list,

I was looking at various ways to speed up trigger,
but none of them compare to this:

1. make a new class called "trigger_fast" with a constructor
of 0 (i.e., you can't create it by typing trigger_fast in an object box.

2. Inside trigger_new, check to see if all the arguments are
"anything" (or "a").

3. If all args are anythings, create a trigger_fast object instead of
a trigger object, and return its reference.

4. In the connection logic in g_editor.c, check if a new connection is
coming/going to a trigger_fast_class object.

5. If so, make the linked list graph bypass [t a] altogether and
connect into the correct objects above and below the trigger_fast
object as necessary to get the ordering specified by trigger's
one-to-many right-to-left semantics.

6. Draw the connections in the diagram as the user made them.

7. Have a debug mode or toggle to show the connections as they are in
the linked list vs as the user made them.

This is probably a pain to implement, but it would have the following benefits:

* encourage users to use [t a] and ignore the complicated trigger args
which have inconsistent behavior and most of the time just cause
confusion
* get a big performance increase on _all_ platforms _regardless_ of
the c compiler used as users employ [t a] more often
* be completely backwards compatible with whatever the current
behavior of trigger is for the other args and arg combinations.

That would cover all use cases except [t b] and mixtures of [t b a].
But I think it still covers a lot of cases.

-Jonathan


More information about the L2Ork-dev mailing list