File: scicos.sci

package info (click to toggle)
scilab 4.0-12
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 100,640 kB
  • ctags: 57,333
  • sloc: ansic: 377,889; fortran: 242,862; xml: 179,819; tcl: 42,062; sh: 10,593; ml: 9,441; makefile: 4,377; cpp: 1,354; java: 621; csh: 260; yacc: 247; perl: 130; lex: 126; asm: 72; lisp: 30
file content (353 lines) | stat: -rw-r--r-- 8,920 bytes parent folder | download
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
function [scs_m,newparameters,needcompile,edited]=scicos(scs_m,menus)
// scicos - block diagram graphic editor
//%SYNTAX
// scs_m=scicos(scs_m,job)
//%PARAMETERS
// scs_m    : scilab list, scicos main data structure
//      scs_m.props contains system name and other infos
//      scs_m.objs(i) contains description of ith block diagram element
// menus : vector of character strings,optional parameter giving usable menus 
//!
// Copyright INRIA
[lhs,rhs]=argn(0)


//xset('window',curwin);
olds=get('old_style')
set("old_style","on")
//xset('default')

//check if superblock editing mode
[%ljunk,%mac]=where()
slevel=prod(size(find(%mac=='scicos')))
super_block=slevel>1
if ~super_block then
  //
  // define scicos libraries
  if exists('scicos_pal')==0 | exists('%scicos_menu')==0 | exists('%scicos_short')==0 |..
	exists('%scicos_display_mode')==0| exists('scicos_pal_libs') ==0 then 
    [scicos_pal_0,%scicos_menu_0,%scicos_short_0,%scicos_help_0,..
     %scicos_display_mode_0,modelica_libs_0,scicos_pal_libs_0]=initial_scicos_tables()
    if exists('scicos_pal')==0 then
      x_message(['scicos_pal not defined';
		 'using default values'])
      scicos_pal=scicos_pal_0
    end
    if exists('%scicos_menu')==0 then
      x_message(['%scicos_menu not defined';
		 'using default values'])
      %scicos_menu=%scicos_menu_0
    end
    if exists('%scicos_short')==0 then
      x_message(['%scicos_short not defined';
		 'using default values'])
      %scicos_short=%scicos_short_0
    end
    if exists('%scicos_help')==0 then
      x_message(['%scicos_help not defined';
		 'using default values'])
      %scicos_help=%scicos_help_0
    end
    if exists('%scicos_display_mode')==0 then
      x_message(['%scicos_display_mode not defined';
		 'using default values'])
      %scicos_display_mode=%scicos_display_mode_0
    end
    
    if exists('modelica_libs')==0 then
      x_message(['modelica_libs not defined';
		 'using default values']) 
      modelica_libs=modelica_libs_0
    end
    if exists('scicos_pal_libs')==0 then
      x_message(['scicos_pal_libs not defined';
		 'using default values']) 
      scicos_pal_libs=scicos_pal_libs_0
    end
  end
  
  if ~exists('%scicos_context') then
    %scicos_context=struct()
  end
  
  //intialize lhb menu
 
 %scicos_lhb_list=list()
 %scicos_lhb_list(1)=list('Open/Set',..
		 'Smart Move'  ,..
		 'Move'  ,..
		 'Copy',..
		 'Delete',..
		 'Link',..
		 'Align',..
		 'Replace',..
		 'Flip',..
		 list('Properties',..
		      'Resize',..
		      'Icon',..
		      'Icon Editor',..
		      'Color',..
		      'Label',..
		      'Get Info',..
		      'Identification',..
		      'Documentation'),..
		 'Code Generation',..
		 'Help')
  %scicos_lhb_list(2)=list('Undo','Palettes','Context','Add new block',..
	      'Copy Region','Delete Region','Region to Super Block',..
	      'Replot','Save','Save As',..
	      'Load','Export','Quit','Background color','Aspect',..
	      'Zoom in',  'Zoom out','Help')
 %scicos_lhb_list(3)=list('Copy','Copy Region','Help')
  //
  if exists('scicoslib')==0 then load('SCI/macros/scicos/lib'),end
  exec(loadpallibs,-1) //to load the palettes libraries
