old saves
30 posts
• Page 1 of 2 • 1, 2
Supercharged
Posts: 640
Joined: Wed Oct 10, 2012 12:35 am
Location: Sweden
Cars: Opel Astra -99 1.6 16
Re: old saves
Most of the calculations and such is redone, the old files are not compatible.
Re: old saves
RobtheFiend wrote:Most of the calculations and such is redone, the old files are not compatible.
well that's just fantastic, ill have to make the 200+ engines AGAIN. now since I can no longer log onto the original Automation, im going to have to learn to read the code.
Supercharged
Posts: 640
Joined: Wed Oct 10, 2012 12:35 am
Location: Sweden
Cars: Opel Astra -99 1.6 16
Re: old saves
We just have to hope someone can make a program to convert old files to the latest version. 

Re: old saves
I can have a go at it. Send me a lua file created in the new version of the game and then list every single stat so I can recreate the engine in the old automation.
I haven't updated my old automation yet because if I do, then I can't go back.
I haven't updated my old automation yet because if I do, then I can't go back.
Aurora Motor Company: Nothing Comes Close | Youtube ads: Aurora Manticore - "Dyno"
Auto magazine plus directories - list your car in the appropriate directory to be considered for a magazine cover/article.
Auto magazine plus directories - list your car in the appropriate directory to be considered for a magazine cover/article.
Re: old saves
isomgmsghs, put the game down and wait till it is complete, because this will probably happen more often and you seem to have a very destructive attitude towards that fact. Understandable, but not good for your mental health.
We've said time and time again that you should make nothing in the game you don't want to lose until it is actually done.
But yeah, engines have not changed as much as cars, so a conversion tool could be made. If there is demand in the community it will happen, we got some really talented people around the forums!
Cheers!
We've said time and time again that you should make nothing in the game you don't want to lose until it is actually done.
But yeah, engines have not changed as much as cars, so a conversion tool could be made. If there is demand in the community it will happen, we got some really talented people around the forums!
Cheers!
Re: old saves
Killrob wrote:isomgmsghs, put the game down and wait till it is complete, because this will probably happen more often and you seem to have a very destructive attitude towards that fact. Understandable, but not good for your mental health.
We've said time and time again that you should make nothing in the game you don't want to lose until it is actually done.
But yeah, engines have not changed as much as cars, so a conversion tool could be made. If there is demand in the community it will happen, we got some really talented people around the forums!
Cheers!
my reply was an exaggeration of how I really feel about it.
Re: old saves
utopian201 wrote:I can have a go at it. Send me a lua file created in the new version of the game and then list every single stat so I can recreate the engine in the old automation.
I haven't updated my old automation yet because if I do, then I can't go back.
Inline 6 engine, aluminum Block Material, 3.547" Bore and 4.724" Stroke, Dual Overhead Cam 5 Valves, cast iron Head Material, no VVL
Cast iron Crank, i beam steel Conrods, low friction cast Pistons, 3.547" Bore and 4.724" Variant Capacity(I don't know what this is for), +15 Quality
11.7 Compression, 14 Cam Profile, no VVL, VVT-All Cams, Quality +15
Turbo Charger, ball bearing Setup, water-air large Intercooler, custom Presets, 2.5" Compressor, 1.2" Turbine, 1.25 AR Ratio, 9.55 PSI Max Boost, Quality +15
Direct Injection, throttle per cylinder Configuration, race Intake, ultimate - 100.0 Fuel Type, 15.0:1 Fuel Mixture, 50 Ignition Timing, 2300 RPM Limit, Quality +15
Short Cast Headers, single Exhaust, no valve Bypass Valve, 2.00" Exhaust Diameter, high flow three-way Catalytic Converter, straight through First Muffler, none Second Muffler, Quality +15.
Re: old saves
isomgmsghs wrote:RobtheFiend wrote:Most of the calculations and such is redone, the old files are not compatible.
well that's just fantastic, ill have to make the 200+ engines AGAIN. now since I can no longer log onto the original Automation, im going to have to learn to read the code.
If you open up the engine save file in a program like notepad++ then it is quite easy to read, and you could happily remake the engines manually.
The save file is made up from many many lua tables, the first table being similar to a contents page. For example the line ["Conrods"]={3} means that information about the conrods are in table 3. To find the kind of conrods the engine used, go to table 3 and you should find the name of the conrods listed as something like this: ["Name"]="RodMat_Cast_Name". Sometimes the names aren't exactly the same in the save file as the in game name, but they are close enough to be able to work out. alternatively you could just do a ctrl + f for the word 'conrod' to find any mention of it in the file and get the information that way.
The sliders (stroke, RPM limit, etc) are sometimes written as a decimal between 0 and 1 and sometimes written as the actual number. If they are written as a decimal then the decimal will be (actual value - minimum value)/(maximum value-minimum value). A simple excel function could easily be made to get the in game value from the saved value in this case. Unless i'm being dim the equation would be: Actual value = (save file number * (maximum value - minimum value)) + minimum value
Hopefully that helps you get back some of your favourite engines

I've actually had a go at making a program to read the engine save files, change some of the parts/settings and then resave the engine in a state that automation will be happy with. The language I program in is C++, which has no sensible way of reading lua tables (the engine save files), understanding their contents and then rewriting them again with alterations. I did try to write code to do this myself but, to spare you the technical details, it was a giant and very tedious pain in the behind that I do not wish to go through again

Re: old saves
RobtheFiend wrote:We just have to hope someone can make a program to convert old files to the latest version.
I would *love* to see that. And maybe even for cars, too.
utopian201 wrote:I can have a go at it. Send me a lua file created in the new version of the game and then list every single stat so I can recreate the engine in the old automation.
I haven't updated my old automation yet because if I do, then I can't go back.
Now that's an idea! Maybe someone out there can do the reverse as well.

Re: old saves
isomgmsghs wrote:utopian201 wrote:I can have a go at it. Send me a lua file created in the new version of the game and then list every single stat so I can recreate the engine in the old automation.
I haven't updated my old automation yet because if I do, then I can't go back.
Inline 6 engine, aluminum Block Material, 3.547" Bore and 4.724" Stroke, Dual Overhead Cam 5 Valves, cast iron Head Material, no VVL
Cast iron Crank, i beam steel Conrods, low friction cast Pistons, 3.547" Bore and 4.724" Variant Capacity(I don't know what this is for), +15 Quality
11.7 Compression, 14 Cam Profile, no VVL, VVT-All Cams, Quality +15
Turbo Charger, ball bearing Setup, water-air large Intercooler, custom Presets, 2.5" Compressor, 1.2" Turbine, 1.25 AR Ratio, 9.55 PSI Max Boost, Quality +15
Direct Injection, throttle per cylinder Configuration, race Intake, ultimate - 100.0 Fuel Type, 15.0:1 Fuel Mixture, 50 Ignition Timing, 2300 RPM Limit, Quality +15
Short Cast Headers, single Exhaust, no valve Bypass Valve, 2.00" Exhaust Diameter, high flow three-way Catalytic Converter, straight through First Muffler, none Second Muffler, Quality +15.
Can you give me the exact measurements for the turbo charger? In the old automation, the turbine is displayed as 1.2" turbine, but the actual measurement is 1.238"
Aurora Motor Company: Nothing Comes Close | Youtube ads: Aurora Manticore - "Dyno"
Auto magazine plus directories - list your car in the appropriate directory to be considered for a magazine cover/article.
Auto magazine plus directories - list your car in the appropriate directory to be considered for a magazine cover/article.
Re: old saves
utopian201 wrote:isomgmsghs wrote:utopian201 wrote:I can have a go at it. Send me a lua file created in the new version of the game and then list every single stat so I can recreate the engine in the old automation.
I haven't updated my old automation yet because if I do, then I can't go back.
Inline 6 engine, aluminum Block Material, 3.547" Bore and 4.724" Stroke, Dual Overhead Cam 5 Valves, cast iron Head Material, no VVL
Cast iron Crank, i beam steel Conrods, low friction cast Pistons, 3.547" Bore and 4.724" Variant Capacity(I don't know what this is for), +15 Quality
11.7 Compression, 14 Cam Profile, no VVL, VVT-All Cams, Quality +15
Turbo Charger, ball bearing Setup, water-air large Intercooler, custom Presets, 2.5" Compressor, 1.2" Turbine, 1.25 AR Ratio, 9.55 PSI Max Boost, Quality +15
Direct Injection, throttle per cylinder Configuration, race Intake, ultimate - 100.0 Fuel Type, 15.0:1 Fuel Mixture, 50 Ignition Timing, 2300 RPM Limit, Quality +15
Short Cast Headers, single Exhaust, no valve Bypass Valve, 2.00" Exhaust Diameter, high flow three-way Catalytic Converter, straight through First Muffler, none Second Muffler, Quality +15.
Can you give me the exact measurements for the turbo charger? In the old automation, the turbine is displayed as 1.2" turbine, but the actual measurement is 1.238"
i opened the file on notepad and i cannot find anything about the turbine. But the game only says 1.2". in metric the compressor is 64.5 mm and turbine is 31.5 mm.
Re: old saves
isomgmsghs wrote:I tried to transfer my 212 engine saves to the new steam engine file and it doesn't read them, why? i need them.
In case you have not seen it, I have made a small tool that can read the most important stats (not all) and you can put them to Excel with two simple steps.
viewtopic.php?f=39&t=5833
it's not perfect but serves what I need, namely assess my designs from the past without resorting to tons of scribbled paper or 100s of screenshots, and recreate them.
There will probably be versions for the new format too.
PS. But I am not able to make a converter, that's beyond the scope, and the format is much too complex and ambiguous for that.
Re: old saves
BurningBridges wrote:isomgmsghs wrote:I tried to transfer my 212 engine saves to the new steam engine file and it doesn't read them, why? i need them.
In case you have not seen it, I have made a small tool that can read the most important stats (not all) and you can put them to Excel with two simple steps.
viewtopic.php?f=39&t=5833
it's not perfect but serves what I need, namely assess my designs from the past without resorting to tons of scribbled paper or 100s of screenshots, and recreate them.
There will probably be versions for the new format too.
PS. But I am not able to make a converter, that's beyond the scope, and the format is much too complex and ambiguous for that.
i can't seem to get it to work, when I click the LuaCSV application, it instantly stops working
Re: old saves
It writes everything into 2 text files. You also need to copy your lua files in the 2 folders it contains. There are more instructions in the thread I linked.
30 posts
• Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 3 guests