Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi EveryBody,

I want to create a Taekwondo tournament fixtures in c#. I am not understand how to create it.

I never do like this and after searching in google no more stuff found. Please help me to make fixtures like this

http://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Mitbat-2007-bracket-large.png/1024px-Mitbat-2007-bracket-large.png

Please guide me how to create fixture with players not round and team.

Like tournament bracket builder software.

Thanks
Ram Kumar
Posted
Updated 18-Aug-14 23:22pm
v3
Comments
Maciej Los 18-Aug-14 14:50pm    
If you want to create graph, please have a look at this article: From Trees To Graphs[^]
Sergey Alexandrovich Kryukov 18-Aug-14 16:32pm    
Usually such graphs are so specialized and simple, so they are reduced to some tables, something with is typically shown to describe the tournament.
The only real problem with this question is: what exactly needs and expert advice? This is no a problem, this is just a work to be done.
The problems may appear later, in more specific detail.
—SA
Sergey Alexandrovich Kryukov 18-Aug-14 16:34pm    
I would suggest you write your own software instead of searching for the available software. Who publish such specialized special-case software? rather, you would be able to find general libraries on graphs, and the like...
—SA
Ram Kumar(Webunitech) 19-Aug-14 2:10am    
I am not searching this kind of software just i am want to make such kind of software
Sergey Alexandrovich Kryukov 19-Aug-14 2:18am    
Good; I just refer to your phrase about your search in Google. But "how to make..." is a pretty vague question. What prevents you from creating it, what advice are you looking for? Otherwise the answer would be "How? By doing appropriate software development work". :-)
—SA

1 solution

It's not that complicated in theory: it just a case of pairing up groups and passing the result through to the next stage. It's drawing it that's difficult bit.

Start with getting the data structures right: I'd probably have a "match" class or control which took two inputs, and had a result and get it to draw itself:

C#
Name1 --
        --- 
Name2 --
Then have a list of Matches for each stage of the competition.

Or...you could have a look at this: http://www.tourneylogic.com/[^]
It's for website, but it might give you some ideas.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900