本文實例為大家分享了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
|
//////////////////////////////////////// //畫素材的x和y都是反的,因為x表示行,但是畫出來x表示列,y同 //////////////////////////////////////// #include <graphics.h> #include <fstream> #include <strstream> #include <iomanip> #include <cstdlib> #include <ctime> #pragma comment(lib, "Winmm.lib") using namespace std; /***************定義枚舉類型*****************/ enum color{blank, red, yellow, blue, green, white, orange, purple, shizijia, zhadan, qicai, alarm}; /***************定義全局變量***************/ const int MaxT = 12; // 時間上限 const int T = 10 * MaxT; // 時間速度 const int V = 300; // 停留時間 clock_t start, now; // 控制時間 color gem[9][8]; // 地圖 // IMAGE對象 IMAGE img[12], music_img[2], exit_img, jindutiao; int Score, Time; // 成績 時間 bool Flag, Music = true ; // 是否加載 音樂 /*******************函數聲明******************/ void load( void ); // 加載IMAGE對象 void Blank( void ); // 清空 bool soso( void ); // 搜索空格 bool baidu( void ); // 搜索解法 void New( void ); // 更新 void print( void ); // 輸出 bool judge( void ); // 判斷是否可以消除 void fall( void ); // 下落 void draw( void ); // 消除 bool quit( void ); // 是否重新開始 void play( void ); // 游戲過程 /********************定義函數****************/ void load( void ) { char c[20]; int i; // 加載IMAGE對象 for (i = 0; i < 12; i++) { ostrstream strout(c, 50); strout << "圖片\\" <<i << ".jpg" <<ends; loadimage(&img[i], c); } loadimage(&music_img[0], "圖片\\音樂關.jpg" ); loadimage(&music_img[1], "圖片\\音樂開.jpg" ); loadimage(&exit_img, "圖片\\退出.jpg" ); loadimage(&jindutiao, "圖片\\進度條.jpg" ); // 加載音樂 mciSendString( "open 背景音樂.mp3 alias mymusic" , NULL, 0, NULL); // 隨機種子 srand (unsigned( time (NULL))); // 打開文件 ifstream fin( "存檔.dat" ); if (!fin) throw -1; // 如果打開失敗則拋出異常 // 讀存檔 fin >>Flag >>Music; if (Flag) { HWND wnd = GetHWnd(); SetWindowText(wnd, "對對碰" ); if (MessageBox(wnd, "是否繼續上次游戲?" , "游戲開始" , MB_YESNO | MB_ICONQUESTION) == IDYES) { fin >>Score >>Time; for (i = 0; i < 9; i++) for ( int j = 0; j < 8; j++) { int t; fin >>t; gem[i][j] = color(t); } } else Flag = false ; } fin.close(); } void Blank( void ) { for ( int i = 1; i < 9; i++) for ( int j = 0; j < 8; j++) gem[i][j] = blank; print(); fall(); } bool soso( void ) { for ( int i = 1; i < 9; i++) for ( int j = 0; j < 8; j++) if (gem[i][j] == blank) return true ; return false ; } bool baidu( void ) { int i, j; color t; bool flag = false ; // 如果有一個道具則返回真 for (i = 1; i < 9; i++) for (j = 0; j < 8; j++) if (gem[i][j] >= shizijia) return true ; // 搜索解法 for (i = 1; i < 9; i++) for (j = 0; j < 7; j++) { t = gem[i][j]; gem[i][j] = gem[i][j + 1]; gem[i][j + 1] = t; if (judge()) flag = true ; t = gem[i][j]; gem[i][j] = gem[i][j + 1]; gem[i][j + 1] = t; if (flag) return true ; } for (i = 1; i < 7; i++) for (j = 0; j < 8; j++) { t = gem[i][j]; gem[i][j] = gem[i + 1][j]; gem[i + 1][j] = t; if (judge()) flag = true ; t = gem[i][j]; gem[i][j] = gem[i + 1][j]; gem[i + 1][j] = t; if (flag) return true ; } return false ; } void New( void ) { static int old_score = -1, old_time = T; bool flag = false ; if (Score != old_score) // 更新分數 { if (Score > 999999999) { if (MessageBox(GetHWnd(), "恭喜你達到了最高分!\n是否重新開始?" , "游戲結束" , MB_YESNO | MB_ICONQUESTION) == IDYES) Score = 0; else exit (0); } char s[15]; ostrstream strout(s, 15); strout << '$' <<setiosflags(ios::right) <<setw(9) <<Score <<ends; setfont(30, 0, "微軟雅黑" ); setcolor(RGB(255, 128, 0)); outtextxy(480, 60, s); old_score = Score; flag = true ; } if (Time != old_time) // 更新時間 { if (Time > old_time) putimage(540, 140, &jindutiao); setcolor(BLACK); for ( int i = 0; i < T - Time; i++) { line(540, 140 + 2 * i, 580, 140 + 2 * i); line(540, 140 + 2 * i + 1, 580, 140 + 2 * i + 1); } old_time = Time; flag = true ; } if (flag) // 寫存檔 { ofstream fout( "存檔.dat" ); fout <<Flag << '\t' <<Music << '\t' <<Score << '\t' <<Time <<endl; for ( int i = 0; i < 9; i++) { for ( int j = 0; j < 8; j++) fout << int (gem[i][j]) << '\t' ; fout <<endl; } fout.close(); } } void print( void ) { int i, j; for (i = 1; i < 9; i++) for (j = 0; j < 8; j++) putimage(60 * j, 60 * (i - 1), &img[ int (gem[i][j])]); New(); } bool judge( void ) { int i, j; for (i = 1; i < 9; i++) for (j = 0; j < 6; j++) if (gem[i][j] == gem[i][j + 1] && gem[i][j] == gem[i][j + 2]) return true ; for (i = 1; i < 7; i++) for (j = 0; j < 8; j++) if (gem[i][j] == gem[i + 1][j] && gem[i][j] == gem[i + 2][j]) return true ; return false ; } void fall( void ) { { int i, j, a[8] = {0}; bool sign = false ; for (j = 0; j < 8; j++) for (i = 8; i >= 1; i--) if (gem[i][j] == blank) { a[j] = i; sign = true ; break ; } if (sign == false ) return ; IMAGE im[8]; for (j = 0; j < 8; j++) if (a[j] > 1) getimage(&im[j], 60 * j, 0, 60, 60 * (a[j] - 1)); for (i = 0; i < 60 ; i += 2) for (j = 0; j < 8; j++) if (a[j] > 0) { if (a[j] > 1) putimage(60 * j, i + 2, &im[j]); putimage(60 * j, i + 2 - 60, &img[ int (gem[0][j])]); Sleep(1); } for (j = 0; j < 8; j++) if (a[j] > 0) { for (i = a[j]; i > 0; i--) gem[i][j] = gem[i - 1][j]; if ( rand () % 50 == 0) gem[0][j] = color( rand () % 4 + 8); else gem[0][j] = color( rand () % 7 + 1); } } // 加對大括號使遞歸時撤銷內存空間 if (soso()) fall(); if (judge()) draw(); } void draw( void ) { { int i, j; bool a[9][8] = { false }; for (i = 1; i < 9; i++) for (j = 0; j < 6; j++) if (gem[i][j] == gem[i][j + 1] && gem[i][j] == gem[i][j + 2]) a[i][j] = a[i][j + 1] = a[i][j + 2] = true ; for (i = 1; i < 7; i++) for (j = 0; j < 8; j++) if (gem[i][j] == gem[i + 1][j] && gem[i][j] == gem[i + 2][j]) a[i][j] = a[i + 1][j] = a[i + 2][j] = true ; for (i = 1; i < 9; i++) for (j = 0; j < 8; j++) if (a[i][j]) { gem[i][j] = blank; Score += 10; } Sleep(V); Time += T / MaxT; if (Time > T) Time = T; print(); } // 加對大括號使遞歸時撤銷內存空間 fall(); } bool quit( void ) { char str[50]; ostrstream strout(str, 50); strout << "得分:" <<Score << "\n重新開始嗎?" <<ends; if (MessageBox(GetHWnd(), str, "游戲結束" , MB_YESNO | MB_ICONQUESTION) == IDYES) return true ; return false ; } void play( void ) { MOUSEMSG m; int i, j, x, y, x1, y1; char fx; color t; bool sign; if (Flag == false ) { do { for (i = 0; i < 9; i++) for (j = 0; j < 8; j++) gem[i][j] = color( rand () % 7 + 1); } while (judge() || !baidu()); Score = 0; Time = T; } setbkcolor(BLACK); cleardevice(); setfont(30, 0, "微軟雅黑" ); setcolor(RGB(255, 128, 0)); outtextxy(480, 60, "$ 0" ); putimage(480, 400, &music_img[ int (Music)]); putimage(560, 400, &exit_img); putimage(540, 140, &jindutiao); print(); now = start = clock (); Flag = true ; do { if (soso()) fall(); fx = 0; sign = true ; while ( true ) { if (MouseHit()) { m = GetMouseMsg(); x1 = m.x; y1 = m.y; if (m.uMsg == WM_LBUTTONDOWN) { if (x1 < 480) { x = y1 / 60 + 1; y = x1 / 60; switch (gem[x][y]) { case shizijia: for (i = 1; i < 9; i++) { gem[i][y] = blank; Score += 10; } for (j = 0; j < 8; j++) { gem[x][j] = blank; Score += 10; } Score -= 20; Time += T / MaxT; if (Time > T) Time = T; print(); Sleep(V); fall(); if (!baidu()) Blank(); break ; case zhadan: if (x > 1) { gem[x - 1][y] = blank; Score += 10; if (y > 0) { gem[x - 1][y - 1] =blank; Score += 10; } } if (y > 0) { gem[x][y - 1] = blank; if (x < 8) { gem[x + 1][y - 1] =blank; Score += 10; } } if (x < 8) { gem[x + 1][y] = blank; if (y < 7) { gem[x + 1][y + 1] =blank; Score += 10; } } if (y < 7) { gem[x][y + 1] = blank; if (x > 1) { gem[x - 1][y + 1] =blank; Score += 10; } } gem[x][y] = blank; Time += T / MaxT; if (Time > T) Time = T; print(); Sleep(V); fall(); if (!baidu()) Blank(); break ; case qicai: t = color( rand () % 7 + 1); putimage(60 * y, 60 * (x - 1), &img[ int (t)]); Sleep(V); for (i = 1; i < 9; i++) for (j = 0; j < 8; j++) if (gem[i][j] == t) { gem[i][j] = blank; putimage(60 * j, 60 * (i - 1), &img[0]); Score += 10; } gem[x][y] = blank; Time += T / MaxT; if (Time > T) Time = T; print(); fall(); if (!baidu()) Blank(); break ; case alarm: Time = T; gem[x][y] = blank; print(); fall(); if (!baidu()) Blank(); break ; } break ; } else if (x1 > 480 && x1 < 560 && y1 > 400 && y1 < 480) { if (Music) mciSendString( "stop mymusic" , NULL, 0, NULL); else mciSendString( "play mymusic from 0 repeat" , NULL, 0, NULL); Music = !Music; putimage(480, 400, &music_img[ int (Music)]); } else if (x1 > 560 && x1 < 640 && y1 > 400 && y1 < 480) exit (0); } } now = clock (); if (now - start >= CLOCKS_PER_SEC * MaxT / T) { start = now; Time--; New(); if (Time <= 0) return ; } } while (m.mkLButton && m.y < 480) { m = GetMouseMsg(); x = m.x; y = m.y; if (x - x1 > 30 || x1 - x > 30 || y - y1 > 30 || y1 - y > 30) { sign = false ; break ; } now = clock (); if (now - start >= CLOCKS_PER_SEC * MaxT / T) { start = now; Time--; New(); if (Time <= 0) return ; } } if (sign) { putimage(x1 - x1 % 60, y1 - y1 % 60, &img[ int (gem[y1 / 60 + 1][x1 / 60])], SRCPAINT); continue ; } if (y1 - y > 30 && y1 / 60 > 0) fx = 'u' ; if (y - y1 > 30 && y1 / 60 < 7) fx = 'd' ; if (x1 - x > 30 && x1 / 60 > 0) fx = 'l' ; if (x - x1 > 30 && x1 / 60 < 7) fx = 'r' ; x = y1 / 60 + 1; y = x1 / 60; x1 = y1 = 0; switch (fx) { case 'u' :x1 = -1; break ; case 'd' :x1 = 1; break ; case 'l' :y1 = -1; break ; case 'r' :y1 = 1; break ; case '\0' : continue ; } for (i = 0; i < 60;) { putimage(60 * y, 60 * (x - 1), &img[0]); putimage(60 * y, 60 * (x - 1), &img[0]); i += 1; putimage(60 * (y + y1) - i * y1, 60 * (x - 1 + x1) - i * x1, &img[ int (gem[x + x1][y + y1])]); putimage(60 * y + i * y1, 60 * (x - 1) + i * x1, &img[ int (gem[x][y])]); Sleep(2); } t = gem[x][y]; gem[x][y] = gem[x + x1][y + y1]; gem[x + x1][y + y1] = t; if (judge()) { draw(); if (!baidu()) Blank(); } else { for (i = 0; i < 60;) { putimage(60 * y, 60 * (x - 1), &img[0]); putimage(60 * y, 60 * (x - 1), &img[0]); i += 1; putimage(60 * (y + y1) - i * y1, 60 * (x - 1 + x1) - i * x1, &img[ int (gem[x + x1][y + y1])]); putimage(60 * y + i * y1, 60 * (x - 1) + i * x1, &img[ int (gem[x][y])]); Sleep(2); } t = gem[x][y]; gem[x][y] = gem[x + x1][y + y1]; gem[x + x1][y + y1] = t; } now = clock (); if (now - start >= CLOCKS_PER_SEC * MaxT / T) { start = now; Time--; New(); if (Time <= 0) return ; } } while ( true ); } /****************主函數******************/ int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { try { // 加載素材 load(); } catch ( int ) { ofstream fout( "存檔.dat" ); fout << false << '\t' << true <<endl; } // 打開界面 initgraph(640, 480); // 游戲過程 do { if (Music) mciSendString( "play mymusic from 0 repeat" , NULL, 0, NULL); play(); if (Music) mciSendString( "stop mymusic" , NULL, 0, NULL); Flag = false ; } while (quit()); // 關閉游戲 ofstream fout( "存檔.dat" ); fout << false << '\t' <<Music <<endl; fout.close(); mciSendString( "close mymusic" , NULL, 0, NULL); closegraph(); return 0; } /**************THE END****************/ |
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。