The online racing simulator
Searching in All forums
(135 results)
JogDive
S2 licensed
Do you need the source code how to bind a gaming device with direct input and use it ? i will give you my source code of JBindX and you can extend the keybind function to control more than one key. this app was only made for push to talk in comm apps
JogDive
S2 licensed
Quote from Scawen :The changes only affect :

1) races that are over 1 hour long,
2) races over 254 laps.

I just assumed that the programmers will update their InSim programs, in time for any long races.

I wouldn't want programs to just exit saying they don't know the protocol, or something like that, for such a tiny change as this.

Yes sir !
JogDive
S2 licensed
[Updated 22.04.2006]
Version 1.2 is online !
Fixed:
Sauber BMW support.
Added Aston Grand Touring and Aston North Track.
Fixed the InSim text filter function.
Ports will be entered and stored with the server address.
Last edited by JogDive, .
JogDive
S2 licensed
[Updated 22.04.2006]
Version 1.2 is online !
Fixed:
Sauber BMW support.
Added Aston Grand Touring and Aston North Track.
Fixed the InSim text filter function.
Ports will be entered and stored with the server address.

Edit: Found a bug and fixed it in version 1.2. please download version 1.2 again if you installed it!
Last edited by JogDive, .
JogDive
S2 licensed
Version 1.2 is online !

Fixed:
Sauber BMW support.
Added Aston Grand Touring and Aston North Track.
Fixed the InSim text filter function.
Ports will be entered and stored with the server address.

Edit: Found a bug and fixed it in version 1.2. please download version 1.2 again if you installed it!
Last edited by JogDive, .
JogDive
S2 licensed
That is all what i need , thx !
JogDive
S2 licensed
I need detailed information about the new Aston tracks. Could anybody help me ?

Edit:
Fixed but not released yet (Client):
- Sauber BMW support
- The server adress box stores the port number and will be set on select
- Added Aston Grand Touring and Aston North
Last edited by JogDive, .
JogDive
S2 licensed
I´m 6 seconds better with the FOX (Q setup) on South City with the new physic improvements
JogDive
S2 licensed
Thank you very much !

I was still waiting.........
JogDive
S2 licensed
Hi Sam !
yes that would be complicated because you have to switch between servers with the DidiLink server app. I think CrazyIce is developing that what you are searching for

But you can start DediLink Server for each Server. The process start options with DediLink Server starts a new LFS dedicated server for itself (checked by process id) After each successfull connect with the DediLink client, the server ips will be saved the ip combo box (but not the ports,try to use 10001-10015). Thats a possible solution now but don´t forget unique ports for servers and insim access.

Edit: I think thats a needed feature to control more than one server and have simultanous insim access.Give me some time...
Last edited by JogDive, .
JogDive
S2 licensed
has anybody information about new trackstrings or the "BMW F1" car string ??
I will upload a fixed Dedilink version for the new patch today or tomorrow
JogDive
S2 licensed
Thank you Dygear !
JogDive
S2 licensed
Me is using the server/client through a firewall during the whole development phase. nearly everybody of my beta testers used a router. Who is not using a router in the wild ?? Please don´t blame network problems on my programm.

If you want a troubleshooting, why don´t u post the type of router, the software running on it and some paramaters from your net...net configof hosts/router...dedilink error messages..and so on ??

Please give me response to my questions and i will have a look. Did you followed all steps in the server readme ?
Last edited by JogDive, .
JogDive
S2 licensed
1. Marburg / Hessen / Germany
2. Harburg / Hansestadt Hamburg / Germany
JogDive
S2 licensed
an update to version 1.01 is available !
JogDive
S2 licensed
Ok, Pasci. The software is ready to put it on cd. I finished Version 1.01 today.
A friend of me who made a classA workaround for this app wrote a small download page. Please read the the updated first post of this thread for more information
Control your LFS Server with DediLink !
JogDive
S2 licensed
Here comes the first free remote control application for Live For Speed !

DediLink Software
JogDive
S2 licensed
Quote from Dygear :I'll also include the_angry_angel and JogDive in this sample.

pardon, what ??

My favorite choice is Borland C++ Builder (VCL/CLX) for apps with a gui. But i´m on the C# / C++ console also at home. During my education and Cisco Systems certification, we only used console programming to fit the apps under windows and unix.
JogDive
S2 licensed
Quote from smith :Nevertheless, the most correct answer is given by JogDive.

I think so too i wrote this function for the DediLink software and it works without any failure. But there are some things that could be optimized
Last edited by JogDive, .
JogDive
S2 licensed

String firstrange = "",lastrange = "";
String Chars1 = "vacdsqtlr";
String Chars2 = "|*:\\/?\"<>";
String Chars3 = "LGCJETB";
int index;


