广告位联系
返回顶部
分享到

利用Matlab制作一款3D版2048小游戏

C语言 来源:互联网 作者:秩名 发布时间:2022-02-25 14:03:15 人浏览
摘要

其实逻辑和2维版本完全一样,就不进行详细解说了,直接看效果: 效果: 目前界面还不咋好看,期待大家的优化 还是键盘操作嗷 完整代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

其实逻辑和2维版本完全一样,就不进行详细解说了,直接看效果:

效果:

目前界面还不咋好看,期待大家的优化

还是键盘↑↓←→操作嗷

完整代码:

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

function game20483D

global squaremap

global colorlist

global fontsizelist

global baseX baseY baseZ

global barHdl textHdl

global txtBest txtScore

global best

 

 

fig=figure('units','pixels');

fig.Position=[560 50 575,400];

fig.Color=[0.9804 0.9725 0.9373];

fig.NumberTitle='off';

fig.Name='2048Game3D';

fig.MenuBar='none';

fig.Resize='off';

fig.KeyPressFcn=@key;

%

ax=axes(fig);

hold(ax,'on');

ax.Position=[0.1 0 1 1];

ax.ZLim=[0,17];

ax.XLim=[0,4]+0.5;

ax.YLim=[0,4]+0.5;

ax.View=[60   30];

fill([0 4 4 0]+0.5,[0 0 4 4]+0.5,[0.7333 0.6784 0.6275],'EdgeColor','none');

ax.Color=[0.8039 0.7569 0.7059].*1.02;

ax.XTick=[];

ax.YTick=[];

ax.ZTick=[];

ax.Box='on';

ax.LineWidth=3;

ax.XColor=[0.7333 0.6784 0.6275];

ax.YColor=[0.7333 0.6784 0.6275];

ax.ZColor=[0.7333 0.6784 0.6275];

% for i=1:4

%     for j=1:4

%         fill((i-1)+0.5+[.1 .8 .8 .1],(j-1)+0.5+[.1 .1 .8 .8],...

%             [0.8039 0.7569 0.7059],'EdgeColor','none');

%        

%     end

% end

% ==========================================================================

% 方块颜色表

colorlist=[ 0.8039    0.7569    0.7059

    0.9333    0.8941    0.8549

    0.9373    0.8784    0.8039

    0.9608    0.6863    0.4824

    0.9529    0.5922    0.4078

    0.9529    0.4902    0.3725

    0.9686    0.3686    0.2431

    0.9255    0.8118    0.4510

    0.9373    0.7882    0.3922

    0.9333    0.7804    0.3216

    0.9216    0.7686    0.2627

    0.9255    0.7608    0.1804

    0.9412    0.4078    0.4157

    0.9216    0.3137    0.3451

    0.9451    0.2549    0.2627

    0.4392    0.7020    0.8157

    0.3765    0.6353    0.8745

    0.0902    0.5098    0.7843];

% 数字大小表

fontsizelist=[18 24 24 24 24 24 24 24 24 24 22 22 22 22 20 20 20 16].*0.8;

% 立方体数据

baseX=[0 1 1 0 0 0;1 1 0 0 1 1;1 1 0 0 1 1;0 1 1 0 0 0].*0.7-0.35;

baseY=[0 0 1 0 0 0;0 1 1 1 0 0;0 1 1 1 1 1;0 0 1 0 1 1].*0.7-0.35;

baseZ=[0 0 0 0 0 1;0 0 0 0 0 1;1 1 1 1 0 1;1 1 1 1 0 1];

 

text(-0.6,0.75,17,'2048-3D GAME','HorizontalAlignment','left','Color',...

    [0.4667 0.4314 0.3961],'FontSize',15,'FontWeight','bold')

text(-0.8,0.75,-7,' BEST  ','HorizontalAlignment','left','Color',...

    [0.9333 0.8941 0.8549],'FontSize',14,'FontWeight','bold','BackgroundColor',[0.7333 0.6784 0.6275])

