Syllabore 2.3.3
dotnet add package Syllabore --version 2.3.3
NuGet\Install-Package Syllabore -Version 2.3.3
<PackageReference Include="Syllabore" Version="2.3.3" />
paket add Syllabore --version 2.3.3
#r "nuget: Syllabore, 2.3.3"
// Install Syllabore as a Cake Addin #addin nuget:?package=Syllabore&version=2.3.3 // Install Syllabore as a Cake Tool #tool nuget:?package=Syllabore&version=2.3.3
What is this?
- Syllabore is a procedural name generator that does not use a pre-made lists of names
- It can be embedded into a .NET program and used 100% offline
How are names generated?
- Syllabore first constructs syllables out of characters (graphemes)
- Then it sequences syllables into names
Table of Contents
Quick Start
Use the NameGenerator
class to generate names. Call Next()
to get a new name. By default, a subset of consonants and vowels from the English language will be used.
var g = new NameGenerator();
Console.WriteLine(g.Next());
This will return names like:
Pheras
Domar
Teso
Tailoring Characters
For simple generators, you can supply the vowels and consonants to use through the constructor:
var g = new NameGenerator("ae", "srnl");
Names from this generator will only ever have the characters a
and e
for vowels, and the characters s
r
n
and l
for consonants. Calls to Next()
will produce names like:
Lena
Salna
Rasse
See the wiki for more examples on how to control things like vowel sequences, consonant positioning, and more!
Transformations
A Transform
is a mechanism for changing a source name into a new, modified name. Call UsingTransform()
on a NameGenerator
to specify one or more transformations:
var g = new NameGenerator()
.UsingTransform(x => x
.ReplaceSyllable(0, "zo") // Replace the first syllable with string "zo"
.AppendSyllable("ri")); // Adds a new syllable to end of name
Calling Next()
produces names like:
Zocari
Zoshari
Zojiri
See the wiki for additional examples.
Filtering Output
Each NameGenerator
can be configured to prevent specific substrings or patterns from showing up in names. Filtering is completely optional, but is useful in avoiding awkward sounding combinations of characters.
Here is a basic example of preventing substrings from appearing:
var g = new NameGenerator()
.DoNotAllow("ist") // Will prevent names like "Misty"
.DoNotAllow("ck"); // Will prevent names like "Brock"
See the wiki for additional examples.
Installation
.NET apps
Syllabore is available as a NuGet package. You can install it from your NuGet package manager in Visual Studio (search for "Syllabore") or by running the following command in your NuGet package manager console:
Install-Package Syllabore
Godot Engine
There are a couple ways to do this in Godot:
- Open your Godot project in Visual Studio and add the Syllabore NuGet package through the package manager
- Or open a command line,
cd
into your Godot project directory, and use the following command:
dotnet add package Syllabore
Compatibility
By design, Syllabore is a .NET Standard 2.0 class library. This means it will be compatible with applications using:
- .NET or .NET Core 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0
- .NET Framework 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
- Mono 5.4, 6.4
Syllabore has been tested and known to work in the following game engines:
- Godot 4 (Using the .NET edition of the engine)
Syllabore should also work in the following game engines, but I have not done adequate testing yet:
License
MIT License
Copyright (c) 2019-2024 Kevin Sacro
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Archigen (>= 1.2.0)
- System.Text.Json (>= 4.7.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.