end



scicos_ver='scicos2.7.3' // set current version of scicos
Main_Scicos_window=1000

//Initialisation
newparameters=list()
enable_undo=%f
edited=%f
needreplay=%f
%path='./'
%exp_dir=PWD
global %tableau  

if ~super_block then // global variables
  %zoom=1.4
  pal_mode=%f // Palette edition mode
//  newblocks=[] // table of added functions in pal_mode
  super_path=[] // path to the currently opened superblock

  scicos_paltmp=scicos_pal;
  if execstr('load(''.scicos_pal'')','errcatch')==0 then
    scicos_pal=[scicos_paltmp;scicos_pal]
    [%junk,%palce]=gunique(scicos_pal(:,2))
    %palce=-sort(-%palce);
    scicos_pal=scicos_pal(%palce,:);
  end

  execstr('load(''.scicos_short'')','errcatch')  //keyboard shortcuts

end
//
if rhs>=1 then
  if type(scs_m)==10 then //diagram is given by its filename
    %fil=scs_m
    alreadyran=%f
    [ok,scs_m,%cpr,edited]=do_load(%fil,'diagram')
    if ~ok then return,end
    if size(%cpr)==0 then
      needcompile=4
      %state0=list()
    else
      %state0=%cpr.state;
      needcompile=0
    end
  else //diagram is given by its data structure
    if ~super_block then 
      %cpr=list();needcompile=4;alreadyran=%f,%state0=list()
    end
  end
else
  xset('window',Main_Scicos_window);
  scs_m=scicos_diagram()
  %cpr=list();needcompile=4;alreadyran=%f;%state0=list()
end
//
if typeof(scs_m)<>'diagram' then error('first argument must be a scicos diagram'),end


%cor_item_exec=[];
for %Y=1:length(%scicos_menu)
  %cor_item_exec=[%cor_item_exec,%scicos_menu(%Y)(2:$)];
end
%cor_item_exec=%cor_item_exec';
%R = %cor_item_exec; 
%R= stripblanks(%R)+'_'
%R=strsubst(%R,'/','')
%R=strsubst(%R,' ','')
%R=strsubst(%R,'.','')
%R=strsubst(%R,'-','');
%cor_item_exec=[%cor_item_exec, %R];

menus=tlist('xxx')
for %Y=1:length(%scicos_menu)
  menus(1)=[menus(1),%scicos_menu(%Y)(1)];
  menus($+1)=%scicos_menu(%Y)(2:$); 
end

