DemoFile 0.20.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package DemoFile --version 0.20.1                
NuGet\Install-Package DemoFile -Version 0.20.1                
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="DemoFile" Version="0.20.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DemoFile --version 0.20.1                
#r "nuget: DemoFile, 0.20.1"                
#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 DemoFile as a Cake Addin
#addin nuget:?package=DemoFile&version=0.20.1

// Install DemoFile as a Cake Tool
#tool nuget:?package=DemoFile&version=0.20.1                

DemoFile.Net NuGet Build status

DemoFile.Net is a blazing fast demo parser library for Counter-Strike 2, written in C#. It is cross platform, and can be used from Windows, Mac or Linux.

Screenshot of DemoFile.Net

Easy discoverability of available data through your IDE's inbuilt autocompletion:

alternate text is missing from this package README image alternate text is missing from this package README image
alternate text is missing from this package README image alternate text is missing from this package README image

Features

Feature Availability
CSTV / GOTV demos ✅ Full support
POV demos ✅ Full support
Game events (e.g. player_death) ✅ Full support
Entity updates (player positions, grenades, etc.) ✅ Full support
Seeking forwards/backwards through the demo ✅ Full support

Examples

Note: This library is still under heavy development and the API is likely to change significantly before v1.0

using DemoFile;

internal class Program
{
    public static async Task Main(string[] args)
    {
        var path = args.SingleOrDefault() ?? throw new Exception("Expected a single argument: <path to .dem>");

        var demo = new DemoParser();
        demo.Source1GameEvents.PlayerDeath += e =>
        {
            Console.WriteLine($"{e.Attacker?.PlayerName} [{e.Weapon}] {e.Player?.PlayerName}");
        };

        await demo.ReadAllAsync(File.OpenRead(path));

        Console.WriteLine("\nFinished!");
    }
}

See also the examples/ folder.

Benchmarks

On an M1 MacBook Pro, DemoFile.Net can read a full competitive game (just under 1 hour of game time) in 1.3 seconds. When parsing across multiple threads, using the ReadAllParallelAsync method, this drops to nearly 500 milliseconds. This includes parsing all entity data (player positions, velocities, weapon tracking, grenades, etc).

Method Mean Error StdDev Allocated
ParseDemo 1,294.6 ms 3.68 ms 2.88 ms 491.48 MB
ParseDemoParallel 540.1 ms 23.99 ms 22.44 ms 600.67 MB

Author and acknowledgements

DemoFile.Net is developed by Saul Rennison. The development of this library would not have been possible without demoparser by LaihoE and Manta by Dotabuff, the latter of which depends on the efforts of a number of people:

A modified version of Source2Gen by neverlosecc is used to statically generate the game schema classes and enums.

See ACKNOWLEDGEMENTS for license information.

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

NuGet packages (2)

Showing the top 2 NuGet packages that depend on DemoFile:

Package Downloads
DemoFile.Game.Cs

DemoFile.Game.Cs is a blazing fast Counter-Strike 2 demo parser library.

DemoFile.Game.Deadlock

DemoFile.Game.Deadlock is a blazing fast demo parser for Valve's Deadlock.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.21.1 88 9/14/2024
0.20.1 98 9/7/2024
0.19.1 72 9/7/2024
0.18.1 299 8/16/2024
0.17.1 107 8/11/2024
0.16.3 103 8/2/2024
0.16.2 53 8/1/2024
0.16.1 53 8/1/2024
0.15.1 492 6/1/2024
0.14.1 156 5/26/2024
0.13.1 193 4/30/2024
0.12.2 125 4/12/2024
0.12.1 384 2/29/2024
0.11.1 195 2/19/2024
0.10.1 90 2/17/2024
0.9.1 126 2/9/2024
0.8.1 186 12/30/2023
0.6.1 152 12/23/2023
0.5.1 349 12/19/2023
0.4.1 157 12/9/2023
0.3.6 161 11/25/2023
0.3.5 119 11/25/2023
0.3.4 118 11/25/2023
0.3.1 122 11/25/2023
0.2.9 150 11/12/2023
0.2.8 109 11/12/2023
0.2.7 119 11/12/2023
0.2.6 106 11/11/2023
0.2.5 98 11/11/2023
0.2.4 109 11/11/2023
0.2.3 104 11/8/2023
0.2.2 111 11/5/2023
0.2.1 162 10/29/2023
0.1.11 152 10/25/2023
0.1.10 138 10/22/2023
0.1.9 119 10/19/2023
0.1.7 136 10/12/2023