forked from rochus-keller/OberonSystem3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Draw.Mod
354 lines (322 loc) · 11.9 KB
/
Draw.Mod
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
(* OBERON System 3, Release 2.3.
Copyright 1999 ETH Zürich Institute for Computer Systems,
ETH Center, CH-8092 Zürich. e-mail: [email protected].
This module may be used under the conditions of the general Oberon
System 3 license contract. The full text can be downloaded from
"ftp://ftp.inf.ethz.ch/pub/software/Oberon/System3/license.txt;A"
Under the license terms stated it is in particular (a) prohibited to modify
the interface of this module in any way that disagrees with the style
or content of the system and (b) requested to provide all conversions
of the source code to another platform with the name OBERON. *)
MODULE Draw; (** portable *) (*NW 29.6.88 / 2.12.93 / JG 14.6.94 ported to System 3 / EOS 12.5.95 release 2.0*)
IMPORT Files, Fonts, Viewers, Printer, Texts, Oberon, Display,
TextFrames, MenuViewers, Graphics, GraphicFrames;
VAR W: Texts.Writer; BackCol: INTEGER;
(*Exported commands:
Open, Delete,
SetWidth, ChangeColor, ChangeWidth, ChangeFont,
ChangeBackgroundColor, ToggleTicks,
Store, Print,
Macro, OpenMacro, MakeMacro, StoreLibrary*)
PROCEDURE Open*;
VAR X, Y: INTEGER;
beg, end, t: LONGINT;
G: Graphics.Graph;
T: Texts.Text;
M: TextFrames.Frame;
F: GraphicFrames.Frame;
V: Viewers.Viewer;
text: Texts.Text;
S: Texts.Scanner;
Tbuf: Texts.Buffer;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF (S.class = Texts.Char) & (S.c = "^") THEN
Oberon.GetSelection(text, beg, end, t);
IF t >= 0 THEN Texts.OpenScanner(S, text, beg); Texts.Scan(S) END
END ;
IF S.class = Texts.Name THEN
NEW(G); Graphics.Open(G, S.s);
NEW(F); GraphicFrames.Open(F, G, -1, 0, BackCol, TRUE);
Oberon.AllocateUserViewer(Oberon.Par.vwr.X, X, Y);
IF Files.Old("Draw.Menu.Text") = NIL THEN
M := TextFrames.NewMenu(S.s, "System.Close System.Copy System.Grow Draw.Delete Draw.Store")
ELSE M := TextFrames.NewMenu(S.s, "");
NEW(T); Texts.Open(T, "Draw.Menu.Text");
NEW(Tbuf); Texts.OpenBuf(Tbuf); Texts.Save(T, 0, T.len, Tbuf); Texts.Append(M.text, Tbuf)
END ;
V := MenuViewers.New(M, F, TextFrames.menuH, X, Y)
END
END Open;
PROCEDURE Delete*;
VAR F: GraphicFrames.Frame;
BEGIN
IF Oberon.Par.frame = Oberon.Par.vwr.dsc THEN
F := Oberon.Par.vwr.dsc.next(GraphicFrames.Frame);
GraphicFrames.Erase(F); Graphics.Delete(F.graph)
END
END Delete;
(*
PROCEDURE Redraw*;
VAR F: GraphicFrames.Frame;
BEGIN
IF Oberon.Par.frame = Oberon.Par.vwr.dsc THEN
F := Oberon.Par.vwr.dsc.next(GraphicFrames.Frame);
GraphicFrames.Restore(F)
END
END Redraw;
*)
PROCEDURE GetArg(VAR S: Texts.Scanner);
VAR T: Texts.Text; beg, end, time: LONGINT;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF (S.class = Texts.Char) & (S.c = "^") THEN
Oberon.GetSelection(T, beg, end, time);
IF time >= 0 THEN Texts.OpenScanner(S, T, beg); Texts.Scan(S) END
END
END GetArg;
PROCEDURE SetWidth*;
VAR S: Texts.Scanner;
BEGIN GetArg(S);
IF (S.class = Texts.Int) & (S.i > 0) & (S.i < 7) THEN Graphics.width := SHORT(S.i) END
END SetWidth;
PROCEDURE ChangeColor*;
VAR S: Texts.Scanner; CM: Graphics.ColorMsg;
BEGIN GetArg(S);
IF S.class = Texts.Int THEN
CM.col := SHORT(S.i) MOD 16; GraphicFrames.Change(GraphicFrames.Selected(), CM)
END
END ChangeColor;
PROCEDURE ChangeWidth*;
VAR S: Texts.Scanner; WM: Graphics.WidMsg;
BEGIN GetArg(S);
IF S.class = Texts.Int THEN
WM.w := SHORT(S.i); GraphicFrames.Change(GraphicFrames.Selected(), WM)
END
END ChangeWidth;
PROCEDURE ChangeFont*;
VAR S: Texts.Scanner; FM: Graphics.FontMsg;
BEGIN GetArg(S);
IF S.class = Texts.Name THEN
FM.fnt := Fonts.This(S.s);
IF FM.fnt # NIL THEN GraphicFrames.Change(GraphicFrames.Selected(), FM) END
END
END ChangeFont;
PROCEDURE ChangeBackgroundColor*;
VAR S: Texts.Scanner; v: Viewers.Viewer; G: GraphicFrames.Frame;
BEGIN v := Oberon.MarkedViewer();
IF (v.dsc # NIL) & (v.dsc.next IS GraphicFrames.Frame) THEN
GetArg(S); G := v.dsc.next(GraphicFrames.Frame);
IF S.class = Texts.Int THEN G.col := SHORT(S.i) MOD 16; GraphicFrames.Restore(G) END
END
END ChangeBackgroundColor;
PROCEDURE ToggleTicks*;
VAR v: Viewers.Viewer; G: GraphicFrames.Frame;
BEGIN v := Oberon.MarkedViewer();
IF (v.dsc # NIL) & (v.dsc.next IS GraphicFrames.Frame) THEN
G := v.dsc.next(GraphicFrames.Frame); G.ticked := ~G.ticked; GraphicFrames.Restore(G)
END
END ToggleTicks;
PROCEDURE Backup (VAR name: ARRAY OF CHAR);
VAR res, i: INTEGER; ch: CHAR;
bak: ARRAY 32 OF CHAR;
BEGIN i := 0; ch := name[0];
WHILE ch > 0X DO bak[i] := ch; INC(i); ch := name[i] END ;
IF i < 28 THEN
bak[i] := "."; bak[i+1] := "B"; bak[i+2] := "a"; bak[i+3] := "k"; bak[i+4] := 0X;
Files.Rename(name, bak, res)
END
END Backup;
PROCEDURE Store*;
VAR par: Oberon.ParList; S: Texts.Scanner;
Menu: TextFrames.Frame; G: GraphicFrames.Frame;
v: Viewers.Viewer;
BEGIN par := Oberon.Par;
IF par.frame = par.vwr. dsc THEN
Menu := par.vwr.dsc(TextFrames.Frame); G := Menu.next(GraphicFrames.Frame);
Texts.OpenScanner(S, Menu.text, 0); Texts.Scan(S);
IF S.class = Texts.Name THEN
Texts.WriteString(W, S.s); Texts.WriteString(W, " storing");
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf);
Backup(S.s); Graphics.WriteFile(G.graph, S.s)
END
ELSE
Texts.OpenScanner(S, par.text, par.pos); Texts.Scan(S);
IF S.class = Texts.Name THEN
v := Oberon.MarkedViewer();
IF (v.dsc # NIL) & (v.dsc.next IS GraphicFrames.Frame) THEN
G := v.dsc.next(GraphicFrames.Frame);
Texts.WriteString(W, S.s); Texts.WriteString(W, " storing");
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf);
Backup(S.s); Graphics.WriteFile(G.graph, S.s)
END
END
END
END Store;
PROCEDURE Print*;
VAR nofcopies: INTEGER;
S: Texts.Scanner;
G: Graphics.Graph;
F: TextFrames.Frame;
V: Viewers.Viewer;
printer, options: ARRAY 64 OF CHAR;
PROCEDURE Copies;
VAR ch: CHAR;
BEGIN nofcopies := 1;
IF S.nextCh = Oberon.OptionChar THEN
Texts.Read(S, ch);
IF (ch >= "0") & (ch <= "9") THEN nofcopies := ORD(ch) - 30H END ;
WHILE ch > " " DO Texts.Read(S, ch) END ;
S.nextCh := ch
END
END Copies;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
Graphics.scale := SHORT((Display.Unit DIV Printer.Unit * 6 + 5) DIV 5);
IF S.class = Texts.Name THEN
printer := S.s;
IF S.nextCh = Oberon.OptionChar THEN
Texts.Scan(S); (* option char *)
Texts.Scan(S); (* options *)
IF (S.class # Texts.Name) & (S.class # Texts.String) THEN options := ""
ELSE options := S.s
END
ELSE options := ""
END;
Printer.Open(printer, options);
IF Printer.res = 0 THEN
IF Oberon.Par.frame = Oberon.Par.vwr.dsc THEN
F := Oberon.Par.frame(TextFrames.Frame);
IF F.next IS GraphicFrames.Frame THEN
Texts.OpenScanner(S, F.text, 0); Texts.Scan(S);
Texts.WriteString(W, S.s); Texts.WriteString(W, " printing");
Texts.Append(Oberon.Log, W.buf);
Graphics.Print(F.next(GraphicFrames.Frame).graph, 0, Printer.Height-128 * Graphics.scale DIV 4);
Printer.Page(1)
END
ELSE Texts.Scan(S);
IF (S.class = Texts.Char) & (S.c = "*") THEN
Copies; V := Oberon.MarkedViewer();
IF (V.dsc # NIL) & (V.dsc.next IS GraphicFrames.Frame) THEN
Texts.OpenScanner(S, V.dsc(TextFrames.Frame).text, 0);
Texts.Scan(S);
IF S.class = Texts.Name THEN
Texts.WriteString(W, S.s); Texts.WriteString(W, " printing");
Texts.WriteInt(W, nofcopies, 3); Texts.Append(Oberon.Log, W.buf);
Graphics.Print(V.dsc.next(GraphicFrames.Frame).graph, 0, Printer.Height-128 * Graphics.scale DIV 4);
Printer.Page(nofcopies)
END
END
ELSE
WHILE S.class = Texts.Name DO
Texts.WriteString(W, S.s); Copies; NEW(G); Graphics.Open(G, S.s);
IF Graphics.res = 0 THEN
Texts.WriteString(W, " printing");
Texts.WriteInt(W, nofcopies, 3); Texts.Append(Oberon.Log, W.buf);
Graphics.Print(G, 0, Printer.Height-128 * Graphics.scale DIV 4); Printer.Page(nofcopies)
ELSE Texts.WriteString(W, " not found")
END ;
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf); Texts.Scan(S)
END
END
END ;
Printer.Close
ELSIF Printer.res = 1 THEN Texts.WriteString(W, " no such printer")
ELSIF Printer.res = 2 THEN Texts.WriteString(W, " no link")
ELSIF Printer.res = 3 THEN Texts.WriteString(W, " printer not ready")
ELSIF Printer.res = 4 THEN Texts.WriteString(W, " no permission")
END
END ;
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf)
END Print;
PROCEDURE Macro*;
VAR S: Texts.Scanner;
T: Texts.Text;
time, beg, end: LONGINT;
Lname: ARRAY 32 OF CHAR;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF S.class = Texts.Name THEN
Lname := S.s; Texts.Scan(S);
IF (S.class = Texts.Char) & (S.c = "^") THEN
Oberon.GetSelection(T, beg, end, time);
IF time >= 0 THEN Texts.OpenScanner(S, T, beg); Texts.Scan(S) END
END ;
IF (S.class = Texts.Name) OR (S.class = Texts.String) THEN
GraphicFrames.Macro(Lname, S.s)
END
END
END Macro;
PROCEDURE OpenMacro*;
VAR F: GraphicFrames.Frame; sel: Graphics.Object;
BEGIN (*expand selected macro to caret position*)
F := GraphicFrames.Selected();
IF F # NIL THEN
sel := F.graph.sel;
IF (sel # NIL) & (sel IS Graphics.Macro) THEN
GraphicFrames.Deselect(F);
Graphics.OpenMac(sel(Graphics.Macro).mac, F.graph, F.mark.x - F.x, F.mark.y - F.y);
GraphicFrames.Draw(F)
END
END
END OpenMacro;
PROCEDURE MakeMacro*; (*lib mac*)
(*compose macro from selected elements into caret area*)
VAR new: BOOLEAN;
F: GraphicFrames.Frame;
S: Texts.Scanner;
Lname: ARRAY 32 OF CHAR;
PROCEDURE MakeMac;
VAR x0, y0, x1, y1, w, h: INTEGER;
mh: Graphics.MacHead;
L: Graphics.Library;
BEGIN
L := Graphics.ThisLib(Lname, FALSE);
IF L = NIL THEN L := Graphics.NewLib(Lname) END ;
x0 := F.mark.x; y0 := F.mark.y; x1 := F.mark.next.x; y1 := F.mark.next.y;
w := ABS(x1-x0); h := ABS(y1-y0);
IF x0 < x1 THEN x0 := x0 - F.x ELSE x0 := x1 - F.x END ;
IF y0 < y1 THEN y0 := y0 - F.y ELSE y0 := y1 - F.y END ;
mh := Graphics.MakeMac(F.graph, x0, y0, w, h, S.s);
Graphics.InsertMac(mh, L, new)
END MakeMac;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF S.class = Texts.Name THEN
Lname := S.s; Texts.Scan(S);
IF (S.class = Texts.Name) OR (S.class = Texts.String) & (S.len <= 8) THEN
F := GraphicFrames.Focus();
IF (F # NIL) & (F.graph.sel # NIL) THEN
MakeMac; Texts.WriteString(W, S.s);
IF new THEN Texts.WriteString(W, " inserted in ")
ELSE Texts.WriteString(W, " replaced in ")
END ;
Texts.WriteString(W, Lname); Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf)
END
END
END
END MakeMacro;
PROCEDURE LoadLibrary*; (*lib file name*)
VAR S: Texts.Scanner; L: Graphics.Library;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF S.class = Texts.Name THEN
L := Graphics.ThisLib(S.s, TRUE);
Texts.WriteString(W, S.s); Texts.WriteString(W, " loaded");
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf)
END
END LoadLibrary;
PROCEDURE StoreLibrary*; (*lib file name*)
VAR i: INTEGER; S: Texts.Scanner; L: Graphics.Library;
Lname: ARRAY 32 OF CHAR;
BEGIN Texts.OpenScanner(S, Oberon.Par.text, Oberon.Par.pos); Texts.Scan(S);
IF S.class = Texts.Name THEN i := 0;
WHILE S.s[i] >= "0" DO Lname[i] := S.s[i]; INC(i) END ;
Lname[i] := 0X;
L := Graphics.ThisLib(Lname, FALSE);
IF L # NIL THEN
Texts.WriteString(W, S.s); Texts.WriteString(W, " storing");
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf); Graphics.StoreLib(L, S.s)
END
END
END StoreLibrary;
BEGIN Texts.OpenWriter(W); Texts.WriteString(W, "Draw - NW 2.12.93");
Texts.WriteLn(W); Texts.Append(Oberon.Log, W.buf);
IF Display.Depth(0) # 1 THEN BackCol := 14 ELSE BackCol := Display.BG END
END Draw.
System.Free Draw GraphicFrames Graphics ~
Draw.Open t