summaryrefslogtreecommitdiffstats
path: root/mbbsd/chicken.c
blob: e285856de277d2c6ef5c5fbb2a82df1b76a94c31 (plain) (blame)
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
/* $Id$ */
#include "bbs.h"

#define NUM_KINDS   15      /* 有多少種動物 */

static          const char *cage[17] = {
    "誕生", "週歲", "幼年", "少年", "青春", "青年",
    "青年", "活力", "壯年", "壯年", "壯年", "中年",
    "中年", "老年", "老年", "老摳摳", "古希"};
static          const char *chicken_type[NUM_KINDS] = {
    "小雞", "美少女", "勇士", "蜘蛛",
    "恐龍", "老鷹", "貓", "蠟筆小新",
    "狗狗", "惡魔", "忍者", "ㄚ扁",
    "馬英九", "就可人", "羅莉"};
static          const char *chicken_food[NUM_KINDS] = {
    "雞飼料", "營養厚片", "雞排便當", "死蝴蝶",
    "屍體", "小雞", "貓餅乾", "小熊餅乾",
    "寶錄", "靈氣", "飯團", "便當",
    "雞腿", "笑話文章", "水果沙拉"};
static          const int egg_price[NUM_KINDS] = {
    5, 25, 30, 40,
    80, 50, 15, 35,
    17, 100, 85, 200,
    200, 100, 77};
static          const int food_price[NUM_KINDS] = {
    4, 6, 8, 10,
    12, 12, 5, 6,
    5, 20, 15, 23,
    23, 10, 19};
static          const char *attack_type[NUM_KINDS] = {
    "啄", "鞭打", "槌", "咬",
    "撞擊", "啄", "抓", "踢",
    "咬", "燃燒", "暗擊", "棍打",
    "劍擊", "冷凍光線", "香吻一枚"};

static          const char *damage_degree[] = {
    "蚊子似的", "騷癢似的", "小力的", "輕微的",
    "有點疼的", "使力的", "傷人的", "重重的",
    "使全力的", "惡狠狠的", "危險的", "瘋狂的",
    "猛烈的", "狂風暴雨似的", "驚天動地的",
    "致命的", NULL};

enum {
    OO, FOOD, WEIGHT, CLEAN, RUN, ATTACK, BOOK, HAPPY, SATIS,
    TEMPERAMENT, TIREDSTRONG, SICK, HP_MAX, MM_MAX
};

static int      age;

static          const short time_change[NUM_KINDS][14] =
/* 補品 食物 體重 乾淨 敏捷 攻擊力 知識 快樂 滿意 氣質 疲勞 病氣 滿血 滿法 */
{
    /* 雞 */
    {1, 1, 30, 3, 8, 3, 3, 40, 9, 1, 7, 3, 30, 1},
    /* 美少女 */
    {1, 1, 110, 1, 4, 7, 41, 20, 9, 25, 25, 7, 110, 15},
    /* 勇士 */
    {1, 1, 200, 5, 4, 10, 33, 20, 15, 10, 27, 1, 200, 9},
    /* 蜘蛛 */
    {1, 1, 10, 5, 8, 1, 1, 5, 3, 1, 4, 1, 10, 30},
    /* 恐龍 */
    {1, 1, 1000, 9, 1, 13, 4, 12, 3, 1, 200, 1, 1000, 3},
    /* 老鷹 */
    {1, 1, 90, 7, 10, 7, 4, 12, 3, 30, 20, 5, 90, 20},
    /* 貓 */
    {1, 1, 30, 5, 5, 6, 4, 8, 3, 15, 7, 4, 30, 21},
    /* 蠟筆小新 */
    {1, 1, 100, 9, 7, 7, 20, 50, 10, 8, 24, 4, 100, 9},
    /* 狗 */
    {1, 1, 45, 8, 7, 9, 3, 40, 20, 3, 9, 5, 45, 1},
    /* 惡魔 */
    {1, 1, 45, 10, 11, 11, 5, 21, 11, 1, 9, 5, 45, 25},
    /* 忍者 */
    {1, 1, 45, 2, 12, 10, 25, 1, 1, 10, 9, 5, 45, 26},
    /* 阿扁 */
    {1, 1, 150, 4, 8, 13, 95, 25, 7, 10, 25, 5, 175, 85},
    /* 馬英九 */
    {1, 1, 147, 2, 10, 10, 85, 20, 4, 25, 25, 5, 145, 95},
    /* 就可人 */
    {1, 1, 200, 3, 15, 15, 50, 50, 10, 5, 10, 2, 300, 0},
    /* 羅利 */
    {1, 1, 80, 2, 9, 10, 2, 5, 7, 8, 12, 1, 135, 5},
};

int
reload_chicken()
{

    chicken_t *mychicken = &cuser.mychicken;

    passwd_query(usernum, &xuser);
    memcpy(mychicken, &xuser.mychicken, sizeof(chicken_t));
    if (!mychicken->name[0])
    return 0;
    else
    return 1;
}

#define CHICKENLOG  "etc/chicken"

