Advertisement



Go Back   Zune Boards > Zune Discussions > Zune Games > Download Completed Games

New Member?



 
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools
Old 05-21-2008, 03:51 PM   #1 (permalink)
Zuner
 
Join Date: Jan 2008
Posts: 57
Reputation: 44
Default [Pre-Alpha] PopEm Minor Update (May 22)


Game Name: PopEm
Creator: Manticore-X
Version: 0.02
Download URL: http://files.filefront.com/PopEmMay2.../fileinfo.html



Description / Instructions / Anything you want to say:
This is my attempt at cloning the popular flash game "Bloons" created by Ninja Kiwi. This is my first time using C# and coding in XNA, and the game has a ways to go, but the framework is there and I wanted to get some input. The sprites were also a first time thing (pretty obvious) but they do the job decently. If anyone wants to contact me my AIM is "Manticore0X" and email is manticorex at gmail dot com.

Controls:
Aim with touchpad/buttons (on zune 80 or 4/8 if you press it will rotate faster)

click center to start the shot

release center to shoot

tap the back button to switch between levels (or complete the level)

Hold the back button to quit


Please do not post this or code modified from this anywhere else other than here. Thanks!

Please post best/average shots for the levels. This will help me create a good difficulty for the game!

Todo:
menu (important but not urgent)
music (important but not urgent)
full level structure (implemented but needs improvement)
score (implemented but needs improvement)
powerups (important but as urgent)
[I know I am forgetting some]
Some special ideas that will give this some things unique from the original bloons!

Far Off:
In game UI level builder
Saved games and saved levels
Wireless (multiplayer maybe, level transfer hopfully if possible)
[suggestions?]

How to build a level: (and potentially get it featured in the game)
I tried to make the level structure as easy as possible. To access it go to the MapLoad class and look to the LoadMap method. Above is an empty level which i am also going to post here.

Code:
                    slots[0] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[1] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[2] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[3] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[4] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[5] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[6] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[7] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[8] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                    slots[9] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
                   slots[10] = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
When you change a 0 to a 1 a target appears! Its easy enough that my girlfriend with little computer skills was able to make a teddy bear with it (the 4th lvl)

You then paste your new code in a new case. Reference the other cases for what you need in it.

Now Look in the Game1 class at the Update Method. Change the if(lvl == 5) so that 5 is one greater than the number of cases (initially there are 4 cases so it is 5. If you add 1 case the number should then be 6)

And thats all you need to do!

Comments are appreciated!

Screenshots From Previous Version(thanks soccerfreak24!):







Last edited by Manticore-X : 05-22-2008 at 05:33 PM. Reason: Took out slots[11] due to code changes. Updated game



Manticore-X is offline   Reply With Quote
Old 05-21-2008, 04:22 PM   #2 (permalink)
Banned
Jr. Zuner
 
Join Date: Feb 2008
Posts: 37
Reputation: 10
Default

which flash game is this a clone of?

zune 30 supported?

Last edited by wonkoswain : 05-21-2008 at 04:25 PM.



wonkoswain is offline   Reply With Quote
Old 05-21-2008, 04:23 PM   #3 (permalink)
Zuner
 
Join Date: Jan 2008
Posts: 57
Reputation: 44
Default

Its a clone of Bloons

And yes 30 support (havent tested but i believe I did it right)



Manticore-X is offline   Reply With Quote
Old 05-21-2008, 04:31 PM   #4 (permalink)
Jr. Member
 
The Undead's Avatar
 
Join Date: May 2008
Posts: 325
Reputation: 91
Default

Sweet, I love bloons. Deploying now, ill let you know what I think when its done
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.



The Undead is offline   Reply With Quote
Old 05-21-2008, 04:32 PM   #5 (permalink)
Zuner
 
bjmiller121's Avatar
 
Join Date: May 2008
Posts: 74
Reputation: 10
Default

Yep. it works on the 30 gig. Fun game! I think with the todos and far offs it will be a very good game. Not sure i really like the graphics though. I'm gonna tinker with them a bit.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




bjmiller121 is offline   Reply With Quote
Old 05-21-2008, 04:33 PM   #6 (permalink)
Jr. Member
 
The Undead's Avatar
 
Join Date: May 2008
Posts: 325
Reputation: 91
Default

Only problem I have with it, is no score!, other then that great so far!.

Could use a menu
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.



The Undead is offline   Reply With Quote
Old 05-21-2008, 04:40 PM   #7 (permalink)
Zuner
 
Join Date: Jan 2008
Posts: 57
Reputation: 44
Default

Thanks for the comments so far!

And yes score is coming next. Im hopfully going to get that and a more set level structure out tomorrow. I felt like I got it to a point today that I would like to hear some of the public's opinions.

