-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMPP.C
1626 lines (1399 loc) · 27.9 KB
/
CMPP.C
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
/*
プリンタ用紙節約プログラムCMPP
By Ken/ichiro(OPA)
*/
#define VERSION "2.01"
#include <stdio.h>
#include <dos.h>
#include <string.h>
#include <farstr.h>
#include <stdlib.h>
#include <ctype.h>
#include "opa.h"
#define UNDEF (65535U)
#define ESC "\033"
#define FS "\x01c"
#define LINEMAX 20000 /* 最大ファイル行数(default 20000)*/
#define BUF16SIZE 9800
#define BUFPRNSIZE (BUF16SIZE*3)
#define PBIOS_CALL YES
#define LOCALCACHE OFF
enum Printers{
P2, /* NEC24ドット */
P4, /* NEC48ドット */
E2, /* エプソン24ドット */
E4, /* エプソン48ドット */
MAX_PRINTERS
};
enum Papers{
NF, /* 連続用紙 */
A4, /* A4 */
B4, /* B4 */
B5, /* B5 */
FF, /* ファンフォールド */
OT, /* その他 */
MAX_PAPERS
};
extern char
*_argv0,
*_environ;
FILE
*fp;
struct dosdate_t
nowdate;
struct dostime_t
nowtime;
uchar
helpmes[]=
"使用法:\n"
"\tCMPP [スイッチ|ファイル名]...\n"
"プリンタ用紙を節約して印字します。\n"
"使用できるオプションは次の通りです。(括弧内は初期値)\n\n"
"プリンタの種類:\n"
"\t/P2\tPC-PR 24ドット\n"
"\t/E2\tESC/P 24ドット\n"
"\t/E4\tESC/P 48ドット\n"
"用紙の種類:\n"
"\t/FF\tファンフォールド紙\n"
"\t/A4\tA4単票用紙\n"
"\t/B5\tB5単票用紙\n"
"\t/B4\tB4単票用紙\n"
"\t/NF\t連続用紙\n"
"\t/PIn\tインチ単位ページ長指定 n=1-127\n"
"その他:\n"
"\t/DNn\t段組数を指定 n=1-7(2)\n"
"\t/LPn\t1ページ1段に入れる行数 n=1以上\n"
"\t/66x\t1段の行数を66の倍数にする(-)\n"
"\t/HTn\tタブ間隔 - で自動 n=1-80(-)\n"
"\t/PAn-m\t印刷するページを指定 n,m=1以上(-)\n"
"\t/HEx\tヘッダ印刷をする(+)\n"
"\t/LNx\t行番号をつける(-)\n"
"\t/BFx\t文字を太くする(-)\n"
"\t/NC\tCGウィンドウを使わない\n"
"\t/COx\t印刷せずにページ数を表示する(-)\n"
"\t/WA\t一旦停止する\n"
"n は正の整数、x は'+'または'-'。",
er_prn[]=
"er:プリンタ種類を指定してください : [",
er_num[]=
"er:値が不適当です : [",
er_plu[]=
"er:'+'または'-'が必要です : [",
*papername[MAX_PAPERS]={"連続用紙","A4","B4","B5","FF紙","その他"},
decor_caseis_upper=TRUE,
header1[85],
header2[85],
readbuf[170],
charfont[34],
_line_pointer[LINEMAX],
#if LOCALCACHE
prt_pq[4096],
#endif
buf16[BUF16SIZE];
uchar far
bufprn[BUFPRNSIZE];
uint
now_line,
maxline,
maxpage,
printed_line,
print_line,
printed_files=0,
counted_files=0,
error_files=0,
pagecount[MAX_PAPERS],
startpage=0,
endpage=LINEMAX,
printer=UNDEF,
paper=UNDEF,
pageline=UNDEF,
lineparpage=UNDEF,
dansuu=2,
dpi,
tabsize,
tabflag=OFF,
boldflag=OFF,
countflag=OFF,
headerflag=ON,
cgwflag=ON,
numflag=OFF,
buf16_x,
bufprn_y,
head_dots,
h_dots,
#if LOCALCACHE
prt_t=0,
prt_e=0,
#endif
filedate,
filetime;
ulong
pagecount_nf=0,
pagedot,
now_pointer;
int iskanji(char c)
{
return(0x81<=c && c<=0x9f || 0xe0<=c && c<=0xfc);
}
void sftstr(char s[],int w)
{
memmove(&s[w],&s[0],strlen(s)+1);
}
char *nextstr(char *s)
{
return(s + strlen(s) + 1);
}
void backelase(int n)
{
for(;n>0;n--)
printf("\b \b");
}
char *getpath(char *d,char *s)
{
int i,n;
char c;
for(i=0,n=0;s[i];i++){
c=s[i];
if(c=='\\' || c==':' || c=='/')
n=i+1;
else if(iskanji(c))
i++;
}
strncpy(d,s,n);
d[n]=NULL;
return(&s[n]); /* パスを除いたファイル名を返す */
}
long get_lp(uint line) /* かの有名なファイルポインタを得る関数 */
{
if(line<now_line){
while(line<now_line)
now_pointer-=_line_pointer[--now_line];
}else{
if(line>maxline)
line=maxline;
while(line>now_line)
now_pointer+=_line_pointer[now_line++];
}
return(now_pointer);
}
end(int rcode,int aflag)
{
if(aflag)
printf("\nProcess abort : ");
else
printf("\nProcess end : ");
if(printed_files)
printf("print %d , ",printed_files);
if(counted_files)
printf("count %d , ",counted_files);
if(error_files)
printf("error %d.\n",error_files);
else
printf("no error.\n");
exit(rcode);
}
uint bgetc(void) /* BIOS経由1文字読み込み */
{
uint _asm_();
return(
_asm_( "\n"
" xor ax,ax \n"
" int 18h \n"
)
);
}
int __pstat(void) /* プリンタのスティタス取得 */
{
void _asm_();
#if PBIOS_CALL
_asm_( "\n"
" mov ah,12h \n"
" int 1ah \n"
" mov al,ah \n"
);
#else
_asm_( "\n"
" in al,42h \n"
" and al,4 \n"
" mov ah,al \n"
);
#endif
}
void __pputc(char c) /* プリンタに1バイト送出 */
{
void _asm_();
#if PBIOS_CALL
_asm_( "\n"
" mov ah,11h \n"
" int 1ah \n"
);
#else
_asm_( "\n"
" mov ah,al \n"
"A::in al,42h \n"
" test al,4 \n"
" jz A \n"
" mov al,ah \n"
" out 40h,al \n"
" in al,44h \n"
" and al,7fh \n"
" out 44h,al \n"
" or al,80h \n"
" jmp $+2 \n"
" out 44h,al \n"
);
#endif
}
void _pflush(void)
{
#if LOCALCACHE
while(prt_t!=prt_e){
__pputc(prt_pq[prt_t++]);
if(prt_t>=4096)
prt_t=0;
}
#endif
}
void _pputc(char c)
{
#if LOCALCACHE
if(((prt_t-prt_e+4096)%4096)==1)
_pflush();
prt_pq[prt_e++]=c;
if(prt_e>=4096)
prt_e=0;
while(prt_t!=prt_e && __pstat()){
__pputc(prt_pq[prt_t++]);
if(prt_t>=4096)
prt_t=0;
}
#else
__pputc(c);
#endif
}
void pputc(uint c) /* プリンタに1文字印刷要求 */
{
if(c>255){
if(printer==P2){
_pputc(27); _pputc(75);
_pputc(c>>8);_pputc((char)c);
_pputc(27); _pputc(72);
}else{
_pputc(28); _pputc(38);
_pputc(c>>8);_pputc((char)c);
_pputc(28); _pputc(46);
}
}else{
_pputc(c);
}
}
uint sfttojis(char shi,char slo)
{
char jhi,jlo,k;
if(shi<=0x9f)
k=0x71;
else
k=0xb1;
if(slo<=0x9e){
jhi=(shi-k)*2+1;
if(slo>=0x80)
jlo=slo-0x20;
else
jlo=slo-0x1f;
}else{
jhi=(shi-(k-1))*2;
jlo=slo-0x7e;
}
return((jhi<<8)+jlo);
}
void pputs(char *s) /* プリンタに1行送出 */
{
while(*s)
if(iskanji(*s)){
pputc(sfttojis(*s,*(s+1)));
s+=2;
}else
pputc(*s++);
}
void cgw_fontget(uint jcode) /* フォントを得る CGウィンドウ使う */
{ /* 漢字のみ。 */
char far
*win=(char far *)0xa4000000L;
int
i;
/* if(jcode<256){ /* ANK */
charfont[0]=2;
charfont[1]=1;
outp8(0x68,0xb);
outp8(0xa1,0);
outp8(0xa3,(char)jcode);
for(i=0;i<16;i++)
charfont[2+i]=win[(i << 1)+1];
outp8(0x68,0xa);
}else*/ if(jcode>=0x2920 && jcode<0x2b80){ /* 半角漢字 */
charfont[0]=2;
charfont[1]=1;
outp8(0x68,0xb);
outp8(0xa3,(jcode >> 8)-0x20);
outp8(0xa1,(char)jcode);
outp8(0xa5,0x20);
for(i=0;i<16;i++)
charfont[2+i]=win[(i << 1)+1];
outp8(0x68,0xa);
#if 0
}else if( (jcode>=0x2800 && jcode<0x3000) || /* 判定を厳密に */
(jcode>=0x7600 && jcode<0x7700) ||
(jcode>=0x7900 && jcode<0x7D00)){
#else
}else if((jcode>=0x2800 && jcode<0x3000)||jcode>=0x7600){/* 判定を簡単に */
#endif /* 特殊漢字 */
charfont[0]=2;
charfont[1]=2;
outp8(0x68,0xb);
outp8(0xa3,(jcode >> 8)-0x20);
outp8(0xa1,(char)jcode);
outp8(0xa5,0x20); /* 左 */
for(i=0;i<16;i++)
charfont[2+(i << 1)]=win[(i << 1)+1];
outp8(0xa5,0); /* 右 */
for(i=0;i<16;i++)
charfont[3+(i << 1)]=win[(i << 1)+1];
outp8(0x68,0xa);
}else{ /* 通常漢字 */
charfont[0]=2;
charfont[1]=2;
outp8(0x68,0xb);
outp8(0xa3,(jcode >> 8)-0x20);
outp8(0xa1,(char)jcode);
for(i=0;i<32;i++)
charfont[2+i]=win[i];
outp8(0x68,0xa);
}
}
void nocgw_fontget(uint jcode) /* フォントを得る 安全かつ遅い */
{
union REGS
regs;
if(jcode<256)
jcode |= 0x8000;
regs.x.dx=jcode;
regs.x.bx=FP_SEG(charfont);
regs.x.cx=FP_OFF(charfont);
regs.h.ah=0x14;
int86(0x18,®s,®s);
}
void fontget(uint jcode)
{
if(cgwflag && jcode>=256)
cgw_fontget(jcode);
else
nocgw_fontget(jcode);
}
void decor_fn(char *f) /* ファイル名を美しく?する */
{
char c;
while(c=*f){
if(iskanji(c))
f++;
else if( decor_caseis_upper && islower(c))
*f=_toupper(c);
else if(!decor_caseis_upper && isupper(c))
*f=_tolower(c);
else if(c=='\\')
*f='/';
f++;
}
}
uint getanum(char **s) /* 文字列→数字 オプション解析で使用 */
{
uint r=0;
char c;
while(c=**s,(c && c!='/' && c!='-' && !isdigit(c)))
(*s)++; /* スペースをスキップ */
if(!isdigit(**s))
return(0xffff);
while(isdigit(**s)){
r*=10;
r+=**s-'0';
(*s)++;
}
return(r);
}
void tabconv(char *s)
{
uint col,
spc;
char c;
for(col=0;*s;col++,s++){
c=*s;
if(c=='\t'){
spc=tabsize-(col%tabsize)-1;
sftstr(s+1,spc);
setmem(s,spc+1,' ');
}else if(iskanji(c)){
if(c>0x86 || c<0x85 ||(c==0x86 && *(s+1)>0x9e) )
col++;
s++;
}
}
}
int cutline(char s[],int len)
{
int i,n;
char c;
/* n:何バイト目か (di)
i:何文字目か(0から)(cx) */
for(i=0,n=0;;n++){
c=s[n];
if(iskanji(c)){
if(c>0x86 || c<0x85 ||(c==0x86 && s[n+1]>0x9e) )
i++;
n++;
}else if(c=='\t'){
i+=tabsize - i%tabsize -1;
}else if(c==0x0d){ /* CR */
if(s[n+1]==0x0a)
n++;
break;
}else if(c==0x0a) /* LF */
break;
if(++i>=80)
break;
}
n++;
while(i>80){
i--,i--; /* Is't tricky? */
n--,n--;
}
if(n>len)
n=len;
/* i=-1;
while(c=s[n+i],(c==0x0a || c==0x0d || c==0x1a))
i--;
s[n+i+1]=NULL;
*/
return(n);
}
void setmaxline(void)
{
long
filelen;
int
len,
count=0;
maxline=0;
now_pointer=0;
now_line=0;
_line_pointer[0]=0;
filelen=filelength(fileno(fp));
if(filelen==0)
return;
if(countflag)
printf("read ");
else
printf("init ");
fseek(fp,0,SEEK_SET);
while(1){
if(++count>50){
count=0;
printf("\b\b\b\b%3u%%",(int)(now_pointer*100/filelen));
}
len=fread(readbuf,sizeof(char),170,fp);
if(len==0)
break;
if(maxline>=LINEMAX){
printf(" Sorry--- file too long.(over %5u)\x1b[37D",(int)LINEMAX);
break;
}
len=cutline(readbuf,len);
_line_pointer[maxline++]=len;
fseek(fp,get_lp(maxline),SEEK_SET);
}
_line_pointer[maxline]=0;
backelase(10);
}
uint pagetopline(int page) /* そのページは一体何行目から始まるのかな? */
{
uint r;
r=page*lineparpage*dansuu;
if(r>maxline)
return(maxline);
else
return(r);
}
void _pout_buf(int start,int width) /* startからwidthドットプリンタに転送 */
{
void prnout_P2(int s,int w);
void prnout_E2(int s,int w);
void prnout_E4(int s,int w);
int
w;
char
lpos[30];
if(printer==P2){
sprintf(lpos,ESC"F%04d"ESC"J%04d",start,width);
pputs(lpos);
prnout_P2(start,width);
}else if(printer==E2){
w=start % 3;
start-=w;
width+=w;
pputs(ESC"$");
_pputc((char)(start / 3));
_pputc((start / 3) >> 8);
pputs(ESC"*\x27");
_pputc((char)width);
_pputc(width >> 8);
prnout_E2(start,width);
}else if(printer==E4){
w=start % 6;
start-=w;
width+=w;
pputs(ESC"$");
_pputc((char)(start / 6));
_pputc((start / 6) >> 8);
pputs(ESC"*\x48");
_pputc((char)width);
_pputc(width >> 8);
prnout_E4(start,width);
}
}
int bufstat(int x) /* xのあるバイトの状態(なんのこっちゃ?)*/
{
char far
*b;
char
mask;
int
i;
if((x & 7)<=3)
mask=0xf0;
else
mask=0x0f;
x>>=3;
x*=48;
b=&bufprn[x];
for(i=0;i<head_dots;i++)
if(b[i] & mask)
return(1); /* 将来の拡張(あるか?)のため明示的に1を使う */
return(0);
}
void print_bufprn(void)
{
int
mwidth=h_dots*dansuu,
w,
start;
if(dpi==160 && dansuu==2)
;
else
mwidth++;
for(start=0;start<mwidth;){
if(bufstat(start)){
w=4;
while(start+w<mwidth && bufstat(start+w))
w+=4;
_pout_buf(start,min(w,mwidth-start));
start+=w;
}else{
start+=4;
}
}
pputs("\r\n");
}
void oneline_cpy(int l16,int lprn)
{
uint
o1,
op,
n;
n=(h_dots*dansuu)/8+1;
o1=l16;
op=lprn;
for(;n>0;n--){
bufprn[op]|=buf16[o1];
o1+=16;
op+=48;
}
}
void clear_linebuf() /* 16ドットバッファをクリア */
{
setmem(buf16,BUF16SIZE,0x00);
buf16_x=0;
}
void clear_printbuf() /* 印刷バッファをクリア */
{
far_setmem(bufprn,BUFPRNSIZE,0x00);
bufprn_y=0;
}
void flush_linebuf() /* 16ドットバッファを印刷バッファに転送 */
{ /* 一杯になれば印刷、その後クリア */
int i;
for(i=0;i<16;i++){
oneline_cpy(i,bufprn_y++); /* 適当な関数名だなぁ */
if(bufprn_y>=head_dots){
print_bufprn();
clear_printbuf();
}
}
clear_linebuf();
}
void flush_printbuf() /* 印刷バッファを印字後クリア */
{
if(bufprn_y>0)
print_bufprn();
clear_printbuf();
}
void set_hline(void) /* 横線をバッファにセット */
{
int
i,
j;
j=bufprn_y;
for(i=(h_dots*dansuu+7)/8;i>0;i--){
bufprn[j]=0xff; /* 注意:大雑把である。 */
j+=48;
}
if(++bufprn_y>=head_dots){
print_bufprn();
clear_printbuf();
}
}
void set_vline(void) /* 各段の区切り、縦棒を16ドットバッファに */
{
int
i,off;
char
c;
off=16*(buf16_x >> 3);
c=0x80 >> (buf16_x & 7);
for(i=0;i<16;i++)
buf16[off+i]|=c;
if(dpi==160 && dansuu==2) /* PC-P2 2段のときは数えない */
;
else
buf16_x++;
}
void readline(uint l)
{
int w;
fseek(fp,get_lp(l),SEEK_SET);
w=_line_pointer[l];
if(w)
fread(readbuf,w,sizeof(char),fp);
readbuf[w--]=NULL;
while(w>=0 && (readbuf[w]==0x0d || readbuf[w]==0x0a || readbuf[w]==0x1a))
readbuf[w--]=NULL;
tabconv(readbuf);
}
void set_str(char *s,int bf) /* s を16ドットバッファに */
{
uint
off,
sft,
work,
mask,
d,
i;
off=16*(buf16_x >> 3);
sft=8-(buf16_x & 7);
while(*s){
if(*s==' '){
off+=16;
s++;
continue;
}else if(iskanji(*s)){
fontget(sfttojis(*s,*(s+1)));
s+=2;
}else{
fontget(*s);
s++;
}
if(charfont[1]==1){ /* ank */
for(i=2;i<18;i++){
work=charfont[i];
if(bf){
mask=work | ~(work>>1);
work|=work << 1;
work&=mask;
}
d=work << sft;
buf16[off ]|=d >> 8;
buf16[off+16]|=(char)d;
off++;
}
}else{ /* kanji */
for(i=2;i<33;i+=2){
work=(charfont[i] << 8)| charfont[i+1];
if(bf){
mask=work | ~(work>>1);
work|=work << 1;
work&=mask;
}
d=work >> (8-sft);
buf16[off ]|=d >> 8;
buf16[off+16]|=d;
d=work << sft;
buf16[off+32]|=(char)d;
off++;
}
off+=16;
}
}
}
void set_line(uint line) /* line行を読み込んで16ドットバッファに */
{
char
lnum[10],
*s=readbuf;
if(numflag){
sprintf(lnum,"%6u�",line+1);
set_str(lnum,NO);
buf16_x+=8*7;
}
readline(line);
set_str(s,boldflag);
buf16_x+=8*80;
}
void init_page(void) /* 各ページ印刷前の初期化処理 */
{
int i;
if(__pstat()==0){
i=0;
printf("(BUSY)");
while(__pstat()==0){
if(i++>20000){
i=0;
putchar(' ');
putchar('\b');
}
}
backelase(6);
}
if(printer==P2){ /* 初期化と、ページ長の設定 */
pputs(ESC"c1"ESC"T18");
if(paper){
pputs("\x1d\x41\x1");
for(i=1;i<pageline/6;i++)
pputs("\x40\x1");
pputs("\x41\x1\x1e");
}
}else if(printer==E2 || printer==E4){
pputs(ESC"@"ESC"3\x18");
if(paper){
pputs(ESC"C");
pputc(0);
pputc(pageline/6);
}
}
h_dots=(numflag)?696:640;
if(dpi==160 && dansuu==2) /* PC-P2 2段のときは数えない */
;
else
h_dots++;
clear_linebuf();
clear_printbuf();
}
void print_header(int page) /* 各ページの頭に来るヘッダを印刷 */
{
char
header3[30];
sprintf(header3,"PAGE:%3d-%-3d TABS:%-3d\r\n",maxpage+1,page+1,tabsize);
if(printer==P2){
pputs(header1);
pputs(header3);
pputs(header2);
pputs( ESC"P"ESC"s2"
" CMPP V" VERSION
ESC"s0"ESC"P\r\n");
}else if(printer==E2 || printer==E4){
pputs(header1);
pputs(header3);
pputs(header2);
pputs( ESC"p1"ESC"S1"
" CMPP V" VERSION
ESC"T"ESC"p0\r\n");
}
}
void new_page() /* ページ印字終了の後始末 */
{
flush_printbuf();
if(paper==NF)
pputs("\n\n");
else
pputc(12);
if(printer==P2)
pputs(ESC"c1"ESC"T16");
else if(printer==E2 || printer==E4)
pputs(ESC"@");
_pflush(); /* ローカルスプール時・スプールバッファクリア */
}
void print_page(int page) /* 1ページ印刷 */
{
int
offset,
vwid,
i,j;
offset=pagetopline(page);
vwid=(maxline-offset-1)/dansuu+1;
if(vwid>lineparpage)
vwid=lineparpage;
init_page();
if(headerflag)
print_header(page);
bufprn_y+=2; /* 893 */
set_hline();
for(i=0;i<vwid;i++){
printf("\b\b\b\b%3u%%",(int)printed_line*100L/print_line);
for(j=0;j<dansuu;j++){
set_vline();
set_line(offset + vwid*j + i);
printed_line++;
}
if(dpi==160 && dansuu==2)
buf16_x--;
set_vline();
flush_linebuf();
}
set_hline();
new_page();
}
void printfile_err(void)