|
Necros
#2461 posted by aguirRe on 2004/08/26 16:51:32
Thanks for the info, after some investigation I also think it's somehow QC related, possibly the self.solid isn't properly set (to SOLID_NOT?) after the player has grabbed the positron weapon.
I had this problem now and then throughout the whole pak which prevented me from using that weapon effectively.
I've now at least added the classname of the malplaced trigger edict (here posibeam) to the printout to ease troubleshooting.
D3edit
#2462 posted by necros on 2004/08/26 23:21:46
is there any way to get the standard 4 window (XYZ+3d Views) setup instead of the default wierd 1 top down + 3d + z thing?
also, the "inspectors" window can't be closed... like, you press T and it switches to textures, but pressing t again doesn't close the window... can it be done?
Yes
#2463 posted by VoreLord on 2004/08/27 01:35:24
If you go to the view menu/toggle, select top, side, front etc, they will open, but they are stacked on top of each other, so just drag them aside, position and resize them to your liking.
Inspector window, no I don't beleive it can be closed,(well it can, but then you have trouble reopening it, without restarting the editor) you can manualy move it out of the way, a pain I know, I have started just having it on the lower right, and leaving it there, you can also double click the individual tabs in the inspector window, and they will undock, when you close them they automatically redock in the inspector window.
I have settled for one half screen for the autho veiews, quarter screen 3d view, and quarter view inspector window. I wish I could get rid of the Z window all together, but it just gets hidden out of view anyway.
Hmmm
#2464 posted by VoreLord on 2004/08/27 01:42:10
I wish it could be set up just like I use GTK 1.4 and previous. I have basically one window open at a time (maximised) and just toggle through the top, side and front views when needed, or ctrl/shift/c for the camera view, and you just hit T, O, or N to bring up the tex,con or ent windows, but alas........... having to use little windows makes me feel like I have to bend down and try to peek in, I much rather the full screen area (maximised) for each window, much better. GTK 1.5 doesn't seem to allow me to do this either. But beggers can't be choosers
Trigger In Clipping List Follow Up
#2465 posted by aguirRe on 2004/08/27 10:09:31
When looking at the "Carved In Flesh" thread here I noticed that cyBeAr also had the same problem with the positron gun with Win/FitzQuake, but DarkPlaces handled it better.
After some investigation, it appears to be fixable in the engine so I've done the same in my engines. It might still be a problem caused in QC of course.
.
#2466 posted by necros on 2004/08/27 11:54:15
well... one could argue it is a problem with the engine, because, really, it should check and refresh the list when a change is made to an entity's solid type, however, it's easily fixable (by using a setorigin function right after) so it can also be argued that it is the qc coder's fault that he/she did not take this into account.
therefore, i'd suggest you actually leave it as it was (broke) so that when people test their mods out on your engine, they will get that error, find out what it is and fix it so it works in all engines.
0.02 ;)
Damn Straight
#2467 posted by Kell on 2004/08/27 11:56:32
make the coders work for their crust!
Well
#2468 posted by aguirRe on 2004/08/27 13:17:26
since the major goal with my engines is to be able to load (and play) maps that others can't, I can hardly leave it broken if there's an easy way around it.
Also, using my engines as a test for classic engine load/playability, is not really recommended since they have significantly higher limits.
.
#2469 posted by necros on 2004/08/27 14:06:59
well, ultimatly it's your choice, but this is simply a bug that should have been fixed in the progs.dat. changing the engine so it doesn't complain about a bug that could have been fixed doesn't make sense to me.
Possibly
#2470 posted by aguirRe on 2004/08/27 17:14:34
useful explanations of some BSP tech stuff, e.g. marksurfaces: http://forums.quakesrc.org/viewtopic.php?t=4056
Scroll down to Spike's post from today.
Maybe The Wrong Place To Post, But...
#2471 posted by Drew on 2004/08/30 18:12:16
Does anyone know where I can find a good, windows compatible editor for old school doom? I tried DCK v3.62, but it only works in DOS mode as far as I can tell.
Thanks!
D
#2472 posted by czg on 2004/08/30 18:47:45
#2473 posted by pushplay on 2004/08/30 22:55:50
For a good, straight forward doom mapping tool, wadc is clearly the only correct choice.
Drew
#2474 posted by Vondur on 2004/08/31 01:08:49
the best editor for classic doom is doombuilder
www.doombuilder.com
Help!
#2475 posted by Blitz on 2004/09/01 00:21:15
Hey all -- I'm working on a Quake map for a mod, and I'm trying to set a door to be triggered by a button. I've done it a million times in my maps but for some reason, it's not working here. I've checked everything a million times and I dunno what's wrong. So I have given up, and I seek your help.
http://home.comcast.net/~teh_blitz/blitvbal.bsp
http://home.comcast.net/~teh_blitz/blitvbal.map
Thanks for your help.
Dude,
#2476 posted by necros on 2004/09/01 00:41:03
you've got two doors touching and being triggered at different times.
you need to check the "doors don't link" spawnflag so that each can be trig'd seperatly.
Aguire - Light
#2477 posted by necros on 2004/09/01 00:47:40
dude, i've got some pretty funky problems with the light program...
i'm not sure what's going on... it happens on a rotating torus brush... basically, the brush should be lit more or less uniformly, but in-game, the top, bottom, left and right areas of the torus are the only parts the proper lighting, the rest is fullblack...
anything i can do about that?
also, would it be possible to have light.exe to check, not only target-targetname sets, but also target2,3,4 and targetname2,3,4 sets? (numbers to do reference each other, target2 can target targetname4, etc...)
LOL!
#2478 posted by Blitz on 2004/09/01 01:08:44
Thanks necros -- Lordhavoc told me the same thing right as read your post -- I totally forgot they were touching. My intention was to leave the smallest unit of space between them. Thanks.
Necros
#2479 posted by aguirRe on 2004/09/01 05:57:12
Rotating brush lighting: I've some faint memory that rot brushes are actually positioned in the middle of the map (0 0 0) and this affects lighting (of course). I don't know if it's fixable. Please send me the zipped map+wad and I'll see what I can do.
Multiple target checking: Certainly possible, but I assume this must be some QC hack to get it to work in-game, right? I'm not sure I want to adapt a standard light tool for a specific progs.dat.
I've not even disabled the normal light complaints about missing target lighting although it's in the standard progs.dat for a similar reason.
Would you also like to have the light style handling on these additional keypairs or is it just a matching check?
Rot Light
#2480 posted by Kinn on 2004/09/02 13:09:32
I've some faint memory that rot brushes are actually positioned in the middle of the map (0 0 0) and this affects lighting (of course)
Hmmm...I had loads of rotators in Bastion and they all seemed to light correctly. (I was using the Hip rotator code btw).
I Remember That Too
#2481 posted by starbuck on 2004/09/02 18:20:37
i think it might have been in custents where the brushes light like theyre at (0 0 0). Wait, didnt that use the Hip rotate code? I dunno.
Light On Rotating Brushes
#2482 posted by Tyrann on 2004/09/02 18:24:35
IIRC, the wierd lighting on rotating brushes has to do with the dynamic lights (e.g. muzzle flash, etc.), so it's more of an engine or QC problem. Static lighting should work fine.
I also found some wierdness where the position of the rotate_origin (I think) would affect the texture offsets. I may be able to dig up my example maps somewhere...
Convmap.exe
#2483 posted by necros on 2004/09/02 18:37:23
i've been having some strange trouble with convmap (not mapconv, btw)...
mapconv packed up and left, spouting german obscenities, so i'm using convmap now, but when using the command line:
convmap -i -f32 mapfile
it refuses to write a file, however, if i omit the -i, and then say "Y" when it asks me if i wish to convert the file it will do it.
since i'm using this in a batch file, i'd like to get it to convert without asking me and requiring a keystroke...
any ideas?
Rotating Brush Wierdness
#2484 posted by Tyrann on 2004/09/02 18:51:55
Grab this file and note the subtle differences in the map files and how they affect the dynamic lighting and texturing of the func_rotate_door (hipnotic progs):
http://planetquake.com/tyrann/files/rot_test.zip
(this is stuff I discovered during the OUM project)
Necros
#2485 posted by aguirRe on 2004/09/02 19:48:54
The ConvMap option groups are order sensitive; use the line convmap -f32 -i mapfile instead. The first group is the conversion group and the 2nd is the file selection group. It's certainly not the most user-friendly interface I've done ...
In the next version of my compilers you can omit the conversion step and use the new -q2map option in qbsp instead.
|
|
You must be logged in to post in this thread.
|
Website copyright © 2002-2024 John Fitzgibbons. All posts are copyright their respective authors.
|
|