for %Y=1:length(%scicos_menu)
  %R= %scicos_menu(%Y);
  %w='menus('''+%R(1)+''')('+ string(1:(size(%R,'*')-1)) + ')';
  execstr(%R(1)+ '=%w;');
end


//keyboard definiton
%tableau=emptystr([1:100]);
for %Y=1:size(%scicos_short,1)
%tableau(-31+ascii(%scicos_short(%Y,1)))=%scicos_short(%Y,2);
end


//viewport
options=scs_m.props.options
//solver
%scicos_solver=scs_m.props.tol(6)

if ~super_block then
  xset('window',Main_Scicos_window);
  curwin=xget('window');
  palettes=list();
  noldwin=0
  windows=[1 curwin]
  pixmap=%scicos_display_mode
  //
  if ~exists('%scicos_gui_mode') then 
    if with_tk() then %scicos_gui_mode=1,else %scicos_gui_mode=0,end
  end
  //%scicos_gui_mode=0
  if %scicos_gui_mode==1 then
    getfile=tk_getfile;
    savefile=tk_savefile;
    if MSDOS then getvalue=tk_getvalue,end
    if MSDOS then mpopup=tk_mpopup, else mpopup=tk_mpopupX,end
    if MSDOS then choose=tk_choose; else
      deff('x=choose(varargin)','x=x_choose(varargin(1:$))');
    end
    funcprot(0);getcolor=tk_getcolor;funcprot(1);
  else
    deff('x=getfile(varargin)','x=xgetfile(varargin(1:$))');
    savefile=getfile;
    deff('Cmenu=mpopup(x)','Cmenu=[]')
    deff('x=choose(varargin)','x=x_choose(varargin(1:$))');
  end
//
else
  noldwin=size(windows,1)
  windows=[windows;slevel curwin]
  palettes=palettes;
end

//initialize graphics
//xdel(curwin)

xset('default')
xbasc();

if pixmap then xset('pixmap',1); end
xset('pattern',1)
xset('dashes',1)
if ~set_cmap(options('Cmap')) then // add colors if required
  options('3D')(1)=%f //disable 3D block shape
end
if pixmap then xset('wwpc');end
xbasc();xselect()
%dr=driver();driver('Rec');
set_background()

pwindow_set_size()
window_set_size()

xset('alufunction',6)

for %Y=1:length(%scicos_menu)
execstr(%scicos_menu(%Y)(1)+'_'+string(curwin)+'='+%scicos_menu(%Y)(1))
end


menu_stuff()

if ~super_block then
  delmenu(curwin,'stop')
  addmenu(curwin,'stop',list(1,'haltscicos'))
  unsetmenu(curwin,'stop')
else
  unsetmenu(curwin,'Simulate')
end

//set context (variable definition...)
if type(scs_m.props.context)==10 then
  %now_win=xget('window')

  [%scicos_context,ierr]=script2var(scs_m.props.context,%scicos_context)
  //for backward compatibility for scifunc
  if ierr==0 then
    %mm=getfield(1,%scicos_context)
    for %mi=%mm(3:$)
      ierr=execstr(%mi+'=%scicos_context(%mi)','errcatch')
      if ierr<>0 then
	break
      end
    end
  end
  //end of for backward compatibility for scifunc
  if ierr  <>0 then
    message(['Error occur when evaluating context:'
	     lasterror() ])
  else
    deff('%fonct()',scs_m.props.context)
    %outfun=macrovar(%fonct);
    //perform eval only if context contains functions which may give
    //different results from one execution to next
    if or(%outfun(4)=='rand')|or(%outfun(4)=='exec')|or(%outfun(4)=='load') ...
    then
      disablemenus()
      [scs_m,%cpr,needcompile,ok]=do_eval(scs_m,%cpr)
      enablemenus()
    end
  end
  xset('window',%now_win)
else
  scs_m.props.context=' ' 
end
drawobjs(scs_m)

if pixmap then xset('wshow'),end
%pt=[];%win=curwin;
Cmenu='Open/Set'
while %t
  while %t do
    [%stack]=stacksize()
    if %stack(2)/%stack(1)>.3 then
      stacksize(2*%stack(1))
      disp('stacksize increased to '+string(2*%stack(1)))
    end
    if Cmenu==[]&%pt==[] then
      [btn,%pt,%win,Cmenu]=cosclick()
      if Cmenu<> [] then 
	break
      end
    else
      break
    end
  end
  
  if Cmenu=='Quit' then do_exit();break;end
  
  %koko=find(Cmenu==%cor_item_exec(:,1));
  if size(%koko,'*')==1 then
    execstr('exec('+%cor_item_exec(%koko,2)+',-1)')
  else
    Cmenu=[];%pt=[]
  end
  if Cmenu=='Quit' then do_exit();break;end
  if pixmap then xset('wshow'),end
end
  set('old_style',stripblanks(olds))

  
endfunction
function [x,k]=gunique(x)
    [x,k]=gsort(x);
    keq=find(x(2:$)==x(1:$-1))
    x(keq)=[]
    k(keq)=[]
endfunction