I know C++, but am definitely not a programmer. I've never made anything more than a very simple text mode program, and i've got no idea how insim/outsim work. So, before I even delve into how to begin such a project I thought I'd ask the gurus if what I'm after is possible.
My idea started with the fact that it can get very lonely in the car during longer races. With nobody on the radio it's easy to lose track of what lap it is, how soon you should pit for tires, how much fuel is left, etc. So, I had an idea for an insim app that would watch for a particular lap number then play an audio file telling me it's time to pit for tires. Then I thought the same thing could probably watch for <X% fuel and play a message that I need fuel. The more I thought about it the more it seemed like a "generic" app would be the best bet. So, here's what I'm after and I'm wondering if it's possible...
I'd like to be able to specify parameters to watch for, and when those parameters are true, either play an audio file or display a message to screen. Here are a few examples:
if lap == "25" play file pitfortires.wav (for, say, a 50 lap race. pitting halfway through)
if fuel < 3% play file fuellow.wav
if lap == "2" play file pitwindowopen.wav
if lap == "24" play file pitwindowclosing.wav
Does anyone have any idea if this sort of thing is possible?
My idea started with the fact that it can get very lonely in the car during longer races. With nobody on the radio it's easy to lose track of what lap it is, how soon you should pit for tires, how much fuel is left, etc. So, I had an idea for an insim app that would watch for a particular lap number then play an audio file telling me it's time to pit for tires. Then I thought the same thing could probably watch for <X% fuel and play a message that I need fuel. The more I thought about it the more it seemed like a "generic" app would be the best bet. So, here's what I'm after and I'm wondering if it's possible...
I'd like to be able to specify parameters to watch for, and when those parameters are true, either play an audio file or display a message to screen. Here are a few examples:
if lap == "25" play file pitfortires.wav (for, say, a 50 lap race. pitting halfway through)
if fuel < 3% play file fuellow.wav
if lap == "2" play file pitwindowopen.wav
if lap == "24" play file pitwindowclosing.wav
Does anyone have any idea if this sort of thing is possible?