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
612
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
612
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
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      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