The online racing simulator
Searching in All forums
(968 results)
Eclipsed
S3 licensed
Quote from Wenom :LFS needs a proper gamepad support. It is no longer early 2000 when you could just go to the store and grab a Microsoft Force Feedback wheel for under 100€ and race to the finish line as a winner with a clutch macro somewhere between 15 ms to 30 ms depending on how much fps you can get from your processor. Nowadays if you want a proper racing wheel you must throw atleast 500€ to the desk so you can get something to be competetive with. And that is just the wheel not including the pedals... :/

I don't understand what you mean... What's wrong with current gamepad support? And why you need to throw that much money for a wheel? Good drivers can spend the same ~100€ for Logitech DFGT and still be very competitive,not so good driver won't be competitive with G27,G28 or whatever else is better and costs half k€.
Boris Lozac
S2 licensed
Any DFGT users here, have you figured out the best wheel setings for AC? I just can't seem to find a sweet spot, after a while it feels like a completely different game for no apparent reason, without me chaning anything.
Today i saw some guy recommeding 0 minimum force (for G27 in his case)..
GenesisX
S2 licensed
Subjective is fine because force feedback is personal preference. It's just that I don't have my wheel or rig on campus :P I've always liked to take a car out for a spin and see if I'm able to hold a drift and that's always been a fine indicator.

Perhaps, comment on the below.

Is the driver able to "feel" the weight transfer of the vehicle?
Are the forces on the wheel feel dynamic or do they feel like they are just pre-recorded effects?

Standard hardware: something like DFGT or G27.
MadCatX
S3 licensed
Setting both EXCLUSIVE and BACKGROUND flags for keyboard or mouse is invalid and DInput will throw an error when you try that. You might therefore want to check that you're trying to modify the cooperative level only on the device you want to use. The handling of these invalid flags is perhaps different on WinXP which is why LFS crashed for you. If it's any help, I did it like this when I wanted to check for a Logitech G27 in my proxied dinput8.dll. BTW, I found out that calling Beep() from a proxy DLL is a crude but effective way to check that the code reaches a certain place Smile

1) An application has to enumerate the devices first so let's take advantage of that and enumerate them along with it

HRESULT myIDirectInput8::EnumDevices(DWORD a, LPDIENUMDEVICESCALLBACKW b, LPVOID c, DWORD d)
{
m_pIDirectInput8->EnumDevices(a, MyDevEnumCallBack, c, d);
return m_pIDirectInput8->EnumDevices(a, b, c, d);
}

2) Get some interesting info about a device during the enumeration

BOOL CALLBACK myIDirectInput8::MyDevEnumCallBack(const DIDEVICEINSTANCE* inst, VOID* context)
{
UNREFERENCED_PARAMETER(context);

/* Here is where we store the GUIDs of devices that we want to manipulate with later */
extern std::vector<GUID> gl_myG27Instance;

/* Check the device's identity */
if ((inst->guidProduct.Data1 == G27ID) /* || (inst->guidProduct.Data1 == DFPID) */) {
/* Check if we already have this device added */
if (gl_myG27Instance.size() > 20)
return DIENUM_CONTINUE;

for (std::vector<GUID>::const_iterator cit = gl_myG27Instance.begin(); cit != gl_myG27Instance.end(); cit++) {
if (IsEqualCLSID(inst->guidProduct, *cit))
return DIENUM_CONTINUE;
}

gl_myG27Instance.push_back(inst->guidInstance);
}

return DIENUM_CONTINUE;
}

3) OK, now we know the GUIDs that reference the devices we're interested in so let's intercept only those devices */

