Inside3D!
     

Curves, textures etc

 
Post new topic   Reply to topic    Inside3d Forums Forum Index -> Mapping
View previous topic :: View next topic  
Author Message
ajay



Joined: 29 Oct 2004
Posts: 295
Location: Swindon, UK

PostPosted: Tue Apr 06, 2010 2:01 pm    Post subject: Curves, textures etc Reply with quote

I'm making a (pseudo, obviously) curved wall in worldcraft (quake.bsp, not HL) and am making some headway in aligning the textures and making the curve as smooth as possible. I would, however, appreciate any tips mappers have re: curved structures.
Cheers.
_________________
my site
Back to top
View user's profile Send private message MSN Messenger
Lardarse



Joined: 05 Nov 2005
Posts: 243
Location: Bristol, UK

PostPosted: Tue Apr 06, 2010 3:55 pm    Post subject: Reply with quote

Unless you're trying to make it look like a seamless curve (which I think it impossible), the best thing to do is to is to make it a polygon, but with the corners at strategic places. You can go for precision, but it's better if all of the corners are on integer co-ordinates (can cause problems if they're not), and sticking to a larger grid makes scaling it up or down a lot easier.

For a circle centered at 0 with radius of roughly 8n, you want to either have your corners at (8n,2n) (6n,6n) (2n,8n) and all mirrored points, or (8n,0n) (7n,4n) (4n,7n) (0n,8n). The first one usually looks better, especially for rooms and room-sized objects, as the axially-aligned sides make it look more natural (and make it easier to connect with other things if you need to). Smaller objects might look better with the second one (I'm thinking pipes with this... most mappers use a 8-sided shape for pipes, but this "rotated 12" might be better). It's also best if n isn't too large. 256 is about the upper limit for a 12-sided.

At 512 and above, 24 sided looks better. I don't remember the absolute co-ordinates for this one, but, going around the circle, the diagonals are 1:4, 2:4, 3:3, 4:2, 4:1, 4:0. I've heard mentions of 48-sided, but I don't know how serious they were...

There are other numbers of sides that can be used. 8 is popular for pipes, although they look a little too angular to me. I think there's also a 16-sided method, but I've not used it.

It's worth noting that these methods are still useable in Q3BSP, and especially useful if you're making a rotating brush (as patch curves don't give a perfect circle).

As for texture alignment on curves, I can't help you. Would like some advice on that myself...
_________________
<ekiM> Son, you're writing data structures your CPU can't cache.
Back to top
View user's profile Send private message
Chip



Joined: 21 Jan 2009
Posts: 314
Location: Romania

PostPosted: Tue Apr 06, 2010 4:57 pm    Post subject: Reply with quote

Me, me! QuArK does texture alignment on multiple planes. Exactly what you need for an arch, let's say. It's as easy as selecting all the faces you need the texture aligned on, and moving them in a separate group.

Combine this with q3map2 compiling using -dust (resembling ambient occlusion) and there you have it!

I'll do a test for you and post a screenshot here.
_________________
My Projects: Quake 1 Mods | OpenQuartz 2 | ChipQuake
Back to top
View user's profile Send private message Visit poster's website
ajay



Joined: 29 Oct 2004
Posts: 295
Location: Swindon, UK

PostPosted: Tue Apr 06, 2010 6:22 pm    Post subject: Reply with quote

This is where I've got to after an annoying 2 hours of tweaking:




Lardarse: thanks for your detailed reply - I didn't understand all of it (my problem not yours!) I'm not so precise, I do most of it 'by eye' Wink
_________________
my site
Back to top
View user's profile Send private message MSN Messenger
Chip



Joined: 21 Jan 2009
Posts: 314
Location: Romania

PostPosted: Tue Apr 06, 2010 7:09 pm    Post subject: Reply with quote

I see repetition there. A nice way of having a curved wall is applying a non even texture, with cracks or something along the whole curve.

No time yet to have an example for you, I only created the curved wall. I'll add a texture soon, could be tonight. Wink
_________________
My Projects: Quake 1 Mods | OpenQuartz 2 | ChipQuake
Back to top
View user's profile Send private message Visit poster's website
ajay



Joined: 29 Oct 2004
Posts: 295
Location: Swindon, UK

PostPosted: Tue Apr 06, 2010 8:06 pm    Post subject: Reply with quote

I see what you mean re: repetition, but it's less actually repetitive than it looks. I'm fairly happy with it, I may try to improve, but first I'll finish the rest of the building and see what it looks like - if it glares out to me I may spend some more time - I always like to balance frustratingly impossible attempts at perfection with feelings of success due to actually finishing something.
_________________
my site
Back to top
View user's profile Send private message MSN Messenger
Chip



Joined: 21 Jan 2009
Posts: 314
Location: Romania

PostPosted: Tue Apr 06, 2010 8:12 pm    Post subject: Reply with quote

ajay wrote:
I see what you mean re: repetition, but it's less actually repetitive than it looks. I'm fairly happy with it, I may try to improve, but first I'll finish the rest of the building and see what it looks like - if it glares out to me I may spend some more time - I always like to balance frustratingly impossible attempts at perfection with feelings of success due to actually finishing something.


Totally agreed! That's why my project stalls so much. I try to improve some useless areas, instead of focusing on the big picture: having a finished mod.
_________________
My Projects: Quake 1 Mods | OpenQuartz 2 | ChipQuake
Back to top
View user's profile Send private message Visit poster's website
Electro



Joined: 29 Dec 2004
Posts: 241
Location: Brisbane, Australia

PostPosted: Tue Apr 06, 2010 9:04 pm    Post subject: Reply with quote

Needs smoother lighting across the angles. Some compilers have options to adjust the angle threshold.
_________________
Unit reporting!
http://www.bendarling.net/
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
ceriux



Joined: 06 Sep 2008
Posts: 968
Location: Florida, USA

PostPosted: Tue Apr 06, 2010 10:14 pm    Post subject: Reply with quote

in worldcraft pick the texture application tool, click the start of your wall ( the first sections texture) hold alt then click the next part , continue on then tweak it .
_________________
QuakeDB - Quake ModDB Group
Back to top
View user's profile Send private message Yahoo Messenger
Spike



Joined: 05 Nov 2004
Posts: 944
Location: UK

PostPosted: Wed Apr 07, 2010 7:25 am    Post subject: Reply with quote

/me agrees with Electro.
It doesn't look smooth because the lighting suddenly changes for each segment.
_________________
What's a signature?
Back to top
View user's profile Send private message Visit poster's website
ajay



Joined: 29 Oct 2004
Posts: 295
Location: Swindon, UK

PostPosted: Wed Apr 07, 2010 10:58 am    Post subject: Reply with quote

The lighting is actually the flashlight, which tends to make things look worse....
_________________
my site
Back to top
View user's profile Send private message MSN Messenger
Lardarse



Joined: 05 Nov 2005
Posts: 243
Location: Bristol, UK

PostPosted: Thu Apr 08, 2010 12:20 am    Post subject: Reply with quote

Doing curves "by eye" is risky.

I made a spreadsheet that works out where the points on cuves should be: http://pineapple.servegame.com/circle_room.ods

It assumes that you're making a circle (although you can use just the first part to make a half or quarter circle as needed). C2 should have the number of sides for the complete circle (which would usually be a multiple of 4), and C3 is the radius of the circle. The co-ordinates it gives from row 13 downwards (the stuff in between is the mathematics involved) are relative to the centre of the circle.
_________________
<ekiM> Son, you're writing data structures your CPU can't cache.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Inside3d Forums Forum Index -> Mapping All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2004 phpBB Group