Tournament Drop Down in Game Finder

Suggestions that have been archived.

Moderator: Community Team

User avatar
Coleman
Posts: 5402
Joined: Tue Jan 02, 2007 10:36 pm
Gender: Male
Location: Midwest

Tournament Drop Down in Game Finder

Post by Coleman »

Not a big deal but the tournament drop down is driving me crazy in game finder.

A lot of abandoned or finished tournaments can be found in it (which I understand if you want to find those) but they are mixed in alphabetically with all the active tournaments.

Also, the tournaments I'm running used to appear on the top but now they are mixed in with everything else. :( I'm not sure when this change happened or why.

I'd like it if your own tournaments were alphabetical on top followed by active then finished then abandoned instead of all mixed together as the list is gigantic now.

Priority: 5/5 (If Easy To Code) 4/5 otherwise.
User avatar
lackattack
Posts: 6097
Joined: Sun Jan 01, 2006 10:34 pm
Location: Montreal, QC

Post by lackattack »

The reason some tourneys moved off the top of the list is that they were saved incorrectly with leading spaces.

I agree that the list is becoming cumbersome and next time I ugrade the tournament system I'll try to address this.
timmytuttut88
Posts: 913
Joined: Fri Nov 02, 2007 10:38 pm

tournament game finder

Post by timmytuttut88 »

<Subject>:
Concise Idea: have the game finder for tournaments be shortened

<Body>:
Suggestion Idea: well when your looking through the game finder for your tournament i've noticed the tournament list is as long as hell. I think instead of seeing a list you can type in the name of the tournament and itll show you all the games of it.

Specifics: i already gave them

Why it is needed:since the tournament search bar thing is as long as hell and its only going to get longer.
User avatar
Optimus Prime
Posts: 9665
Joined: Mon Mar 12, 2007 9:33 pm
Gender: Male

Post by Optimus Prime »

Oddly enough, if you just click on the list and start typing it jumps straight to the tournament title you are typing in. ;)
timmytuttut88
Posts: 913
Joined: Fri Nov 02, 2007 10:38 pm

Post by timmytuttut88 »

Optimus Prime wrote:Oddly enough, if you just click on the list and start typing it jumps straight to the tournament title you are typing in. ;)
oops
Dako
Posts: 3987
Joined: Sun Aug 26, 2007 9:07 am
Gender: Male
Location: St. Petersburg, Russia
Contact:

[Suggestion] - enhance finding games belonging to tournamens

Post by Dako »

Right now it is kind of hard to find the games belonging to a certain tournament so I have 3 ideas how to enhance it.
  1. Split tournaments drop-down list in game finder into 2 different drop-downs - active tournaments and inactive/completed tournaments. Will be no more problems naming tournaments starting with ", ', A and other first-ish symbols.
  2. Keep 1 drop-down list but make sections inside of it - first active tournaments, then inactive/completed ones. You can make section by adding "disabled" to an <option> tag inside the select. Also will help to find the game you are looking for.
  3. Make a bb-code to list all the games belonging to a tournament you specify (so it will link to game finder page results with games on the tournament, where you can also specify what games (waiting, finished, active) you are looking for ie [tour=waiting]Name of the tournament[/tour], [tour=finished]Name of the tournament[/tour] and [tour=active]Name of the tournament[/tour]). This isn't very helpful or essential but will simplify it for the orgas and people searching/browsing games.
Discuss please.
User avatar
BaldAdonis
Posts: 2334
Joined: Fri Aug 24, 2007 1:57 am
Location: Trapped in Pleasantville with Toby McGuire

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by BaldAdonis »

As far as I know, the game finder can only check things related to the game. So it can differentiate between tournaments, because they have different labels, and between active/completed games, because they have different states, but it doesn't know whether a tournament is active or complete, because that information is outside of the individual game.

I think if you could limit searches by date (ie. began after 01/01/2009; finished after 10/05/2009; finished before 01/01/2007) then you'd have an ad-hoc solution to your problem, based on information kept in the game log.

That third idea would be very nice for large, league-style tournaments. Often I'll get a PM which says something to the extent of "Go to game finder and search for your team name, password is...", and this code would do just that.
Dako
Posts: 3987
Joined: Sun Aug 26, 2007 9:07 am
Gender: Male
Location: St. Petersburg, Russia
Contact:

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by Dako »

Yes, but you don't consider that list of the tournaments is generated dynamically via php and you can add one more check to the query - if all the tournament games = finished - then tournament is completed.
That is a very simple check and we can even speed that up - add one more boolean column to the tournaments table and store there if it is completed or not. Will save some mysql time for us.
Being a web-developer myself I know how to optimise different processes even if it seems to be impossible ;).
User avatar
Night Strike
Posts: 8509
Joined: Wed Apr 18, 2007 2:52 pm
Gender: Male

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by Night Strike »

