原创的C语言控制台小游戏

2025-05-27 0 80

最开始左上色块被感染,通过切换颜色,不断感染同色色块。亮点是可以切换图案,设置方块个数和最大限制次数。整体还是比较满意,希望大神指教。

?

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
#include <stdio.h>

#include <windows.h>

#include <conio.h>

#include <time.h>

#include <stdlib.h>

int DIFFICULT=44;

int count=0 ;

int TYPE_SHAPE=2 ;

int flag=7 ;

int LINE=12;

struct MyStruct

{

int shape ;

int color ;

int infect ;

};

void SetColor(unsigned short ForeColor,unsigned short BackGroundColor)

{

HANDLE hCon=GetStdHandle(STD_OUTPUT_HANDLE);

SetConsoleTextAttribute(hCon,ForeColor|BackGroundColor);

}

void WelcomeScr()

{

int i;

printf("\\n\\n\\n\\t\\t");

printf("●程序初始化中〉");

for(i=0; i<=100; i++)

{

SetColor(i%6+8,0);

printf("%3d",i);

SetColor(15,0);

printf(" %%");

SetColor(i%6+8,0);

printf(" Written by Oliver!");

Sleep(20);

printf("\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b");

}

printf("\\a");

Sleep(1000);

system("cls");

printf("\\n\\n\\n\\t\\t");

SetColor(15,0);

printf("●请输入方块行数 〉 (最好不超过21行)");

printf("\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b\\b");

scanf("%d",&LINE);

printf("\\n\\n\\n\\t\\t");

printf("●请输入最大次数 〉");

scanf("%d",&DIFFICULT);

system("cls");

}

void Show()

{

int i ;

SetColor(15,0);

printf("\\n ※ 操作次数: %-2d / %d (共%3d个色块)\\n",count,DIFFICULT,LINE*LINE);

printf("\\n ※ 操作方法: ");

for(i=1; i<7; i++)

{

SetColor(15,0);

printf("%d.",i);

SetColor(i+8,0);

printf("%c ",TYPE_SHAPE);

}

SetColor(15,0);

printf("7.");

SetColor(9,0);

printf("重");

SetColor(10,0);

printf("新");

SetColor(11,0);

printf("生");

SetColor(12,0);

printf("成 ");

SetColor(15,0);

printf("0.");

SetColor(14,0);

printf("改");

SetColor(13,0);

printf("变");

SetColor(12,0);

printf("图");

SetColor(11,0);

printf("案 ");

SetColor(15,0);

printf("\\n\\n ※ 请按下 0 ~ 7 键位> ");

}

int Choose()

{

int choose ;

fflush(stdin);

scanf("%d",&choose);

switch(choose)

{

case 0 :

TYPE_SHAPE++;

if(TYPE_SHAPE==7)

{

TYPE_SHAPE=1 ;

}

return 0 ;

case 1 :

return 1 ;

case 2 :

return 2 ;

case 3 :

return 3 ;

case 4 :

return 4 ;

case 5 :

return 5 ;

case 6 :

return 6 ;

case 7 :

return 7 ;

default :

printf("\\n\\t\\t\\a● 输入无效,请重新输入!");

Sleep(1000);

return 0 ;

}

}

void main()

{

int i,j ;

int num=0 ;

char ch ;

int cc ;

int jj;

struct MyStruct array[41][41];

system("title 感染方块 Oliver's QQ 564404096");

srand((time(NULL)%100)*rand());

WelcomeScr();

loop :

for(i=0; i<LINE; i++)

{

for(j=0; j<LINE; j++)

{

array[i][j].shape=TYPE_SHAPE ;

if(flag==7)

{

array[i][j].color=rand()%6+1 ;

array[i][j].infect=0 ;

count=0 ;

cc=1 ;

}

}

}

printf("\\n");

array[0][0].infect=1 ;

for(jj=0; jj<LINE; jj++)

{

for(i=0; i<LINE; i++)

{

for(j=0; j<LINE; j++)

{

if(array[i][j].color==array[i][j+1].color&&array[i][j].infect==1&&array[i][j+1].infect!=1)

{

array[i][j+1].infect=1 ;

}

if(array[i][j].color==array[i+1][j].color&&array[i][j].infect==1&&array[i+1][j].infect!=1)

{

array[i+1][j].infect=1 ;

}

}

}

for(i=LINE-1; i>0; i--)

{

for(j=LINE-1; j>0; j--)

{

if(array[i][j].color==array[i-1][j].color&&array[i][j].infect==1&&array[i-1][j].color!=1)

{

array[i-1][j].infect=1 ;

}

if(array[i][j].color==array[i][j-1].color&&array[i][j].infect==1&&array[i][j-1].color!=1)

{

array[i][j-1].infect=1 ;

}

}

}

cc=1 ;

for(i=0; i<LINE; i++)

for(j=0; j<LINE; j++)

{

if(array[i][j].infect==0)

{

cc=0 ;

break ;

}

}

}

for(i=0; i<LINE; i++)

{

printf(" ");

for(j=0; j<LINE; j++)

{

SetColor(array[i][j].color+8,0);

printf("%c ",array[i][j]);

}

printf("\\n");

}

Show();

if(count<=DIFFICULT&&cc==1&&flag!=7&&flag!=0)

{

system("cls");

printf("\\n\\n\\n\\n\\t\\t\\t●%5d个色块你用了%d步完成 ●",LINE*LINE,count);

printf("\\n\\n\\t\\t\\t● 恭喜你,您获得了胜利!\\n");

loop2 :

printf("\\n\\t\\t\\t\\a● 是否继续?(Y/N)>");

fflush(stdin);

if((ch=getch())=='Y'||ch=='y')

{

system("cls");

flag=7 ;

goto loop ;

}

else if(ch=='n'||ch=='N')

{

system("cls");

printf("\\n\\t\\t\\t● 谢 谢 您 的 使 用 !\\n\\n\\t\\t\\t● 作 者: Oliver\\n\\n\\t\\t\\t● Q Q: 564404096\\n\\n\\t\\t\\t● 代 码 原 创,版 权 所 有 ●");

Sleep(5000);

exit(1);

}

else

{

printf("\\n\\n\\t\\t\\t\\a● 输入错误重新输入 >");

Sleep(1000);

system("cls");

goto loop2 ;

}

}

else if(count>DIFFICULT)

{

system("cls");

printf("\\n\\n\\n\\n\\t\\t\\t\\a● 很遗憾,您闯关失败!\\n");

goto loop2 ;

}

else

;

flag=Choose();

if(flag!=0)

{

array[0][0].color=flag ;

if(flag!=7)

{

count++;

}

for(i=0; i<LINE; i++)

{

for(j=0; j<LINE; j++)

{

if(array[i][j].infect==1)

{

array[i][j].color=flag ;

}

}

}

}

system("cls");

goto loop ;

}

演示图:

原创的C语言控制台小游戏

原创的C语言控制台小游戏

原创的C语言控制台小游戏

原创的C语言控制台小游戏

以上即是本文所述的全部内容了,希望大家能够喜欢,能够对大家学习C有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 原创的C语言控制台小游戏 https://www.kuaiidc.com/75757.html

相关文章

发表评论
暂无评论