Thank You - You Guys Are The Best
Ingame Monsters / Entites Pitched In Black
#5825 posted by JPL on 2007/01/26 11:01:16
I have a weird issue in my current project: ingame, I have 2 monsters ( i.e Scraggs) and an entity (i.e a Quoth crucified corpse) that are completly pitched in black... To see their color, I have to shoot them very closely (i.e with DBS)... otherwize they look like shadows, full black, without any colors, even if in a lightned area... Is there any explanation for that ?
Models Only Get Lit From The Brightness Directly Below Them
#5826 posted by czg on 2007/01/26 11:40:24
So if either of these are hanging above somewhere dark, (as one often does with scrags and corpses) they won't be lit even if you place a big bright light right next to them.
It's Pretty Strange In Fact...
#5827 posted by JPL on 2007/01/26 11:57:34
... because Scraggs are teleported into a wide-open area with a sunlight value of 150.. so I was expecting them to be lit... The more weird is that I have already 2 other teleported Scraggs in an other area that don't have any problem ... Any idea so ?
Oh Also
#5828 posted by czg on 2007/01/26 13:06:55
There is a limit in the engine as to how far below the model the brightness trace is run, I think it's around 1000 units or so, but metlslime turned it up in fitzquake. Don't know how big your level is, so if that's not the problem I really don't know.
Hhmmmm
#5829 posted by JPL on 2007/01/26 13:12:01
OK, your informations gave me 2 different ways to follow in order to solve my problem and have a correct diagnosis. Thanks a lot: it was really helpful !
JPL...
#5830 posted by generic on 2007/01/26 14:20:58
You might try lighting the box the Scrags are teleporting from to see if there is any difference.
Also, with crucified monsters, if they are placed slightly inside of other brushes, I have noticed they aren't always lit properly. Try nudging it around a couple of units to see if the lighting changes.
Crucified Stuff
#5831 posted by ijed on 2007/01/26 20:49:19
You've probably already done this, but, if your corpse is crucified (ie. in the map ;) then make sure the spike is a func_wall or illusionary to stop it appearing black like you describe. It only turns up black if it's origin is inside a piece of solid brushwork - then light assumes it is outside the level and doesn't consider it.
Explanations
#5832 posted by JPL on 2007/01/26 22:21:34
ijed: you are rigth, the origin of the crucified corpse was located in the wall: I moved it by 0.1 outside the wall and the isuue was solved....
czg / generic: In fact the Scraggs were correctly lit. The issue came from the fact they start to fly from a zone without brushes... except skybox.. so no solid wall below them... It is easily visible when the monsters fly from a solid area to a skybox area... and then faded from lit to black...
Thanks a lot for all the help provided ! You rock guys !
QC Gurus?
#5833 posted by Mike Woodham on 2007/01/29 11:56:28
Which is the best, and why (formatting apart)?
I'm looking at 'if', 'if/else' or 'if/return'
a)
void() do_job_A =
{
if (something == 1)
do_this1;
if (something == 2)
change_this1;
};
or b)
void() do_job_B =
{
if (something == 1)
do_this1;
else if (something == 2)
change_this1;
};
or c)
void() do_job_C =
{
if (something == 1)
{
do_this1;
return;
}
if (something == 2)
(
change_this1;
return;
}
};
There may be 8 or 9 choices for the variable called 'something'.
It Depends
#5834 posted by aguirRe on 2007/01/29 14:07:47
on if do_this1 and change_this1 somehow depend on each other. Otherwise the main principle is "always do as little as possible", which usually translates into else ifs (or even better, early returns) with the most frequent alternatives in the beginning.
If the condition "something" is complex, then split it up in nested or else ifs, with the most frequent and fastest conditions first. QC doesn't "early out" like e.g. C does. Function calls (especially calls to visible() or similar) should typically come last.
You can also take a look here: http://wiki.quakesrc.org/index.php/QuakeC%20Code%20Optimizations .
Newboss
#5835 posted by madfox on 2007/01/30 19:46:46
Putting it in a lavapit and making it optional was a tight job. Now I'm at the point it iniates lavaballs from its bottem and fires them from its head. I rather would see it iniating from its head.
As I'm standing on a ledge, and when I turn back far enough, I still can see the newboss
and fire at it, but it doesn't seem to see me.
One can only kill it by firing on its bottem.
Because I borrowed it from the spellmaster, which is much smaller, the qc doesn't fit well on this much bigger monster.
http://members.home.nl/gimli/boss.dz
What should I change to the newboss.qc?
Madfox
#5836 posted by Mike Woodham on 2007/01/30 21:33:28
This is very phallic if you run the die sequence backwards?
I Know
#5837 posted by madfox on 2007/01/31 08:06:46
This mdl I made myself, because the one in the deathmatch maker had a rather plump way of falling down.
Made no sense for such a big object.
I find it strange if I see it in Qml or Quark it has a right bounce box, but if I shoot it at the top it won't get hurt.(?)
Hitbox, Bounding Box And The Rest
#5838 posted by Preach on 2007/01/31 09:20:54
The box you see in quark/qml is the box that bounds the size of the model. It's used by the engine to determine when the model is drawn, but nothing else. The hitbox is determined by the QC, specifically this line:
setsize (self,'-32 -32 -24','32 32 64');
Adjusting these values will give you a larger or smaller hitbox as you require. The first vector gives the coordinate of the lower left part of the box relative to it's origin. The second vector is the upper right coordinate, so it defines a cuboid hitbox.
Making it see from a different point of view may be a little more complicated to fix, I'll try and post about that later.
Thanks
#5839 posted by madfox on 2007/01/31 23:54:20
preach, I wondered about that quiete a time.
To make it launch from that height was already a fix, it tended to start shooting in angles up and below the player.
Wurvy
#5840 posted by Lunaran on 2007/02/02 03:40:52
Knowing how poorly the q1 engine and compiler generally handles slanted stuff, how insane would this be:
I want to design a map that's made of concentric sections surrounding a circular core. Every area of the map would have a gentle (or, near the center, not so gentle) curve to it. All lines would either be radial or circumferential. Essentially the entire map would be designed for polar coordinates, but imposed on a square grid.
Insane? Mad? Masochism?
#5841 posted by gibbie on 2007/02/02 03:55:05
You mean like this?
http://www.student.vu.nl/h.e.beck/girl8.gif
Yes, the compiler handles stuff like this fine.
Sweet Jesus Gibbie
#5842 posted by Lunaran on 2007/02/02 04:49:35
like I said, you're out of your mind. :) does that even come close to the 8 grid?
Quark
#5843 posted by than on 2007/02/02 05:53:53
handles stuff off the grid afaik. For SM32 I had to rebuild Gibbie's bit because it was on a floating point grid >:(
Radiant handles stuff down to 0.25 I think, and last time I used it you could build
I think the plan to make that in Quake is masochism. I built about half of my wolfenstein map at 45 degrees when there wasn't much need for it. It wasn't particularly difficult, just time consuming and annoying to build. Having said that, gibbie's map looks like it is generally at more challenging angles.
Gibbie: How about an editor xz view? I want to see how the ceilings were built.
#5844 posted by gibbie on 2007/02/02 11:24:31
Shady xz:
http://www.student.vu.nl/h.e.beck/shadyxz.gif
Girl8 xz:
http://www.student.vu.nl/h.e.beck/girl8xz.gif
In gtkradiant 1.5 you have to turn off "Snap planes to grid" or everything goes wrong. The smallest grid for both maps is 0.125. That is also the smallest grid you can set in gtkradiant. However if your brushes are not on the smallest grid (eg because of clipper usage) i think it will still save them properly.
Anyways, most of the time i don't mess on such small grids. I mostly just use prefabs from a curvey thing of concentric brushes i once made, kinda like:
http://www.student.vu.nl/h.e.beck/curve.gif
This also has pre-aligned textures :)
Whoa
#5845 posted by R.P.G. on 2007/02/02 19:29:52
A map called "girl" filled with phalluses? And people thought I was perverted.
What's Perverted...
#5846 posted by metlslime on 2007/02/02 20:24:36
about filling a girl with phalluses?
Well,
#5847 posted by HeadThump on 2007/02/02 22:42:03
about filling a girl with phalluses?
I really hate during a DP when they rub your weiner up against another guy's junk while they are giving oral, but other than that, nothing!
Well,
#5848 posted by Mike Woodham on 2007/02/03 00:38:12
I think that I am glad that I don't understand American too well!
|