- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章C++实现俄罗斯方块(windows API)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文分享的这些俄罗斯方块代码是我最近放假在家里自己写的,虽然以前有过看别人写的代码,但是那个游戏代码好像不是很全面,因为无法实现全部的方块和实现随机的产生任意方向的方块,现在也基本上是忘光了当时的代码,下面的这些代码是我最近写的,没有参考其他人的代码,真正写俄罗斯方块起来感觉真的是挺难的,关键是在于方块的旋转。当然下面的代码仅仅是一个框架,只能够实现大致上的功能,还不全面,贴出来和大家交流学习.
编译器是code::block + MinGW ,感觉CB这个IDE真的是太强大,太棒了,下面的代码直接复制到VC里面运行应该不会出错,有个问题一直不知道怎么解决,就是更新客户区时窗口总是闪不知道有哪位达人能指点我一下。有的都是windows API写的,对windows编程还不是很懂,望大家多多留言,指点一下本人.
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
|
#include <windows.h>
#include <iostream>
#include <cstdlib>
#include <ctime>
using
namespace
std;
#define CellWidth 20
#define MAP_WIDTH 12
#define MAP_HEIGHT 18
#define ID_TIMER 1
class
map_floor;
class
Block;
LRESULT
CALLBACK WindowProcedure (
HWND
,
UINT
,
WPARAM
,
LPARAM
);
/* Make the class name into a global variable */
char
szClassName[ ] =
"CodeBlocksWindowsApp"
;
int
WINAPI WinMain (
HINSTANCE
hThisInstance,
HINSTANCE
hPrevInstance,
LPSTR
lpszArgument,
int
nCmdShow)
{
HWND
hwnd;
/* This is the handle for our window */
MSG messages;
/* Here messages to the application are saved */
WNDCLASSEX wincl;
/* Data structure for the windowclass */
/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure;
/* This function is called by windows */
wincl.style = CS_DBLCLKS|CS_HREDRAW | CS_VREDRAW;
/* Catch double-clicks */
wincl.cbSize =
sizeof
(WNDCLASSEX);
/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
wincl.lpszMenuName = NULL;
/* No menu */
wincl.cbClsExtra = 0;
/* No extra bytes after the window class */
wincl.cbWndExtra = 0;
/* structure or the window instance */
/* Use Windows's default colour as the background of the window */
wincl.hbrBackground =(
HBRUSH
) GetStockObject(WHITE_BRUSH);
//COLOR_BACKGROUND;
/* Register the window class, and if it fails quit the program */
if
(!RegisterClassEx (&wincl))
return
0;
/* The class is registered, let's create the program*/
hwnd = CreateWindowEx (
0,
/* Extended possibilites for variation */
szClassName,
/* Classname */
"Code::Blocks Template Windows App"
,
/* Title Text */
WS_OVERLAPPEDWINDOW,
/* default window */
CW_USEDEFAULT,
/* Windows decides the position */
CW_USEDEFAULT,
/* where the window ends up on the screen */
CW_USEDEFAULT,
/* The programs width */
CW_USEDEFAULT,
/* and height in pixels */
NULL,
/* The window is a child-window to desktop */
NULL,
/* No menu */
hThisInstance,
/* Program Instance handler */
NULL
/* No Window Creation data */
);
/* Make the window visible on the screen */
ShowWindow (hwnd, nCmdShow);
/* Run the message loop. It will run until GetMessage() returns 0 */
while
(GetMessage (&messages, NULL, 0, 0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&messages);
/* Send message to WindowProcedure */
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage() gave */
return
messages.wParam;
}
enum
{e_LINE,e_CORNER,e_STAIR,e_TANCK,e_TIAN};
const
int
TOTAL_BLOCK_STYLE = 5;
//方块类型有4种
class
Block
{
public
:
Block(
int
x = 100,
int
y = 100);
Block(
const
Block & rh)
//复制构造函数,可能没什么用,但是还是定义它吧
{
this
->m_style = rh.m_style;
this
->m_direct = rh.m_direct;
for
(
int
i = 0 ; i < 4 ; i ++)
this
->m_block[i] = rh.m_block[i];
}
Block & operator = (
const
Block& rh)
//重载=号,实现方块的赋值
{
this
->m_style = rh.m_style;
this
->m_direct = rh.m_direct;
for
(
int
i = 0 ; i < 4 ; i ++)
this
->m_block[i] = rh.m_block[i];
return
*
this
;
}
~Block(){}
int
create_block(
int
x = 100 ,
int
y = 100);
//显示在游戏区内移动的方块
int
show_block(
HDC
hdc,
const
POINT& GameLeftTop);
//显示将要出现的方块,即游戏区左边的方块
int
show_next_block(
HDC
hdc);
//旋转,该函数比较难实现,代码量也比较大,以后有时间在慢慢优化,关于解析看定义处
int
rotate();
//产生随机方块
int
random_block();
//下面为方块移动的成员函数
int
get_block_height(){
return
m_block[1].y;}
int
move_down(
const
RECT& GameClient);
int
move_left(
const
RECT& GameClient);
int
move_right(
const
RECT& GameClient);
int
move_up(
const
RECT& GameClient);
int
move_to(
int
x ,
int
y);
//检测方块是否在游戏区内
// int check_block(const map_floor& map, const RECT& GameClent);
int
check_block(
const
map_floor& map,
const
POINT& LeftTopScrCdnt);
int
print_to_map(map_floor& map ,
const
POINT& LeftTopScrCdnt);
private
:
int
m_style;
//方块的风格样式,具体看定义的枚举变量
int
m_direct;
//方块的方向,是对m_style的具体数据
POINT m_block[4];
//下标为1的方块是中心坐标,旋转都是围绕着该方块进行,这样可以利于旋转和逻辑清晰
};
class
map_floor
{
public
:
map_floor()
{
ZeroMemory(m_block_bar,
sizeof
(
int
)*12*18);
}
~map_floor(){}
void
show_block_bar(
HDC
hdc ,
const
POINT& LeftTopScrCdnt)
{
for
(
int
i = 0 ; i < MAP_HEIGHT ; ++ i)
{
for
(
int
j = 0 ; j < MAP_WIDTH ; ++ j)
{
if
(m_block_bar[i][j])
{
Rectangle(hdc,LeftTopScrCdnt.x + j*CellWidth , LeftTopScrCdnt.y + i*CellWidth,
LeftTopScrCdnt.x + (j+1)*CellWidth , LeftTopScrCdnt.y + (i+1)*CellWidth);
}
}
}
}
friend
class
Block;
protected
:
private
:
int
m_block_bar[MAP_HEIGHT][MAP_WIDTH];
//游戏区的地板,用18*12的二维数组表示
};
Block::Block(
int
x ,
int
y)
{
// ZeroMemory(m_block_bar,sizeof(int )*12*18);
srand
( (unsigned)
time
( NULL ) );
//初始化随机数,用于产生方块
// POINT pt = {100,100};
create_block(x,y);
}
int
Block::random_block()
{
m_style =
rand
()%TOTAL_BLOCK_STYLE;
// m_style = e_CORNER; //测试之用
// m_style = e_LINE; //测试之用
if
(m_style == e_STAIR || m_style == e_TANCK)
m_direct =
rand
()%4;
else
if
(m_style == e_LINE)
m_direct =
rand
()%2;
else
if
(m_style == e_CORNER)
m_direct =
rand
()%8;
else
if
(m_style == e_TIAN)
m_direct = 0;
m_direct = 1;
}
int
Block::check_block(
const
map_floor& map,
const
POINT& LeftTopScrCdnt)
{
int
x , y ;
//x , y 为方块相对于地图的坐标,左上角为(0,0)
for
(
int
i = 0 ; i < 4 ; i ++)
{
x = (m_block[i].x - LeftTopScrCdnt.x)/CellWidth;
y = (m_block[i].y - LeftTopScrCdnt.y)/CellWidth;
if
(x < 0 || x >= MAP_WIDTH || y >= MAP_HEIGHT)
//不用检测y < 0 的情况
return
0;
if
(y < 0)
continue
;
if
(map.m_block_bar[y][x])
return
0;
}
return
1;
}
int
Block::move_down(
const
RECT& GameClient)
//下移,由计时器消息调用
{
int
i;
// for (i = 0 ; i < 4 ; i ++ )
// {
// if(m_block[i].y == GameClient.bottom - CellWidth)
// return 0;
// }
for
(i = 0; i < 4 ;i ++ )
{
m_block[i].y += CellWidth;
}
return
1;
}
int
Block::move_up(
const
RECT& GameClient)
{
move_to(m_block[1].x,m_block[1].y - CellWidth);
return
1;
}
int
Block::move_left(
const
RECT& GameClient)
{
move_to(m_block[1].x - CellWidth,m_block[1].y);
return
1;
}
int
Block::move_right(
const
RECT& GameClient)
{
move_to(m_block[1].x + CellWidth , m_block[1].y);
return
1;
}
int
Block::create_block(
int
x ,
int
y)
{
m_block[1].x = x;
m_block[1].y = y;
random_block();
rotate();
return
1;
}
int
Block::move_to(
int
x ,
int
y)
{
int
Vx = x - m_block[1].x;
int
Vy = y - m_block[1].y;
for
(
int
i = 0 ; i < 4 ; i ++)
{
m_block[i].x += Vx;
m_block[i].y += Vy;
}
}
int
Block::print_to_map(map_floor& map ,
const
POINT& LeftTopScrCdnt)
{
int
x , y;
int
i , j;
for
(i = 0 ; i < 4 ; i ++ )
{
x = (m_block[i].x - LeftTopScrCdnt.x)/CellWidth;
y = (m_block[i].y - LeftTopScrCdnt.y)/CellWidth;
if
(x<0 || x >= MAP_WIDTH || y <0 || y >= MAP_HEIGHT)
//为保安全 ,测试之用,完成后将被注释掉
return
0;
map.m_block_bar[y][x] = 1 ;
for
(j = 0 ; j < MAP_WIDTH ; j ++)
{
if
(map.m_block_bar[y][j] != 1)
break
;
}
if
(MAP_WIDTH == j)
{
for
(j = 0 ; j < MAP_WIDTH ; j ++)
{
map.m_block_bar[y][j] = 5;
//数字5代表要消掉的行
}
}
}
int
idx;
for
(i = 0 ; i < MAP_WIDTH ; i ++)
{
for
(idx = j = MAP_HEIGHT - 1 ; j >= 0 ; j --)
{
if
(map.m_block_bar[j][i] != 5)
{
map.m_block_bar[idx--][i] = map.m_block_bar[j][i];
}
}
while
(idx >= 0)
{
map.m_block_bar[idx--][i] = 0;
}
}
return
1;
}
//下面该函数功能是实现方块旋转,可以说是整个【俄罗斯方块】的难点所在,也是其核心部分
//方块用以数组block【4】表示,其余3个方格都将围绕block【1】旋转,方块由于有不对称方块
//存在,我原本是要分7种,但是后面代码量太大了,所以我将方块根据样式归为了四种,分别是:
//
//e_LINE 线形 就是一条线的那个,这个是对称的方块,只需分两个方向分别为横向和纵向,方向
// 用m_direct保持,其他的方块一样
//
//e_TANCK 坦克形 这个是方块是对称的,分四种方向,根据m_direct对4进行求余的方法可以大大缩减
// 代码量,对于下面两种方块也是利用了求余的方式化简许多,才使得代码不会那么冗余,
// 这是后面我才想到的方法。
//
//e_STAIR 楼梯形 这个方块相对前面两种来说有点难度,主要是因为它不是对称的,但是相对下面的这种
// 来说比较简单,原本我没用对m_direct求余的方法时,我将它分为了e_STAIR_BACK和e_STAIR_FRONT
// 两类来讨论的,后面发现代码可以缩减才将其归为一类只要记住block【0】和block【1】的位置不会
// 变化,变化的是block【2】和block【3】,block【2】相对block【1】上移或下移,x坐标与block【1】
// 相同,block【3】.y一直在block【1】下面一行,相对其左右变化
//
//e_CORNER 角形 这个方块个人觉得是最难旋转的方块,与上面一种异样,原本我将它分为e_CORNER_FRONT , e_CORNER_BACK
// 两类,每类有四个方向的变化,后来根据求余可以将同一个方向的变化变为一种,只是block【3】号方块要
// 根据m_direct方向来进行调整
int
Block::rotate()
{
switch
(m_style)
{
case
e_LINE:
{
switch
(m_direct)
{
case
0:
//横向转为纵向
{
for
(
int
i = 0 ; i < 4 ; i ++)
{
m_block[i].x = m_block[1].x;
m_block[i].y = m_block[1].y + (1-i)*CellWidth;
}
m_direct = 1;
}
break
;
case
1:
//纵向转为横向
{
for
(
int
i = 0 ; i < 4 ; i ++)
{
m_block[i].y = m_block[1].y;
m_block[i].x = m_block[1].x + (1-i)*CellWidth;
}
m_direct = 0;
}
break
;
}
}
break
;
//下面为楼梯风格的方块,由于其不是对称的分类为正反两种,正反种风格各有两种变化,
//m_direct% == 0是正反两面的同种变化
case
e_STAIR:
{
int
flag;
flag = m_direct < 2 ? 1 : -1;
m_block[0].x = m_block[1].x + flag*CellWidth;
m_block[0].y = m_block[1].y;
m_block[2].x = m_block[1].x;
m_block[3].y = m_block[1].y + CellWidth;
if
(m_direct%2 == 0)
{
m_block[2].y = m_block[1].y - CellWidth;
m_block[3].x = m_block[1].x + flag*CellWidth;
m_direct++;
}
else
{
m_block[2].y = m_block[1].y + CellWidth;
m_block[3].x = m_block[1].x - flag*CellWidth;
if
(m_direct < 2) m_direct = 0;
else
m_direct = 2;
}
}
break
;
//角形方块,与楼梯形方块一样非对称,有正反俩个种,每种有四种变化,
//下面根据m_direct%4的值将这些变化归类解决,对于正,反面对应的相同
//变化的方向,只有block【3】方格位置不一样,可以看我画的图对比即可了解
case
e_CORNER:
{
switch
(m_direct%4)
{
case
0:
{
m_block[0].x = m_block[1].x+CellWidth;
m_block[0].y = m_block[2].y = m_block[1].y;
m_block[2].x = m_block[1].x-CellWidth;
m_block[3].x = m_block[1].x-CellWidth;
if
(m_direct>=4) m_block[3].y = m_block[1].y-CellWidth;
else
m_block[3].y = m_block[1].y+CellWidth;
m_direct ++;
}
break
;
case
1:
{
m_block[0].x = m_block[2].x = m_block[1].x;
m_block[0].y = m_block[1].y+CellWidth;
m_block[2].y = m_block[1].y-CellWidth;
if
(m_direct>=4) m_block[3].x = m_block[1].x+CellWidth;
else
m_block[3].x = m_block[1].x-CellWidth;
m_block[3].y = m_block[1].y-CellWidth;
m_direct ++;
}
break
;
case
2:
{
m_block[0].x = m_block[1].x-CellWidth;
m_block[0].y = m_block[2].y = m_block[1].y;
m_block[2].x = m_block[1].x+CellWidth;
m_block[3].x = m_block[1].x+CellWidth;
if
(m_direct>=4) m_block[3].y = m_block[1].y+CellWidth;
else
m_block[3].y = m_block[1].y-CellWidth;
m_direct ++;
}
break
;
case
3:
{
m_block[0].x = m_block[2].x = m_block[1].x;
m_block[0].y = m_block[1].y-CellWidth;
m_block[2].y = m_block[1].y+CellWidth;
if
(m_direct>=4) { m_block[3].x = m_block[1].x-CellWidth; m_direct = 4;}
else
{ m_block[3].x = m_block[1].x+CellWidth; m_direct = 0;}
m_block[3].y = m_block[1].y+CellWidth;
}
break
;
default
:
break
;
}
}
break
;
case
e_TANCK:
//坦克形方块,与线形方块一样是对称的,分四种变化
{
switch
(m_direct%2)
{
case
0:
{
m_block[0].x = m_block[2].x = m_block[1].x;
m_block[0].y = m_block[1].y - CellWidth;
m_block[2].y = m_block[1].y + CellWidth;
int
flag = m_direct == 0 ? 1 : -1;
m_block[3].x = m_block[1].x + flag*CellWidth;
m_block[3].y = m_block[1].y;
m_direct++;
}
break
;
case
1:
{
m_block[0].y = m_block[2].y = m_block[1].y;
m_block[0].x = m_block[1].x - CellWidth;
m_block[2].x = m_block[1].x + CellWidth;
m_block[3].x = m_block[1].x;
int
flag = m_direct == 3 ? -1:1;
m_block[3].y = m_block[1].y + flag*CellWidth;
if
(m_direct == 3) m_direct = 0;
else
m_direct++;
}
break
;
default
:
break
;
}
}
break
;
case
e_TIAN:
{
m_block[0].y = m_block[1].y;
m_block[0].x = m_block[1].x + CellWidth;
m_block[2].x = m_block[1].x;
m_block[2].y = m_block[1].y + CellWidth;
m_block[3].x = m_block[1].x + CellWidth;
m_block[3].y = m_block[1].y + CellWidth;
}
break
;
default
:
break
;
}
return
0;
}
int
Block::show_block(
HDC
hdc,
const
POINT& GameLeftTop)
{
for
(
int
i = 0 ; i < 4 ; i ++ )
{
if
(m_block[i].y >= GameLeftTop.y)
Rectangle(hdc,m_block[i].x,m_block[i].y,m_block[i].
x+CellWidth,m_block[i].y+CellWidth);
if
(i==0)
//测试所用,完成后将会被注释掉
{MoveToEx(hdc,m_block[i].x,m_block[i].y,NULL);
LineTo(hdc,m_block[i].x+CellWidth,m_block[i].y+CellWidth);}
}
return
1;
}
int
Block::show_next_block(
HDC
hdc)
{
for
(
int
i = 0 ; i < 4 ; i ++ )
{
Rectangle(hdc,m_block[i].x,m_block[i].y,m_block[i].
x+CellWidth,m_block[i].y+CellWidth);
}
return
1;
}
Block block , next_block , try_block;
map_floor map;
int
d = 0;
LRESULT
CALLBACK WindowProcedure (
HWND
hwnd,
UINT
message,
WPARAM
wParam,
LPARAM
lParam)
{
HDC
hdc ;
PAINTSTRUCT ps ;
//游戏客户区
static
RECT GameClient;
//一个方格的像素为CellWidth = 20 游戏区宽 12 个方格 高 18 个方格
const
int
Width = 240 ,Height = 360;
static
POINT LeftTopScrCdnt;
//游戏区得左上角坐标
switch
(message)
{
case
WM_CREATE:
SetTimer(hwnd,ID_TIMER,500,NULL);
return
0 ;
case
WM_SIZE:
GetClientRect(hwnd,&GameClient);
LeftTopScrCdnt.x = (GameClient.right-GameClient.left)/2 - Width/2;
LeftTopScrCdnt.y = GameClient.top + 50;
GameClient.left = LeftTopScrCdnt.x;
GameClient.top = LeftTopScrCdnt.y;
GameClient.right = LeftTopScrCdnt.x + Width;
GameClient.bottom = LeftTopScrCdnt.y + Height;
//创建下一个将要出现的方块
next_block.create_block(GameClient.right+2*CellWidth,(GameClient.bottom+GameClient.top)/2-3*CellWidth);
block.move_to((GameClient.right+GameClient.left)/2,GameClient.top-CellWidth);
break
;
case
WM_TIMER:
block.move_down(GameClient);
if
(!block.check_block(map,LeftTopScrCdnt))
//检测方块的碰撞,如果则说明方块到底底部,将其上移然后打印进地图
{
block.move_up(GameClient);
if
(!block.check_block(map,LeftTopScrCdnt) ||
block.get_block_height() <= LeftTopScrCdnt.y )
//检测游戏是否结束
{
KillTimer(hwnd,ID_TIMER);
d = 4;
}
block.print_to_map(map,LeftTopScrCdnt);
SendMessage(hwnd,WM_KEYDOWN,VK_ESCAPE,0);
}
InvalidateRect(hwnd,NULL,
true
);
break
;
case
WM_PAINT:
hdc = BeginPaint (hwnd, &ps) ;
MoveToEx(hdc,LeftTopScrCdnt.x,LeftTopScrCdnt.y,NULL);
Rectangle(hdc,GameClient.left,GameClient.top,GameClient.right,GameClient.bottom);
//游戏区边框
SelectObject(hdc,GetStockObject(BLACK_BRUSH));
map.show_block_bar(hdc,LeftTopScrCdnt);
block.show_block(hdc,LeftTopScrCdnt);
next_block.show_next_block(hdc);
EndPaint (hwnd, &ps);
break
;
case
WM_KEYDOWN:
InvalidateRect(hwnd,NULL,
true
);
switch
(wParam)
{
case
VK_SPACE:
{
try_block = block;
try_block.rotate();
if
(try_block.check_block(map ,LeftTopScrCdnt))
block = try_block;
break
;
}
case
VK_LEFT:
{
block.move_left(GameClient);
if
(!block.check_block(map ,LeftTopScrCdnt))
block.move_right(GameClient);
}
break
;
case
VK_RIGHT:
{
block.move_right(GameClient);
if
(!block.check_block(map ,LeftTopScrCdnt))
block.move_left(GameClient);
}
break
;
case
VK_DOWN:
{
// block.move_down(GameClient);
SendMessage(hwnd,WM_TIMER,0,0);
}
break
;
case
VK_ESCAPE:
//测试用,完成后将会被注释掉
{
block = next_block;
next_block.create_block(GameClient.right+2*CellWidth,(GameClient.bottom+GameClient.top)/2-3*CellWidth);
block.move_to((GameClient.right+GameClient.left)/2,GameClient.top-CellWidth);
}
break
;
default
:
break
;
}
break
;
case
WM_DESTROY:
PostQuitMessage (0) ;
return
0 ;
}
return
DefWindowProc (hwnd, message, wParam, lParam) ;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/hellosijian/article/details/6629704 。
最后此篇关于C++实现俄罗斯方块(windows API)的文章就讲到这里了,如果你想了解更多关于C++实现俄罗斯方块(windows API)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
为什么我可以在控制台 window.window.window.window 中执行此操作并无限追加 .window 并返回 DOM 窗口? 最佳答案 因为 window 对象有一个指向它自身的 wi
Windows管理员用户和系统用户之间有什么权限区别吗? 有些时候,我必须将 cmd 窗口提升到系统权限才能删除一些文件。这可能是因为系统用户锁定了文件,或者系统用户可能具有更高的访问权限,我希望找出
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
Windows 服务和 Windows 进程之间的区别是什么? 最佳答案 服务是真正的 Windows 进程,没有区别。服务的唯一特殊之处在于它由操作系统启动并在单独的 session 中运行。一个独
我有一个 Windows 网络 (peer-2-peer) 以及 Active Directory,我需要记录向服务器发送任何类型打印的用户的名称。我想编写一个程序来记录他们的用户名和/或他们各自的
当我让一个 Windows 服务尝试安装另一个 Windows 服务时遇到问题。 具体来说,我有一个 TeamCity 代理在 Windows 2008 AWS 实例上为我运行测试。这些测试是用 Ja
我创建了一个应用程序来接收广播的 Windows 消息,效果很好。当我把它变成一个服务、安装它并启动服务时,该服务没有收到消息。 最佳答案 服务可能必须被授予访问桌面的权限。从服务属性、“登录”选项卡
我正在使用 Delphi 2010 编写应用程序。我希望在 Windows 启动时启动我的应用程序。我需要它在最新版本的 Windows XP、7.0 和最新的服务器中工作。 将其存储在以下关键工作下
我想开发一个适用于所有三个版本的 Windows XP、Vista 和 7 的应用程序。该应用程序允许人们选择要打开的文件,并允许他们在某些操作后保存文件。三个版本的 Windows 中的每一个都有不
对于\Windows\中的文件类型与\Windows\System32 中的文件类型是否有标准约定? 我正在开发一个 SDK,其中包含各种 DLL、帮助程序 exe 和 Windows 服务 exe。
要求是,必须在 WINDOWS7 机器上配置自动登录,但是这个自动登录应该等待(即延迟)直到另一个 Windows 服务发出继续自动登录的信号。 我使用了自定义凭据提供程序,它在其中等待另一个 Win
很抱歉,这不是一个大问题,而是更多的帮助人们解决这些特定问题的方法。我正在解决的问题要求使用串行I/O,但主要在Windows CE 6.0下运行。但是,最近有人问我是否也可以在Windows下运行该
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
不幸的是 SC 命令在 W2000 上还不可用,所以我不能使用它。 我正在尝试检查服务是否在 W2000 服务器上运行,如果它没有运行,脚本应该能够启动该服务。 如何在 Windows 2000 上执
如何在登录到 Windows 之前启动 Windows 窗体应用程序?是否可以在登录到 Windows 之前启动 Windows 窗体应用程序?如果不是,我是否有机会在登录前启动 Windows 服务
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我想在 XML 文件中区分 Windows XP 和 Windows 7。我想我会在 XML 中为它使用一个环境变量。 但是我找不到在 Windows 中定义的任何系统环境变量来提供此信息。 我看到了
有谁知道我可以在注册表中的哪个位置检查机器上是否安装了这些应用程序: Windows 通讯录 Windows 联系人 最佳答案 来自 Microsoft:我知道它说的是 win 95,但 reg 是一
我正在尝试从我的 Windows 服务器调用放置在远程 Windows 服务器上的批处理文件。我在远程服务器上安装了 freeSSHd。我尝试使用 putty/plink 但没有结果。 我使用的命令语
( 大家好。我是 Windows 编程的新手,所以如果已经有人问过我,我提前道歉,我只是不知道要搜索什么,但这个问题一直让我发疯,我知道有人可能真的很容易回答这个问题。) 我的公司有一个在 Windo
我是一名优秀的程序员,十分优秀!