summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/mfluac.c
blob: 31ed66a4e3e10724c38106bde041a73db56a1220 (plain)
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
#define EXTERN extern

#if defined(JIT)
#include "mfluajitd.h"
#else
#include "mfluad.h"
#endif

#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <kpathsea/kpathsea.h>
#if defined(JIT)
#include <luajit.h>
#endif
/**************************************************************/
/*                                                            */
/* private functions                                          */
/*                                                            */
/**************************************************************/
static lua_State *Luas[1];

static 
void stackdump_g(lua_State* L)
{
    int i;
    int top = lua_gettop(L);
 
    printf("total in stack %d\n",top);
 
    for (i = 1; i <= top; i++)
    {  /* repeat for each level */
        int t = lua_type(L, i);
        printf("[%d][%d] ",i,i-top-1);
        switch (t) {
            case LUA_TSTRING:  /* strings */
                printf("string: '%s'\n", lua_tostring(L, i));
                break;
            case LUA_TBOOLEAN:  /* booleans */
                printf("boolean %s\n",lua_toboolean(L, i) ? "true" : "false");
                break;
            case LUA_TNUMBER:  /* numbers */
                printf("number: %g\n", lua_tonumber(L, i));
                break;
            default:  /* other values */
                printf("%s\n", lua_typename(L, t));
                break;
        }
        printf("  ");  /* put a separator */
    }
    printf("\n");  /* end the listing */
}


static
void priv_lua_reporterrors(lua_State *L, int status)
{
  if ( status!=0 ) {
    fprintf(stderr,"\n! %s\n",lua_tostring(L, -1));
    lua_pop(L, 1); /* remove error message */
  }
}


static
void priv_lua_writemessage(lua_State *L, char *startmsg, char *bodymsg, char *endmsg, int status)
{
  (void) L;
  if ( status!=0 ) {
    fprintf(stdout,"%s%s%s\n",startmsg,bodymsg,endmsg);
  }
}


#define link_field(p) mem[p].hhfield.rh /* {the |link| field of a memory word} */
static int priv_mfweb_link(lua_State *L)
{
  halfword p,q;
  p = (halfword) lua_tonumber(L,1);
  q = link_field(p);
  lua_pushnumber(L,q);
  return 1;
}

#define info_field(p) mem[p].hhfield.lhfield /* {the |info| field of a memory word} */
static int priv_mfweb_info(lua_State *L)
{
  halfword p,q;
  p = (halfword) lua_tonumber(L,1);
  q = info_field(p);
  lua_pushnumber(L,q);
  return 1;
}


#define x_coord(p) mem[p+1].cint /* {the |x| coordinate of this knot} */
static int priv_mfweb_x_coord(lua_State *L)
{
  halfword p;
  int q;
  p = (halfword) lua_tonumber(L,1);
  q = x_coord(p);
  lua_pushnumber(L,q);
  return 1;
}

#define y_coord(p) mem[p+2].cint /* {the |y| coordinate of this knot} */
static int priv_mfweb_y_coord(lua_State *L)
{
  halfword p,q;
  p = (halfword) lua_tonumber(L,1);
  q = y_coord(p);
  lua_pushnumber(L,q);
  return 1;
}


#define left_type(p) mem[p].hhfield.b0 /* {characterizes the path entering this knot} */
static int priv_mfweb_left_type(lua_State *L)
{
  halfword p,q;
  p = (halfword) lua_tonumber(L,1);
  q = left_type(p);
  lua_pushnumber(L,q);
  return 1;
}

#define right_type(p) mem[p].hhfield.b1 /* {characterizes the path leaving this knot} */
static int priv_mfweb_right_type(lua_State *L)
{
  halfword p,q;
  p = (halfword) lua_tonumber(L,1);
  q = right_type(p);
  lua_pushnumber(L,q);
  return 1;
}


#define left_x(p) mem[p+3].cint /* {the |x| coordinate of previous control point} */
static int priv_mfweb_left_x(lua_State *L)
{
  halfword p;
  integer q ;
  p = (halfword) lua_tonumber(L,1);
  q = left_x(p);
  lua_pushnumber(L,q);
  return 1;
}


