forum

B-Baakaa! Mini-tournament!

posted
Total Posts
72
show more
DeletedUser_3905941
please drop me from competition
not playing osu
clayton
I'd be interested in joining :) added on skype @cl8n.b
Ruin Lance
I'd like to join.
Edit: I added you on skype already.
Histoire
Id like to join
Ravelyx
See you guys at the tournament I guess~~
DahplA
I would join, but it's difficult to find out what time to get on/off especially with daylight savings on the Saturday or something...
And it's about accuracy as well ;_;
Topic Starter
AshiNoBaka
People who do not have added me on skype has been deleted!

Free 3 places!
Riot
The map China Express has been deleted!
Change it please
Synpoo
Am I eligible to join this?? ;-;

I'd probably be #5k if daidai wasn't so broken for pp :roll:
Szymek
I'lol join in, I'm available.
Nakano Itsuki
Count me in :3 I'm free to join.
Bier
I'll join
Topic Starter
AshiNoBaka
Ehhh~

Sorry guys list is full ;n;
Pidgy
Can't wait ^_^
Gumica
UPDATE

Hello everyone~ I'm Gumica, Ashi's assistant, and I'm mainly in charge with data organization and software development. Ashi apparently has some troubles with connecting to the site, therefore I shall inform you guys with the following news:

1) StarrStyx, your application has been accepted, as Piyori has (apparently) dropped out of the tournament.
2) We are accepting players as reserves in case any of the 24 players aren't online at the time of the tournament.
3) Ashi made a decision to add 4 mysterious maps which will not be revealed :^)
4) Here is the current matchup list:


As for thoese of you, who are questioning the code in place:

CODE
Image[] IMG;
private void buttonLOAD_Click(object sender, EventArgs e)
{
//THE METHOD LOADS ALL OF THE IMAGES FROMA FOLDER TO AN IMAGE ARRAY
int count = 0;
for(;;count++)
{
if (File.Exists(@"STAGE\" + count+".jpg")) ;
else break;
}

IMG = new Image[count];
for(int i = 0; i < IMG.Length; i++)
{
IMG[i] = Image.FromFile(@"STAGE\" + i + ".jpg");
}

labelSTATUS.Text = "Images Successfully Loaded!";
}





private void button1_Click(object sender, EventArgs e)//RANDOMIZE BUTTON
{
imageList1.Images.Clear();
imageList2.Images.Clear();
imageList3.Images.Clear();
imageList4.Images.Clear();
listView1.Clear();
listView2.Clear();
listView3.Clear();
listView4.Clear();
//CLEARING THE LIST AND CALLING THE METHOD
//DEPENDING ON THE AMOUNT OF PLAYERS (1st, 2nd, 3rd stage)
switch(IMG.Length)
{
case 24: CREATE24(); break;
case 12: CREATE12(); break;
case 4: CREATE4(); break;
}
}



public void CREATE24()
{
//BOOL FOR USED NUMBERS
bool[] CORRECT = new bool[24]; for(int i = 0; i < CORRECT.Length; i++) CORRECT[i] = false;
for (int NoP = 0; NoP < 24; NoP++)
{
int NUMBER = -1;

if (NoP < 18)//IF 18 IMAGES WERE ALREADY LOADED WE DON'T NEED TO RANDOMIZE LAST 6
{
while (true)
{
Random R = new Random();
NUMBER = R.Next(0, 24);
if (CORRECT[NUMBER]) continue;
else { CORRECT[NUMBER] = true; break; }
//IF THE NUMBERS IS ALREADY USED THEN RANDOMIZE AGAIN
}

//ADDING THE IMAGE TO THE LIST
if (NoP < 6)
{
imageList1.Images.Add(IMG[NUMBER]);
}
else if (NoP < 12)
{
imageList2.Images.Add(IMG[NUMBER]);
}
else if (NoP < 18)
{
imageList3.Images.Add(IMG[NUMBER]);
}
}
else
{
for (int i = 0; i < 24; i++ )
{
if (CORRECT[i] == false) imageList4.Images.Add(IMG[i]);
}
NoP = 23;
}
}


//DISPLAYING IMAGES
listView1.SmallImageList = imageList1;
listView2.SmallImageList = imageList2;
listView3.SmallImageList = imageList3;
listView4.SmallImageList = imageList4;

for (int j = 0; j < 6; j++)
{
listView1.Items.Add(new ListViewItem() { ImageIndex = j });
listView2.Items.Add(new ListViewItem() { ImageIndex = j });
listView3.Items.Add(new ListViewItem() { ImageIndex = j });
listView4.Items.Add(new ListViewItem() { ImageIndex = j });
}


}



I wish you all good luck. Map selections for each group will be announced sometime next week.
Cookiemaid
Edit: Okay resolved. Nothing to see here.
Lytessill
When will we be told the maps we're playing?
Gumica
24 hours prior to the beginning of the tournament
Gumica
We still require some more players as reserves (in case some people don't show up tomorrow). Please join up or ask friends if they want to join. It would really help us out. owo
Gumica
Well, the tournament has now concluded!

Congratulations to Kon, who is the winner of the B-Baaka mini Tournament!
And thank all of you who participated as well :)

Here are the statistics for 2nd and 3rd Stage:
Please sign in to reply.

New reply