StoryBrew-NG (Next Generation) is a complete refactor of the beloved StoryBrew project, rebuilt from the ground up for improved performance and cross-platform compatibility (including native Linux support). A key feature of this refactor is its enhanced flexibility, achieved by leveraging the standard .NET build process for compiling storyboards.
The new GUI desktop application, built on osu!Framework, empowers creators to efficiently manage osu! storyboards paired with enhanced libraries for script creation and development.
Documentation & Tutorials: Explore the [StoryBrew Wiki] (placeholder) for detailed guides. Until StoryBrew-NG is ready and has introduced all new features, much of the original documentation remains relevant.
StoryBrew-NG modernizes the original StoryBrew with:
- Cross-platform support making it compatible with Linux.
- Modular architecture for easier maintenance and extensibility
- Improved performance through optimized rendering and code generation
- Hybrid workflow combining GUI editing and CLI scripting
- Launch the StoryBrew application.
- Use the New Project wizard to generate a template project automatically.
- Install the template package:
dotnet new --install <storybrew_template>
- Create a new project:
dotnet new <storybrew_template> -n MyStoryboardProject
Once created, customize your storyboard scripts using your preferred IDE (e.g., Visual Studio, Rider, or VS Code).
- Update Project: Click the [placeholder] button in the editor to:
- Compile your code (
dotnet build
) - Establish a real-time pipe connection with the editor for visualization (
dotnet run -- pipe
)
- Compile your code (
- Visualize & Edit: Interact with the timeline, adjust parameters visually, and see changes immediately.
- Build your project:
dotnet build -c Release
- View command options:
dotnet run -- help
Iterate by editing scripts and rebuilding until you achieve your desired storyboard.
- StoryBrew: A foundational library for storyboard projects.
Distributed as a NuGet package. - StoryBrew.Generator: A Source Generator that makes the entrypoint for storyboard projects, this new component is automatically used when you compile your project
Distributed as a NuGet package. - StoryBrew.Desktop: A desktop application providing a GUI for storyboard visualization and development.
- StoryBrew.Game: Core library handling the GUI components.
- StoryBrew.Game.Tests: Testing suite for the
StoryBrew.Game
library. - StoryBrew.Resources: Resource library used by
StoryBrew.Game
library.
The modular design ensures that the internal workings remain streamlined while offering robust functionality for storyboard development.
This project no longer relies on BrewLib, Damnae.Tiny or System.Drawing.Common allowing more flexibility and simpler maintenance, currently it depends on the following packages:
- ManagedBass:
3.1.1
(API's using this are marked obsolete) - Newtonsoft.Json:
13.0.3
- Newtonsoft.Json.Bson:
1.0.3
- Newtonsoft.Json.Schema:
4.0.1
- OpenTK.Mathematics:
4.9.3
- SkiaSharp:
3.116.1
- ppy.osu.Framework:
2025.220.1
- ppy.osu.Game:
2025.221.0
- Microsoft.NET.Test.Sdk:
17.13.0
- NUnit3TestAdapter:
5.0.0
- Microsoft.CodeAnalysis:
4.12.0
- Microsoft.CodeAnalysis.CSharp:
4.12.0
- .NET 9 SDK
- Git
- Clone the repository:
git clone <url> cd StoryBrew-NG
- Restore dependencies:
dotnet restore
- Build the solution:
dotnet build -c Release
We welcome contributions to this project. Feel free to submit issues, suggest features, or create pull requests to improve the tool.
Distributed under the MIT License. See LICENSE for details.