static int
new_chicken()
{
    chicken_t *mychicken = &cuser.mychicken;
    char            buf[150];
    int             price;

    clear();
    move(2, 0);
    outs("歡迎光臨 \033[33m◎\033[37;44m Ptt寵物市場 \033[33;40m◎\033[m.. "
     "目前蛋價:\n"
     "(a)小雞 $5   (b)美少女 $25  (c)勇士    $30  (d)蜘蛛  $40  "
     "(e)恐龍 $80\n"
     "(f)老鷹 $50  (g)貓     $15  (h)蠟筆小新$35  (i)狗狗  $17  "
     "(j)惡魔 $100\n"
     "(k)忍者 $85  (l)阿扁   $200 (m)馬英九  $200 (n)就可人$100 "
     "[o]羅莉 $77\n"
     "[0]自己 $0\n");
    getdata_str(7, 0, "請選擇你要養的動物:", buf, 3, LCECHO, "0");

    buf[0] -= 'a';
    if (buf[0] < 0 || buf[0] > NUM_KINDS - 1)
    return 0;

    mychicken->type = buf[0];

    reload_money();
    price = egg_price[(int)mychicken->type];
    if (cuser.money < price) {
    vmsg("\n 錢不夠買蛋蛋,蛋蛋要 %d 元", price);
    return 0;
    }
    vice(price, "寵物蛋");
    while (strlen(mychicken->name) < 3)
    getdata(8, 0, "幫牠取個好名字:", mychicken->name,
        sizeof(mychicken->name), DOECHO);

    snprintf(buf, sizeof(buf),
         "\033[31m%s \033[m養了一隻叫\033[33m %s \033[m的 "
         "\033[32m%s\033[m  於 %s\n", cuser.userid,
         mychicken->name, chicken_type[(int)mychicken->type], ctime(&now));
    log_file(CHICKENLOG, buf, 1);
    mychicken->lastvisit = mychicken->birthday = mychicken->cbirth = now;
    mychicken->food = 0;
    mychicken->weight = time_change[(int)mychicken->type][WEIGHT] / 3;
    mychicken->clean = 0;
    mychicken->run = time_change[(int)mychicken->type][RUN];
    mychicken->attack = time_change[(int)mychicken->type][ATTACK];
    mychicken->book = time_change[(int)mychicken->type][BOOK];
    mychicken->happy = time_change[(int)mychicken->type][HAPPY];
    mychicken->satis = time_change[(int)mychicken->type][SATIS];
    mychicken->temperament = time_change[(int)mychicken->type][TEMPERAMENT];
    mychicken->tiredstrong = 0;
    mychicken->sick = 0;
    mychicken->hp = time_change[(int)mychicken->type][WEIGHT];
    mychicken->hp_max = time_change[(int)mychicken->type][WEIGHT];
    mychicken->mm = 0;
    mychicken->mm_max = 0;
    return 1;
}

int
show_file(char *filename, int y, int lines, int mode)
{
    FILE           *fp;
    char            buf[256];

    if (y >= 0)
    move(y, 0);
    clrtoline(lines + y);
    if ((fp = fopen(filename, "r"))) {
    while (fgets(buf, sizeof(buf), fp) && lines--)
        outs(Ptt_prints(buf, mode));
    fclose(fp);
    } else
    return 0;
    return 1;
}

static void
show_chicken_stat(chicken_t * thechicken)
{
    struct tm      *ptime;

    ptime = localtime(&thechicken->birthday);
    prints(" Name :\033[33m%s\033[m (\033[32m%s\033[m)%*s生日  "
       ":\033[31m%02d\033[m年\033[31m%2d\033[m月\033[31m%2d\033[m日 "
       "(\033[32m%s %d歲\033[m)\n"
       " 體:\033[33m%5d/%-5d\033[m 法:\033[33m%5d/%-5d\033[m 攻擊力:"
       "\033[33m%-7d\033[m 敏捷  :\033[33m%-7d\033[m 知識 :\033[33m%-7d"
       "\033[m \n"
       " 快樂 :\033[33m%-7d\033[m 滿意 :\033[33m%-7d\033[m 疲勞  :"
       "\033[33m%-7d\033[m 氣質  :\033[33m%-7d \033[m體重 :"
       "\033[33m%-5.2f\033[m \n"
       " 病氣 :\033[33m%-7d\033[m 乾淨 :\033[33m%-7d\033[m 食物  :"
       "\033[33m%-7d\033[m 大補丸:\033[33m%-7d\033[m 藥品 :\033[33m%-7d"
       "\033[m \n",
       thechicken->name, chicken_type[(int)thechicken->type],
       15 - strlen(thechicken->name), "",
       ptime->tm_year % 100, ptime->tm_mon + 1, ptime->tm_mday,
     cage[age > 16 ? 16 : age], age, thechicken->hp, thechicken->hp_max,
       thechicken->mm, thechicken->mm_max,
       thechicken->attack, thechicken->run, thechicken->book,
       thechicken->happy, thechicken->satis, thechicken->tiredstrong,
       thechicken->temperament,
       ((float)(thechicken->hp_max + (thechicken->weight / 50))) / 100,
       thechicken->sick, thechicken->clean, thechicken->food,
       thechicken->oo, thechicken->medicine);
}

