WPF实现2048小游戏

前几天空闲的时候,实现了一个2048游戏。除了可以设置行数和列数之外,支持修改显示名称,比如下面,改成神雕侠侣中的角色名称:

游戏逻辑比较简单,大家都应该玩过。

这里主要实现了四个类:Game、GameBoard还有ColorBlock和BoardGridLine。

Game类主要用来实现游戏的控制,比如初始化、添加新的色块、移除色块、控制色块上下左右移动、改变积分,触发游戏结束等。

GameBoard继承自Canvas,实现了色块的合并、检测每个格子的状态等,另外提供了Game控制色块移动的接口。

ColorBlock类继承自Shape类,用于自定义色块的显示,包含XY坐标、颜色、显示文字等依赖属性,可以进行动画,另外还实现了具体的上下左右移动的方法。最初几个颜色是手动设置,等到色块越来越多,就随机生成一种颜色。

BoardGridLine也继承自Shape类,用于绘制Canvas底部的网格。

另外,游戏使用一个简单的文本文件保存设置,包括行数与列数,以及显示文字及其对应颜色,具体操作在Settings类中。

最后,按键事件封装在KeysNavigation中。

图标使用Expression Design制作:

游戏效果如下:

Game.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Documents;

namespace game2048
{
 public class Game
 {
  public enum State
  {
   Idel,
   Start,
   Running,
  }

  ColorBlock[,] fillState;
  private int score = 0;
  private int step = 0;

  public ColorBlock[,] FillState
  {
   get
   {
    return fillState;
   }
  }

  GameBoard board;

  public Game(GameBoard board)
  {
   this.board = board;
   fillState = new ColorBlock[board.RowCount, board.ColumnCount];
   for (int i = 0; i < board.RowCount; i++)
   {
    for (int j = 0; j < board.ColumnCount; j++)
    {
     fillState[i, j] = null;
    }
   }
  }

  public void init()
  {
   Settings.load();
   ColorBlock block = new ColorBlock(board);
   ColorBlock block1 = new ColorBlock(board);
   //FillState[block.XIndex, block.YIndex] = block;
   // FillState[block1.XIndex, block1.YIndex] = block1;
   //BlockList.Add(block);
   //BlockList.Add(block1);
  }

  public void addNew()
  {
   if (board.hasNoPlace())
   {
    gameOver(false);
    return;
   }
   ColorBlock block = new ColorBlock(board);
   //FillState[block.XIndex, block.YIndex] = block;
   //BlockList.Add(block);
  }

  public void remove(int xIndex,int yIndex)
  {
   if (FillState[yIndex, xIndex] != null)
   {
    board.Children.Remove(FillState[yIndex, xIndex]);
    FillState[yIndex, xIndex] = null;
   }
  }

  public void toLeft()
  {
   bool add = false;
   for (int i = 0; i < board.ColumnCount; i++)
   {
    for (int j = 0; j < board.RowCount; j++)
    {
     if (FillState[j, i] != null)
     {
      add |= FillState[j, i].moveLeft();
     }
    }
   }
   if (add)
   {
    addNew();
    fireSetpChanged();
   }
  }

  public void toRight()
  {
   bool add = false;
   for (int i = board.ColumnCount-1; i >=0 ; i--)
   {
    for (int j = 0; j < board.RowCount; j++)
    {
     if (FillState[j, i] != null)
     {
      add |= FillState[j, i].moveRight();
     }
    }
   }
   if (add)
   {
    addNew();
    fireSetpChanged();
   }
  }

  public void toUp()
  {
   bool add = false;
   for (int i = 0; i < board.ColumnCount; i++)
   {
    for (int j = 0; j < board.RowCount; j++)
    {
     if (FillState[j, i] != null)
     {
      add |= FillState[j, i].moveUp();
     }
    }
   }
   if (add)
   {
    addNew();
    fireSetpChanged();
   }
  }

  public void toDown()
  {
   bool add = false;
   for (int i = 0; i < board.ColumnCount; i++)
   {
    for (int j = board.RowCount-1; j >=0; j--)
    {
     if (FillState[j, i] != null)
     {
      add |= FillState[j, i].moveDown();
     }
    }
   }
   if (add)
   {
    addNew();
    fireSetpChanged();
   }
  }

  public delegate void onScoreChange(int score);
  public event onScoreChange onScoreChangeHandler;
  public delegate void onStepChange(int step);
  public event onStepChange onStepChangeHandler;
  public delegate void onGameOver(bool success);
  public event onGameOver onGameOverHandler;

  public void fireSetpChanged()
  {
   step++;
   if (onStepChangeHandler != null)
    onStepChangeHandler(step);
  }

