[article] Assorted Mapping Hints

[article] Assorted Mapping Hints

Re: [article] Assorted Mapping Hints Posted by Jinx on Sat Dec 23rd 2006 at 5:24pm
Jinx
874 posts
Posted 2006-12-23 5:24pm
Jinx
member
874 posts 692 snarkmarks Registered: Nov 27th 2002 Location: Ohio
This is a discussion topic for the article "Assorted Mapping Hints" by Jinx which can be found here

Article description:

a grab-bag of knowledge!
Loading embedded content: Article #163
Re: [article] Assorted Mapping Hints Posted by G.Ballblue on Sun Dec 24th 2006 at 6:18pm
G.Ballblue
1511 posts
Posted 2006-12-24 6:18pm
1511 posts 211 snarkmarks Registered: May 16th 2004 Occupation: Student Location: A secret Nuclear Bunker on Mars
Finnaly someone explained to me why powers of 2 are better than just any ordinary texture using numbers divisable by 16. I kept hearing people say that all over the place, yet no one ever explained why!

A couple of goof ups in the tutorial is your flickering sign bug, and the nowadtextures suggestion. I believe the flickering sign/wall bug was an old HL WON problem, and was rendered obsolete with Steam. I've encountered the problem on a map I made, on WON, and as soon as I played it in steam, the problem went away. I suggest under "solutions" you add; "Get steam." :P
Sadly, though, I feel that your nodwadtextures suggestion files under the category of lazy mapping. I agree that it wouldn't be fun adding in a whole bunch of wadinclude lines, but then again, 7+ hour compiles aren't fun either, but we do them anyway. You could also easily skip having to "write" the lines out by getting a batch compiler.
Despite this, this is still a good tutorial though. ;)
Re: [article] Assorted Mapping Hints Posted by Jinx on Sun Dec 24th 2006 at 11:46pm
Jinx
874 posts
Posted 2006-12-24 11:46pm
Jinx
member
874 posts 692 snarkmarks Registered: Nov 27th 2002 Location: Ohio
Yeah, someone asked me why the paintings in Museum looked so much better than they saw on other maps; it's all in the dimensions.

I doubt it has to do with Steam itself. Maybe it was fixed at some point as part of an update to the Half-Life 1 engine? If anyone knows for sure, please chime in. It doesn't hurt to do it that way, so I will continue to do so.

I don't use any default textures, so -nowadtextures isn't lazy, it just makes sense. Better to spend that time on actual mapping.

7+ hour compiles? What are you compiling on, a Pentium I?! Even my PII could compile a huge HL1 map in 4-5 hours.
Re: [article] Assorted Mapping Hints Posted by Orpheus on Mon Dec 25th 2006 at 1:16am
Orpheus
13860 posts
Posted 2006-12-25 1:16am
Orpheus
member
13860 posts 2024 snarkmarks Registered: Aug 26th 2001 Occupation: Long Haul Trucking Location: Long Oklahoma - USA
Since I always either knew which wads to include, or made one mega wad to reduce the files to be added it never caused me any grief.

/me likes this tut. Its a bit lite, when you consider just how many hints there are all told. Someday, I will need to write one of these grab bags of my own to add to yours.

Good job Jinxy
(Score = 1 point per suggestion+1 for going out of your way to post it.)

My ancient tips article from Biohazard.
http://biohazard.planethalflife.gamespy.com/drsmaptips.shtml
Re: [article] Assorted Mapping Hints Posted by Captain P on Mon Dec 25th 2006 at 11:43am
Captain P
1370 posts
Posted 2006-12-25 11:43am
1370 posts 1995 snarkmarks Registered: Nov 6th 2003 Occupation: Game-programmer Location: Netherlands
Nice list. :)
I think the following technical background info might be usefull too:

The z-buffer 'bug' is commonly referred to as z-fighting, and it isn't really a bug - it's a lack of precision in the z-buffer range that causes this. It is affected by the maximum viewable distance, at least if that value maps directly to the underlying OpenGL/DirectX far clipping plane. A lower value means more precision for all values in-between, a higher maximum view distance means less precision across the range.

As for water entities, just as all other brush-based entities, they are rendered completely if only a part of their bounding box lies within the current potentially visible area. Thus, a tower that's made into an entity, together with a few brushes spread across the map, will almost always be drawn. The problem with water brushes is often their size, which causes them to be drawn far more often than necessary.