`

麻将和牌源代码——java

    博客分类:
  • game
阅读更多
因为觉得还是服务器判断和牌比较好。所以把flex代码的改成java的了
package util;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import edu.emory.mathcs.backport.java.util.Arrays;

//检查是否糊了
public class WithCard {
	private List<Integer> wan;
	private List<Integer> tiao;
	private List<Integer> bing;
	private List<Integer> feng;
	public WithCard(){
		this.wan=new ArrayList<Integer>();
		this.tiao=new ArrayList<Integer>();
		this.bing=new ArrayList<Integer>();
		this.feng=new ArrayList<Integer>();
	}
	
	public boolean checkIsHu(String value){
		String checkArray[]=value.split(",");
		parseArrayToList(checkArray);
		return startCheck();
	}
	private boolean startCheck(){
		try {
			this.checkSingleMah(wan, 1);
			this.checkSingleMah(tiao, 2);
			this.checkSingleMah(bing, 3);
			this.checkSingleMah(feng, 4);
		} catch (SuccessException e) {
			System.out.println("糊了");
			return true;
			
			//e.printStackTrace();
		}
		return false;
	}
	//查看单独的一个如wan中取出相同 的看剩余是否能匹配组
	private void checkSingleMah(List<Integer> list,int current) throws SuccessException{
		//System.out.println("wwww"+list.toString());
		Set<Integer> sames=this.serachSame(list);
		
		out:for(int i=0;i<sames.size();i++){
			List<Integer> newSames=this.getNewList(sames);
			List<Integer> newList=this.getNewList(list);
			
			newList.remove(new Integer(newSames.get(i)));
			newList.remove(new Integer(newSames.get(i)));
			
			newList=this.sortList(newList);
			System.out.println("newList"+newList.toString());
			if(this.checkIsGroup(newList)){
				if(checkOtherLever(current)){
					throw new SuccessException();
				}
			}else{
				if(i==sames.size()-1){
					break out;
				}else{
					continue out;
				}
			}
		}
	}
	
	private boolean checkOtherLever(int current) {
		boolean success=false;
		switch(current){
			case 1:success=this.check(tiao)&&this.check(bing)&&this.check(feng);break;
			
			case 2:success=this.check(wan)&&this.check(bing)&&this.check(feng);break;
			
			case 3:success=this.check(wan)&&this.check(tiao)&&this.check(feng);break;
			
			case 4:success=this.check(wan)&&this.check(tiao)&&this.check(bing);break;
		}
		return success;
		
	}
	private boolean check(List<Integer> list){
		return this.checkIsGroup(list);
	}
	
	//从list中查找两个相同的数
	private Set<Integer> serachSame(List<Integer> list){
//		List<Integer> sames=new ArrayList<Integer>();
		Set<Integer> sames=new HashSet<Integer>();
		Map<Integer,Integer> maps=new HashMap<Integer,Integer>();
		for(int i=0;i<list.size();i++){
			if(!maps.containsValue(list.get(i))){
				maps.put(i, list.get(i));
			}else{
				sames.add(list.get(i));
			}
		}
		System.out.println("sames_____"+sames.toString());
		
		return sames;
	}
	
	//检查是否是组
	public boolean checkIsGroup(List<Integer> list){
		if(list.size()%3!=0){
			return false;
		}
		if(list.size()==0){
			return true;
		}
		switch(list.size()){
			case 3:return checkIsAgroup(list);
			case 6:return checkIsTwoGroup(list);
			case 9:return checkIsThreeGroup(list);
			case 12:return checkIsFourGroup(list);
		}
		return false;
	}
	private boolean checkIsThreeGroup(List<Integer> list) {
		if(this.checkIsAgroup(list)){
//			this.splice(0, 3, list);
			return this.checkIsTwoGroup(list.subList(3, list.size()));
		}else if(list.get(0)==list.get(1)){
			List<Integer> newList=this.getNewList(list);
			if(!this.checkThreeFirstThing(list.get(0),list)){
				List<Integer> six=this.getListByIndex(list,1,3,4,6,7,8);
				List<Integer> three=this.getListByIndex(list,0,2,5);
				if(this.checkIsAgroup(three)&&this.checkIsTwoGroup(six)){
					return true;
				}
			}else{
				return true;//这怎么还是true????
			}
			
		}else if(list.get(0)+1==list.get(1)){
			List<Integer> newList=this.getNewList(list);
			if(!this.checkThreeFirstThing(list.get(1)+1, newList)){
				System.out.println("执行了sssssss");
				return false;
			}else{
				return true;
			}
		}else{
			return false;
		}
		return false;
	}
	private boolean checkThreeFirstThing(int num,List<Integer> list){
		List<Integer> newlist=list.subList(2, list.size());//删除前2个元素,查看剩余的值,是否是2组
		int index=serachSpecify(num,newlist);
		//var index:int=serachSpecify(y,arrs);//找到指定值的索引值
		if(index!=-1){
			//list=list.subList(index, index+2);//因为api中说第2个参数不包含在内,所以+2
			//this.splice(index, 1, newlist);
			newlist.remove(new Integer(newlist.get(index)));
			
			System.out.println("checkThreee"+newlist.toString());
			return this.checkIsTwoGroup(newlist);
			//throw new Error(arrs.toString()+"shengxiade shushi ");
		}else{
			return false;
		}
	}
	private int serachSpecify(int num, List<Integer> list) {
		System.out.println("要查找的书"+num+":"+list.toString());
		for(int i=0;i<list.size();i++){
			if(list.get(i)==num){
				System.out.println(list.get(i)+"查找到得数是"+"index"+i);
				return i;
			}
		}
		return -1;
	}
	private boolean checkIsFourGroup(List<Integer> list) {
		List<Integer> newList=this.getNewList(list);
		if(this.checkIsAgroup(list)){
			return this.checkIsThreeGroup(newList.subList(3, list.size()));
		}else{
			List<Integer> three;
			List<Integer> newArray;
			try {
				int threeIndex=this.serachSpecify(list.get(2)+1, list);
				
				System.out.println(list.get(2)+"bbbbbbbbbbbb");
				three = this.getListByIndex(list,0,2,threeIndex);
				
				System.out.println(list.get(0)+"___"+list.get(2)+"  "+list.get(threeIndex));
				System.out.println(list.get(threeIndex)+"getThreeIndex"+threeIndex);
				
				newArray = this.getNewList(list);
				
				System.out.println(newArray.toString()+"新Array");
				
				this.splice(threeIndex, 1, newArray);
				
				this.splice(2, 1, newArray);
				
				this.splice(0, 1, newArray);
			} catch (RuntimeException e) {
				System.out.println("出错次数");
//				e.printStackTrace();
				return false;
			}
			
//			System.out.println(newArray.toString()+"删除后Array");
//			System.out.println(three+"three__");
			return this.checkIsAgroup(three)&&this.checkIsThreeGroup(newArray);
			
		}
		
	}
	private boolean checkIsTwoGroup(List<Integer> list) {
		//现看最简单方式123 456 ,111 444,111 456等组合
		if(checkIsAgroup(list)&&isgroupUtil(3,4,5,list)){
			return true;
		}else{
			//否则的话
			return this.checkIsTwoGroupThing(list);
		}
	}
	//检查是否两组的第2种情况
	private boolean checkIsTwoGroupThing(List<Integer> list){
		if(isgroupUtil(0,1,3,list)&&this.isgroupUtil(2, 4, 5, list)){
			return true;
		}else if(isgroupUtil(0,2,4,list)&&this.isgroupUtil(1, 3, 5, list)){
			return true;
		}else{
			return false;
		}
	}
	
	private boolean checkIsAgroup(List<Integer> list) {
		return isgroupUtil(0,1,2,list);
	}
	private boolean isgroupUtil(int index,int index2,int index3,List<Integer> list){
		if(list.get(index)+1==list.get(index2)&&list.get(index2)+1==list.get(index3)){
			return true;
		}else if(list.get(index)==list.get(index2)&&list.get(index2)==list.get(index3)){
			return true;
		}else{
			return false;
		}
	}
	
	private List<Integer> getListByIndex(List<Integer> list,int ...args){
		List<Integer> newList=new ArrayList<Integer>();
		for(int i=0;i<args.length;i++){
			System.out.println("参数是_________"+args[i]);
			newList.add(list.get(args[i]));
			
		}
		return newList;
	}
	
	
	private void parseArrayToList(String[] arr){
		for(int i=0;i<arr.length;i++){
			initEveryList(Integer.parseInt(arr[i]));
		}
	}
	private void initEveryList(int num){
		Integer ac=num/9;
		switch(ac){
			case 0:wan.add(num);break;
			case 1:tiao.add(num);break;
			case 2:bing.add(num);break;
			case 3:feng.add(num);break;
 		}
	}
	private List<Integer> getNewList(Collection list){
		return new ArrayList(list);
	}
	//对list进行排序
	private List<Integer> sortList(List<Integer> list){
		Integer[] li=new Integer[list.size()];
		list.toArray(li);
		Arrays.sort(li);
		List<Integer> newList=new ArrayList<Integer>();
		for(int i=0;i<li.length;i++){
			newList.add(li[i]);
		}
		return newList;
	}
	//从指定位置删除指定个元素
	private void splice(int fromIndex,int count,List<Integer> list){
		List<Integer> li=new ArrayList();
		for(int i=0;i<count;i++){
			li.add(list.get(fromIndex+i));
		}
		//从list中删除指定元素
		for(int i=0;i<count;i++){
			list.remove(new Integer(li.get(i)));//这有问题原来是list.get(i)应该是li.get(i);
		}
	}
	
	
	public static void main(String args[]){
		WithCard wc=new WithCard();
		System.out.println(wc.checkIsHu("" +
				"0,1,2," +
				"3,4,5," +
				"1,2,3," +
				"3,4,5," +
				"5,5")+"hu le??");
		//System.out.println(wc.checkIsAgroup(list))
		
		
		List<Integer> list=new ArrayList<Integer>();
		list.add(0);
		list.add(1);
		list.add(2);
		
		list.add(3);
		
		list.add(4);
		
		list.add(5);
		
	
		
		
		list.add(1);
		
		list.add(2);
		
		
		
		list.add(3);
		
		
		
		
		
		
		list.add(5);
		
		list.add(5);
		list.add(5);
		System.out.println(wc.checkIsGroup(list)+"是否是组"+list.size());
//		List l=wc.sortList(list);
//		System.out.println(l.toString());
		
//		System.out.println(list.toString());
//		System.out.println(list.remove(new Integer(2)));
//		test(list);
//		System.out.println(list.toString());
	}
	public static void test(List list){
		List li=new ArrayList(list);
		li.remove(0);
	}
	class SuccessException extends Exception{

		/**
		 * 
		 */
		private static final long serialVersionUID = -4566456691989778658L;

		public SuccessException() {
			super();
		}
		public SuccessException(String arg0) {
			super(arg0);
			
		}
		@Override
		public String getMessage() {
			return super.getMessage();
		}
		
		
		
	}
	class Same{
		int index;
		int value;
	}
}

 

分享到:
评论
2 楼 fykyx521 2012-03-12  
木有了 
1 楼 vincentlh 2012-03-08  
朋友 能不能分享一下麻将的其他源码? 求赐教

相关推荐

    flex麻将和牌源代码

    《flex麻将和牌源代码解析》 在信息技术领域,游戏开发是其中不可或缺的一部分,而麻将作为深受大众喜爱的传统娱乐活动,其电子化形式——网络麻将,更是吸引了众多开发者参与其中。本篇我们将深入探讨一个基于Flex...

    触屏Java游戏 触屏三国麻将.jar(含截图+源代码 )

    触屏Java游戏 触屏三国麻将.jar(含截图+源代码 )触屏Java游戏 触屏三国麻将.jar(含截图+源代码 )触屏Java游戏 触屏三国麻将.jar(含截图+源代码 )触屏Java游戏 触屏三国麻将.jar(含截图+源代码 )触屏Java游戏...

    JAVA麻将源代码

    【JAVA麻将源代码】是一个基于Java编程语言实现的麻将游戏项目。这个项目包含了实现麻将游戏逻辑所需的各类组件和文件,适合对Java编程和游戏开发感兴趣的开发者进行学习和研究。下面将详细阐述其中的关键知识点。 ...

    麻将源代码

    在麻将源代码中,Java可能用于编写后端逻辑,处理玩家数据、游戏状态管理、网络通信等。它强大的类库和稳定的性能使得它在复杂的游戏系统中得到广泛应用。 【Unity】:Unity是一款流行的跨平台游戏引擎,支持2D和3D...

    麻将游戏源代码.rar

    这篇文档将深入解析《麻将游戏源代码》的相关知识点,主要涉及麻将游戏的开发、MFC框架的应用、资源管理和游戏逻辑等内容。首先,我们要明白“麻将游戏”是一种基于策略和概率的传统娱乐活动,将其转化为电子游戏...

    MFC做的麻将连连看源代码

    本项目是利用MFC技术实现的一款经典游戏——麻将连连看,其源代码不仅可直接运行,还包含了背景音乐和鼠标点击音效,增加了游戏的趣味性和用户体验。 一、MFC基础与应用 MFC的主要优点在于它封装了Windows API,...

    决战象棋麻将游戏源代码

    决战象棋麻将游戏源代码

    麻将游戏AI源代码

    【麻将游戏AI源代码】是基于C/C++编程语言实现的一款桌面游戏,专为WINDOWS操作系统设计,能够编译并运行。这个项目的核心在于其电脑AI(人工智能)算法,使得计算机可以与玩家进行智能对战。下面我们将深入探讨该源...

    麻将识别源代码Demo实例

    本文将探讨一个基于人工智能的麻将识别源代码Demo实例,它不仅能够识别麻将,还可以进行定制化物体识别,展示了AI技术在游戏和娱乐领域的强大潜力。 首先,麻将识别的核心是图像处理和深度学习算法。图像处理通常...

    四川麻将单机版 unity源代码

    【四川麻将单机版 unity源代码】是一款基于Unity引擎开发的麻将游戏项目,适用于学习和研究游戏开发。Unity是一款强大的跨平台游戏开发工具,支持2D和3D游戏的制作,广泛应用于移动设备、桌面平台以及网络游戏的开发...

    C麻将源代码.rar

    【标题】"C麻将源代码.rar"所包含的是一个使用C语言编写的麻将游戏的源代码。源代码是程序员用高级编程语言书写的原始代码,它揭示了程序的内部工作原理,是理解软件功能和设计思路的关键。 【描述】提到“希望大家...

    长沙麻将算法和AI源代码

    本项目提供了使用链表和STL实现的长沙麻将算法和AI的四个不同版本的源代码。 首先,让我们来探讨一下链表这一数据结构。链表是一种动态数据结构,它不像数组那样需要预先分配连续的内存空间。在链表中,每个元素...

    android开源麻将游戏

    Andjong是一款基于Android平台的开源麻将游戏,其源代码提供了丰富的学习资源,对于想要深入了解Android游戏开发,尤其是麻将类游戏开发的开发者来说,是一个不可多得的实践案例。这款项目由日本开发者贡献,尽管...

    Java 45款 游戏源代码

    这份"Java 45款 游戏源代码"的压缩包包含了一系列经典和有趣的Java游戏,对于学习Java编程、游戏开发或者寻求灵感的开发者来说,是一个极其宝贵的资源库。 首先,让我们逐一探讨这些游戏类型及其相关的编程知识点:...

    九江麻将的源代码

    【九江麻将的源代码】是一份关于开发麻将游戏的编程资源,主要包含了多个与麻将游戏逻辑和界面控制相关的源文件。这份源代码适用于对游戏开发、算法设计以及UI实现感兴趣的IT人员,特别是对于想要深入理解麻将游戏...

    cocos2dx+JS写的 棋牌 麻将源代码 客户端+服务器

    cocos2dx+JS写的 棋牌 麻将源代码。 客户端+服务器 框架完整,直接可以运行。支持htm5,安卓,IOS。 cocos2dx+JS写的 棋牌 麻将源代码。 客户端+服务器 框架完整,直接可以运行。支持htm5,安卓,IOS。

    一个用VC++编成的麻将游戏源代码

    【标题】"一个用VC++编成的麻将游戏源代码"揭示了这个资源是一个使用Microsoft Visual C++(简称VC++)编程语言开发的麻将游戏的完整源代码。VC++是微软公司推出的一种集成开发环境,它支持C++编程,特别适用于...

    使用Java写的麻将小程序。只支持单机,电脑玩家水平还可以。

    6. `src`:源代码目录,Java源代码通常放在这里,可能包含了游戏的主要逻辑、UI界面以及AI算法等。 综合以上信息,这个Java麻将小程序项目是一个包含了游戏逻辑、AI算法、用户界面以及可能的本地服务器端处理的完整...

    基于Javascript的微信小程序-麻将馆预约小程序,前后端完整代码+源代码+文档说明+安装手册

    麻将馆预约小程序:用户可以通过该小程序选择麻将馆、预约时间和人数,并进行在线支付。同时,麻将馆也可以通过该小程序管理预约信息,包括查看预约情况、接受或拒绝预约等操作。通过麻将馆预约小程序,用户和麻将馆...

Global site tag (gtag.js) - Google Analytics