  /// <summary>
  /// 增加积分
  /// </summary>
  /// <param name="offset"></param>
  public void incScore(int offset)
  {
   score += offset;
   if (onScoreChangeHandler != null)
   {
    onScoreChangeHandler(score);
   }
  }

  public void gameOver(bool success)
  {
   if (onGameOverHandler != null)
   {
    onGameOverHandler(success);
   }
  }

  public void reset()
  {
   score = 0;
   step = 0;
   if (onStepChangeHandler != null)
    onStepChangeHandler(step);
   if (onScoreChangeHandler != null)
    onScoreChangeHandler(score);
   for (int i = 0; i < board.RowCount; i++)
   {
    for (int j = 0; j < board.ColumnCount; j++)
    {
     remove(i, j);
    }
   }
  }
 }
}

GameBoard.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Diagnostics;

namespace game2048
{
 public class GameBoard : Canvas, IControlable
 {
  private int rowCount = 4;

  public int RowCount
  {
   get
   {
    return rowCount;
   }
   set
   {
    rowCount = value;
   }
  }

  private int columnCount = 4;
  public int ColumnCount
  {
   get
   {
    return columnCount;
   }
   set
   {
    columnCount = value;
   }
  }

  Game game = null;

  public GameBoard()
  {
   this.Focusable = true;
   this.Focus();
   this.reset();
  }

  public void reset()
  {
   Settings.load();
   RowCount = Settings.rowCount;
   ColumnCount = Settings.columnCount;
  }

  public void init(Game game)
  {
   this.game = game;
   game.init();
  }

  public void toLeft()
  {
   game.toLeft();
   Debug.WriteLine("Left");
  }

  public void toRight()
  {
   game.toRight();
   Debug.WriteLine("Right");
  }

  public void toUp()
  {
   game.toUp();
   Debug.WriteLine("Up");
  }

  public void toDown()
  {
   game.toDown();
   Debug.WriteLine("Down");
  }

  //合并,是否继续
  public bool union(int xIndex, int yIndex, Direction dirct)
  {
   switch (dirct)
   {
    case Direction.Left:
     game.remove(xIndex - 1, yIndex);
     break;
    case Direction.Right:
     game.remove(xIndex + 1, yIndex);
     break;
    case Direction.Up:
     game.remove(xIndex, yIndex - 1);
     break;
    case Direction.Down:
     game.remove(xIndex, yIndex + 1);
     break;
    default:
     break;
   }
   bool ret = game.FillState[yIndex, xIndex].changeText();
   if (ret)
   {
    game.gameOver(true);
    return false;
   }
   game.incScore(game.FillState[yIndex, xIndex].TextIndex);
   return true;
  }

  public int getState(int xIndex, int yIndex)
  {
   if (xIndex < 0 || xIndex > columnCount - 1)
    return 0;
   if (yIndex < 0 || yIndex > rowCount - 1)
    return 0;
   if (game.FillState[yIndex,xIndex] == null)
    return 0;
   return game.FillState[yIndex, xIndex].TextIndex;
  }

  public bool hasNoPlace()
  {
   return this.Children.Count == this.RowCount * this.ColumnCount+1;
  }

  public bool isLocationFilled(int xIndex,int yIndex)
  {
   if (xIndex < 0 || xIndex > columnCount-1)
    return true;
   if (yIndex < 0 || yIndex > rowCount-1)
    return true;
   if (game.FillState[yIndex, xIndex] == null)
    return false;
   return game.FillState[yIndex, xIndex].TextIndex>0;
  }

  public void setState(int xIndex,int yIndex,ColorBlock block)
  {
   game.FillState[yIndex, xIndex] = block;
  }
 }
}

