
Ultimate Editor
Moderator: thunderchero
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
thank you Flocke 

- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
16bit TGA converter doesnt work in current UE build (Win11; Java 8 251)
- thunderchero
- Site Administrator aka Fleet Admiral
- Posts: 7442
- Joined: Fri Apr 25, 2008 2:00 am
- Location: On a three month training mission, in command of the USS Valiant.
Re: Ultimate Editor
I have 2 copies of UE installedBenman2785 wrote: ↑Thu Apr 13, 2023 4:22 pm 16bit TGA converter doesnt work in current UE build (Win11; Java 8 251)
UE in my documents
The converter still work, but the default location UE sets fails to save files in that location.
if you browse to different location it will convert
here is location UE is trying to use when it fails
C:\Users\****\Documents\UE_0.8.0\9.0\::{031E4825-7B94-4DC3-B131-E946B44C8DD5}\Pictures.library-ms
real location
C:\Users\****\Documents\UE_0.8.0\9.0
UE in tools works as I expect setting to same folder as file as I am converting
both attempt used same file/location to convert.
C:\Users\****\Pictures
but very strange.
Important note; all version when using from "Documents" as location of UE has same issue even UE 0.7.2dev5d
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
thunderecho: about problem in document folder - this is a new windows feature - it blocks access to some Windows related folders
about TGA - i tried it from D:/boft_aio/tools/ue to convert D:/boft_aio/modded_files/!my_ships/D'Kyr/D'Kyr/*.tga - wanted to overwrite orginal with converted (here windows feature is not blocking access) - this works with old version of UE but not with new provided by AiO_2.0.3
about TGA - i tried it from D:/boft_aio/tools/ue to convert D:/boft_aio/modded_files/!my_ships/D'Kyr/D'Kyr/*.tga - wanted to overwrite orginal with converted (here windows feature is not blocking access) - this works with old version of UE but not with new provided by AiO_2.0.3
- thunderchero
- Site Administrator aka Fleet Admiral
- Posts: 7442
- Joined: Fri Apr 25, 2008 2:00 am
- Location: On a three month training mission, in command of the USS Valiant.
Re: Ultimate Editor
has this been edited or real folder name?Benman2785 wrote: ↑Thu Apr 13, 2023 7:11 pm thunderecho: about problem in document folder - this is a new windows feature - it blocks access to some Windows related folders
about TGA - i tried it from D:/boft_aio/tools/ue to convert D:/boft_aio/modded_files/!my_ships/D'Kyr/D'Kyr/*.tga - wanted to overwrite orginal with converted (here windows feature is not blocking access) - this works with old version of UE but not with new provided by AiO_2.0.3
/!my_ships/
if real folder name I expect this is causing issue
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
D:\botf_aio\modded files\!_my_Ships\D'Kyr\D'Kyr is the real path/folder name
!* because it will be the first folder on top
!* because it will be the first folder on top
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
here a video:
i try to convert 32bit TGA to 16bit
folder is D:/dkyr
overwrite org files with converted ones
nothing happens
https://youtu.be/A1EeALqrypo
i try to convert 32bit TGA to 16bit
folder is D:/dkyr
overwrite org files with converted ones
nothing happens
https://youtu.be/A1EeALqrypo
- Flocke
- BORG Trouble Maker
- Posts: 3027
- Joined: Sun Apr 27, 2008 2:00 am
- Location: Hamburg, Germany
- Contact:
Re: Ultimate Editor
can't watch the video either, but I guess I messed something up when I fixed to not silently delete original files on conversion
will check on it for the next update
will check on it for the next update
- thunderchero
- Site Administrator aka Fleet Admiral
- Posts: 7442
- Joined: Fri Apr 25, 2008 2:00 am
- Location: On a three month training mission, in command of the USS Valiant.
Re: Ultimate Editor
I did a little testing
converting 32 bit tga to 16 bit tga fails if overwrite file or save to new location (file is still 32 bit tga)
converting png to 16 bit tga works
so work around would be to save as png or jpg before converting
this is only happening with 9.0
converting 32 bit tga to 16 bit tga fails if overwrite file or save to new location (file is still 32 bit tga)
converting png to 16 bit tga works
so work around would be to save as png or jpg before converting
this is only happening with 9.0
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
video is now playable - but bug is already confirmed by thunderchero
- Benman2785
- Lieutenant-Commander
- Posts: 145
- Joined: Fri Mar 20, 2009 2:00 am
Re: Ultimate Editor
backup doesnt work - and actually makes it WORSE by asking if you want to save changes - which overwrite one backup...
- Flocke
- BORG Trouble Maker
- Posts: 3027
- Joined: Sun Apr 27, 2008 2:00 am
- Location: Hamburg, Germany
- Contact:
Re: Ultimate Editor
I did some research on this. The UUID above refers to the library folder, and Pictures.library-ms is the virtual picture library folder.thunderchero wrote: ↑Thu Apr 13, 2023 5:33 pm here is location UE is trying to use when it fails
C:\Users\****\Documents\UE_0.8.0\9.0\::{031E4825-7B94-4DC3-B131-E946B44C8DD5}\Pictures.library-ms
real location
C:\Users\****\Documents\UE_0.8.0\9.0
Important note; all version when using from "Documents" as location of UE has same issue even UE 0.7.2dev5d
It is returned by the java.io.File getParentFile call and can't be used to resolve any file path. In addition, getAbsolutePath erronously prefixes the application work path.
https://stackoverflow.com/questions/933 ... range-file
https://stackoverflow.com/questions/107 ... ctures-etc
I however found a workaround using the java.nio.file.Path API to fix this weird Windows Java bug.
Fixed that one as well. Furthermore, I added a progress notification and some proper image replacement checks.Benman2785 wrote: ↑Fri Apr 14, 2023 7:06 am i try to convert 32bit TGA to 16bit
folder is D:/dkyr
overwrite org files with converted ones
nothing happens
- thunderchero
- Site Administrator aka Fleet Admiral
- Posts: 7442
- Joined: Fri Apr 25, 2008 2:00 am
- Location: On a three month training mission, in command of the USS Valiant.
Re: Ultimate Editor
I have been trying to test as you do your development, so far I have not seen any issues.
edit I take that back gui interface is not saving changes.
in add and remove ship models, on ship export could UE also export new resolution tga's
example if user want to export ship model from 1366 UDM he could add model to 1366 UCW without any tga's missing.
edit I take that back gui interface is not saving changes.
in add and remove ship models, on ship export could UE also export new resolution tga's
example if user want to export ship model from 1366 UDM he could add model to 1366 UCW without any tga's missing.
- Flocke
- BORG Trouble Maker
- Posts: 3027
- Joined: Sun Apr 27, 2008 2:00 am
- Location: Hamburg, Germany
- Contact:
Re: Ultimate Editor
that one is now fixed as well (pull request pending)Benman2785 wrote: ↑Tue Apr 25, 2023 8:36 am backup doesnt work - and actually makes it WORSE by asking if you want to save changes - which overwrite one backup...
plus I implemented that restored backups now must be explictly saved after restore and some further improvements