-
Notifications
You must be signed in to change notification settings - Fork 0
/
fex-fr
executable file
·607 lines (450 loc) · 15.6 KB
/
fex-fr
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
#! /usr/bin/env gforth
\ -*- mode: forth -*-
\ Copyright (c) 2009, Philippe Brochard
\ All rights reserved.
\
\ Redistribution and use in source and binary forms, with or without
\ modification, are permitted provided that the following conditions are
\ met:
\
\ * Redistributions of source code must retain the above copyright
\ notice, this list of conditions and the following disclaimer.
\ * Redistributions in binary form must reproduce the above
\ copyright notice, this list of conditions and the following disclaimer
\ in the documentation and/or other materials provided with the
\ distribution.
\ * Neither the name of Philippe Brochard nor the names of its
\ contributors may be used to endorse or promote products derived from
\ this software without specific prior written permission.
\
\ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
\ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
\ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
\ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
\ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
\ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
\ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
\ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
\ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
\ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
\ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ Usage: fex [fichier.fex]
\
\ Note: Vous pouvez rajouter vos propres commandes vers la fin de ce
\ fichier.
\ Vous pouvez aussi modifier le mot 'header' pour changer l'entête du
\ fichier LaTeX généré.
: print-first-usage
." Tapez 'aide' pour la liste des commandes" cr cr ;
print-first-usage
warnings off
vocabulary <fex>
: only-fex only <fex> also <fex> definitions
get-order 2drop nip 1 set-order ;
: fex-and-forth only forth also <fex> also forth definitions ;
: debug .s cr ;
: next-word ( -- addr newline-number )
0 begin bl word dup count nip ( addr len)
if swap exit then
swap 1+ swap refill
while drop repeat swap ;
\ ,--------------------.
\ | String utilities |
\ `--------------------'
: append ( a1 n2 a2 --)
over over >r >r count chars + swap chars move
r> r> dup >r c@ + r> c! ;
\ Convert a stack number to a string
: N>S ( u -- addr u) DUP >R ABS S>D <# #S R> SIGN #> ;
\ ,-----------------------.
\ | Arguments utilities |
\ `-----------------------'
256 constant arg-size
100 constant max-args
create arguments arg-size max-args * chars allot
variable my-argc argc @ my-argc !
: my-arg ( n -- addr)
arg-size * arguments + count ;
: save-args
my-argc @ 0 do I arg I arg-size * arguments + place loop ;
: clean-args
my-argc @ 2 - 0 ?do shift-args loop ;
: verify-args
." *** Verification ***" cr
my-argc @ 0 do I my-arg type cr loop ;
\ ,---------------------.
\ | AutoDoc utilities |
\ `---------------------'
0 constant (view-documentation)
1 constant (store-documentation)
-1 constant (no-documentation)
variable (documentation-state) (no-documentation) (documentation-state) !
: (treat-doc)
(documentation-state) @ case
(view-documentation) of type cr r> drop exit endof
(store-documentation) of r> drop exit endof
2drop
endcase
;
: view-documentation (view-documentation) (documentation-state) ! ;
: store-documentation (store-documentation) (documentation-state) ! ;
: no-documentation (no-documentation) (documentation-state) ! ;
: ->documentation (documentation-state) @ view-documentation ;
: documentation-> (documentation-state) ! ;
: documentation
->documentation
bl word find if execute else drop then
documentation-> ;
: doc"
postpone s\" postpone (treat-doc)
; immediate
: wordlist-words-documentation ( wid -- ) \ gforth specific?
[ has? ec 0= [IF] ] wordlist-id [ [THEN] ]
BEGIN
@ dup
WHILE
dup name>string 2dup 2 spaces type ." : " evaluate
REPEAT
drop ;
: syntaxe
get-order only-fex
->documentation
context @ wordlist-words-documentation
documentation->
set-order ;
\ ,--------------------.
\ | Begining of code |
\ `--------------------'
: find-in-arg? ( addr n --)
false -rot
my-argc @ 0 do I my-arg 2over compare 0= if rot drop true -rot then loop 2drop ;
: usage
cr ." <---------------------------------------------------------------------------->"
cr ." < Usage: bye, make-dvi, make-ps, view-ps, pdf, make-pdf, view-pdf, >"
cr ." < save-ps, save-pdf, clean, clean-all, print >"
cr ." <---------------------------------------------------------------------------->"
cr ;
: help
." Command line arguments are:" cr
." -h, --help This help" cr
." -a, --aide Cette aide et les mots prédéfinis" cr
." -f Output to file" cr
." -t Output to stdin" cr
." -q, --quit Quit after processing" cr
." --pdf Make a pdf, view it and save it" cr
." --make-pdf Make a pdf" cr
." --view-pdf View the generated pdf" cr
." --save-ps Save the ps file" cr
." --save-pdf Save the pdf file" cr
." --clean Clean the output directory" cr
." --clean-all Clean the output directory and 'output'.ps/.pdf" cr
;
: aide
help
cr ." Mots prédéfinis :" cr
syntaxe ;
variable (need-space) false (need-space) !
: +space ( --) true (need-space) ! ;
: -space ( --) false (need-space) ! ;
0 value fd-out
create ps-name$ 5000 chars allot
create pdf-name$ 5000 chars allot
create cmd$ 5000 chars allot
: exec-cmd$ cmd$ count 2dup system type cr ;
\ : exec-cmd$ cmd$ count type ; \ Fake: just print the command
: i->cmd$ cmd$ place ;
: ->cmd$ cmd$ append ;
: basename my-argc @ 1- my-arg 3 - ;
: ps-name basename ps-name$ place s" ps" ps-name$ append ps-name$ count ;
: pdf-name basename pdf-name$ place s" pdf" pdf-name$ append pdf-name$ count ;
: clean s" rm -rf ./output" system ;
: create-dir s" mkdir ./output" system ;
: open-file s" ./output/output.tex" w/o create-file throw to fd-out ;
: close-file fd-out close-file throw ;
: make-dvi
s" cp ./*.eps output/" system
s" cd ./output && latex -halt-on-error output.tex" system ;
: make-ps s" cd ./output && dvips output.dvi -o -t a4" system ;
: view-ps s" gv --nocenter ./output/output.ps" system ;
: make-pdf s" cd ./output && ps2pdf output.ps" system ;
: view-pdf s" xpdf ./output/output.pdf" system ;
: print s" lpr ./output/output.ps" system ;
: save-ps
s" cp output/output.ps " i->cmd$ ps-name ->cmd$ exec-cmd$ ;
: save-pdf
s" cp output/output.pdf " i->cmd$ pdf-name ->cmd$ exec-cmd$ ;
: pdf cr make-pdf save-pdf view-pdf ;
: clean-all
s" rm -rf ./output " i->cmd$ ps-name ->cmd$ s" " ->cmd$ pdf-name ->cmd$ exec-cmd$ ;
: pdf? s" --pdf" find-in-arg? if pdf then ;
: make-pdf? s" --make-pdf" find-in-arg? if make-pdf then ;
: view-pdf? s" --view-pdf" find-in-arg? if view-pdf then ;
: save-ps? s" --save-ps" find-in-arg? if save-ps then ;
: save-pdf? s" --save-pdf" find-in-arg? if save-pdf then ;
: clean? s" --clean" find-in-arg? if clean then ;
: clean-all? s" --clean-all" find-in-arg? if clean-all then ;
: proceed-document make-dvi make-ps view-ps
pdf?
make-pdf? view-pdf? save-ps? save-pdf?
clean? clean-all?
usage ;
variable (->file?) false (->file?) !
variable (->file-futur?) false (->file-futur?) !
: ->file? (->file?) @ ;
: =>stdin false (->file-futur?) ! ;
: =>file true (->file-futur?) ! ;
: set-output (->file-futur?) @ (->file?) ! ;
: reset-output false (->file?) ! ;
: (file-open) clean create-dir open-file ;
: (file-close) close-file proceed-document ;
: (file-type) fd-out write-file throw ;
: (file-cr) s" " fd-out write-line throw ;
: (file-.) N>S fd-out write-line throw ;
: open set-output ->file? if (file-open) then ;
: close ->file? if (file-close) then reset-output ;
: type ->file? if (file-type) else type then ;
: space s" " type ;
: cr ->file? if (file-cr) else cr then ;
: o." postpone ." ; immediate
: ." postpone s" postpone type ; immediate
: . ->file? if (file-.) else . then ;
: print-space
(need-space) @ if space then ;
: print-word
print-space count type +space ;
: execute-or-print ( addr --)
find if execute else print-word then ;
: treat-newlines ( addr n -- addr)
dup 0 > if 0 do cr loop -space else drop then ;
: treat-word ( addr n --)
treat-newlines execute-or-print ;
: treat-EOL
begin BL word dup count nip while execute-or-print repeat drop ;
: generic-space ( a n --) print-space type bl parse type ." }" ;
: generic-complex ( a n --)
print-space ." \underline{" type ." }_{" bl parse type ." }" ;
: header
." \documentclass[a4paper,french,12pt]{article}" cr
." %\documentclass[a4paper,twocolumn,french,12pt]{article}" cr
." \usepackage[latin1]{inputenc}" cr
." %\usepackage{ucs}" cr
." %\usepackage[utf8]{inputenc}" cr
." \usepackage[T1]{fontenc}" cr
." \usepackage[french]{}" cr
." \usepackage[french]{babel}" cr
." \usepackage[]{indentfirst}" cr
." \usepackage[]{graphicx}" cr
." \usepackage{epsfig}" cr
." \usepackage{psfrag}" cr
." \usepackage{multido}" cr
." \usepackage{latexsym} % for \psfrag{sg}{$\rhd\infty$}" cr
." \usepackage[margin=2cm, noheadfoot, portrait]{geometry}" cr
." %\addtolength{\columnsep}{0.5cm}" cr
." %\setlength{\columnseprule}{1pt}" cr
." \pagestyle{empty}" cr cr
." \begin{document}" cr cr
;
: footer
cr cr ." \end{document}" cr cr ;
: (|->|) ." |" ;
: (|->&) ." &" ;
defer (|)
' (|->|) is (|)
: (normal--) ." --" ;
: (tabular--) ." \\ \hline " ;
defer (--)
' (normal--) is (--)
: normal-)( ." )(" ;
: ignore-)( ;
defer [)(]
' normal-)( is [)(]
: open-document open header only-fex ;
: close-document fex-and-forth footer close ;
: call >r ;
: ==> 2over compare 0= if 2drop r> call rdrop exit then rdrop ;
: or-f s" -f" ==> =>file ;
: or-t s" -t" ==> =>stdin ;
: or-h s" -h" ==> help bye ;
: or-help s" --help" ==> help bye ;
: or-aide s" --aide" ==> aide bye ;
: or-a s" -a" ==> aide bye ;
: treat-arg ( a n --)
or-f or-t or-help or-h or-aide or-a 2drop ;
: analyse-args my-argc @ 0 do I my-arg treat-arg loop ;
: quit-if-needed s" -q" find-in-arg? s" --quit" find-in-arg? or if bye then ;
2variable simple-taille s" 1" simple-taille 2!
2variable double-taille s" 2.5" double-taille 2!
2variable taille-reponse simple-taille 2@ taille-reponse 2!
: (->reponse-boite)
doc" Affiche une boite reponse"
." \fbox{\parbox{15cm}{ \vspace{" taille-reponse 2@ type ." cm} ~}} % " ;
: (->reponse)
doc" Met la reponse dans une boite reponse"
." \fbox{\parbox{15cm}{ " treat-EOL ." }}" ;
variable (done) 0 (done) !
: done -1 (done) ! ;
: not-done 0 (done) ! ;
: done? (done) @ ;
: main-loop
begin next-word treat-word done? until ;
\ ,--------------------.
\ | FEX vocabulary |
\ `--------------------'
<fex> definitions
: document(
doc" Commence un nouveau document"
open-document not-done main-loop ;
: )document
doc" Fin du document"
done close-document quit-if-needed ;
: forth(
doc" Execute le code forth"
done fex-and-forth ;
: )forth
doc" Fin de l'execution du code. Revient à fex"
not-done only-fex main-loop ;
: _(
doc" Début de soulignement"
print-space ." \underline{" -space ;
: )_
doc" Fin de soulignement"
." }" ;
: *(
doc" Début de mots en gras"
print-space ." \textbf{" -space ;
: )*
doc" Fin de mots en gras"
." }" ;
: /(
doc" Début de mots en italique"
print-space ." \textit{" -space ;
: )/
doc" Fin de mots en italique"
." }" ;
: titre:
doc" Défini le reste de la ligne comme un titre"
." \begin{center} \fbox{ \Large{\textbf{" -space treat-EOL
." }}} \end{center}" -space ;
: section:
doc" Défini le reste de la ligne comme une nouvelle section"
." \subsection*{" -space treat-EOL
." }" -space ;
: image:
doc" Insert une image"
." \psfig{file=" -space treat-EOL
." }" -space ;
: numerote(
doc" Début de numérotation"
." \begin{enumerate}" -space ;
: )numerote
doc" Fin de numérotation"
." \end{enumerate}" -space ;
: item(
doc" Début des items"
." \begin{itemize}" -space ;
: )item
doc" Fin des items"
." \end{itemize}" -space ;
: =>
doc" Nouvel item"
." \item" +space ;
: (ligne)
doc" Insère une nouvelle ligne"
cr -space ;
: (paragraphe)
doc" Insère un nouveau paragraphe"
cr cr -space ;
: (page)
doc" Insère une nouvelle page"
cr cr ." \newpage" cr cr -space ;
: tableau(
doc" Début d'un tableau\n Syntaxe : tableau( Ncolonnes )(\n case1 | case2 | ...\n --\n case3 | case4 | ...\n )tableau"
." \begin{tabular}{"
['] (|->&) is (|) ['] (tabular--) is (--)
['] ignore-)( is [)(]
bl word number drop 0 do ." |c" loop ." |} \hline" -space ;
: )tableau
doc" Fin d'un tableau"
." \\ \hline \end{tabular}" -space
['] (|->|) is (|) ['] (normal--) is (--)
['] normal-)( is [)(] ;
: --
doc" Nouvelle ligne d'un tableau"
(--) ;
: |
doc" Nouvelle colonne d'un tableau"
print-space (|) ;
: )(
doc" Fin d'une option pour tableau ou boite"
[)(] ;
: hspace=
doc" Ajoute un espace horizontal\n syntaxe : hspace= Ncm"
s" \hspace{" generic-space ;
: vspace=
doc" Ajoute un espace vertical\n syntaxe : vspace= Ncm"
s" \vspace{" generic-space ;
: centre(
doc" Centre le texte"
print-space ." \begin{center}" -space ;
: )centre
doc" Centre le texte"
print-space ." \end{center}" -space ;
: gauche(
doc" Aligne le texte à gauche"
print-space ." \begin{flushleft}" -space ;
: )gauche
doc" Aligne le texte à gauche"
print-space ." \end{flushleft}" -space ;
: droite(
doc" Aligne le texte à droite"
print-space ." \begin{flushright}" -space ;
: )droite
doc" Aligne le text à droite"
print-space ." \end{flushright}" -space ;
: encadre(
doc" Début de texte encadré"
print-space ." \fbox{" -space ;
: )encadre
doc" Fin de texte encadré"
." }" -space ;
: boite(
doc" Début d'une boite\n Syntaxe : boite( Ncm )( bla bla )boite"
['] ignore-)( is [)(]
print-space ." \parbox{" bl word count type ." }{" -space ;
: )boite
doc" Fin d'une boite"
['] normal-)( is [)(]
." }" -space ;
: marge:
doc" Affiche le prochain mot dans la marge à droite"
print-space ." \marginpar{" bl word count type ." }" -space ;
: Z_
doc" Une impedance" s" Z" generic-complex ;
: U_
doc" Une tension" s" U" generic-complex ;
: I_
doc" Un courant" s" I" generic-complex ;
: Y_
doc" Une admittance" s" Y" generic-complex ;
: _Ohm
doc" Affiche le signe Omega" ." \Omega" ;
defer ->reponse:
: (reponse->visible)
doc" Les réponses deviennent visibles"
['] (->reponse) is ->reponse: ;
: (reponse->invisible)
doc" Les réponses deviennent invisibles"
['] (->reponse-boite) is ->reponse: ;
: (simple-reponse)
doc" Simple taille de reponse"
simple-taille 2@ taille-reponse 2! ;
: (double-reponse)
doc" Double la taille de la reponse"
double-taille 2@ taille-reponse 2! ;
: (entete-nom)
doc" Affiche une entête avec nom, prénom et note"
." \parbox{3cm}{Prénom : \\ Nom :} \hspace{4cm} Classe : \hspace{3cm} \framebox[3.8cm][l]{Note : \hspace{1.5cm} / 20 }" ;
fex-and-forth =>file
save-args
clean-args
analyse-args