dags 1.2.9

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

// Install dags as a Cake Tool
#tool nuget:?package=dags&version=1.2.9

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 called just like the built-in functions and are usable for any purpose.

DAGS works great with GROD, a Game Resource Overlay Dictionary. GROD holds base values plus all changes in an overlay as the game is played, so changes can be saved and restored. See the GROD 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 (1)

Showing the top 1 NuGet packages that depend on dags:

Package Downloads
grifdata

GRIFData - Loading and saving GRIF game data files

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.9 116 4/6/2024
1.2.8 97 3/31/2024
1.2.6 140 3/13/2024
1.2.3 136 3/10/2024
1.2.1 134 3/9/2024
1.2.0 132 3/5/2024

1.2.9 - SYNTAX.md changes