-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleer.m
172 lines (158 loc) · 3.94 KB
/
leer.m
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
% arcchivo *.xml leido con funcion xmlread
% prueba = 49
% impulso = 77
% impulso 2.0.14 = 89
% Funcion leer xml de v-HIT por Jorge A. Rey Martinez
function [existe, nombre, apellido, cabeza, ojo, lado, ganancia, picocabeza, borrado, tipo] = leer(archivo,prueba,impulso)
try
aa = archivo.getDocumentElement;
bb = aa.getChildNodes;
% Get the first "Entry"'s children
cc = bb.item(1).getChildNodes;
ii = cc.item(7).getChildNodes;
version = char(ii.getTextContent);
if strcmp(version,'2.0.14')
%para version beta 2 de Nicolas
impulso = impulso +8;
%prueba = prueba-2;
end
if strcmp(version,'3.0.42')
%para version beta 3 de Nicolas
impulso = impulso + 24;
prueba = prueba;
end
if strcmp(version,'4.0.37')
%para version beta 3.5 borrar test oculomotores
impulso = impulso + 122;
prueba = prueba;
end
%COMPROVACION DE IDIOMA
cc = bb.item(3).getChildNodes;
ii = cc.item(prueba).getChildNodes;
punto1 = ii.getFirstChild;
gg = ii.getChildNodes;
ff = gg.item(51).getChildNodes;
decimal = char(ff.getTextContent);
hh = gg.item(53).getChildNodes;
separa = char(hh.getTextContent);
if strcmp(version,'4.0.37')
hh = gg.item(65).getChildNodes;
separa = char(hh.getTextContent);
end
%if separa ~= ';' || separa ~= ','
% existe = 3;
% nombre = 0;
% apellido = 0;
% cabeza = 0;
% ojo = 0;
% lado = 0;
% ganancia = 0;
% picocabeza = 0;
% borrado = 0;
% tipo = 0;
% return
%end
%FIN IDIOMA
a = archivo.getDocumentElement;
b = a.getChildNodes;
% Get the first "Entry"'s children
c = b.item(3).getChildNodes;
i = c.item(9).getChildNodes;
punto1 = i.getFirstChild;
nombre = char(i.getTextContent);
e = c.item(11).getChildNodes;
punto2 = e.getFirstChild;
apellido = char(e.getTextContent);
f = c.item(prueba).getChildNodes;
modulo = char(f.getChildNodes);
if strcmp(modulo,'[VW_HITest: null]') || strcmp(modulo,'[HITest: null]') || strcmp(modulo,'[VW_SHIMPTest: null]')
%Nodo numero de prueba
g = f.getChildNodes;
fr = g.item(69).getChildNodes;
if strcmp(version,'4.0.37')
fr = g.item(81).getChildNodes;
end
%punto25 = fr.getFirstChild;
tipo = char(fr.getTextContent);
h = g.item(impulso).getChildNodes;
if strcmp(h,'[VW_SHIMPVideo: null]')
tipo = 'SHIMP Lateral';
end
if strcmp(h,'[VW_HIImpulse: null]') || strcmp(h,'[HIImpulse: null]')|| strcmp(h,'[VW_SHIMPImpulse: null]')
%Nodo numero de impulso
i = h.item(5).getChildNodes;
punto3 = i.getFirstChild;
precabeza = char(i.getTextContent);
if strcmp(h,'[VW_SHIMPImpulse: null]')
hh = gg.item(61).getChildNodes;
separa = char(hh.getTextContent);
fr = g.item(77).getChildNodes;
tipo = char(fr.getTextContent);
end
if separa == ';'
precabeza = strrep(precabeza, ';', ' ');
precabeza = strrep(precabeza, ',', '.');
else
precabeza = strrep(precabeza, ',', ' ');
end
precabeza = textscan(precabeza,'%f');
cabeza = precabeza{1};
j = h.item(7).getChildNodes;
punto4 = j.getFirstChild;
preojo = char(j.getTextContent);
if separa == ';'
preojo = strrep(preojo, ';', ' ');
preojo = strrep(preojo, ',', '.');
else
preojo = strrep(preojo, ',', ' ');
end
preojo = textscan(preojo,'%f');
ojo = preojo{1};
k = h.item(9).getChildNodes;
punto5 = k.getFirstChild;
preizquierda = char(k.getTextContent);
if strcmp (preizquierda, 'true')
lado = 1;
else
lado = 0;
end
l = h.item(11).getChildNodes;
punto6 = l.getFirstChild;
ganancia = str2num(char(l.getTextContent));
m = h.item(13).getChildNodes;
punto6 = m.getFirstChild;
picocabeza = str2num(char(m.getTextContent));
o = h.item(15).getChildNodes;
punto7 = o.getFirstChild;
preborrado = char(o.getTextContent);
if strcmp (preborrado, 'true')
borrado = 1;
else
borrado = 0;
end
existe = 1;
else
%Devuelve estos valores del campo video dentro del vhit
cabeza = 1;
existe = 1;
ojo = 1;
lado = 1;
ganancia = 1;
picocabeza = 1;
borrado = 1;
end
else
existe = 2;
end
catch
existe = 0;
nombre = 0;
apellido = 0;
cabeza = 0;
ojo = 0;
lado = 0;
ganancia = 0;
picocabeza = 0;
borrado = 0;
tipo = 0;
end