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
|
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2010 - DIGITEO - Clément DAVID
// Copyright (C) 2011-2011 - DIGITEO - Bruno JOFRET
//
// 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 [status, msg] = xcosValidateBlockSet(interfFunctionName)
status = %t;
msg = "";
if typeof(interfFunctionName) <> "string" | size(interfFunctionName) <> [1, 1]
error(999, sprintf(_("%s: Wrong type for argument #%d: A String expected."), "xcosValidateBlockSet", 1))
end
// Check function is defined
ierr = execstr("funType = typeof("+interfFunctionName+");", "errcatch")
if ierr <> 0 | and(funType <> ["fptr", "function"])
status = %f;
msg = _("Interface function does not exist or can not be called.");
return
end
// Check for signature
vars=macrovar(evstr(interfFunctionName));
if or([size(vars(1)) <> [3 1] , size(vars(2)) <> [3 1]]) then
status = %f;
msg = sprintf(_("%s is not a valid block descriptor."), interfFunctionName);
continue;
end
// Overload usefull functions
// Stubbing the x_mdialog method
// checking it's arguments size only
function [result]=x_mdialog(title, labelsv, labelsh, default_inputs_vector)
[lhs, rhs] = argn();
if rhs == 3 then
default_inputs_vector = labelsh;
result = x_dialog(labelsv, default_inputs_vector);
elseif rhs == 4 then
vSize = size(labelsv, "*");
hSize = size(labelsh, "*");
if size(default_inputs_vector) <> [vSize, hSize] then
error(999, sprintf(_("%s: Wrong size for input argument #%d: %d-by-%d matrix expected.\n"), "x_mdialog", 4, vSize, hSize));
end;
result = default_inputs_vector;
else
error(999, sprintf(_("%s: Wrong number of input arguments: %d or %d expected.\n"), "x_mdialog", 3, 4));
end
endfunction
// Stubbing the x_dialog method
// checking it's arguments size only
function [result]=x_dialog(labels, default_inputs_vector)
result = default_inputs_vector;
endfunction
// Stubbing the edit_curv method
function [xx, yy, ok, gc] = edit_curv(xx, yy, axis, args, gc)
ok = %T;
if ~exists("gc", "l") then
rect=[0 0 1 1];
axisdata=[2 10 2 10];
gc = list(rect, axisdata);
end
endfunction
// Stubbing the msgbox method
function [btn] = msgbox(msg, msgboxtitle, msgboxicon, buttons, ismodal)
btn=1;
endfunction
// Stubbing the message method
function [btn] = message(strings ,buttons, modal)
btn=1;
endfunction
ierr = execstr("scs_m = "+interfFunctionName+"(""define"", [], [])", "errcatch");
if ierr <> 0
status = %f;
msg = sprintf(_("Block definition with function [%s] failed."), interfFunctionName);
return
end
ierr = execstr("scs_m = "+interfFunctionName+"(""set"", scs_m, [])", "errcatch")
if ierr <> 0
errmsg = lasterror();
status = %f;
msg = sprintf(_("Block configuration with function [%s] failed."), interfFunctionName);
msg = [msg;errmsg];
return
end
endfunction
|