Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jay Dolan

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 ... 42
46
Quake / Re: Mapcore's Quake 3 15th Anniversary Contest
« on: November 17, 2014, 06:23:32 AM »
Looks like you've got some fantastic entries. I especially love that first one.

47
Quake / Re: MAX_PATCHES, MAX_LIGHTS, Gotta be f***n kidding me...
« on: November 12, 2014, 01:09:18 PM »
You should be using `-chop 1024` for a map with such absurdly large surfaces. That will hopefully bring you down into a reasonable patches count. The MAX_LIGHTS message is an inaccurate error reported by qrad -- a typo, really. It has nothing to do with light entities. Rather, it's equivalent to MAX_PATCHES, which means that the compiler can't subdivide your map's faces into a reasonable number of patches to gather radiosity for them. While this limit is sort of arbitrary and modest for today's systems, the fact that you're hitting these limits should tell you something.

Even if you get that thing to compile, as soon as you throw entities into it, people will overflow when trying to connect because the entity baselines will blow out the 1400 byte packet size (MAX_MSGLEN). Your map is way too wide-open to VIS well.

Crap on the engine all you want, fucking thing's 20 years old. But this isn't exactly an example of fine mapping either :lol: The Quake engine was built for rendering indoor environments: not football field-sized box maps.

Here are a whole bunch of .map file sources you can use to learn how to make Quake2 maps:
https://github.com/jdolan/quake2world-data/tree/master/src/default/maps

48
Quake / Re: reals new Red Pak!
« on: July 17, 2014, 04:19:41 PM »

49
Quake / Re: reals new Red Pak!
« on: July 14, 2014, 04:53:23 AM »
Hehe. Q2W is and will always be 100% free and open source. It's goal is to borrow some of the best aspects of the Quake series and meld them into a game that is, while better in many regards, still undeniably Quake2. We should chat sometime when your pak is complete, if you're still looking to work on that kind of stuff.

50
Quake / Re: reals new Red Pak!
« on: July 13, 2014, 03:28:25 AM »
 :lolsign: TC:granny.. man that takes me back. What ever happened to that clown?

Foc, I'm really looking forward to seeing your pak. You realize that if you become a proficient modeler, I have no choice but to flatter and pester you until you agree to work on Q2W right? What an unlikely couple we may yet become  :heart:

51
Quake / Re: Crosshair alignment
« on: July 07, 2014, 04:46:17 AM »
I fixed this problem in Quake2World by doing a little trig in the game module. Each time you fire, I trace straight forward from your view vector to determine exactly what your crosshair was over, and from that impact point, I subtract your muzzle origin to determine the directional vector of your projectile. This way, the crosshair is dead-nuts accurate at any distance.  :bananaw00t:

52
Quake / Re: Quake 2 mapping
« on: June 24, 2014, 07:12:05 AM »
Pan is crushing q2dm* remakes for Q2W  :rockon:

53
Quake / Re: Quake 2 Map question
« on: June 21, 2014, 10:28:27 AM »
That looks sick, man. Nice work!

54
Quake / Re: Quake 2 Map question
« on: June 20, 2014, 09:17:01 AM »
MD2 supports up to 2048 unique verts defining up to 4096 tris:
https://github.com/AndreyNazarov/q2pro/blob/9d709fb9ccd4ca54be38d9b909c4517cbc0a6ebf/inc/format/md2.h#L33

Still, like Whirling says, with proper texturing, you'd be surprised how low-poly you can make your meshes. For example, the qforcer player model in Quake2World is around 1200 tris.



While he's an MD3, his geometry is well within the limits of even MD2. Just food for thought.

55
Quake / Re: Quake 2 Map question
« on: June 19, 2014, 08:08:23 PM »
MD2 does not have a grid system, but it does effectively "quantize" vertices to 0.125 units (okay, I guess you could call that a grid :D). What's really happening is that vertices are stored as 16 bit numbers in MD2. When the program goes to squash your 32 bit floating point vertex coordinates into 16 bits, some precision is lost (obviously). The smallest value representable in this 16 bit format is +/- 0.125. The largest value is +/- 4096.0.

Side bit of trivia: all entity positions in Quake2 are represented this way in the network protocol. It's actually why your player "drifts" side to side slightly when you try to walk straight forward and backwards.

For best results, you should create your model in a scale that is relatively close to what it would be in Quake units. That will minimize the clusterfucking that happens to it during export.

Another option, if both programs support the format, would be to use .obj for your interchange format. It natively supports floating point vertices (it's actually a text-based format).

56
Quake / Re: Quake 2 mapping
« on: June 19, 2014, 07:51:16 PM »
Electrified, I actually have a dozen or so .map files for Quake2World that you could open up in your editor of choice for Quake2. It's a lot easier to learn when you can fly around a map that someone has already built and poke / prod at it:

https://github.com/jdolan/quake2world-data/tree/master/src/default/maps

Ones that you likely have textures for include:

aerowalk.map
chastity.map
dreams.map
flesh-refinery.map
heavy-metal.map
pressure.map
rage.map

The rest would still load fine, but will be missing textures for you.

In terms of editors, I would recommend:

GtkRadiant 1.6.4 - Industry standard, best support for additional games
QERadiant - A stepping stone to GtkRadiant and adequate for Quake2
WorldCraft 1.6 - Quake1 mappers still cling to this, so you can probably find help from that community

57
Quake / Re: Quake 2 Map question
« on: June 18, 2014, 04:21:54 PM »
Right on. I watched jitspoe (Paintball2 maintainer) crank out a rocket launcher in 10 minutes in MilkShape3D. I couldn't do it, but I was really impressed with how efficient he was with it.

58
Quake / Re: Quake 2 mapping
« on: June 18, 2014, 04:17:47 PM »
Since no one has mentioned this yet..

Pan was nice / smart enough to archive the old RUST (GameDesign.net) mapping tutorials:
http://tastyspleen.net/~panjoo/rust/readme.html

Well worth a read through.

59
Quake / Re: Quake 2 Map question
« on: June 16, 2014, 08:50:56 AM »
I started mapping with Qoole in 1999, and then learned QeRadiant in 2000. I guess, having learned it when I was still a teenager, I never appreciated how odd / unintuitive it is. I've never found the mechanics of mapping to be difficult (with the exception of bending pipes) -- just the creative part :D

60
Quake / Re: Quake 2 Map question
« on: June 15, 2014, 03:31:18 PM »
Does anybody still check and/or post on that forum regularly? Been delving into learning modeling a little bit lately and it would be nice to have any place I could ask a question or two when I need to a get a decent answer within a day or two. I've asked a few questions on the Quark boards lately, and I doubt I'll ever get an answer.

The Q2 Cafe does still have activity, but it's almost entirely mapping-centric. For modeling, especially for Quake and Quake2, I would check out the Inside3d forums as well as #model_design on Freenode (this is the old Polycount community) as well as #terrafusion on QuakeNet (oldschool Quake mapping community, many of whom went pro and work in the industry).

Best of luck learning how to model! I was never able to pick it up.

Pages: 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 ... 42