- 467
- Hessen
Only 1 skin missing and then i release :-)yes, @MrHunt is doing the missing skins
Only 1 skin missing and then i release :-)yes, @MrHunt is doing the missing skins
Question about camtool.
So i wanna use some camtool on Pyyer Le Mans 2024 Track but the Camtool Data is only connected to the Original Track Layout.
How can i move the Cam Data file to work on those layouts?
Me trying to install that tool on my pc...... After some search a found the tool "ImageMagick", that does a batch conversion of DDS files. But you have to do it with a command line or a BAT-file... First...
I'm not sure to have understood right, but why don't simply use the CompactGUI. As it works for the cars, it works also for the tracks. Which means less space occupied in the SSD without doing anything that requires a lot of work or a irreversible editing of the textures?I've downloaded some of the fantastic track texture updates by ClimaxF1 in the last time.
Resources by ClimaxF1
www.overtake.gg
But as the DDS files are uncompressed, they really need too much disc space and the installation with content manager just doubles the needed disc space. As I see absolutely no difference between uncompressed and compressed track textures in a racing game, so I was looking for an easy way to batch convert these DDS files to DXT5 without mipmaps to save 75% of the disc space. But none of the normal graphics programs like GIMP, PAINT.NET or IRFANVIEW has a function to batch convert DDS files.
After some search a found the tool "ImageMagick", that does a batch conversion of DDS files. But you have to do it with a command line or a BAT-file.
ImageMagick – Download
ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and...imagemagick.org
First install the program on your PC, then create a new TXT-file and copy the following text to it and save it.
C:\Programs\ImageMagick-7.1.1-Q16-HDRI\magick mogrify -format dds -define dds:mipmaps=0 -define dds:compression=dtx5 *.dds
(Note: "C:\Programs\ImageMagick-7.1.1-Q16-HDRI" has to be the installation path on your personal PC. Maybe, you have to change it, if you have installed ImageMagick somewhere else)
In the next step you have to rename the TXT-File to something like "convert_dds.bat" (or what you like).
If your TXT-File has no .txt extension, you have to activate "show file extensions for known file types" in Windows Explorer first.
Now you can copy the BAT-file to the folder with the uncompressed DDS-files and start it with a double-click. The conversion process can take some time, if there are a lot of DDS-files in the folder. Of course you can also use the BAT-file in skin folders with large uncompressed car skin DDS-files. (do we really need a single skin folder with more than 300 MB in a racing game like AC? This means 9 GB for a field with 30 cars).
If you want to create the DDS-files with mipmaps, just change "dds:mipmaps=0" to "dds:mipmaps=1" in the BAT-file. This increases the resulting file size by 25% and I don't think, that the game needs mipmaps any more as they are automatically created at the start of a race. But maybe someone else has more information about that. By the way RSS doesn't use mipmaps for their skins anymore.
I hope this helps a little bit to save some of the limited disc space on your SSD and will increase the performance of the game on low end PCs.
Of course you can use CompactGUI on top and you will gain even more disc space.I'm not sure to have understood right, but why don't simply use the CompactGUI. As it works for the cars, it works also for the tracks. Which means less space occupied in the SSD without doing anything that requires a lot of work or a irreversible editing of the textures?
cool, a good step to save even more space... but I would love to be able to use this on a folder (and finally on the whole content\tracks folder) to have it convert all DDS which aren't already compressed in that folder AND ALL SUBFOLDERS...I've downloaded some of the fantastic track texture updates by ClimaxF1 in the last time.
Resources by ClimaxF1
www.overtake.gg
But as the DDS files are uncompressed, they really need too much disc space and the installation with content manager just doubles the needed disc space. As I see absolutely no difference between uncompressed and compressed track textures in a racing game, so I was looking for an easy way to batch convert these DDS files to DXT5 without mipmaps to save 75% of the disc space. But none of the normal graphics programs like GIMP, PAINT.NET or IRFANVIEW has a function to batch convert DDS files.
After some search a found the tool "ImageMagick", that does a batch conversion of DDS files. But you have to do it with a command line or a BAT-file.
ImageMagick – Download
ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and...imagemagick.org
First install the program on your PC, then create a new TXT-file and copy the following text to it and save it.
C:\Programs\ImageMagick-7.1.1-Q16-HDRI\magick mogrify -format dds -define dds:mipmaps=0 -define dds:compression=dtx5 *.dds
(Note: "C:\Programs\ImageMagick-7.1.1-Q16-HDRI" has to be the installation path on your personal PC. Maybe, you have to change it, if you have installed ImageMagick somewhere else)
In the next step you have to rename the TXT-File to something like "convert_dds.bat" (or what you like).
If your TXT-File has no .txt extension, you have to activate "show file extensions for known file types" in Windows Explorer first.
Now you can copy the BAT-file to the folder with the uncompressed DDS-files and start it with a double-click. The conversion process can take some time, if there are a lot of DDS-files in the folder. Of course you can also use the BAT-file in skin folders with large uncompressed car skin DDS-files. (do we really need a single skin folder with more than 300 MB in a racing game like AC? This means 9 GB for a field with 30 cars).
If you want to create the DDS-files with mipmaps, just change "dds:mipmaps=0" to "dds:mipmaps=1" in the BAT-file. This increases the resulting file size by 25% and I don't think, that the game needs mipmaps any more as they are automatically created at the start of a race. But maybe someone else has more information about that. By the way RSS doesn't use mipmaps for their skins anymore.
I hope this helps a little bit to save some of the limited disc space on your SSD and will increase the performance of the game on low end PCs.
hmmm ... compacting an uncompressed DDS with CompactGUI, would it take up as little space as compacted compressed DDS file?I'm not sure to have understood right, but why don't simply use the CompactGUI. As it works for the cars, it works also for the tracks. Which means less space occupied in the SSD without doing anything that requires a lot of work or a irreversible editing of the textures?
The command line "magick mogrify -format dds -define dds:mipmaps=0 -define dds:compression=dtx5 *.dds" in the BAT-File works without a problem for me. That's how I found it on the ImageMagick homepage. But maybe it also works without "magick".cool, a good step to save even more space... but I would love to be able to use this on a folder (and finally on the whole content\tracks folder) to have it convert all DDS which aren't already compressed in that folder AND ALL SUBFOLDERS...
right now the batch file would only take the *.DDS files in the folder where you run the batch file.
Anyone here can write the batchfile to recursively go over all subfolders too ? (out of my league)
hmmm ... compacting an uncompressed DDS with CompactGUI, would it take up as little space as compacted compressed DDS file?
My gut says no.
So I did the test with CF1_Monaco_1966 ... and it still makes quite a difference!
First I installed the skin , and for example one of the biggest DDS files , doorwind_01.dds is 64MB.
With Compactor , this file takes on disk 12.3 MB.
I then run the batch file (btw I think it contained an error, it should be : "mogrify.exe -format dds -define dds:mipmaps=0 -define dds:compression=dtx5 *.dds" so without the "magic " part...)
the doorwind_01.dds is now 16 MB in size (and takes 16MB on disk as it is no longer compacted)
A new run with Compactor makes it take only 4.71 MB on disk !
On the total folder size of 813MB for this 1 track skin, it saved me 106.8 MB of extra diskspace when first compressing the DDS files with this ImageMagick tool, so +- 13% gain still compared to not compressing the dds files.
It would be a bad idea, if the game would not use mipmaps anymore. But that's not the case. If a DDS-file has no mipmaps, the game creates them at the start of a race. So no need to include them in the DDS-files. So you can reduce the DDS file size by 20%. Some weeks ago, there was already a discussion about mipmaps here. Maybe someone else can give us further infos.mipmaps=0 is a bad idea, that would be almost same as having AF off.
Thats also the reason why png's are inferiour to dds, not mipmaps possible.
AMD users set to 16x in AC
Nvidia users - turn off in AC and set to 16x in nv-sys panel!
View attachment 1368466
Not sure but, I think @leBluem might know a thing or two about thatIt would be a bad idea, if the game would not use mipmaps anymore. But that's not the case. If a DDS-file has no mipmaps, the game creates them at the start of a race. So no need to include them in the DDS-files. So you can reduce the DDS file size by 20%. Some weeks ago, there was already a discussion about mipmaps here. Maybe someone else can give us further infos.
That's the question. Does AC or Content Manager with CSP create mipmaps, if they are missing in a DDS-file?AC itself doesnt do this, all users must be thought of, and hd space is not that rare like it used to be, and it takes longer
it's interesting that there are hot air balloons in the sky at night lol. i know that's not your doing thoughDon't know if it's accurate to the real life track nor do I care, but I decided to add some additional light poles around the track on rt_sonoma. There were some spots that were just too dark when racing at night. Once I get them all laid out (about 80% complete), i'll make a copy available for anyone who cares.
Before:
View attachment 1368519
After:
View attachment 1368520
That are simple to remove or being active again, to me nothing that should stop racingjoe to stop in brining all kind of fine improvements. Just saying.it's interesting that there are hot air balloons in the sky at night lol. i know that's not your doing though
works fine for me with same cspHi everyone.
Anyone else having trouble with loading JohnR777's 2024 Daytona? I'm on 0.2.4-preview1 and all I get is a black screen and non ending loading...
wasnt saying rj should stop, just saying.. but sure, disable them, disables them entirely... clearly the concept of hot air balloons at night is way over your head.That are simple to remove or being active again, to me nothing that should stop racingjoe to stop in brining all kind of fine improvements. Just saying.
If you (or anyone else) know of a way to make them automatically disappear at night, please shout.wasnt saying rj should stop, just saying.. but sure, disable them, disables them entirely... clearly the concept of hot air balloons at night is way over your head.
I did not run any specific test, so don't know, but as soon as i discovered that tool here, i used it to save space on disk.cool, a good step to save even more space... but I would love to be able to use this on a folder (and finally on the whole content\tracks folder) to have it convert all DDS which aren't already compressed in that folder AND ALL SUBFOLDERS...
right now the batch file would only take the *.DDS files in the folder where you run the batch file.
Anyone here can write the batchfile to recursively go over all subfolders too ? (out of my league)
hmmm ... compacting an uncompressed DDS with CompactGUI, would it take up as little space as compacted compressed DDS file?
My gut says no.
So I did the test with CF1_Monaco_1966 ... and it still makes quite a difference!
First I installed the skin , and for example one of the biggest DDS files , doorwind_01.dds is 64MB.
With Compactor , this file takes on disk 12.3 MB.
I then run the batch file (btw I think it contained an error, it should be : "mogrify.exe -format dds -define dds:mipmaps=0 -define dds:compression=dtx5 *.dds" so without the "magic " part...)
the doorwind_01.dds is now 16 MB in size (and takes 16MB on disk as it is no longer compacted)
A new run with Compactor makes it take only 4.71 MB on disk !
On the total folder size of 813MB for this 1 track skin, it saved me 106.8 MB of extra diskspace when first compressing the DDS files with this ImageMagick tool, so +- 13% gain still compared to not compressing the dds files.
Just a reminder about this, as a recent update somewhere (or maybe the Steam sale?) seems to have reset things back to 'Store'.If anyone else is fed up of Steam refusing to start minimised and hijacking your whole desktop when launching AC following recent updates, just change the Start Up Location from 'Store' to 'Library' in Steam Settings/Interface.
View attachment 1272967
wasnt saying rj should stop, just saying.. but sure, disable them, disables them entirely... clearly the concept of hot air balloons at night is way over your head.
AMD AF problem has been fixed for a few driver versions now, can be enabled in Radeon settings / disabled in AC and works correctlymipmaps=0 is a bad idea, that would be almost same as having AF off.
Thats also the reason why png's are inferiour to dds, not mipmaps possible.
AMD users set to 16x in AC
Nvidia users - turn off in AC and set to 16x in nv-sys panel!
View attachment 1368466
If you cant say anything nice, don't say anything, but you entirely missed the point, and nothing I said to RJ was unfriendly, I even said it wasnt his fault. I am well aware what this forum is like, I don't need you to tell me. You obviously have an issue with me, because this isnt the first time you have attacked me for no reason. You want to have a crack at me in public, but expect me to PM you, the hypocrisy runs wild within you. I do agree that the forum is great, other than one bloke (look in the mirror you will know who I mean)you can also put the balloons higher, or switching on/off by the use of the CM in-build JSGME (Mod tab).
Next time be more friendly in your answer, as this is a great forum with nice members who wanting to help each other’s.
Can imagine some answers may sound rude as I’m not an (good) English speaker, then there is also the pm to correct me and I will do the change of tone of my message.
Thanks for the reply.works fine for me with same csp
do u mean the nvidia app or control panel?mipmaps=0 is a bad idea, that would be almost same as having AF off.
Thats also the reason why png's are inferiour to dds, not mipmaps possible.
AMD users set to 16x in AC
Nvidia users - turn off in AC and set to 16x in nv-sys panel!
View attachment 1368466