#9019 posted by JneeraZ on 2009/08/25 19:18:14
In fact, if you've got a handle on things like how to do texture locking and breaking down meshes and that sort of math in general - we should get together and maybe do a cross platform version of ToeTag or something.
#9020 posted by Spirit on 2009/08/25 20:03:41
concave, not convex, right?
That feature would be a true killer feature.
#9021 posted by necros on 2009/08/25 20:05:03
dunno if this is what you mean, but it would be awesome if you essentially build a 3d mesh out of n-sided polys just like in 3ds max and the editor would automatically split ngons into tris. afterwards, it would look at the face normal and whichever direction is closest, north, south, east or west, it would simply extrude the face backwards, keeping it parallel.
ie: you make a collection of faces that face upwards, it would extrude the face down allowing you to make cool trisouped terrain easily. the same could be applied for caves.
#9022 posted by Trinca on 2009/08/26 01:05:51
Madfox looks very nice the frogman :)
The
#9023 posted by ijed on 2009/08/26 03:07:33
Type of advanced brush treatment you're describing isn't in any bsp editor I've seen (anyone else?) so if you need testing then let me know.
I'm pretty busy so testing to destruction I probably can't do, be an update a week wouldn't be a problem.
Moving Discussion Of New Map Editor
#9024 posted by Discoloda on 2009/08/27 05:34:09
Why?
#9025 posted by nonentity on 2009/08/27 12:56:31
#9026 posted by JneeraZ on 2009/08/28 13:54:02
Yeah, all the mappers are here. :)
Maybe
#9027 posted by madfox on 2009/08/29 02:35:02
all editors are there....
preach, you've got email.
Toetag
#9028 posted by Ron on 2009/08/29 13:55:26
Does Toetag work in Linux, since Apple's current operating system is mostly Unix based ?
No
#9029 posted by Spirit on 2009/08/29 14:17:44
Would using a GPU for VIS be a possible (and sensible) idea?
#9030 posted by JneeraZ on 2009/08/29 18:19:56
"Does Toetag work in Linux, since Apple's current operating system is mostly Unix based ?"
No, it heavily relies on Cocoa and Objective-C. The underlying OS isn't really a factor.
Linux Mapping
#9031 posted by grahf on 2009/08/29 21:08:03
Radiant is probably your best bet, either the venerable GTKRadiant or the somewhat newer fork NetRadiant.
Necros
#9032 posted by ijed on 2009/08/30 17:07:36
What went wrong with your building outside the limits experiment? I don't remember :P
I'm thinking of a similar sort of thing, a brushwork skybox.
The Hell, Will It Ever End!
#9033 posted by negke on 2009/08/30 19:39:59
99.60% and it takes longer than forever even on a quad core machine. At this rate, I estimate it will be done in around five days. However, the problem is that I will be out of town for a month tomorrow (I'll still have a computer available, but a slow one).
So, does anyone here by chance have a really fast machine and is willing to help me out? Willem, that 16 core thing of yours - would it be possible to use it for this or is it only for work stuff?
#9034 posted by necros on 2009/08/30 20:32:55
ijed: absolutely nothing! you can build outside the +/-4096^3 playable area to your heart's content, just don't ever let the player walk past that boundary because they 'loop' back to the opposite side of the map (like in pac-man) but the collision behaves as if you hadn't looped back.
also, don't let the player shoot projectiles past the boundary because they loop back too. if this is for RQ, it would be a good idea to place triggers along those boundaries to remove projectiles.
also, as a side-effect to this looping, you can't place any point entities outside the boundary, but bmodel entities are ok.
there is a hard limit though. you can't build past +/- 8192. anything beyond that doesn't get displayed at all. in fitzquake, it looks like you have farclip on-- it's just cut off at that point and you see the void (or hom).
this behaviour is attributed to the fact that the coordinate system of the server runs on variables twice as large as that of the client.
Negke
#9035 posted by Spirit on 2009/08/30 21:10:46
Play russian roulette: Set up a script that zips and uploads the file in 120 hours, then shutdown the pc.
#9036 posted by JneeraZ on 2009/08/30 21:37:01
negke
I could try and run it but it IS a work machine. I can't tie it up endlessly with a VIS process...
Hehe
#9037 posted by necros on 2009/08/30 22:15:25
with 16 cores, just keep like 4 for you and the rest for vis. :P
well, unless it's used for cg rendering or something and let me tell you, 16 cores rendering would be pretty damn badass.
Thanks
#9038 posted by ijed on 2009/08/30 22:45:46
Re: 9035
#9039 posted by necros on 2009/08/30 23:12:35
are you could just make a script upload the file every few days along with it's .vis file to the same spot and you can keep checking to see when you have a complete map by starting the vis process up on your slow machine.
Negke:
#9040 posted by metlslime on 2009/08/30 23:23:57
there is a hard limit though. you can't build past +/- 8192. anything beyond that doesn't get displayed at all. in fitzquake, it looks like you have farclip on-- it's just cut off at that point and you see the void (or hom).
this behaviour is attributed to the fact that the coordinate system of the server runs on variables twice as large as that of the client.
this is not quite right. Both server and client use floats for their coordinate system, but the network protocol uses a special 13.3 fixed point format when sending coordinates. This means 13 bits devoted to the integer part of the number, and 3 bits devoted to the fractional part. So the precision is 1/8th of a quake unit, and the highest possible number is 4095.875 (lowest is -4096)
so when a client is rendering anything with coordinates that come from the server, it will never be outside that range. But the server side location and physics are actually working, just what you see is wrong.
The question of how far quake can draw world polygons should just be covered by the gl_farclip distance, which is configurable in some engines. Not sure if there are any other factors besides that.
#9041 posted by Discoloda on 2009/08/30 23:43:01
I made a google group because this forum is not very efficient, its only one thread.
9040
#9042 posted by necros on 2009/08/30 23:58:00
oh sorry. when we were talking about it before, it was a little complex so i guess i forgot some of it.
i'm not really sure what was happening regarding that 8192 hard limit, but that no matter what gl_farclip setting i set, i could never seen beyond, what i was guessing would be 8192 units away from the origin.
there was a solid cut off with just void at that point that didn't move at all.
Necros:
#9043 posted by metlslime on 2009/08/31 05:32:11
hmm, must be some other cause then, maybe the vis tool uses some distance limit? Does it show up with r_novis 1?
|