mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
创意工坊支持
This commit is contained in:
parent
35acb61760
commit
68feb5c409
@ -18,7 +18,7 @@ namespace VPet_Simulator.Core
|
||||
/// <returns></returns>
|
||||
public static Brush ResourcesBrush(BrushType name)
|
||||
{
|
||||
return (Brush)Application.Current.Resources.MergedDictionaries.Last()[name.ToString()];
|
||||
return (Brush)Application.Current.Resources.MergedDictionaries.First()[name.ToString()];
|
||||
}
|
||||
public enum BrushType
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" Title="桌宠管理控制台" Height="450" Width="450"
|
||||
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" Title="桌宠管理开发控制台" Height="450" Width="450"
|
||||
FontSize="16">
|
||||
<TabControl pu:TabControlHelper.ItemsSelectedBackground="White"
|
||||
pu:TabControlHelper.HeaderPanelBackground="{DynamicResource PrimaryLight}">
|
||||
|
@ -448,11 +448,11 @@
|
||||
<TextBlock x:Name="ButtonPublish" HorizontalAlignment="Left" Margin="0,2,0,0"
|
||||
TextWrapping="Wrap" Text="更新至Steam" VerticalAlignment="Top" FontSize="12"
|
||||
Width="74" Foreground="DimGray" TextDecorations="Underline" Cursor="Hand"
|
||||
IsEnabled="False" MouseDown="ButtonPublish_MouseDown" />
|
||||
MouseDown="ButtonPublish_MouseDown" />
|
||||
<TextBlock x:Name="ButtonSteam" HorizontalAlignment="Left" Margin="0,2,0,0"
|
||||
TextWrapping="Wrap" Text="创意工坊页面" VerticalAlignment="Top" FontSize="12"
|
||||
Width="72" Foreground="DimGray" TextDecorations="Underline" Cursor="Hand"
|
||||
IsEnabled="False" MouseDown="ButtonSteam_MouseDown" />
|
||||
MouseDown="ButtonSteam_MouseDown" />
|
||||
<ProgressBar x:Name="ProgressBarUpload" Margin="0,2,0,0" Visibility="Collapsed"
|
||||
pu:ProgressBarHelper.CornerRadius="2" VerticalAlignment="Top" Height="30"
|
||||
Value="60" Background="{DynamicResource Primary}"
|
||||
|
@ -199,7 +199,7 @@ namespace VPet_Simulator.Windows
|
||||
ButtonPublish.Text = "更新至Steam";
|
||||
ButtonSteam.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
|
||||
}
|
||||
if (mod.ItemID != 1 && mod.AuthorID == Steamworks.SteamClient.SteamId.AccountId)
|
||||
if (mod.ItemID != 1 && (mod.AuthorID == Steamworks.SteamClient.SteamId.AccountId || mod.AuthorID == 0))
|
||||
{
|
||||
ButtonPublish.IsEnabled = true;
|
||||
ButtonPublish.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
|
||||
@ -282,7 +282,10 @@ namespace VPet_Simulator.Windows
|
||||
|
||||
private void ListMod_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
if (!AllowChange || ListMod.SelectedItem == null)
|
||||
return;
|
||||
|
||||
ShowMod((string)((ListBoxItem)ListMod.SelectedItem).Content);
|
||||
}
|
||||
|
||||
private void ButtonOpenModFolder_MouseDown(object sender, MouseButtonEventArgs e)
|
||||
@ -335,6 +338,11 @@ namespace VPet_Simulator.Windows
|
||||
MessageBoxX.Show("模组 Core 为<虚拟桌宠模拟器>核心文件,无法发布\n如需发布自定义内容,请复制并更改名称", "MOD上传失败", MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
if (!File.Exists(mod.Path.FullName + @"\icon.png") || new FileInfo(mod.Path.FullName + @"\icon.png").Length > 524288)
|
||||
{
|
||||
MessageBoxX.Show("封面图片(icon.png)大于500kb,请修改后重试", "MOD上传失败", MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
#if DEMO
|
||||
MessageBoxX.Show("经测试,除正式版均无创意工坊权限,此功能仅作为展示", "特殊版无法上传创意工坊");
|
||||
#endif
|
||||
@ -349,23 +357,28 @@ namespace VPet_Simulator.Windows
|
||||
.WithDescription(mod.Intro)
|
||||
.WithPublicVisibility()
|
||||
.WithPreviewFile(mod.Path.FullName + @"\icon.png")
|
||||
.WithContent(mod.Path);
|
||||
//foreach (string tag in mod.Content.Trim('\n').Split('\n'))
|
||||
// result.WithTag(tag);
|
||||
.WithContent(mod.Path.FullName);
|
||||
foreach (string tag in mod.Content.Trim('\n').Split('\n'))
|
||||
result.WithTag(tag);
|
||||
var r = await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
|
||||
|
||||
mod.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
|
||||
mod.WriteFile();
|
||||
if (r.Success)
|
||||
{
|
||||
mod.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
|
||||
mod.ItemID = r.FileId.Value;
|
||||
mod.WriteFile();
|
||||
//ProgressBarUpload.Value = 0;
|
||||
//await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
|
||||
if (MessageBoxX.Show($"{mod.Name} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑详细介绍和图标?", "MOD上传成功", MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
|
||||
{
|
||||
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
|
||||
}
|
||||
}
|
||||
else
|
||||
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n 如需代上传物品可以联系作者", $"MOD上传失败 {r.Result}");
|
||||
{
|
||||
mod.AuthorID = 0; mod.WriteFile();
|
||||
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{r.Result}", $"MOD上传失败 {r.Result}");
|
||||
}
|
||||
}
|
||||
else if (mod.AuthorID == Steamworks.SteamClient.SteamId.AccountId)
|
||||
{
|
||||
@ -386,7 +399,7 @@ namespace VPet_Simulator.Windows
|
||||
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
|
||||
}
|
||||
else
|
||||
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件", "MOD更新失败", MessageBoxIcon.Error);
|
||||
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{r.Result}", $"MOD更新失败 {r.Result}");
|
||||
}
|
||||
ButtonPublish.IsEnabled = true;
|
||||
ButtonPublish.Text = "任务完成";
|
||||
|
Loading…
Reference in New Issue
Block a user