summaryrefslogtreecommitdiff
path: root/server/xml/macros/cycloplegisk_refraktion-1.0.xml
blob: 54fa8945a09df8061e9e294e340867f5f7976e89 (plain)
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
<?xml version='1.0' encoding='UTF-8'?>
<macro name="cycloplegisk_refraktion" version="1.0">
  <resume language="lua">
    out = ''
    if ( getValue('cycloplegisk_refraktion.mangler.odxt') == '' )
    then
      out = out .. 'Cycloplegisk refraktion, o.dxt: ' .. getValue('cycloplegisk_refraktion.sf.odxt') .. ' sf'
      if ( getValue('cycloplegisk_refraktion.cyl.odxt') ~= '' )
      then
        out = out .. ', ' .. getValue('cycloplegisk_refraktion.cyl.odxt') .. ' cyl'
      end
      if ( getValue('cycloplegisk_refraktion.grader.odxt') ~= '' )
      then
        out = out .. ', ' .. getValue('cycloplegisk_refraktion.grader.odxt') .. ' grader\n'
      else
        out = out .. '\n'
      end
    end

    if ( getValue('cycloplegisk_refraktion.mangler.osin') == '' )
    then
      out = out .. 'Cycloplegisk refraktion, o.sin: ' .. getValue('cycloplegisk_refraktion.sf.osin') .. ' sf'
      if ( getValue('cycloplegisk_refraktion.cyl.osin') ~= '' )
      then
        out = out .. ', ' .. getValue('cycloplegisk_refraktion.cyl.osin') .. ' cyl'
      end
      if ( getValue('cycloplegisk_refraktion.grader.osin') ~= '' )
      then
        out = out .. ', ' .. getValue('cycloplegisk_refraktion.grader.osin') .. ' grader\n'
      else
        out = out .. '\n'
      end
    end

    return out
  </resume>
  <queries>