#define CHICKEN_PIC "etc/chickens"

void
show_chicken_data(chicken_t * thechicken, chicken_t * pkchicken)
{
    char            buf[1024];
    age = ((now - thechicken->cbirth) / (60 * 60 * 24));
    if (age < 0) {
    thechicken->birthday = thechicken->cbirth = now - 10 * (60 * 60 * 24);
    age = 10;
    }
    /* Ptt:debug */
    thechicken->type %= NUM_KINDS;
    clear();
    showtitle(pkchicken ? "Ptt鬥雞場" : "Ptt養雞場", BBSName);
    move(1, 0);

    show_chicken_stat(thechicken);

    snprintf(buf, sizeof(buf), CHICKEN_PIC "/%c%d", thechicken->type + 'a',
         age > 16 ? 16 : age);
    show_file(buf, 5, 14, NO_RELOAD);

    move(18, 0);

    if (thechicken->sick)
    outs("生病了...");
    if (thechicken->sick > thechicken->hp / 5)
    outs("\033[5;31m擔心...病重!!\033[m");

    if (thechicken->clean > 150)
    outs("\033[31m又臭又髒的..\033[m");
    else if (thechicken->clean > 80)
    outs("有點髒..");
    else if (thechicken->clean < 20)
    outs("\033[32m很乾淨..\033[m");

    if (thechicken->weight > thechicken->hp_max * 4)
    outs("\033[31m快飽死了!.\033[m");
    else if (thechicken->weight > thechicken->hp_max * 3)
    outs("\033[32m飽嘟嘟..\033[m");
    else if (thechicken->weight < (thechicken->hp_max / 4))
    outs("\033[31m快餓死了!..\033[m");
    else if (thechicken->weight < (thechicken->hp_max / 2))
    outs("餓了..");

    if (thechicken->tiredstrong > thechicken->hp * 1.7)
    outs("\033[31m累得昏迷了...\033[m");
    else if (thechicken->tiredstrong > thechicken->hp)
    outs("累了..");
    else if (thechicken->tiredstrong < thechicken->hp / 4)
    outs("\033[32m精力旺盛...\033[m");

    if (thechicken->hp < thechicken->hp_max / 4)
    outs("\033[31m體力用盡..奄奄一息..\033[m");
    if (thechicken->happy > 500)
    outs("\033[32m很快樂..\033[m");
    else if (thechicken->happy < 100)
    outs("不快樂..");
    if (thechicken->satis > 500)
    outs("\033[32m很滿足..\033[m");
    else if (thechicken->satis < 50)
    outs("不滿足..");

    if (pkchicken) {
    outs("\n");
    show_chicken_stat(pkchicken);
    outs("[任意鍵] 攻擊對方 [q] 落跑 [o] 吃大補丸");
    }
}

static void
ch_eat()
{
    chicken_t *mychicken = &cuser.mychicken;
    if (mychicken->food) {
    mychicken->weight += time_change[(int)mychicken->type][WEIGHT] +
    mychicken->hp_max / 5;
    mychicken->tiredstrong +=
        time_change[(int)mychicken->type][TIREDSTRONG] / 2;
    mychicken->hp_max++;
    mychicken->happy += 5;
    mychicken->satis += 7;
    mychicken->food--;
    move(10, 10);

    show_file(CHICKEN_PIC "/eat", 5, 14, NO_RELOAD);
    pressanykey();
    }
}

static void
ch_clean()
{
    chicken_t *mychicken = &cuser.mychicken;
    mychicken->clean = 0;
    mychicken->tiredstrong +=
    time_change[(int)mychicken->type][TIREDSTRONG] / 3;
    show_file(CHICKEN_PIC "/clean", 5, 14, NO_RELOAD);
    pressanykey();
}

static void
ch_guess()
{
    char           *guess[3] = {"剪刀", "石頭", "布"}, me, ch, win;

    chicken_t *mychicken = &cuser.mychicken;
    mychicken->happy += time_change[(int)mychicken->type][HAPPY] * 1.5;
    mychicken->satis += time_change[(int)mychicken->type][SATIS];
    mychicken->tiredstrong += time_change[(int)mychicken->type][TIREDSTRONG];
    mychicken->attack += time_change[(int)mychicken->type][ATTACK] / 4;
    move(20, 0);
    clrtobot();
    outs("你要出[\033[32m1\033[m]\033[33m剪刀\033[m(\033[32m2\033[m)"
     "\033[33m石頭\033[m(\033[32m3\033[m)\033[33m布\033[m:\n");
    me = igetch();
    me -= '1';
    if (me > 2 || me < 0)
    me = 0;
    win = (int)(3.0 * rand() / (RAND_MAX + 1.0)) - 1;
    ch = (me + win + 3) % 3;
    prints("%s:%s !      %s:%s !.....%s",
       cuser.userid, guess[(int)me], mychicken->name, guess[(int)ch],
       win == 0 ? "平手" : win < 0 ? "耶..贏了 :D!!" : "嗚..我輸了 :~");
    pressanykey();
}