#define left_y(p) mem[p+4].cint /* {the |y| coordinate of previous control point} */
static int priv_mfweb_left_y(lua_State *L)
{
  halfword p;
  integer q ;
  p = (halfword) lua_tonumber(L,1);
  q = left_y(p);
  lua_pushnumber(L,q);
  return 1;
}


#define right_x(p) mem[p+5].cint /* {the |x| coordinate of next control point} */
static int priv_mfweb_right_x(lua_State *L)
{
  halfword p;
  integer q ;
  p = (halfword) lua_tonumber(L,1);
  q = right_x(p);
  lua_pushnumber(L,q);
  return 1;
}

#define right_y(p) mem[p+6].cint /* {the |y| coordinate of next control point} */
static int priv_mfweb_right_y(lua_State *L)
{
  halfword p;
  integer q;
  p = (halfword) lua_tonumber(L,1);
  q = right_y(p);
  lua_pushnumber(L,q);
  return 1;
}

/* @ Conversely, the |n_sin_cos| routine takes an |angle| and produces the sine */
/* and cosine of that angle. The results of this routine are */
/* stored in global integer variables |n_sin| and |n_cos|. */

/* @<Glob...@>= */
/* @!n_sin,@!n_cos:fraction; {results computed by |n_sin_cos|} */

/* @ Given an integer |z| that is $2^{20}$ times an angle $\theta$ in degrees, */
/* the purpose of |n_sin_cos(z)| is to set */
/* |x=@t$r\cos\theta$@>| and |y=@t$r\sin\theta$@>| (approximately), */
/* for some rather large number~|r|. The maximum of |x| and |y| */
/* will be between $2^{28}$ and $2^{30}$, so that there will be hardly */
/* any loss of accuracy. Then |x| and~|y| are divided by~|r|. */
static int priv_mfweb_n_sin_cos(lua_State *L)
{
  nsincos(lua_tonumber(L,1));
  return 0;
}

	   
/* @ When a lot of work is being done on a particular edge structure, we plant */
/* a pointer to its main header in the global variable |cur_edges|. */
/* This saves us from having to pass this pointer as a parameter over and */
/* over again between subroutines. */

/* Similarly, |cur_wt| is a global weight that is being used by several */
/* procedures at once. */

/* @<Glob...@>= */
/* @!cur_edges:pointer; {the edge structure of current interest} */
/* @!cur_wt:integer; {the edge weight of current interest} */
static int priv_mfweb_LUAGLOBALGET_cur_edges(lua_State *L)
{
  halfword p = curedges;
  lua_pushnumber(L,p);
  return 1;
}


/* @<Glob...@>= */
/* @!cur_type:small_number; {the type of the expression just found} */
/* @!cur_exp:integer; {the value of the expression just found} */
static int priv_mfweb_LUAGLOBALGET_cur_exp(lua_State *L)
{
  halfword p = curexp;
  lua_pushnumber(L,p);
  return 1;
}






/* @d mem_top==30000 {largest index in the |mem| array dumped by \.{INIMF}; */
/*   must be substantially larger than |mem_min| */
/*   and not greater than |mem_max|} */
static int priv_mfweb_LUAGLOBALGET_mem_top(lua_State *L)
{
  integer p = memtop;
  lua_pushnumber(L,p);
  return 1;
}



/* And there are two global variables that affect the rounding */
/* decisions, as we'll see later; they are called |cur_pen| and |cur_path_type|. */
/* The latter will be |double_path_code| if |make_spec| is being */
/* applied to a double path.*/
/* @!cur_pen:pointer; {an implicit input of |make_spec|, used in autorounding} */
static int priv_mfweb_LUAGLOBALGET_cur_pen(lua_State *L)
{
  halfword p = curpen;
  lua_pushnumber(L,p);
  return 1;
}