<!--    <query service="pentominos" class="phoroptor" ttl="100000"/> -->
    <query service="pracro" class="missing_eye_odxt" ttl="1000000"/>
    <query service="pracro" class="missing_eye_osin" ttl="1000000"/>
  </queries>
  <maps>
    <map name="missing_eye_odxt_map">
      value = 0
      timestamp = 0
      source = 'pracro'

      if( missing_eye_odxt )
      then
        if( missing_eye_odxt.value and missing_eye_odxt.value == '' )
        then
          value = ''
          timestamp = missing_eye_odxt.timestamp
        else
          value = 'mangler'
          timestamp = missing_eye_odxt.timestamp
        end
      end
      return value, timestamp, source
    </map>
    <map name="missing_eye_osin_map">
      value = 0
      timestamp = 0
      source = 'pracro'
      
      if( missing_eye_osin )
      then
        if( missing_eye_osin.value and missing_eye_osin.value == '' )
        then
          value = ''
          timestamp = missing_eye_osin.timestamp
        else
          value = 'mangler'
          timestamp = missing_eye_osin.timestamp
        end
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.osin.sph">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.osin and phoroptor.osin.sph_n and phoroptor.osin.sph_n.value and phoroptor.osin.sph_n.timestamp)
      then
        value = phoroptor.osin.sph_n.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.osin.sph_n.timestamp
        source = phoroptor.osin.sph_n.source
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.osin.cyl">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.osin and phoroptor.osin.cyl and phoroptor.osin.cyl.value and phoroptor.osin.cyl.timestamp)
      then
        value = phoroptor.osin.cyl.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.osin.cyl.timestamp
        source = phoroptor.osin.cyl.source
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.osin.axis">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.osin and phoroptor.osin.axis and phoroptor.osin.axis.value and phoroptor.osin.axis.timestamp)
      then
        value = phoroptor.osin.axis.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.osin.axis.timestamp
        source = phoroptor.osin.axis.source
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.odxt.sph">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.odxt and phoroptor.odxt.sph_n and phoroptor.odxt.sph_n.value and phoroptor.odxt.sph_n.timestamp)
      then
        value = phoroptor.odxt.sph_n.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.odxt.sph_n.timestamp
        source = phoroptor.odxt.sph_n.source
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.odxt.cyl">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.odxt and phoroptor.odxt.cyl and phoroptor.odxt.cyl.value and phoroptor.odxt.cyl.timestamp)
      then
        value = phoroptor.odxt.cyl.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.odxt.cyl.timestamp
        source = phoroptor.odxt.cyl.source
      end
      return value, timestamp, source
    </map>
    <map name="phoroptor.odxt.axis">
      -- Returning 0, 0 invalidates the result
      value = 0
      timestamp = 0
      source = 0

      if(phoroptor and phoroptor.odxt and phoroptor.odxt.axis and phoroptor.odxt.axis.value and phoroptor.odxt.axis.timestamp)
      then
        value = phoroptor.odxt.axis.value
        -- convert . to ,
        value = string.gsub(value, '[.]', ',')
        timestamp = phoroptor.odxt.axis.timestamp
        source = phoroptor.odxt.axis.source
      end
      return value, timestamp, source
    </map>
  </maps>
  <scripts>
     <script language="lua" name="lt20gt-25">
      if(value == '')
      then
        return false
      end

      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= -25 and tonumber(value) &lt;= 20)
      then
        return true
      else
        return false
      end
    </script>
    <script language="lua" name="lt10gt-15">
      if(value == '')
      then
        return true
      end

      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= -15 and tonumber(value) &lt;= 10)
      then
        return true
      else
        return false
      end
    </script>
    <script language="lua" name="lt359gt0">
      if(value == '')
      then
        return true
      end

      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= 0 and tonumber(value) &lt;= 359)
      then
        return true
      else
        return false
      end
    </script>
    <script language="lua" name="right_eye">
      if ( value == 'mangler' )
      then
        disable('right_eye_frame')
      else
        enable('right_eye_frame')
      end
      return true
    </script>
    <script language="lua" name="left_eye">
      if ( value == 'mangler' )
      then
        disable('left_eye_frame')
      else
        enable('left_eye_frame')
      end
      return true
    </script>
  </scripts>
  <widgets caption="Cycloplegisk refraktion"
          layout="vbox">

    <frame layout="hbox">

      <!-- o.dxt -->
      <frame layout="vbox">
        <checkbox caption="Der er ikke målt på o.dxt"
		  name="cycloplegisk_refraktion.mangler.odxt" script="right_eye"
		  map="missing_eye_odxt_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="right_eye_frame" caption="o.dxt" layout="hbox">
	  
	  <frame layout="vbox">
	    <label caption="Sf:"/>
	    <lineedit name="cycloplegisk_refraktion.sf.odxt" map="phoroptor.odxt.sph"
		      regexp="[+-]{0,1}\d{1,2},\d{2}" script="lt20gt-25" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="Cyl:"/>
	    <lineedit name="cycloplegisk_refraktion.cyl.odxt" map="phoroptor.odxt.cyl"
		      regexp="|[+-]{0,1}\d{1,2},\d{2}" script="lt10gt-15" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="Grader:"/>
	    <lineedit name="cycloplegisk_refraktion.grader.odxt" map="phoroptor.odxt.axis"
		      regexp="|[\d]+" script="lt359gt0" value=""/>
	  </frame>
	</frame>
      </frame>
      
      <!-- o.sin -->
      <frame layout="vbox">
	<checkbox caption="Der er ikke målt på o.sin"
		  name="cycloplegisk_refraktion.mangler.osin" script="left_eye"
		  map="missing_eye_osin_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="left_eye_frame" caption="o.sin" layout="hbox">
	  
	  <frame layout="vbox">
	    <label caption="Sf:"/>
	    <lineedit name="cycloplegisk_refraktion.sf.osin" map="phoroptor.osin.sph"
		      regexp="[+-]{0,1}\d{1,2},\d{2}" script="lt20gt-25" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="Cyl:"/>
	    <lineedit name="cycloplegisk_refraktion.cyl.osin" map="phoroptor.osin.cyl"
		      regexp="|[+-]{0,1}\d{1,2},\d{2}" script="lt10gt-15" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="Grader:"/>
	    <lineedit name="cycloplegisk_refraktion.grader.osin" map="phoroptor.osin.axis"
		      regexp="|[\d]+" script="lt359gt0" value=""/>
	  </frame>
	</frame>
      </frame>

    </frame>
    
    <!-- Knapper -->
    <frame layout="hbox">
      <spacer />
      <button caption="Gem" action="commit"/>
    </frame>
  </widgets>
</macro>