static void
ch_book()
{
    chicken_t *mychicken = &cuser.mychicken;
    mychicken->book += time_change[(int)mychicken->type][BOOK];
    mychicken->tiredstrong += time_change[(int)mychicken->type][TIREDSTRONG];
    show_file(CHICKEN_PIC "/read", 5, 14, NO_RELOAD);
    pressanykey();
}

static void
ch_kiss()
{
    chicken_t *mychicken = &cuser.mychicken;
    mychicken->happy += time_change[(int)mychicken->type][HAPPY];
    mychicken->satis += time_change[(int)mychicken->type][SATIS];
    mychicken->tiredstrong +=
    time_change[(int)mychicken->type][TIREDSTRONG] / 2;
    show_file(CHICKEN_PIC "/kiss", 5, 14, NO_RELOAD);
    pressanykey();
}

static void
ch_hit()
{
    chicken_t *mychicken = &cuser.mychicken;
    mychicken->attack += time_change[(int)mychicken->type][ATTACK];
    mychicken->run += time_change[(int)mychicken->type][RUN];
    mychicken->mm_max += time_change[(int)mychicken->type][MM_MAX] / 15;
    mychicken->weight -= mychicken->hp_max / 15;
    mychicken->hp -= (int)((float)time_change[(int)mychicken->type][HP_MAX] *
               rand() / (RAND_MAX + 1.0)) / 2 + 1;

    if (mychicken->book > 2)
    mychicken->book -= 2;
    if (mychicken->happy > 2)
    mychicken->happy -= 2;
    if (mychicken->satis > 2)
    mychicken->satis -= 2;
    mychicken->tiredstrong += time_change[(int)mychicken->type][TIREDSTRONG];
    show_file(CHICKEN_PIC "/hit", 5, 14, NO_RELOAD);
    pressanykey();
}

void
ch_buyitem(int money, char *picture, int *item, int haveticket)
{
    int             num = 0;
    char            buf[5];

    getdata_str(b_lines - 1, 0, "要買多少份呢:",
        buf, sizeof(buf), DOECHO, "1");
    num = atoi(buf);
    if (num < 1)
    return;
    reload_money();
    if (cuser.money > money * num) {
    *item += num;
    if( haveticket )
        vice(money * num, "購買寵物,賭盤項目");
    else
        demoney(-money * num);
    show_file(picture, 5, 14, NO_RELOAD);
        pressanykey();
    } else {
    vmsg("現金不夠 !!!");
    }
}

static void
ch_eatoo()
{
    chicken_t *mychicken = &cuser.mychicken;
    if (mychicken->oo > 0) {
    mychicken->oo--;
    mychicken->tiredstrong = 0;
    if (mychicken->happy > 5)
        mychicken->happy -= 5;
    show_file(CHICKEN_PIC "/oo", 5, 14, NO_RELOAD);
    pressanykey();
    }
}

static void
ch_eatmedicine()
{
    chicken_t *mychicken = &cuser.mychicken;
    if (mychicken->medicine > 0) {
    mychicken->medicine--;
    mychicken->sick = 0;
    if (mychicken->hp_max > 10)
        mychicken->hp_max -= 3;
    mychicken->hp = mychicken->hp_max;
    if (mychicken->happy > 10)
        mychicken->happy -= 10;
    show_file(CHICKEN_PIC "/medicine", 5, 14, NO_RELOAD);
    pressanykey();
    }
}

static void
ch_kill()
{
    chicken_t *mychicken = &cuser.mychicken;
    char            buf[150], ans[4];

    snprintf(buf, sizeof(buf), "棄養這%s要被罰 100 元, 是否要棄養?(y/N)",
        chicken_type[(int)mychicken->type]);
    getdata_str(23, 0, buf, ans, sizeof(ans), DOECHO, "N");
    if (ans[0] == 'y') {

    vice(100, "棄養寵物費");
    more(CHICKEN_PIC "/deadth", YEA);
    snprintf(buf, sizeof(buf),
         "\033[31m%s \033[m把 \033[33m%s\033[m\033[32m %s "
         "\033[m宰了 於 %s\n", cuser.userid, mychicken->name,
         chicken_type[(int)mychicken->type], ctime(&now));
    log_file(CHICKENLOG, buf, 1);
    mychicken->name[0] = 0;
    }
}

