Skip to content

Commit

Permalink
Added Studio One support
Browse files Browse the repository at this point in the history
  • Loading branch information
Serena1432 committed Mar 27, 2021
1 parent c84e8ae commit 7e9361b
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 0 deletions.
Binary file modified DAWRPC.suo
Binary file not shown.
18 changes: 18 additions & 0 deletions DAWRPC/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ private void timer1_Tick(object sender, EventArgs e)
var Ab11Suite = Process.GetProcessesByName("Ableton Live 11 Suite");
var Reaper = Process.GetProcessesByName("reaper");
var Bitwig = Process.GetProcessesByName("Bitwig Studio");
var StudioOne = Process.GetProcessesByName("Studio One");
// End DAW Process Variables
string clientID = "";
// Begin DAW Information Grabbing
Expand Down Expand Up @@ -307,6 +308,23 @@ private void timer1_Tick(object sender, EventArgs e)
clientID = "825134933256962108";
versionText = Bitwig[0].Modules[0].FileVersionInfo.ProductVersion.ToString();
}
else if (StudioOne.Length != 0)
{
DAWName.Text = "Studio One";
string title = StudioOne[0].MainWindowTitle;
if (title.Contains("Studio One - "))
{
ProjectOpening.Text = title.Substring(13, title.Length - 13);
}
else
{
ProjectOpening.Text = "None";
}
CPUUsage.Text = GetCPUUsage(StudioOne[0]) + "%";
RAMUsage.Text = GetRAMUsage(StudioOne[0]);
clientID = "825286462672732160";
versionText = StudioOne[0].Modules[0].FileVersionInfo.ProductVersion.ToString();
}
// End DAW Process Information Grabbing
else
{
Expand Down
Binary file modified DAWRPC/bin/Debug/DAWRPC.exe
Binary file not shown.
Binary file modified DAWRPC/bin/Debug/DAWRPC.pdb
Binary file not shown.
Binary file modified DAWRPC/obj/Debug/DAWRPC.exe
Binary file not shown.
Binary file modified DAWRPC/obj/Debug/DAWRPC.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ It will show as the following:
* Ableton Live 9 Intro or later (doesn't support Lite, Beta and Trial version)
* REAPER
* Bitwig Studio (fxxk Bitwig, you used more CPU and RAM than Ableton)
* Studio One

## Installation

Expand Down

0 comments on commit 7e9361b

Please sign in to comment.