Using the Blitz Preprocessor
Basic-style programming languages lack features that more advanced programmers tend to take for granted. Type checking and explicit variable declarations are two examples. We have spent many hours debugging code only to find that an error was caused by a simple spelling error. This is highly inefficient. The simplest way to get around such inefficiencies is to use the Unofficial BlitzBasic Preprocessor. A link to the Preprocessor's website is available on the links page. The Preprocessor allows us to eliminate simple bugs easily. It also has abilities similar to C's #ifndef. We made use of a couple of features of the Preprocessor. Other features, such as preprocessor macros and type/stream commands, are available but were not utilized in our program. Installation of the Preprocessor is extremely simple, as long as the instructions provided on the website are followed to the letter. Here are the features we used in our source code: Profiling Explicit Variable Declarations C-Style Defines |
© 2004 Mindless Thinking Games