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
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 1993 - INRIA - Serge Steer
// Copyright (C) 1993 - INRIA - Habib Jreij
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
function [x,y,ok,gc]=edit_curv(x,y,job,tit,gc)
// mod_curv - Edition de courbe interactive
//%Syntaxe
// [x,y,ok]=mod_curv(xd,yd,job,tit)
//%Parametres
// xd : vecteur des abscisses donnees (eventuellement [])
// yd : vecteur des ordonnees donnees (eventuellement [])
// job : chaine de 3 caracteres specifiant les operations
// permises:
// - Si la chaine contient le caractere 'a', il est
// possible d'ajouter des points aux donnees, sinon
// il est seulement possible de les deplacer
// - Si la chaine contient le caractere 'x', il est
// possible de deplacer les points horizontalement
// - Si la chaine contient le caractere 'y', il est
// possible de deplacer les points verticalement
// tit : liste de trois chaines de caracteres
// tit(1) : titre de la courbe (peut etre un vecteur colonne)
// tit(2) : label de l'axe des abscisses
// tit(3) : label de l'axe des ordonnees
// x : vecteur des abscisses resultat
// y : vecteur des ordonnees resultat
// ok : vaut %t si la sortie as ete demandee par le menu Ok
// et %f si la sortie as ete demandee par le menu Abort
//%menus
// Ok : sortie de l'editeur et retour de la courbe editee
// Abort : sortie de l'editeur et retour au donnes initiales
// Undo : annulation de la derniere modification
// Size : changement des bornes du graphique
// Grids : changement des graduations du graphique
// Clear : effacement de la courbe (x=[] et y=[]) (sans quitter l'editeur)
// Read : lecture de la courbe a partir d'un fichier d'extension .xy
// Save : sauvegarde binaire (sur un fichier d'extension .xy) de
// la courbe
//!
[lhs,rhs]=argn(0)
ok = %t;
if rhs==0 then x=[]; y=[],end;
if rhs==1 then y=x;x=(1:size(y,"*"))',end
if rhs<3 then job="axy",end
if rhs<4 then tit=[" "," "," "],end
if size(tit,"*")<3 then tit(3)=" ",end
//
[mx,nx] = size(x); x=x(:)
[my,ny] = size(y); y=y(:)
n = min(mx*nx,my*ny)
x= x(1:n);y=y(1:n);
xsav=x; ysav=y; xs=x; ys=y;
//
lj = length(job)
add=0;modx=0;mody=0
for k=1:lj
jk = part(job,k)
select jk
case "a" then add = 1,
case "x" then modx= 1
case "y" then mody= 1
else error(msprintf(gettext("%s: Wrong value for input argument #%d: Must be in the set {%s}.\n"), "edit_curv", 3, "a, x, y"));
end
end
eps = 0.03
symbsiz = 0.2
// bornes initiales du graphique
if rhs<5 then
if mx<>0 then
xmx = max(x); xmn = min(x)
ymx = max(y); ymn = min(y)
dx = xmx-xmn; dy = ymx-ymn
if dx==0 then dx=max(xmx/2,1),end
xmn=xmn-dx/10;xmx=xmx+dx/10
if dy==0 then dy=max(ymx/2,1),end;
ymn=ymn-dy/10;ymx=ymx+dy/10;
else
xmn=0;ymn=0;xmx=1;ymx=1;dx=1;dy=1
end
rect=[xmn,ymn,xmx,ymx];
axisdata=[2 10 2 10];
gc = list(rect,axisdata);
else //** rhs=5 as in Scicos ;)
[rect,axisdata] = gc(1:2)
xmn = rect(1);
ymn = rect(2);
xmx = rect(3);
ymx = rect(4);
dx = xmx-xmn;
dy = ymx-ymn;
end
// Set menus and callbacks
menu_d = ["Read","Save","Clear"]
menu_e = ["Undo","Size","Replot","Ok","Abort"]
menus = list(["Edit","Data"],menu_e,menu_d)
w="menus(2)(";rpar=")"
Edit=w(ones(menu_e))+string(1:size(menu_e,"*"))+rpar(ones(menu_e))
w="menus(3)(";rpar=")"
Data=w(ones(menu_d))+string(1:size(menu_d,"*"))+rpar(ones(menu_d))
curwin = max(winsid())+1;
scf(curwin) ;
// Disable the menus and toolbars
toolbar(curwin,"off");
delmenu(curwin,gettext("File"));
delmenu(curwin,gettext("Tools"));
delmenu(curwin,gettext("Edit"));;
delmenu(curwin,"?");
execstr("Edit_"+string(curwin)+"=Edit");
execstr("Data_"+string(curwin)+"=Data");
menubar(curwin,menus)
//
edit_curv_figure = gcf();
edit_curv_figure.figure_name = "edit_curv";
edit_curv_axes = gca();
edit_curv_axes.data_bounds = [rect(1),rect(2);rect(3),rect(4)]
edit_curv_axes.axes_visible="on";
edit_curv_axes.grid=[4 4];
if x<>[] then
xpolys(x*[1 1],y*[1 1],[1,-1])
hdl=edit_curv_axes.children.children
else
hdl=[]
end
xtitle(tit(1),tit(2),tit(3));
// -- boucle principale
while %t then
[n1,n2] = size(x);
npt = n1*n2 ;
[btn,xc,yc,win,Cmenu] = get_click();
//** disp([btn,xc,yc,win]); //** DEBUG only
c1 = [xc,yc];
if Cmenu=="Quit" then Cmenu="Abort",end
if Cmenu==[] then Cmenu="edit",end
if Cmenu=="Exit" then Cmenu="Ok",end
select Cmenu
case [] then
// ce n est pas un menu
break
case "Ok" then // -- ok menu
rect = matrix(edit_curv_axes.data_bounds',1,4);
gc = list(rect,axisdata);
delete(edit_curv_figure)
return;
case "Abort" then // -- abort menu
x = xsav
y = ysav
delete(edit_curv_figure)
ok = %f;
return
case "XClose" then //** the user manually close the win
x = xsav
y = ysav
ok = %f;
return
case "Undo" then
x=xs;y=ys
if x<>[] then hdl.data=[x y]; end
case "Size" then
while %t
[ok,xmn,xmx,ymn,ymx]=getvalue("Please input new limits",..
["xmin";"xmax";"ymin";"ymax"],..
list("vec",1,"vec",1,"vec",1,"vec",1),..
string([xmn;xmx;ymn;ymx]))
if ~ok then break,end
if xmn>xmx|ymn>ymx then
messagebox("Limits are not accettable","modal");
else
break
end
end
if ok then
dx=xmx-xmn;dy=ymx-ymn
if dx==0 then dx=max(xmx/2,1),xmn=xmn-dx/10;xmx=xmx+dx/10;end
if dy==0 then dy=max(ymx/2,1),ymn=ymn-dy/5;ymx=ymx+dy/10;end
rect=[xmn,ymn,xmx,ymx];
edit_curv_axes.data_bounds=[rect(1),rect(2);rect(3),rect(4)]
end
case "Clear" then
if hdl<>[] then delete(hdl),hdl=[];end
x=[];y=[];
case "Read" then
[x,y]=readxy()
mx=min(prod(size(x)),prod(size(y)))
if mx<>0 then
xmx=max(x);xmn=min(x)
ymx=max(y);ymn=min(y)
dx=xmx-xmn;dy=ymx-ymn
if dx==0 then dx=max(xmx/2,1),xmn=xmn-dx/10;xmx=xmx+dx/10;end
if dy==0 then dy=max(ymx/2,1),ymn=ymn-dy/5;ymx=ymx+dy/10;end
else
xmn=0;ymn=0;xmx=1;ymx=1;dx=1;dy=1
end
rect=[xmn,ymn,xmx,ymx];
edit_curv_axes.data_bounds=[rect(1),rect(2);rect(3),rect(4)]
if x<>[]&y<>[] then
if hdl==[] then
xpolys(x(1)*[1 1],y(1)*[1 1],[1,-1])
hdl=gce();hdl=hdl.children
end
hdl.data=[x y];
else
if hdl<>[] then delete(hdl),end
x=[];y=[];
end
case "Save" then
savexy(x,y)
case "Replot" then
// for compatibility only, perform nothing on purpose
case "edit" then
npt=prod(size(x))
if npt<>0 then
dist=((x-ones(npt,1)*c1(1))/dx).^2+((y-ones(npt,1)*c1(2))/dy).^2
[m,k]=min(dist);m=sqrt(m)
else
m=3*eps
end
if m<eps then //on deplace le point
xs=x;ys=y
[x,y]=movept(x,y)
else
if add==1 then
xs=x;ys=y //on rajoute un point de cassure
[x,y]=addpt(c1,x,y)
end
end
end
end
endfunction
function [btn,xc,yc,win,Cmenu] = get_click(flag)
//** 05/01/09 : update for Scilab 5.1: (close code is now -1000)
if ~or(winsid()==curwin) then
Cmenu = "Quit";
return ;
end
if argn(2) == 1 then
[btn, xc, yc, win, str] = xclick(flag);
else
[btn, xc, yc, win, str] = xclick();
end
if btn == -1000 then //** user close the window [X]
if win == curwin then
Cmenu = "XClose";
else
Cmenu = "Open/Set";
end
return ;
end
if btn == -2 then //** user select a dynamic menu
xc = 0; yc = 0;
execstr("Cmenu=" + part(str, 9:length(str) - 1) );
execstr("Cmenu=" + Cmenu);
return;
end
Cmenu = [];
endfunction
function [x,y] = addpt(c1,x,y)
// permet de rajouter un point de cassure
npt = prod(size(x))
c1 = c1'
if hdl==[] then
x = c1(1);
y = c1(2);
xpolys(x*[1 1],y*[1 1],[1,-1]);
hdl = resume(edit_curv_axes.children(1).children)
end
//recherche des intervalles en x contenant l'abscisse designee
kk=[]
if npt>1 then
kk=find((x(1:npt-1)-c1(1)*ones(x(1:npt-1)))..
.*(x(2:npt)-c1(1)*ones(x(2:npt)))<=0)
end
if kk<>[] then
// recherche du segment sur le quel on a designe un point
pp=[];d=[];i=0
for k=kk
i=i+1
pr=projaff(x(k:k+1),y(k:k+1),c1)
if (x(k)-pr(1))*(x(k+1)-pr(1))<=0 then
pp=[pp pr]
d1=rect(3)-rect(1)
d2=rect(4)-rect(2)
d=[d norm([d1;d2].\(pr-c1))]
end
end
if d<>[] then
[m,i]=min(d)
if m<eps
k=kk(i)
pp=pp(:,i)
x=x([1:k k:npt]);x(k+1)=pp(1);
y=y([1:k k:npt]);y(k+1)=pp(2);
hdl.data=[x y];
return
end
end
end
d1=rect(3)-rect(1)
d2=rect(4)-rect(2)
if norm([d1;d2].\([x(1);y(1)]-c1))<norm([d1;d2].\([x(npt);y(npt)]-c1)) then
// -- mise a jour de x et y
x(2:npt+1)=x;x(1)=c1(1)
y(2:npt+1)=y;y(1)=c1(2)
else
// -- mise a jour de x et y
x(npt+1)=c1(1)
y(npt+1)=c1(2)
end
hdl.data=[x y];
endfunction
function [x,y]=movept(x,y)
//on bouge un point existant
hdl;
rep(3)=-1
while rep(3)==-1 do
rep = xgetmouse();
xc=rep(1);yc=rep(2);c2=[xc;yc]
if modx==0 then c2(1)=x(k);end
if mody==0 then c2(2)=y(k);end
x(k)=c2(1);y(k)=c2(2)
hdl.data=[x,y];
end
endfunction
function [x,y] = readxy()
function xy = findPolyline(children)
xy = [];
for i = 1:length(children)
select children(i).type,
case "Polyline" then
xy = children(i).data;
return
case "Axes" then
xy = findPolyline(children(i).children);
return
case "Compound" then
xy = findPolyline(children(i).children);
return
end
end
endfunction
fn=uigetfile(["*.scg";"*.sod";"*.xy"], "", _("Select a file to load"));
if fn <> "" then
[pth, fnm, ext] = fileparts(fn);
flname = fnm + ext;
select ext
case ".scg" then
loaded_figure=figure("visible", "off");
if execstr("xload(fn, loaded_figure.figure_id)","errcatch") == 0 then
loaded_figure.visible = "off";
scf(edit_curv_figure);
xy = findPolyline(loaded_figure.children);
delete(loaded_figure);
if xy <> [] then
x=xy(:,1);y=xy(:,2);
else
messagebox(msprintf(_("%s: The file "'%s"' does not " +..
"contains any "'Polyline"' graphic entity.\n"), "edit_curve", flname));
return
end
else
messagebox(msprintf(_("%s: Cannot open file "'%s"' " +..
"for reading.\n"), "edit_curv", flname), "modal");
return
end
case ".xy" then
if execstr("xy = read(fn,-1,2)","errcatch") == 0 then
x=xy(:,1);y=xy(:,2);
else
messagebox(msprintf(_("%s: Cannot open file "'%s"' " +..
"for reading.\n"), "edit_curv", flname), "modal");
return
end
case ".sod" then
if execstr("load(fn)","errcatch") == 0 then
x=xy(:,1);y=xy(:,2);
else
messagebox(msprintf(_("%s: Cannot open file "'%s"' " +..
"for reading.\n"), "edit_curv", flname), "modal");
return
end
else
messagebox(_("Error in file format."), "modal");
return
end
else
x=x
y=y
end
endfunction
function savexy(x,y)
fn=uiputfile(["*.sod";"*.xy"], "", _("Select a file to write"));
if fn <> "" then
[pth, fnm, ext] = fileparts(fn);
flname = fnm + ext;
xy = [x y];
fil = fn;
select ext
case "" then
fil = fil + ".xy";
ext = ".xy";
case ".xy" then
// empty case fil = fn
case ".sod" then
// empty case fil = fn
else
fil = pth + fnm + ".xy";
ext = ".xy";
end
select ext
case ".sod" then
if execstr("save(fil,""xy"")","errcatch")<>0 then
messagebox(msprintf(_("%s: The file "'%s"' " +..
"cannot be written.\n"), "edit_curv", flname), "modal");
return
end
case ".xy" then
isErr = execstr("write(fil,xy)","errcatch")
if isErr == 240 then
mdelete(fil); // write cannot overwrite an existing file
isErr = execstr("write(fil,xy)","errcatch");
end
if isErr <> 0 then
messagebox(msprintf(_("%s: The file "'%s"' " +..
"cannot be written.\n"), "edit_curv", flname), "modal");
return
end
end
end
endfunction
|