HRESULT myIDirectInput8::CreateDevice(REFGUID a, LPDIRECTINPUTDEVICE8W *b, LPUNKNOWN c)
{
extern std::vector<GUID> gl_myG27Instance;
std::vector<GUID>::const_iterator cit;
for (cit = gl_myG27Instance.begin(); cit < gl_myG27Instance.end(); cit++) {
if (IsEqualCLSID(a, *cit)) {
/* A G27 (or DFP) found, take control over this device */
// global var
extern myIDirectInputDevice8* gl_pmyIDirectInputDevice8Array[];

LogMessage(L"DI::CreateDevice> Creating DIDevice");

// we intercept this call and provide our own "fake" Device Object
HRESULT hres = m_pIDirectInput8->CreateDevice(a,b,c);

/*
* Check for error
*/

// find free Device slot
int i;
for (i=0; i<MAXNUMBER_DEVICES; i++)
if (gl_pmyIDirectInputDevice8Array[i] == NULL) break;

/*
* Should return an error if i == MAXNUMBER_DEVICES
*/

// Create our own Device object and store it in global pointer
// note: the object will delete itself once Ref count is zero (similar to COM objects)
gl_pmyIDirectInputDevice8Array[i] = new myIDirectInputDevice8(*b, i, *cit);

// store our pointer (the fake one) for returning it to the calling progam
*b = gl_pmyIDirectInputDevice8Array[i];

LPOLESTR guidHash;
HRESULT guidHRes = StringFromCLSID(a, &guidHash);
if (guidHRes == S_OK) {
std::wostringstream oss;
oss << L"DI::CreateDevice> Creating DIDevice, GUID " << guidHash;
LogMessage(oss.str().c_str());
CoTaskMemFree(guidHash);
} else
LogMessage(L"(WARN)DI::CreateDevice> Unable to convert GUID to string.");

if (hres == S_OK)
LogMessage(L"DI::CreateDevice> Device sucessfully created.");
else
LogMessage(L"(WARN)DI::CreateDevice> Unable to create device.");

return(hres);
}
}

/* Not a G27 (or DFP), don't touch this device */
LogMessage(L"DI::CreateDevice> Not a G27, ignoring.");
return m_pIDirectInput8->CreateDevice(a, b, c);
}

The code above is far from brilliant but it seems to have solved the problem in my G27 LEDs hack.
Last edited by MadCatX, . Reason : Pointed out two obvious issues in the code of step 3
diegofkda
S2 licensed
Hey, I loved to hear this story. You put a smile on my face. Please, be the dad I always dreamed with Smile.

Well, the wheel you are looking for will depend of what you want to use it for (obviously simracing I guess... huh). It's always good to consider that G27 never felt bad, it's good enough for a really good price, and it's decent enough for starting at simracing. Though, Fanatec wheels will feel much better, there's a reason why they are more expensive. I highly recommend them for your use at least, an adult hungry of simracing. They make the big difference with the rest in my opinion. Now, considering your kids, I'd go for something cheap for them, like a G27, or even cheaper, like a Driving Force GT. Comes with a sequential shifter, shift paddles and no clutch. It feels very similar to the G27.
lukelfs
S3 licensed
Definitely go for the T300RS, walks all over a G27, I run a T500RS myself and it is great, fast, wheel feels great, it's quiet and the force is way way more accurate and sharp.
Timo1992
S3 licensed
Get a G27, I think in your country it's about 218 pounds.

http://www.amazon.co.uk/gp/product/B00CM2R1GA/ref=pd_lpo_sbs_dp_ss_1/275-7654515-5682724?pf_rd_m=A3P5ROKL5A1OLE&pf_rd_s=lpo-top-stripe&pf_rd_r=0STV8CBYPPCDBTH2B3YH&pf_rd_t=201&pf_rd_p=569136327&pf_rd_i=B002PHN5W6

You won't find any better wheels for that money. And if you just want to have some fun with public driving on cargame or doing some fun leagues like the Rony's tuesday races or AWD Winter Series it's the best option for you.

And if you will get more into serious Simracing at some point, you will always buy a Thrustmaster T500 or some Fanatec wheel base with different rims etc, a rig and so on.....

But for now the G27 should suit you perfectly (Don't forget there's also the possibility to mod the G27, watch a few youtube vids for that...although I would only do this if it runs out of warranty).
Forbin
S3 licensed
FWIW, I had an Act Labs Force RS, and it's utter rubbish compared to a Logitech G25/G27, let alone the more expensive options.
Last edited by Forbin, .
Drifting Real life?
PrimeFamily
S3 licensed
Hey!

I have been planning to try out drifting in real life, like on a track in like 1-2 years and I wonder if there is big different from LFS? I drifting with G27 with force feedback and things like that. And as I can see on YouTube, the wheel is pretty much the same.

Of course there is more difficult in real life then the game, but it's pretty much the same basics, isn't it?

