Vis
#8303 posted by madfox on 2009/02/18 19:52:04
I remembered with the Koho-vis test my computer ended upon 11 minutes, which I thought quiet fast.
The map I was making turned out on 87% after 5 days and it was there already 2 days.
I scratched the map because of 3 homs and started all over again.
Now making sure all polys were on integer grid.
The map turned out alright. And it still takes 6 houres, but that's understandable, having all on grid.
Still 2 homs prevent me from publishing it.
Spirit
#8304 posted by JPL on 2009/02/18 21:11:52
It is not the tool you are using (i.e QuArK), in my case this is the size of the map (i.e 7915 brushes), and the way it is built.
If you are doing crap, you can have the best equipment, it will not help you :P
Is Called Vis-blocking
#8305 posted by RickyT33 on 2009/02/18 22:16:16
if you have a map which has 8000 marksurfaces and r_speeds never go past 400 then it will vis in a few minutes.
If you have a map with 40'000+ marksurfaces and r_speeds rarely drop below 20'000 (at level 4) then it will take days.
RickyT123
#8306 posted by JPL on 2009/02/19 08:02:17
If you have a map with 40'000+ marksurfaces and r_speeds rarely drop below 20'000 (at level 4) then it will take days.
You are wrong: it can take a month !!!
Yes
#8307 posted by ijed on 2009/02/19 13:51:10
Around 30.
Ok...but
#8308 posted by Zylyx_ on 2009/02/19 14:18:13
that's still very very slow for something which todays machine should be able to compute in minutes.
#8309 posted by Trinca on 2009/02/19 15:02:49
just a tought, huge Q3 map take much time to compile?
Zylyx_
#8310 posted by JPL on 2009/02/19 17:48:43
that's still very very slow for something which todays machine should be able to compute in minutes.
I would say yes and no: the limitations come from the VIS algorithm itself that is a recursive algorithm, so with very huge and complex map that has tons of volume to inspect (VIS is based onto volume rendering) the runtime becomes very high...
Also, a big processor, not to say a multi core processor, does not help that much. First because most of VIS tool are not coded for multi-core processor, and also compared to what I have, it would only save 20% of the runtime best case I guess (i.e i have an AMD Athlon 2600+), and the bottleneck is not only the CPU only but the motherboard fequency and peripherals access (i.e to memory particularly)
Anyway, when a process run for thousand of hours (more than a month) you have to be patient, so 2 or 3 days less will not make the difference there IMHO... as I don't have any manager pressure to sort out my map ;)
Intersting...
#8311 posted by _Zylyx on 2009/02/19 19:38:10
This is very interesting. We were just talking about the saturation of CPU speeds in my computer and graphics architectures class today, especialy things like how the cpu works with fetching instructions (particurarly in terms of arithmetic processing dependacy and parallelism). It would be cool if there is a way to make this whole VIS process faster , actualy the entire compilation process, without having to sacrifice detail in the 3D model of the level. But I guess that would require re-writting a lot of things from scratch.
My interpretation of this is that the build tools such as the BSP, CSG, VIS and RAD perform a lot of heavy computations, which require CPU level ALU's (arithmetic logic unit) to compute. Seeing as todays dedicated graphics cards hold a lot of processing power, especialy when it comes to floating point calculations, and fully programmable rendering pipelines, I'm guessing it would possible to re-write and optimize the code to work the GPU's, which I'm assuming would speed things up dramaticaly. But who would want todo all that work :)?
All That Work?
#8312 posted by madfox on 2009/02/19 21:49:18
The Old One.
Model Mesh
#8313 posted by madfox on 2009/02/20 09:14:57
what makes the Q1 model files so irritating incompatible to handle...argh!
repeated message, i know but I almost learned Max3d manual on importing and exporting them.
They keep dragging on verticejumps and triangle catches.
Finally had my model boned and animated then it turned out rejected.
Starting from scratch won't mind, but manipulating excisting files can be a doughnut.
_Zylyx
#8314 posted by JPL on 2009/02/20 10:03:44
I'm guessing it would possible to re-write and optimize the code to work the GPU's, which I'm assuming would speed things up dramaticaly.
Indeed, I know some application prefers to use GPU instead of the CPU, because of the ALU performances, but it needs to adapt the software to be adaptable to the GPU... though...
Anyway, Quake standard does not like big map. It has not been built for what we are asking today. The community is constantly asking for bigger / better / more detailed maps, even if the VIS tools have made impressive progresses (thanks aguirRe !), the overall runtime is suffering... but this sacrifice is worth supporting it, as it enables fabulous maps and projects...
I think I'll try to contact aguirRe to get his point of view about using GPU instead of CPU, maybe he would accrpt to try the porting... who knows ?
Monster Statue
#8315 posted by JPL on 2009/02/21 18:53:51
Is it possible with Quoth to have monster statues, that will wake-up on trigger event ?
Lighting Question
#8316 posted by mechtech on 2009/02/21 19:38:25
#1 I use WC 1.6 it supports a color picker. The format is Quake2 0-1,0-1,0-1 for RGB. What is considered the standard 0-1 or 0-255 for RGB.
#2 What modern tools support the 0-1 format? (not Hmap2).
#3 Must obey the use of _color so as not to screw with Quoth's light entities.
Jpl
#8317 posted by necros on 2009/02/21 19:45:59
i'm thinking this: func_wall with model key set to the monster and appropriate frame (like you set up for a monster corpse).
then a trigger that kills the func_wall model and spawns in the correct monster.
maybe some debris spawners for effect and a func_togglewall on top of the func_wall to make it 'solid'.
Necros
#8318 posted by JPL on 2009/02/21 20:46:21
OK, thanks, I'll try it.
I thought it was something available with Quoth. It may be good idea to add such feature BTW ;)
What Do Dale Earnhardt And Pink Floyd Have In Common?
#8319 posted by Preach on 2009/02/21 21:14:49
You will probably run into a problem with the func_wall, "SOLID_BSP with a non BSP model". You can use mapobject_custom to similar effect, although you'll have the non-solid problem.
Oh Sorry
#8320 posted by necros on 2009/02/21 21:53:22
yeah, my bad. for my original post, i should have said func_illusionary instead, since func_wall doesn't work, but i totally forgot you added in the custom mapobj entity, preach. :)
But
#8321 posted by madfox on 2009/02/21 23:03:24
both fly a plane
#8322 posted by JneeraZ on 2009/02/22 19:22:40
Dale Earnhardt : "I'd hit it like a wall!"
Necros
#8323 posted by JPL on 2009/02/22 19:58:50
No problem ;) I'll test the method ASAP :D
Close...
#8324 posted by Preach on 2009/02/22 22:52:21
The real punchline is For both, their final hit was "The Wall"
LOL
#8325 posted by HeadThump on 2009/02/23 03:21:39
#8322 posted by Willem [24.199.192.130] on 2009/02/22 19:22:40
Dale Earnhardt : "I'd hit it like a wall!"
As for Dale Jr. I have seen him walk out of a bar with pair of fugly skanks on his arms. He'll hit on anything.
No Log Exists
#8326 posted by KamiKaze on 2009/02/28 02:28:49
When I run WC 3.33, it says the following for everything in the textures directory:
Error creating HLWAD: c:\program files\worldcraft\textures\id_base.hlwad ... details ...No log exists.
This is not such a big deal since I already have the Quake/Hipnotic/Raven etc textures converted and working. But if I want to convert new textures, it won't work.
Any ideas?
Hmm
#8327 posted by DaZ on 2009/02/28 12:33:30
Try using a program that can convert wc 1.6 wads to wc 3.3 wad files, wadconv.exe is a good one, but I dont know any links sadly. I think texmex can do this too, but I dont have a link for that either, sorry! :(
|