Bug 4070 - Addition of handiness (left/right/center) to Q3
Status: RESOLVED WONTFIX
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: unspecified
Hardware: PC Windows Vista
: P3 enhancement
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL: http://console.planetquake.gamespy.co...
Depends on:
Blocks:
 
Reported: 2009-05-25 13:27 EDT by Monk
Modified: 2011-07-07 19:03:21 EDT
3 users (show)

See Also:



Description Monk 2009-05-25 13:27:00 EDT
A command from Quake 2:

hand 
Type: Toggle

Default: 0

Description: Toggle the handedness of the player.

Values:
0 - Gun on the right and shots from the right.
1 - Gun on the left and shots from the left.
2 - No gun and shots from the center.

------------------

I assume in Q3 it would be something like cg_hand.  If this is something that's only able to be done in mod code rather than engine code, I do have a request that's still on the same line.

Currently our mod has a bunch of _1st models that are all right-handed.  If we wanted to make them left-handed, we would have to either translate them to move them left (which looks very odd) or remodel and re-rig them to be left-handed, which is a ton of work.  In Q2, the "hand" command basically (from my understanding) used some opengl commands to mirror the models around the center of your viewpoint so you kind of had a poor-man's left-handed model.

It is a cheap and easy way of getting left-handedness with minimal work on the mod creator.  However, I don't believe this is possible in the mod code where we'd normally muck around.  Maybe add some trap for that function or some way to expose that functionality to mod creators?

The background is that at one point someone wanted to port Dirty Quake 2 (based on Brazen) to the Quake 3 engine.  Traditionally, DQ2 used the Action Quake 2 assets but had a different codebase entirely.  So, the person wanted to use Reaction Quake 3 assets and port over the Brazen gameplay.  Problem was, there was no easy way to get akimbo everything or mixed akimbo everything without modeling it all from scratch.  You can see some screenshots showing the whole one-gun-per-hand thing they had going on:

http://xoperations.gaminggalaxy.net/dirty/images.html

Hard to see in some pics, but it was more than just the two pistols.  They had machine guns, knives, etc.

One of our requirements for our mod has traditionally been that it should work in a QVM so that it's cross-platform.  So if there were some way to expose this type of functionality so that a QVM-based mod would be able to do something with it, I think it would bring value to the engine overall.

I know there are people who will roll their eyes at the whole left/right handedness, but I have seen a project attempted and abandoned due to lack of this support so I think it's would have a larger impact than just making left handed people happy.  

If a mod team is blessed with an animator/modeler who can spend the time to generate both right and left handed models, they can safely ignore that extra functionality in the engine or remap "cg_hand" to load their models rather than let the engine mirror the model.  However, for one-man coding teams, I think it'd be very handy to have some type of ioq3-standard way to expose this functionality.

So, please consider adding this ability in one way or another!
Comment 1 Zachary J. Slater 2009-07-21 23:38:14 EDT
I'd like to have this.
Comment 2 gordon_hawley 2009-07-23 16:59:19 EDT
Found this code for changing weapon position...

http://web.archive.org/web/20071219193415/http://code3arena.planetquake.gamespy.com/tutorials/tutorial26.shtml

Might be a good starting point for the project.
Comment 3 Thilo Schulz 2009-11-09 07:25:30 EST
Done in rev 1743

Note: this change is game-code only. Use cg_drawGun 2/3 to make weapon left-handed/centered
Comment 4 ensiform 2011-06-30 17:14:02 EDT
This does not seem to work with gauntlet at all.  Changing the value to 2 moves the gun just slightly to the RIGHT even more rather that flipped to the left.  And cg_drawGun 3 makes it slightly less to the right but still to the right of cg_drawGun 1 (the default -> right).  Every other weapon seems to work fine.
Comment 5 Thilo Schulz 2011-07-07 19:03:21 EDT
I'm sorry, there's no easy way to fix this, which is why a fix is not gonna happen. The code for left-handedness relies on reversing the y-axis offset specified for each weapon. Usually the offset is negative so that the weapon appears on the right-hand side of the screen for right-handers, in the case of the gauntlet however that offset is very slightly positive so that setting to cg_drawgun 2 results in a displacement to the right side.
The only way to fix this would be to also mirror all weapons. That means, mirroring the models as well. The renderer would have to be changed for that and I guess it's not worth it.