The Daily Click ::. Forums ::. Non-Klik Coding Help ::. I need a program idea for school
 

Post Reply  Post Oekaki 
 

Posted By Message

DEC Stuff



Registered
  07/07/2003
Points
  1348
10th May, 2004 at 20:36:31 -

For my C++ class I need an idea of a program to make.

I wanted to make a boggle game, but it's too easy I guess. I was just going to make a grid generate random letters with a timer. However, like I said, too easy. I wasn't going to make it find words or anything.

Does anyone have any ideas?

 
http://www.decstuff.net

DEC Stuff



Registered
  07/07/2003
Points
  1348
10th May, 2004 at 20:36:58 -

By the way, I have learned upto looping statements...so

Im not very advanced.

 
http://www.decstuff.net

Echisketch(PS)



Registered
  20/03/2004
Points
  852
10th May, 2004 at 22:21:34 -

Errm, how bout, a program that creates random ascii pictures, or perhaps a proggy that generates random formulas and solves them.

 
"Everytime you use Kazaa, a metallica band member dies a little."
Quote Jonathon Smeby.

ChrisB

Crazy?

Registered
  16/08/2002
Points
  5457
11th May, 2004 at 07:55:31 -

Try making Life.
http://www.math.com/students/wonders/life/life.html

 
n/a

Galaxy613



Registered
  29/01/2003
Points
  1765
11th May, 2004 at 10:37:07 -

erm, isn't Life too adavnced for someone who has just learned how to do loops? o.O

make tic tac toe, you can use a two dim array, like:

char martix[][] = {' ',' ',' ',

' ',' ',' ',
' ',' ',' '};


or you could try something simpler, like a number guessing game, you could use rand() for a random number..

 
Image
My forum: http://subsoap.com/ck/forums/index.php

Shen

Possibly Insane

Registered
  14/05/2002
Points
  3497
11th May, 2004 at 11:50:38 -

A quine

 
gone fishin'

ChrisB

Crazy?

Registered
  16/08/2002
Points
  5457
11th May, 2004 at 12:22:06 -

Life is just 4 nested loops (x & y coords) - initialise, calculate, copy, display. Rinse and repeat.

 
n/a

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
11th May, 2004 at 12:59:40 -

and how would you do that in a DOS console?

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G

Cazra

Crazy?

Registered
  24/07/2002
Points
  4472

Game of the Week WinnerVIP Member
11th May, 2004 at 17:09:01 -

That life effect is awesome. It would be cool to see a game based on it.

 
n/a

Kramy



Registered
  08/06/2002
Points
  1888
11th May, 2004 at 17:54:31 -

http://www.create-games.com/forum_post.asp?id=78320

You get the idea. Maybe expand it a bit. Converting from Jamascript to C++ shouldn't be hard.

 
Kramy

ChrisB

Crazy?

Registered
  16/08/2002
Points
  5457
11th May, 2004 at 18:52:31 -

Kris: Keep clearing the screen...

 
n/a

Dr. James MD

Addict

Registered
  08/12/2003
Points
  11941

First GOTW AwardSecond GOTW AwardThird GOTW AwardPicture Me This -Round 26- Winner!
11th May, 2004 at 18:53:44 -

perhaps try making something where you can raise something and battle/breed with other creatures or people online.

 
Image
http://uk.youtube.com/watch?v=j--8iXVv2_U
On the sixth day God created Manchester
"You gotta get that sand out your vaj!" x13
www.bossbaddie.com

AsparagusTrevor

Mine's a pint of the black stuff

Registered
  20/08/2002
Points
  2364

Game of the Week WinnerHas Donated, Thank You!VIP MemberEvil kliker
11th May, 2004 at 19:25:56 -

I had a Life program for the Commodore 64. True story.

 
Image

Muz



Registered
  14/02/2002
Points
  6499

VIP MemberI'm on a BoatI am an April FoolHonored Admin Alumnus
11th May, 2004 at 21:39:47 -

I have little idea how C++ works, but how bout one of those text games? I remember programming a little text game by copying stuff from a book into BASIC when I was 5. Neat little game where you have to shoot at a ship and try not to get destroyed when it shoots at you. Several thousand lines of code, though :/.

 
Disclaimer: Any sarcasm in my posts will not be mentioned as that would ruin the purpose. It is assumed that the reader is intelligent enough to tell the difference between what is sarcasm and what is not.

Image

DEC Stuff



Registered
  07/07/2003
Points
  1348
12th May, 2004 at 19:08:15 -

I just don't know what to do!

I wanted to do boggle, but I don't know if its advanced enough, cause I want to keep it simple.

 
http://www.decstuff.net

vortex2



Registered
  27/05/2002
Points
  1406
13th May, 2004 at 08:59:28 -

Here is a bit of advice. Pick something, start. Make SOMETHING first, then worry about what you WANT to do. This way if you never get what you want to do done, you havent done nothing for your project .

OH and I recommend making a puzzle game.... Puzzle games dont have to have fancy scrolling, they dont need alot of collision code or complex game mechanics .

If you are looking at text based stuff, I would recommend making hmmmm tic tac toe? cant go wrong with it . you could have a grid like this:
____ ____ ____
| | | |
| x | o | x |
|____|____|____|
| | | |
| | o | x |
|____|____|____|
| | | |
| | o | |
|____|____|____|


 
A bit of insanity with every bite!

Johan Hargne (Wartagon)

Lover Of Circys

Registered
  15/06/2003
Points
  1289

Game of the Week WinnerCROBASOFTVIP MemberPS3 OwnerWii OwnerMushroom
13th May, 2004 at 09:12:24 -

haha Nice vortex That doesn't look like a tic-tac-toe-grid to me, but I know what you ment though

 
Music Composer.
http://johan.hargne.se

Crobasoft
www.crobasoft.com

Galaxy613



Registered
  29/01/2003
Points
  1765
13th May, 2004 at 11:15:29 -


char matrix[3][3] = {
' ',' ',' ',
' ',' ',' ',
' ',' ',' '
};

void showgrid(void);

//...

void showgrid(void){
int i,j=0;
for(i=0;i<2;i++){
printf(" %c | %c | %c \n",matrix[i][0],matrix[i][1],matrix[i][2]);
printf("----|----|----");
}
}


 
Image
My forum: http://subsoap.com/ck/forums/index.php

vortex2



Registered
  27/05/2002
Points
  1406
13th May, 2004 at 21:35:37 -

yea I made it before school and the spaces got all messed up by TDC oops. well anyway tictactoe would be a good challange .

 
A bit of insanity with every bite!

Galaxy613



Registered
  29/01/2003
Points
  1765
13th May, 2004 at 22:23:07 -

the comp AI would be the hardest part

 
Image
My forum: http://subsoap.com/ck/forums/index.php

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
15th May, 2004 at 09:09:13 -

shouldn't be too hard, there are hundreds of tutorials

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
29th May, 2004 at 16:01:23 -

Quick And Dirty : http://kris.acsv.net/ca.exe

oops, wrong version

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G

Imp of Hazard Games



Registered
  27/08/2003
Points
  781
4th June, 2004 at 05:34:43 -

The app requires alleg40.dll
You can get it here:
http://www.hazard-games.com/files/alleg40.dll
BTW - what is that spreading red stuff?

 
I need painters, musicians and animators!

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
4th June, 2004 at 07:02:03 -

Sorry, I meant to upload the DOS version, but when I uploaded the allegro version I accidentally overwrote it. It's cellular automata (Game of life).

here's the right one: http://kris.acsv.net/dos_gol.exe

edit: thanks for giving the link though

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G
   

Post Reply



 



Advertisement

Worth A Click