cemu_graphic_packs/Source/HyruleWarriors/rules.txt
Milan 5623b7ffed Switch to Travis CI with multiple builds (#218)
* [Hyrule Warriors] Fixed coop-gamepad resolution (#212)

Thanks to @offline2007 for making a PR with this fix.

* [BotW] Add more lava artifact spots

Thanks to Soos from the discord for reporting these two spots.

Seems like there's likely some more manual editing that needs to be done, these shaders are just very minor (name) changes on the primarily used lava lake shader.

* Add Minecraft

* Shit pack

Probably only prevents HUD from counting down lmao

* add Splatoon LOD Bias pack

* Add BotW LOD Bias

* Change LOD Bias settings for BotW & Splat

Pretty much NVIDIA Inspector -3 now... If you want -16 you know what to do:

overwriteLodBias = -16

* [SSB4] Replace pixel mess with black screen

Should take care of the character issue, but it's now a black screen...

If you want to go back to the old method, comment out the width and height overrides and uncomment the format override

https://cdn.discordapp.com/attachments/416648220433711116/442867371229708311/unknown.png

* Add Runner2

Blur automatically disabled in res packs, separate pack made for native res users

Will add other regions at later date unless someone beats me to it

* Add other regions to Runner2

Demo title id included

* Switch to Travis CI with multiple builds

This will swap over to Travis which offers native linux builds. It's, against our expectations, slower or equal (probably due to lower specs), then our current Appveyor build. It does allow for a cleaner build and also implements a way to add random resolutions people would like to be added in our new 2 parallel building method. It builds Github Releases that contain multiple assets. This'll also make the common downloaded resolutions be more on their own so that people won't have loading problems. Also, the building process contains less initial spam due to the Travis' line folding. If there's an error from the php script it'll unfold automatically so no information is really hidden.
2018-05-13 13:10:06 -07:00

108 lines
2.7 KiB
Plaintext

<?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 = 000500001017D800,000500001017D900,000500001017CD00
name = "Hyrule Warriors - <?=$title?>"
version = 2
[TextureRedefine] #Game Resolution
width = 1280
height = 720
formatsExcluded = 0x431,0x433
tileModesExcluded = 0x001
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] #Game Resolution (Co-Op)
width = 864
height = 480
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] #Gamepad
width = 854
height = 480
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] #Gamepad (Co-Op)
width = 648
height = 360
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] #Only saw depth in Nsight
width = 640
height = 360
formatsExcluded = 0x35
tileModesExcluded = 0x001
overwriteWidth = <?=round($scaleFactorX*640)?>
overwriteHeight = <?=round($scaleFactorY*360)?>
[TextureRedefine] #Lighting?
width = 322
height = 182
overwriteWidth = <?=round($scaleFactorX*322)?>
overwriteHeight = <?=round($scaleFactorY*182)?>
[TextureRedefine] #Dupe of Main Game
width = 320
height = 180
formatsExcluded = 0x35,0x433
overwriteWidth = <?=round($scaleFactorX*320)?>
overwriteHeight = <?=round($scaleFactorY*180)?>
[TextureRedefine] #Lighting Blur?
width = 162
height = 92
overwriteWidth = <?=round($scaleFactorX*162)?>
overwriteHeight = <?=round($scaleFactorY*92)?>
[TextureRedefine] #Lighting Blur?
width = 160
height = 90
overwriteWidth = <?=round($scaleFactorX*160)?>
overwriteHeight = <?=round($scaleFactorY*90)?>
[TextureRedefine] #Dupe of Main Game?
width = 64
height = 64
formats = 0x005
#overwriteWidth = <?=round($scaleFactorX*64)?>
#overwriteHeight = <?=round($scaleFactorY*64)?>
[TextureRedefine] #Dupe of Main Game?
width = 16
height = 16
formats = 0x005
#overwriteWidth = <?=round($scaleFactorX*16)?>
#overwriteHeight = <?=round($scaleFactorY*16)?>
[TextureRedefine] #Dupe of Main Game?
width = 4
height = 4
formats = 0x005
#overwriteWidth = <?=round($scaleFactorX*6)?>
#overwriteHeight = <?=round($scaleFactorY*6)?>
[TextureRedefine] #Dupe of Main Game?
width = 1
height = 1
formats = 0x005
#overwriteWidth = <?=round($scaleFactorX*1)?>
#overwriteHeight = <?=round($scaleFactorY*1)?>
[TextureRedefine] # shadows
width = 1024
height = 2048
formats = 0x005
overwriteWidth = <?=round($scaleFactorY*1024)?>
overwriteHeight = <?=round($scaleFactorY*2048)?>