PDA

View Full Version : Contribute levels to MArcanoid



kraze1984
10-06-2004, 08:06 PM
Anyone who wishes to contribute to the game, please post your levels here.

The level is a bitmap picture, 57x33 pixel size, where bricks are located in some sort of a grid, as follows: (see doc)

Maximum bricks allowed vertically – 16,
Maximum bricks allowed horizontally – 14.

There can be stones and empty spaces.

Thank you in advance for your contribution.
You’ll be mentioned in the source code :)

Kraze1984

danwood76
11-06-2004, 01:50 AM
http://nokiafree.org/forums/attachment.php?attachmentid=12618&stc=1

Is this good??

how about upside down??

http://nokiafree.org/forums/attachment.php?attachmentid=12619&stc=1

regards,
Danny

kraze1984
11-06-2004, 09:25 AM
cool!

i'll include the one is upside down.

I've also made a level with nokiafree, but yours look more stylish :)

grrreeetz

http://nokiafree.org/forums/attachment.php?attachmentid=12621&stc=1

danwood76
11-06-2004, 10:16 AM
How many levels do you need??
I might do a couple more it doesnt take long :)

regards,
Danny

kraze1984
11-06-2004, 06:58 PM
How many levels do you need??
I might do a couple more it doesnt take long :)

regards,
Danny

Well, now i've got 8 levels.
I would like to have, i think 30 or so, but it could take many space in code.
As i'm not using bitmaps (i just didn't realize yet how :( ), i'm makin' every level with things like


//**************************DRAWS 2nd LEVEL**********************
if (lev==2)
{
for (i=2; i<55; i=i+4)
{
for ( h = 3; h < 10; h = h + 2 )
{
kubic();
}
h=13;
kubic ();
}
i = 2;
h = 1;
kubic();
i = 54;
kubic();
i = 6;
h = 15;
kubic();
i = 50;
kubic();

for (i=6; i<51; i=i+4)
{
h = 11;
kubic ();
}


h = 17;
i = 18;
stone();
i = 38;
stone();
i = 10;
kubic();
i = 14;
kubic();
i = 42;
kubic();
i = 46;
kubic();

lcd_to_screen ();
return;
}


(That's for level #2 included in doc).

So ideal it could be 22 more levels, increasing difficulty.
Then i'll start converting all this in C code.


grrreeetz

P.S. i added a level attached to previous message, but it isn't visible :-?

danwood76
11-06-2004, 08:34 PM
I placed the link to your attachment in your last post
(right click the attachment and then copy link then paste into text window)

I will make a couple more :)

regards,
Danny

kraze1984
12-06-2004, 12:50 PM
I placed the link to your attachment in your last post
(right click the attachment and then copy link then paste into text window)


It's a bug or a feature ? :)

danwood76
12-06-2004, 12:56 PM
I call it a bug
Man0 calls it a feature ;)

it should be sorted soon :D

regards,
Danny

danwood76
13-06-2004, 12:03 PM
Here is another level I just made :)

http://nokiafree.org/forums/attachment.php?attachmentid=12636&stc=1

regards,
Danny

kraze1984
06-08-2004, 01:51 PM
Here is another level I just made :)

http://nokiafree.org/forums/attachment.php?attachmentid=12636&stc=1

regards,
Danny

So, any news?