io.github.spair:dmm-io

I/O library for dmm files of default and TGM format.

License

License

GroupId

GroupId

io.github.spair
ArtifactId

ArtifactId

dmm-io
Last Version

Last Version

1.6
Release Date

Release Date

Type

Type

jar
Description

Description

io.github.spair:dmm-io
I/O library for dmm files of default and TGM format.
Project URL

Project URL

https://spair.github.io/dmm-io
Source Code Management

Source Code Management

https://github.com/SpaiR/dmm-io/tree/master

Download dmm-io

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.spair/dmm-io/ -->
<dependency>
    <groupId>io.github.spair</groupId>
    <artifactId>dmm-io</artifactId>
    <version>1.6</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.spair/dmm-io/
implementation 'io.github.spair:dmm-io:1.6'
// https://jarcasting.com/artifacts/io.github.spair/dmm-io/
implementation ("io.github.spair:dmm-io:1.6")
'io.github.spair:dmm-io:jar:1.6'
<dependency org="io.github.spair" name="dmm-io" rev="1.6">
  <artifact name="dmm-io" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.spair', module='dmm-io', version='1.6')
)
libraryDependencies += "io.github.spair" % "dmm-io" % "1.6"
[io.github.spair/dmm-io "1.6"]

Dependencies

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.18.2

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

Build Status Javadocs License

Dmm I/O

About

I/O library for dmm files of default and TGM format.

Installation

Maven Central JCenter

Library deployed to Maven Central and JCenter repositories.

pom.xml

<dependency>
    <groupId>io.github.spair</groupId>
    <artifactId>dmm-io</artifactId>
    <version>${last.version}</version>
</dependency>

build.gradle:

compile 'io.github.spair:dmm-io:${last.version}'

How To Use

File could be parsed like: DmmData data = DmmReader.readMap(mapFile) The map itself could be in standard BYOND format as well as in TGM, reader will handle everything.

To write DmmData to file use DmmWriter class like that:

DmmWriter.saveAsByond(fileToSave, dmmData)  // to save in BYOND format
DmmWriter.saveAsTGM(fileToSave, dmmData)    // to save in TGM format

If fileToSave doesn't exist it will be created.

More could be found in JavaDoc.

Credits

Some implementation ideas were taken from JMerge repository. Big thanks to @atlantiscze for his work.

Versions

Version
1.6
1.5
1.4
1.3
1.2
1.1
1.0