2017-10-19 01:53:28 +02:00
|
|
|
<?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 = 0005000010135700,000500001012B100,0005000010128F00,0005000210128F01
|
|
|
|
name = "Sonic Lost World - <?=$title?>"
|
|
|
|
version = 2
|
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 1280
|
|
|
|
height = 720
|
|
|
|
tileModesExcluded = 0x001
|
|
|
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 640
|
|
|
|
height = 360
|
|
|
|
tileModesExcluded = 0x001
|
|
|
|
overwriteWidth = <?=round($scaleFactorX*640)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*360)?>
|
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 320
|
|
|
|
height = 180
|
2017-10-19 09:22:38 +02:00
|
|
|
overwriteWidth = <?=round($scaleFactorX*320)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*180)?>
|
2017-10-19 01:53:28 +02:00
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 160
|
|
|
|
height = 90
|
|
|
|
overwriteWidth = <?=round($scaleFactorX*160)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*90)?>
|
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 854
|
|
|
|
height = 480
|
|
|
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
|
|
|
|
|
|
|
[TextureRedefine]
|
|
|
|
width = 560
|
|
|
|
height = 315
|
|
|
|
overwriteWidth = <?=round($scaleFactorX*560)?>
|
|
|
|
overwriteHeight = <?=round($scaleFactorY*315)?>
|