Dako wrote:Keep 1 drop-down list but make sections inside of it - first active tournaments, then inactive/completed ones. You can make section by adding "disabled" to an <option> tag inside the select. Also will help to find the game you are looking for.
This is an idea that I've liked for a while. Hopefully at some point we will get the drop down menu to list the active tournament privs first, and then the deactive ones. You can start typing in the name of the tournament in the menu and it will automatically go to it.
Image
User avatar
Optimus Prime
Posts: 9665
Joined: Mon Mar 12, 2007 9:33 pm
Gender: Male

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by Optimus Prime »

Dako wrote:Yes, but you don't consider that list of the tournaments is generated dynamically via php and you can add one more check to the query - if all the tournament games = finished - then tournament is completed.
That won't work. Just because all current tournament games are finished does not mean the tournament is finished, it might only mean that the organizer is still in the process of making more games. ;) In order for it to work the database query needs to run off of whether or not the tournament privileges are active or not.
Dako
Posts: 3987
Joined: Sun Aug 26, 2007 9:07 am
Gender: Male
Location: St. Petersburg, Russia
Contact:

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by Dako »

Optimus Prime wrote:
Dako wrote:Yes, but you don't consider that list of the tournaments is generated dynamically via php and you can add one more check to the query - if all the tournament games = finished - then tournament is completed.
That won't work. Just because all current tournament games are finished does not mean the tournament is finished, it might only mean that the organizer is still in the process of making more games. ;) In order for it to work the database query needs to run off of whether or not the tournament privileges are active or not.
Ok, you got me :) - I don't know exact DB structure and how it works in CC. But you understood the idea. You haven't stated your opinion on the suggestion itself, by the way ;).
User avatar
Optimus Prime
Posts: 9665
Joined: Mon Mar 12, 2007 9:33 pm
Gender: Male

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by Optimus Prime »

Dako wrote:
Optimus Prime wrote:
Dako wrote:Yes, but you don't consider that list of the tournaments is generated dynamically via php and you can add one more check to the query - if all the tournament games = finished - then tournament is completed.
That won't work. Just because all current tournament games are finished does not mean the tournament is finished, it might only mean that the organizer is still in the process of making more games. ;) In order for it to work the database query needs to run off of whether or not the tournament privileges are active or not.
Ok, you got me :) - I don't know exact DB structure and how it works in CC. But you understood the idea. You haven't stated your opinion on the suggestion itself, by the way ;).
It's a suggestion that has been made multiple times and is already on the To-Do list for lackattack. He just has to get to it is all. ;)
User avatar
max is gr8
Posts: 3720
Joined: Sat Jan 21, 2006 6:44 am
Location: In a big ball of light sent from the future

Re: [Suggestion] - enhance finding games belonging to tournamens

Post by max is gr8 »

This can sort of be done now just without the tags.
‹max is gr8› so you're a tee-total healthy-eating sex-addict?
‹New_rules› Everyone has some bad habits
(4th Jan 2010)
User avatar
Qwert
SoC Training Adviser
Posts: 9262
Joined: Tue Nov 07, 2006 5:07 pm
Location: VOJVODINA
Contact:

TWo Tournament box in Game finder

Post by Qwert »

Plain and simple, need to create two tournament boxes-in one all finished,and in other Active tournaments.
With big explosion of more and more tournament,its become step by step hard to find active tournament to check tourny stats.
Every time i need to scrool and scroll up and down to find what i want to find.
Image
NEW REVOLUTION-NEW RANKS PRESS THESE LINK https://www.conquerclub.com/forum/viewt ... 78&start=0
User avatar
Sir. Ricco
Posts: 4555
Joined: Tue Oct 02, 2007 2:33 pm
Gender: Male
Location: Making kingdoms burn and bloodshed start.
Contact:

Re: TWo Tournament box in Game finder

Post by Sir. Ricco »

Yes, I am in full support of this. I get tired of having to scroll and scroll for my tournament.
Image
Image
Image
User avatar
alster
Posts: 3083
Joined: Sun Apr 02, 2006 12:35 pm
Location: Sweden...

Fine tuning: Game finder / tournament search [Suggestion]

Post by alster »

Concise description:
  • Change the game finder / tournament search by categorizing tournaments by year started.
Specifics/Details:
  • An additional menu where searches are made year-by-year is added.
