I agree, the Apogee font looks great. I don't think 20 characters is terribly strict of a limit anyway
The levels you have look amazing. I didn't even realize you were doing exact clones until you mentioned that the Walls level was part of Jumpman Junior, but now that I've looked up screenshots, I have to say you did an insanely good job at replicating them!
Thanks so much Deep Thought. I'm doing my best to recreate the levels from the original C64 versions. I have to trim a bit vertical wise -- the TI-89 LCD is
effectively about 15% shorter than the C64 for my remake.
With that said... Things have been progressing (a little slower than I would like) mostly on some behind the scenes things such as the creation of all of the level packs (8 level packs in all). I can now compile/make all my levels packs with a simple double click on a single BAT file -- you gotta love BAT files.
Here are some screenies:
Here is a snippet from my BAT file:
tprbuilder -v -DJM_BEGINNER_1_4 jm_levels.tpr
ttpack jm_levels.z89 jm_beg_1_4.tt
copy /b jm_level_marker.txt + jm_beg_1_4.txt + jm_pad_4.bin + jm_beg_1_4.tt jm_beg_1_4.bin
tovar -89 jml jm_beg_1_4.bin jmb1
Line 1:
tprbuilder -DJM_BEGINNER_1_4 jm_levels.tprThis line uses a command line tool called tprbuilder from the GCC4TI & TIGGC IDEs to build my project called jm_levels.tpr (tpr is the file extension for GCC4TI/TIGCC project files) The -D option passes in a macro called JM_BEGINNER_1_4 (essentially the same thing as #define JM_BEGINNER_1_4 in C source code). This macro is used by the C preprocessor; and it allows me to specify at compile time which C code (in this case, level data) will and will not be included in the output file. It outputs a file named jm_levels.z89.
Line 2:
ttpack jm_levels.z89 jm_beg_1_4.ttThis line uses a tool called TTPack v1.03 in the TIGCC Tools Suite v1.31 by Thomas Nussbaumer to compress the contents of jm_levels.z89 into a file called jm_beg_1_4.tt.
Line 3:
copy /b jm_level_marker.txt + jm_beg_1_4.txt + jm_pad_4.bin + jm_beg_1_4.tt jm_beg_1_4.binThis line basically uses the DOS copy command to concatenate 4 files in binary mode. Jm_level_marker.txt contains a magic number to mark the location of the long name of the level pack. The name of the level pack is contained in jm_beg_1_4.txt. Jm_pad_4.bin contains a 4 byte padding of zeroes. This simply provides separation of the level pack name and the compressed level pack contents (it also gives me a NULL just in case the level pack name is not NULL terminated). And jm_beg_1_4.tt contains the compressed level pack from the previous line. This is all copied/concatenated into a a file called jm_beg_1_4.bin.
Line 4:
tovar -89 jml jm_beg_1_4.bin jmb1This line uses a utility called "tovar" (aka TTBin2OTH) also in the TIGCC Tools Suite by Thomas Nussbaumer to convert the binary file output from the previous line to a variable (file) that the calculator will understand. The output file will be named jmb1.89y. On the calc, the file will have the name jmb1.jml.
All of that to generate a single level pack file. I have to repeat all 4 lines for every level pack.
I hope these details will help someone in the future.