logic.go
30.3 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
package logic
import (
"HttpServer/jsonconf"
"HttpServer/redishandler"
"common/logger"
"common/redis"
"encoding/json"
"fmt"
"net/http"
"strconv"
"sync"
"time"
)
var (
//m_userInfo *beegomap.BeeMap //make(map[int32]*UserData
Maplock *sync.RWMutex
)
func init() {
//m_userInfo = beegomap.NewBeeMap()
Maplock = new(sync.RWMutex)
}
func SetHeader(w http.ResponseWriter) {
w.Header().Set("Access-Control-Allow-Origin", "*") //允许访问所有域
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type,uid,token")
// w.Header().Set("Access-Control-Allow-Headers", "Content-Type,token")
}
func HandlerLogin(w http.ResponseWriter, data string, uuid int, token string) {
SetHeader(w)
var resp UserLoginResp
resp.Code = 0
resp.Message = "success"
var rdata UserLoginReq
err := json.Unmarshal([]byte(data), &rdata)
if err != nil {
logger.Info("json decode HandlerLogin data failed:%v,for:%v", err, data)
resp.Message = "json unmarshal failed"
resp.Code = 1
respstr, _ := json.Marshal(&resp)
logger.Info("###HandlerLogin###rdata:%v", string(respstr))
fmt.Fprint(w, string(respstr))
return
}
//首先判断一下是否是首次登陆
isexist, _ := redishandler.GetRedisClient().HExists(redis.USER_INFO__KEY, strconv.Itoa(rdata.UserId))
if !isexist {
//不存在
//属于新登录的玩家数据
InitUserInfo(&rdata, &resp, rdata.UserId)
} else {
uinfo, err := GetUserInfo(strconv.Itoa(rdata.UserId))
if err != nil {
logger.Info("GetUserInfo HandlerLogin data failed:%v,for:%v", err, data)
resp.Message = "GetUserInfo failed"
resp.Code = 2
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
return
}
resp.Data.Nickname = uinfo.NickName
resp.Data.UserId = strconv.Itoa(rdata.UserId)
resp.Data.AccessToken = token
resp.Data.HeadImg = uinfo.Head
resp.Data.LoginType = rdata.Lype
uinfo.LastLoginTime = int(time.Now().Unix())
SaveUserInfo(uinfo, strconv.Itoa(uuid))
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
logger.Info("###HandlerLogin###rdata:%v", string(respstr))
}
func HandlerDoBuyCat(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp DoBuyCatResp
resp.Code = 0
resp.Message = "success"
var rdata DoBuyCatReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Error("HandlerDoBuyCat json unmarshal failed=%v", err)
resp.Code = 1
resp.Message = "json failed"
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerDoBuyCat getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
maxlv := uinfo.Highestlv - 5
if maxlv < 1 {
//最小1j
maxlv = 1
}
if rdata.CatId > maxlv || rdata.CatId < 1 || rdata.CatId > len(uinfo.BuyCatInfo) {
logger.Error("HandlerDoBuyCat buy lv failed=%v", err)
resp.Code = 1
resp.Message = "buy lv invalid"
break
}
curprice := uinfo.BuyCatInfo[rdata.CatId-1].CurPrice
if uinfo.Gold < curprice {
logger.Error("HandlerDoBuyCat gold not enough failed=%v", err)
resp.Code = 1
resp.Message = "gold not enough"
break
}
//获取配置
catcfg := jsonconf.GetCatConfig(rdata.CatId)
if catcfg == nil {
logger.Error("HandlerDoBuyCat get cat cfg failed=%v,lv=%v", err, rdata.CatId)
resp.Code = 1
resp.Message = "get cat cfg failed"
break
}
//需要找到一个位置
catpos := getCatPutPos(uinfo, rdata.CatId)
if catpos < 0 {
logger.Error("HandlerDoBuyCat not enough place failed=%v", err)
resp.Code = 1
resp.Message = "not enough place"
break
}
//扣钱
uinfo.Gold -= curprice
//重新计算价格
if uinfo.BuyCatInfo[rdata.CatId-1].IsMaxBuytime == 0 {
uinfo.BuyCatInfo[rdata.CatId-1].CurPrice = int64(float64(uinfo.BuyCatInfo[rdata.CatId-1].CurPrice) * float64(catcfg.Ratio))
uinfo.BuyCatInfo[rdata.CatId-1].Buytime++
if uinfo.BuyCatInfo[rdata.CatId-1].Buytime >= catcfg.Increse_limit {
uinfo.BuyCatInfo[rdata.CatId-1].IsMaxBuytime = 1
}
}
//需要重新计算速率
uinfo.CalcGoldRate()
resp.Data.Price = strconv.FormatInt(uinfo.BuyCatInfo[rdata.CatId-1].CurPrice, 10)
resp.Data.Position = catpos
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
resp.Data.Coin.IcomeRate = strconv.FormatInt(uinfo.Goldrate, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
resp.Code = 0
//保存
SaveUserInfo(uinfo, strconv.Itoa(uuid))
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerGetUserData(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp GetUserDataResp
resp.Code = 0
resp.Message = "success"
for {
v, err := redishandler.GetRedisClient().HGet(redis.USER_LAST_CALC_TIME, strconv.Itoa(uuid))
if err != nil {
logger.Info("CalcOfflineData get USER_LAST_CALC_TIME failed=%v", err)
resp.Message = "redishandler failed"
resp.Code = 1
break
}
lasttime, _ := strconv.Atoi(v)
nowtime := time.Now().Unix()
if nowtime-int64(lasttime) < 0 {
logger.Error("HandlerGetUserData nowtime=%v lasttime=%v", nowtime, lasttime)
resp.Message = "request time small than zero"
resp.Code = 1
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerGetUserData getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//处理一下跨天了
uinfo.HandlePassDay()
if nowtime-int64(lasttime) > 5*60 {
//算离线收益
resp.Data.TimingReward = false
offsec := nowtime - int64(lasttime)
if offsec > 2*3600 {
offsec = 2 * 3600
}
uinfo.OfflineGold = offsec * uinfo.Goldrate
resp.Data.Coin = strconv.FormatInt(uinfo.Gold, 10)
resp.Data.Now = int(time.Now().Unix())
resp.Data.Output = "0"
resp.Data.OfflineReward.OfflineTime = int(offsec)
resp.Data.OfflineReward.Income = strconv.FormatInt(uinfo.OfflineGold, 10)
} else {
//按费离线收益计算
//先计算一下双倍时间是否过期了
addgold := int64(0)
offsec := nowtime - int64(lasttime)
if uinfo.IsDouble == 1 {
if nowtime > int64(uinfo.IsDouble+150) {
//加速过期了
//计算部分三倍的
if lasttime > uinfo.IsDouble+150 {
addgold = uinfo.Goldrate * offsec
} else {
noroffsec := nowtime - int64(uinfo.IsDouble+150)
accoffsec := offsec - noroffsec
addgold = uinfo.Goldrate*accoffsec*3 + noroffsec*uinfo.Goldrate
}
uinfo.IsDouble = 0
uinfo.StartDoubleTime = 0
} else {
//还在加速期
addgold = uinfo.Goldrate * offsec * 3
}
}
resp.Data.TimingReward = true
resp.Data.Now = int(time.Now().Unix())
uinfo.Gold = addgold
uinfo.GoldSum += addgold
uinfo.AddToRank()
resp.Data.Output = strconv.FormatInt(addgold, 10)
resp.Data.Coin = strconv.FormatInt(uinfo.Gold, 10)
}
//保存此次计算时间
nowtimestr := strconv.FormatInt(nowtime, 10)
redishandler.GetRedisClient().HSet(redis.USER_LAST_CALC_TIME, strconv.Itoa(uuid), nowtimestr)
logger.Info("HandlerGetUserData save USER_LAST_CALC_TIME time=%v", nowtimestr)
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerGetOfflineReward(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp GetOfflineRewardResp
resp.Code = 0
resp.Message = "success"
var rdata GetOfflineRewardReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Error("HandlerGetOfflineReward json unmarshal failed=%v", err)
resp.Code = 1
resp.Message = "json failed"
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerGetUserData getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
addgold := uinfo.OfflineGold
if rdata.Optype == 2 {
addgold *= 2
}
uinfo.Gold += addgold
uinfo.GoldSum += addgold
uinfo.AddToRank()
//此处todo 记录离线领取的次数
//领取过后将离线金币清零
uinfo.OfflineGold = 0
//保存
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerQueryPlayerRank(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp QueryPlayerRankResp
resp.Code = 0
resp.Message = "success"
for {
//取100名
vv, err := redishandler.GetRedisClient().ZRevRangewithIndex(redis.USER_GOLD_RANK, 0, 99)
if err == nil {
rank := 0
for _, v := range vv {
rank++
//logger.Info("TestMyredis k=%v,v=%v", k, v)
rinfobyte, _ := v.(string)
ruid, _ := strconv.Atoi(rinfobyte)
rindo, err := GetUserInfo(rinfobyte)
if err == nil && rindo != nil {
var tmp RankInfoDesc
tmp.UserId = ruid
tmp.Income = rindo.GoldSum
tmp.Nickname = rindo.NickName
tmp.Headurl = rindo.Head
tmp.Rank = rank
tmp.CatName = rindo.CalcHigestCatName()
resp.Data = append(resp.Data, tmp)
}
}
} else {
logger.Error("HandlerUpdateUserInfo redisfailed ")
resp.Code = 1
resp.Message = "redisfailed"
break
}
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerGetMainPageInfo(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp GetMainPageInfoResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerGetMainPageInfo getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
redlist := uinfo.GetRedCatIdList()
resp.Data.LimitCatList = append(resp.Data.LimitCatList, redlist...)
resp.Data.CatList = append(resp.Data.CatList, uinfo.PosInfo...)
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
resp.Data.Coin.IcomeRate = strconv.FormatInt(uinfo.Goldrate, 10)
resp.Data.AdRate.Multiple = 1
if uinfo.IsDouble == 1 {
resp.Data.AdRate.Multiple = 3
resp.Data.AdRate.EndTime = uinfo.StartDoubleTime + 150
accrate := uinfo.Goldrate * 3
resp.Data.Coin.IcomeRate = strconv.FormatInt(accrate, 10)
}
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerDoFlop(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp DoFlopResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerDoFlop getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//判断一下翻拍次数是否足够
if uinfo.FlopCardLefCnt <= 0 {
logger.Error("HandlerDoFlop flopcnt failed=%v", err)
resp.Code = 1
resp.Message = "翻拍次数不足"
break
}
uinfo.DoFlopCardd(&resp)
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerQueryFlop(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp QueryFlopResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerQueryFlop getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
resp.Data.LeftTimes = uinfo.FlopCardLefCnt
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerDrawTable(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp DrawTableResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerDrawTable getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//抽奖券数量是否足够
if uinfo.DrawTicket <= 0 {
logger.Error("HandlerDrawTable ticketnotenough failed=%v", err)
resp.Code = 1
resp.Message = "ticketnotenough"
break
}
//根据抽奖次数
tid := uinfo.DrawTable()
tablecfg := jsonconf.GetTurnTableCfg(tid)
if tablecfg == nil {
logger.Error("HandlerDrawTable tid failed=%v", tid)
resp.Code = 1
resp.Message = "tidnotright"
break
}
//加金币 此处现金概率为零不做处理
addgold := int64(tablecfg.Parameter) * uinfo.Goldrate
if uinfo.DratMult != 1 {
addgold = addgold * int64(uinfo.DratMult)
}
uinfo.DrawTicket--
uinfo.DratMult = 1
uinfo.DrawTableCount++
if uinfo.DrawTableCount > 5 {
uinfo.DrawTableCount = 1
}
uinfo.Gold += addgold
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Data.Coin = strconv.FormatInt(addgold, 10)
resp.Data.RewardId = tid
resp.Code = 0
break
}
//回包
logger.Info("HandlerDrawTable resp=%+v", resp)
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerMultiple(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp MultipleResp
resp.Code = 0
resp.Message = "success"
var rdata MultipleReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Error("HandlerMultiple json unmarshal failed=%v", err)
resp.Code = 1
resp.Message = "json failed"
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerMultiple getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
cfg := jsonconf.GetTurnTableCfg(rdata.RewardId)
if cfg == nil {
logger.Error("HandlerMultiple getcfgfailed failed=%v", rdata.RewardId)
resp.Code = 1
resp.Message = "getcfgfailed failed"
break
}
uinfo.DratMult = cfg.Parameter
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerAddTicket(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp AddTicketResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerQueryTurntable getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
if uinfo.DoubleLeftTimes == 0 {
logger.Error("HandlerQueryTurntable DoubleLeftTimes failed=%v", err)
resp.Code = 1
resp.Message = "DoubleLeftTimes not enough"
break
}
uinfo.DoubleLeftTimes--
uinfo.DrawTicket += 5
if uinfo.DrawTicket > DRAWTICKETNUMLIMIT {
uinfo.DrawTicket = DRAWTICKETNUMLIMIT
}
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerQueryTurntable(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp QueryTurntableResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerQueryTurntable getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
resp.Data.TicketCount = uinfo.DrawTicket
resp.Data.LeftTime = uinfo.DoubleLeftTimes
resp.Data.LimitTicket = DRAWTICKETNUMLIMIT
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerLimitCatList(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp LimitCatListResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerRecvRedCat getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
poslist := uinfo.GetLimitCatList()
for _, pos := range poslist {
if pos > 0 && pos < len(uinfo.PosInfo) {
var tmp LimitCatListData
tmp.CatId = uinfo.PosInfo[pos].Cat
tmp.Status = 0
tmp.Cash = uinfo.PosInfo[pos].RedPacket
tmp.Date = time.Now().Format("2006-01-02T 15:04:05")
resp.Data = append(resp.Data, tmp)
}
}
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerRecvRedCat(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp RecvRedCatResp
resp.Code = 0
resp.Message = "success"
var rdata RecvRedCatReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Info("json decode HandlerRecvRedCat data failed:%v", err, " for:%v", data)
resp.Message = "json unmarshal failed"
resp.Code = 1
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerRecvRedCat getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//先判断位置
cpos := uinfo.GetCatPos(rdata.RedCatId)
if cpos == -1 {
logger.Error("HandlerRecvRedCat nothave cat failed=%v", rdata.RedCatId)
resp.Code = 1
resp.Message = "nothave cat failed"
break
}
//判读下计时的时间是否结束
nowtime := int(time.Now().Unix())
v := uinfo.PosInfo[cpos]
if v.Time != 0 {
if nowtime < v.StartTime+v.Time {
//时间还未结束无法领取
logger.Error("HandlerRecvRedCat timenotenough failed=%v", rdata.RedCatId)
resp.Code = 1
resp.Message = "timenotenough failed"
break
}
}
//领取红包
addredpack := v.RedPacket
if rdata.Rtype == 1 {
addredpack = addredpack * 2
}
uinfo.AddRedPackect(addredpack)
uinfo.CleadPos(cpos)
uinfo.CalcGoldRate()
resp.Data.Num = addredpack
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerCompose(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp ComposeResp
resp.Code = 0
resp.Message = "success"
var rdata ComposeReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Info("json decode HandlerCompose data failed:%v", err, " for:%v", data)
resp.Message = "json unmarshal failed"
resp.Code = 1
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerCompose getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//先需要判断五个位置是否准确
eastsum := 0
westsum := 0
southsum := 0
northsum := 0
middlesum := 0
for _, val := range rdata.PositionList {
if val < 0 || val >= len(uinfo.PosInfo) {
logger.Error("HandlerCompose Position failed=%v", err)
break
}
v := uinfo.PosInfo[val]
if v.Cat == 103 {
eastsum++
}
if v.Cat == 104 {
westsum++
}
if v.Cat == 105 {
southsum++
}
if v.Cat == 106 {
northsum++
}
if v.Cat == 107 {
middlesum++
}
}
if !(eastsum > 0 && westsum > 0 && northsum > 0 && southsum > 0 && middlesum > 0) {
logger.Error("HandlerCompose notfivecat failed=%v", err)
resp.Code = 1
resp.Message = "notfivecat failed"
break
}
//合成了五方猫
//获取一天招财猫配置
cfg := jsonconf.GetRedCatConfig(100 + 2)
if cfg == nil {
logger.Error("HandlerCompose getcfg failed=%v", err)
resp.Code = 1
resp.Message = "getcfg failed"
break
}
nowtime := int(time.Now().Unix())
uinfo.SetCatPos(rdata.PositionList[0], 2+100, 24*3600, cfg.Money, nowtime)
//清空其他位置的猫
for k, v := range rdata.PositionList {
if k > 0 {
uinfo.CleadPos(v)
}
}
//重新计算一下速度
uinfo.CalcGoldRate()
resp.Data.CatList = append(resp.Data.CatList, uinfo.PosInfo...)
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
resp.Data.Coin.IcomeRate = strconv.FormatInt(uinfo.Goldrate, 10)
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerRecovery(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp RecoveryResp
resp.Code = 0
resp.Message = "success"
var rdata RecoveryReq
err := json.Unmarshal([]byte(data), &rdata)
for {
if err != nil {
logger.Info("json decode HandlerRecovery data failed:%v", err, " for:%v", data)
resp.Message = "json unmarshal failed"
resp.Code = 1
break
}
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerRecovery getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
if rdata.Position < 0 || rdata.Position >= len(uinfo.PosInfo) {
logger.Error("HandlerRecovery Position failed=%v", err)
resp.Code = 1
resp.Message = "Position failed"
break
}
if uinfo.PosInfo[rdata.Position].Cat > 36 || uinfo.PosInfo[rdata.Position].Cat == 0 {
//高级猫或者没有猫无法卖
logger.Error("HandlerRecovery CatLV failed=%v", err)
resp.Code = 1
resp.Message = "CatLV failed"
break
}
cfg := jsonconf.GetCatConfig(uinfo.PosInfo[rdata.Position].Cat)
if cfg == nil {
logger.Error("HandlerRecovery CatLVCFG failed=%v", uinfo.PosInfo[rdata.Position].Cat)
resp.Code = 1
resp.Message = "CatLVCFG failed"
break
}
uinfo.CleadPos(rdata.Position)
//重新计算速度
uinfo.CalcGoldRate()
//加金币
price, _ := strconv.ParseInt(cfg.Price, 10, 64)
uinfo.Gold += price / 10
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
resp.Data.Coin.IcomeRate = strconv.FormatInt(uinfo.Goldrate, 10)
resp.Code = 0
break
}
//回包
logger.Info("HandlerRecovery resp=%v", resp)
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerRecvTimingReward(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp RecvTimingRewardResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerRecvTimingReward getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
//判断一下领取的时间点是否正确
nowt := time.Now()
if nowt.Minute() < 50 && nowt.Minute() > 10 {
logger.Error("HandlerRecvTimingReward time failed=%v", err)
resp.Code = 1
resp.Message = "time failed"
break
}
nowh := 0
if nowt.Minute() >= 50 {
//领取的是笑一个小时
if nowt.Hour() < 23 {
if uinfo.LastTimingRewardHour >= nowt.Hour()+1 {
//已经领取过了 无法在零
logger.Error("HandlerRecvTimingReward alreadyfetched failed=%v", err)
resp.Code = 1
resp.Message = "alreadyfetched failed"
break
}
nowh = nowt.Hour()
} else {
if uinfo.LastTimingRewardHour == 0 {
//已经领取过了 无法在零
logger.Error("HandlerRecvTimingReward alreadyfetched failed=%v", err)
resp.Code = 1
resp.Message = "alreadyfetched failed"
break
}
nowh = 0
}
}
if nowt.Minute() <= 10 {
//领取的是本时段的
if uinfo.LastTimingRewardHour >= nowt.Hour() {
//已经领取过了 无法在零
logger.Error("HandlerRecvTimingReward alreadyfetched failed=%v", err)
resp.Code = 1
resp.Message = "alreadyfetched failed"
break
}
nowh = nowt.Hour()
}
addgold := uinfo.Goldrate * ZHENGHOURMULT
uinfo.Gold += addgold
uinfo.LastTimingRewardHour = nowh
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Data.Reward = strconv.FormatInt(addgold, 10)
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerWatchAdsGetGold(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp WatchAdsGetGoldResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerWatchAdsGetGold getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
if uinfo.GetWatchAdsGoldTime <= 0 {
//不够次数了
logger.Error("HandlerWatchAdsGetGold not enoughtimes failed=%v", err)
resp.Code = 1
resp.Message = "enoughtimes"
break
}
uinfo.GetWatchAdsGoldTime--
addgold := uinfo.Goldrate * WATCHADSGOLDLRATE
uinfo.Gold += addgold
resp.Data.Reward = strconv.FormatInt(addgold, 10)
resp.Data.LeftTimes = uinfo.GetWatchAdsGoldTime
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
accrate := uinfo.Goldrate * 3
resp.Data.Coin.IcomeRate = strconv.FormatInt(accrate, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerAcclecteGold(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp AcclecteResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerAcclecteGold getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
if uinfo.IsDouble == 1 {
//已经是加速状态
logger.Error("HandlerAcclecteGold alreadyacclete failed=%v", err)
resp.Code = 1
resp.Message = "alreadyacclete"
break
}
if uinfo.DoubleLeftTimes <= 0 {
//不够次数了
logger.Error("HandlerAcclecteGold not enoughtimes failed=%v", err)
resp.Code = 1
resp.Message = "enoughtimes"
break
}
uinfo.IsDouble = 1
uinfo.StartDoubleTime = int(time.Now().Unix())
uinfo.DoubleLeftTimes--
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Data.LeftTimes = uinfo.DoubleLeftTimes
resp.Data.Coin.UserId = uuid
resp.Data.Coin.Coin = strconv.FormatInt(uinfo.Gold, 10)
accrate := uinfo.Goldrate * 3
resp.Data.Coin.IcomeRate = strconv.FormatInt(accrate, 10)
resp.Data.Coin.UpdateTime = int(time.Now().Unix())
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerLeftTimes(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp LeftRateTimesResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerLeftTimes getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
resp.Data.LeftTimes = uinfo.GetWatchAdsGoldTime
resp.Data.LimitTimes = WATCHADSGOLDLIMIT
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerLeftRateTimes(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp LeftRateTimesResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerAcclecteGold getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
resp.Data.LeftTimes = uinfo.DoubleLeftTimes
resp.Data.LimitTimes = ACCGOLDRATELIMIT
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerQueryBuyCat(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp QueryBuyCatResp
resp.Code = 0
resp.Message = "success"
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerAcclecteGold getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
for k, v := range uinfo.BuyCatInfo {
var tmp BuyCatDesc
tmp.CatId = k + 1
tmp.Coin = strconv.FormatInt(v.CurPrice, 10)
resp.Data = append(resp.Data, tmp)
}
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}
func HandlerExchangePos(w http.ResponseWriter, data string, uuid int) {
SetHeader(w)
var resp ExchangePosResp
resp.Code = 0
var rdata ExchangePosReq
err := json.Unmarshal([]byte(data), &rdata)
if err != nil {
logger.Info("json decode HandlerExchangePos data failed:%v", err, " for:%v", data)
resp.Message = "json unmarshal failed"
resp.Code = 1
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
return
}
for {
uinfo, err := GetUserInfo(strconv.Itoa(uuid))
if err != nil || uinfo == nil {
logger.Error("HandlerExchangePos getuserinfo failed=%v", err)
resp.Code = 1
resp.Message = "get userinfo failed"
break
}
sumpos := len(uinfo.PosInfo) - 1
//检查位置索引的合法性
if rdata.From < 0 || rdata.To < 0 || rdata.From > sumpos || rdata.To > sumpos {
logger.Error("HandlerExchangePos pos index not legal failed=%v", err)
resp.Code = 1
resp.Message = "pos index not legal"
break
}
//下面判断是交换还是合成
if uinfo.PosInfo[rdata.From].Cat == uinfo.PosInfo[rdata.To].Cat {
//相同 则合成
//首先判断是否是顶级猫了
if uinfo.PosInfo[rdata.From].Cat == 36 {
//todo 走红包猫的逻辑
MergeRedBagCat(uinfo, rdata.From)
DoAutoMergeRedCat(uinfo, uuid)
//此处处理一下红包猫的自动合成逻辑
if uinfo.Highestlv < 37 {
//非红包猫
uinfo.Highestlv = 37
uinfo.CheckBuyCatSHop()
}
} else {
//
uinfo.PosInfo[rdata.From].Cat = 0
uinfo.PosInfo[rdata.To].Cat++
if uinfo.PosInfo[rdata.To].Cat > uinfo.Highestlv {
uinfo.Highestlv = uinfo.PosInfo[rdata.To].Cat
resp.Data.NewCat = uinfo.PosInfo[rdata.To].Cat
uinfo.CheckBuyCatSHop()
//翻拍次数+
uinfo.FlopCardLefCnt++
}
}
} else {
//不相同 交换即可
if (uinfo.PosInfo[rdata.From].Cat == 108 && uinfo.PosInfo[rdata.To].Cat == 109) || (uinfo.PosInfo[rdata.From].Cat == 109 && uinfo.PosInfo[rdata.To].Cat == 108) {
//合成情侣猫
addredpacket := uinfo.PosInfo[rdata.From].RedPacket + uinfo.PosInfo[rdata.To].RedPacket
uinfo.PosInfo[rdata.From].Cat = 0
uinfo.PosInfo[rdata.From].RedPacket = 0
uinfo.PosInfo[rdata.To].Cat = 0
uinfo.PosInfo[rdata.To].RedPacket = 0
resp.Data.Reward = addredpacket
uinfo.Redbag += addredpacket
//todo 调用sdk接口
} else {
uinfo.PosInfo[rdata.From].Cat, uinfo.PosInfo[rdata.To].Cat = uinfo.PosInfo[rdata.To].Cat, uinfo.PosInfo[rdata.From].Cat
}
}
//重新计算速率
uinfo.CalcGoldRate()
//保存玩家数据
SaveUserInfo(uinfo, strconv.Itoa(uuid))
resp.Code = 0
break
}
//回包
respstr, _ := json.Marshal(&resp)
fmt.Fprint(w, string(respstr))
}