a outline would help

Please support our C++ advertiser: Intel Parallel Studio Home
Reply

Join Date: Jul 2003
Posts: 58
Reputation: fakespike is an unknown quantity at this point 
Solved Threads: 0
fakespike fakespike is offline Offline
Junior Poster in Training

a outline would help

 
0
  #1
Jul 5th, 2003
hello i wanted to create a tetris game.

i would really appreciate it tho if some one could roughly outline what i have to do. leave the coding for me i will take care of that.
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: a outline would help

 
0
  #2
Jul 5th, 2003
Visual C++? C++ For Linux? ... more details please?
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 58
Reputation: fakespike is an unknown quantity at this point 
Solved Threads: 0
fakespike fakespike is offline Offline
Junior Poster in Training

Re: a outline would help

 
0
  #3
Jul 5th, 2003
oops i'm sorry. its in vc++. i need it as simple as possible. its pretty much my first attempt at a game on vc++. i only tryed making games on vb6 before.
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: a outline would help

 
0
  #4
Jul 5th, 2003
Check this out.

http://www.gamedev.net/reference/design/features/makegames/
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 58
Reputation: fakespike is an unknown quantity at this point 
Solved Threads: 0
fakespike fakespike is offline Offline
Junior Poster in Training

Re: a outline would help

 
0
  #5
Jul 5th, 2003
i did and thats why i'm here i read the site up and down.
and it stated that i should start by something like tetris any way its cool i think i knwo how to get started on it.
thanks anyways
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: a outline would help

 
0
  #6
Jul 5th, 2003
Check this out (I did a google search and came across this)

C++ Source Code for Tetris In VC++
http://rain.prohosting.com/kakasoft/cpp.htm

Tetris Game in VB5/VB6
http://www.codeguru.com/vb/articles/2056.shtml
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: a outline would help

 
0
  #7
Jul 5th, 2003
Sorry about that ... I just realized the C++ link costs a few bucks to download. The Visual Basic one is free however.
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Feb 2002
Posts: 12,036
Reputation: cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light cscgal is a glorious beacon of light 
Solved Threads: 130
Administrator
Staff Writer
cscgal's Avatar
cscgal cscgal is online now Online
The Queen of DaniWeb

Re: a outline would help

 
0
  #8
Jul 5th, 2003
What you should do is go to download.com or somewhere and download open source tetris clones for linux. They're most likely written in C++ and can def give you a head start as to an algorithm, etc. From there it should be easy to port to Visual C++. Good luck! Sorry I can't be more help, I never made a VC++ game before unfortunately
Dani the Computer Science Gal
Follow my Twitter feed! twitter.com/daniweb
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 58
Reputation: fakespike is an unknown quantity at this point 
Solved Threads: 0
fakespike fakespike is offline Offline
Junior Poster in Training

Re: a outline would help

 
0
  #9
Jul 6th, 2003
no thanks you have been of great help. i really never knew there was such a big difference between c++ and vc++.

today i brought my own vc++ compiler to my school because i wanted the teacher to teach me how to create win32 aplications. he looked at in with confusion.

we use turbo c++ there or borland.

either he is really dum or he is really dum.

i got riped off anyways thats not what i signed up for.
turbo c++ is so dull and i cant make any aplication really worth while because everythingi create looks like a dos thing.

anyways thanks again i will go do that.
Reply With Quote Quick reply to this message  
Join Date: Feb 2003
Posts: 129
Reputation: Bob is an unknown quantity at this point 
Solved Threads: 1
Team Colleague
Bob Bob is offline Offline
Team Member

Re: a outline would help

 
0
  #10
Jul 6th, 2003
There's no reason why your teacher, or anyone else who understand C++, should know how to write Windows applications. The two are quite different things. C++ is a language defined by a standard and available on a large number of platforms. Windows just happens to be one of those platforms. Visual C++ just happens to be Microsoft's own implementation of a C++ compiler. It supports standard C++ (to a degree) and, not unreasonably, provides vast support for the Windows API. But the Windows API is a Windows issue, not a C++ issue. So your teacher is not dum (sic) for not understanding how to use Visual C++. In fact, it has it's own IDE environment that takes some time to get used to even for people experienced in using the Windows API with other compilers.

It's quite reasonable for C++ students to be taught how to make 'DOS things'. To start with you should be concentrating on the C++ language and libraries, and only then on a particular API. You have to be able to walk before you can run. People who try to learn C++ by getting stuck straight into the Windows API without having a good understanding of the core language are in for a rough ride.

C++ is a complex language. Win32 is a complex API. The language has to come before the API, but expect both to take some time to master.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC