944,149 Members | Top Members by Rank

Ad:
  • C Discussion Thread
  • Unsolved
  • Views: 9889
  • C RSS
Oct 21st, 2004
0

Help in "Snake" game using C programming for the AVR

Expand Post »
Hi guys,
I'm new to this forum and this is my first post :cheesy:
I need help in modifying a "Snake game" program..
What I need to do is modify the program so that when it starts (i.e. the AVR microcontroller is reset) it displays a message giving the name of the game and your name(s). This should be displayed for several seconds before the game commences.
I know that I have to add it to the function splash_screen()
so I typed this in it:
void splash_screen(void) {
clear_terminal();

/* MY CODE HERE */
printf("Snake Game\n");
printf("Name\n");
init_timer(8000);
}
BUT it doesn't display what i want
I attached the whole program file if in need to look at the whole thing.

Regrads,
Simplicity
Attached Files
File Type: zip Project.zip (20.7 KB, 472 views)
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Simplicity is offline Offline
8 posts
since Oct 2004
Oct 22nd, 2004
0

Re: Help in "Snake" game using C programming for the AVR

Hurray! I figured out how to solve it and solved a couple of other modifications I have to do.. Now, I'm stuck with a different thing and that is make the game speed up as the score gets higher.

This is what I've done but I don't think it's right :rolleyes:
  1. if (get_score == '30'){
  2. move_snake() + 2;
  3. }
Can anyone please help me?! You can look at the rest of the code for more info. in the attachment of the previous post

Thanx guys
Simplicity
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Simplicity is offline Offline
8 posts
since Oct 2004
Oct 22nd, 2004
0

Re: Help in "Snake" game using C programming for the AVR

Anyone could please help me in this.. I'm still stuck with it
I changed it to this:
if (get_score == 30){
sleep(time_period + 3);
}
But still ain't workin' :!:
Reputation Points: 10
Solved Threads: 0
Newbie Poster
Simplicity is offline Offline
8 posts
since Oct 2004
Oct 2nd, 2008
-1

Re: Help in "Snake" game using C programming for the AVR

Try to use this....


if( get_score >= value)
{
speed = value;
}

just try... thats what i did to my snake game. =)
Reputation Points: 6
Solved Threads: 0
Newbie Poster
waxx is offline Offline
2 posts
since Oct 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C Forum Timeline: Reading a whole text file at once.
Next Thread in C Forum Timeline: mysterious segmentation fault





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC