Question on Memory Leaks

Mindless

New Member
Reaction score
4
Hi everyone,

A quick question: does this leak?

Set LCPoint = centre of playable map area
Move UnitA to LCPoint
Set LCPoint = Point(222,324)
Move UnitB to LCPoint
call RemoveLocation(udg_LCPoint)

Do I need to call RemoveLocation after moving UnitA, then reseting LCPoint, then calling RemoveLocation again after moving UnitB?
So, should I do this?

Set LCPoint = centre of playable map area
Move UnitA to LCPoint
call RemoveLocation(udg_LCPoint)
Set LCPoint = Point(222,324)
Move UnitB to LCPoint
call RemoveLocation(udg_LCPoint)
 

Mindless

New Member
Reaction score
4
Thanks. Just a side question though, what causes leaks? I mean, why does region, player group, unit group and all that leak, but not, let's say, reals for example? Why isn't there a:

Set LCReal = 500
Set UnitA Movement Speed = LCReal
call RemoveReal(udg_LCReal)

?
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Because reals, integers and the rest don't create objects that can't be referred to later. If you use a value of 249 or 481.6, that doesn't create an instance, it just uses the value for the time being. Clearing leaks will prevent you from having extra unit groups, locations/points etc. [Units within 500.00 of (Position of (Triggering Unit))] will leak because since you aren't saving the point or the unit group into a variable, you can't reference it later.
 

Dirac

22710180
Reaction score
147
there's no such thing as a RemoveReal function, real the tutorial posted by johnnymra it should be enough
 

WolfieeifloW

WEHZ Helper
Reaction score
372
He knows there isn't a 'RemoveReal' function, lol.
He was wondering why something like that doesn't need a variable.

Like KaerfNomekop said, plus, I'm pretty sure it's something like:
Positions, groups, etc. can change, and when they do, they're left behind in the WC3 memory.
That takes up space, memory, which will add up over time.
If you don't destroy them, those 'leaks' will build up, using more and more memory.
Eventually, they will lag your map into nothingness.

Memory Leak: the leakage of handle objects, or in other words, basically whenever you create something or reference something, other than integers the game loses it’s location, thus causing a leaked piece of memory. Now granted these are cleaned at the end of the game, but if enough pile up during play without being removed, it can cause serious lag to the players, ranging from a little here and there, to complete un-playability, neither of which is wanted.
 

Mindless

New Member
Reaction score
4
Ah.. Thanks guys. I think I understand now... a bit. But this leads back to my first question. If memory leaks are defined as above, why shouldn't the first alternative (see first post) be leakless? I've stored a point in a variable, then simply changed the value of the variable. That shouldn't leak, should it?

That piece of code should be the same as:

Set LCPoint = centre of playable map area
Set LCPoint = Point(222,324)
...

(not moving the units anymore of course but in terms of memory leaking, those should be equivalent)

Or, does this leak too...
 

vypur85

Hibernate
Reaction score
803
Code:
Set Unit_Var = Your Unit A
Set Unit_Var = Your Unit B
Unit - Remove Unit_Var

Does Your Unit A gets removed from the code above? Think about it. It applies to point variables too.

If it doesn't get removed, meaning it leaks...


Edit:
From Post#11, I guess you still don't get it from this simple reply. Sometimes you just need to imagine things from a different perspective. My reply stops here.
 

KaerfNomekop

Swim, fishies. Swim through the veil of steel.
Reaction score
613
Well, I'm not sure if Centre of Playable Map Area leaks, since it should stay the same throughout. Not sure what happens when you change camera boundaries though.

But generally it will leak, since you reference the first point then change the value of the variable. How do you use the first point again? You can't.
 

Ayanami

칼리
Reaction score
288
Ah.. Thanks guys. I think I understand now... a bit. But this leads back to my first question. If memory leaks are defined as above, why shouldn't the first alternative (see first post) be leakless? I've stored a point in a variable, then simply changed the value of the variable. That shouldn't leak, should it?

That piece of code should be the same as:

Set LCPoint = centre of playable map area
Set LCPoint = Point(222,324)
...

(not moving the units anymore of course but in terms of memory leaking, those should be equivalent)

Or, does this leak too...

I believe that leaks because your reference to your first LCPoint is gone.

When you refer LCPoint as Center of Playable Map Area, that point is stored into memory. Then, you refer to another point which stores that point into memory. However, this will cause a memory leak as you are not able to refer to the first point anymore, which is just taking up memory. I believe that's why it causes memory leak in this case.
 

Mindless

New Member
Reaction score
4
So I'll have to clean up memory every time I set a variable to a new value?

So I'll even have to clean up memory for completely pointless actions like this:

Set LCPoint = Point(334,554)
call RemoveLocation(udg_LCPoint)
Set LCPoint = Point(887,343)
call RemoveLocation(udg_LCPoint)

even if I do nothing in between the successive set variables?
 

Ayanami

칼리
Reaction score
288
So I'll have to clean up memory every time I set a variable to a new value?

So I'll even have to clean up memory for completely pointless actions like this:

Set LCPoint = Point(334,554)
call RemoveLocation(udg_LCPoint)
Set LCPoint = Point(887,343)
call RemoveLocation(udg_LCPoint)

even if I do nothing in between the successive set variables?

Yes, exactly. It doesn't matter if you use the variable or not. At the instance when you set the variable, that's where the memory leak occurs.
 

Mindless

New Member
Reaction score
4
Right... Thanks a lot guys. Thanks for making my map leak free! And also thanks for giving me about 10 hours or more of hard work.:)
 
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