How this will benefit the site and/or other comments:
  • The number of tournaments is increasing pretty quickly. Now, searching for a tournament - even by a short cut search (i.e. hitting a few letters in the menu when one knows the tournament name) - is pretty tedious. By adding a menu allowing searches by year (starting year of the tournament - would suggest that each tourney is labeled by the tournament directors) would allow easier searches (usually one aren't that interested in a tournament that has been over for two years). This is just a clarity/interface suggestion. But think it would be good in the long-run. Also, perhaps no need to back-track. All ongoing/finished tournaments could just be put in a 2006-10 category. Then all tournaments starting from 1 January 2011 could get a 2011 label.
Gengoldy wrote:Of all the games I've played, and there have been some poor sports and cursing players out there, you are by far the lowest and with the least class.
User avatar
edwinissweet
Posts: 1342
Joined: Thu May 10, 2007 7:59 pm
Location: cozumel

Re: Fine tuning: Game finder / tournament search [Suggestion

Post by edwinissweet »

I think that what you want is that once you pick the year it automaticly updates itself so that only tournaments within that year are shown. Kind of like when filling out an online form and picking your state and the cities changing to those within that state. Which i think would mean a change of software of some kind, since the search doesnt start "sorting" things until after you submit your search.
Image
User avatar
alster
Posts: 3083
Joined: Sun Apr 02, 2006 12:35 pm
Location: Sweden...

Re: Fine tuning: Game finder / tournament search [Suggestion

Post by alster »

edwinissweet wrote:I think that what you want is that once you pick the year it automaticly updates itself so that only tournaments within that year are shown. Kind of like when filling out an online form and picking your state and the cities changing to those within that state. Which i think would mean a change of software of some kind, since the search doesnt start "sorting" things until after you submit your search.
Exactly. But doesn't even have to be a pcick/update - could be a madatory way to sort the tourneys.
Gengoldy wrote:Of all the games I've played, and there have been some poor sports and cursing players out there, you are by far the lowest and with the least class.
User avatar
lackattack
Posts: 6097
Joined: Sun Jan 01, 2006 10:34 pm
Location: Montreal, QC

Re: Tournament Drop Down in Game Finder

Post by lackattack »

Merged similar suggestions.

I agree something needs to be done about that rediculous drop down.

Here are the options I'm considering to replace the drop-down:
  • A partial match text field (it's easy to implement!)
  • An ajax autocomplete text field
  • A popup tournament finder next to a text field (like [find a member] for usernames)
I think we should also add a [find games] link to tournament tabs (like on the ratings page).
User avatar
IcePack
Multi Hunter
Multi Hunter
Posts: 16863
Joined: Wed Aug 04, 2010 6:42 pm
Gender: Male
Location: California

Re: Tournament Drop Down in Game Finder

Post by IcePack »

lackattack wrote:Merged similar suggestions.

I agree something needs to be done about that rediculous drop down.

Here are the options I'm considering to replace the drop-down:
  • A partial match text field (it's easy to implement!)
  • An ajax autocomplete text field
  • A popup tournament finder next to a text field (like [find a member] for usernames)
I think we should also add a [find games] link to tournament tabs (like on the ratings page).
Please make it typable. Those who play via IPhone have to scroll for f***ing ever to find tournaments. Partial match or Ajax is perfect.

IcePack
Image

fac vitam incredibilem memento vivere
Knowledge Weighs Nothing, Carry All You Can
User avatar
lackattack
Posts: 6097
Joined: Sun Jan 01, 2006 10:34 pm
Location: Montreal, QC

Re: Tournament Drop Down in Game Finder

Post by lackattack »

Perhaps partial match + a [search tournaments] link that takes you to the tournament finder (like the [browse maps] link)?
User avatar
ender516
Posts: 4455
Joined: Wed Dec 17, 2008 6:07 pm
Gender: Male
Location: Waterloo, Ontario

Re: Tournament Drop Down in Game Finder

Post by ender516 »

lackattack wrote:Perhaps partial match + a [search tournaments] link that takes you to the tournament finder (like the [browse maps] link)?
I like this concept, but the [browse maps] link seems to be a dead end, that is, you cannot select a map there and carry that selection back to the game finder page (can you?).
User avatar
Qwert
SoC Training Adviser
Posts: 9262
Joined: Tue Nov 07, 2006 5:07 pm
Location: VOJVODINA
Contact:

Re: Tournament Drop Down in Game Finder

Post by Qwert »

Even its these sugestion are older then mine-i manage to create description ,and also visualy explane how these need to work, unfortunatly lack dont look on submited sugestion,then he will see how these can be implemented, i belive in easy way.
by qwert on Fri Feb 05, 2010 1:15 am

Plain and simple, need to create two tournament boxes-in one all finished,and in other Active tournaments.
With big explosion of more and more tournament,its become step by step hard to find active tournament to check tourny stats.
Every time i need to scrool and scroll up and down to find what i want to find.
These is mine post in these topic, and from these,i realised that in these topic,idea will not be discused, and i decide to create mine own sugestion,with description and explanations.

http://www.conquerclub.com/forum/viewto ... 5&t=128086
Image
NEW REVOLUTION-NEW RANKS PRESS THESE LINK https://www.conquerclub.com/forum/viewt ... 78&start=0
User avatar
lackattack
Posts: 6097
Joined: Sun Jan 01, 2006 10:34 pm
Location: Montreal, QC

Re: Tournament Drop Down in Game Finder

Post by lackattack »

Done! :P
User avatar
Victor Sullivan
Posts: 6010
Joined: Mon Feb 08, 2010 8:17 pm
Gender: Male
Location: Columbus, OH
Contact:

Re: Tournament Drop Down in Game Finder

Post by Victor Sullivan »

lackattack wrote:Done! :P
Everyone's favorite word in the Suggestions Forum! :D

-Sully
Post Reply

Return to “Archived Suggestions”