ThirtyDollarLib 1.1.0

Additional Details

Another sound was missing

There is a newer version of this package available.
See the version list below for details.
dotnet add package ThirtyDollarLib --version 1.1.0
                    
NuGet\Install-Package ThirtyDollarLib -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ThirtyDollarLib" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ThirtyDollarLib" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="ThirtyDollarLib" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ThirtyDollarLib --version 1.1.0
                    
#r "nuget: ThirtyDollarLib, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ThirtyDollarLib@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ThirtyDollarLib&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=ThirtyDollarLib&version=1.1.0
                    
Install as a Cake Tool

<p align="center"><img src="https://user-images.githubusercontent.com/42378704/170884149-7e2f5c9f-91c8-488b-9fa3-b5beaa521a70.png" alt="Logo" width="128" align="center"/> <br/>GitHub issues GitHub Nuget<br/> DON'T YOU LECTURE ME WITH YOUR THIRTY DOLLAR LIBRARY</p>

DON'T YOU LECTURE ME WITH YOUR THIRTY DOLLAR LIBRARY, or ThirtyDollarLib for short, is a .NET library that helps construct and parse 🗿 files, or better known as Thirty Dollar Website sequencer files.

READ!! Info regarding ItemType

When programming the sounds, you might not be able to distinguish the control items and the actual sounds. To distinguish the 2, here is a list of control items to help out: Speed, Volume, Stop, LoopMany, Loop, LoopTarget, Cut, Combine, Jump, Target, Flash, StartPos, Pause

Installation

Like almost any other .NET library out there, the library is provided through NuGet. Installing this library should be pretty straightforward:

Visual Studio (GUI)

Right-click on your project node in the Solution Explorer, then click Manage NuGet Packages, or click Project > Manage NuGet Packages.
Then, type ThirtyDollarLib into the search box, click on the package, then click Install. Now you're ready to use the library!

Visual Studio (Package Manager Console)

Bring up the Package Manager Console by going to View > Other Windows > Package Manager Console. Then type Install-Package ThirtyDollarLib

dotnet CLI

cd into your project folder, then type dotnet add package ThirtyDollarLib.

Usage

If you wanna generate a sequence, here's a quick guide to get started:

using ThirtyDollarLib;

List<Item> items = new()
{
  new Item(ItemType.Speed, 2000, ControlModifier.Set)
};

for (int i = 0; i < 20; i++) items.Add(new Item(ItemType.Boom, i));

Sequence seq = new Sequence(items);
string converted = seq.ToString();

// do stuff with your sequence file, like writing it to a file

You can also parse a compiled sequence back into a Sequence object like so:

using ThirtyDollarLib;

string compiled = File.ReadAllText("sequence.🗿"); // you can load the string in any way you'd like, we're only using files as an example
Sequence seq = Sequence.Parse(compiled);

// do stuff with your new Sequence, like appending data

Contribution stuff

If you wanna contribute to the docs, or the crappy codebase, do so with a pull request
That's pretty much all

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.