-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeCalcView.js
408 lines (351 loc) · 12.1 KB
/
LeCalcView.js
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
/**
* Created by guyiyang on 2015/3/5.
*/
function LeCalcView() {
ViewGroup.apply(this, new Array());
this.MIN_RESULT_HEIGHT = 120;
this.setTag("calcview");
var mSelf = this;
var mResultView = new LeCalcResult();
var mShouldParse = false;
var mShouldReset = false;
var mJustClickPerson = false;
var mBtns = new Array();
var gender = new LeGenderBtn("", 1);
iAmMale();
mResultView.getSubText().setText("我是男的,我的");
gender.setOnClickListener(function() {
mJustClickPerson = false;
var result = mSelf.getResultView();
result.getText().setText("");
result.getSubText().setText("");
clearRelation();
if (gender.getSwitch().isOn()) {
gender.getSwitch().switchOff();
iAmFeMale();
result.getSubText().setText("我是女的,我的");
} else {
gender.getSwitch().switchOn();
iAmMale();
result.getSubText().setText("我是男的,我的");
}
});
this.addView(gender);
mBtns.add(gender);
this.disableKeys = function() {
for (var i = 0; i < mBtns.size(); i++) {
if (mBtns[i] != gender && mBtns[i] != younger && mBtns[i] != older) {
mBtns[i].setEnable(false);
} else {
mBtns[i].setEnable(true);
}
}
}
this.enableKeys = function() {
for (var i = 0; i < mBtns.size(); i++) {
if (mBtns[i] != gender && mBtns[i] != younger && mBtns[i] != older) {
mBtns[i].setEnable(true);
}
younger.setEnable(false);
older.setEnable(false);
}
}
var younger = new LeCalcBtn("年轻", 1);
younger.setOnClickListener(function() {
mJustClickPerson = false;
notifyIsOlder(false);
mSelf.enableKeys();
var name = getNewestResult();
var result = mSelf.getResultView();
result.getText().setText(name);
mShouldParse = false;
var process = "";
for (var i = 0; i < myOperations.length - 1; i++) {
process += myOperations[i].inputname + "的 "
}
process += myOperations[i].inputname + "=";
result.getSubText().setText(process);
resetOperation();
})
younger.setEnable(false);
this.addView(younger);
mBtns.add(younger);
var older = new LeCalcBtn("年长", 1);
older.setOnClickListener(function() {
mJustClickPerson = false;
notifyIsOlder(true);
mSelf.enableKeys();
var name = getNewestResult();
var result = mSelf.getResultView();
result.getText().setText(name);
mShouldParse = false;
var process = "";
for (var i = 0; i < myOperations.length - 1; i++) {
process += myOperations[i].inputname + "的 "
}
process += myOperations[i].inputname + "=";
result.getSubText().setText(process);
resetOperation();
});
older.setEnable(false);
this.addView(older);
mBtns.add(older);
var ac = new LeCalcBtn("清空", 1);
ac.setOnClickListener(function() {
mJustClickPerson = false;
var result = mSelf.getResultView();
result.getText().setText("");
result.getSubText().setText("");
clearRelation();
result.getSubText().setText("我的");
});
this.addView(ac);
mBtns.add(ac);
var back = new LeBackBtn("<", 1);
back.setOnClickListener(function() {
var result = mSelf.getResultView();
if (mJustClickPerson) {
result.getText().setText("");
} else {
removeRelation();
result.getText().setText("");
result.getSubText().setText(genProcessText("的"));
}
mJustClickPerson = false;
});
this.addView(back);
mBtns.add(back);
var de = new LeCalcBtn("的", 1);
de.setOnClickListener(function() {
mJustClickPerson = false;
var result = mSelf.getResultView();
var subtext = result.getSubText().getText();
mShouldReset = false;
if (mShouldParse) {
addRelation(result.getText().getText());
if (shouldCheckAge()) {
result.getSubText().setText("比" + getAgeCmpPersion() + "年长还是年轻?");
result.getText().setText("");
mSelf.disableKeys();
return;
}
var name = getNewestResult();
result.getText().setText(name);
mShouldParse = false;
}
result.getSubText().setText(genProcessText("的"));
});
this.addView(de);
mBtns.add(de);
var equal = new LeEqualBtn("=", 2);
equal.setOnClickListener(function() {
mJustClickPerson = false;
var result = mSelf.getResultView();
var subtext = result.getSubText().getText();
mShouldReset = true;
if (mShouldParse) {
addRelation(result.getText().getText());
if (shouldCheckAge()) {
result.getSubText().setText("比" + getAgeCmpPersion() + "年长还是年轻?");
result.getText().setText("");
mSelf.disableKeys();
return;
}
var name = getNewestResult();
result.getText().setText(name);
mShouldParse = false;
}
result.getSubText().setText(genProcessText("="));
resetOperation();
});
this.addView(equal);
mBtns.add(equal);
var father = new LeCalcBtn("父", 0);
father.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("父亲");
mSelf.onRelationClick();
});
this.addView(father);
mBtns.add(father);
var mother = new LeCalcBtn("母", 0);
mother.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("母亲");
mSelf.onRelationClick();
});
this.addView(mother);
mBtns.add(mother);
var husband = new LeCalcBtn("夫", 0);
husband.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("丈夫");
mSelf.onRelationClick();
});
this.addView(husband);
mBtns.add(husband);
var wife = new LeCalcBtn("妻", 0);
wife.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("妻子");
mSelf.onRelationClick();
});
this.addView(wife);
mBtns.add(wife);
var son = new LeCalcBtn("子", 0);
son.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("儿子");
mSelf.onRelationClick();
});
this.addView(son);
mBtns.add(son);
var daughter = new LeCalcBtn("女", 0);
daughter.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("女儿");
mSelf.onRelationClick();
});
this.addView(daughter);
mBtns.add(daughter);
var obrother = new LeCalcBtn("兄", 0);
obrother.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("哥哥");
mSelf.onRelationClick();
});
this.addView(obrother);
mBtns.add(obrother);
var ybrother = new LeCalcBtn("弟", 0);
ybrother.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("弟弟");
mSelf.onRelationClick();
});
this.addView(ybrother);
mBtns.add(ybrother);
var osister = new LeCalcBtn("姐", 0);
osister.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("姐姐");
mSelf.onRelationClick();
});
this.addView(osister);
mBtns.add(osister);
var ysister = new LeCalcBtn("妹", 0);
ysister.setOnClickListener(function() {
mJustClickPerson = true;
mSelf.getResultView().getText().setText("妹妹");
mSelf.onRelationClick();
});
this.addView(ysister);
mBtns.add(ysister);
this.addView(mResultView);
this.onRelationClick = function() {
mShouldParse = true;
checkException();
if (mShouldReset) {
clearRelation();
mShouldReset = false;
}
}
this.getResultView = function() {
return mResultView;
}
this.loadPortrait = function() {
gender.setPosAndSize(0, 0, 2, 1);
older.setPosAndSize(2, 0, 1, 1);
younger.setPosAndSize(3, 0, 1, 1);
father.setPosAndSize(0, 1, 1, 1);
husband.setPosAndSize(1, 1, 1, 1);
son.setPosAndSize(2, 1, 1, 1);
ac.setPosAndSize(3, 1, 1, 1);
mother.setPosAndSize(0, 2, 1, 1);
wife.setPosAndSize(1, 2, 1, 1);
daughter.setPosAndSize(2, 2, 1, 1);
back.setPosAndSize(3, 2, 1, 1);
obrother.setPosAndSize(0, 3, 1, 1);
osister.setPosAndSize(1, 3, 1, 1);
de.setPosAndSize(2, 3, 1, 2);
equal.setPosAndSize(3, 3, 1, 2);
ybrother.setPosAndSize(0, 4, 1, 1);
ysister.setPosAndSize(1, 4, 1, 1);
}
this.loadLandScape = function() {
gender.setPosAndSize(0, 0, 2, 1);
older.setPosAndSize(2, 0, 1, 1);
younger.setPosAndSize(3, 0, 1, 1);
father.setPosAndSize(0, 1, 1, 1);
mother.setPosAndSize(0, 2, 1, 1);
husband.setPosAndSize(1, 1, 1, 1);
wife.setPosAndSize(1, 2, 1, 1);
son.setPosAndSize(2, 1, 1, 1);
daughter.setPosAndSize(2, 2, 1, 1);
obrother.setPosAndSize(3, 1, 1, 1);
ybrother.setPosAndSize(3, 2, 1, 1);
osister.setPosAndSize(4, 1, 1, 1);
ysister.setPosAndSize(4, 2, 1, 1);
back.setPosAndSize(4, 0, 2, 1);
ac.setPosAndSize(6, 0, 2, 1);
de.setPosAndSize(5, 1, 2, 2);
equal.setPosAndSize(7, 1, 1, 2);
}
this.onMeasure = function(widthMS, heightMS) {
var width = MeasureSpec.getSize(widthMS);
var height = MeasureSpec.getSize(heightMS);
var resultHeight = 0;
if (width > height) {
mUnitWidth = width / 8;
resultHeight = height - mUnitWidth * 3;
if (resultHeight < this.MIN_RESULT_HEIGHT) {
resultHeight = this.MIN_RESULT_HEIGHT;
}
mUnitHeight = (height - resultHeight) / 3;
this.loadLandScape();
} else {
mUnitWidth = width / 4;
resultHeight = height - mUnitWidth * 5;
if (resultHeight < this.MIN_RESULT_HEIGHT) {
resultHeight = this.MIN_RESULT_HEIGHT;
}
mUnitHeight = (height - resultHeight) / 5;
this.loadPortrait();
}
var textSize = resultHeight / 4;
var subtextSize = resultHeight / 9;
if (textSize > 40) {
textSize = 40;
}
if (subtextSize < 18) {
subtextSize = 18;
}
mResultView.getText().setTextSize(textSize);
mResultView.getSubText().setTextSize(subtextSize);
mResultView.measure(width, resultHeight);
for (var i = 0; i < mBtns.size(); i++) {
mBtns[i].measure(0, 0);
}
this.setMeasuredDimension(width, height);
}
this.onLayout = function(x, y) {
var offsetX = 0;
var offsetY = 0;
mResultView.layout(offsetX, offsetY);
for (var i = 0; i < mBtns.size(); i++) {
offsetX = mBtns[i].getX() * mUnitWidth;
offsetY = mResultView.getMeasuredHeight() + mBtns[i].getY() * mUnitHeight;
mBtns[i].layout(offsetX, offsetY);
if (mBtns[i].getMeasuredWidth() + offsetX >= this.getMeasuredWidth()) {
mBtns[i].setBorderRight(0, 0);
} else {
mBtns[i].setBorderRight(1, 0xffb2b2b2);
}
mBtns[i].layout(offsetX, offsetY);
if (mBtns[i].getMeasuredHeight() + offsetY >= this.getMeasuredHeight() - 1) {
mBtns[i].setBorderBottom(0, 0);
} else {
mBtns[i].setBorderBottom(1, 0xffb2b2b2);
}
}
}
}