源码下载地址:2048小游戏

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 详解从零开始---用C#制作扫雷游戏

    学C#的原因其实挺简单的,因为一直对游戏挺感兴趣,查了下比较流行的游戏引擎Unity的主要开发语言是C#,所以就决定从C#入手,学学面向对象的编程方法. 以前基本都做的是嵌入式开发,做嵌入式久了,基本上只用C语言,C语言面向过程的特性在嵌入式编程这种资源极度受限的情况确实十分有利,但这种方式在面对大型软件的开发的时候就很难胜任了.编程的模式其实是一种思维习惯,习惯久了以后,想改变确实是一个艰难的过程··· 说起C#,其实在大学的时候学过一个学期,说来惭愧那时候倒也没把它当一门面向对象的语言(其实

  • C#在Unity游戏开发中进行多线程编程的方法

    在这之前,有很多人在质疑Unity支不支持多线程,事实上Unity是支持多线程的.而提到多线程就要提到Unity非常常用的协程,然而协程并非真正的多线程.协程其实是等某个操作完成之后再执行后面的代码,或者说是控制代码在特定的时机执行.而多线程在Unity渲染和复杂逻辑运算时可以高效的使用多核CPU,帮助程序可以更高效的运行.本篇主要介绍在Unity中如何使用多线程. 首先引入C#中使用多线程的类库 using System.Threading; 创建线程实例的四种方式 一.线程执行无参方法 构造

  • WPF实现魔方小游戏

    今天给大家带来的是一块用WPF 实现魔方的小游戏,先看一下效果图 代码如下,先写一个类,用来判断是否可以移动 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _0705 { class ClassWay { public ClassWay(int num) { if (num < 9 || (num > 17 && num < 2

  • C#面向对象编程之猜拳游戏实现方法

    本文实例讲述了C#面向对象编程之猜拳游戏实现方法.分享给大家供大家参考.具体实现方法如下: 1.需求 现在要制作一个游戏,玩家与计算机进行猜拳游戏,玩家出拳,计算机出拳,计算机自动判断输赢. 2.需求分析 根据需求,来分析一下对象,可分析出:玩家对象(Player).计算机对象(Computer).裁判对象(Judge). 玩家出拳由用户控制,使用数字代表:1石头.2剪子.3布 计算机出拳由计算机随机产生 裁判根据玩家与计算机的出拳情况进行判断输赢. 3.类对象的实现 ①.玩家类示例代码: 复制

  • C#贪吃蛇游戏实现分析

    今天无聊突发奇想做个贪吃蛇,虽然网上很多这东西了,不过自己写的感觉还行吧 贪吃蛇分析 游戏规则: 1.蛇起始长度5,每吃一个食物增加1,最大15过关 2.蛇用蓝色表示,食物用绿色,障碍物用黑色 3.当蛇碰到自己.墙壁.障碍物则游戏失败 4.方向键控制蛇的移动方向,蛇不可反方向移动,如正在向上移动,不能马上向下,只能向左.右.上运动 5.每过关一次速度提升一次 大概思路: 1.地图用网格的形式表示,蛇由方格组成,保存在list中 2.1中提到了方格,方格保存的内容有,颜色,坐标,是否可以通过,是否

  • C#拼图游戏编写代码

    本文设计了C#拼图游戏程序,供大家参考,具体内容如下 功能描述: 1.用户自定义上传图片 2.游戏难度选择:简单(3*3).一般(5*5).困难(9*9)三个级别 3.纪录完成步数 模块: 1.拼图类 2.配置类 3.游戏菜单窗口 4.游戏运行窗口 代码文件VS2013版本: 下载链接: 拼图游戏 --------------------------------------------------我叫分割线---------------------------------------------

  • C# 游戏外挂实现核心代码

    最近经朋友介绍开始玩 密传 网络游戏 升级升级,突然觉得太费键盘,于是自己用C#写了一个程序,想代替我的操作,自己去打怪物,自己升级 用这个东西升了好多级了,现在把源码贴出来,和大家共享,欢迎大家批评指正,感激不尽. 程序大概分成两个部分,一个部分是类库,一个是应用程序 大概的思路就是找到游戏进程的主窗口句柄,然后发送游戏按键消息(模拟按键). XDF.GamePlugInCommon 类库项目 //API.cs 文件,定义一些常用API函数及常量 using System; using Sys

  • C#利用控件拖拽技术制作拼图游戏

    主要实现的功能: 1.程序附带多张拼图随机拼图. 2.可手动添加拼图. 3.游戏成功判断. 4.30秒超时判断. Puzzle.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms

  • C#实现的24点游戏实例详解

    本文实例分析了C#实现的24点游戏.分享给大家供大家参考.具体如下: 1. 24点游戏规则及算法 规则:给出4个自然数,找出能够求出24的四则运算式,要求数字不能重复使用 分析: 本算法是一种暴力求解法: 给出任意两个数字,可以进行6种四则运算,求出最多6个值.以数字a和b为例,有: 加(a+b).减(a-b).被减(b-a).乘以(a*b).除以(a/b)和除(b/a) abcd共计四个数,如果顺序固定,则有5种计算顺序(★代表上面6种四则运算中的一种): ((a★b)★c)★d.(a★b)★

  • C#实现的算24点游戏算法实例分析

    本文实例讲述了C#实现的算24点游戏算法.分享给大家供大家参考.具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Calc24Points { public class Cell { public enum Type { Number, Signal } public int Number; public ch

随机推荐