ThirtyDollarLib 1.3.1
dotnet add package ThirtyDollarLib --version 1.3.1
NuGet\Install-Package ThirtyDollarLib -Version 1.3.1
<PackageReference Include="ThirtyDollarLib" Version="1.3.1" />
<PackageVersion Include="ThirtyDollarLib" Version="1.3.1" />
<PackageReference Include="ThirtyDollarLib" />
paket add ThirtyDollarLib --version 1.3.1
#r "nuget: ThirtyDollarLib, 1.3.1"
#:package ThirtyDollarLib@1.3.1
#addin nuget:?package=ThirtyDollarLib&version=1.3.1
#tool nuget:?package=ThirtyDollarLib&version=1.3.1
<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/>
<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 | Versions 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. |
-
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.