/* @ The current octant code appears in a global variable. If, for example, */  
/* we have |octant=third_octant|, it means that a curve traveling in a north to */  
/* north-westerly direction has been rotated for the purposes of internal */  
/* calculations so that the |move| data travels in an east to north-easterly */  
/* direction. We want to unrotate as we update the edge structure.       */  
/*                                                                       */
/* @<Glob...@>=                                                          */ 
/* @!octant:first_octant..sixth_octant; {the current octant of interest} */
static int priv_mfweb_LUAGLOBALGET_octant(lua_State *L)
{
  char p = octant;
  lua_pushnumber(L,p);
  return 1;
}


/* @ The |make_spec| routine has an interesting side effect, namely to set */
/* the global variable |turning_number| to the number of times the tangent */
/* vector of the given cyclic path winds around the origin.                */
/*                                                                         */
/* @<Glob...@>=                                                            */
/* @!turning_number:integer; {another output of |make_spec|}               */
static int priv_mfweb_LUAGLOBALGET_turning_number(lua_State *L)
{
  integer p = turningnumber;
  lua_pushnumber(L,p);
  return 1;
}



/* @ \MF\ also has a bunch of internal parameters that a user might want to      */
/* fuss with. Every such parameter has an identifying code number, defined here. */
/* Warning: these parameters must be the same of the original MF !!              */
#define tracing_titles 1 /*show titles online when they appear} */
#define tracing_equations 2 /*show each variable when it becomes known} */
#define tracing_capsules 3 /*show capsules too} */
#define tracing_choices 4 /*show the control points chosen for paths} */
#define tracing_specs 5 /*show subdivision of paths into octants before digitizing} */
#define tracing_pens 6 /*show details of pens that are made} */
#define tracing_commands 7 /*show commands and operations before they are performed} */
#define tracing_restores 8 /*show when a variable or internal is restored} */
#define tracing_macros 9 /*show macros before they are expanded} */
#define tracing_edges 10 /*show digitized edges as they are computed} */
#define tracing_output 11 /*show digitized edges as they are output} */
#define tracing_stats 12 /*show memory usage at end of job} */
#define tracing_online 13 /*show long diagnostics on terminal and in the log file} */
#define year 14 /*the current year (e.g., 1984)} */
#define month 15 /*the current month (e.g., 3 $\equiv$ March)} */
#define day 16 /*the current day of the month} */
#define time 17 /*the number of minutes past midnight when this job started} */
#define char_code 18 /*the number of the next character to be output} */
#define char_ext 19 /*the extension code of the next character to be output} */
#define char_wd 20 /*the width of the next character to be output} */
#define char_ht 21 /*the height of the next character to be output} */
#define char_dp 22 /*the depth of the next character to be output} */
#define char_ic 23 /*the italic correction of the next character to be output} */
#define char_dx 24 /*the device's $x$ movement for the next character, in pixels} */
#define char_dy 25 /*the device's $y$ movement for the next character, in pixels} */
#define design_size 26 /*the unit of measure used for |char_wd..char_ic|, in points} */
#define hppp 27 /*the number of horizontal pixels per point} */
#define vppp 28 /*the number of vertical pixels per point} */
#define x_offset 29 /*horizontal displacement of shipped-out characters} */
#define y_offset 30 /*vertical displacement of shipped-out characters} */
#define pausing 31 /*positive to display lines on the terminal before they are read} */
#define showstopping 32 /*positive to stop after each \&{show} command} */
#define fontmaking 33 /*positive if font metric output is to be produced} */
#define proofing 34 /*positive for proof mode, negative to suppress output} */
#define smoothing 35 /*positive if moves are to be ``smoothed''} */
#define autorounding 36 /*controls path modification to ``good'' points} */
#define granularity 37 /*autorounding uses this pixel size} */
#define fillin 38 /*extra darkness of diagonal lines} */
#define turning_check 39 /*controls reorientation of clockwise paths} */
#define warning_check 40 /*controls error message when variable value is large} */
#define boundary_char 41 /*the right boundary character for ligatures} */
/* @d max_given_internal=41 */

