Jump to content
  • 0

Fastlist -> Arraylist Acis


Question

Posted (edited)

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

Recommended Posts

  • 0
Posted

I wouldn't have done it the way he did as it doesn't meet my standard (static method would be to disallow override bad impl eg), yet that's works as well and shouldn't be blamed. It's just for arguing really.

  • 0
Posted (edited)

I wouldn't have done it the way he did as it doesn't meet my standard (static method would be to disallow override bad impl eg), yet that's works as well and shouldn't be blamed. It's just for arguing really.

 

For gods sake its just a convenience method that toggles last known players instance pointer for global access on the project... Should I make another class, will that make any difference? I don't get it why we are even talking about this. Codecrash was desperately squeezing my codes line by line to find a flaw so he can trashtalk about. Then he talks about standards he doesn't even know about.

Edited by xxdem
  • 0
Posted

 I argue with SweeTs

But I am not arguing with ya. No one gives a damn about you :lol:

 

 

That's when people that don't understand shit enter a debate

I was sure you are lurking around and sooner or later you show up :lol:

  • 0
Posted

For gods sake its just a convenience method that toggles last known players instance pointer for global access on the project... Should I make another class, will that make any difference? I don't get it why we are even talking about this. Codecrash was desperately squeezing my codes line by line to find a flaw so he can trashtalk about. Then he talks about standards he doesn't even know about.

Yeah I hate those util class as well.

 

Just it's not the purpose of interface static method but as I said it works great that way and can understand why you did it.

  • 0
Posted (edited)

Yeah I hate those util class as well.

 

Just it's not the purpose of interface static method but as I said it works great that way and can understand why you did it.

 

I am glad you get the point.

 

I agreed that static methods don't belong on interfaces for readability reasons, but a person with real knowledge knows that in the very end theres no actual difference. Static methods always belong to the class and even interfaces are always backed by one.

 

I bet that these noobs don't really know that even enums are actually classes and their values just pointers to self singleton references

Edited by xxdem
  • 0
Posted

It's so fucking hilarious. You judge EVERYONE in here (in a bad manner), for imperfect coding, i mean hell, you judged me without even looking at my coding and now that Elfo does the same thing to you, you feel the need to defend yourself.

 

That's what i meant by "a taste of your own medicine" and for some reason you and Sdw thought i was judging you as well, or licking Elfo. My point was, that if you judge everyone for the slightest things, be prepared for the same to happen to you.

  • 0
Posted

Yet, when you say things such as "Good job owning him", make sure you understand properly what you just read.

 

 

2 people arguing might be right, or wrong at the same time.

  • 0
Posted (edited)

Yet, when you say things such as "Good job owning him", make sure you understand properly what you just read.

 

 

2 people arguing might be right, or wrong at the same time.

Please read my post again, only thing i said was "well played", which i still believe because it's the first time i see this retard taking a defensive stance and not attacking everyone.

 

 

It's funny to see the man that judges everyone and everything finally getting a taste of his own medicine.

 

Well played Elfo, well played.

Edited by Versus
  • 0
Posted

It's so fucking hilarious. You judge EVERYONE in here (in a bad manner), for imperfect coding, i mean hell, you judged me without even looking at my coding and now that Elfo does the same thing to you, you feel the need to defend yourself.

 

That's what i meant by "a taste of your own medicine" and for some reason you and Sdw thought i was judging you as well, or licking Elfo. My point was, that if you judge everyone for the slightest things, be prepared for the same to happen to you.

 

I welcome it, but his argument was shit, none was supposed to say good played at him

  • 0
Posted (edited)

lol, this topic is a masterpiece... :lol:

Take a step back and literally kiss your own face. This topic is valuable. Worths 4k euro more than  stalonka leech

Crawl back to your cave cause noone loves you :'( sad storki

Edited by AccessDenied
  • 0
Posted

Take a step back and literally kiss your own face. This topic is valuable. Worths 4k euro more than  stalonka leech

Crawl back to your cave cause noone loves you :'( sad storki

Me don't care... :lol:

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • Migrating a legacy Interlude server to PostgreSQL while adding real observability is basically forcing 2006 MMO engineering to attend a 2026 infrastructure conference at gunpoint. PS: which revision of aCis? PS: 🧻what was broken during this whatever you call it.    AAC Guard beign asked to adapt to this be like: - Creating bugs since early 2018
    • OH MY LORDDDDDDDDDDDDDDDDDDDDD   FINALLY
    • TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server!  Create your free account here
    • I came out of my cave as I do once every 5 years. By now, I know nobody really cares about L2, but I still find it fun to experiment. Everything you see here will be free and open source. I have no interest in selling anything.   Long story short, I like to revisit Interlude and apply what I've learned to see how far I can push it. Here's Outerlude, a public fork of aCis for the modern age.   Video demo:   Work that has been done:   Redone the netcode from scratch to be async The NPC AI was completely redone based on Finite State Machines Moved to PostgreSQL and using some of its cool features Lots of config that should be hot reloadable has moved to the database OpenTelemetry instrumentation, where it makes sense, and a Grafana dashboard A built-in REST API for server management A built-in MCP Server for LLMs Nidrah AI, an AI Agent to make managing the server easier Real-time server map view Chat auditing and live snooping A new Fake Players Engine with a Node logic system and a new LLM planner for any behavior Just watch the video   If there is interest in this and I'm happy with it, or I get bored (which I always do), I will open-source it. Let me know what you think and if there is some feature you'd like me to implement.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..