//一个可以工作在Windows控制台字符界面下的俄罗斯方块

//工作在非图形模式,无需其他库依赖,单个C文件代码即可运行
//支持最高纪录,并且对于纪录进行了加密
//By wrule 2015年12月14日20:53:57 
//控制方式 WSAD 键对应旋转,下,左,右
//需要注意的是在进行游戏之前需要按下 Ctrl + 空格 取消输入法,否则无法正确操作 
 
 
#define _CRT_SECURE_NO_WARNINGS
 
 
#include <stdio.h>
#include <conio.h>
#include <time.h>
#include <windows.h>
 
 
#define SQUARE_BLANK 0
#define SQUARE_TETRIS 1
#define SQUARE_WALL 2 
 
 
//俄罗斯方块图案类型,不同旋转情况下的可能个体 
typedef struct pattern pattern;
struct pattern {
 
const int w;
const int h;
const int data[4][4];
};
 
 
//俄罗斯方块类型,可以完整描述一个俄罗斯方块的所有旋转 
typedef struct tetris tetris;
struct tetris {
 
const int len;
const pattern * pattern_list;
};
 
 
//用于定位的俄罗斯方块类型,使用两个 id 作为索引 
typedef struct itetris itetris;
struct itetris {
 
int id1;
int id2;
};
 
 
//可以完整描述俄罗斯方块当前状态以及操作的类型,为最终类型 
typedef struct ntetris ntetris;
struct ntetris {
 
int x1;
int y1;
itetris its1;
 
int x2;
int y2;
itetris its2;
};
 
 
//以下为俄罗斯方块数据的前向声明 
const tetris tetris_list[];
const size_t TETRIS_LIST_LEN;
 
 
//历史最高分玩家姓名 
char hs_name[9] = "暂无";
//历史最高分玩家得分 
int hs_score = 0;
//当前得分 
int now_score = 0;
//地图 
int map[20][10];
//游戏初始节奏 
unsigned int rhythm = 1000;
 
 
//Windows 控制台显示坐标定位 
void gotoxy(int x, int y) {
 
COORD coord = { x, y };
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),
coord);
}
 
 
//错误抛出并且结束程序运行 
void error() {
 
gotoxy(0, 0);
printf("error");
 
_getch();
exit(EXIT_FAILURE);
}
 
 
//绘制基本方块 
void draw_square(int x, int y, int v) {
 
gotoxy(x * 2, y);
 
switch (v) {
 
case SQUARE_BLANK:{
 
  printf("  ");
}break;
 
case SQUARE_TETRIS:{
 
   printf("□");
}break;
 
case SQUARE_WALL:{
 
 printf("■");
}break;
 
default:{
 
error();
}break;
}
}
 
 
//绘制界面框架 
void draw_frame() {
 
int x, y;
 
for (y = 0; y < 22; ++y) {
 
for (x = 0; x < 12; ++x) {
 
if (y == 0 ||
y == 21 ||
x == 0 ||
x == 11) {
 
draw_square(x, y, SQUARE_WALL);
}
}
}
 
for (y = 0; y < 6; ++y) {
 
for (x = 13; x < 19; ++x) {
 
if (y == 0 ||
y == 5 ||
x == 13 ||
x == 18) {
 
draw_square(x, y, SQUARE_WALL);
}
}
}
 
gotoxy(28, 8);
printf("最高纪录");
 
gotoxy(28, 14);
printf("当前得分");
 
gotoxy(28, 21);
printf("by wrule");
}
 
 
//绘制俄罗斯方块 
void draw_tetris(const itetris * pits, int x, int y, int v) {
 
int px;
int py;
int ox;
int oy;
const pattern * ptrn = &(tetris_list[pits->id1].
pattern_list[pits->id2]);
int w = ptrn->w;
int h = ptrn->h;
 
for (py = 0; py < h; ++py) {
 
for (px = 0; px < w; ++px) {
 
if (ptrn->data[py][px]) {
 
ox = x + px;
oy = y + py;
 
if ((ox > -1 &&
ox < 10 &&
oy > -1 &&
oy < 20)
||
(ox > 12 &&
ox < 17 &&
oy > -1 &&
oy < 4)) {
 
draw_square(ox + 1, oy + 1, v);
}
}
}
}
}
 
 
//在界面上绘制出下一个即将出现的俄罗斯方块 
void draw_next_tetris(const itetris * pits) {
 
const pattern * ptrn = &(tetris_list[pits->id1].
pattern_list[pits->id2]);
int w = ptrn->w;
int h = ptrn->h;
int bx;
int by;
int px = (4 - w) / 2;
int py = (4 - h) / 2;
 
if (h % 2) {
 
++py;
}
 
for (by = 1; by < 5; ++by) {
 
for (bx = 14; bx < 18; ++bx) {
 
draw_square(bx, by, SQUARE_BLANK);
}
}
 
draw_tetris(pits, 13 + px, py, SQUARE_TETRIS);
}
 
 
//随机取得一个俄罗斯方块 
void get_rnd_tetris(itetris * pits) {
 
pits->id1 = rand() % TETRIS_LIST_LEN;
pits->id2 = rand() % tetris_list[pits->id1].len;
}
 
 
//应用针对于俄罗斯方块的操作 
void use_op(ntetris * pnts) {
 
draw_tetris(&(pnts->its1),
pnts->x1,
pnts->y1,
SQUARE_BLANK);
 
pnts->x1 = pnts->x2;
pnts->y1 = pnts->y2;
pnts->its1 = pnts->its2;
 
draw_tetris(&(pnts->its1),
pnts->x1,
pnts->y1,
SQUARE_TETRIS);
}
 
 
//俄罗斯方块自然下落 
void general_fall(ntetris * pnts) {
 
pnts->x2 = pnts->x1;
pnts->y2 = pnts->y1 + 1;
pnts->its2 = pnts->its1;
}
 
 
//用户手动左移俄罗斯方块 
void hand_left(ntetris * pnts) {
 
pnts->x2 = pnts->x1 - 1;
pnts->y2 = pnts->y1;
pnts->its2 = pnts->its1;
}
 
 
//用户手动右移俄罗斯方块 
void hand_right(ntetris * pnts) {
 
pnts->x2 = pnts->x1 + 1;
pnts->y2 = pnts->y1;
pnts->its2 = pnts->its1;
}
 
 
#define TURN_LEFT -1
#define TURN_RIGHT 1
//用户手动旋转俄罗斯方块 
void hand_turn(ntetris * pnts, int dir) {
 
int px, py;
const pattern * ptrn1;
int w1, h1;
const pattern * ptrn2;
int w2, h2;
int len = tetris_list[pnts->its1.id1].len;
 
pnts->its2 = pnts->its1;
pnts->its2.id2 += dir;
 
if (pnts->its2.id2 >= len) {
 
pnts->its2.id2 = 0;
}
else if (pnts->its2.id2 <= -1) {
 
pnts->its2.id2 = len - 1;
}
 
ptrn1 = &(tetris_list[pnts->its1.id1].
pattern_list[pnts->its1.id2]);
ptrn2 = &(tetris_list[pnts->its2.id1].
pattern_list[pnts->its2.id2]);
 
w1 = ptrn1->w;
h1 = ptrn1->h;
 
w2 = ptrn2->w;
h2 = ptrn2->h;
 
px = (w1 - w2) / 2;
py = (h1 - h2) / 2;
 
pnts->x2 = pnts->x1 + px;
pnts->y2 = pnts->y1 + py;
}
 
 
//向地图之中放置一个俄罗斯方块 
void put_tetris(ntetris * pnts, itetris * pits) {
 
const pattern * ptrn = &(tetris_list[pits->id1].
pattern_list[pits->id2]);
int w = ptrn->w;
int h = ptrn->h;
 
pnts->x2 = (10 - w) / 2;
pnts->y2 = -h;
pnts->its2 = *pits;
 
pnts->x1 = pnts->x2;
pnts->y1 = pnts->y2;
pnts->its1 = pnts->its2;
 
use_op(pnts);
}
 
 
//初始化地图数据 
void init_map() {
 
int x, y;
 
for (y = 0; y < 20; ++y) {
 
for (x = 0; x < 10; ++x) {
 
map[y][x] = 0;
}
}
}
 
 
//判断针对于俄罗斯方块的操作是否非法 
int op_isilegal(ntetris * pnts) {
 
int x = pnts->x2;
int y = pnts->y2;
const pattern * ptrn = &(tetris_list[pnts->its2.id1].
pattern_list[pnts->its2.id2]);
int w = ptrn->w;
int h = ptrn->h;
int px, py;
int ox, oy;
int ret = 0;
 
for (py = 0; py < h; ++py) {
 
for (px = 0; px < w; ++px) {
 
if (ptrn->data[py][px]) {
 
ox = x + px;
oy = y + py;
 
if (ox < 0 ||
ox > 9 ||
oy > 19) {
 
ret = 1;
goto pret;
}
else {
 
if (oy > -1) {
 
if (map[oy][ox]) {
 
ret = 1;
goto pret;
}
}
}
}
}
}
 
pret:
return ret;
}
 
 
//俄罗斯方块被放置之后写入地图数据 
void write_tetris(ntetris * pnts) {
 
int x = pnts->x1;
int y = pnts->y1;
const pattern * ptrn = &(tetris_list[pnts->its1.id1].
pattern_list[pnts->its1.id2]);
int w = ptrn->w;
int h = ptrn->h;
int px, py;
int ox, oy;
 
for (py = 0; py < h; ++py) {
 
for (px = 0; px < w; ++px) {
 
if (ptrn->data[py][px]) {
 
ox = x + px;
oy = y + py;
 
map[oy][ox] = 1;
}
}
}
}
 
 
//绘制地图
void draw_map() {
 
int x, y;
 
for (y = 0; y < 20; ++y) {
 
for (x = 0; x < 10; ++x) {
 
draw_square(x + 1,
y + 1,
map[y][x] ? SQUARE_TETRIS : SQUARE_BLANK);
}
}
}
 
 
//试图消行 
int try_clear() {
 
int score = 0;
int i;
int x, y;
int flag;
int clear = 0;
int list[20];
int tmap[20][10];
 
//记录应当被消除的列表 
for (y = 0; y < 20; ++y) {
 
flag = 1;
 
for (x = 0; x < 10; ++x) {
 
if (0 == map[y][x]) {
 
flag = 0;
 
break;
}
}
 
list[y] = flag;
}
 
//记录消除标志和消除得分 
for (i = 0; i < 20; ++i) {
 
if (1 == list[i]) {
 
score++;
clear = 1;
}
}
 
if (clear) {
 
//显示消除动画 
for (i = 0; i < 3; ++i) {
 
for (x = 0; x < 10; ++x) {
 
for (y = 0; y < 20; ++y) {
 
if (list[y]) {
 
draw_square(x + 1,
y + 1,
(i % 2) ? SQUARE_TETRIS : SQUARE_BLANK);
}
}
}
 
Sleep(250);
}
 
//初始化备份地图 
for (y = 0; y < 20; ++y) {
 
for (x = 0; x < 10; ++x) {
 
tmap[y][x] = 0;
}
}
 
//在备份地图上执行消除 
i = 19;
for (y = 19; y > -1; --y) {
 
if (0 == list[y]) {
 
for (x = 0; x < 10; ++x) {
 
tmap[i][x] = map[y][x];
}
 
--i;
}
}
 
//把消除之后的数据回写入地图 
for (y = 0; y < 20; ++y) {
 
for (x = 0; x < 10; ++x) {
 
map[y][x] = tmap[y][x];
}
}
 
//在界面上重绘地图
draw_map();
}
 
rhythm -= score;
if (rhythm < 50) {
 
rhythm = 50;
}
 
return score;
}
 
 
//更新当前玩家分数 
void update_now_score() {
 
gotoxy(30, 16);
printf("        ");
 
gotoxy(30, 16);
printf("%d", now_score);
}
 
 
//更新历史玩家数据 
void update_hs_data() {
 
int i;
 
gotoxy(28, 10);
printf("        ");
gotoxy(28, 10);
for (i = 0; i < 8 && hs_name[i]; ++i) {
 
putchar(hs_name[i]);
}
 
gotoxy(30, 12);
printf("        ");
gotoxy(30, 12);
printf("%d", hs_score);
}
 
 
#define NEXT_STEP 0
#define WRITE_WIN 1
#define GAME_OVER 2
//俄罗斯方块自然下落之后的处理过程 
int after_fall(ntetris * pnts) {
 
int pscore;
 
//如果试图进行的操作不违法 
if (op_isilegal(pnts) == 0) {
 
use_op(pnts);
 
return NEXT_STEP;
}
else {
 
//如果垒满,游戏结束 
if (pnts->y1 < 0) {
 
return GAME_OVER;
}
else {
 
//放置好俄罗斯方块,并且向地图写入数据 
write_tetris(pnts);
 
//试图消行并且获得得分 
pscore = try_clear();
 
//如果得分非零,则更新当前玩家得分 
if (pscore) {
 
now_score += pscore;
update_now_score();
}
 
return WRITE_WIN;
}
}
}
 
 
//BKDR Hash 函数 
unsigned int bkdr_hash(const char * str) {
 
unsigned int seed = 131;
unsigned int hash = 0;
 
while (*str) {
 
hash = hash * seed + (*str++);
}
 
return hash % 65536;
}
 
 
//读取历史记录数据 Hash 校验 
void read_hs_data() {
 
size_t i;
size_t len;
unsigned char buf[100];
unsigned int hash_num;
char str[50];
char * pstr = NULL;
FILE * fp = fopen("tetris.txt", "rb");
 
if (NULL != fp) {
 
len = fread(buf, 1, 100, fp);
 
for (i = 0; i < len; ++i) {
 
buf[i] ^= 0xC6;
}
buf[i] = '\0';
 
hash_num = buf[0] + buf[1] * 256;
if (bkdr_hash(&buf[2]) == hash_num) {
 
sscanf(&buf[2], "%s", str);
sscanf(str, "%d", &hs_score);
 
pstr = &buf[strlen(str) + 3];
 
for (i = 0; i < 8 && pstr[i]; ++i) {
 
hs_name[i] = pstr[i];
}
hs_name[i] = '\0';
}
else {
 
strcpy(hs_name, "暂无");
hs_score = 0;
}
 
fclose(fp);
}
else {
 
strcpy(hs_name, "暂无");
hs_score = 0;
}
}
 
 
//写入历史记录数据 Hash 加密 
void write_hs_data(char name[], int score) {
 
size_t len;
size_t i;
unsigned char buf[100];
FILE * fp = fopen("tetris.txt", "wb");
unsigned int hash_num;
 
if (NULL != fp) {
 
sprintf(&buf[2], "%d\n\0", score);
 
len = strlen(&buf[2]);
for (i = 0; i < 8 && name[i]; ++i) {
 
(&buf[2])[len + i] = name[i];
}
(&buf[2])[len + i] = '\0';
 
len = strlen(&buf[2]);
 
hash_num = bkdr_hash(&buf[2]);
buf[0] = hash_num % 256;
buf[1] = hash_num / 256;
 
for (i = 0; i < len + 2; ++i) {
 
fputc(buf[i] ^ 0xC6, fp);
}
 
fclose(fp);
}
else {
 
error();
}
}
 
 
//游戏结束相关处理 
void game_over() {
 
char name[100];
 
system("cls");
 
gotoxy(9, 2);
printf("你的得分为: %d", now_score);
 
if (now_score > hs_score) {
 
gotoxy(9, 4);
printf("恭喜你刷新了记录");
 
gotoxy(9, 6);
printf("请输入你的大名: ");
scanf("%s", name);
 
write_hs_data(name, now_score);
 
gotoxy(9, 8);
printf("记录成功刷新");
}
else {
 
gotoxy(9, 4);
printf("很遗憾你没有刷新记录");
}
 
_getch();
}
 
 
 
