Compare commits
109 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 08db1eb681 | |||
| 9be546d25f | |||
| 2910b1aeda | |||
| 7a0e392ba8 | |||
| 91c6ea1269 | |||
| c0da656331 | |||
| eea7b9f628 | |||
| a784e598de | |||
| 66596b530b | |||
| 5ef41b21b0 | |||
| c291ed1788 | |||
| 78d25e6231 | |||
| 73af2039ba | |||
| c5be9d2c6e | |||
| c46417c56d | |||
| 895c55a52f | |||
| e54e2e7840 | |||
| 0a710bea8b | |||
| d4de543d71 | |||
| a0eac4ae95 | |||
| 22e9377062 | |||
| 11e6aab8fd | |||
| 13f313d4a0 | |||
| 64951c579f | |||
| 4130c36335 | |||
| 7f2fc99d0b | |||
| eb640ff749 | |||
| 54a564df04 | |||
| 71dc63f2a2 | |||
| 68f673c8d7 | |||
| d5b7fd7af3 | |||
| 573e7c86e8 | |||
| a1bf573a07 | |||
| 525f3fb4ae | |||
| 9f298d8ce8 | |||
| 11d9c641a6 | |||
| c2f7adc1d0 | |||
| c19f96ea37 | |||
| 9bbde62d70 | |||
| a83f97828c | |||
| 44654dd784 | |||
| 410055c9f2 | |||
| ce75d8aa0b | |||
| be436f1b1c | |||
| 14c11b81b6 | |||
| dd38b91d68 | |||
| 987f27fcbc | |||
| 42ecde799c | |||
| ce70d86fd3 | |||
| ea280ea05d | |||
| c2e230ca48 | |||
| 30317dd1bb | |||
| 6753acc04f | |||
| 4468651373 | |||
| b6de508ea0 | |||
| d70770e2f0 | |||
| 2c2f2d2d94 | |||
| c5a234cea7 | |||
| c6f9994c25 | |||
| 6f1ffd40b6 | |||
| 8ab928be7c | |||
| 30c8b2ef92 | |||
| 24416dc345 | |||
| 8bfa22451e | |||
| 8be9a9a925 | |||
| d1f5444caf | |||
| aec57d7d9d | |||
| 2f18629e83 | |||
| 5f44e63129 | |||
| 0df27f7e50 | |||
| df282d1164 | |||
| af2ad3dab7 | |||
| 8672b09ff0 | |||
| d23c8870ed | |||
| 1bfd2f5219 | |||
| 77ca5aa1ff | |||
| 12606d45fb | |||
| ce1eeab166 | |||
| 4ac8182cf2 | |||
| 3cdfb61586 | |||
| e3d504ceb7 | |||
| 99a6bdd473 | |||
| 8b92b32e60 | |||
| 5868ca882b | |||
| b3e8c7ee5e | |||
| 6b769f413c | |||
| b772e29084 | |||
| 8b0703f25e | |||
| 1b07d0e2ab | |||
| 6a08694753 | |||
| fabefabe0f | |||
| a572fdf72b | |||
| a855f0664a | |||
| f8f5140d47 | |||
| e9c7b61ced | |||
| e27a6b88d4 | |||
| 70c028aee7 | |||
| bbfe6299b5 | |||
| d5ff2aeee0 | |||
| 60c8a19a58 | |||
| dd30ebd516 | |||
| 186a77eacc | |||
| a7c2b7e5d1 | |||
| 78050de03f | |||
| f7f482ef30 | |||
| 8a8803395f | |||
| ad71f0fd47 | |||
| fa7d16473c | |||
| b0487920d0 |
@@ -0,0 +1,77 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using PdfSharp.Drawing;
|
||||||
|
using PdfSharp.Fonts;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Custom font resolver for PdfSharp that loads fonts from the res/fonts directory.
|
||||||
|
/// </summary>
|
||||||
|
public class CustomFontResolver : IFontResolver
|
||||||
|
{
|
||||||
|
private static string? _fontPath;
|
||||||
|
|
||||||
|
public CustomFontResolver()
|
||||||
|
{
|
||||||
|
// Try to locate the fonts directory
|
||||||
|
var basePath = AppDomain.CurrentDomain.BaseDirectory;
|
||||||
|
var possiblePaths = new[]
|
||||||
|
{
|
||||||
|
Path.Combine(basePath, "res", "fonts"),
|
||||||
|
Path.Combine(basePath, "fonts"),
|
||||||
|
Path.Combine(Directory.GetCurrentDirectory(), "res", "fonts"),
|
||||||
|
Path.Combine(Directory.GetCurrentDirectory(), "fonts"),
|
||||||
|
};
|
||||||
|
|
||||||
|
foreach (var path in possiblePaths)
|
||||||
|
{
|
||||||
|
if (Directory.Exists(path))
|
||||||
|
{
|
||||||
|
_fontPath = path;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_fontPath == null)
|
||||||
|
{
|
||||||
|
throw new DirectoryNotFoundException(
|
||||||
|
$"Font directory not found. Searched: {string.Join(", ", possiblePaths)}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public FontResolverInfo ResolveTypeface(string familyName, bool isBold, bool isItalic)
|
||||||
|
{
|
||||||
|
// Map family name to font file
|
||||||
|
var fileName = familyName switch
|
||||||
|
{
|
||||||
|
"Cantarell" => isBold
|
||||||
|
? isItalic ? "Cantarell-BoldItalic.ttf" : "Cantarell-Bold.ttf"
|
||||||
|
: isItalic ? "Cantarell-Italic.ttf" : "Cantarell-Regular.ttf",
|
||||||
|
_ => isBold
|
||||||
|
? isItalic ? "Cantarell-BoldItalic.ttf" : "Cantarell-Bold.ttf"
|
||||||
|
: isItalic ? "Cantarell-Italic.ttf" : "Cantarell-Regular.ttf"
|
||||||
|
};
|
||||||
|
|
||||||
|
var fontPath = Path.Combine(_fontPath, fileName);
|
||||||
|
|
||||||
|
if (!File.Exists(fontPath))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException($"Font file not found: {fontPath}");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return a FontResolverInfo with the font path
|
||||||
|
return new FontResolverInfo(fontPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
public byte[]? GetFont(string faceName)
|
||||||
|
{
|
||||||
|
// faceName is the path returned by ResolveTypeface
|
||||||
|
if (File.Exists(faceName))
|
||||||
|
{
|
||||||
|
return File.ReadAllBytes(faceName);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
+236
-10
@@ -3,7 +3,7 @@
|
|||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||||
x:Class="spplus.MainWindow"
|
x:Class="spplus.MainWindow" WindowState="Maximized" Icon="res/logo.ico"
|
||||||
Title="spplus">
|
Title="spplus">
|
||||||
<Border>
|
<Border>
|
||||||
<Grid RowDefinitions="30,*">
|
<Grid RowDefinitions="30,*">
|
||||||
@@ -11,16 +11,17 @@
|
|||||||
<MenuItem Header="Datei">
|
<MenuItem Header="Datei">
|
||||||
<!-- <MenuItem Click="MnuSettings_OnClick" x:Name="MnuSettings" Header="Einstellungen" /> -->
|
<!-- <MenuItem Click="MnuSettings_OnClick" x:Name="MnuSettings" Header="Einstellungen" /> -->
|
||||||
<!-- <Separator /> -->
|
<!-- <Separator /> -->
|
||||||
<MenuItem x:Name="MnuExpSettings" Header="Einstellungen exportieren" />
|
<MenuItem x:Name="MnuExpSettings" Header="Einstellungen exportieren" Click="MnuExpSettings_OnClick" />
|
||||||
<MenuItem x:Name="MnuExit" Header="Beenden" />
|
<MenuItem x:Name="MnuImpResult" Header="Berechnung importieren" Click="MnuImpResult_OnClick" />
|
||||||
|
<MenuItem x:Name="MnuExit" Header="Beenden" Click="MnuExit_OnClick"/>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem Header="Hilfe">
|
<MenuItem Header="Hilfe">
|
||||||
<MenuItem Header="Onlinehilfe" x:Name="MnuHelp" />
|
<MenuItem Header="Onlinehilfe" x:Name="MnuHelp" Click="MnuHelp_OnClick"/>
|
||||||
<MenuItem Header="Git" x:Name="MnuGit" />
|
<MenuItem Header="Git" x:Name="MnuGit" Click="MnuGit_OnClick"/>
|
||||||
<MenuItem Header="Über" x:Name="MnuAbout" />
|
<MenuItem Header="Über" x:Name="MnuAbout" Click="MnuAbout_OnClick" />
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</Menu>
|
</Menu>
|
||||||
<TabControl Grid.Row="1">
|
<TabControl x:Name="TclMainView" Grid.Row="1" TabStripPlacement="Left">
|
||||||
<TabItem>
|
<TabItem>
|
||||||
<TabItem.Header>
|
<TabItem.Header>
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
@@ -28,7 +29,72 @@
|
|||||||
<Label FontSize="20" Content="Planung" VerticalContentAlignment="Center" />
|
<Label FontSize="20" Content="Planung" VerticalContentAlignment="Center" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</TabItem.Header>
|
</TabItem.Header>
|
||||||
<Grid RowDefinitions="2*,*,*">
|
<Grid ColumnDefinitions="*,2*" RowDefinitions="*,*">
|
||||||
|
<Button Grid.RowSpan="2" Margin="0,10,0,0" x:Name="BtnImport" VerticalAlignment="Top" Height="50" HorizontalAlignment="Stretch" Click="BtnImport_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Import" Width="36" Height="36" />
|
||||||
|
<Label Content="Importieren..." VerticalContentAlignment="Center" FontSize="15"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<Button Grid.RowSpan="2" Margin="0,00,0,10" x:Name="BtnCraftCourses" VerticalAlignment="Bottom" Height="50" HorizontalAlignment="Stretch" Click="BtnCraftCourses_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Pickaxe" Width="36" Height="36" />
|
||||||
|
<Label Content="Kurse basteln" VerticalContentAlignment="Center" FontSize="15"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<ListBox Grid.RowSpan="2" x:Name="LbStudentsImported" SelectionChanged="LbStudentsImported_OnSelectionChanged" Margin="0,70,0,70" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"></ListBox>
|
||||||
|
|
||||||
|
<StackPanel Grid.Column="1" Grid.Row="0" Margin="10,10,10,10" Orientation="Vertical" Spacing="10">
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="ID"></Label>
|
||||||
|
<TextBox Grid.Column="1" x:Name="TbStudentID" TextChanged="TbStudentID_OnTextChanged"></TextBox>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Name"></Label>
|
||||||
|
<TextBox Grid.Column="1" x:Name="TbStudentName" TextChanged="TbStudentName_OnTextChanged"></TextBox>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Sport 1"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSport1"></Label>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Sport 2"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSport2"></Label>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Sport 3"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSport3"></Label>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Sport 4"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSport4"></Label>
|
||||||
|
</Grid>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Grid.Column="1" Grid.Row="1" Margin="10,10,10,10" Orientation="Vertical" Spacing="10">
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl Einträge"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblStudentAmount"></Label>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl gewählte Kurse"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSelectedAmount"></Label>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Wahlzahlen"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblNumVoted"></Label>
|
||||||
|
</Grid>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -36,13 +102,173 @@
|
|||||||
<TabItem>
|
<TabItem>
|
||||||
<TabItem.Header>
|
<TabItem.Header>
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<LucideIcon Kind="Table" Width="32" Height="32" Size="32" />
|
<LucideIcon Kind="LandPlot" Width="32" Height="32" Size="32" />
|
||||||
<Label FontSize="20" Content="Kurse" VerticalContentAlignment="Center" />
|
<Label FontSize="20" Content="Kurse" VerticalContentAlignment="Center" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</TabItem.Header>
|
</TabItem.Header>
|
||||||
<Grid RowDefinitions="2*,*,*">
|
<Grid ColumnDefinitions="*,2*">
|
||||||
|
<StackPanel Grid.ColumnSpan="2" Orientation="Horizontal" Spacing="10">
|
||||||
|
<Button Margin="0,10,0,0" x:Name="BtnImportDefaultCourses" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnImportDefaultCourses_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Import" Width="24" Height="24" />
|
||||||
|
<Label Content="Standardkurse importieren..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Margin="0,10,0,0" x:Name="BtnDeleteSinleCourse" Background="#99963434" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnDeleteSinleCourse_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Trash2" Width="24" Height="24" />
|
||||||
|
<Label Content="Ausgewähltes entfernen" VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Margin="0,10,0,0" x:Name="BtnClearCourseList" Background="#99963434" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnClearCourseList_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Trash" Width="24" Height="24" />
|
||||||
|
<Label Content="Liste leeren" VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
<ListBox Grid.Column="0" x:Name="LbSportCourses" SelectionChanged="LbSportCourses_OnSelectionChanged" Margin="0,55,0,0" />
|
||||||
|
<StackPanel Grid.Column="1" Grid.Row="0" Margin="10,10,10,10" Orientation="Vertical" Spacing="10">
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="ID"></Label>
|
||||||
|
<Label Grid.Column="1" x:Name="LblSportID"></Label>
|
||||||
|
</Grid>
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Name"></Label>
|
||||||
|
<TextBox Grid.Column="1" x:Name="TbSportName" TextChanged="TbSportName_OnTextChanged"></TextBox>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Maximale Schüler*innenanzahl"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMaxStudents" ValueChanged="NudSportMaxStudents_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Minimale Schüler*innenanzahl"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMinStudents" ValueChanged="NudSportMinStudents_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl Angebote Semester 1"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudAmountCoursesSem1" ValueChanged="NudAmountCoursesSem1_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl Angebote Semester 2"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudAmountCoursesSem2" ValueChanged="NudAmountCoursesSem2_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl Angebote Semester 3"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudAmountCoursesSem3" ValueChanged="NudAmountCoursesSem3_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Anzahl Angebote Semester 4"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudAmountCoursesSem4" ValueChanged="NudAmountCoursesSem4_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Alternativbezeichnungen"></Label>
|
||||||
|
<StackPanel Grid.Column="1" Orientation="Vertical">
|
||||||
|
<Grid ColumnDefinitions="*,50,50">
|
||||||
|
<TextBox Grid.Column="0" Height="35" HorizontalAlignment="Stretch" x:Name="TbSportAlternativeName"></TextBox>
|
||||||
|
<Button Grid.Column="1" Margin="5,0,0,0" x:Name="BtnAlternativeNameAdd" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnAlternativeNameAdd_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Plus" Width="24" Height="24" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Grid.Column="2" Margin="5,0,0,0" x:Name="BtnAlternativeNameRemove" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnAlternativeNameRemove_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Minus" Width="24" Height="24" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</Grid>
|
||||||
|
<ListBox Margin="0,5,0,0" x:Name="LbAlternativeNames">
|
||||||
|
|
||||||
|
</ListBox>
|
||||||
|
</StackPanel>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
<Line />
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Maximale Sportkursanzahl Semester 1"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMaxPerSemester1" ValueChanged="NudSportMaxPerSemester1_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Maximale Sportkursanzahl Semester 2"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMaxPerSemester2" ValueChanged="NudSportMaxPerSemester2_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Maximale Sportkursanzahl Semester 3"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMaxPerSemester3" ValueChanged="NudSportMaxPerSemester3_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
<Grid ColumnDefinitions="*,3*">
|
||||||
|
<Label Content="Maximale Sportkursanzahl Semester 4"></Label>
|
||||||
|
<NumericUpDown Grid.Column="1" x:Name="NudSportMaxPerSemester4" ValueChanged="NudSportMaxPerSemester4_OnValueChanged"></NumericUpDown>
|
||||||
|
</Grid>
|
||||||
|
</StackPanel>
|
||||||
|
</Grid>
|
||||||
|
</TabItem>
|
||||||
|
|
||||||
|
<TabItem x:Name="TbiResults">
|
||||||
|
<TabItem.Header>
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Sparkles" Width="32" Height="32" Size="32" />
|
||||||
|
<Label FontSize="20" Content="Ergebnisse" VerticalContentAlignment="Center" />
|
||||||
|
</StackPanel>
|
||||||
|
</TabItem.Header>
|
||||||
|
<Grid ColumnDefinitions="*,*" RowDefinitions="100,2*,*">
|
||||||
|
<ListBox Grid.RowSpan="2" x:Name="LbResult" Margin="0,10,10,10" PointerPressed="LbResult_OnPointerPressed">
|
||||||
|
<ListBox.ContextMenu>
|
||||||
|
<ContextMenu>
|
||||||
|
<MenuItem Header="Ändern" x:Name="MnuChange" />
|
||||||
|
</ContextMenu>
|
||||||
|
</ListBox.ContextMenu>
|
||||||
|
</ListBox>
|
||||||
|
<Grid Grid.Row="0" Grid.Column="1" RowDefinitions="*,*" ColumnDefinitions="*,*">
|
||||||
|
<Button Grid.Row="0" Grid.Column="0" Margin="0,10,5,0" x:Name="BtnExportCoursePDF" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnExportCoursePDF_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="FileText" Width="24" Height="24" />
|
||||||
|
<Label Content="Export (PDF)..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Grid.Row="0" Grid.Column="1" Margin="5,10,0,0" x:Name="BtnExportCourseCSV" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="BtnExportCourseCSV_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="FileJson" Width="24" Height="24" />
|
||||||
|
<Label Content="Export (CSV)..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Grid.Row="1" Grid.Column="0" Margin="0,5,5,0" x:Name="BtnExportConfiguration" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="MnuExpSettings_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="FileJson" Width="24" Height="24" />
|
||||||
|
<Label Content="Konfiguration exportieren..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
<Button Grid.Row="1" Grid.Column="1" Margin="5,5,0,0" x:Name="BtnImportResults" VerticalAlignment="Top" Height="35" HorizontalAlignment="Stretch" Click="MnuImpResult_OnClick" HorizontalContentAlignment="Center">
|
||||||
|
<StackPanel Orientation="Horizontal">
|
||||||
|
<LucideIcon Kind="Import" Width="24" Height="24" />
|
||||||
|
<Label Content="Ergebnisse importieren..." VerticalContentAlignment="Center" FontSize="12"
|
||||||
|
FontWeight="Bold" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</Grid>
|
||||||
|
<ScrollViewer Grid.Row="1" Grid.Column="1" Margin="0,5,0,10" Background="#44CCCCCC">
|
||||||
|
<TextBlock x:Name="TbResultStatistics"></TextBlock>
|
||||||
|
</ScrollViewer>
|
||||||
|
<ScrollViewer Grid.Row="2" Grid.Column="1" Margin="0,0,0,10" Background="#44CCCCCC">
|
||||||
|
<TextBlock x:Name="TbResultTextout" FontFamily="Consolas"></TextBlock>
|
||||||
|
</ScrollViewer>
|
||||||
|
<ScrollViewer Grid.Row="2" Grid.Column="0" Margin="0,0,10,10" Background="#44CCCCCC">
|
||||||
|
<TextBlock x:Name="TbResultLog" FontFamily="Consolas"></TextBlock>
|
||||||
|
</ScrollViewer>
|
||||||
</Grid>
|
</Grid>
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</TabControl>
|
</TabControl>
|
||||||
|
|||||||
@@ -1,11 +1,756 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Input;
|
||||||
|
using Avalonia.Interactivity;
|
||||||
|
using Avalonia.Platform.Storage;
|
||||||
|
|
||||||
namespace spplus;
|
namespace spplus;
|
||||||
|
|
||||||
public partial class MainWindow : Window
|
public partial class MainWindow : Window
|
||||||
{
|
{
|
||||||
|
public static MainWindow Instance { get; set; }
|
||||||
|
public static string ApplicationVersion = "v1.2.24";
|
||||||
|
|
||||||
|
private sealed class ResultEntry
|
||||||
|
{
|
||||||
|
public Student Student { get; }
|
||||||
|
public int Semester { get; }
|
||||||
|
public string CourseName { get; }
|
||||||
|
|
||||||
|
public ResultEntry(Student student, int semester, string? courseName)
|
||||||
|
{
|
||||||
|
Student = student;
|
||||||
|
Semester = semester;
|
||||||
|
CourseName = courseName ?? string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return $"{Student.Name} ({Student.ID}) - {Semester}. Semester: {CourseName}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public MainWindow()
|
public MainWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
Settings.ImportInitial();
|
||||||
|
Instance = this;
|
||||||
|
RefreshCoursesList();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
NudSportMaxPerSemester1.Value = Settings.Instance.NumCoursesPerSemester[0];
|
||||||
|
NudSportMaxPerSemester2.Value = Settings.Instance.NumCoursesPerSemester[1];
|
||||||
|
NudSportMaxPerSemester3.Value = Settings.Instance.NumCoursesPerSemester[2];
|
||||||
|
NudSportMaxPerSemester4.Value = Settings.Instance.NumCoursesPerSemester[3];
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RegenerateContextMenu()
|
||||||
|
{
|
||||||
|
MnuChange.Items.Clear();
|
||||||
|
foreach (var sport in Settings.Instance.Sports)
|
||||||
|
{
|
||||||
|
var item = new MenuItem { Header = sport.Name };
|
||||||
|
item.Click += (_, _) => ChangeStudentCourse(sport);
|
||||||
|
MnuChange.Items.Add(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void ChangeStudentCourse(Sport targetSport)
|
||||||
|
{
|
||||||
|
if (LbResult.SelectedItem is not ResultEntry selectedEntry)
|
||||||
|
return;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (await ApplyStudentCourseChange(selectedEntry.Student, selectedEntry.Semester, targetSport))
|
||||||
|
{
|
||||||
|
CourseCrafter.ReloadResult();
|
||||||
|
RefreshResultView();
|
||||||
|
RegenerateContextMenu();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.Message + "\n" + ex.StackTrace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<bool> ApplyStudentCourseChange(Student student, int semester, Sport targetSport)
|
||||||
|
{
|
||||||
|
if (semester < 1 || semester > 4)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var semesterCourses = CourseCrafter.GeneratedCourses
|
||||||
|
.Where(course => course.Semester == semester)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
var currentCourses = semesterCourses
|
||||||
|
.Where(course => course.Instance.Students.Contains(student.ID))
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
string? oldSportName = currentCourses
|
||||||
|
.Select(course => course.Instance.Sport.Name)
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
|
var existingTargetCourses = semesterCourses
|
||||||
|
.Where(course => course.Instance.Sport.Name == targetSport.Name)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
CourseCrafter.CourseInstance? targetCourse = existingTargetCourses
|
||||||
|
.Where(course => !course.Instance.Students.Contains(student.ID) &&
|
||||||
|
course.Instance.Students.Count < course.Instance.Sport.MaxStudents)
|
||||||
|
.OrderBy(course => course.Instance.Students.Count)
|
||||||
|
.Select(course => course.Instance)
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
|
if (targetCourse == null && existingTargetCourses.Any())
|
||||||
|
{
|
||||||
|
targetCourse = existingTargetCourses
|
||||||
|
.OrderBy(course => course.Instance.Students.Count)
|
||||||
|
.Select(course => course.Instance)
|
||||||
|
.FirstOrDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool changed = false;
|
||||||
|
|
||||||
|
foreach (var course in currentCourses)
|
||||||
|
{
|
||||||
|
if (targetCourse != null && ReferenceEquals(course.Instance, targetCourse))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (course.Instance.Students.Remove(student.ID))
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int removedEmptyCourses = CourseCrafter.GeneratedCourses.RemoveAll(course =>
|
||||||
|
course.Semester == semester &&
|
||||||
|
course.Instance.Students.Count == 0 &&
|
||||||
|
!ReferenceEquals(course.Instance, targetCourse));
|
||||||
|
if (removedEmptyCourses > 0)
|
||||||
|
changed = true;
|
||||||
|
|
||||||
|
if (targetCourse == null)
|
||||||
|
{
|
||||||
|
var newCourse = new CourseCrafter.CourseInstance
|
||||||
|
{
|
||||||
|
Sport = targetSport,
|
||||||
|
Students = new List<string> { student.ID }
|
||||||
|
};
|
||||||
|
|
||||||
|
CourseCrafter.GeneratedCourses.Add((semester, newCourse));
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
else if (!targetCourse.Students.Contains(student.ID))
|
||||||
|
{
|
||||||
|
targetCourse.Students.Add(student.ID);
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (changed && !string.IsNullOrEmpty(oldSportName) &&
|
||||||
|
IsRebalanceNeededForSportSemester(oldSportName, semester))
|
||||||
|
{
|
||||||
|
var result = await MessageBox.Show(this,
|
||||||
|
$"Der Kursplan für {oldSportName} im {semester}. Semester ist nach der Änderung unausgeglichen. Soll die alte Sportart umverteilt werden?",
|
||||||
|
"Umverteilung der alten Sportart", MessageBoxButton.YesNo);
|
||||||
|
|
||||||
|
if (result == MessageBoxResult.Yes)
|
||||||
|
BalanceSportSemester(oldSportName, semester);
|
||||||
|
}
|
||||||
|
|
||||||
|
return changed;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool IsRebalanceNeededForSportSemester(string sportName, int semester)
|
||||||
|
{
|
||||||
|
var courses = CourseCrafter.GeneratedCourses
|
||||||
|
.Where(course => course.Semester == semester && course.Instance.Sport.Name == sportName)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
if (courses.Count <= 1)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var ordered = courses
|
||||||
|
.OrderBy(course => course.Instance.Students.Count)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
int minCount = ordered.First().Instance.Students.Count;
|
||||||
|
int maxCount = ordered.Last().Instance.Students.Count;
|
||||||
|
if (maxCount - minCount <= 1)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (ordered.Last().Instance.Students.Count - 1 < GetEffectiveMinStudents(ordered.Last().Instance.Sport, semester))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (ordered.First().Instance.Students.Count >= ordered.First().Instance.Sport.MaxStudents)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BalanceSportSemester(string sportName, int semester)
|
||||||
|
{
|
||||||
|
bool changed;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
changed = false;
|
||||||
|
|
||||||
|
var courses = CourseCrafter.GeneratedCourses
|
||||||
|
.Where(course => course.Semester == semester && course.Instance.Sport.Name == sportName)
|
||||||
|
.OrderBy(course => course.Instance.Students.Count)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
if (courses.Count <= 1)
|
||||||
|
break;
|
||||||
|
|
||||||
|
var target = courses.First();
|
||||||
|
var source = courses.Last();
|
||||||
|
|
||||||
|
if (source.Instance.Students.Count <= target.Instance.Students.Count + 1)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (source.Instance.Students.Count - 1 < GetEffectiveMinStudents(source.Instance.Sport, semester))
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (target.Instance.Students.Count >= target.Instance.Sport.MaxStudents)
|
||||||
|
break;
|
||||||
|
|
||||||
|
var studentId = source.Instance.Students[^1];
|
||||||
|
source.Instance.Students.RemoveAt(source.Instance.Students.Count - 1);
|
||||||
|
target.Instance.Students.Add(studentId);
|
||||||
|
changed = true;
|
||||||
|
} while (changed);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int GetEffectiveMinStudents(Sport sport, int semester)
|
||||||
|
{
|
||||||
|
int reduction = (semester >= 3) ? 2 : 0;
|
||||||
|
return Math.Max(1, sport.MinStudents - reduction);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void MnuExpSettings_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
await ExportConfigurationAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void MnuExit_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
Environment.Exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void MnuHelp_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Process.Start(new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "https://git.mypapercloud.de/fierke/spplus/wiki",
|
||||||
|
UseShellExecute = true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Fehler beim Öffnen des Links: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void MnuGit_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Process.Start(new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "https://git.mypapercloud.de/fierke/spplus",
|
||||||
|
UseShellExecute = true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Fehler beim Öffnen des Links: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void MnuAbout_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
Window w = new();
|
||||||
|
w.WindowState = WindowState.Normal;
|
||||||
|
w.WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
||||||
|
w.Width = 300;
|
||||||
|
w.Height = 120;
|
||||||
|
Grid g = new();
|
||||||
|
TextBlock tb = new()
|
||||||
|
{
|
||||||
|
Text = $"spplus {MainWindow.ApplicationVersion}\n(c)2026 MyPapertown, Elias Fierke"
|
||||||
|
};
|
||||||
|
g.Children.Add(tb);
|
||||||
|
w.Content = g;
|
||||||
|
w.Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void BtnImport_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var topLevel = GetTopLevel(this);
|
||||||
|
var file = await topLevel!.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
|
||||||
|
{
|
||||||
|
Title = "CSV-Datei auswählen",
|
||||||
|
AllowMultiple = false,
|
||||||
|
FileTypeFilter = new[]
|
||||||
|
{
|
||||||
|
new FilePickerFileType(".csv-Datei")
|
||||||
|
{
|
||||||
|
Patterns = new[] { "*.csv" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (file == null) return;
|
||||||
|
if (file.Count == 0) return;
|
||||||
|
|
||||||
|
var imported_students = import.ImportStudentsFromFile(file[0].Path.LocalPath.ToString());
|
||||||
|
foreach (var s in imported_students)
|
||||||
|
{
|
||||||
|
Settings.Instance.Students.Add(s);
|
||||||
|
}
|
||||||
|
RefreshImportedStudentList();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RefreshImportedStudentList()
|
||||||
|
{
|
||||||
|
LbStudentsImported.Items.Clear();
|
||||||
|
int count_selected = 0;
|
||||||
|
foreach (var s in Settings.Instance.Students)
|
||||||
|
{
|
||||||
|
LbStudentsImported.Items.Add(s);
|
||||||
|
count_selected += s.SelectedCourseNames.Count;
|
||||||
|
}
|
||||||
|
LblStudentAmount.Content = Settings.Instance.Students.Count.ToString();
|
||||||
|
LblSelectedAmount.Content = count_selected.ToString();
|
||||||
|
|
||||||
|
List<(Sport, List<string>)> initial_sportlist = new();
|
||||||
|
foreach (var sp in Settings.Instance.Sports)
|
||||||
|
{
|
||||||
|
initial_sportlist.Add((sp, new()));
|
||||||
|
}
|
||||||
|
foreach (Student s in Settings.Instance.Students)
|
||||||
|
{
|
||||||
|
foreach (var sp in s.SelectedCourseNames)
|
||||||
|
{
|
||||||
|
foreach (var item in initial_sportlist)
|
||||||
|
{
|
||||||
|
if (item.Item1.AlternativeNames.Contains(sp))
|
||||||
|
{
|
||||||
|
item.Item2.Add(s.ID);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LblNumVoted.Content = "";
|
||||||
|
foreach (var s in initial_sportlist)
|
||||||
|
{
|
||||||
|
LblNumVoted.Content += $"{s.Item1.Name}: {s.Item2.Count}\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnCraftCourses_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
CourseCrafter.Craft();
|
||||||
|
RefreshResultView();
|
||||||
|
TclMainView.SelectedIndex = 2;
|
||||||
|
//TbiResults.Focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LbResult_OnPointerPressed(object? sender, PointerPressedEventArgs e)
|
||||||
|
{
|
||||||
|
if (!e.GetCurrentPoint(LbResult).Properties.IsRightButtonPressed)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (e.Source is Control control && control.DataContext is ResultEntry entry)
|
||||||
|
{
|
||||||
|
LbResult.SelectedItem = entry;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
LbResult.SelectedItem = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RefreshResultView()
|
||||||
|
{
|
||||||
|
LbResult.Items.Clear();
|
||||||
|
foreach (Student s in Settings.Instance.Students)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
for(int i = 0; i<s.Result.Length;i++)
|
||||||
|
{
|
||||||
|
LbResult.Items.Add(new ResultEntry(s, i + 1, s.Result[i]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex.StackTrace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TbResultStatistics.Text = CourseCrafter.GenerateStatistics();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LbStudentsImported_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
Prepare();
|
||||||
|
var stud = (Student)LbStudentsImported.SelectedItem;
|
||||||
|
if (stud == null)
|
||||||
|
{
|
||||||
|
TbStudentName.Text = string.Empty;
|
||||||
|
TbStudentID.Text = string.Empty;
|
||||||
|
SetEmpty();
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
TbStudentName.Text = stud.Name;
|
||||||
|
TbStudentID.Text = stud.ID;
|
||||||
|
LblSport1.Content = stud.SelectedCourseNames[0];
|
||||||
|
LblSport2.Content = stud.SelectedCourseNames[1];
|
||||||
|
LblSport3.Content = stud.SelectedCourseNames[2];
|
||||||
|
LblSport4.Content = stud.SelectedCourseNames[3];
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
SetEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
void SetEmpty()
|
||||||
|
{
|
||||||
|
if(LblSport1.Content == "null") LblSport1.Content = "ungewählt";
|
||||||
|
if(LblSport2.Content == "null") LblSport2.Content = "ungewählt";
|
||||||
|
if(LblSport3.Content == "null") LblSport3.Content = "ungewählt";
|
||||||
|
if(LblSport4.Content == "null") LblSport4.Content = "ungewählt";
|
||||||
|
}
|
||||||
|
|
||||||
|
void Prepare()
|
||||||
|
{
|
||||||
|
LblSport1.Content = "null";
|
||||||
|
LblSport2.Content = "null";
|
||||||
|
LblSport3.Content = "null";
|
||||||
|
LblSport4.Content = "null";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void TbStudentName_OnTextChanged(object? sender, TextChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Student)LbStudentsImported.SelectedItem).Name = TbStudentName.Text;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private void TbStudentID_OnTextChanged(object? sender, TextChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Student)LbStudentsImported.SelectedItem).ID = TbStudentID.Text;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnImportDefaultCourses_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
Settings.ImportInitial();
|
||||||
|
RefreshCoursesList();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RefreshCoursesList()
|
||||||
|
{
|
||||||
|
LbSportCourses.Items.Clear();
|
||||||
|
foreach (var sp in Settings.Instance.Sports)
|
||||||
|
{
|
||||||
|
LbSportCourses.Items.Add(sp);
|
||||||
|
}
|
||||||
|
RegenerateContextMenu();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void LbSportCourses_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
if (LbSportCourses.SelectedItem != null)
|
||||||
|
{
|
||||||
|
if (LbSportCourses.SelectedItem is Sport item)
|
||||||
|
{
|
||||||
|
LblSportID.Content = item.ID;
|
||||||
|
TbSportName.Text = item.Name;
|
||||||
|
NudSportMaxStudents.Value = item.MaxStudents;
|
||||||
|
NudSportMinStudents.Value = item.MinStudents;
|
||||||
|
NudAmountCoursesSem1.Value = item.Semester[0];
|
||||||
|
NudAmountCoursesSem2.Value = item.Semester[1];
|
||||||
|
NudAmountCoursesSem3.Value = item.Semester[2];
|
||||||
|
NudAmountCoursesSem4.Value = item.Semester[3];
|
||||||
|
// LbAlternativeCourses.Items.Clear();
|
||||||
|
// foreach (var alternative in item.AlternativeCourses)
|
||||||
|
// {
|
||||||
|
// LbAlternativeCourses.Items.Add(Settings.GetSportNameFromID(alternative));
|
||||||
|
// }
|
||||||
|
LbAlternativeNames.Items.Clear();
|
||||||
|
foreach (var alternative in item.AlternativeNames)
|
||||||
|
{
|
||||||
|
LbAlternativeNames.Items.Add(alternative);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void TbSportName_OnTextChanged(object? sender, TextChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).Name = TbSportName.Text;
|
||||||
|
RegenerateContextMenu();
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMaxStudents_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).MaxStudents = Convert.ToInt32(NudSportMaxStudents.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMinStudents_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).MinStudents = Convert.ToInt32(NudSportMinStudents.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudAmountCoursesSem1_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).Semester[0] = Convert.ToInt32(NudAmountCoursesSem1.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudAmountCoursesSem2_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).Semester[1] = Convert.ToInt32(NudAmountCoursesSem2.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudAmountCoursesSem3_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).Semester[2] = Convert.ToInt32(NudAmountCoursesSem3.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudAmountCoursesSem4_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).Semester[3] = Convert.ToInt32(NudAmountCoursesSem4.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnAlternativeCourseAdd_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//((Sport)LbSportCourses.SelectedItem).AlternativeNames.Add(TbSportAlternativeName.Text);
|
||||||
|
//TbSportAlternativeCourse.Text = "";
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnAlternativeNameAdd_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).AlternativeNames.Add(TbSportAlternativeName.Text);
|
||||||
|
LbAlternativeNames.Items.Add(TbSportAlternativeName.Text);
|
||||||
|
TbSportAlternativeName.Text = "";
|
||||||
|
|
||||||
|
int curr_selected = LbSportCourses.SelectedIndex;
|
||||||
|
RefreshCoursesList();
|
||||||
|
LbSportCourses.SelectedIndex = curr_selected;
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnAlternativeNameRemove_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
//try
|
||||||
|
//{
|
||||||
|
LbAlternativeNames.Items.Remove(LbAlternativeNames.SelectedItem);
|
||||||
|
((Sport)LbSportCourses.SelectedItem).AlternativeNames.Clear();
|
||||||
|
foreach (string s in LbAlternativeNames.Items)
|
||||||
|
{
|
||||||
|
((Sport)LbSportCourses.SelectedItem).AlternativeNames.Add(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
int curr_selected = LbSportCourses.SelectedIndex;
|
||||||
|
RefreshCoursesList();
|
||||||
|
LbSportCourses.SelectedIndex = curr_selected;
|
||||||
|
//} catch (Exception ex) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void BtnClearCourseList_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var result = await MessageBox.Show(this,
|
||||||
|
"Möchten Sie wirklich alle Kurse löschen?\n Dies kann nicht rückgängig gemacht werden.",
|
||||||
|
"Wirklich fortfahren?", MessageBoxButton.YesNo);
|
||||||
|
if (result == MessageBoxResult.Yes)
|
||||||
|
{
|
||||||
|
Settings.Instance.Sports.Clear();
|
||||||
|
RefreshCoursesList();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BtnDeleteSinleCourse_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Settings.Instance.Sports.Remove(LbSportCourses.SelectedItem as Sport);
|
||||||
|
RefreshCoursesList();
|
||||||
|
} catch (Exception ex){}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void BtnExportCoursePDF_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var topLevel = GetTopLevel(this);
|
||||||
|
var file = await topLevel!.StorageProvider.SaveFilePickerAsync(new FilePickerSaveOptions
|
||||||
|
{
|
||||||
|
Title = "PDF-Datei speichern",
|
||||||
|
SuggestedFileName = "spplus_kurse.pdf",
|
||||||
|
SuggestedFileType = new FilePickerFileType(".pdf-Datei")
|
||||||
|
{
|
||||||
|
Patterns = new[] { "*.pdf" }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (file == null) return;
|
||||||
|
|
||||||
|
PdfExportUtility.ExportGeneratedCourses(file.Path.LocalPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMaxPerSemester1_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Settings.Instance.NumCoursesPerSemester[0] = Convert.ToInt32(NudSportMaxPerSemester1.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMaxPerSemester2_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Settings.Instance.NumCoursesPerSemester[1] = Convert.ToInt32(NudSportMaxPerSemester2.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMaxPerSemester3_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Settings.Instance.NumCoursesPerSemester[2] = Convert.ToInt32(NudSportMaxPerSemester3.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NudSportMaxPerSemester4_OnValueChanged(object? sender, NumericUpDownValueChangedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Settings.Instance.NumCoursesPerSemester[3] = Convert.ToInt32(NudSportMaxPerSemester4.Value);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void BtnExportCourseCSV_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var topLevel = GetTopLevel(this);
|
||||||
|
var file = await topLevel!.StorageProvider.SaveFilePickerAsync(new FilePickerSaveOptions
|
||||||
|
{
|
||||||
|
Title = "CSV-Datei speichern",
|
||||||
|
SuggestedFileName = "spplus_ergebnisse.json",
|
||||||
|
SuggestedFileType = new FilePickerFileType(".json-Datei")
|
||||||
|
{
|
||||||
|
Patterns = new[] { "*.json" }
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
if (file == null) return;
|
||||||
|
|
||||||
|
ExportUtility.ExportResultsToJson(file.Path.LocalPath);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void MnuImpResult_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
var topLevel = GetTopLevel(this);
|
||||||
|
var file = await topLevel!.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
|
||||||
|
{
|
||||||
|
Title = "Ergebnis-CSV laden",
|
||||||
|
AllowMultiple = false,
|
||||||
|
FileTypeFilter = new[]
|
||||||
|
{
|
||||||
|
new FilePickerFileType(".json-Datei")
|
||||||
|
{
|
||||||
|
Patterns = new[] { "*.json" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (file == null || file.Count == 0) return;
|
||||||
|
|
||||||
|
var imported = import.ImportResultFromJson(file[0].Path.LocalPath.ToString());
|
||||||
|
if (imported != null && imported.Count > 0)
|
||||||
|
{
|
||||||
|
CourseCrafter.GeneratedCourses = imported
|
||||||
|
.OrderBy(c => c.Semester)
|
||||||
|
.ThenBy(c => c.Instance.Sport.Name)
|
||||||
|
.ToList();
|
||||||
|
CourseCrafter.ReloadResult();
|
||||||
|
RefreshResultView();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async System.Threading.Tasks.Task ExportConfigurationAsync()
|
||||||
|
{
|
||||||
|
var topLevel = GetTopLevel(this);
|
||||||
|
var file = await topLevel!.StorageProvider.SaveFilePickerAsync(new FilePickerSaveOptions
|
||||||
|
{
|
||||||
|
Title = "Konfiguration speichern",
|
||||||
|
SuggestedFileName = "spplus_konfiguration.json",
|
||||||
|
SuggestedFileType = new FilePickerFileType(".json-Datei")
|
||||||
|
{
|
||||||
|
Patterns = new[] { "*.json" }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (file == null) return;
|
||||||
|
|
||||||
|
ExportUtility.ExportConfigurationToJson(file.Path.LocalPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<Window xmlns="https://github.com/avaloniaui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
mc:Ignorable="d" SizeToContent="WidthAndHeight" Icon="res/logo.ico"
|
||||||
|
x:Class="spplus.MessageBox" WindowStartupLocation="CenterScreen"
|
||||||
|
Title="MessageBox">
|
||||||
|
<StackPanel>
|
||||||
|
<TextBlock Name="Text" Margin="10" TextWrapping="Wrap" />
|
||||||
|
<StackPanel HorizontalAlignment="Right" Margin="5" Orientation="Horizontal" Name="Buttons">
|
||||||
|
<StackPanel.Styles>
|
||||||
|
<Style Selector="Button">
|
||||||
|
<Setter Property="Margin" Value="5" />
|
||||||
|
</Style>
|
||||||
|
</StackPanel.Styles>
|
||||||
|
</StackPanel>
|
||||||
|
</StackPanel>
|
||||||
|
</Window>
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
using System;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Markup.Xaml;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
public partial class MessageBox : Window
|
||||||
|
{
|
||||||
|
public MessageBox()
|
||||||
|
{
|
||||||
|
AvaloniaXamlLoader.Load(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Task<MessageBoxResult> Show(Window parent, string text, string title,
|
||||||
|
MessageBoxButton buttons = MessageBoxButton.Ok)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var msgbox = new MessageBox
|
||||||
|
{
|
||||||
|
Title = title
|
||||||
|
};
|
||||||
|
msgbox.FindControl<TextBlock>("Text").Text = text;
|
||||||
|
var buttonPanel = msgbox.FindControl<StackPanel>("Buttons");
|
||||||
|
|
||||||
|
var res = MessageBoxResult.Ok;
|
||||||
|
|
||||||
|
void AddButton(string caption, MessageBoxResult r, bool def = false)
|
||||||
|
{
|
||||||
|
var btn = new Button { Content = caption };
|
||||||
|
btn.Click += (_, __) =>
|
||||||
|
{
|
||||||
|
res = r;
|
||||||
|
msgbox.Close();
|
||||||
|
};
|
||||||
|
buttonPanel.Children.Add(btn);
|
||||||
|
if (def)
|
||||||
|
res = r;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (buttons == MessageBoxButton.Ok || buttons == MessageBoxButton.OkCancel)
|
||||||
|
AddButton("Ok", MessageBoxResult.Ok, true);
|
||||||
|
if (buttons == MessageBoxButton.YesNo || buttons == MessageBoxButton.YesNoCancel)
|
||||||
|
{
|
||||||
|
AddButton("Yes", MessageBoxResult.Yes);
|
||||||
|
AddButton("No", MessageBoxResult.No, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (buttons == MessageBoxButton.OkCancel || buttons == MessageBoxButton.YesNoCancel)
|
||||||
|
AddButton("Cancel", MessageBoxResult.Cancel, true);
|
||||||
|
|
||||||
|
|
||||||
|
var tcs = new TaskCompletionSource<MessageBoxResult>();
|
||||||
|
msgbox.Closed += delegate { tcs.TrySetResult(res); };
|
||||||
|
if (parent != null)
|
||||||
|
msgbox.ShowDialog(parent);
|
||||||
|
else msgbox.Show();
|
||||||
|
|
||||||
|
return tcs.Task;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Error while showing messagebox: " + ex.Message);
|
||||||
|
return Task.FromResult(MessageBoxResult.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum MessageBoxButton
|
||||||
|
{
|
||||||
|
Ok,
|
||||||
|
OkCancel,
|
||||||
|
YesNo,
|
||||||
|
YesNoCancel
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum MessageBoxResult
|
||||||
|
{
|
||||||
|
Ok,
|
||||||
|
Cancel,
|
||||||
|
Yes,
|
||||||
|
No,
|
||||||
|
Error
|
||||||
|
}
|
||||||
@@ -0,0 +1,621 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using PdfSharp;
|
||||||
|
using PdfSharp.Drawing;
|
||||||
|
using PdfSharp.Pdf;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
public static class PdfExportUtility
|
||||||
|
{
|
||||||
|
private const string FontFamily = "Cantarell";
|
||||||
|
private const double Margin = 36.0;
|
||||||
|
private const double FooterHeight = 28.0;
|
||||||
|
private static readonly XBrush FooterBrush = XBrushes.Gray;
|
||||||
|
|
||||||
|
public static void ExportGeneratedCourses(string filepath)
|
||||||
|
{
|
||||||
|
var document = new PdfDocument
|
||||||
|
{
|
||||||
|
Info =
|
||||||
|
{
|
||||||
|
Title = "spplus - generierte Kurse",
|
||||||
|
Author = "spplus",
|
||||||
|
Creator = "spplus"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
var courses = CourseCrafter.GeneratedCourses
|
||||||
|
.OrderBy(course => course.Semester)
|
||||||
|
.ThenBy(course => course.Instance.Sport.Name)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
if (courses.Count == 0)
|
||||||
|
{
|
||||||
|
RenderEmptyDocument(document);
|
||||||
|
document.Save(filepath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
RenderCoursesOverview(document, courses);
|
||||||
|
|
||||||
|
var studentsById = Settings.Instance.Students
|
||||||
|
.GroupBy(student => student.ID, StringComparer.OrdinalIgnoreCase)
|
||||||
|
.ToDictionary(group => group.Key, group => group.First(), StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
foreach (var course in courses)
|
||||||
|
{
|
||||||
|
RenderCourse(document, course, studentsById);
|
||||||
|
}
|
||||||
|
|
||||||
|
RenderMissingStudentsReport(document, studentsById, courses);
|
||||||
|
document.Save(filepath);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RenderMissingStudentsReport(
|
||||||
|
PdfDocument document,
|
||||||
|
IReadOnlyDictionary<string, Student> studentsById,
|
||||||
|
IReadOnlyList<(int Semester, CourseCrafter.CourseInstance Instance)> courses)
|
||||||
|
{
|
||||||
|
var assignedSemesters = studentsById.Values
|
||||||
|
.ToDictionary(student => student.ID, _ => new bool[4], StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
foreach (var course in courses)
|
||||||
|
{
|
||||||
|
if (course.Semester < 1 || course.Semester > 4)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
foreach (var studentId in course.Instance.Students)
|
||||||
|
{
|
||||||
|
if (assignedSemesters.TryGetValue(studentId, out var assignment))
|
||||||
|
assignment[course.Semester - 1] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var missingStudents = studentsById.Values
|
||||||
|
.Where(student => assignedSemesters.TryGetValue(student.ID, out var assignment) && assignment.Any(a => !a))
|
||||||
|
.OrderBy(student => student.Name)
|
||||||
|
.ThenBy(student => student.ID)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
var columns = new double[] { 30.0, 90.0, 190.0, 40.0, 40.0, 40.0, 40.0 };
|
||||||
|
var headerRow = new[] { "Nr.", "ID", "Name", "Sem1", "Sem2", "Sem3", "Sem4" };
|
||||||
|
int rowIndex = 0;
|
||||||
|
int pageIndex = 0;
|
||||||
|
|
||||||
|
while (rowIndex < missingStudents.Count || pageIndex == 0)
|
||||||
|
{
|
||||||
|
var page = document.AddPage();
|
||||||
|
ConfigurePage(page);
|
||||||
|
|
||||||
|
using var gfx = XGraphics.FromPdfPage(page);
|
||||||
|
var titleFont = new XFont(FontFamily, 18, XFontStyleEx.Bold);
|
||||||
|
var subtitleFont = new XFont(FontFamily, 10, XFontStyleEx.Regular);
|
||||||
|
var tableHeaderFont = new XFont(FontFamily, 9, XFontStyleEx.Bold);
|
||||||
|
var tableBodyFont = new XFont(FontFamily, 8.5, XFontStyleEx.Regular);
|
||||||
|
|
||||||
|
double pageWidth = page.Width.Point;
|
||||||
|
double pageHeight = page.Height.Point;
|
||||||
|
double contentWidth = pageWidth - (Margin * 2);
|
||||||
|
double contentBottom = pageHeight - Margin - FooterHeight;
|
||||||
|
double y = Margin;
|
||||||
|
|
||||||
|
var headerTitle = pageIndex == 0
|
||||||
|
? "Nicht zugeordnete Schülerinnen und Schüler"
|
||||||
|
: "Fortsetzung: Nicht zugeordnete Schülerinnen und Schüler";
|
||||||
|
|
||||||
|
gfx.DrawString(headerTitle, titleFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, y, contentWidth, 24), XStringFormats.TopLeft);
|
||||||
|
y += 26;
|
||||||
|
|
||||||
|
if (pageIndex == 0)
|
||||||
|
{
|
||||||
|
gfx.DrawString("Es werden nur Schülerinnen und Schüler aufgeführt, die in mindestens einem Semester keine Zuordnung erhalten haben.",
|
||||||
|
subtitleFont, XBrushes.Gray, new XRect(Margin, y, contentWidth, 20), XStringFormats.TopLeft);
|
||||||
|
y += 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (missingStudents.Count == 0)
|
||||||
|
{
|
||||||
|
var bodyFont = new XFont(FontFamily, 11, XFontStyleEx.Regular);
|
||||||
|
gfx.DrawString("Alle Schülerinnen und Schüler sind in allen vier Semestern zugeordnet.", bodyFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, y, contentWidth, 20), XStringFormats.TopLeft);
|
||||||
|
DrawFooter(gfx, page);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, headerRow, tableHeaderFont, fillHeader: true);
|
||||||
|
|
||||||
|
while (rowIndex < missingStudents.Count)
|
||||||
|
{
|
||||||
|
var student = missingStudents[rowIndex];
|
||||||
|
var assignment = assignedSemesters[student.ID];
|
||||||
|
var row = BuildMissingStudentRow(rowIndex + 1, student, assignment);
|
||||||
|
double rowHeight = MeasureRowHeight(gfx, columns, row, tableBodyFont);
|
||||||
|
|
||||||
|
if (y + rowHeight > contentBottom)
|
||||||
|
break;
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, row, tableBodyFont, fillHeader: false);
|
||||||
|
rowIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
DrawFooter(gfx, page);
|
||||||
|
pageIndex++;
|
||||||
|
|
||||||
|
if (rowIndex >= missingStudents.Count)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string[] BuildMissingStudentRow(int rowNumber, Student student, bool[] assignment)
|
||||||
|
{
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
rowNumber.ToString(),
|
||||||
|
student.ID,
|
||||||
|
student.Name,
|
||||||
|
assignment[0] ? string.Empty : "X",
|
||||||
|
assignment[1] ? string.Empty : "X",
|
||||||
|
assignment[2] ? string.Empty : "X",
|
||||||
|
assignment[3] ? string.Empty : "X",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RenderEmptyDocument(PdfDocument document)
|
||||||
|
{
|
||||||
|
var page = document.AddPage();
|
||||||
|
ConfigurePage(page);
|
||||||
|
|
||||||
|
using var gfx = XGraphics.FromPdfPage(page);
|
||||||
|
var titleFont = new XFont(FontFamily, 18, XFontStyleEx.Bold);
|
||||||
|
var bodyFont = new XFont(FontFamily, 11, XFontStyleEx.Regular);
|
||||||
|
|
||||||
|
gfx.DrawString("spplus", titleFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, Margin, page.Width.Point - Margin * 2, 24), XStringFormats.TopLeft);
|
||||||
|
gfx.DrawString("Es wurden keine generierten Kurse gefunden.", bodyFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, Margin + 34, page.Width.Point - Margin * 2, 24), XStringFormats.TopLeft);
|
||||||
|
|
||||||
|
DrawFooter(gfx, page);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RenderCoursesOverview(
|
||||||
|
PdfDocument document,
|
||||||
|
IReadOnlyList<(int Semester, CourseCrafter.CourseInstance Instance)> courses)
|
||||||
|
{
|
||||||
|
var overviewFont = new XFont(FontFamily, 18, XFontStyleEx.Bold);
|
||||||
|
var subtitleFont = new XFont(FontFamily, 10, XFontStyleEx.Regular);
|
||||||
|
var tableHeaderFont = new XFont(FontFamily, 9, XFontStyleEx.Bold);
|
||||||
|
var tableBodyFont = new XFont(FontFamily, 8.5, XFontStyleEx.Regular);
|
||||||
|
|
||||||
|
int count = 0;
|
||||||
|
|
||||||
|
var coursesPerSemester = courses
|
||||||
|
.GroupBy(course => course.Semester)
|
||||||
|
.ToDictionary(group => group.Key, group => group.Count());
|
||||||
|
|
||||||
|
var courseIndexBySemester = new Dictionary<int, int>();
|
||||||
|
var rows = courses.Select(course =>
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
var key = course.Semester;
|
||||||
|
courseIndexBySemester.TryGetValue(key, out var index);
|
||||||
|
index++;
|
||||||
|
courseIndexBySemester[key] = index;
|
||||||
|
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
count.ToString(),
|
||||||
|
course.Semester.ToString(),
|
||||||
|
course.Instance.Sport.Name,
|
||||||
|
$"{index}/{coursesPerSemester[key]}",
|
||||||
|
course.Instance.Students.Count.ToString()
|
||||||
|
};
|
||||||
|
}).ToList();
|
||||||
|
|
||||||
|
var columns = new[] { 50.0, 70.0, 150.0, 150.0, 100.0 };
|
||||||
|
var headerRow = new[]
|
||||||
|
{
|
||||||
|
"Nr.",
|
||||||
|
"Semester",
|
||||||
|
"Sportart",
|
||||||
|
"Kurs (Semester)",
|
||||||
|
"Anzahl SuS"
|
||||||
|
};
|
||||||
|
|
||||||
|
int rowIndex = 0;
|
||||||
|
int pageIndex = 0;
|
||||||
|
|
||||||
|
|
||||||
|
while (rowIndex < rows.Count || pageIndex == 0)
|
||||||
|
{
|
||||||
|
var page = document.AddPage();
|
||||||
|
ConfigurePage(page);
|
||||||
|
|
||||||
|
using var gfx = XGraphics.FromPdfPage(page);
|
||||||
|
double pageWidth = page.Width.Point;
|
||||||
|
double pageHeight = page.Height.Point;
|
||||||
|
double contentWidth = pageWidth - (Margin * 2);
|
||||||
|
double contentBottom = pageHeight - Margin - FooterHeight;
|
||||||
|
double y = Margin;
|
||||||
|
|
||||||
|
var headerTitle = pageIndex == 0
|
||||||
|
? "Übersicht generierter Kurse"
|
||||||
|
: "Fortsetzung: Übersicht generierter Kurse";
|
||||||
|
|
||||||
|
gfx.DrawString(headerTitle, overviewFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, y, contentWidth, 24), XStringFormats.TopLeft);
|
||||||
|
y += 26;
|
||||||
|
|
||||||
|
if (pageIndex == 0)
|
||||||
|
{
|
||||||
|
gfx.DrawString("Tabellarische Übersicht aller generierten Kurse nach Semester und Sportart.",
|
||||||
|
subtitleFont, XBrushes.Gray, new XRect(Margin, y, contentWidth, 20), XStringFormats.TopLeft);
|
||||||
|
y += 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, headerRow, tableHeaderFont, fillHeader: true);
|
||||||
|
|
||||||
|
while (rowIndex < rows.Count)
|
||||||
|
{
|
||||||
|
|
||||||
|
var row = rows[rowIndex];
|
||||||
|
double rowHeight = MeasureRowHeight(gfx, columns, row, tableBodyFont);
|
||||||
|
|
||||||
|
if (y + rowHeight > contentBottom)
|
||||||
|
break;
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, row, tableBodyFont, fillHeader: false);
|
||||||
|
rowIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
DrawFooter(gfx, page);
|
||||||
|
pageIndex++;
|
||||||
|
|
||||||
|
if (rowIndex >= rows.Count)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RenderCourse(
|
||||||
|
PdfDocument document,
|
||||||
|
(int Semester, CourseCrafter.CourseInstance Instance) course,
|
||||||
|
IReadOnlyDictionary<string, Student> studentsById)
|
||||||
|
{
|
||||||
|
var studentIds = course.Instance.Students.ToList();
|
||||||
|
int index = 0;
|
||||||
|
int pageIndex = 0;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
var page = document.AddPage();
|
||||||
|
ConfigurePage(page);
|
||||||
|
|
||||||
|
using var gfx = XGraphics.FromPdfPage(page);
|
||||||
|
var titleFont = new XFont(FontFamily, 18, XFontStyleEx.Bold);
|
||||||
|
var subtitleFont = new XFont(FontFamily, 10, XFontStyleEx.Regular);
|
||||||
|
var labelFont = new XFont(FontFamily, 9, XFontStyleEx.Bold);
|
||||||
|
var valueFont = new XFont(FontFamily, 9, XFontStyleEx.Regular);
|
||||||
|
var tableHeaderFont = new XFont(FontFamily, 9, XFontStyleEx.Bold);
|
||||||
|
var tableBodyFont = new XFont(FontFamily, 8.5, XFontStyleEx.Regular);
|
||||||
|
|
||||||
|
double pageWidth = page.Width.Point;
|
||||||
|
double pageHeight = page.Height.Point;
|
||||||
|
double contentWidth = pageWidth - (Margin * 2);
|
||||||
|
double contentBottom = pageHeight - Margin - FooterHeight;
|
||||||
|
double y = Margin;
|
||||||
|
|
||||||
|
var headerTitle = $"Sem. {course.Semester} - {course.Instance.Sport.Name}";
|
||||||
|
if (pageIndex > 0)
|
||||||
|
headerTitle += " (Fortsetzung)";
|
||||||
|
|
||||||
|
gfx.DrawString(headerTitle, titleFont, XBrushes.Black,
|
||||||
|
new XRect(Margin, y, contentWidth, 24), XStringFormats.TopLeft);
|
||||||
|
y += 26;
|
||||||
|
|
||||||
|
gfx.DrawString($"{course.Instance.Students.Count} Schülerinnen und Schüler", subtitleFont,
|
||||||
|
XBrushes.Gray, new XRect(Margin, y, contentWidth, 18), XStringFormats.TopLeft);
|
||||||
|
y += 24;
|
||||||
|
|
||||||
|
y = DrawInfoRows(gfx, y, contentWidth, labelFont, valueFont, course);
|
||||||
|
y += 10;
|
||||||
|
|
||||||
|
var columns = GetTableColumns(contentWidth);
|
||||||
|
var headerRow = new[]
|
||||||
|
{
|
||||||
|
"Nr.",
|
||||||
|
"ID",
|
||||||
|
"Name",
|
||||||
|
};
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, headerRow, tableHeaderFont, fillHeader: true);
|
||||||
|
|
||||||
|
if (studentIds.Count == 0)
|
||||||
|
{
|
||||||
|
var emptyFont = new XFont(FontFamily, 9, XFontStyleEx.Italic);
|
||||||
|
gfx.DrawString("Keine Schülerinnen und Schüler zugeordnet.", emptyFont, XBrushes.Gray,
|
||||||
|
new XRect(Margin + 6, y + 8, contentWidth - 12, 20), XStringFormats.TopLeft);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
while (index < studentIds.Count)
|
||||||
|
{
|
||||||
|
if (!studentsById.TryGetValue(studentIds[index], out var student))
|
||||||
|
student = new Student { ID = studentIds[index] };
|
||||||
|
|
||||||
|
var row = BuildStudentRow(index + 1, student);
|
||||||
|
double rowHeight = MeasureRowHeight(gfx, columns, row, tableBodyFont);
|
||||||
|
|
||||||
|
if (y + rowHeight > contentBottom)
|
||||||
|
break;
|
||||||
|
|
||||||
|
y += DrawTableRow(gfx, y, columns, row, tableBodyFont, fillHeader: false);
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DrawFooter(gfx, page);
|
||||||
|
pageIndex++;
|
||||||
|
} while (index < studentIds.Count);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double DrawInfoRows(
|
||||||
|
XGraphics gfx,
|
||||||
|
double startY,
|
||||||
|
double contentWidth,
|
||||||
|
XFont labelFont,
|
||||||
|
XFont valueFont,
|
||||||
|
(int Semester, CourseCrafter.CourseInstance Instance) course)
|
||||||
|
{
|
||||||
|
double y = startY;
|
||||||
|
double labelWidth = 160.0;
|
||||||
|
double valueWidth = contentWidth - labelWidth;
|
||||||
|
double rowPadding = 4.0;
|
||||||
|
|
||||||
|
var rows = new List<(string Label, string Value)>
|
||||||
|
{
|
||||||
|
("Kurs-ID", course.Instance.Sport.ID.ToString()),
|
||||||
|
("Kursname", course.Instance.Sport.Name),
|
||||||
|
("Semester", course.Semester.ToString()),
|
||||||
|
("Anzahl SuS", course.Instance.Students.Count.ToString()),
|
||||||
|
("Min / Max", $"{course.Instance.Sport.MinStudents} / {course.Instance.Sport.MaxStudents}"),
|
||||||
|
("Semesterangebote", string.Join(", ", course.Instance.Sport.Semester.Select((count, idx) => $"S{idx + 1}:{count}"))),
|
||||||
|
("Alternativnamen", course.Instance.Sport.AlternativeNames.Count == 0
|
||||||
|
? "-"
|
||||||
|
: string.Join(", ", course.Instance.Sport.AlternativeNames))
|
||||||
|
};
|
||||||
|
|
||||||
|
foreach (var row in rows)
|
||||||
|
{
|
||||||
|
double rowHeight = MeasureInfoRowHeight(gfx, labelFont, valueFont, labelWidth, valueWidth, row.Label, row.Value);
|
||||||
|
|
||||||
|
gfx.DrawRectangle(XPens.LightGray, Margin, y, labelWidth, rowHeight);
|
||||||
|
gfx.DrawRectangle(XPens.LightGray, Margin + labelWidth, y, valueWidth, rowHeight);
|
||||||
|
|
||||||
|
DrawWrappedText(gfx, row.Label, labelFont, XBrushes.Black, Margin + 4, y + rowPadding, labelWidth - 8);
|
||||||
|
DrawWrappedText(gfx, row.Value, valueFont, XBrushes.Black, Margin + labelWidth + 4, y + rowPadding, valueWidth - 8);
|
||||||
|
|
||||||
|
y += rowHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double MeasureInfoRowHeight(
|
||||||
|
XGraphics gfx,
|
||||||
|
XFont labelFont,
|
||||||
|
XFont valueFont,
|
||||||
|
double labelWidth,
|
||||||
|
double valueWidth,
|
||||||
|
string label,
|
||||||
|
string value)
|
||||||
|
{
|
||||||
|
double labelHeight = MeasureWrappedTextHeight(gfx, label, labelFont, labelWidth - 8);
|
||||||
|
double valueHeight = MeasureWrappedTextHeight(gfx, value, valueFont, valueWidth - 8);
|
||||||
|
return Math.Max(labelHeight, valueHeight) + 8.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string[] BuildStudentRow(int rowNumber, Student student)
|
||||||
|
{
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
rowNumber.ToString(),
|
||||||
|
student.ID,
|
||||||
|
student.Name,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string GetCourseName(Student student, int index)
|
||||||
|
{
|
||||||
|
if (index < 0 || index >= student.SelectedCourseNames.Count)
|
||||||
|
return string.Empty;
|
||||||
|
|
||||||
|
return student.SelectedCourseNames[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double[] GetTableColumns(double contentWidth)
|
||||||
|
{
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
30.0,
|
||||||
|
75.0,
|
||||||
|
145.0
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double DrawTableRow(
|
||||||
|
XGraphics gfx,
|
||||||
|
double startY,
|
||||||
|
double[] columns,
|
||||||
|
IReadOnlyList<string> values,
|
||||||
|
XFont font,
|
||||||
|
bool fillHeader)
|
||||||
|
{
|
||||||
|
const double padding = 4.0;
|
||||||
|
double rowHeight = MeasureRowHeight(gfx, columns, values, font);
|
||||||
|
double x = Margin;
|
||||||
|
|
||||||
|
for (int i = 0; i < columns.Length; i++)
|
||||||
|
{
|
||||||
|
double width = columns[i];
|
||||||
|
var rect = new XRect(x, startY, width, rowHeight);
|
||||||
|
gfx.DrawRectangle(XPens.LightGray, rect);
|
||||||
|
|
||||||
|
if (fillHeader)
|
||||||
|
gfx.DrawRectangle(new XSolidBrush(XColor.FromArgb(235, 235, 235)), rect);
|
||||||
|
|
||||||
|
gfx.DrawRectangle(XPens.LightGray, rect);
|
||||||
|
|
||||||
|
var lines = WrapText(gfx, values[i], font, width - (padding * 2));
|
||||||
|
double lineHeight = font.GetHeight();
|
||||||
|
double textY = startY + padding;
|
||||||
|
|
||||||
|
foreach (var line in lines)
|
||||||
|
{
|
||||||
|
gfx.DrawString(line, font, XBrushes.Black,
|
||||||
|
new XRect(x + padding, textY, width - (padding * 2), lineHeight), XStringFormats.TopLeft);
|
||||||
|
textY += lineHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
x += width;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rowHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double MeasureRowHeight(
|
||||||
|
XGraphics gfx,
|
||||||
|
double[] columns,
|
||||||
|
IReadOnlyList<string> values,
|
||||||
|
XFont font)
|
||||||
|
{
|
||||||
|
const double padding = 4.0;
|
||||||
|
double maxHeight = font.GetHeight() + (padding * 2);
|
||||||
|
|
||||||
|
for (int i = 0; i < columns.Length; i++)
|
||||||
|
{
|
||||||
|
double height = MeasureWrappedTextHeight(gfx, values[i], font, columns[i] - (padding * 2)) + (padding * 2);
|
||||||
|
if (height > maxHeight)
|
||||||
|
maxHeight = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
return maxHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static double MeasureWrappedTextHeight(XGraphics gfx, string text, XFont font, double width)
|
||||||
|
{
|
||||||
|
var lines = WrapText(gfx, text, font, width);
|
||||||
|
return lines.Count * font.GetHeight();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<string> WrapText(XGraphics gfx, string? text, XFont font, double maxWidth)
|
||||||
|
{
|
||||||
|
var result = new List<string>();
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(text))
|
||||||
|
{
|
||||||
|
result.Add(string.Empty);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var paragraph in text.Replace("\r", string.Empty).Split('\n'))
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(paragraph))
|
||||||
|
{
|
||||||
|
result.Add(string.Empty);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
string current = string.Empty;
|
||||||
|
foreach (var token in paragraph.Split(' ', StringSplitOptions.RemoveEmptyEntries))
|
||||||
|
{
|
||||||
|
foreach (var wordPart in SplitWordIfNeeded(gfx, token, font, maxWidth))
|
||||||
|
{
|
||||||
|
var candidate = string.IsNullOrEmpty(current) ? wordPart : $"{current} {wordPart}";
|
||||||
|
if (gfx.MeasureString(candidate, font).Width <= maxWidth)
|
||||||
|
{
|
||||||
|
current = candidate;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(current))
|
||||||
|
result.Add(current);
|
||||||
|
|
||||||
|
current = wordPart;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(current))
|
||||||
|
result.Add(current);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result.Count == 0 ? new List<string> { string.Empty } : result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static IEnumerable<string> SplitWordIfNeeded(XGraphics gfx, string word, XFont font, double maxWidth)
|
||||||
|
{
|
||||||
|
if (gfx.MeasureString(word, font).Width <= maxWidth)
|
||||||
|
{
|
||||||
|
yield return word;
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
|
||||||
|
string chunk = string.Empty;
|
||||||
|
foreach (char c in word)
|
||||||
|
{
|
||||||
|
string candidate = chunk + c;
|
||||||
|
if (chunk.Length > 0 && gfx.MeasureString(candidate, font).Width > maxWidth)
|
||||||
|
{
|
||||||
|
yield return chunk;
|
||||||
|
chunk = c.ToString();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
chunk = candidate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(chunk))
|
||||||
|
yield return chunk;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void DrawWrappedText(
|
||||||
|
XGraphics gfx,
|
||||||
|
string? text,
|
||||||
|
XFont font,
|
||||||
|
XBrush brush,
|
||||||
|
double x,
|
||||||
|
double y,
|
||||||
|
double width)
|
||||||
|
{
|
||||||
|
double lineHeight = font.GetHeight();
|
||||||
|
foreach (var line in WrapText(gfx, text, font, width))
|
||||||
|
{
|
||||||
|
gfx.DrawString(line, font, brush, new XRect(x, y, width, lineHeight), XStringFormats.TopLeft);
|
||||||
|
y += lineHeight;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void DrawFooter(XGraphics gfx, PdfPage page)
|
||||||
|
{
|
||||||
|
var footerFont = new XFont(FontFamily, 7, XFontStyleEx.Regular);
|
||||||
|
double width = page.Width.Point - (Margin * 2);
|
||||||
|
double x = Margin;
|
||||||
|
double baseY = page.Height.Point - Margin + 2;
|
||||||
|
|
||||||
|
gfx.DrawString("generated by spplus", footerFont, FooterBrush,
|
||||||
|
new XRect(x, baseY, width, 9), XStringFormats.Center);
|
||||||
|
gfx.DrawString("(c) 2026 MyPapertown", footerFont, FooterBrush,
|
||||||
|
new XRect(x, baseY + 8, width, 9), XStringFormats.Center);
|
||||||
|
gfx.DrawString("www.mypapercloud.de/spplus", footerFont, FooterBrush,
|
||||||
|
new XRect(x, baseY + 16, width, 9), XStringFormats.Center);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ConfigurePage(PdfPage page)
|
||||||
|
{
|
||||||
|
page.Size = PageSize.A4;
|
||||||
|
page.Orientation = PageOrientation.Portrait;
|
||||||
|
}
|
||||||
|
}
|
||||||
+9
-1
@@ -1,5 +1,7 @@
|
|||||||
using Avalonia;
|
using Avalonia;
|
||||||
using System;
|
using System;
|
||||||
|
using PdfSharp;
|
||||||
|
using PdfSharp.Fonts;
|
||||||
|
|
||||||
namespace spplus;
|
namespace spplus;
|
||||||
|
|
||||||
@@ -9,8 +11,14 @@ class Program
|
|||||||
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
||||||
// yet and stuff might break.
|
// yet and stuff might break.
|
||||||
[STAThread]
|
[STAThread]
|
||||||
public static void Main(string[] args) => BuildAvaloniaApp()
|
public static void Main(string[] args)
|
||||||
|
{
|
||||||
|
// Initialize PdfSharp font resolver before any PDF operations
|
||||||
|
GlobalFontSettings.FontResolver = new CustomFontResolver();
|
||||||
|
|
||||||
|
BuildAvaloniaApp()
|
||||||
.StartWithClassicDesktopLifetime(args);
|
.StartWithClassicDesktopLifetime(args);
|
||||||
|
}
|
||||||
|
|
||||||
// Avalonia configuration, don't remove; also used by visual designer.
|
// Avalonia configuration, don't remove; also used by visual designer.
|
||||||
public static AppBuilder BuildAvaloniaApp()
|
public static AppBuilder BuildAvaloniaApp()
|
||||||
|
|||||||
@@ -1,3 +1,27 @@
|
|||||||
# spplus
|
# SP+
|
||||||
|
|
||||||
Interaktiver Sportkursplaner für Oberstufen auf Basis einer Sportkurswahl durch SuS.
|
Plattformunabhängiger (Windows, Linux, Mac), interaktiver Sportkursplaner für Oberstufen auf Basis einer Sportkurswahl durch SuS.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Features
|
||||||
|
* \+ Import von CSV-Dateien mit Kurswahl
|
||||||
|
* \+ Wahlansicht
|
||||||
|
* \+ Statistiken
|
||||||
|
* \+ Pflege von Sportkursen (inkl. Kürzel/ alternativen Bezeichnungen)
|
||||||
|
* \+ CSV-Export
|
||||||
|
* ~ Fehleransicht für nicht-existente, aber gewählte Kurse
|
||||||
|
* ~ PDF-Export
|
||||||
|
|
||||||
|
\+ Vorhanden, ~ Pending
|
||||||
|
|
||||||
|
## Nutzung
|
||||||
|
* Build from source:
|
||||||
|
* Benötigt .NET-SDK 9.0
|
||||||
|
* Im Projektordner: `dotnet run`
|
||||||
|
* Release:
|
||||||
|
* Suche `spplus` bzw. `spplus.exe` und führe aus
|
||||||
|
* Linux/MacOS evl.: `chmod +x spplus`
|
||||||
|
|
||||||
|
|
||||||
|

|
||||||
+1047
File diff suppressed because it is too large
Load Diff
+67
@@ -0,0 +1,67 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text.Json;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
public static class ExportUtility
|
||||||
|
{
|
||||||
|
private sealed class ConfigurationExport
|
||||||
|
{
|
||||||
|
public List<Sport> Sports { get; set; } = [];
|
||||||
|
public int[] NumCoursesPerSemester { get; set; } = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ExportToCSV(string filepath)
|
||||||
|
{
|
||||||
|
char separator = ',';
|
||||||
|
string header = $"SchuelerID{separator}Sem1{separator}Sem2{separator}Sem3{separator}Sem4";
|
||||||
|
string output = header + "\n";
|
||||||
|
foreach (var student in Settings.Instance.Students)
|
||||||
|
{
|
||||||
|
output += $"{student.ID}{separator}{student.Result[0]}{separator}{student.Result[1]}{separator}{student.Result[2]}{separator}{student.Result[3]}\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
File.WriteAllText(filepath, output);
|
||||||
|
}
|
||||||
|
|
||||||
|
private sealed class ResultExportEntry
|
||||||
|
{
|
||||||
|
public int Semester { get; set; }
|
||||||
|
public string SportName { get; set; } = string.Empty;
|
||||||
|
public List<string> Students { get; set; } = new();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ExportResultsToJson(string filepath)
|
||||||
|
{
|
||||||
|
var list = CourseCrafter.GeneratedCourses
|
||||||
|
.Select(g => new ResultExportEntry
|
||||||
|
{
|
||||||
|
Semester = g.Semester,
|
||||||
|
SportName = g.Instance.Sport.Name,
|
||||||
|
Students = g.Instance.Students.ToList()
|
||||||
|
})
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
var json = JsonSerializer.Serialize(list, new JsonSerializerOptions { WriteIndented = true });
|
||||||
|
File.WriteAllText(filepath, json);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ExportConfigurationToJson(string filepath)
|
||||||
|
{
|
||||||
|
var export = new ConfigurationExport
|
||||||
|
{
|
||||||
|
Sports = Settings.Instance.Sports,
|
||||||
|
NumCoursesPerSemester = Settings.Instance.NumCoursesPerSemester
|
||||||
|
};
|
||||||
|
|
||||||
|
var json = JsonSerializer.Serialize(export, new JsonSerializerOptions
|
||||||
|
{
|
||||||
|
WriteIndented = true
|
||||||
|
});
|
||||||
|
|
||||||
|
File.WriteAllText(filepath, json);
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 82 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 194 KiB |
@@ -0,0 +1,128 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
public static class import
|
||||||
|
{
|
||||||
|
public static List<Student> ImportStudentsFromFile(string path)
|
||||||
|
{
|
||||||
|
var dict = new Dictionary<string, (string Name, List<string> Courses)>();
|
||||||
|
|
||||||
|
foreach (var line in File.ReadLines(path).Skip(1)) // Header überspringen
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(line))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var parts = line.Split(',');
|
||||||
|
if (parts.Length < 3)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
string nameWithId = parts[0].Trim();
|
||||||
|
string course = parts[2].Replace("(2)", "").Replace("(3)", "").Replace("(4)", "").Trim();
|
||||||
|
|
||||||
|
int open = nameWithId.LastIndexOf('(');
|
||||||
|
int close = nameWithId.LastIndexOf(')');
|
||||||
|
if (open < 0 || close < 0 || close <= open)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
string name = nameWithId[..open].Trim();
|
||||||
|
string id = nameWithId[(open + 1)..close].Trim();
|
||||||
|
|
||||||
|
if (!dict.ContainsKey(id))
|
||||||
|
dict[id] = (name, new List<string>());
|
||||||
|
|
||||||
|
dict[id].Courses.Add(course);
|
||||||
|
}
|
||||||
|
|
||||||
|
var result = new List<Student>();
|
||||||
|
|
||||||
|
foreach (var (id, data) in dict)
|
||||||
|
{
|
||||||
|
var student = new Student(id, data.Name, data.Courses);
|
||||||
|
result.Add(student);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<Student> ImportResultFromFile(string path)
|
||||||
|
{
|
||||||
|
var dict = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
foreach (var line in File.ReadLines(path).Skip(1)) // Header überspringen
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(line))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var parts = line.Split(',', StringSplitOptions.None);
|
||||||
|
if (parts.Length < 5)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var studentId = parts[0].Trim();
|
||||||
|
dict[studentId] = new[]
|
||||||
|
{
|
||||||
|
parts[1].Trim(),
|
||||||
|
parts[2].Trim(),
|
||||||
|
parts[3].Trim(),
|
||||||
|
parts[4].Trim()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return dict
|
||||||
|
.Select(entry => new Student(entry.Key, string.Empty, new List<string>())
|
||||||
|
{
|
||||||
|
Result = entry.Value
|
||||||
|
})
|
||||||
|
.ToList();
|
||||||
|
}
|
||||||
|
|
||||||
|
private sealed class ResultImportEntry
|
||||||
|
{
|
||||||
|
public int Semester { get; set; }
|
||||||
|
public string SportName { get; set; } = string.Empty;
|
||||||
|
public List<string> Students { get; set; } = new();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<(int Semester, CourseCrafter.CourseInstance Instance)> ImportResultFromJson(string path)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var json = File.ReadAllText(path);
|
||||||
|
var entries = JsonSerializer.Deserialize<List<ResultImportEntry>>(json);
|
||||||
|
if (entries == null) return new();
|
||||||
|
|
||||||
|
var result = new List<(int Semester, CourseCrafter.CourseInstance Instance)>();
|
||||||
|
|
||||||
|
foreach (var e in entries)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(e.SportName))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var sport = Settings.Instance.Sports.FirstOrDefault(s =>
|
||||||
|
string.Equals(s.Name, e.SportName, StringComparison.OrdinalIgnoreCase) ||
|
||||||
|
s.AlternativeNames.Any(a => string.Equals(a, e.SportName, StringComparison.OrdinalIgnoreCase)));
|
||||||
|
|
||||||
|
if (sport == null)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var ci = new CourseCrafter.CourseInstance
|
||||||
|
{
|
||||||
|
Sport = sport,
|
||||||
|
Students = e.Students.Distinct().ToList()
|
||||||
|
};
|
||||||
|
|
||||||
|
result.Add((e.Semester, ci));
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return new();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 106 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
@@ -5,6 +5,7 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||||||
|
<ApplicationIcon>res/logo.ico</ApplicationIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -18,5 +19,25 @@
|
|||||||
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Lucide.Avalonia" Version="0.1.35"/>
|
<PackageReference Include="Lucide.Avalonia" Version="0.1.35"/>
|
||||||
|
<PackageReference Include="PdfSharp" Version="6.2.4"/>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Remove="res\logo.ico"/>
|
||||||
|
<AvaloniaResource Include="res\logo.ico">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</AvaloniaResource>
|
||||||
|
<None Remove="res\logo.png"/>
|
||||||
|
<AvaloniaResource Include="res\logo.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</AvaloniaResource>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="res/fonts/*.ttf">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
+132
@@ -0,0 +1,132 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Avalonia.Data;
|
||||||
|
|
||||||
|
namespace spplus;
|
||||||
|
|
||||||
|
public class Sport
|
||||||
|
{
|
||||||
|
public int ID { get; set; } = 0;
|
||||||
|
public string Name { get; set; } = "Neuer Kurs"; // Kursname
|
||||||
|
|
||||||
|
public int MaxStudents { get; set; } = 25; // Maximale Anzahl an Schülern pro Kurs
|
||||||
|
public int MinStudents { get; set; } = 5; // Minimale Anzahl an Schülern pro Kurs
|
||||||
|
public int[] Semester { get; set; } = [2, 2, 2, 2]; // Maximale Anzahl an Angeboten in den jeweiligen Index-Semestern (0 => 1. Semester)
|
||||||
|
public List<string> AlternativeNames { get; set; } = new();
|
||||||
|
//public List<int> AlternativeCourses { get; set; } = new();
|
||||||
|
|
||||||
|
protected Sport()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public Sport(string name)
|
||||||
|
{
|
||||||
|
Name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Sport(string name, int maxCoursesPerSemester, int maxStudents, int minStudents, int[] semester, List<string> alternativeNames)
|
||||||
|
{
|
||||||
|
Name = name;
|
||||||
|
MaxStudents = maxStudents;
|
||||||
|
MinStudents = minStudents;
|
||||||
|
Semester = semester;
|
||||||
|
AlternativeNames = alternativeNames;
|
||||||
|
}
|
||||||
|
|
||||||
|
// public void AddAlternativeSport(int id)
|
||||||
|
// {
|
||||||
|
// AlternativeCourses.Add(id);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// public void ClearAlternativeSport()
|
||||||
|
// {
|
||||||
|
// AlternativeCourses.Clear();
|
||||||
|
// }
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
var alt = "";
|
||||||
|
foreach (var s in AlternativeNames)
|
||||||
|
{
|
||||||
|
alt += s + ", ";
|
||||||
|
}
|
||||||
|
return $"{Name} ({alt})";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Student
|
||||||
|
{
|
||||||
|
public string ID { get; set; } = ""; // ID des Schüler (z.B. NolteSeb)
|
||||||
|
public string Name { get; set; } = ""; // Name des Schülers
|
||||||
|
public List<string> SelectedCourseNames { get; set; } = new();
|
||||||
|
public string[] Result { get; set; } = new string[4];
|
||||||
|
|
||||||
|
public Student()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return $"{Name} ({ID})";
|
||||||
|
}
|
||||||
|
|
||||||
|
public Student(string id, string name, List<string> selectedCoursesNames)
|
||||||
|
{
|
||||||
|
ID = id;
|
||||||
|
Name = name;
|
||||||
|
SelectedCourseNames = selectedCoursesNames;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Settings
|
||||||
|
{
|
||||||
|
public static Settings Instance = new Settings();
|
||||||
|
|
||||||
|
public List<Student> Students { get; set; } = [];
|
||||||
|
public List<Sport> Sports { get; set; } = [];
|
||||||
|
public int[] NumCoursesPerSemester { get; set; } = [10,10,11,11]; // Exact Amount of courses, not a maximum
|
||||||
|
|
||||||
|
public Settings()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Import(string path)
|
||||||
|
{
|
||||||
|
// Hier importieren...
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ImportInitial()
|
||||||
|
{
|
||||||
|
Instance.Sports.Clear();
|
||||||
|
|
||||||
|
int id = 1;
|
||||||
|
Instance.Sports.Add(new Sport("Tischtennis"){ ID = id++, AlternativeNames = {"Sport_TT"}});
|
||||||
|
Instance.Sports.Add(new Sport("Badminton"){ ID = id++, AlternativeNames = {"Sport_BM"}});
|
||||||
|
Instance.Sports.Add(new Sport("Gymnastik/Tanz"){ ID = id++, AlternativeNames = {"Sport_Gym"}});
|
||||||
|
Instance.Sports.Add(new Sport("Schwimmen"){ ID = id++, AlternativeNames = {"Sport_SW"}, Semester = [1, 1, 1, 1], MaxStudents = 18});
|
||||||
|
Instance.Sports.Add(new Sport("Bouldern"){ ID = id++, AlternativeNames = {"Sport_BO"}, Semester = [1, 1, 1, 1]});
|
||||||
|
Instance.Sports.Add(new Sport("Basketball"){ ID = id++, AlternativeNames = {"Sport_BS"}});
|
||||||
|
Instance.Sports.Add(new Sport("Fitness"){ ID = id++, AlternativeNames = {"Sport_Fit"}});
|
||||||
|
Instance.Sports.Add(new Sport("Fußball"){ ID = id++, AlternativeNames = {"Sport_Fuß"}, Semester = [1, 0, 1, 0]});
|
||||||
|
Instance.Sports.Add(new Sport("Handball"){ ID = id++, AlternativeNames = {"Sport_HB"}});
|
||||||
|
Instance.Sports.Add(new Sport("Leichtathletik"){ ID = id++, AlternativeNames = {"Sport_LA"}, Semester = [1, 0, 1, 0], MaxStudents = 18});
|
||||||
|
Instance.Sports.Add(new Sport("Tennis"){ ID = id++, AlternativeNames = {"Sport_Te"}});
|
||||||
|
Instance.Sports.Add(new Sport("Turnen"){ ID = id++, AlternativeNames = {"Sport_Tur"}});
|
||||||
|
Instance.Sports.Add(new Sport("Volleyball"){ ID = id++, AlternativeNames = {"Sport_VB"}});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string? GetSportNameFromID(int id)
|
||||||
|
{
|
||||||
|
foreach (var s in Instance.Sports)
|
||||||
|
{
|
||||||
|
if (s.ID == id)
|
||||||
|
{
|
||||||
|
return s.Name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user