Quantcast
Viewing latest article 3
Browse Latest Browse All 10

Why do my matching functions match more gems than they should?

Hey there. I am new to unity programming, so I thought I could start with something rather simple and probably even overdone, and create a match 3 game. I found some tutorials here and there, and managed to start with something that a person can actually play, but I ran into a few problems that I don't seem to be able to fix. I noticed that unity Answers are for one specific question, so I'll try to be as specific as possible and focus on the most baffling issues. In my game I have a script that describes the behavior of the "board". This is the script responsible for generating the "gems", for checking the swapping and pretty much everything that is not specific to one particular gem. In there, I have a function that is responsible for creating lists with the neighboring gems that have the same color with a specific gem. This function is called first of all when the player makes a swap, so I can see if there is a match, and also it's used for every gem on the board right after every move so any other matches that might have occurred will disappear as well. The code of this function is here: public void ConstructMatchList (string color, Gem gem, int XCoord, int YCoord, ref List MatchList) { if (gem == null) { return; } else if (gem.gemColor != color) { return; } else if (MatchList.Contains (gem)) { return; } else { MatchList.Add(gem); if (XCoord == gem.XCoord || YCoord == gem.YCoord) { foreach (Gem g in gem.Neighbors) { ConstructMatchList(color, g, XCoord, YCoord, ref MatchList); } } } } The problem with this function is that it detects ALL neighboring gems of the same color, including the ones that do not form a straight line with the gem passed as a parameter in it. To solve this problem I use another function that divides the list in two different ones, one for the x axis, one for the y axis. And here it is (Note: the constant ammountToMatch is set to 3): public void FixMatchList (Gem gem, List listToFix) { //This function is needed to make sure our match lists contain the proper amount of gems because //without it, the function ConstructMatchList counts all gems of the same color, regardles of //being vertically or horizontally attached to the gem that was swapped. List rows = new List(); List collumns = new List(); for (int i=0; i= amountToMatch) { isMatched = true; for (int i=0; i= amountToMatch) { isMatched = true; for (int i=0; i

Viewing latest article 3
Browse Latest Browse All 10

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>