static int
ch_sell()
{
    chicken_t *mychicken = &cuser.mychicken;
    /*
     * int money = (mychicken->weight -
     * time_change[(int)mychicken->type][WEIGHT])
     * (food_price[(int)mychicken->type])/4 + ( + ((mychicken->clean /
     * time_change[(int)mychicken->type][CLEAN]) + (mychicken->run /
     * time_change[(int)mychicken->type][RUN]) + (mychicken->attack /
     * time_change[(int)mychicken->type][ATTACK]) + (mychicken->book /
     * time_change[(int)mychicken->type][BOOK]) + (mychicken->happy /
     * time_change[(int)mychicken->type][HAPPY]) + (mychicken->satis /
     * time_change[(int)mychicken->type][SATIS]) + (mychicken->temperament /
     * time_change[(int)mychicken->type][TEMPERAMENT]) -
     * (mychicken->tiredstrong /
     * time_change[(int)mychicken->type][TIREDSTRONG]) - (mychicken->sick /
     * time_change[(int)mychicken->type][SICK]) + (mychicken->hp /
     * time_change[(int)mychicken->type][HP_MAX]) + (mychicken->mm /
     * time_change[(int)mychicken->type][MM_MAX]) + 7 - abs(age - 7)) * 3 ;
     */
    int             money = (age * food_price[(int)mychicken->type] * 3
                 + (mychicken->hp_max * 10 + mychicken->weight) /
            time_change[(int)mychicken->type][HP_MAX]) * 3 / 2 -
    mychicken->sick;
    char            buf[150], ans[4];

    if (money < 0)
    money = 0;
    else if (money > MAX_CHICKEN_MONEY)
    money = MAX_CHICKEN_MONEY;
    //防止怪雞
    if (mychicken->type == 1 || mychicken->type == 7) {
    outs("\n\033[31m ㄜ..親愛的..販賣人口是會犯法的唷..\033[m");
    pressanykey();
    return 0;
    }
    if (age < 5) {
    outs("\n 還未成年不能賣");
    pressanykey();
    return 0;
    }
    if (age > 30) {
    outs("\n\033[31m 這..太老沒人要了\033[m");
    pressanykey();
    return 0;
    }
    snprintf(buf, sizeof(buf), "這隻%d歲%s可以賣 %d 元, 是否要賣?(y/N)", age,
         chicken_type[(int)mychicken->type], money);
    getdata_str(23, 0, buf, ans, sizeof(ans), DOECHO, "N");
    if (ans[0] == 'y') {
    snprintf(buf, sizeof(buf), "\033[31m%s\033[m 把 \033[33m%s\033[m "
        "\033[32m%s\033[m 用 \033[36m%d\033[m 賣了 於 %s\n",
        cuser.userid, mychicken->name,
        chicken_type[(int)mychicken->type], money, ctime(&now));
    log_file(CHICKENLOG, buf, 1);
    mychicken->lastvisit = mychicken->name[0] = 0;
    passwd_update(usernum, &cuser);
    more(CHICKEN_PIC "/sell", YEA);
    demoney(money);
    return 1;
    }
    return 0;
}

static void
geting_old(int *hp, int *weight, int diff, int age)
{
    float           ex = 0.9;

    if (age > 70)
    ex = 0.1;
    else if (age > 30)
    ex = 0.5;
    else if (age > 20)
    ex = 0.7;

    diff /= 60 * 6;
    while (diff--) {
    *hp *= ex;
    *weight *= ex;
    }
}

/* 依時間變動的資料 */
void
time_diff(chicken_t * thechicken)
{
    int             diff;
    int             theage = ((now - thechicken->cbirth) / (60 * 60 * 24));

    thechicken->type %= NUM_KINDS;
    diff = (now - thechicken->lastvisit) / 60;

    if ((diff) < 1)
    return;

    if (theage > 13)        /* 老死 */
    geting_old(&thechicken->hp_max, &thechicken->weight, diff, age);

    thechicken->lastvisit = now;
    thechicken->weight -= thechicken->hp_max * diff / 540;  /* 體重 */
    if (thechicken->weight < 1) {
    thechicken->sick -= thechicken->weight / 10;    /* 餓得病氣上升 */
    thechicken->weight = 1;
    }
    /* 清潔度 */
    thechicken->clean += diff * time_change[(int)thechicken->type][CLEAN] / 30;

    /* 快樂度 */
    thechicken->happy -= diff / 60;
    if (thechicken->happy < 0)
    thechicken->happy = 0;
    thechicken->attack -=
    time_change[(int)thechicken->type][ATTACK] * diff / (60 * 32);
    if (thechicken->attack < 0)
    thechicken->attack = 0;
    /* 攻擊力 */
    thechicken->run -= time_change[(int)thechicken->type][RUN] * diff / (60 * 32);
    /* 敏捷 */
    if (thechicken->run < 0)
    thechicken->run = 0;
    thechicken->book -= time_change[(int)thechicken->type][BOOK] * diff / (60 * 32);
    /* 知識 */
    if (thechicken->book < 0)
    thechicken->book = 0;
    /* 氣質 */
    thechicken->temperament++;

    thechicken->satis -= diff / 60 / 3 * time_change[(int)thechicken->type][SATIS];
    /* 滿意度 */
    if (thechicken->satis < 0)
    thechicken->satis = 0;

    /* 髒病的 */
    if (thechicken->clean > 1000)
    thechicken->sick += (thechicken->clean - 400) / 10;

    if (thechicken->weight > 1)
    thechicken->sick -= diff / 60;
    /* 病氣恢護 */
    if (thechicken->sick < 0)
    thechicken->sick = 0;
    thechicken->tiredstrong -= diff *
    time_change[(int)thechicken->type][TIREDSTRONG] / 4;
    /* 疲勞 */
    if (thechicken->tiredstrong < 0)
    thechicken->tiredstrong = 0;
    /* hp_max */
    if (thechicken->hp >= thechicken->hp_max / 2)
    thechicken->hp_max +=
        time_change[(int)thechicken->type][HP_MAX] * diff / (60 * 12);
    /* hp恢護 */
    if (!thechicken->sick)
    thechicken->hp +=
        time_change[(int)thechicken->type][HP_MAX] * diff / (60 * 6);
    if (thechicken->hp > thechicken->hp_max)
    thechicken->hp = thechicken->hp_max;
    /* mm_max */
    if (thechicken->mm >= thechicken->mm_max / 2)
    thechicken->mm_max +=
        time_change[(int)thechicken->type][MM_MAX] * diff / (60 * 8);
    /* mm恢護 */
    if (!thechicken->sick)
    thechicken->mm += diff;
    if (thechicken->mm > thechicken->mm_max)
    thechicken->mm = thechicken->mm_max;
}

