System Event Broadcaster

Reaction score
333
I previously had a bulky and non-dynamic system which could perform this sort of stuff, but this one is better. You can attach functions to an "event" string, and then you can broadcast the event in order to call all functions associated with it.

Pros:

1. Dynamic - can attach or remove actions associated with any string at any time.
2. Scalable - as long as you stay below the limit of around 8190 associations, there is no fixed limit on how many associations a single event can have. 800 events with 10 actions each is just as possible as 10 events with 800 actions each.
3. Multiple usages - can be used to attach actions to a unit type, a handle. Anything that can be expressed in string form somehow can have actions attached.

Cons:

1. Slow.
2. Can't pass arguments to associated functions. You'll have to attach data to event-responses or use globals.

Copy into map header or put in empty trigger to use:

JASS:
library Event initializer DeclareCache
    globals
        private gamecache gc
    endglobals

    private struct link
        string str
        link parent = 0
        link child = 0
        
        static method create takes string str returns link
            local link li = link.allocate()
            set li.str = str
            return li
        endmethod
    endstruct

    private function DeclareCache takes nothing returns nothing
        set gc = InitGameCache(SCOPE_PRIVATE+"vars.w3v")
    endfunction

    private function FindLastLink takes link li returns link
        if (li.child == 0) then
            return li
        endif

        return FindLastLink.evaluate(li.child)
    endfunction

    private function DeleteLink takes link li returns nothing
        set li.parent.child = li.child
        set li.child.parent = li.parent
        call li.destroy()
    endfunction

    private function GetLink takes link li, string str returns link
        if (li.str == str) then
            return li
        elseif (li.child == 0) then
            return 0
        endif

        return GetLink.evaluate(li.child, str)
    endfunction

    public function AddAction takes string ev, string ac returns nothing
        local link li = GetStoredInteger(gc, SCOPE_PRIVATE+"event", ev)

        if (li == 0) then
            set li = link.create(ac)
            call StoreInteger(gc, SCOPE_PRIVATE+"event", ev, li)
        else
            set li = FindLastLink(li)
            set li.child = link.create(ac)
            set li.child.parent = li
        endif
    endfunction

    public function RemoveAction takes string ev, string ac returns nothing
        local link li = GetStoredInteger(gc, SCOPE_PRIVATE+"event", ev)

        if (li != 0 and li.str != ac) then
            call DeleteLink(GetLink(li, ac))
        elseif (li != 0) then
            if (li.child != 0) then
                 call StoreInteger(gc, SCOPE_PRIVATE+"event", ev, li.child)
            else
                 call FlushStoredInteger(gc, SCOPE_PRIVATE+"event", ev)
            endif
            call DeleteLink(GetLink(li, ac))
        endif
    endfunction

    public function Broadcast takes string ev returns nothing
        local link li = GetStoredInteger(gc, SCOPE_PRIVATE+"event", ev)

        if (li != 0) then
            loop
                call ExecuteFunc(li.str)
                exitwhen li.child == 0
                set li = li.child
            endloop
        endif
    endfunction
endlibrary


Usage details:

Use Event_AddAction(string event, string action) to associate an event with an action. Event_RemoveAction removes an action from an event. Call Event_Broadcast(string event) to run the associated actions.

Update: I have added a test map.
 

Attachments

  • EventBroadcaster.w3x
    22 KB · Views: 262

Doomhammer

Bob Kotick - Gamers' corporate spoilsport No. 1
Reaction score
67
sounds pretty similiar to what vexorian did in his caster system event casting module
OnAbilityEffect('AbilityId',"FuncName")
OnAbilityPrecast('AbilityId',"FuncName")
etc.

Yours sounds interesting nonetheless; could you give a more elaborate example and illustrate the possibilities of your system?
 
Reaction score
333
sounds pretty similiar to what vexorian did in his caster system event casting module
OnAbilityEffect('AbilityId',"FuncName")
OnAbilityPrecast('AbilityId',"FuncName")
etc.

Yours sounds interesting nonetheless; could you give a more elaborate example and illustrate the possibilities of your system?

Well, I will use it for a damage detection system, after I optimize it.

call Event_Broadcast("damaged") in the actions for your generic damage detection system. You can then easily add actions for things like calculating crit chance, etc. A trigger that calculates a crit chance might call Event_Broadcast("critical"), which would make it easy to create an item which, say, adds a special effect to critical strikes.

You could also have a trigger which calls Event_Broadcast(I2S(GetUnitTypeId(GetTriggerUnit()))) when a unit enters a region, and add an action to the footman type which causes the triggering unit to explode. Footmen entering the region would explode.

All this stuff can be accomplished through other means, but its easier to use broadcasting events.
 

Doomhammer

Bob Kotick - Gamers' corporate spoilsport No. 1
Reaction score
67
sounds good.

how about adding a map with some usage examples?

why do you say it's slow? The code doesn't look that bulky. And there are enough alternatives for gamecache around.
 
Reaction score
333
sounds good.

how about adding a map with some usage examples?

why do you say it's slow? The code doesn't look that bulky. And there are enough alternatives for gamecache around.

Its not too slow if you only use it occasionally, but it might not be fast enough for intensive use.

Anyway, I have attached a test map which may give ideas as to possible usages.

EDIT: Attachment added for no particular reason.
 

Doomhammer

Bob Kotick - Gamers' corporate spoilsport No. 1
Reaction score
67
I've looked at it, and I find it quite useful:
E.g. for a map we*re about to have a little physics effect for shard damage done by siege tanks so that units in a small area around the impact field are thrown around. Your event system can be of help there.

+rep
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top