Jump to content
  • 0

Fastlist -> Arraylist Acis


L2shaken

Question

http://imgur.com/a/1oYgm

protected int getWinnerTeam()
	{
		ArrayList<EventTeam> t = new ArrayList<>();
		
		for (EventTeam team : teams.values())
		{
			if (t.size() == 0)
			{
				t.add(team);
				continue;
			}
			
			if (team.getScore() > t.getFirst().getScore())
			{
				t.clear();
				t.add(team);
				continue;
			}
			
			if (team.getScore() == t.getFirst().getScore())
				t.add(team);
		}
		
		if (t.size() > 1)
			return 0;
		
		return t.getFirst().getId();
	}

getFirst () must be replaced by what?

Edited by L2shaken
Link to comment
Share on other sites

Recommended Posts

  • 0

Bro, im noob too but wait...

You cant just look inside of the EventTeam what functions are there and take the correct one?

 

Edit: I am confused, Are you trying to get the score of two teams from a list ?

getFirst must be replaced with the wanted team of the list.. t.get() to get the team , 0 should work

Edited by ⏇Melron⏇℠Abs
Link to comment
Share on other sites

  • 0

Bro, im noob too but wait...

You cant just look inside of the EventTeam what functions are there and take the correct one?

/*
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later
 * version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program. If not, see <http://www.gnu.org/licenses/>.
 */
package net.sf.l2j.gameserver.event;

public class EventTeam implements Comparable<EventTeam>
{
	private int score;
	private String name;
	private int[] nameColor;
	private int[] startPos;
	private int id;
	
	public EventTeam(int id, String name, int[] color, int[] startPos)
	{
		this.id = id;
		this.name = name;
		this.startPos = startPos;
		score = 0;
		nameColor = color;
	}
	
	@Override
	public int compareTo(EventTeam second)
	{
		if (getScore() > second.getScore())
			return 1;
		else if (getScore() < second.getScore())
			return -1;
		
		return 0;
	}
	
	protected String getHexaColor()
	{
		return (nameColor[0] > 15 ? Integer.toHexString(nameColor[0]) : "0" + Integer.toHexString(nameColor[0])) + (nameColor[1] > 15 ? Integer.toHexString(nameColor[1]) : "0" + Integer.toHexString(nameColor[1])) + (nameColor[2] > 15 ? Integer.toHexString(nameColor[2]) : "0" + Integer.toHexString(nameColor[2]));
	}
	
	protected int getId()
	{
		return id;
	}
	
	protected String getName()
	{
		return name;
	}
	
	protected int getScore()
	{
		return score;
	}
	
	protected int[] getTeamColor()
	{
		return nameColor;
	}
	
	protected int[] getTeamPos()
	{
		return startPos;
	}
	
	protected void increaseScore()
	{
		score++;
	}
	
	protected void increaseScore(int ammount)
	{
		score += ammount;
	}
	
	protected void setScore(int ammount)
	{
		score = ammount;
	}
}

EventTeam.java

Link to comment
Share on other sites

  • 0

I dont rly know what to tell you about how u can fix that

 

Also why are you using list for just 2 teams?

Edited by ⏇Melron⏇℠Abs
Link to comment
Share on other sites

  • 0

wtf is this trash code...

 

Just tell me that u dont do these things to check the scores of 2 teams..

 

Edit: There is a whole COMPARETO why make that sh1tty code to get the winner anyway.

Edited by bravetobe
Link to comment
Share on other sites

  • 0
return t.get(0).getId();

Dont solve his problem and let him code something not sh1tty like he did.

He got reported anyway "What to add instead of getFirst() "... 

tfw he doesnt know how to get(0) and he cant think that he can actually use the code which already exists

Edited by bravetobe
Link to comment
Share on other sites

  • 0

Feel free to spoonfeed him the answer

And then another fail server with 100% class balance etc will take place at the private servers section to finish what is left from the l2 community. :lol:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...