for(int i = 1; i < outpack.Length();i++)
{
if(outpack[i] == '^' && i + 1 <= outpack.Length())
{
if(StrToIntDef(outpack[i + 1],11112) != 11112)
{
// number, remove color codes
index = outpack.Pos("^");
if(index + 2 <= outpack.Length())
{
firstrange = outpack.SubString(1,index - 1);
lastrange = outpack.SubString(index + 2,outpack.Length() - (index + 1));//die 2 byte ausschneiden
outpack = firstrange + lastrange;
}
}
else
{ // string split
index = outpack.Pos("^");
int pos = Chars1.Pos(outpack[index + 1]);
if(pos > 0 && index + 2 <= outpack.Length())
{
firstrange = outpack.SubString(1,index - 1) + Chars2[pos];
lastrange = outpack.SubString(index + 2,outpack.Length() - (index + 1));
outpack = firstrange + lastrange;
}

//remove countrycode
index = outpack.Pos("^");
pos = Chars3.Pos(outpack[index + 1]);
if(pos > 0 && index + 2 <= outpack.Length())
{
firstrange = outpack.SubString(1,index - 1);
lastrange = outpack.SubString(index + 2,outpack.Length() - (index + 1));//die 2 byte ausschneiden
outpack = firstrange + lastrange;
}
}
}
}

return outpack;

Last edited by JogDive, .
JogDive
S2 licensed
Hello guys. I´m very happy about your feedbacks. I will stay in Hamburg till Friday.

Please wait for the next releases to put it on the cd. what do you mean with "unoffical" ?? please send me some details. I´will work on a multilanguage support at home soon.

Ok, stay tuned
Last edited by JogDive, .
LFS DediLink V1.4 (Remote Control Software)
JogDive
S2 licensed
Hello guys !
Here comes version 1.4 Read the readme.txt file !!!
Please give me some feedbacks how do you like it or if something went wrong.
Any ideas of new implementations are also welcome

Here comes the server and client package:

[New in version 1.4 Final]
- Client/Server: Fixed a bug in the carstring function.
- Server: Added an Insim auto login option and a connection loss function.
- Client/Server: Fixed some small bugs.

[New in version 1.3 Final Fix#2 (Client only)]
- Client: Reworked TCP socket reading and sending behaviour. The DediLink Client gui
was slow and hanging caused by too much IO operations when online. It´s
working propper now.

New Feature 03.05.2006
- Client/Server: Added the Button "Upload selected profile" to configure your LFS dedicated server within 2 mouse clicks.

Version 1.3 (Final FIXED) 02.05.2006
Found a bug and fixed it ! please patch V1.3 All should working proper now. Enjoy !
Please give me a feedback how you like the new version or if something went wrong

Version 1.3 (Final) 01.05.2006
DediLink V1.3 Final is available !

New in Version 1.3 (HOTFIX) 01.05.2006
- Client: Fixed the Live! View player commands send behaviour.
- Client: Added a config profiler. Added "Get running LFS config" button.
Fixed a ListView bug.
- Server: Complete reworked broadcast editor (see pics). Now you can edit old entries, add new items and delete them. I think it is 100% more comfortable than the older version
- Server: Some small improvements to speed up the udp socket.
- Server/Client: improvements to speed up status answers on status reply.
- Server: Set the latest LFS server settings on Insim login.
- Server: Added an option menu: Set the latest server settings on Insim login "Enable/Disable".
- Server: Synchronizing some DediLink options to give some help to get it easy started.
- Server: SSL certificate file extension changed to ".cert".
Added an opendialog box to load your own SSL certificate files.
- Fixed some small bugs.


New in Version 1.2.1 Final (28.04.2006)
- All settings (Client/Server) are correctly saved and loaded on startup.
- Command /carshost added to client.
- The permissions for both groups (Admin,User) can be set and removed by a fomular. It´s not longer necessary to restart the process to apply permissions and to find out what the commands mean
- An optionsmenu. The player ban time can be set.
- Insim text filter function improved and fixed.
- The running LFS server settings will be snychronized to the client server-config dialogs.
(Please run a complete server configuration with DediLink client first).

[Updated 22.04.2006]
Version 1.2 is online !
Fixed:
Sauber BMW support.
Added Aston Grand Touring and Aston North Track.
Fixed the InSim text filter function.
Ports will be stored with the server address.

[Updated 16.04.2006]
Fixed: A playerlist bug (Client)
Added: some small improvements (Client & Server)

[Update 12.04.2006]
Fixed: SSL dll in the "stable" Version.
Client server log window update.
Some small bugs....
Added: Improvements in the InSimSync function.


The official small download area for LFS DediLink V1.4 Final:
LFS DediLink

It would be great if somebody could write a how to guide or translation in a prefered language
Last edited by JogDive, .
JogDive
S2 licensed
yes, basic coding has finished and a testing period is running. i found some small bugs and fixed it out. i will code a function to save all entered client and server settings in a ini file and load it on startup. First i thought to store all data in the registry but it´s a bit annoying if you lose your os After that, the first final version is ready for public use

Thats a good question Tanuva. There are enough cool things to do....I hope the people who will use my software give me some ideas and feedbacks. Its hard to say whats needed or not without statements from users.

Has anybody informations about a possible LFS dedicated server for Linux/Unix ??
Last edited by JogDive, .
FGED GREDG RDFGDR GSFDG