I would also like to add a menu,music, and sounds, but those are less important in my opinion.

@bjmiller121:
I would love to see what you could do with the sprites. The ones I made were done in MS Paint and pretty quickly. If you could improve I would love to see them.



Manticore-X is offline   Reply With Quote
Old 05-21-2008, 04:54 PM   #8 (permalink)
Squirt
 
Join Date: May 2008
Posts: 23
Reputation: 10
Default

i had trouble exiting...
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.



Gman561 is offline   Reply With Quote
Old 05-21-2008, 04:57 PM   #9 (permalink)
Zuner
 
bjmiller121's Avatar
 
Join Date: May 2008
Posts: 74
Reputation: 10
Default

Quote:
Originally Posted by Gman561 View Post
i had trouble exiting...
Hold the back button for a few seconds. if that doesn't work, hold back button and up on the d pad. This does essentially the same thing.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




bjmiller121 is offline   Reply With Quote
Old 05-21-2008, 05:08 PM   #10 (permalink)
Jr. Member
 
Link9228's Avatar
 
Join Date: Nov 2007
Location: Pennsylvania
Posts: 389
Reputation: 25
Send a message via MSN to Link9228
Default

Manticore, the music will take a few seconds, it's really only like 4 lines of code plus a few lines to respond to user button presses to change music. Unless you're changing it from a menu, but then it's not button presses, but menu click. If you need any help with that let me know.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




Link9228 is offline   Reply With Quote
Old 05-21-2008, 05:16 PM   #11 (permalink)
Zuner
 
bjmiller121's Avatar
 
Join Date: May 2008
Posts: 74
Reputation: 10
Default

is there an easy way to make the game read png's instead of the bitmaps you used?
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




bjmiller121 is offline   Reply With Quote
Old 05-21-2008, 05:18 PM   #12 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 230
Reputation: 14
Default

cool, a new game




cable729 is offline   Reply With Quote
Old 05-21-2008, 05:20 PM   #13 (permalink)
Jr. Member
 
The Undead's Avatar
 
Join Date: May 2008
Posts: 325
Reputation: 91
Default

Quote:
Originally Posted by bjmiller121 View Post
is there an easy way to make the game read png's instead of the bitmaps you used?
yes, save the pngs under the same name, delete the bmp, post the pngs, and done!
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.



The Undead is offline   Reply With Quote
Old 05-21-2008, 05:27 PM   #14 (permalink)
Zuner
 
bjmiller121's Avatar
 
Join Date: May 2008
Posts: 74
Reputation: 10
Default

Quote:
Originally Posted by The Undead View Post
yes, save the pngs under the same name, delete the bmp, post the pngs, and done!
Just figured it out after i posted.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




bjmiller121 is offline   Reply With Quote
Old 05-21-2008, 05:41 PM   #15 (permalink)
Support Team
Expert Zuner
 
soccerfreak24's Avatar
 
Join Date: Nov 2007
Posts: 2,930
Reputation: 189
Default

Looks fun, i'm deploying as we speak.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.





soccerfreak24 is online now   Reply With Quote
Old 05-21-2008, 05:55 PM   #16 (permalink)
Zuner
 
bjmiller121's Avatar
 
Join Date: May 2008
Posts: 74
Reputation: 10
Default

This is much trickier than i thought it would be to come up with graphics for. I can't come up with anything right now. Maybe later if I have some time I can try coming up with something again.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




bjmiller121 is offline   Reply With Quote
Old 05-21-2008, 06:16 PM   #17 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Nice game man! Nice to see a new game. A couple of suggestions:
1. Increase the "gravity" the pin "floats too long."
2 Have a pin limit on each level

Otherwise its decent.



ZuneMan4 is offline   Reply With Quote
Old 05-21-2008, 07:21 PM   #18 (permalink)
Jr. Zuner
 
Join Date: Apr 2007
Posts: 31
Reputation: 30
Default

Nice. Downloading now.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.



flattspott is offline   Reply With Quote
Old 05-21-2008, 08:09 PM   #19 (permalink)
Experienced Zuner
 
DareckT's Avatar
 
Join Date: May 2008
Posts: 127
Reputation: 10
Default

Impressive especially since its your first time using C#, and a really good base. On whats here as of now, gameplay wise, i can't find anything that needs changed. It works exactly as you'd expect it to. I can see this having a great finished product

Nice work :]




DareckT is offline   Reply With Quote
Old 05-21-2008, 08:17 PM   #20 (permalink)
Administrator
Ultimate Zuner
 
Join Date: Jul 2006
Location: Fullerton, CA
Posts: 5,833
Reputation: 247
Default

Sweet dude, Bloons is an epic game.
__________________

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.




lpxxfaintxx is offline   Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump