This commit is contained in:
ced 2021-08-20 14:22:09 +09:00
parent 5f21ea7927
commit b011dcef27
4 changed files with 46 additions and 18 deletions

@ -1,7 +1,9 @@
using System;
using System.Windows;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Discord;
@ -10,13 +12,17 @@ using Discord.Commands;
using Microsoft.Extensions.DependencyInjection;
using CedBotSharp.Bot.Services;
using System.Net.Http;
using System.Windows.Threading;
namespace CedBotSharp.Bot
{
class CedBot
{
public CedBot(string token)
private MainWindow window;
public CedBot(MainWindow window, string token)
{
this.window = window;
_ = MainAsync(token);
}
@ -41,6 +47,11 @@ namespace CedBotSharp.Bot
private Task LogAsync(LogMessage log)
{
Console.WriteLine(log.ToString());
window.Dispatcher.Invoke(new Action(() => {
window.WriteLog("Discord.NET", log.ToString());
}));
return Task.CompletedTask;
}

@ -250,10 +250,6 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
@ -262,12 +258,11 @@
<Compile Include="Bot\Modules\PublicModule.cs" />
<Compile Include="Bot\Services\CommandHandlingService.cs" />
<Compile Include="Bot\Services\PictureService.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
@ -300,6 +295,12 @@
<ItemGroup>
<Folder Include="Extensions\" />
</ItemGroup>
<ItemGroup>
<Page Include="MainWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

@ -5,14 +5,22 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:CedBotSharp"
mc:Ignorable="d"
Title="CSharp Bot GUI" Height="450" Width="800" MinWidth="800" MinHeight="444" ResizeMode="CanMinimize">
<Grid Height="419" VerticalAlignment="Top">
<Menu Margin="0,0,0,399">
<MenuItem x:Name="FileMenu" Header="File" Height="20" Width="32">
<MenuItem x:Name="ExitItem" Header="Exit" HorizontalAlignment="Left" Height="20" Width="140" Click="ExitItem_Click"/>
Title="CedBot GUI" Height="451.75" Width="808.75">
<Grid>
<Menu Height="19" VerticalAlignment="Top">
<MenuItem Header="File">
<MenuItem Header="ExitItem" HorizontalAlignment="Left" Click="ExitItem_Click"/>
</MenuItem>
</Menu>
<StatusBar VerticalAlignment="Bottom" />
<TabControl Margin="0,20,0,0">
<TabItem Header="Main">
<Grid Background="#FFE5E5E5"/>
</TabItem>
<TabItem Header="Console">
<Grid Background="#FFE5E5E5">
<TextBox x:Name="LogBox" TextWrapping="Wrap" Background="#FF1B1B1B" Foreground="White" SelectionBrush="#FF1EA200"/>
</Grid>
</TabItem>
</TabControl>
</Grid>
</Window>

@ -23,15 +23,23 @@ namespace CedBotSharp
{
public MainWindow()
{
DotNetEnv.Env.Load(".env");
InitializeComponent();
DotNetEnv.Env.Load(".env");
new Bot.CedBot(DotNetEnv.Env.GetString("token"));
Loaded += (s, e) => {
new Bot.CedBot(this, DotNetEnv.Env.GetString("token"));
};
}
private void ExitItem_Click(object sender, RoutedEventArgs e)
{
Application.Current.Shutdown();
}
public void WriteLog(string title, string text)
{
LogBox.AppendText("[" + title + " - " + System.DateTime.Now.ToString() + "]" + text + "\r\n");
LogBox.ScrollToEnd();
}
}
}