Map object count?

Moderators: GSH, VSMIT, Red Devil, Commando

Post Reply
User avatar
bigbadbogie
Bull Dog
Posts: 586
Joined: Mon Feb 21, 2011 8:12 am
Location: Ecuadorian Embassy

Map object count?

Post by bigbadbogie »

Is there a way to check the number of objects on a map to make sure that I'm not pushing the 8192 limit? (Or whatever the limit is).
"You think that you can wipe out an entire civilisation without consequences?" - Rachel

http://www.moddb.com/mods/qf2-essence-to-a-thief
https://www.indiedb.com/games/husky-ashcon-i/
User avatar
Nielk1
Flying Mauler
Posts: 2991
Joined: Fri Feb 18, 2011 10:35 pm
Contact:

Re: Map object count?

Post by Nielk1 »

Run the ASCII BZN though a script?

BZNs are just lists of variables so you would need to come up with something slightly more complex than a string finder though.

EDIT:
Idea 2: Custom DLL where all it does is increment a counter every time AddObject(Handle h) is called and prints out the number. The last number it prints when you load the map is your object count.
User avatar
Red Devil
Recycler
Posts: 4398
Joined: Fri Feb 18, 2011 5:10 pm
Location: High in the Rocky Mountains

Re: Map object count?

Post by Red Devil »

i use notepad++ and use 'find all in current file' for 'label =' in an ascii save of the map
If given the truth, the people can be depended upon to meet any national crisis. The great point is to bring them the real facts - and beer.
Abraham Lincoln

Battlestrat, FE, G66, In The Shadows, Starfleet, Uler, & ZTV

Lifetime member of JBS and NRA
User avatar
Zero Angel
Attila
Posts: 1536
Joined: Mon Feb 21, 2011 12:54 am
Contact:

Re: Map object count?

Post by Zero Angel »

If you start running out of objects you can just clump a bunch of objects together (like trees) in a single model like Lizard did on his 'Site B' map.
Regulators
Regulate any stealin' of this biometal pool, we're damn good, too
But you can't be any geek off the street
Gotta be handy with the chains if you know what I mean
Earn your keep
User avatar
bigbadbogie
Bull Dog
Posts: 586
Joined: Mon Feb 21, 2011 8:12 am
Location: Ecuadorian Embassy

Re: Map object count?

Post by bigbadbogie »

All are good suggestions. Thankyou!

N1, does AddObject account for pre-placed map objects?
"You think that you can wipe out an entire civilisation without consequences?" - Rachel

http://www.moddb.com/mods/qf2-essence-to-a-thief
https://www.indiedb.com/games/husky-ashcon-i/
User avatar
Red Spot
Attila
Posts: 1629
Joined: Mon Feb 21, 2011 6:14 pm
Location: The Netherlands

Re: Map object count?

Post by Red Spot »

http://members.ziggo.nl/red_spot/BZ2.rar

Try that, took me a few minutes to make ..
Left some files in there to show you how it works (just dump any map that needs to be checked into the folder that contains the excel file).

Does not come with any sort of error handling though.
User avatar
Nielk1
Flying Mauler
Posts: 2991
Joined: Fri Feb 18, 2011 10:35 pm
Contact:

Re: Map object count?

Post by Nielk1 »

bigbadbogie wrote:All are good suggestions. Thankyou!

N1, does AddObject account for pre-placed map objects?
Yes it does, good nugget of info for later mission scripting.

RD's note is good.
Without looking at RedSpot's link, if its a program or some such to count it, probably counts the occurrences of what RD noted about BZNs.

ZA's suggestion is a good one for when/if issues come up.

I think it's hard to hit the limit personally. Even when in my early (now shelved) Reactor Wars development I had entire minutes of playtime with degrading performance before a crash when I had a bug in my code that made it spawn my 4 force-fields 10 times per second (without removing the old ones).
User avatar
Red Spot
Attila
Posts: 1629
Joined: Mon Feb 21, 2011 6:14 pm
Location: The Netherlands

Re: Map object count?

Post by Red Spot »

Nielk1 wrote:Without looking at RedSpot's link, if its a program or some such to count it, probably counts the occurrences of what RD noted about BZNs.
Little macro that opens every .bzn in the folder that has the provided excel file in it and counts for how many occurances of "[GameObject]" it finds.

In case you really need to search for "label", just follow below instruction.

Change the line saying:
Range("B1").Formula = "=COUNTIF(A:A,""[GameObject]"")"

to:
Range("B1").Formula = "=COUNTIF(A:A,""label*"")"

I assume you know how to open the VB editor :)
User avatar
Red Devil
Recycler
Posts: 4398
Joined: Fri Feb 18, 2011 5:10 pm
Location: High in the Rocky Mountains

Re: Map object count?

Post by Red Devil »

gameobject is probably better ;)
If given the truth, the people can be depended upon to meet any national crisis. The great point is to bring them the real facts - and beer.
Abraham Lincoln

Battlestrat, FE, G66, In The Shadows, Starfleet, Uler, & ZTV

Lifetime member of JBS and NRA
Post Reply