-
Notifications
You must be signed in to change notification settings - Fork 0
/
User Lua 1.2.lua
1838 lines (1753 loc) · 42.9 KB
/
User Lua 1.2.lua
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- encoding: UTF-8
_CHINESE_DIGITS = {
[0] = "〇",
[1] = "一",
[2] = "二",
[3] = "三",
[4] = "四",
[5] = "五",
[6] = "六",
[7] = "七",
[8] = "八",
[9] = "九",
[10] = "十",
}
_DATE_PATTERN = "^(%d+)-(%d+)-(%d+)$"
_TIME_PATTERN = "^(%d+):(%d+)$"
function GetChineseMathNum(num)
local ret
if num < 10 then
ret = _CHINESE_DIGITS[num]
elseif num < 20 then
ret = _CHINESE_DIGITS[10]
if num > 10 then
ret = ret .. _CHINESE_DIGITS[num % 10]
end
elseif num < 100 then
local mod = num % 10
ret = _CHINESE_DIGITS[(num - mod) / 10] .. _CHINESE_DIGITS[10]
if mod > 0 then
ret = ret .. _CHINESE_DIGITS[mod]
end
else
error("Invalid number")
end
return ret
end
function GetChineseNonMathNum(num)
local ret = ""
for ch in tostring(num):gmatch(".") do
if ch >= "0" and ch <= "9" then
ch = _CHINESE_DIGITS[tonumber(ch)]
end
ret = ret .. ch
end
return ret
end
function _VerifyTime(hour, minute)
if hour < 0 or hour > 23 or minute < 0 or minute > 59 then
error("Invalid time")
end
end
function _VerifyDate(month, day)
if month < 1 or month > 12 or day < 1 or day > _MONTH_TABLE_LEAF[month] then
error("Invalid date")
end
end
function _VerifyDateWithYear(year, month, day)
_VerifyDate(month, day)
if year < 1 or year > 9999 then
error("Invalid year")
end
if month == 2 and day == 29 then
if year % 400 ~= 0 and year % 100 == 0 then
error("Invalid lunar day")
end
if year % 4 ~= 0 then
error("Invalid lunar day")
end
end
end
function GetChineseDate(y, m, d, full)
if full then
return GetChineseNonMathNum(y) .. "年" ..
GetChineseMathNum(m) .. "月" ..
GetChineseMathNum(d) .. "日"
else
return y .. "年" .. m .. "月" .. d .. "日"
end
end
function GetChineseTime(h, m, full)
if full then
local ret = GetChineseMathNum(h) .. "时"
if m > 0 then
ret = ret .. GetChineseMathNum(m) .. "分"
end
return ret
else
return h .. "时" .. m .. "分"
end
end
function NormalizeDate(y, m, d)
return string.format("%d-%02d-%02d", y, m, d)
end
function NormalizeTime(h, m)
return string.format("%02d:%02d", h, m)
end
function GetTime(input)
local now = input
if #input == 0 then
now = os.date("%H:%M")
end
local hour, minute
now:gsub(_TIME_PATTERN, function(h, m)
hour = tonumber(h)
minute = tonumber(m)
end)
_VerifyTime(hour, minute)
return {
NormalizeTime(hour, minute),
GetChineseTime(hour, minute, false),
GetChineseTime(hour, minute, true),
}
end
function GetDate(input)
local now = input
if #input == 0 then
now = os.date("%Y-%m-%d")
end
local year, month, day
now:gsub(_DATE_PATTERN, function(y, m, d)
year = tonumber(y)
month = tonumber(m)
day = tonumber(d)
end)
_VerifyDateWithYear(year, month, day)
return {
GetChineseDate(year, month, day, false),
NormalizeDate(year, month, day),
GetChineseDate(year, month, day, true),
}
end
_MATH_KEYWORDS = {
"abs", "acos", "asin", "atan", "atan2", "ceil", "cos", "cosh", "deg", "exp",
"floor", "fmod", "frexp", "ldexp", "log", "log10", "max", "min", "modf", "pi",
"pow", "rad", "random", "randomseed", "sin", "sinh", "sqrt", "tan", "tanh",
}
function _AddMathKeyword(input)
local ret = input
for _, keyword in pairs(_MATH_KEYWORDS) do
ret = ret:gsub(string.format("([^%%a\.])(%s\(.-\))", keyword), "%1math\.%2")
ret = ret:gsub(string.format("^(%s\(.-\))", keyword), "math\.%1")
end
return ret
end
function Compute(input)
local expr = "return " .. _AddMathKeyword(input)
local func = loadstring(expr)
if func == nil then
return "-- 未完整表达式 --"
end
local ret = func()
if ret == math.huge then -- div/0
return "-- 计算错误 --"
end
if ret ~= ret then
-- We rely on the property that NaN is the only value not equal to itself.
return "-- 计算错误 --"
end
return ret
end
math.randomseed(os.time())
_MONTH_TABLE_NORMAL = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
_MONTH_TABLE_LEAF = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
function _CompareMonthAndDay(month1, day1, month2, day2)
if month1 < month2 then
return -1
elseif month1 > month2 then
return 1
elseif day1 < day2 then
return -1
elseif day1 > day2 then
return 1
else
return 0
end
end
function GetCurrentTime()
return GetTime("")
end
function GetDay()
return GetDate("")
end
ime.register_command("sj", "GetTime", "输入时间", "alpha", "输入可选时间,例如12:34")
ime.register_command("rq", "GetDate", "输入日期", "alpha", "输入可选日期,例如2008-08-08")
ime.register_command("js", "Compute", "计算模式", "none", "输入表达式,例如3*log(4+2)")
ime.register_trigger("GetCurrentTime", "显示时间", {}, {'时间'})
ime.register_trigger("GetDay", "显示日期", {}, {'日期'})
---------------------------------------------------------------------------------------------------
function GetYesterday_2()
local today
today = os.date("%Y%m%d")
count = 3
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local count
for count = 1, 3 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
end
function GetYesterday_1()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local count
for count = 1, 2 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
end
function GetYesterday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
return month .. "月" .. day .. "日"
end
function GetToday()
local month, day
month = tonumber(os.date("%m"))
day = tonumber(os.date("%d"))
return month .. "月" .. day .. "日"
end
function GetTomorrow()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
if month == 12 then
month = 1
day = 1
else
month = month + 1
day = 1
end
else
day = day + 1
end
return month .. "月" .. day .. "日"
end
function GetTomorrow_1()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local count
for count = 1, 2 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
if month == 12 then
month = 1
day = 1
else
month = month + 1
day = 1
end
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
function GetTomorrow_2()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
for count = 1, 3 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
if month == 12 then
month = 1
day = 1
else
month = month + 1
day = 1
end
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
ime.register_trigger("GetYesterday_2", "显示日期", {}, {'大前天'})
ime.register_trigger("GetYesterday_1", "显示日期", {}, {'前天'})
ime.register_trigger("GetYesterday", "显示日期", {}, {'昨天'})
ime.register_trigger("GetToday", "显示日期", {}, {'今天'})
ime.register_trigger("GetTomorrow", "显示日期", {}, {'明天'})
ime.register_trigger("GetTomorrow_1", "显示日期", {}, {'后天'})
ime.register_trigger("GetTomorrow_2", "显示日期", {}, {'大后天'})
function GetLastMonth_1()
local month
month = tonumber(os.date("%m"))
if month < 3 then
if month == 1 then
month = 11
else
month = 12
end
else
month = month - 2
end
return month .. "月"
end
function GetLastMonth()
local month
month = tonumber(os.date("%m"))
if month ~= 1 then
month = month - 1
else
month = 12
end
return month .. "月"
end
function GetThisMonth()
local month
month = tonumber(os.date("%m"))
return month .. "月"
end
function GetNextMonth()
local month
month = tonumber(os.date("%m"))
if month ~= 12 then
month = month + 1
else
month = 1
end
return month .. "月"
end
function GetNextMonth_1()
local month
month = tonumber(os.date("%m"))
if month > 10 then
if month == 11 then
month = 1
else
month = 2
end
else
month = month + 2
end
return month .. "月"
end
ime.register_trigger("GetLastMonth_1", "显示日期", {}, {'上上月', '上上个月'})
ime.register_trigger("GetLastMonth", "显示日期", {}, {'上月', '上个月'})
ime.register_trigger("GetThisMonth", "显示日期", {}, {'这月', '本月', '这个月'})
ime.register_trigger("GetNextMonth", "显示日期", {}, {'下月', '下个月'})
ime.register_trigger("GetNextMonth_1", "显示日期", {}, {'下下月', '下下个月'})
function GetLastYear_2()
local year
year = tonumber(os.date("%Y"))
year = year - 3
return year .. "年"
end
function GetLastYear_1()
local year
year = tonumber(os.date("%Y"))
year = year - 2
return year .. "年"
end
function GetLastYear()
local year
year = tonumber(os.date("%Y"))
year = year - 1
return year .. "年"
end
function GetThisYear()
local year
year = tonumber(os.date("%Y"))
return year .. "年"
end
function GetNextYear()
local year
year = tonumber(os.date("%Y"))
year = year + 1
return year .. "年"
end
function GetNextYear_1()
local year
year = tonumber(os.date("%Y"))
year = year + 2
return year .. "年"
end
function GetNextYear_2()
local year
year = tonumber(os.date("%Y"))
year = year + 3
return year .. "年"
end
ime.register_trigger("GetLastYear_2", "显示日期", {}, {'大前年'})
ime.register_trigger("GetLastYear_1", "显示日期", {}, {'前年'})
ime.register_trigger("GetLastYear", "显示日期", {}, {'去年', '上年'})
ime.register_trigger("GetThisYear", "显示日期", {}, {'今年', '本年'})
ime.register_trigger("GetNextYear", "显示日期", {}, {'明年', '下年'})
ime.register_trigger("GetNextYear_1", "显示日期", {}, {'后年'})
ime.register_trigger("GetNextYear_2", "显示日期", {}, {'大后年'})
function GetThisMonday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 1
if count == 0 then
return month .. "月" .. day .. "日"
elseif count > 0 then
for nday = 1, count do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
else
for nday = 1, 6 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
end
end
function GetThisTuesday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 2
if count == 0 then
return month .. "月" .. day .. "日"
elseif count > 0 then
for nday = 1, count do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
elseif count == -2 then
for nday = 1, 5 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
else
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
return month .. "月" .. day .. "日"
end
end
function GetThisWednesday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 3
if count == 0 then
return month .. "月" .. day .. "日"
elseif count > 0 then
for nday = 1, count do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
elseif count == -3 then
for nday = 1, 4 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
else
for nday = count, -1 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
end
function GetThisThursday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 4
if count == 0 then
return month .. "月" .. day .. "日"
elseif count > 0 then
for nday = 1, count do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
elseif count == -4 then
for nday = 1, 3 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
else
for nday = count, -1 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
end
function GetThisFriday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 5
if count == 0 then
return month .. "月" .. day .. "日"
elseif count > 0 then
for nday = 1, count do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
elseif count == -5 then
for nday = 1, 2 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
end
return month .. "月" .. day .. "日"
else
for nday = count, -1 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
end
function GetThisSaturday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 6
if count == 0 then
return month .. "月" .. day .. "日"
elseif count == -6 then
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]
else
month = 12
day = 31
end
else
day = day - 1
end
return month .. "月" .. day .. "日"
else
for nday = count, -1 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
end
function GetThisSunday()
local today
today = os.date("%Y%m%d")
local year, month, day
year = tonumber(string.sub(today, 1, 4))
month = tonumber(string.sub(today, 5, 6))
day = tonumber(string.sub(today, 7, 8))
local nday, count
nday = os.date("%w")
count = nday - 7
if count == -7 then
return month .. "月" .. day .. "日"
else
for nday = count, -1 do
if month == 2 and day == 28 then
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
month = month + 1
day = 1
end
elseif day == _MONTH_TABLE_LEAF[month] then
month = month + 1
day = 1
else
day = day + 1
end
end
return month .. "月" .. day .. "日"
end
end
ime.register_trigger("GetThisMonday", "显示日期", {}, {'周一', '星期一', '礼拜一', '这周一', '这星期一', '这礼拜一', '本周一', '本星期一', '本礼拜一'})
ime.register_trigger("GetThisTuesday", "显示日期", {}, {'周二', '星期二', '礼拜二', '这周二', '这星期二', '这礼拜二', '本周二', '本星期二', '本礼拜二'})
ime.register_trigger("GetThisWednesday", "显示日期", {}, {'周三', '星期三', '礼拜三', '这周三', '这星期三', '这礼拜三', '本周三', '本星期三', '本礼拜三'})
ime.register_trigger("GetThisThursday", "显示日期", {}, {'周四', '星期四', '礼拜四', '这周四', '这星期四', '礼拜四', '本周四', '本星期四', '本礼拜四'})
ime.register_trigger("GetThisFriday", "显示日期", {}, {'周五', '星期五', '礼拜五', '这周五', '这星期五', '礼拜五', '本周五', '本星期五', '本礼拜五'})
ime.register_trigger("GetThisSaturday", "显示日期", {}, {'周六', '星期六', '礼拜六', '这周六', '这星期六', '这礼拜六', '本周六', '本星期六', '本礼拜六'})
ime.register_trigger("GetThisSunday", "显示日期", {}, {'周日', '星期日', '星期天', '礼拜日' ,'礼拜天', '这周日', '这星期日', '这星期天', '这礼拜日' ,'这礼拜天', '本周日', '本星期日', '本星期天', '本礼拜日' ,'本礼拜天'})
function GetLastMonday()
local last, year, month, day, m, d
last = GetThisMonday()
m = string.find(last, "月")
d = string.find(last, "日")
year = os.date("%Y")
month = tonumber(string.sub(last, 1, m - 1))
day = tonumber(string.sub(last, m + 3, d - 1))
local count
for count = 1, 7 do
if day == 1 then
if month == 3 then
month = 2
if year % 4 == 0 and year % 100 ~= 0 or year % 400 == 0 then
day = 29
else
day = 28
end
elseif month ~= 1 then
month = month - 1
day = _MONTH_TABLE_NORMAL[month]