mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-12-23 16:31:50 +01:00
[TokyoM] Add support
Doesn't boot for me on 1.11.4 but boots for others, so I'm adding it. Got the resolutions via Cemu 1.6.4
This commit is contained in:
parent
7702becf96
commit
803e3ed3fc
132
Source/TokyoMirage/rules.txt
Normal file
132
Source/TokyoMirage/rules.txt
Normal file
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
include 'Source/functions.php';
|
||||
$fullWidth = $argv[1];
|
||||
$fullHeight = $argv[2];
|
||||
$scaleFactorX = $fullWidth / 1280.0;
|
||||
$scaleFactorY = $fullHeight / 720.0;
|
||||
$title = get_title($fullWidth, $fullHeight);
|
||||
?>
|
||||
|
||||
[Definition]
|
||||
titleIds = 00050000101ED700,00050000101ED800,0005000010131D00
|
||||
name = "Tokyo Mirage Sessions FE - <?=$title?>"
|
||||
version = 2
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1280
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1280
|
||||
height = 340
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*340)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1147
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1147)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1024
|
||||
height = 2048
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1024)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*2048)?>
|
||||
|
||||
#[TextureRedefine] #May unintentionally scale textures, check formatsExcluded
|
||||
#width = 1024
|
||||
#height = 1024
|
||||
#formatsExcluded =
|
||||
#overwriteWidth = <?=round($scaleFactorX*1024)?>
|
||||
#overwriteHeight = <?=round($scaleFactorY*1024)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1014
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1014)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 881
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*881)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 854
|
||||
height = 480
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 854
|
||||
height = 342
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*854)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*342)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 853
|
||||
height = 232
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*853)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*232)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 640
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*640)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 640
|
||||
height = 360
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*640)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*360)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 320
|
||||
height = 180
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*320)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*180)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 300
|
||||
height = 480
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*300)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*480)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 266
|
||||
height = 480
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*266)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*480)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 254
|
||||
height = 480
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*254)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*480)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 160
|
||||
height = 120
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*160)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*120)?>
|
1
build.sh
1
build.sh
@ -182,6 +182,7 @@ std_respack "TNTRacers" "${res16by9[@]/$just1080p}"
|
||||
std_respack "TaikoNoTatsujin" "${res16by9[@]/$just720p}"
|
||||
std_respack "Tekken" "${res16by9[@]/$just720p}"
|
||||
std_respack "Tengami" "${res16by9[@]/$just720p}"
|
||||
std_respack "TokyoMirage" "${res16by9[@]/$just720p}"
|
||||
std_respack "TropicalFreeze" "${res16by9[@]/$just720p}" "${res21by9[@]}" "${res48by9[@]}"
|
||||
std_respack "TurboSuperStuntSquad" "${res16by9[@]/$just720p}"
|
||||
std_respack "TwilightPrincessHD" "${res16by9[@]/$just1080p}"
|
||||
|
Loading…
Reference in New Issue
Block a user