-
Notifications
You must be signed in to change notification settings - Fork 0
/
main2 第二版devc重铸.c
2144 lines (1881 loc) · 63.9 KB
/
main2 第二版devc重铸.c
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
/*更新日志:
23-5-2022:第一版
23-5-2022:添加了管理员登录功能与界面
23-5-2022:添加了输入密码时的密码隐藏功能
23-5-2022:修复了部分界面排版出错的问题
24-5-2022:修复了books.txt无法读取的问题
24-5-2022:添加了图书价格合法性的判断
24-5-2022:添加了在图书查看页面图书库存的判断
24-5-2022:修复了图书查看页面的借出状态错误的问题
24-5-2022:修复了重新进入系统时书籍仓库丢失的问题
24-5-2022:添加了无books.txt的修复功能
24-5-2022:添加了在添加书籍时图书ISBN编号的判断功能
24-5-2022:修复了在添加图书时,图书价格不合法却无法判断的问题
24-5-2022: 添加了删除全部书籍的功能
24-5-2022: 添加了彩色字体
24-5-2022: 修改了books.txt的修复界面,添加了蓝屏 :-)
25-5-2022:修复了在蓝屏时进度条超出100%的问题
25-5-2022:第二版
25-5-2022: 添加了用户系统
25-5-2022: 添加了用户登录功能
25-5-2022:添加了用户注册功能
25-5-2022:添加了用户菜单界面
25-5-2022: 添加了users.txt的修复界面,添加了蓝屏 :-)
25-5-2022: 修复了无藏书时也能修改书籍信息的问题
26-5-2022: 修复了查看个人信息时意外退出的bug
26-5-2022: 修复了个人信息界面显示格式错误的bug
26-5-2022: 修复了部分操作下程序意外退出
26-5-2022: 修复了无法注册用户的问题
26-5-2022: 删除了老旧的Lend结构体
26-5-2022: 将users与books结构体联动
26-5-2022: 修复了主界面意外不读取的bug
26-5-2022: 修复了管理员无法登录的问题
26-5-2022: 添加了用户账号判断合法性的功能
26-5-2022: 添加了删除全部用户的功能
26-5-2022: 添加了删除全部图书的二级操作确认
26-5-2022: 添加了删除全部用户的二级操作确认
26-5-2022: 修复了在无用户情况下会显示用户列表的bug
26-5-2022: 修复了用户无法注册的问题
26-5-2022: 修复了主页界面输入系统无响应的问题
26-5-2022: 用户界面的【个人信息】功能上线!
26-5-2022: 用户界面的【我的借阅】功能上线!
26-5-2022:用户界面的【借阅图书】功能上线!
26-5-2022: 用户界面的【归还图书】功能上线!
26-5-2022: 添加了用户ID和用户数组索引的转化函数
26-5-2022:修复了管理员界面还不了书的问题
26-5-2022:修复了在管理员界面借出书后,用户界面还是显示没有借到书的问题
27-5-2022: 修复了用户无法归还书本的问题
27-5-2022:修复了管理员借阅失败的问题
27-5-2022:修复了明明有书籍可借阅却还是显示 无书籍可借阅的问题
27-5-2022: 添加了登陆界面更多的判断
27-5-2022: 修复了登录界面字体颜色不正常的问题
27-5-2022: 修改了管理员借书的操作逻辑
27-5-2022: 添加了在用户登陆界面的欢迎语
27-5-2022:添加了用户积分系统
28-5-2022: 添加了更多界面的字体颜色
28-5-2022: 更改了部分界面的提示信息
28-5-2022: 修复了修改用户意外退出的问题
28-5-2022: 设置了在用户有未归还的书本时不允许用户进行注销
*/
#define ERROR_READ 0
#define MAX_BOOKS_NUM 100
#define MAX_USERS_NUM 100
#define TOP_POINTS 10
#define TOP_VIP_GRADE 8
#define WHITE SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE)//白色
#define RED SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED);//红色
#define GREEN SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN)//绿色
#define BLUE SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_BLUE)//蓝色
#define YELLOW SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN)//黄色
#define PINK SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_BLUE)//粉色
#define CYAN SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY|FOREGROUND_GREEN|FOREGROUND_BLUE)//青色
#define GRAY SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY)//灰色
#include<stdio.h>//基本输入输出函数库
#include<stdlib.h>//用于memset()
#include<string.h>//用来支持string
#include<conio.h>//用来支持键盘输入(getch)
#include<windows.h>//用来支持颜色设置和屏幕等待
#include<ctype.h>//用来支持isalpha函数
#include<malloc.h>//用来支持malloc函数
#include<time.h>//用来支持显示时间
//图书馆结构体
struct Lib{
char LibName[20];//图书馆名称
int isBookEmpty;//是否为空
int isUserEmpty;//是否为空
int booksNum;//图书数量
int userNum;//用户数量
int lendBooksNum;//已借出的书本数量
int unlendBooksNum;//未借出的书籍数量
}LibR;
//图书结构体
struct Book {
char isbn[20]; // 发行编号 唯一值
char name[20]; // 书名
char author[20]; // 作者
float price; // 价格
char press[20]; // 出版社
int isLend; // 借出标志
int lenduserid; //借阅者ID
char lendMessage[20]; //借阅备注
}books[MAX_BOOKS_NUM]; // 图书结构体数组, 用于存放所有的图书信息
//用户结构体
struct Users
{
int user_id;//用户id
char user_name[10];//用户名
char user_password[20];//密码
int integral;//积分
int vip;//是否为vip
char lendBooksIsbn[11][20];//借阅的书籍,最多同时借10本书
int lendBooksNum;//借阅的书籍数量
}users[MAX_USERS_NUM];//用户结构体数组,用于存放所有的用户信息
int sys_user_id;//正在系统登陆的的用户ID
int sys_user_index;//正在系统登陆的的用户索引
// 登录,读取文件
void login();
// 管理员菜单
void adminMenu();
// 添加图书,存储文件
void addBook();
// 查询图书,存储文件
void queryBook();
// 详细书籍信息
void showBookDetail();
// 存储文件
void saveBooks();
// 读取文件
void loadBooks();
// 删除图书
void delBook();
// 修改图书
void modBook();
// 借出书籍
void lendBooks();
// 归还书籍
void backBooks();
//判断图书重复
int isBookRepeat(const char *isbn,const int index);
//判断图书是否为
int isLibEmpty();
//计算藏书数量,mode为0返回总数,为1返回已借出,为2返回未借出
int countBooks(int mode);
// 读取用户
void loadUsers();
// 存储用户
void saveUsers();
// 用户菜单
void userMenu(const int *user_index);
//注册用户
void addUser();
//管理员修改用户
void modUserAdm();
//管理员显示用户
void showUsers();
// 我的借阅
void myLend(const int user_index);
//用户借阅
void userLend(const int user_index);
// 用户归还
void userBack(const int user_index);
// 我的积分
void userIntegral(const int user_index);
//管理员管理用户
void manageUser();
// 管理员删除用户
void delUserAdm();
//在users.txt过大时删除
void Rec();
//计算用户数量
int countUsers();
//用户信息
int userLetter(const int user_index);
//删除用户
int delUser(int user_index);
//判断用户重复
int isUserAvl(const int user_index);
//判断用户是否为空
int isUserEmpty();
//查询书籍,mode=1,2查找isbn,查找书名
int searchBook(char *msg, int mode);
//用户ID和用户索引的转化.模式为0时,ID->索引
int ID2Index(const int n,int mode);
// 判断输入的密码
int confirm(char *msg);
int confirml(const char *msg, char *m, void*a);
int main(){
int input;
loadUsers();
loadBooks();
while(1){
system("cls");
system("color 05");//f1中前一个f为背景色,后一个为前景色。蓝色
// tab ==> 右缩进 shift+tab <== 左缩进
WHITE;//白色
printf("==================================\n=");
BLUE;//蓝色
printf(" 魔法书库系统\t ");
WHITE;//白色
printf("=\n==================================\n=");
CYAN;//青色
printf(" 1. 登录\t ");
WHITE;//白色
printf("=\n= ");
YELLOW;//黄色
printf("2. 关于我们\t ");
WHITE;//白色
printf("=\n= ");
PINK;//粉色
printf("3. 操作指南\t ");
WHITE;//白色
printf("=\n= ");
GREEN;//绿色
printf("4. 用户注册\t ");
WHITE;//白色
printf("=\n= ");
RED;//红色
printf("9. 退出\t ");
WHITE;//白色
printf("=\n==================================\n");
GRAY;//灰色
printf("请输入 : ");
GREEN;//绿色
// fflush(stdin);//更新缓冲区
scanf("%d",&input);
WHITE;//白色
switch(input){
case 1: login();break;
case 2: printf("关于我们:\n\t该图书管理软件旨在将图书管理员\n从繁重图书管理模式下拯救出去!");break;
case 3: printf("懂不懂熟能生巧这个道理啊喂(战术后仰)。");break;
case 4: addUser();break;
case 9: return 0;
default : RED;printf("输入格式有误,系统将默认退出!\n");WHITE;return 0;
}
system("pause");
}
return 0;
}
// 管理员页面
void adminMenu()
{
int input;
while (1)
{
system("cls");
system("color 02");//02中前一个0为背景色,黑色。后一个为前景色,绿色,但是这里没用,被FOREGROUND_替代了
WHITE;//白色
printf("==================================\n=");
BLUE;//蓝色
printf(" 图书管理系统 ");
WHITE;//白色
printf("=\n==================================\n=");
YELLOW;//黄色
printf(" 1. 添加图书 ");
WHITE;//白色
printf("=\n= ");
PINK;//粉色
printf("2. 修改图书 ");
WHITE;//白色
printf("=\n= ");
BLUE;//蓝色
printf("3. 查询图书 ");
WHITE;//白色
printf("=\n= ");
CYAN;//青色
printf("4. 删除图书 ");
WHITE;//白色
printf("=\n= ");
YELLOW;//黄色
printf("5. 借阅图书 ");
WHITE;//白色
printf("=\n= ");
PINK;//粉色
printf("6. 归还图书 ");
WHITE;//白色
printf("=\n= ");
GREEN;//绿色
printf("7. 清点图书 ");
WHITE;//白色
printf("=\n= ");
BLUE;//绿色
printf("8. 管理用户 ");
WHITE;
printf("=\n=");
RED;//红色
printf(" 0. 退出系统 ");
WHITE;//白色
printf("=\n");
printf("==================================\n");
GRAY;//灰色
printf("请输入 0 ~ 7: ");
GREEN;//绿色
scanf("%d", &input);
WHITE;//白色
switch (input)
{
case 1:
addBook();
break;
case 2:
modBook();
break;
case 3:
showBookDetail();
break;
case 4:
delBook();
break;
case 5:
lendBooks();
break;
case 6:
backBooks();
break;
case 7:
printf("藏书数量:%d\n已借出:%d\n未借出:%d",countBooks(0),countBooks(1),countBooks(2));
break;
case 8:
manageUser();
break;
case 0:
WHITE;//白色
return ;
}
system("pause");
}
}
// 用户界面
void userMenu(const int *user_index)//这里是传入索引!
{
int input;
while (1)
{
system("cls");
system("color 02");//02中前一个0为背景色,黑色。后一个为前景色,绿色,但是这里没用,被FOREGROUND_替代了
WHITE;//白色
printf("==================================\n=");
BLUE;//蓝色
printf(" 欢迎您:%10s ",users[*user_index].user_name);
WHITE;//白色
printf("=\n==================================\n=");
YELLOW;//黄色
printf(" 1. 我的信息 ");
WHITE;//白色
WHITE;//白色
printf("=\n= ");
BLUE;//蓝色
printf("2. 查询图书 ");
WHITE;//白色
printf("=\n= ");
CYAN;//青色
printf("3. 我的借阅 ");
WHITE;//白色
printf("=\n= ");
YELLOW;//黄色
printf("4. 借阅图书 ");
WHITE;//白色
printf("=\n= ");
PINK;//粉色
printf("5. 归还图书 ");
WHITE;//白色
printf("=\n= ");
GREEN;//绿色
printf("6. 我的积分 ");
WHITE;//白色
printf("=\n=");
RED;//红色
printf(" 0. 退出系统 ");
WHITE;//白色
printf("=\n");
printf("==================================\n");
GRAY;//灰色
printf("请输入 : ");
GREEN;//绿色
scanf("%d", &input);
WHITE;//白色
switch (input)
{
case 1:
{if(userLetter(*(user_index))==1) {sys_user_id=0; return; system("pause");} }
break;
case 2:
queryBook();
break;
case 3:
myLend(*(user_index));
break;
case 4:
userLend(*(user_index));
break;
case 5:
userBack(*(user_index));
break;
case 6:
userIntegral(*(user_index));
break;
case 0:
{WHITE;//白色
sys_user_id=0;sys_user_index=0;return;}
}
system("pause");
}
}
// 登录密码
void inputPwd(char *pwd, int length){
char key;
int i = 0;
a : while(1) {
i = 0;
key = 0;
GREEN;//绿色
printf("请输入密码:");
while(1) {
key = getch();
// 退格键
if(key == '\b') {
if(i > 0) {
// ab \b 退格
printf("\b \b");
i--;
}
continue;
}
// 13 回车
else if (key == 13) {
if(i > 0) break;
else {
printf("\n");
goto a;
}
} else {
if(i < length) {
BLUE;//蓝色
printf("*");
pwd[i] = key;
} else {
continue;
}
}
i++;
}
pwd[i] = '\0';
printf("\n");
break;
}
}
// 登录
void login()
{
char user[20];
char pwd[20];
GREEN;
printf("请输入用户ID:");
BLUE;//蓝色
scanf("%s", user);
sys_user_id=atoi(user);//字符串转整型
sys_user_index=ID2Index(sys_user_id,0);//整型转索引
if(isalpha(user[0]))
{
if( strcmp(user,"admin")!=0 )
{
RED;
printf("用户ID不存在!\n");
WHITE;
return ;
}}
else if(isdigit(user[0]))
{
if(!isUserAvl(sys_user_index) || users[sys_user_index].user_id!=sys_user_id )
{
RED;
printf("用户ID不存在!\n");
WHITE;
return ;
}}
else {RED;printf("用户ID不存在!\n");WHITE;return;}
inputPwd(pwd, 20); //输入密码
//字符串判断,如果是管理员,则跳转到管理员界面
if (strcmp(user, "admin") == 0 && strcmp(pwd, "admin") == 0)
{
GREEN;
printf("登录成功!\n");
WHITE;
adminMenu();
}
else if(isdigit(user[0]))
{
if (strcmp(pwd, users[sys_user_index].user_password) == 0)
{ GREEN;
printf("登录成功!\n");
WHITE;
userMenu(&sys_user_index);
}
else
{ RED;
printf("密码错误!\n");
WHITE;
// login();
return ;
}
}
else
{ RED;
printf("登录失败!\n");
WHITE;
// login();
return ;
}
}
//储存用户信息文件
void saveUsers(){
//将User存入文件“user.txt”
FILE*file;//定义文件指针
file=fopen("users.txt","a+");//以追加模式(a)打开文件
//file为NULL 那么表示文件不存在,系统会创建该文件
//参数说明:1写入数据对象,2写入数据大小,3写入次数,4文件指针
fwrite(users,sizeof(users),1,file);
fclose(file);//关闭文件
}
//读取用户信息文件
void loadUsers(){//黑心商家赚钱的地方啊
system("color 14");//蓝屏
FILE*file;
file=fopen("users.txt","r");//以读模式(r)打开文件
if(file !=NULL){
//文件不为NULL,就读取文件
while(1)
{
fread(users,sizeof(users),1,file);
if(feof(file)) break;
}
}
else {
CONSOLE_CURSOR_INFO cursor_info = {1, 0};SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);//隐藏光标
printf(":-(\n您的系统遇到问题,需要重新启动,我们正在搜集问题\n");
Sleep(1000);
int i=0;
for( i=0;i<100;i++)
{
printf("%d%%",i);
Sleep(50);
printf("\b\b\b");
}
printf("检测到丢失users.txt,正在尝试自动修复...\n");
remove("users.txt");//删除文件
Sleep(1000);
printf("正在添加文件...\n");
Sleep(1000);
printf("添加成功,正在重新设置指针...\n");
file=fopen("users.txt","w");//以写模式(w)打开文件,这样做可以新建文件
Sleep(1000);
printf("成功!\n");
Sleep(500);//延时1秒,想搞快点得加钱
system("cls");//清屏
system("color Af");//绿屏
if(file!=NULL)
{printf("修复完成!请重新启动程序\n");
printf("系统将在3秒后关闭...\n");
Sleep(1000);printf("2秒后关闭...\n");
Sleep(1000);printf("1秒后关闭...\n");
}
else {
system("color 14");//红屏
printf(":-(\n修复失败!请手动检查或者联系我们\n");
printf("联系方式:\nQQ:848484848\nEmail:");
}
exit(ERROR_READ);
}
fclose(file);
}
//注册用户
void addUser()
{
int i;
char c;
// 查找结构体数组中的空闲位置
system("cls");
system("color 02");//02中前一个0为背景色,黑色。后一个为前景色,绿色,但是这里没用,被FOREGROUND_替代了
for (i = 0; i <= MAX_USERS_NUM; i++)
{
if (!users[i].user_id && i!=MAX_USERS_NUM) //如果用户id为空,说明此位置无用户
{
printf("请输入用户名:");
scanf("%s", users[i].user_name);
printf("请设置用户密码:");
scanf("%s", users[i].user_password);
users[i].user_id=ID2Index(i,1);//初始化用户id
users[i].integral=0;//初始化用户积分
users[i].lendBooksIsbn[0][0]='\0';//初始化用户借书isbn
users[i].lendBooksNum=0;//初始化用户借书数量
printf("添加用户成功,用户id为 ");
YELLOW;
printf("%5d\n", users[i].user_id);
WHITE;
printf("下次登陆请使用用户id登录\n");
saveUsers(); // 写入文件
// printf("按任意键返回主菜单\n");
c=getchar();//过滤掉换行符
// c=getch();//等待用户按下任意键
break;
}
if(i==MAX_USERS_NUM)//如果没有空闲位置,说明已经满了
break;
}
if(i==MAX_USERS_NUM)//如果没有空闲位置,说明已经满了
{
RED;
printf("添加失败,是否进入Recovery?(y/n)");
WHITE;
c=getch();
if(c=='y')
Rec();
}
return;
}
//管理员添加用户
void addUserAdm()
{
int i;
// char key;
GREEN;
// 查找结构体数组中的空闲位置
for (i = 0; i <= MAX_USERS_NUM; i++)
if (strlen(users[i].user_name) == 0) //如果用户id为空,说明此位置无用户
{
printf("请输入用户名:");
scanf("%s", users[i].user_name);
printf("请设置用户密码:");
scanf("%s", users[i].user_password);
users[i].user_id=ID2Index(i,1);//初始化用户id
printf("请设置积分:");
while(scanf("%d",&users[i].integral))
{
if(users[i].integral<0) printf("用户积分无法为负值,请重新输入:");
else break;
}
GREEN;
printf("请设置vip等级:");
while(scanf("%d",&users[i].vip))
{
RED;
if(users[i].vip<0||users[i].vip>TOP_VIP_GRADE) {
printf("VIP等级只能为0-%d级,请重新输入:",TOP_VIP_GRADE);
GREEN;
}
else break;
}
saveUsers(); // 写入文件
printf("添加用户成功,用户id为 ");
YELLOW;
printf("%5d\n", users[i].user_id);
WHITE;
break;
}
if (i == MAX_USERS_NUM){
RED;
printf("用户已满!");
GREEN;
}
else
printf("保存成功!");
}
//用户信息
int userLetter(const int user_index)
{
char key;
char pswd[20];
char pswd1[20];//用户密码
printf("%10s %10s %10s %10s\n","用户ID","用户名","用户积分","VIP状态");
GRAY;//灰色
printf("%10d %10s %10d %8d级",
users[user_index].user_id,
users[user_index].user_name,
users[user_index].integral,
users[user_index].vip);
printf("\n");
WHITE;//白色
printf("\n");
printf("修改密码:\t[1]\n");
printf("查看借阅信息:\t[2]\n");
printf("注销用户:\t[9]\n");
printf("退出:\t\t[0]\n");
GRAY;
printf("请选择:");
WHITE;
getchar();//过滤掉回车
scanf("%c", &key);
// key=getchar();
if(key=='1'){
printf("请输入旧密码:");
while(scanf("%s",pswd))
{
if(strcmp(pswd,users[user_index].user_password)==0)
{
printf("请输入新密码:");
inputPwd(pswd, 20);//输入密码
printf("请再次输入新密码:");
inputPwd(pswd1, 20);//输入密码
if(strcmp(pswd,pswd1)==0&&strcmp(pswd,users[user_index].user_password)!=0)
{
strcpy(users[user_index].user_password,pswd);
saveUsers();
printf("修改成功!\n");
break;//退出循环
}
else if(strcmp(pswd,pswd1)==0&&strcmp(pswd,users[user_index].user_password)==0)
{
YELLOW;
printf("新密码与旧密码相同,请重新输入!\n");
WHITE;
printf("请输入旧密码:");
}
else
{
YELLOW;
printf("两次输入密码不一致,请重新输入!\n");
WHITE;
printf("请输入旧密码:");
}
saveUsers();
GREEN;
printf("修改成功!\n");
WHITE;
}
else
{
RED;
printf("密码错误!请重新输入:\n旧密码:");
WHITE;
}
}
}
else if(key=='2') myLend(user_index);
else if(key=='9') {if(delUser(user_index)==1) {main();return 1;}else userLetter(user_index);}
else if(key=='0') return 0;
else {RED;printf("输入错误!正在退出...\n");WHITE;Sleep(1000);return 0;}
return 0;
}
//用户注销用户,只在登陆时使用
int delUser(int user_index){
char passwd[20];//验证用
char key;
RED;
if(users[user_index].lendBooksNum)//如果用户有借书
{
printf("您有图书未归还,请归还后重试!\n");
getchar();
return 0;
}
printf("你确定要注销你的账号吗?(Y/N)\n");
WHITE;
getchar();//过滤掉回车
scanf("%c",&key);
if(key=='Y'||key=='y'){
printf("请验证密码:");
// scanf("%d",&passwd);
inputPwd(passwd,20);
if(strcmp(passwd,users[user_index].user_password)==0)
{
users[user_index].user_id=0;
users[user_index].integral=0;
users[user_index].vip=0;
users[user_index].lendBooksNum=0;//清空用户借书数量
strcpy(users[user_index].user_name,"");
strcpy(users[user_index].user_password,"");
memset(&users[user_index],0,sizeof(struct Users));//清空用户信息
saveUsers();//保存
GREEN;
printf("注销成功!按任意键退出\n");
WHITE;
getchar();
return 1;
}
else{
RED;
printf("密码错误!\n");
WHITE;
return 0;
}
}
else{
YELLOW;
printf("操作被用户取消!\n");
WHITE;
}
return 0;
}
//管理员显示用户
void showUsers()
{
if(isUserEmpty())
{
YELLOW;
printf("用户列表为空!\n");
WHITE;
return;
}
int i;
printf("%10s %20s %10s %10s\n","用户ID","用户名","用户积分","VIP状态");
GRAY;//灰色
for(i=0;i<MAX_USERS_NUM;i++){
if(strlen(users[i].user_name)>0)//用户名不为空,说明用户存在
{
printf("%10d %20s %10d %10d级",
users[i].user_id,
users[i].user_name,
users[i].integral,
users[i].vip);
printf("\n");
}
}
WHITE;//白色
}
//修改信息
void modUserAdm()
{
if(isUserEmpty())
{
YELLOW;
printf("用户列表为空!\n");
WHITE;
return;
}
int id;
char key; //输入的按键
GRAY;//灰色
printf("是否列出用户列表(Y/N)?\n");
key=getch();
if(key=='y'||key=='Y') showUsers();
printf("请输入要修改的用户ID: ");
while(scanf("%d",&id))
{
id=ID2Index(id,0);//转换为索引
if(isUserAvl(id)) break;//用户存在,退出循环
else printf("用户不存在,请重新输入:");
}
if (strlen(users[id].user_name)>0)
{
WHITE;//白色
printf("查询成功,找到用户:\n");
GRAY;
printf("用户ID: %d\n",users[id].user_id);
printf("用户名: %s\n",users[id].user_name);
printf("用户积分: %d\n",users[id].integral);
printf("VIP等级: %d级\n",users[id].vip);
WHITE;//白色
YELLOW;//黄色
printf("是否开始修改?[Y]\n");
WHITE;
key = getch();
if (key != 'y' && key != 'Y') {
RED;//红色
printf("操作被用户取消! \n");
return ;
}
YELLOW;
//提示用户是否修改每个字段
printf("请确认是否要修改用户名(Y/N)?\n");
WHITE;
key = getch();
if (key == 'y' || key == 'Y') {
printf("请输入:");
scanf("%s", users[id].user_name);
printf("修改成功!\n");
}
YELLOW;
printf("请确认是否要修改密码(Y/N)?\n");
WHITE;
key = getch();
if (key == 'y' || key == 'Y') {
printf("请输入:");
scanf("%s", users[id].user_password);
printf("修改成功!\n");
}
YELLOW;
printf("请确认是否要修改积分(Y/N)?\n");
WHITE;
key = getch();
if (key == 'y' || key == 'Y') {
printf("请输入:");
while(scanf("%d", &users[id].integral))
{
if(users[id-1].integral<0){
RED;
printf("积分设定错误!请重新输入\n");
WHITE;
}
else
{
GREEN;
printf("修改成功!\n");
WHITE;
break;
}
}
}
YELLOW;
printf("请确认是否要修改VIP等级(Y/N)?\n");
WHITE;
key = getch();
if (key == 'y' || key == 'Y') {
printf("请输入(0-%d):",TOP_VIP_GRADE);
while(scanf("%d", &users[id].vip))
{
if(users[id-1].integral<0||users[id-1].vip>TOP_VIP_GRADE)