Map object count?
Moderators: GSH, VSMIT, Red Devil, Commando
- bigbadbogie
- Bull Dog
- Posts: 586
- Joined: Mon Feb 21, 2011 8:12 am
- Location: Ecuadorian Embassy
Map object count?
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/
http://www.moddb.com/mods/qf2-essence-to-a-thief
https://www.indiedb.com/games/husky-ashcon-i/
Re: Map object count?
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.
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.
- Red Devil
- Recycler
- Posts: 4398
- Joined: Fri Feb 18, 2011 5:10 pm
- Location: High in the Rocky Mountains
Re: Map object count?
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
Abraham Lincoln
Battlestrat, FE, G66, In The Shadows, Starfleet, Uler, & ZTV
Lifetime member of JBS and NRA
- Zero Angel
- Attila
- Posts: 1536
- Joined: Mon Feb 21, 2011 12:54 am
- Contact:
Re: Map object count?
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
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
- bigbadbogie
- Bull Dog
- Posts: 586
- Joined: Mon Feb 21, 2011 8:12 am
- Location: Ecuadorian Embassy
Re: Map object count?
All are good suggestions. Thankyou!
N1, does AddObject account for pre-placed map objects?
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/
http://www.moddb.com/mods/qf2-essence-to-a-thief
https://www.indiedb.com/games/husky-ashcon-i/
Re: Map object count?
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.
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.
Re: Map object count?
Yes it does, good nugget of info for later mission scripting.bigbadbogie wrote:All are good suggestions. Thankyou!
N1, does AddObject account for pre-placed map objects?
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).
Re: Map object count?
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.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.
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

- Red Devil
- Recycler
- Posts: 4398
- Joined: Fri Feb 18, 2011 5:10 pm
- Location: High in the Rocky Mountains
Re: Map object count?
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
Abraham Lincoln
Battlestrat, FE, G66, In The Shadows, Starfleet, Uler, & ZTV
Lifetime member of JBS and NRA