The editor

The editor

The editor is the area where you enter and modify your BASIC program.

editor

BasinC's editor mimics the behaviour of the 128K Spectrum, with various improvements. Keys on the PC keyboard are mapped to their Spectrum equivalents, so you don't need to remember the Spectrum keyboard layout. You can also resize the editor window, making it much wider than the original 32 characters.

Program lines are automatically arranged in numerical order, no matter where they are entered.

Keyboard and mouse operations

BasinC supports many standard navigation keys.

As in a regular text processor, you can use the mouse and/or shift keys to make selections and cut/copy them to the windows clipboard. They will be stored in .bas format which can be pasted into any text editor. Pasting is a little different. A single line of text pasted in will be sent directly to the editor, but more than one line will be sent to the Add Code Window - where you can view the lines and edit them as you wish. Multiple line pastes must each have a line number, and contain no syntax errors. If an error occurs when pasting the lines in, the offending line will be ignored and will not appear in your program. You can see the status of any errors in pasting by viewing the Log Window. This facility allows you to copy a BASIC program from say, a web page or text document, and paste it directly into BasinC.

Right-clicking in the editor produces a context menu with commands relating to the item that was clicked.

How your program is formatted

The darker area at the left-hand side is the gutter, where line numbers are displayed. To aid debugging and enhance readability, program lines that contain more than one statement are split on the : separator character, so that each statement begins on a new line of the display.

Unlike the original 128K editor, BasinC does not wrap long statements across multiple display lines. Instead, a horizontal scrollbar is available. When you edit a long program line, the screen automatically scrolls to follow the edit cursor.

The original Spectrum font is used to display your program. However, if you have modified the CHARS system variable to point to another font in memory, that font is used for string literals only. (A string literal is a piece of program text enclosed in quotation marks, such as "Welcome").

Text vs. Tokens

Because the original Spectrum editor handled all of it's program code display using tokens, some differences will be immediately apparent to users that employ some of the more advanced programming techniques in BasinC.

One of these is the usage of tokens in REM statements which hold machine code stubs. This trick allowed you to store individual bytes in sequence, which would not be executed by the BASIC interpreter, but will not be corrupted by the editor. BasinC allows these sequences of bytes, but displays them differently to the original Spectrum editor. Whereas the bytes would be expanded to their character-set equivalents (including the colour control codes which would make your listing very hard to work with), BasinC alleviates this problem by using special characters which represent the Hexadecimal versions of the bytes displayed.

This can have repercussions, as you will see in the next discussion,

How BasinC handles program lines

Program lines, as mentioned earlier, are stored in the editor in logical order, sorted by their line number. This makes the program easier to follow for the programmer.

BasinC has a number of features to help you with your programming:

Editor features