PDA

View Full Version : Q3A and Mandrake 9.1


DiscipleDOC
03-30-03, 11:28 PM
I am really pleased with mdk 9.1. I think this is the first linux distro that really found all of my hardware on my nForce2 board.

With that said, I do have a slight problem that's really bugging me. My usb intellimouse will not move in q3a. The wheel will work, but when I move the mouse, nothing happens.

I tried playing tuxracer, and everything worked perfectly on that. I have even played UT2k3, and it played with no problems.

Here's my XF86Config-4 file:
# ************************************************** ********************
# Refer to the XF86Config man page for details about the format of
# this file.
# ************************************************** ********************

Section "Files"
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.
FontPath "unix/:-1"
EndSection

Section "ServerFlags"
#DontZap # disable <Crtl><Alt><BS> (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
#DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "glx" # 3D layer
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
Option "XkbCompat" ""
Option "XkbOptions" ""
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/usbmouse"
Option "ZAxisMapping" "6 7"
EndSection

Section "Monitor"
Identifier "monitor1"
VendorName "Generic"
ModelName "1600x1200 @ 70 Hz"
HorizSync 31.5-88.0
VertRefresh 50-90

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine "1024x480" 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
EndSection

Section "Device"
Identifier "device1"
VendorName "NVidia"
BoardName "NVIDIA GeForce4 (generic)"
Driver "nvidia"
Option "DPMS"
EndSection

Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24

Subsection "Display"
Depth 8
Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 15
Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 16
Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection

Subsection "Display"
Depth 24
Modes "1600x1200" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubsection
EndSection

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen "screen1"
EndSection

Can someone help me?

EDIT: I modified the Option "Protocol" "IMPS/2" option.

Wolfman [TWP]
03-31-03, 12:27 AM
Try editing that file and changing the mouse protocol to the following and see if that helps. (I usually don't let Linux probe the mouse, as I usually do it manually and it seems to work better.)

Modify this in your mouse section.

Option "Protocol" "IMPS/2"


Wolf

DiscipleDOC
03-31-03, 01:34 AM
Originally posted by Wolfman [TWP]
Try editing that file and changing the mouse protocol to the following and see if that helps. (I usually don't let Linux probe the mouse, as I usually do it manually and it seems to work better.)

Modify this in your mouse section.

Option "Protocol" "IMPS/2"


Wolf

I did that and it still doesn't work. Any other suggestions?

Wolfman [TWP]
03-31-03, 02:06 AM
Strange, I use a Logitech Marble Trackball & Logitech Cordless Optical with those settings and it's works in Q3A, Q2, Heretic 2, UT and UT2K3.

The only other thing I can think of, is to use the mouse config tool and set it up as a Microsoft Intellimouse USB and see what happens. (I had to do this with RH8.0 else it wouldn't config my mouse properly)

Wolf

DiscipleDOC
03-31-03, 09:46 AM
Originally posted by Wolfman [TWP]
Strange, I use a Logitech Marble Trackball & Logitech Cordless Optical with those settings and it's works in Q3A, Q2, Heretic 2, UT and UT2K3.

The only other thing I can think of, is to use the mouse config tool and set it up as a Microsoft Intellimouse USB and see what happens. (I had to do this with RH8.0 else it wouldn't config my mouse properly)

Wolf

You see, that's the weird thing. Tuxracer works with the mouse, UT2k3 works with the mouse. It's just that q3a (my favorite game) don't work properly with it.

bwkaz
03-31-03, 09:48 AM
Isn't this thread ... yeah, it is. A double post from justlinux.com. Or if not, it's very, very simliar wording to a recent thread there...

The guys there told you to try installing the latest Q3 point release -- have you done that?

Wolfman [TWP]
03-31-03, 09:51 AM
I know that this question may sound somewhat silly... But.... Do you have the following two lines in your /homedir/.q3a/baseq3/q3config.cfg file???

seta in_dgamouse "1"
seta in_mouse "1"

Wolf

DiscipleDOC
03-31-03, 05:39 PM
Originally posted by bwkaz
Isn't this thread ... yeah, it is. A double post from justlinux.com. Or if not, it's very, very simliar wording to a recent thread there...

The guys there told you to try installing the latest Q3 point release -- have you done that?

I'm downloading it right now. I'll let you know if it works or not.

DiscipleDOC
03-31-03, 05:41 PM
Originally posted by Wolfman [TWP]
I know that this question may sound somewhat silly... But.... Do you have the following two lines in your /homedir/.q3a/baseq3/q3config.cfg file???

seta in_dgamouse "1"
seta in_mouse "1"

Wolf

Yes...both of those lines are there.

nikita
04-01-03, 07:35 AM
i had the same problem until i installed the point release 1.32b. u shoud search for it...hope it fixes the problem on ur computer too

regards