Haha
awesome scamps...
I have to say I really should get some pipe prefabs made up (especially if I do any more base maps). It'd be nice to have a 2d brush shaper/rotator tool like in UED.
#12898 posted by roblot on 2013/05/17 01:34:22
I didn't see anything wrong with the tutorial's end result though. Quark users should check out:
http://quakeone.com/forums/quake-talk/other-games/5783-hexen-ii-community-work-discussion-90.html#post127434
follow the links, could be useful. Grid at 1 unit shouldn't be a problem. I'm making brushes at 0.2 units max thickness, all on grid for .bsp models.
#12899 posted by necros on 2013/05/17 02:07:40
i didn't know arghrad had phone shading:
Arghrad's Phong shading feature allows smoothing on rounded shapes. Two conditions are required to obtain this effect:
- each face must have a light value >0
- the texture must be wrapped without break
I think better criteria would be to have some critical angle on which phone shading would be applied (let's say 45 degrees). I wonder if that could be added to other light utilities?
Necros:
#12900 posted by metlslime on 2013/05/17 02:16:39
that's how q3 light tools do it.
Arghrad works but is very manual, you can effectively make any edge "soft" or "hard" by carefully setting adjacent faces to have the same or different light values.
#12901 posted by slapmap on 2013/05/17 22:09:03
Apparently Quark doesn't fuck up on rounding float-point like most other editors do.
Necros: Q1rad does that (essentially a HL light compiler made to work with Q1 BSPs)
@JPL
#12902 posted by mfx on 2013/05/18 00:43:09
yeah that�s neat!
Slapmap:
#12903 posted by necros on 2013/05/18 04:25:29
i was hoping to get that functionality in a modern light util though... i'd really like to keep all of aguirre's enhancements as I couldn't do lighting without them.
Slapmap
#12904 posted by SleepwalkR on 2013/05/18 09:13:14
Quark has the same problems with floating point coordinates as other editors, unless it knows magic ;-). What does Quark do better than other editors?
#12905 posted by slapmap on 2013/05/18 15:16:41
Quark doesn't mess up brushes on non-90� rotation. As that tutorial in particular shows it works fine, but wouldn't work in any editor I know - Radiant, WC or BSP - the rotated brushes would be slightly distorted and unaligned. Apparently Quark has better precision.
Also Quark has 3-point float texture coordinates keeping the textures aligned even with rotation.
I'm not a quark guy, don't know what else it does better.
Texturing...
#12906 posted by mfx on 2013/05/18 15:48:51
is also very well implemented.
Uhm
#12907 posted by SleepwalkR on 2013/05/18 20:25:45
You're talking about two different things. I'm not sure about BSP, but neither WC nor Radiant support floating point coordinates at all. That's why brushes get distorted when you rotate them.
Quark allows floats for the plane points that define a plane, but that comes with its own set of problems. It can cause microleaks. It's not a problem for pipes, but as soon as you have brushes with floating point coordinates which are supposed to seal the map, you can run into all sorts of problems. But maybe Quark fixes these problems somehow?
The texture alignment thing is actually because Quark implements the Valve 220 map format, which later versions of WC also support.
Marksurfaces Are Evil
#12908 posted by Rick on 2013/05/19 00:37:11
and that's all I'm going to say about that.
When I started this map I made a promise to myself that I wouldn't exceed any of the normal Quake engine limits. I figured if I had no limits, I'd probably never finish the map (been working on it since 2007, so maybe that logic was flawed).
I've been re-texturing the map and in the process I made a few (very few) changes to the brush work. I'm absolutely certain that the changes reduced the number of actual brushes and visible faces, but the marksurfaces increased from 31763 to 31892. That's over 100! I only changed like 6 brushes. Very annoying.
Some adjustments to the geometry are unavoidable in order to work with the new textures, and I'm probably less than halfway done at this point. I sure hope I don't hit the limit before I finish the re-texturing.
Skirting The Limits
#12909 posted by Preach on 2013/05/19 03:01:44
I think the issue is that the number of marksurfaces can be affected by the order in which brushes are compiled into the map. It's an unstable algorithm. Deleting a brush might move another one higher up the compile limit, where it doesn't fit as efficiently.
Has anyone ever tried permuting the order of the brushes in the compiler, either according to some design (like sorting on the x axis or largest to smallest volume) or even randomly? Given how much faster bsp is than vis, I'm sure that running the former a few dozen times with different orderings would not be a big burden. If you have a target like marksurfaces in mind, you can then take the ordering which maximises it.
I suppose what with the map format being basically text, you could even do it with some kind of script. Generate a bunch of permuted map files, compile them all in turn, and keep the one with the best output...
Mocksurfaces
#12910 posted by negke on 2013/05/19 10:29:52
Yes, the order seems to matter. Already ranted about this for my MCE map. There were times where I had to move newly inserted brushes further up the list to bring the count under the limit. But it's also about the brushes' 'relationship' between one another, so to speak.
For, at other times, moving the monster teleporter room up and down in 8-unit steps would influence the marksurfaces.
Even supposedly neat or clean brushwork sometimes turns out to be counterproductive in this sense. It's really strange and really annoying.
The QBSP in rebb's BJP mod features an experimental switch that changes the algorithm somewhat which can reduce the marksurface count considerably. In my case, it was around 1000 lower - I didn't notice any issues this may have introduced.
Negke
#12911 posted by mfx on 2013/05/19 10:41:10
that -forcegoodtree switch you mean?
seems to work.
Interesting
#12912 posted by RickyT33 on 2013/05/19 12:55:25
..help Urgent Needed
#12913 posted by boldo on 2013/05/19 18:58:27
hi, not the proper thread but haven't found any better
Quake Gpl exploit for my own commercial game:
1)what if I use Quake original �knight� model base and animations(idle,stand,attack,..) on my own model ??
frame coordinates numbers are proprietary assets?!
2)And, a bit paranoic I know, should I delete original Quake references (frame names, monster names, sound wav,..) from .qc files ??
ps:
of course with my game I would do myself all graphic assets(monsters,textures,levels)
tHaNk
Liquid That Moves
#12914 posted by Cocerello on 2013/05/19 21:13:30
One quick question. How do i make a liquid brush that moves, like the one at the start map of Scourge of Armagon?
Everything i tried until now makes the brush solid.
I Have No ID, But I Like Caramac Candybars..,
#12915 posted by madfox on 2013/05/19 21:15:58
1)if you only change the tex set and keep original animations or even base models, I don't think so.
If you make your own mmonsterarium, own animations and textures, why not
2)For code I think it smart to write your own, rather than keeping originals.
New monsters are reliable when standing on own ground.
ps:
don't forget your own weapons and callibration.
Cocerello
#12916 posted by madfox on 2013/05/19 21:31:12
First level of Scourge Of Armagon - The Pumping Station -
Tell me where are the liquid brushes that move?
Func_bobbingwater
#12917 posted by madfox on 2013/05/19 21:53:48
it's one of Hipnotic's feathers in the qc.
you can use it by using the progs.dat from the Scourge of Armagon,
or be clever and extract it from the hipnotic.qc and use it in your own mod.
Source Scourge Of Armagon => hipnotic.qc
http://quakeone.com/navigator/
download the Hipnotic DevKit.
So
#12918 posted by madfox on 2013/05/19 21:59:23
all you need is the HIPWATER.QC and add it to your own qc file.
If you open the start.bsp you can see it added as:
model func_bobbingwater
Thx
#12919 posted by Cocerello on 2013/05/19 23:13:26
But for now i'll have to pass on using it. I'm an almost complete newbie, the hipnotic.fgd that i got from Quaketastic isn't loaded by WC, and this is for SMP_170, and i'm short with time already.
For the next time i promise that i'll check better the list of entities in the Forge, that entity is there and explained.
Madfox, check 12914 again, i said start map, not hip1m1 map. :)
#12920 posted by sock on 2013/05/19 23:20:18
/*QUAKED func_bobbingwater (0 .5 .8) ?
Used to emulate water. To use, create a thin water brush and center it
on the water line of the body of water to bob. The amount of the bob
is the depth of the brush.
The hipnotic func_bobbingwater QC code is NOT moving water. You can create moving liquids but you will need a special QC/entity and extra functions in the client.qc file.
Staggered Teleport Times
if I wanted to stagger when monsters teleported in would I be best using trigger relay or something? I tried putting a delay key on trigger_teleport but it didn't seem to work :-/
|