Yet another question on leaks..

Exide

I am amazingly focused right now!
Reaction score
448
Hello.
I can never remember what leaks (I'm quite sure nearly EVERYTHING does), and what to do about it.

1. Does units leak?
I.E: I use a local unit variable to be the target of my spell. Do I need to clear this variable in the end somehow?
I was thinking: 'set unit_variable = null', correct?

2. Same thing with special effects?
'call DestroyEffect( effect_variable)'
'set effect_variable = null'
-Like that?

3. If yes on 1, What about unit groups?
'call DestroyGroup( group_variable )'
'set group_variable = null'

Thank you in advance.
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
>>I was thinking: 'set unit_variable = null', correct?
Yes

>>-Like that?
Yes

>>If yes on 1, What about unit groups?
Same as 1 and 2
 

Exide

I am amazingly focused right now!
Reaction score
448
I was right on all three questions? Cool!
Thanks for making it clear. :p +rep.
 

Ghan

Administrator - Servers are fun
Staff member
Reaction score
889
For units, only local units leak. Globals do not.
All Special Effects leak.
All Unit Groups leak.
 

Rheias

New Helper (I got over 2000 posts)
Reaction score
232
Going into more detail if you don't mind...

Units don't leak. Actually most handles don't leak, however, when you store them into a local variable, there is a problem. If you forget to set a local handle variable to null it would leak, the game will be forced to remember it, but you could not refer to it as it is a local, which can be refered to only in the function that it was created in.

Think of a regular leak, when you store in some variable a location, it leaks, you must destroy it after use, this how local variables work, they store information, you need to remove that information from them, and this is done by setting them to null.

Now, saying that globals don't leak might be misleading. They do leak, but globals, unlike locals, can be refered from anywhere, thus assigning a new (none leaking) information to them, will remove the previous one, instead of creating a whole new variable. More then that, you can clean them wherever you wish. In locals the case is different, since you always create new ones and you can never refer to the previous ones easily.

I hope this makes it cleaer.
 

SFilip

Gone but not forgotten
Reaction score
634
Well you need to understand a definition of a leak first.
Everything created and not destroyed until the end of the game would count as one.
With this logic - just about everything can leak. But units have this thing...they die, and get removed automatically at some point after death.
Dummy units and similar probably wont die unless you make them. Always put an expiration timer to these (unless of course they are permanent and are supposed to stay for the whole game).

Now apart from this all handle-derived local variables can leak if they aren't nulled and their contents will be destroyed at some point. The second part implies that players (and heroes unless removed with a trigger) don't need to be nulled, but that's about it. Make sure you set any other handle local to null at the end of the function.
 

Exide

I am amazingly focused right now!
Reaction score
448
Thanks a lot for your answers. :)
I think I got it now. :p
 

quraji

zap
Reaction score
144
In other words, all local handle (non-integer, non-boolean, non-real, or non-string) variables need to be nulled before the end of the function, or they'll leak.
 

Rheias

New Helper (I got over 2000 posts)
Reaction score
232
> (non-integer, non-boolean, non-real, or non-string)

Not really. First of all code doesn't needs to be nulled. Players don't as well. Also not globals triggers etc... Just follow what SFilip said. ;)
 

Exide

I am amazingly focused right now!
Reaction score
448
I have a new question. :p

how does:
set bj_wantDestroyGroup = true
work?

First of all, the fact that it's name contains bj bothers me. :p
Secondly, why are there two ways of destroying a group?
Is one better than the other, and how does bj_wantDestroyGroup work?

Thank you.
 

phyrex1an

Staff Member and irregular helper
Reaction score
447
JASS:
function ForGroupBJ takes group whichGroup, code callback returns nothing
    // If the user wants the group destroyed, remember that fact and clear
    // the flag, in case it is used again in the callback.
    local boolean wantDestroy = bj_wantDestroyGroup
    set bj_wantDestroyGroup = false

    call ForGroup(whichGroup, callback)

    // If the user wants the group destroyed, do so now.
    if (wantDestroy) then
        call DestroyGroup(whichGroup)
    endif
endfunction

The same pattern is to be found in most other bj functions that uses groups. The DestroyGroup way is better than bj_wantDestroyGroup. It doesn't rely on the bj functions and it's easier to see what actually happens.
 
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

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top