AguirRe
#5443 posted by Mike Woodham on 2006/10/22 08:38:30
OK, thanks.
Using your engine I can see that the lightmaps are 64 i.e. at max, in the map version prior to getting the error. The only difference was that in the next version I had added some extra 'normal' size brushes (a corridor) but I do not know whether I added any new textures or not.
I re-scaled one of the largest brushes to x5 and sure enough lightmaps became 63. For the sake of good order, I then changed another to x8 and lightmaps dropped to 60. I also tried all textures the same and it rose to 65 lightmaps, so that didn't help. Finally, I split one of the largest brushes into 16 and the lightmaps stayed at 64.
I think that probably 'proves' the thoery so will look towards rescaling to reduce the lightmaps.
If it is not too difficult, can you describe what a lightmap is and why changing the texture scale should reduce them. Also, does re-scaling downwards have a detrimental effect?
Is there an argument for manipulating the textures in (say) Photoshop so that you can scale-up in the editor to get the texture looking normal in the engine, thereby avoiding the lightmap problem? Or am I trying to be too clever for my own good here:-)
Engine Lightmaps
#5444 posted by aguirRe on 2006/10/22 09:23:20
I also don't know exactly what they are, but think of them as the surfaces of each visible brush face containing information about the current lightlevel in a number of discrete surface points, arranged in a grid and with a density related to the current texture scale (smaller scale means more points). The lightlevel can be not set (i.e. fullbright) or as calculated from the light tool.
Either way, all these surfaces must then be allocated in the engine no matter if they're fullbright or not and they're all in one big memory buffer that in normal engines has a certain fixed size. The allocation strategy is made in a way that may cause inefficient usage of this big buffer and in any case you can't have more than 64.
An engine can then just increase the buffer size (will require quite a bit of memory) or allocate it dynamically, like in my engines or DP. My limit is still set to 1k lightmaps since I still use a small fixed size array, but I could easily increase that if required.
I've never seen any real map require more than about 800 lightmaps, though (a huge leaking map). You could probably easily produce a synthetic test case of course that could exceed even my 1k limit.
Lightmaps
#5445 posted by madfox on 2006/10/22 15:14:24
My map suffered the same problem, before I scaled texture.
For my good understanding;
so textures that are out of vieuw,ie backsides,
two brushes against eachother, their textures size does count in the total 64 lightmaps?
If You Can See
#5446 posted by aguirRe on 2006/10/22 15:41:47
see the textured faces in-game (noclipping or not), the faces count. That is one of the reasons why any volume that the player can't reach (or is used for other purposes) should be filled or opened for the void.
It's also the reason why unnecessary sky should always be shrunk to minimize the outside textured faces. They can be a huge contributor to the total lightmap count.
Just A Thought
#5447 posted by ijed on 2006/10/23 09:51:49
but would it possible to run some kind of precompiler or .bat that automatically stretched every sky / clip / trigger texture 9999*9999 ?
it'd be a lazy man's tool (since ultraedit can do the job as well) but would be good if implemented directly into the compiler, though it would remove alot of the necessary thought from texturing, so maybe not such a good idea.
Back Up A Bit...
#5448 posted by metlslime on 2006/10/23 13:20:29
Sky faces don't get lightmaps, so they aren't part of this calculation. Same with clip.
Trigger, on the other hand, does get lightmapped. So if you have any large triggers, you would benefit from scaling the textures up. Same with Skip.
Sound Files
#5449 posted by Mike Woodham on 2006/10/24 09:22:37
I have a looped .wav file that I want to use unlooped. How can I convert it to be unlooped?
Unlooping
#5450 posted by Preach on 2006/10/24 09:52:14
If you use Goldwave, it's fairly easy. Open the wav file up, and go to Tool -> Cue Points. Select the cue points present in the file and delete them. Then save it again and it will no longer loop.
Preach
#5451 posted by Mike Woodham on 2006/10/24 10:21:05
Well that was painless, thanks Preach.
Czg, I Think This One Is Up Your Alley...
#5452 posted by Mike Woodham on 2006/10/25 08:04:58
...I'm using Hip's rotate entites and for any single object or a group moving in one direction together, everything is fine - smooth as a whistle. But if I have two seperate objects moving at the same time e.g. double doors opening away from each other, I get 'judder' on one of them.
Is this a known problem and can I do anything about it (apart from making it a single door)?
As always, your help will be appreciated.
Thought I'd Just Pitch In
#5453 posted by necros on 2006/10/25 18:34:22
as this method is simpler (if you don't have anything other than soundrec.exe).
open up soundrecorder and make a new wave file. do edit->insert file->your looped file
now resave as a new (or overwrite). voila, no more loopage. :P
Blood In QSP1
#5454 posted by Mike Woodham on 2006/10/26 04:51:09
Do I remember a mod from some time ago that put blood splatters on the walls?
(necros: thanks, I'll try to remember that)
Dunno
#5455 posted by necros on 2006/10/26 09:35:48
i think SoA had that?
careful though. sprites don't get lit, so blood splatters in dark rooms will look dumb.
There's A Mole In The Camp
#5456 posted by Mike Woodham on 2006/10/26 10:48:17
How did you know my rooms were dark ;-)
Thanks, I'll look up SoA.
.map Conversion Help Needed
#5457 posted by Kinn on 2006/10/27 17:43:18
Ok, I have a quake map, in the half-life .map format (I made it with Hammer you see), and I would like to somehow get it into DOOMEdit.
I don't care about any of the entities obviously, but it would be nice to have the geometry of brushmodel entities preserved in some way.
Any ideas how I would go about this?
Kinn
#5458 posted by DaZ on 2006/10/28 19:02:26
Just a hipshot here, but could you perhaps run the hammer .map file through mapconv.exe and output it as a standard .map file that you can import into doomedit??
* I am very drunk
Kinn
#5459 posted by R.P.G. on 2006/10/28 20:20:48
Isn't the brush data stored the same in all WC/Hammer/Doomedit maps? If you didn't care about the texture data then it might be possible to reset all the textures to one texture with one scale/rotation/shift setting, and then find/replace that with Doom3's texture data.
I Don't Think So
#5460 posted by BlackDog on 2006/10/29 01:18:47
AFAIK brush formats differ between hl1, q1, q2, d3, etc
The Only Thing That Differs...
#5461 posted by metlslime on 2006/10/29 01:25:13
...is some of the numbers at the end, which represent brush flags, surface flags, light values, etc. And I think HL has a different texture alignment format. But the brush geometry itself is the same across all of them, I think.
#5462 posted by Kell on 2006/10/29 01:50:12
is some of the numbers at the end, which represent brush flags, surface flags, light values, etc.
Yeah, that's certainly the difference between Q1 and Q2/3 .map format. That's as explained in the older mapconv tool readme.
I'm not sure what the particular flags/info in the HL format .map are, but ages ago I successfully opened some Q1 .maps in WorldCraft 2/3 without any conversion. The texture info was indeed lost, but the brush info required no translating.
.map Formats
#5463 posted by Kinn on 2006/10/29 02:49:39
cheers for the replies - here's some info which might be useful. I tested in gtk, creating a "map" consisting of one 128x128 brush centered on the origin. This is the Q1 .map
// entity 0
{
"classname" "worldspawn"
// brush 0
{
( 64 64 64 ) ( 64 -64 64 ) ( -64 64 64 ) NULL 0 0 0 1 1
( 64 64 64 ) ( -64 64 64 ) ( 64 64 -64 ) NULL 0 0 0 1 1
( 64 64 64 ) ( 64 64 -64 ) ( 64 -64 64 ) NULL 0 0 0 1 1
( -64 -64 -64 ) ( 64 -64 -64 ) ( -64 64 -64 ) NULL 0 0 0 1 1
( -64 -64 -64 ) ( -64 -64 64 ) ( 64 -64 -64 ) NULL 0 0 0 1 1
( -64 -64 -64 ) ( -64 64 -64 ) ( -64 -64 64 ) NULL 0 0 0 1 1
}
}
Note that the half-life version would be very similar to the Q1 version, but GTK wasn't playing nice with me in HL mode for some reason, so I couldn't test. The only difference between HL and Q1 afaik are some extra texture alignment properties. The way it stores brush geometry is the same. The HL .map format is detailed here:
http://collective.valve-erc.com/index.php?go=map_format
and this is the same "map" again, remade in D3 mode:
Version 2
// entity 0
{
"classname" "worldspawn"
// brush 0
{
brushDef3
{
( 0 0 1 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
( 0 1 0 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
( 1 0 0 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
( 0 0 -1 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
( 0 -1 0 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
( -1 0 0 -64 ) ( ( 0.03125 0 0 ) ( 0 0.03125 0 ) ) "_emptyname" 0 0 0
}
}
}
As you can see, even the syntax for the brush coordinates are stored differently. Here's as much as I could find regarding the D3 map format (I didn't look very hard, mind):
http://www.modwiki.net/wiki/MAP_%28file_format%29
Getting from HL -> Q1 is something i've done before. SPoG once made a quick build of GTK for me that opened a HL .map and saved a Q1 .map. I've lost this unique build ever since I had to reformat my laptop; SPoG, I don't suppose there's a chance you've still got it saved somewhere?
Daz: I thought mapconv.exe only worked for swapping between Q1 and Q2/3, or is there another version around?
I hear that getting from Q3->D3 is possible too, something about DOOMEdit will import a Q3 map that's been saved in "brush primitives mode". If true, then HL -> Q1 -> Q3 -> D3 might be achievable with existing tools, but I'm currently still stuck on the first stage...
QuArK
#5464 posted by aguirRe on 2006/10/29 05:38:02
can do several (if not all) of those formats natively and usually you can also choose between several output formats for a specific game. I can e.g. get it to output a Valve 220 (Hammer) format map from a Q1 source directly.
I've also used it for converting from Hammer format maps to BSP editor format. The only obvious problem then is the lost extra tex info. There might of course be accuracy losses as well if it's a big and complex map.
Keys That Target Things
#5465 posted by Mike Woodham on 2006/10/29 08:21:22
I have a gold key that targets other events e.g. spawn a monster. I collect the gold key and sure enough, the monster spawns in.
In another map, I have exactly the same set-up but the monster doesn't spawn in. In the editor I can see that the key is linked to the monster, and target and targetnames are correct.
Why would it work in one map and not in the other?
Targets
#5466 posted by Preach on 2006/10/29 08:43:49
Wait, so the key is targetting the monster itself? Does that mean you're using a modified progs like spawn64, where you set a flag on a monster to spawn it? It's possible that custom code would behave oddly. Otherwise I can't see any reason why a key would fail to target something if you replace it with, say, a button with the same target.
Forget It...
#5467 posted by Mike Woodham on 2006/10/29 08:46:57
... more haste, less speed.
I hadn't vis'd the map. The monster was there, I just couldn't see it. Ho hum!
|