1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
|
<!--
PC-BASIC documentation
Copyright (c) 2014-2022 Rob Hagemans
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
http://creativecommons.org/licenses/by-sa/4.0/legalcode
-->
<article>
<h2 id="using">User's guide</h2>
<section>
<h3 id="workenv">The working environment</h3>
<p>
The first thing you'll see when starting PC-BASIC is the working environment.
Like GW-BASIC, but unlike practically all modern compilers and interpreters,
PC-BASIC's working environment serves both as a development environment and as a
canvas on which to execute BASIC commands directly. With a few exceptions,
practically all commands that can be run in the working environment can be used
in a program, and vice versa.
</p>
<p>
The default PC-BASIC screen has 25 rows and 80 columns. The 25th row is used
by PC-BASIC to show keyboard shortcuts,
which means you can't use it to type on. In some video modes, there are only 40
or 20 columns.
</p>
<p>
<em>Logical lines</em> exceed the width of the physical row: if you keep
typing beyond the screen width, the text will
wrap to the next line but PC-BASIC will still consider it part of the same line.
A logical line can be at most 255 characters long; if you type more than 255
characters, it will ignore the remainder. A line can also be wrapped by a
line-feed, entered with <kbd>Ctrl</kbd>+<kbd>Enter</kbd>.
</p>
<p>
If you press <kbd>Enter</kbd>, PC-BASIC will attempt to execute the
logical line on which the cursor is placed as a command. When the command is executed correctly,
PC-BASIC will display the prompt <samp>Ok</samp>. If there is an error, it will
display an error message followed by <samp>Ok</samp>.
If the line starts with a number, it will be stored as a program line. No prompt is displayed.
</p>
<section>
<h4 id="special-keys">Special keys</h4>
<p>The following keys have a special effect in the working environment:</p>
<div class="scrollable">
<table>
<tr>
<td><kbd>↑<!--up--></kbd> or <kbd>Ctrl</kbd>+<kbd>6</kbd></td>
<td>Move the cursor up, except at the top row.</td>
</tr>
<tr>
<td><kbd>↓<!--down--></kbd> or <kbd>Ctrl</kbd>+<kbd>-</kbd></td>
<td>Move the cursor down, except at row 24.</td>
</tr>
<tr>
<td><kbd>←<!--left--></kbd> or <kbd>Ctrl</kbd>+<kbd>]</kbd></td>
<td>Move the cursor left. The left edge of the screen wraps around, except at the top row.</td>
</tr>
<tr>
<td><kbd>→<!--right--></kbd> or <kbd>Ctrl</kbd>+<kbd>/</kbd></td>
<td>Move the cursor right. The right edge of the screen wraps around, except at row 24.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>←<!--left--></kbd> or <kbd>Ctrl</kbd>+<kbd>B</kbd></td>
<td>
Move to the first letter of the previous word. Words consist of
letters <code>A—Z</code> and figures <code>0—9</code>.
</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>→<!--right--></kbd> or <kbd>Ctrl</kbd>+<kbd>F</kbd></td>
<td>Move to the first letter of the next word.</td>
</tr>
<tr>
<td><kbd>Tab</kbd> or <kbd>Ctrl</kbd>+<kbd>I</kbd></td>
<td>Move the cursor to the next tab stop. Tab stops are 8 columns wide.</td>
</tr>
<tr>
<td><kbd>Backspace</kbd> or <kbd>Ctrl</kbd>+<kbd>H</kbd></td>
<td>
Delete the character left of the cursor, shift all further characters on the logical line one
position to the left and change the attributes of those characters to the current attribute. At the
left edge of the screen, this does the same as <kbd>Del</kbd>.
</td>
</tr>
<tr>
<td>
<kbd>Del</kbd> or <kbd>Ctrl</kbd>+<kbd>Backspace</kbd>
</td>
<td>
Delete the character at the cursor and shift all
further characters one position to the left,
changing attributes to current.
</td>
</tr>
<tr>
<td><kbd>Esc</kbd> or <kbd>Ctrl</kbd>+<kbd>[</kbd></td>
<td>Delete the current logical line.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>End</kbd> or <kbd>Ctrl</kbd>+<kbd>E</kbd></td>
<td>
Delete all characters from the cursor to the end
of the logical line.
</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>Break</kbd> or <kbd>Ctrl</kbd>+<kbd>C</kbd> or <kbd>Ctrl</kbd>+<kbd>Scroll Lock</kbd></td>
<td>Jump to the first column of the next line, without executing or storing the line under the cursor.</td>
</tr>
<tr>
<td><kbd>Enter</kbd> or <kbd>Ctrl</kbd>+<kbd>M</kbd></td>
<td>
Execute or store the current logical line. The
complete line on the screen is considered part of
the command, even if you did not type it.
A line starting with a number is stored as a
program line.
</td>
</tr>
<tr>
<td><kbd>End</kbd> or <kbd>Ctrl</kbd>+<kbd>N</kbd></td>
<td>
Move the cursor to the first position after the
end of the logical line.
</td>
</tr>
<tr>
<td><kbd>Home</kbd> or <kbd>Ctrl</kbd>+<kbd>K</kbd></td>
<td>Move the cursor to the top left of the screen.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>Home</kbd> or <kbd>Ctrl</kbd>+<kbd>L</kbd></td>
<td>
Clear the screen and move the cursor to the top
left of the screen.
</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>Enter</kbd> or <kbd>Ctrl</kbd>+<kbd>J</kbd></td>
<td>
Move to the first column of the next line,
connecting the two lines into one logical line.
</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>G</kbd></td>
<td>Beep the speaker.</td>
</tr>
<tr>
<td><kbd>Pause</kbd> or <kbd>Ctrl</kbd>+<kbd>Num Lock</kbd></td>
<td>Pause. Press another key to resume. The latter key press will not be detected by BASIC.</td>
</tr>
<tr>
<td><kbd>Ctrl</kbd>+<kbd>Print Screen</kbd></td>
<td>Toggle echoing screen output to the printer (or other device attached to <code>LPT1:</code>).</td>
</tr>
<tr>
<td><kbd>Shift</kbd>+<kbd>Print Screen</kbd></td>
<td>Print the screen.</td>
</tr>
<tr>
<td><kbd>Ins</kbd> or <kbd>Ctrl</kbd>+<kbd>R</kbd></td>
<td>
Toggle <em>insert mode</em>. In insert mode, characters
are inserted rather than overwritten at the
current location. If insertion causes the line to
extend the physical screen width, the logical
line extends onto the next line. Arrow keys exit
insert mode.
</td>
</tr>
</table>
</div>
<p>
When a program is started, the commands in the program are followed until the
program quits and returns to direct mode or until user input is required.
When a program is running, a few keys have immediate effect:
</p>
<div class="scrollable">
<table>
<tr>
<td>
<kbd>Pause</kbd> or <kbd>Ctrl</kbd>+<kbd>Num Lock</kbd>
</td>
<td>
Pause execution. Press another key to resume.
</td>
</tr>
<tr>
<td>
<kbd>Ctrl</kbd>+<kbd>Break</kbd>
or <kbd>Ctrl</kbd>+<kbd>Scroll Lock</kbd>
</td>
<td>
Stop execution and return to direct mode. A <samp>Break</samp> message is printed.
</td>
</tr>
<tr>
<td>
<kbd>Ctrl</kbd>+<kbd>C</kbd>
</td>
<td>
If <code><a href="#--ctrl-c-break">ctrl-c-break</a>=True</code>: stop execution and return to direct mode.
A <samp>Break</samp> message is printed.
</td>
</tr>
</table>
</div>
<p>
If user input is required by the statements <code>INPUT</code>, <code>LINE INPUT</code>, or <code>RANDOMIZE</code>,
most keys have the same effect as in direct mode. The following keys have a different effect:
</p>
<div class="scrollable">
<table>
<tr>
<td>
<kbd>Ctrl</kbd>+<kbd>Break</kbd> or <kbd>Ctrl</kbd>+<kbd>C</kbd>
or <kbd>Ctrl</kbd>+<kbd>Scroll Lock</kbd>
</td>
<td>
Stop execution and return to direct mode.
A <samp>Break</samp> message is printed.
</td>
</tr>
<tr>
<td><kbd>Enter</kbd></td>
<td>
Finish input and return to the previous mode.
</td>
</tr>
</table>
</div>
</section>
<hr />
<section>
<h4 id="shortcuts">Keyboard shortcuts</h4>
<p>
The function keys and the alt key can be used as keyboard shortcuts for some
keywords.
The default values for the function keys are:
</p>
<div class="scrollable">
<table>
<tr>
<td><kbd>F1</kbd></td>
<td><code><a href="#LIST">LIST</a></code></td>
</tr>
<tr>
<td><kbd>F2</kbd></td>
<td><code><a href="#RUN">RUN</a></code><kbd>Enter</kbd></td>
</tr>
<tr>
<td><kbd>F3</kbd></td>
<td><code><a href="#LOAD">LOAD</a>"</code></td>
</tr>
<tr>
<td><kbd>F4</kbd></td>
<td><code><a href="#SAVE">SAVE</a>"</code></td>
</tr>
<tr>
<td><kbd>F5</kbd></td>
<td><code><a href="#CONT">CONT</a></code><kbd>Enter</kbd></td>
</tr>
<tr>
<td><kbd>F6</kbd></td>
<td><code>,"LPT1:"</code><kbd>Enter</kbd></td>
</tr>
<tr>
<td><kbd>F7</kbd></td>
<td><code><a href="#TRON">TRON</a></code><kbd>Enter</kbd></td>
</tr>
<tr>
<td><kbd>F8</kbd></td>
<td><code><a href="#TRON">TROFF</a></code><kbd>Enter</kbd></td>
</tr>
<tr>
<td><kbd>F9</kbd></td>
<td><code><a href="#KEY-list">KEY</a></code><kbd>Space</kbd></td>
</tr>
<tr>
<td><kbd>F10</kbd></td>
<td><code><a href="SCREEN-statement">SCREEN</a> 0,0,0</code><kbd>Enter</kbd></td>
</tr>
</table>
</div>
<p>
The function key shortcuts can be redefined with the <code>KEY</code> statement.
The shortcuts are displayed at the bottom of the screen.
</p>
<p>
The following keywords can be entered
with <kbd>Alt</kbd>+first letter. The <kbd>Alt</kbd> shortcuts cannot be redefined.
</p>
<ul class="compact">
<li><code><a href="#AUTO">AUTO</a></code></li>
<li><code><a href="#BSAVE">BSAVE</a></code></li>
<li><code><a href="#COLOR">COLOR</a></code></li>
<li><code><a href="#DELETE">DELETE</a></code></li>
<li><code><a href="#ELSE">ELSE</a></code></li>
<li><code><a href="#FOR">FOR</a></code></li>
<li><code><a href="#GOTO">GOTO</a></code></li>
<li><code><a href="#HEX$">HEX$</a></code></li>
<li><code><a href="#INPUT">INPUT</a></code></li>
<li><code><a href="#KEY-list">KEY</a></code></li>
<li><code><a href="#LOCATE">LOCATE</a></code></li>
<li><code><a href="#MOTOR">MOTOR</a></code></li>
<li><code><a href="#NEXT">NEXT</a></code></li>
<li><code><a href="#OPEN">OPEN</a></code></li>
<li><code><a href="#PRINT">PRINT</a></code></li>
<li><code><a href="#RUN">RUN</a></code></li>
<li><code><a href="#SCREEN">SCREEN</a></code></li>
<li><code><a href="#THEN">THEN</a></code></li>
<li><code><a href="#PRINT">USING</a></code></li>
<li><code><a href="#VAL">VAL</a></code></li>
<li><code><a href="#WIDTH">WIDTH</a></code></li>
<li><code><a href="#XOR">XOR</a></code></li>
</ul>
</section>
<hr />
<section>
<h4 id="alternative-keys">Alternative keys</h4>
<p>
In PC-BASIC, the <kbd>F12</kbd> key can be used to enter special keys that are not
present on some keyboards.
</p>
<table>
<tr>
<td><kbd>F12</kbd>+<kbd>B</kbd></td>
<td><kbd>Ctrl</kbd>+<kbd>Break</kbd></td>
</tr>
<tr>
<td><kbd>F12</kbd>+<kbd>P</kbd></td>
<td><kbd>Pause</kbd></td>
</tr>
<tr>
<td><kbd>F12</kbd>+<kbd>C</kbd></td>
<td><kbd>Caps Lock</kbd></td>
</tr>
<tr>
<td><kbd>F12</kbd>+<kbd>N</kbd></td>
<td><kbd>Num Lock</kbd></td>
</tr>
<tr>
<td><kbd>F12</kbd>+<kbd>S</kbd></td>
<td><kbd>Scroll Lock</kbd></td>
</tr>
<tr>
<td><kbd>F12</kbd>+<kbd>H</kbd></td>
<td><kbd>Print Screen</kbd></td>
</tr>
</table>
<p>
The <kbd>F12</kbd> key can also be used in combination with the regular number
keys and arrow keys to enter numbers from the numeric keypad.
The <kbd>F12</kbd> combinations are not present in GW-BASIC.
</p>
<p>
Furthermore, as in GW-BASIC, the <kbd>Alt</kbd> key can be used to enter characters by their <a href="#cp437">code points</a> (ASCII values).
This is done by pressing the <kbd>Alt</kbd> key and typing the code point as a decimal value
on the numeric keypad, then releasing the <kbd>Alt</kbd> key.
</p>
</section>
<hr />
<section>
<h4 id="clipboard-operations">Clipboard operations</h4>
<p>
Unlike in GW-BASIC, you can copy and paste text to the clipboard.
This can be done with the mouse or with the <kbd>F11</kbd> key.
</p>
<p>
Operating the clipboard with the mouse works in the style of X11:
Left button is select and copy; middle button
is paste.
</p>
<p>
The following keyboard combinations also operate the clipboard:
</p>
<div class="scrollable">
<table>
<tr>
<td>
<kbd>F11</kbd>+<kbd>↑<!--up--></kbd><kbd>↓<!--down--></kbd><kbd>←<!--left--></kbd><kbd>→<!--right--></kbd>
</td>
<td>Select a screen region.</td>
</tr>
<tr>
<td><kbd>F11</kbd>+<kbd>A</kbd></td>
<td>Select all.</td>
</tr>
<tr>
<td><kbd>F11</kbd>+<kbd>C</kbd></td>
<td>Copy to clipboard.</td>
</tr>
<tr>
<td><kbd>F11</kbd>+<kbd>V</kbd></td>
<td>Paste from clipboard.</td>
</tr>
</table>
</div>
</section>
<hr />
<section>
<h4 id="emulator-keys">Emulator control keys</h4>
<p>
In PC-BASIC, <kbd>F11</kbd>+<kbd>F</kbd> toggles fullscreen mode.
</p>
</section>
<section>
<h4 id="system-keys">Compatibility</h4>
<p>
Some key combinations may have a different effect than described above,
depending on the operating system and the choice of interface to use with PC-BASIC.
</p>
<ul>
<li>
Certain key combinations will be interpreted by the operating system or
window manager and cause special actions. For example, on most systems,
<kbd>Alt</kbd>+<kbd>F4</kbd> will terminate PC-BASIC unless
the <a href="#--prevent-close"><code>prevent-close</code></a> option is set; <kbd>F1</kbd>
may open your operating system's help system. It may be possible to avoid
some of these effects by using the graphical interface in full-screen mode.
</li>
<li>
In the command-line interface on Windows, <kbd>Ctrl</kbd>+<kbd>C</kbd>
terminates PC-BASIC.
</li>
<li>
In the command-line interface on Linux and Mac, <kbd>Ctrl</kbd>+<kbd>D</kbd>
terminates PC-BASIC.
</li>
</ul>
</section>
<hr />
</section>
<section>
<h3 id="programs">Programs and files</h3>
<p>
PC-BASIC can hold one BASIC program at a time in memory. To enter a program
line, start with a <em>line number</em> and enter BASIC commands after that.
The maximum length of a program line is 255 characters, including the line
number and any spaces. The program line will not be immediately executed, but
stored in the program. Program lines are sorted by line number, so that line
<code>10</code> is executed before line <code>20</code>. All program
lines must have a line number. Line numbers range from <code>0</code> to <code>65535</code> inclusive.
It is not possible to enter a line number higher than <code>65529</code>, but these can
exist in loaded programs.
Within one program line, statements are separated by colons <code>:</code>.
</p>
<p>
To run the program, type the command <code>RUN</code>. PC-BASIC will now
execute all program lines in order inside the working environment. You cannot
move the cursor around or enter commands while the program is running. If and
when the program finishes, it will return control of the working environment to
you. You can interrupt a program at any time by using one of the key
combinations <kbd>Ctrl</kbd>+<kbd>Break</kbd> or <kbd>Ctrl</kbd>+<kbd>Scroll
Lock</kbd>. The program will stop immediately, print a <samp>Break</samp>
message and return control to you.
</p>
<p>
In GW-BASIC, you can <em>not</em> use <kbd>Ctrl</kbd>+<kbd>C</kbd> to interrupt a running program.
However, many modern keyboards do not have a <kbd>Break</kbd> or
<kbd>Scroll Lock</kbd> key, which would make it impossible to interrupt
a program that does not exit. Therefore, by default, PC-BASIC treats <kbd>Ctrl</kbd>+<kbd>C</kbd>
as if it were <kbd>Ctrl</kbd>+<kbd>Break</kbd>. Set the <a href="#settings">option</a> <code><a href="#--ctrl-c-break">ctrl-c-break</a>=False</code>
if you prefer the GW-BASIC style behaviour. When using the text-based or command-line interface,
this option is ignored.
</p>
<p>
A program can be stored on a drive by using the <code><a href="#SAVE">SAVE</a></code> command, in one of three ways:
</p>
<ol>
<li>Plain text, readable by any text editor: <code>SAVE "MYPROG",A</code></li>
<li>Tokenised, taking up less storage space: <code>SAVE "MYPROG"</code></li>
<li>Protected, which is an encrypted format: <code>SAVE "MYPROG",P</code></li>
</ol>
<p>
In all three cases, the program will be written to the current working
directory with the name <code>MYPROG.BAS</code>.
</p>
<p>
PC-BASIC can read and write Protected files created by GW-BASIC. Unlike
GW-BASIC, however, it does not disable accessing the unencrypted contents of the
file. The encryption used by GW-BASIC has been broken many decades ago, so
Protected mode offered little protection anyway; disallowing access is a small
security hazard as it would allow someone to send you a program that you cannot
inspect before running it. However, it is possible to disable access of
protected files by enabling the option <code><a href="#--hide-protects">hide-protected</a></code>. </p> <p>You
can read a program file into memory with <code><a href="#LOAD">LOAD</a> "MYPROG"</code>. This will
erase the program currently in memory and replace it with the one read from the
current working directory. To access files in a different directory, specify a path from the current
directory. The path specification follows DOS conventions. The only valid path
separator is the backslash <code>\</code>. For example, <code>LOAD "PROGRAMS\MYPROG"</code>.
</p>
<p>
You can load or run a program immediately on starting PC-BASIC by using the
<code><a href="#--load">load</a></code> or <code><a href="#--run">run</a></code> options.
For example,
</p>
<code class="block">
<b>pcbasic --run=MYPROG.BAS</b>
</code>
<p>
The arguments to these options can be provided
as PC-BASIC paths or as paths in the standard form for your operating
system.
</p>
<p>
PC-BASIC can be used to convert between the three program formats: either by loading the program and saving
in your desired format, or from the command line using the <code><a href="#--convert">convert</a></code> option. To convert a
tokenised or protected file to plain text you could use, for example:
</p>
<code class="block">
<b>pcbasic --convert=A PROGRAMP.BAS PROGRAMA.BAS</b>
</code>
<section>
<h4 id="mounting">Accessing your drives</h4>
<p>
PC-BASIC emulates DOS disk devices, which are referred to by drive letters such as <code>Z:</code>.
One of the drive letters is the <em>current device</em>.
</p>
<p>
On <strong>Windows</strong>:
</p>
<ul>
<li>
By default, PC-BASIC disk devices will agree with Windows drive letters at the
start of the PC-BASIC session.
</li>
<li>
If PC-BASIC is started from the start menu shortcut, the current device will be
your <i>Documents</i> folder (or <i>My Documents</i> on some versions of Windows).
You can change this location by setting the shortcut's <i>Start In</i> folder.
</li>
<li>
If PC-BASIC is started from the command prompt, the current device will be set to
the current working directory of the command prompt.
</li>
<li>
If PC-BASIC's current device or <i>Start In</i> folder is changed to a system folder such as <code>C:\Program Files\PC-BASIC</code>,
Windows will move files written there to <code>%LocalAppData%\VirtualStore</code> instead.
This is best avoided.
</li>
<li>
Note that <em>PC-BASIC's DOS disk devices are not the same thing as Windows drive letters</em>.
The device <code>C:</code> on PC-BASIC is <em>not</em> always your Windows <code>C:</code> drive.
By default, Windows drive letters are mapped to PC-BASIC devices at the start
of the PC-BASIC session. However, if you use the <code><a href="#--mount">mount</a></code> option;
or if Windows drive letters change while PC-BASIC is running (through e.g. <code>net use</code> or
<i>Map Network Drive</i> operations), they will no longer agree.
</li>
</ul>
<p>
On <strong>other systems</strong>:
</p>
<ul>
<li>
By default, <code>Z:</code> will point to the current working directory from where PC-BASIC was started.
It will be the current device.
</li>
<li>
If started from a menu or app package, this will usually be your home directory <code>˜</code>.
</li>
</ul>
<p>
This current device is where files will be saved to and loaded from in BASIC if you do not specify another device.
You can change the current device using the <code><a href="#--current-device">current-device</a></code>
option in the <a href="#settings">configuration file or on the command prompt</a>.
</p>
<p>
You can map drives and other file system locations as PC-BASIC devices by
using the <code><a href="#--mount">mount</a></code> option. For example,
on Windows, the option
<code class="block">
<b>mount=A:C:\Users\Me\BasicFloppy</b>
</code>
will make the folder <code>C:\Users\Me\BasicFloppy</code> available as PC-BASIC's <code>A:</code> device.
On other platforms, an example mount option could look like
<code class="block">
<b>mount=A:/home/me/BasicFloppy</b>
</code>
which would make the directory <code>/home/me/BasicFloppy</code> available as PC-BASIC's <code>A:</code> device.
</p>
<p>
PC-BASIC uses <a href="#eightpointthree">DOS conventions</a> for filenames and paths.
These are subtly different from Windows short filename
conventions and not-so-subtly different from Unix conventions. This may lead
to surprising effects in the presence of several files that match
the same DOS name. To avoid such surprises, it's best to run PC-BASIC in a working
directory of its own and use all-caps 8.3 format for all files.
</p>
</section>
<hr />
<section>
<h4 id="program-files">Compatible BASIC files</h4>
<p>
Many BASIC dialects use the same extension <code>.BAS</code>, but their files are not compatible.
PC-BASIC runs GW-BASIC program files only. Some tips to recognise GW-BASIC programs:
</p>
<ul>
<li>GW-BASIC files stored as text are plain text files with line numbers.</li>
<li>Tokenised files are binary files that start with magic byte <code>&hFF</code>.</li>
<li>Protected files are binary files that start with magic byte <code>&hFE</code>.</li>
</ul>
<p>
In particular, QBASIC files (which have no line numbers) and QuickBASIC files
(magic byte <code>&hFC</code>) will not run.
</p>
<p>
PC-BASIC will accept both DOS and Unix newline conventions for programs
stored as plain text.
This behaviour is different from GW-BASIC, which only
accepts text files with <code><i>CR LF</i></code> line endings.
As a consequence, in exceptional cases where a program line is continued through <code><i>LF</i></code>
correct GW-BASIC text files may not be loaded correctly.
If you encounter such a case, use
the <code><a href="#--soft-linefeed">soft-linefeed</a></code> option to enable GW-BASIC behaviour. If
<code>soft-linefeed</code> is enabled, text files in standard Unix format
(<code><i>LF</i></code> line endings, no end-of-file character) will fail to load, as they do in GW-BASIC.
On Linux or Mac, use a utility such as
<a href="http://waterlan.home.xs4all.nl/dos2unix.html"><code>unix2dos</code></a>
to convert programs saved as text files before loading them. When saving as text,
PC-BASIC always uses <code><i>CR LF</i></code> line endings and <code>&h1A</code> at end-of-file.
</p>
</section>
<hr />
<section>
<h4 id="packages">Packages</h4>
<p>
PC-BASIC can run packaged programs. A package is simply a directory or zip archive.
The directory or zipfile contents will be loaded as the current working
directory. If a configuration file named <code>PCBASIC.INI</code> is present
inside this directory, its settings are loaded; usually, one of those settings will be a
<code><a href="#--run">run</a></code> argument linking to a BASIC program enclosed in the archive or directory.
PC-BASIC will recognise zipfiles regardless of their extension.
A suggested extension for PC-BASIC packages is <code>.BAZ</code>.
Packages are a convenient choice if a program needs to change many PC-BASIC options
to function as desired, or if it needs a particular working directory setup.
</p>
<p>
Zipfile packages are unpacked to a temporary directory each time they are loaded.
The temporary directory is removed when PC-BASIC closes. With zipfile packages, it is therefore
not possible to save files and re-open them on the next run of the package.
</p>
</section>
<hr />
<section>
<h4 id="cassette">Cassette tapes</h4>
<p>
The <code>CAS1</code> device interfaces with the cassette tape emulator.
Tapes were never very popular on the IBM PC, and indeed only available with the
original PC and the PCjr. There are not many IBM PC cassettes in the wild.
However, should you come across one, all you have to do to read it with PC-BASIC
is record it into a <code>.WAV</code> (RIFF WAVE) file and attach it to the <code>CAS1:</code>
device with the <code><b><a href="#--cas1">cas1</a>=WAV:</b><var>filename</var></code> option.
You can also generate your own tape images and store your programs on it. <code>WAV</code>
files generated by PC-BASIC are large but very easily compressed in a <code>ZIP</code>
archive; this works better and leads to smaller files than transcoding to a lossy
audio format like <code>MP3</code>.
</p>
<p>
As an alternative to <code>.WAV</code>, you can store tapes in <code>CAS</code>
format. This is simply a bit-dump of the tape and is interchangeable
with tape images for the <a href="http://www.hampa.ch/pce/">PCE</a> IBM PC emulator.
</p>
<p>
Previous versions of PC-BASIC included support for BASICODE cassettes; this has
been discontinued in favour of a separate
<a href="https://github.com/robhagemans/basicode">BASICODE decoder</a>.
Use this decoder to convert the BASICODE program to PC-BASIC format
before loading it into PC-BASIC.
</p>
</section>
<hr />
<section>
<h4 id="security">Security</h4>
<p>PC-BASIC makes some default choices with basic security in mind, but does not
sandbox its programs in any meaningful way. BASIC programs have more or less
full access to your computer. You should treat them with the same caution as
you would shell scripts or binaries. Therefore, do not run a program from the
internet that you have not inspected first using <code><a href="#LIST">LIST</a></code> or
<code class="block"><b>pcbasic <a href="#--convert">--convert</a>=A</b> <var>filename</var></code> on the <a href="#settings">command line</a>. You wouldn't just download
an executable from the internet and run it either, right?</p>
</section>
<hr />
</section>
<section>
<h3 id="peripherals">Connecting to peripherals</h3>
<section>
<h4 id="printing">Printing</h4>
<p>
You can print from PC-BASIC programs
by accessing the <code>LPT1:</code> device. PC-BASIC will send the output to
your operating system's default printer, unless you change the <code>lpt1=</code>
option. To print through a printer named <code>MyPrinter</code>, set
<code><b><a href="#--lpt1">lpt1</a>=PRINTER:MyPrinter</b></code>. You can also attach printers to the
<code>LPT2:</code> and <code>LPT3:</code> devices.
</p>
<p>
The output will be sent to the printer when one of the following happens:
a file open to <code>LPT1:</code> is closed, a program terminates, or PC-BASIC is closed.
If you prefer, you can instead send every page separately to the printer by setting
<code>lpt1=PRINTER:MyPrinter:page</code>. You can even send every line separately, but
this only makes sense on a tractor-fed printer (as was common in GW-BASIC's heyday).
</p>
<p>
It's easy to print to a file instead of a printer:
set <code><b><a href="#--lpt1">lpt1</a>=FILE:output.txt</b></code>
to send all <code>LPT1:</code> printer output to the text file <code>output.txt</code>.
</p>
<p>
The printing statements <code><a href="#LPRINT">LPRINT</a></code> and <code><a href="#LLIST">LLIST</a></code> always send
their output to PC-BASIC's <code>LPT1:</code> device.
</p>
<p>
The presentation of printed documents is left to your operating system: it
will be the default presentation of text files. If you wist to change the way
documents are printed, please refer to your OS's settings.
</p>
<ul>
<li>
On Windows, text files are printed the same way as would happen when you drag
a text file and drop it on the printer's icon.
That means the formatting is handled by the application associated to
<code>.txt</code> files; usually this is <code>notepad.exe</code>. To change
the way PC-BASIC documents are printed, change the page setup
in that application. You will need to set a
printer font that includes the characters you need to print.
</li>
<li>
On Unix systems,
PC-BASIC will use the <code>paps</code> utility if it is available; this will
automatically select fonts that support the characters you need.
</li>
</ul>
</section>
<hr />
<section>
<h4 id="ports">Serial and parallel ports</h4>
<p>
PC-BASIC provides the serial devices <code>COM1:</code> and <code>COM2:</code>.
To make use of these, you need to attach them to a communications port on your
computer with the <code><a href="#--com1">com1</a>=</code> or <code><a href="#--com2">com2</a>=</code> option. To attach to
the first physical serial port, set <code><b><a href="#--com1">com1</a>=PORT:0</b></code> (or, alternatively,
<code><b><a href="#--com1">com1</a>=PORT:COM1</b></code> on Windows or
<code><b><a href="#--com1">com1</a>=PORT:/dev/ttyS0</b></code> on
Linux). If you do not have a serial port, you can emulate one by sending the
communications over a network socket: set <code><b><a href="#--com1">com1</a>=SOCKET:localhost:7000</b></code>
and all <code>COM1:</code> traffic will be sent through socket <code>7000</code>.
</p>
<p>
To access a parallel port, attach it to one of <code>LPT1:</code>, <code>LPT2:</code> or <code>LPT3:</code>.
For example, set <code><b><a href="#--lpt2">lpt2</a>=PARPORT:0</b></code> to attach your computer's first
parallel port to <code>LPT2:</code>.
</p>
</section>
<hr />
</section>
<section>
<h3 id="interface">Changing the interface</h3>
<section>
<h4 id="presets">Emulation targets</h4>
<p>
By default, PC-BASIC emulates GW-BASIC on a system with VGA video capabilities.
However, it can emulate several other setups, which differ from each other in
terms of video and audio capacity, fonts, memory size, as well as available BASIC syntax.
The easiest way to set the emulation target is by using a <code><a href="#--preset">preset</a></code> option.
For example, run <code><b>pcbasic --preset=pcjr</b></code>.
Other available emulation target presets are:
</p>
<div class="scrollable">
<table>
<tr>
<th>Preset</th><th>Emulation target</th>
</tr>
<tr>
<td><code>gwbasic</code></td>
<td>Microsoft GW-BASIC 3.23</td>
</tr>
<tr>
<td><code>basica</code></td>
<td>IBM BASICA.</td>
</tr>
<tr>
<td><code>pcjr</code></td>
<td>IBM PCjr with Cartridge BASIC, including PCjr video and 3-voice sound capabilities and extended BASIC syntax.</td>
</tr>
<tr>
<td><code>tandy</code></td>
<td>Tandy 1000 with GW-BASIC, including Tandy video and 3-voice sound capabilities and extended BASIC syntax.</td>
</tr>
<tr>
<td><code>olivetti</code></td>
<td>Olivetti M24 or AT&T PC 6300.</td>
</tr>
<tr>
<td><code>cga</code></td>
<td>IBM or compatible with Color/Graphics Adapter and a composite monitor. This enables composite colorburst emulation.</td>
</tr>
<tr>
<td><code>ega</code></td>
<td>IBM or compatible with Extended Graphics Adapter.</td>
</tr>
<tr>
<td><code>vga</code></td>
<td>IBM or compatible with Video Graphics Array.</td>
</tr>
<tr>
<td><code>mda</code></td>
<td>
IBM or compatible with Monochrome Display Adapter and
green-tinted monochrome monitor.
</td>
</tr>
<tr>
<td><code>hercules</code></td>
<td>
IBM compatible with Hercules Graphics Adapter and green-tinted
monochrome monitor.
</td>
</tr>
<tr>
<td><code>strict</code></td>
<td>Choose strict compatibility with GW-BASIC over convenience,
security, rhyme or reason.</td>
</tr>
</table>
</div>
<p>
<em>Presets</em> are groups of options that are defined in the default configuration
file. You can create your own presets by creating a header in your private configuration
file with the name of the new preset, followed by the options you want to apply. For example,
if you define:
<code class="block">
[my_preset]<br />
video=vga<br/>
syntax=pcjr<br>
</code>
you can now run <code><b>pcbasic --preset=my_preset</b></code> to start an emulation of
a hypothetical machine with a VGA video card running PCjr Cartridge BASIC.
</p>
<h5 id="gwbasic">GW-BASIC compatibility features</h5>
<p>
PC-BASIC aims for a very high level of compatibility with GW-BASIC. However,
some compatibility features are disabled by default for convenience or security reasons.
These features can be switched on using individual <a href="#options">command-line options</a>. The highest level of
compatibility with GW-BASIC can be attained by setting
<code><a href="#--preset">preset</a>=strict</code>,
which switches off all convenience and security features that cause differences with
GW-BASIC.
</p>
</section>
<hr />
<section>
<h4 id="codepages">Codepages</h4>
<p>
PC-BASIC supports a large number of legacy codepages that were common at the
time GW-BASIC was popular, including double-byte character set codepages used
for Chinese, Japanese and Korean. You can select your codepage by using the
<code><a href="#--codepage">codepage</a>=</code> option. For example, <code>codepage=936</code> selects
the GBK codepage commonly used on the Chinese mainland. PC-BASIC will load and
save all program files as if encoded in the codepage you select.
</p>
<p>
It is also possible to load and save programs in a standard encoding
by enabling the <code><a href="#--text-encoding">text-encoding</a></code> option.
For example, if <code>--text-encoding=utf-8</code> is set, plain-text program source
will be saved and loaded in standard UTF-8 encoding. Please note that you will still
need to select a codepage that provides all the Unicode characters that your program
needs.
</p>
<p>
Note that PC-BASIC does not implement the following features relevant to some of these codepages:
</p>
<dl>
<dt id="bidi">
Bidirectional text
</dt>
<dd>
All text is printed
left-to-right independent of the codepage selected. To write strings in a language that
is written right-to-left, the logical character sequence must be inverted so that
the order appears correct visually. While this is inconvenient, it is in line with the behaviour of GW-BASIC.
This affects code pages marked with <i>B</i> in the table.
</dd>
<dt id="combi">
Combining characters
</dt>
<dd>
PC-BASIC recognises single-byte code points (where each glyph shows on a single cell on the screen) and
double-byte code points (where a single glyph takes up two cells on the screen). Combining characters
(such as the combining diacritics of codepages <code>874</code> and <code>1258</code>) are therefore not
shown correctly: instead of being combined with their preceding base character as a single combined glyph,
such combinations will be shown as separate glyphs. Where available, alternative codepages with precomposed
characters will give better results. This affects code pages marked with <i>C</i> in the table.
</dd>
</dl>
<p>
The following codepages are available. PC-BASIC uses the Microsoft OEM codepage number where
this is unambiguous. The code pages are expected to agree with Microsoft sources for the ranges
<code>&h80</code>–<code>&hFF</code>. Ranges <code>&h00</code>–<code>&h1F</code>
and <code>&h7F</code> are implemented as the IBM Special Graphic Characters where some
code page sources will list these as the corresponding control characters.
For unofficial codepages and those with conflicting numbering, codepage
names are used instead of numbers.
</p>
<div class="scrollable"><table>
<tr>
<th><code><var>codepage_id</var></code></th>
<th>Codepage</th>
<th>Languages</th>
<th>Notes</th>
</tr>
<tr>
<td><code>437</code></td>
<td>DOS Latin USA</td>
<td>English</td>
<td></td>
</tr>
<tr>
<td><code>720</code></td>
<td>Transparent ASMO</td>
<td>Arabic</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>737</code></td>
<td>DOS Greek</td>
<td>Greek</td>
<td></td>
</tr>
<tr>
<td><code>775</code></td>
<td>DOS Baltic Rim</td>
<td>Estonian, Latvian and Lithuanian</td>
<td></td>
</tr>
<tr>
<td><code>850</code></td>
<td>DOS Latin 1</td>
<td>Western European languages</td>
<td></td>
</tr>
<tr>
<td><code>851</code></td>
<td>DOS Greek 1</td>
<td>Greek</td>
<td></td>
</tr>
<tr>
<td><code>852</code></td>
<td>DOS Latin 2</td>
<td>Central European languages</td>
<td></td>
</tr>
<tr>
<td><code>853</code></td>
<td>DOS Latin 3</td>
<td>Southern European languages</td>
<td></td>
</tr>
<tr>
<td><code>855</code></td>
<td>DOS Cyrillic 1</td>
<td>Serbian, Macedonian and Bulgarian</td>
<td></td>
</tr>
<tr>
<td><code>856</code></td>
<td>DOS Hebrew</td>
<td>Hebrew</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>857</code></td>
<td>DOS Latin 5</td>
<td>Turkish</td>
<td></td>
</tr>
<tr>
<td><code>858</code></td>
<td>DOS Latin 1 with Euro</td>
<td>Western European languages</td>
<td></td>
</tr>
<tr>
<td><code>860</code></td>
<td>DOS Portuguese</td>
<td>Portuguese</td>
<td></td>
</tr>
<tr>
<td><code>861</code></td>
<td>DOS Icelandic</td>
<td>Icelandic</td>
<td></td>
</tr>
<tr>
<td><code>862</code></td>
<td>DOS Hebrew</td>
<td>Hebrew</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>863</code></td>
<td>DOS Canadian French</td>
<td>French</td>
<td></td>
</tr>
<tr>
<td><code>864</code></td>
<td>DOS Arabic</td>
<td>Arabic</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>865</code></td>
<td>DOS Nordic</td>
<td>Danish and Norwegian</td>
<td></td>
</tr>
<tr>
<td><code>866</code></td>
<td>DOS Cyrillic 2</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>868</code></td>
<td>DOS Urdu</td>
<td>Urdu</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>869</code></td>
<td>DOS Greek 2</td>
<td>Greek</td>
<td></td>
</tr>
<tr>
<td><code>874</code></td>
<td>TIS-620</td>
<td>Thai</td>
<td><a href="#combi"><i>C</i></a></td>
</tr>
<tr>
<td><code>932</code></td>
<td>Shift-JIS (variant)</td>
<td>Japanese</td>
<td></td>
</tr>
<tr>
<td><code>934</code></td>
<td>DOS/V Korea</td>
<td>Korean</td>
<td></td>
</tr>
<tr>
<td><code>936</code></td>
<td>GBK; GB2312/EUC-CN superset</td>
<td>Simplified Chinese</td>
<td></td>
</tr>
<tr>
<td><code>938</code></td>
<td>DOS/V Taiwan</td>
<td>Traditional Chinese</td>
<td></td>
</tr>
<tr>
<td><code>949</code></td>
<td>IBM-PC Korea KS; EUC-KR superset</td>
<td>Korean</td>
<td></td>
</tr>
<tr>
<td><code>950</code></td>
<td>Big-5 (variant)</td>
<td>Traditional Chinese</td>
<td></td>
</tr>
<tr>
<td><code>1258</code></td>
<td>Vietnamese</td>
<td>Vietnamese</td>
<td><a href="#combi"><i>C</i></a></td>
</tr>
<tr>
<td><code>alternativnyj</code></td>
<td>GOST Alternativnyj Variant</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>armscii8a</code></td>
<td>ArmSCII-8a; FreeDOS cp899</td>
<td>Armenian</td>
<td></td>
</tr>
<tr>
<td><code>big5-2003</code></td>
<td>Big-5 (Taiwan 2003)</td>
<td>Traditional Chinese</td>
<td></td>
</tr>
<tr>
<td><code>big5-hkscs</code></td>
<td>Big-5 (Hong Kong 2008)</td>
<td>Traditional Chinese</td>
<td></td>
</tr>
<tr>
<td><code>georgian-academy</code></td>
<td>Academy Standard</td>
<td>Georgian</td>
<td></td>
</tr>
<tr>
<td><code>georgian-ps</code></td>
<td>Parliament Standard</td>
<td>Georgian</td>
<td></td>
</tr>
<tr>
<td><code>iransystem</code></td>
<td>Iran System</td>
<td>Persian</td>
<td><a href="#bidi"><i>B</i></a></td>
</tr>
<tr>
<td><code>kamenicky</code></td>
<td>Kamenický; cp895</td>
<td>Czech</td>
<td></td>
</tr>
<tr>
<td><code>koi8-r</code></td>
<td>KOI8-R</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>koi8-ru</code></td>
<td>KOI8-RU</td>
<td>Ukrainian, Belarusian, Russian</td>
<td></td>
</tr>
<tr>
<td><code>koi8-u</code></td>
<td>KOI8-U</td>
<td>Ukrainian, Russian</td>
<td></td>
</tr>
<tr>
<td><code>mazovia</code></td>
<td>Mazovia; cp667, 991, 790</td>
<td>Polish</td>
<td></td>
</tr>
<tr>
<td><code>mik</code></td>
<td>MIK, FreeDOS cp3021</td>
<td>Bulgarian</td>
<td></td>
</tr>
<tr>
<td><code>osnovnoj</code></td>
<td>GOST Osnovnoj Variant</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>ruscii</code></td>
<td>RUSCII</td>
<td>Ukrainian, Russian</td>
<td></td>
</tr>
<tr>
<td><code>russup3</code></td>
<td>Cornell Russian Support for DOS v3</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>russup4ac</code></td>
<td>Exceller Software Russian Support for DOS v4 Academic</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>russup4na</code></td>
<td>Exceller Software Russian Support for DOS v4 Non-Academic</td>
<td>Russian</td>
<td></td>
</tr>
<tr>
<td><code>viscii</code></td>
<td>VISCII, FreeDOS cp30006</td>
<td>Vietnamese</td>
<td></td>
</tr>
</table></div>
<p>
You can add custom codepages to PC-BASIC, by adding a file with
its mapping to Unicode to the <code>codepage/</code> directory.
</p>
</section>
<hr />
<section>
<h4 id="fonts">Fonts</h4>
<p>
PC-BASIC emulates the distinctive raster fonts of IBM-compatible machines. The ROM
fonts of the original IBM and Tandy adapters (which are in the public
domain in a number of countries) have been included in PC-BASIC. These provide the most
accurate emulation. However, the font ROMs only included a single code page –
DOS Latin USA 437.
</p>
<p>
PC-BASIC defaults to a font which is very similar in style to the IBM VGA
font but has support for many more code pages, in particular Western and Middle
Eastern alphabets. Chinese, Japanese and Korean are supported through "fullwidth"
glyphs which take the space of two regular characters.
</p>
<p>
It is possible to change the choice of font using the <code><a href="#--font">font=</a></code> option.
You can provide a list of fonts, where the last font specified is the
most preferred one.
</p>
<p>
PC-BASIC reads fonts in a variant of the <code>.hex</code> format introduced by UniFont. It's
easy to define custom fonts in this format: it can be edited in a regular text editor.
See the UniFont project for an authoring tool. You can add custom fonts to PC-BASIC by
installing them into the <code>font/</code> subdirectory of PC-BASIC's installation
directory.
</p>
<p>
By default, the following fonts
are available:
</p>
<div class="scrollable"><table>
<tr>
<th><code><var>font_name</var></code></th>
<th>Name</th>
<th>Sizes</th>
<th>Codepages</th>
</tr>
<tr>
<td><code>default</code></td>
<td>PC-BASIC default font</td>
<td>8, 14, 16</td>
<td>all bundled codepages</td>
</tr>
<tr>
<td><code>cga</code></td>
<td>IBM Colour/Graphics Adapter font</td>
<td>8</td>
<td>437 only</td>
</tr>
<tr>
<td><code>mda</code></td>
<td>IBM Monochrome Display Adapter font</td>
<td>14</td>
<td>437 only</td>
</tr>
<tr>
<td><code>vga</code></td>
<td>IBM Video Graphics Array font</td>
<td>8, 14, 16</td>
<td>437 only</td>
</tr>
<tr>
<td><code>olivetti</code></td>
<td>Olivetti/AT&T font</td>
<td>16</td>
<td>437 only</td>
</tr>
<tr>
<td><code>tandy1</code></td>
<td>Tandy-1000 font old version</td>
<td>8</td>
<td>437 only</td>
</tr>
<tr>
<td><code>tandy2</code></td>
<td>Tandy-1000 font new version</td>
<td>8</td>
<td>437 only</td>
</tr>
</table></div>
<p>
If not all glyphs are found in the specified font(s), the <code>default</code>
font is used as a fallback.
</p>
<p>
The font names <code>freedos</code>, <code>univga</code>, and <code>unifont</code>
are treated as synonyms of <code>default</code> unless a font with one of these names
is available. This behaviour is deprecated.
</p>
</section>
<hr />
<section>
<h4 id="redirecting">Redirecting I/O</h4>
<p>
PC-BASIC supports redirecting input and output the GW-BASIC way: output redirected
with the <code><a href="#--output">output</a>=</code> option will be sent to the screen as well as
the specified file, while input redirected with <code><a href="#--input">input=</a></code> is taken
only from the specified file. Note that screen output through the
<code>SCRN:</code> device and keyboard input through the <code>KYBD:</code>
device are not redirected. Files are read and written in the codepage set with
PC-BASIC.
</p>
<p>
Note that it is also possible to use your operating system's facility to
redirect console output using the <code><</code> and <code>></code>
operators. It's best to set <code><b><a href="#--interface">interface</a>=none</b></code> so that I/O is
redirected through the console. This will produce files in your console's standard encoding,
which is often UTF-8 on Unix and Windows-1252 on Windows.
</p>
</section>
<hr />
<section>
<h4 id="cli">Command-line interface</h4>
<p>
You can run PC-BASIC as a
command-line interface by setting the <code><a href="#--interface">interface</a>=cli</code> (or
<code><a href="#-b">-b</a></code>) option. No window will be opened: you can type BASIC commands
straight into your Command Prompt/Terminal. Use the horizontal arrow keys to
move on the current line you're editing; use the vertical arrow keys to show
screen rows above and below. Copy and paste are available only if the calling
shell provides them. On Windows, <kbd>Ctrl</kbd>+<kbd>Break</kbd> will
terminate PC-BASIC immediately. You can use <kbd>Ctrl</kbd>+<kbd>C</kbd> to
interrupt the program. The end-of-file key combination
(<kbd>Ctrl</kbd>+<kbd>D</kbd> on Unix, <kbd>Ctrl</kbd>+<kbd>Z</kbd> on Windows)
will exit PC-BASIC.
</p>
<p>
You can use the command-line interface to run one or a few BASIC commands directly, like so:
</p>
<samp class="block">
me@mybox$ <b>pcbasic -c '?1+1'</b><br />
<b> 2</b><br />
me@mybox$
</samp>
<p>
For scripting purposes, it is also possible to run PC-BASIC without any
interface by setting <code><a href="#--interface">interface</a>=none</code> or
<code><a href="#-n">-n</a></code>. If this is
set, PC-BASIC will take input from and send output to the console as UTF-8
without further modification. This is useful in combination with redirection and
pipes.
</p>
</section>
<hr />
<section>
<h4 id="text-interface">Text-based interface</h4>
<p>
There is also a full-screen text interface available: enable it
by setting <code><a href="#--interface">interface</a>=text</code> (or <code><a href="#-t">-t</a></code>). The text-based
interface is very similar to the default graphical interface, but runs in your
Command Prompt or Terminal window.
</p>
<p>
Graphical screen modes can be used in text and command-line interface,
but only the text on the screen will be visible.
pre, many <kbd>Ctrl</kbd> and <kbd>Alt</kbd>
key combinations are not available.
</p>
<p>
The text and command-line interfaces will attempt to use the PC speaker
for sound. Only single-voice sound can be produced this way.
On Linux systems under X11, you may need to install the <code>beep</code> utility and
enable the PC-speaker driver or emulation; direct speaker access is often
limited to root or tty logins, and on Ubuntu systems it is disabled by default.
</p>
</section>
<hr />
</section>
</article>
|