Wurm Atlas is a library designed to read and export Wurm Unlimited map files.
Features
- Fast & Efficient streams.
- Synchronous & Asynchronous support.
- Custom tile color support.
- Fully-featured example applications for both Dart & Flutter.
Installation
Flutter
Add via flutter pub add wurm_atlas
Dart
Add via dart pub add wurm_atlas
For both, you should see a new line in your pubspec.yaml
file like so:
dependencies:
wurm_atlas: any
Where any
would be the latest version.
Usage
import 'package:wurm_atlas/wurm_atlas.dart';
import 'package:image/image.dart' as img;
void main() {
var layer = Layer(LayerType.top, 'map_folder'); // The LayerType tells it which layer to open
layer.openSync(); // Required! Don't forget to close with `closeSync` or `close`!
layer.validateSync(); // Optional, this is automatically called internally.
// The below lines generates image data in BGRA format, stored in a ByteBuffer.
// Using the third-party image library, we can easily dump this to a file.
var image = img.Image.fromBytes(
width: layer.size,
height: layer.size,
bytes: layer.imageSync(0, 0, layer.size, layer.size, showWater: true),
numChannels: 4,
order: img.ChannelOrder.bgra);
layer.closeSync();
var bytes = img.encodePng(image);
File("output.png").writeAsBytesSync(bytes);
}
Libraries
- wurm_atlas
- Wurm Atlas is a Dart library for reading and manipulating Wurm Unlimited maps.