//游戏主程序 
int game_main() {
 
itetris next_its;
ntetris nts;
unsigned int otime;
unsigned int ntime;
int c;
int pause = 0;
int aflag;
 
//清空控制台屏幕 
system("cls");
 
now_score = 0;
//初始化地图数据 
init_map();
 
//获得第一个随机俄罗斯方块 
get_rnd_tetris(&next_its);
 
//绘制界面框架 
draw_frame();
 
//读取历史记录 
read_hs_data();
 
//更新历史玩家数据 
update_hs_data();
 
//更新当前玩家得分 
update_now_score();
 
gotoxy(28, 19);
printf("P键暂停");
 
while (1) {
 
bk2:
 
//放置下一个俄罗斯方块进入当前场景 
put_tetris(&nts, &next_its);
 
//获得下一个随机俄罗斯方块 
get_rnd_tetris(&next_its);
//绘制下一个俄罗斯方块 
draw_next_tetris(&next_its);
 
//Tick 定时器开始工作 
otime = GetTickCount();
 
while (1) {
 
if (0 == pause) {
 
//Tick 定时器节奏触发俄罗斯方块自然下落 
if ((ntime = GetTickCount()) - otime > rhythm) {
 
otime = ntime;
 
general_fall(&nts);
 
aflag = after_fall(&nts);
 
if (WRITE_WIN == aflag) {
 
break;
}
else if (GAME_OVER == aflag) {
 
game_over();
 
return 0;
}
}
}
 
//按键检测 
if (_kbhit()) {
 
c = _getch();
 
if (0 == pause) {
 
switch (c) {
 
//旋转俄罗斯方块 
case 'w':{
 
 hand_turn(&nts, TURN_RIGHT);
 
 //如果合法则应用操作,下同 
 if (op_isilegal(&nts) == 0) {
 
 use_op(&nts);
 }
}break;
 
//手动下落 
case 's':{
 
 general_fall(&nts);
 
 aflag = after_fall(&nts);
 
 if (WRITE_WIN == aflag) {
 
 goto bk2;
 }
 else if (GAME_OVER == aflag) {
 
 game_over();
 
 return 0;
 }
}break;
 
//左移俄罗斯方块 
case 'a':{
 
 hand_left(&nts);
 
 if (op_isilegal(&nts) == 0) {
 
 use_op(&nts);
 }
}break;
 
//右移俄罗斯方块 
case 'd':{
 
 hand_right(&nts);
 
 if (op_isilegal(&nts) == 0) {
 
 use_op(&nts);
 }
}break;
}
}
 
//游戏暂停功能 
if ('p' == c) {
 
if (pause) {
 
pause = 0;
 
gotoxy(28, 19);
printf("P键暂停");
}
else {
 
pause = 1;
 
gotoxy(28, 19);
printf("P键继续");
}
}
}
}
}
 
return 0;
}
 
 
//主函数 
int main() {
 
//清空控制台屏幕 
system("cls");
//在控制台标题上显示游戏标题 
system("title tetris");
//设定控制台窗口的宽高 
system("mode con cols=38 lines=22");
 
//产生随机数种子 
srand((unsigned int)time(NULL));
 
while (1) {
 
//进入游戏主程序 
game_main();
}
 
return 0;
}
 
 
//以下 const pattern 类型为七种俄罗斯方块各自旋转图案 
const pattern pattern_list_line[] = {
 
{
1, 4,
{
1, 0, 0, 0,
1, 0, 0, 0,
1, 0, 0, 0,
1, 0, 0, 0
}
},
 
{
4, 1,
{
1, 1, 1, 1,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_l[] = {
 
{
2, 3,
{
1, 0, 0, 0,
1, 0, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0
}
},
 
{
3, 2,
{
1, 1, 1, 0,
1, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
1, 1, 0, 0,
0, 1, 0, 0,
0, 1, 0, 0,
0, 0, 0, 0
}
},
 
{
3, 2,
{
0, 0, 1, 0,
1, 1, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_rl[] = {
 
{
2, 3,
{
0, 1, 0, 0,
0, 1, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0
}
},
 
{
3, 2,
{
1, 0, 0, 0,
1, 1, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
1, 1, 0, 0,
1, 0, 0, 0,
1, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
3, 2,
{
1, 1, 1, 0,
0, 0, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_s[] = {
 
{
3, 2,
{
0, 1, 1, 0,
1, 1, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
1, 0, 0, 0,
1, 1, 0, 0,
0, 1, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_z[] = {
 
{
3, 2,
{
1, 1, 0, 0,
0, 1, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
0, 1, 0, 0,
1, 1, 0, 0,
1, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_box[] = {
 
{
2, 2,
{
1, 1, 0, 0,
1, 1, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
const pattern pattern_list_t[] = {
 
{
3, 2,
{
1, 1, 1, 0,
0, 1, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
0, 1, 0, 0,
1, 1, 0, 0,
0, 1, 0, 0,
0, 0, 0, 0
}
},
 
{
3, 2,
{
0, 1, 0, 0,
1, 1, 1, 0,
0, 0, 0, 0,
0, 0, 0, 0
}
},
 
{
2, 3,
{
1, 0, 0, 0,
1, 1, 0, 0,
1, 0, 0, 0,
0, 0, 0, 0
}
}
};
 
 
//俄罗斯方块数据表 
const tetris tetris_list[] = {
 
{
sizeof(pattern_list_line) / sizeof(pattern_list_line[0]),
pattern_list_line
},
 
{
sizeof(pattern_list_l) / sizeof(pattern_list_l[0]),
pattern_list_l
},
 
{
sizeof(pattern_list_rl) / sizeof(pattern_list_rl[0]),
pattern_list_rl
},
 
{
sizeof(pattern_list_s) / sizeof(pattern_list_s[0]),
pattern_list_s
},
 
{
sizeof(pattern_list_z) / sizeof(pattern_list_z[0]),
pattern_list_z
},
 
{
sizeof(pattern_list_box) / sizeof(pattern_list_box[0]),
pattern_list_box
},
 
{
sizeof(pattern_list_t) / sizeof(pattern_list_t[0]),
pattern_list_t
}
};
 
//俄罗斯方块数据表长度
const size_t TETRIS_LIST_LEN = (sizeof(tetris_list) / sizeof(tetris_list[0]));

C Windows控制台字符版本俄罗斯方块的更多相关文章

  1. windows控制台程序——关于UNICODE字符的总结(转)

    前言:从Windows NT/2000开如,Windows系统已经是一个标准的UNICODE系统,系统内部所有字符串存储及操作均使用UNICODE编码.因此Win32 API都是UNICODE版本的, ...

  2. 【笨嘴拙舌WINDOWS】字符类型与字符串

    "我将用C语言作为工具,开始WINDOWS API的使用" windows NT 从底层开始支持unicode. 1.字符类型 WINDOWS的字符类型在WINNT.H和CTYPE ...

  3. Windows平台字符的存储和输出分析

    1. 引言 (写于2011-07-30) 在Windows NT系列的操作系统中最常用的两种字符集是ANSI和Unicode.ANSI是一种泛称,每一个国家或地区的ANSI编码都不一样,比如在Wind ...

  4. VS2017新建windows控制台程序打印中文乱码问题

    最近刚换上VS2017,由于手头又要做个MFC的程序,所以写控制台程序做功能测试,然后发现居然乱码了. 于是用VS2017新建windows控制台应用程序,在main函数种加一句printf(&quo ...

  5. Windows 2012 R2版本下部署IIS网站

    Windows 2012 R2是一个比较稳定的服务器版本,本文分享一篇在Windows 2012 R2版本下搭建IIS项目的操作流程. 1. 安装IIS Web服务器 打开远程桌面->控制面板- ...

  6. 功能更新到 Windows 10 企业版, 版本 1607

    功能更新到 Windows 10 企业版, 版本 1607

  7. 更改Windows控制台默认缓冲区行数和宽度

    Windows控制台窗口默认的显示行数很少, 以至于有时候要显示很多东西的时候, 总是导致前面的内容丢失. 很不爽. 于是GG了下, 在StackOverflow上找到了答案~~~ 设置方式: 1. ...

  8. Win10上编译CoreCLR的Windows和Linux版本

    一.编译环境 首先,不管是Windows还是Linux版本CoreCLR的编译,都是在Windows10上进行的. 二.CoreCLR for Windows 在Windows上做编译怎么能少得了Vi ...

  9. Windows 10 ADK 版本及下载链接汇总

    Windows 评估和部署工具包 (Windows ADK) 具有自定义大规模部署的 Windows 映像以及测试系统.添加的组件和在该系统上运行的应用程序的质量和性能所需的工具. Windows A ...

随机推荐

  1. pandas之whl格式安装

    一.主要介绍linux下安装 1.下载安装包:https://pypi.doubanio.com/simple/pandas/ 2.安装  pip install wheel 3.更新一下pip版本( ...

  2. Linux发布WebApi

    一:WebApi 使用Owin来做  http://www.cnblogs.com/xiaoyaodijun/category/666029.html 二:安装最新版的Jexus服务 https:// ...

  3. webstorm ps

    2018WebStorm注册码   2018-10-10 2018年08月22日 17:36:58 阳光明媚的味道 阅读数:6325   8月21日 http://webstorm.autoseasy ...

  4. 【转】Crosswalk入门

    原文:https://www.mobibrw.com/2015/1934 Crosswalk是一款开源的web引擎.目前Crosswalk正式支持的移动操作系统包括Android和Tizen,在And ...

  5. WebApi接口返回值不困惑:返回值类型详解

    前言:已经有一个月没写点什么了,感觉心里空落落的.今天再来篇干货,想要学习Webapi的园友们速速动起来,跟着博主一起来学习吧.作为程序猿,我们都知道参数和返回值是编程领域不可分割的两大块,此前分享了 ...

  6. python全栈开发day72-django之Form组件

    一.ajax 1. 复习JSON 1. JSON是什么? 一种数据格式,和语言无关的数据格式. 2. Python里面转换 1. Python对象 --> 字符串 import json 字符串 ...

  7. python manage.py runserver指定端口和ip

    python manage.py runserver 0.0.0.0:8000 在本地运行程序,python manager.py runserver打开http://127.0.0.1:5000端口 ...

  8. app奔溃经验和应对方式

    bug直接影响:用户体验.app商店评级.用户忠诚度 前言: 因为现在市场是andriod手机的碎片化.造成了andriod手机更加容易出现APP的崩溃,通常在网络异常时APP上还在进行数据交互,即会 ...

  9. python --判断列表重复

    一.判断单个列表中的元素是否存在重复 使用set方法去重后,和原list进行对比,如果相等,那么说明原列表无重复,如果存在重复,说明列表存在重复 def is_repect_all(L): repea ...

  10. C#基础:委托之Action<T>和Func<T>的用法