summaryrefslogtreecommitdiff
path: root/server/xml/macros/keratometri-1.0.xml
blob: c0293167bbecb015471a9f43cc9d9d40ec3d4412 (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
<?xml version='1.0' encoding='UTF-8'?>
<macro name="keratometri" version="1.0">
  <resume language="lua">
    function tonmb(value)
      value = string.gsub(value, ',', '.')
      return tonumber(value)
    end

    function tostr(value)
      value = string.format('%.2f', value)
      value = string.gsub(value, '\\.', ',')
      return value
    end

    out = ''
    
    if ( getValue('keratometri.right.missing') == '' )
    then

      rr1 = tonmb(getValue('keratometri.right.r1'))
      rr2 = tonmb(getValue('keratometri.right.r2'))
      rx1 = tonmb(getValue('keratometri.right.x1'))

      if ( rx1 &gt; 0 and rx1 &lt; 90 ) then
        rx2 = rx1 + 90
      end
    
      if ( rx1 &gt;= 90 and rx1 &lt; 180 ) then
        rx2 = rx1 - 90
      end

      rd1 = tonumber(string.format('%.2f', 337.5 / rr1))
      rd2 = tonumber(string.format('%.2f', 337.5 / rr2))

      if ( rd1 &lt; rd2 )
      then
        ry1 = rd1 - rd2
        ry2 = rx1
      else
       ry1 = rd2 - rd1
        ry2 = rx2
      end

      rr1 = tostr(rr1)
      rr2 = tostr(rr2)

      print (rr1)

      out = out .. 'Keratometri, højre øje:\n' ..
      'Radius 1: ' .. rr1 .. ' mm (' .. rd1 .. ' D) i ' .. rx1 .. ' grader.\n' .. 
      'Radius 2: ' .. rr2 .. ' mm (' .. rd2 .. ' D) i ' .. rx2 .. ' grader.\n' ..
      'Cylinder: ' .. ry1 .. ' i ' .. ry2 .. ' grader\n\n'

    end

    if ( getValue('keratometri.left.missing') == '' )
    then

      lr1 = tonmb(getValue('keratometri.left.r1'))
      lr2 = tonmb(getValue('keratometri.left.r2'))
      lx1 = tonmb(getValue('keratometri.left.x1'))

      if ( lx1 &gt; 0 and lx1 &lt; 90 ) then
        lx2 = lx1 + 90
      end
    
      if ( lx1 &gt;= 90 and lx1 &lt; 180 ) then
        lx2 = lx1 - 90
      end

      ld1 = tonumber(string.format('%.2f', 337.5 / lr1))
      ld2 = tonumber(string.format('%.2f', 337.5 / lr2))

      if ( ld1 &lt; ld2 )
      then
        ly1 = ld1 - ld2
        ly2 = lx1
      else
       ly1 = ld2 - ld1
        ly2 = lx2
      end

      lr1 = tostr(lr1)
      lr2 = tostr(lr2)

      print (lr1)

      out = out .. 'Keratometri, venstre øje:\n' ..
      'Radius 1: ' .. lr1 .. ' mm (' .. ld1 .. ' D) i ' .. lx1 .. ' grader.\n' .. 
      'Radius 2: ' .. lr2 .. ' mm (' .. ld2 .. ' D) i ' .. lx2 .. ' grader.\n' ..
      'Cylinder: ' .. ly1 .. ' i ' .. ly2 .. ' grader'

    end

    return out
  </resume>
  <queries>
    <query class="keratometri" ttl="100000"/>
    <query service="pracro" class="missing_eye_right" ttl="1000000"/>
    <query service="pracro" class="missing_eye_left" ttl="1000000"/>
  </queries>
  <maps>
    <map name="missing_eye_right_map">
      value = 0
      timestamp = 0
      source = 'pracro'

      if( missing_eye_right )
      then
        if( missing_eye_right.value and missing_eye_right.value == '' )
        then
          value = ''
          timestamp = missing_eye_right.timestamp
        else
          value = 'mangler'
          timestamp = missing_eye_right.timestamp
        end
      end
      return value, timestamp, source
    </map>
    <map name="missing_eye_left_map">
      value = 0
      timestamp = 0
      source = 'pracro'
      
      if( missing_eye_left )
      then
        if( missing_eye_left.value and missing_eye_left.value == '' )
        then
          value = ''
          timestamp = missing_eye_left.timestamp
        else
          value = 'mangler'
          timestamp = missing_eye_left.timestamp
        end
      end
      return value, timestamp, source
    </map>
  </maps>
  <scripts>
     <script language="lua" name="lt20gt0">
      if(value == '')
      then
        return false
      end

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

      value = string.gsub(value, ',', '.')
      if(tonumber(value) &gt;= 0 and tonumber(value) &lt;= 179)
      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="Keratometri"
          layout="vbox">

    <frame layout="hbox">

      <!-- Højre øje -->
      <frame layout="vbox">
        <checkbox caption="Der er ikke målt på højre øje"
		  name="keratometri.right.missing" script="right_eye"
		  map="missing_eye_right_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="right_eye_frame" caption="Højre øje" layout="hbox">
	  
	  <frame layout="vbox">
	    <label caption="R1:"/>
	    <lineedit name="keratometri.right.r1" regexp="[+-]{0,1}\d{1,2},\d{2}" script="lt20gt0" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="R2:"/>
	    <lineedit name="keratometri.right.r2" regexp="[+-]{0,1}\d{1,2},\d{2}" script="lt20gt0" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="X1:"/>
	    <lineedit name="keratometri.right.x1" regexp="[\d]+" script="lt179gt0" value=""/>
	  </frame>
	</frame>
      </frame>
      
      <!-- Venstre øje -->
      <frame layout="vbox">
	<checkbox caption="Der er ikke målt på venstre øje"
		  name="keratometri.left.missing" script="left_eye"
		  map="missing_eye_left_map"
		  truevalue="mangler" falsevalue="" value=""/>
	<frame name="left_eye_frame" caption="Venstre øje" layout="hbox">
	  
	  <frame layout="vbox">
	    <label caption="R1:"/>
	    <lineedit name="keratometri.left.r1" regexp="\d{1,2},\d{2}" script="lt20gt0" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="R2:"/>
	    <lineedit name="keratometri.left.r2" regexp="\d{1,2},\d{2}" script="lt20gt0" value=""/>
	  </frame>
	  <frame layout="vbox">
	    <label caption="X1:"/>
	    <lineedit name="keratometri.left.x1" regexp="[\d]+" script="lt179gt0" value=""/>
	  </frame>
	</frame>
      </frame>

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