Skip to content

A library that provides functions to read and write some of the EA file formats.

License

Notifications You must be signed in to change notification settings

DarkAtra/bfme2-modding-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build & Release

bfme2-modding-utils

About

This project provides functions to read and write some of EA's file formats, such as:

Usage

Add the following dependencies to your pom.xml according to your needs:

<dependency>
  <groupId>de.darkatra.bfme2</groupId>
  <artifactId>big</artifactId>
  <version>1.0.22</version> <!-- please check if this is the current version -->
</dependency>
<dependency>
  <groupId>de.darkatra.bfme2</groupId>
  <artifactId>core</artifactId>
  <version>1.0.22</version> <!-- please check if this is the current version -->
</dependency>
<dependency>
  <groupId>de.darkatra.bfme2</groupId>
  <artifactId>map</artifactId>
  <version>1.0.22</version> <!-- please check if this is the current version -->
</dependency>
<dependency>
  <groupId>de.darkatra.bfme2</groupId>
  <artifactId>refpack</artifactId>
  <version>1.0.22</version> <!-- please check if this is the current version -->
</dependency>

Build

Clone the project:

git clone [email protected]:DarkAtra/bfme2-modding-utils.git

Build the project using the following command:

mvn clean install

Thanks to the OpenSage Team for providing a reference implementation for most of these formats.

Examples