Is MH-Space-Port known for issues?

Tutorials and discussions about Mapping - Introduce your own ones!
User avatar
EvilGrins
Godlike
Posts: 9701
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Is MH-Space-Port known for issues?

Post by EvilGrins »

Why is your map called MH-!!![Space-Port]?

Mine's MH-Space-Port.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
Barbie
Godlike
Posts: 2802
Joined: Fri Sep 25, 2015 9:01 pm
Location: moved without proper hashing

Re: Is MH-Space-Port known for issues?

Post by Barbie »

EvilGrins wrote:Why is your map called MH-!!![Space-Port]?
I got the package »MH-Space-Port.rar« from Medors place. The content of that RAR archive is

Code: Select all

	   size  |      date    | file name
	---------+--------------+------------------------------
	     169 | Jul 11  2011 | installation readme thingy.txt
	 2797188 | Jul 11  2011 | MH-!!![Space-Port].unr
	20180854 | Jun 19  2011 | odesykilljoke.umx
	 1288270 | Jun 18  2011 | !!!spacehunt.utx
and the MD5 sum of »MH-!!![Space-Port].unr« is f1c71acbde6cb6b8cdc4723502a73678.

<EDIT-2016-07-06>
I got it: it was an object creation problem in my double linked list; the map itself was only the trigger.

FYI in detail: in case the number of a collection is not fixed at develop time I don't use static arrays but double linked list which can grow dynamically. I derived it from Object, not from Actor. If an object is created by the New Operator and its parent (=outer) is not given, the engine uses the object from where New is called as Outer. If always the last element of the list creates a new element, the parent chain gets longer and longer.
Example with log(self):
first element: MyMap.ListItem0
second element: MyMap.ListItem0.ListItem1
third element: MyMap.ListItem0.ListItem1.ListItem2
and so on.
On my test server I run a check for Actors with duplicate names where I create a list item for each unique Actor name. If there are enough Actors, the nesting level of outers seems to reach a level that the garbage collector cannot handle any more.
</EDIT>
"Multiple exclamation marks," he went on, shaking his head, "are a sure sign of a diseased mind." --Terry Pratchett
Post Reply