Implement NbtIO and some unit tests using the HelloWorld NBT
This commit is contained in:
parent
3a3c5f5822
commit
c867982482
4 changed files with 67 additions and 0 deletions
1
lib/nbt/InvalidNBTDataException.dart
Normal file
1
lib/nbt/InvalidNBTDataException.dart
Normal file
|
@ -0,0 +1 @@
|
|||
class InvalidNbtDataException implements Exception {}
|
48
lib/nbt/NbtIo.dart
Normal file
48
lib/nbt/NbtIo.dart
Normal file
|
@ -0,0 +1,48 @@
|
|||
import 'package:libac_flutter/nbt/Stream.dart';
|
||||
import 'package:libac_flutter/nbt/Tag.dart';
|
||||
import 'package:libac_flutter/nbt/impl/CompoundTag.dart';
|
||||
|
||||
class NbtIo {
|
||||
static ByteLayer _io = ByteLayer();
|
||||
|
||||
// Handle various helper functions here!
|
||||
|
||||
static Future<void> _read(String file) async {
|
||||
_io = ByteLayer();
|
||||
|
||||
await _io.readFromFile(file);
|
||||
}
|
||||
|
||||
// This function will read the file and check if it is infact gzipped
|
||||
static Future<CompoundTag> read(String file) async {
|
||||
await _read(file);
|
||||
if (_io.readByte() == TagType.Compound.byte) {
|
||||
_io.resetPosition();
|
||||
return Tag.readNamedTag(_io) as CompoundTag;
|
||||
} else {
|
||||
// Is likely gzip compressed
|
||||
return readCompressed(file);
|
||||
}
|
||||
}
|
||||
|
||||
static Future<CompoundTag> readCompressed(String file) async {
|
||||
_io = ByteLayer();
|
||||
await _io.readFromFile(file);
|
||||
await _io.decompress();
|
||||
_io.resetPosition();
|
||||
return Tag.readNamedTag(_io) as CompoundTag;
|
||||
}
|
||||
|
||||
static Future<void> write(String file) async {
|
||||
await _io.writeToFile(file);
|
||||
}
|
||||
|
||||
static Future<void> writeCompressed(String file) async {
|
||||
await _io.compress();
|
||||
await _io.writeToFile(file);
|
||||
}
|
||||
|
||||
static ByteLayer getStream() {
|
||||
return _io;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue