File: standard_draw.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (192 lines) | stat: -rw-r--r-- 4,146 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
function standard_draw(o,frame)
//
// Copyright INRIA
xf=60
yf=40
[lhs,rhs]=argn(0)
if rhs==1 then
  frame=%t
end


nin=size(o(3)(2),1);
nout=size(o(3)(3),1);
clkin=size(o(3)(4),1);
clkout=size(o(3)(5),1);


[orig,sz,orient]=o(2)(1:3)
thick=xget('thickness');xset('thickness',2)
// draw box
pat=xget('pattern')
xset('pattern',default_color(0))
e=4
With3D=options('3D')(1)
if frame then
  if With3D then
    #Color3D=options('3D')(2)
    //3D aspect
    xset('thickness',2);
    xset('pattern',#Color3D)
    xpoly([orig(1)+e;orig(1)+sz(1);orig(1)+sz(1)],..
          [orig(2)+sz(2);orig(2)+sz(2);orig(2)+e],'lines')

    xset('pattern',default_color(0))
    xset('thickness',1)
    eps=0.3
    
    xx=[orig(1) , orig(1)
        orig(1) , orig(1)+sz(1)-e
        orig(1)+e   , orig(1)+sz(1)
        orig(1)+e   , orig(1)+e];
    
    yy=[orig(2)         , orig(2)
        orig(2)+sz(2)-e   , orig(2)
        orig(2)+sz(2) , orig(2)+e
        orig(2)+e           , orig(2)+e];
    
//    xset('pattern',1)
    xfpolys(xx,yy,-[1,1]*#Color3D)
    xset('thickness',2);
  else
    e=0
    xset('thickness',2);
    xrect(orig(1),orig(2)+sz(2),sz(1),sz(2))
  end
end

xset('pattern',default_color(0))
// draw input/output ports
//------------------------

if orient then  //standard orientation
  // set port shape
  out=[0  -1/14
       1/7 0
       0   1/14
       0  -1/14]*diag([xf,yf])
  in= [-1/7  -1/14
        0    0
       -1/7   1/14
       -1/7  -1/14]*diag([xf,yf])
  dy=sz(2)/(nout+1)
xset('pattern',default_color(1))
  for k=1:nout
    xfpoly(out(:,1)+ones(4,1)*(orig(1)+sz(1)),..
        out(:,2)+ones(4,1)*(orig(2)+sz(2)-dy*k),1)
  end


  dy=sz(2)/(nin+1)
  for k=1:nin
    xfpoly(in(:,1)+ones(4,1)*orig(1),..
      in(:,2)+ones(4,1)*(orig(2)+sz(2)-dy*k),1)
  end
else //tilded orientation
  out=[0  -1/14
       -1/7 0
       0   1/14
       0  -1/14]*diag([xf,yf])
  in= [1/7  -1/14
       0    0
       1/7   1/14
       1/7  -1/14]*diag([xf,yf])
  dy=sz(2)/(nout+1)
xset('pattern',default_color(1))
  for k=1:nout
    xfpoly(out(:,1)+ones(4,1)*orig(1)-1,..
        out(:,2)+ones(4,1)*(orig(2)+sz(2)-dy*k),1)
  end
  dy=sz(2)/(nin+1)
  for k=1:nin
    xfpoly(in(:,1)+ones(4,1)*(orig(1)+sz(1))+1,..
        in(:,2)+ones(4,1)*(orig(2)+sz(2)-dy*k),1)
  end
end
// draw input/output clock ports
//------------------------
// set port shape

out= [-1/14  0
     0      -1/7
     1/14   0
     -1/14  0]*diag([xf,yf])


in= [-1/14  1/7
     0      0
     1/14   1/7
     -1/14  1/7]*diag([xf,yf])


dx=sz(1)/(clkout+1)
xset('pattern',default_color(-1))
for k=1:clkout
  xfpoly(out(:,1)+ones(4,1)*(orig(1)+k*dx),..
      out(:,2)+ones(4,1)*orig(2),1)
//        out(:,2)+ones(4,1)*orig(2),1)
end
dx=sz(1)/(clkin+1)
for k=1:clkin
  xfpoly(in(:,1)+ones(4,1)*(orig(1)+k*dx),..
      in(:,2)+ones(4,1)*(orig(2)+sz(2)),1)
//        in(:,2)+ones(4,1)*(orig(2)+sz(2)),1)
end
xset('pattern',default_color(0))
// draw Identification
//------------------------
if size(o(3)) >= 15 then
  ident = o(3)(15)
else
  ident = []
end
if ident <> [] then
  font = xget('font')
  xset('font', options('ID')(1)(1), options('ID')(1)(2))
  rectangle = xstringl(orig(1), orig(2), ident)
  w = max(rectangle(3), sz(1))
  h = rectangle(4) * 1.3
  xstringb(orig(1) + sz(1) / 2 - w / 2, orig(2) - h ,	..
      ident , w, h)
  xset('font', font(1), font(2))
end
xset('thickness',thick)
//
//xset('pattern',pat)

fnt=xget('font')
deff('c=scs_color(c)','if flag==''background'' then c=coli,end')
flag='foreground'
if size(o(2))>8 then //compatibility
  gr_i=o(2)(9)
  if type(gr_i)==15 then 
    [gr_i,coli]=gr_i(1:2),
  else 
    coli=[]
  end
  if coli<>[] then
      gr_i=['pcoli=xget(''pattern'')';..
	  'xset(''pattern'',coli)';
	  'xfrect(orig(1),orig(2)+sz(2),sz(1),sz(2))';
	  'flag=''background'';'
	  gr_i;
	  'xset(''pattern'',pcoli)'
	  'flag=''foreground'';';
	  gr_i]
  end
end //compatibility
model=o(3)
if With3D&frame then
  orig=orig+e
  sz=sz-e
end
ierr=execstr(gr_i,'errcatch'),
if ierr<>0 then 
  message(['Error in Icon defintion';
      'See error message in scilab window'])
end
xset('pattern',pat)
xset('font',fnt(1),fnt(2))
xset('thickness',1)