Cheers Smile
MadCatX
S3 licensed
The kernel in stock Ubuntu 14.04 is 3.13 which is unfortunately one version too old to detect your revision of the G27 correctly. You can use LTWC just to switch the wheel to its native mode and set the range via sysfs. All "smarter" Logitech wheels show themselves as "Logitech Driving Force" (046D:C294) at first and have to be switched to their "native" modes by the driver. The driver in kernel 3.13 doesn't recognize your G27 correctly and leaves it in the compatibility mode, therefore you cannot change the range.
Kidastronaut
S2 licensed
Dell OptiPlex 760 Desktop
Intel Pentium Dual Core E5200 2.5GHz Processor (not great I know)
8GB DDR3 RAM
Nvidia GTX 750 ti (2GB DDR5)

My GPU is a lot better than my CPU.

One thing I've noticed is that I get significantly higher frame rates at 1400x1050 resolution than I get at a LOWER resolution of 1024x768. I'm hoping that the oculus rift DK2 is more reliant of the GPU and that my GPU will do most of the work and not rely on my less than stellar CPU.

I'm not sure if it's relevant but I use a logitech G27 wheel.
Last edited by Kidastronaut, .
PrimeFamily
S3 licensed
What kind of team are you looking for? Drift
Age: 16
Country: Sweden
Preferred Car/Track: XRT
Average Laptime on Your Preferred Car/Track: I'm not racing m8, drifting only. So no laptime.
How Active Are You? Playing at least 1 time per day
What Kind of Control do you use? Logitech G27
Time Zone: GMT +1
MadCatX
S3 licensed
What kernel version are you running? Support for this revision of G27 has been available since 3.14. It won't explain the other issues but I can't think of anything that would except that you might be using /dev/input/js instead of /dev/input/event device in games which might give you some unwanted deadzones.
PrimeFamily
S3 licensed
Try to NOT slide with big amount of degrees. Just feel the spinning first of all, you can only steer 36 degrees without tweaks.

I recently teached my brother how to drift. He managed to pull out some really smooth drifts after just a week.

And last thing, if you want to drift smoother, get a wheel. Thrustmaster or G27. It's easier to keep a drift with a wheel Smile
Brt38
Demo licensed
I have exactly the same problem (impossible to write in range file):

$ echo 540 > /sys/module/hid_logitech/drivers/hid:logitech/0003:046D:C294.0006/range
$ cat /sys/module/hid_logitech/drivers/hid:logitech/0003:046D:C294.0006/range
270
$ lsusb -s1:4 -vvv | grep bcdDevice
bcdDevice 12.39

So I used ltwheelconf:

ltwheelconf --wheel G27 --nativemode --autocenter 100 --rampspeed 1 --range 540

It works almost well : resulting range is not 540 degrees, but something like 810 degrees. Moreover I get about 200 degrees of dead zone, whatever the configuration I set in games.

So I have to play with the driver default range of 270 degrees. Except the range, everything is working well.
loganawells
S1 licensed
Hi LFS world! I just finished building my computer, picked up a G27, and started playing this. It's my first racing sim and so far I love it! It's so addicting!!!

I'll upgrade through the licenses after I play more and get better.
coldstar240
S2 licensed
Wow this post is old. But hey I got the game not too long ago, maybe about a week ago. I didn't do the demo, I just jumped right in on the S2 license. Uhm, I mainly have just drifted with my G27. It was the main reason I got the game. However, after reading a writeup on the wiki about tuning basics, I had a bunch of fun and I would like to further better myself in racing. Plus the AI pisses me off so much, so I practice alone.
New to drifting and have no idea what to do.
Finn61
Demo licensed
I have a logitech g27 and I got the game a couple of hours ago and just tried it now, tried the second car with 140hp, tried it around the first track and every time I tried to go side ways I would spin out and crash.

Does anyone have any car mods I can add for more HP.

What tune should I use and how can i properly setup my g27 to go with it, thanks.
Gutholz
S3 licensed
Yes, gas/brake would be with the gamepad. Either via the analog-sticks (the little joystick things) or via the shoulderbuttons at the back. If I hold a gamepad in front of my wheel it looks like it might work, but no idea how useful it really is or how comfortable. If one is willing to take the gamepad apart then I could see it working...


Thrustmaster RGT Force feedback on ebay.nl:
http://www.ebay.nl/itm/Volant-Thrustmaster-RGT-Force-feedback-pro-complet-avec-pedales-PC-Playstation-/201254425022?pt=LH_DefaultDomain_23&hash=item2edbb2d1be

The problem with your wheel seems like the problems that can happen to any wheel:
potis/encoders coming loose or breaking in some way.
Here it is explained for logitech pedals but similiar principle in all controllers: http://web.axelero.hu/mozso/momo_e5.html


