Pink Petal Games

Game Editing And Additions => User Mods => Topic started by: aevojoey on December 17, 2017, 04:04:40 PM

Title: Interface sizes
Post by: aevojoey on December 17, 2017, 04:04:40 PM
I have been remaking the interface folders over the last few weeks and was wondering if anyone had an opinion on them.
So far I have finished J_1024x768 and J_1920x1080 and am currently working on J_1366x768.

Does anyone use any other size interface or have their own custom interface?
I ask because I am going to be changing the names of some of the items so that they are the same across all areas and this may break custom interfaces.

Does any one want another interface size made? (If you want 4k, buy me a 4k monitor :p)
Title: Re: Interface sizes
Post by: HuiBui on December 17, 2017, 05:42:25 PM
dear aevojoey,
thanks again for your hard work.

unfortunately I'm using a personal    J_2560x1440

Title: Re: Interface sizes
Post by: Hazure on December 18, 2017, 11:11:39 AM

Your doing an awesome job, and my interface preference is 1600x900.

Title: Re: Interface sizes
Post by: HuiBui on December 22, 2017, 05:58:16 PM
I'really thought it would be easy, to make an update for my 2560x1440 interface size, but it isn't as easy as i thought.
Did you change something in the hardcode which makes it impossible to spread up the interface into a bigger size or did i  just lost all my experience since the last time i was doing this.  ;)
Title: Re: Interface sizes
Post by: aevojoey on December 22, 2017, 06:49:34 PM
I'really thought it would be easy, to make an update for my 2560x1440 interface size, but it isn't as easy as i thought.
Did you change something in the hardcode which makes it impossible to spread up the interface into a bigger size or did i  just lost all my experience since the last time i was doing this.  ;)
The settings in config.xml control interface and scale to screen sizes.
There is no limiter in the code.
Title: Re: Interface sizes
Post by: Vanher on November 11, 2018, 04:16:35 PM
First of all, thanks for your hard work!


I have a problem with the size of the interface, I am using 1024x768, my monitor is 1366x768, but the interface is too big and I can not see it correctly. Can someone help me fix the size and be able to play or tell me what I did wrong? :(

https://i.imgur.com/bYouvXE.jpg (https://i.imgur.com/bYouvXE.jpg)
https://i.imgur.com/lYHVYj1.jpg (https://i.imgur.com/lYHVYj1.jpg)
Title: Re: Interface sizes
Post by: Solitude103 on November 12, 2018, 12:54:09 PM
First of all, thanks for your hard work!


I have a problem with the size of the interface, I am using 1024x768, my monitor is 1366x768, but the interface is too big and I can not see it correctly. Can someone help me fix the size and be able to play or tell me what I did wrong? :(

https://i.imgur.com/bYouvXE.jpg (https://i.imgur.com/bYouvXE.jpg)
https://i.imgur.com/lYHVYj1.jpg (https://i.imgur.com/lYHVYj1.jpg)


I'm no expert, but maybe you can tweak the config.xml file in the WM folder? There are options for changing the resolution. Open it up with notepad or better yet download Notepad++, and it'll make that whole file easier to read.
Title: Re: Interface sizes
Post by: jrok on November 12, 2018, 01:39:51 PM
First of all, thanks for your hard work!


I have a problem with the size of the interface, I am using 1024x768, my monitor is 1366x768, but the interface is too big and I can not see it correctly. Can someone help me fix the size and be able to play or tell me what I did wrong? :(

https://i.imgur.com/bYouvXE.jpg (https://i.imgur.com/bYouvXE.jpg)
https://i.imgur.com/lYHVYj1.jpg (https://i.imgur.com/lYHVYj1.jpg)


Vanher using notepad or notepad++  Look for this part below in the confix.xml and copy paste this into it.  It should resize to working area for you.  Then only adjust the numbers to a size you enjoy.


 <Resolution
[size=78%]     Resolution="J_1366x768"[/size]
        Width="1366"
        Height="768"
        ScaleWidth="1366"
        ScaleHeight="768"
        FullScreen="false"
        ListScrollAmount="3"
        TextScrollAmount="3" />
Title: Re: Interface sizes
Post by: Vanher on November 14, 2018, 01:23:07 PM

Vanher using notepad or notepad++  Look for this part below in the confix.xml and copy paste this into it.  It should resize to working area for you.  Then only adjust the numbers to a size you enjoy.


 <Resolution
[size=78%]     Resolution="J_1366x768"[/size]
        Width="1366"
        Height="768"
        ScaleWidth="1366"
        ScaleHeight="768"
        FullScreen="false"
        ListScrollAmount="3"
        TextScrollAmount="3" />


Thanks, I tried it that way, but the game stays with the black screen and after a few seconds it closes, I want to try to change all the resolution manually, but besides taking a long time, I do not know if I accidentally alter an important data and the game do not open.  :(
Title: Re: Interface sizes
Post by: aevojoey on November 16, 2018, 08:41:09 PM
See Config.xml and the Settings page (https://www.pinkpetal.org/index.php?topic=3579.msg33839#msg33839) for how the config file works
and Moving the folders (https://www.pinkpetal.org/index.php?topic=3483.msg29905#msg29905) for where the config files are located


In the config.xml file, there should be 3 resolutions:
Code: [Select]
<!-- 16:9
    <Resolution
        Resolution="J_1920x1080"
        Width="1920"
        Height="1080"
        ScaleWidth="1920"
        ScaleHeight="1080"
        FixedScale="true"
        FullScreen="false"
        ListScrollAmount="3"
        TextScrollAmount="3" />
 -->
<!-- 16:9 -->
    <Resolution
        Resolution="J_1366x768"
        Width="1366"
        Height="768"
        ScaleWidth="1366"
        ScaleHeight="768"
        FixedScale="true"
        FullScreen="false"
        ListScrollAmount="3"
        TextScrollAmount="3" />
 -->
<!-- 4:3
    <Resolution
        Resolution="J_1024x768"
        Width="1024"
        Height="768"
        ScaleWidth="1024"
        ScaleHeight="768"
        FixedScale="false"
        FullScreen="false"
        ListScrollAmount="3"
        TextScrollAmount="3" />
-->
"<!--  -->" are used for comments,
the first "<!-- 16:9" means that the first section "J_1920x1080" is disabled,
the second "<!-- 16:9 -->" means the "J_1366x768" is active,
and the 3rd "<!-- 4:3" deactivates the "J_1024x768"

To activate one of the others, move the "-->" from the active to one of the others