|
Also
#12973 posted by ijed on 2013/05/28 17:21:28
It stands for Hall Of Mirrors.
#12974 posted by Rick on 2013/05/28 18:10:04
I don't know about other engines, but in Fitzquake if you set gl_clear 0 and noclip outside the map, there will be HOM everywhere that's empty space and you'll see why it's called "hall of mirrors".
Yeah
#12975 posted by RickyT33 on 2013/05/28 20:24:32
I had an idea about doing it on purpose using skipped textures. For that crazy 'down the rabbithole effect'.
Anyone:
Has that been done yet? I think it could work really well, maybe having chunks of other realms in weird positions as the player moves through some sort of rift. I nearly had a go on my last release.
Hmm
#12976 posted by Drew on 2013/05/28 21:32:13
for me HOM as an effect is ruined by it's associations with errors, problems, bad mapping, whatever
#12977 posted by necros on 2013/05/28 21:34:06
might be interesting as a breaking the fourth wall type of map
Marksurfaces Are Evil Part 2
#12978 posted by Rick on 2013/05/29 00:52:38
Okay, I've been having to go very slow with making changes. Basically I'll make a few changes, only in one particular area, then copy the map over to my fast computer and BSP it. If the difference in marksurfaces is reasonable, I keep going, otherwise I start hitting the undo button.
Today I cloned a light fixture, not very big and kind of detailed, made from about 12 or 13 relatively small brushes. Connects to the wall at a 16x16 section of brush.
Copied the map and ran TxQBSP. When I saw the marksurfaces number I almost fell out of my chair. The increase was from 32,258 to over 33,000 !?!
Started thinking, well that light fixture didn't really look too good in the map, and there's two others exactly the same, I'll delete them all and maybe get a reduction of a thousand or more marksurfaces. Wrong.
New marksurfaces was only about 100 less, which is probably pretty close to how many surfaces there actually were on the two fixtures.
I'll take what I can get, back to mapping.
More Marksurfaces Stuff
#12979 posted by Rick on 2013/05/29 21:02:07
I worked at trying to reduce marksurfaces all day yesterday. It seemed like every time I simplified brushwork, the marksurfaces went up. I remembered negke's comment about rebb's modified txqbsp, so I downloaded that and gave it a shot. Magic.
Using the -forcegoodtree switch I got an immediate reduction from 32,266 to 31,763 with no other changes. That's some breathing room. Which is good because I had more stuff to add that was absolutely necessary.
I added another small room with an elevator and an arched doorway. I recompiled the map and... more magic. Marksurfaces went down again, by over 250!
I'm now at 31,507 and I think my marksurfaces problems may be over because there's not much more stuff that needs to be added.
I did a full compile and played it through to the end, looking for any bsp errors the whole time and didn't see any problems at all.
YES
#12980 posted by Drew on 2013/05/30 03:24:55
So pumped to play this!
Rebb Did Some Good Job There.
#12981 posted by anonymous user on 2013/05/30 13:55:38
BSP Tree Hug
#12982 posted by rebb on 2013/05/30 18:43:37
It's still very much an experimental switch, but it does help with marksurface counts - the only side-effect seems to be a somewhat less efficient PVS in some cases.
A few well placed hint brushes should help if needed though.
It would be nice if someone with a much better insight than me into the dos and don'ts of BSP creation could take a peek at the code ( it's a super tiny change in qbsp.c ) and confirm/deny if this is actually a horrible idea ;)
..sorry Maybe An Outdated Question
#12983 posted by deh on 2013/05/31 00:25:11
Do guys know if and what version of the programs QME and WORLDCRAFT may be used in commercial works ?
tHaNk in advance
A Bit Of Bsp Theory
#12984 posted by Preach on 2013/05/31 01:29:38
I've done a few practical experiments today to test how BSP responds to the order of the brushes in a map, so I'll write up and post all about that later - and hopefully explain why adding a brush can reduce the marksurfaces. For now, a bit of reassurance for rebb.
Once the compiler has created a list of surfaces from all the brushes in the map, it has to decide which one to compile next. It has two methods of choosing the next surface to split along, which we will call "fast" and "slow".
The slow way is easiest to explain. It tests every surface in the list, and checks exactly how many splits will be made. It then chooses the surface which will create the fewest splits.
The fast way is more complex conceptually, but quicker to compute. The engine looks through the list of remaining surfaces to find the ones which are axis-aligned. Of these, it chooses the one which best splits the area of the map into two evenly sized halves. If there are no axis-aligned surfaces, it just takes the first remaining surface.
The old rule for the bsp tool was to use the slow way for the visible surfaces, on the grounds that reducing visible surfaces matters. For the clipping hulls the fast way was chosen, either to save compile time or to make a more balanced bsp tree, not sure. However, once you're running up against the marksurface limit, then minimising the number of splits in clipping hulls suddenly has value. This is where rebb's modification pays off, as it applies the slow way everywhere.
Fun little idea which has seems to hold up from all that above(bear in mind I'm not that knowledgable on bsp stuff): If you've got big chunks of map with trisoup walls, maybe a cave...if you build some nice axis-aligned brushes to contain the cave walls, even ones which will eventually be clipped away, that ought to improve the compilation in the "fast" phases of compilation. Those brushes should be compiled early, and act like proto-hint brushes.
So coming soon - why all that minimising splits stuff is not what it sounds like. And how adding brushes can reduce splits!
How To I Make Enemies Spawn?
#12985 posted by hakkarin on 2013/05/31 18:31:14
What if I want to put an enemy into my map (I am making a Quake 1 map) that doesn't appear (or "spawn") until the player walks over or activates some kind of trigger?
For Vanilla Quake (i.e. Not Quoth)
#12986 posted by RickyT33 on 2013/05/31 18:54:51
Make a box room in your map, put monsters inside it. Over each monster make a brush entity 'trigger_teleport' and set a 'target' key on that entity with a value of 'Jeffrey' (or whatever). Give it a 'targetname' of something like 'triggerJeffrey'.
In your map make a point entity 'info_teleport_destination' where you want the monster to 'spawn', and call it 'Jeffrey'.
Make a brush entity where you want the player to trigger the spawning. Make it a 'trigger_once' entity. Give it a 'target' key with a value of 'triggerJeffrey'.
Now when the player touches the trigger_once entity, the teleporter in the hidden box room with teleport the monster to the info_teleport_destination. :)
If you are using the Quoth mod, just put the monster where you want it to spawn, give the monster a 'targetname' of 'Jeffrey', and check the 'delayspawn' flag for that entity. Now you can target the monster with a trigger_once brush entity and it will spawn when triggered.
:D :D :D
Thanks, But...
#12987 posted by hakkarin on 2013/05/31 22:12:01
Thanks for the help I will try that out!
However, there is one thing I was wondering in regards to the editor I am using (NetRadiant). When I go to "file" there are 2 options I am interested in know what mean. They are "save selected" and "save region". What do those do? Can I save only selected parts of the map or something?
More BSP Stuff
#12988 posted by Preach on 2013/06/01 00:54:55
So here's part II of the weird and wonderful world of BSP Algorithm weirdness.
http://tomeofpreach.wordpress.com/2013/05/31/greedy-algorithms-and-bsp/
If you already know about Greedy Algorithms you can skim through this as it won't teach you much that's new. I hope that it will answer that burning question of how deleting brushes can increase marksurfaces - and please let me know if you are curious but part of the article was incomprehensible!
Practical Experiment
#12989 posted by Preach on 2013/06/01 12:08:40
A little func_ bonus content from that blog post. I tried some very simple experiments into how the order of brushes in the map file affects the BSP output. It's easy to replicate, just create a single 6 brush box, with a 7th cube floating inside(texture this one differently so you can recognise it). Export the map, and use a text editor to cut & paste the floating brush entry up and down the brush order - you can create 7 different map files in this way.
I then tried compiling all 7 maps with Rebb's compiler, first without the new switch. In this case, there actually was a small change in the number of markfaces: when the floating box was moved high enough in the map file, the number of marksurfaces fell from 193 to 191. Yup, that's a 1% saving!.
When I repeated the compilation with -forcegoodtree turned on, the marksurfaces held at 177 for all 7 map files, but that's a 9% saving over the earlier worst map. Seeing no variation does not seem surprising after the last post, where we saw that the "slow" method considers all brushes at once. But there were variations in other quantities like edges and clipnodes. How?
Well, I can think of two possible explanations. One is that these other quantities depend on some other part of the compiler we haven't considered, and bit that is sensitive to order of brushes. I think the more likely explanation is that even when always applying the "slow" method there are still occasional "ties" where two splits look as good as each other, and the compiler picks one solely on order in the map file.
This is consistent with the observation that all the faces in our test are axis-aligned, so we don't ever test the code in the "fast" method which compiles brushes strictly in order. It appears that the variations in the former compilations were only due to ties being broken by brush order. The fast way appears to generate more ties than the slow way (which is believable from the code), and these ties might result in greater variation (an interesting result).
Hakkarin
#12990 posted by necros on 2013/06/01 15:56:21
Yes, that is what those two menu items do.
Save selected saves the selected brushes to a map file and save region saves the current region.
Please Define
#12991 posted by RickyT33 on 2013/06/01 16:11:30
'region'
Region
#12992 posted by Rick on 2013/06/01 16:49:19
Region selection is in the "View" menu. It's basically a way to hide large chunks of the map at once. You can select only a specific area to be visible while editing, this can de-clutter your view of the map a lot.
I've only used the "set xy" option, so I don't really know how the others work. The "set xy" will hide everything that's not in the current xy 2D view
I've never tried saving a region, can't think of any good reason why I'd want to. I guess it just saves the currently viewable stuff in a new map.
Preach : Interesting !
#12993 posted by rebb on 2013/06/01 17:45:32
Thanks for those articles, looking forward to the follow-ups :)
If it turns out that the experimental switches like "-forcegoodtree" are indeed not having yet unknown side-effects, like causing one's offspring to be born with a tail, maybe it could be implemented in other tools as well - the code change needed is very minimal.
Ah - That's Like Hammers Visgroups
#12994 posted by RickyT33 on 2013/06/01 22:14:30
QuArK...
#12995 posted by JPL on 2013/06/02 09:22:09
.. has also this feature: it is possible to hide some part of the design in the editor (3 options are actually possible: visible, hide, or greyed).
Also, vis-grouping allows to be indeed more flexible. It is possible to build only a selected part of the design to check that it looks correct.
Well, I guess more or less all editors have this kind of features :)
#12996 posted by necros on 2013/06/02 16:10:00
I've always liked quarks tree view that makes map components look like a file system.
And Again...
#12997 posted by mfx on 2013/06/02 16:43:36
i still like quarks texture applying.
|
|
You must be logged in to post in this thread.
|
Website copyright © 2002-2024 John Fitzgibbons. All posts are copyright their respective authors.
|
|