Is this indexing system efficient?

bOb666777

Stand against the ugly world domination face!
Reaction score
117
It seems like it could lag if I put a few spells using this system:
JASS:
globals
    Movespell array m
    integer movespellcount = 0
endglobals

struct Movespell
    unit target
    unit caster
    integer level
endstruct

function Trig_MoveSpell_Conditions takes nothing returns boolean
    return GetSpellAbilityId() == SpellId()
endfunction

function callback takes nothing returns nothing
    local Movespell data
    local integer structloop = 0
    loop
        exitwhen structloop == 8191
        if (m[structloop] != 0) then
            set data = m[structloop]
            //Actions here
        endif
        set structloop = structloop + 1
    endloop
endfunction
    
    

function Trig_MoveSpell_Actions takes nothing returns nothing
    local Movespell data = Movespell.create()
    local unit u = GetTriggerUnit()
    local unit target = GetSpellTargetUnit()
    set data.level = GetUnitAbilityLevel(u, SpellId())
    set data.caster = u 
    set data.target = target
    if (movespellcount < 8191) then
        set m[movespellcount] = data
        set movespellcount = movespellcount + 1
    else
        set movespellcount = 0
        loop 
            exitwhen m[movespellcount] != 0 or movespellcount == 8191
            set movespellcount = movespellcount + 1
        endloop
        if (movespellcount == 8191) then
            call BJDebugMsg("Too many instances running, try again later.")
        else 
            set m[movespellcount] = data
        endif
    endif
    set u = null
    set target = null
endfunction

//===========================================================================
function InitTrig_MoveSpell takes nothing returns nothing
    local trigger t = CreateTrigger(  )
    local timer time = CreateTimer()
    call TimerStart(time, 0.02, true, function callback)
    call TriggerRegisterAnyUnitEventBJ( t, EVENT_PLAYER_UNIT_SPELL_EFFECT )
    call TriggerAddCondition( t, Condition( function Trig_MoveSpell_Conditions ) )
    call TriggerAddAction( t, function Trig_MoveSpell_Actions )
endfunction


In case you don't get it, what it does is whenever a unit casts the spell, it sets a global integer + 1 and stores the struct in an array, then the timer loops between all 8191 indexes of that array, running the ones that have a value. Can that be laggy?
 

Sooda

Diversity enchants
Reaction score
318
Key is recycling. Examine Vexorian tutorial on wc3c.net -- Moving from handle variables to structs.

To make it short initialization trigger increases index, loop handle all instances (action part) and when instance ends last instance data will replace that instance data and once more is same loop ran. Example is best:

Init Trig

set index = index (plus) 1 // on keyboard my plus key does not function
set data[index] = TriggerUnit()
set duration[index] = 10.
// Maybe timer check here, pause and restart if needed wait is less than current timer wait.
if Timer time remaining greater than duration[index] then
pause Timer
start Timer as one shot timer which will expire in duration[index] seconds
endif

Actions Trig
local instanceIndex = 0 // could be global variable
loop
set instanceIndex = instanceIndex (pluss) 1
set duration[instanceIndex] = duration[instanceIndex] - Timer Elapsed Time
if duration[instanceIndex] <= 0. then
set duration[instanceIndex] = duration[index] // index was global variable
set data[instanceIndex] = data[index]
// check once more because last instance was moved to end instance place
// Global index needs to be reduced by 1 (by last moved instance)
set instanceIndex = instanceIndex (pluss) 1
set index = index - 1
endloop InstanceIndex == index // was it endloop? Ends loop when all instances have been scanned.
else
// instance has still remaining time, do do something like periodic damage here
end
endloop


Free hand example but idea remains same, use debugging messages to spot errors in your future code which use Static Timer, your idea which is used much is called Static Timer.
 

bOb666777

Stand against the ugly world domination face!
Reaction score
117
So,
>Free hand example but idea remains same, use debugging messages to spot errors in your future code which use Static Timer, your idea which is used much is called Static Timer.
That means the method I currently use is fine?

> use 0.035 in your timer could reducing some performance issue.
I'll try...
 

bOb666777

Stand against the ugly world domination face!
Reaction score
117
Okay sorry for not answering for about a week, didn't actually notice you replied. So, after reading that page, it seems the only difference is pausing the timer when it's unused?
 

Trollvottel

never aging title
Reaction score
262
You only loop n times (where n is the number of instances)
if some instance ends you simply put the struct at position n to your current position and reduce n by one. much better than looping 8000+ times

pseudo:

JASS:
function ....
 local integer i = N
 loop
    exitwhen i == 0
    
    if Exitcondition(Struct<i>) then
        set Struct<i> = Struct[N]
        set N = N - 1
        if N == 0 then
            call PauseTimer(GetExpiredTimer())
        endif
   endif
   set i = i - 1

endfunction

</i></i>
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top