AMO model file parsing #1
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Probably should break down the loader/parser down into smaller functions to make parsing easier. This is mainly for the PREFIX INT type syntax where INT is N object. Example
a 4
signifies 4 animations which need to be parsed.Pseudo code for what I'm getting at to parse all animations then load them. It may be more memory efficient to take a more functional approach where we do a next, load the information, repeat until n is reached.
n = parse_a; for i=0; i <= n; i++ (parse_an -> parse_k -> parse_frame ); end
Got this shit down. Still need to write the rest of it.
Did a lot of cleanup of the parsing code. Still need to finish it