FitIO.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Maureen Stone November 29, 1984 10:59:45 am PST
Doug Wyatt, September 5, 1985 1:56:13 pm PDT
DIRECTORY
Imager USING [Context, Color],
Cubic USING [Bezier],
Complex USING [VEC],
FitBasic USING [Handle, SampleHandle],
IO USING [STREAM];
FitIO: CEDAR DEFINITIONS = {
Handle: TYPE = FitBasic.Handle;
Context: TYPE = REF ContextRec;
ContextRec: TYPE = RECORD[
imager: Imager.Context,
magnify: REAL,
position: Complex.VEC,
feedback: Feedback,
logActions: BOOLEANTRUE,
log: IO.STREAM
];
Feedback: TYPE = REF FeedbackRec;
FeedbackRec: TYPE=RECORD [
color: Imager.Color,
sampleSize: REAL ← 1,
jointSize: REAL ← 2,
nodeLength: REAL ← 2,
nodeLineWidth: REAL ← 0,
lineWidth: REAL ← 0--for DrawSamples and DrawContour
];
TTY: PROC[ctx: Context] RETURNS[IO.STREAM] = INLINE {RETURN[ctx.log]};
Marks:
For samples and joints the mark is a dot
For nodes the mark is a line normal to the tangent direction or an X if the tangent is (0,0)
For sizes, 0 is as small as possible for current device
Samples, Nodes and Contours:
Samples are the list of input datapoints. Contours are the computed curves.
The handle contains a list of Sample, Contour pairs. The all flag controls whether you want to apply the procedure to the current pair or all the pairs.
Some samples are also marked as nodes, or potential knots for the spline fitting calculations
Logs:
Data is stored by logging the actions used to draw it.
Format is suitable for driving JaM interface and includes the semantics of marks, not their feedback. SetFeedBack command is recorded. Magnify and Position apply to logs
Procedures may automatically log actions
SetFeedback: PROC[ctx: Context, feedback: Feedback];
DrawSamples: PROC [ctx: Context, handle: Handle, all: BOOLEANFALSE, fill: BOOLEANFALSE];
treat samples as vertices of a polygon or a broken line
MarkSamples: PROC [ctx: Context, handle: Handle, all: BOOLEANFALSE];
MarkNodes: PROC [ctx: Context, handle: Handle, all: BOOLEANFALSE];
MarkJoints: PROC [ctx: Context, handle: Handle, all: BOOLEANFALSE]; --joints between the cubic pieces
DrawContour: PROC [ctx: Context, handle: Handle, all: BOOLEANFALSE, fill: BOOLEANFALSE];
procedures used by MarkSamples and MarkNodes
MarkNode: PROC[ctx: Context, s: FitBasic.SampleHandle];
MarkSample: PROC[ctx: Context, s: FitBasic.SampleHandle];
procedure used by MarkJoints and DrawContour
MarkJoint: PROC[ctx: Context, pt: Complex.VEC];
DrawCubic: PROC[ctx: Context, cubic: Cubic.Bezier];
NoLog: SIGNAL;
StartLog: PROC [ctx: Context, stream: IO.STREAMNIL];
IF stream=NIL uses previous stream. Otherwise, closes previous stream (if any) and sets current output stream to stream. If there is no previous stream SIGNALS NoLog
StopLog: PROC[ctx: Context, close: BOOLEANTRUE];
IF close=FALSE just disables logging.
Views of the data:
It may be interesting to view the data at a different size or position. However, transforming the Imager Context would affect the mark and linewidth sizes. For many cases the right thing to do is actually modify the data using the procedures in FitState. These are the procedures for when it is inconvenient to change the data.
MagnifyData: PROC[ctx: Context, scale: REAL] = INLINE {ctx.magnify ← scale};
scales the view of the data but not the marks, linewidth or distance from data to the origin
This is an absolute number with respect to the data. Reset the magnify by MagnifyData[1];
PositionData: PROC[ctx: Context, trans: Complex.VEC] = INLINE {ctx.position ← trans};
Positions the data with respect to the origin of the context.
This is an absolute with respect to the Imager client coordinates.
Reset by PositionData[0,0];
MagnifyPoint: PROC [ctx: Context, p: Complex.VEC] RETURNS[Complex.VEC]; --magnify and position
UnMagnifyPoint: PROC [ctx: Context, p: Complex.VEC] RETURNS[Complex.VEC]; --undo magnify and position
}.