freewig 0.0.1-dev copy "freewig: ^0.0.1-dev" to clipboard
freewig: ^0.0.1-dev copied to clipboard

outdated

The library freewig will help to use Wherigo caches in Dart or Flutter

The library freewig will help to use Wherigo caches in Dart or Flutter

Usage #

A simple usage example:

import 'dart:io';

import 'package:freewig/freewig.dart';

void main(List<String> arguments) async {
  var file = File(arguments[0]);
  var cartridge = await parseFile(file);

  var export = Directory("export");
  var exists = await export.exists();
  if (exists) {
    await export.delete(recursive: true);
  }
  await export.create(recursive: true);

  var contents = "";
  contents += "Name: ${cartridge.cartridgeName}\n";
  contents += "Description: ${cartridge.cartridgeDesc}\n";
  contents += "StartLocation: ${cartridge.startLocationDesc}\n";
  contents += "Longitude: ${cartridge.longitude}\n";
  contents += "Latitude: ${cartridge.latitude}\n";
  contents += "Player: ${cartridge.playerName}\n";
  contents += "Author: ${cartridge.author}\n";
  contents += "Type: ${cartridge.typeOfCartridge}\n";
  contents += "Device: ${cartridge.recommendDevice}\n";
  contents += "Version: ${cartridge.version}\n";
  contents += "Catridge-Id: ${cartridge.cartridgeGuid}\n";
  contents += "\n";
  contents += "Completion-Code: ${cartridge.completionCode}\n";
  contents += "\n";
  contents += "ItemCount: ${cartridge.objects.length}\n";
  contents += "\n";
  var infoFile = File("${export.path}/cartridge_info.txt");
  await infoFile.writeAsString(contents);

  cartridge.objects.forEach((index, data) async {
    var objectFile = File("${export.path}/object_$index.${data.objectType}");
    await objectFile.writeAsBytes(data.data);
  });
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

0
likes
0
pub points
0%
popularity

Publisher

verified publishermars3142.dev

The library freewig will help to use Wherigo caches in Dart or Flutter

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

built_collection, built_value, meta, path

More

Packages that depend on freewig