The MIDI Info Grabber tool was a spontaneous project using a language and framework which were completely new to me at the time and which I haven't used since. This was my first and last experience writing C# and using WPF, just for curiosity's sake.
There isn't much to say about this one. It performs a very simple task: it allows the user to open a MIDI file from their computer and view some properties retrieved from the MIDI file header in a friendly format.
<Window x:Class="WpfDemo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:WpfDemo"
mc:Ignorable="d"
FontSize="18" FontFamily="Segoe UI Light"
Title="MIDI Info Grabber" Height="275" Width="500"
Icon="icon.ico" WindowStartupLocation="CenterScreen">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="20" />
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="20" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="20" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
<RowDefinition Height="20" />
</Grid.RowDefinitions>
<TextBlock Grid.Column="1" Grid.Row="1" Grid.ColumnSpan="2"
Text="MIDI Info Grabber" FontSize="36" Margin="0,0,0,10"/>
<Button x:Name="OpenFileButton" Grid.Column="1" Grid.Row="2"
Content="Open File" Click="OpenFileBtn_Click" Margin="0,0,0,10"
Padding="50,2" ToolTip="Open a file to read its MIDI header" />
<TextBlock Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2"
ToolTip="The filepath of the current file">
<Run FontFamily="Segoe UI" Text="File:" />
<Run x:Name="filenameText" Text="None" />
</TextBlock>
<TextBlock Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2"
ToolTip="The format of the current MIDI file">
<Run FontFamily="Segoe UI" Text="MIDI Format:" />
<Run x:Name="formatText" />
</TextBlock>
<TextBlock Grid.Row="5" Grid.Column="1" Grid.ColumnSpan="2"
ToolTip="The number of tracks in the current MIDI file">
<Run FontFamily="Segoe UI" Text="Tracks:" />
<Run x:Name="tracksText" />
</TextBlock>
<TextBlock Grid.Row="6" Grid.Column="1" Grid.ColumnSpan="2"
ToolTip="The default unit of delta-time in the current MIDI file">
<Run FontFamily="Segoe UI" Text="Division:" />
<Run x:Name="divisionText" />
</TextBlock>
</Grid>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Microsoft.Win32;
using System.IO;
namespace WpfDemo
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void OpenFileBtn_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog
{
Filter = "MIDI Files (*.mid)|*.mid|All Files (*.*)|*.*"
};
if (openFileDialog.ShowDialog() == true)
{
string filename = openFileDialog.FileName;
filenameText.Text = filename;
if (File.Exists(filename))
{
using (BinaryReader reader = new BinaryReader(File.Open(filename, FileMode.Open)))
{
string type = new string(reader.ReadChars(4));
if (type == "MThd")
{
int format = LittleToBigEndian(reader.ReadBytes(2), 2);
formatText.Text = $"{format}";
if (format == 0)
{
formatText.Text += " (Single multi-channel track)";
}
else if (format == 1)
{
formatText.Text += " (One or more simultaneous tracks)";
}
else if (format == 2)
{
formatText.Text += " (One or more independant sequences)";
}
int tracks = LittleToBigEndian(reader.ReadBytes(2), 2);
tracksText.Text = $"{tracks}";
int division = LittleToBigEndian(reader.ReadBytes(2), 2);
string divisionStr = $"{division} ticks per quarter-note";
if ((division & 0x8000) != 0)
{
int smtpe = (sbyte)(division & 0x7F00) >> 8;
string frames = smtpe == -29 ? $"{Math.Abs(smtpe)} frames per second" : "30 frames per second, drop frame";
int ticks = division & 0xFF;
divisionStr = $"SMTPE {smtpe} ({frames}), {ticks} ticks per frame";
}
divisionText.Text = divisionStr;
}
else
{
MessageBox.Show("This file doesn't have a MIDI header. Are you sure it's a MIDI file?");
}
}
}
}
}
static int LittleToBigEndian(byte[] src, int size)
{
int result = 0;
for (int i = 0; i < size; i++)
{
result += src[size - 1 - i] << i * 8;
}
return result;
}
}
}