Maple2.File.Parser.Tadeucci
2.2.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Maple2.File.Parser.Tadeucci --version 2.2.0
NuGet\Install-Package Maple2.File.Parser.Tadeucci -Version 2.2.0
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="Maple2.File.Parser.Tadeucci" Version="2.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Maple2.File.Parser.Tadeucci" Version="2.2.0" />
<PackageReference Include="Maple2.File.Parser.Tadeucci" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Maple2.File.Parser.Tadeucci --version 2.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Maple2.File.Parser.Tadeucci, 2.2.0"
#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.
#addin nuget:?package=Maple2.File.Parser.Tadeucci&version=2.2.0
#tool nuget:?package=Maple2.File.Parser.Tadeucci&version=2.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Maple2.File
Strongly typed MapleStory2 m2d file parsing
xblock Parsing Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
var parser = new XBlockParser(reader, index);
parser.Include(typeof(ISpawnPoint));
parser.Include(typeof(IMS2TriggerObject));
parser.Include(typeof(IPortal));
...
var results = new Dictionary<string, MapEntityMetadata>();
parser.Parse((xblock, entities) => {
var metadata = new MapEntityMetadata();
foreach (IMapEntity entity in entities) {
switch (entity) {
case ISpawnPointPC spawnPoint:
...
case ISpawnPointNPC npcSpawnPoint:
...
default:
...
}
}
results[xblock] = metadata;
});
xblock Parallel Parsing Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
var parser = new XBlockParser(reader, index);
var results = new Dictionary<string, MapEntityMetadata>();
parser.Parallel().ForAll(map => {
var metadata = new MapEntityMetadata();
foreach (IMapEntity entity in map.entities) {
switch (entity) {
case ISpawnPointPC spawnPoint:
...
case ISpawnPointNPC npcSpawnPoint:
...
default:
...
}
}
results[map.xblock] = metadata;
});
xml Parsing Example:
using var reader = new M2dReader(XML_PATH);
// LOCALE: "TW", "TH", "NA", "CN", "JP", "KR"
// ENV: "Dev", "Qa", "DevStage", "Stage", "Live"
Filter.Load(reader, LOCALE, ENV);
var parser = new ItemParser(reader);
foreach ((int id, string name, ItemData data) in parser.Parse()) {
// Extract fields from ItemData that are needed.
}
xblock CliExplorer Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
index.CliExplorer();
Product | Versions 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. 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. |
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 |
---|---|---|
2.3.2 | 856 | 6/8/2025 |
2.3.1 | 136 | 6/5/2025 |
2.3.0 | 133 | 6/2/2025 |
2.2.9 | 1,529 | 5/6/2025 |
2.2.8 | 166 | 4/22/2025 |
2.2.7 | 694 | 4/10/2025 |
2.2.6 | 192 | 4/7/2025 |
2.2.5 | 215 | 3/6/2025 |
2.2.4 | 485 | 2/20/2025 |
2.2.3 | 187 | 2/9/2025 |
2.2.2 | 122 | 2/7/2025 |
2.2.1 | 123 | 2/7/2025 |
2.2.0 | 218 | 11/18/2024 |
2.1.33 | 148 | 10/18/2024 |
2.1.32 | 207 | 10/12/2024 |
2.1.31 | 114 | 9/23/2024 |
2.1.30 | 382 | 9/18/2024 |
2.1.29 | 130 | 9/16/2024 |
2.1.28 | 163 | 9/16/2024 |
2.1.27 | 199 | 9/5/2024 |
2.1.26 | 183 | 8/11/2024 |
2.1.25 | 138 | 8/9/2024 |
2.1.24 | 120 | 7/24/2024 |
2.1.23 | 130 | 7/19/2024 |
2.1.22 | 313 | 6/28/2024 |
2.1.21 | 129 | 6/24/2024 |
2.1.20 | 198 | 6/17/2024 |
2.1.19 | 146 | 6/17/2024 |
2.1.18 | 183 | 6/10/2024 |
2.1.17 | 129 | 6/7/2024 |
2.1.16 | 200 | 6/5/2024 |
2.1.15 | 224 | 5/29/2024 |
2.1.14 | 167 | 5/27/2024 |
2.1.13 | 122 | 5/27/2024 |
2.1.12 | 124 | 5/27/2024 |
2.1.11 | 133 | 5/23/2024 |
2.1.10 | 144 | 5/23/2024 |
2.1.9 | 246 | 5/21/2024 |
2.1.8 | 205 | 5/17/2024 |
2.1.7 | 139 | 5/10/2024 |
2.1.6 | 258 | 5/8/2024 |
2.1.5 | 168 | 5/6/2024 |
2.1.4 | 169 | 5/5/2024 |
2.1.3 | 168 | 5/3/2024 |
2.1.2 | 142 | 5/1/2024 |
2.1.1 | 164 | 4/29/2024 |
2.1.0 | 137 | 4/28/2024 |