2021-04-25 22:59:36 -05:00
|
|
|
using OwlCore.AbstractUI.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
2021-05-26 11:26:08 -05:00
|
|
|
using ZuneModCore.Win32;
|
2021-04-25 22:59:36 -05:00
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
namespace ZuneModCore.Mods;
|
|
|
|
|
|
|
|
|
|
public class FeaturesOverrideMod : Mod
|
2021-04-25 22:59:36 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
private const string ZUNE_FEATURESOVERRIDE_REGKEY = RegEdit.ZUNE_REG_PATH + "FeaturesOverride";
|
|
|
|
|
|
|
|
|
|
public override string Id => nameof(FeaturesOverrideMod);
|
|
|
|
|
|
|
|
|
|
public override string Title => "Features Override";
|
|
|
|
|
|
|
|
|
|
public override string Description => "Re-enables access to some features disabled by Microsoft, such as the Social and Marketplace tabs.\r\n" +
|
|
|
|
|
"Does not restore functionality of those features, but shows them in the software.";
|
|
|
|
|
|
|
|
|
|
public override string Author => "Rafael Rivera";
|
|
|
|
|
|
|
|
|
|
public override AbstractUICollection? GetDefaultOptionsUI()
|
2021-04-25 22:59:36 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
AbstractUICollection optionsUi = new(nameof(FeaturesOverrideMod))
|
2021-04-25 22:59:36 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
// We don't know what some of these overrides do exactly, so hide them from the user.
|
|
|
|
|
// The ID is the name of the registry key, the label is the display name
|
2021-04-25 22:59:36 -05:00
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
new AbstractBoolean("Apps", "Apps"),
|
|
|
|
|
new AbstractBoolean("Art", "Art"),
|
|
|
|
|
new AbstractBoolean("Channels", "Channels"),
|
|
|
|
|
new AbstractBoolean("FirstLaunchIntroVideo", "First Launch Intro Video"),
|
|
|
|
|
new AbstractBoolean("Games", "Games"),
|
|
|
|
|
new AbstractBoolean("Marketplace", "Marketplace"),
|
|
|
|
|
new AbstractBoolean("MBRPreview", "[Marketplace] Media Preview"),
|
|
|
|
|
new AbstractBoolean("MBRPurchase", "[Marketplace] Media Purchase"),
|
|
|
|
|
new AbstractBoolean("MBRRental", "[Marketplace] Media Rental"),
|
|
|
|
|
new AbstractBoolean("Music", "Music"),
|
|
|
|
|
new AbstractBoolean("MusicVideos", "Music Videos"),
|
|
|
|
|
new AbstractBoolean("Nowplaying", "Now Playing"),
|
|
|
|
|
new AbstractBoolean("NowplayingArt", "Now Playing Art"),
|
|
|
|
|
new AbstractBoolean("Picks", "Picks"),
|
|
|
|
|
new AbstractBoolean("Podcasts", "Podcasts"),
|
|
|
|
|
new AbstractBoolean("QuickMixLocal", "Quick Mix (Local)"),
|
|
|
|
|
new AbstractBoolean("QuickMixZMP", "Quick Mix (ZMP)"),
|
|
|
|
|
new AbstractBoolean("Quickplay", "Quickplay"),
|
|
|
|
|
new AbstractBoolean("Sign In Available", "Sign In"),
|
|
|
|
|
new AbstractBoolean("Social", "Social"),
|
|
|
|
|
new AbstractBoolean("SocialMarketplace", "Social Marketplace"),
|
|
|
|
|
new AbstractBoolean("SubscriptionFreeTracks", "Subscription Free Tracks"),
|
|
|
|
|
new AbstractBoolean("Videos", "Videos"),
|
|
|
|
|
};
|
|
|
|
|
optionsUi.Title = "select features";
|
|
|
|
|
optionsUi.Subtitle = "CHOOSE WHICH ZUNE FEATURES YOU WISH TO ENABLE.";
|
|
|
|
|
return optionsUi;
|
|
|
|
|
}
|
2021-04-25 22:59:36 -05:00
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
public override IReadOnlyList<Type>? DependentMods => null;
|
2021-04-25 22:59:36 -05:00
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
public override Task Init()
|
|
|
|
|
{
|
|
|
|
|
foreach (AbstractUIElement uiElem in OptionsUI!)
|
2021-04-25 22:59:36 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
if (uiElem is AbstractBoolean boolElem)
|
2021-05-06 02:36:14 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
bool? featureOverride = GetFeatureOverride(boolElem.Id);
|
|
|
|
|
boolElem.State = featureOverride ?? false;
|
2021-05-06 02:36:14 -05:00
|
|
|
}
|
2021-04-25 22:59:36 -05:00
|
|
|
}
|
|
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
return Task.CompletedTask;
|
|
|
|
|
}
|
2021-08-04 23:02:07 -05:00
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
public override async Task<string?> Apply() => await Apply(false);
|
|
|
|
|
|
|
|
|
|
public async Task<string?> Apply(bool applyAll = false)
|
|
|
|
|
{
|
|
|
|
|
// Use user choices from AbstractUI
|
|
|
|
|
foreach (AbstractUIElement uiElem in OptionsUI!)
|
2021-04-25 22:59:36 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
if (uiElem is AbstractBoolean boolElem && (boolElem.State || applyAll))
|
2021-05-06 02:36:14 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
bool isSuccess = SetFeatureOverride(boolElem.Id, true);
|
|
|
|
|
if (!isSuccess)
|
2021-05-06 02:36:14 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
string? resetStatus = await Reset();
|
|
|
|
|
if (resetStatus != null)
|
2021-05-06 02:36:14 -05:00
|
|
|
{
|
2024-05-20 21:53:52 -05:00
|
|
|
// The reset failed as well, return both errors
|
|
|
|
|
return "Failed to set registry keys. Unable to clean up partial overrides:\r\n" + resetStatus;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return "Failed to set registry keys. Automatically cleaned up partial changes.";
|
2021-05-06 02:36:14 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-25 22:59:36 -05:00
|
|
|
}
|
|
|
|
|
|
2024-05-20 21:53:52 -05:00
|
|
|
return null;
|
2021-04-25 22:59:36 -05:00
|
|
|
}
|
2024-05-20 21:53:52 -05:00
|
|
|
|
|
|
|
|
public override async Task<string?> Reset()
|
|
|
|
|
{
|
|
|
|
|
RegEdit.CurrentUserDeleteKey(ZUNE_FEATURESOVERRIDE_REGKEY);
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool SetFeatureOverride(string feature, bool value) =>
|
|
|
|
|
RegEdit.CurrentUserSetBoolValue(ZUNE_FEATURESOVERRIDE_REGKEY, feature, value);
|
|
|
|
|
|
|
|
|
|
public static bool? GetFeatureOverride(string feature) =>
|
|
|
|
|
RegEdit.CurrentUserGetBoolValue(ZUNE_FEATURESOVERRIDE_REGKEY, feature);
|
|
|
|
|
|
|
|
|
|
public static void ResetFeatureOverride(string feature) =>
|
|
|
|
|
RegEdit.CurrentUserDeleteValue(ZUNE_FEATURESOVERRIDE_REGKEY, feature);
|
2021-04-25 22:59:36 -05:00
|
|
|
}
|