static int priv_mfweb_LUAGLOBALGET_char_code(lua_State *L)
{
  integer p =  roundunscaled ( internal [char_code]) % 256 ;
  lua_pushnumber(L,p);
  return 1;
}
static int priv_mfweb_LUAGLOBALGET_char_ext(lua_State *L)
{
  integer p =  roundunscaled ( internal [char_ext]) ;
  lua_pushnumber(L,p);
  return 1;
}


static int priv_mfweb_LUAGLOBALGET_char_wd(lua_State *L)
{
  integer p =   internal [char_wd]  ;
  lua_pushnumber(L,p);
  return 1;
}
static int priv_mfweb_LUAGLOBALGET_char_ht(lua_State *L)
{
  integer p =   internal [char_ht]  ;
  lua_pushnumber(L,p);
  return 1;
}
static int priv_mfweb_LUAGLOBALGET_char_dp(lua_State *L)
{
  integer p =   internal [char_dp]  ;
  lua_pushnumber(L,p);
  return 1;
}
static int priv_mfweb_LUAGLOBALGET_char_ic(lua_State *L)
{
  integer p =   internal [char_ic]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_char_dx(lua_State *L)
{
  integer p =   internal [char_dx]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_char_dy(lua_State *L)
{
  integer p =   internal [char_dy]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_designsize(lua_State *L)
{
  integer p =   internal [design_size] ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_hppp(lua_State *L)
{
  integer p =   internal [hppp]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_vppp(lua_State *L)
{
  integer p =   internal [vppp]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_x_offset(lua_State *L)
{
  integer p =   internal [x_offset]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_y_offset(lua_State *L)
{
  integer p =   internal [y_offset]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_granularity(lua_State *L)
{
  integer p =   internal [granularity]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_fillin(lua_State *L)
{
  integer p =   internal [fillin]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_turning_check(lua_State *L)
{
  integer p =   internal [turning_check]  ;
  lua_pushnumber(L,p);
  return 1;
}

static int priv_mfweb_LUAGLOBALGET_boundary_char(lua_State *L)
{
  integer p =   internal [boundary_char]  ;
  lua_pushnumber(L,p);
  return 1;
}



/**************************************************************/
/*                                                            */
/* mflua layer                                                */
/*                                                            */
/**************************************************************/
static const struct luaL_Reg MFbuiltin_l[] = {
  {"link", priv_mfweb_link},
  {"info", priv_mfweb_info},
  {"x_coord", priv_mfweb_x_coord},
  {"y_coord", priv_mfweb_y_coord},
  {"left_type", priv_mfweb_left_type},
  {"right_type", priv_mfweb_right_type},
  {"left_x", priv_mfweb_left_x},
  {"left_y", priv_mfweb_left_y},
  {"right_x", priv_mfweb_right_x},
  {"right_y", priv_mfweb_right_y},
  {"n_sin_cos", priv_mfweb_n_sin_cos},
  {"cur_edges", priv_mfweb_LUAGLOBALGET_cur_edges},
  {"cur_exp", priv_mfweb_LUAGLOBALGET_cur_exp},
  {"mem_top", priv_mfweb_LUAGLOBALGET_mem_top},
  {"cur_pen", priv_mfweb_LUAGLOBALGET_cur_pen},
  {"octant", priv_mfweb_LUAGLOBALGET_octant},
  {"char_code", priv_mfweb_LUAGLOBALGET_char_code},
  {"char_ext", priv_mfweb_LUAGLOBALGET_char_ext},
  {"char_wd", priv_mfweb_LUAGLOBALGET_char_wd},
  {"char_ht", priv_mfweb_LUAGLOBALGET_char_ht},
  {"char_dp", priv_mfweb_LUAGLOBALGET_char_dp},
  {"char_ic", priv_mfweb_LUAGLOBALGET_char_ic},
  {"char_dx", priv_mfweb_LUAGLOBALGET_char_dx},
  {"char_dy", priv_mfweb_LUAGLOBALGET_char_dy},
  {"designsize", priv_mfweb_LUAGLOBALGET_designsize},
  {"hppp", priv_mfweb_LUAGLOBALGET_hppp},
  {"vppp", priv_mfweb_LUAGLOBALGET_vppp},
  {"x_offset", priv_mfweb_LUAGLOBALGET_x_offset},
  {"y_offset", priv_mfweb_LUAGLOBALGET_y_offset},
  {"granularity", priv_mfweb_LUAGLOBALGET_granularity},
  {"fillin", priv_mfweb_LUAGLOBALGET_fillin},
  {"turning_check", priv_mfweb_LUAGLOBALGET_turning_check},
  {"boundary_char", priv_mfweb_LUAGLOBALGET_boundary_char},
  {"turning_number", priv_mfweb_LUAGLOBALGET_turning_number},
  {NULL, NULL}                /* sentinel */
};


#define lua_swap(L) lua_insert(L, -2) 
  
#define GETGLOBALTABLEMFLUA(a)  lua_getglobal(L, "mflua");\
  if (!lua_istable(L, -1)) {                               \
    lua_pushstring(L,#a);	                           \
    lua_pushstring(L,":global table mflua not found");	   \
    lua_concat (L, 2);                                     \
    priv_lua_reporterrors(L, 1);			   \
  }                                                        \



int mfluabeginprogram(void)
{
  lua_State *L ;
  char* luafile ;
  int res ;

  L = luaL_newstate();
  luaL_openlibs(L);
  Luas[0] = L;
  /* register lua functions */
  luaopen_kpse(L);
  /* to be sure of having a clear stack */
  lua_settop(L,0);
  

  lua_getglobal(L, "mflua");
  if (!lua_istable(L, -1)) {
    lua_pop(L,1);
    lua_newtable(L);
    lua_setglobal(L,"mflua");
    /* check it */
    lua_getglobal(L,"mflua");
    if (!lua_istable(L, -1)) {
      printf("mflua table NOT registered!\n");
    } else {
      lua_pushstring(L,"MFbuiltin");
#ifdef MFLuaJIT
      /* 5.1 */ 
      luaJIT_setmode(L, 0, LUAJIT_MODE_ENGINE|LUAJIT_MODE_OFF);
      lua_newtable(L);
      luaL_register (L,NULL,MFbuiltin_l);
#else
      luaL_newlib(L,MFbuiltin_l);
#endif
      lua_settable(L, -3);
    }
    lua_pop(L,1);
  }
  
  
  luafile = kpse_find_file("mflua.lua", kpse_lua_format, 0);
  if (luafile==NULL) {
    res = 1;
    lua_pushstring(L,"mflua.lua not found.");
    priv_lua_reporterrors(L, res);
    goto EXIT;
  }
  res = luaL_loadfile(L, luafile);
  free(luafile);
  if ( res==LUA_OK ) {
    if(res=lua_pcall(L,0,0,0)){
      priv_lua_reporterrors(L, res);
      goto EXIT;
    }
  } else {
    priv_lua_reporterrors(L, res);
    goto EXIT;
  }
  /* Still a chance that mflua is around */
  GETGLOBALTABLEMFLUA(mfluabeginprogram);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"begin_program");
    if(res=lua_pcall(L,0,0,0))
      priv_lua_reporterrors(L, res);
  }
 EXIT:
  lua_settop(L,0);
  return 0;
}

/* /\* TODO*\/ */
/* int mfluaendprogram(void) */
/* { */
/*   lua_State *L; */
/*   char* luafile; */
/*   int res; */

/*   L = Luas[0]; */
/*   GETGLOBALTABLEMFLUA(mfluaendprogram); */
/*   luafile = kpse_find_file("end_program.lua", kpse_lua_format, 0); */
/*   if (luafile==NULL) { */
/*     res = 1; */
/*     lua_pushstring(L,"end_program.lua not found"); */
/*     priv_lua_reporterrors(L, res); */
/*     lua_settop(L,0); */
/*     return 0; */
/*   } */
/*   priv_lua_writemessage(L,"(",luafile,")",1); */
/*   res = luaL_loadfile(L, luafile); */
/*   free(luafile); */
/*   if ( res==0 ) { */
/*       res = lua_pcall(L, 0, 0, 0); */
/*     } */
/*   /\* stackdump_g(L); *\/ */
/*   priv_lua_reporterrors(L, res); */
/*   lua_settop(L,0); */
/*   return 0; */
/* } */

int mfluaendprogram(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaendprogram);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"end_program");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in end_program:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPREstartofMF(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREstartofMF);
  if (lua_istable(L, -1)) { 
    lua_getfield(L,-1,"PRE_start_of_MF");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in PRE_start_of_MF:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPREmaincontrol(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmaincontrol);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_main_control");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in PRE_main_control:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}

int mfluaPOSTmaincontrol(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmaincontrol);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_main_control");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in POST_main_control:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;

}


int mfluainitialize(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluainitialize);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "mflua_initialize");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in mflua_initialize:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}
  

int mfluaPOSTfinalcleanup(void)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTfinalcleanup);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_final_cleanup");
    /* do the call (0 arguments, 0 result) */
    if(res = lua_pcall(L, 0, 0, 0)){
      lua_pushstring(L,"error in POST_final_cleanup:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
    lua_settop(L,0);
    return 0;
}


/* Not a good way: */
/* 1) these definitions are taken from mfcoerc.h which is generated at run-time */
/* 2) too much coupling with webc2c translation of mf.web*/
/*                               */
/* #define printdiagnostic(s, t, nuline) zprintdiagnostic((strnumber) (s), (strnumber) (t), (boolean) (nuline)) */
/* #define print(s) zprint((integer) (s)) */
/* #define printarg(q, n, b) zprintarg((halfword) (q), (integer) (n), (halfword) (b) */
/* int mfluaprintpath P3C(halfword, h , strnumber, s , boolean, nuline) */
/* { */
/*   fprintf(stderr,"\n! %d \n",s); */
/*   printdiagnostic ( 517 , s , nuline ) ; */
/*   println () ; */
/*   print ( 518 ) ; */
/*   println () ; */
/*   fprintf(stderr,"\n! %s\n","*end***************"); */

/*   lua_State *L = Luas[0]; */
/*   char* file = kpse_find_file("print_path.lua", kpse_lua_format, 0); */
/*   int res = luaL_loadfile(L, file); */
/*   if (file) free (file); */
/*   if ( res==0 ) { */
/*       res = lua_pcall(L, 0, 0, 0); */
/*     } */
/*   // */
/*   //stackdump_g(L); */

/*   // */
/*   priv_lua_reporterrors(L, res); */
/*   return 0; */

/* } */

int mfluaprintpath(halfword h, strnumber s, boolean nuline)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaprintpath);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "printpath");
    lua_pushnumber(L, h);   /* push 1st argument */
    lua_pushnumber(L, s);   /* push 2nd argument */
    lua_pushnumber(L, nuline);   /* push 3nd argument */
    /* do the call (3 arguments, 0 result) */
    if(res = lua_pcall(L, 3, 0, 0)){
      lua_pushstring(L,"error in printpath:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}

 
int mfluaprintedges(strnumber s, boolean nuline, integer xoff, integer yoff)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaprintedges);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "printedges");
    lua_pushnumber(L, s);   /* push 1st argument */
    lua_pushnumber(L, nuline);   /* push 2nd argument */
    lua_pushnumber(L, xoff);   /* push 3nd argument */
    lua_pushnumber(L, yoff);   /* push 4nd argument */
    /* do the call (4 arguments, 0 result) */
    if(res = lua_pcall(L, 4, 0, 0)){
      lua_pushstring(L,"error in printedges:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


/*                                     */
/* Sensor before and after offset_prep */
/*                                     */
int mfluaPREoffsetprep(halfword c, halfword h)
{

  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREoffsetprep);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_offset_prep");
    lua_pushnumber(L, c);   /* push 1st argument */
    lua_pushnumber(L, h);   /* push 2nd argument */
    /* do the call (2 arguments, 0 result) */
    if(res = lua_pcall(L, 2, 0, 0)){ 
      lua_pushstring(L,"error in PRE_offset_prep:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPOSToffsetprep(halfword c, halfword h)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSToffsetprep);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_offset_prep");
    lua_pushnumber(L, c);   /* push 1st argument */
    lua_pushnumber(L, h);   /* push 2nd argument */
    /* do the call (2 arguments, 0 result) */
    if(res = lua_pcall(L, 2, 0, 0)){ 
      lua_pushstring(L,"error in POST_offset_prep:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPREmakespecrhs(halfword rhs)
{
  lua_State *L;
  int res;
  
  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmakespecrhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_make_spec_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_make_spec_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPOSTmakespecrhs(halfword rhs)
{
  lua_State *L;
  int res;
  
  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmakespecrhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_make_spec_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_make_spec_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPREmakespeclhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmakespeclhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_make_spec_lhs");
    lua_pushnumber(L, lhs);   /* push 1st argument */
  /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_make_spec_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}

int mfluaPOSTmakespeclhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmakespeclhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_make_spec_lhs");
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_make_spec_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPREfillenveloperhs(halfword rhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREfillenveloperhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_fill_envelope_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){ 
      lua_pushstring(L,"error in PRE_fill_envelope_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPOSTfillenveloperhs(halfword rhs)
{
  lua_State *L;
  int res;
  
  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTfillenveloperhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_fill_envelope_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){ 
      lua_pushstring(L,"error in POST_fill_envelope_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPREfillenvelopelhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREfillenvelopelhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_fill_envelope_lhs");
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_fill_envelope_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPOSTfillenvelopelhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTfillenvelopelhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_fill_envelope_lhs");
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_fill_envelope_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPREfillspecrhs(halfword rhs)
{
  lua_State *L;
  int res;
  
  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREfillspecrhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_fill_spec_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){ 
      lua_pushstring(L,"error in PRE_fill_spec_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}

int mfluaPOSTfillspecrhs(halfword rhs)
{
  lua_State *L;
  int res;
  
  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTfillspecrhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_fill_spec_rhs");
    lua_pushnumber(L, rhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){ 
      lua_pushstring(L,"error in POST_fill_spec_rhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}

int mfluaPREfillspeclhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREfillspeclhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_fill_spec_lhs");
    L = Luas[0];
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_fill_spec_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPOSTfillspeclhs(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTfillspeclhs);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_fill_spec_lhs");
    L = Luas[0];
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_fill_spec_lhs:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPREmovetoedges(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmovetoedges);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "PRE_move_to_edges");
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_move_to_edges:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPOSTmovetoedges(halfword lhs)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmovetoedges);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1, "POST_move_to_edges");
    lua_pushnumber(L, lhs);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_move_to_edges:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPREmakechoices(halfword p)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmakechoices);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"PRE_make_choices");  /* function to be called */
    lua_pushnumber(L, p);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in PRE_make_choices:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaPOSTmakechoices(halfword p)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmakechoices);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"POST_make_choices");  /* function to be called */
    lua_pushnumber(L, p);   /* push 1st argument */
    /* do the call (1 arguments, 0 result) */
    if(res = lua_pcall(L, 1, 0, 0)){
      lua_pushstring(L,"error in POST_make_choices:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



int mfluaprintretrogradeline(integer x0, integer y0, integer cur_x, integer cur_y)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaprintretrogradeline);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"print_retrograde_line");
    lua_pushnumber(L, x0);   /* push 1st argument */
    lua_pushnumber(L, y0);   /* push 2nd argument */
    lua_pushnumber(L, cur_x);   /* push 3th argument */
    lua_pushnumber(L, cur_y);   /* push 4th argument */
    /* do the call (4 arguments, 0 result) */
    if(res = lua_pcall(L, 4, 0, 0)){
      lua_pushstring(L,"error in print_retrograde_line:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaPREmakeellipse(integer major_axis, integer minor_axis, integer theta , integer tx, integer ty,integer q)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPREmakeellipse);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"PRE_make_ellipse");
    lua_pushnumber(L, major_axis);   /* push 1st argument */
    lua_pushnumber(L, minor_axis);   /* push 2nd argument */
    lua_pushnumber(L, theta);   /* push 3th argument */
    lua_pushnumber(L, tx);   /* push 4th argument */
    lua_pushnumber(L, ty);   /* push 5th argument */
    lua_pushnumber(L, q);   /* push 6th argument */
    /* do the call (6 arguments, 0 result) */
    if(res = lua_pcall(L, 6, 1, 0)){
      lua_pushstring(L,"error in PRE_make_ellipse:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}
      


int mfluaPOSTmakeellipse(integer major_axis, integer minor_axis, integer theta , integer tx, integer ty,integer q)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaPOSTmakeellipse);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"POST_make_ellipse");
    lua_pushnumber(L, major_axis);   /* push 1st argument */
    lua_pushnumber(L, minor_axis);   /* push 2nd argument */
    lua_pushnumber(L, theta);   /* push 3th argument */
    lua_pushnumber(L, tx);   /* push 4th argument */
    lua_pushnumber(L, ty);   /* push 5th argument */
    lua_pushnumber(L, q);   /* push 6th argument */
    /* do the call (6 arguments, 0 result) */
    if(res = lua_pcall(L, 6, 1, 0)){
      lua_pushstring(L,"error in POST_make_ellipse:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}
      

int mfluaprinttransitionlinefrom(integer x, integer y)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaprinttransitionlinefrom);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"print_transition_line_from");
    lua_pushnumber(L, x);   /* push 1st argument */
    lua_pushnumber(L, y);   /* push 2nd argument */
    /* do the call (2 arguments, 0 result) */
    if(res = lua_pcall(L, 2, 0, 0)){
      lua_pushstring(L,"error in print_transition_line_from:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}


int mfluaprinttransitionlineto(integer x, integer y)
{
  lua_State *L;
  int res;

  L = Luas[0];
  GETGLOBALTABLEMFLUA(mfluaprinttransitionlineto);
  if (lua_istable(L, -1)) {
    lua_getfield(L,-1,"print_transition_line_to");
    lua_pushnumber(L, x);   /* push 1st argument */
    lua_pushnumber(L, y);   /* push 2nd argument */
    /* do the call (2 arguments, 0 result) */
    if(res = lua_pcall(L, 2, 0, 0)){
      lua_pushstring(L,"error in print_transition_line_to:");
      lua_swap(L);lua_concat (L, 2);
      priv_lua_reporterrors(L, res);
    }
  }
  lua_settop(L,0);
  return 0;
}



#define priv_append_char(c) do { \
  strpool[poolptr]=c;            \
  poolptr++;                     \
} while(0)  

#define  priv_str_room(l) do   {    \
  if ((poolptr + l) > maxpoolptr) { \
    if ((poolptr + l) > poolsize) { \
      fprintf(stderr,"\n! (Lua) MFLua capacity exceeded, sorry [pool size=%ld]\nIf you really absolutely need more capacity,\nyou can ask a wizard to enlarge me.\n",poolsize-initpoolptr); \
      exit(1);                      \
    }                               \
    maxpoolptr = poolptr + l;       \
  }                                 \
} while (0)

int mfluarunscript(halfword j, halfword first, halfword limit) 
{
  int i ;
  lua_State *L ;
  unsigned char last_char;
  int error;
  const char *str;
  size_t len;
  L = Luas[0];
  last_char = strpool[j+limit-first] ;
  /* end of a C string */ 
  strpool[j+limit-first] = '\0';
  str = (const char *)(strpool+j) ;
  /* do the call (0 arguments, 1 result) */
  error = (luaL_loadstring(L, str) || lua_pcall(L, 0, 1, 0)) ; 
  strpool[j+limit-first] = last_char;
  if(error) {
    priv_lua_reporterrors(L,error);
  } else {
    /* retrieve result */
    str = lua_tolstring(L, -1,&len);
    priv_str_room(len); 
    for(i=0;i<len;i++){
      priv_append_char( (unsigned char)(*(str+i))) ; 
    }
    lua_pop(L, 1);  /* pop returned value */
  }
  return 0;
}