PDInterpOutputC150Impl.mesa
Copyright (C) 1984, 1985, Xerox Corporation. All rights reserved.
Michael Plass, July 3, 1985 11:12:19 am PDT
Tim Diebert: February 18, 1986 11:59:36 am PST
Dave Rumph, August 30, 1985 5:10:25 pm PDT
DIRECTORY
Ascii,
Basics USING [BytePair],
DiabloStreams USING [StreamOpen],
PDFileFormat,
ImagerPixelMap,
PDInterpBitmap,
PDInterpOutput,
PDQueue,
IO,
Rope;
PDInterpOutputC150Impl: PROGRAM
IMPORTS DiabloStreams, ImagerPixelMap, IO, PDQueue
EXPORTS PDInterpOutput
= BEGIN OPEN Ascii;
Toner: TYPE ~ PDFileFormat.Toner;
pageMap: ARRAY Toner OF ImagerPixelMap.PixelMap ← ALL[ImagerPixelMap.Create[0, [0, 0, 0, 0]]];
currentStartImage: PDFileFormat.StartImage;
currentHerald: PDFileFormat.Herald;
bandNumber: NAT ← 0;
currentToner: Toner ← cyan;
print: BOOLTRUE;
feed, strip: BOOLFALSE;
ROPE: TYPE ~ Rope.ROPE;
PrinterParameters: TYPE ~ REF PrinterParametersRep;
PrinterParametersRep: TYPE ~ RECORD [
fSize: CARDINAL ← 120*8+120/2 + 4, -- The size of sheet on fast edge
sSize: CARDINAL ← 120*11, -- The size of sheet on the slow edge
fDPI: CARDINAL ← 120, -- Fast edge dots per inch
sDPI: CARDINAL ← 120 -- Slow edge dots per inch
];
pp: PrinterParameters = NEW [PrinterParametersRep];
fSize: CARDINAL ← 120*8+120/2 + 4;
sSize: CARDINAL ← 120*11;
StartImage: PUBLIC PROC [herald: PDFileFormat.Herald, startImage: PDFileFormat.StartImage, request: PDQueue.Request]
RETURNS [PDInterpBitmap.BitmapDesc] = {
bandMap: ImagerPixelMap.PixelMap;
IF pp.fDPI # herald.fResolution THEN ERROR;
IF pp.sDPI # herald.sResolution THEN ERROR;
fSize ← (herald.imageFSize+7)/8*8;
sSize ← (herald.imageSSize+3)/4*4;
feed ← startImage.feed;
strip ← startImage.strip;
currentToner ← startImage.toner;
PDQueue.LogMessage[message: IO.PutFR1["Getting storage for %g.",
IO.rope[(SELECT startImage.toner FROM
black => "black", cyan => "cyan", magenta => "magenta", yellow => "yellow",
ENDCASE => ERROR)]], userName: request.requestor];
pageMap[startImage.toner] ← ImagerPixelMap.Reshape[pageMap[startImage.toner].refRep, 0, [0, 0, sSize, fSize]];
ImagerPixelMap.Clear[pageMap[startImage.toner]];
PDQueue.LogMessage[message: "Done. Making bitmap.", userName: request.requestor];
currentStartImage ← startImage;
currentHerald ← herald;
bandNumber ← 0;
bandMap ← ImagerPixelMap.Clip[pageMap[startImage.toner], [startImage.passBands*herald.bandSSize, startImage.fMinPage, herald.bandSSize, startImage.fSizePage]];
RETURN [[
sOrigin: bandMap.sOrigin,
fOrigin: bandMap.fOrigin,
sMin: bandMap.sMin,
fMin: bandMap.fMin,
sSize: bandMap.sSize,
fSize: bandMap.fSize,
pointer: bandMap.refRep.pointer,
rast: bandMap.refRep.rast,
lines: bandMap.refRep.lines
]]
};
EndBand: PUBLIC PROC RETURNS [PDInterpBitmap.BitmapDesc] = {
bandMap: ImagerPixelMap.PixelMap;
bandNumber ← bandNumber + 1;
bandMap ← ImagerPixelMap.Clip[pageMap[currentToner], [(currentStartImage.passBands+bandNumber)*currentHerald.bandSSize, currentStartImage.fMinPage, currentHerald.bandSSize, currentStartImage.fSizePage]];
RETURN [[
sOrigin: bandMap.sOrigin,
fOrigin: bandMap.fOrigin,
sMin: bandMap.sMin,
fMin: bandMap.fMin,
sSize: bandMap.sSize,
fSize: bandMap.fSize,
pointer: bandMap.refRep.pointer,
rast: bandMap.refRep.rast,
lines: bandMap.refRep.lines
]]
};
EndImage: PUBLIC PROC [request: PDQueue.Request] = {
IF strip THEN {
PDQueue.LogMessage[message: "Bitmap complete.", userName: request.requestor];
PDQueue.LogMessage[message: "Starting printer.", userName: request.requestor];
PrintIt[request]}
ELSE PDQueue.LogMessage[message: "Bitmap complete.", userName: request.requestor];
feed ← FALSE;
strip ← FALSE;
};
ReprintLastPage: PUBLIC PROC [copies: CARDINAL] = {
IF currentHerald.password # PDFileFormat.passwordValue THEN RETURN;
currentHerald.copies ← copies;
PDQueue.LogMessage[message: "Starting printer.", userName: "Reprint"];
Replay[["Reprint", NIL, NIL, NIL, NIL, copies]];
};
MicroLine: TYPE ~ [0..4);
graphicsChar: ARRAY Toner OF ARRAY MicroLine OF CHAR ~ [
cyan: ['<, '=, '>, '?],
magenta: ['4, '5, '6, '7],
yellow: ['8, '9, ':, ';],
black: ['0, '1, '2, '3]
];
STREAM: TYPE ~ IO.STREAM;
MicroLineFeed: PROC [s: STREAM] = {IO.PutChar[s, ESC]; IO.PutChar[s, 'k]; IO.PutChar[s, '1]};
Replay: PROC [request: PDQueue.Request] = BEGIN
smallPM: ImagerPixelMap.PixelMap;
s: STREAM = DiabloStreams.StreamOpen[];
FOR i: CARDINAL IN [0 .. request.copies) DO
IO.PutRope[s, "\033\015P"]; --Reset the terminal
IO.PutRope[s, "\033r85\n\012"]; -- ESC r 85 CRLF
IO.PutF[s, "%g %g %g\n\n\n\n\n\n\n\n\n\n\n\n", IO.rope[request.requestor], IO.rope[request.fileName], IO.rope[request.separator]];
FOR lines: CARDINAL IN [0 .. sSize/4) DO
allBlank: BOOLTRUE;
FOR microLine: MicroLine IN MicroLine DO
activeLine: CARDINAL = lines*4 + microLine;
FOR toner: Toner IN Toner DO
smallPM ← ImagerPixelMap.Clip[pageMap[toner], [activeLine, 0, 1, fSize]]; -- One line in one toner.
IF ImagerPixelMap.IsAll[smallPM, 0] THEN LOOP
ELSE {
ptr: LONG POINTER TO Basics.BytePair ← smallPM.refRep.pointer + LONG[activeLine - smallPM.sOrigin] * smallPM.refRep.rast; -- points to the line.
allBlank ← FALSE;
IO.PutChar[s, ESC]; IO.PutChar[s, 'g]; IO.PutChar[s, graphicsChar[toner][microLine]];
IO.Put[s, IO.int[fSize/8]]; IO.PutChar[s, SP];
FOR i: CARDINAL IN [0 .. fSize/16) DO TRUSTED {
w: Basics.BytePair ← (ptr+i)^;
IO.PutChar[s, LOOPHOLE[w.high, CHAR]];
IO.PutChar[s, LOOPHOLE[w.low, CHAR]];
} ENDLOOP;
};
ENDLOOP; -- Toner
ENDLOOP; -- lines
MicroLineFeed[s];
ENDLOOP; -- MicroLine
IO.PutF[s, "\n\n\n\n\n\n\n\n\n\n\n\n%g %g %g\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", IO.rope[request.requestor], IO.rope[request.fileName], IO.rope[request.separator]];
ENDLOOP; -- Copies
IO.Close[s];
END;
PrintIt: PROC [request: PDQueue.Request] = BEGIN
Replay[request];
END;
END.