text(-0.8,0.75,-10,'SCORE','HorizontalAlignment','left','Color',...

    [0.9333 0.8941 0.8549],'FontSize',14,'FontWeight','bold','BackgroundColor',[0.7333 0.6784 0.6275])

txtBest=text(0.4,0.9,-4.7,'0','HorizontalAlignment','left','Color',...

    [0.4667 0.4314 0.3961],'FontSize',14,'FontWeight','bold');

txtScore=text(0.4,0.9,-7.7,'0','HorizontalAlignment','left','Color',...

    [0.4667 0.4314 0.3961],'FontSize',14,'FontWeight','bold');

% ==========================================================================

 

 

%按键函数,通过moveevent调整矩阵

    function key(~,event)

        temp_map=squaremap;

        switch event.Key

            case 'uparrow'

                temp_map=moveevent(temp_map');

                temp_map=temp_map';

            case 'downarrow'

                temp_map=temp_map';

                temp_map=moveevent(temp_map(:,4:-1:1));

                temp_map=temp_map(:,4:-1:1);

                temp_map=temp_map';

            case 'rightarrow'

                temp_map=moveevent(temp_map(:,4:-1:1));

                temp_map=temp_map(:,4:-1:1);

            case 'leftarrow'

                temp_map=moveevent(temp_map);

        end

        score=sum(sum(squaremap));

        best=max([best,score]);

        save best.mat best -append

         

        %若新矩阵与原矩阵不同,则重新绘制方块

        if any(any(squaremap~=temp_map))

            squaremap=temp_map;

            createNewNum()

            drawBlock()

        end

    end

 

    %主函数

    function temp_matrix=moveevent(temp_matrix)

        for ii = 1: 4

            temp_array=temp_matrix(ii,:);

            temp_array(temp_array==0)=[];

 

            for jj = 1: (length(temp_array)-1)

                if temp_array(jj)==temp_array(jj+1)

                    temp_array(jj)=temp_array(jj)+temp_array(jj+1);

                    temp_array(jj+1)=0;

                end

            end

 

            temp_array(temp_array==0)=[];

            temp_array((length(temp_array)+1):4)=0;

            temp_matrix(ii,:)=temp_array;

        end

    end

% =========================================================================

for i=1:4

    for j=1:4

        barHdl{i,j}=fill3(baseX+i,baseY+j,baseZ,'y','EdgeColor',[0.7333 0.6784 0.6275].*0.3);

        textHdl{i,j}=text(i,j,1.5,'0','Color',[0.7333 0.6784 0.6275].*0.4,...

            'FontWeight','bold','HorizontalAlignment','center');

    end

end

init()

 

    function init()

        %若没有游戏记录则最高分为0

        if ~exist('best.mat')

            best=0;

            save best.mat best;

        end

        data=load('best.mat');

        best=data.best;

        txtBest.String=num2str(best);

         

        squaremap=zeros(4,4);

        createNewNum()

        createNewNum()

        drawBlock()

    end

 

 

    function drawBlock(~,~)

        score=sum(sum(squaremap));

        txtScore.String=num2str(score);

        hmap=log(squaremap)/log(2);

        hmap(isinf(hmap))=0;

        for ii=1:4

            for jj=1:4

                tNum=squaremap(ii,jj);

                tH=hmap(ii,jj);

                for kk=1:6

                    tZ=barHdl{ii,jj}(kk).ZData;tZ(tZ>0)=tH+0.01;

                    barHdl{ii,jj}(kk).ZData=tZ;

                    barHdl{ii,jj}(kk).FaceColor=colorlist(tH+1,:);

                    if tNum~=0

                        barHdl{ii,jj}(kk).EdgeColor=[0.7333 0.6784 0.6275].*0.3;

                    else

                        barHdl{ii,jj}(kk).EdgeColor=[0.7333 0.6784 0.6275];

                    end

                end

                if tNum~=0

                    textHdl{ii,jj}.Position(3)=tH+1;

                    textHdl{ii,jj}.FontSize=fontsizelist(tH+1);

                    textHdl{ii,jj}.String=num2str(tNum);       

                else

                    textHdl{ii,jj}.String='';  

                end

            end

        end

        judge()

    end

 

% 在矩阵空白处创建新的数字2或4

    function createNewNum(~,~)

        zerospos=find(squaremap==0);

        temp_pos=zerospos(randi(length(zerospos)));

        temp_num=randi(2)*2;

        squaremap(temp_pos)=temp_num;

    end

 

% 判断游戏结束函数

    function judge(~,~)

        temp_judge_zeros=sum(sum(squaremap==0));

        temp_judge_row=any(any(squaremap(1:3,:)==squaremap(2:4,:)));

        temp_judge_col=any(any(squaremap(:,1:3)==squaremap(:,2:4)));

        if temp_judge_row+temp_judge_col+temp_judge_zeros==0

            gameOver()

        end

    end

 

% gameOver

    function gameOver(~,~)

        answer = questdlg('GAME OVER, what would you like to do', ...

            '2048-3D-GAME', ...

            'restart','quit','restart');

        % Handle response

        switch answer

            case 'restart'

                init()

            case 'quit'

                close all

                clear

        end

    end

end


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/slandarer/article/details/120353524
相关文章
  • C++中类的六大默认成员函数的介绍

    C++中类的六大默认成员函数的介绍
    一、类的默认成员函数 二、构造函数Date(形参列表) 构造函数主要完成初始化对象,相当于C语言阶段写的Init函数。 默认构造函数:无参的构
  • C/C++实现遍历文件夹最全方法总结介绍

    C/C++实现遍历文件夹最全方法总结介绍
    一、filesystem(推荐) 在c++17中,引入了文件系统,使用起来非常方便 在VS中,可以直接在项目属性中调整: 只要是C++17即以上都可 然后头文件
  • C语言实现手写Map(数组+链表+红黑树)的代码

    C语言实现手写Map(数组+链表+红黑树)的代码
    要求 需要准备数组集合(List) 数据结构 需要准备单向链表(Linked) 数据结构 需要准备红黑树(Rbtree)数据结构 需要准备红黑树和链表适配策略
  • MySQL系列教程之使用C语言来连接数据库

    MySQL系列教程之使用C语言来连接数据库
    写在前面 知道了 Java中使用 JDBC编程 来连接数据库了,但是使用 C语言 来连接数据库却总是连接不上去~ 立即安排一波使用 C语言连接 MySQL数
  • 基于C语言实现简单学生成绩管理系统

    基于C语言实现简单学生成绩管理系统
    一、系统主要功能 1、密码登录 2、输入数据 3、查询成绩 4、修改成绩 5、输出所有学生成绩 6、退出系统 二、代码实现 1 2 3 4 5 6 7 8 9 10 11
  • C语言实现共享单车管理系统

    C语言实现共享单车管理系统
    1.功能模块图; 2.各个模块详细的功能描述。 1.登陆:登陆分为用户登陆,管理员登陆以及维修员登录,登陆后不同的用户所执行的操作
  • C++继承与菱形继承的介绍

    C++继承与菱形继承的介绍
    继承的概念和定义 继承机制是面向对象程序设计的一种实现代码复用的重要手段,它允许程序员在保持原有类特性的基础上进行拓展,增加
  • C/C++指针介绍与使用介绍

    C/C++指针介绍与使用介绍
    什么是指针 C/C++语言拥有在程序运行时获得变量的地址和操作地址的能力,这种用来操作地址的特殊类型变量被称作指针。 翻译翻译什么
  • C++进程的创建和进程ID标识介绍
    进程的ID 进程的ID,可称为PID。它是进程的唯一标识,类似于我们的身份证号是唯一标识,因为名字可能会和其他人相同,生日可能会与其他
  • C++分析如何用虚析构与纯虚析构处理内存泄漏

    C++分析如何用虚析构与纯虚析构处理内存泄漏
    一、问题引入 使用多态时,如果有一些子类的成员开辟在堆区,那么在父类执行完毕释放后,没有办法去释放子类的内存,这样会导致内存
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计