---

I searched a bit through internet and found some things, so a random unsorted list follows:

Adapter to put the Simracewheel on a logitech base:
https://www.youtube.com/watch?v=DtNjBoWFBkI


http://www.zroso.com/index/index.php?option=com_content&view=article&id=48&Itemid=56
"Clutch paddles operate on separate axis and can be used for throttle and brake if you can't use pedals."
Note that this just the wheel itself. It is supposed to be used with a Logitech G25/G27 wheelbase or other. Looks good but very expensive..


Older similiar thread:
https://www.lfs.net/forum/thread/4257-Who-knows-a-wheel-with-analog-levers%3F
mentions "ThrustMaster Enzo Force Feedback Wheel"

I found some postings mentioning that this one has analog paddles:
http://www.amazon.com/Racing-Force-Feedback-Pedals-Xbox-One/dp/B00GSJAQ9W
From the picture it does seem to have two extra paddles under the shifters, but could not find that in product description.

This forum: http://www.gamespot.com/forums/pc-mac-discussion-1000004/steering-wheel-with-pedals-on-wheel-29306574/?page=1#js-message-338514866
mentions "the original Logitech Driving Force (not the Pro or GT versions; those have digital paddles)."
( http://www.amazon.de/Playstation-Driving-Force-Pro-Logitech/dp/B0001YNHPU/ref=sr_1_cc_6?s=aps&ie=UTF8&qid=1420226355&sr=1-6-catcorr&keywords=Logitech+Driving+Force can not buy there anymore but has a picture)

"Logitech Wireless wheel" seems to definately have analog levelers.
But otherwise it seems a bit small and toy-ish. ( https://www.youtube.com/watch?v=IA5rC4IAnD8 )

"Hand controls on xbox 360 racing wheel"
Found this interessting because it uses the handcontrolls of a real car:
https://www.youtube.com/watch?v=aIzKczvrjhM


Basically it seemed to me that the only wheels with analog paddles are eiter:
a) old ones, like your RGT-Force and not sold anymore
b) very expensive high-end stuff
c) something self-made
So maybe an idea to look at other ways instead of analog paddles.

Here someone steers basically with one arm. Maybe that is worth a try?
https://www.youtube.com/watch?v=zczdaGbyTUw
Means you could use the non-steering hand to controll gas/brake in some other way...maybe with a joystick? Or again with a gamepad that you somehow fix to the table, because joystick has both gas/brake on same axis...
Bean0
S3 licensed
A similar problem on G25/G27 is that the 'optical encoder' within the wheel becomes loose and rotates on the shaft instead of remaining fixed as the wheel turns.

There are a lot of videos showing the fix for this. You could open up your wheel and see if it seems to work in the same way.

Also, there is a used RGT on ebay for only £20 here.

Smile
mamisano
S3 licensed
Check out NewEgg - I just picked up a G27 for $199 today. They go in and out of stock so check regularly. I have been sitting on the sidelines for a while now using an old Logitech Rumble game pad and decided to take the plunge on a wheel.
dawesdust_12
No longer welcome
It's funny you mention the G27... I recall someone actually mounting the simraceway wheel to the G27, using the G27 for the steering rotaiton and FFB, but the SimRaceway for the rest of the buttons. An expensive solution though unless you could find a G25/G27 that was just the wheel, no pedals + shifter
Timo1992
S3 licensed
Cars Owned: 7/41

Tracks Owned: 12/67

Next Billing Date: 2015-03-29

Sounds good Smile

I will definitely not buy all the content, I just figured out that the max. amount of content (tracks and cars) I'd purchase will be around 110-120 dollars, so that's really ok for me. Smile Also ordered the G27 today, looking forward to do some first races in the Skip to increase my iRating, which is currently at 1557. For MoE I will need 1900 as one guy told me in the iR forums.

Yeah will be difficult to find any team for the upcoming 24 hours at Spa, so if somebody knows a team which needs drivers don't hesitate to contact me Big grin

Thanks for your help so far guys!
Timo1992
S3 licensed
You're right and I already had a G27 so a DFGT would be a big step backwards IMO. Smile

Well honestly at the moment I'm doing a shitty sidejob in the discotheque while getting my A levels. So I don't have a lot of money but I want to get back to racing Smile
Kristi
S3 licensed
DFGT doesn't even compare to the G series in quality in my opinion. Just go for the G27, if that's your budget.
FGED GREDG RDFGDR GSFDG