-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsmall-basic-mode.el
1088 lines (937 loc) · 28.4 KB
/
small-basic-mode.el
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
;; small-basic-mode.el --- A mode for editing Small Basic programs.
;; Original Visual Basic header...
;; Copyright (C) 1996 Fred White <fwhite@alum.mit.edu>
;; Author: Fred White <fwhite@alum.mit.edu>
;; Version: 1.3 (May 1, 1996)
;; Keywords: languages basic
;; (Old) LCD Archive Entry:
;; basic-mode|Fred White|fwhite@alum.mit.edu|
;; A mode for editing Small Basic programs.|
;; 18-Apr-96|1.0|~/modes/basic-mode.el.Z|
;; This file is NOT part of GNU Emacs but the same permissions apply.
;;
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published
;; by the Free Software Foundation; either version 2, or (at your
;; option) any later version.
;;
;; GNU Emacs is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of the
;; License, or (at your option) any later version.
;; Purpose of this package:
;; This is a mode for editing programs written in The World's Most
;; Successful Programming Language. It features automatic
;; indentation, font locking, keyword capitalization, and some minor
;; convenience functions.
;; Installation instructions
;; Put basic-mode.el somewhere in your path, compile it, and add the
;; following to your init file:
;; (autoload 'small-basic-mode "small-basic-mode" "Small Basic mode." t)
;; (setq auto-mode-alist (append '(("\\.\\(frm\\|bas\\|cls\\)$" .
;; small-basic-mode)) auto-mode-alist))
;(setq load-path (append "c:\sb" load-path))
;(autoload 'small-basic-mode "small-basic-mode" "Small Basic mode." t)
;(setq auto-mode-alist (append '(("\\.bas\\'" . small-basic-mode))
; auto-mode-alist))
;; Of course, under Windows 3.1, you'll have to name this file
;; something shorter than small-basic-mode.el
;; Revisions:
;; 1.0 18-Apr-96 Initial version
;; 1.1 Accomodate emacs 19.29+ font-lock-defaults
;; Simon Marshall <Simon.Marshall@esrin.esa.it>
; 1.2 Rename to small-basic-mode
;; 1.3 Fix some indentation bugs.
;; changes by G.U. Lauri
;; 1.4 Added automatic header comment construction.
;; vorking out origina code coming from NTEmacs Mailing List
;; Known bugs:
;; Doesn't know about ":" separated stmts
;; Doesn't know about single-line IF stmts
;; todo:
;; fwd/back-compound-statement
;; completion over OCX methods and properties.
;; ensure Then at the end of IF statements.
;; IDE integration
;; etc.
(provide 'small-basic-mode)
(defvar small-basic-xemacs-p (string-match "XEmacs\\|Lucid" (emacs-version)))
(defvar small-basic-winemacs-p (string-match "Win-Emacs" (emacs-version)))
(defvar small-basic-win32-p (eq window-system 'win32))
;; Variables you may want to customize.
(defvar small-basic-mode-indent 4 "*Default indentation per nesting level")
(defvar small-basic-fontify-p t "*Whether to fontify Basic buffers.")
(defvar small-basic-capitalize-keywords-p t
"*Whether to capitalize BASIC keywords.")
(defvar small-basic-wild-files "*.frm *.bas *.cls"
"*Wildcard pattern for BASIC source files")
(defvar small-basic-ide-pathname nil
"*The full pathname of your Small Basic exe file, if any.")
(defvar small-basic-keywords-to-highlight
'("dim" "if" "then" "else" "elseif" "elif" "endif" "fi" )
"*A list of keywords to highlight in Basic mode, or T, meaning all keywords")
(defvar small-basic-defn-templates
(list "Public Sub ()\nEnd Sub\n\n"
"Public Function () As Variant\nEnd Function\n\n"
"Public Property Get ()\nEnd Property\n\n")
"*List of function templates though which small-basic-new-sub cycles.")
(defvar small-basic-mode-syntax-table nil)
(if small-basic-mode-syntax-table
()
(setq small-basic-mode-syntax-table (make-syntax-table))
(modify-syntax-entry ?\' "\<" small-basic-mode-syntax-table) ; Comment starter
(modify-syntax-entry ?\n ">" small-basic-mode-syntax-table)
(modify-syntax-entry ?\\ "w" small-basic-mode-syntax-table)
(modify-syntax-entry ?_ "w" small-basic-mode-syntax-table))
(defvar small-basic-mode-map nil)
(if small-basic-mode-map
()
(setq small-basic-mode-map (make-sparse-keymap))
(define-key small-basic-mode-map "\t" 'small-basic-indent-line)
(define-key small-basic-mode-map "\r" 'small-basic-newline-and-indent)
(define-key small-basic-mode-map "\M-\C-a" 'small-basic-beginning-of-defun)
(define-key small-basic-mode-map "\M-\C-e" 'small-basic-end-of-defun)
(define-key small-basic-mode-map "\M-\C-h" 'small-basic-mark-defun)
(define-key small-basic-mode-map "\M-\C-\\" 'small-basic-indent-region)
(define-key small-basic-mode-map "\M-q" 'small-basic-fill-or-indent)
(define-key small-basic-mode-map "\M-\C-q" 'small-basic-comment-function)
(cond (small-basic-winemacs-p
(define-key small-basic-mode-map '(control C) 'small-basic-start-ide))
(small-basic-win32-p
(define-key small-basic-mode-map (read "[?\\S-\\C-c]") 'small-basic-start-ide)))
(if small-basic-xemacs-p
(progn
(define-key small-basic-mode-map "\M-G" 'small-basic-grep)
(define-key small-basic-mode-map '(meta backspace) 'backward-kill-word)
(define-key small-basic-mode-map '(control meta /) 'small-basic-new-sub))))
;; These abbrevs are valid only in a code context.
(defvar small-basic-mode-abbrev-table nil)
(defvar small-basic-mode-hook ())
;; Is there a way to case-fold all regexp matches?
(defconst small-basic-defun-start-regexp
(concat
"^[ \t]*\\([Pp]ublic \\|[Pp]rivate \\|[Ss]tatic \\)*"
"\\([Ss]ub\\|[Ff]unction\\|[Pp]roperty +[GgSsLl]et\\|[Tt]ype\\)"
"[ \t]+\\(\\w+\\)[ \t]*(?"))
(defconst small-basic-defun-end-regexp
"^[ \t]*[Ee]nd")
;; Includes the compile-time #if variation.
(defconst small-basic-if-regexp "^[ \t]*#?[Ii]f")
(defconst small-basic-else-regexp "^[ \t]*#?[Ee]lse\\([Ii]f\\)?")
(defconst small-basic-endif-regexp "[ \t]*#?[Ff][Ii]")
(defconst small-basic-continuation-regexp "^.*\\_[ \t]*$")
(defconst small-basic-label-regexp "^[ \t]*[a-zA-Z0-9_]+:$")
(defconst small-basic-select-regexp "^[ \t]*[Ss]elect[ \t]+[Cc]ase")
(defconst small-basic-case-regexp "^[ \t]*[Cc]ase")
(defconst small-basic-select-end-regexp "^[ \t]*[Ee]nd[ \t]+[Ss]elect")
(defconst small-basic-for-regexp "^[ \t]*[Ff]or\\b")
(defconst small-basic-next-regexp "^[ \t]*[Nn]ext\\b")
(defconst small-basic-do-regexp "^[ \t]*[Dd]o\\b")
(defconst small-basic-loop-regexp "^[ \t]*[Ll]oop\\b")
(defconst small-basic-while-regexp "^[ \t]*[Ww]hile\\b")
(defconst small-basic-wend-regexp "^[ \t]*[Ww]end\\b")
(defconst small-basic-with-regexp "^[ \t]*[Ww]ith\\b")
(defconst small-basic-end-with-regexp "^[ \t]*[Ee]nd[ \t]+[Ww]ith\\b")
(defconst small-basic-blank-regexp "^[ \t]*$")
(defconst small-basic-comment-regexp "^[ \t]*\\s<.*$")
;; keywords copied from kw.h
(defconst small-basic-all-keywords
'("local"
"func"
"proc"
"byref"
"declare"
"import"
"let"
"const"
"end"
"stop"
"print"
"using"
"input"
"sinput"
"inputsep"
"loopsep"
"procsep"
"funcsep"
"rem"
"label"
"goto"
"if"
"then"
"else"
"elseif"
"elif"
"endif"
"fi"
"for"
"to"
"step"
"in"
"next"
"while"
"wend"
"repeat"
"until"
"gosub"
"return"
"exit"
"loop"
"dim"
"redim"
"chain"
"read"
"restore"
"data"
"color"
"filled"
"line"
"on"
"off"
"tron"
"troff"
"onjmp"
"run"
"exec"
"erase"
"use"
"forsep"
"outputsep"
"append"
"insert"
"delete"
"appendsep"
"open"
"as"
"fileprint"
"lineinput"
"fileinput"
"filewrite"
"fileread"
"close"
"scrmode"
"seek"
"access"
"shared"
"type"
"sprint"
"do"
"option"
"cls"
"rte"
"shell"
"environ"
"locate"
"at"
"pen"
"datedmy"
"beep"
"sound"
"pset"
"rect"
"circle"
"randomize"
"split"
"wsplit"
"wjoin"
"pause"
"delay"
"arc"
"draw"
"paint"
"play"
"sort"
"search"
"root"
"diffeq"
"chart"
"window"
"view"
"drawpoly"
"m3ident"
"m3rotate"
"m3scale"
"m3translate"
"m3apply"
"segintersect"
"polyext"
"deriv"
"loadln"
"saveln"
"kill"
"rename"
"copy"
"chdir"
"mkdir"
"rmdir"
"flock"
"chmod"
"plot"
"logprint"
"stkdump"
"swap"
"button"
"text"
"doform"
"dirwalk"
"asc"
"val"
"chr"
"str"
"oct"
"hex"
"lcase"
"ucase"
"ltrim"
"rtrim"
"space"
"tab"
"cat"
"environf"
"trim"
"string"
"squeeze"
"left"
"right"
"leftof"
"rightof"
"leftoflast"
"rightoflast"
"mid"
"replace"
"runf"
"inkey"
"time"
"date"
"instr"
"rinstr"
"lbound"
"ubound"
"len"
"empty"
"isarray"
"isnumber"
"isstring"
"atan2"
"pow"
"round"
"cos"
"sin"
"tan"
"cosh"
"sinh"
"tanh"
"acos"
"asin"
"atan"
"acosh"
"asinh"
"atanh"
"sqr"
"abs"
"exp"
"log"
"log10"
"fix"
"int"
"cdbl"
"deg"
"rad"
"penf"
"floor"
"ceil"
"frac"
"fre"
"sgn"
"cint"
"eof"
"seekf"
"lof"
"rnd"
"max"
"min"
"absmax"
"absmin"
"sum"
"sumsv"
"statmean"
"statmeandev"
"statspreads"
"statspreadp"
"segcos"
"segsin"
"seglen"
"polyarea"
"ptdistseg"
"ptsign"
"ptdistln"
"point"
"codearray"
"gaussjordan"
"files"
"inverse"
"determ"
"julian"
"datefmt"
"wday"
"iff"
"format"
"freefile"
"ticks"
"tickspersec"
"timer"
"progline"
"inputf"
"textwidth"
"textheight"
"exist"
"isfile"
"isdir"
"islink"
"accessf"
"xpos"
"ypos"
"rgb"
"rgbf"
"bin"
"enclose"
"disclose"
"searchf"
"translatef"
"chop"
"tload"
"tsave"
))
(defun small-basic-word-list-regexp (keys)
(let ((re "\\b\\(")
(key nil))
(while keys
(setq key (car keys)
keys (cdr keys))
(setq re (concat re key (if keys "\\|" ""))))
(concat re "\\)\\b")))
(defun small-basic-keywords-to-highlight ()
(if t
small-basic-all-keywords
small-basic-keywords-to-highlight))
(defvar small-basic-font-lock-keywords
(list
;; Names of functions.
(list small-basic-defun-start-regexp 3 'font-lock-function-name-face)
;; Statement labels
(cons small-basic-label-regexp 'font-lock-reference-face)
;; Case values
;; String-valued cases get font-lock-string-face regardless.
(list "^[ \t]*[Cc]ase[ \t]+\\([^'\n]+\\)" 1 'font-lock-keyword-face t)
;; Any keywords you like.
(cons (small-basic-word-list-regexp (small-basic-keywords-to-highlight))
'font-lock-keyword-face)))
(put 'small-basic-mode 'font-lock-keywords 'small-basic-font-lock-keywords)
(defun small-basic-mode ()
"A mode for editing Small Basic programs.
Features automatic indentation, font locking, keyword capitalization,
and some minor convenience functions.
Commands:
\\{small-basic-mode-map}"
(interactive)
(kill-all-local-variables)
(use-local-map small-basic-mode-map)
(setq major-mode 'small-basic-mode)
(setq mode-name "Small Basic")
(set-syntax-table small-basic-mode-syntax-table)
(add-hook 'write-file-hooks 'small-basic-untabify)
(setq local-abbrev-table small-basic-mode-abbrev-table)
(if small-basic-capitalize-keywords-p
(progn
(make-local-variable 'pre-abbrev-expand-hook)
(add-hook 'pre-abbrev-expand-hook 'small-basic-pre-abbrev-expand-hook)
(abbrev-mode 1)))
(make-local-variable 'comment-start)
(setq comment-start "' ")
(make-local-variable 'comment-start-skip)
(setq comment-start-skip "'+ *")
(make-local-variable 'comment-column)
(setq comment-column 40)
(make-local-variable 'comment-end)
(setq comment-end "")
(make-local-variable 'indent-line-function)
(setq indent-line-function 'small-basic-indent-line)
(if small-basic-fontify-p
(small-basic-enable-font-lock))
(run-hooks 'small-basic-mode-hook))
(defun small-basic-enable-font-lock ()
;; Emacs 19.29 requires a window-system else font-lock-mode errs out.
(cond ((or small-basic-xemacs-p window-system)
;; In win-emacs this sets font-lock-keywords back to nil!
(if small-basic-winemacs-p
(font-lock-mode 1))
;; Accomodate emacs 19.29+
;; From: Simon Marshall <Simon.Marshall@esrin.esa.it>
(cond ((boundp 'font-lock-defaults)
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults '(small-basic-font-lock-keywords)))
(t
(make-local-variable 'font-lock-keywords)
(setq font-lock-keywords small-basic-font-lock-keywords)))
(if small-basic-winemacs-p
(font-lock-fontify-buffer)
(font-lock-mode 1)))))
(defun small-basic-construct-keyword-abbrev-table ()
(if small-basic-mode-abbrev-table
nil
(let ((words small-basic-all-keywords)
(word nil)
(list nil))
(while words
(setq word (car words)
words (cdr words))
(setq list (cons (list (downcase word) word) list)))
(define-abbrev-table 'small-basic-mode-abbrev-table list))))
;; Would like to do this at compile-time.
(small-basic-construct-keyword-abbrev-table)
(defun small-basic-in-code-context-p ()
(if (fboundp 'buffer-syntactic-context) ; XEmacs function.
(null (buffer-syntactic-context))
;; Attempt to simulate buffer-syntactic-context
;; I don't know how reliable this is.
(let* ((beg (save-excursion
(beginning-of-line)
(point)))
(list
(parse-partial-sexp beg (point))))
(and (null (nth 3 list)) ; inside string.
(null (nth 4 list)))))) ; inside cocmment
(defun small-basic-pre-abbrev-expand-hook ()
;; Allow our abbrevs only in a code context.
(setq local-abbrev-table
(if (small-basic-in-code-context-p)
small-basic-mode-abbrev-table)))
(defun small-basic-newline-and-indent (&optional count)
"Insert a newline, updating indentation."
(interactive)
(expand-abbrev)
(save-excursion
(small-basic-indent-line))
(call-interactively 'newline-and-indent))
(defun small-basic-beginning-of-defun ()
(interactive)
(re-search-backward small-basic-defun-start-regexp))
(defun small-basic-end-of-defun ()
(interactive)
(re-search-forward small-basic-defun-end-regexp))
(defun small-basic-mark-defun ()
(interactive)
(beginning-of-line)
(small-basic-end-of-defun)
(set-mark (point))
(small-basic-beginning-of-defun)
(if small-basic-xemacs-p
(zmacs-activate-region)))
(defun small-basic-indent-defun ()
(interactive)
(save-excursion
(small-basic-mark-defun)
(call-interactively 'small-basic-indent-region)))
(defun small-basic-fill-long-comment ()
"Fills block of comment lines around point."
;; Derived from code in ilisp-ext.el.
(interactive)
(save-excursion
(beginning-of-line)
(let ((comment-re "^[ \t]*\\s<+[ \t]*"))
(if (looking-at comment-re)
(let ((fill-prefix
(buffer-substring
(progn (beginning-of-line) (point))
(match-end 0))))
(while (and (not (bobp))
(looking-at small-basic-comment-regexp))
(forward-line -1))
(if (not (bobp)) (forward-line 1))
(let ((start (point)))
;; Make all the line prefixes the same.
(while (and (not (eobp))
(looking-at comment-re))
(replace-match fill-prefix)
(forward-line 1))
(if (not (eobp))
(beginning-of-line))
;; Fill using fill-prefix
(fill-region-as-paragraph start (point))))))))
(defun small-basic-fill-or-indent ()
"Fill long comment around point, if any, else indent current definition."
(interactive)
(cond ((save-excursion
(beginning-of-line)
(looking-at small-basic-comment-regexp))
(small-basic-fill-long-comment))
(t
(small-basic-indent-defun))))
(defun small-basic-new-sub ()
"Insert template for a new subroutine. Repeat to cycle through alternatives."
(interactive)
(beginning-of-line)
(let ((templates (cons small-basic-blank-regexp
small-basic-defn-templates))
(tem nil)
(bound (point)))
(while templates
(setq tem (car templates)
templates (cdr templates))
(cond ((looking-at tem)
(replace-match (or (car templates)
""))
(setq templates nil))))
(search-backward "()" bound t)))
(defun small-basic-untabify ()
"Do not allow any tabs into the file"
(if (eq major-mode 'small-basic-mode)
(untabify (point-min) (point-max)))
nil)
(defun small-basic-default-tag ()
(if (and (not (bobp))
(save-excursion
(backward-char 1)
(looking-at "\\w")))
(backward-word 1))
(let ((s (point))
(e (save-excursion
(forward-word 1)
(point))))
(buffer-substring s e)))
(defun small-basic-grep (tag)
"Search BASIC source files in current directory for tag."
(interactive
(list (let* ((def (small-basic-default-tag))
(tag (read-string
(format "Grep for [%s]: " def))))
(if (string= tag "") def tag))))
(grep (format "grep -n %s %s" tag small-basic-wild-files)))
;;; IDE Connection.
(defun small-basic-buffer-project-file ()
"Return a guess as to the project file associated with the current buffer."
(car (directory-files (file-name-directory (buffer-file-name)) t "\\.vbp")))
(defun small-basic-start-ide ()
"Start Small Basic (or your favorite IDE, (after Emacs, of course))
on the first project file in the current directory.
Note: it's not a good idea to leave Small Basic running while you
are editing in emacs, since Small Basic has no provision for reloading
changed files."
(interactive)
(let (file)
(cond ((null small-basic-ide-pathname)
(error "No pathname set for Small Basic. See small-basic-ide-pathname"))
((null (setq file (small-basic-buffer-project-file)))
(error "No project file found."))
((fboundp 'win-exec)
(iconify-emacs)
(win-exec small-basic-ide-pathname 'win-show-normal file))
((fboundp 'start-process)
(iconify-frame (selected-frame))
(start-process "*SmallBasic*" nil small-basic-ide-pathname file))
(t
(error "No way to spawn process!")))))
;;; Indentation-related stuff.
(defun small-basic-indent-region (start end)
"Perform small-basic-indent-line on each line in region."
(interactive "r")
(save-excursion
(goto-char start)
(beginning-of-line)
(while (and (not (eobp))
(< (point) end))
(if (not (looking-at small-basic-blank-regexp))
(small-basic-indent-line))
(forward-line 1)))
(cond ((fboundp 'zmacs-deactivate-region)
(zmacs-deactivate-region))
((fboundp 'deactivate-mark)
(deactivate-mark))))
(defun small-basic-previous-line-of-code ()
(if (not (bobp))
(forward-line -1)) ; previous-line depends on goal column
(while (and (not (bobp))
(or (looking-at small-basic-blank-regexp)
(looking-at small-basic-comment-regexp)))
(forward-line -1)))
(defun small-basic-find-original-statement ()
;; If the current line is a continuation from the previous, move
;; back to the original stmt.
(let ((here (point)))
(small-basic-previous-line-of-code)
(while (and (not (bobp))
(looking-at small-basic-continuation-regexp))
(setq here (point))
(small-basic-previous-line-of-code))
(goto-char here)))
(defun small-basic-find-matching-stmt (open-regexp close-regexp)
;; Searching backwards
(let ((level 0))
(while (and (>= level 0) (not (bobp)))
(small-basic-previous-line-of-code)
(small-basic-find-original-statement)
(cond ((looking-at close-regexp)
(setq level (+ level 1)))
((looking-at open-regexp)
(setq level (- level 1)))))))
(defun small-basic-find-matching-if ()
(small-basic-find-matching-stmt small-basic-if-regexp small-basic-endif-regexp))
(defun small-basic-find-matching-select ()
(small-basic-find-matching-stmt small-basic-select-regexp small-basic-select-end-regexp))
(defun small-basic-find-matching-for ()
(small-basic-find-matching-stmt small-basic-for-regexp small-basic-next-regexp))
(defun small-basic-find-matching-do ()
(small-basic-find-matching-stmt small-basic-do-regexp small-basic-loop-regexp))
(defun small-basic-find-matching-while ()
(small-basic-find-matching-stmt small-basic-while-regexp small-basic-wend-regexp))
(defun small-basic-find-matching-with ()
(small-basic-find-matching-stmt small-basic-with-regexp small-basic-end-with-regexp))
(defun small-basic-calculate-indent ()
(let ((original-point (point)))
(save-excursion
(beginning-of-line)
;; Some cases depend only on where we are now.
(cond ((or (looking-at small-basic-defun-start-regexp)
(looking-at small-basic-label-regexp)
(looking-at small-basic-defun-end-regexp))
0)
;; The outdenting stmts, which simply match their original.
((or (looking-at small-basic-else-regexp)
(looking-at small-basic-endif-regexp))
(small-basic-find-matching-if)
(current-indentation))
;; All the other matching pairs act alike.
((looking-at small-basic-next-regexp) ; for/next
(small-basic-find-matching-for)
(current-indentation))
((looking-at small-basic-loop-regexp) ; do/loop
(small-basic-find-matching-do)
(current-indentation))
((looking-at small-basic-wend-regexp) ; while/wend
(small-basic-find-matching-while)
(current-indentation))
((looking-at small-basic-end-with-regexp) ; with/end with
(small-basic-find-matching-with)
(current-indentation))
((looking-at small-basic-select-end-regexp) ; select case/end select
(small-basic-find-matching-select)
(current-indentation))
;; A case of a select is somewhat special.
((looking-at small-basic-case-regexp)
(small-basic-find-matching-select)
(+ (current-indentation) small-basic-mode-indent))
(t
;; Other cases which depend on the previous line.
(small-basic-previous-line-of-code)
;; Skip over label lines, which always have 0 indent.
(while (looking-at small-basic-label-regexp)
(small-basic-previous-line-of-code))
(cond
((looking-at small-basic-continuation-regexp)
(small-basic-find-original-statement)
;; Indent continuation line under matching open paren,
;; or else one word in.
(let* ((orig-stmt (point))
(matching-open-paren
(condition-case ()
(save-excursion
(goto-char original-point)
(beginning-of-line)
(backward-up-list 1)
;; Only if point is now w/in cont. block.
(if (<= orig-stmt (point))
(current-column)))
(error nil))))
(cond (matching-open-paren
(1+ matching-open-paren))
(t
;; Else, after first word on original line.
(back-to-indentation)
(forward-word 1)
(while (looking-at "[ \t]")
(forward-char 1))
(current-column)))))
(t
(small-basic-find-original-statement)
(let ((indent (current-indentation)))
;; All the various +indent regexps.
(cond ((looking-at small-basic-defun-start-regexp)
(+ indent small-basic-mode-indent))
((or (looking-at small-basic-if-regexp)
(looking-at small-basic-else-regexp))
(+ indent small-basic-mode-indent))
((or (looking-at small-basic-select-regexp)
(looking-at small-basic-case-regexp))
(+ indent small-basic-mode-indent))
((or (looking-at small-basic-do-regexp)
(looking-at small-basic-for-regexp)
(looking-at small-basic-while-regexp)
(looking-at small-basic-with-regexp))
(+ indent small-basic-mode-indent))
(t
;; By default, just copy indent from prev line.
indent))))))))))
(defun small-basic-indent-to-column (col)
(let* ((bol (save-excursion
(beginning-of-line)
(point)))
(point-in-whitespace
(<= (point) (+ bol (current-indentation))))
(blank-line-p
(save-excursion
(beginning-of-line)
(looking-at small-basic-blank-regexp))))
(cond ((/= col (current-indentation))
(save-excursion
(beginning-of-line)
(back-to-indentation)
(delete-region bol (point))
(indent-to col))))
;; If point was in the whitespace, move back-to-indentation.
(cond (blank-line-p
(end-of-line))
(point-in-whitespace
(back-to-indentation)))))
(defun small-basic-indent-line ()
"Indent current line for BASIC"
(interactive)
(small-basic-indent-to-column (small-basic-calculate-indent)))
(defun small-basic-function-arg-start (pos endpos)
(while (and (< pos endpos) (not (char-equal (char-after pos) 40))
(not (char-equal (char-after pos) 44)))
(setq pos (+ pos 1)))
(setq pos (+ pos 1))
(while (and (< pos endpos) (or
(char-equal (char-after pos) 95)
(char-equal (char-after pos) 10)
(char-equal (char-after pos) 13)
(char-equal (char-after pos) 9)
(char-equal (char-after pos) 32))
(setq pos (+ pos 1))))
(if (< pos endpos)
pos
nil))
(defun small-basic-skip-parens (pos endpos)
(let ((parcount 0))
(while (and (< pos endpos) (or (> parcount 0)
(char-equal (char-after pos) 40)))
(if (char-equal (char-after pos) 40)
(setq parcount (+ parcount 1)))
(if (char-equal (char-after pos) 41)
(setq parcount (- parcount 1)))
(setq pos (+ pos 1)))
pos))
(defun small-basic-function-arg-end (pos endpos)
(if (and pos endpos)
((lambda ()
(while (and (<= pos endpos) (not (char-equal (char-after pos) 41))
(not (char-equal (char-after pos) 44)))
(if (char-equal (char-after pos) 40)
(setq pos (small-basic-skip-parens pos endpos))
(setq pos (+ pos 1))))
(if (<= pos endpos)
((lambda ()
(setq pos (- pos 1))
(while (char-equal (char-after pos) 32)
(setq pos (- pos 1)))
(+ pos 1)))
nil))
)
nil))
(defun small-basic-function-get-arguments (pos endpos)
(let* ((arg-start (small-basic-function-arg-start pos endpos))
(arg-end (small-basic-function-arg-end arg-start endpos)))
(if (and arg-start arg-end)
(cons (buffer-substring arg-start arg-end)
(small-basic-function-get-arguments arg-end endpos))
nil)))