- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章C++版本简易Flappy bird由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
大一,上学期学完了C,写了几个控制台游戏 这学期自学C++,由于学校课程第七周才有C++ 。
边学边写了这个小游戏,SDL 图形库完成的图形绘画 时间匆忙,BUG也有,代码效率比较低 和原作品还是很大的差别, 源代码在附件游戏文件夹中 。
演示图 。
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
|
#include <stdlib.h>
#include<windows.h>
#include <time.h>
#include<conio.h>
#include <iostream>
#include <mmsystem.h>
#include "SDL\SDL_image.h"
#include "SDL\SDL_ttf.h"
#include "SDL\SDL.h"
using
namespace
std;
#pragma comment(lib, "winmm.lib")
#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")
int
iii=0;
int
score =0;
int
y=0;
int
posi[3][2]= {{640,-300},{940,-300},{1240,-300}};
int
i=0,n=3;
//n为管道对数
SDL_Color textColor_1 = { 37, 134, 108 };
//绿色
//SDL_Color textColor_2 = { 112, 112, 35 };
SDL_Color textColor_2 = { 255, 255, 255 };
//白色
SDL_Color textColor_3 = { 0, 88, 132 };
//白色
class
Event
{
public
:
SDL_Event event;
Uint8 *keystates;
Event()
{
keystates=SDL_GetKeyState( NULL );
}
};
Event thing;
class
Data
{
public
:
int
bird_y;
int
score;
int
posi[20][2];
SDL_Rect bird_1;
SDL_Rect bird_2;
SDL_Rect bg;
SDL_Rect welcome;
SDL_Rect pipe_up;
SDL_Rect pipe_down;
SDL_Rect bird_cls;
SDL_Rect foot;
SDL_Surface* load_imag(
char
*s)
{
SDL_Surface* temp;
temp=IMG_Load(s);
bg.x=0;
bg.y=0;
bg.w=640;
bg.h=480;
welcome.x=681;
welcome.y=0;
welcome.w=640;
welcome.h=480;
bird_1.x=17;
bird_1.y=508;
bird_1.w=52;
bird_1.h=34;
bird_2.x=461;
bird_2.y=531;
bird_2.w=52;
bird_2.h=33;
bird_cls.w=52;
bird_cls.h=33;
bird_cls.x=0;
bird_cls.y=0;
pipe_up.x=1361;
pipe_up.y=11;
pipe_up.w=103;
pipe_up.h=410;
pipe_down.x=1487;
pipe_down.y=14;
pipe_down.w=103;
pipe_down.h=443;
foot.x=0;
foot.y=404;
foot.w=640;
foot.h=80;
return
temp;
//SDL_DisplayFormat( temp );
}
TTF_Font* load_font()
{
SDL_Init( SDL_INIT_EVERYTHING );
TTF_Init();
return
TTF_OpenFont(
"main_1.dat"
, 36 );
}
};
Data data;
class
Pri
{
public
:
SDL_Surface* out;
//输出
SDL_Surface* main ;
//主窗口
TTF_Font *font;
SDL_Rect a;
//设置初始位置
SDL_Surface*bird;
SDL_Rect xy;
SDL_Surface*font_1;
SDL_Surface*font_2;
SDL_Surface*font_11;
SDL_Surface*font_22;
Pri()
{
TTF_Font *font = NULL;
init();
//初始化输出设备
}
int
init()
{
SDL_Init( SDL_INIT_EVERYTHING );
TTF_Init();
main= SDL_SetVideoMode( 640, 478, 32, SDL_SWSURFACE );
SDL_WM_SetCaption(
"Flappy bird"
,NULL);
//标题
font=data.load_font();
out=data.load_imag(
"main_2.dat"
);
y=150;
posi[0][0]=640;
posi[0][1]=-300;
posi[1][0]=940;
posi[1][1]=-300;
posi[2][0]=1240;
posi[2][1]=-300;
return
1;
}
int
pipe()
{
}
int
bir(
int
y)
//x=150
{
int
ii;
i+=1;
xy.x=150;
xy.y=y;
if
(i<14)
{
xy.x=150;
xy.y=y;
SDL_BlitSurface(out,&data.bg,main,NULL);
for
(ii=0;ii<n;ii++)
{
xy.x=posi[ii][0];
xy.y=posi[ii][1];
SDL_BlitSurface(out,&data.pipe_down,main,&xy);
xy.x=posi[ii][0];
xy.y=posi[ii][1]+600;
SDL_BlitSurface(out,&data.pipe_up,main,&xy);
}
xy.x=150;
xy.y=y;
SDL_BlitSurface(out,&data.bird_1,main,&xy);
xy.x=0;
xy.y=404;
SDL_BlitSurface(out,&data.foot,main,&xy);
}
else
{
xy.x=150;
xy.y=y;
SDL_BlitSurface(out,&data.bg,main,NULL);
for
(ii=0;ii<n;ii++)
{
xy.x=posi[ii][0];
xy.y=posi[ii][1];
SDL_BlitSurface(out,&data.pipe_down,main,&xy);
xy.x=posi[ii][0];
xy.y=posi[ii][1]+600;
SDL_BlitSurface(out,&data.pipe_up,main,&xy);
}
xy.x=150;
xy.y=y;
SDL_BlitSurface(out,&data.bird_2,main,&xy);
xy.x=0;
xy.y=404;
SDL_BlitSurface(out,&data.foot,main,&xy);
if
(i>28)i=0;
}
return
0;
}
int
bg()
{
SDL_BlitSurface(out,&data.bg,main,&xy);
return
0;
}
int
over()
{
int
x=0,y=0,i=0;
xy.x=250;
xy.y=150;
font_1=TTF_RenderText_Solid( font,
"Game over !"
, textColor_3);
SDL_BlitSurface( font_1 , NULL, main, &xy);
SDL_Flip(main);
xy.x=350;
xy.y=200;
font_1=TTF_RenderText_Solid( font,
"Retry game"
, textColor_1 );
font_11=TTF_RenderText_Solid( font,
"Retry game"
, textColor_2 );
SDL_BlitSurface( font_1 , NULL, main, &xy);
xy.x=350;
xy.y=280;
font_2=TTF_RenderText_Solid( font,
" Exit game"
, textColor_1 );
font_22=TTF_RenderText_Solid( font,
" Exit game"
, textColor_2 );
SDL_BlitSurface( font_2 , NULL, main, &xy);
/*
xy.x=10;
xy.y=440;
//野指针
SDL_BlitSurface( TTF_RenderText_Solid( font, "Esc:exit game Space:to jump hekun ", textColor_1 ) , NULL, main, &xy);
SDL_Flip( main ); //更新窗口
*/
while
(SDL_PollEvent( &thing.event ), 1)
{
i+=2;
Sleep(1);
if
( thing.keystates[ SDLK_ESCAPE] )
exit
(0);
if
( thing.event.type == SDL_QUIT )
// 点击了SDL关闭按钮
{
exit
(0);
}
if
((x>350&&x<540)&&(y<240)&&(y>200))
{
if
(thing. event.type == SDL_MOUSEBUTTONDOWN)
if
(thing.event.button.button== SDL_BUTTON_LEFT )
{
SDL_FreeSurface(font_1);
SDL_FreeSurface(font_11);
SDL_FreeSurface(font_22);
SDL_FreeSurface(font_2);
WinExec(
"Flappy bird.exe"
,NULL);
exit
(0);
return
11;
}
}
else
{
}
if
((x>350&&x<540)&&(y<320)&&(y>280))
//结束游戏
{
if
(thing. event.type == SDL_MOUSEBUTTONDOWN)
if
(thing.event.button.button== SDL_BUTTON_LEFT )
exit
(0);
}
if
(thing. event.type == SDL_MOUSEMOTION )
{
x=thing.event.motion.x;
y=thing.event.motion.y;
//获得鼠标坐标
if
((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<240)&&(thing.event.motion.y>200))
{
xy.x=350;
xy.y=200;
SDL_BlitSurface( font_11, NULL, main, &xy);
SDL_Flip(main);
}
else
{
xy.x=350;
xy.y=200;
SDL_BlitSurface( font_1 , NULL, main, &xy);
SDL_Flip(main);
}
if
((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<320)&&(thing.event.motion.y>280))
{
xy.x=350;
xy.y=280;
SDL_BlitSurface( font_22 , NULL, main, &xy);
SDL_Flip(main);
}
else
{
xy.x=350;
xy.y=280;
SDL_BlitSurface( font_2 , NULL, main, &xy);
SDL_Flip(main);
}
}
}
return
0;
}
int
welcome()
{
int
x=0,y=0,i=0;
SDL_BlitSurface(out,&data.welcome,main,NULL);
bird=out;
xy.x=350;
xy.y=200;
font_1=TTF_RenderText_Solid( font,
"Start game"
, textColor_1 );
font_11=TTF_RenderText_Solid( font,
"Start game"
, textColor_2 );
SDL_BlitSurface( font_1 , NULL, main, &xy);
xy.x=350;
xy.y=280;
font_2=TTF_RenderText_Solid( font,
" Exit game"
, textColor_1 );
font_22=TTF_RenderText_Solid( font,
" Exit game"
, textColor_2 );
SDL_BlitSurface( font_2 , NULL, main, &xy);
xy.x=10;
xy.y=440;
//野指针
SDL_BlitSurface( TTF_RenderText_Solid( font,
"Esc:exit game Space:to jump hekun "
, textColor_1 ) , NULL, main, &xy);
SDL_Flip( main );
//更新窗口
while
(SDL_PollEvent( &thing.event ), 1)
{
i+=2;
Sleep(1);
if
( thing.keystates[ SDLK_ESCAPE] )
exit
(0);
if
( thing.event.type == SDL_QUIT )
// 点击了SDL关闭按钮
{
exit
(0);
}
if
((x>350&&x<540)&&(y<240)&&(y>200))
{
if
(thing. event.type == SDL_MOUSEBUTTONDOWN)
if
(thing.event.button.button== SDL_BUTTON_LEFT )
{
SDL_FreeSurface(font_1);
SDL_FreeSurface(font_11);
SDL_FreeSurface(font_22);
SDL_FreeSurface(font_2);
return
0;
}
}
else
{
}
if
((x>350&&x<540)&&(y<320)&&(y>280))
//结束游戏
{
if
(thing. event.type == SDL_MOUSEBUTTONDOWN)
if
(thing.event.button.button== SDL_BUTTON_LEFT )
exit
(0);
}
if
(thing. event.type == SDL_MOUSEMOTION )
{
x=thing.event.motion.x;
y=thing.event.motion.y;
//获得鼠标坐标
if
((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<240)&&(thing.event.motion.y>200))
{
xy.x=350;
xy.y=200;
SDL_BlitSurface( font_11, NULL, main, &xy);
SDL_Flip(main);
}
else
{
xy.x=350;
xy.y=200;
SDL_BlitSurface( font_1 , NULL, main, &xy);
SDL_Flip(main);
}
if
((thing.event.motion.x>350&&thing.event .motion .x<540)&&(thing.event.motion.y<320)&&(thing.event.motion.y>280))
{
xy.x=350;
xy.y=280;
SDL_BlitSurface( font_22 , NULL, main, &xy);
SDL_Flip(main);
}
else
{
xy.x=350;
xy.y=280;
SDL_BlitSurface( font_2 , NULL, main, &xy);
SDL_Flip(main);
}
}
if
(i==400)
{
xy.x=150;
xy.y=250;
SDL_BlitSurface(bird,&data.bird_1,main,&xy);
SDL_Flip(main);
}
if
(i==800)
{
xy.x=150;
xy.y=250;
SDL_BlitSurface(bird,&data.bird_2,main,&xy);
i=0;
SDL_Flip(main);
}
}
return
0;
}
};
Pri pri;
int
game_judge()
{
int
i=0;
if
(y>370||y<-10)
{
if
(pri.over()==11)
return
12;
}
for
(i=0;i<3;i++)
{
if
(posi[i][0]<202 &&posi[i][0]>50)
{
if
(y<posi[i][1]+ 420 ||y>posi[i][1]+570)
{
if
(pri.over()==11)
return
12;}
}
}
return
0;
}
int
game_loop()
{ y=150,i=0;
int
ii=0,iii=0;
SDL_Surface *font;
pri.bg();
char
s[50];
Uint32 start = 0;
sprintf
(s,
" FPS:%d\t\t\t\t\t\t\t\tScore:%d"
,1000/(SDL_GetTicks()-start),score);
int
q=0;
while
(SDL_PollEvent( &thing.event ), 1)
{
start = SDL_GetTicks();
i++;
Sleep(1);
SDL_Flip(pri.main);
y+=4;
if
(y>430)y=100;
if
(thing.event.button.state==SDL_PRESSED)y-=20;
if
( thing.keystates[ SDLK_SPACE] )y-=20;
if
( thing.keystates[ SDLK_ESCAPE] )
exit
(0);
if
( thing.event.type == SDL_QUIT )
// 点击了SDL关闭按钮
{
exit
(0);
}
if
(game_judge()==12)
return
0;
pri.bir(y);
//显示 每秒循环的次数
ii++;
if
(ii>20)
{
sprintf
(s,
" FPS:%d\t\t\t\t\t\t\t\tScore:%d"
,1000/(SDL_GetTicks()-start)+
rand
()%5,score);
ii=0;
}
font=TTF_RenderText_Solid( pri.font, s, textColor_2 );
SDL_BlitSurface(font , NULL,pri. main, NULL);
SDL_Flip(pri.main);
SDL_FreeSurface(font);
posi[0][0]-=2;
posi[1][0]-=2;
posi[2][0]-=2;
if
(posi[0][0]<=(-110))
{posi[0][0]=posi[2][0]+300;posi[0][1]=-(
rand
()%180)-220;}
if
(posi[1][0]<=(-110))
{posi[1][0]=posi[0][0]+300;posi[1][1]=-(
rand
()%180)-220;}
if
(posi[2][0]<=(-110))
{posi[2][0]=posi[1][0]+300;posi[2][1]=-(
rand
()%180)-220;}
iii++;
if
(iii>50)
for
(iii=0;iii<3;iii++)
{
if
(posi[iii][0]<50);
score++;
iii=0;
break
;
}
}
return
0;
}
int
main(
int
argc,
char
* argv[])
{
while
(1)
{
pri.init();
//初始化输出设备
pri.welcome();
game_loop();
}
return
0;
}
|
以上所述就是本文的全部内容了,希望大家能够喜欢.
最后此篇关于C++版本简易Flappy bird的文章就讲到这里了,如果你想了解更多关于C++版本简易Flappy bird的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
无法使用 Hive 版本 1.1.0 HBase 版本 0.94.8 和 hadoop 版本 2.7.0 从 hive 创建 Hbase 表 hive (default)> CREATE TABLE
我试图为 electron app 创建可执行文件但面临这个问题 Unable to determine Electron version. Please specify an Electron ve
我正在尝试让自适应阈值在 python 绑定(bind)到 opencv 中工作(swig 一个 - 无法让 opencv 2.0 工作,因为我正在使用 beagleboard 因为交叉编译还没有工作
我一直在 linux 机器上使用 JMeter,在命令行下使用了一段时间。工作正常。 今天,我在 Windows 机器(新客户端等)上尝试了它,它确实可以工作,但在控制台窗口中输出有很大不同。 Lin
在我的编码环境中,我通常使用最新版本的 Java 和 Eclipse。当我编写源代码时,我不会注意我使用的 API 方法或类是否向后兼容旧版本的 Java 或 Eclipse。在 javadoc 中存
问题是关于版本的特定组合,但更普遍。 我刚刚从 Kubuntu 12.04 升级到 14.04。现在,当我想编译 CUDA 代码(使用 CUDA 6.5)时,我得到: #error -- unsupp
我目前正在对我的一些应用程序进行沙箱处理,看来我必须删除一些功能才能满足 Mac App Store 沙箱(和其他)规则。 显然用户不会因为失去功能而感到高兴,我担心他们不会指责苹果制定了愚蠢的规则,
我用 flash 和 js 版本创建了一个动画横幅。 是否可以检测低于版本 9 的 ie 版本,然后提供 Flash 横幅,否则提供 js 横幅。 最佳答案 您可以使用条件注释来检测 IE 版本
我有一个处理不同位置的数据库的应用程序,我想检查这些数据库是否使用 Firebird 2.5 或更高版本打开。我们最近从 Firebird 2.0 迁移到了 2.5,我们有很多数据库可以响应 sele
我正在开发一个应用程序,我使用托管在我的服务器上的 Java 和 Jersey 构建了后端部分。我在服务器上使用 Tomcat7 来调用 Web 服务。 我以前有一台安装了 Ubuntu 的计算机,我
我可以使用 GetVersionEx() 函数来获取 Windows 版本,但是这个函数将返回一个数字而不是一个字符串。但是没有问题,因为我可以将数字转换为字符串,例如: if (osvi.dwMaj
我已经在我的系统中安装了 Anaconda 2 & 3。 Anaconda 2 包含 python 2.7 & Anaconda 3 包含 python 3.6。 我需要使用命令提示符运行我的 pyt
我正在尝试构建一个 Android 项目,但发生了以下错误 Error:(10, 1) A problem occurred evaluating project ':app'. > Failed t
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 4 年前。 Improve this qu
在降级我的 GCC 之前,我想知道是否有办法确定我的机器中的哪些程序/框架或依赖项会中断,以及是否有更好的方法来执行 openpose 安装? (例如,在 CMake 中更改某些内容) 有没有办法在不
我已经在终端的代码sudo apt-get install Shadowsocks-qt5中安装了Shadowsocks-Qt5,然后我可以通过搜索找到启动图标,但是它当我点击图标时打不开。然后我尝试
在网络上找到的文档说,MLLP V2(第 2 版)是用于传输 HL7 版本 3 内容的所有消息传输协议(protocol)的要求。似乎 MLLP 第 2 版主要用于 HL7 第 3 版。 我们可以/应
我正在使用带有 selinium webdriver 的 Protractor 。我的chromeDriver版本是78.0.1,chrome版本是78.0.3904.97。两个版本都匹配,应该不会有
我正在按照教程设置 mysql 数据库并做一些事情。我无法找到数据库资源管理器。我读了很多,但在 Window->show View-> Dataxxx 或右侧上部选项卡中无法正常工作。 最佳答案 从
我已经在 KDE 桌面上安装了 Anaconda 2.0.1。当我运行 python 并看到所有已安装的模块时,我收到此消息“无法将不兼容的 Qt 库(版本 0x40801)与该库(版本 0x4080
我是一名优秀的程序员,十分优秀!