DagsLibrary 1.0.2

Suggested Alternatives

dags

Additional Details

This package has been renamed to DAGS.

dotnet add package DagsLibrary --version 1.0.2
NuGet\Install-Package DagsLibrary -Version 1.0.2
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="DagsLibrary" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DagsLibrary --version 1.0.2
#r "nuget: DagsLibrary, 1.0.2"
#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.
// Install DagsLibrary as a Cake Addin
#addin nuget:?package=DagsLibrary&version=1.0.2

// Install DagsLibrary as a Cake Tool
#tool nuget:?package=DagsLibrary&version=1.0.2

DAGS - Data Access Game Scripts

DAGS is a simple scripting engine which directly connects to a key/value dictionary. It has commands to get and set data and manipulate it in various ways. It is interpretive and not compiled, in order to give it greater flexibility.

DAGS consists of functions starting with "@" with zero or more parameters defined for each. Parameter values can be strings or other functions returning strings. Strings are anything not starting with "@", and don't need quotes around them if they have no spaces or special symbols. Some functions, such as arithmetic functions, expect the string parameters to be numbers or functions returning numbers.

Many of the built-in functions directly access the data from the key/value dictionary. "@get(mykey)" reads the key "mykey" and returns the value. "@set(mykey,myvalue)" sets mykey=myvalue in the dictionary. Other functions return text to the calling program, or execute more scripts.

DAGS can be extended by creating new functions and adding them to the dictionary. They are no different than the built-in functions and are usable for any purpose.

DAGS works great with GROD, a Game Resource Overlay Dictionary. GROD contains base values plus all changes in an overlay as the game is played, so changes can be saved and restored. See the GrodLibrary GitHub site for more details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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.

Version Downloads Last updated
1.0.2 104 2/29/2024
1.0.1 106 2/22/2024
1.0.0 107 2/7/2024