mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 04:19:47 +08:00
main window & home page
This commit is contained in:
parent
3a49e82bf7
commit
115436d871
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
BetterGenshinImpact/Assets/Model/PaddleOCR/ppocr_keys_v1.txt
(Stored with Git LFS)
BIN
BetterGenshinImpact/Assets/Model/PaddleOCR/ppocr_keys_v1.txt
(Stored with Git LFS)
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 1.1 KiB |
@ -34,6 +34,10 @@ public class PaddleOcrService : IOcrService
|
||||
AllowRotateDetection = false, /* 允许识别有角度的文字 */
|
||||
Enable180Classification = false, /* 允许识别旋转角度大于90度的文字 */
|
||||
};
|
||||
|
||||
// System.AccessViolationException
|
||||
// https://github.com/babalae/better-genshin-impact/releases/latest
|
||||
// 下载并解压到相同目录下
|
||||
}
|
||||
|
||||
public string Ocr(Mat mat)
|
||||
|
@ -35,21 +35,6 @@
|
||||
IsBackButtonVisible="Collapsed"
|
||||
IsPaneToggleVisible="True"
|
||||
OpenPaneLength="150">
|
||||
<!--<ui:NavigationView.AutoSuggestBox>
|
||||
<ui:AutoSuggestBox x:Name="AutoSuggestBox" PlaceholderText="Search">
|
||||
<ui:AutoSuggestBox.Icon>
|
||||
<ui:IconSourceElement>
|
||||
<ui:SymbolIconSource Symbol="Search24" />
|
||||
</ui:IconSourceElement>
|
||||
</ui:AutoSuggestBox.Icon>
|
||||
</ui:AutoSuggestBox>
|
||||
</ui:NavigationView.AutoSuggestBox>-->
|
||||
<!--<ui:NavigationView.Header>
|
||||
<ui:BreadcrumbBar
|
||||
Margin="42,32,0,0"
|
||||
FontSize="28"
|
||||
FontWeight="DemiBold" />
|
||||
</ui:NavigationView.Header>-->
|
||||
<ui:NavigationView.MenuItems>
|
||||
<ui:NavigationViewItem Content="启动"
|
||||
NavigationCacheMode="Enabled"
|
||||
|
@ -28,12 +28,7 @@ public partial class MainWindow : FluentWindow, INavigationWindow
|
||||
protected override void OnSourceInitialized(EventArgs e)
|
||||
{
|
||||
base.OnSourceInitialized(e);
|
||||
|
||||
if (WindowBackdrop.IsSupported(WindowBackdropType.Mica))
|
||||
{
|
||||
Background = new SolidColorBrush(Colors.Transparent);
|
||||
WindowBackdrop.ApplyBackdrop(this, WindowBackdropType.Mica);
|
||||
}
|
||||
TryApplySystemBackdrop();
|
||||
}
|
||||
|
||||
public INavigationView GetNavigation() => RootNavigation;
|
||||
@ -53,4 +48,28 @@ public partial class MainWindow : FluentWindow, INavigationWindow
|
||||
public void ShowWindow() => Show();
|
||||
|
||||
public void CloseWindow() => Close();
|
||||
|
||||
private void TryApplySystemBackdrop()
|
||||
{
|
||||
if (WindowBackdrop.IsSupported(WindowBackdropType.Tabbed))
|
||||
{
|
||||
Background = new SolidColorBrush(Colors.Transparent);
|
||||
WindowBackdrop.ApplyBackdrop(this, WindowBackdropType.Tabbed);
|
||||
return;
|
||||
}
|
||||
|
||||
if (WindowBackdrop.IsSupported(WindowBackdropType.Mica))
|
||||
{
|
||||
Background = new SolidColorBrush(Colors.Transparent);
|
||||
WindowBackdrop.ApplyBackdrop(this, WindowBackdropType.Mica);
|
||||
return;
|
||||
}
|
||||
|
||||
if (WindowBackdrop.IsSupported(WindowBackdropType.Acrylic))
|
||||
{
|
||||
Background = new SolidColorBrush(Colors.Transparent);
|
||||
WindowBackdrop.ApplyBackdrop(this, WindowBackdropType.Acrylic);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -16,59 +16,69 @@
|
||||
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<Page.Resources>
|
||||
<Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type ui:Button}">
|
||||
<Setter Property="MinWidth" Value="128" />
|
||||
</Style>
|
||||
<Style BasedOn="{StaticResource DefaultComboBoxStyle}" TargetType="{x:Type ComboBox}">
|
||||
<Setter Property="MinWidth" Value="128" />
|
||||
</Style>
|
||||
<Style BasedOn="{StaticResource DefaultTextBoxStyle}" TargetType="{x:Type ui:TextBox}">
|
||||
<Setter Property="MinWidth" Value="128" />
|
||||
</Style>
|
||||
</Page.Resources>
|
||||
|
||||
<b:Interaction.Triggers>
|
||||
<b:EventTrigger EventName="Loaded">
|
||||
<b:InvokeCommandAction Command="{Binding LoadedCommand}" CommandParameter="{Binding}" />
|
||||
</b:EventTrigger>
|
||||
</b:Interaction.Triggers>
|
||||
|
||||
<StackPanel Margin="42,16,42,12">
|
||||
<StackPanel Margin="42">
|
||||
|
||||
<Border Height="200" CornerRadius="8">
|
||||
<Border.Background>
|
||||
<ImageBrush ImageSource="pack://application:,,,/Assets/mona.jpg"
|
||||
RenderOptions.BitmapScalingMode="HighQuality"
|
||||
Stretch="UniformToFill" />
|
||||
</Border.Background>
|
||||
<Border CornerRadius="8">
|
||||
<Border.Background>
|
||||
<RadialGradientBrush>
|
||||
<GradientStop Offset="0" Color="#1F000000" />
|
||||
<GradientStop Offset="1" Color="#4F000000" />
|
||||
</RadialGradientBrush>
|
||||
</Border.Background>
|
||||
<Grid>
|
||||
<Border ClipToBounds="True" CornerRadius="8">
|
||||
<Border.Background>
|
||||
<ImageBrush ImageSource="pack://application:,,,/Assets/mona.jpg"
|
||||
RenderOptions.BitmapScalingMode="HighQuality"
|
||||
Stretch="UniformToFill" />
|
||||
</Border.Background>
|
||||
<Border.OpacityMask>
|
||||
<LinearGradientBrush StartPoint="0,1" EndPoint="1,0">
|
||||
<GradientStop Color="Transparent" />
|
||||
<GradientStop Offset="0.7" Color="White" />
|
||||
</LinearGradientBrush>
|
||||
</Border.OpacityMask>
|
||||
</Border>
|
||||
<Grid>
|
||||
<StackPanel Margin="48,0"
|
||||
<StackPanel Margin="52,0,0,26"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Center"
|
||||
VerticalAlignment="Bottom"
|
||||
Background="Transparent">
|
||||
<ui:TextBlock FontTypography="Title"
|
||||
Foreground="#FFFFFF"
|
||||
Text="BetterGI" />
|
||||
<ui:TextBlock FontTypography="Subtitle" Foreground="#B7FFFFFF">
|
||||
更好的原神,免费且开源
|
||||
</ui:TextBlock>
|
||||
<ui:TextBlock FontTypography="BodyStrong" Foreground="#B7FFFFFF">
|
||||
<Hyperlink Command="{Binding GoToWikiUrlCommand}" Foreground="#B7FFFFFF">
|
||||
点击查看教程
|
||||
<ui:TextBlock FontTypography="Title" Text="BetterGI" />
|
||||
<ui:TextBlock FontTypography="Subtitle"
|
||||
Opacity="0.8"
|
||||
Text="更好的原神,免费且开源" />
|
||||
<ui:TextBlock FontTypography="BodyStrong" Opacity="0.6">
|
||||
<Hyperlink Command="{Binding GoToWikiUrlCommand}"
|
||||
Foreground="#B7FFFFFF"
|
||||
TextDecorations="None">
|
||||
<Run>点击查看教程</Run>
|
||||
<Run FontFamily="{StaticResource FluentSystemIcons}" FontWeight="Light"></Run>
|
||||
</Hyperlink>
|
||||
|
||||
</ui:TextBlock>
|
||||
</StackPanel>
|
||||
<!--<ui:TextBlock
|
||||
Margin="12"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Bottom"
|
||||
FontTypography="Caption"
|
||||
Foreground="#57FFFFFF"
|
||||
Text="Made with ❤ by huiyadanli" />-->
|
||||
</Grid>
|
||||
</Border>
|
||||
</Grid>
|
||||
</Border>
|
||||
|
||||
<!-- 原神,启动! -->
|
||||
<ui:CardExpander Margin="0,12,0,12"
|
||||
ContentPadding="0"
|
||||
Icon="{ui:SymbolIcon Play24}">
|
||||
Icon="{ui:SymbolIcon Play24}"
|
||||
IsExpanded="True">
|
||||
<ui:CardExpander.Header>
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
@ -87,6 +97,7 @@
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{StaticResource CaptionTextBlockStyle}"
|
||||
Text="启动后才能使用各项功能,点击展开启动相关配置。"
|
||||
TextWrapping="Wrap" />
|
||||
<StackPanel Grid.Row="0"
|
||||
@ -105,140 +116,113 @@
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</ui:CardExpander.Header>
|
||||
<StackPanel>
|
||||
<Grid Margin="16" >
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<StackPanel Margin="36,0,36,0" UseLayoutRounding="True">
|
||||
<Grid MinHeight="40" Margin="16,8">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ui:TextBlock
|
||||
Grid.Row="0"
|
||||
Margin="0,0,0,5"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="安装位置"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBox x:Name="InstallPathTextBox"
|
||||
Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
MinWidth="90"
|
||||
Margin="0,0,10,0"
|
||||
Text="{Binding Config.InstallPath, Mode=TwoWay}" />
|
||||
<ui:Button x:Name="SelectInstallPathButton"
|
||||
Grid.Row="1"
|
||||
Grid.Column="1"
|
||||
Margin="0,0,36,0"
|
||||
Command="{Binding SelectInstallPathCommand}"
|
||||
Content="..." />
|
||||
<StackPanel VerticalAlignment="Center">
|
||||
<ui:TextBlock FontTypography="Body"
|
||||
Text="安装位置"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Margin="0,2,0,0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{DynamicResource CaptionTextBlockStyle}"
|
||||
Text="{Binding Config.InstallPath, Mode=TwoWay}" />
|
||||
</StackPanel>
|
||||
|
||||
<ui:Button Grid.Column="1"
|
||||
Command="{Binding SelectInstallPathCommand}"
|
||||
Content="浏览文件" />
|
||||
</Grid>
|
||||
<Grid Margin="16">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Separator Margin="-18,0" BorderThickness="0,1,0,0" />
|
||||
<Grid MinHeight="40" Margin="16,8">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ui:TextBlock Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="截图模式"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Text="如果可用的话,推荐选择 BitBlt,问题较少"
|
||||
TextWrapping="Wrap" />
|
||||
<ComboBox x:Name="CaptureModeComboBox"
|
||||
Grid.Row="0"
|
||||
Grid.RowSpan="2"
|
||||
Grid.Column="1"
|
||||
Margin="0,0,36,0"
|
||||
<StackPanel VerticalAlignment="Center">
|
||||
<ui:TextBlock FontTypography="Body"
|
||||
Text="截图模式"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Margin="0,2,0,0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{StaticResource CaptionTextBlockStyle}"
|
||||
Text="如果可用的话,推荐选择 BitBlt,问题较少"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
|
||||
<ComboBox Grid.Column="1"
|
||||
ItemsSource="{Binding ModeNames}"
|
||||
SelectedItem="{Binding Config.CaptureMode, Mode=TwoWay}" />
|
||||
</Grid>
|
||||
<Grid Margin="16">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Separator Margin="-18,0" BorderThickness="0,1,0,0" />
|
||||
<Grid MinHeight="40" Margin="16,8">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ui:TextBlock Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="触发器间隔(毫秒)"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Text="默认50ms,机器性能一般的情况下不建议调整这个值"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBox x:Name="IntervalNumberBox"
|
||||
Grid.Row="0"
|
||||
Grid.RowSpan="2"
|
||||
Grid.Column="1"
|
||||
MinWidth="90"
|
||||
Margin="0,0,36,0"
|
||||
<StackPanel VerticalAlignment="Center">
|
||||
<ui:TextBlock FontTypography="Body"
|
||||
Text="触发器间隔(毫秒)"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Margin="0,2,0,0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{StaticResource CaptionTextBlockStyle}"
|
||||
Text="默认50ms,机器性能一般的情况下不建议调整这个值"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
|
||||
<ui:TextBox Grid.Column="1"
|
||||
VerticalAlignment="Center"
|
||||
Text="{Binding Config.TriggerInterval, Mode=TwoWay}" />
|
||||
</Grid>
|
||||
<Grid Margin="16">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Separator Margin="-18,0" BorderThickness="0,1,0,0" />
|
||||
<Grid MinHeight="40" Margin="16,8">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ui:TextBlock Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="测试图像捕获"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Text="测试功能,测试几种截图模式的效果"
|
||||
TextWrapping="Wrap" />
|
||||
<StackPanel VerticalAlignment="Center">
|
||||
<ui:TextBlock FontTypography="Body"
|
||||
Text="测试图像捕获"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Margin="0,2,0,0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{StaticResource CaptionTextBlockStyle}"
|
||||
Text="测试功能,测试几种截图模式的效果"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
|
||||
<ui:Button x:Name="StartCaptureTest"
|
||||
Grid.Row="0"
|
||||
Grid.RowSpan="2"
|
||||
Grid.Column="1"
|
||||
Margin="0,0,36,0"
|
||||
Command="{Binding StartCaptureTestCommand}"
|
||||
Content="测试图像捕获" />
|
||||
</Grid>
|
||||
<Grid Margin="16">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
</Grid.RowDefinitions>
|
||||
<Separator Margin="-18,0" BorderThickness="0,1,0,0" />
|
||||
<Grid MinHeight="40" Margin="16,8">
|
||||
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ui:TextBlock Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="系统图形设置"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Grid.Row="1"
|
||||
Grid.Column="0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Text="可在此处关闭 Windows11 窗口化优化以支持 BitBlt"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:Button Grid.Row="0"
|
||||
Grid.RowSpan="2"
|
||||
Grid.Column="1"
|
||||
Margin="0,0,36,0"
|
||||
<StackPanel VerticalAlignment="Center">
|
||||
<ui:TextBlock Grid.Row="0"
|
||||
Grid.Column="0"
|
||||
FontTypography="Body"
|
||||
Text="系统图形设置"
|
||||
TextWrapping="Wrap" />
|
||||
<ui:TextBlock Margin="0,2,0,0"
|
||||
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
|
||||
Style="{StaticResource CaptionTextBlockStyle}"
|
||||
Text="可在此处关闭 Windows11 窗口化优化以支持 BitBlt"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
|
||||
<ui:Button Grid.Column="1"
|
||||
Command="{Binding OpenDisplayAdvancedGraphicsSettingsCommand}"
|
||||
Content="开始设置" />
|
||||
</Grid>
|
||||
|
Loading…
Reference in New Issue
Block a user