static void
check_sick()
{
    chicken_t *mychicken = &cuser.mychicken;
    /* 髒病的 */
    if (mychicken->tiredstrong > mychicken->hp * 0.3 && mychicken->clean > 150)
    mychicken->sick += (mychicken->clean - 150) / 10;
    /* 累病的 */
    if (mychicken->tiredstrong > mychicken->hp * 1.3)
    mychicken->sick += time_change[(int)mychicken->type][SICK];
    /* 病氣太重還做事減hp */
    if (mychicken->sick > mychicken->hp / 5) {
    mychicken->hp -= (mychicken->sick - mychicken->hp / 5) / 4;
    if (mychicken->hp < 0)
        mychicken->hp = 0;
    }
}

static int
deadtype(chicken_t * thechicken)
{
    chicken_t *mychicken = &cuser.mychicken;
    int             i;
    char            buf[150];

    if (thechicken->hp <= 0)    /* hp用盡 */
    i = 1;
    else if (thechicken->tiredstrong > thechicken->hp * 3)  /* 操勞過度 */
    i = 2;
    else if (thechicken->weight > thechicken->hp_max * 5)   /* 肥胖過度 */
    i = 3;
    else if (thechicken->weight == 1 &&
         thechicken->sick > thechicken->hp_max / 4)
    i = 4;          /* 餓死了 */
    else if (thechicken->satis <= 0)    /* 很不滿意 */
    i = 5;
    else
    return 0;

    if (thechicken == mychicken) {
    snprintf(buf, sizeof(buf),
         "\033[31m%s\033[m 所疼愛的\033[33m %s\033[32m %s "
         "\033[m掛了 於 %s\n",
         cuser.userid, thechicken->name,
         chicken_type[(int)thechicken->type],
         ctime(&now));
    log_file(CHICKENLOG, buf, 1);
    mychicken->name[0] = 0;
    passwd_update(usernum, &cuser);
    }
    return i;
}

int
showdeadth(int type)
{
    switch (type) {
    case 1:
    more(CHICKEN_PIC "/nohp", YEA);
    break;
    case 2:
    more(CHICKEN_PIC "/tootired", YEA);
    break;
    case 3:
    more(CHICKEN_PIC "/toofat", YEA);
    break;
    case 4:
    more(CHICKEN_PIC "/nofood", YEA);
    break;
    case 5:
    more(CHICKEN_PIC "/nosatis", YEA);
    break;
    default:
    return 0;
    }
    more(CHICKEN_PIC "/deadth", YEA);
    return type;
}

int
isdeadth(chicken_t * thechicken)
{
    int             i;

    if (!(i = deadtype(thechicken)))
    return 0;
    return showdeadth(i);
}

static void
ch_changename()
{
    chicken_t *mychicken = &cuser.mychicken;
    char            buf[150], newname[20] = "";

    getdata_str(b_lines - 1, 0, "嗯..改個好名字吧:", newname, 18, DOECHO,
        mychicken->name);

    if (strlen(newname) >= 3 && strcmp(newname, mychicken->name)) {
    snprintf(buf, sizeof(buf),
         "\033[31m%s\033[m 把疼愛的\033[33m %s\033[32m %s "
         "\033[m改名為\033[33m %s\033[m 於 %s\n",
         cuser.userid, mychicken->name,
         chicken_type[(int)mychicken->type],
         newname, ctime(&now));
    strlcpy(mychicken->name, newname, sizeof(mychicken->name));
    log_file(CHICKENLOG, buf, 1);
    }
}

