Spindlebink

Results 12 comments of Spindlebink

Would be nice to get this looked at: NLA tracks with a defined `Frame Start` and `End` aren't clipped at all, as far as I can tell. That's a big...

I'm giving this a shot to see how complete the implementation is, but building the grammars is reporting `Failed to execute C/C++ compiler` on `hx --grammar build`, despite my having...

Yep, somebody already made one [here](https://github.com/nawordar/tree-sitter-tcl) for that very reason.

Neither the parser nor queries are my work: I directly copied the queries from the repo into the `queries` folder, noticed the highlighting seemed to be working, and pushed without...

I don't think that's a great idea. If levels are next to each other, that wouldn't solve the original issue of needing entities to be outside of bounds, not in...

A lot of C wrapper APIs don't actually do a ton of type checking and pass things around as opaque pointers. I feel like it's safe to assume that if...

There are a few layers of a game dev oriented filesystem that I'm interested in exploring. This issue addresses one of the foundational layers, an archive file format, but in...

The tag for the decompression method is per file block, just an `enum(u8)`, which means adding decompression methods for specific endpoints only requires implementing it in the reader and adding...

Sorry, reading back I realize I wasn't very clear. I was talking about two different subjects--the metadata for each file and its byte range *is* currently stored in binary in...

Oooh, that'd be super clean. I guess in that case we'd rely on opinionated defaults (a la your comment above) for most file types (identified via extension), then maybe support...