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)
 
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)

?
 
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.
 
there's no such thing as a RemoveReal function, real the tutorial posted by johnnymra it should be enough
 
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.
 
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...
 
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.
 
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.
 
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.
 
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?
 
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.
 
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.
  • The Helper The Helper:
    News portal has been retired. Main page of site goes to Headline News forum now
  • The Helper The Helper:
    I am working on getting access to the old news portal under a different URL for those that would rather use that for news before we get a different news view.
  • Ghan Ghan:
    Easily done
    +1
  • The Helper The Helper:
    https://www.thehelper.net/pages/news/ is a link to the old news portal - i will integrate it into the interface somewhere when i figure it out
  • Ghan Ghan:
    Need to try something
  • Ghan Ghan:
    Hopefully this won't cause problems.
  • Ghan Ghan:
    Hmm
  • Ghan Ghan:
    I have converted the Headline News forum to an Article type forum. It will now show the top 20 threads with more detail of each thread.
  • Ghan Ghan:
    See how we like that.
  • The Helper The Helper:
    I do not see a way to go past the 1st page of posts on the forum though
  • The Helper The Helper:
    It is OK though for the main page to open up on the forum in the view it was before. As long as the portal has its own URL so it can be viewed that way I do want to try it as a regular forum view for a while
  • Ghan Ghan:
    Yeah I'm not sure what the deal is with the pagination.
  • Ghan Ghan:
    It SHOULD be there so I think it might just be an artifact of having an older style.
  • Ghan Ghan:
    I switched it to a "Standard" article forum. This will show the thread list like normal, but the threads themselves will have the first post set up above the rest of the "comments"
  • The Helper The Helper:
    I don't really get that article forum but I think it is because I have never really seen it used on a multi post thread
  • Ghan Ghan:
    RpNation makes more use of it right now as an example: https://www.rpnation.com/news/
  • The Helper The Helper:
  • The Helper The Helper:
    What do you think Tom?
  • tom_mai78101 tom_mai78101:
    I will have to get used to this.
  • tom_mai78101 tom_mai78101:
    The latest news feed looks good
  • The Helper The Helper:
    I would like to see it again like Ghan had it the first time with pagination though - without the pagination that view will not work but with pagination it just might...
  • The Helper The Helper:
    This drink recipe I have had more than a few times back in the day! Mind Eraser https://www.thehelper.net/threads/cocktail-mind-eraser.194720/

      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