static int
select_menu()
{
    chicken_t *mychicken = &cuser.mychicken;
    char            ch;

    reload_money();
    move(19, 0);
    prints("\033[44;37m 錢 :\033[33m %-10d                                  "
       "                       \033[m\n"
       "\033[33m(\033[37m1\033[33m)清理 (\033[37m2\033[33m)吃飯 "
       "(\033[37m3\033[33m)猜拳 (\033[37m4\033[33m)唸書 "
       "(\033[37m5\033[33m)親他 (\033[37m6\033[33m)打他 "
       "(\033[37m7\033[33m)買%s$%d (\033[37m8\033[33m)吃補丸\n"
       "(\033[37m9\033[33m)吃病藥 (\033[37mo\033[33m)買大補丸$100 "
       "(\033[37mm\033[33m)買藥$10 (\033[37mk\033[33m)棄養 "
       "(\033[37ms\033[33m)賣掉 (\033[37mn\033[33m)改名 "
       "(\033[37mq\033[33m)離開:\033[m",
       cuser.money,
    /*
     * chicken_food[(int)mychicken->type],
     * chicken_type[(int)mychicken->type],
     * chicken_type[(int)mychicken->type],
     */
       chicken_food[(int)mychicken->type],
       food_price[(int)mychicken->type]);
    do {
    switch (ch = igetch()) {
    case '1':
        ch_clean();
        check_sick();
        break;
    case '2':
        ch_eat();
        check_sick();
        break;
    case '3':
        ch_guess();
        check_sick();
        break;
    case '4':
        ch_book();
        check_sick();
        break;
    case '5':
        ch_kiss();
        break;
    case '6':
        ch_hit();
        check_sick();
        break;
    case '7':
        ch_buyitem(food_price[(int)mychicken->type], CHICKEN_PIC "/food",
               &mychicken->food, 1);
        break;
    case '8':
        ch_eatoo();
        break;
    case '9':
        ch_eatmedicine();
        break;
    case 'O':
    case 'o':
        ch_buyitem(100, CHICKEN_PIC "/buyoo", &mychicken->oo, 1);
        break;
    case 'M':
    case 'm':
        ch_buyitem(10, CHICKEN_PIC "/buymedicine", &mychicken->medicine, 1);
        break;
    case 'N':
    case 'n':
        ch_changename();
        break;
    case 'K':
    case 'k':
        ch_kill();
        return 0;
    case 'S':
    case 's':
        if (!ch_sell())
        break;
    case 'Q':
    case 'q':
        return 0;
    }
    } while (ch < ' ' || ch > 'z');
    return 1;
}

static int
recover_chicken(chicken_t * thechicken)
{
    char            buf[200];
    int             price = egg_price[(int)thechicken->type], money = price + (rand() % price);

    if (now - thechicken->lastvisit > (60 * 60 * 24 * 7))
    return 0;
    outmsg("\033[33;44m★靈界守衛\033[37;45m 別害怕 我是來幫你的 \033[m");
    bell();
    igetch();
    outmsg("\033[33;44m★靈界守衛\033[37;45m 你無法丟到我水球 因為我是聖靈, "
       "最近缺錢想賺外快 \033[m");
    bell();
    igetch();
    snprintf(buf, sizeof(buf), "\033[33;44m★靈界守衛\033[37;45m "
         "你有一個剛走不久的%s要招換回來嗎? 只要%d元唷 \033[m",
         chicken_type[(int)thechicken->type], price * 2);
    outmsg(buf);
    bell();
    getdata_str(21, 0, "    選擇:(N:坑人嘛/y:請幫幫我)", buf, 3, LCECHO, "N");
    if (buf[0] == 'y' || buf[0] == 'Y') {
    reload_money();
    if (cuser.money < price * 2) {
        outmsg("\033[33;44m★靈界守衛\033[37;45m 什麼 錢沒帶夠 "
           "沒錢的小鬼 快去籌錢吧 \033[m");
        bell();
        igetch();
        return 0;
    }
    strlcpy(thechicken->name, "[撿回來的]", sizeof(thechicken->name));
    thechicken->hp = thechicken->hp_max;
    thechicken->sick = 0;
    thechicken->satis = 2;
    vice(money, "靈界守衛");
    snprintf(buf, sizeof(buf),
         "\033[33;44m★靈界守衛\033[37;45m OK了 記得餵他點東西 "
         "不然可能失效 念在我也有玩Ptt 拿你%d就好 \033[m", money);
    outmsg(buf);
    bell();
    igetch();
    return 1;
    }
    outmsg("\033[33;44m★靈界守衛\033[37;45m 竟然說我坑人! 這年頭命真不值錢 "
       "除非我再來找你 你再也沒機會了 \033[m");
    bell();
    igetch();
    thechicken->lastvisit = 0;
    passwd_update(usernum, &cuser);
    return 0;
}

#define lockreturn0(unmode, state) if(lockutmpmode(unmode, state)) return 0

int
chicken_main()
{
    chicken_t *mychicken = &cuser.mychicken;
    lockreturn0(CHICKEN, LOCK_MULTI);
    reload_chicken();
    age = ((now - mychicken->cbirth) / (60 * 60 * 24));
    if (!mychicken->name[0] && !recover_chicken(mychicken) && !new_chicken()) {
    unlockutmpmode();
    return 0;
    }
    do {
    time_diff(mychicken);
    if (isdeadth(mychicken))
        break;
    show_chicken_data(mychicken, NULL);
    } while (select_menu());
    reload_money();
    passwd_update(usernum, &cuser);
    unlockutmpmode();
    return 0;
}

