2022-10-30 02:53:56 +02:00
|
|
|
|
# Resources
|
2022-06-24 07:32:32 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Data used for testing and understanding the internals of Minecraft/FOSS-VG,
|
|
|
|
|
also contains code to produce such data
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
## java/
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Programs to produce data for figuring out how to interact
|
|
|
|
|
with Java-specific things
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
- `JavaStringGenerator.java`: A simple tool that reads from stdin and outputs Java-style UTF-8 to stdout
|
2022-10-30 03:17:25 +01:00
|
|
|
|
- `netty-tests/`: Figure out how Netty operates
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
## NBT_data/
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Data used to test the NBT library
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
`bare_int64_tag`: What the name says
|
|
|
|
|
`bare_int64_tag_and_int32_tag`: What the name says
|
|
|
|
|
`simple_nbt`: A simple NBT file containing all tag types
|
|
|
|
|
`nested_compounds_and_lists`: A combination of nested compound and list tags (parser stress test)
|
|
|
|
|
`servers.dat`: Pulled from my Minecraft installation
|
|
|
|
|
`servers.dat_nbt_decoded.txt`: The same data manually decoded (This was done to get a better understanding how NBT works, might come in handy.)
|
|
|
|
|
`level.dat`: Pulled from one of my world saves (gzip-compressed)
|
|
|
|
|
`level.dat_decompressed`: The same data decompressed
|
|
|
|
|
|
|
|
|
|
|
2022-12-29 03:28:18 +01:00
|
|
|
|
## network_capture/
|
|
|
|
|
|
|
|
|
|
Network captures used to get an understanding of the protocol
|
|
|
|
|
|
|
|
|
|
`ping.pcapng`: WireShark capture of the multipayer screen server ping
|
|
|
|
|
`ping_decoded.txt`: Extracted TCP payloads from the network capture annotated with what’s happening
|
|
|
|
|
|
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
## unicode_data/
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Files with unicode data
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
- Bare ("normal") UTF-8
|
|
|
|
|
- Java format
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
## all_bytes
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Every possible 8-bit byte in ascending order
|
|
|
|
|
|
|
|
|
|
## check_endianness.cpp
|
|
|
|
|
|
|
|
|
|
A simple tool to determine the endianness of the system and write
|
|
|
|
|
the endianness header for FOSS-VG
|
|
|
|
|
|
|
|
|
|
Supports: Little Endian, Big Endian, PDP Endian, Honeywell Endian
|
2022-07-06 13:33:10 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Usage: `check_endianness > header_file`
|
2022-06-25 13:09:11 +02:00
|
|
|
|
|
2022-10-30 02:53:56 +02:00
|
|
|
|
Note that, while this tool should in theory be able to detect
|
|
|
|
|
PDP and Honeywell-316-style endianness, the FOSS-VG project itself
|
|
|
|
|
does not support these.
|
2024-03-24 10:50:30 +01:00
|
|
|
|
|
|
|
|
|
## region_files
|
|
|
|
|
|
|
|
|
|
Exactly what the name says. At this point just a random region file I grabbed
|
|
|
|
|
from Minecraft, will probably contain synthetic files for test cases in the
|
|
|
|
|
future as well.
|