int
chickenpk(int fd)
{
    chicken_t *mychicken = &cuser.mychicken;
    char            mateid[IDLEN + 1], data[200], buf[200];
    int             ch = 0;

    userinfo_t     *uin = &SHM->uinfo[currutmp->destuip];
    userec_t        ouser;
    chicken_t      *ochicken = &ouser.mychicken;
    int             r, attmax, i, datac, duid = currutmp->destuid, catched = 0,
                    count = 0;

    lockreturn0(CHICKEN, LOCK_MULTI);

    strlcpy(mateid, currutmp->mateid, sizeof(mateid));
    /* 把對手的id用local buffer記住 */

    getuser(mateid);
    memcpy(&ouser, &xuser, sizeof(userec_t));
    reload_chicken();
    if (!ochicken->name[0] || !mychicken->name[0]) {
    bell();
    vmsg("有一方沒有寵物");  /* Ptt:妨止page時把寵物賣掉 */
    add_io(0, 0);
    close(fd);
    unlockutmpmode();
    return 0;
    }
    show_chicken_data(ochicken, mychicken);
    add_io(fd, 3);      /* 把fd加到igetch監視 */
    while (1) {
    r = rand();
    ch = igetch();
    getuser(mateid);
    memcpy(&ouser, &xuser, sizeof(userec_t));
    reload_chicken();
    show_chicken_data(ochicken, mychicken);
    time_diff(mychicken);

    i = mychicken->attack * mychicken->hp / mychicken->hp_max;
    for (attmax = 2; (i = i * 9 / 10); attmax++);

    if (ch == I_OTHERDATA) {
        count = 0;
        datac = recv(fd, data, sizeof(data), 0);
        if (datac <= 1)
        break;
        move(17, 0);
        outs(data + 1);
        switch (data[0]) {
        case 'c':
        catched = 1;
        move(16, 0);
        outs("要放他走嗎?(y/N)");
        break;
        case 'd':
        move(16, 0);
        outs("阿~倒下了!!");
        break;
        }
        if (data[0] == 'd' || data[0] == 'q' || data[0] == 'l')
        break;
        continue;
    } else if (currutmp->turn) {
        count = 0;
        currutmp->turn = 0;
        uin->turn = 1;
        mychicken->tiredstrong++;
        switch (ch) {
        case 'y':
        if (catched == 1) {
            snprintf(data, sizeof(data),
                 "l讓 %s 落跑了\n", ochicken->name);
        }
        break;
        case 'n':
        catched = 0;
        default:
        case 'k':
        r = r % (attmax + 2);
        if (r) {
            snprintf(data, sizeof(data),
                 "M%s %s%s %s 傷了 %d 點\n", mychicken->name,
                 damage_degree[r / 3 > 15 ? 15 : r / 3],
                 attack_type[(int)mychicken->type],
                 ochicken->name, r);
            ochicken->hp -= r;
        } else
            snprintf(data, sizeof(data),
                 "M%s 覺得手軟出擊無效\n", mychicken->name);
        break;
        case 'o':
        if (mychicken->oo > 0) {
            mychicken->oo--;
            mychicken->hp += 300;
            if (mychicken->hp > mychicken->hp_max)
            mychicken->hp = mychicken->hp_max;
            mychicken->tiredstrong = 0;
            snprintf(data, sizeof(data), "M%s 吃了顆大補丸補充體力\n",
                 mychicken->name);
        } else
            snprintf(data, sizeof(data),
                "M%s 想吃大補丸, 可是沒有大補丸可吃\n",
                mychicken->name);
        break;
        case 'q':
        if (r % (mychicken->run + 1) > r % (ochicken->run + 1))
            snprintf(data, sizeof(data), "q%s 落跑了\n",
                 mychicken->name);
        else
            snprintf(data, sizeof(data),
                 "c%s 想落跑, 但被 %s 抓到了\n",
                 mychicken->name, ochicken->name);
        break;
        }
        if (deadtype(ochicken)) {
        strtok(data, "\n");
        strlcpy(buf, data, sizeof(buf));
        snprintf(data, sizeof(data), "d%s , %s 被 %s 打死了\n",
             buf + 1, ochicken->name, mychicken->name);
        }
        move(17, 0);
        outs(data + 1);
        i = strlen(data) + 1;
        passwd_update(duid, &ouser);
        passwd_update(usernum, &cuser);
        send(fd, data, i, 0);
        if (data[0] == 'q' || data[0] == 'd')
        break;
    } else {
        move(17, 0);
        if (count++ > 30)
        break;
    }
    }
    add_io(0, 0);       /* 把igetch恢復回 */
    pressanykey();
    close(fd);
    showdeadth(deadtype(mychicken));
    unlockutmpmode();
    return 0;
}